@charset "utf-8";
/* CSS Document */
/*
Stylish Select 0.3 - jQuery plugin to replace a select drop down box with a stylable unordered list
http://scottdarby.com/
Download by http://www.codefans.net
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:0; padding:0;}
ul.newList {
	margin:0;
	padding:0;
	list-style:none;
	color:#0A5499;
	width:83px;
	position:absolute;
	border:1px solid #89A5D1;
	left:0;
	overflow:auto;
	z-index:9999;
	background-color: #F6FBFF;
	margin-top:-1px;
}
.newListSelected {
	width:84px;
	color:#0A5499;
	height:26px;
	line-height:26px;
	float:left;
	background-image: url(../images/select-bg.gif);
	background-repeat: no-repeat;
}
.newListSelected span {width:84px; display:block;}
ul.newList li a {
	color:#0A5499;
	width: 72px;
	padding-right: 11px;
	text-align: center;
	display:block;
	text-decoration:none;
	background-image:none;
	margin:0;
	font-weight: normal;
}
.selectedTxt {width:72px; overflow:hidden; height:26px; line-height:26px; text-align:center; padding-right:12px;}
.hiLite {
	color:#fff!important;
	background-color: #0A5499;
}
.newListHover {
	background-color: #E1F0FD;
	color:#0A5499!important;
	cursor:pointer;
}
.newListSelHover, .newListSelFocus {background-position:0 -26px; cursor:pointer;}
.newListOptionTitle {font-weight:bold;}
.newListOptionTitle ul {
	margin: 0;
}
.newListOptionTitle li {font-weight:normal; border-left:1px solid #ccc;}


