@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #000;
	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;
}
.twoColFixRtHdr #container {
	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #cc0099;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 2px solid #C09;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixRtHdr #header {
	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. */
	background-color: #264275;
	margin: 0px;
	color: #FFF;
	background-image:url(../images/oceanbg.png);
	height:200px;
	background-repeat: no-repeat;
	text-align: left;
	
} 
.twoColFixRtHdr #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 */
	color: #FFF;
	font-size: 1.6em;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
}
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background-color: #C09;
}
.twoColFixRtHdr #container #sidebar1 p {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 0.85em;
	color: #FFF;
	font-style: italic;
}
.twoColFixRtHdr #container #sidebar1 p em a {
	color: #cc0099;
	font-weight: bold;
}

.twoColFixRtHdr #container #sidebar1 h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.8em;
	font-weight: bold;
}
.twoColFixRtHdr #container #sidebar1h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	font-weight: bold;
}

.twoColFixRtHdr #mainContent {
	background-color:#FFF;
	margin-top: 0;
	margin-right: 250px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
} 
.twoColFixRtHdr #container #mainContent p {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 0.9em;
	color: #264274;
	font-weight: normal;
}

.twoColFixRtHdr #container #mainContent h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.8em;
	font-weight: bold;
	color: #264275;
}
.twoColFixRtHdr #container #mainContent h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.4em;
	font-weight: bold;
	color: #264275;
	font-style: normal;
}


.twoColFixRtHdr #footer {
	padding: 0 0px 0 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#cc0099;
} 
.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; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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;
}
.twoColFixRtHdr #container #sidebar1 ul li {
	font-size: .8em;
}
.twoColFixRtHdr #container #mainContent ul li {
	font-size: .9em;
}
.twoColFixRtHdr #container #mainContent h3 {
	font-size: 1em;
	color: #264275;
	font-style: normal;
}
.twoColFixRtHdr #container #mainContent ul li {
	font-size: .9em;
}
.twoColFixRtHdr #container #sidebar1 h4 {
	font-size: .8em;
	font-weight: bold;
	color: #FFF;
}
.twoColFixRtHdr #container #mainContent h4 {
	font-size: .9em;
	color: #264275;
}
.twoColFixRtHdr #container #mainContent ul li {
	color: #FFF;
}
.boldp {
	font-weight: bold;
}
.boldp {
	font-weight: bold;
	color: #264275;
}
.twoColFixRtHdr #container #mainContent table tr td p {
	color: #000;
	font-size: .9;
}
.twoColFixRtHdr #container #mainContent table tr td ul li {
	color: #000;
}
.twoColFixRtHdr #container #mainContent table tr td table tr td p {
	font-size: .8em;
}
.twoColFixRtHdr #container #mainContent table tr td p strong {
	font-style: italic;
	font-size: 1em;
	font-family: Arial, Helvetica, sans-serif;
}
.twoColFixRtHdr #sidebar2 {
	float: left; /* since this element is floated, a width must be given */
	width: 180px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background-color: #264275;
}
.twoColFixRtHdr #container #sidebar2 p {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 0.85em;
	color: #FFF;
	font-style: italic;
}
.twoColFixRtHdr #container #sidebar2 p em a {
	color: #cc0099;
	font-weight: bold;
}

.twoColFixRtHdr #container #sidebar2 h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.8em;
	font-weight: bold;
}
.twoColFixRtHdr #container #sidebar2h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	font-weight: bold;
}
.textmenu {
	color: #C09;
	font-size: 12px;
	position: absolute;
	left: 30px;
	top: 10px;
}
.textmenu {
	font-size: 10px;
	color: #C09;
}
.twoColFixRtHdr #container #header table tr td {
	font-size: 12px;
	color: #C09;
}
.twoColFixRtHdr #container #mainContent ul li {
	color: #C09;
}
.twoColFixRtHdr #container #mainContent p {
	color: #C09;
	text-align: left;
}
