@charset "UTF-8";
body  {
	font: 75%/1.5em Arial, Helvetica, sans-serif;
	background: #6DADDF;
	margin: 4 0 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;
}
.twoColFixRtHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: url(images/inside_02.gif) repeat-y center top;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixRtHdr #header {
	background: url(images/inside_01.gif) no-repeat center top;
	padding: 0;  /* 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. */
	height: 281px;
	overflow: hidden;
} 
#header #menu {
	height: 128px;
	width: 527px;
	position: relative;
	top: -212px;
	left: 238px;
}
#header #logo {
	height: 281px;
	width: 281px;
	position: relative;
	left: 8px;
	top: 1px;
}
.twoColFixRtHdr #sidebar1, .twoColFixRtHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 230px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0;
	top: -120px;
	position: relative;
	margin-bottom: -90px;
}

.twoColFixRtHdr #sidebar2 {
	top: 0px;
	margin-bottom: 20px;
}
#sidebar1 h1, #sidebar2 h1 {
	font-size: 1.2em;
	font-weight: bold;
	margin: 0px 0px 4px;
}
#sidebar1 h2, #mainContent h2, #sidebar2 h2 {
	font-weight: bold;
	margin: 4px 0px;
	font-size: 1.1em;
}
#sidebar1 p, #mainContent p, #sidebar2 p {
	margin: .5em 0px;
}
#mainContent p {
	font-size: 0.95em;
}
#sidebar1 .highlight {
	font-weight: bold;
}
.blue {
	color: #3D7FDF;
}
.blue strong {
	color: #000000;
}
.spacer {
	height: 10px;
	width: 120px;
	float: right;
}
.twoColFixRtHdr #mainContent {
	margin: 0 360px -100px 168px;
	position: relative;
	top: -120px;
}
.twoColFixRtHdr #secondImage {
	margin: 0 360px 0 168px;
} 
.twoColFixRtHdr #footer {
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:url(images/inside_03.gif) no-repeat center top;
	height: 24px;
	width: 780px;
	margin-right: auto;
	margin-left: auto;
} 
.twoColFixRtHdr #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 10px 60px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: .9em;
	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;
}
.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;
}
.breaker {
	clear:both;
	margin: 12px 120px 12px 170px;
}

	
