/*$version_start$ 21/04/2009$eGainBlue$1.0 $version_end$ topicTreeModule*/

/* Prevent scroll bar in tree when collapsing item*/
#topicTreeModule .moduleContent {
	overflow: visible;
	font-size: 80%; /*font size of the indexing */
}

/* reset indents that vary between browsers */
#topicTreeModule ul,
#topicTreeModule li {
/*
	padding: 0;
	margin: 0;
	list-style: none;
*/
}

/* indent child topics */
#topicTreeModule ul {
	/* margin-left: 20px; */
	background-color:#fff;
}

#topicTreeModule .expand,
#topicTreeModule .collapse,
#topicTreeModule .spacer {
	margin-left: -3px; /* in the margin of the ul */
	padding-right: 2px;
}

/* topic items vertical spacing */
#topicTreeModule li {
	/*
margin-top: 10px;
	color: #999;
*/
}

#topicTreeModule li a {
	font-size: 110%; /*font size relative to the index */
	color: #444;
}

#topicTreeModule .inBread {
	font-weight: bold;
	
}

#topicTreeModule .inBread a{
	/* color: #0099D5; */
}

#topicTreeModule .selected .inBread {
}

#topicTreeModule .topicSearchCount {
	font-weight: bold;
}

/* don't show the inclusive count by default... */
#topicTreeModule .articleCountInclusive {
	display: none;
}

/* ...only if it's collapsed... */
#topicTreeModule .collapsed .articleCountInclusive {
	display: inline;
}

/* ...in which case don't show the exclusive count */
#topicTreeModule .collapsed .articleCountExclusive {
	display: none;
}

/* the following are overrides for right to left languages such as Arabic */
body.rtl #topicTreeModule ul {
	margin-right: 20px;
	margin-left: 0;
}

body.rtl #topicTreeModule a {
	float: right;
	margin-right: 0;
	margin-left: 0.5em;
}

body.rtl #topicTreeModule .expand,
body.rtl #topicTreeModule .collapse,
body.rtl #topicTreeModule .spacer {
	float: right;
	margin-right: -20px;
	margin-left: 0;
	padding-right: 0;
	padding-left: 5px;
}

/* the following styles make the tree look more like windows explorer. 
To use these add class="windows_explorer" to #topicTreeModule */
#topicTreeModule.windows_explorer li {
	margin-top: 5px;
}

#topicTreeModule.windows_explorer li a.topicAnchor {
	padding: 10px 0px 10px 23px; /* make room for the topic icon */
}

#topicTreeModule.windows_explorer li.expanded a.topicAnchor {
	background: transparent url(../images/topic.gif) no-repeat scroll 0 center;
}

#topicTreeModule.windows_explorer li.collapsed a.topicAnchor {
	background: transparent url(../images/topic.gif) no-repeat scroll 0 center;
}

#topicTreeModule.windows_explorer li.selected a.topicAnchor {
	background: transparent url(../images/topicselected.gif) no-repeat scroll 0 center;
}

