﻿
/* iframe */

body.homepageNewsFramePage {
	margin: 0;
	padding: 0;

	overflow: hidden;
}

/* News collage */

.newsCollage {
	position: relative;

	padding-bottom: 5px;

	font-family: 'Open Sans', Arial, Verdana, sans-serif;
	text-align: left;
}

@media only screen and (min-width: 1230px) {
	.newsCollage {
		margin-left: auto;
		margin-right: auto;

		width: 1230px;
	}
}
@media only screen and (min-width: 1366px) {
	.newsCollage {
	}
}

/* Prominent news area */

.newsCollage .primaryNewsArea {
	position: relative;

	height: 610px;
	width: 1230px;
}

/* Secondary news area */

.newsCollage .secondaryNewsArea {
	position: relative;

	margin: 8px -5px 0 0;
	padding: 0 5px 3px 5px;

	font-size: 0;
	line-height: 0;
}

.newsCollage .secondaryNewsArea .newsItems {
	width: 100%;
	height: 305px;

	line-height: 315px;

	overflow-y: hidden;
}

.newsCollage .secondaryNewsArea .rotationAnimationBarArea {
	display: none;

	position: relative;

	margin-top: 3px;
	margin-right: 7px;

	z-index: 10;
}

/* News item */

.newsCollage .newsItem {
	background: white;
	border-top: 2px solid #FABD2E;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.08),
	            4px 2px 3px rgba(0, 0, 0, 0.06);

	font-size: 16px;
	line-height: normal;

	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.newsCollage .newsItem a {
	target-new: tab;
}

.newsCollage .newsItem.template {
	display: none;
}

/* News item: image area */

.newsCollage .newsItem .imageArea {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;

	background: #3A3A3A;

	text-align: center;

	overflow: hidden;
	z-index: 10;
}

.newsCollage .newsItem .imageArea a {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;

	z-index: 10;
}

.newsCollage .newsItem .imageArea .image {
	width: 100%;
	height: 100%;

	overflow: hidden;
}

.newsCollage .newsItem .imageArea img {
	width: 100%;
	height: 100%;
}

/* News item: photo credit */

.newsCollage .newsItem .imageCredit {
}

.newsCollage .newsItem .imageCredit.hidden {
	display: none;
}

.newsCollage .newsItem .imageCredit .icon {
	position: absolute;
	right: 9px;

	padding-top: 3px;

	width: 24px;
	height: 24px;
	background: #333333;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 3px;
	box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.06),
	            -1px -1px 1px rgba(0, 0, 0, 0.03);

	font-size: 18px;
	font-weight: bold;
	color: white;
	text-align: center;
	text-shadow: 2px 1px 2px rgba(0, 0, 0, 0.2);
	line-height: 1;

	cursor: default;

	z-index: 100;

	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.newsCollage .newsItem .imageCredit .icon .glyph {
	opacity: 0.65;

	transition-property: opacity;
	transition-duration: 200ms;
}

.newsCollage .newsItem .imageCredit:hover .icon {
	background-color: #424242;
	box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.06),
	            -1px -1px 1px rgba(0, 0, 0, 0.03),
	            inset 2px 1px 2px rgba(0, 0, 0, 0.07),
	            inset -2px -1px 2px rgba(0, 0, 0, 0.04);

	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.11),
	             -1px -1px 1px rgba(0, 0, 0, 0.05);

	transition-property: background-color;
	transition-duration: 300ms;

	z-index: 1000;
}

.newsCollage .newsItem .imageCredit .icon:hover {
}

.newsCollage .newsItem .imageCredit:hover .icon .glyph {
	opacity: 1;

	transition-property: opacity;
	transition-duration: 350ms;
}

