p {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 1.2em;
}
h1 {
font-family: "Trebuchet MS", Helvetica, sans-serif;
font-size: 2em;
color: yellow;
}
h2#orange {
  color: orange;
  font-size: 4em;
}
p.important {
font-size: 1.5em;
color: blue;
font-family: "Comic Sans MS";
}
p.bold {
font-weight: 900;
}
h3.bigger {
font-size: 2.5em;
}
.italic  {
  font-style: italic;
}
.standout {
color: #cc0000;
}
.spacing  {
  letter-spacing: 1em;
  word-spacing: 1em;
  line-height: 2em;
}
/*
text-align: left;
text-align: center;
text-align: right;
text-align: justify;
*/
.middle  {
  text-align: center;
}
p.indent  {
  text-indent: .5em;
}
blockquote  {
  font-size:  3.4em;
  color:  darkslategray;
  text-align:  justify;
}
.margins  {
  margin: 1em;
}
.box  {
  border: 20px solid green;
  padding: .5em;
}
.box2  {
  border: 20px solid green;
}
.box3  {
  border: 20px solid red;
  padding: 1em;
}

body {
font-family: Georgia;
}
.algerian  {
  font-family: algerian;
}
#t37 {
  color: blue;
  font-size: 5em;
}
#t38 {
  color: red;
  font-size: 2em;
}
.square {
  list-style-type: square;
}
.circle {
  list-style-type: circle;
}
.decimal-leading-zero {
  list-style-type: decimal-leading-zero;
}
#grad {
  height: 116px;
  background: red; /* For browsers that do not support gradients */
  /* For Safari 5.1 to 6.0 */
  background: -webkit-linear-gradient(left,red,orange,yellow,green,blue,indigo,violet);
  /* For Opera 11.1 to 12.0 */
  background: -o-linear-gradient(left,red,orange,yellow,green,blue,indigo,violet);
  /* For Fx 3.6 to 15 */
  background: -moz-linear-gradient(left,red,orange,yellow,green,blue,indigo,violet);
  /* Standard syntax */
  background: linear-gradient(to right, red,orange,yellow,green,blue,indigo,violet); 
}