/* RULES FOR THE "MENUDIV" OBJECT */


/* An absolutely positioned and hidden DIV (treated as a layer in NS4). */
.menudiv 
{
	 position: absolute;
	 visibility: hidden;
	 z-index: 1000;
	 /* Borders:     Top    Right  Bottom    Left   */
	 background-color: #666698;
	 /* layer-background-color is non-standard and NS4 only. */
	 layer-background-color: #CCCC99;
	 font-size: 10px; 
	 font-family: Verdana;
	 color: #FFFFFF;
	 /* Here's a cool effect, try uncommenting this, althought it's non-standard: */
	 /* filter: alpha(opacity=80); -moz-opacity: 0.8; opacity: 0.8 */
	 padding: 0px 0px 0px 0px;
}

.menudiv2 
{
	 position: absolute;
	 visibility: hidden;
	 z-index: 1000;
	 /* Borders:     Top    Right  Bottom    Left   */
	 background-color: #CC3433;
	 /* layer-background-color is non-standard and NS4 only. */
	 layer-background-color: #CCCC99;
	 font-size: 10px; 
	 font-family: Verdana;
	 color: #FFFFFF;
	 /* Here's a cool effect, try uncommenting this, althought it's non-standard: */
	 /* filter: alpha(opacity=80); -moz-opacity: 0.8; opacity: 0.8 */
	 padding: 0px 0px 0px 0px;
}

/* Formatting to apply to the elements inside the "menudiv" class elements. */
/* Of course, you can put whatever you want within the menu divs, these are just examples. */

.menudiv .header {
 width: 100%;
 font-weight: bold;
 text-align: center;
 border-bottom: 2px dashed #999966;
 margin-bottom: 5px;
}

.menudiv a 
{
	 display: block;
	 /* I've specified borders for each side individually so NS4 ignores this setting */
	 color: #FFFFFF;
	 text-decoration: none;
	 text-indent: 5px;
}

/* I'm using :hover and :active pseudo-classes for link mouse effects. */
.menudiv a:hover {
 background-color: #8484AC;
 color: #FFFFFF;
}
.menudiv a:active {

}



.menudiv2 .header {
 width: 100%;
 font-weight: bold;
 text-align: center;
 border-bottom: 2px dashed #999966;
 margin-bottom: 5px;
}

.menudiv2 a 
{
	 display: block;
	 /* I've specified borders for each side individually so NS4 ignores this setting */
	 color: #FFFFFF;
	 text-decoration: none;
	 text-indent: 5px;
}

/* I'm using :hover and :active pseudo-classes for link mouse effects. */
.menudiv2 a:hover {
 background-color: #D65C5B;
 color: #FFFFFF;
}
.menudiv2 a:active {

}









/*
The script will automatically assign a class of "highlighted" to elements that currently
have an active submenu, so here's a little CSS to format links within a .menudiv element.
*/
.menudiv .highlighted {
 background-color: #336699;
 border-color: #336699;
 color: #FFFFFF;
}

.menudiv2 .highlighted {
 background-color: #336699;
 border-color: #336699;
 color: #FFFFFF;
}

/* The links in the upper-left that pop out 'divMenu' menus. */
.trigger a {
 font: Bold 14px Arial, Helvetica, sans-serif;
 color: #003366;
 text-decoration: none;
}

/* Likewise, style active trigger links */
.trigger a.highlighted {
 color: #CC9966;
}

DIV.cajaOpcionMenu
{
	border-bottom: solid 1px #8484AC; 
	padding: 5px 5px 5px 5px;
}

DIV.cajaOpcionMenu2
{
	border-bottom: solid 1px #D65C5B; 
	padding: 5px 5px 5px 5px;
}
