@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;
	background: #4A2A4B;
	font: 14px Arial, Helvetica, sans-serif;
	line-height: 18px;
	letter-spacing: 0.03em;
	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: #4A2A4B;
}

.body1 {
	font: 14px Arial, Helvetica, sans-serif;
	line-height: 18px;
	letter-spacing: 0.03em;
	color: #4A2A4B;
}
.body2 {color: #875480}
.body3 {color: #B28BAA}
.body4 {color: #D3BCCE}
.bodyPink {color: #EE1D9E; text-decoration: none;}
.bodyBold {font-weight: bolder; }

.heading1 {color: #4A2A4B; font: 30px Arial, Helvetica, sans-serif; font-weight: bolder}
.heading2 {
	color: #4A2A4B;
	font: 24px Arial, Helvetica, sans-serif;
	font-weight: bolder;
	font-style: normal;
}

.subheading1 {
	font: 18px Georgia;
	letter-spacing: 1;
	font-style: italic;
	color: #EE1D9E;
}
.subheading2 {color: #875480; font: 14px Georgia; font-style:italic; letter-spacing: 1}
.subheading3 {color: #C099B6; font: 14px Georgia; font-style:italic; letter-spacing: 1}

.small1 {color: #4A2A4B; font-size: 12px; line-height: 16px; }
.small2 {color: #875480; font-size: 12px; line-height: 16px; }
.small3 {color: #B28BAA; font-size: 12px; line-height: 16px; }
.smallPink {color: #EE36C6; font-size: 12px; line-height: 16px; }
.smallBold {color: #4A2A4B; font-size: 12px; line-height: 16px; font-weight: bolder; }

.tiny1 {color: #4A2A4B; font-size: 10px; }
.tiny2 {
	color: #875480;
	font-size: 10px;
	text-align: right;
}
.tiny3 {color: #B28BAA; font-size: 10px; }
.tiny4 {color: #D1BACB; font-size: 10px; }
.tinyPink {color: #EE36C6; font-size: 10px; }
.tinyBold {color: #4A2A4B; font-size: 10px; font-weight: bolder; }

.img {border-color: #fff; }
/*
.smallLink {color: #F646D0; font-size: 10px; }
*/

a:link {color: #EE1D9E; text-decoration: none;}
a:hover {color: #FD58BE; text-decoration: underline;}
a:visited {color: #E10F91; text-decoration: none;}
a:active {color: #5E3456; text-decoration: none;}


.myTwoCol #container {
	width: 840px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */	/* padding: 24px 44px; */
}
.myTwoCol #header {
	float: top;
	/* width: 754px;  
	height: 134px;*/
	background: #FFFFFF;
	/* padding: 0px 12px; */
	margin: 0 58px 0 58px;	/* margin-left: 58px; */
	padding-top: 24px;
}
.myTwoCol #navigation {
	float: top;
	width: 792px;
	height: 54px;
	margin: 4px 24px 0 24px;
}
.myTwoCol #mainContent {
	width: 488px;
	margin: 0 58px 0 58px; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding-top: 8px;
	/* padding: 0 0px; remember that padding is the space inside the div box and margin is the space outside the div box */
	/* margin-left: 58px;*/
} 
.myTwoCol #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	height: 120px;
	width: 230px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	/* background: #f911ca; the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 12	px;
	margin: 24px 44px 0 0;
}
.myTwoCol #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 206px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #EADEEC; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 12px 12px;
	margin: 8px 44px 0 0;
	border-color: #FFFFFF;
}
.myTwoCol #footer {
	float: bottom;
	margin: 0 44px 0 58px;
	padding: 12px 0 24px 0;
}
.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;
}
.myTwoCol #container #mainContent p .subheading1 {
	color: #EE1D9E;
}

