/*

Explorer Tree 1.4
=================
by Andrew Gregory <andrew@scss.com.au>
http://www.scss.com.au/family/andrew/webdesign/explorertree/

This work is licensed under the Creative Commons Attribution License. To view a
copy of this license, visit http://creativecommons.org/licenses/by/1.0/ or send
a letter to Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305,
USA.

*/

/* Get the bullets inside their LI's, so they're clickable. */
ul.explorertree li {
	list-style-position: inside;
	font-size: 12px;
	font-weight: bold;
	color: #FFFFFF;
}

ul.explorertree, ul.explorertree ul, ul.explorertree li {
	margin: 0; padding: 0; 
}

ul.explorertree ul {
	padding-left: 20px;
}
 /* sublist indentation */
/* Set the bullet images */
ul.explorertree li {
	list-style-image: url(../list.gif); list-style-type: square;
	cursor: hand !important;
	cursor: pointer !important;
}
ul.explorertree li.explorertree-open {
	list-style-image: url(../open.gif); list-style-type: circle;
	cursor: hand !important;
	cursor: pointer !important;
}
ul.explorertree li.explorertree-closed {
	list-style-image: url(../closed.gif); list-style-type: disc;
	cursor: hand !important;
	cursor: pointer !important;
}
/* Actually show and hide sublists */
ul.explorertree li.explorertree-open ul {
	display: block;
}
ul.explorertree li.explorertree-closed ul {
	display: none;
}
a.lite:link, a.lite:active, a.lite:visited {
	font-size: 12px;
	font-weight: bold;
	color: #FFFFFF;
}
a.lite:hover {
	color: #FF0000;
}
a.dark:link, a.dark:active, a.dark:visited {
	font-size: 12px;
	color: #CCCCCC;
}
a.dark:hover {
	color: #FF0000;
}