/* Start of CMSMS style sheet 'STI Menu gauche' */
/* Structure du menu
<ul>
<li><a><span>une page sans enfant</span></a></li>
<li class="parent"><a class="parent"><span>une page avec enfant</span></a></li>
<li class="menuactive menuparent"><a> class="menuactive menuparent"<span>une page sans enfant</span></a>
  <ul>
  <li class="currentpage"><h3><span>page courante</span></h3></li>
  </ul>
</li>
</ul>
*/
/******************** MENU *********************/
div#menu_vert {
	margin: 0;
	padding: 0;
}
div#menu_vert ul {
	list-style: none; /* remove any bullets */
	margin: 0; /* margin/padding set in li */
	padding: 0;
}
/* fix stupid IE6 bug with display:block; */
* html div#menu_vert li {
	height: 1%;
}
* html div#menu_vert li a {
	height: 1%;
}
* html div#menu_vert li hr {
	height: 1%;
}
/** end fix **/
div#menu_vert a {
	display: block; /* IE6 has problems with this, fixed above */
	padding: 0.8em 0.5em 0.5em 1.5em; /* some air for it */
	color: Black; /* this will be link color for all levels */
	min-height: 1em; /* Fixes IE7 whitespace bug */
	text-decoration: none; /* no underline for links */
}
div#menu_vert a:hover {
	background-color: #41a155;
	font-weight: bold;
}
/* First level */
div#menu_vert li {
	margin: 0 0 0 0.5em;
	padding: 0;
}
div#menu_vert li a.menuactive.menuparent span {
	font-weight: bold; /* to contrast with non active pages */
}
div#menu_vert li.currentpage {
	padding: 0px 0px 3px 0px;
}
div#menu_vert ul h3 { /* current pages in the default Menu Manager template are unclickable. This is for current page on first level */
	display: block;
	padding: 0.8em 0.5em 0.5em 1.5em; /* some air for it */
	color: Black; /* this will be link color for all levels */
	font-size: 1em; /* instead of the normal font size for <h3> */
	margin: 0; /* as <h3> normally has some margin by default */
}
/* Second level */
div#menu_vert ul ul li a {
	font-size: 90%;
	padding-left: 3em;
}
div#menu_vert ul ul h3 { /* next level current pages, more padding, smaller font and no background color or bottom border */
	font-size: 90%;
	padding: 0.8em 0.5em 0.5em 3em;
}
div#menu_vert ul ul h3 span {
	font-weight: bold;
}
/* Third level */
div#menu_vert ul ul ul a {
	padding: 0.5em 0.3em 0.3em 3.5em;
}
div#menu_vert ul ul ul h3 { /* current page on third level, more padding */
	padding: 0.6em 0.5em 0.2em 3.5em;
}
/* BIG NOTE: I didn't do anything to these, never tested */
/* section header */
div#menu_vert li.sectionheader {
	border-right: none;
	padding: 0.8em 0.5em 0.5em 1.5em;
	line-height: 1em;
	margin: 0;
	cursor:text;
}
/* separator */
div#menu_vert .separator {
	height: 1px !important;
	margin-top: -1px;
	margin-bottom: 0;
	-padding: 2px 0 2px 0;
	background-color: #000;
	overflow: hidden !important;
	line-height: 1px !important;
	font-size: 1px;
/* for ie */
}
div#menu_vert li.separator hr {
	display: none;
/* this is for accessibility */
}

/* End of 'STI Menu gauche' */

