/*Remove borders and padding from body, img, H1:H6, all lists and list items and images*/

html, body
{
	margin: 0px;
	padding: 0px;
	border: 0px;
}

img
{
	border:none;
	padding:0;
	margin:0;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li, div, em, small, span, legend
{
	padding:0px;
	margin:0px;
	border:none;
	text-decoration:none;
}

