/*
 * Simple stylesheet for primary page tags
 * (c) Brian Perry
 *
 * Default Color Scheme:
 *   - White text on black background (Arial & Sans-Serif font)
 *   - Blue links with underline
 *   - Black hover links on blue background
 *
 * Top/Bottom Page Division classes (upperleft, upperright and banner)
 * Three-Column Partitioning classes (leftsky, maincontent, rightsky)
 *
 * Centered, Footnote, Disclaimer and Copyright classes
 *
 * Border Styling classes
 */
 
body {
    font-family: arial, sans-serif;
    color: white;
    background-color: black;
}

a {
    color: blue;
    text-decoration: underline;
}

a.nodecorate {
    color: blue;
    text-decoration: none;
}

a:hover  {
    color: black;
    background-color: blue;
    text-decoration: underline;
}

a.hasimage img {
    border: none;
}

a.hasimage:hover img {
    color: black;
    background-color: blue;
    border: none;
    text-decoration: none;
}

td.upperleft,
td.upperright {
    width:20%;
}

td.banner {
    width:60%;
}

td.leftsky,
td.rightsky {
    width:125px;
    background-color:white;
}

td.leftsky img,
td.rightsky img {
    height:115px;
    width:auto;
}

td.maincontent {
    width:80%;
    padding: 10px;
    background-color:black;
}

.centered {
    text-align: center;
}

p.footnote {
    font-size: 65%;
}

.disclaimer {
    font-size: 75%;
    font-style: italic;
    text-align: center;
}

.copyright {
    font-size: 65%;
    font-style: italic;
    text-align: center;
}

.noborder
{
    border:none;
}

.thick_border_img {
    border: medium solid black;
}

.thin_border_img {
    border: thin solid black;
}

