body {
	margin: 0;
	padding: 0;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 400;
	font-size: 18px;
	background: #fcfcfc;
	overflow-x: hidden;
}
a {
	color: #000;
}
a:hover {
	text-decoration: none;
}
.hide-mobile {
	display: block;
}
.mobile-only {
	display: none;
}

/* Navigation */
#nav {
	position: absolute;
	width: 100%;
	height: 85px;
	display: flex;
	background: #fcfcfc;
	box-shadow: 0 0 6px 1px #888;
	overflow: visible;
	z-index: 200;
}
#logo-wrapper {
	float: left;
	cursor: pointer;
	margin: 15px 0 15px 25px;
	display: flex;
	z-index: 300;
}	
#title {
	float: left;
	text-align: left;
	margin-right: 10px;
	width: 75px;
	font-size: 20px;
	line-height: 18px;
	text-transform: uppercase;
	font-family: 'Prompt', sans-serif;
	cursor: pointer;
}
#title span.rust {
	color: #855568;
}
#title span.green {
	color: #289548;
}
#title span.violet {
	color: #322b80;
}
#logo {
	float: left;
	width: 120px;
	height: 55px;
	background-image: url("../img/dle_logo.png");
	background-size: 120px 55px;
}

/* navigation */
.navigation {
	position: absolute;
	left: 0;
	top: 32px;
	width: 100%;
	text-align: center;
	z-index: 250;
}
#navIcon,
#navClose {
	display: none;
}
#navItems {
	width: 100%;
}
#navItems a {
	color: #000;
	text-decoration: none;
	padding: 7px 15px;
	margin: 0 10px;
	border-radius: 6px;
	transition: 0.3s ease-in-out;
}
#navItems a.active {
	color: #000;
	background-color: #185c8d;
	color: #fff;
	transition: none;
}
#navItems a:hover {
	background-color: #e8eff4;
}
#navItems a.active:hover {
	background-color: #185c8d;
	color: #fff;
}
#navItemsMobile {
	display: none;
	position: absolute;
	top: -160px;
	left: 0;
	width: 100%;
	background: rgba(251,251,251,0.95);
	text-align: center;
	box-shadow: 0 4px 6px -2px #888;
	z-index: 199;
	transition: 2s linear;
}
#navItemsMobile.active {
	display: block;
	top: 85px;
}
#navItemsMobile > div {
	width: 100%;
	margin: 0 auto;
	padding: 15px 0;
	border-bottom: 1px solid #d0d0d0;
}
#navItemsMobile > div.last {
	border-bottom: none;
}
#navItemsMobile a:hover {
	background: none;
}

/* index.html */
#map {
	background: linear-gradient(to top right, #e8eff4, #bbd2e2);
	padding-top: 85px;
	width: 100%;
	height: 700px;
	overflow: hidden;
	border-bottom: 1px solid #bbd2e2;
}
#geoMap {
	height: 700px;
	margin: 0 auto;
	padding-right: 0;
}
#geoMap path { cursor: pointer; }
#geoMap path[fill='#ffffff'] { cursor: default; }

#topics, #regions {
	padding: 4px;
	color: #666;
}

/* Style the map tooltip */
div.google-visualization-tooltip {
	position: absolute;
	background: rgba(256,256,256,0.95) !important;
	padding: 1px !important;
}
div.google-visualization-tooltip > ul {
	margin: 10px -15px 10px 0 !important;
}
div.google-visualization-tooltip > ul > li {
	margin: 2px 0 !important;
}
div.google-visualization-tooltip > ul > li:first-child {
	margin-bottom: 4px !important;
}
div.google-visualization-tooltip > ul > li:first-child > span {
	font-size: 18px !important;
}
#barChart div.google-visualization-tooltip > ul > li:first-child > span {
	font-size: 16px !important;
}
div.google-visualization-tooltip > ul > li > span {
	font-family: 'Source Sans Pro', sans-serif !important;
	font-size: 16px !important;
}

