@charset "utf-8";
/* CSS Document */

.menu{
	width: 937px;
	font-family:"Arial Black", Gadget, sans-serif;
	color:#CCC;
	font-size:28px;
	letter-spacing: -2px;
} 

.menu ul{
	margin: 0;
	padding: 0;
	float: left;}

.menu ul li{
	display: inline;}

.menu ul li a{
	float: left; 
	text-decoration: none; /* removes the underline from the menu text */
	color: #ccc; /* text color of the menu */
	padding: 6px 14px 13px 14px; /* 10.5px of padding to the right and left of the link and 11px to the top and bottom */
	}

.menu ul li a:visited{ /* This bit just makes sure the text color doesn't change once you've visited a link */
	color: #ccc;
	text-decoration: none;}

.menu ul li a:hover, .menu ul li .current{
	color: #ccc;
	background-image:url(../webmedia/images/menuOver.jpg);
	background-repeat:repeat-x;
	} 