/* CSS Document */
	#menu img{
		border:0px;
	}

	/* End general styles for this example page */
	/* General configuration CSS */
	
	#menu ul li ul{
		display:none;	/* Needed to display ok in Opera */
	}
		
	#menu{
		visibility:hidden;	
	}
	#menu ul{
		margin:0px;	/* No indent */
		padding:0px;	/* No indent */
	}
	#menu li{
		list-style-type:none;	/* No bullets */
	}	
	#menu a{

		margin:0px;
		padding:0px;
	}
	/* End general configuration CSS */
	
	
	/* Cosmetic */
	
	/***********************************************************************
		CSS - MENU BLOCKS
	 	General rules for all menu blocks (group of sub items) 
	***********************************************************************/
	#menu ul{
		border:0px;
		padding:1px;
	}
		
	#menu ul.menuBlock1{	/* Menu bar - main menu items */
		border:0px;
		padding:1px;
		border:0px;
		overflow:visible;
	}
	#menu ul.menuBlock2{	/* Menu bar - main menu items */
	border:0px;
	padding:1px;
	margin-top:12px;
	border:1px solid #cccc99;
	background-color: #CCCC99;
	filter:alpha(opacity=95);
	-moz-opacity:.95;
	opacity:.95;
	}
	
	/***********************************************************************
		CSS - MENU ITEMS
	 	Here, you could assign rules to the menu items at different depths.
	***********************************************************************/
	/* General rules for all menu items */
	#menu a{
	font-family: Helvetica, sans-serif, Arial;
	font-size:12px;
	color:#000033;
	font-weight: bold;
	text-decoration:none;
	padding-left:9px;
	padding-right:9px;
	
	}
	
	/*
	Main menu items 
	*/
	
	#menu .currentDepth1{
		padding-left:5px;
		padding-right:5px;
		border:0px;
	}
	#menu .currentDepth1over{
		padding-left:5px;
		padding-right:5px;
		/*background-color:#317082; */
		border:0px solid  #FFffff;
		
		
	}
	#menu .currentDepth1 a{
		font-weight:bold;
	}
	#menu .currentDepth1over a{	/* Text rules */
		/*color:#FFF; */
	font-family: Helvetica, sans-serif, Arial;
	font-size:12px;
	color:#f1581a;
	font-weight: bold;
	text-decoration:none;
	
		
	}
	
	/* Sub menu depth 1 */
	#menu .currentDepth2{
		width:170px;
		padding-right:2px;
		margin-bottom:5px;				
		border:0px solid  #FFffff;
	}
	#menu .currentDepth2over{
		padding-right:2px;
		margin-bottom:5px;
		background-color:#FFFFFF;		
		border:0px solid #FFFFFF;
	}	
	#menu .currentDepth2over a{	/* Text rules */
	font-family: Helvetica, sans-serif, Arial;
	font-size:12px;
	color:#f1581a;
	font-weight: bold;
	text-decoration:none;	
		
	}	
	
	