.newsCollage .newsItem .imageCredit .textContainer {
	display: block;

	position: absolute;
	right: 9px;

	width: 0;

	overflow-x: hidden;
	overflow-y: visible;
	z-index: 90;

	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.newsCollage .newsItem .imageCredit .text {
	display: inline-block;

	position: absolute;
	right: -100px;
	bottom: 0;

	margin-left: 100px;
	padding: 2px 34px 4px 8px;

	min-height: 24px;
	background: rgba(0, 0, 0, 0.70);
	background: rgba(0, 0, 0, 0.85);
	border-radius: 2px 4px 4px 2px;

	font-size: 13px;
	color: rgba(255, 255, 255, 0.75);
	word-spacing: 0.45ex;

	visibility: hidden;
	z-index: 9;

	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;

	transition-property: right;
	transition-duration: 250ms;
}

.newsCollage .newsItem .imageCredit:hover .textContainer {
	z-index: 500;
}

.newsCollage .newsItem .imageCredit:hover .text {
	right: 0;

	margin-left: 0;

	visibility: visible;

	transition-property: right, margin-left;
	transition-duration: 550ms;
}

/* News item: description area */

.newsCollage .newsItem .descriptionArea {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;

	z-index: 100;
}

.newsCollage .newsItem .descriptionArea .titleAndDescription {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;

	overflow: hidden;
	z-index: 1;
}

.newsCollage .newsItem .descriptionArea .title {
	margin: 0 4px 5px 4px;
	padding: 0;
}

.newsCollage .newsItem .descriptionArea .title a {
	color: inherit;
	text-decoration: none;
}

.newsCollage .newsItem .descriptionArea .description {
	margin: 0 14px 0 6px;
	padding: 0;
}

.newsCollage .newsItem .descriptionArea .description a {
	color: inherit;
	text-decoration: none;
}

.newsCollage .newsItem .descriptionArea .storySource {
	position: absolute;

	height: 20px;

	z-index: 10;
}

.newsCollage .newsItem .descriptionArea .storySource.hidden {
	display: none;
}

.newsCollage .newsItem .descriptionArea .storySource .icon {
	position: absolute;
	bottom: 0;
	left: 0;

	width: 16px;
	height: 16px;
	background: white;

	line-height: 0;

	z-index: 5;
}

.newsCollage .newsItem .descriptionArea .storySource .icon img {
	max-width: 100%;
	max-height: 100%;
}

.newsCollage .newsItem .descriptionArea .storySource .text {
	position: relative;

	padding: 2px 4px 0 24px;

	height: 100%;

	font-size: 14px;
	color: #444444;
	word-spacing: 0.25ex;

	z-index: 10;

	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;

	transition-property: color;
	transition-duration: 250ms;
}

.newsCollage .newsItem .descriptionArea .storySource:hover .text {
	color: #222222;

	transition-property: color;
	transition-duration: 320ms;
}

.newsCollage .newsItem .descriptionArea .linkIcons {
	position: absolute;
	right: 5px;

	font-size: 0;
	text-align: right;

	z-index: 50;
}

.newsCollage .newsItem .descriptionArea .linkIcons .icon {
	display: inline-block;

	position: relative;

	width: 32px;
	height: 32px;
	background: white;
	border-radius: 100%;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.16),
	            0px -2px 2px rgba(0, 0, 0, 0.07),
	            0px 0px 3px rgba(0, 0, 0, 0.03);

	font-size: 14px;
	color: #444444;
	text-align: center;

	z-index: 10;

	transition-property: background-color, box-shadow, color;
	transition-duration: 200ms;
}

.newsCollage .newsItem .descriptionArea .linkIcons .icon.hidden {
	display: none;
}

.newsCollage .newsItem .descriptionArea .linkIcons .icon + .icon {
	margin-left: 4px;
}

.newsCollage .newsItem .descriptionArea .linkIcons .icon:hover {
	background-color: #4198FF;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.32),
	            0px -2px 2px rgba(0, 0, 0, 0.14),
	            0px 0px 3px rgba(0, 0, 0, 0.04);

	color: white;

	transition-property: background-color, box-shadow, color;
	transition-duration: 350ms;
}

.newsCollage .newsItem .descriptionArea .linkIcons .icon .glyphContainer {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;

	cursor: pointer;

	z-index: 10;
}

.newsCollage .newsItem .descriptionArea .linkIcons .icon a {
	color: inherit;
	text-decoration: none;
}

