/* So the HTML5 structural tags work in IE */
article, aside, figure, footer, header, nav, section {
	display: block;
}

/*even <p></p> will have no margin*/
* {
	margin: 0;
	padding: 0;
}

/*step 3c*/
html {
	/*background-image: -moz-linear-gradient(left, #6D7A54 0%, #C1C6B6 100%);
	background-image: -webkit-linear-gradient(left, #6D7A54 0%, #C1C6B6 100%);	
	background-image: -o-linear-gradient(left, #6D7A54 0%, #C1C6B6 100%);*/
	background-image: linear-gradient(to right, #6D7A54 0%, #C1C6B6 100%);
}

/* the styles for the elements */
body {
	font-family: Verdana, Arial, Helvetica; 
    font-size: 87.5%;
	width: 962px;		
	
	background-color: white;
	margin: 15px auto;
	padding: 15px 25px;
	border: 1px solid black;
}
 

