/* MESSAGE BOARD STYLES */

/* To control a page's look or layout using a CSS stylesheet, add <link rel="stylesheet" href="/the relative path to your stylesheet/your stylesheet's name.css" /> between the pages <head> . . . </head> tags. */

body {
	color : #000000; /* To change text color, replace 000000 with the new color */
	background-color : #c0c0c0; /* To change background color, replace c0c0c0 with the new color */
	background-image : url("/messageboard/fishbackgrey.jpg");  /* To change background image, replace /messageboard/fishbackgrey.jpg with the relative url to the new image */
	}

a:link {
 	color : #0000ff;  /* To change link colors, replace 0000ff with the new color */
 	}

a:visited, a:focus, a:hover, a:active {
 	color : #800080;   /* Same as above, except that if you want different colors for each type of link, break them out the way a:link was broken out */
 	}
 	
h1 {		/* Centers and renders in #f00 font the text inside the <h1> element.  Example: <h1>This header will be centered and rendered #f00 (red) font.</h1> */
  text-align: center;
	margin: 0 auto;
  color: #f00;	/* Same as #ff0000 -- a shortcut when numbers repeat in pairs */
}

.center {		/* Centers any element given the class="center".  Example: <p class="center">This paragraph will be centered.</p> */
  text-align: center;
	margin: 0 auto;
  }

.angst_return {		/* Centers and renders in large bold font any element given the class="angst_return".  Example: <p class="angst_return">This paragraph will be centered and rendered in large bold font.</p> */
  text-align: center;
	margin: 0 auto;
	font-size: large;
	font-weight: bold;
  }