* {
  padding: 0;
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  font-size: 21px;
  color: #333;
  background: #e5e5e5;
  font-family: arial, tahoma, verdana;	
  line-height: 125%;
}

#wrapper {
    background-color: #fff;
	display: block;
	margin: 0 auto;
	width: 760px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -267px;
	margin-left: -380px;
	-webkit-box-shadow: 0px 0px 15px rgba(0,0,0,0.35);
	-moz-box-shadow: 0px 0px 15px rgba(0,0,0,0.35);
	box-shadow: 0px 0px 15px rgba(0,0,0,0.35);
}

.header {
	box-sizing: border-box;
	height: 41px;

	margin: 16px 0 0 24px;
}

.content {
	display: block;
	width: 100%;
	background-color: #fff;
}

.content img {
    float: left;
    width: 34%;
    box-sizing: border-box;
    padding-left: 41px;
    padding-top: 24px;
}

.content .text {
	float: left;
	width: 66%;
	box-sizing: border-box;
	padding: 39px 23px 0 40px;
}

.clear {
	clear: both;
}

.footer {
	height: 6px;
	width: 100%;
	background-color: #ca0414;
	box-sizing: border-box;
	display: block;
	padding: 6px 30px 0 30px;
}

p {
	margin-bottom: 10px;
}

a,
a:link,
a:hover,
a:visited {
	color: #ca0414;
}

@media (max-width: 830px) {
	#wrapper {
	    height: 100%;
	    width: 100%;
	    position: relative;
	    top: 0px;
	    left: 0px;
	    margin-top: 0;
	    margin-left: 0px;
	    box-shadow: none;
	    background: #fff;
	}

	.content img {
		display: none;
	}

	.content .text {
	    float: none;
	    width: 100%;
	    box-sizing: border-box;
	    padding: 30px;
	}

	.footer {
		position: absolute;
		bottom: 0px;
		left: 0px;
		padding: 6px 4px 0;
	}

}