
/*
    weitere Ideen in: 
    http://css.maxdesign.com.au/listutorial/horizontal09.htm
    http://www.thestyleworks.de/tut-art/listnav3.shtml
*/

#navileiste {
    margin:    0px 10px  2px 30px;  /* margin-bottom:2px, damit die Reiter */
                                    /* bei Netscape nicht zu tief sitzen   */
    padding:   0px  2px  1px  2px; 
    font-size: 12px;

    /*  border:1px dotted green;  */
    }

#navileiste ul{
    margin:  0px 0px 0px 0px ; 
    padding: 0px 0px 0px 0px ;
    list-style-type:none;
    text-align: center;
    /* border:1px dotted red ;  */
    }

#navileiste ul li {
    margin: 0px 0px 0px 0px ;
    padding:0px 0px 0px 0px ; 
    display: inline;
    }

#navileiste ul li a{
    text-decoration: none; 
    margin:  0px 0px 0px 0px ;
    padding: 3px 6px 6px 10px ;
    color: #000000;  
    /* border:1px dotted red ; */ 

    line-height: 20px;             /*  damit bei einem <br> die Elemente aueseinadergezogen werden */ 

    background-image:url(bilder/reiter1_aus.gif); 
    background-position:bottom left;
    background-repeat:no-repeat;
    /* normalerer Hintergrund: #ffffef;  dunkler:  #ddddcd;  */
    }
#navileiste ul li a:link,  
#navileiste ul li a:visited {  
    }
#navileiste ul li a:focus,
#navileiste ul li a:hover,
#navileiste ul li a:active {
    color: #ff0000;

    background-image:url(bilder/reiter1_an.gif); 
    background-position:bottom left;
    background-repeat:no-repeat;
    }

#navileiste #current a{
    text-decoration: none; 
    font-weight:bold;
    color: #000000;  
    
    background-image:url(bilder/reiter1_an.gif); 
    background-position:bottom left;
    background-repeat:no-repeat;
    }

@media print
    {
    #navileiste{
        display:none; }
    } 


