@charset "UTF-8";
@import url(font-awesome.min.css);
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");


/* Reset */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	}

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

body {
	line-height: 1;
	}

ol, ul {
	list-style: none;
	}

blockquote, q {
	quotes: none;
	}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
	}

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

body {
	-webkit-text-size-adjust: none;
	}

.justify {
	text-align: justify;
	}

.fa-facebook {	
	padding: 20px;
	font-size: 30px;
	width: 50px;
	text-align: center;
	text-decoration: none;
	background: #3B5998;
	color: white;
	}

.fa-twitter {
	padding: 20px;
	font-size: 30px;
	width: 50px;
	text-align: center;
	text-decoration: none;
	background: #55ACEE;
	color: white;
	}


/* Dropdown menú */

ul.drop {
	list-style-type: none;
	overflow: hidden;
	margin-right: 1em;
	}

li.drop {	
	display: inline-block;
	float: right;
	}

li.drop a, .dropbtn {
	display: inline-block;
	color: #a6a6a6;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	}

li.drop a:hover, .dropdown:hover .dropbtn {
	background-color: #404040;
	color: #ffffff;
	}

li.dropdown {
	display: inline-block;
	float: right;
	}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #d9d9d9;
	min-width: 160px;
	right: 0;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
	}

.dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: right;
	}

.dropdown-content a:hover {
	background-color: #f1f1f1;
	color: black;
	}

.dropdown:hover .dropdown-content {
  	display: block;
	}


/* Imágenes modales */

#myImg {
	cursor: pointer;
	transition: 0.3s;
	}

.enlarge {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #f1f1f1;
	font-size: 20px;
	font-weight: bold;
	}

#myImg:hover {opacity: 0.7;}

.modal {
	display: none; 
	position: fixed;
	z-index: 1;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.9);
	}

.modal-content {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
	}

.modal-content, #caption {
	animation-name: zoom;
	animation-duration: 0.6s;
	}

@keyframes zoom {
	from {transform:scale(0)}
	to {transform:scale(1)}
	}

.close {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
	}

.close:hover, .close:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
	}

@media only screen and (max-width: 700px){
	.modal-content {
	width: 100%;
	}
	}


/* Timeline */

.crono {
	background-color: #d9d9d9;
	font-family: Verdana, sans-serif;
	line-height: 1.7em;
	position: relative;
	width: 100%;
	color: black;
	padding: 50px 0;
	}

.timeline {
	position: relative;
	margin: 0 auto;
	}

.timeline::after {
	content: '';
	position: absolute;
	width: 5px;
	background-color: black;
	top: 0;
	bottom: 0;
	left: 50%;
	margin-left: -3px;
	}

.containercrono {	
	padding: 10px 40px;
	position: relative;
	background-color: inherit;
	width: 50%;
	}

.containercrono::after {
	content: '';
	position: absolute;
	width: 25px;
	height: 25px;
	right: -12px;
	background-color: #d9d9d9;
	border: 4px solid #b30000;
	top: 15px;
	border-radius: 50%;
	z-index: 1;
	}

.left {
	left: 0%;
	}

.right {
	left: 50%;
	}

.left::before {
	content: " ";
	height: 0;
	position: absolute;
	top: 22px;
	width: 0;
	z-index: 1;
	right: 30px;
	border: medium solid white;
	border-width: 10px 0 10px 10px;
	border-color: transparent transparent transparent white;
	}

.right::before {
	content: " ";
	height: 0;
	position: absolute;
	top: 22px;
	width: 0;
	z-index: 1;
	left: 30px;
	border: medium solid white;
	border-width: 10px 10px 10px 0;
	border-color: transparent white transparent transparent;
	}

.right::after {
	left: -12px;
	}

.contentcrono {
	padding: 20px 30px;
	background-color: white;
	position: relative;
	border-radius: 10px;
	}

.contentcrono p {
	text-align: justify;
	margin-bottom: 10px;
	}

.contentcrono a {
	color: #99311A;
	transition: color 0.2s ease-in-out;
	}

.contentcrono a:hover {
	color: #dac199;
	}

.anno {
	color: #d9d9d9 !important;
	line-height: 2.2em;
	font-weight: bold;
	font-size: 3em;
	}



/* Publicidad */

#container {
	position: relative;
	height: 300px;
	width: 100%;
	}

#container img {
	position: absolute;
	width: 100%;
	}

@-webkit-keyframes imgFade {
	0% {
		opacity:1;
		}
	17% {
		opacity:1;
		}
	25% {
		opacity:0;
		}
	92% {
		opacity:0;
		}
	100% {
		opacity:1;
		}
	}

@-moz-keyframes imgFade {
	0% {
		opacity:1;
		}
	17% {
		opacity:1;
		}
	25% {
		opacity:0;
		}
	92% {
		opacity:0;
		}
	100% {
		opacity:1;
		}
	}

@-o-keyframes imgFade {
	0% {
		opacity:1;
		}
	17% {
		opacity:1;
		}
	25% {
		opacity:0;
		}
	92% {
		opacity:0;
		}
	100% {
		opacity:1;
		}
	}

@keyframes imgFade {
	0% {
		opacity:1;
		}
	17% {
		opacity:1;
		}
	25% {
		opacity:0;
		}
	92% {
		opacity:0;
		}
	100% {
		opacity:1;
		}
	}

#container img {
	-webkit-animation-name: imgFade;
	-webkit-animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-duration: 30s;

	-moz-animation-name: imgFade;
	-moz-animation-timing-function: ease-in-out;
	-moz-animation-iteration-count: infinite;
	-moz-animation-duration: 30s;

	-o-animation-name: imgFade;
	-o-animation-timing-function: ease-in-out;
	-o-animation-iteration-count: infinite;
	-o-animation-duration: 30s;

	animation-name: imgFade;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-duration: 30s;
	}

#container img:nth-of-type(1) {
	-webkit-animation-delay: 24s;
	-moz-animation-delay: 24s;
	-o-animation-delay: 24s;
	animation-delay: 24s;
	}

#container img:nth-of-type(2) {
	-webkit-animation-delay: 18s;
	-moz-animation-delay: 18s;
	-o-animation-delay: 18s;
	animation-delay: 18s;
	}

#container img:nth-of-type(3) {
	-webkit-animation-delay: 12s;
	-moz-animation-delay: 12s;
	-o-animation-delay: 12s;
	animation-delay: 12s;
	}

#container img:nth-of-type(4) {
	-webkit-animation-delay: 6s;
	-moz-animation-delay: 6s;
	-o-animation-delay: 6s;
	animation-delay: 6s;
	}

#container img:nth-of-type(5) {
	-webkit-animation-delay: 0;
	-moz-animation-delay: 0;
	-o-animation-delay: 0;
	animation-delay: 0;
	}


/* Texto de artículos */

p.articulo {
	color: black;
	text-align: justify;
	font-family: Verdana, sans-serif;
	}

p.articulo a {
	color: #99311A;
	transition: color 0.2s ease-in-out;
	}

p.articulo a:hover {
	color: #dac199;
	}

a.keyword {
	color: #99311A;
	transition: color 0.2s ease-in-out;
	}

a.keyword:hover {
	color: #dac199;
	}

p.subtitulo {
	color: black;
	text-transform: uppercase;
	font-size: 1.5em;
	line-height: 1.5em;
	font-family: "Poppins", Verdana, sans-serif;
	text-align: center;
	}

p.siglo {
	color: black;
	text-transform: uppercase;
	font-size: 1em;
	line-height: 1.5em;
	font-family: "Poppins", Verdana, sans-serif;
	text-align: center;
	background-color: #d9d9d9;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	margin-top: 2em;
	}

.subart {
	color: black;
	text-transform: uppercase;
	font-size: 1.3em;
	line-height: 2.5em;
	font-family: Verdana, sans-serif;
	}


.indice {
	color: black;
	text-align: justify;
	line-height: 2em;
	font-family: Verdana, sans-serif;
	column-count: 2;
	column-gap: 5%;
	column-rule: 0.5px solid grey;
	column-width: 30%;
	}

.indice a {
	color: #99311A;
	transition: color 0.2s ease-in-out;
	}

.indice a:hover {
	color: #dac199;
	}

.detalle {
	display: block;
	margin-left: 20px;
	font-size: 0.8em;
	}

p.referencia {
	color: black;
	text-align: justify;
	font-family: Verdana, sans-serif;
	font-size: 0.8em;
	}


/* Texto de zonas de descarga */

img.catalogo {
	float: left;
	height: 300px;
	width: auto;
	border: 0;
	margin-right: 30px;
	}

.descarga p {
	color: black;
	text-align: justify;
	line-height: 2em;
	font-family: Verdana, sans-serif;
	padding-bottom: 0px;
	}


/* Breadcrumb */

p.breadcrumb {
	color: black;
	padding: 10px 0px 10px 15px;
	margin: 3px 0px 3px 0px;
	background-color: #e0e0e0;
	}

p.breadcrumb a {
	color: black;
	transition: color 0.2s ease-in-out;
	}

p.breadcrumb a:hover {
	color: #dac199;
	}


/* Box Model */

*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	}


/* Containers */

.container {
	margin-left: auto;
	margin-right: auto;
	}

.container.\31 25\25 {
	width: 100%;
	max-width: 100rem;
	min-width: 80rem;
	}

.container.\37 5\25 {
	width: 60rem;
	}

.container.\35 0\25 {
	width: 40rem;
	}

.container.\32 5\25 {
	width: 20rem;
	}

.container {
	width: 80rem;
	}


/* Grid */

.row {
	border-bottom: solid 1px transparent;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	}

.row > * {
	float: left;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	}

.row:after, .row:before {
	content: '';
	display: block;
	clear: both;
	height: 0;
	}

.row.uniform > * > :first-child {
	margin-top: 0;
	}

.row.uniform > * > :last-child {
	margin-bottom: 0;
	}

.row.\30 \25 > * {
	padding: 0 0 0 0rem;
	}

.row.\30 \25 {
	margin: 0 0 -1px 0rem;
	}

.row.uniform.\30 \25 > * {
	padding: 0rem 0 0 0rem;
	}

.row.uniform.\30 \25 {
	margin: 0rem 0 -1px 0rem;
	}

.row > * {
	padding: 0 0 0 2rem;
	}

