/*
Theme Name: Global Challenges
Theme URI: http://underscores.me/
Author: ybdigital
Author URI: http://www.ybdigital.com
Description: Theme developed for IHEID
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: global-challenges
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Global Challenges is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: verdana, sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-family: 'Source Serif Pro', georgia, serif;
	font-size: 2em;
	line-height: 1.4em;
	font-weight: normal;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

.page-dev #wp-admin-bar-edit{
	display: none !important;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
.no_overflow{
	overflow: hidden;	
}

.preloader-overlay {
	background-color: #fff;
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100000000;
}

.preloader-overlay > .preloader {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -1.5em;
	margin-left: -1.5em
}

.round_loader,
.round_loader:after {
  border-radius: 50%;
  width: 3em;
  height: 3em;
}
.round_loader {
  margin: 0px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 0.4em solid rgba(100, 100, 100, 0.2);
  border-right: 0.4em solid rgba(100, 100, 100, 0.2);
  border-bottom: 0.4em solid rgba(100, 100, 100, 0.2);
  border-left: 0.4em solid #ed1c2a;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
  }
  100% {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
  }
  100% {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #000;
	font-family: sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

.center{
	text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

figure {
	margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, .8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	outline:0;
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

select {
	border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: #ed1c2a;
}

a:visited {
	color: #ed1c2a;
}

a:hover,
a:focus,
a:active {
	color: #ed1c2a;
}

a:focus {
	outline: #ed1c2a;
}

a:hover,
a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 1.5em;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul ul li {

}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Secondary navigation
--------------------------------------------------------------*/

#secondary-navigation{
	position: absolute;
	right: 0;
	top: 14px;
}

#secondary-navigation ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

#secondary-navigation > ul > li{
	display: inline-block;
	margin: 0 0.2rem;
}

#secondary-navigation a{
	color: #000;
	-webkit-transition:all 500ms;
	-moz-transition:all 500ms;
	-o-transition:all 500ms;
	transition:all 500ms;
}

#secondary-navigation a:hover{
	color: #ed1c2a;
}

.share_menu .addtoany_list a{
	display: none;
}

.share_menu .addtoany_list a.addtoany_share{
	display: inline-block;
}

/*--------------------------------------------------------------
# Addtoany
--------------------------------------------------------------*/
.a2a_button_facebook,
.a2apage_wide.a2a_wide{
	display: none !important;	
}

.a2a_menu{
	border: none !important;
	margin-top: 10px !important;
	background: #000 !important;
}

.a2a_menu a.a2a_i:visited, .a2a_menu a.a2a_more{
	color: #000 !important;
}

.a2a_menu a:hover, .a2a_menu a:active, .a2a_menu a:focus{
	border-color: #000 !important;
	background-color: #000 !important;
	color: #fff !important;
}

.a2a_menu a{
	font-size: 12px !important;
}

a.a2a_i, i.a2a_i{
	line-height: 20px !important;
	border: 1px solid #000 !important;
}

a.a2a_i .a2a_svg, a.a2a_more .a2a_svg {
	background-size: 20px !important;
	height: 20px !important;
	line-height: 20px !important;
	width: 20px !important;
}

.a2a_menu a.a2a_i path{
	fill: #000;
}

.a2a_menu a.a2a_i .a2a_s_print path{
	stroke:#000;
}

.a2a_menu a.a2a_i .a2a_s_print path:nth-child(2){
	fill:transparent;
}

.a2a_menu a.a2a_i .a2a_svg{
	background-color: #000 !important;
}

.a2a_menu a.a2a_i:hover .a2a_svg{
	background-color: #fff !important;
}

.a2a_menu a.a2a_i path{
	fill: #fff;
}

.a2a_menu a.a2a_i .a2a_s_print path{
	stroke:#fff;
}

.a2a_menu a.a2a_i .a2a_s_print path:nth-child(2){
	fill:transparent;
}

.a2a_menu a.a2a_i:hover path{
	fill: #000;
}

.a2a_menu a.a2a_i:hover .a2a_s_print path{
	stroke:#000;
}

.a2a_menu a.a2a_i:hover .a2a_s_print path:nth-child(2){
	fill:transparent;
}

.a2a_overlay{
	background: rgba(255,255,255,0.9);
}

.a2a_full_footer{
	display: none;
}

/*--------------------------------------------------------------
# Menu Tooltip
--------------------------------------------------------------*/

.tooltip{
	display: inline;
	position: relative;
}

.tooltip:hover:after{
	background: #000;
	border-radius: 5px;
	top: 27px;
	color: #fff;
	content: attr(alt);
	left: -50%;
	padding: 2px 6px;
	position: absolute;
	z-index: 98;
	width: auto;
	white-space: nowrap;
	height: auto;
	font-size: 0.75em;
	border: 1px solid #000;
}

.tooltip:hover:before{
	border: solid;
	border-color: #000 transparent;
	border-width: 0 6px 6px 6px;
	top: 21px;
	content: "";
	left: 2px;
	position: absolute;
	z-index: 99;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

#page {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}

.admin-bar #page{
	min-height: calc(100vh - 32px);
}

#colophon{
	flex: 1;
	margin-top: -27px;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin: 0.7em 1.9em 0.7em -25px;
	max-width: 100%;
	color: #999;
	text-align: left;
	font-size: 0.7em;
	line-height: 1.2em;
}

.fancybox-container .wp-caption{
	margin-left: 0;
}

figure p{
	margin: 0;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto 0.5em;
}

.wp-caption .wp-caption-text {
	margin: 0.5em 0 0 0;
}

.wp-caption-text {
}


/*--------------------------------------------------------------
## Audio elements
--------------------------------------------------------------*/
.audio_img{
	display: block;
	width: 100%;
}
.wp_attachment_holder .wp-audio-shortcode{
	margin-top: 0;
}
/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
## Basic Setup
--------------------------------------------------------------*/

.clearfix:after {
	 visibility: hidden;
	 display: block;
	 font-size: 0;
	 content: " ";
	 clear: both;
	 height: 0;
	 }
.clearfix { display: inline-block; }
/* start commented backslash hack \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* close commented backslash hack */

.introjs-arrow.right{
	top: 17px !important;
}

div.introjs-tooltipReferenceLayer{
	padding-bottom: 10px;
	visibility: visible !important;
}

.introjs-overlay{
	background: none !important;
	background-color: rgba(0,0,0,0.75) !important;
}

/*--------------------------------------------------------------
## Homepage
--------------------------------------------------------------*/
#home_main_title{
	font-family: 'Source Serif Pro', georgia, serif;
/* 	white-space: nowrap; */
}

.home .homepage .entry-content,
.tax-issue_tax .homepage .entry-content,
.tax-special_issue .homepage .entry-content,
.page-dev .homepage .entry-content{
	height: 100%;
	display: flex;
	align-items: center;
}

.home #masthead,
.tax-issue_tax #masthead,
.tax-special_issue #masthead,
.page-dev #masthead,
.site-branding {
	height: 0;
}

.homepage{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	width: 100%;
	height: calc(85vh + 49px);
	margin: 49px auto calc(15vh - 95px);
	display: block;
	position: relative;
	z-index: 100;
}

.admin-bar .homepage{
	height: calc(85vh + 49px - 32px);
}

#title-homepage{
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
}

.multi_line #title-homepage{
	width: 50%;
}

#issue-name-home{
	background-color: #fff;
	width: auto;
	padding: 10px 40px 5px 10px;
	clear: both;
	position: relative;
	-webkit-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.2);
}

#issue-name-home #home_main_title{
	font-size: 3em;
	line-height: 1.1em;
}

#issue-description {
	-webkit-transition:all 500ms;
	-moz-transition:all 500ms;
	-o-transition:all 500ms;
	transition:all 500ms;
	position: absolute;
	right: 10px;
	top: 10px;
	color: #fff;
	background-color: #000;
	border-radius: 50%;
	font-size: 0.3em;
	line-height: 1.2em;
	height: 1.2em;
	width: 1.2em;
	text-decoration: none;
	text-align: center;
}

#home_gc_content{
	width: 700px;
	margin: 0 auto;
}

#issue-description:hover{
	background-color: #ed1c2a;
	color: #fff;
}

a.open-dossier, #fullscreen-navigation a.open-dossier{
	-webkit-transition:all 500ms;
	-moz-transition:all 500ms;
	-o-transition:all 500ms;
	transition:all 500ms;
	font-weight: bold;
	background-color: #ed1c2a;
	color: #fff;
	text-decoration: none;
	padding: 5px 12px;
	font-size: 0.8em;
	display: inline-block;
	margin-top: 1em;
}

a.open-dossier{
	-webkit-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.2);
}

#link_dossier_lightbox {
	text-align: center;
	margin-top: 20px;
}

a.open-dossier:hover{
	color: #ed1c2a;
	background-color: #fff;
}

#fullscreen-navigation a.open-dossier:hover{
	background-color: #000;
}

#issue-description-text{
	border-top: 5px solid #ed1c2a;
	background-color: #fff;
	clear: both;
	padding: 25px 30px;
	-webkit-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3);
}

#issue-description-text p{
	margin: 0;
}

#what-is{
	padding: 10px 10px;
	font-weight: bold;
	background-color: #ed1c2a;
	color: #fff;
	position: absolute;
	width: 100px;
	height: 100px;
	right: 0;
	bottom: -50px;
	font-size: 0.8em;
	line-height: 1.3em;
	text-align: center;
	cursor: pointer;
}

#what-is i.down-arrow{
	border-right: 0.20em solid white;
	border-top: 0.20em solid white;
	top: -10px;
	width: 2.5em;
	height: 2.5em;
}

#what-is:hover i.down-arrow{
	top: -5px;
}

.global-challenges-section{
	width: 100%;
	display: block;
	background-image: url(images/pencil.png), url(images/world.png);
	background-repeat: no-repeat, no-repeat;
	background-position: 130% 90%;
	background-size: 40%;
	background-position: right -250px bottom 80px, -140px 00px;
	background-size: 500px, 400px;
}

.issue-article-section{
	width: 100%;
	display: block;
}

.all-issues-section{
	width: 100%;
	display: block;
	background-color: #f7f7f7;
}

.otherIssue{
	width: 50%;
	padding: 0 50px;
	position: relative;
	display: inline-block;
	vertical-align: top;
	height: 370px;
}

.issue_description {
	position: absolute;
	z-index: 999;
	color: #000;
	-webkit-transition:all 500ms;
	-moz-transition:all 500ms;
	-o-transition:all 500ms;
	transition:all 500ms;
	font-size: 1em;
	line-height: 0;
	right: 7px;
	top: 5px;
}

.issueBox{
	position: relative;
}

.issueBox .issueDate{
	display: inline-block;
	padding: 4px 10px 3px;
	background-color: #000;
	color: #fff;
	font-family: 'Source Serif Pro', georgia, serif;
	font-size: 0.8em;
	font-weight: 600;
	-webkit-transition: all 0.65s ease;
	-moz-transition: all 0.65s ease;
	-o-transition: all 0.65s ease;
	-ms-transition: all 0.65s ease;
	transition: all 0.65s ease;
}

.issueBox .issueLink{
	color: #000;
	text-decoration: none;
	text-align: center;
	position: absolute;
	z-index: 199;
	width: 100%;
	height: 100%;
	-webkit-font-smoothing: antialiased;
}

.nextIssue .issueLink {
	display: none !important;
}

.issueBox .issueInfo{
	padding: 7px 12px 5px;
	position: relative;
	background-color: #fff;
	-webkit-transition: all 0.65s ease;
	-moz-transition: all 0.65s ease;
	-o-transition: all 0.65s ease;
	-ms-transition: all 0.65s ease;
	transition: all 0.65s ease;
}

.issueBox figure{
	height: 240px;
	margin: 0;
	padding: 0;
	background: #fff;
	overflow: hidden;
	position: relative;
	-webkit-transition: all 0.65s ease;
	-moz-transition: all 0.65s ease;
	-o-transition: all 0.65s ease;
	-ms-transition: all 0.65s ease;
	transition: all 0.65s ease;
}

