/* Stylesheet.css */

/* Page header style */
#header{
     height: 180px;
     padding: 10px; 
     border-bottom: double #FFFFF0;
     
}




/* Page footer style */
#footer{
     clear: both;
     padding: 10px;
     border-top: double #FFFFF0;
     text-align: center;
    
}

#wrapper{
width: 95%;
margin: auto;
border: double #FFFFF0;
}


/* Body text and page background */
body{
    margin:0;
    padding:0;
    font-family: 'Arial', Times, Serif;
    color: #FFFFF0;
    background-color: #000000;
}


/* Style for main content column */
#main{
       margin: 1em;
       /* margin-left must equal */
       /* total width of left sidebar */
       margin-left: 24em;
       border-left: double #FFFFF0;
       padding:15px; 
      

}


/* Style for sidebar column */
#sidebar{
           float: left;
           display: inline;
           width:24em;
            /* Total width is 24em */
         
}

/* Level-1 Headings */
h1{
    font-family: 'Arial', Times, Serif;
    font-size: small;
    font-weight: normal;
    color: #FFFFF0;
    text-align: center;
}

/* Level-2 Headings */
h2{
    font-family: 'Arial', Times, Serif;
    font-size: medium;
    font-weight: normal;
    color: #FFFFF0;
    text-align: center;
}

/* Level-3 Headings */
h3{
    font-family: 'Arial', Times, Serif;
    font-size: large;
    color: #FFFFF0;
    text-align: center;
}

/* Blockquote with blue background */
blockquote.tip {
   background-color: #99ffff
}

/* Blockquote with pink background */
blockquote.warn {
   background-color: #ff99cc
}
/* Float image to left of paragraph */
img.floatLeft{
   float: left;
   margin-right: 5px;
}

/* Float image to right of paragraph */
img.floatRight{
float: right;
}

/* Center image between margins */
div.center{
width: 100%;
text-align: center
}
/* Style for tables of thumbnail images */
table.thumbs{
   vertical-align: middle;
   text-align: center;
   border-collapse: collapse;
}


/* Style for table cells that contain thumbnails */
td.thumbs{
border: solid 1px #00bfff;
padding: 10px;
}


/* Style for thumbnail images */
img.thumbs{
width:100px;
}
/* Unvisited links */
a:link{
color: #FFFFF0; /* ivory */
}


/* Visited links */
a:visited{
color: #669966; /* green */
}