/* fonts */
@font-face {
  font-family: 'Akkurat-Light';
  src: url('../fonts/akkurat/AKKURATL.eot'); /* IE9 Compat Modes */
  src: url('../fonts/akkurat/AKKURATL.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/akkurat/AKKURATL.woff') format('woff'), /* Modern Browsers */
       url('../fonts/akkurat/AKKURATL.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('../fonts/akkurat/AKKURATL.svg#ae05ff48a0f16a99523b1f8725269aec') format('svg'); /* Legacy iOS */
  font-style:   normal;
  font-weight:  200;
}
@font-face {
  font-family: 'Akkurat-Bold';
  src: url('../fonts/akkurat/Akkurat-Bold.eot?#iefix') format('embedded-opentype'),  
       url('../fonts/akkurat/Akkurat-Bold.woff') format('woff'), 
       url('../fonts/akkurat/Akkurat-Bold.ttf')  format('truetype'), 
       url('../fonts/akkurat/Akkurat-Bold.svg#Akkurat-Bold') format('svg');
  font-style:   normal;
  font-weight:  normal;
}
@font-face {
  font-family: 'Leitura News Roman 1';
  src: url('../fonts/leituraNews/LeituraNews-Roman1.eot'); /* IE9 Compat Modes */
  src: url('../fonts/leituraNews/LeituraNews-Roman1.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/leituraNews/LeituraNews-Roman1.woff') format('woff'), /* Modern Browsers */
       url('../fonts/leituraNews/LeituraNews-Roman1.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('../fonts/leituraNews/LeituraNews-Roman1.svg#7659a6ad60e5ef17ca6549741ddc0458') format('svg'); /* Legacy iOS */
  font-style:   normal;
  font-weight:  400;
}
@font-face {
  font-family: 'Leitura News Roman 2';
  src: url('../fonts/leituraNews/LeituraNews-Roman2.eot?#iefix') format('embedded-opentype'),  
       url('../fonts/leituraNews/LeituraNews-Roman2.otf')  format('opentype'),
	   url('../fonts/leituraNews/LeituraNews-Roman2.woff') format('woff'), 
       url('../fonts/leituraNews/LeituraNews-Roman2.ttf')  format('truetype'), 
       url('../fonts/leituraNews/LeituraNews-Roman2.svg#LeituraNews-Roman2') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Leitura News Italic 2';
  src: url('../fonts/leituraNews/LeituraNews-Italic2.eot?#iefix') format('embedded-opentype'),  
       url('../fonts/leituraNews/LeituraNews-Italic2.otf')  format('opentype'),
	   url('../fonts/leituraNews/LeituraNews-Italic2.woff') format('woff'), 
       url('../fonts/leituraNews/LeituraNews-Italic2.ttf')  format('truetype'), 
       url('../fonts/leituraNews/LeituraNews-Italic2.svg#LeituraNews-Italic2') format('svg');
  font-weight: normal;
  font-style: normal;
}

/* Geral */
html, body { 
    cursor: default;
    color: #9e8063;
    font-family: 'Akkurat-Light';
    background: #fff;
}
.clear-padding {padding: 0;}
.clear-padding-right {padding-right: 0;}
.clear-padding-left {padding-left: 0;}
.highlight {
    font-family: 'Leitura News Italic 2';
}
.button {
    padding: 10px 30px;
    font-family: 'Akkurat-Bold';
    font-size: 10px;
    background: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
	-webkit-transition: all ease 0.8s;
	-moz-transition: all ease 0.8s;
	transition: all ease 0.8s;
}
.button-brown {
    color: #9e8063;
    border: 1px solid #9e8063;
    box-shadow: inset 0 0 0 0 #9e8063;
}
.button-brown:hover {
    box-shadow: inset 0 100px 0 0 #9e8063;
    color: #fff;
}
.button-holo {
    color: #fff;
    border: 1px solid #fff;
    box-shadow: inset 0 0 0 0 #fff;
}
.button-holo:hover {
    box-shadow: inset 0 100px 0 0 #fff;
    color: #000;
}

/* Header */
.header {
    width: 100%;
    height: 100vh;
    color: #fff;
    z-index: 999;
    -webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transition-duration: 1.2s;
	transition-duration: 1.2s;
}
.header-display-wrapper {
    position: absolute;
    height: 100%;
    width: 100%;
    background: none;
}
.header-display-table {
    position: relative;
    height: 100%;
    width: 100%;
    display: table;
}
.header-display-cell {
    display: table-cell;
    vertical-align: middle;
}
.header-display-cell .container {
    padding: 0;
}
.header-arrow-wrapper {
    position: absolute;
    height: 50px;
    width: 100%;
    bottom: 0;
    background: none;
}
.header-arrow-table {
    position: relative;
    height: 100%;
    width: 100%;
    display: table;
}
.header-arrow-cell {
    vertical-align: middle;
    text-align: center;
    display: table-cell;
}
.trigger {
    background: none;
    border: none;
    color: #9e8063;
    font-size: 18px;
    -webkit-transition: color 0.3s;
	-moz-transition: color 0.3s;
	transition: color 0.3s;
}
.trigger:hover {
    color: #fff;
}
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  33% {
    -moz-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  66% {
    -moz-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  33% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  66% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  33% {
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  66% {
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
.bounce {
  -moz-animation: bounce 6s infinite;
  -webkit-animation: bounce 6s infinite;
  animation: bounce 6s infinite;
}

.header .header-img {
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.header .header-img img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	min-width: 100%;
	min-height: 100%;
}
.header .header-title {
    font-size: 50px;
    font-family: 'Leitura News Roman 1';
    line-height: 1.3em;
    margin-bottom: 30px;
}
.header .header-description {
    font-size: 24px;
    font-family: 'Akkurat-Light';
    line-height: 1.4em;
    margin-bottom: 40px;
}

.push-header {
    -webkit-transform: translateY(-100vh);
	transform: translateY(-100vh);
}

.main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transition-duration: 1.2s;
	transition-duration: 1.2s;
}
.fade-main {
    opacity: 1;
    top: 0;
}



/* Menu */
.navbar-default {
    position: fixed;
    top: 0px;
    width: 100%;
    padding: 50px 0 20px 0;
    background: none;
    border: none;
    text-transform: uppercase;
    font-family: 'Akkurat-Light';
    font-size: 12px;
    z-index: 9999;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
}
.navbar {
    border-radius: 0;
    border: none;
}
.navbar-default .navbar-brand {color: #fff; margin-top: -15px;}
.navbar-default .navbar-brand img {height: 45px; -webkit-transition: width 1s ease, height 1s ease; -moz-transition: width 1s ease, height 1s ease; transition: width 1s ease, height 1s ease;}
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {color: #fff;}
.navbar-default .navbar-nav > li > a {
    position: relative;
	display: inline-block;
	outline: none;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-shadow: 0 0 1px rgba(255,255,255,0.3);
    font-family: 'Akkurat-Bold';
	font-size: 12px;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	-moz-transition: color 0.3s;
	transition: color 0.3s;
    padding: 10px 15px;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { 
    color: #fff;
    outline: none;
}
.navbar-default .navbar-nav > li > a::before,
.navbar-default .navbar-nav > li > a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #fff;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	-moz-transition: opacity 0.3s, -moz-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-8px);
	-moz-transform: translateY(-8px);
	transform: translateY(-8px);
}
.navbar-default .navbar-nav > li > a::before {
	top: 0;
	-webkit-transform: translateY(-8px);
	-moz-transform: translateY(-8px);
	transform: translateY(-8px);
}
.navbar-default .navbar-nav > li > a::after {
	bottom: 0;
	-webkit-transform: translateY(8px);
	-moz-transform: translateY(8px);
	transform: translateY(8px);
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
	color: #fff;
}
.navbar-default .navbar-nav > li > a:hover::before,
.navbar-default .navbar-nav > li > a:focus::before,
.navbar-default .navbar-nav > li > a:hover::after,
.navbar-default .navbar-nav > li > a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
}

.navbar.past-header {
    position: fixed;
    top: 0;
    padding: 15px 0; 
    width: 100%;
    z-index:9999;
    background: #fff;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
}
.logo-jsp {
    width: 150px;
    height: 50px;
    margin-top: -5px;
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2018.1.1%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%20472%20115.2%22%20style%3D%22enable-background%3Anew%200%200%20472%20115.2%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cstyle%20type%3D%22text/css%22%3E%0D%0A%09.st0%7Bfill%3A%23FFFFFF%3B%7D%0D%0A%3C/style%3E%0D%0A%3Cg%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M67%2C112.4c-1%2C1-2.5%2C1.5-4.2%2C1.5c-1.7%2C0-3.2-0.5-4.2-1.6c-0.7-0.8-1.2-1.8-1.3-3h1.1c0.1%2C0.9%2C0.5%2C1.7%2C1.1%2C2.3%0D%0A%09%09c0.8%2C0.8%2C2%2C1.2%2C3.3%2C1.2c1.3%2C0%2C2.6-0.3%2C3.4-1.1c0.5-0.5%2C0.9-1.2%2C0.9-2.1c0-1.4-1.1-2.7-2.9-2.9l-2.8-0.4c-2.1-0.3-3.7-1.5-3.7-3.8%0D%0A%09%09c0-1.2%2C0.5-2.1%2C1.3-2.8c0.9-0.8%2C2.3-1.3%2C3.7-1.3c1.6%2C0%2C3.2%2C0.7%2C4%2C1.6c0.6%2C0.7%2C1.1%2C1.5%2C1.1%2C2.6h-1.1c-0.1-0.8-0.3-1.3-0.8-1.9%0D%0A%09%09c-0.7-0.8-1.9-1.3-3.2-1.3c-1.1%2C0-2.1%2C0.3-2.8%2C0.9c-0.6%2C0.5-1%2C1.2-1%2C2.2c0%2C1.8%2C1.3%2C2.4%2C2.6%2C2.6l2.8%2C0.4c2.3%2C0.3%2C3.9%2C2%2C3.9%2C4.1%0D%0A%09%09C68.2%2C110.9%2C67.7%2C111.7%2C67%2C112.4z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M84.2%2C112.4c-0.9%2C0.9-2.2%2C1.5-3.8%2C1.5s-2.9-0.6-3.8-1.5c-1.7-1.6-1.9-4.1-1.9-6.2s0.2-4.6%2C1.9-6.2%0D%0A%09%09c0.9-0.9%2C2.2-1.5%2C3.8-1.5s2.9%2C0.6%2C3.8%2C1.5c1.7%2C1.6%2C1.9%2C4.1%2C1.9%2C6.2S85.9%2C110.7%2C84.2%2C112.4z%20M83.4%2C100.6c-0.8-0.8-1.9-1.2-3-1.2%0D%0A%09%09c-1.2%2C0-2.3%2C0.4-3%2C1.2c-1.5%2C1.4-1.5%2C3.7-1.5%2C5.5c0%2C1.8%2C0.1%2C4.1%2C1.5%2C5.5c0.8%2C0.8%2C1.9%2C1.2%2C3%2C1.2c1.2%2C0%2C2.3-0.4%2C3-1.2%0D%0A%09%09c1.5-1.4%2C1.5-3.8%2C1.5-5.5C84.9%2C104.3%2C84.9%2C102%2C83.4%2C100.6z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M98.4%2C113.9c-1.4%2C0-2.9-0.6-3.9-1.6c-1.6-1.6-1.7-4-1.7-6.1c0-2.1%2C0.1-4.5%2C1.7-6.1c1-1%2C2.5-1.6%2C3.9-1.6%0D%0A%09%09c3%2C0%2C5.1%2C2.1%2C5.3%2C4.8h-1.1c-0.2-2.2-1.8-3.8-4.2-3.8c-1.3%2C0-2.3%2C0.5-3.1%2C1.3c-1.3%2C1.4-1.4%2C3.6-1.4%2C5.4s0.1%2C4%2C1.4%2C5.4%0D%0A%09%09c0.8%2C0.8%2C1.9%2C1.3%2C3.1%2C1.3c2.4%2C0%2C4-1.6%2C4.2-3.8h1.1C103.5%2C111.8%2C101.4%2C113.9%2C98.4%2C113.9z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M110.8%2C113.6V98.7h1.1v14.9H110.8z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M120%2C113.6V98.7h9.6v1.1h-8.5v5.5h7.4v1.1h-7.4v6.3h8.5v1.1H120z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M145.4%2C112.1c-0.9%2C0.9-2.2%2C1.5-3.8%2C1.5h-5V98.7h5c1.6%2C0%2C2.9%2C0.6%2C3.8%2C1.5c1.6%2C1.6%2C1.8%2C3.9%2C1.8%2C6%0D%0A%09%09S147%2C110.5%2C145.4%2C112.1z%20M144.6%2C100.8c-0.8-0.7-1.9-1.1-3-1.1h-3.9v12.8h3.9c1.1%2C0%2C2.2-0.4%2C3-1.1c1.4-1.3%2C1.5-3.5%2C1.5-5.3%0D%0A%09%09S146%2C102.2%2C144.6%2C100.8z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M163.7%2C113.6l-1.5-3.9H155l-1.5%2C3.9h-1.1l5.7-14.9h1.1l5.7%2C14.9H163.7z%20M158.6%2C100.2l-3.2%2C8.5h6.4L158.6%2C100.2%0D%0A%09%09z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M180.2%2C112.1c-0.9%2C0.9-2.2%2C1.5-3.8%2C1.5h-5V98.7h5c1.6%2C0%2C2.9%2C0.6%2C3.8%2C1.5c1.6%2C1.6%2C1.8%2C3.9%2C1.8%2C6%0D%0A%09%09S181.8%2C110.5%2C180.2%2C112.1z%20M179.4%2C100.8c-0.8-0.7-1.9-1.1-3-1.1h-3.9v12.8h3.9c1.1%2C0%2C2.2-0.4%2C3-1.1c1.4-1.3%2C1.5-3.5%2C1.5-5.3%0D%0A%09%09S180.8%2C102.2%2C179.4%2C100.8z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M189.4%2C113.6V98.7h9.6v1.1h-8.5v5.5h7.4v1.1h-7.4v6.3h8.5v1.1H189.4z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M224%2C112.1c-0.9%2C0.9-2.2%2C1.5-3.8%2C1.5h-5V98.7h5c1.6%2C0%2C2.9%2C0.6%2C3.8%2C1.5c1.6%2C1.6%2C1.8%2C3.9%2C1.8%2C6%0D%0A%09%09S225.7%2C110.5%2C224%2C112.1z%20M223.2%2C100.8c-0.8-0.7-1.9-1.1-3-1.1h-3.9v12.8h3.9c1.1%2C0%2C2.2-0.4%2C3-1.1c1.4-1.3%2C1.5-3.5%2C1.5-5.3%0D%0A%09%09S224.6%2C102.2%2C223.2%2C100.8z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M233.2%2C113.6V98.7h9.6v1.1h-8.4v5.5h7.4v1.1h-7.4v6.3h8.4v1.1H233.2z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M268.4%2C113.6l-1.5-3.9h-7.2l-1.5%2C3.9H257l5.7-14.9h1.1l5.7%2C14.9H268.4z%20M263.2%2C100.2l-3.2%2C8.5h6.4L263.2%2C100.2%0D%0A%09%09z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M284.8%2C112.1c-0.9%2C0.9-2.2%2C1.5-3.8%2C1.5h-5V98.7h5c1.6%2C0%2C2.9%2C0.6%2C3.8%2C1.5c1.6%2C1.6%2C1.8%2C3.9%2C1.8%2C6%0D%0A%09%09S286.5%2C110.5%2C284.8%2C112.1z%20M284%2C100.8c-0.8-0.7-1.9-1.1-3-1.1h-3.9v12.8h3.9c1.1%2C0%2C2.2-0.4%2C3-1.1c1.4-1.3%2C1.5-3.5%2C1.5-5.3%0D%0A%09%09S285.4%2C102.2%2C284%2C100.8z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M298.3%2C113.6h-1l-5.4-14.9h1.2l4.7%2C13.4l4.7-13.4h1.2L298.3%2C113.6z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M318.4%2C112.4c-0.9%2C0.9-2.2%2C1.5-3.8%2C1.5c-1.6%2C0-2.9-0.6-3.8-1.5c-1.7-1.6-1.9-4.1-1.9-6.2s0.2-4.6%2C1.9-6.2%0D%0A%09%09c0.9-0.9%2C2.2-1.5%2C3.8-1.5c1.6%2C0%2C2.9%2C0.6%2C3.8%2C1.5c1.7%2C1.6%2C1.9%2C4.1%2C1.9%2C6.2S320.1%2C110.7%2C318.4%2C112.4z%20M317.6%2C100.6%0D%0A%09%09c-0.8-0.8-1.9-1.2-3-1.2s-2.3%2C0.4-3%2C1.2c-1.5%2C1.4-1.5%2C3.7-1.5%2C5.5c0%2C1.8%2C0.1%2C4.1%2C1.5%2C5.5c0.8%2C0.8%2C1.9%2C1.2%2C3%2C1.2s2.3-0.4%2C3-1.2%0D%0A%09%09c1.5-1.4%2C1.5-3.8%2C1.5-5.5C319.2%2C104.3%2C319.1%2C102%2C317.6%2C100.6z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M337.4%2C113.6l-0.2-2.3c-0.8%2C1.6-2.6%2C2.6-4.4%2C2.6c-1.6%2C0-3-0.7-3.9-1.6c-1.6-1.6-1.9-4-1.9-6.2%0D%0A%09%09c0-2.1%2C0.3-4.5%2C1.9-6.1c0.9-0.9%2C2.3-1.6%2C3.9-1.6c3.1%2C0%2C5.2%2C1.9%2C5.4%2C4.4H337c-0.1-1-0.4-1.6-1-2.2c-0.8-0.8-2-1.1-3.3-1.1%0D%0A%09%09c-1.3%2C0-2.3%2C0.5-3.1%2C1.2c-1.4%2C1.4-1.6%2C3.6-1.6%2C5.5c0%2C1.8%2C0.2%2C4.2%2C1.6%2C5.5c0.8%2C0.8%2C1.8%2C1.2%2C3.1%2C1.2c1.2%2C0%2C2.3-0.5%2C3-1.2%0D%0A%09%09c1.2-1.3%2C1.3-3%2C1.3-4.7h-4.4v-1.1h5.5v7.7H337.4z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M355.9%2C113.6l-1.5-3.9h-7.2l-1.5%2C3.9h-1.1l5.7-14.9h1.1l5.7%2C14.9H355.9z%20M350.7%2C100.2l-3.2%2C8.5h6.4%0D%0A%09%09L350.7%2C100.2z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M372.3%2C112.1c-0.9%2C0.9-2.2%2C1.5-3.8%2C1.5h-5V98.7h5c1.6%2C0%2C2.9%2C0.6%2C3.8%2C1.5c1.6%2C1.6%2C1.8%2C3.9%2C1.8%2C6%0D%0A%09%09S373.9%2C110.5%2C372.3%2C112.1z%20M371.5%2C100.8c-0.8-0.7-1.9-1.1-3-1.1h-3.9v12.8h3.9c1.1%2C0%2C2.2-0.4%2C3-1.1c1.4-1.3%2C1.5-3.5%2C1.5-5.3%0D%0A%09%09S372.9%2C102.2%2C371.5%2C100.8z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M390.2%2C112.4c-0.9%2C0.9-2.2%2C1.5-3.8%2C1.5c-1.6%2C0-2.9-0.6-3.8-1.5c-1.7-1.6-1.9-4.1-1.9-6.2s0.2-4.6%2C1.9-6.2%0D%0A%09%09c0.9-0.9%2C2.2-1.5%2C3.8-1.5c1.6%2C0%2C2.9%2C0.6%2C3.8%2C1.5c1.7%2C1.6%2C1.9%2C4.1%2C1.9%2C6.2S391.9%2C110.7%2C390.2%2C112.4z%20M389.4%2C100.6%0D%0A%09%09c-0.8-0.8-1.9-1.2-3-1.2s-2.3%2C0.4-3%2C1.2c-1.5%2C1.4-1.5%2C3.7-1.5%2C5.5c0%2C1.8%2C0.1%2C4.1%2C1.5%2C5.5c0.8%2C0.8%2C1.9%2C1.2%2C3%2C1.2s2.3-0.4%2C3-1.2%0D%0A%09%09c1.5-1.4%2C1.5-3.8%2C1.5-5.5C391%2C104.3%2C390.9%2C102%2C389.4%2C100.6z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M408.3%2C112.4c-1%2C1-2.5%2C1.5-4.2%2C1.5c-1.7%2C0-3.2-0.5-4.2-1.6c-0.7-0.8-1.2-1.8-1.3-3h1.1%0D%0A%09%09c0.1%2C0.9%2C0.5%2C1.7%2C1.1%2C2.3c0.8%2C0.8%2C2%2C1.2%2C3.3%2C1.2c1.3%2C0%2C2.6-0.3%2C3.4-1.1c0.5-0.5%2C0.9-1.2%2C0.9-2.1c0-1.4-1.1-2.7-2.9-2.9l-2.8-0.4%0D%0A%09%09c-2.1-0.3-3.7-1.5-3.7-3.8c0-1.2%2C0.5-2.1%2C1.3-2.8c0.9-0.8%2C2.3-1.3%2C3.7-1.3c1.6%2C0%2C3.2%2C0.7%2C4%2C1.6c0.6%2C0.7%2C1.1%2C1.5%2C1.1%2C2.6H408%0D%0A%09%09c-0.1-0.8-0.3-1.3-0.8-1.9c-0.7-0.8-1.9-1.3-3.2-1.3c-1.1%2C0-2.1%2C0.3-2.8%2C0.9c-0.6%2C0.5-1%2C1.2-1%2C2.2c0%2C1.8%2C1.3%2C2.4%2C2.6%2C2.6l2.8%2C0.4%0D%0A%09%09c2.3%2C0.3%2C3.9%2C2%2C3.9%2C4.1C409.5%2C110.9%2C409%2C111.7%2C408.3%2C112.4z%22/%3E%0D%0A%3C/g%3E%0D%0A%3Cg%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M0.7%2C49.4h6.7v2.4c0%2C7.8%2C3.9%2C14.4%2C12.3%2C14.4c6.1%2C0%2C12.3-3.7%2C12.3-14.4V8.6H21.7V2.9h25.2v5.6h-8v43.8%0D%0A%09%09c0%2C14.5-9.8%2C20-19.2%2C20S0.7%2C67.1%2C0.7%2C52.6V49.4z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M63.2%2C52.2v5c0%2C5.8%2C7.1%2C9%2C15%2C9c8.9%2C0%2C15.3-4.4%2C15.3-12.3c0-9-8.3-12-17.1-15.4c-8.9-3.4-18.3-7-18.3-19%0D%0A%09%09c0-12%2C9.6-17.8%2C20.8-17.8c9.7%2C0%2C19.7%2C3.7%2C19.7%2C10.7v7.3H92v-5.1C92%2C10.3%2C84.9%2C8%2C78.8%2C8C71%2C8%2C65%2C11.8%2C65%2C19.1%0D%0A%09%09c0%2C8.2%2C7.4%2C11%2C15.7%2C14.1c9.8%2C3.6%2C19.7%2C7.6%2C19.7%2C20c0%2C12.1-9.5%2C19.2-22.3%2C19.2c-9.7%2C0-21.5-4.4-21.5-13.7v-6.5H63.2z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M111.2%2C65.6h8.9V8.6h-8.9V2.9h31.1c4.2%2C0%2C8.5%2C0.4%2C11.7%2C1.9c6.7%2C3%2C11%2C9.7%2C11%2C18.6c0%2C9.4-4.8%2C16.7-12.4%2C19.4%0D%0A%09%09c-3.2%2C1.1-6.3%2C1.4-10.1%2C1.4h-15.5v21.4h8.9v5.6h-24.7V65.6z%20M141.7%2C38.4c3.3%2C0%2C6-0.5%2C8.3-1.4c5.1-2%2C8.1-6.9%2C8.1-13.6%0D%0A%09%09c0-6.2-2.5-10.7-7.1-13c-2.5-1.1-5.6-1.7-9.2-1.7h-14.8v29.6H141.7z%22/%3E%0D%0A%3C/g%3E%0D%0A%3Cg%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M205.4%2C34.8v-0.1c-1.3-0.5-2.4-1.3-3.5-2.2c-1.7-1.6-3.5-4.3-3.5-8.7c0-7.5%2C6.1-12.4%2C15.4-12.4%0D%0A%09%09c1.3%2C0%2C2.7%2C0.1%2C3.8%2C0.3c0.6%2C0.1%2C1.3%2C0.3%2C1.9%2C0.3l-1.4%2C4.1l-1.4-0.3c-0.8-0.1-1.6-0.2-2.7-0.2c-5.9%2C0-10.6%2C3.2-10.6%2C8.5%0D%0A%09%09c0%2C3.3%2C1.4%2C8.9%2C10.8%2C8.9h11.5v-7h4.8v7h6.6v4.2h-6.6v7.3c0%2C11.7-6.7%2C17.7-17%2C17.7c-10.3%2C0-17.3-6.2-17.3-14.4%0D%0A%09%09C196.3%2C42.2%2C199.5%2C36.5%2C205.4%2C34.8z%20M213.6%2C57.7c7.2%2C0%2C12.1-3.8%2C12.1-13.3v-7.1H214c-8.6%2C0-12.7%2C4.1-12.7%2C10.2%0D%0A%09%09C201.2%2C53.1%2C205.9%2C57.7%2C213.6%2C57.7z%22/%3E%0D%0A%3C/g%3E%0D%0A%3Cg%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M263.8%2C65.6h8.9l4.6-57.1h-9V2.9h16.4l19.8%2C44.7c0.5%2C1.1%2C0.7%2C2.1%2C1%2C2.8l0.4%2C1.2h0.2c0.1-0.4%2C0.2-0.8%2C0.4-1.2%0D%0A%09%09c0.3-0.7%2C0.6-1.8%2C1.1-2.8l19.8-44.7h16.3v5.6h-8.9l4.5%2C57.1h8.9v5.6h-24.4v-5.6h8.7l-3.7-47.1c0-0.9%2C0-2%2C0.1-3.1%0D%0A%09%09c0.1-0.6%2C0.1-1.2%2C0.1-1.8h-0.2l-0.5%2C1.7c-0.3%2C1.1-0.6%2C2-1%2C2.9l-18.2%2C40.1h-6.3l-18.3-40.1c-0.3-0.9-0.7-1.8-1-2.9%0D%0A%09%09c-0.2-0.6-0.3-1.2-0.4-1.7h-0.3c0%2C0.6%2C0%2C1.2%2C0.1%2C1.8c0.1%2C1.1%2C0.2%2C2.2%2C0.1%2C3.1l-3.7%2C47.1h8.7v5.6h-24.4V65.6z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M354.6%2C49.4h6.7v2.4c0%2C7.8%2C3.9%2C14.4%2C12.3%2C14.4c6.1%2C0%2C12.3-3.7%2C12.3-14.4V8.6h-10.4V2.9h25.2v5.6h-8v43.8%0D%0A%09%09c0%2C14.5-9.8%2C20-19.2%2C20c-9.3%2C0-19.1-5.3-19.1-19.8V49.4z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M403.7%2C65.6h7l23-62.7h7.5l23%2C62.7h7v5.6h-21.9v-5.6h7.9L450.7%2C48h-26.6l-6.4%2C17.6h7.9v5.6h-21.9V65.6z%0D%0A%09%09%20M448.9%2C42.3l-10.2-28c-0.4-1.2-0.5-2.2-0.8-3l-0.3-1.4h-0.3c0%2C0.5-0.1%2C0.9-0.2%2C1.4c-0.3%2C0.8-0.4%2C1.8-0.8%2C3l-10.4%2C28H448.9z%22/%3E%0D%0A%3C/g%3E%0D%0A%3C/svg%3E%0D%0A');
	background-repeat: no-repeat;
}
.navbar.past-header .logo-jsp {
    height: 35px;
    margin-top: 3px;
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2018.1.1%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%20472%20115.2%22%20style%3D%22enable-background%3Anew%200%200%20472%20115.2%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cstyle%20type%3D%22text/css%22%3E%0D%0A%09.st0%7Bfill%3A%239E8063%3B%7D%0D%0A%3C/style%3E%0D%0A%3Cg%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M67%2C112.4c-1%2C1-2.5%2C1.5-4.2%2C1.5c-1.7%2C0-3.2-0.5-4.2-1.6c-0.7-0.8-1.2-1.8-1.3-3h1.1c0.1%2C0.9%2C0.5%2C1.7%2C1.1%2C2.3%0D%0A%09%09c0.8%2C0.8%2C2%2C1.2%2C3.3%2C1.2c1.3%2C0%2C2.6-0.3%2C3.4-1.1c0.5-0.5%2C0.9-1.2%2C0.9-2.1c0-1.4-1.1-2.7-2.9-2.9l-2.8-0.4c-2.1-0.3-3.7-1.5-3.7-3.8%0D%0A%09%09c0-1.2%2C0.5-2.1%2C1.3-2.8c0.9-0.8%2C2.3-1.3%2C3.7-1.3c1.6%2C0%2C3.2%2C0.7%2C4%2C1.6c0.6%2C0.7%2C1.1%2C1.5%2C1.1%2C2.6h-1.1c-0.1-0.8-0.3-1.3-0.8-1.9%0D%0A%09%09c-0.7-0.8-1.9-1.3-3.2-1.3c-1.1%2C0-2.1%2C0.3-2.8%2C0.9c-0.6%2C0.5-1%2C1.2-1%2C2.2c0%2C1.8%2C1.3%2C2.4%2C2.6%2C2.6l2.8%2C0.4c2.3%2C0.3%2C3.9%2C2%2C3.9%2C4.1%0D%0A%09%09C68.2%2C110.9%2C67.7%2C111.7%2C67%2C112.4z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M84.2%2C112.4c-0.9%2C0.9-2.2%2C1.5-3.8%2C1.5s-2.9-0.6-3.8-1.5c-1.7-1.6-1.9-4.1-1.9-6.2s0.2-4.6%2C1.9-6.2%0D%0A%09%09c0.9-0.9%2C2.2-1.5%2C3.8-1.5s2.9%2C0.6%2C3.8%2C1.5c1.7%2C1.6%2C1.9%2C4.1%2C1.9%2C6.2S85.9%2C110.7%2C84.2%2C112.4z%20M83.4%2C100.6c-0.8-0.8-1.9-1.2-3-1.2%0D%0A%09%09c-1.2%2C0-2.3%2C0.4-3%2C1.2c-1.5%2C1.4-1.5%2C3.7-1.5%2C5.5c0%2C1.8%2C0.1%2C4.1%2C1.5%2C5.5c0.8%2C0.8%2C1.9%2C1.2%2C3%2C1.2c1.2%2C0%2C2.3-0.4%2C3-1.2%0D%0A%09%09c1.5-1.4%2C1.5-3.8%2C1.5-5.5C84.9%2C104.3%2C84.9%2C102%2C83.4%2C100.6z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M98.4%2C113.9c-1.4%2C0-2.9-0.6-3.9-1.6c-1.6-1.6-1.7-4-1.7-6.1c0-2.1%2C0.1-4.5%2C1.7-6.1c1-1%2C2.5-1.6%2C3.9-1.6%0D%0A%09%09c3%2C0%2C5.1%2C2.1%2C5.3%2C4.8h-1.1c-0.2-2.2-1.8-3.8-4.2-3.8c-1.3%2C0-2.3%2C0.5-3.1%2C1.3c-1.3%2C1.4-1.4%2C3.6-1.4%2C5.4s0.1%2C4%2C1.4%2C5.4%0D%0A%09%09c0.8%2C0.8%2C1.9%2C1.3%2C3.1%2C1.3c2.4%2C0%2C4-1.6%2C4.2-3.8h1.1C103.5%2C111.8%2C101.4%2C113.9%2C98.4%2C113.9z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M110.8%2C113.6V98.7h1.1v14.9H110.8z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M120%2C113.6V98.7h9.6v1.1h-8.5v5.5h7.4v1.1h-7.4v6.3h8.5v1.1H120z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M145.4%2C112.1c-0.9%2C0.9-2.2%2C1.5-3.8%2C1.5h-5V98.7h5c1.6%2C0%2C2.9%2C0.6%2C3.8%2C1.5c1.6%2C1.6%2C1.8%2C3.9%2C1.8%2C6%0D%0A%09%09S147%2C110.5%2C145.4%2C112.1z%20M144.6%2C100.8c-0.8-0.7-1.9-1.1-3-1.1h-3.9v12.8h3.9c1.1%2C0%2C2.2-0.4%2C3-1.1c1.4-1.3%2C1.5-3.5%2C1.5-5.3%0D%0A%09%09S146%2C102.2%2C144.6%2C100.8z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M163.7%2C113.6l-1.5-3.9H155l-1.5%2C3.9h-1.1l5.7-14.9h1.1l5.7%2C14.9H163.7z%20M158.6%2C100.2l-3.2%2C8.5h6.4L158.6%2C100.2%0D%0A%09%09z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M180.2%2C112.1c-0.9%2C0.9-2.2%2C1.5-3.8%2C1.5h-5V98.7h5c1.6%2C0%2C2.9%2C0.6%2C3.8%2C1.5c1.6%2C1.6%2C1.8%2C3.9%2C1.8%2C6%0D%0A%09%09S181.8%2C110.5%2C180.2%2C112.1z%20M179.4%2C100.8c-0.8-0.7-1.9-1.1-3-1.1h-3.9v12.8h3.9c1.1%2C0%2C2.2-0.4%2C3-1.1c1.4-1.3%2C1.5-3.5%2C1.5-5.3%0D%0A%09%09S180.8%2C102.2%2C179.4%2C100.8z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M189.4%2C113.6V98.7h9.6v1.1h-8.5v5.5h7.4v1.1h-7.4v6.3h8.5v1.1H189.4z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M224%2C112.1c-0.9%2C0.9-2.2%2C1.5-3.8%2C1.5h-5V98.7h5c1.6%2C0%2C2.9%2C0.6%2C3.8%2C1.5c1.6%2C1.6%2C1.8%2C3.9%2C1.8%2C6%0D%0A%09%09S225.7%2C110.5%2C224%2C112.1z%20M223.2%2C100.8c-0.8-0.7-1.9-1.1-3-1.1h-3.9v12.8h3.9c1.1%2C0%2C2.2-0.4%2C3-1.1c1.4-1.3%2C1.5-3.5%2C1.5-5.3%0D%0A%09%09S224.6%2C102.2%2C223.2%2C100.8z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M233.2%2C113.6V98.7h9.6v1.1h-8.4v5.5h7.4v1.1h-7.4v6.3h8.4v1.1H233.2z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M268.4%2C113.6l-1.5-3.9h-7.2l-1.5%2C3.9H257l5.7-14.9h1.1l5.7%2C14.9H268.4z%20M263.2%2C100.2l-3.2%2C8.5h6.4L263.2%2C100.2%0D%0A%09%09z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M284.8%2C112.1c-0.9%2C0.9-2.2%2C1.5-3.8%2C1.5h-5V98.7h5c1.6%2C0%2C2.9%2C0.6%2C3.8%2C1.5c1.6%2C1.6%2C1.8%2C3.9%2C1.8%2C6%0D%0A%09%09S286.5%2C110.5%2C284.8%2C112.1z%20M284%2C100.8c-0.8-0.7-1.9-1.1-3-1.1h-3.9v12.8h3.9c1.1%2C0%2C2.2-0.4%2C3-1.1c1.4-1.3%2C1.5-3.5%2C1.5-5.3%0D%0A%09%09S285.4%2C102.2%2C284%2C100.8z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M298.3%2C113.6h-1l-5.4-14.9h1.2l4.7%2C13.4l4.7-13.4h1.2L298.3%2C113.6z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M318.4%2C112.4c-0.9%2C0.9-2.2%2C1.5-3.8%2C1.5c-1.6%2C0-2.9-0.6-3.8-1.5c-1.7-1.6-1.9-4.1-1.9-6.2s0.2-4.6%2C1.9-6.2%0D%0A%09%09c0.9-0.9%2C2.2-1.5%2C3.8-1.5c1.6%2C0%2C2.9%2C0.6%2C3.8%2C1.5c1.7%2C1.6%2C1.9%2C4.1%2C1.9%2C6.2S320.1%2C110.7%2C318.4%2C112.4z%20M317.6%2C100.6%0D%0A%09%09c-0.8-0.8-1.9-1.2-3-1.2s-2.3%2C0.4-3%2C1.2c-1.5%2C1.4-1.5%2C3.7-1.5%2C5.5c0%2C1.8%2C0.1%2C4.1%2C1.5%2C5.5c0.8%2C0.8%2C1.9%2C1.2%2C3%2C1.2s2.3-0.4%2C3-1.2%0D%0A%09%09c1.5-1.4%2C1.5-3.8%2C1.5-5.5C319.2%2C104.3%2C319.1%2C102%2C317.6%2C100.6z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M337.4%2C113.6l-0.2-2.3c-0.8%2C1.6-2.6%2C2.6-4.4%2C2.6c-1.6%2C0-3-0.7-3.9-1.6c-1.6-1.6-1.9-4-1.9-6.2%0D%0A%09%09c0-2.1%2C0.3-4.5%2C1.9-6.1c0.9-0.9%2C2.3-1.6%2C3.9-1.6c3.1%2C0%2C5.2%2C1.9%2C5.4%2C4.4H337c-0.1-1-0.4-1.6-1-2.2c-0.8-0.8-2-1.1-3.3-1.1%0D%0A%09%09c-1.3%2C0-2.3%2C0.5-3.1%2C1.2c-1.4%2C1.4-1.6%2C3.6-1.6%2C5.5c0%2C1.8%2C0.2%2C4.2%2C1.6%2C5.5c0.8%2C0.8%2C1.8%2C1.2%2C3.1%2C1.2c1.2%2C0%2C2.3-0.5%2C3-1.2%0D%0A%09%09c1.2-1.3%2C1.3-3%2C1.3-4.7h-4.4v-1.1h5.5v7.7H337.4z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M355.9%2C113.6l-1.5-3.9h-7.2l-1.5%2C3.9h-1.1l5.7-14.9h1.1l5.7%2C14.9H355.9z%20M350.7%2C100.2l-3.2%2C8.5h6.4%0D%0A%09%09L350.7%2C100.2z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M372.3%2C112.1c-0.9%2C0.9-2.2%2C1.5-3.8%2C1.5h-5V98.7h5c1.6%2C0%2C2.9%2C0.6%2C3.8%2C1.5c1.6%2C1.6%2C1.8%2C3.9%2C1.8%2C6%0D%0A%09%09S373.9%2C110.5%2C372.3%2C112.1z%20M371.5%2C100.8c-0.8-0.7-1.9-1.1-3-1.1h-3.9v12.8h3.9c1.1%2C0%2C2.2-0.4%2C3-1.1c1.4-1.3%2C1.5-3.5%2C1.5-5.3%0D%0A%09%09S372.9%2C102.2%2C371.5%2C100.8z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M390.2%2C112.4c-0.9%2C0.9-2.2%2C1.5-3.8%2C1.5c-1.6%2C0-2.9-0.6-3.8-1.5c-1.7-1.6-1.9-4.1-1.9-6.2s0.2-4.6%2C1.9-6.2%0D%0A%09%09c0.9-0.9%2C2.2-1.5%2C3.8-1.5c1.6%2C0%2C2.9%2C0.6%2C3.8%2C1.5c1.7%2C1.6%2C1.9%2C4.1%2C1.9%2C6.2S391.9%2C110.7%2C390.2%2C112.4z%20M389.4%2C100.6%0D%0A%09%09c-0.8-0.8-1.9-1.2-3-1.2s-2.3%2C0.4-3%2C1.2c-1.5%2C1.4-1.5%2C3.7-1.5%2C5.5c0%2C1.8%2C0.1%2C4.1%2C1.5%2C5.5c0.8%2C0.8%2C1.9%2C1.2%2C3%2C1.2s2.3-0.4%2C3-1.2%0D%0A%09%09c1.5-1.4%2C1.5-3.8%2C1.5-5.5C391%2C104.3%2C390.9%2C102%2C389.4%2C100.6z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M408.3%2C112.4c-1%2C1-2.5%2C1.5-4.2%2C1.5c-1.7%2C0-3.2-0.5-4.2-1.6c-0.7-0.8-1.2-1.8-1.3-3h1.1%0D%0A%09%09c0.1%2C0.9%2C0.5%2C1.7%2C1.1%2C2.3c0.8%2C0.8%2C2%2C1.2%2C3.3%2C1.2c1.3%2C0%2C2.6-0.3%2C3.4-1.1c0.5-0.5%2C0.9-1.2%2C0.9-2.1c0-1.4-1.1-2.7-2.9-2.9l-2.8-0.4%0D%0A%09%09c-2.1-0.3-3.7-1.5-3.7-3.8c0-1.2%2C0.5-2.1%2C1.3-2.8c0.9-0.8%2C2.3-1.3%2C3.7-1.3c1.6%2C0%2C3.2%2C0.7%2C4%2C1.6c0.6%2C0.7%2C1.1%2C1.5%2C1.1%2C2.6H408%0D%0A%09%09c-0.1-0.8-0.3-1.3-0.8-1.9c-0.7-0.8-1.9-1.3-3.2-1.3c-1.1%2C0-2.1%2C0.3-2.8%2C0.9c-0.6%2C0.5-1%2C1.2-1%2C2.2c0%2C1.8%2C1.3%2C2.4%2C2.6%2C2.6l2.8%2C0.4%0D%0A%09%09c2.3%2C0.3%2C3.9%2C2%2C3.9%2C4.1C409.5%2C110.9%2C409%2C111.7%2C408.3%2C112.4z%22/%3E%0D%0A%3C/g%3E%0D%0A%3Cg%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M0.7%2C49.4h6.7v2.4c0%2C7.8%2C3.9%2C14.4%2C12.3%2C14.4c6.1%2C0%2C12.3-3.7%2C12.3-14.4V8.6H21.7V2.9h25.2v5.6h-8v43.8%0D%0A%09%09c0%2C14.5-9.8%2C20-19.2%2C20S0.7%2C67.1%2C0.7%2C52.6V49.4z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M63.2%2C52.2v5c0%2C5.8%2C7.1%2C9%2C15%2C9c8.9%2C0%2C15.3-4.4%2C15.3-12.3c0-9-8.3-12-17.1-15.4c-8.9-3.4-18.3-7-18.3-19%0D%0A%09%09c0-12%2C9.6-17.8%2C20.8-17.8c9.7%2C0%2C19.7%2C3.7%2C19.7%2C10.7v7.3H92v-5.1C92%2C10.3%2C84.9%2C8%2C78.8%2C8C71%2C8%2C65%2C11.8%2C65%2C19.1%0D%0A%09%09c0%2C8.2%2C7.4%2C11%2C15.7%2C14.1c9.8%2C3.6%2C19.7%2C7.6%2C19.7%2C20c0%2C12.1-9.5%2C19.2-22.3%2C19.2c-9.7%2C0-21.5-4.4-21.5-13.7v-6.5H63.2z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M111.2%2C65.6h8.9V8.6h-8.9V2.9h31.1c4.2%2C0%2C8.5%2C0.4%2C11.7%2C1.9c6.7%2C3%2C11%2C9.7%2C11%2C18.6c0%2C9.4-4.8%2C16.7-12.4%2C19.4%0D%0A%09%09c-3.2%2C1.1-6.3%2C1.4-10.1%2C1.4h-15.5v21.4h8.9v5.6h-24.7V65.6z%20M141.7%2C38.4c3.3%2C0%2C6-0.5%2C8.3-1.4c5.1-2%2C8.1-6.9%2C8.1-13.6%0D%0A%09%09c0-6.2-2.5-10.7-7.1-13c-2.5-1.1-5.6-1.7-9.2-1.7h-14.8v29.6H141.7z%22/%3E%0D%0A%3C/g%3E%0D%0A%3Cg%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M205.4%2C34.8v-0.1c-1.3-0.5-2.4-1.3-3.5-2.2c-1.7-1.6-3.5-4.3-3.5-8.7c0-7.5%2C6.1-12.4%2C15.4-12.4%0D%0A%09%09c1.3%2C0%2C2.7%2C0.1%2C3.8%2C0.3c0.6%2C0.1%2C1.3%2C0.3%2C1.9%2C0.3l-1.4%2C4.1l-1.4-0.3c-0.8-0.1-1.6-0.2-2.7-0.2c-5.9%2C0-10.6%2C3.2-10.6%2C8.5%0D%0A%09%09c0%2C3.3%2C1.4%2C8.9%2C10.8%2C8.9h11.5v-7h4.8v7h6.6v4.2h-6.6v7.3c0%2C11.7-6.7%2C17.7-17%2C17.7c-10.3%2C0-17.3-6.2-17.3-14.4%0D%0A%09%09C196.3%2C42.2%2C199.5%2C36.5%2C205.4%2C34.8z%20M213.6%2C57.7c7.2%2C0%2C12.1-3.8%2C12.1-13.3v-7.1H214c-8.6%2C0-12.7%2C4.1-12.7%2C10.2%0D%0A%09%09C201.2%2C53.1%2C205.9%2C57.7%2C213.6%2C57.7z%22/%3E%0D%0A%3C/g%3E%0D%0A%3Cg%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M263.8%2C65.6h8.9l4.6-57.1h-9V2.9h16.4l19.8%2C44.7c0.5%2C1.1%2C0.7%2C2.1%2C1%2C2.8l0.4%2C1.2h0.2c0.1-0.4%2C0.2-0.8%2C0.4-1.2%0D%0A%09%09c0.3-0.7%2C0.6-1.8%2C1.1-2.8l19.8-44.7h16.3v5.6h-8.9l4.5%2C57.1h8.9v5.6h-24.4v-5.6h8.7l-3.7-47.1c0-0.9%2C0-2%2C0.1-3.1%0D%0A%09%09c0.1-0.6%2C0.1-1.2%2C0.1-1.8h-0.2l-0.5%2C1.7c-0.3%2C1.1-0.6%2C2-1%2C2.9l-18.2%2C40.1h-6.3l-18.3-40.1c-0.3-0.9-0.7-1.8-1-2.9%0D%0A%09%09c-0.2-0.6-0.3-1.2-0.4-1.7h-0.3c0%2C0.6%2C0%2C1.2%2C0.1%2C1.8c0.1%2C1.1%2C0.2%2C2.2%2C0.1%2C3.1l-3.7%2C47.1h8.7v5.6h-24.4V65.6z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M354.6%2C49.4h6.7v2.4c0%2C7.8%2C3.9%2C14.4%2C12.3%2C14.4c6.1%2C0%2C12.3-3.7%2C12.3-14.4V8.6h-10.4V2.9h25.2v5.6h-8v43.8%0D%0A%09%09c0%2C14.5-9.8%2C20-19.2%2C20c-9.3%2C0-19.1-5.3-19.1-19.8V49.4z%22/%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M403.7%2C65.6h7l23-62.7h7.5l23%2C62.7h7v5.6h-21.9v-5.6h7.9L450.7%2C48h-26.6l-6.4%2C17.6h7.9v5.6h-21.9V65.6z%0D%0A%09%09%20M448.9%2C42.3l-10.2-28c-0.4-1.2-0.5-2.2-0.8-3l-0.3-1.4h-0.3c0%2C0.5-0.1%2C0.9-0.2%2C1.4c-0.3%2C0.8-0.4%2C1.8-0.8%2C3l-10.4%2C28H448.9z%22/%3E%0D%0A%3C/g%3E%0D%0A%3C/svg%3E%0D%0A');
}
.navbar.past-header .navbar-nav > li > a {
    color: #9e8063;
}
.navbar.past-header .navbar-nav > li > a:hover, .navbar.past-header .navbar-nav > li > a:focus { 
    color: #9e8063;
}
.navbar.past-header .navbar-nav > li > a::before,
.navbar.past-header .navbar-nav > li > a::after {
    background: #9e8063;
}
.navbar.past-header .navbar-nav > li > a:hover,
.navbar.past-header .navbar-nav > li > a:focus {
	color: #9e8063;
}

.team {
    position: relative;
    width: 100%;
    background: url("../img/about.png") no-repeat scroll center center;
    background-size: 100% auto;
    overflow: hidden;
    min-height: 50vw;
}
.team .container-fluid {
    padding: 0;
    margin: 0px auto;
    position: relative;
    height: 100%;
}
.team video {
    display: block;
    width: 100%;
}
.team .team-pics {display: none;}
.team .team-videos {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
}
.team .team-videos .jsp {
    position: absolute;
    margin-top: -7.1%;
    width: 18.5%;
    left: 12.58%;
}
.team .team-videos .mja {
    position: absolute;
    margin-top: -7.6%;
    left: 67.1%;
    width: 28.3%;
}
.marker {
    position: absolute;
    margin: 0px auto;
    left: 0;
    right: 0;
    z-index: 10;
    border-radius: 50px;
    width: 35px;
    height: 35px;
    bottom:-20px;
    font-size: 20px;
    color: #9e8063;
    border: 1px solid #9e8063;
    background: none;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.marker:hover {
    color: #fff;
    border-color: #fff;
    background: none;
}
.jsp .marker {
    left: 107%;
    top: 102%;
}
.mja .marker {
    left: -80%;
    top: 102%;
}
.marker-info {
    position: absolute;
    margin: 0px auto;
    left: 0;
    right: 0;
    border-top: 1px solid #9e8063;
    font-size: 16px;
    color: #fff;
    background: none;
    padding-top: 8px;
    line-height: 1.2em;   
}
.marker-info .marker-title {
    font-family: "Leitura News Italic 2";
}
.marker-info .marker-task {
    font-size: 12px;
}
.jsp-info {
    top: 112%;
    text-align: left;
    border-left: 1px solid #9e8063;
    padding-left: 10px;
}
.mja-info {
    top: 108%;
    width: 75%;
    right: -15%;
    text-align: right;
    border-right: 1px solid #9e8063;
    padding-right: 10px;
}

.gallery {
    position: relative;
    width: 100%;
    padding: 60px 0 0;
    background: #fff;
    color: #9e8063;
    z-index: 10;
}
.gallery .gallery-title {
    font-size: 35px;
    font-family: 'Leitura News Roman 1';
    line-height: 1.3em;
    margin-bottom: 20px;
}
.gallery .gallery-description {
    font-size: 14px;
    font-family: 'Akkurat-Light';
    line-height: 1.4em;
}
.gallery .gallery-grid img {width: 100%;}
.grid-1 {padding-top: 50px;}
.grid-2, .grid-3  {display: none;}

.load-more {
    position: absolute;
    margin: 0px auto;
    left: 0;
    right: 0;
    z-index: 10;
    border-radius: 50px;
    border: none;
    width: 40px;
    height: 40px;
    bottom:-20px;
    font-size: 20px;
    color: #fff;
    background: #9e8063;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.load-more:hover {
    color: #9e8063;
    background: #fff;
}

.video {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 1;
}
.video-container {
	position: absolute;
	top:0%;
	left:0%;
	height:100%;
	width:100%;
	overflow: hidden;
}
.video-bg {
    position: absolute;
    bottom: 50%; 
    right: 50%;
    transform: translateX(50%) translateY(50%);
    -ms-transform: translateX(50%) translateY(50%);
    -webkit-transform: translateX(50%) translateY(50%);
    min-width: 100%; 
    min-height: 100%; 
    z-index: -1000; 
    overflow: hidden;
    background: url("../img/landing.jpg") no-repeat scroll center center / cover transparent;
}
.video-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 20px 0px;
    color: #fff;
    display: table;
}
.video-content .container {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
.video-content .video-title {
    max-width: 75%;
    font-size: 35px;
    font-family: 'Leitura News Roman 1';
    line-height: 1.3em;
    margin: 0px auto;
}
.video-content .video-description {
    max-width: 75%;
    font-size: 14px;
    font-family: 'Akkurat-Light';
    line-height: 1.6em;
    margin: 0px auto;
    padding: 40px 0 50px;
}

.map {
    position: absolute;
    width: 100%;
    height: 100%;
    left: -100%;
    background: #9e8063;
    color: #fff;
    z-index: 2;
}
.map .map-button {
    position: absolute;
    left: 10px;
    top: 20px;
    color: #fff;
    z-index: 3;
}
.lines-button {
  display: inline-block;
  border: none;
  background: none;
}
.lines-button span {
  display: block;
}
.lines {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: transparent;
  transition: 0.3s;
  position: relative;
}
.lines:before, .lines:after {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #9e8063;
  transition: 0.3s;
  position: absolute;
  left: 0;
  content: '';
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.lines:before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
}
.lines:after {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
}

.map-button.open .lines {
  transition: background 0.3s 0s ease;
  background: #9e8063;
}
.map-button.open .lines:before, .map-button.open .lines:after {
  width: 1.5rem;
  -webkit-transform-origin: 0.2rem center;
  transform-origin: 0.2rem center;
}
.map-button.open .lines:before {
  -webkit-transform: rotate3d(0, 0, 1, -40deg);
  transform: rotate3d(0, 0, 1, -40deg);
}
.map-button.open .lines:after {
  -webkit-transform: rotate3d(0, 0, 1, 40deg);
  transform: rotate3d(0, 0, 1, 40deg);
}
#map {height: 100%;width: 100%; z-index: 1}
.gmnoprint a, .gmnoprint span, .gm-style-cc {display:none;}
.gmnoprint div {background:none !important;}
img[src="https://maps.gstatic.com/mapfiles/api-3/images/google_white2.png"], a[href^="http://maps.google.com/maps"]{display:none !important;}
.contacts a {
    color: #fff;
    text-decoration: none;
}
.contacts a:hover {
    text-decoration: none;
}
.contact-info-wrapper {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: table;
}
.contact-info {
    display: table-cell;
    vertical-align: middle;
}
.contact-info .row {padding: 20px 0;}
.contact-info .contact-title {margin-bottom: 5px; font-family: 'Leitura News Roman 2'; color: #9e8063; font-size: 12px;}
.contact-info .contact-description {margin: 0px; font-size: 14px;}
.contact-info .button {
    margin-top: 40px; 
}

.form {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 20px 0;
    background: #fff;
    color: #9e8063;
    display: table;
}
.form .container {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
.form .form-title, .form .form-message {
    max-width: 75%;
    font-size: 35px;
    font-family: 'Leitura News Roman 1';
    line-height: 1.3em;
    margin: 0px auto;
}
.form .form-title {margin-top: 40px;}
.form .button {
    padding: 10px 60px;
    margin-top: 30px;
}
.form-container {margin-top: 50px;}
.form-message {display: none;}

.input-yoshiko {
	position: relative;
	z-index: 1;
	display: inline-block;
	margin: 2.25em 2em;
	max-width: 300px;
	width: calc(100% - 2em);
	vertical-align: top;
}
/* Yoshiko */
.input-field-yoshiko {
    position: relative;
	display: block;
	float: right;
	width: 100%;
    padding: 0.8em;
	border-radius: 0;
	color: #9e8063;
    text-transform: uppercase;
	background-color: #9e8063;
	border: 1px solid transparent;
	-webkit-transition: background-color 0.25s, border-color 0.25s;
	transition: background-color 0.25s, border-color 0.25s;
    -webkit-appearance: none; /* for box shadows to show on iOS */
}
.input-field-yoshiko:focus {outline: none;}
.input-label-yoshiko {
    display: inline-block;
	float: right;
	padding: 0 1em;
    margin-bottom: 0;
	color: #fff;
    font-weight: normal;
	width: 100%;
	text-align: left;
	position: absolute;
	bottom: 100%;
	pointer-events: none;
	overflow: hidden;
	-webkit-transform: translate3d(0, 2.5em, 0);
	transform: translate3d(0, 2.5em, 0);
	-webkit-transition: -webkit-transform 0.25s;
	transition: transform 0.25s ;
	-webkit-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.input-label-content-yoshiko {
    position: relative;
	display: block;
	width: 100%;
	color: #fff;
	padding: 0.25em 0;
    text-transform: uppercase;
	-webkit-transition: -webkit-transform 0.25s;
	transition: transform 0.25s;
	-webkit-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
}
.input-label-content-yoshiko::after {
	content: attr(data-content);
	position: absolute;
	bottom: 100%;
	left: 0;
	height: 100%;
	width: 100%;
	color: #9e8063;
	padding: 0.25em 0;
	text-transform: uppercase;
}
.input-field-yoshiko:focus + .input-label-yoshiko,
.input-filled .input-label-yoshiko {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.input-field-yoshiko:focus + .input-label-yoshiko .input-label-content-yoshiko,
.input-filled .input-label-content-yoshiko {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}
.input-field-yoshiko:focus + .input-field-yoshiko,
.input-filled .input-field-yoshiko {
	background-color: transparent;
	border-color: #9e8063;
}

.error-message {
    font-family: 'Akkurat-Regular';
    font-size: 14px;
    color: salmon;
    padding: 40px 0;
}    

.footer {
    position: relative;
    width: 100%;
    padding: 70px 0 60px;
    background: #201f1b;
    color: #9e8063;
    font-size: 12px;
}
.footer .footer-title {margin-bottom: 5px; font-family: 'Leitura News Roman 2';}
.footer .footer-description {margin: 0px; overflow: hidden;}
.footer a {
    color: #9e8063;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: none;
}
.copy {margin-top: 30px;}


@media only screen and (max-width : 1400px) {
    .header .header-title {
        font-size: 35px;
    }
    .header .header-description {
        font-size: 14px;
    }
}

@media only screen and (max-width : 979px) {
    
}

@media only screen and (max-width : 767px) {
    .button {
        padding: 9px 25px;
        font-size: 9px;
    }
    .logo-jsp {
        height: 45px;
        margin-top: -10px;
    }
    .navbar.past-header .logo-jsp {
        height: 35px;
        margin-top: -6px;
    }
    .navbar-toggle {border: none;}
    .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
        background: none;
    }
    .navbar-default .navbar-toggle .icon-bar {
        background-color: #fff;
    }
    .navbar.past-header .navbar-toggle .icon-bar {
        background-color: #9e8063;
    }
    .navbar-default .navbar-brand {
        margin-top: 0;
    }
    .navbar-collapse {
        border: none;
        box-shadow: none;
    }
    .navbar-nav {text-align: right;}
    .navbar.past-header .navbar-nav > li > a:hover, .navbar.past-header .navbar-nav > li > a:focus { 
        font-weight: bold;
    }
    .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { 
        font-weight: bold;
    }
    .navbar-default .navbar-nav > li > a::before,
    .navbar-default .navbar-nav > li > a::after {
        display: none;
    }
    .header .header-title {
        font-size: 30px;
    }
    .team {
        background: #201f1b;
        min-height: none;
    }
    .team .team-videos {
        display: none;
    }
    .team .team-pics {
        display: block;
        padding: 100px 25px 50px;
    }
    .team .team-pics .row {padding: 40px 0;}
    .team .pic-info {
        border-top: 1px solid #9e8063;
        background: none;
        padding-top: 10px;
        font-size: 14px;
        color: #fff;
    }
    .team .team-pics .jsp-pic-info {
        border-right: 1px solid #9e8063;
        padding-right: 20px;
        text-align: right;
    }
    .team .team-pics .mja-pic-info {
        border-left: 1px solid #9e8063;
        padding-left: 20px;
        text-align: left;
    }
    .team .team-pics .pic-info-title {
        font-family: "Leitura News Italic 2";
    }
    .team .team-pics .pic-info-task {
        font-size: 10px;
    }
    .team .team-pics .pic-info-description {
        font-size: 12px;
    }
    .gallery, .gallery-button {
        text-align: center;
    }
    .gallery-button { margin-top: 40px;}
    .gallery .gallery-title, .video-content .video-title {
        font-size: 25px;
    }
    .form .form-title {
        font-size: 25px;
        margin-top: 50px;
    }
    .input-yoshiko {
        font-size: 12px;
    }
    .error-message {
        font-size: 12px;
    }
    .clear-padding-right {padding-right: 15px;}
    .clear-padding-left {padding-left: 15px;}
    .video-container {
        background: url("../img/landing.jpg") no-repeat scroll center center / cover transparent;
    }
    .video-bg {
        display: none;
    }
    .contact-info-wrapper {
        background: rgba(32, 31, 27, 0.7);
    }
    .contact-info {
        text-align: center;
    }
    .footer {
        text-align: center;
        font-size: 12px;
    }
    .footer .col-sm-4 {
        margin-top: 25px;
    }
}

@media only screen and (max-width : 480px) {
    .button {
        padding: 8px 20px;
        font-size: 8px;
    }
    .navbar.past-header {
        padding: 0;
    }
    .navbar.past-header .logo-jsp {
        height: 25px;
        margin-top: -3px;
    }
    .header .header-title {
        font-size: 25px;
    }
    .team-pics .col-xs-4, .team-pics .col-xs-8 {
        width: 100%;
    }
    .team-pics .col-xs-4 {padding: 0;}
    .team-pics .col-xs-8 {padding: 20px 0;}
    .team-pics .jsp-pic-info {border-top: none; border-bottom: 1px solid #9e8063;}
    .contact-info .contact-title {font-size: 10px;}
    .contact-info .contact-description {font-size: 12px;}
    .gallery .gallery-title, .video-content .video-title {
        font-size: 20px;
    }
    .header .header-description, .gallery .gallery-description, .video-content .video-description {
        font-size: 12px;
    }
    .form .form-title {
        font-size: 20px;
    }
    .input-yoshiko {
        margin: 1.8em 0em;
        font-size: 11px;
    }
    .error-message {
        font-size: 10px;
    }
    .footer {
        font-size: 10px;
    }
    .footer .col-sm-4 {
        margin-top: 20px;
    }
}
