/*

Here's a demo stylesheet used to format a menu and its content.
Feel free to alter the menu layout however you want. All you have to do is ensure the script
has the correct CSS property name (like 'visibility' or 'display') that you want it to change.

One good resource for UL/LI formatting: http://www.alistapart.com/articles/taminglists/
Consult your favourite CSS reference for editing fonts/borders/etc.

Otherwise, even if you're not very experienced at CSS, you can just go through and change
the #RGB border/background colours where suitable to customise for your site!

*/



/* VERTICAL FREESTYLE MENU LAYOUT */
.menu1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	color:#7F0069;
	text-decoration:none;
}

.menu2 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	color:#7F0069;
	text-decoration:none;
	cursor:default;
}

/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
 margin: 0;
 padding: 0;
 width: 110px;
 list-style: none;
 
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
 visibility: hidden;
 position: absolute;
 margin-top:0px;
 background-color:#AFC7E1;
 border:solid 1px #005BAB;
 /*filter:alpha(opacity=90);
 -moz-opacity:.9;*/
}

/*Con el siguiente estilo se le pone borde a cada li*/

/*.menulist li {
 position: relative;
 border: 1px solid #330;
 background: #FED;
 margin-bottom: -1px;
}
.menulist ul>li:last-child {
 margin-bottom: 1px;
}*/

.menulist li {
 position: relative;
 background-color: transparent;
 margin-bottom: 1px;
}
.menulist ul>li:last-child {
 margin-bottom: 1px;
}

/* Links inside the menu */
.menulist a {
 display: block;
 padding: 3px;
/* color: #777; /*pinta las letras de todo el menu*/
 text-decoration: none;
}

/*
 Lit items: 'hover' is mouseover, 'highlighted' are parent items to visible menus.
*/
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #005BAB;
 text-decoration:none;
}
.menulist a.highlighted {
 color: #005BAB;
 text-decoration:none;
}

/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .menulist a#xyz {
      background-image: url(out.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(over.gif);
    }
*/

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist li {
 float: left;
 height: 1%;
}
* html .menulist a {
 height: 1%;
}
/* End Hack */

