@charset "UTF-8";

/* SpryMenuBarVertical.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/*******************************************************************************

 LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/
* {margin:0; padding:0;}
/* The outermost container of the Menu Bar, a fixed width box with no margin or padding */
ul#MenuBar1
{
	margin: 0;
	padding:0;
	font-size: 100%;
	cursor: default;
	list-style:none;
	width:150px;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are same fixed width as parent */
ul#MenuBar1 li
{
	position:relative;
    width: 150px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #000033;
	list-style:none;
	font-size: 100%;
	cursor: pointer;
	}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul#MenuBar1 ul
{
	margin: -5% 0 0 110%;
	padding: 0;
	font-size: 100%;
	position: absolute;
	z-index: 1020;
	cursor: default;
	width:150px;
	left: -1000em;
	top: 0;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul#MenuBar1 ul.MenuBarSubmenuVisible
{
	left: 0;
}
/* Menu item containers are same fixed width as parent */
ul#MenuBar1 ul li
{
	width: 100%;
	border-right:solid 1px #5A3A22;
	background-image:none;
	background-color:#FFFFFF;
	height:auto;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/


/* Submenu containers have borders on all sides */
ul#MenuBar1 ul
{
	border: 1px solid #5A3A22;
}
/* Menu items are a light gray block with padding and no text decoration */
ul#MenuBar1 a
{
	display: block;
	color: #a41515;         /*Ici, changer la couleur de la police*/
	font-family: Arial;         /*Ici, changer la police du menu*/
	font-size: 11px;         /*Ici, changer la taille de la police du menu*/
	font-weight: bold;
	padding-top: 10px;         /*Ici, on augmente la hauteur du menu*/
	text-align: left;
	text-decoration: none;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 5px;
	display: block;
	cursor: pointer;
	text-decoration: none;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul#MenuBar1 a:hover , ul#MenuBar1 a:focus
{
	background-color: #a42515;
	color: #FFF;
	text-decoration:none;
}
ul#MenuBar1 li a#selected-over
{
	background-color: #a42515;
	color: #FFF;
	text-decoration:none;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul#MenuBar1 a.MenuBarItemHover, ul#MenuBar1 a.MenuBarItemSubmenuHover, ul#MenuBar1 a.MenuBarSubmenuVisible
{
	background-color: #a42515;
	color: #FFF;
	text-decoration:none;
}

/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul#MenuBar1 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#MenuBar1 li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
	}
}
