div#containerHeader div#nav {
	width: 700px;
	height: 37px;
	float: left;
	border-left: 1px solid #95afc2;
}

div#containerHeader div#nav ul {
	margin: 0;
	padding: 0;
	white-space: nowrap;
}

div#containerHeader div#nav ul li {
	display: inline;
	list-style-type: none;
}

div#containerHeader div#nav ul li a {
	display: block;
	background: url(../img/layout/bg_navi.jpg) repeat-x top left;
	line-height: 27px;
	padding: 7px 15px 3px 15px;
	width: auto;
	float: left;
	margin: 0;
	color: #fff;
	font-size: 11px;
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: 1px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
}
div#containerHeader div#nav ul li a:hover {
	color: #ffc20e;
}

div#containerHeader div#nav {
	font-size: 10px;
	height: 32px;
	position: relative;
	width: 875px;
	z-index: 100;
}

/* hack to correct IE5.5 faulty box model */
* html div#containerHeader div#nav {
	w\idth: 875px;
	width: 875px;
}

/* remove all the bullets, borders and padding from the default list styling */
div#containerHeader div#nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
div#containerHeader div#nav ul ul {
	width: 109px;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
div#containerHeader div#nav li {
	float: left;
	position: relative;
	width: auto;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html div#containerHeader div#nav a, * html div#containerHeader div#nav a:visited {
	w\idth: auto;
	width: auto;
}

/* style the second level background */
div#containerHeader div#nav ul ul a.drop, div#containerHeader div#nav ul ul a.drop:visited {
	background: url("../img/layout/alpha.png");
}

/* style the second level hover */
div#containerHeader div#nav ul ul a.drop:hover {
	background: url("../img/layout/alpha.png");
	/*
	filter:Alpha(opacity=100);
	-moz-opacity: 100;
	opacity: 100;
	*/
}

/* style the third level hover */
div#containerHeader div#nav ul ul :hover > a.drop {
	/*
	filter:Alpha(opacity=100);
	-moz-opacity: 100;
	opacity: 100;
	*/
}

/* style the third level background */
div#containerHeader div#nav ul ul ul a, div#containerHeader div#nav ul ul ul a:visited {
	background: url("../img/layout/alpha.png");
}
div#containerHeader div#nav ul ul ul a:hover {
	background: url("../img/layout/alpha.png");
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
div#containerHeader div#nav ul ul {
	height: 0;
	left: 5px;
	position: absolute;
	top: 37px;
	visibility: hidden;
	width: 109px;
}

/* another hack for IE5.5 */
* html div#containerHeader div#nav ul ul {
	t\op: 43px;
	top: 42px;
}

/* position the third level flyout menu */
div#containerHeader div#nav ul ul ul {
	left: 109px;
	top: -1px;
	width: 109px;
}

/* position the third level flyout menu for a left flyout */
div#containerHeader div#nav ul ul ul.left {
	left: -109px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
div#containerHeader div#nav table {
	left: 0;
	position: absolute;
	top: 0;
}

/* style the second level links */
div#containerHeader div#nav ul ul a, div#containerHeader div#nav ul ul a:visited {
	background: url("../img/layout/alpha.png");
	color: #000;
	height: auto;
	line-height: 1em;
	padding: 5px 10px;
	width: 128px;
	text-align: left;
	font-weight: normal !important;
	text-transform: none !important;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
}

/* yet another hack for IE5.5 */
* html div#containerHeader div#nav ul ul a, * html div#containerHeader div#nav ul ul a:visited {
	w\idth: 150px;
	width: 150px;
	/*
	filter:Alpha(opacity=100);
	-moz-opacity: 100;
	opacity: 100;
	*/
}

/* style the top level hover */
div#containerHeader div#nav ul ul a:hover {
	font-weight: bold;
}
div#containerHeader div#nav a:hover, div#containerHeader div#nav :hover > a {
	color: #ffc20e;
	font-weight: bold;
}
div#containerHeader div#nav ul ul :hover > a {
	color: #000;
	background: #FFF;
}

/* make the second level visible when hover on first level list OR link */
div#containerHeader div#nav ul li:hover ul,
div#containerHeader div#nav ul a:hover ul{
visibility:visible;
}
/* keep the third level hidden when you hover on first level list OR link */
div#containerHeader div#nav ul :hover ul ul{
visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
div#containerHeader div#nav ul :hover ul :hover ul{
visibility:visible;
}