@charset "UTF-8";
/* CSS Document */


h1{
	font: bold 18pt Georgia, "Times New Roman", Times, serif;
	letter-spacing: 1px;
	margin-bottom: 0px;
	color: #900;
	}
	
h2 {  
	font: bold normal 14pt  Arial, Helvetica, sans-serif; 
	letter-spacing: 1px; 
	margin-bottom: 4px; 
	color: #000;
	}

h3 { 
	font: bold italic 18pt Arial, Helvetica, sans-serif; 
	letter-spacing: 1px; 
	margin-bottom: 1px; 
	color: #900;
	}
	
h4 {  
	font: bold normal 14pt  Arial, Helvetica, sans-serif; 
	letter-spacing: 1px; 
	margin-bottom: 1px; 
	color: #900;
	}
	
body {
	font-family: Georgia, "Times New Roman", Times, serif ;
	background: #000;
	margin: 0px;
	}
	


/*Begin CSS Dropdown Menu*/
/* Fix IE. Hide from IE Mac \*/
* html #menuv ul li{float:left;height:1%;}
* html #menuv ul li a{height:1%;}
/* End */
#menuv		/* position, size, and font of  menu */
	{
	position: relative;
	top:1px;
	left:-5px;
	z-index: 12;
	text-align: center;
	font-size: 0.9em;
	font-family: helvetica, arial, geneva, sans-serif;
	width:70%;
	}

#menuv a
	{
	width: 150%;
	display: inline-block;						
	padding-top: 1em;				    /* expands menu box vertically*/
	padding-bottom: 1em;
	border-bottom:1px solid #fff;		/* adds bottom border */
	white-space:nowrap;
	}

#menuv a, #menuv a:visited				/* all menus at rest */
	{
	color: white;
	background-color: #000;
	text-decoration:none;				/* removes underlines from links */
	}

#menuv a.parent, #menuv a.parent:hover 	/* attaches parent-arrow on all parents */
	{
	background-position: right center;
	background-repeat: no-repeat;
	}

#menuv a:hover				/* all menus on mouse-over */
	{
	color: white;
	background-color: #333;
	}
		
#menuv li
	{
	list-style-type:none;		/* removes bullets */
	}
	
#menuv ul li
	{
	position: relative;
	}

#menuv li ul
	{
	position: absolute;
	top: 0;
	left: 12.2em;				/* distance from  left menu (this should be the same as width value in #menuv [1]) above */
	display: none;
	}

div#menuv ul, #menuv ul ul, div#menuv ul ul ul
	{
	margin:0;				/* keeps the menu parts together */
	padding:0;
	width: 8em;			/* width of sub menus  (this should be the same as width value in #menuv [1]) above */
	}

div#menuv ul ul, div#menuv ul ul ul, div#menuv ul li:hover ul ul, div#menuv ul li:hover ul ul ul
	{
	display: none;
	}

div#menuv ul li:hover ul, div#menuv ul ul li:hover ul, div#menuv ul ul ul li:hover ul
	{
	display: block;
	}