.issueBox figure img{
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 0.65s ease;
	-moz-transition: all 0.65s ease;
	-o-transition: all 0.65s ease;
	-ms-transition: all 0.65s ease;
	transition: all 0.65s ease;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.issueBox figure .hoverInfo{
	-webkit-transition: all 0.65s ease;
	-moz-transition: all 0.65s ease;
	-o-transition: all 0.65s ease;
	-ms-transition: all 0.65s ease;
	transition: all 0.65s ease;
	opacity: 0;
	background-color: rgba(255,255,255,0.7);
	position: absolute;
	text-align: center;
	height: 100%;
	width: 100%;
}

.issueBox .open-dossier{
	position: absolute;
	top:0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	height: 30px;
	width: 30%;
}

.nextIssue .open-dossier{
	width: auto;
	position: relative;
	top: calc(50% - 15px);
}

.issueBox .issueTitle{
	font-family: 'Source Serif Pro', georgia, serif;
	font-size: 1.6em;
	line-height: 1.2em;
}

.pastIssue:hover .issueDate,
.pastIssue:hover figure,
.pastIssue:hover .issueInfo{
	-webkit-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3);
}

.issueBox:hover figure img{
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

.issueBox:hover figure .hoverInfo{
	opacity: 1;
}

.error404 .global-challenges-section{
	height: 80vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

#global-challenges-content.entry-content{
	padding: 60px 0 40px;
}

.title_section_home_container{
	text-align: center;
	margin-bottom: 50px;
}

.title_section_home_container .article-head-bg{
	float: none;
	display: inline-block;
	margin-bottom: 30px
}

.title_section_home_container .article-head-bg #site-name{
	margin: 0;
	float: none;
	padding-bottom: 5px;
}

.title_section_home{
	margin: 0 auto;
	font-family: 'Source Serif Pro', georgia, serif;
	font-weight: bold;
	border-bottom: 3px solid #ed1c2a;
	width: auto;
	font-size: 3em;
	display: inline;
}

.issue-article-section #global-challenges-content .title_section_home{
	font-weight: initial;
}

/*--------------------------------------------------------------
## Fullscreen Nav Menu
--------------------------------------------------------------*/

.figure-menu-toggle{
	z-index: 999;
	position: absolute;
	right: 44px;
	text-align: center;
	cursor: default;
}

.figure-menu-toggle ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.figure-menu-toggle > ul > li {
	padding: 0 0 15px;
}
		
.figure-menu-toggle ul li a {
	-webkit-transition:all 500ms;
	-moz-transition:all 500ms;
	-o-transition:all 500ms;
	transition:all 500ms;
	display: block;
	color: #000;
	background-color: #fff;
	width: 34px;
	line-height: 34px;
	height: 34px;
	text-decoration: none;
}

#article-head .figure-menu-toggle ul li a {
	color: #000;
}

#article-head .figure-menu-toggle ul li a:hover {
	color: #fff;
}

.figure_icon{
	font-family: georgia, serif;
	font-style: italic;
	font-size: 1.5em;
	background-color: #fff;
	height: 34px;
	width: 34px;
	line-height: 34px;
}

.figure_icon:hover, .figure-menu-toggle:hover .figure_icon{
	background-color: #000;
}

.figure_icon{
	color: #000;
}

.figure_icon:hover .paper_clip, .figure-menu-toggle:hover .figure_icon{
	color: #fff;
}
		
.figure-menu-toggle ul li a:hover, #article-head .figure-menu-toggle ul li a:hover {
	background: #000;
	color:#fff;
}
				
.figure-menu-toggle ul ul {
	display: none;
	background: #fff; 
	position: absolute;
	right: 0;
	top: 49px;
	-webkit-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3);
}

.figure-menu-toggle ul ul:before {
	position: absolute;
	top: -9px;
	right: 7px;
	width: 10px;
	border-right: 9px solid transparent;
	border-bottom: 9px solid #fff;
	border-left: 9px solid transparent;
	content: '';
}

.figure-menu-toggle ul li:hover > ul {
	display: block;
}

.figure-menu-toggle ul ul li a {
	width: 100%;
	text-align: right;
	padding: 0 20px;
	white-space: nowrap
}	

body.table-of-content .table-of-content {
	display: block;
}

/*--------------------------------------------------------------
## Search form
--------------------------------------------------------------*/
.fancybox-is-open .fancybox-bg{
	opacity: 1;
	background-color: rgba(255, 255, 255, 0.9);
}

.search_fancybox.fancybox-is-open .fancybox-bg{
	opacity: 1;
	background-color: rgba(255, 255, 255, 0.95);
}

#search_form.fancybox_element{
	background: transparent;
}

.search_fancybox.fancybox-is-open .close{
	position: fixed;
	top: 60px;
	right: 30px;
}

.custom_search_form{
	text-align: center;
	margin-top: 1em;
}

.custom_search_form input#search{
	width: 300px;
	height: 50px;
	background: #fff;
	border: 1px solid #000;
	font-size: 1em;
	color: #000;
	padding-left: 15px;
	border-bottom-left-radius: 5px;
	border-top-left-radius: 5px;
	-webkit-appearance: none;
}

.custom_search_form input#search::-webkit-input-placeholder,
.custom_search_form input#search:-moz-placeholder, /* Firefox 18- */
.custom_search_form input#search::-moz-placeholder,  /* Firefox 19+ */
.custom_search_form input#search:-ms-input-placeholder { 
	color: #000;
}

.custom_search_form button.icon{
	-webkit-border-top-right-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-moz-border-radius-topright: 5px;
	-moz-border-radius-bottomright: 5px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	
	border: none;
	background: #000;
	height: 50px;
	width: 50px;
	color: #fff;
	opacity: 1;
	margin-left: -50px;
	
	-webkit-transition: all .55s ease;
	-moz-transition: all .55s ease;
	-ms-transition: all .55s ease;
	-o-transition: all .55s ease;
	transition: all .55s ease;
}

.custom_search_form button.icon i{
	color: #fff;
	font-size: 1.5em;
	line-height: 0;
}

.custom_search_form:hover button.icon:hover {
	background: #ed1c2a;
}

.custom_search_form input:focus {
	outline-width: 0;
	outline: none;
}

/*--------------------------------------------------------------
## Search result page
--------------------------------------------------------------*/
.search-results .content-area{
	margin: 10rem auto 4rem;
}

.search-results .page-header{
	margin-bottom: 3rem;
	text-align: center;
}

.search-results .article-summaries > li{
	display: block;	
}

.search-results .article-head-bg{
	position: relative;
	float: none;
	display: inline-flex;
	line-height: 1;
	font-size: 0.8rem;
	height: auto;
	padding: 9px 10px 8px 10px;
	margin: 2rem auto 0.5rem;
}

.search-results a.issue_url,
.search-results a.summaryLink{
	position: absolute;
	width: 100%;
	height: 100%;
	display: block;
	line-height: 0;
}

.search-results #issue-info{
	font-size: inherit;
	line-height: inherit;
}

.search-results #issue-name{
	height: auto;
	padding: 0;
	margin-left: 1rem;
}

.search-results .article_item{
	display: flex;
	position: relative;
}

.search-results .summary-article{
	float: left;
	width: 80%;
}

.search-results .article-summaries > li .summary-article img{
	margin-right: 0.8rem;
}

.search-results .summary_title{
	
}

.search-results .article-summaries .to-right{	
	width: 20%;
	margin: 0;
	text-align: right;
}

.search-results .summary_list:hover a i.right-arrow{
	right: 0em;
	border-right: 0.15em solid black;
	border-top: 0.15em solid black;
}

.search-results .article_item:hover a i.right-arrow{
	right: -1em;
	border-right: 0.15em solid #ed1c2a;
	border-top: 0.15em solid #ed1c2a;
}

/*--------------------------------------------------------------
## Fullscreen Nav Menu
--------------------------------------------------------------*/
.index-menu{
	position: relative;
	display: inline-block;
	float: right;
	width: 78px;
	z-index: 2;
}

.fullscreen-backdrop{
	display: block;
	height: 100%;
	width: 100%;
}

.fullscreen-menu-toggle {
	-webkit-transition:all 500ms;
	-moz-transition:all 500ms;
	-o-transition:all 500ms;
	transition:all 500ms;
	height: 34px;
	width: 34px;
	z-index: 999;
	position: relative;
	background-color: #fff;
	font-size:21px;
	color: #000 !important;
	text-decoration: none;
	float: right;
	text-align: center;
	line-height: 1.8;
}

.fullscreen-menu-toggle:hover{
	color: #fff !important;
	background-color: #000;
}

.fullscreen-menu-toggle > .menu-bars {
	margin-left: 7px;
	margin-top: 7px;
}

.fullscreen-menu-toggle > span {
	-webkit-transition-duration: 250ms;
	transition-duration: 250ms;
	-webkit-transition-property: opacity, left;
	transition-property: opacity, left;
	position: relative;
	opacity: 0;
	left: -10px;
}

.fullscreen-nav-open .fullscreen-menu-toggle > span, .fullscreen-menu-toggle:hover > span {
	left: 0;
	opacity: 1
}

.fullscreen-nav-open .fullscreen-menu-toggle > span {
	-webkit-transition-delay: 500ms;
	transition-delay: 500ms;
	color: #fff
}

.fullscreen-nav-open .fullscreen-menu-toggle > .menu-bars i {
	background-color: #000;
}

@media (max-width: 767px) {
	.fullscreen-menu-toggle > span {
		display: none
	}
}

.fullscreen-menu-toggle>span {
	-webkit-transition-duration:250ms;
	transition-duration:250ms;
	-webkit-transition-property:opacity,left;
	transition-property:opacity,left;
	position:relative;
	opacity:0;
	left:-13px;
}

.fullscreen-nav-open .fullscreen-menu-toggle>span,.fullscreen-menu-toggle:hover>span {
	left:-3px;
	opacity:1;
}

.fullscreen-nav-open .fullscreen-menu-toggle>span {
	-webkit-transition-delay:500ms;
	transition-delay:500ms;
	color:#000;
}

.fullscreen-nav-open .fullscreen-menu-toggle > .menu-bars i {
	background-color:#000;
}

@media (max-width: 767px) {
	.fullscreen-menu-toggle>span {
		display:none;
	}
}

#fullscreen-navigation .bottom_menu{
	position: absolute;
	width: 100%;
	bottom: 60px;
}

.third_column{
	width: 33.333333%;
	width: -moz-calc(100%/3);
	width: -webkit-calc(100%/3);
	width: -o-calc(100%/3);
	width: calc(100%/3);
	margin: 0;
	float: left;
}

#fullscreen-navigation .legal{
	margin-top: 8px;
} 

#fullscreen-navigation {
	-webkit-transition:all 800ms;
	-moz-transition:all 800ms;
	-o-transition:all 800ms;
	transition:all 800ms;
	position:fixed;
	top:0;
	bottom:0;
	right:0;
	left:0;
	width:100%;
	height:100%;
	z-index:-1000;
	opacity: 0;
	background-color: rgba(255, 255, 255, 0.9);
}

.body_overflow #fullscreen-navigation{
	z-index:1000;
	opacity: 1;
}

#fullscreen-navigation>.inner-wrap {
	-webkit-transform:translate(0,-50%);
	-moz-transform:translate(0,-50%);
	-ms-transform:translate(0,-50%);
	-o-transform:translate(0,-50%);
	transform:translate(0,-50%);
	position:absolute;
	top:50%;
	left:0;
	right: 0;
	margin: 0 auto;
	width:100%;
	max-height:100%;
	text-align:left;
}

#fullscreen-navigation nav{
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

.fancybox-container #table_of_content_menu{
	overflow: initial;
}

#table_of_content_menu ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

