/*
 * Farbpalette:
 * 
 * Weiss: #ffffff
 * Beige2: #d5d1c3
 * Beige-Orange: #e6d7b3
 * Orange: #cc5c00
 * Rot-Orange: #bd3b0f
 * Warm-Grau: #363130
 * Text-Grau: #292524
 * Dunkel-Blau: #e6e5e5
 * 
 * Orange-Alternate: #d7c896
 */
body
{
    margin: 0px;
    background-color: #ffffff;
    color: #161616;
    font-family: 'PT Sans';
    font-size: 18px;
}
p, h2
{
    margin: 10px;
}
a:link, a:visited
{
    color: #0081cc;
    text-decoration: none;
}
a:hover, a:active
{
    color: #0081cc;
    text-decoration: underline;
}
/* Fussteil der Webseite */
#footer
{
    background-color: #ffffff;
    color: #161616;
    padding: 15px;
    margin-top: 50px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
}
#footer a:link
{
    color: #0081cc;
}
#footer a:visited
{
    color: #0081cc;
}
#footer a:hover
{
    color: #0081cc;
}
#footer a:active
{
    color: #0081cc;
}
/* Kopfteil der Webseite */
#titel
{
    padding: 10px;
	margin: 0px;
	text-align: center;
    color:#0081cc;
    font-size: 70px;
    background-color: #e6e5e5;
}
#grandtitle
{
    padding: 10px;
    margin: 0px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
#grandtitleWrapper
{
    position: relative;
    padding: 50px 0px;
    margin: 0px;
    background-color: #e6e5e5;
}
#grandlogo
{
    display: block;
    position: relative;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
}
#grandtitle h1
{
    position: relative;
    color: #0081cc;
    font-size: 40px;
    margin-bottom: 50px;
}
#banner
{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height: 100%;
    object-fit: cover;
}
.opacityLayer
{
    position: absolute;
    background-color: rgba(255, 255, 255, 0.5);
    top:0;
    left:0;
    width:100%;
    height:100%;
}
.bigtext
{
    color: black;
    margin: 20px 10px;
    font-size: 30px;
    text-align: center;
}
/* Navigationsleiste */
#navigation
{
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #e6e5e5;
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
}
#navigation a
{
    float: left;
    display: block;
    color: #161616;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    border-right: 1px solid #161616;
}
#navigation a:hover
{
    background-color: #c0dcec;
}
#navigation #logoutwidget
{
    float: right;
    display: block;
    color: #161616;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    border-left: 1px solid #161616;
}
#navigation #logoutwidget:hover {
    background-color: #e6e5e5;
}
/* Banner (versch. Typen: Normal und Error)*/
.banner
{
    padding: 15px;
    margin: 10px;
    text-align: center;
    background-color: #e6e5e5;
    color: #616161;
    border-style: solid;
    border-width: 4px;
    border-color: #e6e5e5;
    border-radius: 5px;
}
.errorbanner
{
    padding: 15px;
    margin: 10px;
    background-color: #e6e5e5;
    color: #616161;
    border-style: solid;
    border-width: 4px;
    border-color: #e6e5e5;
    border-radius: 5px;
}
/* Tabellen */
table, th, td
{
    border: 1px solid #e6e5e5;
}
th, td
{
    padding: 15px;
    text-align: left;
}
table
{
    border-collapse: collapse;
    width: 100%;
    margin: auto;
    border-color: #e6e5e5;
    border-style: solid;
    border-width: 5px;
}
th
{
    height: 50px;
    background-color: #e6e5e5;
    color: 292524;
}
tr:nth-child(odd)
{
    background-color: #e6e5e5;
}
.tablewrapper
{
    padding: 10px;
}
/* Benutzt für Bilder in der Tabelle */
.nopadding
{
    padding: 0px;
    margin: 0px;
}
/* Macht, dass Links und Formularbuttons gleich aussehen */
.buttonlink
{
    background-color: #d6d6d6;
    color: #0081cc;
    padding: 5px 10px;
    margin-top: 2px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-style: solid;
    border-width: 2px;
    border-color: #d6d6d6;
    border-radius: 5px;
    font-size: 17px;
}
.buttonlink:link, .buttonlink:visited
{
    color: #0081cc;
}
.buttonlink:hover, .buttonlink:active
{
    color: #0081cc;
    border-color: #0081cc;
}
/* Wie buttonlink, aber rot */
.delbutton
{
    background-color: #d6d6d6;
    color: #0081cc;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-style: solid;
    border-width: 2px;
    border-color: #d6d6d6;
    border-radius: 5px;
    font-size: 17px;
    cursor: pointer;
}
.delbutton:link, .delbutton:visited
{
    color: #0081cc;
    cursor: pointer;
}
.delbutton:hover, .delbutton:active
{
    color: #0081cc;
    border-color: #0081cc;
    cursor: pointer;
}
.linkbutton
{
    color: #0081cc;
    background-color: #d6d6d6;
    border: none;
    margin: 0px;
    padding: 0px;
    font-size: 18px;
    cursor: pointer;
}
.linkbutton:hover
{
    color: #0081cc;
    cursor: pointer;
}
/* Formulare */
form
{
    margin: 10px;
}
input[type=text], input[type=password]
{
    width: 50%;
    padding: 6px 16px;
    margin: 5px;
    background-color: #e6e5e5;
    border: 1px solid #363130;
    box-sizing: border-box;
    border-radius: 5px;
    outline: none;
}
input[type=text]:focus, input[type=password]:focus
{
    border: 2px solid #363130;
}
.smallfont
{
    display: inline;
    font-size: 9px;
}
/* Logo */
#logo
{
    display: block;
    float: left;
}
#logoleft
{
    text-align: left;
    margin-top: 10px;
	float: left;
}
#logoright
{
    text-align: right;
    margin-top: 10px;
	float: right;
}