* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

table {
    color: #ffffff;
    font-family: sans-serif;
    font-size: .9em;
    font-weight: 300;
    text-align: left;
    line-height: 40px;
    border-spacing: 0;
    width: 500px;
    margin: 20px auto;
    background-color: #333333;
}

thead tr:first-child {
    background: #000000;
    color: #fff;
    border: none;
}

th {font-weight: bold;}
th:first-child, td:first-child {padding: 0 15px 0 20px;}

thead tr:last-child th {border-bottom: 2px solid #cc3333;}

tbody tr:hover {
    -moz-transition: color 450ms ease-in-out 0s, background-color 450ms ease-in-out 0s;
    -ms-transition: color 450ms ease-in-out 0s, background-color 450ms ease-in-out 0s;
    -o-transition: color 450ms ease-in-out 0s, background-color 450ms ease-in-out 0s;
    -webkit-transition: color 450ms ease-in-out 0s, background-color 450ms ease-in-out 0s;
    transition: color 450ms ease-in-out 0s, background-color 450ms ease-in-out 0s;
    background-color: #cc3333;
    color: #ffffff;
}
tbody tr:last-child td {border: none;}

td:last-child {
}