/* Dropdown control */
.selectBox-dropdown {
    background-color: #3a3a3a;
	border: solid 1px #030303;
	margin-top: 15px;
	font-size: 12px;
	font-weight: normal;
	height: 30px;
	position: relative;
	width: 166px;
	display: inline-block;
	color: #838383;
    outline: medium none;
    text-decoration: none;
}
.selectBox-dropdown:hover{
	cursor:pointer;
}
.selectBox-dropdown:hover, .selectBox-dropdown:active, .selectBox-dropdown:focus,.selectBox-options LI A {
	color: #838383;
    outline: medium none;
    text-decoration: none;
    font-size:12px;
}
.selectBox-options li a:hover{
	color: #ddd;
    text-decoration: none;
    cursor: pointer;
}




.selectBox-dropdown .selectBox-label {
   display: block;
	height: 30px;
	left: 0;
	line-height: 30px;
	outline: none;
	overflow: hidden;
	position: absolute;
	text-indent: 10px;
	top: 0;
}

.catalog-category-view select,.awadvancedsearch-result-index select{
	width: 170px;
}
.catalog-category-view  .pager select,.awadvancedsearch-result-index  .pager select {
    width: 65px;
}
.selectBox-dropdown .selectBox-arrow {
    background: url(../images/catalog_sprite.png) 7px -182px no-repeat;
display: block;
height: 30px;
outline: none;
position: absolute;
right: 0;
top: 0;
width: 26px;
border-left: 1px solid #030303;
}
.selectBox-dropdown .selectBox-arrow:hover{
	background: url(../images/catalog_sprite.png) 7px -182px no-repeat;
}
/* Dropdown menu */
.selectBox-dropdown-menu {
    position: absolute;
    z-index: 99999;
    max-height: 200px;
    min-height: 1em;
    border: solid 1px #BBB; /* should be the same border width as .selectBox-dropdown */
    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;
    -webkit-overflow-scrolling: touch;
}

/* 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;
}



/* Options */
.selectBox-options{
	background-color: #212121;
	border: solid 1px #515151;
	list-style: none;
	left: -1px;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 30px;
	width: 166px;
	z-index: 1;
	overflow-y: auto;
}
.selectBox-options li{
	padding: 0 7px;
}

.selectBox-options LI A {
    border-bottom: dotted 1px #515151;
	display: block;
	outline: none;
	padding: 7px 0 7px 3px;
}




/* Disabled state */
.selectBox.selectBox-disabled {
    color: #888 !important;
}
