

.screen {
	overflow: auto;
	overflow: hidden;
	width: 100%; min-height: 100vh;
/* 	min-height: 150vh; */
}
.show.images {
	height: 100%;
	overflow: hidden;
	position: absolute;
	width: 100%;
/* 	border: 4px solid red; */
}
.show.images > .slide {
 	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
 	display: block;
	opacity: 0;
	position: absolute;
	top: 50%; left: 50%;
	-webkit-transform: translate(-50%,-50%) scale(1.5);
	-moz-transform: translate(-50%,-50%) scale(1.5);
	-ms-transform: translate(-50%,-50%) scale(1.5);
	transform: translate(-50%,-50%) scale(1.5);
	-webkit-transition:
		opacity 1.6s ease-in-out,
		-webkit-transform 1.6s ease-in-out;
	-moz-transition:
		opacity 1.6s ease-in-out,
		-moz-transform 1.6s ease-in-out;
	-ms-transition:
		opacity 1.6s ease-in-out,
		-ms-transform 1.6s ease-in-out;
	transition:
		opacity 1.6s ease-in-out,
		transform 1.6s ease-in-out;
/* 	width: auto; height: 100%; */
	width: auto; height: 100%;
	-webkit-will-change: opacity, -webkit-transform;
	-moz-will-change: opacity, -moz-transform;
	-ms-will-change: opacity, -ms-transform;
	will-change: opacity, transform;
}
.show.images > .slide.current {
	opacity: 0.7;
	-webkit-transform: translate(-50%,-50%) scale(1);
	-moz-transform: translate(-50%,-50%) scale(1);
	-ms-transform: translate(-50%,-50%) scale(1);
	transform: translate(-50%,-50%) scale(1);
}
.box.shadow {
	background-color: rgba(0,0,0,0.4);
/* 	background-color: rgba(255,255,255,0.5); */
	border: 1px solid rgba(255,251,212,0.5);
	box-shadow: 0.0625em 0.0625em 0.0625em rgba(0,0,0,0.5);
}
.icon {
	cursor: pointer;
	line-height: 2em;
	-webkit-transition:
		background-color 0.4s ease-in-out,
		color 0.4s ease-in-out,
		opacity 0.4s ease-in-out;
	-moz-transition:
		background-color 0.4s ease-in-out,
		color 0.4s ease-in-out,
		opacity 0.4s ease-in-out;
	-ms-transition:
		background-color 0.4s ease-in-out,
		color 0.4s ease-in-out,
		opacity 0.4s ease-in-out;
	transition:
		background-color 0.4s ease-in-out,
		color 0.4s ease-in-out,
		opacity 0.4s ease-in-out;
	text-align: center;
	width: 2em; height: 2em;
}
.icon:before {
	display: block;
	font-family: 'Awesome';
}
.icon:hover {
	background-color: #78A52B;
	opacity: 0.9;
}
.icon[data-current='1'] {
	background-color: #78A52B;
}
.icon[data-current='1']:hover {
	cursor: default;
}
.controls {
	position: absolute;
	width: 100%; height: 100%;
}
.controls > * {
	-webkit-align-content: center;
	-moz-align-content: center;
	-ms-align-content: center;
	align-content: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	position: absolute;
/* 	border: 1px solid green; */
	position: absolute;
}
.controls > div.top {
	left: 2.5em; right: 2.5em;
	height: 2.5em;
}
.controls > div.right {
	right: 0; bottom: 0;
	width: 2.5em; height: 2.5em;
}
.controls > div.bottom {
	left: 2.5em; right: 2.5em; bottom: 0;
	height: 2.5em;
}
.controls > div.left {
	bottom: 0; left: 0;
	width: 2.5em; height: 2.5em;
}
.control {
/* 	background-color: black; */
	border-radius: 2.5em;
	font-size: 1.5em;
	opacity: 0.8;
/* 	z-index: 5; */
}
.control:hover {
	background: none;
	color: #C3D930;
	opacity: 0.7;
}
.control.form:before {content: '\f044';}
.control.top:before {content: '\f0a6';}
.control.right:before {content: '\f0a4';}
.control.bottom:before {content: '\f0a7';}
.control.left:before {content: '\f0a5';}
.control.key:before {content: '\f084';}