#table_of_content_menu li{
	border-bottom: 1px solid #000;
	padding: 10px 10px 12px;
}

#table_of_content_menu li:last-of-type{
	border-bottom: none;
}

#table_of_content_menu a{
	text-decoration: none;
	color: #000;
}

.menu-index-list a{
	display: flex;
}

#table_of_content_menu .menu-index-number{
	-webkit-transition: all 250ms;
	-moz-transition: all 250ms;
	-o-transition: all 250ms;
	transition: all 250ms;
	align-self: center;
	margin-right: 1em;
	background-color: #eee;
	border-radius: 50%;
	height: 1.6em;
	min-width: 1.6em;
	width: 1.6em;
	line-height: 1.7em;
	text-align: center;
	margin-top: 0.2em;
}

#table_of_content_menu a:hover .menu-index-number{
	color: #fff;
	background-color: #000;
}

#table_of_content_menu .active-menu-index .menu-index-number, #table_of_content_menu a.active-menu-index:hover .menu-index-number{
	color: #fff;
	background-color: #ed1c2a;
}

#table_of_content_menu .menu-index-content{
	display: inline-block;
	align-self: center;
}

#table_of_content_menu .menu-index-title{
	font-size: 1.2em;
	line-height: 1.4em;
}

#table_of_content_menu .menu-index-author{
	font-size: 0.9em;
}

.menu-index-author p{
	margin: 0;
}

.menu-bars {
	display:inline-block;
	position:relative;
	width:1em;
	height:1em;
	cursor:pointer;
	padding:0;
	vertical-align:middle;
}

.menu-bars>i {
	-webkit-transition:all 500ms;
	-moz-transition:all 500ms;
	-o-transition:all 500ms;
	transition:all 500ms;
	background-color:#000;
	width:16px;
	height:2px;
	left:4px;
}

.menu-bars>i:before{
	-webkit-transition:all 500ms;
	-moz-transition:all 500ms;
	-o-transition:all 500ms;
	transition:all 500ms;
	content: "";
	display: inline-block;
	width: 2px;
	height: 2px;
	background-color: #000;
	left: -5px;
	position: absolute;
}

.fullscreen-menu-toggle:hover .menu-bars>i, .fullscreen-menu-toggle:hover .menu-bars>i:before{
	background-color: #fff;
}

.menu-bars>i {
	position:absolute;
	display:inline-block;
}

.menu-bars>i.first {
	top:0;
}

.menu-bars>i.second {
	top:50%;
	margin-top:-1px;
}

.fullscreen-menu-toggle:hover .menu-bars>i.second {
}

.menu-bars>i.third {
	top:100%;
	margin-top:-2px;
}

.menu-bars.active-state>i.first,.menu-bars.active-state>i.third {/*

	top:0;
	margin-top:.33333333em;
*/
}

.menu-bars.active-state>i.first {/*

	-webkit-transform:rotate(-135deg);
	-ms-transform:rotate(-135deg);
	-o-transform:rotate(-135deg);
	transform:rotate(-135deg);
*/
}

.menu-bars.active-state>i.second {/*

	opacity:0;
*/
}

.menu-bars.active-state>i.third {/*

	-webkit-transform:rotate(135deg);
	-ms-transform:rotate(135deg);
	-o-transform:rotate(135deg);
	transform:rotate(135deg);
*/
}

.close{
	-webkit-transition:all 400ms;
	-moz-transition:all 400ms;
	-o-transition:all 400ms;
	transition:all 400ms;
	position: absolute;
	cursor: pointer;
	top: -60px;
	right: -60px;
	width: 50px;
	height: 50px;
	overflow: hidden;
	opacity: 0.5;
}

.home .close,
.tax-issue_tax .close,
.tax-special_issue .close,
.page-dev .close{
	top: 50px;
	right: 20px;
}

.body_overflow .close{
	opacity: 0.5;
}

.close:hover{
	opacity: 1;
}

.close.fullscreen-menu-toggle{
	background-color: transparent;
}

.close:before, .slb_template_tag_ui_close:before{
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.close:before, .close:after, .slb_template_tag_ui_close:before, .slb_template_tag_ui_close:after{
	content: '';
	position: absolute;
	height: 1px;
	width: 100%;
	top: 50%;
	left: 0;
	margin-top: -1px;
	background: #000;
}

.close:after, .slb_template_tag_ui_close:after {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/*--------------------------------------------------------------
## Custom map
--------------------------------------------------------------*/
.map-layout{
	height: 550px !important;
}

.fullscreen-element-layout.map-layout h3,
.fullscreen-element-layout.map_layout h3 {
	display: none;
}

#map-main-container{
	height: 550px;
	width: 900px;
	margin: 0;
	position: relative;
} 

#reset-zoom-btn, #updateLegend-btn, #legend-btn{
	position: absolute;
	bottom: 5px;
	left: 38px;
	-webkit-appearance: none;
	background: #fff;
	border: none;
	border-radius: 0;
	font-family: verdana, sans-serif;
	text-transform: uppercase;
	cursor: pointer;
	height: 28px;
}

#updateLegend-btn{
	font-family: "Font Awesome 5 Pro";
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	top: 4px;
	left: 5px;
	width: 28px;
	padding: 0;
	font-size: 1.2rem;
	font-weight: 900;
}

#updateLegend-btn:before{
	content: '\f5fd';
}

#reset-zoom-btn:hover, #reset-zoom-btn:active,
#updateLegend-btn:hover, #updateLegend-btn:active {
	background-color: #f4f4f4;
	color: #000;
}
.legend-subtitle {
	margin: 5px 0 0 -24px;
	font-size: 13px;
	line-height: 10px;
	font-weight: normal;
	text-transform: uppercase;
	cursor: default;
}

.legend-info{
	margin: 0 0 0 -22px;
	font-size: 13px;
	line-height: 10px;
	font-weight: normal;
	font-style: italic;
	cursor: default;
}

.legend-note{
	margin: 0 0 0 -22px;
	font-size: 0.7rem;
	font-style: italic;
	line-height: 10px;
	font-weight: normal;
	cursor: default;
}

.highcharts-legend-item > span{
	overflow: visible !important;
}

.highcharts-legend-item:hover .legend-subtitle, .legend-subtitle:hover{
	color: #000;
}

.south_china_sea_map .highcharts-legend-item:hover text {
fill: white;
}
.south_china_sea_map .highcharts-legend-item-hidden * {
	fill: none;
	stroke: none;
}
.south_china_sea_map .highcharts-legend-item-hidden image,
.south_china_sea_map .highcharts-legend-item-hidden rect, 
.south_china_sea_map .highcharts-legend-item-hidden:before {
	opacity: 0;
}

.hidden-legend-addon,
.highcharts-reset-zoom{
	display: none !important;
}

.hidden{
	display: none;
}

.map-title{
	position: absolute;
	top:0;
	left: 0;
	z-index: 1;
	margin: 0;
	padding: 10px;
	color: #fff;
}

.map-layer-toggle{
	position: absolute;
	width: 200px;
	top: 0;
	right: 0;
	background-color: rgba(255, 255, 255, 0.85);
	padding: 10px;
}

.map-layer-toggle h4{
	margin-top: 0;
}

.map-layer-toggle label{
	display: block;
}




.fullscreen-element-layout{
	-webkit-transition:all 800ms;
	-moz-transition:all 800ms;
	-o-transition:all 800ms;
	transition:all 800ms;
	border-top: 5px solid #ed1c2a;
	position: relative;
	background-color: #fff;
	opacity: 0;
}

.active_figure.fullscreen-element-layout{
	opacity: 1;
}

#fullscreen-navigation .all-figure-list,
#fullscreen-navigation .figure_element{
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	-webkit-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3);
}

#fullscreen-navigation .all-figure-list ul.figure-list, #fullscreen-navigation  li.fullscreen-menu-element,
#fullscreen-navigation .figure_element ul.figure-list{
	padding: 0;
}

.single-figure .figure_element{
	margin: 3rem auto;
}


/*--------------------------------------------------------------
## Article Header
--------------------------------------------------------------*/

#site-title{
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	text-indent: -9999px;
	display: inline-block;
	width: 120px;
	height: 120px;
	margin-top: 15px;
}

#site-title{
	margin-right: 20px;
}

.entry-content, #masthead, #article-head{
	max-width: 940px;
	width: 940px;
	margin: 0 auto;
	position: relative;
}

#masthead{
	height: 49px;
	z-index: 200;
}

#main_photo_copyright,
#focused_photo_copyright{
	text-shadow: 1px 0px 15px #000;
	position: absolute;
	bottom: 5px;
	left: 10px;
}

#main_photo_copyright *,
#focused_photo_copyright *{
	margin: 0;
	font-size: 0.6em;
	text-transform: uppercase;
	color: #fff;
}

.entry-header #main_photo_copyright{
	float: right;
	position: initial;
	margin-top: -8px;
	margin-right: 3px;
}

.entry-header #focused_photo_copyright{
	right: 5px;
	top: 0;
	z-index: 2;
	left: initial;
	bottom: initial;
}

.entry-header #main_photo_copyright *,
.entry-header #focused_photo_copyright *{
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	
	/* also accepts left, right, top, bottom coordinates; not required, but a good idea for styling */
	-webkit-transform-origin: 100% 100%;
	-moz-transform-origin: 100% 100%;
	-ms-transform-origin: 100% 100%;
	-o-transform-origin: 100% 100%;
	transform-origin: 100% 100%;
}

#main_photo_copyright a,
#focused_photo_copyright a{
	text-decoration: none;
}

#editor_note{
	margin-left: 70px;
	margin-top: 40px;
	margin-bottom: 40px;
	font-size: 0.8em;
	width: 50%;
}

#main_photo_note{
	color: #999;
	margin-left: 70px;
	font-size: 0.7em;
	width: 81%;
}

#share-btns{
	color: #999;
	font-size: 0.7em;
	width: 85px;
	display: inline-block;
	float: right;
	text-align: right;
	margin-top: 1em;
}

#share-btns .addtoany_share{
	display: none;
}

#share-title{
	margin-bottom: 3px;	
}

#main_photo_note p {
	margin-top: 0;
}

#article-head-pos, #article-head-pos-sticky{
	width: 100%;
	margin-top: -165px;
	margin-bottom: 10px;
	z-index: 100;
	height: 34px;
	background-color: transparent;
}

#article-head-pos-sticky{
	-webkit-box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.5);
	box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.5);
}

div.menu_right_top{
	position: absolute;
	z-index: 9999999;
	display: inline-block;
	right: 0;
	top: 0;
	height: 34px;
}

#article-head a,
.article-head-bg a{
	color: #fff;
	text-decoration: none;
}

.tax-issue_tax .article-head-bg a,
.tax-special_issue .article-head-bg a {
	color: #fff;
	text-decoration: none;
	line-height: 1.3;
}

.summary_title h1{
	clear: none;
	font-size: 1.5em;
	line-height: 1.2em;
	margin-bottom: 0;
}

a.issue_url{
	line-height: 2.2
}

.entry-title{
	margin-top: 0;
}

.article-subtitle{
	font-size: 0.9em;
	margin-top: 2em;
}

#article-head-pos-sticky{
	position: fixed;
	background-color: #fff;
	top: -100px;
	margin-top: 0px;
	-webkit-transition:top 400ms;
	-moz-transition:top 400ms;
	-o-transition:top 400ms;
	transition:top 400ms;
}

.fixedHeader #article-head-pos-sticky{
	top:0;
}

.admin-bar.fixedHeader #article-head-pos-sticky{
	margin-top: 32px;
}

#issue-name{
	display: inline-block;
	margin-left: 10px;
	padding: 6px 10px 0;
	height: 40px;
	float: left;
}

.home #issue-name,
.tax-issue_tax #issue-name,
.tax-special_issue #issue-name,
.page-dev #issue-name{
	display: inline-block;
	font-size: 1.8em;
	padding: 2px 10px 0;
	float: left;
	clear: both;
	background-color: #fff;
	margin: 0 0 10px 0;
	height: auto;
	-webkit-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.15);
}

