/* CSS Document */

body {
    background-color: rgb(126, 149, 180);
	<!-- background-color: #f7f7a1; /* yellow */ -->
}


h1 {
 
  font-family: Georgia, "Times New Roman", Times, serif;
  color: black;
  text-align: left;
  font-size: 250%;
  font-weight: bold;
  
}

h2 {
 
  font-family: Georgia, "Times New Roman", Times, serif;
  color: black;
  text-align: left;
  font-size: 210%;
  font-weight: bold;
  
}

h3 {
 
  font-family: Georgia, "Times New Roman", Times, serif;
  color: black;
  text-align: left;
  font-size: 150%;
  font-weight: bold;
  
}

p {
	font-family: Helvetica, Arial, sans-serif;
	color: black;
/*   	text-align: left; */
  	font-size: 115%;
  	font-weight: normal;
}

/*  used for the paragraph tag to center text -- ex: homepage announcements (to be centered) */
.center {
	font-family: Helvetica, Arial, sans-serif;
	color: black;
  	text-align: center;
  	font-size: 115%;
  	font-weight: normal;
}

/* for p tag to use smaller font than p, racial equity */
.smfont {
	font-family: Helvetica, Arial, sans-serif;
	color: black;
  	text-align: left;
  	font-size: 85%;
  	font-weight: normal;
}

ul {
	font-family: Helvetica, Arial, sans-serif;
	color: black;
  	text-align: left;
  	font-size: 115%;
  	font-weight: normal;
}

/* for nested ul to use the proper font size */
.nest {
	font-family: Helvetica, Arial, sans-serif;
	color: black;
  	text-align: left;
  	font-size: 90%;
  	font-weight: normal;
}

/* for nested ul to use smaller font size than .nest, racial equity page*/
.nest2 {
	font-family: Helvetica, Arial, sans-serif;
	color: black;
  	text-align: left;
  	font-size: 77%;
  	font-weight: normal;
}

/* for image borders img could be usedd instead of  .border to change them all */
/* images with no border just use img, with border use img class="border", with light border use "border_gray" instead of "border" */
.border {
	border: 1px solid DarkGray;
}

.border_gray {
	border: 1px solid silver;
}

/*
border-color: gray
*/

