/* Dropdown control */
.selectBox-dropdown {
	height:27px;
	width:173px;
    padding:0 27px 0 3px;
    margin:5px 10px 5px 0;
	min-width: 210px;
	max-width: 230px;
	position: relative;
	line-height: 1.5;
	text-decoration: none;
	text-align: left;
	color:#494a4d;
        font-weight: bold;
	font-family:Arial, Helvetica, sans-serif;
	 -moz-border-radius: 5px; /* Firefox */
    -webkit-border-radius: 5px; /* Safari, Chrome */
    -khtml-border-radius: 5px; /* KHTML */
    border-radius: 5px; /* CSS3 */       
	outline: none;
        overflow: hidden;
	vertical-align: middle;
	display: inline-block;
	cursor: default;
}

#page_block .selectBox-dropdown {        
	min-width: 20px;
        max-width: 20px;
}

.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: 4px 8px;
	display: inline-block;
	white-space: nowrap;
	min-width: 200px;
	color:#898989;
        text-transform: uppercase;
        text-decoration: underline;
}

.selectBox-dropdown .selectBox-arrow {
	position: absolute;
	top: 0;
	right: -4px;
	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;
        text-transform: uppercase;
        font-weight: bold;
	background:#ededed;
        border:1px solid #d8d0d0;
	overflow: auto;
	width:95%;
}
.selectBox-dropdown-menu a{
	color:#898989;
}

/* 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: #dedede;
        text-decoration: none;
}

.selectBox-options LI.selectBox-disabled A {
	color: #888;
	background-color: transparent;
}

.selectBox-options LI.selectBox-selected A {
	background-color: #dedede;
}

.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;
}