html {
	height:100%;
}
body {
	font-family: serif;
	font-size: 13px;
	color: #464646;
	text-decoration: none;
	background-color: #464646;
	margin: 0;
	padding: 0;
	height: 100%;
}

h1, h2, h3, h4, h5, h6 { margin: 15px 0; }
p, ol { margin: 10px 0; }

ul.bigger {
	color: #004F2F;
	font-size: 14px;
	font-weight: bold;
}

#footer {
	font-size: 11px;
	color:#FFFFFF;
}
#footer a:link, #footer a:visited {
	color:#FFFFFF;
	text-decoration:none;
}
#footer a:hover {
	color:#FFFFFF;
	text-decoration:underline;
}
a, a:visited {
	color: #004F2F;
	text-decoration: none;
}
a:hover {
	color: #004F2F;
	text-decoration: underline;
}

.menu {
	width: 700px;
	height: 20px;
	position: relative;
	z-index: 100;
	border-right: none;
	font-family: serif;

}
/* hack to correct IE5.5 faulty box model */
* html .menu {width:700px; w\idth:700px;}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {padding:0;margin:0;list-style-type:none;}
.menu ul ul {width:135px;}
/* 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:135px;position:relative;}
/* style the links for the top level */
.menu a, .menu a:visited {
	display: block;
	font-size: 13px;
	text-decoration: none;
	color: #FFFFFF;
	width: 120px;
	height: 20px;
	padding-left:5px;
	padding-right:5px;
	background: #D69F0F;
	line-height: 20px;
	font-weight: bold;
	text-align: center;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {width:120px; w\idth:120px;}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	background: #D69F0F;
}
/* style the second level hover */
.menu ul ul a.drop:hover{
	background: #EBAE10;
}
.menu ul ul :hover > a.drop {
	background: #EBAE10;
}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
	background: #D69F0F;
}
/* style the third level hover */
.menu ul ul ul a:hover {
	background: #EBAE10;
}


/* 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;
	top: 20px;
	left: 0;
	width: 120px;
	border-top: solid #D69F0F 1px;
}
/* another hack for IE5.5 */
* html .menu ul ul {top:30px;t\op:31px;}

/* position the third level flyout menu */
.menu ul ul ul{left:120px; top:-1px; width:120px;}

/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {left:-120px;}

/* 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;;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	background: #D69F0F;
	height: auto;
	line-height: 1em;
	padding-left: 5px;
	padding-top:5px;
	padding-bottom:5px;
	text-align: left;
	width: 120px;
}
/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited {width:120px;w\idth:120px;}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
	background: #EBAE10;
	color:#FFFFFF;
}
.menu :hover > a, .menu ul ul :hover > a {
	background: #EBAE10;
	color:#FFFFFF;
}

/* 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;}
