/*This style will be applied to the div element holding the menu*/
body{
	behavior:url("../src/csshover.htc");
}
/* Hide bullets in unordered list*/
#menu ul, #menu li{
	margin:0;
	border:0;
	padding:0;
	list-style:none;
}
/* Link styles*/
#menu a,#menu a:visited,#menu a:active{
	padding:4px 5px;
	margin:0;
	color:#FFF;
	text-decoration:none;
	font-size:14px;
	border-right:1px solid #EF4942;
	background:#BF0900;
	display:block;
}
#menu a:hover{
	background:#F70008;
}
#menu ul ul a,#menu ul ul a:visited,#menu u ul a:active{
	width:100%;
	border-right:0;
	background:#F70008;
}
#menu ul ul a:hover{
	background:#BF0900;
}
/*Menu mechanic*/
#menu li{
	/*font-family:"Lucida Grande",Arial,Sans-serif;*/
	float:left;
	position:relative;
	height:21px;
}
#menu li ul li{
	float:none;
}
/*Initially hide second and higher level pop-ups */
#menu ul ul{
	width:190px;
	visibility:hidden;
	position:absolute;
}
/*Third level menus should dissapear when first level has hover*/
#menu li:hover ul ul{
	visibility: hidden;
}
/*Mouseover: display second level or third level pop-up*/
#menu li:hover ul,#menu li:hover li:hover ul{
	visibility: visible;
}
