/**
* Stylish Select 0.4.5 - $ plugin to replace a select drop down box with a stylable unordered list
* http://scottdarby.com/
* 
* 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:320px !important;
	position:absolute;
	top:24px !important;
	left:0;
	z-index:2;
}

.stylish-select ul.newList {
	margin:0;
	padding:0;
	list-style:none;
	color:#000;
	

	
	background: #f0f0f0;
	border:1px solid #00a3b3;
	border-width :0px 1px 1px 1px;
	overflow:auto;
	text-align:left;
	width:318px;
	
	overflow: hidden;
	
	
	-moz-border-radius-bottomleft: 5px;
	-border-radius-bottomright: 5px;
	-webkit-border-bottom-left: 5px;
	-webkit-border-bottom-right: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	-khtml-border-bottom-left-radius: 5px;
	-khtml-border-bottom-right-radius: 5px;
}
.stylish-select ul.newList li{
	width:320px;
}
.stylish-select ul.newList * {
	margin:0;
	padding:0;
}


.stylish-select ul.newList a {
	color: #000;
	text-decoration:none;
	display:block;
	padding:3px 8px;
}

.stylish-select .newListSelected {
	float:left;
	width:320px;
	height:30px;
	color:#000;
	background:url(../images/sselect.png) top left no-repeat;
}

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

}

.stylish-select .selectedTxt {
	width:320px;
	overflow:hidden;
	height:30px;
	line-height:30px;
	text-align:left;
	font-size:14px;
	color:#333;
	padding:0 25px 0 10px;
	cursor:pointer;
}

.stylish-select .hiLite {
	background:#f0f0f0!important;
	color:#00a3b3!important;
	text-align:left;
}

.stylish-select .newListHover {
	background:#00a3b3!important;
	color:#fff!important;
	text-align:left;
	cursor:pointer;
}

.stylish-select .newListSelHover,
.stylish-select .newListSelFocus {
	cursor:default;
	background-position: 0px -30px;	
}

.stylish-select .newListOptionTitle {

}

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

.stylish-select .newListOptionTitle li {
	width:320px;
	font-weight:normal;
	border-left:1px solid #ccc;
}