.newsCollage .newsItem .descriptionArea .linkIcons .icon .glyph {
	position: relative;
	top: 0.41em;

	opacity: 0.88;

	transition-property: opacity;
	transition-duration: 200ms;
}

.newsCollage .newsItem .descriptionArea .linkIcons .icon:hover .glyph {
	opacity: 1;

	transition-property: opacity;
	transition-duration: 350ms;
}

.newsCollage .newsItem .descriptionArea .linkIcons .icon.web .glyph {
	top: 0.39em;

	font-size: 132%;
}


.newsCollage .newsItem .descriptionArea .linkIcons .icon.photo .glyph {
	top: 0.39em;

	font-size: 132%;
}

.newsCollage .newsItem .descriptionArea .linkIcons .icon.video .glyph {
	left: 0.1ex;
}

.newsCollage .newsItem .descriptionArea .linkIcons .icon.share .glyph {
	top: -0.10em;

	font-size: 180%;
	font-weight: bold;
}

.newsCollage .newsItem .descriptionArea .linkIcons .icon .tooltip {
	white-space: nowrap;
}

/* News item: social menu */

.newsCollage .newsItem .descriptionArea .linkIcons .socialMenu {
	position: absolute;
	top: 0;
	right: 0;

	padding-top: 0;

	width: 32px;
	height: 0;
	background: rgba(255, 255, 255, 0.78);

	text-align: right;

	opacity: 0;
	overflow: hidden;

	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.newsCollage .newsItem .descriptionArea .linkIcons .socialMenu.visible {
	opacity: 1;

	transition-property: height, opacity;
	transition-duration: 650ms;
}

.newsCollage .newsItem.large .descriptionArea .linkIcons .socialMenu {
}

.newsCollage .newsItem.large .descriptionArea .linkIcons .socialMenu.visible {
	padding-top: 39px;

	height: 260px;
}

.newsCollage .newsItem.small .descriptionArea .linkIcons .socialMenu {
}

.newsCollage .newsItem.small .descriptionArea .linkIcons .socialMenu.visible {
	padding-top: 39px;

	height: 121px;
}

.newsCollage .newsItem .descriptionArea .linkIcons .socialMenu .socialIcon {
	display: inline-block;

	position: relative;

	margin-right: 4px;
	padding-top: 1px;

	width: 32px;
	height: 32px;
	background: white;
	border-radius: 100%;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.16),
	            0px -2px 2px rgba(0, 0, 0, 0.07),
	            0px 0px 3px rgba(0, 0, 0, 0.03);

	font-size: 18px;
	font-weight: bold;
	color: white;
	color: #444444;
	text-align: center;
	text-shadow: 2px 1px 2px rgba(0, 0, 0, 0.2);

	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.newsCollage .newsItem .descriptionArea .linkIcons .socialMenu .socialIcon + .socialIcon {
	margin-top: 4px;
}

.newsCollage .newsItem .descriptionArea .linkIcons .socialMenu .socialIcon:hover {
	background-color: #333333;
	background-color: #043A7A;
	background-color: #4198FF;

	color: #E0E0FA;
	color: #D0D0FA;
	color: #CCE3FF;
	color: white;

	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.16),
	            0px -2px 2px rgba(0, 0, 0, 0.07),
	            0px 0px 3px rgba(0, 0, 0, 0.03);

	transition-property: background-color, color;
	transition-duration: 550ms;
}

.newsCollage .newsItem .descriptionArea .linkIcons .socialMenu a {
	color: inherit;
	text-decoration: none;
}

.newsCollage .newsItem .descriptionArea .linkIcons .socialMenu span {
	position: relative;
	top: 2px;
}


/* News item: large item sizing */

.newsCollage .newsItem.large {
	width: 610px;
	height: 610px;
}

.newsCollage .newsItem.large .imageArea {
	height: 342px;
}

.newsCollage .newsItem.large .imageCredit {
}

.newsCollage .newsItem.large .imageCredit .icon {
	top: 310px;
}

.newsCollage .newsItem.large .imageCredit .textContainer {
	bottom: 274px;

	width: 570px;
}

.newsCollage .newsItem.large .descriptionArea {
	top: 342px;
}

