/*
    Document   : stylesheet1
    Created on : May 17, 2010, 7:32:26 PM
    Author     : kyleferguson
    Description:
        Purpose of the stylesheet follows.
*/

/*
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

root {
    display: block;
}

div#Header {
    position: absolute;
    left: 0px;
    top: 0px;
    min-width: 100%;
    background-color: rgb(255,255,255);
    height: 100px;
    min-height: 100px;
    margin-bottom: 0px;
}

div#Body {
    position: relative;
    top: 100px;
    width: 750px;
    min-width: 750px;
    background-color: rgb(237,236,236);
    margin-top: 0px;
    margin-bottom: 0px;
}

div#Footer {
    position: absolute;
    left: 0px;
    min-width: 100%;
    height: 100px;
    background-color: rgb(255,255,255);
    margin-bottom: 0px;
}

div#Bottom_Footer1 {
    position: absolute;
    top: 40px;
    left: 0px;
    height: 60px;
    min-width: 100%;
}

div#Bottom_Footer2 {
    position: relative;
    width: 650px;
    height: 60px;
    text-align: left;
}

div#Menu_Structure {
    position: absolute;
    top: 0px;
    left: 0px;
    min-width: 100%;
    height: 40px;
}

div.Buttons {
    height: 40px;
    width: 125px;
    position: relative;
    border: 0px solid black;
}

a, a:visited {
    color: rgb(0,0,0);
    border: 0px;
}

p {
    text-align: justify;
    padding-left: 15px;
    padding-right: 15px;
}

img, img:a, img:visited {
    border: 0px;
}


