/* Dropdown control */
.selectBox-dropdown {
	min-width: 250px;
	height: 40px;
	padding-left: 10px;
	position: relative;
    font-size: 14px;
	line-height: 40px;
	text-decoration: none;
	text-align: left;
	color: #818181;
	outline: none;
	vertical-align: middle;
	background-color: #e6e6e6; 
        -webkit-box-shadow: inset 2px 3px 10px -1px #808080;
        -moz-box-shadow: inset 2px 3px 10px -1px #808080;                        
        box-shadow: inset 2px 3px 10px -1px #808080;
	display: inline-block;
	cursor: pointer;
	border: none;
}

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

.selectBox-dropdown.selectBox-menuShowing, .selectBox-dropdown:hover {
    color: #818181;
}

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

.selectBox-dropdown .selectBox-arrow {
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 40px;
        background-image: url('../img/select-arrow.png'); 
        background-position: top left;
        background-repeat: no-repeat;
}

.selectBox-dropdown:hover .selectBox-arrow {
    background-position: bottom left;
}


/* Dropdown menu */
.selectBox-dropdown-menu {
	position: absolute;
        padding: 10px 0px;
	z-index: 99999;
	max-height: 200px;
	max-width: 207px;
	min-height: 30px;
	border: none;
	background-color: #a8a8a8;
	overflow: auto;
}


/* Inline control */
.selectBox-inline {
	min-width: 150px;
	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;
	border: none;
	display: block;
	cursor: pointer;
	margin: 0;
}

.selectBox-options LI a {
        color: #fff;
	line-height: 25px;
	padding: 0px 10px;
	white-space: nowrap;
	overflow: hidden;
	background: 6px center no-repeat;
}


.selectBox-options LI.selectBox-hover a {
	font-weight: bold;
}

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

.selectBox-options LI.selectBox-selected a {
        color: #fff;
}

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