
/* Stylesheet.css */

/* Page header style */
#header{
     height: 60px;
     width: 100%;
     background-color: #ffe4e1; 
     border-bottom: thin solid #ff1493; 
}

/* Page footer style */
#footer{
     clear: both;
     height: 30px;
     width: 100%;
     background-color: #ffe4e1;
     border-top: thin solid #ff1493;
}



/* Add some margin space to main content */
#main{
     margin: 1em;
       /* margin-left must equal */
       /* total width of left sidebar */
       margin-left: 10em;
}

/* Body text and page background */
body{
    margin: 0px;
    padding: 0px;
    font-family: 'Book Antiqua', Times, Serif;
    font-size: medium;
    color: black;
    background-image: url("clouds1.jpg");
background-repeat: repeat;

/* 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
}






/* Custom bullet for bulleted lists */
ul{
   list-style-image: url("pix/bullets/ani-smiley.html");
}




}

/* Level-1 Headings */
h1{
    font-family: Algerian, Playbill, Fantasy;
    font-size: xx-large;
    color: #FF3300;
    text-align: center;
}

/* Level-2 Headings */
h2{
    font-family: 'Arial Black', Gadget, Sans-serif;
    font-size: large;
    color: #228b22;
    font-style: italic;
}

/* Level-3 Headings */
h3{
    font-family: Impact, Charcoal, Sans-Serif; 

    font-size: x-large;
    color: #228b22;
    text-align: right;
}

/* Blockquote with blue background */
blockquote.tip {
   background-color: #99ffff
}

/* Blockquote with pink background */
blockquote.warn {
   background-color: #ff99cc
}


/* Style for sidebar column */
#sidebar{
           float: left;
           display: inline;
           padding: 0;
           margin: 1em;
           width:8em;
            /* Total width is 10em */
}





/* 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:200px;
}



/* Unvisited links (no underline) */
a:link{
   color: green; /* white */
   text-decoration: none;
}
/* Visited links (no underline) */ 
a:visited{
   color: blue; /* white */
   text-decoration: none;
}
/* Hover links (red underlined) */ 
a:hover{
   color: #ff0000; /* red */
   text-decoration: underline;
}
/* Active links (green underlined) */ 
a:active{
   color: #00ff00; /* green */
   text-decoration: underline;
}


