/* My CSS File */


/* Define body text color, background image, and background color in case the image is not available */

body
{
  color: #266A2E;
  background-image: url(images/bg_cream.jpg);
  background-color: #000000
}

/* Define h1 properties */

h1
{
   color: #194E84;
   font-size: 24pt;
   font-family: arial,helvetica;
   text-align: center;
}

/* Create a class of link named 'normal' */

a.normal
{
  font-family: arial,helvetica;
  font-size: 10pt;
  font-weight: bold;
  text-decoration: underline;
}
a.normal:link
{
  color: #8B4513;
}
a.normal:visited
{
  color: #8B4513;
}
a.normal:hover
{
  color: #FF0000;
}
a.normal:active
{
  color: #8B4513;
}

/* Create a floating text box named 'square' */

p.square
{
  float: left;
  width: 300px;
  height: 150px;
  background-color: #DEE0D5;
  color: #194E84;
  border-right: 2px dashed #194E84;
  border-left: 2px dashed #194E84;
  border-top: 2px dashed #194E84;
  border-bottom: 2px dashed #194E84;
  padding: 7px;
  font-family: times,roman;
  font-size: 12pt;
  font-style: italic;
  text-align: center;
}

/* Create a floating text box named 'space' */

p.space
{
  float: left;
  width: 10px;
  height: 150px;
}

