/* SelectBox styles */
.selectBox {
	position: relative;
	width: 188px; /* 188px + 35px (padding-right) + 2px (for borders) == 225px wide */
	border: solid 1px #BBB;
	text-decoration: none;
	color: #000;
	outline: none;
	vertical-align: middle;
	background: #F2F2F2;
	background: -moz-linear-gradient(top, #F8F8F8 1%, #E1E1E1 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #F8F8F8), color-stop(100%, #E1E1E1));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F8F8F8', endColorstr='#E1E1E1', GradientType=0);
	-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);
	padding-right: 35px;
	display: inline-block;
	cursor: default;
}

.selectBox-disabled,
.selectBox-disabled .selectBox-arrow {
	color: #888 !important;
	border-color: #BBB !important;
	font-style: italic !important;
}

.selectBox:hover,
.selectBox-focus,
.selectBox:hover .selectBox-arrow,
.selectBox-focus .selectBox-arrow {
	border-color: #666;
}

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

.selectBox-arrow {
	position: absolute;
	top: 0;
	right: 0;
	width: 23px;
	height: 100%;
	background: url(images/jquery.selectBox-arrow.gif) 50% center no-repeat;
	border-left: solid 1px #BBB;
}

/* Dropdown styles */
#selectBox-dropdown {
	max-height: 200px;
	border: solid 1px #BBB;
	background: #FFF;
	margin-top: -1px;
	overflow: auto;
	-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);
}

#selectBox-dropdown UL,
#selectBox-dropdown UL LI {
	list-style: none;
	padding: 0;
	margin: 0;
}

#selectBox-dropdown UL LI {
	white-space: nowrap;
	overflow: hidden;
	padding: .2em .6em .2em 20px;
	display: block;
	cursor: default;
}

#selectBox-dropdown .selectBox-optgroup {
	background: #F2F2F2;
	color: #888;
	padding-left: .6em;
}

#selectBox-dropdown.selectBox-hasOptgroups .selectBox-option {
	padding-left: 20px;
	background-position: 14px center;
}

#selectBox-dropdown .selectBox-option.selectBox-initial {
	background-image: url(images/jquery.selectBox-tick.gif);
	background-position: 4px center;
	background-repeat: no-repeat;
}

#selectBox-dropdown .selectBox-current {
	background-color: #C8DEF4;
}

#selectBox-dropdown .selectBox-disabled {
	color: #888;
	font-style: italic;
}


/* The following can be removed if you already have a jQuery UI theme loaded */
.ui-corner-tl { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; }
.ui-corner-tr { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; }
.ui-corner-bl { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; }
.ui-corner-br { -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }
.ui-corner-top { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; }
.ui-corner-bottom { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }
.ui-corner-right {  -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }
.ui-corner-left { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; }
.ui-corner-all { -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; }