/* Add the CSS reset */
@import url('normalize.css');

body { 
	font-size: 62.5%;  /*  sets the font to 10px for easy calculations */
	font-family: Arial, Helvetica, sans-serif;
}
/* Add the selector name for the page. */
body.home {
	position: relative;
	width: 96em;
	margin: 5px auto;
	background-color: #ffd;
}

img {
	width: 100%;
}

h1 {
	position: absolute;
	top: -10000px;
	left: 0;
}


/* Add the selector name for your navigation area. */
nav {
	position: relative;
	top: -.3em;
	left: 0;
	height:  3em;
	background-color: #600;
	padding-left:  10em;
	padding-top: .5em;
	margin-bottom: 2em;
}

/* Add the correct selector name for the p tag in your navigation area. */
nav p {
	margin-top: .2em;
	font-size: 2em;
	color: #ffd;
}

/* Add the correct selector name for the right column content area.(Column with the picture.) */
aside.right {
	float: right;
	width:  22em;
	margin-right: 1em;
	border: 1px solid black;
	-webkit-box-shadow: 10px 10px 15px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 10px 10px 15px 0px rgba(0,0,0,0.75);
	box-shadow: 10px 10px 15px 0px rgba(0,0,0,0.75);
}

/* Add the correct selector name for the p tag in the right column of the page. */
aside.right p {
	text-align: center;
}

/* Add the selector name for the center content area. */
main {
	float: right;
	width: 46em;
	margin-right: 2em;
	padding-bottom:  2em;
}

/* Add the selector name for the p tag in the center content area. */
main p {
	font-size: 1.6em;
	line-height: 1.4em;
	margin-bottom: 1em;
}

h2 { 
	font-size: 2.4em;
	padding-bottom: .5em;
}

h3 {
	font-size:  1.8em;
	text-align: center;
}

/* Add the selector name for the left column content area. */
aside.left {
	float: left;
	width: 22em;
	margin-left: 1em;
	padding-bottom: 2em;
}

/* Add the selector name for the p tag in the left column content area. */
aside.left p {
	font-size: 1.4em;
	line-height: 1.4em;
	color: #ffd;
	font-weight: bold;
	padding: .5em .5em 1em;	
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#336600+0,336600+100&1+0,0.5+100 */
	background: -moz-linear-gradient(top, rgba(51,102,0,1) 0%, rgba(51,102,0,0.5) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(51,102,0,1) 0%,rgba(51,102,0,0.5) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(51,102,0,1) 0%,rgba(51,102,0,0.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	/*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#336600', endColorstr='#80336600',GradientType=0 );  IE6-9...Breaks css validation */
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

/* Add the selector for the footer area of the page. (Area with the copyright.) */
footer {
	clear: both;
	height: 3em;
	background-color: #360;
	padding-left: 10em;
	padding-top: 1.2em;
	margin-top: 3em;
}

/* Add the selector for the p tag in the footer area. */
footer p{
	color: #ffd;
}

div.doubleBorder {
	border-top-style: double; 
	border-bottom-style: double; 
	border-color: #4b1103;
}
div.doubleBorder h3{
	margin: 2px; 
}
