.menu {
	width:500px;
	float:right;
	top:15px; 
	position:relative;
	/*z-index:100;*/ 
	font-family:Georgia, Arial, Sans-Serif;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
	float:right;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	float:left;
	position:relative;
}
/* current page */
.menu li.current a, .menu ul ul li.current a {
	color:#e47a00;
}
/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	font-size:13px;
	text-decoration:none; 
	color:#555; 
	margin:5px 13px 4px 13px;
	padding-top:10px; 
}
.menu a.dropdown, .menu a.dropdown:visited {
	display:block;
	text-decoration:none; 
	color:#555; 
	padding:5px 35px 0 16px; 
}
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	top:25px;
	left:0; 
	margin:5px 0 0 0;
	width:100px;
}
.menu ul ul li{
	border-right:none;
}
/* 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; 
	border-collapse:collapse;
}
/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	font-size:11px;
	color:#555;
	display:block;  
	padding:0; 
	width:100px;
}
/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
	color:#e47a00;
}
.menu :hover > a {
	border-top:3px solid #e47a00;
	margin-top:2px;
	color:#e47a00;
}
.menu ul ul :hover > a {
	border-top:0;
	margin-top:5px;
	color:#e47a00; 
}
.menu a.dropdown:hover{
	color:#e47a00;
}
.menu :hover > a.dropdown{
	color:#e47a00; 
}
/* 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;}
