/***** GLOSSARY TREE *****/
.glossaryNodeLink, .glossaryLeaf, .glossaryCurrentLeaf{
  font-size: 0.88em;   /* Note: this is relative to the size of the body */
}

/** Tree nodes **/
.glossaryNode {
  padding-left: 10px; 
  padding-top: 5px;
  font-weight: bold; 
  text-decoration: none;
}
a.glossaryNodeLink:link, a.glossaryNodeLink:active, a.glossaryNodeLink:visited{
  color: #3B342A; 
  text-decoration: none;
}
a.glossaryNodeLink:hover  {
  text-decoration: underline;
}

/** Tree leaf zones - They are never links, so no styles for links **/
.glossaryLeaf {
  padding-left: 14px; 
  font-weight: normal; 
  text-decoration: none;
}

/** Style of title of current leaf - not used, execept in JS code**/
.glossaryCurrentLeaf {
}

/* Text displayed under the glossary */
.glossaryFinalText{
  font-size: 0.9em;
  font-style: italic;
}

/** Block containing one of the trees representing a section, displayed on the left of pages **/
.glossaryTreeBlock{
}

/** Expand all / Collapse all button bar **/
.glossaryTreeButtonBarBlock{
	padding-bottom: 20px;
}

