/* 
	Title:		Master styles for screen media
	Author: 	David Palmer
*/




/* reset styles 
--------------------------------------------- */
	
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, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	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;
	}
	
:focus {
	outline: 0;
	}

table {
	border-collapse: collapse;
	border-spacing: 0;
	}
	
	
	
	
	/* main styles
--------------------------------------------- */


	/* page structure
--------------------------------------------- */

body {
	background: #FFFFFF;
	color: #000;
	color: rgba(250,250,250,.1);
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	}

#wrap {
	margin: 0 ;
	padding: 0 ;
	width: 100%;
	height: 100%;
	}
	
#header {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 5%;
	-webkit-box-sizing: border-box;
	-moz-boc-sizing: border-box;
	box-sizing: border-box;
	}
	
		
	
#content {
	margin: 0;
	width: 100%;
	height: 95%;
	padding: 0 0 0 0;
	-webkit-box-sizing: border-box;
	-moz-boc-sizing: border-box;
	box-sizing: border-box;
	}
	
#logoLarge {
	margin: 10% 30% 2% 30%;
	width: 40%;
	padding: 0;
	float: none;
	-webkit-box-sizing: border-box;
	-moz-boc-sizing: border-box;
	box-sizing: border-box;
	}
	
#logoTablet {
	margin: 30% 15% 2% 15%;
	width: 70%;
	padding: 0;
	float: none;
	display: none;
	-webkit-box-sizing: border-box;
	-moz-boc-sizing: border-box;
	box-sizing: border-box;
	}
	
#logoPhone {
	margin: 2% 15% 2% 15%;
	width: 70%;
	padding: 0;
	float: none;
	display: none;
	-webkit-box-sizing: border-box;
	-moz-boc-sizing: border-box;
	box-sizing: border-box;
	}
	
.group {
	-webkit-box-sizing: border-box;
	-moz-boc-sizing: border-box;
	box-sizing: border-box;
	}
		
.extra {
	padding: .5em;
	}

	
figure img {max-width: 100%;
}


hr, .hide {
	display: none;
}

a img {
	border: none;
}

/* self-clear floats */
	
.group:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	}
	
	
	
/* responsiveness
--------------------------------------------- */

/*add media-specific styles here for phones an tablets*/

	
@media screen and (max-width: 800px) {
	
#logoLarge {
	display: none;
	}
	
#logoTablet {
	display: block;
	}
	
	}
	
/* end max-width 800px
--------------------------------------------- */

@media screen and (max-width: 640px) {
	
#logoTablet {
	display: none;
	}
	
#logoPhone {
	display: block;
	}

	}
	
	/* end max-width 640px
--------------------------------------------- */
	
/* end */
	
	















