/* go to http://www.sitepoint.com/article/exploring-limits-css-layout/2 for the javascript to make columns equal width*/
/* pick up tutorial from http://css.maxdesign.com.au/selectutorial/tutorial_step3.htm */

body {
	margin: 0; /*these margin and padding settings change the page margins of zero */
	padding: 0;
	font-size: 85%; /* Changes font size for entire page body to 85% of original */
	background-color: #ffffCC;}
p {
	padding: 0;
	margin: 0;}

/*Styles the link colors and effects in navigation bar*/
a.navigation:link {color: #FFFF99;}
a.navigation:visited {color:#FFFF99}
a.navigation:hover {color: #FFFF99; background-color: #0066CC;}

/*Styles the link colors and effects on the main page*/
a:link {color: #330099}
a:visited {color:#330099}
a:hover {color: #FFFF99; background-color:#0066CC}


div#banner {
	margin: 0;
	color: #ffffff;
	background-image: url('../Images2/HeaderBackground.jpg');}

img.bannerads1 {
	margin: 2px;
	border: 2px #ffffff outset;
	text-align: center;}

img.bannerads2 {
	margin: 1em;
	border: 1px #000000 solid;
	max-width: 130px;}

div#banner h1{
	margin: 0;
	padding: .3em 0 0 .5em;
	font-size: 2.2em;
	font-weight: normal;
	text-align: center;}

div#adspace {
	margin: 0;
	padding: 0;
	background-image: url('../Images2/HeaderBackground.jpg');
	text-align}

div#container {
	background-image: url('../Images2/LeftNavBlue.jpg');
	background-repeat: repeat-y}

div#container2 {
}

div#navigation {
	float: left;
	width: 150px;
	padding-top: 2em;}

div#navigation ul {
	list-style-type: none; /* Removes the list bullets */
	padding: 0; /* removes left indentation consistently across browsers */
	margin: 0;} /* removes left indentation consistently across browsers */

div#navigation ul li {
	margin-top: 4px;} /* puts some space between list items */

div#navigation ul li a {
	display: block; /* displays link element as a block to make it a box shape */
	width: 135px;
	padding: 3px 10px 3px 20px;
	text-decoration: none; /* removes link underlines */
	color: #ffff66;	}

/* Code below achieves rollover effect on nav buttons*/
div#navigation ul li a:hover {
	display: block;
	color: #003366;
	background-color: #99ccff;}

div#more {
	float: right;
	width: 300px;
	margin: 1;
	padding: 10px 10px 10px 10px;
	color: black;}

div#more h3 {
	margin-top: 0;
	color: black;
	padding: .2em;}

div#content {
	margin-left: 180px;
	padding: 1em;
	line-eight: 150%;
	border-top: 1px solid #000000;
	background-image: url('../Images2/AuditNet4WebNoBG.gif');
	background-position: 92% 3%;
	background-repeat: no-repeat}

/*The following styles the formats of the headings in the content div*/

div#content h1 {
	font-family: arial;
	font-size: 28pt;
	color: #000066;
	margin: 0;
	padding-top: 1em;
	font-weight: bolder;}

div#content h2 {
	font-family: arial;
	font-size: 22pt;
	color: #000099;
	margin: 0;
	padding-top: .5em;
	font-weight: bold;}

div#content h3 {
	font-family: arial;
	font-size: 18pt;
	color: #000099;
	margin: 0;
	padding-top: .5em;
	font-weight: bold;}

div#content h4 {
	font-family: arial;
	font-size:16pt;
	color: #000099;
	margin: 0;
	padding-top: .5em;
	font-weight: bold;}

div#content h5 {
	font-family: arial;
	font-size: 14pt;
	color: #000099;
	margin: 0;
	padding-top: 1em;
	font-weight: lighter;}	

div#content h6 {
	font-family: arial;
	font-size: 10pt;
	color: #0000CC;
	margin: 0;
	padding-top: .5em;
	font-weight: bolder;}
	
div#content h7 {
	font-family: arial;
	font-size: 12pt;
	color: #000099;
	margin: 0;
	padding-top: .5em;
	font-weight: bold;}
/* The following provides a way to indent a paragraph or section of the page*/
.indented
   {
   padding-left: 50pt;
   padding-right: 50pt;
   }

/* IE 5 and 5.5 will not tile background to very bottom unless there is a new item clear of floats but inside container.  This empty div solves this. */
div#cleardiv {
	clear: both;
	height: 1em;}

div#footer {
	clear: both;
	padding: .5em 1em;
	border-top: 1px solid #000000;
	text-align: right;}

div#footer ul {
	padding: 0;
	margin: 0;
	list-style-type: none;}

div#footer li {
	display: inline;
	margin-right: 1em;}