/* stylesheet.css */

/* Style rules for the page body */
body  { 
font-family:"Book Antiqua", Times, Serif; 
background-color: #e7cdc2;
color:#000000; 
margin: 0;
text-align: center;
}

/* Level 1 headings */
h1 { 
font-family: "Book Antiqua", Times, Serif; 
font-weight: bold; 
font-style: italic;
text-align: center;  
color: #000000;
}

/* Level 2 headings */
h2 { 
font-family: "Book Antiqua", Times, Serif; 
font-style: italic;
text-indent: 0.4in;
text-align: left;  
color: #000000;
}

/* paragraph text */
blockquote {
font-family: "Book Antiqua", Times, Serif; 
text-align: left;
color: #000000;
}

/* Page header style */
#header{
     height: 156px;
     margin: 0;
     padding-right: 40px;
     width: 100%;
     background-color: #B0B8CC; 
     border-bottom: thin solid #000000;
     text-align: center;
     
}

/* Page footer style */
#footer{
     clear: both;
     height: 100px;
     width: 100%;
     background-color: #B0B8CC;
     border-top: thin solid #000000;
}
/* Style for main content column */
#main{
       background-color: #e7cdc2;
       margin: 0;
       /* margin-left must equal */
       /* total width of left sidebar */
       margin-left: 154px;
}
/* Style for sidebar column */
#sidebar{
           float: left;
           display: inline;
           padding: 0;
           margin: 0;
           width:154px;
           background-color: #D9A3B2;
           border-right: thin solid #000000;
            /* Total width is 10em */
}
