
/* ------------------------------------------------------------------- */
/* Anim menu */
UL.menulist {
 /*border: 1px solid #AAAAAA;*/
}
/* All <ul> tags in the menu including the first level */
UL.menulist, UL.menulist  UL {
 margin: 0;
 padding: 0;
 list-style: none;
}

/* Submenus (all <ul> tags) are hidden and absolutely positioned downwards from their parent */
UL.menulist UL {
 display: none;
 position: absolute;
 top: 0px;
 left: 182px;
 width: 180px;
 /*border-left: 1px solid #AAAAAA;
 border-top: 1px solid #AAAAAA;
 border-right: 1px solid #A0A0A0;
 border-bottom: 1px solid #A0A0A0;*/
}

/*
 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.
*/
UL.menulist LI {
 float: none;
 position: relative;
 background-color: #DFDFDF;
 border: none;
 border-bottom: 1px solid white;
}
UL.menulist>LI:last-child {
 border-bottom:none;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
UL.menulist UL LI {
 float: none;
 margin: 0px;
}
UL.menulist UL>LI:last-child {
 border-bottom:none;
}

/* Links inside the menu */
UL.menulist A.navt {
 	display: block;
	padding-left: 17px;
 	color: black;
 	text-decoration:  none;
 	font-family: Helvetica, Verdana, Arial, sans-serif;
	font-size: 8pt;
	font-weight: normal;
 	margin-left: 0px;
	line-height:21px;
}
UL.menulist A.has_sub {
	background-image:url(../img/plus_pink.png);
	background-repeat: no-repeat;
	background-position: 3px 5px;
	
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
UL.menulist A.navt:hover, UL.menulist A.navt:focus {
 	background-color: #32CA96;	
 	text-decoration:  none;
}
UL.menulist A.has_sub:hover, UL.menulist A.has_sub:focus {
	background-color: #32CA96;
}
UL.menulist A.highlighted:hover, UL.menulist A.highlighted {
	background-color: none;
	background-image: url(../img/minus_green.png);
}



/* Only style submenu indicators within submenus. */
.menulist a.navt .subind {
 display:  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 .menulist li {
 float: left;
 width: 100%;
}

* html .menulist li {
 float: left;
 height: 1%;
}
* html .menulist a {
 height: 1%;
}
/* End Hacks */

