@charset "utf-8";
body  {
	font-family : Verdana, Arial, Tahoma;
	font-size : 10pt;
	background: url(graphics/background.gif) repeat;
	margin: 0px 0px 0px 0px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 10px 0px 0px 0px;
	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 */
}
.twoColFixLtHdr #container { 
	font-family : Verdana, Arial, Tahoma;
	font-size : 11pt;
	background: #19017B;
	width: 782px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0px auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 10px 10px 0px 20px;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #header { 
	text-align: center; 
	height: 115px;
	padding: 0px 0px 0px 0px;  
} 
.twoColFixLtHdr #navigation { 
	text-align: center; 
	background: url(graphics/concept_07.gif) no-repeat;
	height: 45px;
	padding: 9px 0px 0px 10px;  
} 
.twoColFixLtHdr #sidebar1 {
	text-align: center; 
	float: left; /* since this element is floated, a width must be given */
	width: 125px; /* 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 */
	padding: 0px 0px 0px 0px;
}
.twoColFixLtHdr #mainContent { 
	background: url(graphics/concept_10.gif) repeat-y;
	margin: 0 0px 0 125px; /* the left margin on this div element creates the column down the left 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 20px 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixLtHdr #wideContent { 
	text-align: center; 
	margin: 0 0px 0 0px; /* the left margin on this div element creates the column down the left 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 0px 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixLtHdr #footer { 
	font-size: 9pt; 
	clear:both;
	height: 55px;
	padding: 0 0px 0 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	text-align: center; 
} 




.twoColFixLtHdr #header h1 {
	color : #000000;
	font-family : Verdana, Arial, Tahoma;
	font-size : 18pt;
	font-weight: normal; 
	text-align: center;
	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 30px 0px 530px ; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