/* The search buttom for countries */
#search {
	position: absolute;
	right: 0;
	top: 85px;
	width: 80px;
	height: 70px;
	background: #185c8d;
	z-index: 101;	
	cursor: pointer;
}
#search .fa,
#countries .fa {
	color: #fff;
	padding: 17px 16px;
}
#search:hover {
	width: 90px;
	transition: width 0.2s;
}
#search.open {
	width: 280px;
	transition: width 0.2s;
}
#inputForm {
	width: 0;
	position: relative;
	float: right;
	margin-top: 20px;
	overflow: hidden;
}
#inputForm.visible {
	width: 200px;
	transition: width 0.2s;
}
#query {
	width: 0;
	background: #185c8d;
	height: 30px;
	border: none;
	border-radius: 0;
	padding-left: 0;
	border-bottom: 1px dotted #fff;
	font-family: 'Source Sans Pro', serif;
	font-size: 18px;
	color: #fff;
}
#query.visible {
	width: 160px;
	transition: width 0.2s;
}
#query:focus{
	outline: none;
}
/* The countries list */
#countriesList {
	position: relative;
	background: #185c8d;
	z-index: 100;
	cursor: auto;
}
#countriesList ul {
	margin: 0;
	padding: 10px 0 10px 82px;
}
#countriesList ul li {
	list-style-type: none;
	line-height: 32px;
}
#countriesList ul li span {
	color: #fff;
	text-decoration: none;
}
#countriesList ul li span:hover {
	text-decoration: underline;
	cursor: pointer;
}

/* regions list on the map */
#regions {
	position: relative;
	float: right;
	width: 70%;
	margin-right: 20px;
	z-index: 100;
	text-align: right;
	margin-top: 675px;
}
#regionsContent {
	position: absolute;
	bottom: 0;
	right: 0;
 }
#topics, #show {
	position: relative;
	float: left;
	width: 300px;
	margin-left: 20px;
	margin-top: 450px;
	z-index: 100;
}
#topics a, #topics a.visited,
#regions a, #regions a.visited {
	color: #000;
}
#show {
	display: none;
	padding: 6px 10px;
	margin-bottom: 4px;
	border-radius: 15px;
	background: #185c8d;
	color: #fff;
	border-bottom: none;
	width: 140px;
	box-shadow: 0 0 5px 3px rgba(0,0,0, 0.1);
	text-align: center;
	cursor: pointer;
}			
#topics .worldbank {
	margin: 0;
	padding: 14px 10px;
	margin-bottom: 4px;
	border-radius: 15px 15px 0 0;
	background: #fff;
	border-bottom: none;
	width: 310px;
	box-shadow: 0 0 5px 3px rgba(0,0,0, 0.1);
}			
#topics .dle {
	padding: 14px 10px 20px 10px;
	border-radius: 0 0 15px 15px;
	background: #fff;
	margin: 0;
	width: 310px;
	box-shadow: 0 0 5px 3px rgba(0,0,0, 0.1);
}
#topics p.title {
	padding: 0 10px;
	margin: 5px 0;
	font-weight: 600;
	text-align: left;
}
.fa {
	color: #000;
	margin-left: 10px;
}
#topics .fa {
	margin-right: 10px;
}
#topics span,
#regions span {
	color: #000;
	text-decoration: underline;
}
#topics span:hover,
#regions span:hover {
	text-decoration: none;
	cursor: pointer;
}
#topics .red,
#topics .fa.red {
	color: #c7481b;
}
#topics .mud,
#topics .fa.mud {
	color: #104f48;
}
#topics .rust,
#topics .fa.rust {
	color: #855568;
}
#topics .green,
#topics .fa.green {
	color: #289548;
}
#topics .blue,
#topics .fa.blue {
	color: #322b80;
}
#claim {
	position: absolute;
	left: 25px;
	top: 110px;
	z-index: 100;
}
#claim p.main {
	font-size: 36px;
	line-height: 42px;
	font-weight: 600;
	float: left;
	margin: 10px 0;
	text-shadow: 0 0 8px #fff;
	font-family: 'Droid Serif', sans-serif;
}
#claim p.link a {
	color: #000;
	font-size: 18px;
}

