/* 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: 750px;
	width: 19800px;
	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;
	-webkit-transform: scale(0.75);
	}
	
	
/* 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:1000;  
  }
 
	#mainLogo {
		position: fixed;
		z-index:9999999999;
		left:-7%;			/*shifted for shrink*/
		top:-40px;			/*shifted for shrink*/
		transform: scale(0.75);
		-ms-transform: scale(0.75);
		-webkit-transform: scale(0.75);
		-o-transform: scale(0.75);
		-moz-transform: scale(0.75);
	}
	
  	#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:0px;	/*Moves the pictures down and up*/
		position:relative;
		height:0px;			/*Makes safari shift it downward if it isn't specified*/ 
		top:-20px;
		
  		}

/* fix for mozilla positioning */		
	@-moz-document url-prefix() {
		#texttop {
			margin-top: -110px;
	}
	
	#title_roles {
				z-index:90;
				position:fixed;
				padding-bottom:0px;
				left:-7%;
				transform: scale(0.75);
				-ms-transform: scale(0.75);
				-webkit-transform: scale(0.75);
				-o-transform: scale(0.75);
				-moz-transform: scale(0.75);
			}
		

/* 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:150px;
	top:-180px;
	
}

@media screen and (-webkit-min-device-pixel-ration:0) {
	#title_roles {
		margin-left:-50px;
		
	}
}


/* shrinks the image map on the top mainLogo layer */
#contact {
	transform: scale(0.75);
	-ms-transform: scale(0.75);
	-webkit-transform: scale(0.75);
	-o-transform: scale(0.75);
	-moz-transform: scale(0.75);
}

/* DO NOT ALTER THIS - Firefox has issue with positioning the text down when the margin moves *
 * 					 - so I added a top adjustment so it fixes for firefox.. 				  */
@-moz-document url-prefix() {
	#mainLogo:hover + #texttop {
		margin-top:40px;
		top:-80px;
	}
}

/* DO NOT ALTER THIS - Opera isn't seeing the underlying drop downs so I'm fixing it this way  *
 * 					 - This targets only opera, but ALSO EFFECTS IE7 ...so be careful..i guess */
noindex:-o-prefocus, #mainLogo:hover + #texttop {  /* STILL NOT WORKING FIND WHATS HIDING THE MENU */
	margin-top:200px;
	top:200px;
}



/************************Nav Dot Menu**************************/
nav#primary {
	z-index: 9999999;
	position: fixed;
	top: 68px;
	left: 16px;
	margin-top: -40px;
	transform: scale(0.75);
	-ms-transform: scale(0.75);
	-webkit-transform: scale(0.75);
	-o-transform: scale(0.75);
	-moz-transform: scale(0.75);
}
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;
}
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: 19800px; /* 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;
	
	/* IMAGE SHRINK */
	transform: scale(0.75);
	-ms-transform: scale(0.75);
	-webkit-transform: scale(0.75);
	-o-transform: scale(0.75);
	-moz-transform: scale(0.75);
	}

	/*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: 130px;
			padding-left:0px;
			width: 350px;
			z-index:10;
			}
		#section-1 {
			position: absolute;
			top: 0px;
			left:0px;
			}
		
		#section-2 {
			position: absolute;
			top:0px;
			left: 500px;
			}
		#section-3 {
			position: absolute;
			top: 0px;
			left: 1000px;
			}
		#section-4 {
			position: absolute;
			top: 0px;
			left: 1500px;
			}
		#section-6 {
			position: absolute;
			top: 0px;
			left: 3000px;
			}
		#section-7 {
			position: absolute;
			top: 0px;
			left: 3500px;
			}
		#section-8 {
			position: absolute;
			top: 0px;
			left: 4000px;
			}
		#section-11 {
			position: absolute;
			top: 0px;
			left: 6500px;
		}
		#section-12 {
			position: absolute;
			top: 0px;
			left: 7000px;
		}
		#section-13 {
			position: absolute;
			top: 0px;
			left: 7500px;
		}
		#section-16 {
			position: absolute;
			top: 0px;
			left: 10000px;
		}
		#section-17 {
			position: absolute;
			top: 0px;
			left: 10500px;
		}
		#section-19 {
			position: absolute;
			top: 0px;
			left: 12000px;
		}
		#section-25 {
			position: absolute;
			top: 0px;
			left: 17700px;
			}
		#section-26 {
			position: absolute;
			top: 0px;
			left: 18200px;
			}
		
	/* 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: 130px;
			padding-left: 0px;
			width: 600px;
			z-index:10;
			}
			
	/* Since 22 & 24 are 1067px wide they have padding specified internally */
		#section-5 {
			position: absolute;
			top: 0px;
			left: 2000px;
			}
		#section-9 {
			position: absolute;
			top: 0px;
			left: 4500px;
			}
		#section-10 {
			position: absolute;
			top: 0px;
			left: 5500px;
			}
		#section-14 {
			position: absolute;
			top: 0px;
			left: 8000px;
			}
		#section-15 {
			position: absolute;
			top: 0px;
			left: 9000px;
			}
		#section-18 {
			position: absolute;
			top: 0px;
			left: 11000px;
			}
		#section-20 {
			position: absolute;
			top: 0px;
			left: 12500px;
			}
		#section-21 {
			position: absolute;
			top: 0px;
			left: 13500px;
			}
		#section-22 {
			position: absolute;
			top: 0px;
			left: 14400px;
			padding-top: 130px;
			padding-left: 0px;
			width: 750px;
			z-index:20;
			}
		#section-23 {
			position: absolute;
			top: 0px;
			left: 15650px;
			}
		#section-24 {
			position: absolute;
			top: 0px;
			left: 16500px;
			padding-top: 130px;
			padding-left: 0px;
			width: 750px;
			z-index:20;
			}
		#section-27 {
			position: absolute;
			top: 0px;
			left: 18700px;
			}
		#section-28 {
			position: absolute;
			top: 0px;
			left: 19700px;
			}
		#section-29 {
			position: absolute;
			top: 0px;
			left: 20700px;
			}
		#section-30 {
			position: absolute;
			top: 0px;
			left: 21700px;
			}

/* 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;
}
	#luxlogo {
		opacity:1;
		z-index:9000;
		position: absolute;
		top: 200px;
		left: 11500px;
	}
	#invisiblebutton {
		opacity:1;
		z-index:10001;
		position: absolute;
		top: 200px;
		left: 11500px;
	}
	#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: -200px;
		left: 11500px;
	}

#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:200px;
}

#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);
}