/* for Modx.org WayFinder / Agile Class browsing (c) Copyright Lorinthe BV */

#exp_tree{
	height: 800px;
	width: 180px;
	border-right: solid 1px #a66;
	float: left;
	margin: 24px 15px 10px 10px;
	padding-right: 4px;
}

 /* all menu */

#exp_tree  a {
	display: block;
	text-decoration:none;
	text-align: left;
	color: #333;
}

#exp_tree ul {
	padding: 0px;
	margin: 0px;
	width: 100%;
	list-style: none outside none;
	z-index: 10;
}

 /* here class, all the way up the tree  */
 .exp_tree_here {
	font-weight: bold;
 }

 
  /* self class, active document  */
 .exp_tree_self {
	font-weight: bold;
	color: #500;
	cursor:default;	
 }
 
.exp_tree_parent {  /* has children */
	background: url(../images/expand_tree_plus.gif) top right no-repeat;
}

 /* various levels designate type of document */

 
.exp_tree_level1,
.exp_tree_level_prj1{  /* project level*/
	background-color: #fcc; 
	border-left: 1px solid #a66;
	border-top: 1px solid #a66;
	border-right: 1px solid #500;
	border-bottom: 1px solid #500;
	margin-bottom: 12px
}
 .exp_tree_level_prj1{  /* project level*/
}
.exp_tree_level1 a,
.exp_tree_level_prj1 a {  /* user scenario level*/
	padding: 2px;
}
.exp_tree_level2{  /* user scenario level*/
	background-color: #ccf;
	border-top: 1px solid #500;
	padding: 2px 2px 2px 6px;
}
.exp_tree_level2 a{  /* user scenario level*/
	font-size: 95%;
	padding: 2px 1px 2px 1px;

}
.exp_tree_level3{  /* task level*/
	background-color: #cfc;
	border-top: 1px solid #a66;

}
.exp_tree_level3 a{  /* user scenario level*/
	font-size: 90%;
	padding: 2px 2px 2px 10px;
}

#progressgraph{
	padding-left: 200px;
height: 300px;

}
/* Fix IE. Hide from IE Mac \*/
* html #exp_tree li { float: left; height: 1%; }
* html #exp_tree li a { height: 1%; }
/* End */

#exp_tree ul li a:hover {
	background-color: #c88;
	color: #000;
	cursor: pointer;
}

/* hide / display sub menus */

#exp_tree li ul,
#exp_tree li:hover ul ul,
#exp_tree li:hover ul ul ul,
#exp_tree li.over ul ul,
#exp_tree li.over ul ul ul { display: none; } /* Hide sub-menus initially */

#exp_tree li.exp_tree_here ul { display: block; } /* show current active submenu */
#exp_tree li.exp_tree_here ul ul { display: none; } /* hide current active sub-submenu... */
#exp_tree li.exp_tree_here ul li.exp_tree_here ul { display: block; } /* ... unless it is active as well */

#exp_tree li:hover ul,
#exp_tree li li:hover ul,
#exp_tree li li li:hover ul,
#exp_tree li.over ul,
#exp_tree li li.over ul,
#exp_tree li li li.over ul { display: block; } /* The magic */



/* End */