.row {
	margin: 0 0 -1px -2rem;
	}

.row.uniform > * {
	padding: 2rem 0 0 2rem;
	}

.row.uniform {
	margin: -2rem 0 -1px -2rem;
	}

.row.\32 00\25 > * {
	padding: 0 0 0 4rem;
	}

.row.\32 00\25 {
	margin: 0 0 -1px -4rem;
	}

.row.uniform.\32 00\25 > * {
	padding: 4rem 0 0 4rem;
	}

.row.uniform.\32 00\25 {
	margin: -4rem 0 -1px -4rem;
	}

.row.\31 50\25 > * {
	padding: 0 0 0 3rem;
	}

.row.\31 50\25 {
	margin: 0 0 -1px -3rem;
	}

.row.uniform.\31 50\25 > * {
	padding: 3rem 0 0 3rem;
	}

.row.uniform.\31 50\25 {
	margin: -3rem 0 -1px -3rem;
	}

.row.\35 0\25 > * {
	padding: 0 0 0 1rem;
	}

.row.\35 0\25 {
	margin: 0 0 -1px -1rem;
	}

.row.uniform.\35 0\25 > * {
	padding: 1rem 0 0 1rem;
	}

.row.uniform.\35 0\25 {
	margin: -1rem 0 -1px -1rem;
	}

.row.\32 5\25 > * {
	padding: 0 0 0 0.5rem;
	}

.row.\32 5\25 {
	margin: 0 0 -1px -0.5rem;
	}

.row.uniform.\32 5\25 > * {
	padding: 0.5rem 0 0 0.5rem;
	}

.row.uniform.\32 5\25 {
	margin: -0.5rem 0 -1px -0.5rem;
	}

.\31 2u, .\31 2u\24 {
	width: 100%;
	clear: none;
	margin-left: 0;
	}

.\31 1u, .\31 1u\24 {
	width: 91.6666666667%;
	clear: none;
	margin-left: 0;
	}

.\31 0u, .\31 0u\24 {
	width: 83.3333333333%;
	clear: none;
	margin-left: 0;
	}

.\39 u, .\39 u\24 {
	width: 75%;
	clear: none;
	margin-left: 0;
	}

.\38 u, .\38 u\24 {
	width: 66.6666666667%;
	clear: none;
	margin-left: 0;
	}

.\37 u, .\37 u\24 {
	width: 58.3333333333%;
	clear: none;
	margin-left: 0;
	}

.\36 u, .\36 u\24 {
	width: 50%;
	clear: none;
	margin-left: 0;
	}

.\35 u, .\35 u\24 {
	width: 41.6666666667%;
	clear: none;
	margin-left: 0;
	}

.\34 u, .\34 u\24 {
	width: 33.3333333333%;
	clear: none;
	margin-left: 0;
	}

.\33 u, .\33 u\24 {
	width: 25%;
	clear: none;
	margin-left: 0;
	}

.\32 u, .\32 u\24 {
	width: 16.6666666667%;
	clear: none;
	margin-left: 0;
	}

.\31 u, .\31 u\24 {
	width: 8.3333333333%;
	clear: none;
	margin-left: 0;
	}

.\31 2u\24 + *, .\31 1u\24 + *, .\31 0u\24 + *, .\39 u\24 + *, .\38 u\24 + *, .\37 u\24 + *, .\36 u\24 + *, .\35 u\24 + *, .\34 u\24 + *, .\33 u\24 + *, .\32 u\24 + *, .\31 u\24 + * {
	clear: left;
	}

.\-11u {
	margin-left: 91.66667%;
	}

.\-10u {
	margin-left: 83.33333%;
	}

.\-9u {
	margin-left: 75%;
	}

.\-8u {
	margin-left: 66.66667%;
	}

.\-7u {
	margin-left: 58.33333%;
	}

.\-6u {
	margin-left: 50%;
	}

.\-5u {
	margin-left: 41.66667%;
	}

.\-4u {
	margin-left: 33.33333%;
	}

.\-3u {
	margin-left: 25%;
	}

.\-2u {
	margin-left: 16.66667%;
	}

.\-1u {
	margin-left: 8.33333%;
	}


/* Basic */

@-ms-viewport {
	width: device-width;
	}

body {
	-ms-overflow-style: scrollbar;
	background: #111;
	}

body.is-loading *, body.is-loading *:before, body.is-loading *:after {
	-moz-animation: none !important;
	-webkit-animation: none !important;
	-ms-animation: none !important;
	animation: none !important;
	-moz-transition: none !important;
	-webkit-transition: none !important;
	-ms-transition: none !important;
	transition: none !important;
	}


/* Type */

html {
	font-size: 13pt;
	}

body {
	background-color: #f2f2f2;
	color: #444;
	}

body, input, select, textarea {
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-size: 1rem;
	line-height: 1.65;
	}

a {
	text-decoration: none;
	}

a:hover {
	text-decoration: none;
	color: #dac199:
		}

strong, b {
	font-weight: 600;
	}

em, i {
	font-style: italic;
	}

p {
	margin: 0 0 2rem 0;
	}

p.special {
	text-transform: uppercase;
	font-size: .75rem;
	font-weight: 300;
	margin: 0 0 .5rem 0;
	padding: 0 0 1rem 0;
	letter-spacing: .25rem;
	}

p.special:after {
	content: '';
	position: absolute;
	margin: auto;
	right: 0;
	bottom: 0;
	left: 0;
	width: 50%;
	height: 1px;
	background-color: rgba(0, 0, 0, 0.125);
	}

h1, h2, h3, h4, h5, h6 {
	font-weight: 300;
	line-height: 1.5;
	margin: 0 0 1rem 0;
	}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: inherit;
	text-decoration: none;
	}

h2 {
	font-size: 1.75rem;
	}

h3 {
	font-size: 1.35rem;
	}

h4 {
	font-size: 1.1rem;
	}

h5 {
	font-size: 0.9rem;
	}

h6 {
	font-size: 0.7rem;
	}

sub {
	font-size: 0.8rem;
	position: relative;
	top: 0.5rem;
	}

sup {
	font-size: 0.8rem;
	position: relative;
	top: -0.5rem;
	}

blockquote {
	border-left: solid 4px;
	text-align: justify;
	margin: 0 0 2rem 0;
	padding: 0.5rem 0 0.5rem 2rem;
	color: black;
	font-family: Verdana, sans-serif;
	}

code {
	border-radius: 2px;
	border: solid 1px;
	font-family: "Courier New", monospace;
	font-size: 0.9rem;
margin: 0 0.25rem;
	padding: 0.25rem 0.65rem;
	}

pre {
	-webkit-overflow-scrolling: touch;
	font-family: "Courier New", monospace;
	font-size: 0.9rem;
	margin: 0 0 2rem 0;
	}

pre code {
	display: block;
	line-height: 1.75;
padding: 1rem 1.5rem;
	overflow-x: auto;
	}

hr {
	border: 0;
	border-bottom: solid 1px;
	margin: 2rem 0;
	}

hr.major {
	margin: 3rem 0;
	}

.align-left {
	text-align: left;
	}

.align-center {
	text-align: center;
	}

.align-right {
	text-align: right;
	}

input, select, textarea {
	color: #555;
	}

strong, b {
	color: #555;
	}

h1, h2, h3, h4, h5, h6 {
	color: #555;
	}

blockquote {
	border-left-color: rgba(144, 144, 144, 0.25);
	}

code {
	background: rgba(144, 144, 144, 0.075);
	border-color: rgba(144, 144, 144, 0.25);
	}

hr {
	border-bottom-color: rgba(144, 144, 144, 0.25);
	}


/* Box */

.box {
	margin-bottom: 0;
	background: #ffffff;
	}

.box .image.fit {
	margin: 0;
	border-radius: 0;
	}

.box .image.fit img {
	border-radius: 0;
	}

.box header h2 {
	text-transform: uppercase;
	margin-bottom: 1rem;
	letter-spacing: .50rem;
	}

.box header p {
	text-transform: uppercase;
	font-size: 1.2rem;
	font-weight: 600;
	margin: 0 0 1.25rem 0;
	padding: 0 0 1.25rem 0;
	letter-spacing: .25rem;
	}

.box header p:after {
	content: '';
	position: absolute;
	margin: auto;
	right: 0;
	bottom: 0;
	left: 0;
	width: 50%;
	height: 1px;
	background-color: rgba(0, 0, 0, 0.125);
	}

.box .content {
	padding: 2rem;
	}

.box > :last-child, .box > :last-child > :last-child, .box > :last-child > :last-child > :last-child {
	margin-bottom: 0;
	}

.box.alt {
	border: 0;
	border-radius: 0;
	padding: 0;
	}

.box {
	border-color: rgba(144, 144, 144, 0.25);
	}


/* Image */

.image {
	border-radius: 2px;
	border: 0;
	display: inline-block;
	position: relative;
	}

.image img {
	border-radius: 2px;
	display: block;
	margin: 0;
	padding: 0;
	}

.image.left, .image.right {
	max-width: 40%;
	}

.image.left img, .image.right img {
	width: 100%;
	}

.image.left {
	float: left;
	margin: 0 1.5rem 1rem 0;
	top: 0.25rem;
	}

.image.right {
	float: right;
	margin: 0 0 1rem 1.5rem;
	top: 0.25rem;
	}

.image.fit {
	display: block;
	margin: 0;
	width: 100%;
	}

.image.fit img {
	width: 100%;
	}

.image.main {
display: block;
	margin: 0;
	width: 100%;
	}

.image.main img {
	width: 100%;
	}


/* Section/Article */

section.special, article.special {
	text-align: center;
	}

header p {
	position: relative;
	margin: 0 0 1.5rem 0;
	}

header h2 + p {
	font-size: 1.25rem;
	margin-top: -1rem;
	}

header h3 + p {
	font-size: 1.1rem;
	margin-top: -0.8rem;
	}

header h4 + p, header h5 + p, header h6 + p {
	font-size: 0.9rem;
	margin-top: -0.6rem;
	}

header p {
	color: #bbb;
	}

header a {
	color: #a6a6a6;
	}

header a:hover {
	color: black;
	}


/* Wrapper */

.wrapper {
	padding: 1rem 0 1rem 0;
	position: relative;
	margin: 0;
	}

