/* stylesheet.css for Assignment 5 */

/* body text and page background */


body {
  font-family:"Book Antiqua", Times, Serif;
  color:#0000cd;
  background-color:#ffffff;
  background-image:url("images/bluefadewhite.jpg");
  background-repeat:repeat-y;
  }

/* level 1 headings */
  
h1 {
  font-family: Papyrus, "Curlz MT", "Juice ITC", Algerian, fantasy;
  font-weight:bold;
  text-align:center;
  color:#1F2159;
  }

/* level 2 headings */

h2 {
  font-family: "Arial Black", Impact, Charcola, fantasy;
  color:#1F2159;
  }

/* level 3 headings */

h3 {
  font-family:Arial, Helvetica, sans-serif;
  font-style:italic;
  text-decoration:underline;
  color:#1F2159;
  }

/* generic style class for highlighting text */

.hilite {
  background-color:#ffff00;
  }

/* paragraphs styled as tips */

p.tip {
  background-color:#ACD095;
  width:400px;
  margin:1em auto;
  padding:5px;
  border:solid thin #167A58;
  }
  
/* paragraphs styled as warning */

p.warning {
  background-color:#FFCCFF;
  margin-left:100px;
  margin-right:100px;
  padding:5px;
  border:solid thin #ff0000;
  }

p.reference {
  background-color:#FFFF99;
  margin-left:300px;
  margin-right:300px;
  padding:5px;
  border:solid thin #1F2159;
  }
 
/* Back to home link */

a.backtohome
{
  font-family: arial, helvetica;
  font-weight: bold;
}

a.backtohome:link
{
  color: black;
  text-decoration: none;
}

a.backtohome:visited
{
  color: black;
  text-decoration: none;
}

a.backtohome:hover
{
  color: black;
  text-decoration: underline;
}

a.backtohome:active
{
  color: red;
  text-decoration: underline;
}

/* Float image to left of paragraph */

img.floatleft
{
  float:left;
  margin-right:10px;
}

/* Float image to right of paragraph */

img.floatright
{
  float:right;
}

/* Center image between margins */

div.center
{
  width:100%;
  text-align:center;
}

/* animated dolphins-42.gif custom bullet */

ul
{
  list-style-image:url("images/dolphins-42.gif");
}


/* style for table of thumbnail images */

table.thumbs
{
  text-align:center;
  border-collapse:collapse;
  margin:auto;
  vertical-align:middle;
  
}

/* style for table cells that contain thumbnails */

td.thumbs
{
  border:solid 10px #1F2159;
  padding:10px;
  font-size:0.75em;
  
}

/* style for thumbnail images */

img.thumbs
{
  width:150px;
  height:100px;
}


