* {
	border: 0px;
	margin: 0px;
	padding: 0px;
	outline: 0px;
}

html, body {
	width: 100%;
	height: 100%;
}

.wf-loading p, .wf-loading h1, .wf-loading h2, .wf-loading a, .wf-loading li, .wf-loading span {
	opacity: 0;
	
    -webkit-transition: opacity .3s ease-in-out 0s;
    -moz-transition: opacity .3s ease-in-out 0s;
    -o-transition: opacity .3s ease-in-out 0s;
    transition: opacity .3s ease-in-out 0s;
}

.wf-active p, .wf-active h1, .wf-active h2, .wf-active a, .wf-active li, .wf-active span {
	opacity: 1;
}

body {
	font-family: "brandon-grotesque",sans-serif;
	font-weight: 400;
	color: #000;
	font-size: 14px;
}

a {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	
    -webkit-transition: border .3s ease-in-out 0s;
    -moz-transition: border .3s ease-in-out 0s;
    -o-transition: border .3s ease-in-out 0s;
    transition: border .3s ease-in-out 0s;
	
}

a:hover {
	text-decoration: none;
	border-bottom: 1px solid #000;
}

h1, h2 {
	font-weight: 500;
}

.inline {
	display: inline-block;
	*display: inline;
	zoom: 1;
	vertical-align: top;
}

	.addb4:before {
		width: 0px;
		height: 100%;
		content: '';
		display: inline-block;
		*display: inline;
		zoom: 1;
		vertical-align: middle;
	}
	
	.centerMe {
		display: inline-block;
		*display: inline;
		zoom: 1;
		vertical-align: middle;
	}
	
	.bgcover {
		background-size: cover;
		background-position: 50% 50%;
	}
	
.mobileOnly {
	display: none !important;
}

.hidden {
	display: none;
}

#wrapper {
	width: 100%;
	height: 100%;
	text-align: center;
}

#wrapper #content {
	width: 90%;
	margin: auto;
	min-height: 100%;
}

.fixedhead #wrapper #content {
	margin-top: 160px;
}

.clear {
	clear: both;
}

/*===\\========================================//===*/
/*====\\==== HEADER ====//====*/
/*=====\\====================================//=====*/

#header {
	width: 100%;
	text-align: center;
	margin: 30px auto 30px auto;
}

	.fixedhead #header {
		position: fixed;
		width: 100%;
		top: 0px;
		left: 0px;
		z-index: 600;
		margin-top: 0px;
		background-color: #fff;
		height: 50px;
	}
	
	.fixedhead #header .logo {
		display: none;
	}

	#header h1 {
		font-size: 140%;
		letter-spacing: .02em;
		font-weight: 500;
	}
	
	#header h1 a {
		border-bottom: 0px !important;
	}
	
	#header ul.nav {
		list-style-type: none;
		margin-top: 30px;
	}
	
	.fixedhead #header ul.nav {
		margin-top: 20px;
	}
	
	#header ul.nav li {
		margin-right: 15px;
	}
	
	#header ul.nav li a {
		display: block;
		line-height: 1;
		font-weight: 500;
		font-size: 85%;
		letter-spacing: .1em;
		border-bottom: 0px !important;
		
		-webkit-transition: background-color .3s ease-in-out 0s;
		-moz-transition: background-color .3s ease-in-out 0s;
		-o-transition: background-color .3s ease-in-out 0s;
		transition: background-color .3s ease-in-out 0s;
		
	}
	
	#header ul.nav li a:hover, #header ul.nav li a.pageOn {
		background-color: #d8e9b3;
	}
	
		#header ul.nav li.search a {
			background-color: transparent !important;
			display: inline-block;
			*display: inline;
			zoom: 1;
			vertical-align: top;
		}
		
		#header ul.nav li.search form {
			display: none;
		}
		
		#header ul.nav li.search input {
			border: 1px solid transparent;
			display: inline-block;
			vertical-align: top;
			position: relative;
			top: -7px;
			left: 5px;
			width: 120px;
			padding: 1px 5px;
			font-family: "brandon-grotesque",sans-serif;
			
			-webkit-transition: all .3s ease-in-out 0s;
			-moz-transition: all .3s ease-in-out 0s;
			-o-transition: all .3s ease-in-out 0s;
			transition: all .3s ease-in-out 0s;
		}
		
		#header ul.nav li.search.open form {
			display: inline-block;
			*display: inline;
			zoom: 1;
		}
		
		#header ul.nav li.search.open input {
			width: 120px;
			border: 1px solid black;
		}
	
		#header ul.nav li.search img {
			width: 11px;
		}
	
