* {
	font-family: Calibri, Arial;
}
		
.confirmButton {
	background: #D5E1F7;			
	border: 1px gray solid;
	padding: 10px;
	width: 350px;
	margin: 0 auto;
	letter-spacing: 0.1em;
	text-align: center;
}

.confirmButton a {
	color: navy;
	text-decoration: none;
}

.confirmButton a:hover {
	font-weight: bold;
}

.section {
	font-weight: bold;
	margin-bottom: 20px;
}

ol {
		counter-reset: item;				
}

ol li {
		display: block;
		position: relative;
		margin-bottom: 20px;
		text-align: justify;
}

ol li:before {
		content: counters(item, ".")".";
		counter-increment: item;
		position: absolute;
		margin-right: 100%;
		right: 20px; 
}