@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.eot?v=4.3.0');
  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}

*, *::after, *::before {
    box-sizing: border-box;
}

.noscroll {
	overflow: hidden;
}

.grid-wrap {
	margin: 10px auto 0;
	width: 100%;          
	padding: 0;
	/* -webkit-perspective: 1500px;
	perspective: 1500px; */
}

.grid {
	position: relative;
	/* -webkit-transition: all 0.5s cubic-bezier(0,0,0.25,1);
	transition: all 0.5s cubic-bezier(0,0,0.25,1);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d; */
}

.view-full .grid {
	-webkit-transform: easeInQuad;
	transform: easeInQuad;
}

.grid figure {
	margin: 10px;
	display: inline-block;
	cursor: pointer;
	vertical-align:top;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

figure {
    position: relative;
    display: inline-block;
}

.grid .placeholder {
    height: 100px;
    width: 140px;
}


.grid .placeholder .front div {
    color: #fff;
}

figure {
    position: relative;
    display: inline-block;
}

.grid .placeholder {
    height: 100px;
    width: 140px;
}


.grid .placeholder .front div {
    color: #fff;
}

figcaption {
    display: none;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #5ad1d5;
    width: 100%;
    height: 100%;  
    color: #fff; 
    text-align: center; 
    padding: 3%;
}

div.newsgrid-content figcaption h3 {
    margin-top: 20px;
}

.icon-heart-empty:before {
  content: "\f08a";
  font-size: 30px;
}
h3.grid-title {
    font-size: 18px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
	display:block;
	clear:both;
	text-align:left;
	padding-top:10px;
}
.grid-date {
	display:block;
	margin-top:5px;
}
figure:hover figcaption {
    display: block;
}

.grid figure.active {
	opacity: 0;
}


.grid .placeholder {
	pointer-events: none;
	zposition: absolute;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	transition: all 0.5s ease-out;
	-webkit-transition: all 0.5s ease-out;
}

.placeholder > div {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.placeholder .front img {
	width: 100%;
	height: 100%;
}
.placeholder .front div, div.newsgrid-content .placeholder .front {
    display: none;
}

.placeholder .back {     
	background: white;
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.view-full .placeholder {
	-webkit-transition: all 0.5s 0.1s cubic-bezier(0.25,0.25,0.25,1);
	transition: all 0.5s 0.1s cubic-bezier(0.25,0.25,0.25,1);
}

.vertical .view-full .placeholder {
	-webkit-transform: translateZ(1500px) rotateX(-179.9deg);
	transform: translateZ(1500px) rotateX(-179.9deg); /* FF, Chrome, can we agree on one direction, pleeease? */
}

.horizontal .view-full .placeholder {
	-webkit-transform: translateZ(1500px) rotateY(-179.9deg);
	transform: translateZ(1500px) rotateY(-179.9deg);
}

.grid figure img {
	display: block;
}

.content,
.loading {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none; /* Careful, does not work in IE < 11 http://caniuse.com/#search=pointer-events */
}

.content {
	overflow-y: scroll;
	height: 0; /* What seems to be the problem, officer? Well, we have a second scroll bar in Chrome! */
	background: #fff;
	visibility: hidden;
	z-index: 400;
	-webkit-overflow-scrolling: touch;
}

.loading {
	opacity: 0;
	z-index: 1;
	background: transparent url(../images/preloader.gif) no-repeat center center;
	-webkit-transform: scale(0.5);
	transform: scale(0.5);
	-webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
	transition: opacity 0.5s, transform 0.5s;
}

.loading.show {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.content.show {
	height: auto;
	pointer-events: auto;
	visibility: visible;
}

.content > div {
	z-index: 10;
	position: absolute;
	top: 0;
	width: 100%;
	overflow: hidden;
	height: 0;
	opacity: 0;
	background: #fff;
}

.content > div.show {
	height: auto;
	opacity: 1;	
	-webkit-transition: opacity 0.6s;
	transition: opacity 0.6s;
}

.icon:before {
	font-family: 'FontAwesome';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.close-content {
	position: fixed;
	z-index: 1000;
	top: 0;
	right: 10px;
	font-size: 1.6em;
	color: #aaa;
	cursor: pointer;
	pointer-events: none;
	padding: 1em;
	opacity: 0;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.close-content:hover {
	color: #999;
}

.content > div.show ~ .close-content {
	opacity: 1;
	pointer-events: auto;
}

.close-content:before {
	content: "\f00d";
    color: #5ad1d5;
    font-size: 30px;
}

/* Dummy content */

.dummy-img,
.dummy-text {
	max-width: 900px;
	width: 90%;
	opacity: 0;
	-webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
	transition: opacity 0.5s, transform 0.5s;
}

.vertical .dummy-img,
.vertical .dummy-text {
	-webkit-transform: translateY(100px);
	transform: translateY(100px);
}

.horizontal .dummy-img,
.horizontal .dummy-text {
	-webkit-transform: translateX(-100px);
	transform: translateX(-100px);
}

.content > div.show .dummy-img,
.content > div.show .dummy-text {
	opacity: 1;
}

.vertical .content > div.show .dummy-img,
.vertical .content > div.show .dummy-text {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.horizontal .content > div.show .dummy-img,
.horizontal .content > div.show .dummy-text {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

p.dummy-text:nth-child(2) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

p.dummy-text:nth-child(3) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.dummy-img {
	margin: 30px auto;
}

.dummy-text {
	text-align: left;
	margin: 0 auto;
	padding: 10px 0;
	color: #000;
	font-size: 1em;
	font-family: Arial, serif;
}

.dummy-text:last-child {
	padding-bottom: 100px;
}

/* Simple fallback */
/* if any of these are not supported, a simple fallback will be shown */
.no-pointerevents .content,
.no-csstransforms3d .content,
.no-csstransitions .content,
.no-pointerevents .content > div,
.no-csstransforms3d .content > div,
.no-csstransitions .content > div,
.no-pointerevents .close-content,
.no-csstransforms3d .close-content,
.no-csstransitions .close-content {
	opacity: 1;
	visibility: visible;
	display: none;
	height: auto;
}

.no-pointerevents .show .close-content,
.no-csstransforms3d .show .close-content,
.no-csstransition .show .close-content,
.no-pointerevents div.show,
.no-csstransforms3d div.show,
.no-csstransitions div.show,
.no-csstransitions .dummy-img,
.no-csstransitions .dummy-text,
.no-csstransforms3d .dummy-img,
.no-csstransforms3d .dummy-text, 
.no-pointerevents .dummy-img,
.no-pointerevents .dummy-text {
	display: block !important;
	opacity: 1;
}

@media screen and (max-width: 1000px) {

	.grid figure,
	.grid .placeholder {
		width: 240px;
		height: auto;
        padding-bottom: 10px;
	}
    
    .newsgrid-content figure .category {
        margin-bottom: 15px!important;
    } 
    .newsgrid-content figure figcaption .grid-introtext  {
        margin-bottom: 5px!important; 
    }       

}
 
.newsgrid-content figure {
    color: #fff; 
    text-align: center;    
    color: #000; 
	padding:10px;
}
.newsgrid-content figure:hover {
    color: #fff;
    background: #5ad1d5;
}
.newsgrid-content figure:hover h2 {
    color: #fff;
}
.newsgrid-content figure h2{
    color: #353535;
    font-size: 16px;
    text-transform: uppercase;
		: none;
}
.newsgrid-content .grid figure {
    margin: 10px 8px;
}
.newsgrid-content figure hr {
    border: 1px solid #dddddd;
    margin-bottom: 15px;
    width: 20%; 
	margin:18px auto;
}
.newsgrid-content figure figcaption hr {
    color: #fff;
}
.newsgrid-content figure .category {
    margin-bottom: 15px;
    display: block;
}
.newsgrid-content figure figcaption .category  {
    margin-bottom: 15px;
}
.newsgrid-content figure figcaption .grid-introtext  {
    margin-bottom: 65px;
}
div.meta {
    padding:0 15px;
}
.meta__date {
    float: left;
}
.meta__view {
    float: right;
}
.icon-calendar:before {
  content: "\f073";
}
.icon-eye-open:before {
  content: "\f06e";
}
.timeline_footer {
    overflow: hidden;
    clear: both;
    margin: 30px auto 0;
    text-align: center;
}
a.powered {float:right}
.timeline_footer a.timeline-more-ajax {
    color: #fff;
    display: inline-block;
    line-height: 36px;
    padding:5px 15px;
    text-decoration: none;
    text-transform: uppercase;
    background: #ef6d6b; 
}

.newsgrid, .newsgrid-content {
    position: relative;
    margin: 20px auto;
    padding: 0;
}

.newsgrid figure {
    float: left;
    margin: 10px;
    background: #fff;
    padding: 8px;
    position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.newsgrid figure,
.newsgrid figure img {
    display: block;
    position: relative;
}
.newsgrid figure {
    overflow: hidden;
}
.newsgrid figure div {
    position: absolute;
    background: #333;
    background: rgba(75,75,75,0.7);
    width: 100%;
    height: 100%;
    display: none;
}
.newsgrid figure div span {
    display: block;
    padding: 10px 0;
    margin: 40px 20px 20px 20px;
    text-transform: uppercase;
    font-weight: normal;
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
    box-shadow: 0 1px 0 rgba(0,0,0,0.1), 0 -10px 0 rgba(255,255,255,0.3);
}

