body {
    background-color: white;
    color: black;
    font-family: sans-serif;    
    font-size: 1.5rem;
}
a {
    color: black;
}
.content {
    width: 800px;
    margin: auto;
}

input, textarea {
    border: none;
    font-size: 1.5rem;
    width:98%;
}
textarea {
    resize: none;
    font-family: sans-serif;    
}
textarea:focus {
    resize: auto;
}
h1, h2, h3, h4{
    margin:0;
}
input.smaller {
    width: 6em;
}
.rightalign {
    text-align:right;
    float:right;
}
.commentbox {
    border:1px black solid;
    
    margin-top:2em;
    padding: 4px;
}
td {
    padding:2px;   
}
    input,textarea,div[contenteditable]  {
        background-color: #eee;   
        margin:2px;
    }
@media print
{    
    .no-print, .no-print *
    {
        display: none !important;
    }
    input,textarea,div[contenteditable] {
        background-color: #ffffff;   
    }
}