/* ----------------------------------------------------------------------------------------------------------------------- */
/* Skinned Select Boxes -------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
/* Dropdown control */
.selectBox {
}

a.selectBox.selectBox-dropdown,
a.selectBox.selectBox-dropdown:hover {
	background: #fffff;
	border: 1px solid #bac0c2;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	display: inline-block;
	font-size: 12px;
	height: 26px;
	line-height: 26px;
	cursor: pointer;
	outline: none;
	overflow: hidden;
	position: relative;
	padding: 0;
	text-decoration: none;
	vertical-align: middle;
	width: 288px;
	min-width: 288px;
}

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

.selectBox-dropdown.selectBox-menuShowing {

}

.selectBox-dropdown .selectBox-label {
	color: #424547;
	font-weight: normal;
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	padding-left: 10px;
	min-width: 288px;
}

.selectBox-dropdown .selectBox-arrow {
	background: #eeeeee url(/images/global/drop-icon.png) 50% 50% no-repeat;
	position: absolute;
	top: 0;
	right: 0;
	width: 28px;
	height: 100%;
}


/* Dropdown menu */
.selectBox-dropdown-menu {
	background: red;
	position: absolute;
	z-index: 99999;
	max-height: 200px;
	border: solid 1px #818285; /* should be the same border width as .selectBox-dropdown */
	background: #FFF;
	-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);
	margin: 0;
	overflow: auto;
	padding: 0;
	width: 100%;
	height: auto;
}


/* 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 {
	color: #424547;
	cursor: pointer;
	font-size: 12px;
	font-weight: normal;
	display: block;
	list-style: none;
	padding: 0;
	margin: 0;
	width: auto;
}

.selectBox-options LI A {
	line-height: 1.5;
	padding: 5px 10px;
	background: 6px center no-repeat;
	text-decoration: none;
}

.selectBox-options LI.selectBox-hover A {
	background-color: #EEE;
}

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

.selectBox-options LI.selectBox-selected {
	background-color: #EEE;
	display: none;
}

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