html {
    font-family: verdana;
}

body {
    margin: 0px;
    padding: 2.5em 0px 0px 200px;
    min-width: 600px;
}

div#header {
    position: absolute;
    top: 0px;
    left: 200px;
    height: 2.5em;
    width: 100%;
    margin: 0px;
    padding: 0px;
    z-index: 1;
    overflow: hidden;
    
    background-color: #000;
    color: #fff;
    font-size: 75%;
}

div#menu {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 200px;
    height: 100%;
    
    background-color: #000;
    color: #fff;
    font-size: 75%;
    z-index: 1;
}

* html body {
    overflow: hidden;
}

div#main {
    font-size: 75%;
    background-color: #fff;
    color: #000;
    text-align: justify;
}

@media screen {
    body>div#header {
        position: fixed;
    }
    body>div#menu {
        position: fixed;
    }
}

* html div#content {
    height: 100%;
    overflow: auto;
}

/* STANDARD STYLES */
a {
    color: #D00;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
a:visited {
    color: #B00;
}

ul.none_ul {
    list-style: none;
}

/* HEADER STYLES */
#header #logo {
    position: fixed;
    left: 0px;
}

/* MENU STYLES */
#menu ul {
    position: relative;
    margin: 0px 0px 20px 0px;
    padding: 0;
    border: none;
    list-style: none;
}

#menu a.list {
    text-transform: uppercase;
    display: block;
    margin: 1px 0px 1px 0px;
    padding: 2px 0px 2px 0px;
    width: 100%;
    border: 1px 0px 1px 0px solid;
    border-color: #500;
    background: #444;
    text-align: center;
}
#menu a:hover {
    background: #555;
    border-color: #600;
}

/* CONTENT STYLES */
#content p, h1, h2, h3, form, pre {
    margin: 5px 10px 10px 10px;
}

#content p {
    text-align: justify;
}

#content h1, h2, h3 {
    text-transform: uppercase;
    text-align: left;
}

#content h1 {
    font-size: 180%;
}

#content h2 {
    font-size: 150%;
}

#content h3 {
    font-size: 120%;
}

#content code {
    font-size: 110%;
}

#content table {
    font-size: 100%;
    margin: 0px 10px 10px 10px;
    border-width: 0 0 1px 1px;
    border-style: solid;
}

#content td, th {
    border-width: 1px 1px 0 0;
    border-style: solid;
    margin: 0;
}

#content input.align, textarea.align, select.align {
    display: block;
    width: 450px;
    min-width: 450px;
    float: left;
    margin: 0px 10px 10px 10px;
}
#content label.align {
    display: block;
    width: 100px;
    float: left;
    margin-bottom: 10px;
    text-align: right;
}
#content br.align {
    clear: left;
}
#content img.left_float {
    position: relative;
    float: left;
    margin: 5px 10px 10px 10px;
}

#content div#top {
    position: relative;
}
#content div#bottom {
    position: relative;
}
#content div#clearing {
    position: relative;
    clear: left;
}