/* Dropdown control */
.selectBox-dropdown {
    min-width: 150px;
    position: relative;
    border: 1px solid #999;
    line-height: 1.5;
    text-decoration: none;
    text-align: left;
    color: #000;
    outline: none;
    vertical-align: middle;
    display: inline-block;
    cursor: pointer;
}

.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {
    border-color: #666;
}

.selectBox-dropdown.selectBox-menuShowing {
	border-color:#2d8c3c;
}

.selectBox-dropdown.selectBox-menuShowing-bottom {
}

.selectBox-dropdown.selectBox-menuShowing-top {
}

.selectBox-dropdown .selectBox-label {
    display: inline-block;
    font-size: 16px;
    height: 38px;
    line-height: 38px;
    padding: 0;
    text-indent: 10px;
    white-space: nowrap;
}

.selectBox-dropdown .selectBox-arrow {
    background: #f0f0f0 url("icon_selectbox.png") no-repeat scroll center center;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 45px;
}

/* Dropdown menu */
.selectBox-dropdown-menu {
    position: relative;
    z-index: 99999;
    max-height: 600px;
    min-height: 1em;
    border: solid 1px #BBB; /* should be the same border width as .selectBox-dropdown */
    border-top:none;
    border-bottom:none;
    background: #FFF;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/* Inline control */
.selectBox-inline {
    min-width: 150px;
    outline: none;
    border: solid 1px #BBB;
    background: #FFF;
    display: inline-block;
    overflow: auto;
}

.selectBox-inline:focus {
    border-color: #666;
}

/* Options */
.selectBox-options,
.selectBox-options LI,
.selectBox-options LI A {
    list-style: none;
    display: block;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.selectBox-options.selectBox-options-top{
/*
    border-bottom:none;
	margin-top:1px;
*/	
}
.selectBox-options.selectBox-options-bottom{
/*	border-top:none;
*/
}

.selectBox-options LI A {
    line-height: 1.5;
    padding: 0 .5em;
    white-space: nowrap;
    overflow: hidden;
    background: 6px center no-repeat;
}

.selectBox-options LI.selectBox-hover A {
    background-color: #EEE;
}

.selectBox-options LI.selectBox-disabled A {
    color: #888;
    background-color: transparent;
}

.selectBox-options LI.selectBox-selected A {
    background-color: #f0f0f0;
    background-image: url("icon_selectbox_check.png");
    background-position: 10px 5px;
    background-repeat: no-repeat;
}

.selectBox-options .selectBox-optgroup {
    color: #666;
    background: #EEE;
    font-weight: bold;
    line-height: 1.5;
    padding: 0 .3em;
    white-space: nowrap;
}

/* Disabled state */
.selectBox.selectBox-disabled {
    color: #888 !important;
}

.selectBox-dropdown.selectBox-disabled .selectBox-arrow {
    opacity: .5;
    filter: alpha(opacity=50);
    border-color: #666;
}

.selectBox-inline.selectBox-disabled {
    color: #888 !important;
}

.selectBox-inline.selectBox-disabled .selectBox-options A {
    background-color: transparent !important;
}

/* customized settemari */
.selectBoxWrap{
    background: #fff none repeat scroll 0 0;
    margin-left: 8px;
    position: absolute;
}
.selectBoxWrap.selectBoxWrap-top{
    margin-top: 0px;
}
.selectBoxWrap.selectBoxWrap-bottom{
    margin-top: 0px;
}
.selectBoxWrap .selectBox-dropdown-menu{
    margin: 0;
    padding: 0;
}
.selectBoxWrap .select-prev,
.selectBoxWrap .select-next{
    background-color: #fff;
    background-repeat: no-repeat;
    border: 1px solid #ccc;
    cursor: pointer;
    display: block;
    height: 20px;
    position: relative;
    width: 390px;
    z-index: 100000;
}
.selectBoxWrap .select-prev{
    background-image: url("icon_selectbox_prev.png");
    background-position: center bottom;
    border-bottom:0;
}
.selectBoxWrap .select-next{
    background-position: center top;
    background-image: url("icon_selectbox_next.png");
    border-top:0;
}

