/*
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
*/


/*==================================
remove default focus style
====================================*/
:focus{
	outline:none;
}

.js ul.newList{
	left:-9999px;
}

/*==================================
red curvy example
====================================*/
ul.newList, ul.newList *{
	margin:0px;
	padding:0px;
}

/*======================================
windows xp style - div that contains the 
<select> has been given an id of .selCont
(for the purposes of this example
========================================*/
.selCont .newListSelected{
	padding:0px;
	background:#FFF url(dropdown.gif) no-repeat scroll 226px 0px;
	border:1px solid #A5ACB2;
	color:#000;
	height:20px;
	width:248px;
}
.selCont .newListSelected div{
	display:block;
	font-size:11px;
	padding:2px 2px 2px 4px;
	text-align:left!important;
	width:243px;
	height:12px;
	overflow:hidden;
}
.selCont ul.newList{
	margin:0px;
	padding:0px;
	list-style:none;
	color:#000;
	width:250px;
	background:#fff;
	border:1px solid #999;
	top:22px;
	left:0;
	height:auto;
	overflow:auto;
	font-size:11px;
	text-align:left!important;
	position:absolute;
	z-index:9999;
	text-indent:0px;
}
.selCont ul.newList li{
	margin:0px;
	padding:2px 5px!important;
	border-bottom: 1px solid #ddd;
}
.selCont .hiLite{
	background:#316ac5!important;
	color:#fff!important;
}
.selCont .newListHover{
	background:#ccc!important;
	color:#000!important;
	cursor:default;
}
.selCont .newListSelHover{
	cursor:default;
}
.selCont .newListSelHover, .selCont .newListSelFocus{
	background-position:auto;
}
.selCont .newListSelHover div, .selCont .newListSelFocus div{
	/* color:red; */
}