﻿@charset "UTF-8";

/* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/*******************************************************************************

 LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/

/* 	El contenedor exterior de la barra de menú, una caja automática de ancho, sin margin ni padding */
ul.MenuBarHorizontal
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: auto;
	line-height:12px;
	color:#FFFFFF;
}
/* 	Configura la Barra de Menú activo con esta clase, configurando el z-index para IE:
	http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	z-index:1000;
	color:#FFFFFF;	
}
/*	Contenedores de elementos de menú, la posición de los hijos con respecto a este contenedor y un ancho fijo */
ul.MenuBarHorizontal li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 141px;
	float: left;
	padding:0px 1px 0px 1px;
	color:#FFFFFF;
}
/* 	Los Submenús deben aparecer debajo de su padre (top: 0) con un z-index mayor,
	pero inicialmente hacia el lado izquierdo de la pantalla (-1000em) */
ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	width: 141px;
	position: absolute;
	left: -1000em;
	color:#FFFFFF;
}
/* 	El Submenú se muestra con la clase MenuBarSubmenuVisible, 
	ponemos la característica "left" en auto para que se sitúe por debajo de su elemento primario del menú */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left:auto;
	color:#FFFFFF;	
}
/* Los elementos hijos de los menús tienen el mismo ancho fijo que el padre */
ul.MenuBarHorizontal ul li
{
	width: 141px;
	margin-left:-1px;
	color:#FFFFFF;
}
/* Los Submenús deben aparecer ligeramente solapados hacia la derecha */
ul.MenuBarHorizontal ul ul
{
	position: relative;
	margin: -5% 0 0 95%;
	color:#FFFFFF;	
}
/* 	El Submenú se muestra con la clase MenuBarSubmenuVisible, 
	ponemos la característica "left" en auto para que se sitúe por debajo de su elemento primario del menú */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{											  
	left: auto;
	top: 0;
	color:#FFFFFF;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
{
	color:#FFFFFF;
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
{
	display:block;
	cursor: pointer;
	background-color: #46822C;	
	color:#FFFFFF;
/*
	background-image: url('../img/fondoMenu00.png');
	background-repeat:repeat-x;
*/	
	padding: 0.5em 0.75em;
	color: #ffffff;
	text-decoration: none;
	font-weight:bold;
	text-align:center;	
	border-bottom:1px #3E5B0C solid;
	color:#FFFFFF;	

}

/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	background-color: #46822C;
	background-image: url('../img/fondoMenu01.png');
	background-repeat:repeat-x;
	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.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	background-color: #3E5B0C;
		color:#FFFFFF;
/*
	background-image: url('../img/fondoMenu01.jpg');
	background-repeat:repeat-x;
*/
	color:#FFFFFF;
}

/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
/* ESTA ES LA IMAGEN QUE APARECE COMO FONDO EN LA BARRA DE MENÚS */
ul.MenuBarHorizontal a.MenuBarItemSubmenu
{
	background-image: url('../img/fondoMenu02.png');
	background-repeat:repeat-x;
/*	background-repeat: no-repeat;
	background-position: 95% 50%;  */
	color:#FFFFFF;
	}

.opcionesIzda li a {
	text-align:left;
	color:#FFFFFF !important;
	}
	.opcionesIzda li a:hover {
		padding: 0.5em 0.75em;
		}
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
{
	background-image: url();
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
/* ESTA ES LA IMAGEN QUE APARECE COMO FONDO EN LA BARRA DE MENÚS CON UN MOUSEOVER */
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
	background-image: url('../img/fondoMenu00.png');
	background-repeat:repeat-x;
/*	background-repeat: no-repeat;
	background-position: 95% 50%;  */
	color:#FFFFFF;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
{
	background-image: url();
	background-repeat: no-repeat;
	background-position: 95% 50%;
	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;
	filter:alpha(opacity:0.1);
	color:#FFFFFF;
}
/* 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;
		float: left;
		background: #FFF;
	}
}




/****************************************************************************************
 
 NOTAS DE PRENSA
 
 ****************************************************************************************/
 
#notasPrensa {
	margin-left:-4px !important; background-color:#ffffff !important; width:103% !important; height:100% !important;
	}
	
	
.notasPrensa {
	height:300px !important; background-color:gray !important;
	}	
