@charset "UTF-8";

/* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/*******************************************************************************

 LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 13px;
	cursor: default;
	width: auto;
}
/* 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 a fixed width */
ul.MenuBarHorizontal li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: relative;
	text-align: left;
	cursor: pointer;
	float: left;
}
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	z-index: 1020;
	cursor: default;
	position: absolute;
	left: -1000em;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
}
/* Longeur des blocs de sous-menu */
ul.MenuBarHorizontal ul li
{
	width: 275px;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: -5% 0 0 95%;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Container du sous-menu premier niveau */
ul.MenuBarHorizontal ul
{
	border-left: 1px solid #3d7bb8;
	width:275px;
	opacity: .95;
}
/* Charte des sous-menus qui n'ont pas eux-même de sous-menus */
ul.MenuBarHorizontal a, ul.MenuBarHorizontal a:visited
{
	display: block;
	cursor: pointer;
	height:23px;
	padding:9px 0 0 30px;
	color: #3d7bb8;
	background-color:#eaf2f9;
	text-decoration: none;
	border-bottom: 1px solid #3d7bb8;
	background-image: url(../_gfx/puceBleue.gif);
	background-repeat: no-repeat;
	background-position: 5% 50%;
	border-right: 1px solid #3d7bb8;

}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	color: #ffffff;
}
/* Charte des sous-menus qui n'ont pas eux-même de sous-menus en position hover*/
ul.MenuBarHorizontal a.MenuBarItemHover:hover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover:hover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible:hover
{
	background-color: #3d7bb8;
	color: #FFF;
	background-image: url(../_gfx/puceBlanche.gif);
	background-repeat: no-repeat;
	background-position: 5% 50%;
	text-decoration:none;
	}

/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Charte "Accès au menu" */
ul.MenuBarHorizontal a.MenuBarItemSubmenu, ul.MenuBarHorizontal a.MenuBarItemSubmenu:visited
{
	font-size:13px;
	font-weight:bold;
	background-image: url(../_gfx/pictoPlus.gif);
	background-repeat: no-repeat;
	background-position: 10px 9px;
	background-color:transparent;
	color:#c3d0e3;
	height:22px;
	width:245px;
	padding:7px 0 0 30px;
	margin:0;
	border-right:none;
}

/* Charte "Accès au menu" en position hover*/

ul.MenuBarHorizontal a.MenuBarItemSubmenuHover:hover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
	color:#FFFFFF;
	background-color:#3d7bb8;
	background-image: url(../_gfx/fondMenuBarItemSubmenuHover.gif);
	background-repeat: repeat-x;
	background-position: 0 0;
}

/* Sous-Menu quand il y a un autre sous-menu derrière */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu, ul.MenuBarHorizontal ul a.MenuBarItemSubmenu:visited
{
	font-weight:normal;
	background-image: url(../_gfx/pictoPlusBleu.gif);
	background-repeat: no-repeat;
	background-position: 10px 9px;
	background-color:#eaf2f9;
	text-decoration: none;
	border-bottom: 1px solid #3d7bb8;
	border-right:solid 1px #6d89b8;
	border-top:solid 1px #ffffff;
	height:24px;
	padding:7px 0 0 30px;
	color: #3d7bb8;
	width:244px;
	margin:0;
}

/* Sous-Menu quand il y a un autre sous-menu derrière en position hover*/
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover:hover
{
	background-image: url(../_gfx/pictoPlusBlanc.gif);
	background-repeat: no-repeat;
	background-position: 10px 9px;
	background-color:#3d7bb8;
	color:#fff;
	
}

/*******************************************************************************

 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.MenuBarHorizontal iframe
{
	position: absolute;
	z-index: 1010;
	filter:alpha(opacity:0.1);
}
/* 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.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		float: left;
	}
}

