@charset "UTF-8";

/* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 */

/* 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 0 0 20px;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: auto;
	border:0;
	background-color: transparent;
}

/* 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;
	font-size: 100%;
	position: relative;
	cursor: pointer;
	width: auto;
	float: left;
	background-color: transparent;
	background-image:none;

}

/* 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;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	width: auto;
	position: absolute;
	left: -1000em;
	border:0;
	background-color: transparent;

}


/* Permet d'avoir le sous-menu visible*/
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
}


/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: -5% 0 0 95%;
}


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

 DESIGN INFORMATION: describes color scheme, borders, fonts

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

/* Container du sous-menu */
ul.MenuBarHorizontal ul
{
	_clear:both;
	border: none;
	margin:0;
	padding:0;
	background-color:transparent;
	background-image: url(../images/fondSousMenu.png);
	background-repeat: repeat;
	width:100%;
	/width:auto;
	}

/* Liens du sous-menu */

ul.MenuBarHorizontal ul li
{
	float: none;
	background-color: transparent;
	background-image:none;
	border:none;
	clear:both;
}

ul.MenuBarHorizontal ul li a, ul.MenuBarHorizontal ul li a:visited {
	float:none;
	font-size: 11px;
	display: block;
	cursor: pointer;
	color:#ffffff;
	text-decoration: none;
	padding:5px;
	margin:0;
	background-image: none;
	text-transform : none;
	height:auto;
	}

ul.MenuBarHorizontal ul li a:hover {
	font-size: 11px;
	display: block;
	cursor: pointer;
	color:#000000;
	background-color:#ff0000;
	/background-color:transparent;
	font-weight:bold;
	/font-weight:normal;
	text-decoration:none;
}

/* Liens du menu sans sous-menu */

ul.MenuBarHorizontal a,  ul.MenuBarHorizontal a:visited {
	clear:both;
	_float:left;
	display: block;
	cursor: pointer;
	color:#ffffff;
	text-decoration: none;
	padding:5px 10px;
	background-color: transparent;
	text-decoration: none;
	height:17px;
}

ul.MenuBarHorizontal a:hover
{
	background-color: #ff0000;
	color: #ffffff;
}

/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	background-color: #ff0000;
	color:#ffffff;
}

ul.MenuBarHorizontal a.MenuBarItemSubmenuHover{
	background-color: #ff0000;
	background-image: 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.MenuBarHorizontal 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.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
	}
}
