/* Dropdown control */
.selectBox-dropdown {
	min-width: 89px;
	position: relative;
	line-height:1;
	text-decoration: none;
	text-align: left;
	color: #fff;height:45px;
	font-size:16px;text-transform:uppercase;
	outline: none;
	vertical-align: middle;
	display: block;
	cursor: pointer;
	border:1px solid #b3cea6;
	background:#7cc459;
}

.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:0 65px 0 14px;
	display: inline-block;line-height:45px;
	white-space: nowrap;
	overflow: hidden;
}

.selectBox-dropdown .selectBox-arrow {
    position: absolute;
    top: 0px;
    right: -1px;
    width: 55px;
    height: 45px;
    background: url(/layout/select_btn.jpg) 0 0 no-repeat;
	}


/* Dropdown menu */
.selectBox-dropdown-menu {
	position: absolute;
	z-index: 99999;
	max-height: 300px;
	min-height: 1em;
	border: solid 1px #b3cea6; /* should be the same border width as .selectBox-dropdown */
	border-top:none;
	background: #7cc459;
	overflow: auto;
}


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

.selectBox-inline:focus {
	border-color: #ebebeb;
}


/* 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: 45px;
	padding: 0 14px;
	white-space: nowrap;
	overflow: hidden;
	text-decoration:none;
	color:#fff;font-size:16px;text-transform:uppercase;
}

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

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

.selectBox-options LI.selectBox-selected A {
	background-color: #6dad4d;
}

.selectBox-options .selectBox-optgroup {
	color: #000;
	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;
}