/* 
		Eric Meyer's CSS Reset
		http://meyerweb.com/eric/tools/css/reset/ 
		v2.0 | 20110126
   		License: none (public domain)
*/
	
/* It's a good practice to include this in all of your css. It's purpose is to
 reduce browser inconsistencies in things like default line heights, margins and font sizes of headings, and so on.
*/
	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: inherit;
		vertical-align: baseline;
	}
	html {
		font-size: 100%; 
	}
	/* 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;
	}
	
	/* End reset */
	
	
/* ##############   fonts ################ */

@font-face {
    font-family: 'quicksandregular';
    src: url('fonts/quicksand-regular-webfont.eot');
    src: url('fonts/quicksand-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/quicksand-regular-webfont.woff') format('woff'),
         url('fonts/quicksand-regular-webfont.ttf') format('truetype'),
         url('fonts/quicksand-regular-webfont.svg#quicksandregular') format('svg');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'quicksandbold';
    src: url('fonts/quicksand-bold-webfont.eot');
    src: url('fonts/quicksand-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/quicksand-bold-webfont.woff') format('woff'),
         url('fonts/quicksand-bold-webfont.ttf') format('truetype'),
         url('fonts/quicksand-bold-webfont.svg#quicksandbold') format('svg');
    font-weight: normal;
    font-style: normal;

}
	
@font-face {
    font-family: 'quicksandlight';
    src: url('fonts/quicksand-light-webfont.eot');
    src: url('fonts/quicksand-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/quicksand-light-webfont.woff') format('woff'),
         url('fonts/quicksand-light-webfont.ttf') format('truetype'),
         url('fonts/quicksand-light-webfont.svg#quicksandlight') format('svg');
    font-weight: normal;
    font-style: normal;
	}



	

	
body {
  		background: #aaa;
  		font-family: "quicksandregular", Helvetica, Arial, sans-serif;
  		font-size: 16px;
  		line-height: 1.6;
  		color: #111;
		width:auto;
	
  		
	
}

header	{width:100%;
		height:80px;}

/*Typo defaults*/

h1	{
	font-size: 72px;color:#fff;
}

h2 {
	font-size:32px;
}

h3 {
	font-size: 28px;
}

h4	{
	font-size: 24px;
}

h5	{
	font-size: 20px;
}

h6	{
	font-size: 16px;
}

p {	margin: 10px 0;}

a {text-decoration: none;}

a:hover {text-decoration: underline;}

.logo	{position:absolute;
		top:20px;
		left:20px;
		width:100px;
		height:100px;
		border-radius:50%;
		box-shadow:3px 3px 3px #666666}

img {max-width:500px;
	text-align:center;
	max-height:auto;
	display:inline-block;
	background-color:#eee;
	box-shadow:2px 3px 7px #333333;}

.center{margin:0 auto;
		width:600px;}


.wrap {margin:0 auto;
	overflow:hidden;}

.wrap:after {content:"";
  display:table;
  clear:both;}



footer	{text-align:center;
clear:both;margin-top:40px;}

/* when we set a width, we want a that item to stay that width regardless of padding */

*, *:after, *:before{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
