body, html {
    min-height: 900px;   
}


body {
    width: 100%;
    height: 100%;

    background-image: url(../gfx/background.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


#background_topleft {
    position: fixed;
    top: 0px;
    left: 0px;
    height: 200px;
    width: 200px;
    background-image: url(../gfx/corner_topleft.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
}

#background_topright {
    position: fixed;
    top: 0px;
    right: 0px;
    height: 200px;
    width: 200px;
    background-image: url(../gfx/corner_topright.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
}


body.nomenu #background_topleft {
    background-position: left top;
}

body.nomenu #background_topright {
    background-position: right top;
}

body.withmenu #background_topleft {
    background-position: left 50px;
}

body.withmenu #background_topright {
    background-position: right 50px;
}

#background_bottomleft {
    position: fixed;
    bottom: 0px;
    left: 0px;
    height: 200px;
    width: 200px;
    background-image: url(../gfx/corner_bottomleft.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: left bottom;
}

#background_bottomright {
    position: fixed;
    bottom: 0px;
    right: 0px;
    height: 200px;
    width: 200px;
    background-image: url(../gfx/corner_bottomright.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: right bottom;
}

#site_content {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 100;
    padding: 50px 0px 50px 0px;
    
}

.text-cell {
    background:rgba(255,255,255,0.8);
    padding: 10px;
    border: 1px solid rgba(255,255,255,1);
    border: 1px solid #000000;
}

img.formvalidator {
    border: 1px solid #222;
    margin: 5px 0px;
}
