/* Dropdown control */
.selectBox-dropdown {
min-width:150px;
position:relative;
text-decoration:none;
text-align:left;
color:#0095da!important;
outline:none;
vertical-align:middle;
display:inline-block;
cursor:default;
border-bottom:1px solid #a5ccde;
}

.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {

}

.selectBox-dropdown.selectBox-menuShowing {
-moz-border-radius-bottomleft:0;
-moz-border-radius-bottomright:0;
-webkit-border-bottom-left-radius:0;
-webkit-border-bottom-right-radius:0;
border-bottom-left-radius:0;
border-bottom-right-radius:0;
}

.selectBox-dropdown .selectBox-label {
display:inline-block;
white-space:nowrap;
overflow:hidden;
width:auto!important;
}

.selectBox-dropdown .selectBox-arrow {
position:absolute;
top:0;
bottom:0;
right:0;
width:20px;
background:url(sb-arr.png) 50% 50% no-repeat;
}


/* Dropdown menu */
.selectBox-dropdown-menu {
position:absolute;
z-index:99999;
border:1px solid #939393; /* should be the same border width as .selectBox-dropdown */
background:#fff;
-moz-box-shadow:0 7px 24px 0 rgba(0, 0, 0, 0.16);
-webkit-box-shadow:0 7px 24px 0 rgba(0, 0, 0, 0.16);
box-shadow:0 7px 24px 0 rgba(0, 0, 0, 0.16);
margin:14px 0 0 -1px!important;
font-size:15px;
}

/* Dropdown menu */
.selectBox-wrap{
max-height:310px;
min-height:31px;
overflow:auto;
position:relative;
}


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

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


/* Options */
.selectBox-options,
.selectBox-options div,
.selectBox-options div A {
list-style:none;
display:block;
cursor:default;
padding:0;
margin:0;
color:#000;
font:bold 18px/21px 'PT Sans Narrow',sans-serif;
}

.selectBox-options div A {
padding:5px 22px;
white-space:nowrap;
overflow:hidden;
background:6px center no-repeat;
}

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

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

.selectBox-options div.selectBox-selected A {
background-color:#e9f0f4 ;
color:#000;
}

.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;
}