@charset "utf-8";

/*
    Revision
    Datum: 06.03.2019 KN
*/


*{
    margin: 0;
    padding: 0;
    border: 0;
    font-family: ptsansregular, Arial, helvetica, verdana, sans-serif;
    font-size: 1em;
    text-decoration: none;
}
body{
    overflow: hidden;
    height: 100%;
    max-height: 100%;
    background-image:url("/img/background.png");
    background-size: cover;
}

#framecontentTop, #framecontentBottom{
    position: absolute;
    top: 0;
    width: 80%;
    left: 10%;
    right: 10%;
    /*Height of top frame div*/
    height: 150px;
    /*Disable scrollbars. Set to "scroll" to enable*/
    overflow: hidden;
    color: white;
}

#framecontentBottom{
    top: auto;
    bottom: 0;
    /*Height of bottom frame div*/
    height: 75px;
    /*Disable scrollbars. Set to "scroll" to enable*/
    overflow: hidden;
    color: white;
}

#maincontent{
    position: fixed;
    /*Set top value to HeightOfTopFrameDiv*/
    top: 150px;
    left: 11%;
    right: 11%;
    /*Set bottom value to HeightOfBottomFrameDiv*/
    bottom: 80px;
    overflow: auto;
    background: #f8f8f8;
    color: #000088;
    border-top: solid 15px #f8f8f8;
    border-bottom: solid 15px #f8f8f8;
    border-radius: 0.5em;
}

.innertube{
    /*Margins for inner DIV inside each DIV (to provide padding)*/
    margin: 0 15px 0 15px;
}

* html body{
    /*IE6 hack*/
    /*Set value to (HeightOfTopFrameDiv 0 HeightOfBottomFrameDiv 0)*/
    padding: 130px 0 110px 0;
}

* html #maincontent{
    /*IE6 hack*/
    height: 100%;
    width: 100%;
}

h1{
    font-size: 1.6em;
    margin: 0 0 10px 0;
}

h2{
    font-size: 1.4em;
    margin: 0 0 10px 0;
}

h3{
    font-size: 1.2em;
    margin: 0 0 10px 0;
}

p{
    font-size: 1.2em;
    margin: 0 0 10px 0;
    color: #555555;
}

.custom_title{
    font-size: 2em;
    text-align: right;
    color: #f8f8f8;
    margin: 20px 0 20px 0;
}

.site_title{
    font-size: 1.8em;
    color: #f8f8f8;
}

.header_menu{
    font-size: 1.8em;
    margin: 0 0 20px 0;
}

.header_menu a{
    color: #173B0B;
}

.footer_menu{
    font-size: 1.5em;
}

.footer_menu a{
    color: #173B0B;
}

.intern_menu{
    font-size: 1.5em;
}

.intern_menu .disabled{
    color: #B8B8B8;
}

.intern_menu a{
    color: #173B0B;
}

.disabled{
    color: #888888;
}

input[type=submit] {
    background-color: #000088;
    color: #ffffff;
    padding: 5px;
}

input[type=text], input[type=password] {
    border: solid 1px #000088;
}

.table{
    display: table;
}

.table_row{
    display: table-row;
}

.table_cell{
    display: table-cell;
    vertical-align: top;
}

.breadcrump{
    padding: 5px;
    margin: 0 0 10px 0;
    border-bottom: solid 1px blue;
}

.breadcrump a{
    color: #173B0B;
}

.link_color{
    color: #173B0B;
}

.sitemap_item{
    font-size: 1.2em;
    color: #173B0B;
}

.sitemap_image{
    height:16px;
}

.copyright{
    color: #888888;
    font-size: 0.8em;
}