/* 
    Document   : screen
    Created on : Feb 2, 2010, 12:38:56 PM
    Author     : Huan-Chen Rhynard
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   Types of CSS Selectors
1-Element selector: the name of an xhtml elment (e.g. body, p, img)
2-ID selector: the name of the id preceeded by a # sign (e.g. #header)
3-
*/
body{
    background-color: #FFFFCC;
    font-family: Verdana,Arial,Helvetica,sans-serif;
    margin: 0;
    padding: 0;
    max-height: 900px;
}

#header{
    height: 0.75in;
    background-color: #FFFFCC;
    text-align: left;
    padding-top: 10px;
    padding-left: 75px;
    padding-bottom: 2px;
    color: #1E796A;
}

#header a,
#header a:visited{
    text-decoration: none;
    color: black;
}

#header h1 {
      font-family: 'Blackadder ITC';
      font-size: 54px;
      display: inline;
}

#content h2,
#content h3 {
    font-family: Georgia,'Times New Roman',times,serif;
}

#nav{
    min-width: 985px;
    height: 0.25in;
    background-color: #333333;
    font-family: Verdana,Arial,Helvetica,sans-serif;
    font-size: 14px;
    text-align: center;
    padding-bottom: 20px;
    padding-top: 1px;
    padding-right: 26px;
}

#nav li a:link,
#nav li a:visited{
    color: #8FB52B;
    text-transform: uppercase;
    text-decoration: none;
    padding: 4px;
}

#nav li a:hover,
#nav li a:active{
    background-color: #1E796A;
}

#nav ul{
list-style-type: none;
}

#nav li{
display: inline;
}

#centerbox{
    position: relative;
    overflow: auto;
    background-color: #FFFFCC;
    min-width: 980px;
    min-height: 440px;
    max-width: 1500px;
}

/* This is positioning using the absolute position. */

#content{
    background-color: #FFFFCC;
    width: 75%;
    overflow: auto;
    float: left;
    top: 0;
    left: 0;
}

#content a img{
    border: none
}

#content div{
    padding: 24px 24px 34px 24px;
}

img.floatleft{
    float:left;
    margin: 2px 12px 2px 0px;
}

img.floatright{
    float:right;
    margin: 2px 0px 2px 12px;
}

#rbuffer, #lbuffer{
    width: 12.5%;
    float: left;
    background-color: #FFFFCC;
}

/* This begins the float layout method */

/* #content{
    background-color: #A64B00;
    float: left;
} */

#sidenav{
    width: 25%;
    float: left;
    background-color: #FFFFCC;
    font-size: 15px;
}

#sidenav div{
    margin-top: 50px;
}

#navlist{
    list-style-type: none;
}

#navlist a,
#navlist a:visited{
    background-color: #1E796A;
    text-decoration: none;
    padding: 4px;
    display: block;
    color: #333333;
   
}

#navlist a:hover{
    background-color: #8FB52B;
}

#sidenav #navlist .uberlink{
    font-weight: bold;
    background-color: #8FB52B;
    cursor: default;
}

ul.birth,
ul.teens{
    width: 150px;
}

ul.america{
    width: 200px;
}

ul.gallery{
    width: 200px;
}

li.list{
    border-top: 1px solid white;
}

#footer div{
    padding: 2px
}

#footer{
    height: 0.5in;
    background-color: #FFFFCC;
    border-top-style: solid;
    border-top-color: black;
    border-top-width: 1px;
    font-family: Verdana,Arial,Helvetica,sans-serif;
    font-size: 12px;
    text-align: center;
}



