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

Prepared by Allan V. Lacki for use with his 2012 CORSA Convention website.

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/   -->

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

		#navigation {
		  margin:0;   
		  padding:0;

		  list-style-type: none;
		  width:100.01%;
		  font-size:2.5em;
		  font-family:Verdana;
		 }

		#navigation a {   
		  display:block;  


			text-decoration: none;
			padding: 0 15px;
			line-height:1.9;

			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;

		}

		#navigation #con a {
		  border: none;
		}

</style>