/* Dropdown control */
.selectBox-dropdown {
	width: 93px; /* width = (desired width) - padding-right */
	margin:-12px 0px 0 0;
	padding:0px 35px 0px 9px;
	position: relative;
	line-height: 1.5;
	text-decoration: inherit;
	color: #4e69a2;
	outline: none;
	vertical-align: middle;
	background: none;
	display: inline-block;
	cursor: pointer;
	font-size:11px;
	font-family:Arial, sans-serif;
	border:1px solid #ebeef5;
	height:37px;
}

a.selectBox-dropdown:hover{
	background-color:#FFFFFF;
	text-decoration:none;
}

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

.selectBox-dropdown.selectBox-menuShowing {
	background: #F2F2F2;
	background-color:#FFFFFF;
	font-size:11px;
	font-family:Arial, sans-serif;
	color:#000000;
	border:1px solid #e5e5e5;
}

.selectBox-label{
	margin:8px 0 0 0;
	font-weight:bold;
}

.selectBox-label.black{
	color:#000000;
}

.selectBox-dropdown .selectBox-label {
	width: 100%;
	padding: .2em .3em;
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
}

.selectBox-dropdown .selectBox-arrow {
	position: absolute;
	top: 0;
	right: 0;
	width: 43px;
	height: 100%;
	background: url(../img/arrowdown.gif) 50% center no-repeat;
}


/* Dropdown menu */
.selectBox-dropdown-menu {
	position: absolute;
	z-index: 99999;
	max-height: 200px;
	border: solid 1px #e5e5e5; /* should be the same border width as .selectBox-dropdown */
	background: #FFF;
	overflow: auto;
	font-size:11px;
	font-family:Arial, sans-serif;
}


/* Inline control */
.selectBox-inline {
	width: 250px;
	outline: none;
	border: solid 1px #e5e5e5;
	background: #FFF;
	display: inline-block;
	overflow: auto;
}

.selectBox-inline:focus {
}


/* Options */
.selectBox-options,
.selectBox-options LI,
.selectBox-options LI A {
	list-style: none;
	display: block;
	cursor: pointer;
	padding: 0 0 0 0px;
	margin: 0;
}

.selectBox-options LI A {
	line-height: 1.5;
	padding: 0 0 0 5px;
	white-space: nowrap;
	overflow: hidden;
	background: 6px center no-repeat;
	color:#4e69a2;
}

.selectBox-options LI.selectBox-hover A {
	text-decoration:underline;
}

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

.selectBox-options LI.selectBox-selected A {
	color:#000000;
}

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