@charset "UTF-8";

/* =========================
   BASIS
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#ffffff url(top_bg.jpg) repeat-x top;
    font-family:Arial, Verdana, Helvetica, sans-serif;
    font-size:11px;
    color:#333;
    line-height:1.5;
}

/* =========================
   TOP MENU
========================= */

#top_menu{
    max-width:850px;
    width:100%;
    margin:auto;
    padding:15px 10px;
}

ul.menu{
    list-style:none;
    text-align:center;
}

ul.menu li{
    display:inline-block;
    margin:5px 3px;
}

/* Navigation */

a.nav:link,
a.nav:visited{
    display:inline-block;

    padding:6px 14px 6px 26px;

    font-weight:bold;
    font-size:20px;
    text-decoration:none;
    color:#fff;

    background:url(bt_bg.jpg) no-repeat left center;

    white-space:nowrap;
}

a.nav:hover{
    color:#fff;
    background:url(bt_bg_a.jpg) no-repeat left center;
}

/* =========================
   MAIN CONTENT
========================= */

#main_content{
    max-width:850px;
    width:100%;
    margin:20px auto;
    background-color:#F6F5E9;
}

/* =========================
   TOP BANNER
========================= */

#top_banner{
    width:100%;
    border:8px solid #ffffff;
}

#top_banner img{
    width:100%;
    height:auto;
    display:block;
}

/* =========================
   PAGE CONTENT
========================= */

#page_content{
    max-width:850px;
    width:100%;
    margin:0 auto;
    padding-bottom:20px;
}
hr{
    border:none;
    border-top:2px solid #c8c8c8;

    margin:35px 20px;
}

/* =========================
   BILDER
========================= */

.startbild{
    padding:20px;
}

.startbild img{
    width:100%;
    height:auto;
    display:block;
}

img{
    max-width:100%;
    height:auto;
}

/* =========================
   TYPOGRAFIE
========================= */

h1{
    font-size:24px;
    color:#808080;
    padding:20px 20px 10px;
    line-height:1.2;
}

h2{
    font-size:20px;
    color:#A32500;
    padding:20px 20px 10px;
    line-height:1.2;
}

h3{
    font-size:24px;
    color:#A32500;
    padding:20px 20px 10px;
    font-weight:lighter;
	line-height:1.3;
}

h4{
    font-size:24px;
    color:#000;
    padding:20px 20px 10px;
    font-weight:lighter;
    line-height:1.3;
}

p{
    font-size:16px;
    color:#333333;
    text-align:left;
    padding:0px 20px 20px;
    line-height:1.3;
}

b{
    font-size:18px;
    color:#A32500;
    line-height:1.3;
}

.tab_fuss{
    font-size:12px;
    color:#333;
}

/* =========================
   TABLET
========================= */

@media screen and (max-width:768px){

    a.nav:link,
    a.nav:visited{
        font-size:17px;
        padding:6px 12px 6px 20px;
    }

    h1{
        font-size:22px;
    }

    h2{
        font-size:18px;
    }

    h4{
        font-size:20px;
    }

    p{
        font-size:17px;
    }
}

/* =========================
   SMARTPHONE
========================= */

@media screen and (max-width:480px){

    #top_menu{
        padding:10px 5px;
    }

    ul.menu li{
        display:inline-block;
        margin:4px;
    }

    a.nav:link,
    a.nav:visited{
        font-size:15px;
        padding:6px 10px 6px 16px;

        background:url(bt_bg.jpg) no-repeat left center;

        width:auto;
    }

    a.nav:hover{
        background:url(bt_bg_a.jpg) no-repeat left center;
    }

    h1{
        font-size:20px;
    }

    h2{
        font-size:17px;
    }

    h3{
        font-size:16px;
    }

    h4{
        font-size:18px;
    }

    p{
        font-size:16px;
        padding:0 15px 15px;
        line-height:1.6;
    }

    .startbild{
        padding:15px;
    }

}