﻿
ul {
    max-width: none;
}

#staffList {
    margin: 12px 0;
}

    #staffList .name {
        display: block;
        font: 20px/32px Arial;
    }
    #staffList .email {
        display: block;
        font: 12px/24px Arial;
    }
    #staffList .title {
        display: block;
        font: 15px/18px Arial;
    }

    #staffList img {
        display: none;
        height: 160px;
        margin: 0 auto;
    }
    #staffList li {
        border: 1px solid #eee;
        display: inline-block;
        margin: 32px;
        padding: 4px 2px;
        text-align: center;
        vertical-align: top;
        width: 200px;
    }


/* Responsive - Crazy small screen size */

@media screen and (max-width: 353px) {
    #staffList li {
        margin: 32px 0;
    }
}

