/* stylesheet.css */

/* body text and page background */


body {
  font-family:Georgia, Times, Serif;
  color:#006894;
  background-color:#01CBFB;
  background-image:url("images/jumpingdol.jpg");
  background-repeat:repeat-y;
  }

/* table text */

table {
  text-align:left;
  }


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

/* level 2 headings */

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

/* level 3 headings */

h3 {
  font-family:Georgia, 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;
  }

/* paragraph styled as references */
p.reference {
  background-color:#FFFF99;
  margin-left:300px;
  margin-right:300px;
  padding:5px;
  border:solid thin #1F2159;
  }


/* paragrah styled as floating box to right */
p.floatright {
  float: right;
  background-color:#FFFF99;
  margin-left:5px;
  width: 250px;
  height: 120px;
  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");
}


/* navigation bar */

a.navbar
{
  float: left;
  width: 75px; 
  padding: 5px;
  border-right: 1px solid #E4E2F8;
  border-left: 1px solid #E4E2F8;
  border-bottom: 1px solid #E4E2F8;
  border-top: 1px solid #E4E2F8;
  font-family: georgia;
  font-size: 8pt;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}

a.navbar:link
{
  color: black;
  background: #0092DF;
}

a.navbar:visited
{
  color: black;
  background-color: #0092DF;
}

a.navbar:hover
{
  color: #C09791;
  background: #F1F0F8;
}

a.navbar:active
{
  color: black;
  background: #0092DF;
}



