/* Dropdown control */
.selectBox-dropdown {
	width: 272px ;
	padding: 6px;
	position: relative;
	border: solid 1px #4c4c4c;
	text-decoration: none;
	display: inline-block;
	cursor: default;
	text-transform: uppercase;
	font-family: 'proxima_nova_rgregular';
	font-size: 20px;
	color: #c6c6c6;
	text-transform: uppercase;
	text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.55);
	background: url(/wp-content/uploads/img-udi/selact-bc.png) repeat-x;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	line-height: 30px;
}
.selectBox-dropdown:hover {
	color: #fff;
	cursor: pointer;
}
.selectBox-dropdown:focus, .selectBox-dropdown:focus .selectBox-arrow {
	border-color: #aaa;
	color: #fff;
}
.selectBox-disabled {
	background-color: #fff;
	opacity: 0.3;
}
.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;
}
.selectBox-dropdown .selectBox-label {
	width: 100%;
	padding: 2px 15px;
	white-space: nowrap;
	overflow: hidden;
	font-family: 'proxima_nova_rgregular';
	font-size: 18px;
	color: #c6c6c6;
	text-transform: uppercase;
	text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.55);
}
.selectBox-dropdown .selectBox-arrow {
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 100%;
	background: url(arrow.png) 50% center no-repeat;
	border-left: solid 1px #4c4c4c;
}
/* Dropdown menu */
.selectBox-dropdown-menu {
	position: absolute;
	z-index: 99999;
	background: #1e1e1e;
	-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;
	font-size: 12px;
	border: 1px solid #4e5252;
	-webkit-border-bottom-right-radius: 8px;
	-webkit-border-bottom-left-radius: 8px;
	-moz-border-radius-bottomright: 8px;
	-moz-border-radius-bottomleft: 8px;
	border-bottom-right-radius: 8px;
	border-bottom-left-radius: 8px;
}
/* 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;
}
.selectBox-options LI A {
	line-height: 41px;
	padding: 0px 11px;
	white-space: nowrap;
	overflow: hidden;
	border-top: 1px solid #484c4c;
	font-family: 'proxima_nova_rgregular';
	font-size: 18px;
	color: #c6c6c6;
	text-transform: uppercase;
	text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.55);
}
.selectBox-options LI.selectBox-hover A {
	background-color: #ba0202;
}
.selectBox-options LI.selectBox-disabled A {
	color: #888;
	background-color: transparent;
}
.selectBox-options LI.selectBox-selected A {
	background-color: #ba0202;
}
.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: #ccc !important;
}
.selectBox-dropdown.selectBox-disabled .selectBox-arrow {
	opacity: .10;
	filter: alpha(opacity=2);
	border-color: #fff;
	background-color: #fff;
}
.selectBox-inline.selectBox-disabled {
	color: #fff !important;
}
.selectBox-inline.selectBox-disabled .selectBox-options A {
	background-color: transparent !important;
}
