/* Dropdown control */

.selectBox-dropdown {
	display: inline-block;
	position: relative;
	vertical-align: middle;
	text-decoration: none;
	cursor: default;
	outline: none;
}

.selectBox-dropdown:hover, .selectBox-dropdown:focus, .selectBox-dropdown:hover span { text-decoration: none !important; }

.selectBox-dropdown .selectBox-label {
	overflow: hidden;
	display: block;
	padding: 0.167em 0.167em 0;
	margin-right: 1.833em;
	font-weight: normal;
	white-space: nowrap;
}

.selectBox-dropdown .selectBox-arrow {
	position: absolute;
	top: 0.583em;
	right: 0.583em;
	width: 1em;
	height: 1em;
	background: url('/media/resources/gfx/sprite.png') -50px -25px no-repeat;
}

.selectBox-dropdown-menu {
	z-index: 99999;
	overflow: auto;
	position: absolute;
	max-height: 200px;
	border: 0.083em solid #999;
	color: #666;
	background: #eee;
}

.selectBox-inline {
	overflow: auto;
	display: inline-block;
	border: 0.083em solid #ccc;
	color: #666;
	background: #eee;
	outline: none;
}

.selectBox-options,
.selectBox-options li,
.selectBox-options li a {
	display: block;
	padding: 0;
	margin: 0;
	padding: 0;
	cursor: default;
}

.selectBox-options li a {
	overflow: hidden;
	padding: 0.417em;
	color: #666;
	background-color: #eee;
	white-space: nowrap;
}

.selectBox-options li a:hover { text-decoration: none !important; }

.selectBox-options li.selectBox-hover a {
	color: #666;
	background-color: #ddd;
}

.selectBox-options li.selectBox-disabled a {
	color: #ccc;
	background-color: transparent;
}

.selectBox-options li.selectBox-selected a {
	color: #fff;
	background-color: #B32028;
}

.selectBox-options li.selectBox-disabled { display: none; }

.selectBox-options .selectBox-optgroup {
	font-weight: bold;
	padding: 0.417em;
	white-space: nowrap;
}


.selectBox.selectBox-disabled {
	opacity: 0.66;
	color: #afafaf !important;
}

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

.selectBox-inline.selectBox-disabled .selectBox-options a { background-color: transparent !important; }