@charset "UTF-8";
/* CSS Document */
ul {
    clear: both;
    list-style: none;
}

li a {
    display: inline;
	float: left;
}
.menu {
	/*width:920px;*/
	position:relative;
	z-index:100;
	font-family:Arial, Helvetica, sans-serif;
	width: 920px;
	color: #FFF;
	background-color:#000;
}
/* hack to correct IE5.5 faulty box model */
* html .menu {
/*width:920px;
	w\idth:920px;*/
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	margin:0;
	list-style-type:none;
	padding: 0;

}
.menu ul ul {
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	/*width:149px;*/
	position:relative;
	float: left;
}
/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	font-size:13px;
	text-decoration:none;
	color:#FFF;
	/*width:138px;*/
	height:36px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {/*width:149px; w\idth:138px;*/
}
/* 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:36px;
	left:0;	/*width:149px;*/
}
/* another hack for IE5.5 */
* html .menu ul ul {
	top:30px;
	t\op:36px;
}
/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {
	position:absolute;
	top:0;
	left:0;
	border-collapse:collapse;
}
/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	color:#FFF;
	height:auto;
	line-height:14px;
	background-image: url(/images/background-navigation.png);
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	font-weight: bold;
	text-transform: uppercase;
	border-top:1px solid #FFFFFF;
	width:120px;
}
/* yet another hack for IE5.5 
* html .menu ul ul a, * html .menu ul ul a:visited {
	width:150px;
	w\idth:px;
}*/
.menu ul ul :hover > a {
	text-decoration:underline;
}
/* 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;
	color: #09C;
}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul {
	visibility:hidden;
	color: #FF0;
}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul {
	visibility:visible;
	color: #0F0;
}
.menu ul li {
	background-image: none;
}
.right-margin {
	margin-right: 35px;
}

