@charset "utf-8";
/* CSS Document */
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<title>Layout for Diamondhead International Small Scale Steamup Navigation Menu</title>
	<style type="text/css">
	<!--
/* horizontal navigation bar styles */
		#nav_h{
			position:relative;
			top: 0px;
			list-style:none;
			font-weight:bold;
			font-size: 16px;
			margin-bottom: 7.5px;
			float:left; /* Clear floats */
			width:100%;
			height: auto;
/* Bring the nav above everything else */
		}
		#nav_h li{
			list-style:none;
			float:left;
			margin-right:15px;
			position:relative;
			border-style:ridge;
			border-color:#00F;
		}
		#nav_h a{
			display:block;
			padding:5px;
			color:#333;
			font-weight:bold;
			background: #EEE;
			text-decoration:none;
		}
		#nav_h a:hover{
			color: #FF9;
			background:#6b0c36;
			text-decoration:underline;
		}
/* Dropdown listing */
		#nav_h ul{
			background:#FC3;
			background:rgba(255,255,255,0);
			list-style:none;
			position:absolute;
			left:-9999px; /* Hide off-screen */
		}
		#nav_h ul li{
			padding-top:.5px;
			float:none;
		}
		#nav_h ul a{
			white-space:nowrap;
		}
		#nav_h li:hover ul{
			left:0;
		}
		#nav_h li:hover a{
			color:#FF9;
			font-weight:bold;
			background:#6b0c36;
			text-decoration:underline;
			z-index: 12;
		}
		#nav_h li:hover ul a{
			color:#000;
			background-color:#FC3;
			text-decoration:none;
		}
		#nav_h li:hover ul li a:hover{
			background: #0C3;
		}
/* Level two horizontal menu */
/* Vertical menu */
	-->
	</style>
