/* menu.css */

#menu{
	width:208px;
	margin-bottom:20px;
	text-transform:uppercase;
}
#menu ul{
	margin:0;
	padding:0;
	list-style:none;
	background-color:#000000;
	font-size:1.05em;
	font-weight:bold;
}
#menu li{
}
#menu li a{
	text-decoration:none;
	color:#CCCCCC;
	border-bottom:1px dotted #898989;
	display:block;
	width:188px;
	margin-left:10px;
	padding-top:7px;
	padding-bottom:5px;
}
#menu li a.t{
	background-image:url(/img/arrow_active.gif);
	background-repeat:no-repeat;
	background-position:right;
}
#menu li.hasChildren a.t{
	background-image:url(/img/arrow_sub.gif);
	background-repeat:no-repeat;
	background-position:right;
}

/* visibility of 3rd layer nav */
div#menu ul li ul{
	display:none;
}
div#menu ul .active ul{
	display:block;
}
/* end visibility of 3rd layer nav */

#menu ul ul{
	/*background-color:#004b8d;*/
	background-image:url(/img/menu_fade.gif);
	background-repeat:repeat;
}
#menu ul ul a{
	margin-left:20px;
	width:178px;
	color:#FFFFFF;
}
#menu .menu_level_3_active li a.t{
	background-image:url(/img/sub_active.png);
	background-repeat:no-repeat;
	background-position:right;
}
.menu_links{
	/*border-bottom:1px dotted #898989;*/
}
.last_link{
	border-bottom:none;
}