@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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: #000;
}

.thrColEls #container { 
	width: 100%;  
	min-width: 970px;
	/*max-width: 1200px;*/
	background: #FFFFFF;
	margin: 0;
	border: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#wrapper1 { /*for making faux column on left*/
	background: #00A1A3;
}
#wrapper2 { /*for making faux column on right*/
	background: #00A1A3;
}
.thrColEls #header { /*main content header */
	background: #00A1A3;
	margin: 0 200px 0 200px;
}
.thrColEls #footer { /*main content footer */
	background: #00A1A3;
	margin: 0 200px 0 200px;
}
.thrColEls #sidebar1 {
	float: left; 
	width: 192px; /* since this element is floated, a width must be given */
	padding: 0; 
	margin: 0;
}
.thrColEls #sidebar2 {
	float: right; 
	width: 192px; /* since this element is floated, a width must be given */
	padding: 0;
}
.thrColEls #sidebar1 h3, .thrColEls #sidebar1 p, .thrColEls #sidebar2 p, .thrColEls #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;
}

ul.nav {
	list-style-type: none;
	padding: 0;
	margin-left: 0;
}
ul.nav a {
	padding: 7px 0 7px 2px;
	text-decoration: none;
	color: #FFF;
}
ul.nav a:hover {
	color: #039;
}
ul.nav li {
	/*display: inline;*/
	padding: 0 0 10px 10px;
	font-weight: bold;
}
*html ul.nav a { height: 1px; } /* ie 6 hack */

/* Tips for mainContent:
	In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.thrColEls #mainContent {
	min-width: 570px;
  margin: 0 200px 0 200px;
  background: #FFFFFF;
  padding: 10px;
} 

.imgleft {
	padding: 10px;
	float: left;
}

.imgright {
	padding: 10px;
	float: right;
}

.thrColEls h1 {
	color: #FFF;
}

/* 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;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
}
.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;
}
