label {
    padding: 5px;
    width: 160px;
    height: 40px;
    text-align: right;
    margin: 3px;
}

div#ads {
    width: 100%;
    display:
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.tips {
    padding-top: 15px;
    padding-bottom: 5px;
    font-style: italic;
}

div#checkboxes {
   display: -webkit-flex;
   display: flex;
   -webkit-align-items: center;
   align-items: center;
   -webkit-justify-content: flex-start;
   justify-content: flex-start;
   /* set flex wrap and flex direction */
   -webkit-flex-flow: row wrap;
   flex-flow: row wrap;
   /* tweak the where items line up on the row */
   /* valid values are: flex-start, flex-end, space-between, space-around, stretch */
   -webkit-align-content: flex-start;
   align-content: flex-start;
}

th, td {
    padding-right: 20px;
    padding-bottom: 5px;
    max-width: 350px;
    text-align: left;
    font-family: "Lucida Console";
    border-bottom: 1px dotted black;
}

tr {
    height: 40px;
}

input[type="checkbox"] {
    visibility: hidden;
}

.description {
    width: 50%;
}

body {
    margin-left: 50px;
}