@charset "UTF-8";
/* CSS Document */

/*sets all content to remain centered in the browser window*/
#allcontent{
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	width: 800px;
}

body {
	font-family: Helvetica, Trebuchet MS, Arial, sans-serif;
	font-size: medium;
}


h1 {
	font-size: 150%;
	font-weight: normal;
}

h2 { 
	font-size: 130%;
	font-weight: normal;
}

/*change the link colors*/
a:link, a:visited {
	color: maroon;
}

a:hover {
	color: blue;
}


/*sets header to its standard size across the site, necessary to
retain smooth experience for tab navigation system*/
#header {
	/*width of encompassing element is 800px
	thickness of border is total 4px lengthwise
	width of header is 750px
	that leaves 46px
	create a 23 px margin-left to center header box*/
	width: 796px;
	height: 125px;
	/*border: 2px groove gray;
	border-radius: 8px;*/
	}
	
#header h2 {
	text-align: center;
	position: relative;
	top: 15px;
	}
	
#header h1 {
	font-size: 175%;
	text-align: center;
	position: relative;
	top: 20px;
	}

#maincontent {
	margin-top: 0px;
	padding: 12px;
	border-width: 1px;
	border-top-width: 0px;
	border-color: black;
	border-color: #AAA;
	
	border-style: solid;
	border-radius: 0px 0px 8px 8px;
}
	
/*set border for paragraphs*/
.styled-paragraphs p {
	/*border-left-color: black;
	border-left-style: solid;
	border-left-width: medium;*/
	border-top-color: black;
	border-top-style: solid;
	border-top-width: thin;
	padding-left: 5px;
	padding-top: 15px;
}

/*eliminate top border on the first paragraph*/

.styled-paragraphs p:first-child {
	border-top: none;
}

/*the footer with the copyright notice is a separate div*/
#footer {
	padding: 10px 0px 10px 0px;
	margin: 10px 0px 5px 0px;
	/*border: thin black solid;
	border-radius: 8px;*/
}

#footer p {
	font-size: 0.7em;
	text-align: center;
	/* border: none; */
	
}

