﻿/*********** Left Navigation ***********/
.menulist2 {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: left;
	width: 205px;
	background: #e4f5c7;
	position: relative;
	z-index: 500;
}
.menulist2 li {
	margin: 0;
	padding: 3px 0;
	float: left;
	display: block;
	width: 205px; /*line-height: 33px;
	height: 33px;*/;
	border-bottom: 1px solid #1E4701;
	background: transparent url('../images/site-graphics/left-col-menu-bt-bg.png') repeat-x;

}
.menulist2 li a, .menulist2 li a:link, .menulist2 li a:active, .menulist2 li a:visited {
	display: block;
	background: #e4f5c7;
	color: #1E4701;
	text-decoration: none;
	border: 0px solid #fff;
	vertical-align: middle;
	font-variant: normal;
	line-height: 15px;
	font-size: 12px;
	font-family: Tahoma;
	font-weight: bold;
	margin-left: 5px;
	margin-right: 0px;
	margin-top: 0px;
	margin-bottom: 0;
	padding-left: 10px;
	padding-right: 15px;
	padding-top: 4px;
	padding-bottom: 4px;
}
.menulist2 li a:hover {
	color: #e6a323;
	text-decoration: underline;
}
/* VERTICAL FREESTYLE MENU LAYOUT */
/* All <ul> tags in the menu including the first level */
/*
 Submenus (<ul> tags) are hidden and absolutely positioned across from their parent.
 They don't *have* to touch their parent menus, but is' a good idea as CSS-only fallback
 mode requires menus to touch/overlap (when JS is disabled in the browser).
*/
.menulist2 ul {
	display: none;
	position: absolute;
	top: -1px;
	left: 182px;
	width: 205px;
	border: 1px solid #5C8F35;
	border-bottom: 0;
	background: #e4f5c7;
}
.menulist2 ul li {
	width: 205px; /*height: 33px; */;
	padding: 2px 0;
	display: block;
	border-bottom: 1px solid #5C8F35;

}

.menulist2 li ul li ul {
	left: 120px;
}
/*
 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.
*/
.menulist2 li {
	position: relative;
	margin: 0px 0 0 0;
	margin-bottom: 0px;
}
.menulist2 ul > li:last-child {
	margin-bottom: 0px; /* Mozilla fix */
}
/* Links inside the menu */
.menulist2 ul li {
	background: transparent url('../images/site-graphics/left-col-menu-sub-bg.png') repeat-x;

}
/*
 Lit items: 'hover' is mouseover, 'highlighted' are parent items to visible menus.
*/
.menulist2 a:hover, .menulist2 a:hover.highlighted, .menulist2 a:focus {
	color: #e6a323;
}
.menulist2 a.highlighted {
	color: #e6a323;
}
/*
 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:
    .menulist2 a#xyz {
      background-image: url(out.gif);
    }
    .menulist2 a#xyz:hover, .menulist2 a.highlighted#xyz, .menulist2 a:focus {
     background-image: url(over.gif);
    }
*/
/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist2 a .subind {
	float: right;
}
/*
 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 .menulist2 li {
	float: left;
	width: 100%;
}
* html .menulist2 li {
	float: left;
	height: 1%;
}
* html .menulist2 a {
	height: 1%;
}
/* End Hacks */

