/*
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 {
	display: none;
}
ul.newList * {margin:0; padding:0;}
ul.newList a {text-decoration:none; display:block;}

ul.newList {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 299px;
	background: black;
	position: absolute;
	top: 30px !important;
	left:0;
	overflow: auto;
	z-index: 9999;
}
