/* hack to correct IE5.5 faulty box model */
* html .menu {
	width:100%;
	w\idth:100%;
	
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
z-index:6000;		
}
.menu ul ul {
	width:200px;
	w\idth:500px;
}
.menu ul ul ul {
	width:300px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	float:left;
	width:127.5px;
	position:relative;
}
/* style the links for the top level */
.menu a {
	display:block;
	font-size:12px;
	text-decoration:none;
	color:black;
	height:20px;
	line-height:20px;
	background-color: #F5CA64;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #F5CA64;
	
}
.menu a:visited {
	display:block;
	font-size:12px;
	text-decoration:none;
	color:black;
	height:20px;
	line-height:20px;
	background-color: #F5CA64;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #F5CA64;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
	width:200 - 5;
	w\idth:200;
		
}
/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: normal;
	color: black;
	background-color:#FCECC8;
		
}
/* style the second level hover */
.menu ul ul a.drop:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: normal;
	color: black;
	background-color: #FCECC8;
			
}
.menu ul ul :hover > a.drop {
	background:#FCECC8
			
}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
	background-color: #FCEFD1


}
/* style the third level hover */
.menu ul ul ul a.drop:hover {
	background-color: #FCECC8;
}
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	left:0;
	width:200px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
			
}
/* another hack for IE5.5 */
* html .menu ul ul {
	top:30px;
	t\op:31px;
	width:200px;
}
/* position the third level flyout menu */

.menu ul ul ul{
	visibility:hidden;
	position:absolute;
	height:0;
	top:0px;
	left:220px;
	width:200px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
			
}
/* position the third level flyout menu for a left flyout */
/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {left:-220px;}
.menu ul ul.left {left:-90px;}
/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {
	position:absolute;
	top:0;
	left:0;
	border-collapse:collapse;
	z-index:6000
}
/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	color:#000;
	height:auto;
	padding:5px 10px;
	line-height:normal;
	width:200px;
	background-color: #FCECC8;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
}
/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited {
	width:300px;
	w\idth:300px;
}
/* style the top level hover */
.menu a:hover, .menu ul ul a:hover {
	color:black;
	background-color: #F9DFA2;
}
.menu :hover > a, .menu ul ul :hover > a {
	color:#000000;
	background-color: #F9DFA2;
}
/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul, .menu ul a:hover ul {
	visibility:visible;
}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul {
	visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul {
	visibility:visible;
}