.contentWrapper {
	margin: 0;
	width: 100%;
	display: inline-block;
}
.contentWrapper.top {
	padding-top: 85px;
}
.contentWrapper .item {
	width: 100%;
	padding: 0;
	text-align: center;
}
.contentWrapper .item.white {
	background: #fff;
}
.contentWrapper .item.grey {
	background: linear-gradient(to right, #ced7e0, #b5c2d1);
}
.contentWrapper .item .contents {
	width: 70%;
	margin: 0 auto;
	display: inline-block;
}
.contentWrapper .item.indicators .contents {
	padding-bottom: 20px;
}
.contentWrapper .item.last .contents {
	padding-bottom: 0;
}
.contentWrapper .item.only .contents {
	padding-bottom: 20px;
}
.contentWrapper .item .contents .title p {
	margin: 28px 0;
	font-size: 36px;
	font-weight: 600;
	text-align: center;
	font-family: 'Droid Serif', sans-serif;
}
.contentWrapper .item .contents .fa {
	margin-left: 0;
}
.contentWrapper .item .contents .left,
.contentWrapper .item .contents .right {
	float: left;
}
.contentWrapper .item .contents .left {
	width: 60%;
}
.contentWrapper .item .contents .right {
	width: 40%;
	text-align: left;
}
.contentWrapper .item .contents .right p {
	margin-top: 0;
}
.contentWrapper .item .contents .right p.publication {
	background: #f0f0f0;
	padding: 10px 10px 10px 15px;
	border-left: 15px solid #185c8d;
}
.contentWrapper .item .contents .right p.publication a {
	color: #000;
}
.contentWrapper .item .contents .left img {
	width: auto;
	height: auto;
}
.contentWrapper .item .contents.team {
	padding-bottom: 20px;
}
.contentWrapper .item.last .contents.team {
	padding-bottom: 0;
}
.contentWrapper .item .contents.team .left {
	width: 25%;
}
.contentWrapper .item .contents.team .right {
	width: 75%;
}
.contentWrapper .item .contents.team .left img {
	width: 220px;
	height: auto;
	border-radius: 120px;
	border: 2px solid #fff;
}
.contentWrapper .item.indicators {
	padding: 10px 0;
	background: linear-gradient(to right, #5e8daf, #185c8d);
}
.contentWrapper .item.indicators .contents {
	text-align: left;
}
.contentWrapper .item.indicators .contents .title > p,
.contentWrapper .item.indicators .contents p {
	color: #fff;
}
.contentWrapper .item.indicators .contents .title > p {
	font-size: 36px;
	font-family: 'Droid Serif', sans-serif;
}
.contentWrapper .item.indicators .contents p.hint {
	padding: 6px 8px;
	background: #fff;
	width: 70%;
	margin: 20px auto 0 auto;
	text-align: center;
	color: #185c8d;
}
.contentWrapper .item.indicators .contents p.hint .fa {
	color: #185c8d;
	margin: 0 10px;
}
.contentWrapper .item.indicators .contents p.hint .fa.last {
	margin: 0 0 0 10px;
}
.contentWrapper .item.indicators .contents ol {
	margin: 6px 0;
}
.contentWrapper .item.indicators .contents ol li {
	color: #fff;
	margin: 15px 0;
	line-height: 28px;
}
.contentWrapper .item.indicators .contents ol li .fa {
	color: #fff;
	margin: 0 5px 0 10px;
}
.contentWrapper .item.indicators .contents ol li > a,
span.link {
	margin: 0 4px;
	padding: 3px 10px 5px 10px;
	background: #fff;
	color: #185c8d;
	text-decoration: underline;
}
.contentWrapper .item.indicators .contents ol li > a:hover,
span.link:hover {
	text-decoration: none;
	cursor: pointer;
}

/* the charts */
.chartTitle {
	width: 100%;
	padding: 40px;
	float: none;
	clear: both;
	box-sizing: border-box;
}
.chartTitle p {
	font-size: 36px;
	width: 100%;
	margin: 0 auto;
	padding: 0 0 5px 0;
	text-align: center;
	font-weight: 600;
	font-family: 'Droid Serif', sans-serif;
}
.chartTitle p.slider {
	padding: 0 0 15px 0;
	vertical-align: middle;
}
.toTopWrapper {
	height: 50%;
	margin-left: 5px;
}
.toTop {
	font-size: 12px;
	font-weight: 200;
}
.sliderArea {
	margin: 10px auto;
	padding: 0 0 10px 0;
	width: 60%;
}
.slider {
	width: 100%;
	display: inline-block;
	text-align: center;
	padding: 0;
}
#sliderStep {
	width: 100%;
	align: center;
}
.noUi-marker.noUi-marker-horizontal.noUi-marker-large {
	height: 20px;
}
.noUi-value.noUi-value-horizontal.noUi-value-large {
	padding-top: 10px;
	color: #333;
}
.noUi-value.noUi-value-horizontal.noUi-value-sub {
	padding-top: 3px;
	font-size: 7px;
	color: #666;
}
.noUi-tooltip {
	color: #fff;
	background: #666;
	font-weight: 600;
}
.slider-color {
	background: #c7c7c7;
}

@media all and (max-width: 1100px) {
	.noUi-value.noUi-value-horizontal.noUi-value-sub {
		display: none;
	}
}

/* the bar chart */
#barChart {
	width: 70%;
	margin: 50px auto;
}
#barChart table {
	width: 100%;
	margin: 0 auto !important;
}

