/*
 * CSS for Standard tree layout
 * Copyright (C) 2005 SilverStripe Limited
 * Feel free to use this on your websites, but please leave this message in the fies
 * http://www.silverstripe.com/blog
 */
 
ul.tree{
	padding-left : 0px;
	margin-left : 10px;
	margin-right : 10px;
	margin-bottom : 10px;
  margin-top : 15px;
  font-family:Arial;
	font-size: 14px;
	/*width:110%*/
}

ul.tree, ul.tree ul {
	padding-left: 0px;
}

ul.tree ul {
	margin-left: 16px;
		
}
ul.tree li.closed ul {
	display: none;
}


ul.tree li {
	list-style: none;
	/*display: block;*/
	width: auto;
}

ul.tree li.last {
	list-style: none;
	background-image: none;
}

/* Span-A: I/L/I glpyhs */
ul.tree span.a {
	/*display: block;*/
}

/* Span-B: Plus/Minus icon */
ul.tree span.b {
}
ul.tree span.a.children span.b {
	background: url(../pic/minus.gif) 0 50% no-repeat;
	cursor: pointer;
}
ul.tree li.closed span.a.children span.b {
	background: url(../pic/plus.gif) 0 50% no-repeat;
	cursor: pointer;
}

/* Span-C: Spacing and extending tree line below the icon */
ul.tree span.c {
	margin-left: 16px;
}

ul.tree span.a.spanClosed span.c {
	background-image: none;
}


/* Anchor tag: Page icon */
ul.tree a  {
	
	white-space: pre;
  /*WHEEEEE!!!!!!*/
	padding: 0px;
	line-height: 16px;
  border-bottom:1px;
  border-bottom-style:dotted;
  border-color:#848991;

}


/* Unformatted tree */
ul.tree.unformatted li {
	background-image: none;
	padding-left: 16px;
}
ul.tree.unformatted li li {
	background-image: none;
	padding-left: 0px;
}

/*
 * Divs, by default store vertically aligned data
 

ul.tree li div {
	float: right;
	clear: right;
	height: 1em;
	margin-top: -26px;
}
 As inside DIVs should be treated normally 
ul.tree div a  {
	padding: 0;
	background-image: none;
	min-height: auto;
	height: auto;
}*/

ul.tree li A:link, ul.tree li A:hover, ul.tree li A:visited {
	color : #646971;
  text-decoration:none;
}

ul.tree li .over{
	/*background-color:pink;*/
}


