/* 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;
	height: 500px;  /* !!!!! SPECIFY A SMALLER HEIGHT IF IT KEEPS LETTING YOU SLIDE IT UP !!!!!!!!!! */
	width: 14000px;
	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;
	}
	
	
	
/* Shared styles 
*****************************************************************/
/*quick hide for demos*/
.hideme {
	display:none;
}
	
hr {
	margin: 0;
	border: none;
	border-top: 1px solid #3b3b3b;
	border-bottom: 1px solid #3b3b3b;
	height: 3px;
}

/**************************************************************/


/* Page structure */
#wrapper {
	position: relative;
}

/* Top menu nav */
  #menupieces {
	  text-align:center;
	  z-index:99999999;  
  }
 
	#mainLogo {
		position: fixed;
		z-index:999999999;
		left:-200px;			/*shifted for shrink*/
		top:-50px;				/*shifted for shrink*/
		transform: scale(0.5);
		-ms-transform: scale(0.5);
		-webkit-transform: scale(0.5);
		-o-transform: scale(0.5);
		-moz-transform: scale(0.5);
	}
	
  	#texttop {
  		opacity:0; 
		overflow:hidden;
		/* styling for close drawer */
		-webkit-transition: margin-top 0.5s ease-in-out 1.3s, top 0.5s ease-in-out 1.3s, opacity 0.5s ease-in-out 1s;
    	-o-transition: margin-top 0.5s ease-in-out 1.3s, top 0.5s ease-in-out 1.3s, opacity 0.5s ease-in-out 1s;
    	-moz-transition: margin-top 0.5s ease-in-out 1.3s, top 0.5s ease-in-out 1.3s, opacity 0.5s ease-in-out 1s;
    	transition: margin-top 0.5s ease-in-out 1.3s, top 0.5s ease-in-out 1.3s, opacity 0.5s ease-in-out 1s;
		margin-top:-55px;
		position:relative;
		height:0px;
		top:-45px;
  		}
		
@media screen and (-webkit-min-device-pixel-ration:0) {
	#title_roles {
		margin-top:0px;
		
	}
}
		
		
	/* fix for mozilla positioning */		
	@-moz-document url-prefix() {
		#texttop {
			margin-top: -110px;
		}
	}
	
			#title_roles {
				z-index:90;
				position:fixed;
				padding-bottom:0px;
				left:-200px;
				top:-50px;
				transform: scale(0.5);
				-ms-transform: scale(0.5);
				-webkit-transform: scale(0.5);
				-o-transform: scale(0.5);
				-moz-transform: scale(0.5);
			}
		

/* Open Drawer Hover Action */	
#mainLogo:hover + #texttop { 
	-webkit-transition: margin-top 0.5s ease-in-out, top 0.5s ease-in-out, opacity 0.7s ease-in-out 0.2s;
    -o-transition: margin-top 0.5s ease-in-out, top 0.5s ease-in-out, opacity 0.7s ease-in-out 0.2s;
    -moz-transition: margin-top 0.5s ease-in-out, top 0.5s ease-in-out, opacity 0.7s ease-in-out 0.2s;
    transition: margin-top 0.5s ease-in-out, top 0.5s ease-in-out, opacity 0.7s ease-in-out 0.2s;
 	opacity:1;
	margin-top:20px;
	top:-50px;
}

#contact {
	transform: scale(0.5);
	-ms-transform: scale(0.5);
	-webkit-transform: scale(0.5);
	-o-transform: scale(0.5);
	-moz-transform: scale(0.5);
}
@-moz-document url-prefix() {
	#mainLogo:hover + #texttop {
		top:-50px;
	}
}




