/* stylesheet.css */

/* page header style */
#header{
width: 100%;
background-repeat:repeat;
border-bottom: thin solid #191970;
}

/* page footer style */
#footer{
height: 30px;
width: 100%;
border-top: thick double #191970;
padding-top: 4px;
}











/* body text and page background */
body {
font-family: 'book antiqua' , times, sherif;
font-size: medium;
}


/* unvisited links */
a:link{
color: #00bfff; /* sky blue */
text-decoration: none;
}

/* Visited Links */
a:visited{
color: #ff00ff; /* fuchsia */ 
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;
}

/* level-1 headings */
h1{
}

/*level-2 headings */
h2{

font-size: large;
}

/* Level-3 headings */
h3{
font-size: large;
}

/* level-4 headings */
h4{

font size: large;
}

/* level-5 headings */
h5{
font-size: medium;
}

/* level-6 headings */
h6{
font-size: medium;
}

/* blockquote with blue background */
blockquote.tip {
background-color: #99ffff
}

/* blockquote with pink background */
blockquote.warn {
background-color: #ff99cc
}

font-family: 'courier New', courier, monospace;
color: #e0ffff;
background-color: #191970;
text-align: justify;
}

/* float image o 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
}



/* style for tables of thumbnail images */
table.thumbs{
vertical-align: middle;
text-align: center;
border-collapses: collapse;
}

/* style for table cells that contain thumbnails */
td.thumbs{
border: solid 5px #ffa07a;
padding: 2px;
}

/* style for thumbnail images */
img.thumbs{
width: 100px;
height: 80px;
border-width: 0px;
}