/*
Theme Name: 	Jinsha Theme
Theme URI: 		http://odoson.com
Description: 	The totally nude Wordpress theme!
Version: 		1.0
Author: 		Robert Baumgartner
Author URI: 	http://odoson.com
Tags: 			trailblazer, naked, clean, basic
*/



/*** Sensible Defaults ***/

@import "css/reset.css";
@import "css/NotoSansSC/NotoSansSC-Light.css";
@import "js/lightbox/css/lightbox.min.css";

div,
article,
section,
header,
footer,
nav,
li					{ position:relative; /* For absolutely positioning elements within containers (add more to the list if need be) */ }
body 				{ background:#fff; /* Don't forget to style your body to avoid user overrides */ }
/*::-moz-selection 	{ background:#ff0; color:#333; }
::selection 		{ background:#ff0; color:#333; } */

* {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	   -moz-font-smoothing: antialiased;
	        font-smoothing: antialiased;
}


/* Helper Classes */

.clear { clear: both; }
strong { font-weight: 500; }
body.page-template-page-landing-cn strong {
	font-weight: 600;
}
em { font-style: italic; }
a, a:link, a:visited, a:hover, a:focus { color: inherit; }
sup { vertical-align: super; font-size: smaller; }
.hidden { display: none !important; }


html {
	-webkit-text-size-adjust: 100%;
}

html, body {
	font-family: 'Fira Sans', sans-serif;
	font-size: 13px;
	line-height: 150%;
	font-weight: 300;
	color: #112d37;
}
	
	body.page-template-page-landing-cn {
		font-family: 'Noto Sans', 'NotoSansSCLight', sans-serif;
	}

	@media (min-width: 400px) {
		html, body {
			font-size: 14px;
			line-height: 150%;
		}
	}
	
	@media (min-width: 600px) {
		html, body {
			font-size: 15px;
			line-height: 150%;
		}
	}
	
	@media (min-width: 700px) {
		html, body {
			font-size: 16px;
			line-height: 150%;
		}
	}

.header {
	height: 3.75em;
	background: #FAFAFA;
	position: fixed;
	width: 100%;
	z-index: 99;
	box-shadow: 0 4px 20px rgba(29, 85, 105, 0.5);
}

	.header h1 {
		font-size: 1em;
		display: block;
		overflow: hidden;
		background: url(css/img/logo.png) no-repeat center;
		background-size: 100%;
		width: 3em;
		height: 3em;
		margin: 0.375em auto;
		-webkit-transition: all 0.25s ease-out;
		-moz-transition: all 0.25s ease-out;
		-o-transition: all 0.25s ease-out;
		transition: all 0.25s ease-out;
	}
	
		.header h1 a {
			display: block;
			text-indent: -1000px;
			width: 100%;
			height: 100%;
		}
		
		.header h1:hover {
			transform: scale(2.23);
			transform-origin: 50% 0;
		}
	
	.header .wrap {
		position: relative;
	}
	
	.header .lang-switch {
		position: absolute;
		right: 15px;
		top: 0;
		width: 5em;
		height: 2.5em;
		margin-top: 0.25em;
	}
		
		.header .lang-switch a.en,
		.header .lang-switch a.cn {
			width: 30px;
			height: 20px;
			display: block;
			background: url(css/img/en.png) no-repeat center right;
			background-size: auto 100%;
			top: 50%;
			position: absolute;
			right: 40px;
			transform: translateY(-50%);
			-webkit-transition: all 0.25s ease-in-out;
			-moz-transition: all 0.25s ease-in-out;
			-o-transition: all 0.25s ease-in-out;
			transition: all 0.25s ease-in-out;
			text-indent: -1000px;
			overflow: hidden;
		}
			
			.header .lang-switch a.en:hover,
			.header .lang-switch a.en:active {
				background: url(css/img/en-hover.png) no-repeat center right;
				background-size: auto 100%;
			}
			
			.header .lang-switch a.en.active {
				background: url(css/img/en-active.png) no-repeat center right;
				background-size: auto 100%;
			}
			
			.header .lang-switch a.cn {
				background: url(css/img/cn.png) no-repeat center right;
				background-size: auto 100%;
				right: 0;
			}
			
			.header .lang-switch a.cn:hover,
			.header .lang-switch a.cn:active {
				background: url(css/img/cn-hover.png) no-repeat center right;
				background-size: auto 100%;
			}
			
			.header .lang-switch a.cn.active {
				background: url(css/img/cn-active.png) no-repeat center right;
				background-size: auto 100%;
			}
	
	.header .nav-toggle {
		position: absolute;
		left: 15px;
		top: 0;
		width: 2.5em;
		height: 2.5em;
		margin-top: 0.25em;
		cursor: pointer;
	}
	
		.header .nav-toggle span {
			width: 20px;
			height: 20px;
			display: block;
			background: url(css/img/nav-toggle.png) no-repeat center left;
			background-size: 100% 100%;
			top: 50%;
			position: absolute;
			transform: translateY(-50%);
			-webkit-transition: all 0.25s ease-in-out;
			-moz-transition: all 0.25s ease-in-out;
			-o-transition: all 0.25s ease-in-out;
			transition: all 0.25s ease-in-out;
		}
	
		.header .nav-toggle:hover span {
			background-image: url(css/img/nav-toggle-hover.png);
		}

.navigation {
	background: #1d566a;
	color: #fff;
	position: fixed;
	height: 100%;
	width: 420px;
	max-width: 100%;
	z-index: 999;
	/* left: -420px; */
	-webkit-transition: all 0.25s ease-out;
	-moz-transition: all 0.25s ease-out;
	-o-transition: all 0.25s ease-out;
	transition: all 0.25s ease-out;
	
	transform: translateX(-100%);
}

	.navigation.open {
		transform: translateX(0);
	}
	
	.navigation .close {
		position: absolute;
		right: 1em;
		top: 0.35em;
		width: 2.5em;
		height: 2.5em;
		cursor: pointer;
		background: url(css/img/close-white.png) no-repeat center left;
		background-size: 50%;
		margin-top: 0.25em;
		z-index: 9;
	}
	
		.navigation .close:hover {
			background-image: url(css/img/close-hover.png);
		}
	
	.navigation .inner {
		padding: 7em 3em 3em 3em;
		overflow: auto;
		width: 100%;
		height: 100%;
	}
	
	.navigation ul li {
		font-weight: 500;
		font-size: 1.5em;
		padding: 0.25em 0;
		cursor: pointer;
		-webkit-transition: all 0.25s ease-in-out;
		-moz-transition: all 0.25s ease-in-out;
		-o-transition: all 0.25s ease-in-out;
		transition: all 0.25s ease-in-out;
	}
		
		body.page-template-page-landing-cn .navigation ul li {
			font-weight: 600;
		}
		
		.navigation ul li span {
			-webkit-transition: all 0.25s ease-in-out;
			-moz-transition: all 0.25s ease-in-out;
			-o-transition: all 0.25s ease-in-out;
			transition: all 0.25s ease-in-out;
		}
		
		.navigation ul > li:hover > span {
			color: #E04328;
		}
		
		.navigation ul li ul {
			margin: 0.25em 0;
		}
		
		.navigation ul li ul li {
			font-weight: 500;
			font-size: 1.25rem;
			padding: 0.15em 0;
			opacity: 0.6;
		}

.area {
	padding: 2em 0 4.5em 0;
	position: relative;
}

	@media (min-width: 450px) {
		.area {
			padding: 7em 0 9.5em 0;
		}
	}
	
	.area.hero {
		text-align: center;
		background: #CEEAF4;
		background-size: cover;
		min-height: 50em;
		padding-top: 7em;
	}
		
		@media (min-width: 500px) {
			.area.hero {
				min-height: 55em;
				padding-top: 9em;
			}	
		}
		
		@media (min-width: 800px) {
			.area.hero {
				min-height: 60em;
				padding-top: 9em;
			}	
		}
		
		
		.hero-level {
			background-size: cover;
			background-repeat: no-repeat;
			background-position: center;
			position: absolute;
			width: 100%;
			height: 100%;
			top: 0;
			left: 0;
			/*
			-webkit-transition: all 0.25s linear;
			-moz-transition: all 0.25s linear;
			-o-transition: all 0.25s linear;
			transition: all 0.25s linear;
			*/
		}
			
			@media (max-width: 700px) {
				.hero-level {
					background-size: 200% auto;
					background-position: bottom center;
				}	
			}
			
			@media (max-width: 450px) {
				.hero-level {
					background-size: 250% auto;
					background-position: bottom center;
				}	
			}
		
		.hero-level.hero0 { background-image: url("css/img/hero0.png"); }
		.hero-level.hero1 { background-image: url("css/img/hero1.png"); }
		.hero-level.hero2 { background-image: url("css/img/hero2.png"); }
		.hero-level.hero3 { background-image: url("css/img/hero3.png"); }
		.hero-level.hero4 { background-image: url("css/img/hero4.png"); }
		.hero-level.hero5 { background-image: url("css/img/hero5.png"); }
		.hero-level.hero6 { background-image: url("css/img/hero6.png"); }
		.hero-level.hero7 { background-image: url("css/img/hero7.png"); }
		
	
	.area.project-background {
		background: #d7edf5;
	}
	
	.area.map,
	.area.map2 {
		background: #d7edf5;
		padding: 0;
		position: relative;
	}
	
	.area.objectives {
		background: #afdbeb;
	}
	
	.area.sectors-stakeholders {
		background: #e1f2f8;
	}
	
	.area.tools-products {
		background: #f5fbfd;
	}
	
	.area.conferences-publications {
		background: #d1e9e4;
	}
	
	.area.partners {
		background: #f0f7eb;
	}
	
	.area.contact {
		background: #e5f1de;
	}
	
	.area.imprint {
		background: #d1e9e4;
	}

.wrap {
	padding: 0 15px;
	width: 100%;
	max-width: 950px;
	margin: 0 auto;
}

.wrap .text {
	width: 100%;
	max-width: 650px;
	margin: 0 auto;
}

.columns {
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
}

a.storer {
	background: #e76c28;
	display: block;
	width: 5.5em;
	height: 5.5em;
	border-radius: 100%;
	text-align: center;
	color: #fff;
	font-weight: 400;
	font-size: 1.1em;
	line-height: 110%;
	position: relative;
	cursor: pointer;
	margin-top: -0.5em;
	box-shadow: 4px 4px 12px  rgba(29, 86, 105, 0.5);
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

	body.page-template-page-landing-cn a.storer {
		font-weight: 500;
	}
	
	a.storer:hover {
		background: #e04328;
		color: #fff !important;
	}
	
	a.storer span {
		display: block;
		position: relative;
		top: 50%;
		transform: translateY(-50%);
	}

h1 {
	font-size: 2em;
	color: #1d566a;
	line-height: 100%;
	font-weight: 500;
	text-transform: uppercase;
}

	body.page-template-page-landing-cn h1 {
		font-weight: 600;
	}

	@media (min-width: 450px) {
		h1 {
			font-size: 3em;
		}
	}

h2 {
	font-size: 2em;
	color: #1d566a;
	line-height: 100%;
	font-weight: 500;
	text-transform: uppercase;
	margin: 1em 0;
	text-align: center;
}
	body.page-template-page-landing-cn h2 {
		font-weight: 600;
	}

	.area h1:first-child
	.area h2:first-child {
		margin-top: 0;
	}

h3 {
	font-size: 1.25em;
	color: #112d37;
	line-height: 120%;
	font-weight: 400;
	margin: 2em 0 0.5em 0;
}
	
	body.page-template-page-landing-cn h1 {
		font-weight: 500;
	}

	.hero h3 {
		font-size: 1.5em;
		margin: 1em 0 1.5em 0;
		color: #1d566a;
	}

p {
	margin-bottom: 1em;
}

.lead-text p {
	font-size: 1.15em;
}


.objectives ul {
	margin: 3em 0 1em 0;
}

	.objectives ul li {
		position: relative;
		margin-bottom: 1em;
	}
	
	.objectives ul li ul {
		display: block;
		margin: 0;
		margin-left: 4em;
		min-height: 3em;
	}
	
	.objectives ul li ul li {
		display: block;
		margin: 0;
	}
	
	.objectives ul li img {
		margin-right: 1em;
		height: 3em;
		width: 3em;
		position: absolute;
	}
	
	.objectives ul li ul li h3 {
		margin-top: 0;
	}
	

@media (min-width: 600px) {
	.objectives ul li img {
		height: 5em;
		width: 5em;
	}
	
	.objectives ul li ul {
		min-height: 5em;
		margin-left: 6em;
	}
}

.sectors-holder {
	margin-top: 4em;
}

.sector-item {
	width: 100%;
	text-align: center;
	padding: 0 1em 2em 1em;
	
}
	@media (min-width: 450px) {
		.sector-item { width: 50%; }
	}
	
	@media (min-width: 800px) {
		.sector-item { width: 33.33%; }
	}

	.sector-item .description {
		display: none;
		text-align: left;
	}
	
	.sector-item h3 {
		margin-top: 0;
	}
	
	.sector-item img {
		max-width: 150px;
		height: auto;
	}
	
	@media (min-width: 450px) {
		.sector-item img { max-width: 100%; }
	}
	

.tools-holder {
	margin-top: 4em;
}

.tools-item {
	width: 100%;
	text-align: center;
	padding: 0 1.1em 2em 1.1em;
	
}
	@media (min-width: 450px) {
		.tools-item { width: 50%; }
	}
	
	@media (min-width: 800px) {
		.tools-item { width: 33.33%; }
	}

	.tools-item .description {
		display: none;
	}
	
	.tools-item h3 {
		margin-top: 1em;
		line-height: 124%;
	}
	
	.tools-item img {
		max-width: 130px;
		height: auto;
	}
	
	@media (min-width: 450px) {
		.tools-item img { max-width: 80%; }
	}

.more-link,
.less-link {
	display: inline-block;
	text-decoration: underline;
	cursor: pointer;
	-webkit-transition: all 0.15s ease-out;
	-moz-transition: all 0.15s ease-out;
	-o-transition: all 0.15s ease-out;
	transition: all 0.15s ease-out;
}

.more-link:hover,
.less-link:hover {
	color: #E04328;
}

.half {
	width: 100%;
}

@media (min-width: 500px) {
	.half {
		width: 50%;
	}
	
	.half-conferences {
		padding-right: 1.25em;
	}
	
	.half-publications {
		padding-left: 1.25em;
	}
}

.half-conferences,
.half-publications {
	margin-top: 2em;
}

	.half-conferences h3,
	.half-publications h3 {
		margin-top: 1em;
		margin-bottom: 1.25em;
	}
	
	.half-conferences ul,
	.half-publications ul {

	}
	
		.half-conferences ul li,
		.half-publications ul li {
			margin-bottom: 1.25em;
		}

.map-navigation,
.map2-navigation {
	position: absolute;
	z-index: 20;
	width: 100%;
	text-align: center;
	top: 2em;
	transform: translateY(-35%) scale(0.5);
}

	@media (min-width: 750px) {
		.map-navigation,
		.map2-navigation {
			transform: translateY(-10%) scale(0.8);
		}
	}
	
	@media (min-width: 1000px) {
		.map-navigation,
		.map2-navigation {
			transform: translateY(0) scale(1);
		}
	}

	.map-navigation .compass {
		width: 7em;
		height: 7em;
		background: url(css/img/compass.png) no-repeat center;
		background-size: 98%;
		display: block;
		margin: 0 auto 1em auto;
	}
	
	.map-navigation ul,
	.map2-navigation ul {
		font-size: 1.6em;
		font-weight: 500;
		text-transform: uppercase;
		color: #499d7e;
		display: inline-block;
	}
		
		body.page-template-page-landing-cn .map-navigation ul,
		body.page-template-page-landing-cn .map2-navigation ul {
			font-weight: 600;
		}
		
		.map-navigation ul li,
		.map2-navigation ul li {
			cursor: pointer;
			margin-top: 0.5em;
			-webkit-transition: all 0.25s ease-in-out;
			-moz-transition: all 0.25s ease-in-out;
			-o-transition: all 0.25s ease-in-out;
			transition: all 0.25s ease-in-out;
		}
		
		.map-navigation ul li.active,
		.map2-navigation ul li.active {
			color: #1d566a;
		}
			
			.map-navigation ul li span,
			.map2-navigation ul li span {
				border-bottom: 2px solid #499d7e;
			}
			
			.map-navigation ul li.active span,
			.map2-navigation ul li.active span {
				border-bottom: none;
			}
		
		.map2-navigation ul {
			color: rgba(29, 86, 107, 0.5);
		}
		
		.map2-navigation ul li.active {
			color: #1D566A;
		}
		
		.map2-navigation ul li span  {
			border-bottom: 2px solid rgba(29, 86, 107, 0.5);
		}
		
.interactive-map {
	display: none;
	overflow: hidden;
	height: 310px;
	z-index: 11;
	width: 100%;
	position: absolute;
}
	
	.area.map {
		height: 310px;
	}
	
	@media (min-width: 400px) {
		.area.map,
		.interactive-map {
			height: 380px;
		}
	}
	
	@media (min-width: 500px) {
		.area.map,
		.interactive-map {
			height: 460px;
		}
	}
	
	@media (min-width: 600px) {
		.area.map,
		.interactive-map {
			height: 550px;
		}
	}
	
	@media (min-width: 750px) {
		.area.map,
		.interactive-map {
			height: 650px;
		}
	}
	
	@media (min-width: 900px) {
		.area.map,
		.interactive-map {
			height: 760px;
		}
	}
	
	@media (min-width: 1000px) {
		.area.map,
		.interactive-map {
			height: 850px;
		}
	}
	
	@media (min-width: 1200px) {
		.area.map,
		.interactive-map {
			height: 1000px;
		}
	}
	
	@media (min-width: 2100px) {
		.area.map,
		.interactive-map {
			padding-bottom: 5em
		}
	}
	
	
	.interactive-map.active {
		z-index: 10;
		opacity: 1;
	}
	
	.interactive-map img {
		height: 100%;
		width: auto;
		display: block;
		margin: 0 auto -10px auto;
		margin-left: 50%;
		transform: translateX(-50%);
	}
	
	.interactive-map .tooltip-holder {
		position: absolute;
		z-index: 9;
		top: 0;
		margin: 0 auto -10px auto;
		margin-left: 50%;
		transform: translateX(-50%);

	}
	
	.interactive-map .tooltip-bubble {
		z-index: 9;
		position: absolute;
		cursor: pointer;
		width: 54px;
		height: 40px;
		background: url(css/img/Bubble_blue_normal_g.gif) no-repeat center;
		background-size: contain;
		top: 50%;
		left: 50%;
		transform: translateX(-5px) translateY(-34px);
	}
		
		.interactive-map .tooltip-bubble:hover {
			background-image: url(css/img/Bubble_blue_over_g.gif);
		}
	
		.interactive-map .tooltip-bubble.bubble-jinsha {
			left: 45.75%;
			top: 41.8%;
		}
		
		.interactive-map .tooltip-bubble.bubble-jinsha.bubble-cn {
			left: 43.75%;
			top: 41.2%;
		}
		
		.interactive-map .tooltip-bubble.bubble-yangtze {
			left: 69%;
			top: 51.3%;
		}
		
		.interactive-map .tooltip-bubble.bubble-yangtze.bubble-cn {
			left: 69%;
			top: 52.3%;
		}
		
		.interactive-map .tooltip-bubble.bubble-lijiang {
			top: 75.3%;
			left: 51.4%;
		    background-image: url(css/img/Bubble_red_normal_g.gif);
		}
		
		.interactive-map .tooltip-bubble.bubble-lijiang.bubble-cn {
			top: 73.3%;
			left: 51.8%;
    	}
		
		.interactive-map .tooltip-bubble.bubble-lijiang:hover {
			background-image: url(css/img/Bubble_red_over_g.gif);
		}
		
		.interactive-map .tooltip-bubble.bubble-yulong {
			top: 63.5%;
			left: 52.3%;
		    background-image: url(css/img/Bubble_green_normal_g.gif);
		}
		
		.interactive-map .tooltip-bubble.bubble-yulong.bubble-cn {
			top: 65%;
			left: 51.8%;
		}
			
			.interactive-map .tooltip-bubble.bubble-yulong:hover {
			    background-image: url(css/img/Bubble_green_over_g.gif);
			}
		
	
	.interactive-map .tooltip-bubble.bubble-jrb {
		top: 46.4%;
		left: 47.9%;
	}
	
	.interactive-map .tooltip-bubble.bubble-jrb:hover {
			background-image: url(css/img/Bubble_blue_over_g.gif);
		}
	
	.tooltip-hover-holder {
		position: absolute;
		bottom: 4em;
		width: 100%;
		left: 0;
		z-index: 12;
	}
	
		@media (min-width: 600px) {
			.tooltip-hover-holder {
				bottom: 6em;
			}
		}
	
		.tooltip-hover {
			padding: 0.75em;
			background: #FAFAFA;
			position: absolute;
			display: none;
			bottom: 0;
			width: 100%;
			opacity: 0;
			transform: scale(0.3);
			-webkit-transition: all 0.2s ease-in-out;
			-moz-transition: all 0.2s ease-in-out;
			-o-transition: all 0.2s ease-in-out;
			transition: all 0.2s ease-in-out;
			cursor: pointer;
			box-shadow: 0 4px 20px rgba(29, 85, 105, 0.5);
		}
		
			.tooltip-hover .map-tooltip-icon {
				    float: left;
				    display: block;
				    height: 1.55em;
				    width: 2.4em;
				    background: url(css/img/bubbles-01.png) no-repeat bottom left;
				    background-size: auto 90%;
			}
			
			.tooltip-hover[data-bubble='lijiang'] .map-tooltip-icon {
				background-image: url(css/img/bubbles-03.png);
			}
			
			.tooltip-hover[data-bubble='yulong'] .map-tooltip-icon {
				background-image: url(css/img/bubbles-green.png);
			}
		
		.tooltip-hover.show {
			display: block;
			animation: tooltip-show 0.25s 1;
			opacity: 1;
			transform: scale(1);
		}
		
		.tooltip-hover p:last-child {
			margin-bottom: 0;
		}
		
		.tooltip-hover h4 {
			color: #36a6ce;
			font-size: 1.2em;
			font-weight: 500;
			margin-bottom: 0.5em;
			
		}
		
		body.page-template-page-landing-cn .tooltip-hover h4 {
			font-weight: 600;
		}
		
		.tooltip-hover[data-bubble='lijiang'] h4 {
			color: #E04329;
		}
		
		.tooltip-hover[data-bubble='yulong'] h4 {
			color: #304C19;
		}
		
		
/* Map 2 */
.interactive-map2 {
	display: none;
	overflow: hidden;
	height: 620px;
	z-index: 11;
	width: 100%;
	position: absolute;
}
	
	.area.map2 {
		height: 620px;
	}
	
	@media (min-width: 300px) {
		.area.map2,
		.interactive-map2 {
			height: 720px;
		}
	}
	
	@media (min-width: 400px) {
		.area.map2,
		.interactive-map2 {
			height: 800px;
		}
	}
	
	@media (min-width: 500px) {
		.area.map2,
		.interactive-map2 {
			height: 920px;
		}
	}
	
	@media (min-width: 600px) {
		.area.map2,
		.interactive-map2 {
			height: 1100px;
		}
	}
	
	@media (min-width: 750px) {
		.area.map2,
		.interactive-map2 {
			height: 1300px;
		}
	}
	
	@media (min-width: 900px) {
		.area.map2,
		.interactive-map2 {
			height: 1520px;
		}
	}
	
	@media (min-width: 1000px) {
		.area.map2,
		.interactive-map2 {
			height: 1600px;
		}
	}
	
	
	
	@media (min-width: 2100px) {
		.area.map2,
		.interactive-map2 {
			padding-bottom: 5em
		}
	}
	
	
	.interactive-map2.active {
		z-index: 10;
		opacity: 1;
	}
	
	.interactive-map2.map-jrb { background: #EBF6FA; }
	.interactive-map2.map-lower-jrb { background: #FEF8E9; }
	.interactive-map2.map-lijiang { background: #FCECE9; }
	
	.interactive-map2 img {
		height: 100%;
		width: auto;
		display: block;
		margin: 0 auto -10px auto;
		margin-left: 50%;
		transform: translateX(-50%);
	}
		
		@media (min-width: 300px) {
			.interactive-map2 img {
				height: 80%;
			}
		}
		
		@media (min-width: 400px) {
			.interactive-map2 img {
				height: 100%;
			}
		}
		
		@media (max-width: 549px) {
			.interactive-map2 img {
				margin-top: -20%;
			}
		}
			
	.map2-textbox-holder {
		position: absolute;
		top: 48%;
		width: 100%;
		left: 0;
		z-index: 12;
	}
		
		@media (min-width: 400px) {
			.map2-textbox-holder {
				top: 60%;
			}
		}
		
		@media (min-width: 550px) {
			.map2-textbox-holder {
				top: 68%;
			}
		}
		
		@media (min-width: 900px) {
			.map2-textbox-holder {
				top: 73%;
			}
		}
	
	.map2-textbox {
		padding: 0.75em;
		background: #FAFAFA;
		position: absolute;
		top: 0;
		width: 100%;
		box-shadow: 0 4px 20px rgba(29, 85, 105, 0.5);
	}
		
		.map-lower-jrb .map2-textbox { box-shadow: 0 4px 20px rgba(66, 61, 13, 0.5); }
		.map-lijiang .map2-textbox { box-shadow: 0 4px 20px rgba(62, 21, 14, 0.5); }
		
		.map2-textbox .text {
			display: none;
		}
		
		.map2-textbox .text:first-of-type {
			display: block;
		}
	
		.map2-textbox .texts {
			margin-top: -2rem;
		}
			
		.map2-textbox .icons {
			text-align: center;
			transform: translateY(-50%);
		}
			
			.map2-textbox .icons .icon {
				display: inline-block;
				width: 2.8rem;
				height: 2.8rem;
				margin: 0.25rem;
				background-color: #eee;
				background-size: 107%;
				background-position: center center;
				background-repeat: no-repeat;
				border-radius: 100%;
				box-shadow: 0 4px 20px rgba(29, 85, 105, 0.5);
				cursor: pointer;
			}
			
			@media (min-width: 370px) {
				.map2-textbox .icons .icon {
					width: 3rem;
					height: 3rem;
					margin: 0.25rem;
					background-size: 105%;
				}
			}
			
			@media (min-width: 800px) {
				.map2-textbox .icons .icon {
					width: 5rem;
					height: 5rem;
					margin: 0.25rem;
					background-size: 105%;
				}
			}
			
			.map-lower-jrb .map2-textbox .icons .icon { box-shadow: 0 4px 20px rgba(66, 61, 13, 0.5); }
			.map-lijiang .map2-textbox .icons .icon { box-shadow: 0 4px 20px rgba(62, 21, 14, 0.5); }
			
			.map-jrb .map2-textbox .icons .icon.icon-water { background-image: url(css/img/glass_blue@2x.png); }
			.map-jrb .map2-textbox .icons .icon.icon-water.active,
			.map-jrb .map2-textbox .icons .icon.icon-water:hover { background-image: url(css/img/glass_bluerollover_@2x.png); }
			.map-jrb .map2-textbox .icons .icon.icon-climate { background-image: url(css/img/analysis_blue@2x.png); }
			.map-jrb .map2-textbox .icons .icon.icon-climate.active,
			.map-jrb .map2-textbox .icons .icon.icon-climate:hover { background-image: url(css/img/analysis_bluerollover_@2x.png); }
			.map-jrb .map2-textbox .icons .icon.icon-strategy { background-image: url(css/img/tools_blue@2x.png); }
			.map-jrb .map2-textbox .icons .icon.icon-strategy.active,
			.map-jrb .map2-textbox .icons .icon.icon-strategy:hover { background-image: url(css/img/tools_bluerollover_@2x.png); }
			
			.map-lower-jrb .map2-textbox .icons .icon.icon-water { background-image: url(css/img/glass_yellow@2x.png); }
			.map-lower-jrb .map2-textbox .icons .icon.icon-water.active,
			.map-lower-jrb .map2-textbox .icons .icon.icon-water:hover { background-image: url(css/img/glass_yellowrollover_@2x.png); }
			.map-lower-jrb .map2-textbox .icons .icon.icon-climate { background-image: url(css/img/analysis_yellow@2x.png); }
			.map-lower-jrb .map2-textbox .icons .icon.icon-climate.active,
			.map-lower-jrb .map2-textbox .icons .icon.icon-climate:hover { background-image: url(css/img/analysis_yellowrollover_@2x.png); }
			.map-lower-jrb .map2-textbox .icons .icon.icon-strategy { background-image: url(css/img/tools_yellow@2x.png); }
			.map-lower-jrb .map2-textbox .icons .icon.icon-strategy.active,
			.map-lower-jrb .map2-textbox .icons .icon.icon-strategy:hover { background-image: url(css/img/tools_yellowrollover_@2x.png); }
			
			.map-lijiang .map2-textbox .icons .icon.icon-water { background-image: url(css/img/glass_red@2x.png); }
			.map-lijiang .map2-textbox .icons .icon.icon-water.active,
			.map-lijiang .map2-textbox .icons .icon.icon-water:hover { background-image: url(css/img/glass_redrollover_@2x.png); }
			.map-lijiang .map2-textbox .icons .icon.icon-climate { background-image: url(css/img/analysis_red@2x.png); }
			.map-lijiang .map2-textbox .icons .icon.icon-climate.active,
			.map-lijiang .map2-textbox .icons .icon.icon-climate:hover { background-image: url(css/img/analysis_redrollover_@2x.png); }
			.map-lijiang .map2-textbox .icons .icon.icon-strategy { background-image: url(css/img/tools_red@2x.png); }
			.map-lijiang .map2-textbox .icons .icon.icon-strategy.active,
			.map-lijiang .map2-textbox .icons .icon.icon-strategy:hover { background-image: url(css/img/tools_redrollover_@2x.png); }
		
		.map2-textbox h4 {
			color: #111;
			font-size: 1.2em;
			font-weight: 400;
			margin-bottom: 0.5em;
		}
		
		.map-jrb .map2-textbox h4 { color: #36A6CE }
		.map-lower-jrb .map2-textbox h4 { color: #F5BD28 }
		.map-lijiang .map2-textbox h4 { color: #E04328 }
		
		.map2-textbox .legend {
			position: absolute;
			bottom: 0;
			left: 0;
			transform: translateY(100%);
			margin-bottom: -20px;
			font-size: 0.875rem;
			line-height: 120%;
			display: flex;
			flex-flow: row wrap;
			width: 100%;
		}
			
			@media (min-width: 900px) {
				.map2-textbox .legend {
					margin-bottom: -40px;
				}
			}
			
			.map2-textbox .legend .label {
				font-weight: 400;
				text-transform: uppercase;
				width: 100%;
				margin-bottom: 0.5rem;
			}
				
				@media (min-width: 500px) {
					.map2-textbox .legend .label {
						width: 10%;
						margin-bottom: 0;
					}
				}
			
			.map2-textbox .legend .legend-item {
				width: 100%;
				padding-left: 1.8rem;
				padding-right: 0.5rem;
				position: relative;
				margin-bottom: 0.5em;
			}
				
				.page-template-page-landing-cn .map2-textbox .legend .legend-item {
					padding-left: 1.8rem;
				}
				
				@media (min-width: 500px) {
					.map2-textbox .legend .legend-item {
						width: 30%;
						margin-bottom: 0;
						padding-left: 2.2rem;
					}
				}
				
				.map2-textbox .legend .legend-item::before {
					content: "";
					display: block;
					position: absolute;
					left: 0;
					width: 1.2rem;
					height: 1.2rem;
					background-position: center center;
					background-repeat: no-repeat;
					background-size: contain;
				}
					
					@media (min-width: 500px) {
						.map2-textbox .legend .legend-item::before {
							width: 1.8rem;
							height: 1.8rem;
						}
					}
					
					.page-template-page-landing-cn .map2-textbox .legend .legend-item::before {
						width: 1.2rem;
						height: 1.2rem;
					}
				
				.map2-textbox .legend .legend-item.legend-icon-water::before { background-image: url(css/img/legend_icon_water.png); }
				.map2-textbox .legend .legend-item.legend-icon-climate::before { background-image: url(css/img/legend_icon_climate.png); }
				.map2-textbox .legend .legend-item.legend-icon-strategy::before { background-image: url(css/img/legend_icon_strategy.png); }


.pagewrap {
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.pagewrap.fadeback {
	transform: scale(0.96);
	opacity: 0.6;
}

	@media (min-width: 1000px) {
		.pagewrap.fadeback {
			transform: scale(0.98);
			opacity: 0.4;
		}
	}

.overlay-article {
	background: #F5FBFD;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	z-index: 9999;
	padding: 7em 0;
	transform: translateX(-100%) translateY(0) translateZ(0);
	/* pointer-events:none; */
	overflow-y: scroll; /* has to be scroll, not auto */
	-webkit-overflow-scrolling: touch;
	opacity: 1;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

	.overlay-article.open {
		transform: translateX(0) translateY(0) translateZ(0);
	}
	
	
	.overlay-article .article-icon {
		height: 9em;
		width: 9em;
		margin: -3em auto 2em auto;
		display: block;
	}
	
	
	.overlay-article h2 {
		text-align: left;
		line-height: 120%;
		margin-top: 0;
		text-transform: none;
	}
	
		@media (min-width: 600px) {
			.overlay-article .article-icon {
				float: left;
				margin: -1em 2em 0 0;
			}
			
			.overlay-article h2 {
				width: calc(100% - 5.5em);
				float: left;
			}
		}
	
	.overlay-article .article {
		
	}
	
	.overlay-article .title {
		margin-bottom: 2em;
	}
	
	.overlay-article .article img {
		max-width: 100%;
		height: auto;
		margin: 2em 0;
	}
	
		.overlay-article .wp-caption-text {
			padding-left: 1em;
			font-size: 0.75em;
		}
		
		.overlay-article .wp-caption {
			margin: 2em 0;
			width: 100% !important;
		}
		
			.overlay-article .wp-caption img {
				margin: 0;
			}
	
	.overlay-close {
		position: fixed;
		right: 2em;
		top: 2em;
		width: 2.5em;
		height: 2.5em;
		cursor: pointer;
		background: url(css/img/close.png) no-repeat center;
		background-size: 50%;
		margin-top: 0.25em;
		z-index: 99999;
		display: none;
		-webkit-transition: all 0.2s ease-out;
		-moz-transition: all 0.2s ease-out;
		-o-transition: all 0.2s ease-out;
		transition: all 0.2s ease-out;
	}
	
		.overlay-close:hover {
			background-image: url(css/img/close-hover.png);
			transform: rotate(90deg);
		}
	
	@media (min-width: 1000px) {
		.overlay-close {
			left: 5em;
			right: auto;
			top: 11em;
		}
	}

.contact ul {
	margin: 3em 0 1em 0;
}

	.contact ul li {
		position: relative;
		margin-bottom: 1em;
	}
	
	.contact ul li ul {
		display: block;
		margin: 0;
		margin-left: 3.5em;
	}
	
	.contact ul li ul li {
		display: block;
		margin: 0;
	}
	
	.contact ul li img {
		margin-right: 1em;
		height: auto;
		width: 2.5em;
		position: absolute;
	}
	
	.contact ul li ul li h3 {
		margin-top: 0;
	}
	
	

@media (min-width:450px) {
	.contact ul li ul {
		display: block;
		margin: 0;
		margin-left: 4.5em;
	}
}

.logo-section-title {
	color: #1d566a;
	border-top: 2px dotted #1d566a;
}

.logo-holder {
	padding: 2em 0;
	margin: 0 auto;
	max-width: 840px;
}

	.logo-holder .logo-item {
		height: 100px;
		width: 100%;
		padding: 0.75em;
		margin-bottom: 1em;
	}
	
		.logo-holder .logo-item.level2_cn {
			width: 33.33%;
			height: 80px;
		}
		
		@media (min-width: 600px) {
			.logo-holder .logo-item.level2_cn {
				width: 25%;
				height: 120px;
			}
		}	
			
		.logo-holder .logo-item.level2_ch {
			width: 33.33%;
			height: 60px;
		}
	
	.logo-holder .logo-item a {
		display: block;
		width: 100%;
		height: 100%;
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
	}

.scroll-down,
.scroll-up {
	position: absolute;
	bottom: 2em;
	left: 50%;
	transform: translateX(-50%);
	background: url(css/img/scroll-down.png) no-repeat center;
	background-size: 100%;
	height: 1.3em;
	width: 1.3em;
	text-indent: -1000px;
	overflow: hidden;
	z-index: 20;
	cursor: pointer;
}

.scroll-up {
	transform: translateX(-50%) rotate(180deg);
}

.area.hero .scroll-down {
	bottom: auto;
}
	
	
	.scroll-down:hover,
	.scroll-up:hover {
		background-image: url(css/img/scroll-down-hover.png);
	}

.js-scrollto {
	cursor: pointer;
}

	.area .js-scrollto {
		-webkit-transition: all 0.15s ease-out;
		-moz-transition: all 0.15s ease-out;
		-o-transition: all 0.15s ease-out;
		transition: all 0.15s ease-out;
	}
	
	.area .js-scrollto:hover {
		color: #E04328;
	}

	@media (min-width: 600px) {
		.scroll-down,
		.scroll-up,
		.project-background .scroll-down {
			bottom: 3.75em;
		}
		
		.area.hero .scroll-down {
			bottom: 3em;
		}
	}
	
@keyframes tooltip-show {
	0% {
		opacity: 0;
		transform: translateX(-100%) scale(0.8);
	}
	1% {
		transform: scale(0.3);
	}
	75% {
		opacity: 1;
	}
	76% {
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
	}
}

