@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;
	list-style-type: none;
	font-size: 11px;
	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;
	position: relative;
	cursor: pointer;
	width: auto;
	float: left;
	background-color: transparent;
	background-image:none;
	white-space: nowrap;
}

/* 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: 12px;
	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;
}


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

 DESIGN INFORMATION: describes color scheme, borders, fonts

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

/* Container du sous-menu */
ul.MenuBarHorizontal ul {
	_clear:both;
	border: none;
	margin:0;
	padding:0;
	background-color:#86b917;
	width:auto;
	border-left:solid 1px #8daf5d;
	border-top:solid 1px #8daf5d;
	}

/* 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:3px 5px 15px 5px;
	background-color: transparent;
	text-decoration: none;
	width:95px;
	height:17px;
	font-weight:bold;
	background-image:none;
	border-right:solid 1px #cde098;
	text-align:center

}
ul.MenuBarHorizontal a.guide,  ul.MenuBarHorizontal a.guide:visited {
	clear:both;
	_float:left;
	display: block;
	cursor: pointer;
	color:#ffffff;
	text-decoration: none;
	padding:3px 10px 15px 10px;
	background-color: transparent;
	text-decoration: none;
	width:85px;
	height:17px;
	font-weight:bold;
	background-image:none;
	border-right:none;
	text-align:center;
		white-space: normal;

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

/* 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;
	clear:both;
	font-size: 11px;
	display: block;
	cursor: pointer;
	color:#ffffff;
	text-decoration: none;
	padding:5px;
	margin:0;
	background-image: none;
	height:auto;
	border-bottom:solid 1px #8daf5d;
	width:inherit;
	/width:200px;
	border-top:solid 1px #cde098;
	}

ul.MenuBarHorizontal ul li a:hover {
	font-size: 11px;
	display: block;
	cursor: pointer;
	color:#ffffff;
	background-image:none;
	background-color:#699519;
	font-weight:bold;
	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.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;
	}
}

