/*--------------------------------------------+
|  CSS-Only flyaout menu, by Stu Nicholls     |
|    http://www.cssplay.co.uk                 |
+--------------------------------------------*/

.menu {
	position: relative;
	z-index: 100;
}
/* 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: 200px;
}
/* float the list to make it horizontal and a relative position so that you can control the dropdown menu positon */
.menu li {
	float:left;
	width:auto;
	position:relative;
}
/* style the links for the top level */
.menu a, .menu a:visited {
	display: inline-block;
	font-size: 11px;
	text-decoration:none; 
	color: #fff;
	background-color: #062168;
	width: auto;
	height: 20px;
	padding: 0px 5px; 
	line-height: 20px;
	text-align: center;
}

/* 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: 200px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu table { position:absolute; top:0; left:0; background: none; border: none; margin:0; padding: 0;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	display: block;
	width:100%;
	height: auto; 
	padding: 5px 10px; 
	color: white;
	text-align: left;
	line-height: 1em; 
}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover {
	color: #9191C8; 
	background-position:top top; /* Trigger IE6 hover */
}
.menu :hover > a, .menu ul ul :hover > a {
	color: #9191C8;
}

.menu li.language{float:right;margin-right:10px;}
.menu li.language div{padding:0px;padding-top:3px;}
#language{padding:0px;}


/* make the second level visible when hover on first level list OR link */
.menu ul :hover ul {
	visibility:visible;
}

