/* Justice _ Williams remix of Parallax by J.Nicol as below:

   PARALLAX SCROLLING EXPERIMENT
   Master Styles
   Author: Jonathan Nicol (f6design.com)
   Thanks Jonathan for this very cool start!
*****************************************************************/


/* Global reset
   http://meyerweb.com/eric/tools/css/reset/ 
*****************************************************************/

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-size: 100%;
	font: inherit;
	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;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Extended base styles (site specific)
*****************************************************************/

html { 
	overflow-y: scroll; /* always force a scrollbar in non-IE */
	}
body {
	background: url('../img/paper.jpg') no-repeat fixed center;
	background-size: 100%;
	overflow-x: hidden;
	height: 13000px;
	line-height: 1.5;
	color: #000;
	font-size: 14px;
	font-family: Arial,sans-serif;
}


/* Page structure
*****************************************************************/

#wrapper {
	position: relative;
	
}


/* Parallax
*****************************************************************/

/* content */
#content {
	z-index: 4;
	position: relative;
	max-width: 2px;
	padding: 0 10px;
	margin: 0 auto;
	height: 6000px;	
	}
/* foreground */
#parallax-bg3 {
	z-index: 3;
	position: fixed;
	left: 50%;
	top: -100px;
	width:653px;
	margin-left: -326.5px;
	}
#parallax-bg3 img {
	display: block;
	margin-left: auto;
	margin-right:auto;
	position: absolute;
	top: -100px;
	left: 0px;
	}
/*midground*/
#parallax-bg2 {
	z-index: 2;
	position: fixed;
	left: 50%;
	top: 0px;	
	width: 653px;
	margin-left: -326.5px;
	}
#parallax-bg2 img {
	display: block;
	margin-left: auto;
	margin-right:auto;
	position: absolute;
	top: 0px;
	left: 0px;
	}
