/* Simple Dropdown Menu adapted from www.nickrigby.com */

/* Styles for Menu Size */
ul#panel,
ul#panel ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 245px; /* Sets Width of Menu Items */
	background: #a3b5a7; /* Fixes IE6 Background Bug */
	}

/* Styles for Menu Titles */
ul#panel li.title { display: block; width: 230px; color: #fff; font: 10px Arial, Helvetica, sans-serif, Verdana; background: #000; /* Fixes IE6 Background Bug */
	letter-spacing: 1px; padding: 5px 5px 5px 10px; border-bottom: 1px solid #fff; }

/* Styles for Menu Items */
ul#panel li a { display: block; text-decoration: none; color: #fff; font: 10px Arial, Helvetica, sans-serif, Verdana; padding: 5px 5px 5px 20px; border-bottom: 1px solid #fff; background-image: url(../images/arrow_red.gif); background-repeat: no-repeat; background-attachment: scroll; background-position: left center; }

/* Menu Items Hover Styles */
ul#panel li a:hover {
	color: #fff;
	background-color: #66846C;
	background-image: url(../images/arrow_white.gif);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: left center;
	}
	
/* Fix IE. Hide from IE Mac \*/
* html ul#panel li { float: left; height: 1%; }
* html ul#panel li a { height: 1%; }
