/** Coded by: Jeffrey (Joseph Witchard)
 ** Created on: 04/03/09
 ** Last modified: 04/11/10
 ** Purpose: To set the general
 **          styles for the website. */
 
/******* FORMAT THE LINK COLOR *******/

a:link { 
   text-decoration: none; 
   color: #0000FF; 
}

a:visited { 
   text-decoration: none; 
   color: #9900CC; 
}

a:active { 
   text-decoration: underline; 
   color: #9900CC; 
}

a:hover { 
   text-decoration: underline; 
   color: #0000FF; 
}

/******* FORMAT THE BODY OF THE WEB PAGES *******/

body {
   background-color: #000000;
   font-family: Tahoma, Georgia, Verdana, Arial, Times, "Times New Roman", monospace;
   font-size: medium;
   color: #FFFFFF;
}
     
/******* LIST CLASS WITH FORMATTING REMOVED *******/

.nonListList {
   padding: 0px;
   list-style-type: none;
}



/******* SET THE FORM LABELS TO BOLD *******/

label { 
   font-weight: bold; 
}

/****** SET THE COLOR OF WARNING TEXT *******/

.warning { 
   color: #FF0000; 
}