/*

RadTreeView base css

* Notes on some CSS class names *

class  --  HTML element  --  description 

rtUL  --  <ul>  --  multiple nodes container
rtLI  --  <li>  --  one node 
rtFirst  --  <li>  -- TreeView's first node
rtLast  --  <li>  -- last node in a given node group (<ul>)
rtTop,rtMid,rtBot  --  <div>  -- a wrapper (<div>) inside a node (<li>) - can be in a top, middle or bottom node in a given node group
rtIn  --  <span> or <div>  -- the inner container inside a node - contains text (<span> rendering) or template (<div> rendering)
rtSp  --  <span>  -- holds a dummy element for adjustment of node heights (should be an even number if the skin node lines are dotted)
rtChk  --  <input>  -- holds a node's checkbox
rtImg  --  <img>  -- holds a node's icon
rtPlus,rtMinus -- <span> -- holds a node's expand / collapse buttons (plus / minus signs)

*/

/* <general styles> */

.rtUL {
	list-style: none;
	width: 138px;	
}

.rtUL .rtUL {
	margin-left: 0 !important;
}

.rtLI {
	font-size: 12px;
}

.rtSelected a {
	color: #ebedcd;
}

.Folder {
	background: transparent url('../../images/nav-folder-arrows.png') 6px 5px no-repeat;
}

.FolderExpanded {
	background: transparent url('../../images/nav-folder-arrows.png') 6px -45px no-repeat;
}


.rtUL .rtFirst .rtTop {
	border-top: none; 
}

.rtUL .rtLast .rtBot {
	border-bottom: none !important; 
}

.rtTop,
.rtMid,
.rtBot {
	padding: 5px 0;
}

.rtIn {
	padding-right: 10px;
}

.rtLI .rtIn {
	padding-left: 20px;
	display: block;
}

.rtLI .rtTop {
	border-top: 1px #e3e5c0 solid;
	border-bottom: 1px #969d32 solid;
}

.rtLI .rtMid {
	border-top: 1px #e3e5c0 solid;
	border-bottom: 1px #969d32 solid;
}

.rtLI .rtBot {
	border-top: 1px #e3e5c0 solid;
	border-bottom: 1px #969d32 solid;
}

.rtLI .rtLI .rtTop {
	border-top: 1px #788120 solid;
	border-bottom: 1px #788120 solid;
}

.rtLI .rtLI .rtMid {
	border-top: 1px #acb34d solid;
	border-bottom: 1px #788120 solid;
}

.rtLI .rtLI .rtBot {
	border-top: 1px #acb34d solid;
	border-bottom: 1px #acb34d solid;
	padding-bottom: 10px;
}

.rtLI .rtLI .rtLI .rtTop {
	border-top: 1px #646e15 solid;
	border-bottom: 1px #646e15 solid;
}

.rtLI .rtLI .rtLI .rtMid {
	border-top: 1px #909832 solid;
	border-bottom: 1px #646e15 solid;
}

.rtLI .rtLI .rtLI .rtBot {
	border-top: 1px #909832 solid;
	border-bottom: 1px #909832 solid;
	padding-bottom: 10px;
}

.rtLI .rtLI {
	background: #909832;
}

.rtLI .rtLI .rtLI {
	background: #788120;
}
