.menu {
    margin:19px auto;
	font-family:arial, helvetica, sans-serif; 
	font-size:1.3em;
	text-align:center;
		
	} 
.menu a {
	color:blue; 							/* text color */
	background-color:white; /* background color */
	padding:.2em 1em;						/* padding around link text */
	border-width:3px; 						/* divider width */
	border-color:transparent; 				/* divider color - can be 'transparent' */
	} 
	
	
.menu a:hover {
	color:#500000;} 	
	
/*.menu li ul {width:9em;} 		 width of 2nd, 3rd level menus */
.menu li li a {   
	border-right-style:none;				
	border-top-style:solid;					
	}
	
.menu li {  
	float:left; /* makes menu horizontal */
	list-style-type:none; /* removes default bullets off lists */
	}
	
.menu li a {   
	display:block; /* makes link fill li */
	border-right-style:solid; /* adds a right border on the links */
	background-clip:padding-box; /* background only under padding, not border */  
	text-decoration:none; /* removes link underlining */
	}
.menu li:last-child a {   
	border-right-style:none;
	}