#article-content{
	margin-top: 0px;
}

.article-head-bg{
	height: 34px;
	font-family: 'Source Serif Pro', georgia, serif;
	background-color: #000;
	color: #fff;
	padding: 5px 10px 2px 10px;
	float: left;
	display: flex;
	-webkit-font-smoothing: subpixel-antialiased;
	-webkit-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.2);
}

#site-name{
	float: left;
	margin-right: 20px;
	font-size: 1.125em;
	align-self: center;
}

.home #site-name,
.tax-issue_tax #site-name,
.tax-special_issue #site-name,
.page-dev #site-name{
	font-size: 1.3em;
}

#issue-info{
	float: right;
	font-size: 0.8em;
	align-self: center;
}

.site-content{
}

.article_main_img{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	width: 100%;
	height: 50vh;
	min-height: 265px;
	display: block;
	position: relative;
}

.figure .article_main_img.no_img{
	height: 30vh;
	background-color: #777;
}

.figure .article_main_img.no_img img,
.figure .article_main_img.no_img #focused_photo_copyright{
	display: none;
}

.article_main_img:before, .homepage:before{
	width: 100%;
	height: 25vh;
	z-index: 1;
	content: '';
	display: block;
	position: absolute;
	top:0;
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

#article-content{
	border-top: 5px solid #ed1c2a;
	background-color: #fff;
	padding: 0 25px;
}

#article-content > h2, .article-full-body > h2, #article-content > p, .article-full-body > p, .article-summaries-texts > p, .article-full-body > ol, .article-full-body > ul{
	width: 580px;
	text-align: justify;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	margin-left: 70px;
}

.article-full-body > ol {
	list-style: none;
	padding: 0;
	counter-reset: ol-counter;
}

.article-full-body > ol > li{
	margin-bottom: 1em;
}

.article-full-body > ol > li:before {
	content: counter(ol-counter);
	counter-increment: ol-counter;
	position: absolute;
	left: 65px;
	text-align: center;
	color: #fff;
	line-height: 1.4em;
	background-color: #000;
	width: 1.4em;
	height: 1.4em;
	border-radius: 50%;
	font-weight: bold ;
	font-size: 0.9em;
}

.superHide{
	display: none !important;
}

/*--------------------------------------------------------------
## Article typography
--------------------------------------------------------------*/
.time-read{
	font-size: 12px;
	border-bottom: 1px solid #000;
	padding: 2px;
	display: inline-block;
}

.article-opening{
	color: #ed1c2a;
	font-size: 21px;
	line-height: 31px;
	margin: 40px 0 0;
}

#article-content .article-full-body.DropCap > p:first-of-type:first-letter, #issue-description-text > p:first-of-type:first-letter { 
	float: left; 
	color: #000; 
	font-size: 48px;
	line-height: 42px;
	padding-top: 4px;
	padding-right: 12px;
	padding-left: 2px;
	font-weight: bold;
}

#article-content .article-full-body.noDropCap > p:first-of-type:first-letter{
	
}

#article-content h3 {
	text-transform: uppercase;
	font-size: 1em;
	line-height: 1.1em;
	margin: 40px 0 10px 70px;
	text-align: left;
}

#article-content .inline-element .box-layout h3,
#article-content .inline-element .box_layout h3,
#article-content .embed-element .box_layout h3 {
	margin: 0 0 10px 0;
}

#article-content h2 {
	clear: none;
}

.article_title, h2 {
	text-transform: uppercase;
	font-size: 1em;
	line-height: 1.1em;
	font-weight: bold;
	margin: 40px 0 10px 0;
	text-align: left !important;
	-webkit-hyphens: none !important;
	-moz-hyphens: none !important;
	-ms-hyphens: none !important;
	hyphens: none !important;
}

#article-content h3:before, .article_title:before, h2:before{
	content: "";
	display: block;
	height: 5px;
	width: 16px;
	background: #ed1c2a;
	position: relative;
	left: -20px;
	top:-10px
}

.article-full-body:before{
	content: "";
	display: block;
	height: 16px;
	width: 16px;
	border-top: 5px solid #ed1c2a;
	border-left: 5px solid #ed1c2a;
	position: relative;
	left: -20px;
	top: 20px;
	margin-left: 70px;
}

#article_footer{
	margin: 60px 0 30px 70px;
	width: 580px;
}

#article_author{
	float: left;
	width: auto;
	width: 80%;
}

#bibliography{
	clear: both;
	font-size: 0.9em;
}

.summary_title{
	font-weight: bold;
	text-align: left;
}

#article_author:before{
	content: "";
	display: block;
	height: 16px;
	width: 16px;
	border-top: 5px solid #ed1c2a;
	border-left: 5px solid #ed1c2a;
	position: relative;
	left: -20px;
	top: 20px;
}

.article-summaries-intro:before{
	content: "";
	display: block;
	height: 5px;
	width: 16px;
	background: #ed1c2a;
	position: relative;
	left: 50px;
	top: 10px
}

.article-summaries-intro p:first-of-type:before{
	display: none !important;
}

.body_overflow{
	overflow: hidden !important;
/* 	position:fixed; */
	margin-right: 15px;
}

.fancybox-enabled #article-head-pos-sticky,
.body_overflow #article-head-pos-sticky{
	padding-right: 15px;
}

.body_overflow.fixedHeader #article-head-pos-sticky{
	/* right: 7.5px; */
}

.article-summaries{
	margin: 0;
	padding: 0;
	list-style: none;
}

.article-summaries > li{
	display: flex;
	position: relative;
}

.article-summaries > li > .summary-article{
	align-self: center;
	margin: 10px 0 10px 40px;
	padding: 10px 0;
	width: 555px;
	text-align: justify;
	position: relative;
}

.article-summaries > li .summary-article p{
	margin: 0;
}

.article-summaries > li .summary-article img{
	width: 150px;
	margin-right: 20px;
}

.article-summaries .article-number{
	align-self: center;
	text-align: center;
	background-color: #000;
	color: #fff;
	margin-left: 30px;
	border-radius: 50%;
	margin-top: -1em;
	line-height: 1.4em;
	width: 1.4em;
	height: 1.4em;
	font-weight: bold ;
	font-size: 0.9em;
}

.article-summaries .to-right{
	align-self: center;
	font-size: 0.750em;
	cursor: pointer;
	float: left;
	margin-left: 40px;
	height: 95px;
}

.article-footer-index{
	-webkit-transition:all 250ms;
	-moz-transition:all 250ms;
	-o-transition:all 250ms;
	transition:all 250ms;
	opacity: 0;
	position: absolute;
	left: 0;
	text-align: center;
	padding: 5px;
	width: 100%;
	color: #fff;
	font-size: 0.8em;
	font-weight: bold;
	-webkit-transform: translateZ(0px);
	
}

.original-article .article-footer-index{
	opacity: 1;
}

/* Additional formatting for arrow icon */
i.up-arrow {
	-webkit-transition:all 250ms;
	-moz-transition:all 250ms;
	-o-transition:all 250ms;
	transition:all 250ms;
	display: block;
	font-style: normal;
	margin: 0 auto;
	position: relative;
	top:0.5em;
	width: 4em;
	height: 4em;
	border-right: 0.15em solid black;
	border-top: 0.15em solid black;
	transform: rotate(-45deg);
}

i.down-arrow {
	-webkit-transition:all 250ms;
	-moz-transition:all 250ms;
	-o-transition:all 250ms;
	transition:all 250ms;
	display: block;
	font-style: normal;
	margin: 0 auto;
	position: relative;
	top:0.5em;
	width: 4em;
	height: 4em;
	border-right: 0.15em solid black;
	border-top: 0.15em solid black;
	transform: rotate(135deg);
}

i.right-arrow {
	-webkit-transition:all 250ms;
	-moz-transition:all 250ms;
	-o-transition:all 250ms;
	transition:all 250ms;
	display: inline-block;
	font-style: normal;
	position: relative;
	top: 1.5em;
	right: 0em;
	width: 3.5em;
	height: 3.5em;
	border-right: 0.15em solid black;
	border-top: 0.15em solid black;
	transform: rotate(45deg);
}

i.left-arrow {
	-webkit-transition:all 250ms;
	-moz-transition:all 250ms;
	-o-transition:all 250ms;
	transition:all 250ms;
	display: inline-block;
	font-style: normal;
	position: relative;
	top: 1.5em;
	left: 0em;
	width: 3.5em;
	height: 3.5em;
	border-right: 0.15em solid black;
	border-top: 0.15em solid black;
	transform: rotate(-135deg);
}

#to-top{
	text-align: center;
	margin: 40px auto;
	font-size: 0.750em;
	cursor: pointer;
	width: 4.2em;
}

#to-top:hover i.up-arrow{
	top:-0.5em;
	border-right: 0.15em solid #ed1c2a;
	border-top: 0.15em solid #ed1c2a;
}

#prev-nav-footer{
	text-align: left;
	font-size: 0.750em;
	cursor: pointer;
	float: left;
}

#next-nav-footer{
	text-align: right;
	font-size: 0.750em;
	cursor: pointer;
	float: right;
}

.next-nav-footer-text{
	display: inline-block;
	line-height: 1.5em;
}

.next-nav-footer-text > div{
	font-size: 1.3em;
	font-weight: bold;
}

#prev-nav-footer i.left-arrow{
	top: 0.7em;
}

#next-nav-footer i.right-arrow{
	top: 0.7em;
}

a.arrow-link{
	text-decoration: none;
	color: #000;
}

.footer-index {
	position: relative;
	margin: 0 auto;
	background-color: #eee;
	height: 130px;
}

.footer-title-bg{
	background-color: #000;
	height: 30px;
	width: 100%;
	position: absolute;
}

.footer-nav{
	padding: 0 60px;
	margin-top: -40px;
}

.summary_list:hover a i.right-arrow,
a:hover i.right-arrow{
	right: -1em;
	border-right: 0.15em solid #ed1c2a;
	border-top: 0.15em solid #ed1c2a;
}

a:hover i.left-arrow{
	left: -1em;
	border-right: 0.15em solid #ed1c2a;
	border-top: 0.15em solid #ed1c2a;
}

.footer-index ul{
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
}

.footer-index li{
	display: inline-block;
	text-align: center;
}

.footer-index li a{
	-webkit-transition:all 250ms;
	-moz-transition:all 250ms;
	-o-transition:all 250ms;
	transition:all 250ms;
	margin-top: 70px;
	position: relative;
	z-index: 1;
	border-radius: 50%;
	font-size: 0.9em;
	height: 1.6em;
	width: 1.6em;
	line-height: 1.65em;
	display: block;
	background-color: #fff;
	color: #000;
	text-decoration: none;
}

.footer-index li.original-article a{
	background-color: #000;
	color: #fff;
}

.footer-index li.active-article a{
	background-color: #ed1c2a;
	color: #fff;
}



/*--------------------------------------------------------------
## Tooltip Glossary
--------------------------------------------------------------*/

#tt p{
	display: none;
}

div#ttcont{
	background-color: rgba(0, 0, 0, 0.85) !important;
}

div.glossaryItemTitle{
	margin-top: 0 !important;
	font-weight: bold;
}

#tt #ttcont div.glossaryItemBody{
	padding: 0 !important;
}

div.glossaryItemBody{
}

span.glossaryLink{
}

span.glossaryLink:after, a.glossaryLink:after{
}

span.glossaryLink, a.glossaryLink{
	cursor: help;
}

/*--------------------------------------------------------------
## Timeline style
--------------------------------------------------------------*/


#fullscreen-navigation .timeline-layout,
#fullscreen-navigation .timeline_layout{
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
	-webkit-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3);
}


.tl-timeaxis-background{
	background-color: transparent !important;
}

.tl-storyslider .tl-slider-background{
	background-color: rgba(255,255,255,0.75) !important;
}

