<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
* Stylish Select 0.4.5 - $ 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 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:257px;
	position:absolute;
	top:22px;
	left:0;
	z-index:1100;
}
.stylish-select ul.newList {
	margin:0;
	padding:0;
	list-style:none;
	/*color:#000;*/
	background:#f4eedd;;
	border:1px solid #d1bf98;
	overflow:auto;
	overflow-x:hidden;
}

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


.stylish-select ul.newList a {
	/*color: #000;*/
	text-decoration:none;
	display:block;
	/*padding:3px 5px;*/ padding-left:3px;
}

.stylish-select .newListSelected { 
    width:250px; 
	/*color:#000;*/
	/*float:left;*/ 
	height:19px; padding:2px 0 2px 5px;
	display:inline-block;  
	border: solid 1px #d1bf98; 
	/*background:url(select-bg.png) no-repeat;*/
	background-color: #eddfc2; 
	background-image: url(../images/bg_select_arrow.gif); background-repeat: no-repeat; background-position: 99% center;	
}

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

.stylish-select .selectedTxt {
	width:258px;
	overflow:hidden;
	height:19px; line-height:19px;
	/*padding:0 23px 0 0;*/
}

.stylish-select .hiLite {
	background:#d3a183!important;
	color:#fff!important;
}

.stylish-select .newListHover {
	background:#e0c09e!important;
	/*color:#000!important;*/
	cursor:default;
}

.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;
	/*border-left:1px solid #ccc;*/
}</pre></body></html>