/*************************************************/
/*                                               */
/*                                               */
/*                                               */
/*                                               */
/*************************************************/
#menu {}

#menu ul
{
	min-width:100%;
	-width:100%;
	list-style:none;
}
#menu li
{
	position:relative;
	list-style:none;
}
/*************************************************/
/*                                               */
/*                                               */
/*                                               */
/*                                               */
/*************************************************/
#menu ul li 
{
	float:left;
}

#menu a
{
	display:block;
	margin:0px;
}

#menu a:active
{
}

#menu a:visited
{
}

#menu a:hover
{
}
/*************************************************/
/* Every ul inside another ul is a submenu. They */
/* are hidden until hovered over. It is not      */
/* moved left since the 1st ul->ul is a vertical */
/* dropdown. top:auto makes sure the menu is     */
/* directly under the 1st ul parent              */
/*************************************************/
#menu ul ul
{
	position: absolute;
	display:none;
	z-index:5;
}

#menu ul ul li 
{
	width:100%;
	float:left;
	clear:left;
}

#menu ul ul a
{
}

#menu ul ul a:active
{
}

#menu ul ul a:visited
{
}

#menu ul ul a:hover
{
}
/*************************************************/
/* Every ul->ul->ul is a side popout menu from   */
/* an existing dropdown. This overrides the      */
/* vertical drop of all menus following the 1st  */
/* top:0px; left:100% makes sure the menu is     */
/* inline with its parent                        */
/*************************************************/
#menu ul ul ul
{
	position:absolute;
	display:none;
}

/*************************************************/
/* This section provides the menu popup          */
/* functionality. IE6 and lower require the      */
/* hover.htc file to be included.                */
/*************************************************/

#menu li:hover ul ul,
#menu ul li:hover ul ul,
#menu ul ul li:hover ul ul,
#menu ul ul ul li:hover ul ul {
	display:none;
}
#menu li:hover ul,
#menu ul li:hover ul,
#menu ul ul li:hover ul,
#menu ul ul ul li:hover ul {
	display:block;
}