/* Dropdown control */
.selectBox-dropdown {
	background:url(../images/select-bg.gif) no-repeat 0 0;
	min-width: 157px;
	position: relative;
	text-decoration: none;
	color: #616161;
	font-size:12px;
	line-height:16px;
	height:16px;
	outline: none;
	vertical-align: middle;
	display: inline-block;
	cursor: default;
	float:left;
}
.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {
	/*border-color: #666;*/
}
.selectBox-dropdown.selectBox-menuShowing .selectBox-arrow{
	/*background: url(../images/select-btn.gif) 0 -33px no-repeat;*/
}
.selectBox-dropdown .selectBox-label {
	padding: 0 30px 0 12px;
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
}
.selectBox-dropdown .selectBox-arrow {
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 100%;
	/*background: url(../images/select-btn.gif) 0 25px no-repeat;*/
}
/* Dropdown menu */
.selectBox-dropdown-menu {
	position: absolute;
	z-index: 99999;
	max-height: 200px;
	/*border: solid 1px #BBB;*/ /* should be the same border width as .selectBox-dropdown */
	background:#fff;
	overflow: auto;
	border:solid 1px #5f8ee8;
	border-top:0;
}
* html .selectBox-dropdown-menu {height:200px;}
/* Inline control */
.selectBox-inline {
	min-width: 75px;
	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: #eff3f9;
}
/* Options */
.selectBox-options,
.selectBox-options LI,
.selectBox-options LI A {
	list-style: none;
	display: block;
	cursor: default;
	padding: 0;
	margin: 0;
	text-decoration:none;
	color:#616161;
}
.selectBox-options LI A {
	font-size:13px;
	padding: 0 .5em;
	white-space: nowrap;
	overflow: hidden;
	background: 6px center no-repeat;
}
.selectBox-options LI.selectBox-hover A {
	background-color: #eff3f9;
	text-decoration:none;
}
.selectBox-options LI.selectBox-disabled A {
	color: #888;
	background-color: transparent;
}
.selectBox-options LI.selectBox-selected A {
	background-color: #eff3f9;
}
.selectBox-options .selectBox-optgroup {
	color: #666;
	background: #eff3f9;
	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;
}