/* tabs */

.shadetabs{
    padding: 2px 0;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: bold;
    list-style-type: none;
    text-align: left; /*set to left, center, or right to align the menu as desired*/
}


.shadetabs li{
    display: inline;
    margin: 0;
}

.shadetabs li a {
    text-decoration: none;
    position: relative;
    z-index: 1;
    padding: 3px 7px;
    border: 1px solid #000;
    border-bottom: none;

    -moz-border-radius-topright: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -webkit-border-top-left-radius: 5px;

    color: #2d2b2b;
    background-color: #FFFFFF;
    background-image: -webkit-linear-gradient(#FFFFFF 0%, #D5D5D5 100%); 
    background-image: -moz-linear-gradient(#FFFFFF 0%, #D5D5D5 100%); 
    background-image: -o-linear-gradient(#FFFFFF 0%, #D5D5D5 100%); 
    background-image: linear-gradient(#FFFFFF 0%, #D5D5D5 100%);
    top: 0px;
}

.shadetabs-sekundaer li a {
    background-color: #f8eb95;
    background-image: -webkit-linear-gradient(#f8eb95 0%, #fdd43b 100%); 
    background-image: -moz-linear-gradient(#f8eb95 0%, #fdd43b 100%); 
    background-image: -o-linear-gradient(#f8eb95 0%, #fdd43b 100%); 
    background-image: linear-gradient(#f8eb95 0%, #fdd43b 100%);
    top: 2px;
}

.shadetabs li a:visited{
    color: #2d2b2b;
}

.shadetabs li a:hover{
    text-decoration: underline;
    color: #2d2b2b;
}

.shadetabs li a.selected{ /*selected main tab style */
    position: relative;
    top: 1px;
}

.shadetabs-sekundaer li a.selected{ /*selected main tab style */
    position: relative;
    top: 3px;
}

.shadetabs li a.selected{ /*selected main tab style */
    background-image: none;
    border-bottom-color: white;
}

.shadetabs li a.selected:hover{ /*selected main tab style */
    text-decoration: none;
}