/* CSS Syntax reminder */
/*	background: #000000; 
	background-image: url(value); [url of background image to be used, i.e. background.gif]
	background-repeat: value; [repeat, no-repeat, repeat-x, repeat-y]
	background-position: valueI valueII; [valueI: top, center, bottom, percentage, pixel number]
 	[valueII: right, center, left, percentage, pixel number]
	background-attachment: value; [scroll, fixed]

	font-family: value; [your font name]
	color: #000000 ; 
	letter-spacing: value; [any number value (3pt, 5pt)]
	font-weight: value; [lighter, normal, bold, bolder, any number value (100, 500, 900)]
	font-size:
*/
body { background-color:#FFFFFF;

 

}


a:link {

	text-decoration:none;
	color: #2f689b;

}

a:visited {

	text-decoration:none;
	color: #2f689b;

}

a:hover {

	text-decoration:underline;
	color: #27235e;

}

a:active {

	text-decoration:none;
	color: #2f689b;

}

.mainText {

	color: #000000;
	font-family: century gothic;
	font-size:9pt;


}

.boldText {

	color: #000000;
	font-size:9pt;
	font-family: century gothic;
	font-weight: bold;

}


.italicText {

	color: #000000;
	font-family: century gothic;
	font-size:9pt;
	font-style: italic;


}



.boldHeading {

	color: #000000;
	font-size:11pt;
	font-family: century gothic;
	font-weight: bold;

}



.smallText {

	color: #000000;
	font-family: century gothic;
	font-size:7pt;


}






.rePeat1 {
	
	background-image: url(../images/repeat_1.gif);
	background-repeat: repeat-y;
}

.rePeat2 {
	
	background-image: url(../images/repeat_2.gif);
	background-repeat: repeat-y;
}

.rePeat3 {
	
	background-image: url(../images/repeat_3.gif);
	background-repeat: repeat-y;
}







a img {


border: 0;
text-decoration: none;
}