@charset "utf-8";
/* stylesheet.css */

/* Page Header style */
#header{
height: 175px;
width: 100%;
background-color: #666666; /* Dark gray */
}

/* Page footer style */
#footer{
height: 70px;
width: 100%;
background-color: #666666; /* Dark gray */
}

/*Style rules for the page body */
body {
background-color: #999999; /* Light gray */
color: #000000; /* Black */
/* Arial, Helvetica, or some other sans-serif font */
font-family: Arial, Helvetica, sans-serif;
}

/*Style rules for headings */
h1,h2{
font-family:Arial, Helvetica, sans-serif;
color:#cc0000;
}

/* Unvisited links (no underline) */
a:link{
color: #FFFFFF;
text-decoration: none;
}

/* Visited links (no underline) */
a:visited{
color: #FFFFFF;
text-decoration: none;
}

/* Style for tables of thumbnail images */
table.thumbs{
vertical-align: middle;
text-align: center;
border-collapse; collapse;
}

/* Style for table cells that contain thumbnails */
th.thumbs{
border: solid 1px #000000;
padding: 9px;
}

/* Style for thumbnail images */
img.thumbs{
width:130px;
border-width: 0px;
}

/* Style for table cells that contain thumbnails */
td.thumbs{
border: solid 1px #000000;
padding: 9px;
}