/*===\\========================================//===*/
/*====\\==== FOOTER ====//====*/
/*=====\\====================================//=====*/

#footer {
	width: 100%;
	text-align: center;
	margin: 105px auto 71px auto;
}

	#footer ul {
		list-style-type: none;
		margin-bottom: 18px;
	}
	
	#footer ul li {
		display: inline-block;
		*display: inline;
		zoom: 1;
		margin-right: 10px;
		font-weight: 500;
	}
	
	#footer p {
		font-size: 90%;
	}
	
	

/*===\\========================================//===*/
/*====\\==== MASONRY GRIDS: general rules ====//====*/
/*=====\\====================================//=====*/

body.grid {
	overflow-y: scroll;
}

#grid {
	list-style-type: none;
	width: 100%;
	margin: auto;
}

#instafeed {
	opacity: 1;
}

#instafeed .caption {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: rgba(255,255,255,.7);
    width: 100%;
    height: 100%;
	text-align: left;
	opacity: 0;
	
	-webkit-transition: opacity .3s ease-in-out 0s;
	-moz-transition: opacity .3s ease-in-out 0s;
	-o-transition: opacity .3s ease-in-out 0s;
	transition: opacity .3s ease-in-out 0s;
}

#instafeed li:hover .caption {
	opacity: 1;
}

	#instafeed .caption span {
		position: absolute;
		width: 90%;
		bottom: 5%;
		left: 5%;
	}

	#grid li {
		display: block;
		float: left;
		opacity: 0;
		overflow: hidden;
	}

	.grid-sizer, #grid li {
		width: 30%;
	}

	.gutter-sizer {
		width: 5%;
	}
	
	.instagram .grid-sizer, .instagram #grid li {
		width: 23.5%;
		opacity: 1;
	}
	
	.instagram .gutter-sizer {
		width: 2%;
	}

    #grid li.shown,
    .no-js #grid li,
    .no-cssanimations #grid li {
    	opacity: 1;
    }

      #grid li a {
      	outline: none;
      	border: none;
      	display: block;
      	max-width: 100%;
      }
	  
      #grid li img {
      	outline: none;
      	border: none;
      	display: block;
		max-width: 100%;
      }
	  
	.tumblr #grid li img {
		margin: auto;
	}
	
	.instagram #grid li video {
		width: 100%;
		opacity: 0;
	}
	

	  #grid li img.photo {
		  opacity: 0;
	  }

	/* Effect 1: opacity */
    .grid.effect-1 li.animate {
    	animation: fadeIn 0.65s ease forwards;
		-webkit-animation: fadeIn 0.65s ease forwards;
		-moz-animation: fadeIn 0.65s ease forwards;
		-o-animation: fadeIn 0.65s ease forwards;
    }

    @keyframes fadeIn {
    	0% { }
    	100% { opacity: 1; }
    }

    @-webkit-keyframes fadeIn {
      0% { }
      100% { opacity: 1; }
    }
	
/*===\\========================================//===*/
/*====\\==== HOMEPAGE ====//====*/
/*=====\\====================================//=====*/

.home #wrapper #content {
	width: 100%;
}

.home #content #splash img {
	width: 100%;
}

.home #content #grid {
	width: 90%;
}

.home #content h1.title {
	font-size: 100%;
	display: block;
	text-align: center;
	padding: 40px 0px;
	letter-spacing: .1em;
}