.wrapper > .inner {
	margin: 0 auto;
	width: 80rem;
	}

.wrapper.style2 {
	background-color: #f2f2f2;
	color: #777777;
	}

.wrapper.style2 a.leermas {
	color: #777777;
	transition: color 0.2s ease-in-out;
	}

.wrapper.style2 a.leermas:hover {
	color: #dac199;
	}

.wrapper.style2 input, .wrapper.style2 select, .wrapper.style2 textarea {
	color: #000;
	}

.wrapper.style2 strong, .wrapper.style2 b {
	color: #000;
	}

.wrapper.style2 h1, .wrapper.style2 h2, .wrapper.style2 h3, .wrapper.style2 h4, .wrapper.style2 h5, .wrapper.style2 h6 {
	color: #000;
	}

.wrapper.style2 blockquote {
	border-left-color: rgba(0, 0, 0, 0.15);
	}

.wrapper.style2 code {
	background: rgba(0, 0, 0, 0.075);
	border-color: rgba(0, 0, 0, 0.15);
	}

.wrapper.style2 hr {
	border-bottom-color: rgba(0, 0, 0, 0.15);
	}

.wrapper.style2 .box {
	border-color: rgba(0, 0, 0, 0.15);
	}

.wrapper.style2 input[type="submit"], .wrapper.style2 input[type="reset"], .wrapper.style2 input[type="button"], .wrapper.style2 button, .wrapper.style2 .button {
	background-color: #000;
	color: #f2f2f2 !important;
	}

.wrapper.style2 input[type="submit"].alt, .wrapper.style2 input[type="reset"].alt, .wrapper.style2 input[type="button"].alt, .wrapper.style2 button.alt, .wrapper.style2 .button.alt {
	background-color: transparent;
	box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.15);
	color: #000 !important;
	}

.wrapper.style2 input[type="submit"].alt:hover, .wrapper.style2 input[type="reset"].alt:hover, .wrapper.style2 input[type="button"].alt:hover, .wrapper.style2 button.alt:hover, .wrapper.style2 .button.alt:hover {
	background-color: rgba(0, 0, 0, 0.075);
	}

.wrapper.style2 input[type="submit"].alt:active, .wrapper.style2 input[type="reset"].alt:active, .wrapper.style2 input[type="button"].alt:active, .wrapper.style2 button.alt:active, .wrapper.style2 .button.alt:active {
	background-color: rgba(0, 0, 0, 0.2);
	}

.wrapper.style2 input[type="submit"].alt.icon:before, .wrapper.style2 input[type="reset"].alt.icon:before, .wrapper.style2 input[type="button"].alt.icon:before, .wrapper.style2 button.alt.icon:before, .wrapper.style2 .button.alt.icon:before {
	color: #999999;
	}

.wrapper.style2 input[type="submit"].special, .wrapper.style2 input[type="reset"].special, .wrapper.style2 input[type="button"].special, .wrapper.style2 button.special, .wrapper.style2 .button.special {
	background-color: #8a4680;
	color: #ffffff !important;
	}

.wrapper.style2 input[type="submit"].special:hover, .wrapper.style2 input[type="reset"].special:hover, .wrapper.style2 input[type="button"].special:hover, .wrapper.style2 button.special:hover, .wrapper.style2 .button.special:hover {
	background-color: #9b4f90;
	}

.wrapper.style2 input[type="submit"].special:active, .wrapper.style2 input[type="reset"].special:active, .wrapper.style2 input[type="button"].special:active, .wrapper.style2 button.special:active, .wrapper.style2 .button.special:active {
	background-color: #793d70;
	}

.wrapper.style2 label {
	color: #000;
	}

.wrapper.style2 input[type="text"], .wrapper.style2 input[type="password"], .wrapper.style2 input[type="email"], .wrapper.style2 select, .wrapper.style2 textarea {
	background: rgba(0, 0, 0, 0.075);
	border-color: rgba(0, 0, 0, 0.15);
	}

.wrapper.style2 input[type="text"]:focus, .wrapper.style2 input[type="password"]:focus, .wrapper.style2 input[type="email"]:focus, .wrapper.style2 select:focus, .wrapper.style2 textarea:focus {
	border-color: #8a4680;
	box-shadow: 0 0 0 1px #8a4680;
	}

.wrapper.style2 .select-wrapper:before {
	color: rgba(0, 0, 0, 0.15);
	}

.wrapper.style2 input[type="checkbox"] + label, .wrapper.style2 input[type="radio"] + label {
	color: #a6a6a6;
	}

.wrapper.style2 input[type="checkbox"] + label:before, .wrapper.style2 input[type="radio"] + label:before {
	background: rgba(0, 0, 0, 0.075);
	border-color: rgba(0, 0, 0, 0.15);
	}

.wrapper.style2 input[type="checkbox"]:checked + label:before, .wrapper.style2 input[type="radio"]:checked + label:before {
	background-color: #8a4680;
	border-color: #8a4680;
	color: #ffffff;
	}

.wrapper.style2 input[type="checkbox"]:focus + label:before, .wrapper.style2 input[type="radio"]:focus + label:before {
	border-color: #8a4680;
	box-shadow: 0 0 0 1px #8a4680;
	}

.wrapper.style2 ::-webkit-input-placeholder {
	color: #999999 !important;
	}

.wrapper.style2 :-moz-placeholder {
	color: #999999 !important;
	}

.wrapper.style2 ::-moz-placeholder {
	color: #999999 !important;
	}

.wrapper.style2 :-ms-input-placeholder {
	color: #999999 !important;
	}

.wrapper.style2 .formerize-placeholder {
	color: #999999 !important;
	}

.wrapper.style2 ul.alt li {
	border-top-color: rgba(0, 0, 0, 0.15);
	}

.wrapper.style2 header p {
	color: #999999;
	}

.wrapper.style2 header a {
	color: #999999;
	}

.wrapper.style2 header a:hover {
	color: #999999;
	}

.wrapper.style2 header h2 a {
	color: #000000;
	}

.wrapper.style2 header h2 a:hover {
	color: #000000;
	}

.wrapper.style2 table tbody tr {
	border-color: rgba(0, 0, 0, 0.15);
	}

.wrapper.style2 table tbody tr:nth-child(2n + 1) {
	background-color: rgba(0, 0, 0, 0.075);
	}

.wrapper.style2 table th {
	color: #000;
	}

.wrapper.style2 table thead {
	border-bottom-color: rgba(0, 0, 0, 0.15);
	}

.wrapper.style2 table tfoot {
	border-top-color: rgba(0, 0, 0, 0.15);
	}

.wrapper.style2 table.alt tbody tr td {
	border-color: rgba(0, 0, 0, 0.15);
	}

.wrapper.style3 {
	background-color: #000;
	color: #bfbfbf;
	background-image: url(../../img/0001.JPG);
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	position: relative;
	}

.wrapper.style3 input, .wrapper.style3 select, .wrapper.style3 textarea {
	color: #ffffff;
	}

.wrapper.style3 a {
	color: #bfbfbf;
	}

.wrapper.style3 a.leermas1 {
	color: white;
	transition: color 0.2s ease-in-out;
	}

.wrapper.style3 a.leermas1:hover {
	color: #dac199;
	}

.wrapper.style3 strong, .wrapper.style3 b {
	color: #ffffff;
	}

.wrapper.style3 h1, .wrapper.style3 h2, .wrapper.style3 h3, .wrapper.style3 h4, .wrapper.style3 h5, .wrapper.style3 h6 {
	color: #ffffff;
	}

.wrapper.style3 blockquote {
	border-left-color: rgba(255, 255, 255, 0.25);
	}

.wrapper.style3 code {
	background: rgba(255, 255, 255, 0.075);
	border-color: rgba(255, 255, 255, 0.25);
	}

.wrapper.style3 hr {
	border-bottom-color: rgba(255, 255, 255, 0.25);
	}

.wrapper.style3 .box {
	border-color: rgba(255, 255, 255, 0.25);
	}

.wrapper.style3 input[type="submit"], .wrapper.style3 input[type="reset"], .wrapper.style3 input[type="button"], .wrapper.style3 button, .wrapper.style3 .button {
	background-color: #f2f2f2;
	color: #000 !important;
	}

.wrapper.style3 input[type="submit"]:hover, .wrapper.style3 input[type="reset"]:hover, .wrapper.style3 input[type="button"]:hover, .wrapper.style3 button:hover, .wrapper.style3 .button:hover {
	background-color: white;
	}

.wrapper.style3 input[type="submit"]:active, .wrapper.style3 input[type="reset"]:active, .wrapper.style3 input[type="button"]:active, .wrapper.style3 button:active, .wrapper.style3 .button:active {
	background-color: #e5e5e5;
	}

.wrapper.style3 input[type="submit"].alt, .wrapper.style3 input[type="reset"].alt, .wrapper.style3 input[type="button"].alt, .wrapper.style3 button.alt, .wrapper.style3 .button.alt {
	background-color: transparent;
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.25);
	color: #ffffff !important;
	}

.wrapper.style3 input[type="submit"].alt:hover, .wrapper.style3 input[type="reset"].alt:hover, .wrapper.style3 input[type="button"].alt:hover, .wrapper.style3 button.alt:hover, .wrapper.style3 .button.alt:hover {
	background-color: rgba(255, 255, 255, 0.075);
	}

.wrapper.style3 input[type="submit"].alt:active, .wrapper.style3 input[type="reset"].alt:active, .wrapper.style3 input[type="button"].alt:active, .wrapper.style3 button.alt:active, .wrapper.style3 .button.alt:active {
	background-color: rgba(255, 255, 255, 0.2);
	}

.wrapper.style3 input[type="submit"].alt.icon:before, .wrapper.style3 input[type="reset"].alt.icon:before, .wrapper.style3 input[type="button"].alt.icon:before, .wrapper.style3 button.alt.icon:before, .wrapper.style3 .button.alt.icon:before {
	color: #999999;
	}

.wrapper.style3 input[type="submit"].special, .wrapper.style3 input[type="reset"].special, .wrapper.style3 input[type="button"].special, .wrapper.style3 button.special, .wrapper.style3 .button.special {
background-color: #8a4680;
	color: #ffffff !important;
	}

