@charset "utf-8";
/* CSS Document */

/***********************
CONTAINER COMPONENTS
***********************/
.threeColFixRtHdr #container { 
	width: 1020px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	/*background: #FFFFFF;*/
	/*background-image: url(../images/bg_grad.gif);*/
	background-image:url(../images/bg_grad_strip.gif);
	/*background-repeat: no-repeat;*/
	background-repeat:repeat-y;
	background-position: top left;
	margin: 0 auto;  /* the auto margins (in conjunction with a width) center the page */
	/*border: 1px solid #000000;*/
	text-align: left;  /* this overrides the text-align: center on the body element. */
} 
.threeColFixRtHdr #header { 
	/*background: #DDDDDD;*/ 
	padding: 0 10px 0 11px;  /* 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. */
	background-image: url(../images/top_logo.gif);
	background-repeat: no-repeat;
	background-position: top right;
	margin-right: 12px;
} 
.threeColFixRtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 162px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	/* background: #D9CAF7; the background color will be displayed for the length of the content in the column, but no further */
	/* padding: 15px 10px 15px 20px; padding keeps the content of the div away from the edges */
	text-align: center;
	margin-left: 11px;
	min-height: 501px;	
}
.threeColFixRtHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 167px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	/*background: #D9CAF7; the background color will be displayed for the length of the content in the column, but no further */
	margin-top: 20px;
	margin-right: 12px;
	min-height: 481px;
	/*
	padding: 15px 10px;
	background-image: url(../images/right_info.jpg);
	background-repeat: no-repeat;
	background-position: top right;
	*/
}
.threeColFixRtHdr #mainContent { 
	margin: 0 215px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 12px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	/*padding-top: 60px;*/
	/*height: 501px;*/
	/*margin-bottom: -30px;*/
	/*padding-bottom: -30px;*/
	padding-left: 180px;
}
.threeColFixRtHdr #mainContentProfile { 
	margin: 0 250px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 12px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	/*padding-top: 60px;*/
	/*height: 501px;*/
	/*margin-bottom: -30px;*/
	/*padding-bottom: -30px;*/
	padding-left: 180px;
}  
.threeColFixRtHdr #footer { 
	/*padding: 0 10px 0 20px; this padding matches the left alignment of the elements in the divs that appear above it. */
	/*background: #DDDDDD;*/
	/*margin-top: 0px;*/
	padding-left: 20px;
	position: relative;
	top: 90px;
}

/***********************
FLOAT
***********************/
.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;
}
.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;
}
.footerMargin {
	line-height: 30px;
}.asterix {
	color: #5E3BA9;
}