/*===\\========================================//===*/
/*====\\==== STORY GRID ====//====*/
/*=====\\====================================//=====*/

#grid li.cell .info {
	text-align: left;
	margin-top: 20px;
	height: 40px;
	overflow: hidden;
	position: relative;
}

	#grid li.cell .info h1 {
		text-align: left;
		font-weight: 400;
		font-size: 100%;
		display: inline-block;
		*display: inline;
		zoom: 1;
		margin-right: -4px;
		width: 70%;
	}
	
	#grid li.cell .info .lightbox {
		margin-right: -4px;
		width: 30%;
		text-align: right;
		opacity: .5;
		cursor: pointer;
		
		-webkit-transition: opacity .3s ease-in-out 0s;
		-moz-transition: opacity .3s ease-in-out 0s;
		-o-transition: opacity .3s ease-in-out 0s;
		transition: opacity .3s ease-in-out 0s;
		
	}
	
	#grid li.cell .info .lightbox:hover {
		opacity: 1;
	}
	
/*===\\========================================//===*/
/*====\\==== SLIDESHOW ====//====*/
/*=====\\====================================//=====*/

.slideshow {
	overflow: hidden;
}

.slideshow #wrapper #content {
	min-height: 0px;
}

.slideshow .slideHeader {
	width: 100%;
	height: 55px;
	text-align: center;
}

	.slideshow .slideHeader .inner {
		width: 96%;
		margin: auto;
		text-align: left;
	}

	.slideshow .slideHeader h1 {
		font-size: 100%;
		font-weight: 400;
		position: relative;
		top: 1px;
	}
	
	.slideshow .slideHeader a {
		border-bottom: 0px !important;
	}
	
	.slideshow .slideHeader ul.views, .grid ul.views {
		list-style-type: none;
		float: right;
		text-align: right;
		padding-top: 7px;
	}
	
		.slideshow .slideHeader ul.views li, .grid ul.views li {
			margin-left: 8px;
		}
		
		.slideshow .slideHeader ul.views li a, .grid ul.views li a {
			border-bottom: 0px !important;
			-webkit-transition: opacity .3s ease-in-out 0s;
			-moz-transition: opacity .3s ease-in-out 0s;
			-o-transition: opacity .3s ease-in-out 0s;
			transition: opacity .3s ease-in-out 0s;
		}
		
		.slideshow .slideHeader ul.views li a:hover, .slideshow .slideHeader ul.views li a.pageOn, .grid ul.views li a.pageOn {
			opacity: .3;
		}
		
		.slideshow .slideHeader ul.views li img, .grid ul.views li img {
			height: 15px;
			width: auto;
		}
		
	.grid ul.views {
		position: absolute;
		top: 10px;
		right: 1%;
	}
		
	.slideshow .arrows img {
		height: 21px;
		width: auto;
		position: absolute;
		top: 50%;
		cursor: pointer;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-o-transform: translateY(-50%);
	}
	
	.slideshow .arrows .prev {
		left: 2%;
	}
	
	.slideshow .arrows .next {
		right: 2%;
	}
		
	.slideshow .counter {
		width: 100%;
		/*height: 62px;*/
		margin-top: -46px;
	}
	
		.slideshow .counter .inner {
			padding-top: 10px;
		}
		
	.slideshow .theslideshow {
		width: 90%;
		margin: 25px auto 0px auto;
		text-align: center;
		position: relative;
	}
	
		.slideshow .theslideshow .slide {
			width: 100%;
			height: 100%;
		}
		
		.slideshow .theslideshow .slide .photo {
			height: auto;
			width: auto;
			max-width: 100%;
			max-height: 100%;
			margin-right: -4px;
		}
		
		.slideshow .theslideshow .slide .inner {
			width: 100%;
			height: 100%;
			margin-right: -4px;
			position: absolute;
			top: 0px;
			left: 0px;
		}
		
		.slideshow .theslideshow .slide .inner iframe {
			position: relative;
			top: 50%;
			transform: translateY(-50%);
		}
		
