/*navstyle.css*/
/*Stand: 25.12.2008*/
/*Q-Tech: Rudolf Kallenbach*/

	body {
		font-family: arial, helvetica, serif;
                background-image: url("images/backall.gif");
                font-size : 11px;
	}
	
	#nav, #nav ul { /* all lists */
                padding: 0;
		margin:  0;
		list-style: none;
		float : left;
		width : 10em;
	}
	
	#nav li { /* all list items */
		float : left;
		line-height : 1.25em;
		margin-bottom : -1px;
		width: 11em;
	}
	
	#nav li ul { /* second-level lists */
		position : absolute; 
		float : left;
                left: -999em;
		margin-left : 1em;
		margin-top : -1px;
                margin-bottom : 1px;
	}
	
	#nav li a {
                width : 11em;
		display : block;
		color : black;
		font-weight : normal;
                font-size : 11px;
		text-decoration : none;
		background-color : silver;
		border : 1px solid black;
		padding : 0 0.5em;
	}

        #nav a.daddy {
	        background: url(images/rightarrow2.gif) center right no-repeat;
                width : 11em;
		display : block;
		color : black;
		font-weight : normal;
                font-size : 11px;
		text-decoration : none;
		background-color : silver;
		border : 1px solid black;
		padding : 0 0.5em;
}
	
	#nav li a:hover {
		color : white;
		background-color : #0000FF;
	}
	
	#nav li:hover ul ul, #nav li.sfhover ul ul {
		left: -999em;
	}
	
	#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
            	position : relative;
                left: auto;
	}
	
	#nav li li:hover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */
            	position : relative;
                left: auto;
	}

	#content {
		margin-left : 1em;
	} 

