body{
	font-family:Arial,sans-serif;
	font-size:10pt;
	width:900px;
	height:98%;
}
td{
	font-size:10pt;
}
h1{
	font-family:Arial,sans-serif;
	font-size:25pt;
	font-weight:bold;
	margin:0px;
	margin-bottom:5px;
	text-align:right;
	letter-spacing:5px;
}
h3{
	font-size:11pt;
}
a{
	color:black;
	text-decoration:none;
	font-weight:bold;
}
a:hover{
	text-decoration:underline;
	border-bottom: 0px dashed;
}
hr{
	height:1px;
}
a img{
	border:0px;
}
#main{
	width:900px;
}
#content{
	margin-top:5px;
	padding:5px;
	width:700px;
	height:400px;
	overflow:visible;
	background-repeat:no-repeat;
	background-position:center center;
	background-image:URL('images/europa.jpg');
	float:left;
}
#sponsor{
	width:168px;
	margin:5px;
	border:1px solid black;
	float:left;
	padding:5px;
	font-weight:bold;
	text-align:center;
	font-size:8pt;
	color:#1e3894;
}
#sponsor img{
	margin:3px;
}
#sponsor b{
	letter-spacing:2px;
	text-decoration:underline;
}
#sponsor h1{
	color:black;
	font-size:10pt;
	letter-spacing:0px;
}
#top{
	width:900px;
	height:100px;
	padding:5px;
	font-size:20pt;
	font-weight:bold;
	color:#007E6F;
	text-align:right;
}
#menu{
	width:900px;
}
#top_menu{
	color:white;
	height:15px;
	background-color:#0281AB;
	padding:5px;
	text-align:right;
	font-size:12px;
	font-weight:bold;
}
#bottom_menu{
	height:30px;
	color:white;
	background-color:#1E3894;
	padding:5px;
	font-size:25px;
	font-weight:bold;
}
/* MENU */
#nav{
	width:100%;
	height:25px;
	border-bottom:1px solid black;
	background-color:#dedede;
}
#nav, #nav ul { /* all lists */
	padding: 0px;
	margin: 0px;
	list-style: none;
	line-height: 1;
}

#nav a {
	display: block;
	width:auto;
}

#nav li { /* all list items */
	float: left;
	width: 10em; /* width needed or else Opera goes nuts */
	padding:0px;
}
/* Styles for Menu Items */
#nav ul li a {
	display: block;
	text-decoration: none;
	text-align: left;
	background: white; /* IE6 Bug */
	background: inherit;
	padding: 5px;
	font-weight:bold;
}
/* hover style for Menu items */
#nav ul li a:hover{
	/*background-color: #dedede;*/
	/*text-decoration:underline;*/
}

/* style for subitems */
#nav ul li ul li a{

	font-weight:normal;
	width: 10em;
	border-bottom:0;
	padding: 5px 2px 5px 2px;


}
/* hover style for subitems */
#nav ul li ul li a:hover{
	/*background-color: #73CAEB;*/
	text-decoration:underline;

}

#nav li ul { /* second-level lists */
	background-color:white;
	filter:alpha('opacity=90');
	opacity:.9;
	border:1px solid black;
	margin-top:0px;
	margin-left:8px;
	position: absolute;
	list-style: none;
	width: 10em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}


#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
/* Holly Hack. IE Requirement \*/
#nav * html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

#nav li:hover ul, li.over ul {display: block; } /* The magic */