/* Stylesheet.css */

/* Body text and page background */
body{
     margin: 20px;
     background-color: #000000;
}



/* Header */
#header{
	width: 100%;
	border-bottom: thick double #FF0000;
}	
	
/* footer */
#footer{
width: 100%;
border-top: thick double #FF0000;
}


/* Level-1 Headings */
h1{
    font-family: arial, "lucida console", sans-serif;
    font-size: x-large;
    color: #999999;
}

/* Level-2 Headings */
h2{
    font-family: arial, "lucida console", sans-serif;
    font-size: x-large;
    color: #999999;
}

/* Level-3 Headings */ 
h3{
    font-family: arial, "lucida console", sans-serif;
    font-size: large;
    color: #999999;
}

h4{
    font-family: arial, "lucida console", sans-serif;
    font-size: medium;
    color: #999999;
}

/* Unvisited links (no underline) */
a:link{
   color: #999999; /* gray */
   text-decoration: none;
}


/* Visited links (no underline) */
a:visited{
color: #C0C0C0; /* light gray*/
text-decoration: none;
}


/* Hover links (red underlined) */
a:hover{
color: #ff0000; /* red */
text-decoration: underline;
}


/* Active links (light gray underlined) */
a:active{
color: #ffffff; /* white */
text-decoration: underline;
}

/* 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{
padding: 10px;
}


/* Style for thumbnail images */
img.thumbs{
width:100px;
}

