/******************************************************************************
	site.css
	Generelles Layout der Site
******************************************************************************/

/******************************************************************************
        Grundsätzliches Seitendesign
******************************************************************************/
html, body {
        margin: 0px;
        padding: 0px;
        background-color: rgb(0, 0, 0);
        height: 100%;
        border: 0px;
}

img {
        border: none;
}

/******************************************************************************
        Die einzelnen Seitenteile: Oben=top, der Rest findet in main statt,
        Navigationsleiste=navi, eigentlicher Inhalt=content
******************************************************************************/

#top {
        color: rgb(255, 255, 255);
        background-color: rgb(0, 0, 0);
        height: 107px; /* Trial and Error, damits bündig wird */
        margin: 0px;
        padding: 0px;
        z-index: 1;
        font-family: sans-serif;
        position:absolute;
        top:0;
        left:0;
        width:100%;
        background-image: url(../icons/header_background.jpg);
        background-repeat: repeat-x;
}

#navi {
        color: rgb(255, 255, 255);
        position: absolute;
        left: 0px;
        top: 110px;
        width: 216px;
        background-color: rgb(0, 0, 0);
        height: 100%;
        font-family: sans-serif;
        height: 100%;
        background-image: url(../icons/navigation_background.jpg);
        overflow: auto;
}

#content {
        color: rgb(255, 255, 255);
        position: absolute;
        top: 130px;
        width: 75%;
        margin-left: 226px;
        margin-right: 0px;
        font-family: sans-serif;
        background-image: url(../icons/spyral_logo_background.jpg);
        background-repeat:no-repeat;
        background-attachment: fixed;
        background-position: 226px 150px;
}

@media screen{
  body>#top{
   position:fixed;
  }
  body>#navi{
   position:fixed;
  }
}

/******************************************************************************
        Auszeichnungstags: Formatierung
******************************************************************************/

/*      Größe der Seitenüberschrift */
h1 {                                    
        border: 0px;
        margin: 0px;
        padding: 0px;
        height: 40px;   /* Trial and Error, damit das bündig wird */
        width: 100%;
        text-align: center;
        font-size: 36px;
        font-weight: bold;
        font-variant: small-caps;
}

/******************************************************************************
        Formatierungen für den Top-Bereich
******************************************************************************/

/*      Tabellenstil im Top */
.imTop {
        width: 95%;
        margin: 0px;
        padding: 0px;
        border: 0px;
}

/*      Style für die Überschrift im Top  */
.thehead {
        position: absolute;
        top: 0px;
}

/*      Style für den Seitentitel */
.sitetitel {
        position: absolute;
        bottom: 10px;
        margin-left: 200px;
        text-align: center;
        font-weight: bold;
        width: 150px;
        background-color: rgb(0, 0, 0);
        color: rgb(150, 170, 168);
        border-top: 2px solid black; /*rgb(150, 170, 168);*/
        border-right: 2px solid black; /*rgb(150, 170, 168);*/
        border-bottom-width: 0px;
}

/*      Style für den Aktualisiert-Eintrag */
.siteactual {
        position: absolute;
        bottom: 10px;
        text-align: right;
        width: 95%;
}

/******************************************************************************
        Formatierungen für den Navibereich
******************************************************************************/

/*      Formate für die Links in der Navigationsleiste */
a#navilink:link {
        font-style: normal;
        font-weight: bold;
        color: #ffffff;
        text-decoration: none;
}

a#navilink:visited {
        font-style: normal;
        font-weight: bold;
        color: #ffffff;
        text-decoration: none;
}

a#navilink:hover {
        font-style: italic;
        color: #ffffff;
        text-decoration: none;
}

/*      Liste der Navieinträge */
.navientrylist {
        margin-left: 20px;
}

/*      Anpassung der Schriften in der Navigationsleiste */
h4 {
        font-size: 16px;
        font-family: sans-serif;
}

/*      Anpassung der Schriften in der Navigationsleiste */
h6 {
        font-size: 12px;
        font-family: sans-serif;
}

