
a:link    	  /* unvisited  */
{
	color: red;

}

a:visited  	 /* visited    */
{
	color: red;

}

a:hover   	 /* mouse over */
{
	color: red;
	background: #FECA2C;
	text-decoration: none;
}

body 
{
	margin: 5 auto;
	width: 800px;
	font-family: helvetica,arial,sans-serif;
	font-size: 1.0em;
	background-color: white;
}

.header
{	position: relative;
    left: 480px;
}

/* -----------------MENU-----------------*/

.navi ul
{
	margin: 0px 0px -4px 0px;
	padding: 0;
	list-style: none;
	z-index: +99;
}
.navi ul li
{
	float: left;
	width: 200px;
	text-align: center;
	line-height: 20px;
}
.navi ul li a
{
	display: block;
	padding: 5px 10px;
	color: black;
	font-size: 0.9em;
	font-weight: 500;
	background: silver;
	text-decoration: none;
	border-bottom: 1px solid white;
	border-left: 1px solid white;
}
.navi ul li a:hover
{
	color: red;
	background: #FECA2C;
}
.navi ul li ul
{
	position: absolute;
	display: none;
	width: 200px;
}
.navi ul li:hover ul
{
	display: block;		/* display the drop-down */
}

.footnote
{
	font-size: 0.75em;
	line-height: 1.25em;
	border-top: thick double #D8D8FF;
	padding: 3px;
}
