/* styles.css */

* {
    box-sizing: border-box;
}

body {
    font-family: "Lucida Grande", "Droid Sans", Arial, Helvetica, sans-serif;
}

.bld {
    font-weight: bold;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.column {
    float: left;
    width: 50%;
}