.slideshow .slidefoot {
	width: 100%;
	height: 87px;
	text-align: center;
}

	.slideshow .slidefoot .inner {
		width: 96%;
		margin: auto;
		text-align: left;
	}
	
	.slideshow .slidefoot .inner .caption {
		width: 50%;
		margin-right: -4px;
		text-align: left;
	}
	
	.slideshow .slidefoot .inner .lightbox {
		width: 50%;
		margin-right: -4px;
		text-align: right;
		cursor: pointer;
	}

/*===\\========================================//===*/
/*====\\==== INFO PAGE ====//====*/
/*=====\\====================================//=====*/

body.info {
	overflow-x: hidden;
}

.info #wrapper #content {
	width: 100%;
}

.info #content .leftCol {
	width: 38%;
	margin-right: -4px;
	text-align: center;
	font-size: 120%;
	line-height: 1.6;
}

	.info #content .leftCol .inner {
		text-align: left;
		padding: 100px 35px;
		max-width: 725px;
	}
	
	.info #content .leftCol .inner a {
		border-bottom: 1px solid #000;
	}
	
	.info #content .leftCol .inner a:hover {
		border-bottom: 1px solid transparent;
	}
	
	.info #content .leftCol .inner .contact {
		padding-top: 100px;
		width: 50%;
		margin: auto;
	}
	
	.info #content .leftCol .inner .contact h1 {
		font-weight: 300;
		font-size: 110%;
	}
	
	.info #content .leftCol .inner .contact p {
		margin-bottom: 20px;
	}

.info #content .rightCol {
	width: 62%;
	margin-right: -4px;
	font-size: 120%;
}

	.info #content .rightCol img {
		width: 100%;
	}
	
	.info #content .rightCol .clients {
		width: 90%;
		max-width: 725px;
		margin: 95px auto;
		text-align: left;
		list-style-type: none;
	}
	
	.info #content .rightCol .clients h1 {
		font-weight: 300;
		font-size: 110%;
	}
	
@media all AND (max-width: 1455px) {

	.info #content .leftCol {
		width: 50%;
	}
	
	.info #content .rightCol {
		width: 50%;
	}
	
}
	
/*===\\========================================//===*/
/*====\\==== LIGHTBOX ====//====*/
/*=====\\====================================//=====*/

.lightbox .lbTools {
	list-style-type: none;
	width: 90%;
	text-align: left;
	margin: 0px auto 20px auto;
}

	.lightbox .lbTools li {
		cursor: pointer;
		font-size: 85%;
		color: #BABABA;
		margin-right: 10px;
	}

	.lightbox .lbTools img {
		height: 11px;
		position: relative;
		top: 1px;
		padding-right: 3px;
		opacity: .7;
	}
	
	.lightbox .lbTools li:hover img {
		opacity: 1;
	}
	
.lightbox .empty {
	margin-top: 50px;
}

