/*
Navigation tree
*/

ol#root {  
  padding-left: 5px; 
	margin-top: 2px; 
	margin-bottom: 1px; 
	list-style: none;
	font-weight: bold; 
}

* html ol#root {
  padding-left: 0px;
}

#root ol {  
  padding-left: 15px; 
	margin-top: 2px; 
	margin-bottom: 1px; 
	list-style: none; 
}

#root li { 
  margin-bottom: 1px; 
	padding-left: 5px;  
	margin-top: 2px; 
}

* html #root li { 
	padding-left: 0px;  
}
  
#root a { 
  text-decoration: none; 
}

.folder_closed { 
	background: url(../images/navigation/closed.gif)  no-repeat;  
	height: 16px; 
	width: 12px; 
	padding-right: 3px; 
	padding-left: 18px;
	margin-left: 10px;
}

* html .folder_closed { 
	padding-right: 3px; 
	padding-left: 13px;
	margin-left: -15px;
}

.folder_open { 
	background: url(../images/navigation/open.gif)  no-repeat;  
	height: 16px; 
	width: 12px; 
	padding-right: 3px; 
	padding-left: 18px;
	margin-left: 10px;
}

* html .folder_open { 
	padding-right: 0px; 
	padding-left: 13px;
	margin-left: -15px;
}
	
.doc {
  background: url(../images/navigation/greenball.gif)  no-repeat; 
  height: 16px; 
	width: 12px; 
	padding-right: 3px;
	padding-left: 21px;
	margin-left: 7px; 
}

* html .doc {
	padding-right: 0px;
	padding-left: 15px;
	margin-left: -18px;
}


/*
Navigation buttons
*/


ul#naviBtn { 
  text-align: right;
  background-color: silver;
	padding-left: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
}
	
ul#naviBtn li {
  list-style: none;
  display: inline;
	padding: 1px;
}

ul#naviBtn a, ul#naviBtn span {
  padding: 0.2em 1em;
  text-decoration: none; 
	font-weight: bold;
  border: 1px solid black;
  border-left-color: white; 
  border-top-color: white;
  color: green; 
  background-color: #ccc;
}

* html ul#naviBtn a, * html ul#naviBtn span {
  width: 1em;    /* nur fuer IE 5.0x erforderlich */
  w/idth: auto;  /* sicherheitshalber fuer IE 6 zurueckgesetzt */
}

ul#naviBtn a:hover, ul#naviBtn span {
  border-color: white;
  border-left-color: black; 
  border-top-color: black;
  color: white; background-color: gray;
}


