/* -- nosidebar.css is an additional style sheet that is called in the head of nosidebar.php -- */
/* -- because this sheet is called after style.css all of the styling in this document overrides that from style.css, as per the rules of css document flow */


/* ------- CSS Document Begins ------- */




/* ------- Main Content Styling Begins ------- */

#maincontent { 
	
	/* -- resetting margins and padding to zero since style.css uses a right margin of 225px that we need to clear --*/	
	margin: 0;
	padding: 0;
	
	/* setting the width of the maincontent container to 900px*/
	/* technically this shouldn't have to be done, but IE seems to require it*/
	width: 900px;

	} 
	
	
	
#maincontent p {

	width: 600px;
	/*padding-left: 50px;*/

	}	
	
/*img {

	width: 900px;
	padding: 0;
	
	}*/	
	
div#header {

	/* -- styling for the div that contains the navigation menu -- */
	/* -- setting the height so that the header.png background image shows "Ketch Harbour Wolves" -- */
	/* -- there are some serious discrepancies in the way that IE and Firefox calculate height -- */
	/* -- I just played around with this value until I found one that worked in both IE and Firefox -- */
	height: 220px;
	
	}	