/* Dropdown control */
.selectBox-dropdown {
	background-color: #242322;
	position: relative;
	text-decoration: none;
	text-align: left;
	outline: none;
	color:#dadada;
	font: 14px/31px Arial,Helvetica,sans-serif;
	height:31px;
	cursor:pointer;
	border-radius: 4px;
	box-shadow: 0 1px 0 rgba(168,165,162,0.4), 0 2px 8px rgba(0,0,0,0.8) inset;
	display: inline-block;
	*display: inline;
	*zoom: 1;
	width:180px !important;
	text-decoration:none;
	margin-left: 10px;
}
.selectBox-dropdown:first-child {
	margin-left: 0;
}
.selectBox-dropdown:hover {
	text-decoration:none;}

.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {
	border-color: #0084E3;
}

.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-bottom-color:#fff;
	border-left-color:#0084E3;
	border-right-color:#0084E3;
	border-top-color:#0084E3;
}

.selectBox-dropdown .selectBox-label {
	padding: 0px 14px;
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
}

.selectBox-dropdown .selectBox-arrow {
	position:absolute;
	right:6px;
	top:12px;
	display:block;
	width:13px;
	height:14px;
	background:url(../i/b-menut_arr.png) no-repeat 0 0;
}


/* Dropdown menu */
.selectBox-dropdown-menu {
	box-shadow: 0 1px 0 rgba(168,165,162,0.4), 0 2px 8px rgba(0,0,0,0.8) inset;
	border-radius: 0 0 4px 4px;
	position: absolute;
	z-index: 99999;
	max-height: 200px;
	min-height: 1em;
	background-color:#242322 !important;
	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: #0084E3;
}


/* Options */
.selectBox-options,
.selectBox-options LI,
.selectBox-options LI A {
		margin:0;
		padding:0;
		background:none;
		z-index:30;
		font: 14px Arial, Helvetica, sans-serif;
}

.selectBox-options LI A {
	color:#dadada;
	display:block;
	padding:6px 6px 6px 14px;
	text-decoration:none;
	z-index:150;
    font:14px Arial,Helvetica,sans-serif;
    cursor: pointer;
}

.selectBox-options LI.selectBox-hover A {
	background-color: #413e3c;
}

.selectBox-options LI.selectBox-disabled A {
	color: #888;
	background-color: transparent;
}

.selectBox-options LI.selectBox-selected A {
	/*background-color: #242322;*/
}

.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;
}