@charset "UTF-8";

/*Layout styles*/
body  {
	line-height: 14px;
	color: #4D4D4D;
	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;
	background-color: #E8E8E1;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
}
.twoColFixLt #container {
	width: 230px;
	margin: 0 auto;
	text-align: left;
	height: 100%;
	background-image: url(components/shadow.gif);
}
.twoColFixLt #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 230px;
	margin-left: 285px;
	height: 475px;
	background-image: url(components/sideBk.gif);
	background-repeat: no-repeat;
}
.twoColFixLt  #mainContent {
	margin: 0 15px 0 15px;
	width: 200px;
}
.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;
}

/*Navigation text styles*/
a:link, a:visited, a:active {
	font: 11px Verdana, Arial, Helvetica, sans-serif;
	line-height: 14px;
	color: #98002E;
	text-decoration: none;
	font-weight: bold;
}
a:hover {
	font: 11px Verdana, Arial, Helvetica, sans-serif;
	line-height: 14px;
	color: #4D4D4D;
	text-decoration: none;
	font-weight: bold;
}