.wrapper.style3 input[type="submit"].special:hover, .wrapper.style3 input[type="reset"].special:hover, .wrapper.style3 input[type="button"].special:hover, .wrapper.style3 button.special:hover, .wrapper.style3 .button.special:hover {
	background-color: #9b4f90;
	}

.wrapper.style3 input[type="submit"].special:active, .wrapper.style3 input[type="reset"].special:active, .wrapper.style3 input[type="button"].special:active, .wrapper.style3 button.special:active, .wrapper.style3 .button.special:active {
	background-color: #793d70;
	}

.wrapper.style3 label {
	color: #ffffff;
	}

.wrapper.style3 input[type="text"], .wrapper.style3 input[type="password"], .wrapper.style3 input[type="email"], .wrapper.style3 select, .wrapper.style3 textarea {
	background: rgba(255, 255, 255, 0.075);
	border-color: rgba(255, 255, 255, 0.25);
	}

.wrapper.style3 input[type="text"]:focus, .wrapper.style3 input[type="password"]:focus, .wrapper.style3 input[type="email"]:focus, .wrapper.style3 select:focus, .wrapper.style3 textarea:focus {
	border-color: #8a4680;
	box-shadow: 0 0 0 1px #8a4680;
	}

.wrapper.style3 .select-wrapper:before {
	color: rgba(255, 255, 255, 0.25);
	}

.wrapper.style3 input[type="checkbox"] + label, .wrapper.style3 input[type="radio"] + label {
	color: #bfbfbf;
	}

.wrapper.style3 input[type="checkbox"] + label:before, .wrapper.style3 input[type="radio"] + label:before {
	background: rgba(255, 255, 255, 0.075);
	border-color: rgba(255, 255, 255, 0.25);
	}

.wrapper.style3 input[type="checkbox"]:checked + label:before, .wrapper.style3 input[type="radio"]:checked + label:before {
	background-color: #8a4680;
	border-color: #8a4680;
	color: #ffffff;
	}

.wrapper.style3 input[type="checkbox"]:focus + label:before, .wrapper.style3 input[type="radio"]:focus + label:before {
	border-color: #8a4680;
	box-shadow: 0 0 0 1px #8a4680;
	}

.wrapper.style3 ::-webkit-input-placeholder {
	color: #999999 !important;
	}

.wrapper.style3 :-moz-placeholder {
	color: #999999 !important;
	}

.wrapper.style3 ::-moz-placeholder {
	color: #999999 !important;
	}

.wrapper.style3 :-ms-input-placeholder {
	color: #999999 !important;
	}

.wrapper.style3 .formerize-placeholder {
	color: #999999 !important;
	}

.wrapper.style3 ul.alt li {
	border-top-color: rgba(255, 255, 255, 0.25);
	}

.wrapper.style3 header h2 {
	color: white;
	font-size: 2rem;
	text-transform: uppercase;
	padding: .75rem 0 .75rem 0;
	font-weight: 300;
	letter-spacing: .25rem;
	}

.wrapper.style3 header p {
	color: #888888;
	font-size: 1.5rem;
	text-transform: uppercase;
	}

.wrapper.style3 img {
	height: auto;
	width: 30%;
	margin: 0 auto;
	}

.wrapper.style3 table tbody tr {
	border-color: rgba(255, 255, 255, 0.25);
	}

.wrapper.style3 table tbody tr:nth-child(2n + 1) {
	background-color: rgba(255, 255, 255, 0.075);
	}

.wrapper.style3 table th {
	color: #ffffff;
	}

.wrapper.style3 table thead {
	border-bottom-color: rgba(255, 255, 255, 0.25);
	}

.wrapper.style3 table tfoot {
	border-top-color: rgba(255, 255, 255, 0.25);
	}

.wrapper.style3 table.alt tbody tr td {
	border-color: rgba(255, 255, 255, 0.25);
	}

.wrapper.style3 .inner {
	position: relative;
	z-index: 2;
	margin-top: 5rem;
	margin-bottom: 5rem;
	}

.wrapper.style3 .inner p {
	color: red;
	}

.wrapper.style3 p {
	font-size: 1rem;
	font-weight: 300;
	margin: 0 0 .5rem 0;
	padding: 0 0 1rem 0;
	}

.wrapper.style3 a {
	color: white;
	}

.wrapper.style3 p:after {
	content: '';
	position: absolute;
	margin: auto;
	right: 0;
	bottom: 0;
	left: 0;
	width: 50%;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.5);
	}

.wrapper.style3:before {
	-moz-transition: opacity 3s ease;
	-webkit-transition: opacity 3s ease;
	-ms-transition: opacity 3s ease;
	transition: opacity 3s ease;
	-moz-transition-delay: 1.25s;
	-webkit-transition-delay: 1.25s;
	-ms-transition-delay: 1.25s;
	transition-delay: 1.25s;
	content: '';
	display: block;
	background-color: rgba(0, 0, 0, 0.95);
	height: 100%;
	left: 0;
	opacity: 0.75;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
	}


/* Flexgrid */

.grid-style {
width: 100%;
	margin: 0 0 2.5rem 0;
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-moz-align-items: stretch;
	-webkit-align-items: stretch;
	-ms-align-items: stretch;
	align-items: stretch;
	}

.grid-style > * {
	-moz-flex-shrink: 1;
	-webkit-flex-shrink: 1;
	-ms-flex-shrink: 1;
	flex-shrink: 1;
	-moz-flex-grow: 0;
	-webkit-flex-grow: 0;
	-ms-flex-grow: 0;
	flex-grow: 0;
	}

.grid-style > * {
	width: 50%;
	}

.grid-style > * {
	padding: 1rem;
	width: calc(50% + 2rem);
	}

.grid-style > :nth-child(-n + 2) {
	padding-top: 0;
	}

.grid-style > :nth-last-child(-n + 2) {
	padding-bottom: 0;
	}

.grid-style > :nth-child(2n + 1) {
	padding-left: 0;
	}

.grid-style > :nth-child(2n) {
	padding-right: 0;
	}

.grid-style > :nth-child(2n + 1), .grid-style > :nth-child(2n) {
	width: calc(50% + 0rem);
	}

.grid-style .box {
	margin: 0;
	}

.gallery {
	width: 100%;
	margin: 2.5rem 0 2.5rem 0;
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
-moz-align-items: stretch;
	-webkit-align-items: stretch;
	-ms-align-items: stretch;
	align-items: stretch;
	}

.gallery > * {
	-moz-flex-shrink: 1;
	-webkit-flex-shrink: 1;
	-ms-flex-shrink: 1;
	flex-shrink: 1;
	-moz-flex-grow: 0;
	-webkit-flex-grow: 0;
	-ms-flex-grow: 0;
	flex-grow: 0;
	}

.gallery > * {
	width: 50%;
	}

.gallery > * {
	padding: 2rem;
	width: calc(50% + 2rem);
	}

.gallery > :nth-child(-n + 2) {
	padding-top: 0;
	}

.gallery > :nth-last-child(-n + 2) {
	padding-bottom: 0;
	}

.gallery > :nth-child(2n + 1) {
	padding-left: 0;
	}

.gallery > :nth-child(2n) {
	padding-right: 0;
	}

.gallery > :nth-child(2n + 1), .gallery > :nth-child(2n) {
	width: calc(50% + 0rem);
	}

.gallery .image {
background: #FFF;
	padding: 1rem;
	}

.gallery .image.fit {
	margin: 0;
	}


/* Header */

body.subpage {
	padding-top: 3.25em;
	}

@-moz-keyframes reveal-header {
	0% {
		top: -4em;
		opacity: 0;
		}

	100% {
		top: 0;
		opacity: 1;
		}
	}

@-webkit-keyframes reveal-header {
	0% {
		top: -4em;
		opacity: 0;
		}

	100% {
		top: 0;
		opacity: 1;
		}
	}

@-ms-keyframes reveal-header {
	0% {
		top: -4em;
		opacity: 0;
		}

	100% {
		top: 0;
		opacity: 1;
		}
	}

@keyframes reveal-header {
	0% {
		top: -4em;
		opacity: 0;
		}

	100% {
		top: 0;
		opacity: 1;
		}
	}

#header {
	background-color: #111111;
	color: #a6a6a6;
	cursor: default;
	height: 3.25em;
	left: 0;
	line-height: 3.25em;
	position: absolute;
	text-align: right;
	top: 0;
	width: 100%;
	z-index: 10001;
	margin-bottom: 2px;
	}

#header > a {
	-moz-transition: color 0.2s ease-in-out;
	-webkit-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
	display: inline-block;
	padding: 0.5em 0.75em;
	color: inherit;
	text-decoration: none;
	color: #ffffff;
	}

#header > a:hover {
	color: #dac199;
	}

#header > a[href="#menu"] {
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
	}

#header > a[href="#menu"]:before {
	content: "";
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-transform: none !important;
	}

#header > a[href="#menu"]:before {
	margin: 0 0.5em 0 0;
	}

#header > a + a[href="#menu"]:last-child {
	border-left: solid 1px rgba(0, 0, 0, 0.15);
	padding-left: 1.25em;
	margin-left: 0.5em;
	}

#header > a:last-child {
	padding-right: 1.25em;
	}

#header.reveal {
	-moz-animation: reveal-header 0.5s ease;
	-webkit-animation: reveal-header 0.5s ease;
	-ms-animation: reveal-header 0.5s ease;
	animation: reveal-header 0.5s ease;
	}

#header.alt {
	-moz-animation: none;
	-webkit-animation: none;
	-ms-animation: none;
	animation: none;
	background-color: #111111;
	box-shadow: none;
	overflow: hidden;
	position: static;
	height: 10%;
	}

#header.alt img {
	position: absolute;
	top: 1em;
	left: 1em;
	z-index:2;
	float: left;
	height: 5%;
	width: auto;
	opacity: .6;
	}

#header.alt nav {
	right: 2.5em;
	}
	

/* Menu */

#menu {
	-moz-transform: translateX(20rem);
	-webkit-transform: translateX(20rem);
	-ms-transform: translateX(20rem);
	transform: translateX(20rem);
	-moz-transition: -moz-transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
