/********************
Navi horiz
*********************/
div#menu_horiz {
   background-color: #FFFFFF;  /* background color for the entire menu row */
   width: 100%;
   margin-left: 30px;
   margin-top: 55px;
}

/* 
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 #A7A8AA;   
   height:45px;
   color: #A7A8AA;
}


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


/* the links, that is each list item */
div#menu_horiz a {
   padding: 31px 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: #A7A8AA;   
   font-size: 10px;
   display: block; /* IE has problems with this, fixed above */
}


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

div#menu_horiz ul li #selected {		/* Für Navigation */
	color: #3d995b;
	background-color: inherit;	
}
