@charset "UTF-8";
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #900;
}

.NHA_layout #container {
	width: 90%;
	background: #FFFFFF;
	/*margin: 0 auto;  the auto margins (in conjunction with a width) center the page if needed */
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-left: 60px;
}  
.NHA_layout #header { 
	background-image: url(../images/NHA_Design-RedRule.gif);
	height: 140px;
	background-repeat: repeat;
} 

.NHA_layout #sidebar1 {
	float: left;
	width: 160px; /* since this element is floated, a width must be given */
	padding-top: 15px;
	padding-right: 0;
	padding-bottom: 15px;
	padding-left: 0;
}
.NHA_layout #sidebar2 {
	float: right;
	width: 250px; /* top and bottom padding create visual space within this div */
	padding-top: 15px;
	padding-right: 0;
	padding-bottom: 15px;
	padding-left: 0;
	margin-top: -110px;
	text-align: right;
}
.NHA_layout #sidebar3 {
	float: right;
	width: 220px;
	margin-right: 2%;
	background-color: #FFC;
	padding: 10px;
	margin-top: 10px;
}
.NHA_layout #sidebar3Blog {
	background-color: #d3d271;
	padding: 10px;
	margin-top: 0px;
}

.NHA_layout #sidebar3Blog li {
	margin-left: -25px;
}

.NHA_layout #sidebar3Services {
	background-color: #FFC;
	padding: 10px;
	margin-top: 0px;
}

.NHA_layout #sidebar3Services li {
	margin-left: -25px;
}

.NHA_layout #sidebar3Clients {
	background-color: #FFC;
	padding: 10px;
	margin-top: 0px;
}

.NHA_layout #sidebar3Clients li {
	margin-left: -25px;
}

.NHA_layout #sidebar3ClientSpeaks p {
	text-align: center;
	background-color: #ffcc99;
	padding: 10px;
}
.NHA_layout #sidebar1 h3, .NHA_layout #sidebar1 p, .NHA_layout #sidebar2 p, .NHA_layout #sidebar2 h3 {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

.NHA_layout #mainContentNoRight {
	margin-top: 0;
	margin-right: 50px;
	margin-bottom: 0;
	margin-left: 180px;
	padding-top: 0;
	padding-right: 2em;
	padding-bottom: 0;
	padding-left: 2em;
} 
.NHA_layout #mainContent {
	margin-top: 0;
	margin-right: 270px;
	margin-bottom: 0;
	margin-left: 180px;
	padding-top: 0;
	padding-right: 2em;
	padding-bottom: 0;
	padding-left: 2em;
} 
.NHA_layout #mainContentProjects {
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 180px;
	padding-top: 0;
	padding-right: 2em;
	padding-bottom: 0;
	padding-left: 2em;
	width: 500px;
	margin-right: 300px;
} 
.NHA_layout #sidebarProjects {
	width: 220px;
	background-color: #CFF;
	padding: 10px;
	margin-top: 100px;
	margin-left: 720px;
}
.NHA_layout #footer {
	padding-top: 0;
	padding-right: 200px;
	padding-bottom: 2px;
	padding-left: 210px;
	background-color: #006;
} 
.NHA_layout #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 0;
}

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

#facts {padding-left: 40px}