
/* Tree */

.infoterre .dijitTreeNode {
    background-image : url('images/i.gif');
    background-repeat : repeat-y;
    zoom: 1;	/* force layout on IE (TODO: may not be needed anymore) */
}

/* left vertical line (grid) for all nodes */
.infoterre .dijitTreeIsLast {
    background: url('images/i_half.gif') no-repeat;
}

.infoterre .dijitTreeIsRoot {
    margin-left: 0;
    background-image: none;
}

.infoterre .dijitTreeExpando {
    width: 18px;
    height: 18px;
}

.infoterre .dijitTreeRow {
	/* so insert line shows up on IE when dropping after a target element */
	padding-bottom: 2px;
}

.infoterre .dijitTreeContent {
    min-height: 18px;
    min-width: 18px;
 }

.infoterre .dijitTreeExpand {
    width: 18px;
    height: 18px;
    background-repeat : no-repeat;
}

/* same style as IE selection */
.infoterre .dijitTreeNodeEmphasized {
    background-color: Highlight;
    color: HighlightText;
}

/* don't use :focus due to opera and IE's lack of support on div's */
.infoterre .dijitTreeLabelFocused {
	outline: 1px invert dotted;
}
.infoterre .dijitTreeNodeSelected .dijitTreeLabel {
	background:#e2ebfe;
}
.infoterre .dijitTreeNodeHover {
	/*background-color: #f6f9fa !important;*/
	/* using a transparent png so that we can still see grid lines, which are (unfortunately) behind the dijitRowNode that we are hovering over */
	background-image: url(images/treeHover.png);
	background-repeat: repeat;
	background-color: none !important;
}


.infoterre .dijitTreeExpandoOpened {
	background-image: url('images/treeExpand_minus.gif');
}

.infoterre .dijitTreeExpandoClosed {
	background-image: url('images/treeExpand_plus.gif');
}

.infoterre .dijitTreeExpandoLeaf {
	background-image: url('images/treeExpand_leaf.gif');
}

.infoterre .dijitTreeExpandoLoading {
	background-image: url('images/treeExpand_loading.gif');
}

.infoterre .dijitTreeIcon {
	width: 16px;
	height: 16px;
}

.infoterre .dijitFolderOpened {
	background: url('images/folderOpened.gif') no-repeat;
}

.infoterre .dijitFolderClosed {
	background: url('images/folderClosed.gif') no-repeat;
}

.infoterre .dijitLeaf {
	background: url('images/leaf.gif') no-repeat;
}

/* Drag and Drop on TreeNodes
 * Put insert line on dijitTreeContent node so it's aligned w/
 * (ie, indented equally with) target element, even
 * though dijitTreeRowNode is the actual "drag object"
 */
.infoterre .dijitTreeNode .dojoDndItemBefore,
.infoterre .dijitTreeNode .dojoDndItemAfter {
	border-bottom: none;
	border-top: none;
}

.infoterre .dijitTreeNode .dojoDndItemBefore .dijitTreeContent {
	/* copied from Common.css */
	border-top: 2px solid #369;
}

.infoterre .dijitTreeNode .dojoDndItemAfter .dijitTreeContent {
	/* copied from Common.css */
	border-bottom: 2px solid #369;
}
