#nav-column {
    float: left;
    width: 17%;
    overflow: hidden;
}
#main-column {
    float: right;
    width: 79%;
}
#side-column {
    float: right;
    width: 215px;
    margin-left: 35px;
}
#main-column,
#side-column {
    overflow: auto;
    word-wrap: break-word;  /* IE & CSS3 only. */
}
 
table.schools-list {
    empty-cells: show;
    border-collapse: collapse;
    border: 1px solid #999;
    margin: 0 1px;  /* With border-collapse Firefox and Safari shift the table left or right (respectively) by the border width. */
}
table.schools-list th,
table.schools-list td {
    border: 1px solid #999;
    border-style: solid none;
    padding: 4px 8px;
    text-align: left;
}
table.schools-list th {
    background-color: #eee;
}
table.schools-list td {
    vertical-align: top;
}
table.schools-list col.phone-number,
table.schools-list col.website {
    white-space: nowrap;
}
 
@media print
{
    #nav-column {
        display: none;
    }
    #main-column {
        float: none;
        width: auto;
    }
    #main-column,
    #side-column {
        overflow: visible;
    }
}