/*
   CSS Image Menu Example
	 Orlando de Frias - July 10, 2008
	 (c) 2008 "The World And Everyone In It"
	 Free to use without giving credit.
*/

html {margin: 0; padding: 0;}
body {
	margin: 0;
	padding: 10px;
	font-family: Arial;
	background-color: #303136;
	font-size: .75em;
	color: #333;
}

ul#menu {
	list-style: none;
	margin: 0;
	padding: 0;
	height: 25px;
	width: 520px;
}
ul#menu li {
	float: left;
	display: inline;
	height: 25px;
	margin: 0 10px;
	overflow: hidden;
}
ul#menu li a {
	display: block;
	height: 25px;
	text-indent: -999em;
}

ul#menu li.home a {background: url(images/menu_home.png) 0 0 no-repeat; width: 67px;}
ul#menu li.locations a {background: url(images/menu_locations.png) 0 0 no-repeat; width: 119px;}
ul#menu li.about a {background: url(images/menu_about.png) 0 0 no-repeat; width: 115px;}
ul#menu li.contact a {background: url(images/menu_contact.png) 0 0 no-repeat; width: 136px;}

ul#menu li.home a:hover, ul#menu li.locations a:hover,
ul#menu li.about a:hover, ul#menu li.contact a:hover {background-position: bottom left;}

ul#menu li#selected a {background-position: bottom left;}