/* 
    Document   : screen
    Created on : Feb 3, 2010, 9:59:22 AM
    Author     : David
    Description:
        Purpose of the stylesheet follows.
*/

/* 
 note CSS Selcotor
1- Element selector - you declare the element name (e.g. body)
2- ID selector - it conrols elements that have an id attribute (e.g. #header)
    Selcetors are case sensitive.
3- Context selector: the name of the parent followed by the name or type of
    the descendant
4- Class selector - controlss elements and is reusable (e.g. .red)
*/
/*
body{
  margin: 0;
  padding: 0;

}

#header{
    background-color: #b0c4de;
    height: 1in;
    position: relative;
}
#header p{
    background-color: #bbbbbb;
    margin-bottom: 0;
    margin-top: 0;
}
#header #tools{
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
}
#nav {
    background-color: #000000;
    height: .75in;
    width: 100%;
    position: absolute;
    top: 1in;
}
#nav>ul{
    margin-top: 0;
    list-style-type: none;
}
#nav>ul{
    display: inline;
}



#subnav{
    background-color: #eeeeee;
    width:10%;
    position: absolute;
    top: 1.75in;
    left: 0;
}
#content{
    /*background-color: #aaaaaa; 
    width: 90%;
    position: absolute;
    top: 1.75in;
    left: 10%;
}
#subnav div,
#content div{
    padding-left: .5em;
    padding-right: .5em;
}
/*
#footer{
    background-color: yellow;
    height: 1in;
    width: 100%;
    float: left
 *>


}


/* this method uses foloats to lay out the page 

#centerbox{
    position: relative;
    overflow: auto;
    background-color: #ccc;
}
#subnav{
    width:10%;
    background-color: #cccccc;
    float: left;
}
#content{
    width: 90%;
    float: left;
    background-color: #dddddd;

}

.clear{
    clear: both;

}
#footer{
    height: 1in;
    width: 100%;
   background-color: red; 
}*/

body{
    background: #b0c4de url(/images/ttop.png);
    background-repeat: repeat-x;
}

#wrapper{
    width: 900px;
    background-color: #eee;
    margin: 25px auto;


}

#header{
    width:900px;
    height: 112px;
    background-color: white;


}
#header #tools{
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
}

#nav{
 background-color: blue;
height: .3in;
}

#nav ul{
    text-align: center;
   

}

#nav ul li{
    display: inline;

}



#nav ul li a{
    text-decoration: none;
    color: white;
    text-shadow: black 0.1em 0.1em 0.2em;
    -moz-text-shadow: black 0.1em 0.1em 0.2em;
    -webkit-text-shadow: black 0.1em 0.1em 0.2em;
    -o-text-shadow: black 0.1em 0.1em 0.2em;
}

#nav ul li a:hover{
    text-decoration: none;
    color: red;
}
#nav ul li a:visited{
    text-decoration: none;
    color: #bbb;
}
#centerbox{


}

/*
#subnav ul li a:active {
    text-decoration: none;
    color: purple;
    background: #000000;
} */
#subnav{
    float: left;
    width:200px;
    padding-top:10px;
}
#subnav ul{

}

#subnav ul li{
    display: inline;

}

#subnav ul li a{
    text-decoration: none;
    color: #000; 
}

#subnav ul li a:hover{
    text-decoration: none;
    color:red;
}

#content{
    float: right;
    width:640px;
    margin-left: 30px;
    padding:10px;
    margin-bottom: 0;
  
/*
    box-shadow: 10px;

    -moz-box-shadow: 10px;
    -webkit-box-shadow: 10px;
    -o-box-shadow: 10px; */

    }

#footer{
    width: 900px;
    height: 30px;
    margin: 0 auto;
    margin-top: 0;
    background-color: silver;
    clear: both;
}
#footer ul{
}

#footer ul li{
    display: inline;
}    
#footer ul li a{
    text-decoration: none;
    color: #000;
}

#footer ul li a:hover{
    text-decoration: none;
    color:red;
}

