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

body div#ListMenu ul li ul {
	display:none; /*--- Hides all drop down menus ---*/
}
div#ListMenu /*--- Menu List Container ---*/
{
	padding:0px;
	height:27px;
	width:942px;
	margin:0px;
	float:left;
}

div#ListMenu ul	
{
	padding:0px;
	margin:0px;
}

div#ListMenu li		
{
	float:left; /*--- Causes the list to align horizontally instead of stack ---*/
	position:relative; /*--- Positioning context for the absolutely positioned drop-down ---*/
	list-style-type: none; /*--- Removes the bullet off list items ---*/
	margin:0px;
	padding:0px;
	height:27px;
}

div#ListMenu li.home	
{
	background-image:url(../images/home.png);
	background-repeat:no-repeat;
	width:116px;
	height:27px;
}

div#ListMenu li.home:hover	
{
	background-image:url(../images/home-on.png);
}

div#ListMenu li.meals	
{
	background-image:url(../images/christmasMeals.png);
	background-repeat:no-repeat;
	width:224px;
	height:27px;
}

div#ListMenu li.meals:hover	
{
	background-image:url(../images/christmasMeals-on.png);
}
		
div#ListMenu li.gifts
{
	background-image:url(../images/gifts.png);
	background-repeat:no-repeat;
	width:245px;
	height:27px;
}

div#ListMenu li.gifts:hover	
{
	background-image:url(../images/gifts-on.png);

}

div#ListMenu li.tellafriend	
{	background-image:url(../images/tellafriend.png);	
	background-repeat:no-repeat;
	width:182px;
	height:27px;
}

div#ListMenu li.tellafriend:hover	
{
	background-image:url(../images/tellafriend-on.png);	
}

div#ListMenu li.donate	
{
	background-image:url(../images/give.png);
	background-repeat:no-repeat;
	width:175px;
	height:27px;
}

div#ListMenu li.donate:hover	
{
	background-image:url(../images/give-on.png);
}
	
div#ListMenu ul li a	
{
	color:#ffffff;
	text-decoration:none;
	font-weight:bold;
	display:block;
	padding:0px 0px 0px 0px;
	margin:0px;
}

	
div#ListMenu ul li:hover ul		
{
	display:block; /*--- Displays appropriate drop down menu ---*/
}