/* PDF SELECTOR */

  .pdf_select, .pdfOverlay {
    position: fixed;
    z-index: -500;
    opacity: 0;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-align: center;
    background-color: rgba(255,255,255,.93);

    transition-property: opacity, z-index;
    transition-duration: .4s, 0s;
    transition-delay: 0s, .4s;
    -webkit-transition-property: opacity, z-index;
    -webkit-transition-duration: .4s, 0s;
    -webkit-transition-delay: 0s, .4s;
    -moz-transition-property: opacity, z-index;
    -moz-transition-duration: .4s, 0s;
    -moz-transition-delay: 0s, .4s;
    -o-transition-property: opacity, z-index;
    -o-transition-duration: .4s, 0s;
    -o-transition-delay: 0s, .4s;
  }

  .pdf_select.on, .pdfOverlay.on, .pdfOpen .pdf_select, .linkOpen .pdf_link {
    z-index: 500;
    opacity: 1;

    transition-property: opacity, z-index;
    transition-duration: .4s, 0s;
    transition-delay: 0s, 0s;
    -webkit-transition-property: opacity, z-index;
    -webkit-transition-duration: .4s, 0s;
    -webkit-transition-delay: 0s, 0s;
    -moz-transition-property: opacity, z-index;
    -moz-transition-duration: .4s, 0s;
    -moz-transition-delay: 0s, 0s;
    -o-transition-property: opacity, z-index;
    -o-transition-duration: .4s, 0s;
    -o-transition-delay: 0s, 0s;
  }

    .pdf_select article, .pdfOverlay article {
      position: relative;
      z-index: 3;
      color: #000;
      background-color: #fff;
      padding: 40px 50px;
      box-shadow: 0px 10px 30px 0px rgba(0,0,0,.12);
      -webkit-box-shadow: 0px 10px 30px 0px rgba(0,0,0,.12);
      -moz-box-shadow: 0px 10px 30px 0px rgba(0,0,0,.12);
    }

      .pdf_select article img.closeLB, .pdfOverlay article img.closeLB {
        display: block;
        width: 14px;
        height: auto;
        position: absolute;
        top: 11px;
        right: 12px;
        cursor: pointer;
      }

      .pdf_select article h1, .pdfOverlay article h1 {
		font-weight: normal;
		letter-spacing: .05em;
		font-size: 20px;
		padding-bottom: 13px;
		line-height: 1em;
      }

      .pdf_select article p, .pdfOverlay article p {
		letter-spacing: .03em;
		color: #313131;
		line-height: 2;
      }

		.pdfOverlay article p.theLink {
		    color: #888888;
		}

	  .pdfOverlay .linkHolder {
	    font-size: 14px;
	    padding: 30px 20px;
	  }

		.pdfOverlay .linkHolder span {
			font-size: 80%;
			color: #00b0c2;
		}

      .pdf_select article ul {
        list-style-type: none;
        padding: 30px 0px;
      }

        .pdf_select article ul li {
          border: 1px solid #cecece;
          background-color: #ffffff;
          cursor: pointer;
          margin-right: 20px;
          padding: 24px 9px;

          transition-property: border, background-color;
          transition-duration: 200ms;
          -webkit-transition-property: border, background-color;
          -webkit-transition-duration: 200ms;
          -moz-transition-property: border, background-color;
          -moz-transition-duration: 200ms;
          -o-transition-property: border, background-color;
          -o-transition-duration: 200ms;
        }

        .pdf_select article ul li:last-child {
        	margin-right: 0px;
        }

        .no-touch .pdf_select article ul li:hover {
          border: 1px solid #eeeeee;
          background-color: #EFEFEF;
        }

        .pdf_select article ul li.selected {
          background-color: #DADADA !important;
        }

          .pdf_select article ul li img {
            display: block;
            border: 1px solid #e0e0e0;
            width: 170px;
            height: auto;

            transition-property: border, background-color;
            transition-duration: 200ms;
            -webkit-transition-property: border, background-color;
            -webkit-transition-duration: 200ms;
            -moz-transition-property: border, background-color;
            -moz-transition-duration: 200ms;
            -o-transition-property: border, background-color;
            -o-transition-duration: 200ms;
          }

          .no-touchevents .pdf_select article ul li:hover img,
          .pdf_select article ul li.selected img {
            border: 1px solid #909090;
          }

          .pdf_select article ul li h2 {
		    font-weight: normal;
		    letter-spacing: .03em;
		    font-size: 12px;
		    line-height: 1;
		    padding: 19px 0px 0px;
          }

      .pdf_select article a.downloadPDF {
	    background-color: #313131;
	    color: #FFFFFF;
	    font-size: 16px;
	    letter-spacing: .03em;
	    padding: 16px 57px;
	    line-height: 1;
        display: inline-block; *display: inline; zoom: 1;

        transition: background-color .15s;
      }

      .no-touchevents .pdf_select article a.downloadPDF:hover,
      .pdf_select article a.downloadPDF:active {
  		background-color: #000;
  		transition: background-color .15s;
      }

    .pdf_select .closeBG, .pdf_link .closeBG {
      position: absolute;
      top: 0px;
      left: 0px;
      width: 100%;
      height: 100%;
      z-index: 1;
    }