/* author: JHM Designs (www.jhmdesigns.com) */
/* Creation date: 03-13-2007 */
/* This file controls the main navigation */


/*  Begin top navigation *
* * * * * * * * * * * *  */	

#topnav
	{
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	background-color: #1F3A59;  /* #1F3A59  */
	}  

 
#topnav ul
	{
	list-style-type: none;
	margin: 0;
	padding: 0;
	padding-top: .25em;
	padding-bottom: 0.45em;
	text-align: center;
	}

/* 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.9%;/* now of course we can't use margin or border on the <li> -- put it on the <a> instead */
	font-size: 12px;	
	font-family: Tahoma, Arial, sans-serif;
	font-style: normal;
	font-weight: bold;  /* changed from normal to bold  */
	}		

	
#topnav li a
	{
	text-decoration: underline;
	color: #EBEBC4;  /* nav text color - ivory  #EBEBC4 */
	white-space: nowrap;
	padding: 0.3em;
	display: block;
	}	
			
#topnav a:hover
	{
	text-decoration: underline;
	color: #6699CC;
	background-color: #246;
	}	


/*  Begin bottom navigation *
* * * * * * * * * * * * * */	

#bottom_content_nav
		{ 
    display: block; 
   	margin-right: 5em; 
	font-size: 12px;
	font-weight: center;
	color: #E5E5B1;
	text-align: center;
	}
	
#bottomnav ul
	{
	width: 774px;
	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;
    }
		
	
		
		

