/* PARALLAX SCROLLING EXPERIMENT
   Master Styles
   Author: Jonathan Nicol (f6design.com)
*****************************************************************/


/* 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;
}

::selection {
	background: #f0542f; /* Safari */
	color: #fff;
	}
::-moz-selection {
	background: #f0542f; /* Firefox */
	color: #fff;
}

/* Extended base styles (site specific)
*****************************************************************/

html { 
	overflow-y: scroll; /* always force a scrollbar in non-IE */
	}
	
body {
	
	background: #f9f5f0 url(../img/bg-full.jpg) center 0;
	background-repeat: repeat-x;*/
	overflow-x: visible;
	color: #000;
	
	font-size: 14px;
	line-height: 16px;
	font-family: 'Lora', serif; font-style:italic;
}

h1 {
    font-family: futura-pt-1,futura,arial,sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
	
}

a, a:link,
a:active,
a:visited {
	-webkit-transition: all 0.25s ease-out;
	-moz-transition: all 0.25s ease-out;
	-o-transition: all 0.25s ease-out;
	transition: all 0.25s ease-out;
	color:#fff;
	outline: none;
	text-decoration:none;
	font-family: 'Lora', serif; font-style:italic;
	
	}
	a:hover { 
		color:#fff;
		background: #EBB512;
		}
img { 
	display:block;
	}


/* Page structure
*****************************************************************/

#wrapper {
	position: relative;
}


/* Nav
*****************************************************************/

nav#primary {
	z-index: 5000;
	position: fixed;
	top: 50%;
	right: 16px;
	margin-top: -40px;
}
nav#primary li {
	position: relative;
	height: 20px;
}
nav#primary a {
	margin:5px 0px 5px 0px;
	display: block;
	width: 22px;
	height: 20px;
	text-indent: -9999px;
	z-index:100000000000000;
	background: transparent url('../img/nav-dot.png') 4px -16px no-repeat;
	
	outline:none; text-decoration:none;
	-webkit-transition: all 0s ease-out;
	-moz-transition: all 0s ease-out;
	-o-transition: all 0s ease-out;
	transition: all 0s ease-out;
	font-family: 'Lora', serif; font-style:italic;
}
nav#primary a:hover, nav#primary a.active {
	background: transparent url('../img/nav-dot.png') 4px 4px no-repeat;
}
nav#primary h1 {
	position: absolute;
	right: 22px;
	top: -7px;
	display: none;
	padding: 3px 10px;
	color: #fff;
	white-space: nowrap;
	background: #078b97;
	
	box-shadow: 0 0 10px rgba(128, 78, 34, 0.5);
	
	font-size: 12px;
	font-family: futura-pt-1, Futura, Arial, sans-serif;
	line-height: 28px;
	letter-spacing: 2px;
	font-weight: bold;
	text-transform: uppercase;
	
	}
	
	.text-color-top{ color:#fff;}
nav.next-prev {
	margin: -5px auto;
    width: 44px;
	}
	a.prev,
	a.next {
		display: block;
		width: 22px;
		height: 16px;
		text-indent: -9999px;
		float: left;
		
			-webkit-transition: all 0s ease-out;
		-moz-transition: all 0s ease-out;
		-o-transition: all 0s ease-out;
		transition: all 0s ease-out;
	
		}
	a.prev {
		margin: 0 auto 5px auto;
		background: transparent url('../img/scroll-arrow-up.png') 0 0 no-repeat;
		}
		a.prev:hover {
			background: transparent url('../img/scroll-arrow-up.png') 0 -16px no-repeat;
			}
	a.next {
		margin: 2px auto 0 auto;
		background: transparent url('../img/scroll-arrow-down.png') -1px -16px no-repeat;
		}
		a.next:hover {
			background: transparent url('../img/scroll-arrow-down.png') -1px 0 no-repeat;
			}
	
	
	.next2 a {
		margin: -5px auto 0 auto;
		background: transparent url('../img/scroll-arrow-down.gif') 0 0 no-repeat;
		display: block;
		width: 22px;
		height: 32px;
		text-indent: -9999px;
		
		}
		.next2 a:hover {
			background: transparent url('../img/scroll-arrow-down-hover.gif') 0 0 no-repeat; display:block;
			
			}
			
			
			
			

/* Parallax
*****************************************************************/

/* content */
#content {
	position: relative;
	max-width: 940px;
	height: 3750px;
	padding: 0 10px;
	margin: 0 auto;
	line-height: 1.7;
	text-align: center;
	}
	#content article {
		width: 355px;
		}
		
	#content article h1 {
			margin: 0;
			font-size: 17px;
			font-family: futura-pt-1, Futura, Arial, sans-serif;
			line-height: 28px;
			letter-spacing: 2px;
			font-weight: bold;
			text-transform: uppercase;
			color:#000000;
			
	}
	
	#content article h1 a {
		color: #000;
		padding: 5px 10px;
		cursor: pointer;
		font-family: futura-pt-1, Futura, Arial, sans-serif;
	}
	
	#content article h1 a:hover {
		color: #fff;
	}
	
	article a, article a:link, article a:visited {
		color: #000;
		font-weight: bold;
		cursor: pointer	
		
	}
	
	article a:hover {
		color: #fff;	
	}
		
	#content article p {
	
		 font-family:'Lora', serif;
		 font-style:italic;		
		margin:0 0 20px 0;
		font-size:14px;
		line-height: 21px;
	/*	font-style: normal;*/
		color:#000000;
	}
	
	
	/*#content article {
		width: 355px;
		}
		
	#content article h1 {
			margin: 0;
			font-size: 17px;
			font-family: futura-pt-1, Futura, Arial, sans-serif;
			line-height: 28px;
			letter-spacing: 2px;
			font-weight: bold;
			text-transform: uppercase;
			color:#000000;
			
	}*/
	
	
	
		#scene01-about ,
		#scene02-shop,
		#scene03-studio,
		#scene04-blog,
		#scene05-about,
		#scene06-contact {
			padding-top: 70px;
			z-index: 500;
			left: 50%;
			margin-left: -175px;
			}
		#scene01-about {
			position: absolute;
			top: 0px;
			}
		#scene02-shop {
			position: absolute;
			top: 640px;
			}
		#scene03-studio {
			position: absolute;
			top: 1280px;
			}
				
		#scene04-blog {
			position: absolute;
			top: 1920px;
			}
			
		#scene05-about {
			position: absolute;
			top: 2560px;
			}
			
		#scene06-contact {
			position: absolute;
			top: 3200px;
			}
				



