/* simplyGray.css - white text on gray, viewed on any browser */
/* May 2009, KP. */
/*
 * COLORS
 *
 * Object - Color - Code
 * ---------------------
 * Background - Gray - #666666
 * Text - White - #ffffff
 * Discrete Text - Indian Red - #cc6666
 * Hyperlink - Light Brown - #cccc66
 * Visited - Light Gray - #cccccc
 *
 * Harmonious colors: Indian Red and Light Brown
 *
 * Active elements of the page are Hyperlink and Input; they are
 * Light Brown.
 *
 * FONTS
 *
 * Text - sans-serif
 * Code - monospaced
 *
 */

body {
    margin: 4% 20% 4% 20%;
    background-color: #666666;
    color: white;
    font-family: Verdana, Helvetica, Arial, sans-serif;
    font-size: small;
}

h1 {
    border-bottom: thin groove;
    padding-bottom: 2%;
    font-size: medium;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
}

h2 {
    font-size: medium;
    font-weight: normal;
    letter-spacing: 1px;
}

p.subtitle {
    padding-bottom: 1%;
    font-size: x-small;
    letter-spacing: 1px;
    text-align: center;
}

p.navigator {
    font-weight: bold;
    text-align: center;
}

p.top {
    font-weight: bold;
    text-align: right;
}

p.indented {
    margin: 2% 5% 2% 2%;
    padding: 2% 2% 2% 5%;
}

a:link {
    color: #cccc66;
}

a:link:hover {
    text-decoration:none;
}

a:visited {
    color: #cccccc;
}

a:visited:hover {
    text-decoration:none;
}

code {
    font-family: Courier, monospace;
}

strong.discrete {
    color: #cc6666;
}

address {
    border-top: thin groove;
    padding-top: 1%;
    font-size: x-small;
    text-align: right;
}

input {
    background-color: #666666;
    color: #cccc66;
}