/************************Nav Dot Menu**************************/
nav#primary {
	z-index: 99999;
	position: fixed;
	top: -6px;			/*** Altered for shrink ***/
	left: 16px;
	margin-top: -40px;
	transform: scale(0.5);
	-ms-transform: scale(0.5);
	-webkit-transform: scale(0.5);
	-o-transform: scale(0.5);
	-moz-transform: scale(0.5);
}
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;
	transform: scale(0.5);
	-ms-transform: scale(0.5);
	-webkit-transform: scale(0.5);
	-o-transform: scale(0.5);
	-moz-transform: scale(0.5);
}

/*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;
	transform: scale(0.5);
	-ms-transform: scale(0.5);
	-webkit-transform: scale(0.5);
	-o-transform: scale(0.5);
	-moz-transform: scale(0.5);
}
nav#primary h1 {
	position: absolute;
	left: 20px;
	top: -7px;
	display: none;
	padding: 2px 6px 3px 7px;;
	color: #fff;
	border:solid;
	border-width:thin;
	white-space: nowrap;
	-moz-box-shadow: 5px 5px 5px #000;
	-webkit-box-shadow: 5px 5px 5px #000;
	box-shadow: 5px 5px 5px #000;
	background: transparent url('../img/nav-arrow.png') 100% 50% no-repeat;
	}
	

/* Parallax segment with the fog pieces */
#content {
	z-index: 4;
	position: relative;
	max-width: 14000px; /* !!!!! must match body width !!!!!! */
	max-height: 700px;
	padding: 0 10px;
	margin: 0 auto;
	line-height: 1.7;
	
	}
	
	#content h1 {
				margin: 0 0 25px 0;
				font-size: 60px;
				font-family: Georgia, serif;
				font-weight: normal;
				line-height: 65px;
				}

/* Drop shadow for images */
.imageshadow img {
	-moz-box-shadow: 1px 1px 10px 2px #000;
	-webkit-box-shadow: 1px 1px 10px 2px #000;
	box-shadow: 1px 1px 10px 2px #000;
	
	/*added shrink for all images to make easier to see*/
		transform: scale(0.5);
	-ms-transform: scale(0.5);
	-webkit-transform: scale(0.5);
	-o-transform: scale(0.5);
	-moz-transform: scale(0.5);
	}

	/*Vertical Sections*/
		#section-1, #section-2, #section-3,
		#section-4, #section-6, #section-7,
		#section-8, #section-11,#section-12,
		#section-13,#section-16,#section-17,
		#section-19,#section-25,#section-26 {
			padding-top:0px;		/***Shrunk for tiny size***/
			padding-left: 0px;		/***Shrunk for tiny size***/
			width: 500px;
			z-index:10;
			}
		#section-1 {
			position: absolute;
			top: 0px;
			left:0px;
			}
		
		#section-2 {
			position: absolute;
			top:0px;
			left: 300px;
			}
		#section-3 {
			position: absolute;
			top: 0px;
			left: 600px;
			}
		#section-4 {
			position: absolute;
			top: 0px;
			left: 900px;
			}
		#section-6 {
			position: absolute;
			top: 0px;
			left: 1750px;
			}
		#section-7 {
			position: absolute;
			top: 0px;
			left: 2050px;
			}
		#section-8 {
			position: absolute;
			top: 0px;
			left: 2350px;
			}
		#section-11 {
			position: absolute;
			top: 0px;
			left: 3750px;
		}
		#section-12 {
			position: absolute;
			top: 0px;
			left: 4050px;
		}
		#section-13 {
			position: absolute;
			top: 0px;
			left: 4350px;
		}
		#section-16 {
			position: absolute;
			top: 0px;
			left: 5750px;
		}
		#section-17 {
			position: absolute;
			top: 0px;
			left: 6050px;
		}
		#section-19 {
			position: absolute;
			top: 0px;
			left: 6900px;
		}
		#section-25 {
			position: absolute;
			top: 0px;
			left: 10100px;
			}
		#section-26 {
			position: absolute;
			top: 0px;
			left: 10400px;
			}
		
	/* Horizontal Sections - Sect 22 & 24 is special 1067 size */
		#section-5, #section-9, #section-10,
		#section-14, #section-15, #section-18,
		#section-20, #section-21, #section-23,
		#section-27, #section-28, #section-29,
		#section-30 {
			padding-top: 0px;		/***Shrunk for tiny size***/
			padding-left: 0	px;		/***Shrunk for tiny size***/
			width: 425px;
			z-index:10;
			}
			
	/* Since 22 & 24 are 1067px wide they have padding specified internally */
		#section-5 {
			position: absolute;
			top: 0px;
			left: 1025px;
			}
		#section-9 {
			position: absolute;
			top: 0px;
			left: 2475px;
			}
		#section-10 {
			position: absolute;
			top: 0px;
			left: 3025px;
			}
		#section-14 {
			position: absolute;
			top: 0px;
			left: 4475px;
			}
		#section-15 {
			position: absolute;
			top: 0px;
			left: 5025px;
			}
		#section-18 {
			position: absolute;
			top: 0px;
			left: 6175px;
			}
		#section-20 {
			position: absolute;
			top: 0px;
			left: 7025px;
			}
		#section-21 {
			position: absolute;
			top: 0px;
			left: 7575px;
			}
		#section-22 {
			position: absolute;
			top: 0px;
			padding-top: 0px;
			padding-left: 0px;
			left: 8150px;
			width: 528px;
			z-index:20;
			}
		#section-23 {
			position: absolute;
			top: 0px;
			left: 8800px;
			}
		#section-24 {
			position: absolute;
			top: 0px;
			left: 9300px;
			padding-top: 0px;
			padding-left: 0px;
			width: 528px;
			z-index:20;
			}
		#section-27 {
			position: absolute;
			top: 0px;
			left: 10550px;
			}
		#section-28 {
			position: absolute;
			top: 0px;
			left: 11125px;
			}
		#section-29 {
			position: absolute;
			top: 0px;
			left: 11700px;
			}
		#section-30 {
			position: absolute;
			top: 0px;
			left: 12275px;
			}

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

