/*
Stylish Select 0.2.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
*/
.newListSelected{
	float:left;
	background:url(../../gfx/select/back.gif) repeat-x;
	border:1px solid #d0d0d0;
	line-height:normal;
}
.newListSelected:hover{
	background-position:0 -22px;
}
.SELECT_DISABLED{
	background:#e6e7e8 url(../../gfx/grad_button.gif) repeat-x;
}
.SELECT_DISABLED:hover{
	background:#e6e7e8 url(../../gfx/grad_button.gif) repeat-x;
}
.SELECT_DISABLED .selectedTxt{
	background:none;
	padding:5px 5px 4px 5px;
}
.selectedTxt{
	background:url(../../gfx/select/arrow.gif) no-repeat right top;
	padding:5px 30px 4px 5px;
	float:left;
	overflow:hidden;
}
ul.newList * {
	margin:0; padding:0;
}
ul.newList{
	margin:0;
	padding:0;
	list-style:none;
	color:#000;
	background:#fff;
	position:absolute;
	display:none;
	border:1px solid #ccc;
	left:0;
	overflow:auto;
	z-index:9999;
}

.newListSelected span{
	display:block;
}
ul.newList li{
	padding:3px 8px;
}
.hiLite {
	background:#c2dbf1;
}
.newListHover {background:#ccc!important; color:#000!important; cursor:default;}
.newListSelHover {cursor:default;}
.newListOptionTitle {font-weight:bold;}
.newListOptionTitle ul {margin:3px 0 0;}
.newListOptionTitle li {font-weight:normal; border-left:1px solid #ccc;}