/*
Stylish Select css 0.1b - 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
*/

ul.newList {
	list-style:none;
	color:#fff;
	outline: none;
	background: #013741;
	position: absolute;
	right:0; top :0 !important;
	/*width: 176px;*/
	border: 1px solid #ffc500;
	overflow: auto;
	display: none;
	z-index: 9999;
	width: 170px;
	padding: 0;
}

.newListSelected {
	color:#fff;
	outline: none;
	background:url(/images/buttons/select_button_off.gif) no-repeat left top;
	/*width:176px;*/
	padding: 0;
	float:left;
	position: relative;
	z-index:9999;
}

.newListSelected:hover {	background: url(/images/buttons/select_button.gif) no-repeat left top; }
.newListSelected span {
	/*width:149px;*/
	display:block;
}
ul.newList li { padding: 3px 0; /*width: 150px;*/ text-align: left; position: relative; z-index: 9999; width: inherit !important; }
.selectedTxt {
	font-size: 1em;
	width: 160px;
	padding: 0 3px 0 23px;
	overflow: hidden;
}
#teamMembers .selectedTxt {
	width: 140px;
}
.hiLite {
	/*font-weight: bold;*/
	color:#fff !important;
	background: #ffc500 !important;
	/*display:none;*/
}
.newListHover {
	color:#fff !important;
	background: #0c1115!important;
	cursor: default;
}
.newListSelHover {cursor:default;}
.newListOptionTitle {font-weight:bold;}
.newListOptionTitle ul {margin: 0;}
.newListOptionTitle li {
	font-weight:normal;
	border-left: 1px solid #ccc;
}
