/* INDEX
   1.1		GLOBAL CSS 
   1.1.1	RESET CSS
   1.1.2	GLOBAL BODY-LEVEL ELEMENTS
   1.1.3	BLOCK-LEVEL ELEMENTS
   1.2		NAVIGATION
   1.3		HOMEPAGE
   1.4		WORKS
   
*/

/* 1.1.1	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}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}a{text-decoration: none;}

/* 1.1.2	GLOBAL BODY-LEVEL ELEMENTS */

html{
	height: 100%; /* Necessary for background image stretching */
}

body{
	font: 15px/19px
		"museo-sans",
		"Helvetica Neue",
		Helvetica,
		Arial,
		sans-serif;
	position: relative;
	height: 100%;
	background-color: #000;
	-webkit-text-size-adjust: 100%;
}	

/* 1.1.3	BLOCK-LEVEL ELEMENTS */

p, ul{
	font-weight:400;
	font-style:normal;
}
b, strong{
	font-weight: bold;
}

p a,
article li a,
dd a,
h4 a{
	color: #eb1c23;
}

article p{
	-webkit-hyphens: auto;
}

img{
	border: 0;
}

h1{
	font-weight:180;
	line-height: 1.3em;
	font-size: 280%;
	margin-bottom: 0.5em;
	font-family: "brandon-grotesque";
}

h2, h3{
	font-weight:100;
	line-height: 1.3em;
	font-size: 140%;
	margin-bottom: 0.5em;
	font-family: "brandon-grotesque";
}

article{
	background: #FFF;
}

article h2,
article h3{
	font-size: 200%;
	line-height: 1em;
}

article h3{
	color: #888;
}

@media (max-width: 500px) {
	article h2,
	article h3{
		font-size: 140%;
	}
}
article p{
	max-width: 600px;
	margin-bottom: 1em;
}
dl{
	overflow: hidden;
}
dt{
	float: left;
	clear: left;
	width: 100px;
}
dd{
	float: left;
	padding-bottom: 0.3em;
}

/* 1.2	NAVIGATION */
header{
	font-family: "brandon-grotesque";
	position: fixed;
	width: 100%;
	z-index: 3;
}

h1{
	position: absolute;
	z-index: 5;
	top: 0;
	left: 17px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1 img{
	display: block;
}
#nav{
	z-index: 2;
	width: 300px;
	padding-top: 130px;
	padding-left: 65px;
	overflow: hidden;
	text-transform: uppercase;
	font-size: 115%;
	font-family: "brandon-grotesque";
}
	#nav li{
		float: none;
	}
		#nav li a{
			display: block;
			padding: 10px 10px 5px;
			color: #FFF;
		}
			#nav li a:hover,
			#nav li a.on{
				background: #000;
			}
			
#breadcrumb{
	position: relative;
	display: block;
	z-index: 1;
	overflow: hidden;
	background: rgb(255,255,255);
	background: rgba(255,255,255,.8);
	padding-left: 210px;
	width: 100%;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 115%;
	padding-bottom: 5px;
	text-transform: uppercase;
}
#breadcrumb a{
	color: #555;
	display: block;
	float: left;
	padding: 10px 10px 5px;
}
@media (max-width: 850px) {
	h1 img{
		width: 100px;
		height: auto;
	}
	h1{
	}
	
	#nav,
	#breadcrumb{
	
	}
	#nav li a,
	#breadcrumb a{
		padding: 7px 7px 2px;
	}
}
@media (max-width: 600px) {
	header{
		/* position: relative;	*/
		min-height: 0px;
	}
	#nav{
		position: relative;
		top: 0;
		left: 0;
		padding-left: 15px;	/*shortened for ipad landscape */
		width: 98px;
	}

	#breadcrumb{
		position: relative;
		margin-top: 0;
	}
	#content.sub{
		padding-top: 20px;
	}
}
@media (max-width: 400px) {
	#breadcrumb{
		padding-left: 5px;
		font-size: 95%;
	}
		#nav{
		position: relative;
		top: 0;
	padding-top: 0px;
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.75)), color-stop(100%,rgba(0,0,0,0.35))); /* Chrome,Safari4+ */
		width: 100%;
		padding-left: 18%;
	}
		#nav li{
		float: left;
	}
	
}

/* 1.2.1 CONTENT */

#back{
    background: #000;
    background-image: none;
    -moz-background-size: cover;
    background-size: cover;
    position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 0;
}
@media (max-width: 500px) {
	
	#back{
		display: none;
	}
}

#content{
	width: 90%;
	min-height: 100px;
	padding: 55px 0 0 200px;
	position: relative;	
	box-sizing: border-box;
}
	#content.sub{
		padding-top: 100px;
	}
	
@media (max-width: 850px) {
	#content,
	#content.sub{
		padding-left: 12px;
		padding-top: 95px;
		padding-right: 12px;
		width: 100%;	
	}
}
@media (max-width: 700px) {
	#content,
	#content.sub{
		padding-top: 12px;
	}
}
@media (max-width: 500px) {
	#content,
	#content.sub{
		padding: 12px 0 0;
	}
}
#content.plain article{
	padding: 20px;
}

/* 1.3	HOMEPAGE */

