/*
list menu style sheet for leftside  nav
*/

/* Note !!! left menu images are determined by sub style sheet such as leftmenuwub.css
that way different menus can be specified which use this style sheet as a base */

.leftmenulist{
	font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size : 10px;
}

/* VERTICAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.leftmenulist, .leftmenulist ul {
 margin: 0;
 padding: 0;
/* width: 150px;*/
 width: 144px;
 list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.leftmenulist ul {
 visibility: hidden;
 position: absolute;
 top: 0;
/* left: 155px;*/
 left: 144px;
}

/*
 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.
*/
.leftmenulist li {
 position: relative;
/* border: 1px solid red;*/
/* background: #fff;*/
 margin-bottom: -1px;
}
.leftmenulist ul>li:last-child {
 margin-bottom: 1px;
}

/* Links inside the menu */
.leftmenulist a {
 display: block;
 padding: 5px;
 color:#666666;
 text-decoration: none;
}


/*
 Lit items: 'hover' is mouseover, 'highlighted' are parent items to visible menus.
*/
/*.leftmenulist a:hover, .leftmenulist a.highlighted:hover, .leftmenulist a:focus {
 color:#666666;
 background-image : url(../images/menuolivehighlight.jpg);
 background-repeat : no-repeat;
}
.leftmenulist a.highlighted {
 color: #FFF;
 background-color: #A50000;
}*/




/*
 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:
    .leftmenulist a#xyz {
      background-image: url(out.gif);
    }
    .leftmenulist a#xyz:hover, .leftmenulist a.highlighted#xyz, .leftmenulist a:focus {
     background-image: url(over.gif);
    }
*/

/* !!! left menu images are determined by sub style sheet such as leftmenuwub.css
that way different menus can be specified which use this style sheet as a base */

/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.leftmenulist a .subind {
 float: right;
}

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .leftmenulist li {
 float: left;
 height: 1%;
}
* html .leftmenulist a {
 height: 1%;
}
/* End Hack */
