
@font-face {
    font-family: 'titillium';
    src: url('../../thirdparty/titillium/TitilliumWeb-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'titillium';
    src: url('../../thirdparty/titillium/TitilliumWeb-Light.ttf') format('truetype');
    font-weight: light;
}
@font-face {
    font-family: 'titillium';
    src: url('../../thirdparty/titillium/TitilliumWeb-Bold.ttf') format('truetype');
    font-weight: bold;
}


main,
footer,
header,
article,
section
{
    display: block;
}

/*
Font-Size
    16px = 1.0em  = 12pt
    17px = 1.05em = 13pt
    22px = 1.4em  = 16pt
    23px = 1.45em = 17pt
    32px = 2em    = 24pt

*/

*{
    margin: 0;
    padding: 0;
    font-family:'titillium';
    font-size: 14px;

}

html,body{
    width: 100%;
    min-height: 100%;
    background-color: #fefefe;


}


img {
    border: 0;
    max-width: 100%;
}

a {
    text-decoration: none;
    color:rgb(105,127,172);
}

header {

    display: block;
}
header .logo{
    text-align: center;

}
header .logo img{
    width: 76px;
    padding-top: 8px;
}

header .head_bar{
    border-top: 1px solid #8c8c8c;
    border-bottom: 1px solid #8c8c8c;
    height: 30px;
    width: 100%;
}

header h1:before{
    display: inline-block;
    vertical-align: middle;
    content: " ";
    height: 30px;
}

header h1{
    color:white;
    display: inline-block;
    vertical-align: middle;
    font-size: 2em;

}

main {
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}

input{
    background-color: #ffffff;
    border-radius: 0;
    border: 1px solid #2d2d2d;
    box-shadow: 0;
    color:#2d2d2d;
    padding: 4px 6px;
    box-sizing: border-box;
}

.message.error{
    border: 2px solid #E60000;
    background-color: #F06162;
    color: #ffffff;
    display: block;
    padding: 4px 6px;
    font-weight: bold;
}
.message.success{
    border: 2px solid  #27AF00;
    background-color: #27af00;
    color: #ffffff;
    display: block;
    padding: 4px 6px;
    font-weight: bold;
}


.page_404 h1 {

    font-size: 1.2em;
    color: rgb(24,24,24);
    margin: 2em 0 20px 0;
    font-weight: lighter;
}
.page_404 p
{
    font-size: 1em;
    color: #424242;
    line-height: 1.5em;
}


.button.gray {
    background-color: #a8a8a8;
    border: 0 none;
    box-sizing: border-box;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    margin-top: 8px;
    padding: 8px 12px;
    text-align: center;
    text-decoration: none;
    vertical-align: top;
}





.popup {
    position: fixed;
    top:0;
    left:0;
    background-color: #ffffff;
    box-shadow: 0 0 2px #666666;

    box-sizing: border-box;
    overflow-x:auto;
    z-index: 22;
    min-width: 200px;
}

.popup_underlay {
    position: fixed;
    top:0;
    left:0;
    z-index: 21;
    opacity: 0.8;
    /*background-image: url(../../files/images/content/roter-hintergrund.jpg);*/
    background-color: rgba(238, 238, 238, 1);
    width: 100%;
    height: 100%;
}

.popup .popup_head {
    padding: 4px 10px;
    text-align: right;
}
.popup .popup_head .fa{

    cursor: pointer;
}
.popup .popup_content {
    padding: 10px;
}

.scrollTop{
    position: fixed;
    bottom: 40px;
    right: 40px;
    font-size: 1em;
    color: white;
    cursor: pointer;
    background-color: #FF8A19;
    width:50px;
    height:50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    padding-top:9px;
    padding-left:9px;
    box-sizing: border-box;
}
.scrollTop i{
    font-size: 2.0em;
    color:white
}