/* Styles the body with its background image and sets the top margin to clear that image*/
body {
	background-color: #FFF;
	background-image: url(assets/bg_main.jpg);
	background-repeat: repeat-x;
	margin: 140px 0px 0px 0px;
	padding: 0px;
}
/*Main font styles applied to paragraphs and div tags for the benefit of NN4*/
p, div {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
}
/* heading colors*/
h1, h2, h3 {
	color: #003366;
}
/*link styles*/
a:link, a:visited {
	font-weight: bold;
	color: #663366;
}
a:hover {
	font-weight: bold;
	color: #336699;
}
/*Postions the logo container div to the top left of the page*/
#logo {
	position: absolute;
	top: 0px;
	left: 0px;
}
/*Positions the main navigation container div*/
#nav {
	position: absolute;
	left: -13px;
	top: 106px;
	/*/*/white-space: nowrap;/* */
}
/*provides positioning of the left column div and declares its width*/
#leftcol {
	position: absolute;
	width: 172px;
	left: 22px;
	top: 488px;
	border-bottom: 2px solid #666666;
	height: 222px;

}
/* aligns, colors and sets size of font in the left column*/
#leftcol p {
	 /*/*/font-size: 10px;/* */
 	color: #333333;
 	text-align: justify;
}
/* sets large left and right margins to the main content container div
to clear it of the left column and keeps it well away from the 
right edge of the screen*/
#maincontent {
	margin: 0px 100px 0px 200px;
	/*/*/background-image: url(assets/mncontbg.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;/* */
}
#maincontent p {
	margin: 0px 20px 10px 10px;
}
#maincontent h1, #maincontent h2 {
	margin-left: 10px;
}
/* replaces the default circle bullet with an image*/
#maincontent ul {
	/*/*/list-style-type: none;
	list-style-image: url(assets/bullet.jpg);/* */
}
/* gives each list item room to breath*/
#maincontent li {
	/*/*/margin: 0px 0px 4px 0px;/* */
}
/* Styling of the page spanning footer container div, supplies it with its background image
and padding*/
#footer {
	/*/*/background-color: #99CCCC;
	background-image: url(assets/footer.jpg);
	background-repeat: repeat-x;
	padding: 4px;/* */
}
