/* 
	General styles for this example page

	

	/* End general styles for this example page */
	/* General configuration CSS */
	
	#dhtmlgoodies_menu ul li ul{
		display:none;	/* Needed to display ok in Opera */
	}
		
	#dhtmlgoodies_menu{
		visibility:hidden;	
		width : 630px;
		height : 37px;
		font-size : 11px;
	}
	#dhtmlgoodies_menu ul{
		margin:0px;	/* No indent */
		padding:0px;	/* No indent */
		display : inline;
	}
	#dhtmlgoodies_menu li{
		list-style-type:none;	/* No bullets */
		float : left;
	}	
	#dhtmlgoodies_menu a{

		margin:0px;
		padding:0px;
		display : block;
	}
	/* End general configuration CSS */
	
	
	/* Cosmetic */
	
	/***********************************************************************
		CSS - MENU BLOCKS
	 	General rules for all menu blocks (group of sub items) 
	***********************************************************************/
	#dhtmlgoodies_menu ul{
		background-color:#FFF;
	}
		
	#dhtmlgoodies_menu ul.menuBlock1{	/* Menu bar - main menu items */
		background-color:#DDDDDD;
		width : 209px;
		height : 37px;
		line-height : 37px;
		vertical-align : center;
		text-align : center;
		overflow:visible;
	}
	#dhtmlgoodies_menu ul.menuBlock2{	/* Menu bar - main menu items */
		width : 209px;
		background: transparent url("../images/fondTR.png") repeat;
		
	}
	
	/***********************************************************************
		CSS - MENU ITEMS
	 	Here, you could assign rules to the menu items at different depths.
	***********************************************************************/
	/* General rules for all menu items */
	#dhtmlgoodies_menu a{
		color: #FFF;
		text-decoration:none;
	}
	
	/*
	Main menu items 
	*/
	
	#dhtmlgoodies_menu .currentDepth1{
		width : 209px;
		height : 37px;
		line-height : 37px;
		vertical-align : center;
		text-align : center;
		background-image : url('../images/btn_menu_marron.png');
	}
	#dhtmlgoodies_menu .currentDepth1over{
		width : 209px;
		height : 37px;
		line-height : 37px;
		vertical-align : center;
		text-align : center;
		background-image : url('../images/btn_menu_marron.png');
		
		
	}
	#dhtmlgoodies_menu .currentDepth1 a{
		font-weight:bold;
	}
	#dhtmlgoodies_menu .currentDepth1over a{	/* Text rules */
		color:#FFF;
		font-weight:bold;
	}
	
	/* Sub menu depth 1 */
	#dhtmlgoodies_menu .currentDepth2{
		display : block;
		border-top:1px solid #FFF;
		padding-top:5px;
		padding-bottom:5px;
		padding-left:10px;
		text-align : left;
		width : 199px;
	
	}
	#dhtmlgoodies_menu .currentDepth2over{
		background-image: none;
		background-color: #8f9203;
		display : block;
		border-top:1px solid #FFF;
		padding-top:5px;
		padding-bottom:5px;
		padding-left:10px;
		text-align : left;
		width : 199px;
	}	
	#dhtmlgoodies_menu .currentDepth2over a{	/* Text rules */
		color:#FFF;
		display : block;
	}	
	 
