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

html {margin: 0; padding: 0;}
body {
	margin: 0;
	font-family: Arial;
	background-color: white;
	font-size: .75em;
	color: #333;
}
a:link {color: white; text-decoration: none; font-weight: bold;}
a:hover {color: #87acee;}

ul#menu, ul#menu2, ul#menu3 {
	list-style: none;
	margin: 0;
	padding: 10px;
	height: 25px;
	background: #303136;
}
ul#menu li, ul#menu2 li, ul#menu3 li {
	float: left;
	display: inline;
	height: 25px;
	margin: 0 10px;

}
ul#menu li a, ul#menu2 li a, ul#menu3 li a {
	display: block;
	height: 25px;
	text-indent: -999em;
}

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

/*Second and third menus, just for demo purposes*/
.home2 a {background: white url(images/menu_home.png) 0 0 no-repeat; width: 67px;}
.locations2 a {background: cyan url(images/menu_locations.png) 0 0 no-repeat; width: 119px;}
.about2 a {background: yellow url(images/menu_about.png) 0 0 no-repeat; width: 115px;}
.contact2 a {background: maroon url(images/menu_contact.png) 0 0 no-repeat; width: 136px;}
.home2 a:hover, .locations2 a:hover,
.about2 a:hover, .contact2 a:hover {background-color: red;}

.home3 a {background: white url(images/menu_home.png) 0 0 no-repeat; width: 67px;}
.locations3 a {background: white url(images/menu_locations.png) 0 0 no-repeat; width: 119px;}
.about3 a {background: white url(images/menu_about.png) 0 0 no-repeat; width: 115px;}
.contact3 a {background: white url(images/menu_contact.png) 0 0 no-repeat; width: 136px;}
.locations3 a:hover {background-color: pink;}
.about3 a:hover {background-color: magenta;}
.contact3 a:hover {background-color: violet;}
/*--*/

ul#menu li#selected a {background-color: silver;}
ul#menu2 li#selected a {background-color: brown;}
ul#menu3 li#selected a {background-color: purple;}
