/*
Stylish Select 0.4.1 - $ 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 ul.newList {left:-9999px;}

/*==================================
red curvy example
====================================*/
ul.newList * {margin:0; padding:0;}
ul.newList a {color: #000; text-decoration:none; display:block;}

ul.newList {
  margin : 0;
  padding : 0;
  list-style : none;
  color : #ff6c00;
  width : 25px;
  background : #fff;
  position : absolute;
  border : 1px solid #ccc;
  top : 22px;
  left : 0;
  overflow : hidden;
  z-index : 9999;
}
ul.newList li a {
  text-align : center !important;
}
.newListSelected {width:25px; height:19px; padding:3px 0 0 6px; float:left; }
.newListSelected span {width:25px; display:block;}
ul.newList li a {padding:3px 6px; display: block;font-size: 11px; font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;}
ul.newList li a:focus {-moz-outline-style: none;}
.selectedTxt {width:25px; overflow:hidden; font-size: 11px; font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; color:#aaa; height:16px; padding:0; background: url(../images/select-arrow.png) no-repeat right center;}
.selectedTxt:hover {color: #ff6c00; background: url(../images/select-arrow-active.png) no-repeat right center;}
.hiLite {color:#666!important;}
.hiLite a {color:#ff6c00!important;}
.newListHover {background:#ccc!important; color:#333!important; cursor:default;}
.newListSelHover, .newListSelFocus {background-position:0 -22px; cursor:default;}
.newListOptionTitle {font-weight:bold;}
.newListOptionTitle ul {margin:3px 0 0;}
.newListOptionTitle li {font-weight:normal; border-left:1px solid #ccc;}
