/********************
Navi horiz
*********************/
div#menu_horiz {
   background-color: #FFFFFF;  /* background color for the entire menu row */   
   margin-left: 15px;
   margin-top: 20px;
}

/* 
the menu ul box has top and left border, 
right border is provided by the li elements 
*/
div#menu_horiz ul {
   margin: 0;
   padding: 0;   
   border-left: 0px #000000;   
   height:16px;
   color: #333333;
}


/* menu list items */
div#menu_horiz li {
   float: left; /* makes the list horizontal */
   list-style: none; /* hides the list bullet */ 
   margin: 0px;
   border-left: 0px dotted #A7A8AA;
   height:22px;
}


/* the links, that is each list item */
div#menu_horiz a {
   padding: 5px 15px 0px 5px; /* padding inside the list item box top-right-bottom-left*/
   margin: 0px; /* margin outside each list item box */
   text-decoration: none; /* no underline for links */
   color: #333333;   
   font-size: 10px;
   display: block; /* IE has problems with this, fixed above */
}


/* hover state for links */
div#menu_horiz li a:hover {   
   color: #AAA095;   
   background-color: #FFFFFF;
}

div#menu_horiz ul li #selected {		/* Für Navigation */
	color: #000000;
	font-weight:bold;
	background-color: inherit;	
}