/* PARALLAX SCROLLING EXPERIMENT
Original Framework Guidance from Jonathan Nicol (f6design.com). 
Thanks for the great tutorial and such
*****************************************************************/


/* 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;
}

/* Styling for body, scrollbars & Additoinal Fonts */
html { 
	overflow-x: auto;
	overflow-y: hidden;
	}
body {
	background-image:url(../img/background/Background.jpg);
	background-size:cover;
	background-attachment:fixed; /*fixed so this is the only color... enable multiple colors with other parallax frames bgs*/
	background-color: #000000;
	overflow: hidden;
	width: 35000px;
	line-height: 1.5;
	color: #000000;
	font-size: 14px;
	font-family: Helvetica, Arial, "Lucida Grande", sans-serif;
}
h1 {
	color: #21a97e;
}
h2 {
	font-size: 28px;
	color:#FFF;
}

img { 
	display:inline;
	}
	
/* Easily hide anything on the page for demo purposes */
.hideme {
	display:none;
}
	
/* Common shared styles
*****************************************************************/

hr {
	margin: 0;
	border: none;
	border-top: 1px solid #3b3b3b;
	border-bottom: 1px solid #3b3b3b;
	height: 3px;
}

/**************************************************************/
/* Page structure */

#wrapper {
	position: relative;
}

#letsgoleft {
	z-index:9999999999999;
	position:fixed;
	right:20px;
	bottom:-10px;
	-webkit-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}


/* Top menu nav */

  #menupieces {
	  text-align:center;
	  z-index:9999;
  }
 
		#mainLogo {
			position:fixed;
			z-index:9999;
			left:17%;
			}
	
  	#texttop {
		opacity:0;
		z-index:1500;
		overflow:hidden;
		position:relative;
		
		/* styling for close drawer */
		-webkit-transition: padding-bottom 0.5s ease-in-out 1.4s, top 0.5s ease-in-out 1.3s, opacity 0.5s ease-in-out 1s;
    	-o-transition: padding-bottom 0.5s ease-in-out 1.4s, top 0.5s ease-in-out 1.3s, opacity 0.5s ease-in-out 1s;
    	-moz-transition: padding-bottom 0.5s ease-in-out 1.4s, top 0.5s ease-in-out 1.3s, opacity 0.5s ease-in-out 1s;
    	transition: padding-bottom 0.5s ease-in-out 1.4s, top 0.5s ease-in-out 1.3s, opacity 0.5s ease-in-out 1s;
		padding-bottom:0px;
		top:0px;
  		}
			#title_roles {
				z-index:90;
				width:968px; 
				left:17%;
				position:fixed;
				margin-top:0px;
				top:0px;
			}
		

/* Open Drawer Hover Action */	
#mainLogo:hover + #texttop { 
	-webkit-transition: opacity 0.7s ease-in-out 0.2s, padding-bottom 0.6s ease-in-out 0.1s;
    -o-transition: opacity 0.7s ease-in-out 0.2s, padding-bottom 0.6s ease-in-out 0.1s;
    -moz-transition: opacity 0.7s ease-in-out 0.2s, padding-bottom 0.6s ease-in-out 0.1s;
    transition: opacity 0.7s ease-in-out 0.2s, padding-bottom 0.6s ease-in-out 0.1s;
 	opacity:1;
	padding-bottom:200px;
}


/************************Nav Dot Menu**************************/
nav#primary {
	z-index: 999999999;
	position: fixed;
	top: 117px;
	left: 16px;
	transform: scale(0.9);
		-ms-transform: scale(0.9);
		-webkit-transform: scale(0.9);
		-o-transform: scale(0.9);
		-moz-transform: scale(0.9);
}
nav#primary li {
	position: relative;
	height: 20px;
}
nav#primary a {
	display: block;
	width: 25px;
	height: 23px;
	text-indent: -9999px;
	background: transparent url('../img/nav-dot.png') 0px 0px no-repeat;
}

/*Navigation dot hover glow & active state */
nav#primary a:hover, nav#primary a.active {
	transition: all ease-out 1s;
	-moz-transition: all ease-out 1s; /* Firefox 4 */
	-webkit-transition: all ease-out 1s; /* Safari and Chrome */
	-o-transition: all ease-out 1s; /* Opera */
	background: transparent url('../img/nav-dot-glow.png') 0px 0px no-repeat;
}
	



/****************IMAGES CONTAINER*********************/
/* Image container for browse panels */
#content {
	z-index: 4;
	position: relative;
	max-width: 100%;
	height: 750px;
	padding-top:0px;
	}
	

/* Drop shadow for images */
.imageshadow img {
	-moz-box-shadow: 1px 1px 10px 2px #000;
	-webkit-box-shadow: 1px 1px 10px 2px #000;
	-o-box-shadow: 1px 1px 10px 2px #000;
	box-shadow: 1px 1px 10px 2px #000;
	}

	/*Vertical Sections*/
		[id^='section-'] {
			padding-left:200px;
			padding-right:100px;
			top:115px;
			z-index:10;
			display:inline;
			position:relative;
		}
			


/* Lux Giraffe logo */		
		#luxsection {
			padding-left:600px;
			left:200px;
			z-index:10;
			position:relative;
			display:inline;
		}


