/* Cascading Style Sheet (CSS) */

/* This changes the text of any links to a bold, dark red color with no text decoration or 
   underline.*/
a:link { text-decoration:none; color:B86B70;}

/* This changes the text of any visited links to a dark rose color with no text-decoration or 
   underline.*/
a:visited {color:#c87790; text-decoration:none;}
/*why is one link a different color?     */
/* This underlines the link when you mouse over it.*/
a:hover {text-decoration:underline; color:#805070;}

/* This creates a class for the border around select heading topics. It makes the border solid with
   a width of 2 pixels at the top and bottom borders, and a width of 0 on the sides. It also sets
   the border color and the text-alignment to center. */
.border {border-style:solid; border-top-width:2; border-bottom-width:2; border-left-width:0;
         border-right-width:0; border-color:#663333; text-align:center;}

/* This creates a class for the body of the HTML file. It sets the font to Times New Roman, Times,
   or another serif font, it changes the background color to a light rose and sets the text color
   to a dark red.*/

body {font-family:times new roman, times, serif; background-color:#ECD5DB; color:#663333;}

/* This creates a class for centering objects.*/
.center {text-align:center;}
/*link color was: color:#B86B70;*/

/* headings onprogOfferred*/
.boldText {
font-size:1.2em;
font-weight:bold;
}