/*
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;}

/*======================================
windows xp style - div that contains the 
<select> has been given an id of #win-xp
(for the purposes of this example
========================================*/
.newListSelected {
	border:1px solid #dedede;
	color:#000;
	height:24px;
	padding:0;
	width:160px;
	background-attachment: scroll;
	background-color: #FFF;
	background-image: url(../images/dropdown.jpg);
	background-repeat: no-repeat;
	background-position: 140px 5px;
}
.newListSelected div {
	display:block;
	font-size:0.95em;
	text-align:left !important;
	width: 132px;
	height:16px;
	padding-top: 5px;
	padding-left: 8px;
	padding-right: 20px;
	overflow: hidden;
}
ul.newList {
	list-style:none;
	color:#000;
	width:160px;
	background:#fff;
	border:1px solid #dedede;
	top: 0px;
	left:0;
	height:auto;
	max-height:300px;
	overflow:auto;
	font-size: 0.95em;
	text-align:left!important;
	position:absolute;
	z-index:9999;
	padding-left: 0px;
	margin-top: 0px;
}
ul.newList li {padding:2px 5px!important; border-bottom: 1px solid #cccccc;}
.hiLite {background:#316ac5!important; color:#fff!important;}
.newListHover {background:#ccc!important; color:#000!important; cursor:default;}
.newListSelHover {cursor:default;}
.newListSelHover, .newListSelFocus {background-position:auto;}
.newListSelHover div, .newListSelFocus div {}

