/*ID's*/
/*The id selector is used to specify a style for a single, unique element.*/
/*The id selector uses the id attribute of the HTML element, and is defined with a "#".*/
#wrapper {
	margin: 0 auto;
	padding: 0;
	width: 900px;
	min-width: 900px;
}


/*CLASS's*/
/*The class selector is used to specify a style for a group of elements.*/
/*Unlike the id selector, the class selector is most often used on several elements.*/
/*The class selector uses the HTML class attribute, and is defined with a "."*/
.calevntTxt {
	margin: 5px 2% 1px 4%;
	font-family: arial;
	font-size: 0.85em;
	font-weight: bold;
}
.caldescTxt {
	margin: 1px 2% 1px 6%;
	font-family: arial;
	font-size: 0.85em;
	font-weight: normal;
}
.fyiTxt {
	margin: 5px 4% 1px 4%;
	font-family: arial;
	font-size: 0.85em;
}
.lotsOfWhiteSpace {
	margin: 500px 2% 0px 2%;
}
.pgbotTxt {
	font-family: arial;
	font-size: 0.75em;
}
.regTxt {
	margin: 2px 2%;
	font-family: arial;
	font-size: 1em;
}
.secthdrTxt {
	margin: 7px 2% 0px;
	font-family: arial;
	font-size: 1.5em;
	font-weight: bold;
}
.smllnkTxt {
	font-family: arial;
	font-size: 0.6em;
	font-weight: bold;
	margin: 0px 0px 0px 0px;
	text-decoration:none;
}
.updtdateTxt {
	margin: 10px 0px;
	font-family: arial;
	font-size: xx-small;
}
.welcomeTxt {
	margin: 10px 5%;
	font-family: arial;
	font-size: 0.75em;
	font-style: italic;
}

