/* Dropdown control */
.selectBox-dropdown {
    position: relative;
    height:24px;
    border: solid 1px #d4d4d4;
    text-decoration: none;
    text-align: left;
    color: #898989;
    outline: none;
    vertical-align: middle;
    display: inline-block;
    cursor: pointer;
    background-color:#fff;
    font-size:12px;
}

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

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

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

.selectBox-dropdown .selectBox-label {
    padding: 5px 8px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    line-height:1;
}

.selectBox-dropdown .selectBox-arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 17px;
    height: 100%;
    background: url(../images/jquery.selectBox-arrow.png) 50% center no-repeat;
}

/* Dropdown menu */
.selectBox-dropdown-menu {
    position: absolute;
    z-index: 99999;
    max-height: 200px;
    min-height: 1em;
    border: solid 1px #d4d4d4; /* should be the same border width as .selectBox-dropdown */
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    font-size:12px;
}

/* Inline control */
.selectBox-inline {
    outline: none;
    border: solid 1px #d4d4d4;
    display: inline-block;
    overflow: auto;
}

.selectBox-inline:focus {
}

/* Options */
.selectBox-options,
.selectBox-options LI,
.selectBox-options LI A {
    list-style: none;
    display: block;
    cursor: pointer;
    padding: 2px 0;
    margin: 1px 0 0 0;
    background-color:#fff;
}

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

.selectBox-options LI.selectBox-disabled A {
    color: #898989;
}

.selectBox-options LI.selectBox-selected A {
}

.selectBox-options .selectBox-optgroup {
    color: #898989;
    font-weight: bold;
    padding: 0 .3em;
    white-space: nowrap;
}

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

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

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

.selectBox-inline.selectBox-disabled .selectBox-options A {
}
