<!-- 
* {
	margin:0;
	padding:0;
}
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #89c1e2; /*a2d3e2*/
	background-image: url(../images/main_background.gif);
	margin: 0;
	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 */
}
/*FOR LINKS*/
a {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #89c1e2;
	text-decoration: underline;
}
a:active {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #89c1e2;
	text-decoration: underline;
}
a:hover {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #89c1e2;
	text-decoration: none;
}
a:active {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #89c1e2;
	text-decoration: underline;
}
/*END FOR LINKS*/
.thrColAbsHdr #container { 
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

.thrColAbsHdr #header { 
	height: 110px; 
	padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	margin-top: 5px;
	margin-left: 10px;
} 
.thrColAbsHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

.thrColAbsHdr #contentWrap {
	padding: 0 15px;
	background: #012f3f;
}
.thrColAbsHdr #mainContent {
	margin: 0 0px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */
	padding: 30px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #00455f;
}
.thrColAbsHdr #mainContent p {
	padding: 10px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
/*===========================*/
/* FOR CONTENTS */
/*===========================*/
.thrColAbsHdr #title {
	line-height: 33px;
	background-image: url(../images/title_background.gif);
	padding-left: 30px;
	font-size: 11px;
	color: #FFFFFF;
}

.thrColAbsHdr #contentHomeLeft {
	width: 260px;
	float:left;
	background-image: url(../images/home_left_background.gif);
}
.thrColAbsHdr #contentHomeRight {
	width: 430px;
	float: right;
	margin: 0 0px;
	padding: 10px 10px; 
	background-color: #0190a1;
}


/*===========================*/
/* END FOR CONTENTS */
/*===========================*/
/* FOOTER */
.thrColAbsHdr #footer {
	font: Arial, "Lucida Sans Unicode", Helvetica, sans-serif;
	font-size: 9px;
	color: #a2d3e2;
	padding: 0 10px 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#00455f;
} 
.thrColAbsHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.thrColAbsHdr #footer a {
	font: Arial, "Lucida Sans Unicode", Helvetica, sans-serif;
	font-size: 9px;
	text-decoration: none;
	color: #a2d3e2;
}
.thrColAbsHdr #footer a:hover {
	font: Arial, "Lucida Sans Unicode", Helvetica, sans-serif;
	font-size: 9px;
	text-decoration: underline;
	color: #a2d3e2;

}
/* MENUS */
.thrColAbsHdr #menu {
	font: Arial, "Lucida Sans Unicode", Helvetica, sans-serif;
	font-size: 9px;
	color: #ffffff;
	padding: 0px 0px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#0091a0;
	height: 35px;
} 
.thrColAbsHdr #menu p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.thrColAbsHdr #menu a {
	font: Arial, "Lucida Sans Unicode", Helvetica, sans-serif;
	font-size: 9px;
	text-decoration: none;
	color: #ffffff;
}
.thrColAbsHdr #menu a:hover {
	font: Arial, "Lucida Sans Unicode", Helvetica, sans-serif;
	font-size: 9px;
	text-decoration: underline;
	color: #ffffff;

}

.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;
}
--> 
