

	.video-container {
		margin-bottom: 30px;
		max-width: 100%;
		width: 100%;
	}

		video {
			max-width: 100%;
			height: auto;
		}	

	/* -------------------------------------------------- */
	/*	Image Post Slider
	/* -------------------------------------------------- */	

	.image-post-slider {
		position: relative;
		overflow: hidden;
		margin-bottom: 30px;
	}

		.image-post-slider > ul > li { display: none; }
		.image-post-slider > ul > li:first-child { display: block; }

			.image-post-slider img { display: block; }

		.post-slider-nav a {
			position: absolute;
			top: 50%;
			z-index: 6;
			display: block;
			margin-top: -20px;
			width: 34px;
			height: 34px;
			border-width: 3px;
			border-color: #fff;
			border-style: solid;
			background-color: #fff;
			font: 0/0 a;
			opacity: 1;
			cursor: pointer;
			text-align: center;
			background-color: #fff;
			background-color: rgba(255,255,255,.8);

			-webkit-border-radius: 50%;
					border-radius: 50%;
		}

		.post-slider-nav .prevBtn {
			-webkit-transition: left .45s ease, border-color .25s linear;
					transition: left .45s ease, border-color .25s linear;	
		}

		.post-slider-nav .nextBtn {
			-webkit-transition: right .45s ease, border-color .25s linear;
					transition: right .45s ease, border-color .25s linear;			
		}

		.no-touch .post-slider-nav .prevBtn { left: -100px; }
		.no-touch .post-slider-nav .nextBtn { right: -100px; }

		.touch .post-slider-nav .prevBtn { left: 10px; }
		.touch .post-slider-nav .nextBtn { right: 10px; }

		.image-post-slider:hover .prevBtn { left: 20px; }
		.image-post-slider:hover .nextBtn { right: 20px; }

		.post-slider-nav a:before {
			display: block;
			width: 36px;
			height: 36px;
			color: #92999e;
			font-size: 14px;
			font-family: "FontAwesome";
			line-height: 36px;
			text-align: center;

			-webkit-transition: color .25s linear;
					transition: color .25s linear; 
		}

		.post-slider-nav .prevBtn:before { content: "\f053"; }
		.post-slider-nav .nextBtn:before { content: "\f054"; }

		.post-slider-nav a:hover{ 
			background-color: #000;
			background-color: rgba(0,0,0,.6);
		}
		.post-slider-nav a:hover:before { color: #fff; }



		
/* ---------------------------------------------------------------------- */
/*	Grid
/* ---------------------------------------------------------------------- */

/* Scroll Box Nav */

.scroll-box-nav {
	position: relative;
	top: -26px;
	margin-left: 50px;
}

	.scroll-box-nav li {
		display: inline-block;
		margin-right: 20px;
	}

		.scroll-box-nav a {
			color: #92999e;
			font-size: 12px;
			font-family: 'Oswald', sans-serif;
		}
		
		.scroll-box-nav .active > a,
		.scroll-box-nav li:hover > a { color: #ff8b84; }

/* end Scroll Box Nav */ 
		
.scroll-box {
    position: relative;
	overflow: auto;
	width: 100%;
	height: 30%;
}

	.grid {
		margin: 0;
		padding: 0;
		width: 10000px;
		width:100%;
		height:30%;
	}
	
		.gr-box {
			float: left;
			margin-left: 0;
			width: 608px;
			width:33.3%;
		}
		.gr-box-full {
			float: left;
			margin-left: 0;
			width:100%;
		}
		
			.gr-box .item {
				float: left;
				/*overflow: hidden;
				position: relative;*/
			}

			.item.half {
				width:50%;
				height:50%;
			}
			
			.item.large {
				width:100%;
				height:50%;
			}
			
			.item.full {
				height:604px;
				width: 604px;
				width:100%;
				height:100%;
			}
			
			.item.fullheight {
				height: 604px;
				width: 300px;
			}
			#logocornice {
				background:transparent url(../images/splash/cornice.jpg) center top no-repeat;
				width:100%;
				height:50%;
			}
				.gr-figure { background-color: #fff; }

						.gr-box img { 
							display: block; 
							opacity:0.6;
							-webkit-transition: all .25s linear;
									transition: all .25s linear;
						}

						.gr-box .item:hover img { 
							/*margin: -95px 0 0 0;*/
							opacity:1;
							 }

					.gr-caption {
						display: block;
						padding: 20px;
						height: 95px;
						background-color: #fff;
						text-align: center;
						
						-webkit-box-sizing: border-box;
						   -moz-box-sizing: border-box;
								box-sizing: border-box;
					}

						.gr-box h5 { margin-bottom: 5px; }
			@media screen and (min-width:320px) and (max-width:567px) {
				.gr-box {
					width:100%;
				}
			}
		
