/*
Stylish Select 0.3 - 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
*/


/*==================================
remove default focus style
====================================*/
:focus {outline:none;}

.js ul.newList {left:-9999px;}

/*======================================
windows xp style - div that contains the 
<select> has been given an id of #win-xp
(for the purposes of this example
========================================*/

/* news/tips/info */
.newListSelected {
	background-attachment:scroll;
	background-color:#FFFFFF;
	background-image:url("../images/dropdown.jpg");
	background-position:140px 5px;
	background-repeat:no-repeat;
	border:1px solid #DEDEDE;
	color:#000000;
	height:24px;
	padding:0;
	width:160px;
}
.newListSelected div {
	color:#114D8F;
	display:block;
	font-size:12px;
	height:16px;
	overflow:hidden;
	padding-left:5px;
	padding-right:20px;
	padding-top:6px;
	text-align:left !important;
}

/* store search */
.newListSelectedStore {
    background-attachment: scroll;
    background-color: #FFFFFF;
    background-image: url("../images/2011/side_store_finder_select.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    border: medium none;
    color: #000000;
    height: 21px;
    line-height: 10px;
    margin: 0;
    padding: 0;
    width: 205px;
}
.newListSelectedStore div {
    color: #114D8F;
    display: block;
    font-size: 12px;
    height: 16px;
    overflow: hidden;
    padding-left: 5px;
    padding-right: 20px;
    padding-top: 6px;
    text-align: left !important;
    width: 177px  !important;
    min-width: 177px;
}

ul.newList {
	list-style:none;
	color:#000;
	width:200px;
	background:#fff;
	border:1px solid #dedede;
	top: 1px;
	left:0;
	height:auto;
	overflow:auto;
	font-size: 0.95em;
	text-align:left!important;
	position:absolute;
	z-index:9999;
	padding-left: 0px;
	margin-left: 0px;
}
ul.newList li { border-bottom: 1px solid #cccccc;}
ul.newList li a { display: block; padding:2px 5px!important; }
.hiLite {background:#316ac5!important; color:#fff!important;}
.newListHover {background:#ccc!important; color:#000!important; cursor:default;}
.newListSelHover {cursor:default;}
.newListSelHover, .newListSelFocus {background-position:auto;}
.newListSelHover div, .newListSelFocus div {}

