/*  Copyright (C) 2006-2009, Stefan Schwarzer <sschwarzer@sschwarzer.com> */

/*
light blue:   #d5c3dd  rgb(213,195,221);
medium blue:  #ae85b6  rgb(174,133,182);
dark blue:    #803689  rgb(128,54,137);
*/

body {
    background-color: white;
    font-family: sans-serif;
    /* see CSS-Praxis, page 162 */
    font-size: 86%;
    margin: 0px;
    padding: 0px;
    line-height: 1.3;
    /* needed for IE 6 */
    height: 100%;
}

/* must be defined outside the left and right columns so the
   percent value corresponds to the whole inner window */
#LanguageSelection {
    position: absolute;
    top: 5px;
    left: 85%;
    text-align: right;
    height: 0px;
    z-index: 3;
}

#LogoImage {
    width: 180px;
    height: 56px;
    border: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
}

#LeftColumn {
    background-color: #d5c3dd;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 180px;
    height: 100%;
    margin: 0px;
    padding: 10px;
    padding-top: 20px;
    z-index: 1;
}

#MainColumn {
    background-color: white;
    position: absolute;
    top: 0px;
    left: 200px;
    margin: 0px;
    padding: 0px;
    z-index: 2;
}

#MainText {
    background-color: white;
    margin-top: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
    margin-right: 0px;
    padding: 15px;
}

#Navigation {
    margin-top: 20px;
}

a.Nav, a.Nav:link, a.Nav:visited, a.Nav:hover, a.Nav:active,
a.CurrentNav, a.CurrentNav:link, a.CurrentNav:visited {
    display: block;
    width: 160px;
    /*height: 20px;*/
    margin: 0px;
    margin-top: 2px;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    background: #803689;
    text-decoration: none;
    font-weight: bold;
}

a.Nav, a.Nav:link, a.Nav:visited,
a.CurrentNav, a.CurrentNav:link, a.CurrentNav:visited {
    color: white;
    background: #803689;
}

a.Nav:hover, a.Nav:active,
a.CurrentNav:hover, a.CurrentNav:active {
    color: #803689;
    background: white;
}

a.CurrentNav, a.CurrentNav:link, a.CurrentNav:visited,
a.CurrentNav:hover, a.CurrentNav:active {
    border-left: 5px #ae85b6 solid;
    border-top: 5px #ae85b6 solid;
    padding-left: 5px;
}

h1, h2 {
    font-weight: bold;
}

h1 {
    font-size: 1.5em;
    margin-top: 0px;
}

h2 {
    font-size: 1.2em;
}

p.FirstParagraph {
    margin-top: 0px;
}

p.Highlight {
    border-left: solid 5px #ae85b6;
    padding-left: 10px;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

span.PublicationTitle, span.EventTitle {
    font-style: italic;
}

span.Highlight {
    /* font-weight: bold; */
}

hr.FooterLine {
    margin-top: 2em;
    /* nach http://www.css-technik.de/details/133/9/CSS-Snippets.htm */
    background-color: black; /* Mozilla 1.4 */
    color: black; /* IE 6 */
    border: black; /* Opera 7.11 */
    height: 1px; /* in Opera fuer die Anzeige noetig, in Mozilla fuer die einheitliche Hoehe */
}

/* see http://www.webuni.de/?mod=article&id=931 */
/*
form label, LabelSpace {
    float: left;
    display: block;
    width: 150px;
    margin-bottom: 10px;
}

form br {
    clear: left;
}
*/

td, td.FormLabel {
    padding-right: 5px;
}

td, td.FormLabel, td.FormField {
    vertical-align: top;
    padding-bottom: 5px;
}

/* project list */
table.Projects td {
    padding-bottom: 0px;
}

table.Projects td.LeftColumn {
    font-weight: bold;
    padding-right: 1em;
}

table.Projects td.ProjectTitle {
    font-weight: bold;
}

table.Projects td.ProjectTitle .ProjectNote {
    font-weight: normal;
}

table.Projects td ul {
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-left: 0px;
    padding-left: 1em;
}

table.Projects td li {
    margin-left: 0px;
    padding-left: 0px;
}

table.Projects td.EndProject {
    padding-bottom: 1.5em;
}
/* project list end */

p.author {
    text-align: center;
    /*
    font-size: 2ex;
    font-weight: bold;
    margin-top: 5ex;
    margin-bottom: 5ex;
    */
}

.Print {
    display: none;
}

@media print {
    body {
        font-size: 11pt;
    }

    .Print {
        display: inline;
    }

    #LanguageSelection {
        display: none;
    }

    #LeftColumn {
        display: none;
    }

    #Navigation {
        display: none;
    }

    #MainColumn {
        position: static;
    }

    #MainText {
        border: none;
    }
}


