@charset "utf-8";
body  {
	font: 95% Arial, Helvetica, sans-serif;
	background: #33ca00;
	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;
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #leftcolumn is given a 70% font size and #content is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
.thrColElsHdr #container { 
	width: 845px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	padding: 0px 3px 3px 3px;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

.thrColElsHdr #topBar { 
	padding: 0;
	height: 15px;
	background:#f40d75;
	color: #CCC;
	font-size: 9px;
	padding-left: 20px;
	padding-top: 3px;
}
#topBar a{ 
	color: #ffffff;
	text-decoration: none;
}

.thrColElsHdr #logo { 
	padding: 0;
	height: 192px;
	margin-bottom: 1px;
	background:#ffffff;
}

.thrColElsHdr #secondBar { 
	padding: 0;
	height: 9px;
	margin-top: 3px;
	margin-bottom: 1px;
	background:#ffffff;
} 

.thrColElsHdr #thirdBar { 
	padding: 0;
	height: 2px;
	margin-bottom: 4px;
	background:#33ca00;
} 

.thrColElsHdr #footerBar { 
	padding: 0;
	height: 9px;
	margin-top: 3px;
	background:#f40d75;
}

.thrColElsHdr #outterFooter a {
	font: menu;
	font-size: 1;
	color: #ffffff;
}

.thrColElsHdr #outterFooter p {
	font: menu;
	font-size: 1;
	color: #ffffff;
}

.thrColElsHdr #leftcolumn {
	float: left; 
	width: 177px; 
	background: #ffff33; 
	padding: 0; 
}

.thrColElsHdr #menu {
	background: #ffff33;
	border: 1px solid #666666;
	padding: 4px;
}

.thrColElsHdr #floatBox1 {
	background: #ffff33;
	border: 1px solid #666666;
	padding: 4px;
}

.thrColElsHdr #floatBox2 {
	background: #ffff33;
	border: 1px solid #666666;
	padding: 4px;
	margin-top: 4px;
}

.thrColElsHdr #floatBox3 {
	background: #ffff33;
	border: 1px solid #666666;
	padding: 4px;
	margin-top: 4px;
}

.thrColElsHdr #floatBox4 {
	background: #ffff33;
	border: 1px solid #666666;
	padding: 4px;
	margin-top: 4px;
}

.thrColElsHdr #floatBox5 {
	background: #ffff33;
	border: 1px solid #666666;
	padding: 4px;
	margin-top: 4px;
}

.thrColElsHdr #floatBox6 {
	background: #ffff33;
	border: 1px solid #666666;
	padding: 4px;
	margin-top: 4px;
}

.thrColElsHdr #rightcolumn {
	float: right; 
	width: 177px; /* since this element is floated, a width must be given */
	padding: 0; /* top and bottom padding create visual space within this div */
}

.thrColElsHdr #content {
 	margin: 0 182px 0 182px; 
}

.thrColElsHdr fieldset legend {
	color: purple;
	font-weight: bold;
}

/* 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 { 
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
TABLE {
	font: 95% Arial, Helvetica, sans-serif;
}.adasf {
}
