/*
 * Author/Maintainer: jaeberha@hrz.uni-frankfurt.de
 * 
 * Beschreibung:
 * Standard-Style die alle Webseiten auf mailman gemein haben sollen.
 */


* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #4D4B46;
}

/*
 * Tags
 * Eigenschaften diverser Tags.
 */

/*
 * Headings
 * h1: Seitentitel
 * h2: Überschriften
 * h3 - h6: Unterpunkte
 */

h3, h4, h5, h6 {
    font-family: sans-serif;
    font-weight: bold;
    margin-top: 4px;
    padding-top: 8px;
}

h2 a, h3 a, h4 a, h5 a, h6 a {
    color: black;
}

h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
    border: none;
}

h2 {
    border-bottom: 1px solid black;
    font-family: serif;
    font-weight: normal;
    font-size: 132%;
    margin-top: 21px;
}

h3 {
    font-size: 105%;
}

h3 a {
    border-bottom: 1px dotted black;
}

h4 {
    font-size: 102%;
}

h5 {
    font-size: 83%;
}

h6 {
    font-size: 75%;
}

p {
    margin: 10px 0;
}

dt {
    font-weight: bold;
}

dd {
    margin-left: 25px;
}

ul {
    margin: 10px 0;
}

ul li, ol li {
    margin: 5px 0 5px 20px;
}

ul li {
    list-style-type: square;
}

ul.menu {
    margin: 15px 20%;
}

ul.menu li {
    border: 3px solid #00618F;
    list-style-type: none;
    padding: 5px;
    text-align: center;
}

a {
    color: #00618F;
    text-decoration: none;
}

a:hover {
    border-bottom: 1px solid black;
    color: #000;
    text-decoration: none;
}


/*
 * Tabellen
 * Stile für Tabellen
 */

table {
    border-collapse: collapse;
    border-spacing: 0px;
    margin: 25px 0;
}

td, th {
    padding: 0;
}

table caption {
    font-style: italic;
}

table th {
    padding: 6px 13px;
    border: 1px solid #DDD;
}

table td {
    padding: 6px 13px;
    border: 1px solid #DDD;
}

table tr {
    border-top: 1px solid #CCC;
}

table tr.header {
    padding: 6px 13px;
}

table tr.odd {
    background-color: #FFF;   
}

table tr.even {
    background-color: #F8F8F8;
}

table th {
    font-weight: bold;
}

/*
 * Page-Wrapper
 * Plaziert den gesamten Seiteninhalt.
 */

#page-wrap {
    width: 960px;
    margin: 0 auto;
    background-color: white;
    font-family: sans-serif;
}

/*
 * Container
 * Enthält den gesamten Inhalt zwischen Header und Footer.
 */

#container {
    margin: 30px 50px;
}


/* Bereich in dem sich der gesammte Text der Seite befindet */
/*
#container a:hover {
    border-bottom: 1px solid black;
}
*/

#container a.button {
    background-color: #D3D3D3; /*lightgray*/
    border: 2px solid gray;
    color: #4C4C4C;
    cursor: pointer;
    font-size: 100%;
    padding: 2px 25px;
    text-align: center;
    text-decoration: none;
    width: 230px;
}

#container a.button:hover {
    background-color: #00618F;
    border: 2px solid #00618F;
    color: white;
}

/* 
 * Table Of Contens
 * Inhaltsverzeichnis zur Navigation.
 */
#TOC {
    background-color: #00618F;
    margin-bottom: 30px;
    padding: 5px;
}

#TOC a {
    color: white;
}

#TOC a:hover {
    border-bottom: 1px solid white;
}

#TOC ul li {
    margin: 5px 15px;
    padding: 0;
    list-style-type: none;
}

/* Wählt die obersten Listeneinträge aus (ohne Unterlisten) */
#TOC > ul > li > a  {
    //color: #00618F;
    font-size: 110%;
    font-weight: bold;
}

/* 
 * Header 
 * Kopfzeile am Anfang der Seite mit GU und HRZ Logo.
 */
#header {
    padding: 15px 50px;
    background: #00618F;
    clear:both;
}

#header .title {
    border-left: 1px solid white;
    margin: 10px 0 0 0;
    overflow: auto;
    padding: 10px 35px;
}

#header a:hover {
    border: none;
}

#header .gu-logo {
    float: left;
    margin: 10px 40px 20px 0;
}

#header .hrz-logo {
    float: right;
    margin: 14px 0 0 0;
}

#header div.title h1 {
    border: none;
    color: white;
    font-size: 180%;
    font-weight: normal;
    margin: 0;
    padding: 0;
}

#header div.title p {
    color: white;
    font-style: italic;
    margin: 0;
    padding: 5px 5px;
}

/* 
 * Footer
 * Fußzeile am Ende der Seite.
 */
#footer {
    background-color: #00618F;
    color: white;
    font-size: 80%;
    margin: 15px 0 0 0;
    padding: 10px 0;
    text-align: center;
    vertical-align: bottom;
}

#footer a {
    color: white;
}
