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

/*==================================
red curvy example
====================================*/
ul.newList {list-style:none; overflow:visible; z-index:999; margin-top:18px !important; color:#fff; width:136px; margin:-20px 0 0 0; background:#0f0f0f; position:absolute; top:0!important; left:0; }
.newListSelected {width:136px; color:#fff; height:18px; padding:0 0 0 6px; float:left; background:url(../images/form/select-bg.png) no-repeat;}
.newListSelected span {width:136px; display:block;}
ul.newList li {padding:0px 8px; font-size:0.8em; margin:5px 0 5px 0; width:130px;}
.selectedTxt {width:136px; overflow:visible; height:18px; padding:0;}
.hiLite {background:#0f0f0f!important; color:#fff!important;}
.newListHover {background:#0f0f0f!important; color:#fff!important; cursor:default;}
.newListSelHover, .newListSelFocus {background-position:0 -18px; cursor:default;}
.newListOptionTitle {font-weight:bold;}
.newListOptionTitle ul {margin:0;}
.newListOptionTitle li {font-weight:normal; border-left:1px solid #ccc;}

.modal { 
    background-color:#fff; 
    display:none; 
    width:350px; 
    padding:15px; 
    text-align:left; 
    border:2px solid #333; 
 
    opacity:0.8; 
    -moz-border-radius:6px; 
    -webkit-border-radius:6px; 
    -moz-box-shadow: 0 0 50px #ccc; 
    -webkit-box-shadow: 0 0 50px #ccc; 
} 
 
.modal h2 { 
    background:url(/img/global/info.png) 0 50% no-repeat; 
    margin:0px; 
    padding:10px 0 10px 45px; 
    border-bottom:1px solid #333; 
    font-size:20px; 
}
