/*Drop Down CSS menu*/
ul#nav
{
	margin: 0;
	margin-top:1px;
	margin-left:20px;
	padding: 0;
	list-style: none;
	width: 100px; /* Width of Menu Items */
	
}

ul#nav li
{
	position: relative;
	list-style-type:none;
	
}
	
ul#nav li ul
{
	z-index: 1;
	position: absolute;
	/*
	Level 2 Position
	*/
	left: 60px; /* Set at least 1px less than menu width */
	top: 0px;
	display: none;
	width:95px;
	list-style-type:none;
}

/* Styles for Menu Items */
ul#nav li a
{
	display: block;
	padding-left:0px;
	padding-top:4px;
	padding-bottom:4px;
	background-color: transparent;
	list-style-type:none;
	font-family: "Trebuchet MS", Tahoma;
	font-size:12px;
	font-weight:bold;
	color:#232176;
	text-decoration:none;
}

ul#nav li a.active{
	display: block;
	padding-left:0px;
	padding-top:4px;
	padding-bottom:4px;
	background-color: transparent;
	list-style-type:none;
	font-family: "Trebuchet MS", Tahoma;
	font-size:12px;
	font-weight:bold;
	color:#232176;
	text-decoration:none;
	background-image:url(images/arrow.gif);
	background-repeat:no-repeat;
	background-position:right;

}


/* Fix IE. Hide from IE Mac \*/
* html #wrap #sidebar table tr td ul#nav li { float: left; height: 1%; list-style-type:none;}
* html #wrap #sidebar table tr td ul#nav li a { height: 1%; list-style-type:none;}
/* End */

ul#nav li a:hover { 
	text-decoration: none;
	color:#FFFFFF;
	background-color: transparent;
	color:#1d5b90;
	list-style-type:none;
	font-weight:bold;
	} /* Hover Styles */
		
ul#nav li ul li a { padding: 5px; list-style-type:none; } /* Sub Menu Styles */
		
ul#nav li:hover ul, ul#nav li ul.over { display: block; list-style-type:none; } /* The magic */