/* the legend below the bar chart */
#legendArea {
	width: 100%;
	overflow: auto;
}
#legendArea .legend {
	width: 915px;
	height: 20px;
	margin: 0 auto;
	text-align: justify;
	display: block;
}
.legend div {
	float: left;
	padding: 0 10px;
}
.chartExplanation {
	width: 70%;
	clear: both;
	margin: 30px auto 0 auto;
}
.legend.emissions,
.legend.energy {
	width: 100%;
	margin: 0 0 0 20px;
	text-align: left;
}
@media all and (max-width: 880px) {
	.legend {
		width: 600px;
		line-height: 30px;
	}
}
.legend.emissions div,
.legend.energy div {
	width: 100%;
	float: left;
	padding: 10px 0;
}
.legend div.box {
	width: 20px;
	height: 20px;
	padding: 0;
	margin-right: 10px;
	display: inline-block;
}
.legend .worldbank {
	background: #c7481b;
}
.legend .health {
	background: #104f48;
}
.legend .livingconditions {
	background: #855568;
}
.legend .education {
	background: #289548;
}
.legend .infocom {
	background: #322b80;
}
.legend .climate {
	background: #000;
}
.legend .mobility {
	background: #dc911b;
}

/* energy charts */
#energyArea {
	width: 100%;
	margin: 0;
	display: none;
	text-align: center;
}

.pieChartArea {
	display: inline-block;
	margin: 0 auto;
	width: 70%;
}
.pieChart {
	display: inline-block;
	margin: 0 auto;
}
#bEnergyChart, #mEnergyChart {
	display: block;
	margin: 0 auto;
	padding: 20px 0;
}

.pieChartTitle {
	text-align: center;
	padding-bottom: 10px;
}

/* emissions chart */
#emissionsArea {
	width: 100%;
	display: none;
}

#emissionsArea .introduction {
	width: 70%;
	margin: -15px auto 50px auto;
}
#emissionsArea .introduction p {
	text-align: left;
}

.emissionsChartArea {
	display: block;
	float: none;
	width: 70%;
	margin: 0 auto;
	overflow: hidden; 
}
#emissionsChart {
	width: 90%;
	height: 400px;
	float: left;
}
.leftColumn, .rightColumn {
	display: block;
	float: left;
}
.leftColumn {
	width: 60%;
	text-align:left;
}
.rightColumn {
	width: 35%;
}
#lifeexpectancy, #basicneeds {
	color: #000;
	cursor: pointer;
}
#lifeexpectancy.disabled, #basicneeds.disabled {
	color: #999;
}
#lifeexpectancy.disabled .box, #basicneeds.disabled .box {
	background: #999;
}
.help {
	padding-top: 0 !important;
	padding-bottom: 20px !important;
	font-style: italic;
}

