@charset "utf-8";

.wrapper1 { /*CSS for UL of each sub menu*/
	margin: 0;
	padding: 0;
}
.wrapper2 { /*CSS for UL of each sub menu*/
	margin: 5px 0 2px 0;
	padding: 0;
}

.level1  { /*CSS class for menu headers in general (expanding or not!)*/
	margin: 5px 0 2px 0;
	display: block;
}
.level1 h3 { /*CSS class to apply to expandable header when it's expanded*/
	margin: 0;
	padding: 3px 0 1px 0;
	font-size: 14px;
	display: block;
	cursor: pointer;
	color:#818620;
	
}

.level1  h3 a { /*hover state CSS*/
	color:#555;
}

.level1 h3:hover { /*hover state CSS*/
	text-decoration: underline;
	color:#555;
}
/* LEVEL 2 */

.level2 { /*CSS for UL of each sub menu*/
	height: 25px;
}

.level2 a:link, .level2 a:visited {
	color: #A81C23;
	display: block;
	padding: 2px 0 2px 10px;
	text-decoration: none;
	font-size: 12px;
	background-image: url(img/bgsidebar.gif);
	background-repeat: no-repeat;
	background-position: 150px -3px;
}
.level2 a:visited {
	color: #87111E;
	text-decoration: none;
}
.level2 a:hover, .level2 a:visited:hover {
	text-decoration: underline;
	color: #424242;
	background-image: url(img/bgsidebarhov.gif);
	background-repeat: no-repeat;
	background-position: 150px -3px;

}
