/* Dropdown control */
.selectBox-dropdown {
    width: 160px!important;
    padding-right: 0px;
    position: relative;
    border: solid 1px #ccc;
    text-decoration: none;
    color: #000;
    outline: none;
    vertical-align: middle;
    background: #fff!important;
    -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, .75);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    display: inline-block;
    cursor: default;
    font: 12px Arial, Helvetica, "Trebuchet MS", sans-serif;
    text-transform: uppercase;
}

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

.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 {
    width: 100%;
    padding: 2px 2px;
    padding: 3px 1px 0 1px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    color: #000;
}

.selectBox-dropdown .selectBox-arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 26px;
    height: 100%;
    background: url(arrow.png) 50% center no-repeat;
    border-left: solid 1px #bbb;
}


/* Dropdown menu */
.selectBox-dropdown-menu {
    position: absolute;
    z-index: 99999;
    max-height: 200px;
    color: #000;
    background: #fff;
    box-shadow: 0px 0px 1px #ccc;
    border: 1px solid #c1c1c1;
    overflow: auto;
    font-size: 12px;
}


/* Inline control */
.selectBox-inline {
    width: 250px;
    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 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: 0.5em .5em;
    white-space: nowrap;
    overflow: hidden;
    border-bottom: 1px solid #f9f9f9;
    cursor: pointer;
}

.selectBox-options LI.selectBox-hover A {
    background-color: #e2e2e2;
    color: #000;
    cursor: pointer;
}

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

.selectBox-options LI.selectBox-selected A {
    background-color: #e2e2e2;
    cursor: pointer;
}

.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: #555 !important;
}

.selectBox-dropdown.selectBox-disabled .selectBox-arrow {
    opacity: .10;
    border-color: #000;
    background-color: #666;
}

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

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