/* further reading */
.furtherReading {
	display: block;
	width: 100%;
	margin: 30px 0 0 0;
	text-align: center;
	background: #f0f0f0;
}
.furtherReading .list {
	padding: 20px 0;
	margin-left: -20px;
	margin-right: -20px;
	width: 70%;
	margin: 0 auto;
	text-align: left;
	box-sizing: border-box;
}
.furtherReading p.title {
	font-weight: 600;
	padding: 0;
	margin-top: 0;
}
.furtherReading ul {
	list-style: none;
	padding: 0;
	-webkit-margin-before: 0;
	-webkit-margin-after: 0;
}
.furtherReading ul li {
	margin-bottom: 14px;
	line-height: 24px;
}
.furtherReading ul li.last {
	margin-bottom: 0;
}
.furtherReading a {
	color: #000;
}
.furtherReading .fa {
	color: #000;
	margin: 0 5px 0 0;
}

/* publications */
blockquote {
	display: block;
	position: relative;
	padding: 15px 0 0 55px;
	margin: 24px 0 12px 0;
	font-size: 24px;
	font-weight: 200;
	font-style: italic;
	text-align: left;
}
blockquote::before {
	content: "\201C"; /*Unicode for Left Double Quote*/
	font-family: Georgia, serif;
	font-size: 50px;
	font-weight: bold;
	position: absolute;
	left: 10px;
	top:5px;
}
blockquote::after{
	content: "";
}
.publications {
	display: block;
	padding: 20px 20px 6px 20px;
	background: #f0f0f0;
	text-align: left;
	border-left: 15px solid #185c8d;
}
.publications ul {
	list-style: none;
	padding: 0;
	-webkit-margin-before: 0;
	-webkit-margin-after: 0;
}
.publications ul li {
	margin-bottom: 14px;
	line-height: 24px;
}
.publications ul li.last {
	margin-bottom: 0;
}
.publications a {
	color: #000;
}
.publications .fa {
	color: #000;
	margin: 0 5px 0 0;
}

/* footer */
#footer {
	width: 100%;
	min-height: 150px;
	background: linear-gradient(to right, #5e8daf, #185c8d);
	margin: 40px 0 0 0;
	padding: 10px 0;
	color: #fff;
}
#footer.charts,
#footer.dls {
	margin: 0;
}
#footer.team {
	margin: 0;
}
#footer .contents {
	width: 70%;
	margin: 20px auto;
}
#footer .contents .funding {
	margin-bottom: 20px;
}
#footer .contents .logos {
	margin: 0 0 20px 0;
}
#footer .contents .logos img {
	margin-right: 20px;
}
#footer .contents .address a {
	color: #fff;
}
#footer .contents .address span.divider {
	margin: 0 12px;
}
#footer .contents .imprint {
	margin: 20px 0;
}