.newsCollage .newsItem.large .descriptionArea h1 {
	margin-top: 40px;

	font-size: 26px;
	font-weight: bold;
	line-height: 1.32;
}

.newsCollage .newsItem.large .descriptionArea .description {
	margin-top: 8px;

	font-size: 18px;
	font-weight: normal;
	line-height: 1.15;
}

.newsCollage .newsItem.large .descriptionArea .storySource {
	top: 8px;
	left: 9px;
}

.newsCollage .newsItem.large .descriptionArea .linkIcons {
	top: 8px;
}

/* News item: small item sizing */

.newsCollage .newsItem.small {
	width: 300px;
	height: 300px;
}

.newsCollage .newsItem.small .imageArea {
	height: 168px;
}

.newsCollage .newsItem.small .imageCredit {
}

.newsCollage .newsItem.small .imageCredit .icon {
	top: 136px;
}

.newsCollage .newsItem.small .imageCredit .textContainer {
	bottom: 138px;

	width: 270px;
}

.newsCollage .newsItem.small .descriptionArea {
	top: 168px;
}

.newsCollage .newsItem.small .descriptionArea h1 {
	margin-top: 50px;

	font-size: 16px;
	font-weight: bold;
	line-height: 1.2;
}

.newsCollage .newsItem.small .descriptionArea .description {
	margin-top: 0px;

	font-size: 13px;
	font-weight: normal;
	line-height: 1.15;

	visibility: hidden;
}

.newsCollage .newsItem.small .descriptionArea .storySource {
	top: 8px;
	left: 3px;
}

.newsCollage .newsItem.small .descriptionArea .linkIcons {
	top: 8px;
}

/* News item: item placement */

.newsCollage .primaryNewsArea .newsItem {
	position: absolute;
}

.newsCollage .primaryNewsArea .newsItem:nth-child(1) {
	top: 0;
	left: 0;
}

.newsCollage .primaryNewsArea .newsItem:nth-child(2) {
	top: 0;
	left: 620px;
}

.newsCollage .primaryNewsArea .newsItem:nth-child(3) {
	top: 310px;
	left: 620px;
}

.newsCollage .secondaryNewsArea .newsItem {
	display: inline-block;

	position: relative;

	font-size: 16px;
	line-height: normal;

	vertical-align: top;
}

.newsCollage .secondaryNewsArea .newsItem + .newsItem {
	margin-left: 10px;
}


/* News item: hover effects */

.newsCollage .newsItem .descriptionArea .title,
.newsCollage .newsItem .descriptionArea .description {
	opacity: 0.75;

	transition-property: opacity;
	transition-duration: 250ms;
}

.newsCollage .newsItem:hover .descriptionArea .title,
.newsCollage .newsItem:hover .descriptionArea .description {
	opacity: 1;

	transition-property: opacity;
	transition-duration: 450ms;
}

.newsCollage .newsItem {
	transition-property: border-top-color;
	transition-duration: 250ms;
}

.newsCollage .newsItem:hover {
	border-top-color: #FAA12E;

	transition-property: border-top-color;
	transition-duration: 450ms;
}

/* Ad item */

.newsCollage .adItem {
	position: absolute;

	width: 300px;
	height: 250px;
}

/* Ad item: item placement */

.newsCollage .primaryNewsArea .adItem.order01 {
	top: 0;
	right: 0;
}

.newsCollage .primaryNewsArea .adItem.order02 {
	top: 310px;
	right: 0;
}

/* Animation bar */
.newsCollage .rotationAnimationBarArea .bar {
	position: absolute;
	bottom: 0;
	left: 0;

	width: 0;
	height: 4px;
	background: #FABD2E;

	animation-name: newsRotationAnimationBarGrowth;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	animation-play-state: paused;
	animation-fill-mode: forwards;
	-webkit-animation-name: newsRotationAnimationBarGrowth;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	-webkit-animation-play-state: paused;
	-webkit-animation-fill-mode: forwards;

	animation-duration: 10s;           /* typically is modified by JS */
	-webkit-animation-duration: 10s;
}

.newsCollage .rotationAnimationBarArea .bar.running {
	animation-play-state: running;
	-webkit-animation-play-state: running;
}

