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

	list-style-type: disc !IMPORTANT;
	list-style-position: inside;
	text-indent: 10px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

