html{
    font-family: helvetica;
    background-color: #FFFFFF;
}

html, body{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: table;
}

#header{
    position: fixed;
    display: table;
    top: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    height: 150px;
    background-color: #006699;
    
}

#header a{
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

#content{
    height: 100%;
    width: 100%;
    padding-top: 150px;
    padding-bottom: 50px
}

#footer{
    width: 100%;
    display: table;
    position: fixed;
    bottom: 0;
    margin: 0;
    padding: 0;
    margin-top: 20px;
    height: 50px;
    background-color: #006699;
}

#footer p{
    width: 100%;
    display: table-cell;
    color: #FFFFFF;
    text-align: center;
    vertical-align: middle;
}

#footer p a, #footer p a:hover, #footer p a:visited, #footer p a:active{
    color: #FFFFFF;
}

.table{
    display: table;
}

.tr{
    display: table-row;
}

.td{
    display: table-cell;
}

.center{
    text-align: center;
}

.bold{
    font-weight: bold;
}

.error{
    font-weight: bold;
    font-size: 14pt;
    margin-top: 100px;
    text-align: center;
}