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

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

/* Styles for Menu Titles */
ul#news li.title { display: block; width: 235px; color: #fff; font: 9px "Trebuchet MS", Geneva, Arial, Helvetica, SunSans-Regular, sans-serif; background: #000; /* Fixes IE6 Background Bug */
	letter-spacing: 2px; padding: 3px 0px 3px 10px; border-bottom: 1px solid #fff; }

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

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