/* 
    Document   : screen
    Created on : May 17, 2010, 9:54:03 AM
    Author     : Seth
    Description:
        Purpose of the stylesheet follows.
*/

/*
Six ways of controlling xhtml using css
1- declare an element name (e.g. body)
2- declare an id (e.g. #header)
*/

root { 
    display: block;
}
body{
    background-color: white;
    border: groove;
    margin: 0;
    padding: 30px;
    font-family: georgia, serif;
    
}
a{font-weight: bold;
   color:black
}
h1{
    text-decoration: none;
    font-size: xx-large;
    float: left;
    display: block;
    margin-top: 90px;
    font-family: georgia, serif;
    margin-left: 15px;
}
h2{
    font-size: x-large;
    text-decoration: underline;
    font-family: tahoma, geneva, sans-serif;
    margin-left: 15px;
}

#header{

    height: 2in;
    background-color: white;
    border: groove;

}
#header img{padding: 15px;}
 .centeredimage
    {
    display:block;
    float: left;
    }

#center{
    position: relative; /* this controls the children */
    overflow: auto;
    
}

#subnav{
   width: 13%;
   float: left;
 background-color: white;
 border: groove;

}


#rightcol{
    width: 86%;
    float: left;
    border: groove;
}

#navigation{
    background-color: white;

}
navigation ul{
    margin: 0;
    padding: 8px;
    font: bold medium "Palatino Linotype", "Book Antiqua", Palatino, serif;
}

#navigation li{
    display: inline;
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-align: center;
}

/* Style the links in the navigation bar */
#navigation ul li a{
    display: inline-block;
    width: 7em;
    padding: 3px .5em 0 .5em;
    margin-left: 0px;
    border: 1px #000000;
    background-color: #848c82;
    text-decoration: none;
    border-top-left-radius: 4px;
    border-top-right-radius: 6px;
    -moz-border-radius-topright: 6px;
    -moz-border-radius-topleft: 6px;
    -webkit-border-top-left-radius: 6px;
    -webkit-border-top-right-radius: 6px;
    -o-border-top-left-radius: 6px;
    -o-border-top-right-radius: 6px;
}

#content{
background-color: white;
margin-left: 15px;
}

#gallery{
    display: inline;
    list-style-type: none;
    
}

#aside{
    width: 13%;
    float: right;
    background-color: white;
    border-right: groove;

}
#aside ul{
    list-style-position: inside;
    text-align: center;
    list-style-type: none;
}

#footer{
    background-color: white;
    text-align: center;
    background-color: #A9EEE9;
    border-top: 3px solid black;

}
#footer ul li{
    display: inline-block;
    width: 7em;
    padding: 3px .5em 0 .5em;
    margin-left: 8px;
}
ul{
    list-style-type: none;
}
