/* ======================================================================== 

Prepared by Allan V. Lacki for use with the New Hampshire Corvair Club website.
CNHCA is now known as the New Hampshire Corvair Club.

The logic in the stylesheet was originally posted on the internet by "fofo" in
an article named "Create vertical and horizontal navigation menus with CSS May 31, 2008".
http://dotnetstories.wordpress.com/2008/05/31/create-vertical-and-horizontal-navigation-menus-with-css/   

The original color settings for the navigation bars are HERE:

			color:#FFFFFF;
			background:#555555;		  
			border-top:3px solid #777777;
			border-right:3px solid #333333;
			border-bottom:3px solid #444444;
			border-left:3px solid #777777;
		  }

		#navigation a:hover
		{ 
			color:#000000;
			background: #999999;

THE LIVE CODE BEGINS BELOW THIS LINE!
=========================================================================== */

		#navigation
		{
			margin:0;   
			padding:0;
			list-style-type: none;
			width:100%;
			font-size:12pt;
			font-family:Verdana;
		 }

		#navigation a 
		{   
			display:block;  
			text-decoration: none;
			padding: 0 15px;
			line-height:1.9;
			color:#FFFFFF;
			background:lightslategray;		  
			border-top:3px solid lavender;
			border-right:3px solid #333333;
			border-bottom:3px solid #333333;
			border-left:3px solid lavender;
 		}

		#navigation a:hover 
		{ 
			color:#000000;
			background: lightgray;
		}

		#navigation #con a 
		{
			border: none;
		}