/*--------------------------------------------------|
| dTree 2.05 | www.destroydrop.com/javascript/tree/ |
|---------------------------------------------------|
| Copyright (c) 2002-2003 Geir Landrö               |
|--------------------------------------------------*/

/*
----------------------------------------------------------------------------- 
BASIC MENU SETUP
-----------------------------------------------------------------------------*/
.dtree {
	position:relative;
	font-family: Verdana, Avenir, "Trebuchet MS", "Tahoma", sans-serif;
	font-size: 10px;
	font-weight: bold;
	width:220px;
	overflow:hidden;
}
.dtree, .dtree a.node, .dtree a.nodeSel {
	border-bottom: 2px #fff solid;
	}
.dtree img, .dtree a {	/* turns off images and links that are used to space and don't work with this layout */
	display: none;
	}
/*
----------------------------------------------------------------------------- 
LINK SETUP
-----------------------------------------------------------------------------*/
.dtree a.node, .dtree a.nodeSel {
	display: block;
	padding-left: 20px;
	padding-right: 5px;
	width: 220px;
	color: #000;
	background-color:#D6D6D6;
	text-decoration: none;
}
.dtree a.node:hover, .dtree a.nodeSel:hover { /* set hover colors */
	background-color:#b5b5b5;
	text-decoration: none;
}
.dtree a.node:visited, .dtree a.nodeSel:visited { /* set visited colors */
	color: #666;
	text-decoration: none;;
	}
.dtree a.node:active {
	color: #000;
	text-decoration: none;;
	}
/*
----------------------------------------------------------------------------- 
PARENTS SETUP
-----------------------------------------------------------------------------*/
.dtree a#nodeParent {
	color: #fff;
	background-color: #7E7A6A;
	padding-left: 5px;
	text-transform: uppercase;
	text-decoration: none;
}
.dtree a#nodeParent:hover { /* set hover colors for parents */
	background-color: #5F5E5C;
	padding-left: 5px;
}
