@charset "UTF-8";
/* contour */
ul.MenuBarVertical
{
  /*border: 1px solid #CCC;*/
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 126px;
	left: 0;
}
/* contour */
ul.MenuBarActive
{
	z-index: 1000;
}

/* bouton du menu */
ul.MenuBarVertical li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: center;
	cursor: pointer;
	width: 126px;
	/*color: rgb(1,56,86);*/
}
/* bouton du menu */
/* bouton du sous-menu */
ul.MenuBarVertical ul
{
	margin: -5% 0 0 95%;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: absolute;
	z-index: 1020;
	cursor: default;
	width: 116px;
	left: -1000em;
	top: 0;
	border: 1.5px solid black;
}
/* bouton du sous-menu */
ul.MenuBarVertical ul.MenuBarSubmenuVisible
{
	left: 0;
	background-color: white;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarVertical ul li
{
	/*width: 8.2em;*/
	width: 116px;
}

/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarVertical a
{
	display: block;
	cursor: pointer;
	/* COULEUR DU FOND DU MENU */
	padding: 0.5em 0.75em;
	/* COULEUR D'ECRITURE DU MENU */
	color: rgb(0,0,0);
	/* COULEUR D'ECRITURE DU MENU */
	text-decoration: none;
}

/* definition du bouton menu au passage de souris*/
ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus, ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical a.MenuBarItemSubmenuHover, ul.MenuBarVertical a.MenuBarSubmenuVisible
{
  color: red;
}

/* IMAGE DU MENU */
ul.MenuBarVertical a.MenuBarItemSubmenu
{
	background-image: url(menu_fleche_noir.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

ul.MenuBarVertical a.MenuBarItemSubmenuHover
{
	background-image: url(menu_fleche_rouge.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* IMAGE DU MENU */

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarVertical iframe
{
	position: absolute;
	z-index: 1010;

}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarVertical li.MenuBarItemIE
	{
		display: inline;
		float: left;
		background-color: white;
		/*background: #FFF*/
	}
}
