/* Dropdown control */
.selectBox-dropdown {
	height:22px;
	width:115px;
    padding: 2px 27px 0 3px;
    margin: 5px 10px 5px 0;
	position: relative;
	line-height: 1.5;
	text-decoration: none;
	text-align: left;
	color:#494a4d;
	outline: none;
	vertical-align: middle;
/*	background-image:url(../images/select_bg.jpg);*/
	border: 1px solid #353535;
	background-repeat: no-repeat;
	display: inline-block;
	cursor: default;
}
#page_block .selectBox-dropdown {
	background-image:url(../images/select_bg_s.jpg);
	background-repeat: no-repeat;
	width: 22px !important;
}
.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {
	border-color: #666;
}

.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: 1px 5px;
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	max-width: 140px;
	min-width: 140px;
}

.selectBox-dropdown .selectBox-arrow {
	position: absolute;
	top: 0;
	right: 3px;
	width: 28px;
	height: 100%;
	background: url(../images/arrow_select.png) 50% center no-repeat;
}


/* Dropdown menu */
.selectBox-dropdown-menu {
	font-size:13px;
	position: absolute;
	z-index: 9;
	max-height: 200px;
	min-height: 1em;
	background:#fff;
    border:1px solid #353535;
	overflow: auto;
	width:145px!important;
}
.selectBox-dropdown-menu a{
	color:#545557;
}

/* Inline control */
.selectBox-inline {
	min-width: 150px;
	outline: none;
	border: solid 1px #BBB;
	background: #222;
	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 {
	line-height: 1.5;
	padding: 3px .5em;
	white-space: nowrap;
	overflow: hidden;
	background: 6px center no-repeat;
}

.selectBox-options LI.selectBox-hover A {
	color: #2f6696;
}

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

.selectBox-options LI.selectBox-selected A {
	color: #2f6696;
}

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