.tl-storyslider .tl-slider-background.secondSlide{
	background-color: rgba(255,255,255,0.9) !important;
}

.tl-storyslider .tl-slide{
	
}

.tl-storyslider .tl-slide.tl-slide-titleslide{
	
}

.tl-timeline p,
.tl-timeline h1,
.tl-timeline h2,
.tl-timeline h3,
.tl-timeline .tl-credit{
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.tl-timeline p{
	color: #222222 !important;
}

.tl-text .tl-headline-date, .tl-text h3.tl-headline-date{
	color: #999999 !important;
}

.tl-timeline .tl-credit{
	text-align: left !important;
}

.tl-media-shadow{
	-webkit-box-shadow: none !important;
	-moz-box-shadow: none !important;
	box-shadow: none !important;
}

.tl-timenav{
	background-color: #fff !important;
	position: absolute !important;
	bottom: 0;
}

.tl-timemarker{
	margin-top: -3px !important;
}

.tl-attribution{
	display: none !important;
}

.tl-menubar-button{
	background-color: transparent !important;
	font-size: 14px !important;
	display: inline-block !important;
	padding: 6px !important;
}

.tl-menubar-button:hover{
	background: transparent !important;
	color: #000 !important;
}

/* Normal colors */

.tl-timemarker .tl-timemarker-content-container{
	background-color: #fff !important;
}

/* Fullwidth Timeline 
.tl-timeline, .tl-timenav{
	overflow: visible !important;
}

.tl-timeaxis-background{
	width: 1000% !important;
	left: -100% !important;
}
*/
.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline p.tl-headline-fadeout:after, .tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline.tl-headline-fadeout:after {
	content: none !important;	
}

/* Active */

.tl-timemarker.tl-timemarker-active .tl-timemarker-timespan{
	border-color: #ed1c2a !important;
}

.tl-timemarker.tl-timemarker-active .tl-timemarker-content-container,
.tl-timemarker.tl-timemarker-active .tl-timemarker-line-left, .tl-timemarker.tl-timemarker-active .tl-timemarker-line-right{
	background-color: #ed1c2a !important;
	border-color: #ed1c2a !important;
}

.tl-timemarker.tl-timemarker-active .tl-timemarker-timespan .tl-timemarker-timespan-content,
.tl-timemarker.tl-timemarker-active .tl-timemarker-line-left:after, .tl-timemarker.tl-timemarker-active .tl-timemarker-line-right:after{
	background-color: #ed1c2a !important;
}

.tl-timemarker.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline{
	color: #fff !important;
}

.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline, .tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline p{
	font-weight: bold !important;
}

/* hover */

.tl-timemarker:hover .tl-timemarker-content-container{
	background-color: #000 !important;
	border-color: #000 !important;
}

.tl-timemarker:hover .tl-timemarker-timespan,
.tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-line-left, .tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-line-right{
	border-color: #000 !important;
}

.tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-line-left:after, .tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-line-right:after{
	background-color: #000 !important;
}

.tl-timemarker:hover .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline{
	color: #fff !important;
}

.tl-slidenav-next .tl-slidenav-title, .tl-slidenav-previous .tl-slidenav-title{
	display: none;
}

.tl-slidenav-previous,
.tl-slidenav-next{
	top: 38% !important;
}

.tl-slidenav-next .tl-slidenav-content-container{
	right: 0;
}

.tl-slidenav-next{
	right: 20px !important;
}

.tl-slidenav-previous{
	left: 20px !important;
}

.tl-slidenav-next .tl-slidenav-icon,
.button-next {
	-webkit-transition: all 250ms;
	-moz-transition: all 250ms;
	-o-transition: all 250ms;
	transition: all 250ms;
	display: inline-block;
	font-style: normal;
	position: relative;
	top: 1.5em;
	right: 1em;
	width: 3.5em;
	height: 3.5em;
	font-size: 1em !important;
	border-right: 0.15em solid black;
	border-top: 0.15em solid black;
	transform: rotate(45deg);
	margin-right: 0px;
	margin-left: 0 !important;
}

.tl-slidenav-previous .tl-slidenav-icon,
.button-previous {
	-webkit-transition: all 250ms;
	-moz-transition: all 250ms;
	-o-transition: all 250ms;
	transition: all 250ms;
	display: inline-block;
	font-style: normal;
	position: relative;
	top: 1.5em;
	left: 1em;
	width: 3.5em;
	height: 3.5em;
	font-size: 1em !important;
	border-right: 0.15em solid black;
	border-top: 0.15em solid black;
	transform: rotate(-135deg);
	margin-left: 0px !important;
}

.tl-slidenav-next:hover .tl-slidenav-icon{
	right: 0em;
	margin-left: 0 !important;
	border-right-color: #ed1c2a;
	border-top-color: #ed1c2a;
}

.tl-slidenav-previous:hover .tl-slidenav-icon{
	margin-left: 0 !important;
	left: 0em;
	border-right-color: #ed1c2a;
	border-top-color: #ed1c2a;
}

.tl-slidenav-next .tl-slidenav-icon:before, .tl-slidenav-previous .tl-slidenav-icon:before{
	content: none !important;
}

.tl-slidenav-next .tl-slidenav-description, .tl-slidenav-next .tl-slidenav-title{
	margin-top: -1.2em !important;
	margin-left: -2em !important;
	width: 100px !important;
	text-align: right !important;
}

.tl-slidenav-previous .tl-slidenav-description, .tl-slidenav-previous .tl-slidenav-title{
	margin-top: -1em !important;
	margin-left: 2em !important;
	width: 100px !important;
}

#timeline-embed{
	width: 100%; 
	height: 550px;
	background-size: cover;
	background-position: center center;
}

#timeline-embed .tl-slide.tl-full-color-background h1, 
#timeline-embed .tl-slide.tl-full-color-background h2, 
#timeline-embed .tl-slide.tl-full-color-background h3, 
#timeline-embed .tl-slide.tl-full-color-background h4, 
#timeline-embed .tl-slide.tl-full-color-background h5, 
#timeline-embed .tl-slide.tl-full-color-background h6, 
#timeline-embed .tl-slide.tl-full-color-background p, 
#timeline-embed .tl-slide.tl-full-image-background h1, 
#timeline-embed .tl-slide.tl-full-image-background h2, 
#timeline-embed .tl-slide.tl-full-image-background h3, 
#timeline-embed .tl-slide.tl-full-image-background h4, 
#timeline-embed .tl-slide.tl-full-image-background h5, 
#timeline-embed .tl-slide.tl-full-image-background h6, 
#timeline-embed .tl-slide.tl-full-image-background p,
.tl-slidenav-next .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-description, 
.tl-slidenav-next .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-icon, 
.tl-slidenav-next .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-title, 
.tl-slidenav-previous .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-description, 
.tl-slidenav-previous .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-icon, 
.tl-slidenav-previous .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-title{
	text-shadow: none !important;
}

#article-content .tl-timeline h3.tl-headline-date{
	margin: 0 0 0 0;
	color: #ed1c2a !important;
	font-size: 0.9em;
	text-transform: none;
}

#article-content .tl-timeline h3.tl-headline-date:before{
	content: none;
}

.tl-timemarker{
	 top: 25px !important;
}

.tl-timenav{
	 height: 65px !important;
}

.tl-storyslider{
	height: calc(100% - 66px) !important;
	top: 0 !important;
}

.tl-menubar{
	bottom: 37px !important;
	top: initial !important;
	left: 10px !important;
}

.tl-timemarker .tl-timemarker-content-container{
	height: 6px !important;
	width: 6px !important;
	background-color: #919191 !important;
	box-shadow: none;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	left: -3px;
	border: none !important;
	box-shadow: none !important;
}

.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content{
	display: none;
}

.tl-timemarker .tl-timemarker-timespan{
	background-color: transparent !important;
	height: 0px !important;
/*	display: none;
*/
}

.tl-timemarker .tl-timemarker-timespan-content,
.tl-timemarker .tl-timemarker-line-left {
	display: none !important;
}

.tl-timemarker .tl-timemarker-line-right{
	border-width: 0 !important;
}

.timeline-layout .source_div,
.timeline_layout .source_div{
	padding: 10px;
}

.tl-timemarker.tl-timemarker-with-end .tl-timemarker-timespan:after{
	bottom: -3px !important;
	height: 25px !important;
	background-color: rgba(115, 115, 115, .1) !important;
	-webkit-border-radius: 0% !important;
	-moz-border-radius: 0% !important;
	border-radius: 0 !important;
}

.tl-timemarker .tl-timemarker-line-right:after{
	bottom: 8px !important;
	background-color: rgba(255, 255, 255, 1) !important;
	height: 25px !important;
	-webkit-border-radius: 0% !important;
	-moz-border-radius: 0% !important;
	border-radius: 0 !important;
}

.tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-line-right:after,
.tl-timenav .tl-timemarker.tl-timemarker-with-end.tl-timemarker-active .tl-timemarker-line-right:after {
	background-color: rgba(255, 255, 255, 1) !important;
	left: 0px !important;
	width: 1px !important;
}

.tl-timemarker:hover .tl-timemarker-timespan:after{
	background-color: rgba(51, 51, 51, .2) !important;
}

.tl-timemarker.tl-timemarker-active .tl-timemarker-timespan:after{
	background-color: rgba(51, 51, 51, .4) !important;
}

.tl-timemarker.tl-timemarker-active .tl-timemarker-line-right:after{
	background-color: rgba(255, 255, 255, 1) !important;
	left: 0px !important;
	width: 1px !important;
}

/*--------------------------------------------------------------
## Element replaced
--------------------------------------------------------------*/
.fullscreen-btn{
	cursor: pointer;
}

.title-element-replaced{
	display: none !important;
}

.element-replaced{
	float: right;
	display: block;
	position: relative;
	width: 460px;
	margin: 0 -170px 0 0;
}

.semi-element{
	margin-left: 70px;
	width: 580px;
	margin-top: 30px;
	font-size: 0.9em;
}

.full-element{
	margin-left: 70px;
	width: 752px;
	margin-top: 30px;
	font-size: 0.9em;
}

.inline_figure.full_figure,
.inline-element,
.box-element{
	font-size: 0.9em;
}

.fullscreen-element-layout .semi-element,
.fullscreen-element-layout .full-element {
	margin: 0 auto;
}

.main-info-element{
	width: auto;
	display: inline-block;
	vertical-align: top;
}

.main-info-element img{
	width: 100%;
	height: auto;
	margin-top: 5px;
	border-top: 5px solid #ed1c2a;
}

.element-replaced .inline-element{
	width: 460px;
	display: block;
	position: relative;
	padding: 20px 0 20px 30px;
	border-left: none;
	margin: 0px;
}

#article-content .semi-element h3,
#article-content .full-element h3{
	text-align: left;
	margin-top: 0;
	margin-left: 0 !important;
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}

.element-replaced h3{
	font-size: 0.9em;
}

#article-content .element-replaced h3:before{
	content: none;
}

h3#article_annexes_title{
	font-style: italic;
	margin-top: 80px;
	margin-bottom: 0;
}

#article-content #article_annexes .semi-element h3:before,
#article-content #article_annexes .full-element h3:before{
	content: none;
}

#article_annexes .semi-element {
	border-top: 5px solid #ed1c2a;
	padding: 10px 0 0 0;
	display: inline-block;
	width: 50%;
}

#article_annexes .full-element {
	border-top: 5px solid #ed1c2a;
	padding: 10px 0 0 0;
	display: inline-block;
/* 	width: 100%; */
}

#article_annexes .full-element.map-layout,
#article_annexes .full-element.map_layout,
#article_annexes .full-element.Map-home-layout{
	border: none;
	padding: 0;
}

/*--------------------------------------------------------------
## Pullout
--------------------------------------------------------------*/