/* Tiny Giraffe Top Right Logo */
#tinygiraffee {
	z-index: 99999999;
	position: fixed;
	right: 0px;
	top: 0px;
	transform: scale(0.35);
	-ms-transform: scale(0.35);
	-webkit-transform: scale(0.35);
	-o-transform: scale(0.35);
	-moz-transform: scale(0.35);
	background:url(../img/parallax/luxcard/minilux.png);
}

#tinygiraffee:hover {
	background:url(../img/parallax/luxcard/minilux_brite.png);
}
#tinygiraffee:active {
	background:url(../img/parallax/luxcard/minilux_brite.png);
}

/* Clouds Slow */
#parallax-bg1 {
	z-index: 1;
	position: fixed;
	left: 0px;
	margin-left: -50px;
	top: 0;
	height: 100%;
	width: 960px;
	pointer-events:none;
	}

	#bg1-1 {
		position: absolute;
		top: -200px;
		left: -275px;
		}
	#bg1-2 {
		position: absolute;
		top: 300px;
		left: -400px;
		}
	#bg1-3 {
		position: absolute;
		top: -100px;
		left: 300px;
		}
	#bg1-4 {
		position: absolute;
		top: 200px;
		left: 900px;
		}
		
	#bg1-5 {
		position: absolute;
		top: 500px;
		left: 1055px;
		}
	#bg1-6 {
		position: absolute;
		top: 580px;
		left: 1220px;
		}
	#bg1-7 {
		position: absolute;
		top: 100px;
		left: 1900px;
		}
	#bg1-8 {
		position: absolute;
		top: 300px;
		left: 80px;
		}
	#bg1-9 {
		position: absolute;
		top: -160px;
		left: 1455px;
		}
	#bg1-10 {
		position: absolute;
		top: -150px;
		left: 2800px;
		}
	#bg1-11 {
		position: absolute;
		top: 200px;
		left: 2580px;
		}
	#bg1-12 {
		position: absolute;
		top: 300px;
		left: 2400px;
		}
	#bg1-13 {
		position: absolute;
		top: 400px;
		left: 3500px;
		}
		
	#bg1-14 {
		position: absolute;
		top: -200px;
		left: 4100px;
		}
		
		
/* Clouds Medium Speed */
#parallax-bg2 {
	z-index: 2;
	position: fixed;
	left: 0px;
	margin-left:500px;
	top: 0;
	width: 1200px;
	pointer-events:none;
	}
	#bg2-1 {
		position: absolute;
		top: 300px;
		left: -330px;
		}
	#bg2-2 {
		position: absolute;
		top: -120px;
		left: -950px;
		}
	#bg2-3 {
		position: absolute;
		top: 160px;
		left: 700px;
		}
	#bg2-4 {
		position: absolute;
		top: 300px;
		left: 600px;
		z-index:0;
		}
	#bg2-5 {
		position: absolute;
		top: 20px;
		left: 1200px;
		}
	#bg2-6 {
		position: absolute;
		top: -75px;
		left: 2300px;
		}
	#bg2-7 {
		position: absolute;
		top: 110px;
		left: 3800px;
		}
	#bg2-8 {
		position: absolute;
		top: -300px;
		left: 2900px;
		}
	#bg2-9 {
		position: absolute;
		top: -100px;
		left: 4300px;
		}
	#bg2-10 {
		position: absolute;
		top: -120px;
		left: 5900px;
		}
	#bg2-11 {
		position: absolute;
		top: -100px;
		left: 3500px;
		}
	#bg2-12 {
		position: absolute;
		top: 300px;
		left: 5500px;
		}
	#bg2-13 {
		position: absolute;
		top: 300px;
		left: 6900px;
		}
	#bg2-14 {
		position: absolute;
		top: -150px;
		left: 6900px;
		}
	#bg2-15 {
		position: absolute;
		top: 100px;
		left: 7900px;
		}
	#bg2-16 {
		position: absolute;
		top: 300px;
		left: 9700px;
		}
	#bg2-17 {
		position: absolute;
		top: -100px;
		left: 9400px;
		}
	#bg2-18 {
		position: absolute;
		top: 100px;
		left: 8750px;
		}

/* Clouds fastest Speed */
#parallax-bg3 {
	z-index: 3;
	position: fixed;
	left: 0px;
	margin-left:500px;
	top: 0;
	width: 1200px;
	pointer-events:none;
	}
	#bg3-1 {
		position: absolute;
		top: 500px;
		left: -100px;
		}
	#bg3-2 {
		position: absolute;
		top: -150px;
		left: 1600px;
		}
	#bg3-3 {
		position: absolute;
		top: -100px;
		left: 3200px;
		}
	#bg3-4 {
		position: absolute;
		top: 400px;
		left: 5300px;
		}
	#bg3-5 {
		position: absolute;
		left: 5200px;
		}		
	#bg3-6 {
		position: absolute;
		top: 400px;
		left: 5800px;
		}
	#bg3-7 {
		position: absolute;
		top: -200px;
		left: 6800px;
		}
	#bg3-8 {
		position: absolute;
		top: 400px;
		left: 8700px;
		}
	#bg3-9 {
		position: absolute;
		top: 430px;
		left: 9900px;
		}
	#bg3-10 {
		position: absolute;
		top: -300px;
		left: 13000px;
		}
	#bg3-11 {
		position: absolute;
		top: 300px;
		left: 12750px;
		}
	#bg3-12 {
		position: absolute;
		top: 110px;
		left: 14600px;
		}
	#bg3-13 {
		position: absolute;
		top: 300px;
		left: 15520px;
		}
