div#topnavi {
	width:750px;
	position: absolute;
	top: 154px;
	left: 445px;
	z-index:12;
}
/* remove all the bullets, borders and padding from the default list styling */
div#topnavi ul {
	padding:0;
	margin:0;
	list-style-type:none;
}
div#topnavi ul ul {
	width:150px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
div#topnavi li {
	float:left;
	/*width:150px;*/
	position:relative;
}
/* style the links for the top level */
div#topnavi a, div#topnavi a:visited {
	display:block;
	font-weight: bold;
	text-decoration:none;
	color:#cecbbf;
	/*width:139px;*/
	height:24px;
	padding: 0 8px 0 8px;
	line-height:24px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html div#topnavi a, * html div#topnavi a:visited {
	width:150px;
	w\idth:139px;
}

/* style the second level background */
div#topnavi ul ul a.drop, div#topnavi ul ul a.drop:visited {
	background: #442220;
}

/* style the second level hover */
div#topnavi ul ul a.drop:hover{
	background: #cecbbf;
}
div#topnavi ul ul :hover > a.drop {
	background: #FF0000;
}
/* style the third level background */
div#topnavi ul ul ul a, div#topnavi ul ul ul a:visited {
	background:#e2dfa8;
}
/* style the third level hover */
div#topnavi ul ul ul a:hover {
	background:#b2ab9b;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
div#topnavi ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:24px;
	left:0;
	width:150px;
}
/* another hack for IE5.5 */
* html div#topnavi ul ul {
	top:30px;
	t\op:31px;
}

/* position the third level flyout menu */
div#topnavi ul ul ul{
	left:150px;
	top:0;
	width:150px;
}
/* position the third level flyout menu for a left flyout */
div#topnavi ul ul ul.left {
	left:-150px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
div#topnavi table { position:absolute; top:0; left:0; }

/* style the second level links */
div#topnavi ul ul a, div#topnavi ul ul a:visited {
	background: #442220;
	color: #cecbbf;
	height: auto;
	line-height: 1em;
	padding: 5px 10px;
	width: 129px
/* yet another hack for IE5.5 */
}
* html div#topnavi ul ul a{
	width:150px;
	w\idth:129px;
}

/* style the top level hover */
div#topnavi a:hover, div#topnavi ul ul a:hover{
	color:#442220;
	background:#cecbbf;
	text-decoration: underline;
}
div#topnavi :hover > a, div#topnavi ul ul :hover > a {
	color:#442220;
	background:#cecbbf;
	text-decoration: underline;
}

/* make the second level visible when hover on first level list OR link */
div#topnavi ul li:hover ul, div#topnavi ul a:hover ul { visibility: visible; }

/* keep the third level hidden when you hover on first level list OR link */
div#topnavi ul :hover ul ul { visibility: hidden; }

/* make the third level visible when you hover over second level list OR link */
div#topnavi ul :hover ul :hover ul { visibility: visible; }