#socialsign {
	left: 763px;
    line-height: 18px;
    position: absolute;
    text-align: left;
    top: 3635px;
    z-index: 1000;
    font-size: 12px;
    width: 120px;

}

#socialsign a {
	color: #000;
	
}

#socialsign a:hover {
	color: #fff;
}


/* foreground  */
#parallax-bg3 {
	z-index: 100;
	position: fixed;
	left: 50%; /* align left edge with center of viewport */
	top: 0;
	width: 940px;
	margin-left: -470px; /* move left by half element's width */
	}
		
	/* counter */	
	#bg3-2 {
		left: -5px;
    	position: absolute;
    	top: 1891px;
		}
		
	/*chair*/	
	#bg3-3 {
		left: -40px;
    	position: absolute;
    	top: 3565px;
		}
		
	/*suit*/	
	#bg3-32 {
		left: 313px;
    	position: absolute;
    	top: 3837px;
		}
		
	/*diary*/	
	#bg3-4 {
		left: 330px;
    position: absolute;
    top: 5540px;
		}
		
	/*travel elements*/	
	#bg3-51 {
		left: 192px;
    position: absolute;
    top: 7198px;
		}
		
		#bg3-52 {
		left: 330px;
    position: absolute;
    top: 8967px;
		}
		

		
		
