@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: 13px;
	cursor: default;
	font-family: Arial, Helvetica, sans-serif;
	height: auto;
	background-color: #B80002;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	font-weight: bold;
}
/* 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;
}
/*_________________________________________________________________________*/
/* Contenedores de Items de menu Superiores. Realizar uno para cada DropDown*/
/* Home*/
ul.MenuBarHorizontal a.home
{
	margin: 0;
	padding: 0;
	width: 123px;
	height: 53px;
	background-image: url(../images/fv_tab1.jpg);
	text-indent: -999999px;
}
ul.MenuBarHorizontal a.home:hover
{
	background-image: url(../images/fv_tab1h.jpg);
}
/* about us */
ul.MenuBarHorizontal a.aboutus
{
	margin: 0;
	padding: 0;
	width: 151px;
	height: 53px;
	background-image: url(../images/fv_tab2.jpg);
	text-indent: -999999px;
}
ul.MenuBarHorizontal a.aboutus:hover
{
	background-image: url(../images/fv_tab2h.jpg);
}
/* moquettes */
ul.MenuBarHorizontal a.moquettes
{
	margin: 0;
	padding: 0;
	width: 117px;
	height: 34px;
	background-image: url(../images/header/moquetes_btn.gif);
	text-indent: -999999px;
}
ul.MenuBarHorizontal a.moquettes:hover
{
	background-image: url(../images/header/moquetes_hover_btn.gif);
}
/* capabilities */
ul.MenuBarHorizontal a.capabilities
{
	margin: 0;
	padding: 0;
	width: 170px;
	height: 53px;
	background-image: url(../images/fv_tab3.jpg);
	text-indent: -999999px;
}
ul.MenuBarHorizontal a.capabilities:hover
{
	background-image: url(../images/fv_tab3h.jpg);
}
/* representatives */
ul.MenuBarHorizontal a.representatives
{
	margin: 0;
	padding: 0;
	width: 195px;
	height: 53px;
	background-image: url(../images/fv_tab5.jpg);
	text-indent: -999999px;
}
ul.MenuBarHorizontal a.representatives:hover
{
	background-image: url(../images/fv_tab5h.jpg);
}
/* customersupport */
ul.MenuBarHorizontal a.customer
{
	margin: 0;
	padding: 0;
	width: 228px;
	height: 53px;
	background-image: url(../images/fv_tab6.jpg);
	text-indent: -999999px;
}
ul.MenuBarHorizontal a.customer:hover
{
	background-image: url(../images/fv_tab6h.jpg);
}
/* products */
ul.MenuBarHorizontal a.products
{
	margin: 0;
	padding: 0;
	width: 153px;
	height: 53px;
	background-image: url(../images/fv_tab4.jpg);
	text-indent: -999999px;
}
ul.MenuBarHorizontal a.products:hover
{
	background-image: url(../images/fv_tab4h.jpg);
}
/*_________________________________________________________________________*/
/* 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;
	background-color: #BE0000;
	height: auto;
	width: 170px;
}
/* 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;
	height: auto;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	top: auto;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width: 140px;
	height: auto;
	font-family: Arial, Helvetica, sans-serif;
	position: relative;
}
/* 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: 0;
	top: auto;
}
/*******************************************************************************
 DESIGN INFORMATION: describes color scheme, borders, fonts
 *******************************************************************************/
/* Items del menu cuando estan desplegados sin foco */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	background-color: #BE0000;
	color: #FFFFFF;
	text-decoration: none;
	border-top-color: #980001;
	border-right-color: #980001;
	border-bottom-color: #980001;
	border-left-color: #980001;
	font-family: Arial, Helvetica, sans-serif;
	padding: 4px;
}
/* Items del menu cuando estan en foco */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	background-color: #8B0000;
	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;
		background: #FFF;
	}
}
