@charset "iso-8859-2";
/* The outermost container of the Menu Bar, a fixed width box with no margin or padding */
ul.MenuBarVertical {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 8em;
}
/* 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 same fixed width as parent */
ul.MenuBarVertical li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 8em;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarVertical ul {
	margin: 0 0 0 208px;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: absolute;
	z-index: 1020;
	cursor: default;
	width: 8.2em;
	left: -1000em;
	top: 0;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarVertical ul.MenuBarSubmenuVisible {
	left: 0;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarVertical ul li {
	width: 8.2em;
}
/* _____ Este estilo controla la tipografía del submenu _______ */

ul.MenuBarVertical ul a {
	display: block;
	cursor: pointer;
	padding: 0.8em 1.2em;
	text-decoration: none;
	background: #195420;
	font-size:.8em;
	color:#FFF;
	font-family: Arial, Helvetica, sans-serif;
	width:160px;
	margin-bottom:1px;
}
ul.MenuBarVertical ul li a:active {
	color: #fcb745;
}
ul.MenuBarVertical ul a:hover, ul.MenuBarVertical ul a:focus {
	background: #1e6626;
	color: #fcb745;
}
ul.MenuBarVertical ul a.MenuBarItemHover, ul.MenuBarVertical ul a.MenuBarItemSubmenuHover, ul.MenuBarVertical ul a.MenuBarSubmenuVisible {
	background-color: #1e6626;
	color: #fcb745;
}
/*__________ Imagenes para cada BOTON menu superior ___________________*/

#menu a#como, #menu a#que, #menu a#tengo, #menu a#opciones, #menu a#informacion {
	display: block;
	cursor: pointer;
	height:54px;
	text-indent:-9999px;
	background: url(../images/botones.gif) no-repeat;
}
a:hover#como, a:hover#que, a:hover#tengo, a:hover#opciones, a:hover#informacion {
	background: url(../images/botones.gif) no-repeat;
}
a:active#como, a:active#que, a:active#tengo, a:active#opciones, a:active#informacion {
	background: url(../images/botones.gif) no-repeat;
}


#menu a#como {
	width:208px;
	background-position: 0x 0px;
}
#menu a:hover#como {
	background-position: -208px 0px;
}
#menu a:active#como {
	background-position: -416px 0px;
}
#menu a#que {
	width:208px;
	background-position: 0px -54px;
}
#menu a:hover#que {
	background-position: -208px -54px;
}
#menu a:active#que {
	background-position: -416px -54px;
}
#menu a#tengo {
	width:208px;
	background-position: 0px -108px;
}
#menu a:hover#tengo {
	background-position: -208px -108px;
}
#menu a:active#tengo {
	background-position: -416px -108px;
}
#menu a#opciones {
	width:208px;
	background-position: 0px -162px;
}
#menu a:hover#opciones {
	background-position: -208px -162px;
}
#menu a:active#opciones {
	background-position: -416px -162px;
}
#menu a#informacion {
	width:208px;
	background-position: 0px -216px;
}
#menu a:hover#informacion {
	background-position: -208px -216px;
}
#menu a:active#informacion {
	background-position: -416px -216px;
}

