/* Dropdown control */
.selectBox-dropdown {
	min-width: 80px;
	height:40px;
	position: relative;
	border: solid 1px #e4e4e4;
	line-height: 1.5;
	text-decoration: none;
	text-align: left;
	color: #000;
	outline: none;
	vertical-align: middle;
	background: #f6f6f6;
	-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, .75);
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .75);
	box-shadow: 0 1px 0 rgba(255, 255, 255, .75);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	display: inline-block;
	cursor: default;
}
.selectBox-dropdown:focus .selectBox-arrow {
	background: url(../_img/dropdown-opener.png) 0 -40px no-repeat;
}
.selectBox-dropdown:hover .selectBox-arrow:hover {
	background-position:-41px 0;
}
.selectBox-dropdown.selectBox-menuShowing .selectBox-arrow:hover {
	background-position:-41px -40px;
}
.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-top:15px;
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	font-size:13px;
	line-height:13px;
	color:#616161;
	text-align:left;
	height:25px;
	padding-left:15px;
}
.dDay, .dMonth {
	width:82px!important;
}
.dDay .selectBox-label, .dMonth .selectBox-label {
	width:41px!important;
}
.dYear {
	width:107px!important;
}
.dYear .selectBox-label {
	width:66px!important;
}
.slt150 .selectBox-dropdown { width:150px !important;}
.slt160 .selectBox-dropdown { width:160px !important;}
.slt170 .selectBox-dropdown { width:170px !important;}
.slt180 .selectBox-dropdown { width:180px !important;}
.slt190 .selectBox-dropdown { width:190px !important;}
.slt200 .selectBox-dropdown { width:200px !important;}
.slt220 .selectBox-dropdown { width:220px !important;}
.slt240 .selectBox-dropdown { width:240px !important;}
.slt260 .selectBox-dropdown { width:260px !important;}

.selectBox-dropdown .selectBox-arrow {
	position: absolute;
	top: 0;
	right: 0;
	width: 41px;
	height: 100%;
	background: url(../_img/dropdown-opener.png) 0 0 no-repeat;
}
/* VRP EDIT
.accountNoField .selectBox-label {
	width:39px!important;
}
*/
/* Dropdown menu */
.selectBox-dropdown-menu {
	position: absolute;
	z-index: 99999;
	max-height: 200px;
	min-height: 1em;
	border: solid 1px #5e8421; /* 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;
	border-radius:4px;
}
/* Inline control */
.selectBox-inline {
	min-width: 150px;
	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: default;
	padding: 0;
	margin: 0;
}
.selectBox-options LI A {
	padding:10px 15px;
	color:#6e9931;
	font-size:13px;
	overflow: hidden;
	border-bottom:1px solid #8aac59;
}
.selectBox-options LI.selectBox-hover A {
	background-color: #207EC1;
	color:#fff;
}
.selectBox-options LI.selectBox-disabled A {
	color: #888;
	background-color: transparent;
}
.selectBox-options LI.selectBox-selected A {
	background-color: #176298;
	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;
}
