
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 */
	font-family:Verdana, Arial, Helvetica, sans-serif

/********** CHANGES THE STYLE TYPE TO DISC  **************/

	list-style-type: disc !IMPORTANT; 
	
/********** REDEFINES PROPERTIES **************/
	margin-left: 50px !IMPORTANT;
	margin-bottom: 10px !IMPORTANT;
}


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

div#MainContent div ul.BulletedList ul {
	margin-left: 50px;
}

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 */
	font-family: Verdana, Arial, Helvetica, sans-serif;

/********** 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 % */
}
