/* Dropdown control */
.selectBox-dropdown {
	min-width: 80px;
	position: relative; 
	line-height:16px;
	font-size:9px; 
	text-transform:uppercase; 
	text-decoration: none;
	font-weight:normal;
	text-align: left;
	color: #666;
	outline: none;
	vertical-align: middle;
	background:none;
	display: inline-block;
	cursor: default;
	border:none;
	border-bottom: 1px solid #bfbfbf;
	float:left;
	margin:0;
	height:16px;
	padding-right:5px;
	text-align:center;
}
.selectBox-dropdown:focus, .selectBox-dropdown:focus .selectBox-arrow {
	border-color: #d5d7d8;
	outline:none;
}
.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 {
	padding: 3px 10px 3px 4px;
	padding: 2px 7px\9;
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	min-width:100px;
}
.selectBox-dropdown .selectBox-arrow {
	position: absolute;
	top: 1px;
	right: 3px;
	width: 15px;
	height: 100%;
	background:transparent url(../images/selectarrow.png) center center no-repeat; 
}
/* Dropdown menu */
.selectBox-dropdown-menu {
	position: absolute;
	z-index: 99999;
	max-height: 200px;
	min-height: 1em;
	/*border: solid 1px #e3e3e3; /* 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);
	overflow: auto;
}
/* Inline control */
.selectBox-inline {
	min-width: 100px;
	outline: none;
	border: solid 1px #e3e3e3;
	background: #FFF;
	display: inline-block;
}
.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: 1.7;
	padding: 0 .5em;
/*	white-space: nowrap;*/
	overflow: hidden;
	background: 6px center no-repeat;
}
.selectBox-options li.selectBox-hover a {
	background-color: #fee6ca;
}
.selectBox-options li.selectBox-disabled a {
	color: #888;
	background-color: transparent;
}
.selectBox-options li.selectBox-selected a {
	background-color: #f8b362;
	color:#fff;
}
.selectBox-options .selectBox-optgroup {
	color: #666;
	background: #EEE;
	font-weight: bold;
	line-height: 1.7;
	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;
}