-webkit-transition: -webkit-transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
	-ms-transition: -ms-transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
	transition: transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
	-webkit-overflow-scrolling: touch;
	background: rgba(0, 0, 0, 0.95);
	box-shadow: none;
	color: white;
	height: 100%;
	max-width: 80%;
	overflow-y: auto;
	padding: 3rem 2rem;
	position: absolute;
	right: 0;
	top: 0;
	visibility: hidden;
	width: 20rem;
	z-index: 10002;
	}

#menu > ul {
	margin: 0 0 1rem 0;
	}

#menu > ul.links {
	list-style: none;
	padding: 0;
	}

#menu > ul.links > li {
	padding: 0;
	color: white;
	line-height: 3.5rem;
	}

#menu > ul.links > li > a:not(.button) {
	border: 0;
	border-top: solid 1px rgba(255, 255, 255, 0.125);
	color: white;
	display: block;
	line-height: 3.5rem;
	text-decoration: none;
	}

#menu > ul.links > li > a:not(.button):hover {
	color: #FFF;
	}

#menu > ul.links > li > .button {
	display: block;
	margin: 0.5rem 0 0 0;
	}

#menu > ul.links > li:first-child > a:not(.button) {
	border-top: 0 !important;
	}

#menu > ul.links > li > sub {
	padding-left: 30px;
	}

#menu .close {
	text-decoration: none;
	-moz-transition: color 0.2s ease-in-out;
	-webkit-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
	-webkit-tap-highlight-color: transparent;
	border: 0;
	color: #999999;
	cursor: pointer;
	display: block;
	height: 3.25rem;
	line-height: 3.25rem;
	padding-right: 1.25rem;
	position: absolute;
	right: 0;
	text-align: right;
	top: 0;
	vertical-align: middle;
	width: 7rem;
	}

#menu .close:before {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-transform: none !important;
	}

#menu .close:before {
	content: '\f00d';
	font-size: 1.25rem;
	}

#menu .close:hover {
	color: #000;
	}

#menu.visible {
	-moz-transform: translateX(0);
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.2);
	visibility: visible;
	}


/* Banner */

.banner {
	background-color: #8a4680;
	color: #e2d1df;
	padding: 8em 0;
	position: relative;
	}

.banner input, .banner select, .banner textarea {
	color: #ffffff;
	}

.banner a {
	color: #ffffff;
	}

.banner strong, .banner b {
	color: #ffffff;
	}

.banner h1, .banner h2, .banner h3, .banner h4, .banner h5, .banner h6 {
	color: #ffffff;
	}

.banner blockquote {
	border-left-color: rgba(255, 255, 255, 0.25);
	}

.banner code {
	background: rgba(255, 255, 255, 0.075);
	border-color: rgba(255, 255, 255, 0.25);
	}

.banner hr {
	border-bottom-color: rgba(255, 255, 255, 0.25);
	}

.banner.full {
	padding: 0;
	min-height: 100vh;
	height: 100vh !important;
	}

.banner.half {
	padding: 0;
	min-height: 50vh;
	height: 50vh !important;
	}

.banner:after {
	-moz-pointer-events: none;
-webkit-pointer-events: none;
	-ms-pointer-events: none;
	pointer-events: none;
	-moz-transition: opacity 1.5s ease-in-out, visibility 1.5s;
	-webkit-transition: opacity 1.5s ease-in-out, visibility 1.5s;
	-ms-transition: opacity 1.5s ease-in-out, visibility 1.5s;
	transition: opacity 1.5s ease-in-out, visibility 1.5s;
	background: #000000;
	content: '';
	display: block;
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	visibility: hidden;
	width: 100%;
	z-index: 2;
	}

.banner .indicators {
	bottom: 1.5em;
	left: 0;
	list-style: none;
	margin: 0;
padding: 0;
	position: absolute;
	text-align: center;
	width: 100%;
	z-index: 2;
	}

.banner .indicators li {
	cursor: pointer;
	display: inline-block;
	height: 2em;
	overflow: hidden;
	padding: 0;
	position: relative;
	text-indent: 2em;
	width: 2em;
	}

.banner .indicators li:before {
	background: rgba(255, 255, 255, 0.35);
	border-radius: 100%;
	content: '';
	display: inline-block;
	height: 0.8em;
	left: 50%;
	margin: -0.4em 0 0 -0.4em;
	position: absolute;
	text-indent: 0;
	top: 50%;
	width: 0.8em;
	}

.banner .indicators li.visible:before {
	background: #fff;
	}

.banner > article {
	-moz-transition: opacity 1.5s ease, visibility 1.5s;
	-webkit-transition: opacity 1.5s ease, visibility 1.5s;
	-ms-transition: opacity 1.5s ease, visibility 1.5s;
	transition: opacity 1.5s ease, visibility 1.5s;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	text-align: center;
	top: 0;
	visibility: hidden;
	width: 100%;
	z-index: 0;
	}

.banner > article:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	}

.banner > article:after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #000;
	opacity: 0.35;
	}

.banner > article .inner {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	z-index: 1;
	}

.banner > article .inner > :last-child {
	margin-bottom: 0;
	}

.banner > article h2 {
	font-size: 7rem;
	margin-bottom: 0;
	color: #FFF;
	font-weight: 300;
	}

.banner > article h2:after {
	display: none;
	}

.banner > article p {
	color: rgba(255, 255, 255, 0.65);
	text-transform: uppercase;
	font-size: 1rem;
	font-weight: 300;
	margin: 0;
	padding-bottom: 1.75rem;
	letter-spacing: .25rem;
	}

.banner > article p:after {
	content: '';
	position: absolute;
	margin: auto;
	right: 0;
	bottom: 0;
	left: 0;
	width: 50%;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.65);
	}

.banner > article a {
	color: #FFF;
	text-decoration: none;
}

.banner > article img {
	display: none;
	}

.banner > article.visible {
	opacity: 1;
	visibility: visible;
	}

.banner > article.top {
	z-index: 1;
	}

.banner > article.instant {
	-moz-transition: none !important;
	-webkit-transition: none !important;
	-ms-transition: none !important;
	transition: none !important;
	}

body.is-loading .banner:after {
	opacity: 1.0;
	visibility: visible;
	}

body.is-mobile .banner > article {
	background-attachment: scroll;
	}


/* Main */

#main {
padding: 4rem 0 2rem 0 ;
	}


/* Footer */

#footer {
	background-color: #111111;
	color: #a6a6a6;
	padding: 8rem 0 6rem 0; 
	}

#footer a {
	color: #a6a6a6; 
	transition: color 0.2s ease-in-out;
	}

#footer a:hover {
	color: #dac199; 
	}

#footer h1, #footer h2, #footer h3, #footer h4, #footer h5, #footer h6 {
	color: #ffffff; 
	}

#footer hr {
	border-bottom-color: rgba(255, 255, 255, 0.25); 
	}

#footer ::-webkit-input-placeholder {
	color: rgba(255, 255, 255, 0.4) !important; 
	}

#footer :-moz-placeholder {
	color: rgba(255, 255, 255, 0.4) !important; 
	}

#footer ::-moz-placeholder {
	color: rgba(255, 255, 255, 0.4) !important; 
	}

#footer :-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.4) !important; 
	}

#footer ul.alt li {
	border-top-color: rgba(255, 255, 255, 0.25); 
	}

#footer .content {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex; 
	}

#footer .content section {
	width: 25%; 
	}

#footer .content section:first-child {
	width: 50%;
	padding-right: 4rem; 
	}

#footer .content section:last-child {
	padding-left: 4rem; 
	}

#footer .copyright {
	border-top: 1px solid;
	font-size: 0.8rem;
	opacity: 0.8;
	padding: 2rem 0;
	text-align: center; 
	}


/* @ media */

