/**
* Stylish Select 0.4.9 - $ plugin to replace a select drop down box with a stylable unordered list
* http://github.com/scottdarby/Stylish-Select/
* 
* 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 .SSContainerDivWrapper {
	left:-9999px;
}

/*
* Red example
---------------------------------------------------------*/
.stylish-select .SSContainerDivWrapper {
	margin:0;
	padding:0;
	width:100%;
	position:absolute;
	left:0;
	z-index:2;
	overflow:auto;
	background-color:#ffffff;
	box-shadow:0 0 5px #adadad;
}

.stylish-select ul.newList {
	margin:0;
	padding:0;
	list-style:none;
	background:#fff;
	overflow:auto;
	height:auto !important;
	overflow:hidden;
}

.stylish-select ul.newList * {
	margin:0;
	padding:0;
}


.stylish-select ul.newList a {
	text-decoration:none;
	display:block;
	padding:10px 15px;
	font-family:'Source Sans Pro',sans-serif;
	font-size:1.5em;
	color:#87929a;
	text-align:left;
}

.stylish-select .newListSelected {
	/*padding-top:18px;*/
}

.stylish-select ul.newList li a:focus {
	-moz-outline-style: none;
}

.stylish-select .selectedTxt {
	overflow:hidden;
	padding:24px 24px 0 0;
    font-family:'Source Sans Pro',sans-serif;
	font-size:1.5em;
	color:#87929a;
	text-align:left;
	background-image:url(select-bg-schedule.png);
	background-repeat:no-repeat;
	background-position:right center;
}

.stylish-select .hiLite {
	background:#04bca8!important;
	color:#ffffff!important;
}

.stylish-select .newListHover {
	background:#04bca8!important;
	color:#ffffff!important;
	cursor:default;
}

.stylish-select .newListDisabled {
	opacity: 0.6;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
	filter: alpha(opacity=60);
}

.stylish-select .newListItemDisabled {
	opacity: 0.6;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
	filter: alpha(opacity=60);
}

.stylish-select .newListOptionDisabled {
	opacity: 0.6;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
	filter: alpha(opacity=60);
}

.stylish-select .newListSelHover,
.stylish-select .newListSelFocus {
	cursor:default;
}

.stylish-select .newListOptionTitle {
	font-weight:bold;
}

.stylish-select .newListOptionTitle ul {
	margin:3px 0 0;
}

.stylish-select .newListOptionTitle li {
	font-weight:normal;
}