@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: 100%;
	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 items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	background-color: #EEE;
	padding: 0.5em 0.75em;
	color: #333;
	text-decoration: none;
}
/* 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: 139px;
	float: left;
}
ul.MenuBarHorizontal      li.a    {

}

ul.MenuBarHorizontal li a.Bouton_Menu {
	height: 35px;
	width: 139px;
	background-repeat: no-repeat;
	background-position: left top;
	background-image: url(../images/nav_offre.png);
	padding: 0px;
	float: left;
	display: block;
}
ul.MenuBarHorizontal li a.Bouton_Menu:hover {
	background-image: url(../images/nav_offre_over.png);
	background-repeat: no-repeat;
	background-position: left top;
	height: 35px;
	width: 139px;
}


/* 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: 139px;
	position: absolute;
	left: -1000em;
	display: block;
}
/* 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;
	display: block;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width: 139px;
	z-index: 1000;
	top: 35px;
	display: block;
	float: left;
}
ul.MenuBarHorizontal a.MenuBarItemHover,
{
	background-repeat: no-repeat;
	background-image: url(../images/nav_offre_over.png);
	background-position: left top;
}
ul.MenuBarHorizontal   ul   li  a.SousMenu1 {
	height: 30px;
	width: 139px;
	background-repeat: no-repeat;
	background-position: left top;
	background-image: url(../images/nav_SousMenu_particuliers.png);
	padding: 0px;
	float: left;
	display: block;
}
ul.MenuBarHorizontal  ul  li  a.SousMenu1:hover {
	height: 30px;
	width: 139px;
	background-repeat: no-repeat;
	background-position: left top;
	background-image: url(../images/nav_SousMenu_particuliersOver.png);
	float: left;
}
ul.MenuBarHorizontal ul li a.SousMenu2 {
	height: 30px;
	width: 139px;
	background-repeat: no-repeat;
	background-position: left top;
	background-image: url(../images/nav_SousMenu_agriculteurs.png);
	padding: 0px;
	float: left;
}
ul.MenuBarHorizontal ul li a.SousMenu2:hover {
	height: 30px;
	width: 139px;
	background-repeat: no-repeat;
	background-position: left top;
	background-image: url(../images/nav_SousMenu_agriculteursOver.png);
	float: left;
}





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

 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;
	background: #FFF;
	}
}

