
/*----------------------------------------------------------proprieties of main menu----------------------------------------------------------*/
#menu_top {
	color : #F29400;
	font-family: Verdana;
	font-size:100%;
	text-align:center;
}



#menu_top ul {/*clean the bullets points, text align*/
	margin:0px;
	padding:0px;
	list-style-type:none;
	list-style-image:none;
}

#menu_top ul#menu_top_home {/*for home*/
	margin:0px;

}

#menu_top li {/*align objects of main menu*/
		list-style-type:none;

}


#menu_top li a:link, #menu_top li a:visited {/*properties of links*/
	font-size:100%;
	color : #F29400;
	text-decoration:none; /*clean underlining*/
}

#menu_top li a.inactive {/*properties of links inactive before login*/
	color : #CCCCCC;

}

#menu_top li a:hover {/*change the color of the link when the mouse fly over it*/
background-color: transparent; 
color : #182250;
}
		
#menu_top li ul {/*fix the menus when there are opened*/
position:absolute;
}


/*----------------------------------------------------------properties of second menu----------------------------------------------------------*/
#menu_top .submenus {
	z-index:10;
	text-align:left;
	font-family: Arial;
}

#menu_top .submenus li {/*display the second menu in columns*/
	float: none;
	line-height:22px;
	font-family: Arial;
	font-size:100%;
	font-weight:bold;
	margin: 0 0 0 160px;
	padding: 0;
}


#menu_top .submenus li a:link,
#menu_top .submenus li a:visited {/*properties of displayed links*/
	
	height:auto;
	display: block;
	visibility:visible;
	color: #a8006a;
	text-decoration: none;
	background: #fdf497;
	border: 1.8px #FFF solid;
	padding-left:8px;
	padding-right:8px;
}

#menu_top .submenus {/*masking the second menu*/
	display: none;
	list-style-type: none;
	behavior:url("csshover3.htc");
}	

#menu_top .submenus li a:hover {/*reaction when the mouse fly over the links of the second menu*/
	color: #fdf497; 
	background: #a8006a;
}	

#menu_top li:hover  .submenus { 
	display: block; /*display the second-menu when the mouse flyes over main menu's links */
}
