* {
	box-sizing: border-box;
	margin: 0px;
	padding: 0px;
}

html {
	min-height: 100%;
}

body {
	color: #000;
	font-family: 'Times New Roman', Times, serif;
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
}

#wrapper {
	max-width: 845px;
	margin: 12px auto;
	border: 1px solid #000;
	padding: 100px;
	background: #fff;
	overflow: hidden;
}

p {
	margin: 0 0 20px;
}

strong {
	font-weight: 700;
}

h2 {
	font-size: 16px;
	font-weight: 700;
	line-height: 20px;
}

a {
	color: #00f;
	text-decoration: none;
}

ul {
	padding: 0 0 20px;
	list-style: none;
}

ul li {
	padding-left: 45px;
	position: relative;
}

li:before {
	content: "";
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #000;
	position: absolute;
	z-index: 3;
	left: 6px;
	top: 9px;
}

img {
	max-width: 100%;
	vertical-align: middle;
}

@media all and (max-width:844px) {
	#wrapper {
		margin: 0;
		padding: 16px;
		border: none;
	}

	ul li {
		padding-left: 20px;
	}
}