.slide{
	min-height: 500px;
	height: 99.5%;
	margin-bottom: 0.5%;
	display: block;
	position: relative;
	background-size: cover;
	background-position: 50% 0;
	background-repeat:  no-repeat;
	background-attachment: fixed;
	color: white;
	overflow: hidden;
	background-color: #000;
	width: 100%;
}

	.slide .instructions{
		position: absolute;
		bottom: 20px;
		padding: 10px;
		right: 20px;
		background: -moz-linear-gradient(top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.75)), color-stop(100%,rgba(0,0,0,0.35))); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top, rgba(0,0,0,0.75) 0%,rgba(0,0,0,0.35) 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top, rgba(0,0,0,0.75) 0%,rgba(0,0,0,0.35) 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top, rgba(0,0,0,0.75) 0%,rgba(0,0,0,0.35) 100%); /* IE10+ */
		background: linear-gradient(to bottom, rgba(0,0,0,0.75) 0%,rgba(0,0,0,0.35) 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bf000000', endColorstr='#59000000',GradientType=0 ); /* IE6-9 */
		text-shadow: 0 1px 1px #000;
		color: #FFF;
		opacity: 1;
		-webkit-transition: 0.3s opacity linear;
	}
		.slide .instructions.seen{
			opacity: 0;
		}

	.slide .story{
		margin: 0 auto;
		min-width: 980px;
		max-width: 1600px;
		overflow: auto;
	}
	
		.slide .story .float{
			padding: 10px;
			position: absolute;
			top: 50%;
			width: 350px;	
			-webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
			background: -moz-linear-gradient(top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 100%); /* FF3.6+ */
			background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.75)), color-stop(100%,rgba(0,0,0,0.35))); /* Chrome,Safari4+ */
			background: -webkit-linear-gradient(top, rgba(0,0,0,0.75) 0%,rgba(0,0,0,0.35) 100%); /* Chrome10+,Safari5.1+ */
			background: -o-linear-gradient(top, rgba(0,0,0,0.75) 0%,rgba(0,0,0,0.35) 100%); /* Opera 11.10+ */
			background: -ms-linear-gradient(top, rgba(0,0,0,0.75) 0%,rgba(0,0,0,0.35) 100%); /* IE10+ */
			background: linear-gradient(to bottom, rgba(0,0,0,0.75) 0%,rgba(0,0,0,0.35) 100%); /* W3C */
			filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bf000000', endColorstr='#59000000',GradientType=0 ); /* IE6-9 */
			text-shadow: 0 1px 1px #000;
		}
		
			.slide .story .float.left{
				left: 20px;
			}
			
			.slide .story .float.name{
				left: 20px;
				top: 8%;
				padding: 30px;
				text-shadow: 4px 4px 8px #000;		
			}

			
			.slide .story .float.right{
				right: 20px;
			}
		.slide .story p a{
			color: #FFF;
			text-decoration: underline;
		}
@media (max-width:600px) {

	.slide .story .float{
		top: 120px;
		padding: 17px;
	}

			.slide .story .float.name{
				width: 92%;
	}	
	

	.slide .story .float.right{
		background: -webkit-linear-gradient(top, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.15) 0%); /* Chrome10+,Safari5.1+ */
		}

}

@media (max-width:400px) {
	.slide{
		min-height: 400px;
		height: 400px;
		margin-bottom: 2px;
		background-attachment: scroll;
	}

	.slide .story .float{
		background: -webkit-linear-gradient(top, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.15) 0%); /* Chrome10+,Safari5.1+ */
		top: auto;
		bottom: 0;
		width: 100%;
		padding: 17px;
		left: auto !important;
		right: auto !important;
	}
}

/* 1.4		WORKS */

article.works{
	padding: 20px;
}
article.captivate{
	padding: 20px;
}

	article.captivate hgroup,
	article.works hgroup{
		background-repeat: no-repeat;
		background-size: cover;
		background-position: 50% 50%;
		min-height: 300px;
		margin-bottom: 1em;
		box-shadow: 0 0 1px rgba(0,0,0,.4) inset;
	}
	
	article.works hgroup{
		min-height: 100px;
	}

	@media (min-width:1100px) {
		article.captivate hgroup{
			min-height: 400px;
		}
	} 
	@media (min-width:1350px) {
		article.captivate hgroup{
			min-height: 500px;
		}
	} 
	
		article.captivate hgroup h2,
		article.captivate hgroup h3,
		article.works hgroup h3{
			font-size: 200%;
			background: #FFF;
			padding: 0 15px 15px 0;
			margin: 0;
			line-height: 1em;
			float: left;
			clear: left;
			box-shadow: 1px 1px 0 rgba(0,0,0,.06);
		}
		
		article.captivate hgroup h3{
			font-weight: 100;
		}
		
		article.captivate hgroup img{
			max-width: 100%;
			height: auto;
			padding: 15px;
			box-sizing: border-box;
		}
	
	article.works ul.works li{
		margin: 2em 0;
	}
	
	article.captivate dt{
		width: 250px;
	}
	
	article.captivate dd{
		width: 250px;
		padding-bottom: 0.7em;
	}
	
	article.captivate ul{
		margin: 0 0 1em 0;
	}
	
@media (max-width:400px) {
	article.captivate hgroup h2,
	article.captivate hgroup h3,
	article.works hgroup h3{
		font-size: 140%;
		font-weight: 400;
		padding: 0 10px 10px 0;
	}
	article.captivate{
		padding: 20px;
	}
}
			

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px){
	#back,
	.slide{
		background-attachment: scroll;
	}
}
