html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* OUR CODE STARTS HERE */


body
{
	font-family: Helvetica, Arial;
}

#container
{
	width: 640px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	margin-bottom: 50px;
}

#top
{
	margin-bottom: 30px;
}

#top h1
{
	font-size:32px;
	font-weight: bold;
	margin-bottom: 20px;
}

#top p
{
	line-height: 1.4;
	margin-bottom: 20px;
}

#top img
{
	width: 100%;
	margin-bottom: 30px;
}

div.square
{
	width:320px;
	height:320px;
	background-color: #f3f3f3;
	display:inline-block;
	vertical-align: top;
}

div.square_text
{
	padding:25px;
}

div.square.white
{
	background-color: #fff;
}

div.square h2
{
	font-size:25px;
	font-weight: bold;
	margin-bottom: 15px;
}

div.square p
{
	font-size:14px;
	line-height: 1.4;
	margin-bottom: 10px;
}

div.square img
{
	width: 100%;
}

@media screen and (max-width:640px){
	#container {
		width:320px;
	}
	
	div.square {
		height:auto;
	}
}

@media screen and (min-width:1280px){
	#container {
		width:1280px;
	}
}