.styled_pullout,
.styled_quote {
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
	display: block;
	position: relative;
	padding: 20px 30px 20px 30px !important;
	width: calc(50% + 170px);
	color: #ed1c2a !important;
	text-transform: uppercase;
	line-height: 1.6;
	font-size: 18px;
	border-left: none;
	margin: 0 -170px 0 0;
	float: right;
	text-align: right
}

.styled_pullout{
	width: calc(50% + 135px);
	margin: 0 -135px 0 0;
}

.styled_quote{
	width: auto;
	max-width: calc(50% + 170px);
	padding: 30px 30px 30px 30px !important;
	text-transform: none;
	font-family: 'Source Serif Pro', georgia, serif;
	font-style: italic;
	font-size: 18px;
	color: #000 !important;
}

.styled_quote .quote_text:before{
	content: '\201c';
	display: inline-block;
	color: #ed1c2a;
	font-size: 60px;
	font-weight: 600;
	position: relative;
	top: 25px;
	left: -2px;
	height: 0;
	line-height: 0;
	font-family: sans-serif;
	font-style: normal;
}

.styled_quote .quote_text:after{
	content: '\201d';
	display: inline-block;
	color: #ed1c2a;
	font-size: 60px;
	font-weight: 600;
	position: absolute;
	bottom: 80px;
	right: -5px;
	height: 0;
	font-family: sans-serif;
	font-style: normal;
}

.quote_author{
	text-transform: none;
	font-size: 12px;
	position: absolute;
	bottom: 5px;
	right: 30px;
	text-align: right;
	font-style: normal;
}

.pullout-border {
	display: block;
	position: absolute;
	top: 0;
	width: 4px;
	height: 100%;
	padding: 10px 0;
	right: 0;
	left: auto
}

.summary_list .pullout-border {
	left: 70px;
	right: auto;
	padding: 15px 0;
}

.summary_list > a{
	height: 100%;
	width: 100%;
	display: block;
	position: absolute;
	top: 0;
	z-index: 1;
}

.pullout-border:before {
	content: "";
	display: block;
	height: 100%;
	width: 100%;
	background: #ed1c2a
}

/*--------------------------------------------------------------
## Simple Lightbox
--------------------------------------------------------------*/

#slb_viewer_wrap .slb_theme_slb_baseline .slb_viewer_overlay{
	background-color: #fff !important;
}

#slb_viewer_wrap .slb_theme_slb_default .slb_group_status{
	position: absolute;
	right: 0;
	top: 2px;
}

#slb_viewer_wrap .slb_theme_slb_default .slb_container{
	border-radius: 0 !important;
	-webkit-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3) !important;
	-moz-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3) !important;
	box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3) !important;
}

#slb_viewer_wrap .slb_theme_slb_default .slb_data_title, 
#slb_viewer_wrap .slb_theme_slb_default .slb_group_status,
#slb_viewer_wrap .slb_theme_slb_default .slb_data_desc {
	font-family: verdana, arial, sans-serif !important;
	font-size: 0.8em !important;
	color: #999;
}

#slb_viewer_wrap .slb_theme_slb_default .slb_data_desc{
	margin-top: 0 !important;
	display: none !important;
}

span.slb_close{
	position: absolute !important;
	right: -86px !important;
	top: -72px;
	width: 50px !important;
}

#slb_viewer_wrap .slb_theme_slb_default .slb_controls .slb_close .slb_template_tag{
	background: none !important;
}

#slb_viewer_wrap .slb_theme_slb_baseline .slb_loading{
	background-image: url('images/preloader.gif') !important;
}

/*--------------------------------------------------------------
## Embed
--------------------------------------------------------------*/
.embed-element .source_div,
.embed_layout .source_div {
	margin-top: 2px;
}

.element-replaced .embed-element iframe,
.element-replaced .embed_layout iframe{
	width: 100%;
	height: auto;
	min-height: 240px;
}

/*
#article_annexes .semi-element iframe,
#article_annexes .full-element iframe{
	height: auto;
	min-height: 240px;
}
*/

#fullscreen-navigation .all-figure-list.semi-element{
	max-width: 560px;
	padding: 20px;
}

#fullscreen-navigation .all-figure-list.full-element{
	max-width: 800px;
	padding: 20px;
}

#fullscreen-navigation .all-figure-list.semi-element.text-element,
#fullscreen-navigation .all-figure-list.full-element.text-element{
	padding: 0;
}

.boxSwitch{
	display: none;
}
.box-element .boxSwitch{
	display: block;
}

.box-element .description_content{
	display: none;
}

.box-layout .description_content,
.box_layout .description_content{
	overflow: hidden;
}

.description_content ul{
	margin-left: 0;
	padding-left: 1.2rem;
}

.embed-container { 
	position: relative; 
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
	height: auto;
} 

.embed-container iframe,
.embed-container object,
.embed-container embed { 
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*--------------------------------------------------------------
## Fancybox
--------------------------------------------------------------*/
.fancybox-container .fancybox-bg{
	background-color: rgba(255, 255, 255, 0.9) !important;
}

div.fancyboxElem {
	max-width: 900px;
	width: 90%;
	display: none;
	border-top: 5px solid #ed1c2a !important;
	background-color: #fff !important;
	-webkit-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3);
}

.fancyboxElemHome {
	display: none;
	background-color: transparent !important;
	max-width: 900px;
	overflow: initial !important;
}

.imgClose{
	top: 0;
	-webkit-transition:all 500ms;
	-moz-transition:all 500ms;
	-o-transition:all 500ms;
	transition:all 500ms;
}

.fancybox-is-closing .imgClose{
	opacity: 0;
}

.fancybox-slide h3{
	margin-top: 0;
}

/*--------------------------------------------------------------
## Chart
--------------------------------------------------------------*/

.chart-layout{
	height: 100%;
}

.fancybox-slide .chart-layout{
	padding: 0;
}

.intro_chart{
	display: none;
}

.element-replaced .intro_chart{
	display: block;
}

.chart-container.fullscreen-element-layout,
.chart_layout.fullscreen-element-layout  {
	margin: 0 auto;
}

.pie-type-chart{
	height: 100%;
}

.chart-element-replaced .chart-layout{
	margin: 0px 0 10px 0;
	overflow: hidden;
}

.chart-element-replaced .chart-container .chart-layout,
.chart-element-replaced .chart_layout .chart-layout {
	height: 300px;
}

.chart-container .source_div{
}

.chart-element-replaced .chart-container .pie-type-chart,
.chart-element-replaced .chart_layout .pie-type-chart{
	height: 250px;
}

#article-content .chart-element-replaced h3{
	margin: 20px 0 7px 35px;
	text-align: left;
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}

.fullscreen-element-layout.chart-container,
.fullscreen-element-layout.chart_layout{
	padding: 40px;
	width: 100%;
}

.fullscreen-element-layout .chart-layout,
.fullscreen-element-layout .chart_layout{
	margin: 0 auto;
}

.south_china_sea_map .highcharts-series-6 {
	stroke-dasharray: 4, 8;
}
.south_china_sea_map .highcharts-series-7 {
	stroke-dasharray: 1, 3;
}
.south_china_sea_map .highcharts-series-8 {
	stroke-dasharray: 10, 12;
}
.south_china_sea_map .highcharts-series-9 {
	stroke-dasharray: 10, 12, 1, 12;
}

/*--------------------------------------------------------------
## Box
--------------------------------------------------------------*/


.box-layout{
	padding: 0;
}

.box-element .box-layout,
.text-element .box-layout{
	padding: 40px;
}


.box-layout h4{
	margin-bottom: 6px;
	padding-bottom: 6px;
	border-bottom: 1px solid #000;
}

.box_element_read{
	font-size: 0.8em;
	line-height: 1.1em;
	margin-top: 0.6em;
}

.box_element_legend{
	text-transform: uppercase;
	font-weight: bold;
	margin-left: 10px;
}

.fullscreen-element-layout .box_element_legend, .fullscreen-element-layout .box_element_read{
	display: none;
}

.box-element{
	position:relative;
	width:460px;
/* 	margin: 10px 0px; */
}

.element-replaced .box-element {
	width:425px;
	margin: 0px;
	padding: 17px 0 20px 30px;
}

.box-element.semi-element.inline-element {
	width:425px;
	margin: 0px;
	padding: 17px 0 20px 0;
}

.box-layout h3{
	margin-top: 0;
}

#article-content .box-layout h3{
	content: none;
	margin-bottom: 0;
}

#article-content .semi-element .box-layout h3:before{
	content: none;
}

.element-replaced.box-element-replaced{
	margin-right: -70px;
	width: 360px;
}

.box-layout p{
	margin: 0;
}

.box-element .read-more{
	display: inline-block;
	float: right;
	font-size: 0.7em;
	font-weight: bold;
	margin-top: 2px;
}

.box-element .box-layout{
	-webkit-transition:all 500ms;
	-moz-transition:all 500ms;
	-o-transition:all 500ms;
	transition:all 500ms;
	background-color: #ed1c2a;
	padding:10px;
	color: #fff;
	position:relative;
	cursor:pointer;
	z-index:2;
}

.box-element .box-layout:hover{
	background-color: #000;
}

.Map-home-layout .box_element_legend{
	display: none;
}

.Map-home-layout .box-layout, .Map-home-layout .box-layout:hover{
	background-color: transparent;
	color: #000;
	padding: 0;
}

.Map-home-layout{
	display: inline-block !important;
}

span .map_layout:hover .box_read_more,
.Map-home-layout:hover .box_element_read{
	color: #ed1c2a;
}

.link-element-replaced{
	cursor: pointer;
	color: #ed1c2a;
	text-decoration: underline;
}

/*--------------------------------------------------------------
## New Box
--------------------------------------------------------------*/


.box_layout,
.embed_layout{
	border-top: 5px solid #ed1c2a;
	padding: 10px 0 0 0;
	display: inline-block;
	width: 50%;
	margin-left: 70px;
	margin-top: 30px;
	font-size: 0.9em;
	position: relative;
}

.single-figure .box_layout,
.single-figure .embed_layout{
	width: 100%;
	font-size: 1rem;
	border: none;
}

.single-figure h1{
	margin-bottom: 0;
}

.fancybox_figure.box_layout{
	font-size: 1rem;
}

.inline_figure .box_layout,
.inline_figure .embed_layout {
	border-top: none;
}

.inline_figure{
	float: right;
	display: block;
	position: relative;
	width: 460px;
	margin: 0 -170px 0 0;
}

.inline_figure > div{
	width: 100%;
	display: block;
	position: relative;
	padding: 20px 0 20px 30px;
	border-left: none;
	margin: 0px;
}

#article-content h3.figure_title{
	margin-left: 0;
}

#article-content h3.figure_title:before{
	content:none;
}

#article-content .highcharts-subtitle{
	font-weight: normal !important;
}

.box_link{
	position: relative;
	-webkit-transition: all 500ms;
	-moz-transition: all 500ms;
	-o-transition: all 500ms;
	transition: all 500ms;
	background-color: #ed1c2a;
	padding: 10px;
	color: #fff;
}

.box_link:hover{
	background-color: #000;
}

.map_layout .box_link{
	color: #000;
	padding: 0;
	background-color: transparent;
}

.map_layout .box_link img{
	width: 100%;
	height: auto;
	margin-top: 5px;
	border-top: 5px solid #ed1c2a;
}

.box_legend{
	text-transform: uppercase;
	font-weight: bold;
	margin-left: 10px;
}

.map_layout .box_legend{
	display: none;
}

a.fancybox_link{
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
}

a.fancybox_inline_link{
	
}

h3.box_title{
	text-align: left;
	margin: 0 !important;
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}

h3.box_title:before{
	content: none !important;
}

.box_read_more{
	font-size: 0.8em;
	line-height: 1.1em;
	margin-top: 0.6em;
}

#issue_wide_article_figures{
	
}

.fancybox_figure{
	display: none;
	position: relative;
}

