/* Schrift laden */

@font-face {
  font-family: 'Linux Biolinum';
  src: url('../css/LinBiolinum_Rah.ttf') format('truetype'); /* normal */
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Linux Biolinum';
  src: url('../css/LinBiolinum_RBah.ttf') format('truetype'); /* fett */
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Linux Biolinum';
  src: url('../css/LinBiolinum_RIah.ttf') format('truetype'); /* kursiv */
  font-weight: normal;
  font-style: italic;
}

body, html {
    height: 100%;
}

/* Schrift zuordnen*/

body {
    font-family: 'Linux Biolinum' !important;
    font-size: 16px;
    line-height: 1.6em;
    -webkit-font-smoothing: antialiased;
    /*background-color: #F3F3F3;*/
    color: #333;
    margin:0;
    padding:0;
}

h1, h2, h3, h4 {
    font-weight: 500;
    font-family: 'Linux Biolinum' !important;
    /*text-transform: uppercase;*/
    margin:0 0 15px 0;
    padding:0;
}

h1 {
    margin: 0 0 20px 0;
    font-size: 2.0em;
    line-height: 1.2em;
}

h2 {
    font-size: 1.6em;
    line-height: 1.4em;
}

h3 {
    font-size: 1.3em;
    line-height: 1.4em;
}

h4 {
    font-size: 1.2em;
}

h4.betont {
    font-weight: 600;
}

a {
    color:#cc0000;
    cursor:pointer;
}

a:hover {
    color:#aa0000;
    text-decoration:none;
}

p.fett {
   font-weight: bold;
}

p.kursiv {
   font-style: italic;
}

p {
    margin:0 0 15px 0;
}

p:last-child {
    margin:0;
}

img {
	max-width:100%;
}


/** images **/

.component img {
    max-width:100%;
    margin-bottom:20px;
    vertical-align:top;
}

.component img.pull-left,
.component img[style*="float:left"],
.component img[style*="float: left"] {
    margin: 10px 15px 15px 0;
}

.component img.pull-right,
.component img[style*="float:right"],
.component img[style*="float: right"] {
    margin: 10px 0 15px 15px;
}

@media(max-width:767px) {
    .component img.pull-left,
    .component img[style*="float:left"],
    .component img[style*="float: left"],
    .component img.pull-right,
    .component img[style*="float:right"],
    .component img[style*="float: right"] {
        max-width:100%;
        margin: 0 auto 15px auto;
        display:block;
        float:none !important;
    } 
}

@media(min-width:768px) {
    .component img.pull-left,
    .component img[style*="float:left"],
    .component img[style*="float: left"],
    .component img.pull-right,
    .component img[style*="float:right"],
    .component img[style*="float: right"] {
        max-width:50%;
    }
}

#scrollToTop {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 60px;
    margin-left: -30px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    display: block;
    background-color: rgba(0,0,0,0.3);
    color: #fff;
    transition: all 0.3s;
    cursor: pointer;
}

#scrollToTop:hover {
    height: 50px;
    line-height: 50px;
}