div#MainContent div p { 
/********** RESETS PREDEFINED PROPERTIES **************/
	margin: 0px !IMPORTANT; /* This resets ALL the margins for the p tag */
	padding: 0px !IMPORTANT; /* This resets ALL the padding for the p tag */

/********** REDEFINES PROPERTIES **************/
	margin: 0px 8px !IMPORTANT; /* This redefines the top/bottom margins to 0px and left/right to 8px */
	padding-top: 10px !IMPORTANT; /* The redefines the top padding to be 10px. Marging causes a gap between the h2 and div tag */
	padding-bottom: 10px !IMPORTANT; /* The redefines the bottom padding to be 10px. */
}


div#MainContent div h1, div#MainContent div h2, div#MainContent div h3, div#MainContent div h4, div#MainContent div h5, div#MainContent div h6 {
	padding-left: 5px !IMPORTANT; /* Indents the Headings */ 
}


div#MainContent div ul.BulletedList { /* This CSS class will create a list with disc bullets */
	/********** RESETS PREDEFINED PROPERTIES **************/
	margin: 0px !IMPORTANT; /* This resets ALL the margins for the ul tag */
	padding: 0px !IMPORTANT; /* This resets ALL the padding for the ul tag */
	/********** CHANGES THE STYLE TYPE TO DISC  **************/

	list-style-type: disc !IMPORTANT;
	/********** REDEFINES PROPERTIES **************/
	margin-left: 22px !IMPORTANT;
	margin-bottom: 10px !IMPORTANT;
	text-indent: 1.0px;
	border: medium solid #999999;
}


div#MainContent div ul.BulletedList li {
	margin: 0px !IMPORTANT; /* This resets ALL the margins for the li tag */
	line-height: 1.5;
	list-style-type: square;
	text-indent: 1.0px;
}

div#MainContent div ul.BulletedList ul {
	margin-left: 22px;
	text-indent: 1.0px;
	border: thin solid #999999;
}

div#MainContent div ol { /* This CSS class will create a list with disc bullets */
/********** RESETS PREDEFINED PROPERTIES **************/
	margin: 0px !IMPORTANT; /* This resets ALL the margins for the ul tag */
	padding: 0px !IMPORTANT; /* This resets ALL the padding for the ul tag */

/********** REDEFINES PROPERTIES **************/
	margin-left: 30px !IMPORTANT;
	margin-bottom: 10px !IMPORTANT;
}


div#MainContent div ol li {
	margin: 0px !IMPORTANT; /* This resets ALL the margins for the li tag */
	line-height: 1.5; /* The values for a line heigh do not have to be in em, px, or % */
}

#MainContent img.RightImage {
	float:  left;
	margin: 1.0em 0.5em;
	color: #000000;
}
div#MainContent div ul {
	list-style-type: square;
	list-style-position: inside;
	text-align: left;
	display: list-item;
	text-indent: 50px;
}
#MainContent img.CenterImage {
	float:  none;
	text-align: center;
	line-height: 1.231px;
	color: #000000;
}

