/*
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 #fc-drop
(for the purposes of this example
========================================*/
#fc-drop .newListSelected{
	padding:0px;
	background:#FFF url(dropdown.gif) no-repeat scroll 122px 1px;
	border:1px solid #A5ACB2;
	color:#000;
	height:17px;
	width:140px;
}
#fc-drop .newListSelected div{
	display:block;
	font-size:11px;
	padding:2px 2px 2px 4px;
	text-align:left !important;
	width:135px;
	height:12px;
	overflow:hidden;
}
#fc-drop 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;
}
#fc-drop ul.newList li{
	margin:0px;
	padding:2px 5px!important;
	border-bottom: 1px solid #ddd;
}
#fc-drop .hiLite{
	background:#316ac5!important;
	color:#fff!important;
}
#fc-drop .newListHover{
	background:#ccc!important;
	color:#000!important;
	cursor:default;
}
#fc-drop .newListSelHover{
	cursor:default;
}
#fc-drop .newListSelHover, #fc-drop .newListSelFocus{
	background-position:auto;
}
#fc-drop .newListSelHover div, #fc-drop .newListSelFocus div{
	/* color:red; */
}