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

	list-style-type: square !IMPORTANT;
	list-style-position: inside;
	text-indent: 20px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	display: list-item;
	padding-top: 1px;
	padding-right: 8px;
	padding-bottom: 1px;
	padding-left: 8px;
}