/* 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;
		top: 0px;
		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;
		}
		
/*Begin code for brad business card*/
#parallax-luxcard {
	z-index: 10000;
	position: fixed;
	left: 0px;
	top: 0;
	height: 600px;
	width: 960px;
	transform: scale(0.7);
	-ms-transform: scale(0.7);
	-webkit-transform: scale(0.7);
	-o-transform: scale(0.7);
	-moz-transform: scale(0.7);
}
	#luxlogo {
		opacity:1;
		z-index:9000;
		position: absolute;
		top: 110px;
		left: 11400px;
	}
	#invisiblebutton {
		opacity:1;
		z-index:10001;
		position: absolute;
		top: 110px;
		left: 11400px;
	}
	#luxbusinesscard {
		opacity:0;
		z-index:10000;
		-webkit-transition: top 0.5s ease-in-out 1.5s, opacity 0.7s ease-in-out 1.4s;
    	-o-transition: top 0.5s ease-in-out 1.5s, opacity 0.7s ease-in-out 1.4s;
    	-moz-transition: top 0.5s ease-in-out 1.5s, opacity 0.7s ease-in-out 1.4s;
    	transition: top 0.5s ease-in-out 1.5s, opacity 0.7s ease-in-out 1.4s;
		position: absolute;
		top: -300px;
		left: 11400px;
	}

#invisiblebutton:hover + #luxbusinesscard { 
		-webkit-transition: top 0.7s ease-in-out, opacity 0.7s ease-in-out 0.2s;
    	-o-transition: top 0.7s ease-in-out, opacity 0.7s ease-in-out 0.2s;
    	-moz-transition: top 0.7s ease-in-out, opacity 0.7s ease-in-out 0.2s;
    	transition: top 0.7s ease-in-out, opacity 0.7s ease-in-out 0.2s;
		position:absolute;
		opacity:1;
		top:110px;
}

#tinygiraffee {
	z-index: 2000000;
	position: fixed;
	right: -17px;
	top: -23px;
	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);
}