﻿/*   ------ ######################## ------   */
/*   ------ Menu Layout and Function ------   */
/*   ------ ######################## ------   */

#FooterMenu
	{
	display: block;
	}

#FooterMenu a
	{
	display: block;
	}

#FooterMenu ul
	{
	margin: 0;
	border: 0;
	padding: 0;
	list-style-type: none;
	}

#FooterMenu li
	{
	display: block;
	float: left;
	position: relative;
	z-index: 10; /* This is needed because the #FooterMenu li ul seems to inherit the z-index from the parent element. See http://annevankesteren.nl/2005/06/z-index */
	margin: 0;
	border: 0;
	padding: 0;
	}

#FooterMenu li li
	{
	width: 100%;
	}

#FooterMenu li ul
	{
	display: none;
	position: absolute;
	left: -11px; /* Depends on make up */
	bottom: 2em; /* Add for bottom to top - depends on make up */
	z-index: 10;
	}

#FooterMenu li:hover>ul
	{
	display: block;
	}

#FooterMenu li li ul
	{
	display: block; /* To show permanently */
	position: relative;
	left: 0px;
	bottom: 0px;
/*	top: -1px; */ /* Remove for bottom to top */
/*	bottom: -1px; */ /* Add for bottom to top */
/*	left: 100%; */
	}

/* this is needed if you want to style #FooterMenu div - force containment of floated LIs inside of main UL */
#FooterMenuList:after
	{
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
	}

/*   ------ ######## ------   */
/*   ------ IE Hacks ------   */
/*   ------ ######## ------   */

/* Use visibility instead of display for IE */
* html #FooterMenu li ul
	{
	display: block;
	visibility: hidden;
	}
* html #FooterMenu li li ul
	{
	visibility: inherit;
	}
* html #FooterMenu li
	{
	float: left; /* Cure IE whitespace in lists problem */
	}

* html #FooterMenu a
	{
	height: 1%; /* Make links honour display: block; properly */
	}

/*   ------ ######### ------   */
/*   ------ Menu Look ------   */
/*   ------ ######### ------   */

#FooterMenu
	{
	float: left;
	height: 2em;
	line-height: 2em;
	padding: 10px 15px 10px 15px;
	color: #FFF;
	font-size: 12px;
	letter-spacing: 2px;
	}

.Articulo #FooterMenu
	{
	width: 570px;
	padding-left: 215px;
	width: "800px";
	}
.Indice #FooterMenu
	{
	width: 470px;
	padding-left: 315px;
	width: "800px";
	}

#FooterMenu ul
	{
	background: url(../Images/bg_FooterMenu.png) repeat-x;
	float: left;
	}

#FooterMenu li
	{
	min-width: 35px;
	padding: 0 0 0 10px;
	background: url(../Images/bg_FooterMenuItem.png) repeat-y;
	list-style-type: none;
	white-space: nowrap;
	text-align: left;
	}
* html #FooterMenu li
	{
	width: 35px;
	width: "45px";
	}
#FooterMenu li li
	{
	width: 376px;
	padding: 0 0 0 20px;
	background-image: none;
	background: url(../Images/bg_FooterMenu.png) repeat-x;
	white-space: normal;
	}

#FooterMenu li ul
	{
	width: 396px;
	padding: 0px;
	background: #B70505 url(../Images/bg_FooterMenuItem.png) repeat-y 11px;
	}
#FooterMenu li li ul
	{
	width: 376px;
	border: none;
	padding: 0px;
	background-image: none;
	background-color: Transparent;
	}

#FooterMenu a:link,
#FooterMenu a:visited
	{
	color: #FFF;
	}
#FooterMenu a:hover
	{
	color: #FF0;
	}

#FooterMenu li a
	{
	padding: 0px 10px;
	text-align: center;
	text-decoration: none;
	}

#FooterMenu li li a
	{
	padding: 4px 10px;
	}

#FooterMenu li li a
	{
	line-height: 12px;
	text-align: left;
	}

/* Look for the current menus and submenus */
#FooterMenu a.Current:link,
#FooterMenu a.Current:visited,
#FooterMenu a.Current:hover
	{
	color: #FFF;
	font-weight: 600;
	cursor: default;
	}