/*=======================================================*/
/*                      Claymation Theme                      */ 
/*=======================================================*/
/* default css applied to the tree itself */
.igTreeView {
background-color: #FFFFFF; 
border: 1px solid silver;
	
}

/* display the "minus" icon to collapse a tree node */
.igTreeNodeExpandedControl {
	background-image:url(webtree/igwt_minus.gif);
	height: 16px;
	width: 16px;
	
	
}

/* display the "plus" icon to expand a tree node */
.igTreeNodeCollapsedControl {
	background-image:url(webtree/igwt_plus.gif);
	height: 16px;
	width: 16px;
	
}

/* display a transparent icon that matches the dimension of the plus/minus icon */
.igTreeNodeControl {
	height: 16px;
	width: 16px;
	
}

/* default css applied to tree nodes */
.igTreeNode {
	color: #696969;
	text-decoration: none;
	white-space: nowrap;
	
}

/* applied to disabled tree nodes */
.igTreeNodeDisabled {
	color: silver;
	cursor: text;	
	text-decoration: none;
	white-space: nowrap;

}
	
/* css applied to a node whenever the mouse cursor is over it */
.igTreeNodeHover {
	color: #0099CC;
	text-decoration: underline;
	white-space: nowrap;
	

}

/* css applied to a node whenever selected */
.igTreeNodeSelected {
	background-color: #EBEBEB;
	color: #0099CC;
	/* font-weight:bold;  */
	text-decoration: none;
	white-space: nowrap;
	
}
.owtnodeIcon{
margin-right:3px;
vertical-align:middle;
padding-top:-3px;

}
/* css that applies to the nodes' icons (but not the plus/minus icons) */
.igTreeNodeIcon  {
	margin-right: 4px;

	
}

/* css applied to children nodes */
.igTreeNodeContent  {
	margin-left: 16px;
	text-decoration: none;
	background-color:white;
}

