/**
* 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;
	width:100%;
}

/*
* Red example
---------------------------------------------------------*/
.stylish-select .SSContainerDivWrapper {
	margin:0;
	padding:0;
	position:absolute;
	top:22px;
	left:0;
	z-index:2;
	font-weight:300;
	color:#646a7a;
	font-size:15px;
	background:#333;
}

.stylish-select ul.newList {
	margin:0;
	padding:0;
	list-style:none;
	/*background:#333;*/
	/*overflow:auto;*/
}

.stylish-select ul.newList * {
	margin:0;
	padding:0;
}

.stylish-select ul.newList {
	padding:18px 0;
	margin:0 16px;
}

.stylish-select ul.newList.autoHeight {
	height: auto !important;
}

.stylish-select ul.newList.limitHeight {
	overflow:auto;
}

.stylish-select ul.newList li {
	padding:5px 0;
}

.stylish-select ul.newList a {
	color:#ccc;
	font-size: 16px;
	text-decoration:none;
	/*display:block;*/
	display:inline-block;
	/*padding:5px 0;*/
	font-weight:350;
}

.stylish-select ul.newList a:focus {outline:#fff dotted 1px;}

.stylish-select .newListSelected {
	/*width:150px;*/
	color:#333;
	height:43px;
	padding: 0;
	float:left;
	border-bottom: 2px solid #cacaca;
	cursor:pointer;
	text-align:left;
	background:#fff url(../images/common/bg_select_down.png) no-repeat right 18px;
}

.stylish-select .newListSelected:focus {outline:1px dotted rgba(0,0,0,0.8); outline-offset:1px;}


.stylish-select .newListSelected.on {
	background:#fff url(../images/common/bg_select_up.png) no-repeat right 18px;
}

.stylish-select .newListSelected:focus {/*outline: 0 none;*/}


.stylish-select ul.newList li a:focus {
	/*-moz-outline-style: none;*/
}

.stylish-select .selectedTxt {
	display:block;
	/*width:150px;*/
	overflow:hidden;
	height:41px;
	padding:0 41px 0 10px;
	cursor: pointer;
	line-height:39px;
	font-weight:300;
	color:#333;
	font-weight:400;
	font-size:16px;
}
.stylish-select .selectedTxt:focus {
	outline:1px dotted rgba(0,0,0,0.8); outline-offset:1px;
}

.stylish-select .hiLite {
	border-bottom: 1px solid #ccc;
}

.stylish-select .newListHover {
	/*background:#ccc!important;
	color:#000!important;*/
	cursor:pointer;
}

.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;
}