@charset "utf-8";
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 40px 0px 5px 0px;
	display: block; /* this gives the anchor block properties so it fills out the whole LI that contains it so that the entire area reacts to a mouse click. */
	width: 190px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	font-family: 'Open Sans', sans-serif;
	color: #000;
	font-size: 22px;
}
#menu li a{
	font-family: 'Open Sans', sans-serif;
	font-size: 22px;
	font-weight: 300;
	color: #FFF;
	text-decoration: none;
	display: block;
	margin: 0 auto;
	text-transform: lowercase;
}
#menu {
	width: 890px;
	list-style: none;
	padding: 0;
	margin: 0 auto;
	z-index: 1000;
}
	
