/* Dropdown control */
.selectBox-dropdown {
	cursor: pointer;
    width: 196px !important;
	position: relative;
	height: 28px;
	line-height: 28px;
	padding: 0px;
	margin: 0px 0px 6px 0px;
	vertical-align: middle;
	text-decoration: none;
	overflow: hidden;
	zoom: 1;
	background: url('layer_nav.gif') 0px 0px no-repeat;
}

.selectBox-menuShowing {
	background-position: 0px -28px;
}

.selectBox-dropdown .selectBox-label {
	padding: 0px 8px;
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	font-size: 14px;
	font-style: italic;
	color: #000;
}

.selectBox-dropdown .selectBox-arrow {
	position: absolute;
	top: 0;
	right: 0;
	width: 28px;
	height: 100%;
	background: url('select_arrow_big.png') 0px 0px no-repeat;
}

.selectBox-menuShowing .selectBox-arrow {
    background-position: 0px -28px;
}


/* Dropdown menu */
.selectBox-dropdown-menu {
	position: absolute;
	z-index: 99999;
	max-height: 200px;
	min-height: 1em;
	border: 1px solid #01596f;
	border-top: none;
	background: #FFF;
	-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);
	overflow: auto;
}


/* Inline control */
.selectBox-inline {
	min-width: 150px;
	outline: none;
	border: solid 1px #BBB;
	background: #FFF;
	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: 24px;
	padding: 0px 8px;
	white-space: nowrap;
	overflow: hidden;
	color: #000;
}

.selectBox-options LI.selectBox-selected A,
.selectBox-options LI.selectBox-hover A {
	background-color: #EEE;
}

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

.selectBox-options .selectBox-optgroup {
	color: #666;
	background: #EEE;
	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;
}



/* Toolbar */
.toolbar .limiter .selectBox-dropdown {
    float: left;
    width: 102px !important;
    position: relative;
    height: 24px;
    line-height: 24px;
    margin: 0px;
    background: url('toolbar_select_bg.gif') 0px 0px no-repeat;
}
.toolbar .sort-by .selectBox-dropdown {
    float: left;
    width: 142px !important;
    position: relative;
    height: 24px;
    line-height: 24px;
    margin: 0px;
    background: url('sortby_select_bg.gif') 0px 0px no-repeat;
}
.toolbar .limiter .selectBox-menuShowing,
.toolbar .sort-by .selectBox-menuShowing {
    background-position: 0px -24px;
}

.toolbar .selectBox-dropdown .selectBox-arrow {
    width: 22px;
    background: url('select_arrow_small.png') 0px 0px no-repeat;
}
.toolbar .selectBox-menuShowing .selectBox-arrow {
    background-position: 0px -24px;
}

.toolbar .selectBox-dropdown .selectBox-label {
    font-size: 12px;
    color: #787878;
    line-height: 24px;
    text-align: left;
    display: block;
    width: 61px !important;
}
.toolbar .selectBox-dropdown.selectBox-menuShowing .selectBox-label { color: #000; }