@media screen and (max-width: 3000px) {

	html {
		font-size: 11pt;
		}

	.container.\31 25\25 {
		width: 100%;
		max-width: 100rem;
		min-width: 80rem;
		}

	.container.\37 5\25 {
		width: 60rem;
		}

	.container.\35 0\25 {
		width: 40rem;
		}

	.container.\32 5\25 {
		width: 20rem;
		}

	.container {
		width: 80rem;
		}
	
	.row > * {
		padding: 0 0 0 2rem;
		}

	.row {
		margin: 0 0 -1px -2rem;
		}

	.row.uniform > * {
		padding: 2rem 0 0 2rem;
		}

	.row.uniform {
		margin: -2rem 0 -1px -2rem;
		}

	.row.\32 00\25 > * {
		padding: 0 0 0 4rem;
		}

	.row.\32 00\25 {
		margin: 0 0 -1px -4rem;
		}

	.row.uniform.\32 00\25 > * {
		padding: 4rem 0 0 4rem;
		}

	.row.uniform.\32 00\25 {
		margin: -4rem 0 -1px -4rem;
		}

	.row.\31 50\25 > * {
		padding: 0 0 0 3rem;
		}

	.row.\31 50\25 {
		margin: 0 0 -1px -3rem;
		}

	.row.uniform.\31 50\25 > * {
		padding: 3rem 0 0 3rem;
		}

	.row.uniform.\31 50\25 {
		margin: -3rem 0 -1px -3rem;
		}

	.row.\35 0\25 > * {
		padding: 0 0 0 1rem;
		}

	.row.\35 0\25 {
		margin: 0 0 -1px -1rem;
		}

	.row.uniform.\35 0\25 > * {
		padding: 1rem 0 0 1rem;
		}

	.row.uniform.\35 0\25 {
		margin: -1rem 0 -1px -1rem;
		}

	.row.\32 5\25 > * {
		padding: 0 0 0 0.5rem;
		}

	.row.\32 5\25 {
		margin: 0 0 -1px -0.5rem;
		}

	.row.uniform.\32 5\25 > * {
		padding: 0.5rem 0 0 0.5rem;
		}

	.row.uniform.\32 5\25 {
		margin: -0.5rem 0 -1px -0.5rem;
		}

	.\31 2u\28xlarge\29, .\31 2u\24\28xlarge\29 {
		width: 100%;
		clear: none;
		margin-left: 0;
		}

	.\31 1u\28xlarge\29, .\31 1u\24\28xlarge\29 {
		width: 91.6666666667%;
		clear: none;
		margin-left: 0;
		}

	.\31 0u\28xlarge\29, .\31 0u\24\28xlarge\29 {
		width: 83.3333333333%;
		clear: none;
		margin-left: 0;
		}

	.\39 u\28xlarge\29, .\39 u\24\28xlarge\29 {
		width: 75%;
		clear: none;
		margin-left: 0;
		}

	.\38 u\28xlarge\29, .\38 u\24\28xlarge\29 {
		width: 66.6666666667%;
		clear: none;
		margin-left: 0;
		}

	.\37 u\28xlarge\29, .\37 u\24\28xlarge\29 {
		width: 58.3333333333%;
		clear: none;
		margin-left: 0;
		}

	.\36 u\28xlarge\29, .\36 u\24\28xlarge\29 {
		width: 50%;
		clear: none;
		margin-left: 0;
		}

	.\35 u\28xlarge\29, .\35 u\24\28xlarge\29 {
		width: 41.6666666667%;
		clear: none;
		margin-left: 0;
		}

	.\34 u\28xlarge\29, .\34 u\24\28xlarge\29 {
		width: 33.3333333333%;
		clear: none;
		margin-left: 0;
		}

	.\33 u\28xlarge\29, .\33 u\24\28xlarge\29 {
		width: 25%;
		clear: none;
		margin-left: 0;
		}

	.\32 u\28xlarge\29, .\32 u\24\28xlarge\29 {
		width: 16.6666666667%;
		clear: none;
		margin-left: 0;
		}

	.\31 u\28xlarge\29, .\31 u\24\28xlarge\29 {
		width: 8.3333333333%;
		clear: none;
		margin-left: 0;
		}

	.\31 2u\24\28xlarge\29 + *, .\31 1u\24\28xlarge\29 + *, .\31 0u\24\28xlarge\29 + *, .\39 u\24\28xlarge\29 + *, .\38 u\24\28xlarge\29 + *, .\37 u\24\28xlarge\29 + *, .\36 u\24\28xlarge\29 + *, .\35 u\24\28xlarge\29 + *, .\34 u\24\28xlarge\29 + *, .\33 u\24\28xlarge\29 + *, .\32 u\24\28xlarge\29 + *, .\31 u\24\28xlarge\29 + * {
		clear: left;
		}

	.\-11u\28xlarge\29 {
		margin-left: 91.66667%;
		}

	.\-10u\28xlarge\29 {
		margin-left: 83.33333%;
		}

	.\-9u\28xlarge\29 {
		margin-left: 75%;
		}

	.\-8u\28xlarge\29 {
		margin-left: 66.66667%;
		}

	.\-7u\28xlarge\29 {
		margin-left: 58.33333%;
		}

	.\-6u\28xlarge\29 {
		margin-left: 50%;
		}

	.\-5u\28xlarge\29 {
		margin-left: 41.66667%;
		}

	.\-4u\28xlarge\29 {
		margin-left: 33.33333%;
		}

	.\-3u\28xlarge\29 {
		margin-left: 25%;
		}

	.\-2u\28xlarge\29 {
		margin-left: 16.66667%;
		}

	.\-1u\28xlarge\29 {
		margin-left: 8.33333%;
		}
	}

@media screen and (max-width: 1280px) {

	html {
		font-size: 11pt;
		}

	#footer {
		padding: 4rem 0 2rem 0; 
		}

	.banner.full {
		padding: 0;
		min-height: 75vh;
		height: 75vh !important;
		}

	.wrapper > .inner {
		width: 75rem;
		}

	.container.\31 25\25 {
		width: 100%;
		max-width: 81.25rem;
		min-width: 65rem;
		}

	.container.\37 5\25 {
		width: 48.75rem;
		}

	.container.\35 0\25 {
		width: 32.5rem;
		}

	.container.\32 5\25 {
		width: 16.25rem;
		}

	.container {
		width: 65rem;
		}

	.row > * {
		padding: 0 0 0 1.5rem;
		}

	.row {
		margin: 0 0 -1px -1.5rem;
		}

	.row.uniform > * {
		padding: 1.5rem 0 0 1.5rem;
		}

	.row.uniform {
		margin: -1.5rem 0 -1px -1.5rem;
		}

	.row.\32 00\25 > * {
		padding: 0 0 0 3rem;
		}

	.row.\32 00\25 {
		margin: 0 0 -1px -3rem;
		}

	.row.uniform.\32 00\25 > * {
		padding: 3rem 0 0 3rem;
		}

	.row.uniform.\32 00\25 {
		margin: -3rem 0 -1px -3rem;
		}

	.row.\31 50\25 > * {
		padding: 0 0 0 2.25rem;
		}

	.row.\31 50\25 {
		margin: 0 0 -1px -2.25rem;
		}

	.row.uniform.\31 50\25 > * {
		padding: 2.25rem 0 0 2.25rem;
		}

	.row.uniform.\31 50\25 {
		margin: -2.25rem 0 -1px -2.25rem;
		}

	.row.\35 0\25 > * {
		padding: 0 0 0 0.75rem;
		}

	.row.\35 0\25 {
		margin: 0 0 -1px -0.75rem;
		}

	.row.uniform.\35 0\25 > * {
		padding: 0.75rem 0 0 0.75rem;
		}

	.row.uniform.\35 0\25 {
		margin: -0.75rem 0 -1px -0.75rem;
		}

	.row.\32 5\25 > * {
		padding: 0 0 0 0.375rem;
		}

	.row.\32 5\25 {
		margin: 0 0 -1px -0.375rem;
		}

	.row.uniform.\32 5\25 > * {
		padding: 0.375rem 0 0 0.375rem;
		}

	.row.uniform.\32 5\25 {
		margin: -0.375rem 0 -1px -0.375rem;
		}

	.\31 2u\28large\29, .\31 2u\24\28large\29 {
		width: 100%;
		clear: none;
		margin-left: 0;
		}

	.\31 1u\28large\29, .\31 1u\24\28large\29 {
		width: 91.6666666667%;
		clear: none;
		margin-left: 0;
		}

	.\31 0u\28large\29, .\31 0u\24\28large\29 {
		width: 83.3333333333%;
		clear: none;
		margin-left: 0;
		}

	.\39 u\28large\29, .\39 u\24\28large\29 {
		width: 75%;
		clear: none;
		margin-left: 0;
		}

	.\38 u\28large\29, .\38 u\24\28large\29 {
		width: 66.6666666667%;
		clear: none;
		margin-left: 0;
		}

	.\37 u\28large\29, .\37 u\24\28large\29 {
		width: 58.3333333333%;
		clear: none;
		margin-left: 0;
		}

	.\36 u\28large\29, .\36 u\24\28large\29 {
		width: 50%;
		clear: none;
		margin-left: 0;
		}

	.\35 u\28large\29, .\35 u\24\28large\29 {
		width: 41.6666666667%;
		clear: none;
		margin-left: 0;
		}

	.\34 u\28large\29, .\34 u\24\28large\29 {
		width: 33.3333333333%;
		clear: none;
		margin-left: 0;
		}

	.\33 u\28large\29, .\33 u\24\28large\29 {
		width: 25%;
		clear: none;
		margin-left: 0;
		}

	.\32 u\28large\29, .\32 u\24\28large\29 {
		width: 16.6666666667%;
		clear: none;
		margin-left: 0;
		}

	.\31 u\28large\29, .\31 u\24\28large\29 {
		width: 8.3333333333%;
		clear: none;
		margin-left: 0;
		}

	.\31 2u\24\28large\29 + *, .\31 1u\24\28large\29 + *, .\31 0u\24\28large\29 + *, .\39 u\24\28large\29 + *, .\38 u\24\28large\29 + *, .\37 u\24\28large\29 + *, .\36 u\24\28large\29 + *, .\35 u\24\28large\29 + *, .\34 u\24\28large\29 + *, .\33 u\24\28large\29 + *, .\32 u\24\28large\29 + *, .\31 u\24\28large\29 + * {
		clear: left;
		}

	.\-11u\28large\29 {
		margin-left: 91.66667%;
		}

	.\-10u\28large\29 {
		margin-left: 83.33333%;
		}

	.\-9u\28large\29 {
		margin-left: 75%;
		}

	.\-8u\28large\29 {
		margin-left: 66.66667%;
		}

	.\-7u\28large\29 {
		margin-left: 58.33333%;
		}

	.\-6u\28large\29 {
		margin-left: 50%;
		}

	.\-5u\28large\29 {
		margin-left: 41.66667%;
		}

	.\-4u\28large\29 {
		margin-left: 33.33333%;
		}

	.\-3u\28large\29 {
		margin-left: 25%;
		}

	.\-2u\28large\29 {
		margin-left: 16.66667%;
		}

	.\-1u\28large\29 {
		margin-left: 8.33333%;
		}
	}

