/* Dropdown control */
.selectBox-dropdown {
    min-width: 150px;
    position: relative;
    line-height: 21px;
    text-decoration: none;
    text-align: left;
    color: #9a9a9a;
    outline: none;
	font-size: 16px;
    vertical-align: middle;
    background: #eaeaea;
    display: inline-block;
    cursor: pointer;
}

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

.selectBox-dropdown .selectBox-arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 38px;
    height: 35px;
	background: url(../images/dropdown_trans.png) 0 0 no-repeat;
}

.selectBox-dropdown {
	background: url(../images/dropdown.png) 0 0 no-repeat;
}

.selectBox-arrow {
	background: url(../images/dropdown.png) 0 0 no-repeat;
}

.selectBox-dropdown:hover {
	background: url(../images/dropdown.png) 0 -35px no-repeat;
}

.selectBox-arrow:hover {
	background: url(../images/dropdown1.png) 0 -35px no-repeat;
}

/* Dropdown menu */
.selectBox-dropdown-menu {
    position: absolute;
    z-index: 99999;
    max-height: 245px;
    min-height: 1em;
    background: #EEE;
    overflow: auto;
}

/* Inline control */
.selectBox-inline {
    min-width: 150px;
    outline: none;
    border: solid 1px #BBB;
    background: #FFF;
    display: inline-block;
    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;
	color:#9a9a9a;
}


/*.selectBox-options.selectBox-options-top{
    border-bottom:none;
	margin-top:1px;
	-moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.selectBox-options.selectBox-options-bottom{
	border-top:none;
    -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;
}*/

.selectBox-options LI A {
    line-height: 2;
    padding: 0 .5em;
    white-space: nowrap;
    overflow: hidden;
	padding:10px 8px;
    border-bottom:solid 1px #CCCCCC;
}

.selectBox-options LI.selectBox-hover A {
    background-color: #95c93d;
	color:#FFF;
	cursor:pointer;
}

.selectBox-options LI.selectBox-selected A {
    background-color: #999;
	color:#FFF;
}

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



.selectBox-options .selectBox-optgroup {
    color: #666;
    background: #95c93d;
    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;
}
*/