/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/skeleton.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
#nav, 
#nav ul {
	display: block;
	top: -1px;
	left: 0px;
	position: relative;
	z-index: 200;
}
#nav, 
#nav ul {
}

#nav {
	height: 24px;
	padding: 0;
}

#nav table {
	border-collapse:collapse;
}
#nav li {
	float:left;
}
#nav li li {
	float: none;
}
/* a hack for IE5.x and IE6 */
#nav li a li {
	float: left;
}

/* 20100405_ǉ */
* html #nav table {
	margin-top: -1px;
}
/* 20100405_ǉ */

#nav li a {
	display: block;
	height: 24px;
	white-space: nowrap;
	float: left;
}
#nav li li a {
	height: 24px;
	margin-top: -1px;
	float: none;
	color: #00459A;
}

#nav li:hover {
	position: relative;
	z-index: 300;
}
#nav a:hover {
	position: relative;
	z-index: 300;
	text-decoration: underline;
}

#nav :hover ul {
	left: 0; 
	top: 24px;
}
/* another hack for IE5.5 and IE6 */
#nav a:hover ul {
	left: 0px;
	top: 24px;
}
#nav ul {
	position: absolute;
	left: -9999px;
	top: -9999px;
}

/* it could have been this simple if all browsers understood */
/* show next level */
#nav li:hover li:hover > ul {
	margin-left: 100%;
	left: -15px;
	top: -0px;
}
/* keep further levels hidden */
#nav li:hover > ul ul {
	position: absolute;
	width: auto;
	left: -9999px;
	top: -9999px;
}
/* show path followed */
#nav li:hover > a {
	text-decoration: underline;
	color: #00459A;
}


/* but IE5.x and IE6 need this lot to style the flyouts*/
/* show next level */
#nav a:hover a:hover ul,
#nav a:hover a:hover a:hover ul,
#nav a:hover a:hover a:hover a:hover ul,
#nav a:hover a:hover a:hover a:hover a:hover ul {
	left: 100%;
	top: -1px;
}

/* keep further levels hidden */
#nav a:hover ul ul,
#nav a:hover a:hover ul ul,
#nav a:hover a:hover a:hover ul ul,
#nav a:hover a:hover a:hover a:hover ul ul {
	position: absolute;
	left: -9999px;
	top: -9999px;
}