@media screen and (max-width: 980px) {

	#header.alt img {
		display: none;
		}

	#header.alt {
		font-size: 0.8em;
		}

	#header1 {
		display: none;
		}

	#container {
		display: none;
		}

	html {
		font-size: 12pt;
		}

	p.breadcrumb {
		font-size. 0.5em;
		padding: 5px 5px 5px 10px;
		}

	.indice {
		color: black;
		text-align: justify;
		line-height: 2em;
		font-family: Verdana, sans-serif;
		column-count: 1;
		}

	#footer .content {
		-moz-flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap; 
		}

	#footer .content section {
		width: 50%; 
		}

	#footer .content section:first-child {
		width: 100%;
		padding-right: 0; 
		}

	.timeline::after {
		left: 28px;
		}
  
	.containercrono {
		width: 100%;
		padding-left: 70px;
		padding-right: 20px;
		}
  
	.containercrono::before {
		left: 60px;
		border: medium solid white;
		border-width: 10px 10px 10px 0;
		border-color: transparent white transparent transparent;
		}

	.left::after, .right::after {
		left: 15px;
		}
  
	.left {
		left: 0%;
		}

	.right {
		left: 0%;
		}

	.banner.full {
		padding: 0;
		min-height: 50vh;
		height: 50vh !important;
		}

	.banner > article {
		background-attachment: scroll;
		}

	body.subpage {
		padding-top: 44px;
		}

	#header {
		height: 44px;
		line-height: 44px;
		}

	#header > h1 {
		left: 1em;
		}

	#header > h1 a {
		font-size: 1em;
		}

	.gallery > * {
		width: 100%;
		}

	.gallery > * {
		padding: 1rem;
		width: calc(50% + 1rem);
		}

	.gallery > :nth-child(-n + 2) {
		padding-top: 1rem;
		}

	.gallery > :nth-last-child(-n + 2) {
		padding-bottom: 1rem;
		}

	.gallery > :nth-child(2n + 1) {
		padding-left: 1rem;
		}

	.gallery > :nth-child(2n) {
		padding-right: 1rem;
		}

	.gallery > :nth-child(2n + 1), .gallery > :nth-child(2n) {
		padding: 1rem;
		width: calc(100% + 2rem);
		}

	.gallery > * {
		padding: 1rem;
		width: calc(100% + 2rem);
		}

	.gallery > :nth-child(-n + 1) {
		padding-top: 0;
		}

	.gallery > :nth-last-child(-n + 1) {
		padding-bottom: 0;
		}

	.gallery > :nth-child(1n + 1) {
		padding-left: 0;
		}

	.gallery > :nth-child(1n) {
		padding-right: 0;
		}

	.gallery > :nth-child(1n + 1), .gallery > :nth-child(1n) {
		width: calc(100% + 1rem);
		}

	.grid-style > * {
		width: 100%;
		}

	.grid-style > * {
		padding: 1rem;
		width: calc(50% + 1rem);
		}

	.grid-style > :nth-child(-n + 2) {
		padding-top: 1rem;
		}

	.grid-style > :nth-last-child(-n + 2) {
		padding-bottom: 1rem;
		}

	.grid-style > :nth-child(2n + 1) {
		padding-left: 1rem;
		}

	.grid-style > :nth-child(2n) {
		padding-right: 1rem;
		}

	.grid-style > :nth-child(2n + 1), .grid-style > :nth-child(2n) {
		padding: 1rem;
		width: calc(100% + 2rem);
		}

	.grid-style > * {
		padding: 1rem;
		width: calc(100% + 2rem);
		}

	.grid-style > :nth-child(-n + 1) {
		padding-top: 0;
		}

	.grid-style > :nth-last-child(-n + 1) {
		padding-bottom: 0;
		}

	.grid-style > :nth-child(1n + 1) {
		padding-left: 0;
		}

	.grid-style > :nth-child(1n) {
		padding-right: 0;
		}

	.grid-style > :nth-child(1n + 1), .grid-style > :nth-child(1n) {
		width: calc(100% + 1rem);
		}

	.wrapper > .inner {
		width: 90%;
		}

	.wrapper.style3 {
		background-attachment: scroll;
		}

	.container.\31 25\25 {
		width: 100%;
		max-width: 112.5%;
		min-width: 90%;
		}

	.container.\37 5\25 {
		width: 67.5%;
		}

	.container.\35 0\25 {
		width: 45%;
		}

	.container.\32 5\25 {
		width: 22.5%;
		}

	.container {
		width: 90%;
		}

	.row > * {
		padding: 0 0 0 1.5rem;
		}

	.row {
		margin: 0 0 -1px -1.5rem;
		}

	.row.uniform > * {
		padding: 1.5rem 0 0 1.5rem;
		}

	.row.uniform {
		margin: -1.5rem 0 -1px -1.5rem;
		}

	.row.\32 00\25 > * {
		padding: 0 0 0 3rem;
		}

	.row.\32 00\25 {
		margin: 0 0 -1px -3rem;
		}

	.row.uniform.\32 00\25 > * {
		padding: 3rem 0 0 3rem;
		}

	.row.uniform.\32 00\25 {
		margin: -3rem 0 -1px -3rem;
		}

	.row.\31 50\25 > * {
		padding: 0 0 0 2.25rem;
		}

	.row.\31 50\25 {
		margin: 0 0 -1px -2.25rem;
		}

	.row.uniform.\31 50\25 > * {
		padding: 2.25rem 0 0 2.25rem;
		}

	.row.uniform.\31 50\25 {
		margin: -2.25rem 0 -1px -2.25rem;
		}

	.row.\35 0\25 > * {
		padding: 0 0 0 0.75rem;
		}

	.row.\35 0\25 {
		margin: 0 0 -1px -0.75rem;
		}

	.row.uniform.\35 0\25 > * {
		padding: 0.75rem 0 0 0.75rem;
		}

	.row.uniform.\35 0\25 {
		margin: -0.75rem 0 -1px -0.75rem;
		}

	.row.\32 5\25 > * {
		padding: 0 0 0 0.375rem;
		}

	.row.\32 5\25 {
		margin: 0 0 -1px -0.375rem;
		}

	.row.uniform.\32 5\25 > * {
		padding: 0.375rem 0 0 0.375rem;
		}

	.row.uniform.\32 5\25 {
		margin: -0.375rem 0 -1px -0.375rem;
		}

	.\31 2u\28medium\29, .\31 2u\24\28medium\29 {
		width: 100%;
		clear: none;
		margin-left: 0;
		}

	.\31 1u\28medium\29, .\31 1u\24\28medium\29 {
		width: 91.6666666667%;
		clear: none;
		margin-left: 0;
		}

	.\31 0u\28medium\29, .\31 0u\24\28medium\29 {
		width: 83.3333333333%;
		clear: none;
		margin-left: 0;
		}

	.\39 u\28medium\29, .\39 u\24\28medium\29 {
		width: 75%;
		clear: none;
		margin-left: 0;
		}

	.\38 u\28medium\29, .\38 u\24\28medium\29 {
		width: 66.6666666667%;
		clear: none;
		margin-left: 0;
		}

	.\37 u\28medium\29, .\37 u\24\28medium\29 {
		width: 58.3333333333%;
		clear: none;
		margin-left: 0;
		}

	.\36 u\28medium\29, .\36 u\24\28medium\29 {
		width: 50%;
		clear: none;
		margin-left: 0;
		}

	.\35 u\28medium\29, .\35 u\24\28medium\29 {
		width: 41.6666666667%;
		clear: none;
		margin-left: 0;
		}

	.\34 u\28medium\29, .\34 u\24\28medium\29 {
		width: 33.3333333333%;
		clear: none;
		margin-left: 0;
		}

	.\33 u\28medium\29, .\33 u\24\28medium\29 {
		width: 25%;
		clear: none;
		margin-left: 0;
		}

	.\32 u\28medium\29, .\32 u\24\28medium\29 {
		width: 16.6666666667%;
		clear: none;
		margin-left: 0;
		}

	.\31 u\28medium\29, .\31 u\24\28medium\29 {
		width: 8.3333333333%;
		clear: none;
		margin-left: 0;
		}

	.\31 2u\24\28medium\29 + *, .\31 1u\24\28medium\29 + *, .\31 0u\24\28medium\29 + *, .\39 u\24\28medium\29 + *, .\38 u\24\28medium\29 + *, .\37 u\24\28medium\29 + *, .\36 u\24\28medium\29 + *, .\35 u\24\28medium\29 + *, .\34 u\24\28medium\29 + *, .\33 u\24\28medium\29 + *, .\32 u\24\28medium\29 + *, .\31 u\24\28medium\29 + * {
		clear: left;
		}

	.\-11u\28medium\29 {
		margin-left: 91.66667%;
		}

	.\-10u\28medium\29 {
		margin-left: 83.33333%;
		}

	.\-9u\28medium\29 {
		margin-left: 75%;
		}

	.\-8u\28medium\29 {
		margin-left: 66.66667%;
		}

	.\-7u\28medium\29 {
		margin-left: 58.33333%;
		}

	.\-6u\28medium\29 {
		margin-left: 50%;
		}

	.\-5u\28medium\29 {
		margin-left: 41.66667%;
		}

	.\-4u\28medium\29 {
		margin-left: 33.33333%;
		}

	.\-3u\28medium\29 {
		margin-left: 25%;
		}

	.\-2u\28medium\29 {
		margin-left: 16.66667%;
		}

	.\-1u\28medium\29 {
		margin-left: 8.33333%;
		}
	}


@media print {

	#header, #header1, #footer, p.breadcrumb {
		display: none !important;
		}

	body, .inner, .box, .content, .image.fit img {
		width: auto !important;
		border: 0;
		margin: 30px auto;
		padding: 0 auto;
		float: none !important;
		position: static;
		overflow: visible;
		}

	img {
		width: auto !important;
		}

	}


