#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	font: bold 13px Arial;
	text-align: center;
	margin-bottom: 80px;
}

#nav {
border-top: 3px ridge gray;
}

#nav .large li, #nav .large a, #nav .large{
width: 22.9 em;
}

#nav .large ul {
width: 35.1em;
font-size: 12px;
}

#nav .petit ul {
width: 48.8em;
}

#nav .petit ul li, #nav .petit li a {
width: 103.3px;
font-size: 12px;
}

#nav a {
	display: block;
	width: 12.4em;
	color: white;
	padding: 8px 0px;
	text-decoration: none;
}

#nav li { /* all list items */
	float: left;
	width: 12.4em; /* width needed or else Opera goes nuts */
	border: 1px solid #625e00;
	background: blue url("../images/blockdefault.jpg") center center repeat-x;
	border-right: 1px solid white;
	border-bottom: 3px ridge gray;
}

#nav li a:hover, #nav li.current{
color: white;
background: transparent url("../images/Blockactive2.gif") center center repeat-x;
}

#nav li ul { /* second-level lists */
	position: absolute;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	margin-top: 1.3px;
	margin-left: auto;
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto ;
	//left: 228px;
}
