/* 
    Document   : top_navigation.css
    Author     : Michael Xander
    Copyright  : Michael Xander | Pfeiffer-Verpackung.de
    Description: Hover-Effect of the Top-Navigation
*/


.top-navi{
    border-spacing: 0px;
    border-collapse: collapse;    
}

/* Aktuelles -> 97px*80px */
.navi-aktuelles {
    background: url(images/buttons/aktuelles.png) no-repeat;
}
.navi-97-link:hover {
    background-position: 0 -40px;
}
.navi-97-link {
    width: 97px;
    height: 40px;
    display: block;    
}

/* Kontakt -> 104px*80px */
.navi-kontakt {
    background: url(images/buttons/kontakt.png) no-repeat;
}
.navi-104-link:hover {
    background-position: 0 -40px;
}
.navi-104-link {
    width: 104px;
    height: 40px;
    display: block;
}

/* Wir, Produkte, Design -> 105px*80px */
.navi-wir {
    background: url(images/buttons/wir.png) no-repeat;
}
.navi-produkte {
    background: url(images/buttons/produkte.png) no-repeat;
}
.navi-design {
    background: url(images/buttons/design.png) no-repeat;
}
.navi-105-link:hover {
    background-position: 0 -40px;
}
.navi-105-link {
    width: 105px;
    height: 40px;
    display: block;
}


