/* CSS Document */

div#navBar
{
	width:784px;
	height:16px;
	font-size:.78em;
	background-image:url(http://webzoom.freewebs.com/beautywonderland/Backgrounds/nav-bg.jpg);
	background-repeat:repeat-x;
}

/*
 * NavBar
 * UL containing all the NavBar links
 */
#navBar ul 
{
	padding:0px 0px 0px 20px;
	list-style-type:none;
}

/*
 * Style the heading list elements
 */
#navBar li 
{
	float:left;
  	position:relative;
  	width:10em;
}

#navBar li ul 
{
  display:none;
  position:absolute; 
  top:1.1em;
  left:-1.5em;
  clear:left;
}

#navBar li ul li
{
	background-image:url(http://webzoom.freewebs.com/beautywonderland/Backgrounds/nav-bg.jpg);
	width:12em;
}

/*
fix for Opera browser
*/
#navBar li > ul 
{
	top: auto;
	left: auto;
}

#navBar li:hover ul, #navBar li.over ul 
{ 
	display: block; 
}

/*
 * Style the heading anchors
 */
#navBar a:link, #nav a 
{
	color:#99FFCC;
	text-decoration:none;

}
#navBar a:hover, #nav a:focus 
{
	text-decoration:underline;
	color:#FFFFFF;
}



