@charset "utf-8";
/* CSS Document */

.nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0; 
	}
	
.nav ul li {
	display: inline; /*or else ie has spaces in vert-nav when using display block on the link*/
}

.nav ul li a {
	display: block;
	text-decoration: none;	
 /* remember to set explicit width in custom css, hardcoded minus padding, etc. or only the link will be a link in ie */
}

