
/*

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 */


/* All <ul> tags in the menu including the first level */
.menulistv, .menulistv ul {
 margin: 1px;
 padding: 0;
 width: 175px;
 list-style: none;
 font: Verdana;
 font-size: 11px;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulistv ul {
 display: none;
 position: absolute;
 top: -1px;
 left: 177px;
}

/*
 All menu items (<li> tags) are relatively positioned to correctly offset their submenus.
 They have borders that are slightly overlaid on one another to avoid doubling up.
*/

.menulistv li {
 position: relative;
 border: 0px solid #ccc;
 background: #333333;
 margin-bottom: -1px;
}

.menulistv ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

.menulistv a {
 display: block;
 padding: 3px;
 color: #000;
 text-decoration: none;
 font: 11px verdana;
 font-weight: normal;
 color: #ffffff;
 background: #333333;
}

.menulistv a:visited {

 color: #ffffff;
}

/*
 Lit items: 'hover' is mouseover, 'highlighted' are parent items to visible menus.
*/
.menulistv a:hover, .menulistv a.highlighted:hover, .menulistv a:focus {

 color: #ffffff;
 background: #00aff0;
}


/*
 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);
    }
*/


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulistv a .subind {
 float: right;
  font: Verdana;
 font-size: 11px;
  background:center center no-repeat url(images/flecha_submenu.gif);
 display:inline-block;
 width:10px;
 height:15px;
}


*:first-child+html .menulistv li {
 float: left;
 width: 100%;
}

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulistv li {
 float: left;
 height: 1%;
  font: Verdana;
 font-size: 11px;
}
* html .menulistv a {
 height: 1%;
  font: verdana;
 font-size: 11px;
}
/* End Hack */
  