/* midground */
#parallax-bg2 {
	z-index: 100;
	position: fixed;
	left: 50%; /* align left edge with center of viewport */
	top: 0;
	width: 1200px;
	margin-left: -600px; /* move left by half element's width */
	}
	
	/*ground*/
	#bg2-1 {
		position: absolute;
		top: -200px;
		left: 220px;
		
		}
		
	/* cats */
	#bg3-1 {
		left: 350px;
    	position: absolute;
    	top: 485px;
		}
		
	/* flowers */
	#bg3-12 {
		left: 245px;
    	position: absolute;
    	top: 400px;
		}		
			
	/*plane bg*/
	#bg2-12 {
		left: 70px;
    	position: absolute;
    	top: 210px;
		}
		
	/*globe*/	
	#bg2-2 {
		left: 217px;
    	position: absolute;
    	top: 1668px;
		}
	
	/*desk*/	
	#bg2-3 {
		left: 165px;
    	position: absolute;
    	top: 2670px;
		}
	
	/*pile*/
	#bg2-4 {
		left: 153px;
    	position: absolute;
    	top: 3908px;
		z-index:0;
		}
	
	/*map elements*/
	#bg2-5 {
	left: 153px;
    position: absolute;
    top: 5248px;
		}
		
/* background */
#parallax-bg1 {
	z-index: 1;
	position: fixed;
	left: 50%; /* align left edge with center of viewport */
	top: 0;
	width: 1200px;
	margin-left: -600px; /* move left by half element's width */
	}
	
	
	/*Clouds bg*/
	#bg1-1 {
		position: absolute;
		top: 165px;
		left: 140px;
		}
	
	/*Clouds bg*/
	#bg1-11 {
		position: absolute;
		top: 25px;
		left: -740px;
		}
		
	/*Clouds bg*/
	#bg1-12 {
		position: absolute;
		top: 25px;
		right: -740px;
		}
		
		#bg1-13 {
		position: absolute;
		top: 3300px;
		left: 140px;
		}
		#bg1-14 {
		position: absolute;
		top: 3200px;
		left: -740px;
		}
		#bg1-15 {
		position: absolute;
		top: 3200px;
		right: -740px;
		}

	
	/*maps bg*/
	#bg1-2 {
		left: 230px;
    	position: absolute;
    	top: 830px;
		}
		
	/*wall art*/	
	#bg1-3 {
		left: 270px;
    position: absolute;
    top: 1330px;
		}
		
	/*pile*/
	#bg1-4 {
		left: 138px;
    	position: absolute;
    	top: 2200px;
		}
		
	/*polaroidbg*/
	#bg1-41 {
		left: 260px;
    	position: absolute;
    	top: 2050px;
		}
	
	/*large map*/	
	#bg3-5 {
    left: 50%;
    margin-left: -440px;
    position: absolute;
    top: 2695px;
}

	/*night sky*/	
	#bg3-7 {
    left: 50%;
    margin-left: -500px;
    position: absolute;
    top: 3234px;
	z-index:100;
}

	/*stars*/	
	#bg3-8 {
    left: 50%;
    margin-left: -1455px;
    position: absolute;
    top: 3594px;
}

	/*stars2*/	
	#bg3-9 {
    left: 51%;
    margin-left: 485px;
    position: absolute;
    top: 3594px;
}


/*Fixed Top bar */

#topbar {
    background: url("../img/topbar.png") repeat scroll left top transparent;
    height: 75px;
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 5000
}

#topbar img {
	float: left;
}

#topbar p {
	color: #FFFFFF;
    float: right;
    font-size: 16px;
    font-style: italic;
    font-weight: 100;
    letter-spacing: 1px;
    line-height: 45px;

}

#topbar p a {
	color: #fff;

}

#topbar p a:hover {
	text-shadow: 0 0 5px #fff;
	}


/*J + O Sprite Fixed middle*/

#jando {
    min-width: 960px;
    position: absolute;
    top: 580px;
    width: 100%;
    z-index: 70;
}


.jando_container {
    margin: 0 auto;
    overflow-y: hidden;
    width: 100%;
}

#jando_sprite {
    background: url("../img/jando.png") no-repeat scroll center top transparent;
    display: block;
    height: 310px;
    position: fixed;
    top: 295px;
    z-index: 70;
}


/*footer */
	