.edit_url{
	position: absolute;
	line-height: 1.3;
	z-index: 10;
	top: 10px;
	right: 10px;
	margin: 0;
	color: #fff;
	font-size: 0.8rem;
}

.edit_url span{
	text-align: center;
	position: relative;
}

.edit_url a{
	background-color: #ed1c2a;
	border-radius: 20px;
	padding: 0.3rem 1.6rem 0.2rem 0.6rem;
	text-decoration: none;
	color: #fff;
	display: inline-block;
}

.edit_url .fas{
	font-size: 0.6rem;
	position: absolute;
	right: 0.6rem;
	top: 10%;
}

.timeline_layout.fancybox_figure{
	display: block !important;
	padding: 0 !important;
	max-width: 1000px !important;
	height: 0;
	overflow: hidden;
}

.fancybox-slide .timeline_layout.fancybox_figure{
	height: auto;
	display: inline-block !important;
	overflow: visible;
}

.fancybox-slide .fancybox_figure{
	border-top: 5px solid #ed1c2a;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding: 40px;
	-webkit-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3);
	-webkit-transition: all 800ms;
	-moz-transition: all 800ms;
	-o-transition: all 800ms;
	transition: all 800ms;
	overflow: visible;
}

.fancybox-slide .fancybox_figure.map_layout{
	width: 90vw !important;
	height: 80vh !important;
	max-width: initial !important;
	padding: 0;
	background-color: transparent;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.fancybox-slide #replace_2961{
	max-height: 550px !important;
	max-width: 900px !important;
}

.fancybox-slide .map-main-container{
	-webkit-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3);
}

.fancybox-slide .fancybox_figure.map_layout .close{
	top: 5px;
	right: 5px;
}

/*--------------------------------------------------------------
## Source
--------------------------------------------------------------*/

.source_div,
.accordon-layout .source_div,
.accordeon_layout .source_div {
	margin-top: 10px;
	font-size: 0.7em;
	font-style: italic;
	text-align: left;
}

.source_div p{
	margin: 0;
	color: #999;
}

.source_div p a{
	text-decoration: underline;
}

/*--------------------------------------------------------------
## Table
--------------------------------------------------------------*/
.table-layout,
.table_layout{
	padding: 40px;
}

table.no_head{
	border-top: 5px solid #ed1c2a;
}

.table-element,
.table_layout{
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}

.table-element table,
.table_layout table{
	border-bottom: 3px solid #eee;
	text-align: center;
	margin-bottom: 0;
}

.table-element thead,
.table_layout thead{
	background-color: #ed1c2a;
	color: #fff;
}

.table-element thead th,
.table_layout thead th{
	padding: 10px 20px;
	border-right: 1px solid #eee;
}

.table-element tbody td,
.table_layout tbody td{
	padding: 10px 20px;
	border-right: 1px solid #eee;
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}

.table-element .big_table thead th,
.table-element .big_table tbody td,
.table_layout .big_table thead th,
.table_layout .big_table tbody td{
	padding: 10px 10px;
}

.table-element tbody td:first-of-type,
.table_layout tbody td:first-of-type{
	font-weight: bold;
}

.table-element thead th:last-of-type, .table-element tbody td:last-of-type,
.table_layout thead th:last-of-type, .table_layout tbody td:last-of-type{
	border-right:none
}

.table-element tbody tr:nth-child(even),
.table_layout tbody tr:nth-child(even){
	background-color: #fafafa;
}


/*--------------------------------------------------------------
# Accordion
--------------------------------------------------------------*/
#fullscreen-navigation .accordion-layout,
#fullscreen-navigation .accordeon_layout{
	background-color: #fff;
	padding: 40px;
}

.accordion-layout ul,
.accordeon_layout ul{
	margin: 0 0 0 40px;
}

.main-accordion{
	list-style: none;
	margin-top: 15px;	
	position: relative;
}

.accordion p{
	margin: 0;
}

.accordion dt{
	border-top: 1px solid #000;
	padding: 10px 8px;
}

.accordion dt:first-of-type{
	border-top: none;
}

.accordion dd{
	padding: 0 8px 10px;
	margin: -5px 0 0;
}

.accordion dd:last-of-type{
	padding-bottom: 0;
}

.accordion h2{
	margin-top: 0;
}

.accordion .acordion_item_title .button{
	position: absolute;
	right: 0px;
	width: 15px;
	height: 15px;
	top: 3px;
}

.accordion .acordion_item_title .button:before,
.accordion .acordion_item_title .button:after{
	content: "";
	position: absolute;
	background-color: black;
	transition: transform 0.25s ease-out;
}

/* Vertical line */
.accordion .acordion_item_title .button:before{
	left: 0;
	right: 0;	
	margin: 0 auto;
	width: 1px;
	height: 100%;
}

/* horizontal line */
.accordion .acordion_item_title .button:after{
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 100%;
	height: 1px;
}

.accordion .acordion_item_title{
	cursor: pointer;
	padding-right: 20px;
	position: relative;
}

.accordion .acordion_item_title.current .button:before{ 
	transform: rotate(90deg); 
	-webkit-transform: rotate(90deg); 
	-moz-transform: rotate(90deg); 
	-ms-transform: rotate(90deg); 
}
.accordion .acordion_item_title.current .button:after{ 
	transform: rotate(180deg);    
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg); 
}

.accordion .acordion_item_title.current, .accordion .acordion_item_title:hover{
	color: #ed1c2a;
}

.accordion .acordion_item_title.current .button:before, 
.accordion .acordion_item_title.current .button:after, 
.accordion .acordion_item_title:hover .button:before, 
.accordion .acordion_item_title:hover .button:after {
	background-color: #ed1c2a;
}

/*--------------------------------------------------------------
# Cookie
--------------------------------------------------------------*/

#cookie-notice .button.wp-default{
	background: none;
	border: none;
	color: #fff;
	background-color: #ed1c2a;
	text-shadow: none;
}

#cookie-notice .button.wp-default:hover{
	color: #ed1c2a;
	background-color: #fff;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-info{
	font-size: 0.7em;
	color: #aaa;
	padding: 0.5em 0;
	width: 97%;
	max-width: 100%;
}

.site-info a{
	color: #aaa;
	text-decoration: none;
}

.site-info p {
	margin: 0;
}

.iheid-foot{
	float: left;
}

.design-foot{
	float: right;
}


/*
//---------------------------
//----- Media Query
//---------------------------
*/

@media print {
	
	#article-head-pos-sticky{
		position: initial;
	}
	
	.article_main_img{
		height: 0 !important;
		min-height: 0 !important;
	}
	
	#article-head-pos{
		margin-top: 0 !important;
	}
	
	.article-head-bg{
		color: #000;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
	}
	
	.article_main_img img,
	.footer-index,
	#to-top,
	#share-btns,
	.to-right,
	#focused_photo_copyright,
	#masthead,
	#article-head-pos-sticky,
	.index-menu {
		display: none;
	}
	
	.wow{
		visibility: visible !important;
		opacity: 1 !important;
	}
}

/* MacBook Pro 15" */
@media screen and (max-width: 1480px) {

}

/* iPad landscape */
@media screen and (max-width: 1024px) {
	
	.homepage{
		height: calc(81vh + 49px);
		margin: 49px auto calc(19vh - 95px);
	}
	
	#title-homepage{
		margin-top: -50px;
	}
	
}

/* iPad Portrait */
@media screen and (max-width: 768px) {
	
	body, button, input, select, textarea{
		font-size: 15px;
	}
	
	#title-homepage{
		margin-top: -100px;
	}
	
	.multi_line #title-homepage{
		width: 100%;
	}
	
	.otherIssue{
		padding: 0 20px;
		height: 300px;
	}
	
	.issueBox figure{
		height: 210px;
	}
	
	.article_main_img:before, .homepage:before{
		height: 20vh;
	}
	
	div.fancyboxElem{
		max-width: 650px;
	}
	
	.article_main_img{
		height: 30vh;
	}
	
	#article-head-pos, #article-head-pos-sticky{
		margin-top: -105px;
	}
	
	.entry-content, #masthead, #article-head{
		max-width: 700px;
		width: 700px;
	}

	#home_gc_content{
		width: 600px;
	}
	
	#article-content > h2, .article-full-body > h2,
	#article-content > p, .article-full-body > p, .article-summaries-texts > p,
	#article_author, .semi-element{
		width: 480px;
	}
	
	.chart-element-replaced .chart-container .chart-layout,
	.chart-element-replaced .chart_layout .chart-layout{
		height: 250px;
	}
	
	.element-replaced, .element-replaced .inline-element, .box-element{
		width: 390px;
	}
	
	.element-replaced{
		margin-right: -100px;
	}
	
	.article-summaries > li > .summary-article{
		width: 465px;
	}
	
	#article-content > h2, .article-full-body > h2,
	#article-content > p, .article-full-body > p, .article-summaries-texts > p,
	.wp-caption, #main_photo_note, #article-content h3, .article-full-body:before, 
	#article_author, .semi-element, .chart-layout, .chart_layout, .box-element.semi-element{
		margin-left: 30px;
	}
	
	.article-summaries-intro:before{
		left: 10px;
	}
	
	.article-summaries .article-number{
		margin-left: -20px;
	}
	
	.summary_list .pullout-border{
		left: 20px;
	}
	
	.footer-index li a{
/* 		margin-left: 10px; */
		margin-left: 0px;
	}
	
	#next-nav-footer i.right-arrow{
		width: 1.5em;
		height: 1.5em;
		top: 2.1em;
		right: -1.5em;
	}
	
	#prev-nav-footer i.left-arrow{
		width: 1.5em;
		height: 1.5em;
		top: 2.1em;
		left: -1.5em;
	}
	
	figure#attachment_348.wp-caption.alignleft{
		width: 230px !important;
	}
	
	#fullscreen-navigation>.inner-wrap{
		max-width: 600px;
	}
	
	.element-replaced .inline-element{
		width: 405px;
	}
	
	.styled_pullout{
		margin-right: -120px;
	}
	
	.footer-nav{
		padding: 0 10px;
	}
	
	chart-element-replaced{
		width: 80%;
	}
	
	#table_of_content_menu .menu-index-title{
		font-size: 1em;
		line-height: 1.2em;
	}
	
	#table_of_content_menu .menu-index-author{
		font-size: 0.7em;
	}
	
	#map-main-container{
		width: 600px !important;
		height: 366px !important;
	}
	
	.map-layout,
	.map_layout{
		height: 366px !important;
	}
	
	.tl-skinny .tl-slide,
	.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-media{
		padding-top: 0 !important;
	}
	
	.tl-slide-content .tl-media-content iframe{
		height: 170px !important;
		width: 300px !important;
	}
	
	.tl-slide-content{
		padding-left: 100px !important;
		padding-right: 100px !important;
		width: 400px !important;
	}
	
	.fancybox-slide .fancybox_figure{
		max-width: 90%;
	}
	
	.fancybox-slide .chart-layout{
		max-height: 80vh;
	}
	
	.close{
		right: 0px;
	}
}

