@charset "utf-8";
body {
	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: #333333;
		background-image:url(../images/power-mail-bkg_01.jpg); 
	background-repeat:no-repeat;
	background-position:top;
	background-color:#c91832;
}
.oneColFixCtr #container {
	width: 850px;  /* 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 */
	border:none;
	text-align: left; /* this overrides the text-align: center on the body element. */
	font-size:12px;

	

}
.oneColFixCtr #menu-top {
background-image:url(../images/top-menu-bkg.png); background-repeat:no-repeat; height:50px; width:auto;color:#032249; font-size:12px;
text-align:center;
padding:25px 0 0 0;
}
.oneColFixCtr #menu-top a {
color:#032249;
padding:0 15px;
text-decoration:none;
}
.oneColFixCtr #menu-top a:hover {
font-weight:bold;

}
.oneColFixCtr #mainContent {
	width:700px;
	padding: 0 75px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	background-image: url(../images/power-mail-bkg_02_mf.png);
	background-repeat: repeat-y;
	background-position:top left;
	min-height:0;
}


.oneColFixCtr #footer {
font-size:11px;
padding:10px 0;


}
.oneColFixCtr #footer a{
text-decoration:underline;
color:#6699cc;
padding:0 15px 0 0;

}
.oneColFixCtr #footer a:hover{
text-decoration: none;


}

.oneColFixCtr #mainContent #insideContent {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */


}

.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;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
}
.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;
}