@media all {
    html body {
        font-family: "Bitstream Vera Sans L", "Bitstream Vera Sans", "Trebuchet MS", Verdana, Tahoma, Helvetica, sans-serif;
        margin: 0; 
        padding: 0;
        background: #fffaf0; /* floral white */
        color: black;
        font-size: 76%; /* This, and ... */
    }
    #Container {
        font-size: 1em; /* ...this, are part of the sane css typography experiment at  
                        http://www.thenoodleincident.com/tutorials/typography/index.html  */
    }
    #Header {
    }
    #Content {
    }
    #Body {
    }
    #Sidebar {
    }
    #Footer {
    }
    /* relative header sizes for cross-browser, cross-platform consistency */
    #Container h1 {
        font-size: 2em;
    }
    #Container h2 {
        font-size: 1.7em;
    }
    #Container h3 {
        font-size: 1.3em;
    }
    #Container h4 {
        font-size: 1.17em;
    }
    #Container h5 {
        font-size: 1em;
    }
    #Container h6 {
        font-size: 0.83em;
    }
    /* Primary link styles
     * hover _must_ be placed before active and after link/visited 
     * -- see http://www.w3.org/TR/CSS21/selector.html#x32 for a detailed explanation --
     */
    a, a:link, a:visited, a:hover, a:active {
        background: inherit;
    }
    a, a:link {
        color: #ff6347; /* tomato */
        text-decoration: underline;
        font-weight: bold;
    }
    a:visited {
        color: #ba55d3; /* medium orchid */
    }
    a:hover {
        color: #fffaf0; /* floral white */
        background: #ff6347; /* tomato */
        padding: 0.2em 0;
        text-decoration: none;
    }
    a:active {
    }
    /* navigation links */
    #Nav {
    }
    #Nav li {
    }
    #Nav li a {
    }
    #Nav li a:hover {
    }
    /* common classes */
    .left {
        text-align: left;
    }
    .right {
        text-align: right;
    }
    .ctr {
        text-align: center;
    }
    .just {
        text-align: justify;
    }
    .clearing {
        clear: both;
    }
}
/* vim600: set foldenable foldmethod=marker foldmarker={,} foldlevel=1 fcl=all : */
