table td:nth-child(1)
{
    font-size: 300%;
    line-height: 1em;
    color: silver;
    
    /* The Merriweather font used has really nice non-lining numerals but they make the 
       table look a bit unbalanced because of the ~200 unit descenders; pad it out a bit: */
    padding-bottom: 0.20em;
}
table td
{
    padding-left: 0;
    vertical-align: top;
}
table td *:first-child
{
    margin-top: 0;
}
table td:nth-child(2) 
{
    padding-top: 0.5em;
}

table td *:last-child
{
    margin-bottom: 32px;
}
table td ul
{
    padding-left: 1em;
}
@media only screen and (max-width: 700px) {
    table td:nth-child(1)
    {
        font-size: 150%;
    }
    table td:nth-child(2) 
    {
        padding-top: 0.25em;
    }
    table td ul
    {
        padding-left: 0.5em;
    }
}