.content {
	-webkit-align-content: center;
	-moz-align-content: center;
	-ms-align-content: center;
	align-content: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
/* 	border: 2px solid blue; */
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	margin: 2.5em 0;
	min-height: calc(100vh - 5em);
}

.content > .small {
/* 	border: 1px solid red; */
/* 	background-color: rgba(0,0,0,0.25); */
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 0.3125em;
	width: 15em;
}

hr.in-small {
	background-color: #FFFFDD;
	border: none;
	display: block;
	padding: 0 !important;
	height: 1px;
	width: 38em;
	margin: 0.625em;
	opacity: 0.6;
}
.nav-list > ul {
	width: 100%;
	padding: 0 0.3125em;
}
.nav-list.right > ul {
	text-align: right;
}
.nav-list > ul > li {
	font-size: 0.8125em;
	font-weight: 400;
	list-style: none;
	width: 100%;
}
.nav-list > ul > li > a {
	background:
		url(../resources/images/babielato-logotype-v02-leaves.svg)
		no-repeat center left;
	background-size: 1em;
	color: #FFFFDD;
	display: block;
	text-overflow: ellipsis;
	margin-top: 0.25em;
	overflow: hidden;
	padding-left: 1.75em;
	white-space: nowrap;
}
.nav-list.right > ul > li > a {
	background-position: right center;
	padding-left: 0;
	padding-right: 1.75em;
}
.nav-list > ul > li > a:hover {
	color: #C3D930;
}

table.article {
	margin: 1em 0;
}
table.article .empty {
	height: 0.625em;
}
table.article .right {
	padding-left: 0.625em;
	text-align: right;
}
table.article td {
}
table.article th {
	font-weight: 400;
	text-align: left;
	vertical-align: top;
	padding-right: 0.625em;
}

table.list {
	width: 100%;
	font-size: 0.875em;
	margin: 0.5em 0;
	border-collapse: collapse;
/* 	background-color: rgba(0,0,0,0.4); */
/* 	border-radius: 0.5em; */
}
table.list th,
table.list td {
	vertical-align: top;
	padding: 0.25em 0.3215em;
	border: 1px solid rgba(255,251,212,0.5);;
}
table.list th {
	font-weight: 400;
	text-align: left;
/* 	padding-right: 0.625em; */
}
table.list .nowrap {
	white-space: nowrap;
}
table.list .right {
	text-align: right;
}
table.list .center {
	text-align: center;
}

article > .show {
	overflow: hidden;
}
article > .show > .wrap > .slide {
	float: left;
	opacity: 0;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: 100% 0;
	-moz-transform-origin: 100% 0;
	-ms-transform-origin: 100% 0;
	transform-origin: 100% 0%;
	-webkit-transition:
		transform 1.6s ease-in-out, opacity 1.6s ease-in-out 0.4s;
	-moz-transition:
		transform 1.6s ease-in-out, opacity 1.6s ease-in-out 0.4s;
	-ms-transition:
		transform 1.6s ease-in-out, opacity 1.6s ease-in-out 0.4s;
	transition:
		transform 1.6s ease-in-out, opacity 1.6s ease-in-out 0.4s;
	-webkit-moz-will-change: transform, opacity;
	-moz-will-change: transform, opacity;
	-ms-moz-will-change: transform, opacity;
	will-change: transform, opacity;
}
article > .show > .wrap > .slide.current {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}
article.small.box.shadow {
	padding: 1em;
}
article.small.box.shadow > hr {
	width: 100%;
	background-color: rgba(255,251,212,0.5);
	border: none;
	height: 1px;
/* 	opacity: 0.5; */
}
article.small.box.shadow > .nav-list {
	/*background: url(../resources/images/babielato-logotype-v01-header.svg) no-repeat left center;
	background-size: auto 100%;*/
}
article.small.box.shadow > .nav-list > ul {
	width: auto;
	margin-left: auto;
}
.nav-list {
	-webkit-align-items: flex-end;
	-moz-align-items: flex-end;
	-ms-align-items: flex-end;
	align-items: flex-end;
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin: 0 0.3125em 1em 0.3125em;
	margin: 0 0.3125em 0 0.3125em;
	width: 13em;
}
.nav-list > a {
	width: 5em;
	display: block;
/* 	padding-top: 0.5em; */
}
.nav-list > a > img {
	width: 100%;
}
.nav-list > ul {
/* 	margin-top: -0.25em */
}

