/* Clean standalone stylesheet for CNBL Home Page
   Recreates the styling present in the saved HTML without Wayback Machine,
   browser-extension, or ad-blocker CSS.
*/

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background: #3f3f3f;
    color: #ffdf00;
    font-family: "Times New Roman", Times, serif;
}

/* The original page uses a centered 900px table as its main layout. */
body > div[align="center"] {
    text-align: center;
}

body > div[align="center"] > table {
    width: 900px;
    height: 747px;
    margin-left: auto;
    margin-right: auto;
    border-collapse: collapse;
    border-spacing: 0;
}

td {
    padding: 0;
}

td[valign="top"] {
    vertical-align: top;
}

/* Preserve the old HTML align="center" presentation. */
p[align="center"] {
    text-align: center;
}

/* Original page text is yellow on dark gray. */
font {
    color: inherit;
}

/* Old border="0" image behavior. */
img[border="0"] {
    border: 0;
}

/* Keep image-based navigation clean and unchanged. */
a img {
    border: 0;
}

/* Avoid modern browsers adding unexpected spacing around linked images. */
a {
    color: inherit;
}

/* The site's primary content is image-driven, so retain native image sizes. */
img {
    max-width: none;
}
