/*
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 * 
{
	margin: 0px;
	padding: 0px;
}

ul.newList
{
	position: absolute;
	top: 0px;
	left: 0px;

	display: block;
	width: 288px;

	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 6px;

	padding: 0px;

	color: rgb(255,255,255);
	background-color: rgb(0,28,43);

	list-style: none;
	overflow: auto;
	z-index: 9999;
}

.newListSelected
{
	width: 292px;
	height: 23px;
	float: left;

	margin: 0px;
	padding: 4px;

	color: rgb(255,255,255);

	background-image: url(http://www.spinacz.com/_layout/f_002.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
}

.newListSelected span
{
	display: block;

	width: 248px;
	height: 15px;

	margin: 0px;

	padding-top: 4px;
	padding-right: 40px;
	padding-bottom: 4px;
	padding-left: 4px;
}

ul.newList li
{
	padding: 3px 8px;
	list-style: none;
}

ul.newList li small
{
	display: block;
}

.selectedTxt
{
	display: block;

	width: 248px;
	height: 15px;

	margin: 0px;

	padding-top: 4px;
	padding-right: 40px;
	padding-bottom: 4px;
	padding-left: 4px;

	overflow: hidden;
}

.hiLite
{
	background: rgb(0,54,83)!important;
	color: rgb(255,255,255)!important;
}

.newListHover
{
	cursor: pointer;
	color: rgb(0,151,236)!important;
}

.newListSelHover, .newListSelFocus 
{
	cursor: pointer;
	background-position: 0px -31px;
}

.newListOptionTitle
{
	font-weight: bold;
}

.newListOptionTitle ul
{
	margin: 3px 0 0;
}

.newListOptionTitle li 
{
	font-weight: normal;

	border-left-style: solid;
	border-left-width: 1px;
	border-left-color: rgb(0,151,236);
}

