/*
Stylish Select 0.4.1 - $ 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 or newer

Dual licensed under the MIT and GPL licenses.

*/


/*==================================
Hide lists on page load
====================================*/

.stylish-select ul.newList {
	left:-9999px;
}
/*==================================
red curvy example
====================================*/
ul.newList * {
	
}

ul.newList a {
	color: #fff;
	text-decoration:none;
	display:block;
}

ul.newList {
	list-style:none;
	color:#fff;
	width:170px;
	background:#000;
	position:absolute;
	top:50px;
	left:0;
	overflow:auto;
	z-index:9999;
}

.newListSelected {
	font-size:12px;
	width:167px;
	color:#fff;
	height:20px;
	padding:3px 0 0 6px;
	float:left;
	background:url(../../images/html/selectfield_bg.gif) no-repeat;
	margin-bottom:12px;
	outline:none;
}

.newListSelected span {
	width:167px;
	display:block;
}

ul.newList li a {
	padding:3px 8px;
	display: block;
}

.selectedTxt {
	width:144px;
	overflow:hidden;
	height:17px;
	padding-right:20px;
}

.hiLite {
	background:#000 !important;
	color:#fff !important;
}
.hiLite a {
	background:#000 !important;
	color:#fff !important;
}

.newListHover {
	background:#fff !important;
	color:#000 !important;
	cursor:default;
}
