/* Dropdown control */
.selectBox-dropdown 
{
    height:40px;
    line-height:40px;
    min-width: 100%;
    max-width: 100%;
    position: relative;
    border:none;
    text-decoration: none;
    text-align: left;
    outline: none;
    vertical-align: middle;
    background: #f9f9f9;
    background: -webkit-linear-gradient(top, #f9f9f9, #ececec);
    background: -moz-linear-gradient(top, #f9f9f9, #ececec) ;
    background: -ms-linear-gradient(top, #f9f9f9, #ececec) ;
    background: -o-linear-gradient(top, #f9f9f9, #ececec) ;
    background: linear-gradient(to bottom, #f9f9f9, #ececec);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    display: inline-block;
    cursor: default;
}

.selectBox-dropdown:focus {

}

.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 {
    padding: 0 0 0 10px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    color: #727272;
    font-size:14px;
}

.selectBox-dropdown .selectBox-arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    background: url(images/nav-arrow.png) 50% center no-repeat;
    border:none;
    
    -webkit-transition-duration: 0.1s;
    -moz-transition-duration: 0.1s;
    -o-transition-duration: 0.1s;
    transition-duration: 0.1s;
}

    .selectBox-dropdown:focus .selectBox-arrow {
        -ms-transform: rotate(-180deg); /* IE 9 */
        -webkit-transform: rotate(-180deg); /* Chrome, Safari, Opera */
        transform: rotate(-180deg);
        
        -webkit-transition-duration: 0.1s;
        -moz-transition-duration: 0.1s;
        -o-transition-duration: 0.1s;
        transition-duration: 0.1s;
    }

/* Dropdown menu */
.selectBox-dropdown-menu {
    position: absolute;
    z-index: 999999999;
    width:auto;
    max-height: 250px;
    min-height: 1em;
    border: none; /* should be the same border width as .selectBox-dropdown */
    background: #ffffff;
    color:#727272;
    font-size:14px;
    -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/* Inline control */
.selectBox-inline 
{
    min-width: 750px;
    outline: none;
    border: solid 1px #BBB;
    background: #000000;
    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 LI,
.selectBox-options LI A {
    list-style: none;
    display: block;
    cursor: default;
    padding: 0;
    margin: 0;
}

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

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

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

.selectBox-options LI.selectBox-selected A {
    background-color: #ec6d00;
    color:#ffffff;
}

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