@charset "UTF-8";
/* DROP MENU */
#navTopLeft ul li ul {
	margin:0;
	margin-top:1.2em;
	z-index:10; /* puts drop-down on top of div - Safari needs this as menu is 1px higher */
	position:absolute; /* positions the drop-down ul in relation to its relatively positioned li parent */
	width:19em; /*sets the width of the menu - in combo with the li's 100% width, makes the menu stack*/
	left:-1px; /*aligns the drop exactly under the menu */
	background-color:#990000;
	font-size: 10px;
	border-left:solid 1px #FFFFFF;
	border-right:solid 1px #FFFFFF;
	}
#navTopLeft ul li ul li {
	padding: .25em 0 .25em 0 ;
	width:100%; /* makes the list items fill the list container (ul) */
	border-bottom:1px solid #fff;
}
#navTopLeft ul li ul li a {
	padding:.75px .5em;
	color:#FFFFFF;
}
#navTopLeft ul li ul li a:hover {
	color:#FFCC00;
}
#navTopLeft ul li ul li:first-child {
	 border-top:1px solid #FFFFFF; /*the top edge of the dropdown */
}
#navTopLeft ul li ul li.last {
	clear:both;
}
/* make the drop-down display as the menu is rolled over */
#navTopLeft ul li ul {
	display:none;
} /* conceals the drop-down when menu not hovered */
#navTopLeft ul li:hover ul {
	display:block;
} /* shows the drop-down when the menu is hovered */
* html #navTopLeft ul {
	margin:-5px 0 0 240px;/* indents ul from edge of container  */
}
