/* SelectBox styles */
.ui-selectBox {
	position: relative;
	width: 130px; /* 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;
		font-weight:bold;
}

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

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

.ui-selectBox-label {
	width: autopx;
	padding: .2em .3em;
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
}
.ui-selectBox-arrow {
	position: absolute;
	top: 0;
	right: 0;
	width: 23px;
	height: 100%;
	background: url(jquery.ui-selectBox-arrow.gif) 50% center no-repeat;
	border-left: solid 1px #BBB;
}

/* Dropdown styles */
#ui-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);
}

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

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

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

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

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

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

#ui-selectBox-dropdown .ui-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; }