/* VERTICAL FREESTYLE MENU LAYOUT */


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

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

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


.menulist1 ul {
 visibility: hidden;
 position: absolute;
 top: 0;
 left: 186px;
 width:200px;
}
/*
 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 {
 position: relative;
 /*border: 1px solid #330;*/
 background: #EfEfEf;
 border-bottom: 1px solid #97CFCC;
 margin-bottom: 5px;
 margin-right: 0px;
 /*margin-top: 10px;*/
 padding: 2px;
 /*line-height: 11px;*/ /* This screws up lines that wrap, when combined with a 3px padding */
}



.menulist ul li { /* applies to submenus so you cannot see the page behind the 1px bottom margin */
 left: 13px;
 margin: 0px;
 background: #EfEfEf;
 border: 1px solid #97CFCC;
}


/* Links inside the menu */
.menulist a, .menulist a:visited {
 display: block;
 /*padding: 3px;*/ /* This screws up lines that wrap, when combined with an 11px line-height */
 padding-left: 3px;
 padding-right: 3px;
 padding-top: 0px;
 padding-bottom: 0px;
 font-family: Arial, Helvetica, sans-serif;
 font-size: 13px;
 text-transform: capitalize;
 text-decoration: none;
 color: #000000;
 background-color: #EfEfEf;
/* color: #000;
 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: #FFF;*/
 font-family: Arial, Helvetica, sans-serif;
 font-size: 13px;
 text-transform: capitalize;
 text-decoration: underline;
	color: #019B65;
	/*color: #FF0000; 660099; */
	background-color: #EfEfEf /*#FFFF99*/;
}



.menulist a.highlighted {
 /*color: #FFF;*/
 background-color: #EfEfEf;
 
}


.menulist1 a:hover, .menulist1 a.highlighted:hover, .menulist1 a:focus {
 /*color: #FFF;*/
 font-family: Arial, Helvetica, sans-serif;
 font-size: 13px;
 text-transform: capitalize;
 text-decoration: underline;
	color: #019B65 /*660099*/; 
	background-color: #EfEfEf /*#FFFF99*/;
}
.menulist1 a.highlighted {
 /*color: #FFF;*/
 background-color: #FFFFCD;
 
}
/*
 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. */
.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 */