#footer {
    background: url('../img/footer-bg.png') left top repeat-x, #005058;
    height: 100px;
    display: block;
    padding: 0;
    width: 100%;
    z-index: 100;
   	box-shadow: 0px -5px 15px rgba(128,78,34,.25);
   	color: #fff;
   	position: absolute;
	margin-top:46px;
}

#footer-inner { margin:0px; padding:0px;
    background: url(../img/fotter-background.png); 
    height: 520px;
    
}


#footernav {
	padding-top: 25px;
	width: 475px;
	float: left;
}

#footernav p {
	font-size: 12px;
	line-height: 32px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #fff;
}

#footernav p a {
	color: #fff;
}

#footernav p a:hover {
	color: #fff;
	background: #f0542f;
}


#footermailinglist {
	padding-top: 30px;
	width: 475px;
	float: left;
	
	text-align: right;
}

#footermailinglist p {
	font-size: 9px;
	letter-spacing: 2px;
	font-weight: 500;
}

.mc-field-group {
	margin-left: 188px
}

.mc-field-group, .mc-button {
	float: left;
	margin-top:5px;
}

.mc-field-group input {
	background: none repeat scroll 0 0 #F9F5F0;
    border: 1px solid #FFFFFF;
    font-family: futura-pt-1,futura,arial,sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 5px;
    text-transform: uppercase;
    width: 250px;
}

.mc-button input {
	-moz-border-bottom-colors: none;
    -moz-border-image: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    -moz-transition: all 0.25s ease-in-out 0s;
    background: none repeat scroll 0 0 #4F4E39;
    border-color: #FFFFFF #FFFFFF #FFFFFF -moz-use-text-color;
    border-style: solid solid solid none;
    border-width: 1px 1px 1px medium;
    color: #FFFFFF;
    font-size: 15px;
    height: 25px;
    padding-bottom: 2px;
    padding-right: 3px;
    width: 25px;
}

.mc-button input:hover {
	color: #fff;
	background: #f0542f;
	
	cursor: pointer;
}

#bottombanner {
	/*background: url("../img/footer-banner.png") no-repeat scroll 0 0 transparent;*/
	
    clear: both;
    display: block;
   /* font-family: futura-pt-1,futura,arial,sans-serif;*/
    font-size: 12px;
   /* font-weight: 700;*/
    height: 70px;
   /* letter-spacing: 2px;*/
    
    margin: 0px auto;
    text-align: center;
    text-transform: lowercase;
   width: 1024px;
    }


/*hidden cats*/
    
#bg3-6 {
	height: 48px;
	width: 342px;
	background: url('../img/scene05-hiddencats.png');
	background-position: 0 18px;
	background-repeat: no-repeat;
    left: 50%;
    margin-left: -171px;
    position: absolute;
    top: 3802px;
    z-index: 5000;
    
    -moz-transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

#bg3-6:hover {
	background-position: 0 0;

}

#panel {
background: none repeat scroll 0 0 #FFFFFF;
    display: none;
    height: 475px;
    left: 50%;
    margin-left: -245px;
    position: absolute;
    top: 3275px;
    width: 490px;
    z-index: 100;
    
    box-shadow: 0 0 15px rgba(128, 78, 35, 0.3); 
}


/*facebook fix*/

#fb_xdm_frame_http {
	display: none;

}

