/* author: JHM Designs (www.jhmdesigns.com) */
/* Creation date: 07-26-2007 */
/* This file controls the main navigation */


/*  Begin top navigation *
* * * * * * * * * * * *  */	

#topnav
	{
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	background-color: #cc6600;  
	}  

#topnav ul
	{
	list-style-type: none;
	list-style-image: url('darkbox.jpg');
	margin: 0;
	padding: 0;
	padding-top: .30em;
	padding-bottom: 0.30em;
	text-align: center;
	border-top: 2px solid #021C26;
	border-bottom: 1px solid #021C26;
	border-left: 1px solid #021C26;
	border-right: 1px solid #021C26;
	}

/* Boilerplate code to keep <ul> open around the floated content. */		 
#topnav ul:after
	{
	content: " ";
	display: block;
	clear: both;
	font-size: 0;
	visibility: hidden;
	}
		 
#topnav li 
	{
	display: block;
	float: left;   /* this is what necessitates the #topnav ul:after selector */
	width: 24.85%; /* now of course we can't use margin or border on the <li> -- put it on the <a> instead */
	font-size: 13px;	
	font-family: Tahoma, Arial, sans-serif;
	font-style: normal;
	font-weight: bold; 
	}	
	
#topnav li a
	{
	text-decoration: underline;
	color: #EDEBD4;  /* nav text color - ivory  #EBEBC4 */  
	white-space: nowrap;
	padding: 0.18em;
	display: block;
	}	
			
#topnav a:hover
	{
	text-decoration: underline;
	color: #000; 
	background-color: #dd7003;  
	}	
	


/*  Begin bottom navigation *
* * * * * * * * * * * * * */	
	
#bottomnav ul
	{
	width: 800px;
	margin: 0px;
	background-color: #1F3A59;
	list-style-type: none;
	padding-top: 7px;
	padding-bottom: 9px;
	padding-left: 0px;
	text-align: center;
	border-top: 0px solid #000;
	border-bottom: 2px solid #1F3A59;
	}
	
	#bottomnav li
	{ 
    display: inline; 
   	margin-right: 5em; 
	font-size: 12px;
	font-weight: bold;
	font-family: Tahoma, Arial, sans-serif;
    color: #E5E5B1;
	text-align: center;
	}
	
	#bottomnav a
	{
	text-decoration: underline;
	color: #E5E5B1;
	white-space: nowrap;
	}
	
	#bottomnav li a:hover
	{
	text-decoration: underline;
	color: #6699CC;
	background-color: #246;
    }
		
/* this style controls the "return to top" link */
#return
	{
	font-family: Tahoma, Arial, sans-serif;
	font-size: 15px;
	text-align: right;
	margin-right: 30px;
	color: #cc6600;
	}		

#return a
	{
	color: #207334;
	text-decoration: underline;
	color: #fff;
	}
	
#return a:hover
	{
	color: #000;
	text-decoration: underline;
	background-color: #019481;
	font-size: 15px;
	}		
		
		