/* iPhone 6+ landscape */
@media screen and (max-width: 736px) {
	
	
	body, button, input, select, textarea{
		font-size: 14px;
	}
	
	.homepage{
		height: calc(71vh + 49px);
	}
	
	#what-is{
		bottom: -45px;
	}
	
	.home .homepage .entry-content,
	.tax-issue_tax .homepage .entry-content,
	.tax-special_issue .homepage .entry-content,
	.page-dev .homepage .entry-content {
		justify-content: center;
	}
	
	#title-homepage{
		margin: initial;
	}
	
	.multi_line #title-homepage{
		width: 100%;
	}
	
	.otherIssue{
		padding: 0 10px;
	}
	
	.issueBox .open-dossier{
		width: 100px;
		height: 25px;
	}
	
	#masthead{
		height: 35px;
	}
	
	.entry-content, #masthead, #article-head{
		max-width: 680px;
		width: 680px;
	}
	
	#site-title{
		width: 100px;
		height: 99px;
	}
	
	#article-content{
		padding: 0 20px;
	}
	
	h1{
		margin: 0.25em 0;
	}
	
	#timeline-embed{
		height: 350px
	}
	
	#issue-name-home #home_main_title{
		font-size: 2.6em;
	}
	
	.homepage{
		margin: 35px auto;
	}
	
	#fullscreen-navigation .article-head-bg, #fullscreen-navigation #issue-name{
		display: none;
	}
	
	.article-subtitle{
		margin-top: 1em;
	}
	
	.article-opening{
		margin: 25px 0 0;
		font-size: 18px;
		line-height: 26px;
	}
	
	.article-summaries-intro:before{
		left: -20px;
	}
	
	#article-content > h2, .article-full-body > h2,
	#article-content > p, .article-full-body > p, .article-summaries-texts > p, .wp-caption, #main_photo_note, #article-content h3, .article-full-body:before, #article_author, .semi-element, .chart-layout, .chart_layout, .box-element.semi-element{
		margin-left: 0;
	}
	
	#article-content > h2, .article-full-body > h2,
	#article-content > p, .article-full-body > p, .article-summaries-texts > p, .semi-element{
		width: 530px;
	}
	
	#article_author{
		width: 430px;
	}
	
	#share-btns{
		float: none;
		margin-top: 3em;
	}
	
	.article-summaries > li > .summary-article{
		width: 485px;
	}
	
	.article-summaries > li .summary-article img{
		width: 120px;
	}
	
	.article-summaries .to-right{
		position: relative;
		right: -25px;
		margin-left: 0;
	}
	
	.element-replaced {
		margin-right: -120px;
	}
	
	.element-replaced .box-element{
		width: 390px;
	}
	
	.fullscreen-element-layout.chart-container,
	.fullscreen-element-layout.chart_layout{
		padding: 25px;
	}
	
	.fullscreen-element-layout.chart-container h3,
	.fullscreen-element-layout.chart_layout h3{
		margin-top: 0;
	}
	
	#link_dossier_lightbox{
		margin-top: 0px;
	}
	
	#issue-description-text{
		font-size: 0.8em;
	}
	
	.menu-index-author{
		display: none;
	}
	
	.styled_pullout{
		font-size: 16px;
	}
	
	#table_of_content_menu{
		padding: 15px 25px;
	}
	
	#table_of_content_menu li{
		padding: 5px 10px 6px;
	}
	
	.close{
		top: -35px;
		right: -35px;
		width: 30px;
		height: 30px;
	}
	
	#slb_viewer_wrap .slb_theme_slb_baseline .slb_container{
		padding: 6px !important;
	}
	
	span.slb_close{
		width: 30px !important;
		right: -42px !important;
		top: -34px !important;
	}
	
	.accordion-layout, .box-layout,
	.accordion_layout, .box_layout{
		padding: 25px;
	}
	
	.lightbox-overflow{
		overflow: auto;
	}
	
	.lightbox-overflow .lightbox-overflow-margin{
		margin: 50px auto !important;
	}
	
	.all-figure-list h3,
	.figure_element h3{
		font-size: 1em;
		line-height: 1.4em;
	}
	
	.accordion h2{
		margin-bottom: 0.3em;
	}
	
	.accordion dt{
		padding: 6px 8px;
	}
	
	.accordion dd{
		padding: 0 8px 6px;
		margin: -3px 0 0;
	}
	
	#main_photo_note{
		width: 50%;
	}
	
	.styled_quote{		
		margin: 0 -120px 0 0;
		max-width: calc(50% + 120px);
	}
	
	.inline_figure{
		width: 400px;
		margin-right: -120px;
	}
	
	.fancybox-slide .fancybox_figure{
		padding: 20px;
	}
	
	.fancybox-slide .fancybox_figure.chart_layout{
		max-height: 80%;
	}
	
	#secondary-navigation{
		top: 7px;
	}
	
}

/* iPhone 6 landscape */
@media screen and (max-width: 667px) {
	.entry-content, #masthead, #article-head{
		max-width: 630px;
		width: 630px;
	}
	
	#fullscreen-navigation>.inner-wrap{
		max-width: 580px;
	}
	
	.element-replaced .inline-element{
		width: 355px;
	}
	
	#issue-name-home #home_main_title{
		font-size: 2.3em;
	}
	
	#article-head-pos-sticky{
		display: none;
	}
	
	.summary_list a.arrow-link{
		display: block;
		text-indent: -9999px;
	}
	
	.summary_list i.right-arrow{
		display: block;
		text-indent: 9999px;
	}
	
	#table_of_content_menu{
		padding: 10px 15px;
	}
	
	#table_of_content_menu li{
		padding: 3px 10px 5px;
	}
	
	.accordion-layout, .box-layout,
	.accordion_layout, .box_layout,
	.fullscreen-element-layout.chart-container,
	.fullscreen-element-layout.chart_layout{
		padding: 15px;
	}
	
	#article-content .chart-element-replaced h3,
	.chart-element-replaced .chart-container .chart-layout,
	.chart-element-replaced .chart_layout .chart-layout{
		margin-left: 25px;
	}
	
	#issue-description-text{
		padding: 15px 20px;
	}
	
	.chart-element-replaced .chart-container .chart-layout,
	.chart-element-replaced .chart_layout .chart-layout {
		height: 200px;
	}
	
	.chart-element-replaced .chart-container .pie-type-chart,
	.chart-element-replaced .chart_layout .pie-type-chart {
		height: 250px;
	}
	
	.styled_pullout{
		font-size: 14px;
		width: calc(50% + 120px);
		margin-right: -70px;
		padding: 15px 20px 10px 20px !important;
	}
	
	.table-element thead th,
	.table-element tbody td,
	.table_layout thead th,
	.table_layout tbody td{
		padding: 5px 15px;
	}
	
	.chart-layout,
	.chart_layout{
		width: auto;
	}
	
	#map-main-container{
		width: 600px !important;
		height: 305px !important;
	}
	
	.map-layout,
	.map_layout{
		height: 305px !important;
	}
	
	#article_author{
		width: 380px;
	}
	
	#article_footer{
		width: auto;
	}
	
	.styled_quote{		
		margin: 0 -60px 0 0;
	}
	
	.element-replaced .box-element{
		width: 390px;
	}
}

/* iPhone 5 + 5s Landscape */
@media screen and (max-width: 568px) {
	
	body, button, input, select, textarea{
		font-size: 14px;	
	}
	
	.otherIssue{
		height: 250px;
	}
	
	.issueBox figure{
		height: 160px;
	}
	
	.entry-content, #masthead, #article-head{
		max-width: 95%;
		width: 95%;
	}
	
	#site-title{
		width: 80px;
		height: 79px;
	}
	
	.homepage{
		margin: 28px auto;
	}
	
	#masthead{
		height: 28px;
	}
	
	#home_gc_content{
		width: 80%;
	}
	
	.home #site-name,
	.tax-issue_tax #site-name,
	.tax-special_issue #site-name,
	.page-dev #site-name{
		font-size: 1.1em;
	}
	
	#issue-name-home #home_main_title{
		font-size: 2.1em;
	}
	
	#fullscreen-navigation>.inner-wrap{
		width: 88%;
	}
	
	ul.article-summaries{
		width: 100%;
	}
	
	.article-summaries > li{
		width: 88%;
		margin: 0 auto;
	}
	
	.element-replaced .inline-element{
		padding-left: 0;
	}
	
	#article-content > h2, .article-full-body > h2,
	#article-content > p, .article-full-body > p, .article-summaries-texts > p, #article_author, .semi-element{
		width: 95%;
		margin-left: auto;
		margin-right: auto;
	}
	
	.article-full-body:before{
		left: -8px;
	}
	
	.article-opening{
		font-size: 16px;
		line-height: 22px;
	}
	
	.element-replaced{
		float: none;
	}
	
	.main-info-element, .article-summaries > li > .summary-article,
	.box-element-replaced .box-element.semi-element{
		margin-left: 0 !important;
	}
	
	.article-summaries .article-number, .summary_list .pullout-border{
		display: none;
	}
	
	.element-replaced.box-element-replaced, .element-replaced, .element-replaced .inline-element, .box-element{
		width: 100%;
	}
	
	.styled_pullout{
		float: none;
		text-align: left;
		width: 100%;
	}
	
	.pullout-border{
		left: 0;
	}
	
	#article-content .chart-element-replaced h3, .chart-element-replaced .chart-container .chart-layout,
	.chart-element-replaced .chart_layout .chart-layout{
		margin-left: 0;
	}
	
	#fullscreen-navigation>.inner-wrap{
		width: 90%;
	}
	
	.close{
		top: 5px;
		right: 5px;
	}
	
	.all-figure-list h3,
	.figure_element h3{
		padding-right: 30px;
	}
	
	.lightbox-overflow .lightbox-overflow-margin{
		margin: 10px auto !important;
	}
	
	#article_annexes .semi-element{
		width: 100%;
	}
	
	#map-main-container{
		width: 510px !important;
		height: 305px !important;
	}
	
	.styled_quote{
		max-width: 100%;
		float: none;
		margin: auto auto 20px -10px;
		padding-top: 10px !important;
	}
	
	#article_footer{
		margin: 0 30px;
	}
	
	#share-btns{
		margin-top: 0;
	}
}

/* iPhone 4s Landscape */
@media screen and (max-width: 480px) {

}

/* iPhone 6+ portrait */
@media screen and (max-width: 414px) {
	
	#secondary-navigation{
		top: 4px;
	}
	
	#article-content > h2, .article-full-body > h2,
	#article-content > p, .article-full-body > p, .article-summaries-texts > p, #article_author, .semi-element{
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	
	.article-full-body:before,
	#article_author:before{
		left: -20px;
		top: 16px;
	}
	
	#article_footer{
		margin: 0 0 1rem 0;
	}
	
	.otherIssue{
		width: 100%;
		height: 310px;
	}
	
	.issueBox figure{
		height: 210px;
	}
	
	.next-nav-footer-text{
		display: none;
	}
	
	#article_author{
		width: 100%;
	}
	
	#article_author p{
		margin-bottom: 0;
	}
	
	.lightbox-overflow .lightbox-overflow-margin{
		margin: 40px auto !important;
	}
	
	#share-btns{
		margin-top: 0.5rem;
		width: 100%;
		text-align: left;
		font-size: 0.8rem;
	}
	
	#share-btns *{
		display: inline-block;
	}
	
	.footer-nav.entry-content {
		width: 90%;
	}
	
	figure#attachment_348.wp-caption.alignleft{
		width: 100% !important;
	}
	
	#table_of_content_menu li{
		padding: 10px 10px 12px;
	}
	
	#main_photo_note{
		width: 100%;
	}
	
	.close{
		top: -38px;
		right: -5px;
	}
	
	#map-main-container{
		width: 375px !important;
		height: 229px !important;
	}
	
	.map-layout,
	.map_layout{
		height: 229px !important;
	}
	
	.element-replaced .box-element{
		padding-left: 0;
		width: 100%;
	}
	
	.inline_figure{
		width: 100%;
		margin: 0;
	}
	
	.inline_figure > div{
		padding-left: 0;
		padding-top: 15px;
	}
	
}

/* iPhone 6 Portrait */
@media screen and (max-width:375px) {
	.footer-index li a{
		margin-left: 3px;
	}
	
	#article-content{
		padding: 0 10px;
	}
	
	.article-footer-index{
		font-size: 0.6em;
	}
	
	.footer-title-bg{
		height: 20px;
	}
	
	.article-head-bg{
		width: 100%;
		float: none;
	}
	
	.index-menu{
		z-index: 2;
		top: -74px;
	}
	
	.figure-menu-toggle ul ul{
		right: -46px;
	}
	
	.figure-menu-toggle ul ul:before{
		right: 53px;
	}

}

/* iPhone 4S + 5 + 5s Portrait */
@media screen and (max-width: 320px) {

}