#fb_xdm_frame_https {
	display: none;	
}
.monkey-business-fotter-logo{ margin:0px auto 20px auto; padding:0px; width:300px; height:134px;}
.social-content{ margin:0px; padding:0px; width:350px; height:60px; float:left; }
.social-content ul{ margin:0px ; padding:0px; list-style:none;}
.social-content ul li a{ margin:0px 10px 0px 10px ; padding:0px; float:left; width:60px; height:60px; border-radius:50%; border:1px solid #FFF; display:block;}
.social-content ul li a img{ margin:10px 0px 0px 13px; padding:0px; }
.social-content ul li a:hover{ background-color:#003035; }

.fotter-nav{ margin:0px auto 0px auto; padding:0px; width:400px; height:60px; float:right;  }
.fotter-nav ul{ margin:0px; padding:0px; list-style:none;  }
.fotter-nav ul li a{ margin:0px; padding:0px 12px 0px 12px; float:left; display:block; color:#fff; text-transform:uppercase;  font-family: 'Lora', serif; font-style:italic; font-size:11px; }
.fotter-nav ul li a:hover{  background:none !important; color:#0CF; }
.contact-railing{ margin:0px; padding:0px; width:100%; height:165px; position:absolute; top:200px; left:50%;
 background-image:url(../img/scene06-nightbg-contact.png); background-repeat:repeat-x; margin-left:500px;}
 .fotter-margin-set{ margin-top:80px;}
.bottom-text{float:right; text-align:right; padding: 4px 30px 0px 0px; font-family: 'Lora', serif; font-style:italic;}


/************************START RESPONSIVE NAVIGATION***************************/


  *{
  margin: 0;
	padding: 0;
	outline: none;
	border: none;
	-webkit-box-sizing: border-box;
}
*:before,
*:after{
	-webkit-box-sizing: border-box;
}
.clearfix {
  *zoom: 1;
}

.clearfix:before,
.clearfix:after {
  display: table;
  line-height: 0;
  content: "";
}
.clearfix:after {
  clear: both;
}
.container{
	width: 1024px;
	margin: 0 auto;
}
header{
	/*width: 100%;
	height: auto;
	background: black;
	position:fixed;
	z-index:5000;*/
	
	background: url("../img/topbar.png") repeat scroll left top transparent;
    height: 75px;
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 5000;
	
	
}
.header-left,
.header-right{
	position: relative;
	color: white;
	float: left;
}
.header-left{
	width: 30%;
}
.header-right label{
	position: absolute;
	top: -2.7em;
	right: 15px;
	cursor: pointer;
}
.header-right span{
	position: relative;
	width: 2em;
	height: 2em;
	background: rgba(255,255,255,.3);
	-webkit-transition: all .3s ease;
}
.header-right span:hover{
	background: rgba(255,255,255,.6);
}
.header-right span:before,
.header-right span:after{
	content: '';
	position: absolute;
	width: 2em;
	height: .5em;
	top: 4px;
	left: 0;
	background: black;
}
.header-right span:after{
	top: 14px;
}
.header-right{
	width: 70%;
	text-align: right;
}
#open{
	display: none;
}
h1{
	font-weight: 300;
	line-height: 40px;
}
a{
	text-decoration: none;
	color: white;
}
nav>a{
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 46px;
	padding: 2px 5px 0px 5px ;
	-webkit-transition: all .3s ease;
	color:#FFF;
}
nav>a:hover{
	/*background: rgba(4,119,130,.9);*/
	background:none !important;
	color: black;
}
.hidden-desktop{
	display: none;
}
section{
	width: 100%;
	height: auto;
	background-image: -webkit-linear-gradient(#80059E 0%, #550486 100%);
}
.section-left,
.section-right{
	float: left;
}
.section-left{
	width: 70%;
	padding: 3em 0;
}
.section-right{
	width: 30%;
}
.section-title,
.section-tagline{
	color: white;
	font-weight: 300;
	margin: 0;
	padding: 0;
	-webkit-transition: all .4s ease;
}
.section-title{
	font-size: 4em;
	margin-bottom: .3em;
	text-shadow: 0 3px 0px black,
				 0 4px 0px rgba(150,150,150,.5);
}
.section-tagline{
	font-size: 1em;
}
.learn-more{
	display: table;
	margin: 3em auto 0;
	padding: 1em 6em;
	cursor: pointer;
	border-radius: 3px;
	box-shadow: inset 0 -3px 0 rgba(0,0,0,.8);
	background: #EAAF00;
	background-image: -webkit-linear-gradient(#EAAF00 0%, #D78100 100%);
	font-size: 1.2em;
}
.learn-more:hover{
	background: #EAAF00;
}
.learn-more:active{
	box-shadow: inset 0 2px 0 rgba(0,0,0,.8);
}

/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) {
	.box{
		width: 49%;
		margin-bottom: 5%;
	}

	ul li:nth-child(3) .box{
		clear: both;
	}

	ul li:nth-child(2n) .box{
		margin-right: 0;
		clear: right;
	}
}

/* Small monitor */
@media (max-width: 979px){



		
	nav>a{
		padding: 0 1.5em; 
	}
	.section-left,
	.section-right{
		width: 100%;
	}
	.section-left{
		text-align: center;
	}
	.section-right{
		padding: 0 0 2em;
	}
	.section-title{
		font-size: 4em;
		margin-bottom: .2em;
	}
	.section-tagline{
		font-size: 1.3em;
	}
	.learn-more{
		margin: 0 auto;
	}
}
 
/* Landscape phone to portrait tablet */
@media (max-width: 767px) {

body {
	
	background: #f9f5f0 url('../img/bg-full2.jpg') center 0;
	background-repeat: repeat-x;
	overflow-x: visible;
	color: #000;
	
	font-size: 14px;
	line-height: 16px;
	font-family: 'Lora', serif; font-style:italic;
}


.container{
		width: 100%;
	}

#content article h1 {
			margin: 0;
			font-size: 15px;
			font-family: futura-pt-1, Futura, Arial, sans-serif;
			line-height: 28px;
			letter-spacing: 2px;
			font-weight: bold;
			text-transform: uppercase;
			color:#000000;
			
	}


	nav>a{
		padding: 0 2em;
	}
	h1{
		padding: .5em 0;
	}
	.header-left,
	.header-right{
		width: 100%;
		text-align: center;
	}
	.section-left,
	.section-right{
		width: 100%;
	}
	.section-left{
		text-align: center;
		padding: 2em 0;
	}
	.section-right{
		padding: 1em 0 2em;
	}
	.section-title{
		font-size: 3em;
		margin-bottom: .2em;
	}
	.section-tagline{
		font-size: 1.3em;
	}
	.learn-more{
		margin: 0 auto;
	}
	
#content {
	position: relative;
	max-width: 100%;
	
	height: 3750px;
	padding: 0 10px;
	margin: 0 auto;
	line-height: 1.7;
	text-align: center;
	/*background-color:#FF6600;*/
	
	
	
	}
	
	
	
	#content article p {
	
		 font-family:'Lora', serif;
		 font-style:italic;		
		margin:0 0 20px 0;
		font-size:13px;
		line-height: 18px;
	/*	font-style: normal;*/
		color:#000000;
	}
	
	
	#bg2-1 {
		position: absolute;
		top: -150px;
		left: 50%;
		margin-left:-300px;
		width:50%;
		height:auto;
		
		}
		
		#bg1-3 {
		width:45%;
		left:50%;
		margin-left:-270px;
    position: absolute;
    top: 1330px;
	
		}
		
		#bg3-2 {
		width:80%;
		left: 109px;
    	position: absolute;
    	top: 1875px;
		}
		
		
		
		
		#bg2-3 {
		width:55%;
		left:50%;
		margin-left:-310px;
    	position: absolute;
    	top: 2670px;
		}
		
		#bg3-12 {
		left:50%;
		margin-left:-180px;
		
    	position: absolute;
    	top: 450px;
		width:30%;
		}
		
		
		#bg3-32 {
		width:25%;
		left: 350px;
    	position: absolute;
    	top: 3777px;
		}
	
	
	#bg1-41 {
	    width:40%;
		left: 50%;
		margin-left:-241px;
    	position: absolute;
    	top: 2050px;
		}
		
		
		#bg3-4 {
		width:22%;
		left: 50%;
		margin-left:-99px;
    position: absolute;
    top: 5503px;
		}
		
		
		#bg3-51 {
		width:40%;
		left: 50%;
		margin-left:-217px;
    position: absolute;
    top: 7172px;
		}
		
		
		#bg3-52 {
		width:27%;
		left: 50%;
		margin-left:-126px;
    position: absolute;
    top: 8917px;
		}
		
		
	
	
	#bg3-5 {
	width:60%;
    left: 50%;
    margin-left: -331px;
    position: absolute;
    top: 2668px;
}	

