/* CSS Document */


	#agenda_menu{		
		font-family:arial;	/* Font for main menu items */
		width:128px;	/* Width of main menu */
		font-size:.8em;
		text-align:left;
	}
	#agenda_menu	li{	/* Main menu <li> */
		margin: 0;
		 padding: 1px;
		 width: 125px;
		 list-style: none;
		 border: 1px solid #654;
		 background: #F0F0F8 url(../../images/listmenuLeft.png) left repeat-y;
	}
	#agenda_menu ul{	
		margin:0px;	/* No <ul> air */
		padding:0px;	/* No <ul> air */
		

	}
	#agenda_menu ul li ul{	/* Styling for those who doesn't have javascript enabled */
		padding-left:5px;
	}
	#agenda_menu	li a{	/* Main menu links */
		display: block;
		 padding: 3px 4px 3px 30px;
		 color: #000;
		 text-decoration: none;
		 border: 1px solid transparent;
		 margin: 0;
		 background: #F0F0F8 url(../../images/listmenuLeft.png) left repeat-y;
	}
	/* HACKS: MSIE doesn't support transparent borders, mimic with margins */
	*+html #agenda_menu li a {
	 border: none;
	 margin: 1px;
	}
	* html #agenda_menu li a {
	 border: none;
	 margin: 1px;
	}
	/*
	 Lit items: hover/focus = the current item. 'highlighted' = parent items to visible menus.
	 Here, active items are given a border, and a padding tweak to 'elevate' the text within.
	 Feel free to use background-image:url(file.gif) instead of background-color:#nnn here...
	*/
	#agenda_menu a:hover, #agenda_menu a.highlighted:hover, #agenda_menu a:focus {
	 color: #FFF;
	 background-color: #46A;
	 padding: 2px 5px 4px 29px;
	 border: 1px solid #ADF;
	 margin: 0;
	}
	#agenda_menu a.highlighted {
	 color: #FFF;
	 background-color: #68C;
	 border: 1px solid #CDE;
	 margin: 0;
	}

	/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
	#agenda_menu a .subind {
	 float: right;
	 display:block;
	}
	
	/* Styling for submenu link */
	#agenda_menu ul li ul li a{	
		color: #000; 
		background: #F0F0F8;
		 text-decoration: none;
		 margin: 0;
		 padding: 2px 5px 4px 25px;
	}
	#agenda_menu ul li ul li a:hover, #agenda_menu a.highlighted:hover, #agenda_menu a:focus{	
		color: #FFF;
		 text-decoration: none;
		 border: 1px solid transparent;
		 margin: 0;
	}
	/*
	 HACKS: IE/Win:
	 A small height on <li> and <a> tags and floating prevents gaps in menu.
	 * html affects <=IE6 and *+html affects IE7.
	 You may want to move these to browser-specific style sheets.
	*/
	*+html #agenda_menu li {
	 float: left;
	 height: 1%;
	}
	*+html #agenda_menu a {
	 height: 1%;
	}
	* html #agenda_menu li {
	 float: left;
	 height: 1%;
	}
	
	* html #agenda_menu a {
	 height: 1%;
	}
	/* End Hacks */


	

