@charset "UTF-8";
/*******************************************************************************
 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: 10px;
	cursor: default;
	width: 540px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #FFFFFF;
	text-transform: uppercase;
}
/* 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;
}

/* Items de menu Superiores.*/
ul.MenuBarHorizontal a.organicFruit {
	margin: 0;
	padding: 0;
	width: 113px;
	height: 30px;
	background-image: url(/site/fr-images-site/fsh_header_organicFruit_bg.gif);
	text-indent: -999999px;
}
ul.MenuBarHorizontal a.organicFruit:hover {
	background-image: url(/site/fr-images-site/fsh_header_organicFruit_bg-over.gif);
}
ul.MenuBarHorizontal a.about {
	margin: 0;
	padding: 0;
	width: 79px;
	height: 30px;
	background-image: url(/site/fr-images-site/fsh_header_aboutUs_bg.gif);
	text-indent: -999999px;
}
ul.MenuBarHorizontal a.about:hover {
	background-image: url(/site/fr-images-site/fsh_header_aboutUs_bg-over.gif);
}
ul.MenuBarHorizontal a.enjoyingFruit {
	margin: 0;
	padding: 0;
	width: 115px;
	height: 30px;
	background-image: url(/site/fr-images-site/fsh_header_enjoyingFruit_bg.gif);
	text-indent: -999999px;
}
ul.MenuBarHorizontal a.enjoyingFruit:hover {
	background-image: url(/site/fr-images-site/fsh_header_enjoyingFruit_bg-over.gif);
}
ul.MenuBarHorizontal a.findUs {
	margin: 0;
	padding: 0;
	width: 61px;
	height: 30px;
	background-image: url(/site/fr-images-site/fsh_header_findUs_bg.gif);
	text-indent: -999999px;
}
ul.MenuBarHorizontal a.findUs:hover {
	background-image: url(/site/fr-images-site/fsh_header_findUs_bg-over.gif);
}
ul.MenuBarHorizontal a.connect {
	margin: 0;
	padding: 0;
	width: 77px;
	height: 30px;
	background-image: url(/site/fr-images-site/fsh_header_connect_bg.gif);
	text-indent: -999999px;
}
ul.MenuBarHorizontal a.connect:hover {
	background-image: url(/site/fr-images-site/fsh_header_connect_bg-over.gif);
}
ul.MenuBarHorizontal a.order{
	margin: 0;
	padding: 0;
	width: 95px;
	height: 30px;
	background-image: url(/site/fr-images-site/fsh_header_orderFruit.gif);
	text-indent: -999999px;
}
/* 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;
}
/* 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;
	width: 117px;
	position: absolute;
	left: -1000em;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li {
	width: 167px;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
/* Submenus aparecen al lado y no se sobreponen al menu inicial*/
ul.MenuBarHorizontal ul ul {
	position: absolute;
	margin: -1px 0 0 100%;
}
/* 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
 *******************************************************************************/

/* Items del menu cuando estan desplegados sin foco */
ul.MenuBarHorizontal a {
	display: block;
	cursor: pointer;
	background-color: #cb8712;
	padding: 7px;
	text-decoration: none;
	color:#FFFFFF;
}
/* Items del menu cuando estan en foco */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible {
	background-color: #b03d3d;
	color: #ffffff;
}
/*******************************************************************************
 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;
	
	border: 1px #E6E6E6;
}
}

