/**
* Stylish Select 0.4.9 - $ plugin to replace a select drop down box with a stylable unordered list
* http://github.com/scottdarby/Stylish-Select/
* 
* Copyright (c) 2009 Scott Darby
* 
* Requires: jQuery 1.3 or newer
* 
* Dual licensed under the MIT and GPL licenses.
*/

/**
* Hide lists on page load
---------------------------------------------------------*/

.stylish-select .SSContainerDivWrapper {
	left:-9999px;
}

/*
* Red example
---------------------------------------------------------*/

.stylish-select .SSContainerDivWrapper {
	margin:0;
	padding:0;
	width:100%;
	position:absolute;
	top:28px!important;
	left:0;
	z-index:2;
}
.stylish-select ul.newList {
	margin:0;
	padding:0;
	height:150px;
	list-style:none;
	color:#000;
	background:none;
width:100%;
	overflow:hidden;
}

.stylish-select ul.newList * {
	margin:0;
	padding:0;
}


.stylish-select ul.newList a {
	 color: #ffffff;
 text-decoration:none;
 display:block;
 padding:3px 16px;
 width:100%;
 float:none;
}

.stylish-select .newListSelected {
	 width:100%;
 color:#000;
 height:28px;
 margin-right:5px;


 float:left;
 background:url(../images/select_black.png) no-repeat right top;

}

.selectbox_outer .newListSelected{ background:url(../images/sel-bg.png) no-repeat right top; width:160px; height:36px; float:right;}



.stylish-select ul.newList li a:focus {
	-moz-outline-style: none;
}


.stylish-select .selectedTxt {
	width:100%;
	overflow:hidden;
	height:28px;
	padding:3px 23px 0 17px;
	color:#e2e2e2;
	

}

.stylish-select .hiLite {
	background:#333333;
	color:#fff!important;
}

.stylish-select .newListHover {
	background:#ef382e !important;
        color:#000!important;
        cursor:default;
}

.stylish-select .newListDisabled {
	opacity: 0.6;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
	filter: alpha(opacity=60);
}

.stylish-select .newListItemDisabled {
	opacity: 0.6;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
	filter: alpha(opacity=60);
}

.stylish-select .newListOptionDisabled {
	opacity: 0.6;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
	filter: alpha(opacity=60);
}

.stylish-select .newListSelHover,
.stylish-select .newListSelFocus {

	cursor:default;
}

.stylish-select .newListOptionTitle {
	font-weight:bold;
}

.stylish-select .newListOptionTitle ul {
	margin:3px 0 0;
}

.stylish-select .newListOptionTitle li {
	font-weight:normal;
}
.selectbox_outer .selectedTxt{ font-size:20px; color:#df1209; height:36px; text-align:left}
.selectbox_outer .SSContainerDivWrapper{ top: 36px !important;}
.selectbox_outer ul.newList a{ font-size:18px;padding: 6px 16px;}
.selectbox_outer .hiLite{ background:#2e373e}