/* ======= RESET & SETUP ======= */

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, 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;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	font-family:"Gill sans", sans-serif;
}
ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-spacing:5px;
	cell-spacing:10px;
	
}


a{
	text-decoration:none;
	}
	
html{
	font-size:100%;
	}

html, body{
	height:100%;
	}
	

/* ==== THIS CODE REMOVES THE NEED TO CALCULATE PADDING AND BORDERS FROM THE WIDTH & HEIGHT OF ANY ELEMENT =====*/

* { 
	-moz-box-sizing:border-box; 
	-webkit-box-sizing:border-box; 
	box-sizing:border-box;
	}
	
#wrapper {
	width:1024px:
	margin:0 auto;
	background-color:#333333;
	}
	
header {
		width:100%;
		background-color:#000;
		}
.logo{
		font-style:italic;
		float:right;
		padding:30px;
		}		
header h1 {
		width:50%;
		float:right;
		padding:10px;
		
		font-style:bold;
		color:#fff;
		letter-spacing:5px;
		}

		
header h1, .navigation {
		height:55px;
		}
		
.mainArticle{
		margin:20px 20px 20px 20px;
		}

		
.mainSection{
		float:left;
	
		width:60%;
		
		}
		
.mainSection, .sidebar{
	
		background-color:#fff;
		padding:20px;
		
		overflow:auto;
		}
		
.mainSection h2, .sidebar h2{
		font-size:20px;
		font-weight:bold;
		text-transform:uppercase;
		color:#808080;
		margin:10px, 0,  0, 10px;
		border-bottom: solid #808080;
		padding-bottom:50px;
		}

.mainSection p, .sidebar p{
		font-size:14px;
		line-height:140%;
		margin:20px; 20px; 10px;
		}
		
.mainSection i, .sidebar i{
		font-size:14px;
		}

.sidebar{
		float:right;
		width:35%;
		font-size:14px;
		font-color:#000;
		background-color:#fff;
		overflow:auto;
		}
		
.mainsection img{
		max-width:50%;
		}
				
.sidebarFig img{	
		max-width:100%;
		}
		
.sidebarFig figcaption{
		font-size:14px;
		font-style:italic;
		}
		
footer{
		clear:both;
		width:100%;
		height:100px;
		background-color:#f2f2f2;
		font-size:12px;
		font-weight:bold;
		text-transform:uppercase;
		color:#808080;
		margin:50px:
		border: solid #000000;
		padding:20px;
		}
	



		
