/* 
    Document   : screen
    Created on : Feb 3, 2010, 10:00:22 AM
    Author     : Ryan
    Description:
        Purpose of the stylesheet follows.
*/

/* 
 css selectors
1-element selector-you declare the element name (e.g. body)
2-ID selector-it controls elements that have an id attribute (e.g. #header)
3-Context selector; the name of the parent followed by the name or type of the decendent.
4-class selector-controls elements and is reusable.
*/

  

a:link{
    text-decoration: none;
    color: blue;
    
}
a:visited{
    text-decoration: none;
    color: purple;
    
}
a:hover{
    text-decoration: underline;
    color: green;
    
}
a:active{
    text-decoration: none;
    color: red
}
body
{
    margin: 0;
    padding: 0;
   background-color: olive


}
   


#header{
  height: 2in;
 
 background-color: gray;


 
}


#nav{
  font-size: medium;
  font-weight: bold;
    background-color: olive;


}
#nav ul{
    list-style: none;
}
#nav li{
    display: inline;
}
    
    #centerbox{
        position: relative;
        


}
#subnav{
    background: olive;
    
    width: 10%;
    float: left;
    


}
#content{
   
    background-color: gray;
    width: 80%;
    float: left;
    
        position: relative;
}
#aside
{
background: olive;
width: 10%;
float: left;
}
#header div,
#content div,
#wrapper div,
#footer div,
#search div
{
    padding-left: .5cm;
    padding-right: .5cm;
}
#subnav div
{
    padding-top: .5cm;
     padding-left: .5cm;
    padding-right: .5cm;
    
}
#nav div
{
    padding-left: 1cm;
    padding-right: 1cm;

}
#footer{

    background-color: olive;
    position: relative;
    float: right;
    width: 90%;

}

#footer ul,
#subnav ul
{
    list-style: none;
}
#footer li
{
    display: inline;
}
#search{
    
    position: absolute;
    padding-top: .5cm;
    padding-right: .5cm;
    top: 0px;
    right: 0px;
    
    font-size: small;
    font-weight: bold;
    
    
}
