/******************************************************************
	Flyout structure only, for styling flyouts, see
	/res/css/seasonal.css and
	/res/css/seasonal_flyout_ie.css for IE6 styling
******************************************************************/
#head_menu {
	font-size:10px;
	font-family: verdana, arial, sans-serif;
	position:relative;
	z-index:100;
	width: 100%;
}

/* remove all the bullets, borders and padding from the default list styling */
#head_menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
#head_menu li {
	float:left;
	position:relative;
}

/* style the links for the top level */
#head_menu a,
#head_menu a:visited {
	display:block;
	font-size:10px;
	font-weight: bold;
	text-decoration:none;
	height:28px;
	line-height:28px;
	padding-left:10px;
	padding-right:10px;
	white-space: nowrap;
	position: relative;
	z-index: 1;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html #head_menu a,
* html #head_menu a:visited {
	width:90px;
	w\idth:90px;
}
/* style the second level hover */

#head_menu ul ul LI a:hover {	
	position: relative;
	z-index: 99;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
#head_menu ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:25px;
	left:0;
	width:177px;
}

/* another hack for IE5.5 */
* html #head_menu ul ul {
	top:28px;
	t\op:28px;
}

/* position the third level flyout menu */
#head_menu ul ul ul{
	left:154px;
	top:0;
	width:155px;
}

/* position the third level flyout menu for a left flyout */
#head_menu ul ul ul.left {
	left:-150px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
#head_menu table {position:absolute; top:0; left:0;}

/* style the second level links */
#head_menu ul ul a, #head_menu ul ul a:visited {
	height:auto;
	line-height:1em;
	padding:5px 10px;
	width:200px
	/* yet another hack for IE5.5 */
}

* html #head_menu ul ul a{
	width:155px;
	w\idth:155px;
}


/* make the second level visible when hover on first level list OR link */
#head_menu ul :hover ul{
	visibility:visible;
}

/* keep the third level hidden when you hover on first level list OR link */
#head_menu ul :hover ul ul{
	visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
#head_menu ul :hover ul :hover ul{
	visibility:visible;
}
