@charset "utf-8";
/* Begin CSS Drop Down Menu */

/* LEVEL 1 */

#treeMenu {
	width: 190px; /*width of accordion menu*/
	display: inline;
}
#treeMenu .menuheader { /*CSS class for menu headers in general (expanding or not!)*/
	font: 13px;
	margin-bottom: 10px;
	padding: 4px 0 4px 34px; /*header text is indented 10px*/
	cursor: hand;
	cursor: pointer;
	background-color: #E8E9EB;
	height: 17px;
	text-transform: uppercase;
	background-image: url(../img/bgmenu.jpg);
	color: #777879;
}
#treeMenu .openheader {
	background-image: url(../img/titlebar-active.png);
}
#treeMenu h3 { /*CSS class to apply to expandable header when it's expanded*/
	margin: 0;
	padding: 0;
}
/* LEVEL 2 */

#treeMenu ul { /*CSS for UL of each sub menu*/
	list-style-type: none;
	margin: 0;
	padding: 0;
	margin-bottom: 8px; /*bottom spacing between each UL and rest of content*/
}
#treeMenu ul li {
	padding-bottom: 2px; /*bottom spacing between menu items*/
	font-size: 12px;
}
#treeMenu ul li a {
 color: # 79334c;
	background: url(../img/arrowbullet.png) no-repeat center left; /*custom bullet list image*/
	display: block;
	padding: 2px 0;
	padding-left: 25px; /*link text is indented 19px*/
	text-decoration: none;
	font-weight: bold;
	border-bottom: 1px solid #dadada;
	font-size: 12px;
	background-position: 5px 5px;
	color: #963f5e;
}
#treeMenu ul li a:visited {
 color: # 79334c;
}
#treeMenu ul li a:hover { /*hover state CSS*/
 color: # 79334c;
	background-color: #F3F3F3;
}
/* LEVEL 3 */

#treeMenu ul ul { /*CSS for UL of each sub menu*/
	list-style-type: none;
	margin: 0;
	padding: 0;
	margin-bottom: 8px; /*bottom spacing between each UL and rest of content*/
}
#treeMenu ul ul li {
	padding: 0 0 2px 10px; /*bottom spacing between menu items*/
	font-size: 11px;
}
#treeMenu ul ul li a {
	color: #666666;
	background: url(../img/arrowbullet.png) no-repeat center left; /*custom bullet list image*/
	display: block;
	padding: 2px 0;
	padding-left: 25px; /*link text is indented 19px*/
	text-decoration: none;
	font-weight: normal;
	border-bottom: 1px solid #dadada;
	font-size: 11px;
	background-position: 5px 5px;
}
#treeMenu ul ul li a:visited {
	color: #666666;
}
#treeMenu ul ul li a:hover { /*hover state CSS*/
	color: #666666;
	background-color: #F3F3F3;
}