#bg3-7 {
    width:80%;
    left: 50%;
    margin-left: -477px;
    position: absolute;
    top: 3179px;
	z-index:100;
}
	
	
	#jando {
    min-width: 960px;
    position: absolute;
    top: 580px;
    width: 100%;
    z-index: 70;
}


.jando_container {
    margin: 0 auto;
    overflow-y: hidden;
    width: 100%;
}

#jando_sprite {
    background: url('../img/jando2.png') no-repeat scroll center top transparent;
    display: block;
	
	height:199px;
	
    
    position: fixed;
    top: 240px;
    z-index: 70;
}
	
	
	#content article {
		width: 300px;
		
		}


#scene01-about ,
		#scene02-shop,
		#scene03-studio,
		#scene04-blog,
		#scene05-about,
		#scene06-contact {
			padding-top: 70px;
			z-index: 500;
			left: 50%;
			margin-left: -148px;
			
			
			
			}
		#scene01-about {
			position: absolute;
			top: -50px;
			
			
			
			
			
			
			}
		#scene02-shop {
			position: absolute;
			top: 640px;
			}
		#scene03-studio {
			position: absolute;
			top: 1280px;
			}
				
		#scene04-blog {
			position: absolute;
			top: 1920px;
			}
			
		#scene05-about {
			position: absolute;
			top: 2560px;
			}
			
		#scene06-contact {
			position: absolute;
			top: 3200px;
			}
					
	



