/* CSS layout */
<style type="text/css">

.hovermenu ul{
    width= 800px;
	font: bold 13px arial;
	padding-left: 0;
	margin-left: 0;
	
}

.hovermenu ul li{
    list-style: none;
	display: inline;
	
	
}

.hovermenu ul li a{
padding: 2px 0.5em;
text-decoration: none;
float: left;
color: white;
background-color: blue;
border: 1px solid black;
}

.hovermenu ul li a:hover{
background-color: white;
border-style: outset;
color: blue;
}

html>body .hovermenu ul li a:active{ /* Apply mousedown effect only to NON IE browsers */
border-style: inset;
}

#csstopmenu, #csstopmenu ul{
padding: 0;
margin: 0;
list-style: none;
}

#csstopmenu li{
float: left;
position: static;
}

#csstopmenu a{
	text-decoration: none;
	font-size: small;
}

.mainitems{
border: 1px solid black;
border-left-width: 0;
background-color: white;
}

.headerlinks a{
	margin: auto 8px;
	font-weight: bold;
	color: blue;
	font-family: Arial, Helvetica, sans-serif;
}

.submenus{
display: none;
width: 10em;
position: absolute;
background-color: blue;
border: 1px solid white;
}

.submenus li{
width: 100%;
}

.submenus li a{
display: block;
width: 100%;
text-indent: 3px;
color: white;
}

html>body .submenus li a{ /* non IE browsers */
width: auto;
}

.submenus li a:hover{
background-color: white;
color: blue;
}

#csstopmenu li>ul {/* non IE browsers */
top: auto;
left: auto;
}

#csstopmenu li:hover ul, li.over ul {
display: block;
}

html>body #clearmenu{ /* non IE browsers */
height: 3px;
}

.style2 {
	text-align: center;
}

.style3 {
	border-width: 0px;
}

</style>

