/* --------------------------------------------------------------------- */
/* This file, site.csswas developed for Miriam Nathan-Roberts' webpage  */
/* Use is limited to viewing.  For reproduction rights contact Miriam.   */ 
/* Contact information may be found in the contact.htm file.             */
/*                        Copyright April, 2006                          */
/* --------------------------------------------------------------------- */

/* This style sheet is used to determine background color, some font sizes, and link properties */

/* Set Background color to 50% grey */
body {background-color: #7F7F7F} /* grey */

/* Set link colors */
a:link {color: black; text-decoration: underline}  /* Black *//* unvisited links will be black */
a:visited {color: #8B0000; text-decoration: underline} /* DarkRed *//* visited links will stay dark red */
a:hover {color: #8B0000; text-decoration: underline} /* DarkRed */ /* mouse over link makes it underlined & dark red */
a:active {color: #8B0000} /* DarkRed */ /* selected link will be dark red*/

/* Set class two to blue link color */
/*create class "two" for email link*/
a.two:link {color: blue; text-decoration: underline}
a.two:visited {color: #8B0000; text-decoration: underline} /* DarkRed */
a.two:hover {color: blue; text-decoration: underline} 
a.two:active {color: red; text-decoration: underline}

/* Set class three to always black link color */
/*create class "three" for email link*/
a.three:link {color: black; text-decoration: none}  /* Black *//* unvisited links will be black */
a.three:visited {color: black; text-decoration: none} /* Black *//* visited links will stay black */
a.three:hover {color: #8B0000; text-decoration: underline} /* DarkRed */ /* mouse over link makes it underlined & dark red */
a.three:active {color: #8B0000} /* DarkRed */ /* selected link will be dark red*/


/* Define classes: .left left justifies */
.left {text-align: left}
.right {text-align: right}
.center {text-align: center}

/* Setting Header 1 size, color, and alignment */
/* (used for the "Miriam Nathan-Roberts" at the top of each page)  */
h1 {font-size: 36pt; color: black; text-align:center; font-weight: normal}

/* Setting Header 2 size, color, and alignment */
/* (used for the subtitle at the top of each page, IE: prints)  */
h2 {font-size: 24pt; color: black; text-align:center; font-weight: normal}

/* Setting Header 4 size, color, and alignment */
/* (used for the bottom link bar on each page)  */
h4 {font-size: 14pt; color: black; text-align:center; font-weight: normal}

/* Setting Header 5 size, color, and alignment */
/* (used for the bottom link bar on each page)  */
h5 {font-size: 12pt; color: black; text-align:center; font-weight: normal}

/* For Reference: Colors */
/* #000000 black */
/* #ff0000 red*/
/* #0000ff blue*/
/* #FF00FF pink/purple */
/* #8B0000 DarkRed */
/* color site: http://www.w3schools.com/html/html_colors.asp */