/**
* 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
---------------------------------------------------------*/
.rpwe-clearfix{
zoom: 1;
}
.stylish-select .SSContainerDivWrapper {
	left:-9999px;
}

/*
* Red example
---------------------------------------------------------*/
.stylish-select .SSContainerDivWrapper {
	    left: -1px !important;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 40px !important;
    width: 101%;
    z-index: 9999;
}

.stylish-select ul.newList {
	text-align:left;
	background:#fff;
    border: 1px solid #404346;
    color: #636363;
    height: 200px !important;
    list-style: none outside none;
    margin: 0;
    overflow: auto;
    padding: 0;
}

.stylish-select ul.newList * {
	margin:0;
	padding:0;
}


.stylish-select ul.newList a {
	text-decoration:none;
	display:block;
	padding:10px 8px;
	cursor:pointer;
	font-size:16px;
	font-family: 'Geneva', arial;
	color:#585858;
}

.stylish-select .newListSelected {
  background:#fff;
  margin-left:1px;
    float: left;
	margin-top:6px;
    padding:4px 0 5px;
	width:218px;
	border:1px solid #404346;
	  
}

.stylish-select ul.newList li a:focus {
	-moz-outline-style: none;
}

.stylish-select .selectedTxt {
	width:97%;
	font-size:16px;
	font-family: 'Geneva', arial;
	color:#585858;
	overflow:hidden;
	padding:0px 23px 0 12px;
	text-align:left;
	letter-spacing:1px;
    line-height: 31px;
	background:url(../images/arrow_down.png) no-repeat right;
	cursor: pointer;
}
.input_box input[type=button] {
	background:#818285;
	font-weight:normal;
	color:#fff;
	font-size:18px;
	font-family: 'trebuc', arial;
	padding:10px 15px 11px;
	margin:6px 0 0 7px;
}
.firefox .input_box input[type=button],.safari .input_box input[type=button]{
	padding:10px 15px 9px;
}
.stylish-select .hiLite {
	background:#00355f!important;
	color:#fff!important;
}

.stylish-select .newListHover {
	background:#00355f!important;
	color:#fff!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;
}