/* 
- - - - - - - - - - - -
Title : Nav CSS
Author : Paul Reid
URL : http://paulwreid.com

Description : CSS Stylesheet for the top navigation on Berno's website, http://www.berno-art.com

Created : April 16, 2008
Modified : April 19, 2008

- - - - - - - - - - - - -
*/

/* @group Main Nav */


body, #nav ul, #nav li {
	margin: 0;
	padding: 0;
}

#nav {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	background-image: url(bkgd_nav.gif);
	background-color: black;
	border-bottom: 4px solid gray;
}

#nav ul{
	width: 720px;
	height: 60px;
	margin-right: auto;
	margin-left: auto;
}

#nav ul li{
	display:block;
	height: 64px;
	width:120px;
	float: left;
	background-color: transparent;
}

#nav ul li a{
	height: 64px;
	background-color: transparent;
	display: block;
	text-decoration: none;
	color: silver;
}

#nav ul li a:hover{
	height: 60px;
	background-color: black;
	border-bottom: 4px solid white;
	text-decoration: none;
	color: white;
}

#nav ul li span{
	background-color: transparent;
	display: block;
	text-align: center;
	font: normal 1em "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	padding-top: 20px;
}

/* @end */

