.interactiveContainer {
	position: relative;
}
.toolbar {
	position: absolute;
	right: 16px;
	top: 10px;
	width: auto !important;
}
.toolItem {
	color: #888;
	width: 125px;
	border-radius: 4px !important;
}
.explainer {
	margin-bottom: 30px;
}
.legend {
	position: static;
	float: left;
	position: absolute;
	left: 0;
	bottom: 0px;
	max-width: 150px;
	max-height: 75px;
	margin-bottom: -10px;
	margin-top: 20px;
}
.tableContainer {
	float: left;
	width: 100%;
	position: relative;
	margin-bottom: 20px;
}
.tableHeader {
	float: left;
	width: 98%;
	padding: 1px 1%;
	background: #fff;
	color: #333;
	border-bottom: 3px solid #333;
	margin-bottom: 10px;
}
.tablerow {
	float: left;
	width: 100%;
	padding: 0px 0;
	cursor: pointer;
	border-bottom: 1px solid #ddd;
	font-size: 14px;
	font-weight: bold;
	-webkit-transition: all 100ms linear;
	-moz-transition: all 100ms linear;
	-o-transition: all 100ms linear;
	-ms-transition: all 100ms linear;
	transition: all 100ms linear;
	z-index: 1;
	perspective: 1000;
}
.tablerow.selected .tablecell {
	/*transform*/
	-webkit-transform:rotateY(180deg);
	-moz-transform:rotateY(180deg);
	-ms-transform:rotateY(180deg);
	-o-transform:rotateY(180deg);
	transform:rotateY(180deg);
	/*box-shadow*/
	-webkit-box-shadow:-5px 5px 5px #aaa;
	-moz-box-shadow:-5px 5px 5px #aaa;
	box-shadow:-5px 5px 5px #aaa;
}
.tablerow.selected .tablecell:first-child {
	/*transform*/
	-webkit-transform:rotateY(0deg);
	-moz-transform:rotateY(0deg);
	-ms-transform:rotateY(0deg);
	-o-transform:rotateY(0deg);
	transform:rotateY(0deg);
	/*box-shadow*/
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.tablecell {
	position: relative;
	float: left;
	width: 14%;
	font-size: 14px;
	height: 100%;
	min-height: 22px;
	margin: 0 0%;
	text-align: center;
	font-weight: normal;
	/*transform-style*/
	-webkit-transform-style:preserve-3d;
	-moz-transform-style:preserve-3d;
	-ms-transform-style:preserve-3d;
	-o-transform-style:preserve-3d;
	transform-style:preserve-3d;

	/*transition*/
	-webkit-transition:all .45s ease-in-out;
	-moz-transition:all .45s ease-in-out;
	-o-transition:all .45s ease-in-out;
	transition:all .45s ease-in-out;

}
.tablecell:nth-child(1) {
	/*transition*/
	-webkit-transition:all .3s ease-in-out;
	-moz-transition:all .3s ease-in-out;
	-o-transition:all .3s ease-in-out;
	transition:all .3s ease-in-out;
}

.tablecell:nth-child(3) {
	/*transition*/
	-webkit-transition:all .18s ease-in-out;
	-moz-transition:all .18s ease-in-out;
	-o-transition:all .18s ease-in-out;
	transition:all .18s ease-in-out;
}
.tablecell:nth-child(4) {
	-webkit-transition:all .24s ease-in-out;
	-moz-transition:all .24s ease-in-out;
	-o-transition:all .24s ease-in-out;
	transition:all .24s ease-in-out;
}
.cellSide {
	position: absolute;
	width: 100%;
	height: 100%;
	/*backface-visibility*/
	-webkit-backface-visibility:hidden;
	-moz-backface-visibility:hidden;
	-ms-backface-visibility:hidden;
	-o-backface-visibility:hidden;
	backface-visibility:hidden;

}
.cellSide.back {
	display: block;
	/*transform*/
	-webkit-transform:rotateY(180deg);
	-moz-transform:rotateY(180deg);
	-ms-transform:rotateY(180deg);
	-o-transform:rotateY(180deg);
	transform:rotateY(180deg);
	box-sizing:border-box;
	color: black !important;
	font-weight: 100 !important;
	/*	background: #eee !important;*/
}
.tablecell:nth-child(1) {
	float: left;
	margin-right: 1%;
	width: 39%;
	text-align: left;
	font-size: 13px;
}
.tableHeader .tablecell {
	font-size: 20px;
	font-weight: 100;
}
.details {
	display: none;
	position: absolute;
	left: 0; top: 0;
	width: 100%;
	background: red;
	height: 100%;
}

.hideSmall {
	display: inline;
}
@media screen and (max-width: 600px) {
	.toolbar {
		display: none;
	}
	.tablerow:hover .tablecell {
		/*transform*/
		-webkit-transform:rotateY(0deg);
		-moz-transform:rotateY(0deg);
		-ms-transform:rotateY(0deg);
		-o-transform:rotateY(0deg);
		transform:rotateY(0deg);
		/*box-shadow*/
		-webkit-box-shadow:-5px 5px 5px #aaa;
		-moz-box-shadow:-5px 5px 5px #aaa;
		box-shadow:-5px 5px 5px #aaa;
	}

	.tablecell:nth-child(1) {
		width: 50%;
	}
	.cellma {
		display: none;
	}
}

@media screen and (max-width: 500px) {
	.tablecell:nth-child(1) {
		width: 65%;
	}
	.cellny {
		display: none;
	}
	.cellma {
		display: none;
	}
}
@media screen and (max-width: 400px) {
	.tablecell {
		width: 12.5%;
	}

	.tablecell:nth-child(1) {
		width: 80%;
	}
	.cellus {
		display: none;
	}
	.cellma {
		display: none;
	}
	.cellny {
		display: none;
	}
}
.explainer, .interactiveContainer p {
	float: left;
	font-size: 14px;
	width: 100%;
	font-weight: 400;
	color: #555;
	margin: 10px 0 26px;
	line-height: 18px;
}