/* The entire document has a black background, is Verdana font, and white text, except where noted. */

 body
 {
 background-color:#000000;
 font-family:"Verdana";

 }

/* all headers are centered */

 /* h1s are an acid green */

  h1 
  {
  color:#00ff00;
  text-align: center;
  }

 /* h2s are underlined */

  h2
  {
  color:#FFFFFF;
  text-align: center;
  text-decoration: underline;
  }

 /* class 2 h2s are underlined, and are red */

  h2.2
  {
  color:#FF0000;
  text-align: center;
  text-decoration: none;
  }


 /* h3s are red /*

  h3
  {
  color:#FF0000;
  text-align: center;
  }

/* all paragraphs have some degree of padding */

  /* class 1 paragraphs are top, and bottom padded */

   p
   {
   padding-top:25px;
   padding-bottom:25px;
   color:#FFFFFF
   }

  /* class 2 paragraphs are top, bottom, left, and right padded, and red */

   p.2
   {
   padding-top:25px;
   padding-bottom:25px;
   padding-right:150px;
   padding-left:150px;
   color:#FF0000;
   }

  /* class 3 paragraphs are left and right padded */

   p.3
   {
   padding-top:0;
   padding-bottom:0;
   padding-right:150px;
   padding-left:150px;
   color:#FFFFFF
   }

/* links are silver, and only underlined when hovered over; visited links are a darker gray */

 a:link
 {
 color: #B0B0B0;
 text-decoration: none
 }

 a:visited
 {
 color: #787878;
 text-decoration: none
 }

 a:hover
 {
 text-decoration:underline
 }

/* images. oh christ what a pain in the ass. hopefully i can find better css for images */

 /* class 1 images are left sided-images, with nice text wraparounds */

  img.1
  {
  float:left;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
  }

 /* class 2 images are right-sided images, with nice text wraparounds */

  img.2
  {
  float:right;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
  }

