body 	{ background: white; }

h1   	{ font-family: Arial, Helvetica, Sans-serif; font-size:18pt;
	  color:red; font-weight:bold; }

h2   	{ font-family: Arial, Helvetica, Sans-serif; font-size:12pt;
	  color:black; font-weight:bold; }
       
p	{ font-family: Arial, Helvetica, Sans-serif; font-size:10pt;
	  color:black; }

p.alert	{ font-style: italic; color:red;}

table	{ font-family: Arial, Helvetica, Sans-serif; font-size:10pt;
	  color:black; }

select	{ font-family: Arial, Helvetica, Sans-serif; font-size:10pt;
	  font-weight: bold; color:blue; background: lightBlue; }

option	{ font-family: Arial, Helvetica, Sans-serif; font-size:10pt;
	  color:black; background: silver; }

/* unvisited link */

a:link {

  color: blue;

}


/* visited link */

a:visited {

  color: gray;

}


/* mouse over link */

a:hover {

  color: yellow;

}


/* selected link */

a:active {

  color: red;

}


.p {

  font-family: "Times New Roman", Times, serif;

}

p {
	color: black;
} 


.cascade1 {

	background-color: yellow;
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#disclaimer {
  background-color: yellow;
}

/*@font-face*/


@font-face {
  font-family: 'Send Flowers' ,cursive;
  src: url(SendFlowers-Regular.ttf);
}


div {
  font-family: 'Send Flowers' ,cursive; 
}

/*This is from here: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Animations/Using_CSS_animations*/

p {
  animation-duration: 3s;
  animation-name: slidein;
}

@keyframes slidein {
  from {
    margin-left: 100%;
    width: 300%;
  }

  75% {
    font-size: 300%;
    margin-left: 25%;
    width: 150%;
  }

  to {
    margin-left: 0%;
    width: 100%;
  }
}
