/* standard setting */
* {
    font-family: Verdana, sans-serif;
    font-size: 9.5pt;
}

/* we do not want ugly spaces around the body */
body {
    margin: 0px;
}

/* This setting is used for the graphical headers. These headers are not text but graphics.*/
h1 {
    text-align: center;
}

/* chapter header */
h2 {
    font-size: x-large;
    font-style: italic;
    font-weight: bold;
}

/* paragraph heading */
h3 {
    font-size: medium;
    font-weight: bold;
}

/* setting for list headings */
h3.list {
    font-size: medium;
    font-style: italic;
    font-weight: normal;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

/* simple header for long texts (used together with .longtext)  */
h3.simple {
    font-size: 9.5pt;
    font-weight: normal;
    text-decoration: underline;    
}

h4 {
    font-size: medium;
    font-weight: normal;
    text-decoration: underline;
}

/* smaller font for long texts */
.longtext {
    font-size: 9.5pt;
}

/* The main Sonnenmacht banner should not be absolutely on top */
.banner {
    margin-top: 20px;
}

/* This is the header in the small grey bars */
.small_header {
    font-size: 9.5pt;
    font-weight: bold;
}

/* This class is used for notes like the copyright notice at the bottom of each page */
.note {
    font-size: small;
    text-align: center;
}

/* settings for the main page text beside the icons */
.infolinks {
    font-size: large;
    font-weight: bold;
    text-align: left;
    color: black;
    text-decoration: none;
}

/* special paragraph start in the fashion of a small header */
.coloredstart {
    font-weight: bold;
    color: #0093dd;
}

/* emphasize */
.emph {
    font-style: italic;   
}




