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

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: #CCCCCC;
	font-family: "Century Gothic";
	font-size: 12px;
}
h2{
}
a {
	color:#9D004F;
	font-weight: bold;
	text-decoration: none;
	font-size: 14px;
}
a:hover {
	color:#B7005B;
}

.twoColElsLt #container {
	width: 970px;
	margin: 0 auto;
	text-align: left;
	background-image: url(../images/bkg_f.jpg);
	background-repeat: no-repeat;
	margin-top: 50px;
} 

.twoColElsLt #sidebar1 {
	float: left;
	width: 200px;
}
.twoColElsLt #sidebar1 h3, .twoColElsLt #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

.twoColElsLt #mainContent {
	margin: 0 10px 0 220px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
} 

.fltrt { 
	float: right;
	margin-left: 8px;
}
.fltlft { 
	float: left;
	margin-right: 8px;
}
.clearfloat { 
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

