/**
* 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;
}

.stylish-select .SSContainerDivWrapper {
	margin:0;
	padding:0;
	position:absolute;
	width:100%;
	top:25px;
	left:0;
	border:0;
	z-index:81;
}

.stylish-select ul.newList {
	position:relative;
	margin:0;
	padding:0;
	list-style:none;
	color:#666;
	background:#EEECE7;
	overflow:auto;
	z-index:80;
}
#booking ul.newList {max-height:105px;}
#content ul.newList {
	list-style: none;
	background: #fcfcfc;
	border: 1px solid #ccc;
	overflow: auto;
	max-height: 150px;
	overflow-x: hidden;
	height: auto !important;
	margin: 0 !important;
	padding: 0;
	z-index: 2;
	position: relative;
}

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


.stylish-select ul.newList a {
	color: #666;
	text-decoration:none;
	display:block;
	padding:3px 8px;
	position:relative;
}
.stylish-select ul.newList li {
	background: none !important;
	margin: 0 !important;
	padding: 0 !important;
	line-height: 15px;
}
.stylish-select ul.newList li a:focus {
	-moz-outline-style: none;
}
#booking .newListSelected {
	width:50px;
}
#content .newListSelected {
	width:251px;
	border: 1px solid #ccc;
	background:#fcfcfc;
	display:inline-block;
}
.stylish-select .newListSelected {
	height:25px;
	border:0;
	background:#EEECE7;
	display:inline-block;
}

.stylish-select .selectedTxt {
	z-index:99999;
	height:25px;
	font:12px/25px "Trebuchet MS", sans-serif;
	color:#666666;
	padding:0 20px 0 9px;
	background:url(../images/sprite.png) no-repeat 100% -102px;
}

.stylish-select .newList a.hiLite {
	background:#2a95bf;
	color:#fff;
}


.stylish-select .newList:hover a:hover{
	background:#2a95bf;
	color:#fff;
}
.stylish-select .newList a:active{
	top:0!important;
}


.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 {
	background-position:0 -22px;
	cursor:default;
}

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

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

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