/*
	MENU
*/
.menu ul {
	padding:0px;
	padding-left:0px;
	padding-top:2px;
	margin:0px;
	margin-left:23px;
	_margin-left:0px;
	list-style-type: none;
	height:20px;
/*	width:800px; */
	width: 650px;
}
.menu li {
	float: left;
	position:relative;
}
.menu a#selected {
	border-bottom: 2px solid black;
	_text-decoration: underline;
	}
.menu a {
	margin: 0 7px;
/*	width: 8.9em; */
	_width: 110px;
	height: 20px;
	display: block;
	text-align: center;
	vertical-align:middle;
	/*border: 1px solid gray;*/
	text-decoration: none;
	color: #F5F5F5;
	font-weight: bold;
	font-size: 1.05em; 
	letter-spacing: 0.11em;
	word-spacing: 0.1em;
	font-family: "Times New Roman";
	text-transform: uppercase;
	border-bottom: 2px solid white;
}
.menu a:hover {
	border-bottom: 2px solid #035A5D;
}
.menu a:active {
	border-bottom: 2px solid #035A5D;
}

.menu a:visited {
	_color:white;	
}



/* remove all the bullets, borders and padding from the default list styling */


/* style the second level background   #00868B */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
/* background-image:url("/~mariuswilms/workspace/godard/img/bg_diagonal_color.png");
background-position:left;
background-repeat:repeat-y; */
background-color:#F5F5F5;
color: black;
border-bottom: none;
border-left: 2px solid black;
margin-bottom: 0px;

}
/* style the second level hover */
.menu ul ul a.drop:hover{
}
.menu ul ul :hover > a.drop {
}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
}
/* style the third level hover */
.menu ul ul ul a:hover {
}


/* 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:-23px;
width:100px;

}

.menu ul li ul li a{
	text-align: left;
	font-size:12px;
	font-weight:normal;
	text-transform: none;
}

/* position the third level flyout menu */
.menu ul ul ul{
left:150px;
top:0;
width:150px;
}
/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
left:-150px;
}


/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
/* background:#d4d8bd; */
/* color:#000; */
height:auto;
line-height:1em;
padding:4px 10px 4px 2px;
width:95px;
text-align: left;
}



/* style the top level hover */

/* 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;
}