@media screen and (max-width: 736px) {

	html {
		font-size: 12pt;
		}

	#main {
		padding: 3rem 0 1rem 0 ;
		}

	#footer {
		padding: 3rem 0 1rem 0 ; 
		}

	#footer .content section {
		width: 100%; 
		}

	#footer .content section:last-child {
		padding-left: 0; 
		}

	.banner > article .inner {
		width: 90%;
		}

	.banner > article p {
		margin-bottom: 1rem;
		}

	.banner > article h2 {
		font-size: 4em;
		}

	#menu .close {
		height: 4rem;
		line-height: 4rem;
		}

	#menu {
		padding: 2.5rem 1.75rem;
		}

	#header > a {
		padding: 0 0.5em;
		}

	#header > a + a[href="#menu"]:last-child {
		padding-left: 1em;
		margin-left: 0.25em;
		}

	#header > a:last-child {
		padding-right: 1em;
		}

	.wrapper {
		padding: 3rem 0 1rem 0 ;
		}

	.box .content {
		padding: 2rem;
		}

	.container.\31 25\25 {
		width: 100%;
		max-width: 112.5%;
		min-width: 90%;
		}

	.container.\37 5\25 {
		width: 67.5%;
		}

	.container.\35 0\25 {
		width: 45%;
		}

	.container.\32 5\25 {
		width: 22.5%;
		}

	.container {
		width: 90% !important;
		}

	.row > * {
		padding: 0 0 0 1.25rem;
		}

	.row {
		margin: 0 0 -1px -1.25rem;
		}

	.row.uniform > * {
		padding: 1.25rem 0 0 1.25rem;
		}

	.row.uniform {
		margin: -1.25rem 0 -1px -1.25rem;
		}

	.row.\32 00\25 > * {
		padding: 0 0 0 2.5rem;
		}

	.row.\32 00\25 {
		margin: 0 0 -1px -2.5rem;
		}

	.row.uniform.\32 00\25 > * {
		padding: 2.5rem 0 0 2.5rem;
		}

	.row.uniform.\32 00\25 {
		margin: -2.5rem 0 -1px -2.5rem;
		}

	.row.\31 50\25 > * {
		padding: 0 0 0 1.875rem;
		}

	.row.\31 50\25 {
		margin: 0 0 -1px -1.875rem;
		}

	.row.uniform.\31 50\25 > * {
		padding: 1.875rem 0 0 1.875rem;
		}

	.row.uniform.\31 50\25 {
		margin: -1.875rem 0 -1px -1.875rem;
		}

	.row.\35 0\25 > * {
		padding: 0 0 0 0.625rem;
		}

	.row.\35 0\25 {
		margin: 0 0 -1px -0.625rem;
		}

	.row.uniform.\35 0\25 > * {
		padding: 0.625rem 0 0 0.625rem;
		}

	.row.uniform.\35 0\25 {
		margin: -0.625rem 0 -1px -0.625rem;
		}

	.row.\32 5\25 > * {
		padding: 0 0 0 0.3125rem;
		}

	.row.\32 5\25 {
		margin: 0 0 -1px -0.3125rem;
		}

	.row.uniform.\32 5\25 > * {
		padding: 0.3125rem 0 0 0.3125rem;
		}

	.row.uniform.\32 5\25 {
		margin: -0.3125rem 0 -1px -0.3125rem;
		}

	.\31 2u\28small\29, .\31 2u\24\28small\29 {
		width: 100%;
		clear: none;
		margin-left: 0;
		}

	.\31 1u\28small\29, .\31 1u\24\28small\29 {
		width: 91.6666666667%;
		clear: none;
		margin-left: 0;
		}

	.\31 0u\28small\29, .\31 0u\24\28small\29 {
		width: 83.3333333333%;
		clear: none;
		margin-left: 0;
		}

	.\39 u\28small\29, .\39 u\24\28small\29 {
		width: 75%;
		clear: none;
		margin-left: 0;
		}

	.\38 u\28small\29, .\38 u\24\28small\29 {
		width: 66.6666666667%;
		clear: none;
		margin-left: 0;
		}

	.\37 u\28small\29, .\37 u\24\28small\29 {
		width: 58.3333333333%;
		clear: none;
		margin-left: 0;
		}

	.\36 u\28small\29, .\36 u\24\28small\29 {
		width: 50%;
		clear: none;
		margin-left: 0;
		}

	.\35 u\28small\29, .\35 u\24\28small\29 {
		width: 41.6666666667%;
		clear: none;
		margin-left: 0;
		}

	.\34 u\28small\29, .\34 u\24\28small\29 {
		width: 33.3333333333%;
		clear: none;
		margin-left: 0;
		}

	.\33 u\28small\29, .\33 u\24\28small\29 {
		width: 25%;
		clear: none;
		margin-left: 0;
		}

	.\32 u\28small\29, .\32 u\24\28small\29 {
		width: 16.6666666667%;
		clear: none;
		margin-left: 0;
		}

	.\31 u\28small\29, .\31 u\24\28small\29 {
		width: 8.3333333333%;
		clear: none;
		margin-left: 0;
		}

	.\31 2u\24\28small\29 + *, .\31 1u\24\28small\29 + *, .\31 0u\24\28small\29 + *, .\39 u\24\28small\29 + *, .\38 u\24\28small\29 + *, .\37 u\24\28small\29 + *, .\36 u\24\28small\29 + *, .\35 u\24\28small\29 + *, .\34 u\24\28small\29 + *, .\33 u\24\28small\29 + *, .\32 u\24\28small\29 + *, .\31 u\24\28small\29 + * {
		clear: left;
		}

	.\-11u\28small\29 {
		margin-left: 91.66667%;
		}

	.\-10u\28small\29 {
		margin-left: 83.33333%;
		}

	.\-9u\28small\29 {
		margin-left: 75%;
		}

	.\-8u\28small\29 {
		margin-left: 66.66667%;
		}

	.\-7u\28small\29 {
		margin-left: 58.33333%;
		}

	.\-6u\28small\29 {
		margin-left: 50%;
		}

	.\-5u\28small\29 {
		margin-left: 41.66667%;
		}

	.\-4u\28small\29 {
		margin-left: 33.33333%;
		}

	.\-3u\28small\29 {
		margin-left: 25%;
		}

	.\-2u\28small\29 {
		margin-left: 16.66667%;
		}

	.\-1u\28small\29 {
		margin-left: 8.33333%;
		}
	}

@media screen and (max-width: 480px) {

	html {
		font-size: 12pt;
		}

	html, body {
		min-width: 320px;
		}

	#header {
		min-width: 320px;
		}

	#footer {
		padding: 2rem 0 0.1rem 0; 
		}

	.container.\31 25\25 {
		width: 100%;
		max-width: 112.5%;
		min-width: 90%;
		}

	.container.\37 5\25 {
		width: 67.5%;
		}

	.container.\35 0\25 {
		width: 45%;
		}

	.container.\32 5\25 {
		width: 22.5%;
		}

	.container {
		width: 90% !important;
		}

	.row > * {
		padding: 0 0 0 1.25rem;
		}

	.row {
		margin: 0 0 -1px -1.25rem;
		}

	.row.uniform > * {
		padding: 1.25rem 0 0 1.25rem;
		}

	.row.uniform {
		margin: -1.25rem 0 -1px -1.25rem;
		}

	.row.\32 00\25 > * {
		padding: 0 0 0 2.5rem;
		}

	.row.\32 00\25 {
		margin: 0 0 -1px -2.5rem;
		}

	.row.uniform.\32 00\25 > * {
		padding: 2.5rem 0 0 2.5rem;
		}

	.row.uniform.\32 00\25 {
		margin: -2.5rem 0 -1px -2.5rem;
		}

	.row.\31 50\25 > * {
		padding: 0 0 0 1.875rem;
		}

	.row.\31 50\25 {
		margin: 0 0 -1px -1.875rem;
		}

	.row.uniform.\31 50\25 > * {
		padding: 1.875rem 0 0 1.875rem;
		}

	.row.uniform.\31 50\25 {
		margin: -1.875rem 0 -1px -1.875rem;
		}

	.row.\35 0\25 > * {
		padding: 0 0 0 0.625rem;
		}

	.row.\35 0\25 {
		margin: 0 0 -1px -0.625rem;
		}

	.row.uniform.\35 0\25 > * {
		padding: 0.625rem 0 0 0.625rem;
		}

	.row.uniform.\35 0\25 {
		margin: -0.625rem 0 -1px -0.625rem;
		}

	.row.\32 5\25 > * {
		padding: 0 0 0 0.3125rem;
		}

	.row.\32 5\25 {
		margin: 0 0 -1px -0.3125rem;
		}

	.row.uniform.\32 5\25 > * {
		padding: 0.3125rem 0 0 0.3125rem;
		}

	.row.uniform.\32 5\25 {
		margin: -0.3125rem 0 -1px -0.3125rem;
		}

	.\31 2u\28xsmall\29, .\31 2u\24\28xsmall\29 {
		width: 100%;
		clear: none;
		margin-left: 0;
		}

	.\31 1u\28xsmall\29, .\31 1u\24\28xsmall\29 {
		width: 91.6666666667%;
		clear: none;
		margin-left: 0;
		}

	.\31 0u\28xsmall\29, .\31 0u\24\28xsmall\29 {
		width: 83.3333333333%;
		clear: none;
		margin-left: 0;
		}

	.\39 u\28xsmall\29, .\39 u\24\28xsmall\29 {
		width: 75%;
		clear: none;
		margin-left: 0;
		}

	.\38 u\28xsmall\29, .\38 u\24\28xsmall\29 {
		width: 66.6666666667%;
		clear: none;
		margin-left: 0;
		}

	.\37 u\28xsmall\29, .\37 u\24\28xsmall\29 {
		width: 58.3333333333%;
		clear: none;
		margin-left: 0;
		}

	.\36 u\28xsmall\29, .\36 u\24\28xsmall\29 {
		width: 50%;
		clear: none;
		margin-left: 0;
		}

	.\35 u\28xsmall\29, .\35 u\24\28xsmall\29 {
		width: 41.6666666667%;
		clear: none;
		margin-left: 0;
		}

	.\34 u\28xsmall\29, .\34 u\24\28xsmall\29 {
		width: 33.3333333333%;
		clear: none;
		margin-left: 0;
		}

	.\33 u\28xsmall\29, .\33 u\24\28xsmall\29 {
		width: 25%;
		clear: none;
		margin-left: 0;
		}

	.\32 u\28xsmall\29, .\32 u\24\28xsmall\29 {
		width: 16.6666666667%;
		clear: none;
		margin-left: 0;
		}

	.\31 u\28xsmall\29, .\31 u\24\28xsmall\29 {
		width: 8.3333333333%;
		clear: none;
		margin-left: 0;
		}

	.\31 2u\24\28xsmall\29 + *, .\31 1u\24\28xsmall\29 + *, .\31 0u\24\28xsmall\29 + *, .\39 u\24\28xsmall\29 + *, .\38 u\24\28xsmall\29 + *, .\37 u\24\28xsmall\29 + *, .\36 u\24\28xsmall\29 + *, .\35 u\24\28xsmall\29 + *, .\34 u\24\28xsmall\29 + *, .\33 u\24\28xsmall\29 + *, .\32 u\24\28xsmall\29 + *, .\31 u\24\28xsmall\29 + * {
		clear: left;
		}

	.\-11u\28xsmall\29 {
		margin-left: 91.66667%;
		}

	.\-10u\28xsmall\29 {
		margin-left: 83.33333%;
		}

	.\-9u\28xsmall\29 {
		margin-left: 75%;
		}

	.\-8u\28xsmall\29 {
		margin-left: 66.66667%;
		}

	.\-7u\28xsmall\29 {
		margin-left: 58.33333%;
		}

	.\-6u\28xsmall\29 {
		margin-left: 50%;
		}

	.\-5u\28xsmall\29 {
		margin-left: 41.66667%;
		}

	.\-4u\28xsmall\29 {
		margin-left: 33.33333%;
		}

	.\-3u\28xsmall\29 {
		margin-left: 25%;
		}

	.\-2u\28xsmall\29 {
		margin-left: 16.66667%;
		}

	.\-1u\28xsmall\29 {
		margin-left: 8.33333%;
		}
	}

