/* borrowed from http://www.alistapart.com/articles/horizdropdowns*/
body {
	font-family: Arial;
	font-size: 9pt;
	font-style: normal;
	font-weight: bold;
	font-variant: normal;
	color: #930000;
	background-image: url(/images/bg2.png);
	}

ul#nav {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 120px; /* Width of Menu Items */
	/*	border-bottom: 1px solid #ccc; */
	font-size: 9pt;
	background-color: transparent;
	/*		background-color: #FFFFFF;*/
	color: #930000;
	float: inherit;
	}
ul#clink {
	background-color: transparent;
}
	
ul li {
	position: relative;
	color: #930000;
	background-color: transparent;
	visibility: inherit;
	}
	
li ul  {
	position: absolute;
	left: 119px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	background-color: transparent;
	}

/* Styles for Menu Items */
ul  li a {
	display: block;
	text-decoration: none;
	color: #8b0000;
	background: #fff; /* IE6 Bug */
	padding: 5px;
	/*	border: 1px solid #ccc; /* IE6 Bug */
	border-bottom: 0;
	background-color: transparent;
	}
	
/* Holly Hack. IE Requirement \*/
* html ul  li { float: left; height: 1%; }
* html ul  li a { height: 1%; }
/* End */
ul li a:hover {
	color: #E2144A;/*	text-align: center;  *//*	*/
	background-image: url(/images/Buttons/menublank.png);
	background-color: transparent;
} /* Hover Styles */
li:hover ul, li.over ul {
	display: block;
	/*		background-image: url(/images/hovbkgd.gif);*/
	background-color: transparent;
} /* The magic */
