/*CSS document Home page styles & layout*/

/*Thin green border - border-bottom: #84B0B9 1px solid;*/
body { text-align:center; /*For IE5 - centers all elements*/
	font-family:Georgia, "Times New Roman", Times, serif;	
	background-color:#fff;
	font-size:.75em;
}
/*the CSS Box Model defines a position:absolute block as absolute relative to its containing block, and not relative to the page or window. www.Alistapart.com*/
#container {
	position:relative;/*relative to the window*/
	width:780px;
	height:500px;
	margin-top:40px;
	margin-right:auto;/*together with height and width, margins set to auto center the block */
	margin-bottom:0;
	margin-left:auto;
	background-color:#fff;
	border: #84B0B9 1px solid;
	text-align:left;/*overrides the global "body" style of text-align: center*/
}
#mainnav {/**/
	position:absolute; 
	top:20px;
	left:15px;
	margin:0;
	padding:0;
	font-size:.70em;

}
#mainnav ul {
	padding:0;
	margin-top:0;
	margin-right:0;
	margin-bottom:0;
	margin-left:.5em;
}

#mainnav li {list-style-type: none;
	display:inline;
	font-size:1.25em;
	margin:0;
	padding-bottom:1em;
}
/*Link states*/ 
#mainnav a{color:#3333FF; text-decoration:none; 
}
#mainnav a:hover{color:#3333FF; text-decoration:underline;
}
#mainnav a:active{ color:#3333FF; text-decoration:underline;
}
#mainnav a:visited{color:#660066; text-decoration:none;
}

.pArrow {vertical-align:bottom; /*graphic between navigation */
}
#logoMjr {
	position:absolute;/*changed from relative*/
	top:140px;/**/
	left:15px;
	margin:0;
}
#MJRotchford { 
	margin-left:0px;
}

#intro { position:absolute;/*absolute: relative to the "container" block*/
	top:355px;
	left:15px;
	width:350px;
	margin:0;
	padding:5px;
	text-align:justify;
}