#footer-inner { margin:0px; padding:50px 0px 0px 0px;
    background: url(../img/fotter-background.png); 
    height: 350px;
    
}


.fotter-margin-set{ margin-top:0px;}


nav#primary {
	z-index: 5000;
	position: fixed;
	top: 50%;
	right: 16px;
	margin-top: -40px;
}
nav#primary li {
	position: relative;
	height: 20px;
}
nav#primary a {
	margin:15px 0px 15px 0px;
	padding:0px;
	display: block;
	/*width: 22px;
	height: 20px;*/
	width: 30px;
	height: 20px;
	text-indent: -9999px;
	z-index:100000000000000;
	background: transparent url('../img/nav-dot.png') 4px -16px no-repeat;
	/*background-color:#F90;*/
	
	outline:none; text-decoration:none;
	-webkit-transition: all 0s ease-out;
	-moz-transition: all 0s ease-out;
	-o-transition: all 0s ease-out;
	transition: all 0s ease-out;
	font-family: 'Lora', serif; font-style:italic;
}
nav#primary a:hover, nav#primary a.active {
	background: transparent url('../img/nav-dot.png') 4px 4px no-repeat;
}
nav#primary h1 {
	position: absolute;
	right: 40px;
	top: -7px;
	display: none;
	padding: 3px 10px;
	color: #fff;
	white-space: nowrap;
	/*background: #078b97;*/
	background: #FFFFFF;
	
	box-shadow: 0 0 10px rgba(128, 78, 34, 0.5);
	
	font-size: 12px;
	font-family: futura-pt-1, Futura, Arial, sans-serif;
	line-height: 28px;
	letter-spacing: 2px;
	font-weight: bold;
	text-transform: uppercase;
	
	}

	

}



 
/* Landscape phones and down */
@media min-width: 700px) {
	
	
	nav{
		height: 0;
		overflow: hidden;
		-webkit-transition: all .3s ease;
		background-color:#065b62;
	}
	input[type="checkbox"]:checked + nav{
		height: 270px;
	}
	nav>a{
		padding: 0 1em;
		display: block;
		border-bottom: solid 1px rgba(255,255,255,.1);
	}
	h1{
		padding: .5em 0;
	}
	.header-left,
	.header-right{
		width: 100%;
		text-align: center;
	}
	.section-left,
	.section-right{
		width: 100%;
	}
	.section-left{
		text-align: center;
		padding: 1em 0;
	}
	.section-right{
		text-align: center;
		padding: 1em 0 2em;
	}
	.section-title{
		font-size: 2.4em;
		margin-bottom: 0;
	}
	.section-tagline{
		font-size: 1em;
	}
	.learn-more{
		display: table;
		margin: 0 auto;
	}
	.hidden-desktop{
		display: block;
	}


}

