html * {
  color: #222;
  font-family: Helvetica;
  font-size: 1em;
  margin: 0px;
  padding: 0px;
}

#page {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#header {
    flex: none;
}

#header h1 h2 a {
    background-color:#ccc;
    border-bottom: 1px solid #666;
    color: #222;
    display: block;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
}

#header h1 h2 {
    text-shadow: 1px 1px 0px #EEE;
    width: 100%; 
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 2px 2px;
}

#header h1 {
    font-size: 2.5em;
}

#header h2 {
    font-size: 1.5em;
}

#header #menue {
    text-align: right;
}

#header #menue form {
    display: inline;
}

#header #menue input:not([type=button]):not([type=submit]):not([type=reset]), textarea {
    background-color: #fffbf0;
    margin-top: 4px;
    margin-bottom: 4px;
}

#header #menue button, input[type=button], input[type=submit], input[type=reset] {
    margin: 0 2em;
    padding: 0.2em 0.5em;
    -webkit-border-top-left-radius: 8px;
    -webkit-border-top-right-radius: 8px;
    -webkit-border-bottom-left-radius: 8px;
    -webkit-border-bottom-right-radius: 8px;
}

#header #menue button.asLink, input[type=button].asLink, input[type=submit].asLink {
    background: none!important;
    border: none;
    display: inline;
    font: inherit;
    margin: 0!important;
    padding: 0!important;
    outline: none;
    outline-offset: 0;
    color: blue;
    cursor: pointer;
    text-decoration: underline;
    -webkit-border-top-left-radius: inherit;
    -webkit-border-top-right-radius: inherit;
    -webkit-border-bottom-left-radius: inherit;
    -webkit-border-bottom-right-radius: inherit;
}

#content {
    flex: 1 0 auto;
    padding: 1.5em;
}

#content #messages {
    display: block;
    font-weight: normal;
    text-decoration: none;
    margin-bottom: 5px;
    margin-left: 5px;
    margin-right: 5px;
}

#content #messages table {
    width: 100%;
    text-align: center;
    border: 1px solid #999;
    background-color: #999;
    color: #fff;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 2px 2px;
    -webkit-border-top-left-radius: 8px;
    -webkit-border-top-right-radius: 8px;  
}

#content #messages td {
    padding: 0px 10px;
}

#content #messages tr {
    width: 100%;
}

#content #messages p {
    border: 1px solid #999;
    background-color:#FFF;
    color: #222;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 2px 2px;
    -webkit-border-bottom-left-radius: 8px;
    -webkit-border-bottom-right-radius: 8px;  
}

#content #messages table.summary {
    -webkit-border-top-left-radius: 0px;
    -webkit-border-top-right-radius: 0px;
    color: #222;
    background-color:#FFF;
    border: 0px solid #999;
    font-size: 10px;
    padding: 0px 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    width: 60%;
}

#content #messages caption.summary {
    font-family: Helvetica;
    font-size: 8px;
    padding: 0px 0px;
    margin-top: 0px;
    margin-bottom: 0px;
}

#content #messages th.summary, td.summary {
    border: 0px;
    font-size: 10px;
    font-weight: normal;
    padding: 0px 20px;
    vertical-align: text-top;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
    width: 50px;
}

#content #messages th.summary:nth-child(2), td.summary:nth-child(2) {
    width: 10%;
    border: 1px solid #999;
}

#footer {
    flex: none;
    text-align: right;
}

