/*********************** Start HeaderMenu *********************************/
div.hMenu{
	border-radius:5px;
	padding:0px;
	margin:0px;
	background-color:lightgrey;
	display:table-cell;
	width: 100%;
}
div.hMenu ul{
	margin:0;
	padding:0;
	list-style:none;
}
div.hMenu li{
	float: left;    
	display: block;  
	position: relative;   
	top: 4px;   
	color: #000000;   
	padding: 0 10px 0 0;  
	font: normal 14px Verdana,Arial,Helvetica,sans-serif;
		border-radius:10px;
		border-color:black;
		border-width:3px;
	}
div.hMenu a{
	border-radius:5px;
	text-decoration: none;
	font-size: 15px;
	float:left;
}
div.menu_header_no{
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 5px;
	float:left;
}
div.menu_header_no a{
	background-color: DimGrey;
	color: white;
	text-decoration: none;
	font-size: 15px;
	padding:3px;
	float:left;
}
div.menu_header_act {
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 5px;
	float:left;
}
div.menu_header_act a{
	background-color: GREEN;
	color: white;
	font-size: 15px;
	padding:3px;
	text-decoration: none;	
	filter:alpha(opacity='70', style='0');
	float:left;
}
div.menu_header_ifsub{
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 5px;
	float:left;
}
div.menu_header_ifsub a{
	background-color: DimGrey;
	color: white;
	text-decoration: none;
	font-size: 15px;
	padding:3px;
	float:left;
}
div.menu_header_actifsub {
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 5px;
	float:left;
}
div.menu_header_no {
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 5px;
}

/***** Disable-Enable sub items *****/
div.menu_header ul ul{
	position:absolute;
	left:0%;
	top:30px;
	width:100%;
	height: 100%;
	visibility:hidden;
	opacity:0;
	transition: transform 0.2s;
	transform: translateY(100px);
}
div.menu_header li:hover > ul{
	left:10px;
	visibility:visible;
	opacity:1;
	transform: translateX(0px);
}
div.menu_header_actifsub a{
	background-color: GREEN;
	color: white;
	font-size: 15px;
	padding:3px;
	text-decoration: none;	
	filter:alpha(opacity='70', style='0');
	float:left;
}
/***** Sub Menu Items *****/
div.menu_sub_no{
	margin-top: 3px;
	margin-bottom: 0px;
	margin-left: 5px;
	float:left; 
}
div.menu_sub_no a{
	background-color: DimGrey;
	color: white;
	text-decoration: none;
	font-size: 15px;
	padding:3px;
	float:left;
}
div.menu_sub_act {
	margin-top: 3px;
	margin-bottom: 0px;
	margin-left: 5px;
	float:left;
}
div.menu_sub_act a{
	background-color: GREEN;
	color: white;
	font-size: 15px;
	padding:3px;
	text-decoration: none;	
	filter:alpha(opacity='70', style='0');
	float:left;
}
/*********************** End HeaderMenu *********************************/