/* Dropdown control */
.selectBox-dropdown {
	width:279px;
	height:34px;
	margin-left:0px;
	border:0px solid #c1c1c1;
	background:url(../img/cartType.png) no-repeat center center;
	display: inline-block;
	cursor: pointer;
	vertical-align: middle;
	position:relative;
	line-height:210%;
	color:#535353;
	font-size:14px;
	font-family:tahoma;
	padding-left:7px;
}

.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {
color:#535353;
font-size:14px;
font-family:tahoma;
}

.selectBox-dropdown.selectBox-menuShowing {
}

.selectBox-dropdown .selectBox-label {
	width: 100%;
	padding: .2em .3em;
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	color:#535353;
	font-size:14px;
	font-family:tahoma;
}

.selectBox-dropdown .selectBox-arrow {
	position: absolute;
	top: 2px;
	right: 2px;
	width: 25px;
	height: 29px;
	color:#535353;
	font-size:14px;
	font-family:tahoma;
	/*background: url(../img/fo-select-arrow.gif) right center no-repeat;*/
}


/* Dropdown menu */
.selectBox-dropdown-menu { 
	position: absolute;
	z-index: 99999;
	max-height: 200px;
	border: solid 1px #c1c1c1; /* should be the same border width as .selectBox-dropdown */
	background: #FFF;
	overflow: auto;
	color:#535353;
	font-size:14px;
	font-family:tahoma; 
}


/* Inline control */
.selectBox-inline {
	outline: none;
	border: solid 1px #c38955;
	background: #FFF;
	display: inline-block;
	overflow: auto;
	color:#535353;
	font-size:14px;
	font-family:tahoma;
}

.selectBox-inline:focus {
	border-color: #666;
	color:#535353;
	font-size:14px;
	font-family:tahoma;
}


/* Options */
.selectBox-options,
.selectBox-options LI,
.selectBox-options LI A { 
	list-style: none;
	display: block;
	cursor: default;
	padding: 0;
	margin: 0;
	color:#535353;
	font-size:14px;
	font-family:tahoma;
}

.selectBox-options LI A {
	line-height: 1.5;
	padding:.3em;
	white-space: nowrap;
	overflow: hidden;
	background: 6px center no-repeat;
	color:#61330d;
}

.selectBox-options LI.selectBox-hover A {
	background-color: #EEE;
	color:#535353;
	font-size:14px;
	font-family:tahoma;
}

.selectBox-options LI.selectBox-disabled A {
	background-color: transparent;
	color:#535353;
	font-size:14px;
	font-family:tahoma;
}

.selectBox-options LI.selectBox-selected A {
	background-color: #C8DEF4;
	color:#535353;
	font-size:14px;
	font-family:tahoma;
}

.selectBox-options .selectBox-optgroup {
	font-size:14px;
	background: #EEE;
	font-weight: bold;
	line-height: 1.5;
	padding: 0 .3em;
	white-space: nowrap;
	color:#535353;
	font-size:14px;
	font-family:tahoma;
}


/* 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;
}