/* Dropdown control */
.selectBox-dropdown {
    width: 224px; /* width = (desired width) - padding-right */
    border:1px solid #b1b1b1;
    padding-right: 40px;
    position: relative;
    line-height: 30px;
    font-size:18px;
    text-decoration: none;
    color: #333333;
    outline: none;
    vertical-align: middle;
    background: #FFF;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    display: inline-block;
    cursor: pointer;
    margin-bottom:10px;
    font-style: italic;
    text-decoration:none;
}/* Dropdown control */
.selectBox-dropdown:hover {
    border-color:#c5e1f5;
}

.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;
    border-color:#c5e1f5;
}

.selectBox-dropdown .selectBox-label {
    width: 100%;
    padding: .2em .3em;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
}

.selectBox-dropdown .selectBox-arrow {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 23px;
    height: 20px;
    background: url(https://cdn6.f-cdn.com/css/jquery_ui/images/jquery.selectBox-arrow.png?v=188dbf0ad50315ec75c19bec081a004d&amp%3Bm=6&amp%3BbuildVersion=3da94a3cb84e54c1bbf745ce36c0f028f69ac884) top center no-repeat;
    border:none;
}
.selectBox-dropdown:hover .selectBox-arrow {
    background-position: center bottom !important;
}


/* Dropdown menu */
.selectBox-dropdown-menu {
    position: absolute;
    z-index: 99999;
    max-height: 200px;
    border: solid 3px #c5e1f5; /* should be the same border width as .selectBox-dropdown */
    border-top:1px dotted #ccc;
    background: #FFF;
    -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;
    -moz-border-radius-bottomleft: 5px;
    -moz-border-radius-bottomright: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding-bottom:10px;
}


/* 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;
    text-decoration:none;
}

.selectBox-options LI A {
    line-height: 0.6;
    padding: 0.5em .5em;
    white-space: nowrap;
    overflow: hidden;
    background: 6px center no-repeat;
    color:#333333 !important;
    text-decoration:none;
    font-size: 14px;
}

.selectBox-options LI.selectBox-hover A {
    background-color: #EEE;
    color:#222 !important;
    text-decoration:none;
}
.selectBox-options LI.selectBox-hover A:last-child {
    background-color: #EEE;

    -moz-border-radius-bottomleft: 5px;
    -moz-border-radius-bottomright: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    text-decoration:none;
}

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

.selectBox-options LI.selectBox-selected A, .selectBox-options LI.selectBox-hover.selectBox-selected A {
    background-color: #c5e1f5;
    text-decoration:none;
}

.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;
    text-decoration:none;
}