/* responsive stuff */
@media all and (min-width: 1500px) {
	#claim p.main {
		font-size: 48px;
		line-height: 60px;
	}
	#claim p.link a {
		font-size: 22px;
	}
}
@media all and (min-width: 1400px) and (max-width: 1500px) {
	#claim p.main {
		font-size: 40px;
		line-height: 52px;
	}
	#claim p.link a {
		font-size: 22px;
	}
}
@media all and (min-width: 1200px) and (max-width: 1400px) {
	#claim p.main {
		font-size: 36px;
		line-height: 48px;
	}
	#claim p.link a {
		font-size: 20px;
	}
	.contentWrapper .item .contents .left img {
		width: 570px;
		height: auto;
	}
}
@media all and (max-width: 1200px) {
	#topics {
		transition: 1s;
		-webkit-transition: 1s;
	}
	#regions {
		width: 60%;
	}
	.contentWrapper .item .contents .left img {
		width: 550px;
		height: auto;
	}
	.contentWrapper .item .contents.team .left {
		width: 26%;
	}
	.contentWrapper .item .contents.team .right {
		width: 74%;
	}
	.contentWrapper .item .contents.team .left img {
		width: 200px;
	}
	#claim p.main {
		font-size: 32px;
		line-height: 36px;
	}
	.contentWrapper .item .contents .title p {
		font-size: 32px;
	}
	.contentWrapper .item.indicators .contents .title > p {
		font-size: 32px;
	}
	.chartTitle p {
		font-size: 32px;
	}
}
@media all and (max-width: 1100px) {
	body, table {
		font-size: 16px;
	}
	#regions {
		width: 50%;
	}
	#query {
		font-size: 16px;
	}
	.chartTitle {
		padding: 40px 0;
	}
	.contentWrapper .item.indicators .contents ol li {
		line-height: 24px;
	}
	.contentWrapper .item .contents .left img {
		width: 500px;
		height: auto;
	}
	#claim p.main {
		font-size: 30px;
		line-height: 34px;
	}
	.contentWrapper .item .contents .title p {
		font-size: 30px;
	}
	.contentWrapper .item.indicators .contents .title > p {
		font-size: 30px;
	}
	.chartTitle p {
		font-size: 30px;
	}
	#legendArea .legend {
		width: 845px;
	}
}
@media all and (max-width: 1000px) {
	#navItems a {
		margin: 0 2px;
	}
	#regions {
		width: 40%;
	}
	div.google-visualization-tooltip > ul > li:first-child > span {
		font-size: 16px !important;
		margin-bottom: 0 !important;
	}
	.contentWrapper .item .contents .left,
	.contentWrapper .item .contents .right {
		width: 100%;
	}
	.contentWrapper .item .contents .left {
		text-align: center;
	}
	.contentWrapper .item .contents .right {
		margin-top: 20px;
		margin-bottom: 0;
	}
	.contentWrapper .item .contents .left img {
		width: 600px;
		height: auto;
	}
	.contentWrapper .item .contents.team .left {
		width: 28%;
	}
	.contentWrapper .item .contents.team .right {
		width: 72%;
		margin-top: 0;
		margin-bottom: 0;
	}
	.contentWrapper .item .contents.team .left img {
		width: 150px;
	}
	#claim p.main {
		font-size: 28px;
		line-height: 32px;
	}
	.contentWrapper .item .contents .title p {
		font-size: 28px;
	}
	.contentWrapper .item.indicators .contents .title > p {
		font-size: 28px;
	}
	.chartTitle p {
		font-size: 28px;
	}
	#barChart {
		width: 80%;
	}
}
@media all and (max-width: 800px) {
	#nav.noShadow {
		box-shadow: 0 0 1px 1px #888;
	}
	#navIcon,
	#navClose {
		float: right;
		width: 45px;
		margin: -5px 13px 0 13px;
		display: block;
		cursor: pointer;
	}
	#navClose {
		display: none;
	}
	#navIcon.inactive {
		display: none;
	}
	#navIcon .fa,
	#navClose .fa {
		color: #666;
	}
	#navIcon:hover .fa,
	#navClose:hover .fa {
		color: #000;
	}
	#navClose.active {
		display: block;
	}
	#navItems {
		display: none;
	}
	.rightColumn {
		min-height: 200px;
	}
	.contentWrapper .item.indicators .contents .title > p,
	.contentWrapper .item.indicators .contents p {
		font-size: 16px;
	}
	.contentWrapper .item.indicators .contents .title > p {
		font-size: 28px;
	}
	#barChart {
		width: 90%;
	}
	#legendArea .legend {
		width: 490px;
		height: 50px;
	}
}
@media all and (max-width: 600px) {
	#legendArea .chartExplanation,
	#emissionsArea .introduction,
	#emissionsArea .emissionsChartArea,
	.furtherReading .list,
	#footer .contents {
		width: 100%;
	}
	.hide-mobile {
		display: none;
	}
	.mobile-only {
		display: block;
	}
	#map {
		display: none;
	}
	#search {
		width: 100%;
		border-bottom: 1px solid #fff;
	}
	#search:hover {
		width: 100%;
	}
	#inputForm {
		width: 70%;
		position: absolute;
		top: 0;
		left: 80px;
	}
	#query {
		font-size: 20px;
		width: 90%;
		border-bottom: none;
	}
	#countriesList {
		box-shadow: 0 2px 6px 1px #185c8d;
	}
	#countriesList ul {
		margin: 0;
		margin-top: -1px;
		padding-left: 80px;
	}
	#countriesList ul li {
		font-size: 20px;
	}
	#bEnergyChart, #mEnergyChart {
		width: 100%;
	}
	.contentWrapper.search {
		padding-top: 150px;
	}
	.contentWrapper .item .contents .title {
		margin: 10px auto;
		font-size: 28px;
		font-weight: 600;
	}
	.contentWrapper .item .contents.team .left {
		width: 100%;
	}
	.contentWrapper .item .contents .left img {
		width: 100%;
	}
	.contentWrapper .item .contents.team .right {
		width: 100%;
		padding: 30px 0 0 0;
	}
	.contentWrapper .item .contents.team .left img {
		width: 180px;
	}
	.legend {
		width: 95%;
	}
	#barChart {
		width: 100%;
	}
	#legendArea .legend {
		width: 320px;
		height: 90px;
	}
}

