
/* VERTICAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
 margin: 0;
 padding: 0;
 width: 160px;
 list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
 visibility: hidden;
 position: absolute;
 top: 0;
 left: 160px;
}

/*
 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.
*/
.menulist li Lixo {
 position: relative;
 border-left: 1px solid #CCCCCC;
 border-right: 1px solid #CCCCCC;
 border-top: 0px solid #CC0000;
 border-bottom: 1px solid #CC0000;
 background: #FFFFFF;
 margin-bottom: 0px;
}

.menulist li {
 position: relative;
 border: 1px solid #CC0000;
 border-right: 1px solid #CCCCCC;
 border-left: 1px solid #CCCCCC;
 background: #FFFFFF;
 margin-bottom: -1px;

}
.menulist ul>li:last-child {
 margin-bottom: 1px;

}

/* Links inside the menu */
.menulist a {
 display: block;
 padding: 5px;
 color: #AA0000;
 text-decoration: none;
}

/*
 List items: 'hover' is mouseover, 'highlighted' are parent items to visible menus.
*/
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #666666;
 background-color: #ECECEC;
 text-decoration: none;
}
.menulist a.highlighted {
 color: #666666;
 background-color: #ECECEC;
 text-decoration: none;
}

/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
 float: right;
}

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