/*
 * Inherit from the top level workshop style sheet.
 */
@import url(../workshop.css);

body {
    background-color: white;
}
table.sponsor-table {
    width: 100%;
    padding: 0 3ex; /* a little space at left and right of the page */
}
table.sponsor-table td {
    padding: 10px; /* space between cells */
}
td.sponsor-logo {
    text-align: right;
}
td.sponsor-info {
    text-align: left;
}
td.sponsor-logo img {
    /* several of the logos have transparent parts,
     * so we provide a white background for them, and
     * make any alt text appear in black. */
    color: black;
    background-color: white;
    /* some browsers add an ugly border, so we suppress it. */
    border: 0px;
    /* no wider than the enclosing table cell */
    max-width: 100% !important;
}
