/* Dropdown control */
a.selectBox-dropdown {
		width: 185px;
		background: #fff;
		border: 2px solid #CECECD;
		-webkit-border-radius: 2px;
		-moz-border-radius: 2px;
		border-radius: 2px;
		height: 29px;
		padding: 0 30px 0 5px;
		cursor: pointer;
		outline: none;
		vertical-align: middle;
		font: bold 16px Arial,Helvetica,sans-serif;
		color: #444;
		text-decoration: none;
		position: relative;
}
/*.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {
	border-color: #666;
}*/
/*.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%;
	line-height: 29px;
	display: block;
	white-space: nowrap;
	overflow: hidden;
}
.selectBox-dropdown .selectBox-arrow {
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 100%;
	background: url(images/selectBox-arrow.gif) 50% center no-repeat;
}


/* Dropdown menu */
.selectBox-dropdown-menu {
	position: absolute;
	z-index: 99999;
	max-height: 174px;
	border: 2px solid #CECECD;
	background: #FFF;
	overflow: auto;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	font: bold 16px/29px Arial,Helvetica,sans-serif;
	margin-top: -2px !important;
}


/* 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: pointer;
	margin: 0;
	padding: 0;
	text-decoration: none;
}

.selectBox-options LI A {
	padding: 4px 11px;
	color: #2E3335;
	display: block;
	line-height: 21px;
	white-space: nowrap;
	overflow: hidden;
	background: #fff;
}

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

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

.selectBox-options LI.selectBox-selected A {
	background: #F1B750;
	color: #FFF
}

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