/*
Stylish Select 0.3 - jQuery 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

Licensed under the GPL license:
http://www.gnu.org/licenses/gpl.html
*/


div.selCont {
	margin-left:-5px;
	clear:both;
	height:36px;
	position:relative;
	z-index:9999;
}


/*==================================
remove default focus style
====================================*/
:focus {outline:none;}

.js ul.newList {left:-9999px;}

/*==================================
red curvy example
====================================*/
ul.newList * {
	margin:0; 
	padding:0;
}
ul.newList {
	margin:4px 0 0 5px; 
	padding:0 0 3px 0; 
	list-style:none; 
	color:#000; 
	width:190px;
	background:#e7b727;
	position:absolute;
	border:none; 
	top:18px; 
	left:0; 
	overflow:auto;
	z-index:9999;
	/*--Bottom right rounded corner--*/
	-moz-border-radius-bottomright: 10px;
	-khtml-border-radius-bottomright: 10px;
	-webkit-border-bottom-right-radius: 10px;
	/*--Bottom left rounded corner--*/
	-moz-border-radius-bottomleft: 10px;
	-khtml-border-radius-bottomleft: 10px;
	-webkit-border-bottom-left-radius: 10px;
}
.newListSelected {
	width:190px;
	color:#000; 
	height:24px; 
	padding:6px; 
	float:left; 
	background:url(../images/buttons/select_bg.png) 0 0 no-repeat; 
	cursor:pointer;
}
.newListSelected span {
	width:190px; 
	display:block;
}
ul.newList li {
	padding:2px 8px;
}
.selectedTxt {
	width:152px; 
	overflow:hidden; 
	height:22px; 
	padding:2px 30px 0 6px; 
	font-size:1.6em;
}
.hiLite {
	background:#000 !important; 
	color:#fff !important;}
.newListHover {
	background: url(../images/menu/arrow.gif) 0 -23px no-repeat !important; 
	color:#000 !important; 
	cursor:pointer;
}
.newListSelHover, .newListSelFocus {
	background-position:0 -44px; 
	cursor:pointer;
}
.newListOptionTitle {
	font-weight:bold; 
	font-size:1.2em; 
	margin-top:10px !important;
}
.newListOptionTitle ul {
	margin:0; 
	padding-top:2px; 
	border-top:1px dotted #000;
}
.newListOptionTitle li {
	font-weight:normal; 
	background: url(../images/menu/arrow.gif) 0 7px no-repeat; 
	color:#fff;
}

