﻿/*
 * Institution logo grid
 *
 * Each .partner link gets its background image set by a small inline script
 * (see bottom of index.php) based on the element's ID or data-logo attribute.
 * This replaces ~400 lines of per-institution CSS rules.
 *
 * To add a new institution, just add the <a> tag in the index.php page - no CSS changes needed.
 */
#header,
#footer {
    overflow: hidden;
    display: flow-root;
    width: 100%;
    margin: 0 auto;
}
#block .row a {
    width: 200px;
    height: 90px;
    float: left;
    display: block;
    background-repeat: no-repeat;
    background-position: -200px center;
}
#block .row a:hover {
    background-position: left center;
}
#block .row a:visited {
    border: 1px solid white;
}
