
/* HORIZONTAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulistuno, .menulistuno  ul {
 float: left;

 margin: 0;
 padding: 0;
 list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulistuno ul {
 display: none;
 position: absolute;
 top: 2.0em; 
 margin-top: 0px; /* I'm using ems and px to allow people to zoom their font */
 left: 0px;
 width: 178px;
}

/* Second and third etc. level submenus - position across from parent instead */
.menulistuno ul ul {
 top: -1px; 
 margin-top: 0;
 left: 179px;
}

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
.menulistuno li {
 float: left;
 display: block;
 position: relative;
/*
 background: #759202;
 border-left: 1px solid #A7C238;
 border-right: 1px solid #A7C238; 
*/
 margin-right: -1px;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulistuno ul li {
 float: none;
 margin: 0;
 margin-bottom: -1px;
 background: #8B544B;
 border: 1px solid #AA6B62;	
 
/* FILTER: alpha(opacity=93);  */
}

.menulistuno ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
.menulistuno a {
 display: block;
 padding: 3px;
 color: #FFFFFF;
 text-decoration: none;

 width: 177px;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulistuno a:hover, .menulistuno a.highlighted:hover, .menulistuno a:focus {
 color: #FFFFFF;
 background-color: #AA6B62;
 text-decoration: none; 
}
.menulistuno a.highlighted {
 color: #FFFFFF;
 background-color: #AA6B62;
 
 width: 176px;
}

/*
 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:
    .menulistuno a#xyz {
      background-image: url(out.gif);
    }
    .menulistuno a#xyz:hover, .menulistuno a.highlighted#xyz, .menulistuno a:focus {
     background-image: url(over.gif);
    }
*/

/* Only style submenu indicators within submenus. */
.menulistuno a .subind {
 display: none;
}
.menulistuno ul a .subind {
 display: block;
 float: right;
}


/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulistuno a {
 float: left;
}
.menulistuno ul a {
 float: none;
}
/* \*/
.menulistuno a {
 float: none;
}
/* */


/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .menulistuno ul li {
 float: left;
 width: 100%;
}

* html .menulistuno ul li {
 float: left;
 height: 1%;
}
* html .menulistuno ul a {
 height: 1%;
}
/* End Hacks */