.newsCollage .rotationAnimationBarArea .bar.paused {
	animation-play-state: paused;
	-webkit-animation-play-state: paused;
}

.newsCollage .secondaryNewsArea:hover .rotationAnimationBarArea .bar {
	animation-play-state: paused;
	-webkit-animation-play-state: paused;
}

@keyframes newsRotationAnimationBarGrowth {
	0% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
}

@-webkit-keyframes newsRotationAnimationBarGrowth {
	0% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
}

/* Pagination arrows */

.newsCollage .paginationArrows {
	position: absolute;
	bottom: 48px;
	left: 0;

	width: 100%;
	height: 0;

	z-index: 999;
}

.newsCollage .paginationArrows .arrow {
	display: none;

	position: absolute;
	bottom: 0;

	width: auto;
	width: 29px;
	height: 39px;
	background: rgba(0, 0, 0, 0.35);

	font-size: 0;
	line-height: 0;

	cursor: pointer;
}

.newsCollage .paginationArrows .arrow:hover {
	width: auto;
	background-color: transparent;
}

.newsCollage .paginationArrows .arrow.left {
	left: 9px;
}

.newsCollage.carouselFirstPage .paginationArrows .arrow.left {
	display: none;
}

.newsCollage .paginationArrows .arrow.right {
	right: 9px;
}

.newsCollage.carouselLastPage .paginationArrows .arrow.right {
	display: none;
}

.newsCollage.carouselHidePaginationArrows .paginationArrows .arrow {
	display: none;
}

