* {
    padding:0;
    margin: 0;
}
 
body {
    background-color: cyan;
       
}
 
h2 {
    font-size: 1.1em;
    margin: 10px 0px 10px 0px;    
}
 
#wrapper {
    background-color: #FFFF99;   
    width: 50%;
    min-width: 50%;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    padding: 20px;
}
 
ul {
    margin: 10px 0px 10px 20px;
}
 
#errors {
}
 
 
/* Lined Paper CSS */
.paper {
    font: normal 12px/1.5 "Lucida Grande", arial, sans-serif;
    width: 80%;
    margin: 0 auto 10px;
    padding: 20px 5px 4px 42px;
    position: relative;
    color: #444;
    line-height: 20px;
    border: 1px solid #d2d2d2;
 
    background: #fff;
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#d9eaf3), color-stop(4%, #fff)) 0 4px;
    background: -webkit-linear-gradient(top, #d9eaf3 0%, #fff 8%) 0 4px;
    background: -moz-linear-gradient(top, #d9eaf3 0%, #fff 8%) 0 4px;
    background: -ms-linear-gradient(top, #d9eaf3 0%, #fff 8%) 0 4px;
    background: -o-linear-gradient(top, #d9eaf3 0%, #fff 8%) 0 4px;
    background: linear-gradient(top, #d9eaf3 0%, #fff 8%) 0 4px;
 
    -webkit-background-size: 100% 20px;
    -moz-background-size: 100% 20px;
    -ms-background-size: 100% 20px;
    -o-background-size: 100% 20px;
    background-size: 100% 20px;
 
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
 
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.07);
    -moz-box-shadow: 0 1px 2px rgba(0,0,0,0.07);
    box-shadow: 0 1px 2px rgba(0,0,0,0.07);
}
.paper::before {
    content: '';
    position: absolute;
    width: 4px;
    top: 0;
    left: 30px;
    bottom: 0;
    border: 1px solid;
    border-color: transparent #efe4e4;
}
 
input {
        margin-right: 5px;
}
 
li.strike {
        text-decoration: line-through;
}