/* CSS Document */

body div#listmenu ul li ul
{
	display:none; /*--- Hides all drop down menus ---*/
}

div#listmenu /*--- Menu List Container ---*/
{
	float:left; /*--- Makes the div enclose the list ---*/
	height:23px;
	width:960px;
	margin:0px;
	padding:0px;
	
}

div#listmenu ul
{
	margin:0px;
	padding:0px;
	list-style-type: none;
}

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 ---*/	
	display:block;
	padding:0px;
	margin:0px;
}

div#listmenu ul 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 ---*/	
	display:block;
	margin:0px;
	padding:0px 0px 0px 0px;
}

div#listmenu ul li.games
{
	background-image:url(../images/nav_02.jpg);
	background-position:left;
	width:192px;
	height:23px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.games:hover  {
	background-image:url(../images/navRoll_02.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}



div#listmenu ul li.stickers
{
	background-image:url(../images/nav_04.jpg);
	background-position:left;
	width:192px;
	height:23px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.stickers:hover  {
	background-image:url(../images/navRoll_04.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

div#listmenu ul li.gifts
{
	background-image:url(../images/nav_05.jpg);
	background-position:left;
	width:192px;
	height:23px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.gifts:hover  {
	background-image:url(../images/navRoll_05.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

div#listmenu ul li.cards
{
	background-image:url(../images/nav_06.jpg);
	background-position:left;
	width:192px;
	height:23px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.cards:hover  {
	background-image:url(../images/navRoll_06.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

div#listmenu ul li.kidscorner
{
	background-image:url(../images/nav_03.jpg);
	background-position:left;
	width:192px;
	height:23px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.kidscorner:hover  {
	background-image:url(../images/navRoll_03.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}


/* DROPDOWNS */
div#listmenu ul li:hover ul  {
	display:block; /*--- Displays appropriate drop down menu ---*/
}
div#listmenu ul li ul li a.dropDown {
	color:black;
	text-decoration:none;
	display:block;
	margin:0px;
	padding:5px;
	font-size:14px;
	color:white;
	font-weight:normal;
}
div#listmenu ul li ul li a.dropDown:hover {
	color:white;
}

div#listmenu ul li ul
{
	margin:0px; /*--- Prevents the temp margin on the ul from inheriting here ---*/
	position:absolute; /*--- Positions the drop-down ul in relation to its relatively positioned li parent ---*/
	left:0px; /*--- Aligns the drop-down exactly under the menu ---*/
	top:23px;
	padding:0px;
	border-left:1px solid #eae5e5;
	border-right:1px solid #eae5e5;
	border-bottom:1px solid #eae5e5;
	z-index:99;
}


div#listmenu ul li ul.games
{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:192px;
	padding:0px;
	margin-top:0px;
	background-color:#00899d;
}




div#listmenu ul li ul.stickers
{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:192px;
	padding:0px;
	margin-top:0px;
	background-color:#7e3a75;
}
div#listmenu ul li ul.gifts
{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:192px;
	padding:0px;
	margin-top:0px;
	background-color:#7ba009;
}

div#listmenu ul li ul.cards
{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:192px;
	padding:0px;
	margin-top:0px;
	background-color:#d15f88;
}

div#listmenu ul li ul.kidscorner
{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:192px;
	padding:0px;
	margin-top:0px;
	background-color:#dd791e;
}



div#listmenu ul li ul li
{
	width:100%; /*--- Makes the list items fill the list containers (ul) ---*/
	border:0px; /*--- Three sides of each drop-down item ---*/
	padding:0px;
	margin:0px;
	background:none;
	background-image:none;
	border-top:1px solid white;
}


div#listmenu ul li ul li:hover {
	background-color:#666666;
}

div#listmenu ul li ul.games li:hover {
	background-color:#02a9c1;
}



div#listmenu ul li ul.stickers li:hover {
	background-color:#ae66a4;
}

div#listmenu ul li ul.gifts li:hover {
	background-color:#99bf23;
}

div#listmenu ul li ul.cards li:hover {
	background-color:#f38ab0;
}

div#listmenu ul li ul.kidscorner li:hover {
	background-color:#f29948;
}