/* more responsive stuff */
@media all and (max-width: 1500px) {
	#legendArea .chartExplanation,
	.contentWrapper .item .contents,
	.contentWrapper.indicators .item .contents,
	#energyArea .pieChartArea,
	#emissionsArea .introduction,
	#emissionsArea .emissionsChartArea,
	.furtherReading .list,
	#footer .contents {
		width: 75%;
	}
}
@media all and (max-width: 1400px) {
	#legendArea .chartExplanation,
	.contentWrapper .item .contents,
	.contentWrapper.indicators .item .contents,
	#energyArea .pieChartArea,
	#emissionsArea .introduction,
	#emissionsArea .emissionsChartArea,
	.furtherReading .list,
	#footer .contents {
		width: 80%;
	}
	.contentWrapper .item.indicators .contents p.hint {
		width: 75%;
	}
}
@media all and (max-width: 1200px) {
	#legendArea .chartExplanation,
	.contentWrapper .item .contents,
	.contentWrapper.indicators .item .contents,
	#energyArea .pieChartArea,
	#emissionsArea .introduction,
	#emissionsArea .emissionsChartArea,
	.furtherReading .list,
	#footer .contents {
		width: 90%;
	}
	#emissionsChart {
		width: 90%;
	}	
	.contentWrapper .item.indicators .contents p.hint {
		width: 80%;
	}
}
@media all and (max-width: 1000px) {
	#legendArea .chartExplanation,
	.contentWrapper .item .contents,
	.contentWrapper.indicators .item .contents,
	.chartTitle p,
	#energyArea .pieChartArea,
	#emissionsArea .introduction,
	#emissionsArea .emissionsChartArea,
	.furtherReading .list,
	#footer .contents {
		width: 94%;
	}
	.contentWrapper .item.indicators .contents p.hint {
		width: 85%;
	}
	.furtherReading.white .contents .workstream p.question {
		width: 100%;
	}	
	.leftColumn,
	#emissionsChart {
		width: 100%;
		text-align:center;
	}	
	.rightColumn {
		width: 94%;
	}
	.rightColumn .legend {
		width: 100%;
		margin: 40px 0 0 0;
	}
	.rightColumn .legend > div {
		width: 100%;
		padding: 10px 10px 10px 0;
	}
	.legend.emissions {
		line-height: 16px;
		min-height: 200px;
	}
}
@media all and (max-width: 800px) {
	.contentWrapper .item.indicators .contents p.hint {
		width: 90%;
	}
}
