* {
    margin: 0;
    padding: 0;
}
body, html {
    background-color: #684e30;
    overflow: hidden;
}
#login_signup {
    position: absolute;

    top: 0;
    right: 0;
    border-bottom-left-radius: 15px;
    padding: 6px;

    background-image: linear-gradient(bottom, rgb(204,204,204) 0%, rgb(255,255,255) 100%);
    background-image: -o-linear-gradient(bottom, rgb(204,204,204) 0%, rgb(255,255,255) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(204,204,204) 0%, rgb(255,255,255) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(204,204,204) 0%, rgb(255,255,255) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(204,204,204) 0%, rgb(255,255,255) 100%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(204,204,204)),
        color-stop(1, rgb(255,255,255))
        );
}

.fullscreen {
    bottom: 0;
    left: 0;
    right: 0;
    top: 56px;
    position: absolute
}



table.itemstable {
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
}
table.itemstable td {
    border: 1px solid black;
    text-align: center;
}
table.itemstable th {
    border: 2px solid black;
    background-color: #dedede;
}