/* 
    Document   : style
    Created on : May 18, 2009, 10:27:37 AM
    Author     : Jayyusi
    Description:
        Purpose of the stylesheet follows.
*/

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

body{
    background-color: silver;
    margin-left: 20%;
    margin-right: 20%;
}

a:hover {
    color: black;
    
}

#header{
    color: black;
    font-size:30px;
    text-align: center;
    background-color: gray;
    }

#links{
    background-color: gray;
    margin-top: 5%;
    font-size: 20px;
    float: left;
    width: 20%;
    height: 50%;
    margin-bottom: 5%;
}

#footer{
    color: black;
    text-align: center;
    font-size: 30px;
    background-color: gray;
    height: 40px;
    clear: both;
}

p.text{
    float: left;
    width: 75%;
    margin-left: 5%;
    background-color: gray;
    margin-top: 5%;
    margin-bottom: 5%;
    font-size: 20px;
}