.newsCollage .paginationArrows .glyph {
	display: inline-block;

	position: relative;

	padding: 4px 9px 0 9px;

	height: 100%;

	font-size: 20px;
	font-weight: bold;
	color: #EAEAEA;
	text-align: center;
	line-height: normal;

	vertical-align: top;

	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.newsCollage .paginationArrows .arrow:hover .glyph {
	background: rgba(0, 0, 0, 0.45);
}

.newsCollage .paginationArrows .destinationProgress {
	display: inline-block;

	position: relative;

	height: 0;
	background-color: rgba(0, 0, 0, 0.35);

	font-size: 0;
	font-weight: bold;
	color: #EAEAEA;
	line-height: normal;

	vertical-align: top;

	overflow: hidden;
	visibility: hidden;
	opacity: 0.75;

	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.newsCollage .paginationArrows .arrow.left:hover .destinationProgress {
	padding: 7px 22px 0 12px;
}

.safari .newsCollage .paginationArrows .arrow.left:hover .destinationProgress {
	left: -5px;
}

.newsCollage .paginationArrows .arrow.right:hover .destinationProgress {
	padding: 7px 12px 0 22px;
}

.safari .newsCollage .paginationArrows .arrow.right:hover .destinationProgress {
	right: -5px;
}

.newsCollage .paginationArrows .arrow:hover .destinationProgress {
	height: 100%;
	background-color: rgba(0, 0, 0, 0.45);

	font-size: 16px;

	visibility: visible;
	opacity: 1;

	transition-property: opacity, background-color;
	transition-duration: 350ms;
}

@media only screen and (min-width: 1366px) {
	.newsCollage .paginationArrows {
		right: -69px;
		bottom: 165px;
		left: -69px;

		width: auto;
	}

	.newsCollage .paginationArrows .arrow {
		height: 70px;
	}

	.newsCollage .paginationArrows .glyph {
		padding-top: 22px;
	}

	.newsCollage .paginationArrows .arrow.left:hover .destinationProgress,
	.newsCollage .paginationArrows .arrow.right:hover .destinationProgress {
		padding-top: 24px;
	}
}

/* News adjustments for OWL Carousel */

.newsCollage .secondaryNewsArea {
	margin-right: -8px;
	padding-right: 0;
}

.newsCollage .secondaryNewsArea .newsItems.owl-carousel {
	width: 1230px;
	height: 355px;

	line-height: normal;

	overflow: visible;
}

/* After initialization, relax the restriction on width so that the pagination
   menu, a child of this element, can flow with the window size */
.newsCollage .secondaryNewsArea .newsItems.owl-carousel.carouselInitialized {
	width: auto;
}

.newsCollage .secondaryNewsArea .owl-wrapper-outer {
	width: 1229px;
	width: 1232px; /* evenly spaces four items in carousel, avoids showing edge of fifth */
	height: 312px;
	border-radius: 0;

	overflow: hidden;
}

.newsCollage .newsItemWrapperForCarousel {
	display: inline-block;

	vertical-align: top;
}

.newsCollage .owl-theme .owl-controls {
	position: relative;

	margin-top: 7px;

	visibility: hidden;

	box-sizing: content-box;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
}

/* Hide the pagination menu until initialization, at which point it will be
   correctly positioned */
.newsCollage .owl-carousel.carouselInitialized .owl-controls {
	visibility: visible;
}

/* News adjustments for general carousel */

.newsCollage.withCarousel .rotationAnimationBarArea {
	display: block;
}

.newsCollage.withCarousel .paginationArrows .arrow {
	display: block;
}

/* News carousel item ordering;
   simply to prevent tooltips from being slightly cropped by subsequent news item */
.newsCollage .newsCarousel .newsItems .owl-item { position: relative; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(1) { z-index: 100; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(2) { z-index: 99; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(3) { z-index: 98; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(4) { z-index: 97; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(5) { z-index: 96; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(6) { z-index: 95; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(7) { z-index: 94; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(8) { z-index: 93; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(9) { z-index: 92; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(10) { z-index: 91; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(11) { z-index: 90; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(12) { z-index: 89; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(13) { z-index: 88; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(14) { z-index: 87; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(15) { z-index: 86; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(16) { z-index: 85; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(17) { z-index: 84; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(18) { z-index: 83; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(19) { z-index: 82; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(20) { z-index: 81; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(21) { z-index: 80; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(22) { z-index: 79; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(23) { z-index: 78; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(24) { z-index: 77; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(25) { z-index: 76; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(26) { z-index: 75; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(27) { z-index: 74; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(28) { z-index: 73; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(29) { z-index: 72; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(30) { z-index: 71; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(31) { z-index: 70; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(32) { z-index: 69; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(33) { z-index: 68; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(34) { z-index: 67; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(35) { z-index: 66; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(36) { z-index: 65; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(37) { z-index: 64; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(38) { z-index: 63; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(39) { z-index: 62; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(40) { z-index: 61; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(41) { z-index: 60; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(42) { z-index: 59; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(43) { z-index: 58; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(44) { z-index: 57; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(45) { z-index: 56; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(46) { z-index: 55; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(47) { z-index: 54; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(48) { z-index: 53; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(49) { z-index: 52; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(50) { z-index: 51; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(51) { z-index: 50; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(52) { z-index: 49; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(53) { z-index: 48; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(54) { z-index: 47; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(55) { z-index: 46; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(56) { z-index: 45; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(57) { z-index: 44; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(58) { z-index: 43; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(59) { z-index: 42; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(60) { z-index: 41; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(61) { z-index: 40; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(62) { z-index: 39; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(63) { z-index: 38; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(64) { z-index: 37; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(65) { z-index: 36; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(66) { z-index: 35; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(67) { z-index: 34; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(68) { z-index: 33; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(69) { z-index: 32; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(70) { z-index: 31; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(71) { z-index: 30; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(72) { z-index: 29; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(73) { z-index: 28; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(74) { z-index: 27; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(75) { z-index: 26; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(76) { z-index: 25; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(77) { z-index: 24; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(78) { z-index: 23; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(79) { z-index: 22; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(80) { z-index: 21; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(81) { z-index: 20; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(82) { z-index: 19; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(83) { z-index: 18; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(84) { z-index: 17; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(85) { z-index: 16; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(86) { z-index: 15; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(87) { z-index: 14; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(88) { z-index: 13; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(89) { z-index: 12; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(90) { z-index: 11; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(91) { z-index: 10; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(92) { z-index: 9; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(93) { z-index: 8; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(94) { z-index: 7; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(95) { z-index: 6; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(96) { z-index: 5; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(97) { z-index: 4; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(98) { z-index: 3; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(99) { z-index: 2; }
.newsCollage .newsCarousel .newsItems .owl-item:nth-child(100) { z-index: 1; }


/* Count of news items */

.newsCollage .newsItemsCount {
	position: relative;

	margin-top: 8px;

	font-family: 'Open Sans', Arial, Verdana, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #AAAAAA;
	text-align: center;
}

.newsCollage .newsItemsCount .pluralityCase {
	display: none;

	padding-left: 26px;
}


/* Refresh button */

.newsCollage .newsRefresh {
	display: none;

	position: relative;
	bottom: 12px;

	padding-left: 50%;

	width: 0;
	height: 0;

	z-index: 100;
}

.newsCollage .newsRefresh .iconContainer {
	position: relative;
}

/* Wait for the carousel to initialize so the refresh icon does not overlap the
   pagination menu, which is only positioned correctly once the carousel has
   initialized */
.newsCollage.withCarousel.newsRefreshable .newsRefresh {
	display: block;
}

.newsCollage .newsRefresh .icon {
	display: inline-block;

	position: absolute;
	bottom: 0;
	left: 60%;

	margin-left: 8px;

	width: 28px;
	height: 28px;
	background: #F6F6F6;
	border-radius: 100%;

	font-size: 14px;
	color: #C0C0C0;
	text-align: center;

	cursor: pointer;

	transition-property: background-color, box-shadow, color;
	transition-duration: 300ms;
}

.newsCollage .newsRefresh .icon:hover {
	background-color: #FAFAFA;
	box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.32),
	            0px -1px 1px rgba(0, 0, 0, 0.14),
	            0px 0px 2px rgba(0, 0, 0, 0.04);

	color: #777777;

	transition-property: background-color, box-shadow, color;
	transition-duration: 600ms;
}

.newsCollage .newsRefresh .icon .glyph {
	position: relative;
	top: 0.50em;
}


/* Loading state */

.newsCollage.loading.initialLoading {
	animation-name: homepageNewsInitialLoading;
	animation-iteration-count: 1;
	animation-timing-function: linear;
	animation-play-state: running;
	animation-fill-mode: forwards;
	-webkit-animation-name: homepageNewsInitialLoading;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-timing-function: linear;
	-webkit-animation-play-state: running;
	-webkit-animation-fill-mode: forwards;

	animation-duration: 4s;
	-webkit-animation-duration: 4s;
}

@keyframes homepageNewsInitialLoading {
	0% { opacity: 0; }
	75% { opacity: 0; }
	100% { opacity: 1; }
}

@-webkit-keyframes homepageNewsInitialLoading {
	0% { opacity: 0; }
	75% { opacity: 0; }
	100% { opacity: 1; }
}

.newsCollage.loading:not(.autoReloading) .primaryNewsArea,
.newsCollage.loading:not(.autoReloading) .secondaryNewsArea,
.newsCollage.loading:not(.autoReloading) .paginationArrows,
.newsCollage.loading:not(.autoReloading) .newsItemsCount,
.newsCollage.loading:not(.autoReloading) .newsRefresh {
	visibility: hidden;
}

.newsCollage .loadingMessage {
	display: none;

	position: absolute;
	top: 60px;
	left: 10%;
	right: 10%;

	padding: 100px 0;

	border-radius: 12px;
	background: #F9F9F9;
	box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.07),
	            -1px -1px 2px rgba(0, 0, 0, 0.04);

	text-align: center;
}

.newsCollage.loading:not(.autoReloading) .loadingMessage {
	display: block;
}

.newsCollage.loading.manualReloading .loadingMessage {
	top: auto;
	bottom: 250px;
}

.newsCollage .loadingMessage .text {
	display: inline-block;

	font-size: 22px;

	vertical-align: middle;
}

.newsCollage .loadingMessage .spinner {
	display: inline-block;

	margin-left: 0.8ex;

	font-size: 26px;

	vertical-align: middle;

	animation-duration: 4.5s;
	-webkit-animation-duration: 4.5s;
}

.newsCollage .loadingMessage .spinner img {
}
