/* Dropdown control */
.selectBox-dropdown {
	height:27px;
	width:173px;
    padding:0 27px 0 3px;
    margin:5px 10px 5px 0;
	min-width: 170px;
	max-width: 170px;
	position: relative;
	line-height: 1.5;
	text-decoration: none;
	text-align: left;
	color:#494a4d;
	border:1px solid #CACACA;
	font-family:Arial, Helvetica, sans-serif;
	 -moz-border-radius: 3px; /* Firefox */
    -webkit-border-radius: 3px; /* Safari, Chrome */
    -khtml-border-radius: 3px; /* KHTML */
    border-radius: 3px; /* CSS3 */
	outline: none;
	vertical-align: middle;
	display: inline-block;
	cursor: default;
}

.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {
	border-color: #999;
}

.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: 2px 8px;
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	min-width: 154px;
	font-style:italic;
	color:#9d9d9d;
}

.selectBox-dropdown .selectBox-arrow {
	position: absolute;
	top: 0;
	right: -1px;
	width: 31px;
	height: 100%;
	background: url(/tpl/column1/images/arrow_select.png) 50% center no-repeat;
}


/* Dropdown menu */
.selectBox-dropdown-menu {
	font-size:13px;
	position: absolute;
	z-index: 99999;
	max-height: 200px;
	min-height: 1em;
	background:#eee;
    border:1px solid #ccc;
	overflow: auto;
	width:95%;
}
.selectBox-dropdown-menu a{
	color:#545557;
}

/* Inline control */
.selectBox-inline {
	min-width: 150px;
	outline: none;
	border: solid 1px #BBB;
	background: #bbb;
	display: inline-block;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	overflow: auto;
}

.selectBox-inline:focus {
	border-color: #bbb;
}


/* 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: 0 .5em;
	white-space: nowrap;
	overflow: hidden;
	background: 6px center no-repeat;
}

.selectBox-options LI.selectBox-hover A {
	background-color: #bbb;
}

.selectBox-options LI.selectBox-disabled A {
	color: #888;
	background-color: transparent;
}

.selectBox-options LI.selectBox-selected A {
	background-color: #bbb;
}

.selectBox-options .selectBox-optgroup {
	color: #666;
	background: #222;
	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;
}