/*
    Color Palette Import for GeoMundus 2023
*/
@import url("color.css");

@import url("font-awesome.min.css");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..400;1,300..400&display=swap");

/*
	Photon by HTML5 UP
	html5up.net | @n33co
	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/


/* GENERAL SETTINGS */
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;
}

/* br {
    display: block !important;
} */

.gap {
    margin-top: 3%;
}

body {
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

@media screen and (max-width: 680px) { 
    body:not(.home-page) {
        margin: 50px 0px 0px 0px;
    }
}

/* START: Menu settings */
nav {
    background: white;
    border-bottom: 1px solid rgb(182, 182, 182);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
}

.menu { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: space-between; 
    align-items: center;
    margin: 0px;
}

.menu_logo {
    order: 0;
    height: 50px;
    margin:0px;

}

ul.menu, ul.main-menu-dropdown {
    list-style-type: none;
}

ul.menu li a {
    color: var(--cp-dark);    
    text-align: left;
    text-decoration: none;
    transition: 0.3s;
    font-size: 18px;
    font-weight: 500;
}

ul.menu li a:hover {
    color: var(--cp-light); 
    background-color: white;    
}

ul.menu li.has-dropdown{
    cursor: pointer;
}

ul.main-menu-dropdown {
    background-color: white;
    width: auto;
    position: absolute;
    margin: 0;
    padding: 10px 10px;
    display: none;
    text-align: left;
}
.leaders_name{
    font-weight: 800;
}
ul.main-menu-dropdown li {
    padding: 6px 0px 0px 0px;
}

.nav-spacer { 
    padding-top: 50px; 
    visibility: hidden;
}

@media screen and (min-width: 780px) { 
    .mobile {
        display: none;
    }

    nav {
        padding: 5px 9% 2px 9%;
    }
    
    .menu_logo {
        order: 0;
    }
     
    .menu .item {
        order: 1;
        display: block;
        width: auto;
    }

    .toggle {
        display: none;
    }
}

@media screen and (max-width: 780px) {
    nav {
        padding: 5px 10px 0px 0px;
    }
    
    .toggle {
        order: 1;
    }
    
    .menu .item {
        order: 2;
        width: 100%;
        text-align: left;
        display: none;
        padding: 10px 0px 10px 0px;
    }
    
    .menu .item.active {
        display: block;
    }
}

/* END: Menu settings */

/* START: Home - Header */
#header {
    padding: 9em 0 9em 0;
    background-color: var(--cp-dark);
    color: rgba(255, 255, 255, 0.75);
    background-attachment: fixed, fixed, fixed;
    background-image: url("images/overlay2.png"), url("images/overlay3.svg"), linear-gradient(45deg, var(--cp-dark) 5%, var(--cp-dark) 10%, var(--cp-black));
    /* background-image: url(images/mundus1.jpg); */
    /* background-repeat: no-repeat;
    background-size: cover; */
    background-position: top left, center center, center center;
    background-size: auto, cover, cover;
    width:100%; 
    overflow: hidden;
    position: relative; 
    text-align: center; 
}

@media screen and (min-width: 680px) {
    .presentation_logo{
        vertical-align: middle; 
        margin-top: 80px;
        height: 25rem;
    }
}

@media screen and (max-width:680px) {
    .presentation_logo{
        vertical-align: middle; 
        margin-top: 40px;
        height: 12rem;
    }
}

#header h1,
#header h2,
#header h4,
#header h5,
#header h6,
#header strong,
#header p {
    color: #ffffff;
}

#header h1 {
    font-weight: 700;
    margin: 0;
    font-size: 3.8em;
}

#header h2 {
    font-weight: 500;
    font-size: 1.7em;
}

#header h3 {
    color: #ffffff;
    font-size: 1.1em;
}

#header p {
    margin: 1em 0 0 0;
}

/* END: Home - Header */

/* START: Home - Countdown */
#countdown {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: space-between; 
}

#countdown ul {
    list-style: none;
    padding-bottom: 20px;
    margin: 0;
}

#countdown li {
    display: inline-block;
    text-align: center;
    text-transform: uppercase; 
}
  
#countdown li span {
    display: block;
    color: var(--cp-dark);
    padding-bottom: 20px;
}

@media screen and (min-width: 680px) {

    #countdown li {
        font-size: 25px;
        width: 150px;
    }

    #countdown li span {
        font-size: 60px;
    }
}

@media screen and (max-width: 680px) {
     
    #countdown li {
        font-size: 13px;
    }

    #countdown li span {
        font-size: 28px;
    }
}

/* END: Home - Countdown */

/* START: Home - Speakers */

#speakers-line-up .speakers-all {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    /* align-items: flex-start; */
}

#speakers-line-up .speaker, #speakers-line-up .keynote {
    border-radius: 4px;
    box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.25);
    padding: 15px;
    margin: 10px auto;
}

#speakers-line-up .keynote {
    background: white;
}

#speakers-line-up .keynote-description {
    text-align: justify;
}

#speakers-line-up .keynote-title {
    text-align: center;
    color: #3c78b8;
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 20px;
}

#speakers-line-up .keynote-details {
    text-align: center;
    padding: 10px 0px;
}

#speakers-line-up .keynote-details a.button {
    background-color: none;
    border: 1px solid black;
}
    
#speakers-line-up .keynote-details a.button:hover {
    color: white;
    background-color: #3c78b8;
    border: 1px solid #3c78b8;
}

#speakers-line-up .speaker {
    background: linear-gradient(to bottom, #000000 0%, #003C28 42%, #ffffff 42%, #ffffff 100%);
    text-align: center;
} 

#speakers-line-up .speaker-more, #speakers-line-up .speaker-less {
    font-size: 50px;
    font-weight: 600;
    text-align: right;
}

#speakers-line-up .speaker-more {
    color: white;
}

.speaker-more > a:hover, .speaker-less > a:hover {
    text-decoration: none;
}

#speakers-line-up .speaker-less {
    color: black;
}

#speakers-line-up a {
    cursor: pointer;
}

#speakers-line-up .speaker-img img{
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.2);
    border-radius: 50%;
    padding: 7px;
}

#speakers-line-up .speaker-name {
    font-size: 20px;
    font-weight: 600;
}

#speakers-line-up .speaker-name a:hover {
    color: #3c78b8; 
}

#speakers-line-up .speaker-job {
    font-size: 18px;
}

#speakers-line-up .speaker-location {
    font-size: 18px;
    color: var(--cp-dark);
}

@media screen and (min-width: 768px) { 
    
    #speakers-line-up .speaker, #speakers-line-up .keynote{
        order: 0;
        display: block;
        width: 49%;
    }

    #speakers-line-up .speaker-img img{
        width: 230px;
    }
}

@media screen and (max-width: 768px) { 
    
    #speakers-line-up .speaker, #speakers-line-up .keynote {
        order: 0;
        display: block;
        width: 100%;
    }

    #speakers-line-up .speaker-img img{
        width: 180px;
    }
}

/* temporary fix for the space between info section and speakers section */
#speakers-line-up {
    padding-top: 0%;
}

#info {
    padding-bottom: 0%;
}

/* END: Home - Speakers */

/* START: Home - Registration */

#registration {
    background-image: url("images/1.png");
    background-position: center center;
    background-size: cover;
    width: 100%;
    color: white;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.5);
}

#registration h2 {
    color: white;
}

/* END: Home - Registration */

/* START: Main - Speakers */

.speaker-main-box {
    text-align: center;
    background-color: white;
    width: 100%;
}

.speaker-main-box h3{
    color: black !important;
    text-align:center;
    font-weight: bolder !important;
}

.speaker-main-box-blue {
    text-align: center;
    background: linear-gradient(to bottom, var(--cp-dark) 0%, var(--cp-light) 42%, #ffffff 42%, #ffffff 100%);
    height: 100px;
    margin-bottom: -20px;
    width: 100%;
}

.speaker-main-box-blue a{
    color: white;
    text-align:center;
    font-weight: bolder;

}

.speaker-main-box-blue a:hover{
    text-decoration: none;
    /* color: rgb(46,98,124); */
}

/* END: Main - Speakers */

/* FLEXBOX FOR COLUMNS */ 
.two-columns-centered {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: space-around; 
    align-items: center;
    margin: 0px;
}

@media screen and (min-width: 680px) { 
    .two-columns-centered .item {
        display: inline;
        width: auto;
    }
}

@media screen and (max-width: 680px) { 
    .two-columns-centered .item {
        display: block;
        width: auto;
        margin: 20px;
    }
}

/* START: Buttons */
.button {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    font-size: 0.9em;
    font-weight: 400;
    height: 2.75em;
    letter-spacing: 0.125em;
    line-height: 2.75em;
    padding: 0 2em;
    text-align: center;
    text-decoration: none;
    text-indent: 0.125em;
    text-transform: uppercase;
    white-space: nowrap;
}

#header a.button, #participaton a.button, #registration a.button {
    background-color: none;
    border: 1px solid #ffffff;
    height: auto;
    width: auto;
    padding: 0px 10px;
}

#header a.button:hover, #participaton a.button:hover, #registration a.button:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.30);
    border: 1px solid #ffffff;
}

.main.style2 button,
.main.style2 .button {
    box-shadow: inset 0 0 0 1px #ffffff;
    color: #ffffff !important;
}

.main.style2 button:hover,
.main.style2 .button:hover {
    background-color: rgba(255, 255, 255, 0.125);
}

.main.style2 button.map,
.main.style2 .button.map {
    border: var(--cp-light) 1px solid;
    box-shadow: inset 0 0 0 1px #ffffff !important;
    color: var(--cp-light) !important;
}

.main.style2 button.map:hover,
.main.style2 .button.map:hover {
    background-color: var(--cp-light);
    color: #ffffff !important;
}

.main.style2 button.map:active,
.main.style2 .button.map:active {
    background-color: var(--cp-light) !important;
}

/* END: Buttons */

#header header.major:after {
    background: #ffffff;
}

#header ul.major-icons li .icon {
    border-color: #ffffff;
}

#header .icon.major {
    color: #ffffff;
}

#header .actions {
    margin: 2.5em 0 0 0;
    position: relative;
}

#header .actions:after {
    background: #ffffff;
    content: '';
    height: 100vh;
    left: 50%;
    position: absolute;
    top: 100%;
    width: 1px;
}

#header .inner {
    -moz-transition: -moz-transform 1.5s ease, opacity 2s ease;
    -webkit-transition: -webkit-transform 1.5s ease, opacity 2s ease;
    -ms-transition: -ms-transform 1.5s ease, opacity 2s ease;
    transition: transform 1.5s ease, opacity 2s ease;
    -moz-transition-delay: 0.25s;
    -webkit-transition-delay: 0.25s;
    -ms-transition-delay: 0.25s;
    transition-delay: 0.25s;
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    position: relative;
    z-index: 1;
}

#header .inner .actions {
    -moz-transition: -moz-transform 1.25s ease;
    -webkit-transition: -webkit-transform 1.25s ease;
    -ms-transition: -ms-transform 1.25s ease;
    transition: transform 1.25s ease;
    -moz-transition-delay: 1s;
    -webkit-transition-delay: 1s;
    -ms-transition-delay: 1s;
    transition-delay: 1s;
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

#header:after {
    -moz-transition: opacity 1s ease;
    -webkit-transition: opacity 1s ease;
    -ms-transition: opacity 1s ease;
    transition: opacity 1s ease;
    background-image: linear-gradient(45deg, #4fa49a, #4361c2);
    content: '';
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

body.is-loading #header .inner {
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
}

body.is-loading #header .inner .actions {
    -moz-transform: translateY(30em);
    -webkit-transform: translateY(30em);
    -ms-transform: translateY(30em);
    transform: translateY(30em);
    opacity: 0;
}

body.is-loading #header:after {
    opacity: 1;
}

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;
}


/* Box Model */

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

/* START: Containers */
.container {
    margin: auto;

}

@media screen and (min-width: 768px) {
    .container {
        padding: 0 10%;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 2%;
    }
}

/* END: Containers */

/* START: Past Speakers */

#past-speakers-line-up .speakers-all {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: space-between; 
    align-items: flex-start;
    margin: 0px;
    text-align: center;
}

#past-speakers-line-up .speaker {
    border-radius: 4px;
    box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.25);
    margin-bottom: 20px;
}

#past-speakers-line-up a {
    cursor: pointer;
}

#past-speakers-line-up .speaker-img img{
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.2);
    border: 10px solid;
    border-image-slice: 1;
    border-width: 7px;
    border-image-source: linear-gradient(to top, white, #0c2138);
}

#past-speakers-line-up .speaker-name {
    font-size: 20px;
    font-weight: 600;
}

#past-speakers-line-up .speaker-name a:hover {
    color: #3c78b8; 
}

#past-speakers-line-up .speaker-location {
    font-size: 16px;
    color: #257ac0;
    padding: 5px;
}

@media screen and (min-width: 768px) { 
    
    #past-speakers-line-up .speaker {
        order: 0;
        display: block;
        width: 230px;
    }

    #past-speakers-line-up .speaker-img img{
        width: 230px;
        height: 230px;
    }
}

@media screen and (max-width: 768px) { 
    
    #past-speakers-line-up .speaker {
        order: 0;
        display: block;
        width: 293px;
    }

    #past-speakers-line-up .speaker-img img{
        width: 293px;
        height: 293px;
    }
}

/* END: Past Speakers */

/* 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;
   padding:20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.\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%;
}

@media screen and (max-width: 1680px) {
    .row>* {
        padding: 0 0 0 2em;
    }
    .row {
        margin: 0 0 -1px -2em;
    }
    .row.uniform>* {
        padding: 2em 0 0 2em;
    }
    .row.uniform {
        margin: -2em 0 -1px -2em;
    }
    .row.\32 00\25>* {
        padding: 0 0 0 4em;
    }
    .row.\32 00\25 {
        margin: 0 0 -1px -4em;
    }
    .row.uniform.\32 00\25>* {
        padding: 4em 0 0 4em;
    }
    .row.uniform.\32 00\25 {
        margin: -4em 0 -1px -4em;
    }
    .row.\31 50\25>* {
        padding: 0 0 0 3em;
    }
    .row.\31 50\25 {
        margin: 0 0 -1px -3em;
    }
    .row.uniform.\31 50\25>* {
        padding: 3em 0 0 3em;
    }
    .row.uniform.\31 50\25 {
        margin: -3em 0 -1px -3em;
    }
    .row.\35 0\25>* {
        padding: 0 0 0 1em;
    }
    .row.\35 0\25 {
        margin: 0 0 -1px -1em;
    }
    .row.uniform.\35 0\25>* {
        padding: 1em 0 0 1em;
    }
    .row.uniform.\35 0\25 {
        margin: -1em 0 -1px -1em;
    }
    .row.\32 5\25>* {
        padding: 0 0 0 0.5em;
    }
    .row.\32 5\25 {
        margin: 0 0 -1px -0.5em;
    }
    .row.uniform.\32 5\25>* {
        padding: 0.5em 0 0 0.5em;
    }
    .row.uniform.\32 5\25 {
        margin: -0.5em 0 -1px -0.5em;
    }
    .\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: 1140px) {
    .row>* {
        padding: 0 0 0 1.5em;
    }
    .row {
        margin: 0 0 -1px -1.5em;
    }
    .row.uniform>* {
        padding: 1.5em 0 0 1.5em;
    }
    .row.uniform {
        margin: -1.5em 0 -1px -1.5em;
    }
    .row.\32 00\25>* {
        padding: 0 0 0 3em;
    }
    .row.\32 00\25 {
        margin: 0 0 -1px -3em;
    }
    .row.uniform.\32 00\25>* {
        padding: 3em 0 0 3em;
    }
    .row.uniform.\32 00\25 {
        margin: -3em 0 -1px -3em;
    }
    .row.\31 50\25>* {
        padding: 0 0 0 2.25em;
    }
    .row.\31 50\25 {
        margin: 0 0 -1px -2.25em;
    }
    .row.uniform.\31 50\25>* {
        padding: 2.25em 0 0 2.25em;
    }
    .row.uniform.\31 50\25 {
        margin: -2.25em 0 -1px -2.25em;
    }
    .row.\35 0\25>* {
        padding: 0 0 0 0.75em;
    }
    .row.\35 0\25 {
        margin: 0 0 -1px -0.75em;
    }
    .row.uniform.\35 0\25>* {
        padding: 0.75em 0 0 0.75em;
    }
    .row.uniform.\35 0\25 {
        margin: -0.75em 0 -1px -0.75em;
    }
    .row.\32 5\25>* {
        padding: 0 0 0 0.375em;
    }
    .row.\32 5\25 {
        margin: 0 0 -1px -0.375em;
    }
    .row.uniform.\32 5\25>* {
        padding: 0.375em 0 0 0.375em;
    }
    .row.uniform.\32 5\25 {
        margin: -0.375em 0 -1px -0.375em;
    }
    .\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) {
    .row>* {
        padding: 0 0 0 1.5em;
    }
    .row {
        margin: 0 0 -1px -1.5em;
    }
    .row.uniform>* {
        padding: 1.5em 0 0 1.5em;
    }
    .row.uniform {
        margin: -1.5em 0 -1px -1.5em;
    }
    .row.\32 00\25>* {
        padding: 0 0 0 3em;
    }
    .row.\32 00\25 {
        margin: 0 0 -1px -3em;
    }
    .row.uniform.\32 00\25>* {
        padding: 3em 0 0 3em;
    }
    .row.uniform.\32 00\25 {
        margin: -3em 0 -1px -3em;
    }
    .row.\31 50\25>* {
        padding: 0 0 0 2.25em;
    }
    .row.\31 50\25 {
        margin: 0 0 -1px -2.25em;
    }
    .row.uniform.\31 50\25>* {
        padding: 2.25em 0 0 2.25em;
    }
    .row.uniform.\31 50\25 {
        margin: -2.25em 0 -1px -2.25em;
    }
    .row.\35 0\25>* {
        padding: 0 0 0 0.75em;
    }
    .row.\35 0\25 {
        margin: 0 0 -1px -0.75em;
    }
    .row.uniform.\35 0\25>* {
        padding: 0.75em 0 0 0.75em;
    }
    .row.uniform.\35 0\25 {
        margin: -0.75em 0 -1px -0.75em;
    }
    .row.\32 5\25>* {
        padding: 0 0 0 0.375em;
    }
    .row.\32 5\25 {
        margin: 0 0 -1px -0.375em;
    }
    .row.uniform.\32 5\25>* {
        padding: 0.375em 0 0 0.375em;
    }
    .row.uniform.\32 5\25 {
        margin: -0.375em 0 -1px -0.375em;
    }
    .\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 screen and (max-width: 736px) {
    .row>* {
        padding: 0 0 0 1.5em;
    }
    .row {
        margin: 0 0 -1px -1.5em;
    }
    .row.uniform>* {
        padding: 1.5em 0 0 1.5em;
    }
    .row.uniform {
        margin: -1.5em 0 -1px -1.5em;
    }
    .row.\32 00\25>* {
        padding: 0 0 0 3em;
    }
    .row.\32 00\25 {
        margin: 0 0 -1px -3em;
    }
    .row.uniform.\32 00\25>* {
        padding: 3em 0 0 3em;
    }
    .row.uniform.\32 00\25 {
        margin: -3em 0 -1px -3em;
    }
    .row.\31 50\25>* {
        padding: 0 0 0 2.25em;
    }
    .row.\31 50\25 {
        margin: 0 0 -1px -2.25em;
    }
    .row.uniform.\31 50\25>* {
        padding: 2.25em 0 0 2.25em;
    }
    .row.uniform.\31 50\25 {
        margin: -2.25em 0 -1px -2.25em;
    }
    .row.\35 0\25>* {
        padding: 0 0 0 0.75em;
    }
    .row.\35 0\25 {
        margin: 0 0 -1px -0.75em;
    }
    .row.uniform.\35 0\25>* {
        padding: 0.75em 0 0 0.75em;
    }
    .row.uniform.\35 0\25 {
        margin: -0.75em 0 -1px -0.75em;
    }
    .row.\32 5\25>* {
        padding: 0 0 0 0.375em;
    }
    .row.\32 5\25 {
        margin: 0 0 -1px -0.375em;
    }
    .row.uniform.\32 5\25>* {
        padding: 0.375em 0 0 0.375em;
    }
    .row.uniform.\32 5\25 {
        margin: -0.375em 0 -1px -0.375em;
    }
    .\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) {
    .row>* {
        padding: 0 0 0 1.5em;
    }
    .row {
        margin: 0 0 -1px -1.5em;
    }
    .row.uniform>* {
        padding: 1.5em 0 0 1.5em;
    }
    .row.uniform {
        margin: -1.5em 0 -1px -1.5em;
    }
    .row.\32 00\25>* {
        padding: 0 0 0 3em;
    }
    .row.\32 00\25 {
        margin: 0 0 -1px -3em;
    }
    .row.uniform.\32 00\25>* {
        padding: 3em 0 0 3em;
    }
    .row.uniform.\32 00\25 {
        margin: -3em 0 -1px -3em;
    }
    .row.\31 50\25>* {
        padding: 0 0 0 2.25em;
    }
    .row.\31 50\25 {
        margin: 0 0 -1px -2.25em;
    }
    .row.uniform.\31 50\25>* {
        padding: 2.25em 0 0 2.25em;
    }
    .row.uniform.\31 50\25 {
        margin: -2.25em 0 -1px -2.25em;
    }
    .row.\35 0\25>* {
        padding: 0 0 0 0.75em;
    }
    .row.\35 0\25 {
        margin: 0 0 -1px -0.75em;
    }
    .row.uniform.\35 0\25>* {
        padding: 0.75em 0 0 0.75em;
    }
    .row.uniform.\35 0\25 {
        margin: -0.75em 0 -1px -0.75em;
    }
    .row.\32 5\25>* {
        padding: 0 0 0 0.375em;
    }
    .row.\32 5\25 {
        margin: 0 0 -1px -0.375em;
    }
    .row.uniform.\32 5\25>* {
        padding: 0.375em 0 0 0.375em;
    }
    .row.uniform.\32 5\25 {
        margin: -0.375em 0 -1px -0.375em;
    }
    .\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%;
    }
}

@media screen and (max-width: 320px) {
    .row>* {
        padding: 0 0 0 1.5em;
    }
    .row {
        margin: 0 0 -1px -1.5em;
    }
    .row.uniform>* {
        padding: 1.5em 0 0 1.5em;
    }
    .row.uniform {
        margin: -1.5em 0 -1px -1.5em;
    }
    .row.\32 00\25>* {
        padding: 0 0 0 3em;
    }
    .row.\32 00\25 {
        margin: 0 0 -1px -3em;
    }
    .row.uniform.\32 00\25>* {
        padding: 3em 0 0 3em;
    }
    .row.uniform.\32 00\25 {
        margin: -3em 0 -1px -3em;
    }
    .row.\31 50\25>* {
        padding: 0 0 0 2.25em;
    }
    .row.\31 50\25 {
        margin: 0 0 -1px -2.25em;
    }
    .row.uniform.\31 50\25>* {
        padding: 2.25em 0 0 2.25em;
    }
    .row.uniform.\31 50\25 {
        margin: -2.25em 0 -1px -2.25em;
    }
    .row.\35 0\25>* {
        padding: 0 0 0 0.75em;
    }
    .row.\35 0\25 {
        margin: 0 0 -1px -0.75em;
    }
    .row.uniform.\35 0\25>* {
        padding: 0.75em 0 0 0.75em;
    }
    .row.uniform.\35 0\25 {
        margin: -0.75em 0 -1px -0.75em;
    }
    .row.\32 5\25>* {
        padding: 0 0 0 0.375em;
    }
    .row.\32 5\25 {
        margin: 0 0 -1px -0.375em;
    }
    .row.uniform.\32 5\25>* {
        padding: 0.375em 0 0 0.375em;
    }
    .row.uniform.\32 5\25 {
        margin: -0.375em 0 -1px -0.375em;
    }
    .\31 2u\28xxsmall\29,
    .\31 2u\24\28xxsmall\29 {
        width: 100%;
        clear: none;
        margin-left: 0;
    }
    .\31 1u\28xxsmall\29,
    .\31 1u\24\28xxsmall\29 {
        width: 91.6666666667%;
        clear: none;
        margin-left: 0;
    }
    .\31 0u\28xxsmall\29,
    .\31 0u\24\28xxsmall\29 {
        width: 83.3333333333%;
        clear: none;
        margin-left: 0;
    }
    .\39 u\28xxsmall\29,
    .\39 u\24\28xxsmall\29 {
        width: 75%;
        clear: none;
        margin-left: 0;
    }
    .\38 u\28xxsmall\29,
    .\38 u\24\28xxsmall\29 {
        width: 66.6666666667%;
        clear: none;
        margin-left: 0;
    }
    .\37 u\28xxsmall\29,
    .\37 u\24\28xxsmall\29 {
        width: 58.3333333333%;
        clear: none;
        margin-left: 0;
    }
    .\36 u\28xxsmall\29,
    .\36 u\24\28xxsmall\29 {
        width: 50%;
        clear: none;
        margin-left: 0;
    }
    .\35 u\28xxsmall\29,
    .\35 u\24\28xxsmall\29 {
        width: 41.6666666667%;
        clear: none;
        margin-left: 0;
    }
    .\34 u\28xxsmall\29,
    .\34 u\24\28xxsmall\29 {
        width: 33.3333333333%;
        clear: none;
        margin-left: 0;
    }
    .\33 u\28xxsmall\29,
    .\33 u\24\28xxsmall\29 {
        width: 25%;
        clear: none;
        margin-left: 0;
    }
    .\32 u\28xxsmall\29,
    .\32 u\24\28xxsmall\29 {
        width: 16.6666666667%;
        clear: none;
        margin-left: 0;
    }
    .\31 u\28xxsmall\29,
    .\31 u\24\28xxsmall\29 {
        width: 8.3333333333%;
        clear: none;
        margin-left: 0;
    }
    .\31 2u\24\28xxsmall\29+*,
    .\31 1u\24\28xxsmall\29+*,
    .\31 0u\24\28xxsmall\29+*,
    .\39 u\24\28xxsmall\29+*,
    .\38 u\24\28xxsmall\29+*,
    .\37 u\24\28xxsmall\29+*,
    .\36 u\24\28xxsmall\29+*,
    .\35 u\24\28xxsmall\29+*,
    .\34 u\24\28xxsmall\29+*,
    .\33 u\24\28xxsmall\29+*,
    .\32 u\24\28xxsmall\29+*,
    .\31 u\24\28xxsmall\29+* {
        clear: left;
    }
    .\-11u\28xxsmall\29 {
        margin-left: 91.66667%;
    }
    .\-10u\28xxsmall\29 {
        margin-left: 83.33333%;
    }
    .\-9u\28xxsmall\29 {
        margin-left: 75%;
    }
    .\-8u\28xxsmall\29 {
        margin-left: 66.66667%;
    }
    .\-7u\28xxsmall\29 {
        margin-left: 58.33333%;
    }
    .\-6u\28xxsmall\29 {
        margin-left: 50%;
    }
    .\-5u\28xxsmall\29 {
        margin-left: 41.66667%;
    }
    .\-4u\28xxsmall\29 {
        margin-left: 33.33333%;
    }
    .\-3u\28xxsmall\29 {
        margin-left: 25%;
    }
    .\-2u\28xxsmall\29 {
        margin-left: 16.66667%;
    }
    .\-1u\28xxsmall\29 {
        margin-left: 8.33333%;
    }
}


/* Basic */

body {
    background: #fff;
}

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;
}

body,
input,
select,
textarea {
    color: #666;
    font-family: "Open Sans", sans-serif;
    font-size: 16pt;
    font-weight: normal;
    line-height: 1.65em;
}

a {
    -moz-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    -webkit-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    -ms-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    color: var(--cp-light);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.location_ul{margin-top: 5%;}
.location_ul li img{
    height: 400px;
    width: auto;
}

strong,
b {
    color: #555;
    font-weight: bolder;
}

em,
i {
    font-style: italic;
}

p {
    margin: 0 0 0em 0;
    font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #555;
    line-height: 1em;
    margin: 0 0 1em 0;
    font-weight: normal;
}

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

h1 {
    font-size: 4.5em;
    line-height: 1.35em;
}

h2 {
    font-size: 2em;
    line-height: 1.35em;
}

h3 {
    font-size: 1.35em;
    line-height: 1.5em;
}

h4 {
    font-size: 1.25em;
    line-height: 1.5em;
}

h5 {
    font-size: 0.9em;
    line-height: 1.5em;
}

h6 {
    font-size: 0.7em;
    line-height: 1.5em;
}

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

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

hr {
    border: 0;
    border-bottom: solid 2px rgba(256, 256, 256, 0.5);
    margin: 2em 0;
}

hr.major {
    margin: 3em 0;
}

blockquote {
    border-left: solid 4px rgba(144, 144, 144, 0.5);
    font-style: italic;
    margin: 0 0 2em 0;
    padding: 0.5em 0 0.5em 2em;
}

code {
    background: rgba(144, 144, 144, 0.075);
    border-radius: 4px;
    border: solid 1px rgba(144, 144, 144, 0.5);
    font-family: "Courier New", monospace;
    font-size: 0.9em;
    margin: 0 0.25em;
    padding: 0.25em 0.65em;
}

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

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

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

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

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


/* Section/Article */

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

header p {
    color: #999;
    margin: 0 0 1.5em 0;
    position: relative;
}

header h2+p {
    font-size: 1.25em;
    line-height: 1.5em;
    margin-top: -1em;
}

header h3+p {
    font-size: 1.1em;
    line-height: 1.5em;
    margin-top: -0.8em;
}

header h4+p,
header h5+p,
header h6+p {
    font-size: 0.9em;
    line-height: 1.5em;
    margin-top: -0.6em;
}

header.major {
    margin: 0 0 0em 0;
}

header.major:after {
    background: #555;
    content: '';
    display: inline-block;
    height: 1px;
    margin-top: 1.5em;
    width: 6em;
}

header.major h2,
header.major h3,
header.major h4,
header.major h5,
header.major h6 {
    margin: 50px 0px 0px 0px;
}

header.major p {
    margin: 0.7em 0 0 0;
}

header.special {
    text-align: center;
}

/* Form */

form {
    margin: 0 0 2em 0;
}

label {
    color: var(--cp-dark);
    display: block;
    font-size: 0.9em;
    font-weight: 600;
    margin: 0 0 1em 0;
}

input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    background: #f2f2f2;
    border-radius: 4px;
    border: none;
    border: solid 1px var(--cp-dark);
    color: var(--cp-dark);
    display: block;
    outline: 0;
    padding: 0 1em;
    text-decoration: none;
    width: 100%;
}

input[type="text"]:invalid,
input[type="password"]:invalid,
input[type="email"]:invalid,
select:invalid,
textarea:invalid {
    box-shadow: none;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    border-color: var(--cp-light);
}

/* DROPDOWN SELECT */

select {
    color: white;
    background-attachment: fixed, fixed, fixed;
    background-image: url("images/overlay2.png"), url("images/overlay4.svg"), linear-gradient(45deg, var(--cp-dark) 25%, var(--cp-mid) 60%, #3d4946 90%);
    background-position: top left, center center, center center;
    background-size: auto, cover, cover;
    border: none;
    font-weight: 500;
}

@media screen and (max-width: 680px) { 
    select {
        margin-bottom: 30px;
    }
}

select option {
    background: white;
    color: #363636;
    font-size: 18px;
}

.select-wrapper {
    text-decoration: none;
    display: block;
    position: relative;
}

.select-wrapper:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: FontAwesome;
    color: white;
    content: '\f078';
    display: block;
    height: 2.75em;
    line-height: 2.75em;
    pointer-events: none;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 2.75em;
}

.select-wrapper select::-ms-expand {
    display: none;
}

input[type="text"],
input[type="password"],
input[type="email"],
select {
    height: 2.75em;
}

textarea {
    padding: 0.75em 1em;
}

::-webkit-input-placeholder {
    color: #999 !important;
    opacity: 1.0;
}

:-moz-placeholder {
    color: #999 !important;
    opacity: 1.0;
}

::-moz-placeholder {
    color: #999 !important;
    opacity: 1.0;
}

:-ms-input-placeholder {
    color: #999 !important;
    opacity: 1.0;
}

.formerize-placeholder {
    color: #999 !important;
    opacity: 1.0;
}


/* Box */

.box {
    border-radius: 4px;
    border: solid 1px rgba(144, 144, 144, 0.5);
    margin-bottom: 2em;
    padding: 1.5em;
}

.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;
}


/* Icon */

.icon {
    text-decoration: none;
    border-bottom: none;
    position: relative;
}

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

.icon>.label {
    display: none;
}

.icon.style1:before {
    color: #c3e895;
}

.icon.style2:before {
    color: #8addaa;
    cursor: pointer
}

.icon.style3:before {
    color: #6bd4c8;
    cursor: pointer
}

.icon.style4:before {
    color: #57aed3;
    cursor: pointer
}

.icon.style5:before {
    color: var(--cp-light);
}

.icon.style6:before {
    color: #6b88e6;
}

.icon.major {
    text-decoration: none;
    color: #555;
    cursor: default;
    display: inline-block;
    margin: 0 0 1.5em 0;
}

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

.icon.major:before {
    font-size: 4em;
    line-height: 1em;
}

/* START: Sponsors */
.sponsors-all {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: normal; 
    align-items: flex-start;
    
}

#nova-ims-logo {
    padding: 20px;
}

.sponsor-circle {
    width: 150px;
    height: auto;
    padding: 5px;
    align-items: center;
    margin-top: 2px;
}

.invite-circle {
    width: 165px;
    height: auto;
    align-items: center;
    margin-top: 2px;
}

.sponsor-circle-div {
    display: flex;
    background-color: white;
    height: 180px;
    width: 180px;
    border-radius: 50%;
    text-align: center;
    outline: none;
    display: block;
    margin-top: 20px;
    align-items: center;
    justify-content: center; 
    overflow: hidden;
}

.gold{
    border: 6px solid #DAA520;
    margin: 0px 0px 0px 100px;
}

.gold:hover {
    border: 6px solid #75c556;
}

.silver{
    border: 6px solid #C0C0C0;
    margin: 0px 0px 0px 100px;
}

.silver:hover {
    border: 6px solid #65c6e4;
}

.bronze{
    border: 6px solid #CD7F32;
    margin: 0px 0px 0px 100px;
}

.bronze:hover {
    border: 6px solid #ff413b;
}

.partner{
    border: 6px solid #eeeeee;
    margin: 0px 0px 0px 100px;
}

.partner:hover {
    border: 6px solid #888888;
}


/* END: Sponsors */

/* START: Contact */

.contact-all {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: space-between; 
    align-items: flex-start;
}

/* END: Contact */

/* List */
ol {
    list-style: decimal;
    margin: 0 0 2em 0;
    padding-left: 1.25em;
}

ol li {
    padding-left: 0.25em;
}

ul {
    list-style: disc;
    margin: 0 0 2em 0;
    padding-left: 1em;
}

ul li {
    padding-left: 0.5em;
}

ul.alt {
    list-style: none;
    padding-left: 0;
}

ul.alt li {
    border-top: solid 1px rgba(144, 144, 144, 0.5);
    padding: 0.5em 0;
}

ul.alt li:first-child {
    border-top: 0;
    padding-top: 0;
}

ul.icons {
    cursor: default;
    list-style: none;
    padding-left: 0;
}

ul.icons li {
    display: inline-block;
    padding: 0 1.25em 0 0;
}

ul.icons li:last-child {
    padding-right: 0;
}

ul.icons li .icon:before {
    font-size: 1.5em;
}

ul.major-icons {
    list-style: none;
    padding-left: 0;
}

ul.major-icons li {
    display: inline-block;
    padding: 2.5em;
    text-align: center;
}

ul.major-icons li .icon {
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border-radius: 4px;
    border: solid 1px rgba(144, 144, 144, 0.5);
    display: inline-block;
    height: 8em;
    line-height: 8em;
    margin: 0;
    text-align: center;
    width: 8em;
}

ul.major-icons li .icon:before {
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    display: inline-block;
    line-height: inherit;
}

ul.actions {
    cursor: default;
    list-style: none;
    padding-left: 0;
}

ul.actions li {
    display: inline-block;
    padding: 0 1em 0 0;
    vertical-align: middle;
}

ul.actions li:last-child {
    padding-right: 0;
}

ul.actions.small li {
    padding: 0 0.5em 0 0;
}

ul.actions.vertical li {
    display: block;
    padding: 1em 0 0 0;
}

ul.actions.vertical li:first-child {
    padding-top: 0;
}

ul.actions.vertical li>* {
    margin-bottom: 0;
}

ul.actions.vertical.small li {
    padding: 0.5em 0 0 0;
}

ul.actions.vertical.small li:first-child {
    padding-top: 0;
}

ul.actions.uniform li>* {
    min-width: 12em;
}

ul.actions.fit {
    display: table;
    margin-left: -1em;
    padding: 0;
    table-layout: fixed;
    width: calc(100% + 1em);
}

ul.actions.fit li {
    display: table-cell;
    padding: 0 0 0 1em;
}

ul.actions.fit li>* {
    margin-bottom: 0;
}

ul.actions.fit.small {
    margin-left: -0.5em;
    width: calc(100% + 0.5em);
}

ul.actions.fit.small li {
    padding: 0 0 0 0.5em;
}

dl {
    margin: 0 0 2em 0;
}


/* Table */

.table-wrapper {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
}

table {
    margin: 0 0 2em 0;
    width: 100%;
}

table tbody tr {
    border-left: 0;
    border-right: 0;
}

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

table td {
    padding: 0.75em 0.75em;
}

li:hover {
    cursor: pointer;
}

table th {
    color: rgb(0, 0, 0);
    font-size: 1em;
    font-weight: 400;
    padding: 0 0.75em 0.75em 0.75em;
    text-align: center;
}

table thead {
    border-bottom: solid 1px rgba(144, 144, 144, 0.5);
}

table tfoot {
    border-top: solid 1px rgba(144, 144, 144, 0.5);
}

table.alt {
    border-collapse: separate;
}

table.alt tbody tr td {
    border: solid 1px var(--cp-dark);
    border-left-width: 0;
    border-top-width: 0;
}

table.alt tbody tr td:first-child {
    border-left-width: 1px;
}

table.alt tbody tr:first-child td {
    border-top-width: 1px;
}

table.alt thead {
    border-bottom: 0;
}

table.alt tfoot {
    border-top: 0;
}

/* Main */

.main {
    padding: 3em 0 4em 0;
}

.main.style1 {
    /* background-image:url(images/team-background.jpg); */
    background-color: #fff;
    background-position: top left, center center, center center;
    background-size: cover;
    text-align: justify;
}

.main.style2 {
    background-color: var(--cp-dark);
    background-image: url("../../images/header.jpg");
    background-size: cover;
    position: relative;
    /* background-image: linear-gradient(45deg, var(--cp-light), #180016 70%); */
    color: white;
}

.main.style1 .intext_link{
    color: #0c2138;
}

.main.style1 .intext_link:hover{
    color: #0c2138;
    text-decoration: underline;
}

.main.style2 .intext_link{
    color: #1DCDFE;
}

.main.style2 .intext_link:hover{
    color: #1DCDFE;
    text-decoration: underline;
}

.main.style2 h1,
.main.style2 h2,
.main.style2 h3,
.main.style2 h4,
.main.style2 h5,
.main.style2 h6,
.main.style2 strong {
    color: #ffffff;
}

.main.style2 header p {
    color: #ffffff;
}

.main.style2 header.major:after {
    background: #ffffff;
}

.main.style2 ul.major-icons li .icon {
    border-color: #ffffff;
}

.main.style2 .icon.major {
    color: #ffffff;
}

/* Footer */

#footer {
    padding: 2em 0 2em 0;
    background-color: var(--cp-dark);
    color: rgba(255, 255, 255, 0.75);
    /*background-attachment: fixed, fixed, fixed;
    background-image: url("images/overlay2.png"), url("images/overlay4.svg"), linear-gradient(45deg, var(--cp-dark) 5%, var(--cp-mid) 10%, var(--cp-mid), var(--cp-black));
    background-position: top left, center center, center center;
    background-size: auto, cover, cover;*/
    text-align: center;
}

#footer a {
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

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

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

#footer header p {
    color: #ffffff;
}

#footer header.major:after {
    background: #ffffff;
}

#footer input[type="submit"],
#footer input[type="reset"],
#footer input[type="button"],
#footer button,
#footer .button {
    box-shadow: inset 0 0 0 1px #ffffff;
    color: #ffffff !important;
}

#footer input[type="submit"]:hover,
#footer input[type="reset"]:hover,
#footer input[type="button"]:hover,
#footer button:hover,
#footer .button:hover {
    background-color: rgba(255, 255, 255, 0.125);
}

#footer input[type="submit"]:active,
#footer input[type="reset"]:active,
#footer input[type="button"]:active,
#footer button:active,
#footer .button:active {
    background-color: rgba(255, 255, 255, 0.25);
}

#footer input[type="submit"].special,
#footer input[type="reset"].special,
#footer input[type="button"].special,
#footer button.special,
#footer .button.special {
    background-color: #ffffff;
    box-shadow: inset 0 0 0 1px #ffffff !important;
    color: #4686a0 !important;
}

#footer input[type="submit"].special:hover,
#footer input[type="reset"].special:hover,
#footer input[type="button"].special:hover,
#footer button.special:hover,
#footer .button.special:hover {
    background-color: rgba(255, 255, 255, 0.125) !important;
    color: #ffffff !important;
}

#footer input[type="submit"].special:active,
#footer input[type="reset"].special:active,
#footer input[type="button"].special:active,
#footer button.special:active,
#footer .button.special:active {
    background-color: rgba(255, 255, 255, 0.25) !important;
}

#footer ul.major-icons li .icon {
    border-color: #ffffff;
}

#footer .icon.major {
    color: #ffffff;
}

#footer .icons {
    margin: 0;
}

#footer .copyright {
    font-size: 13pt;
    list-style: none;
    margin: 2em 0 0 0;
    padding: 0;
}

#footer .copyright li {
    border-left: solid 1px;
    display: inline-block;
    line-height: 1em;
    margin-left: 1em;
    padding: 0 0 0 1em;
}

#footer .copyright li:first-child {
    border-left: 0;
    margin-left: 0;
    padding: 0;
}


/* XLarge */

@media screen and (max-width: 2560px) {
    /* Basic */
    body,
    input,
    select,
    textarea {
        font-size: 14pt;
    }
    /* Header */
    #header {
        padding: 2em 0 6em 0;
    }
}


/* Large */

@media screen and (max-width: 1140px) {
    /* Basic */
    body,
    input,
    select,
    textarea {
        font-size: 13pt;
    }
    h1 br,
    h2 br,
    h3 br,
    h4 br,
    h5 br,
    h6 br {
        display: none;
    }
    /* List */
    ul.major-icons li {
        padding: 2em;
    }
    ul.major-icons li .icon {
        height: 8em;
        line-height: 8em;
        width: 8em;
    }
    /* Main */
    .main {
        padding: 4em 0 2em 0;
    }
    .main.style2 {
        background-attachment: scroll;
    }
    /* Header */
    #header {
        padding: 5em 0 5em 0;
        background-attachment: scroll;
    }
    #header br {
        display: inline;
    }
    /* Footer */
    #footer {
        padding: 4em 0 4em 0;
        background-attachment: scroll;
    }
}


/* Medium */

@media screen and (max-width: 980px) {
    /* List */
    ul.major-icons li {
        padding: 2em;
    }
    ul.major-icons li .icon {
        height: 7em;
        line-height: 7em;
        width: 7em;
    }
    /* Main */
    .main {
        padding: 5em 3em 3em 3em;
    }
    /* Header */
    #header {
        padding: 5.5em 3em 8em 3em;
    }
    /* Footer */
    #footer {
        padding: 5em 3em 5em 3em;
    }
    /* Two */
    #speakers-full {
        text-align: center;
    }    
}


/* Small */

@media screen and (max-width: 736px) {
    /* Basic */
    body,
    input,
    select,
    textarea {
        font-size: 12pt;
    }
    h1 {
        font-size: 2.5em;
    }
    h2 {
        font-size: 1.5em;
    }
    h3 {
        font-size: 1.1em;
    }
    h4 {
        font-size: 1em;
    }
    /* List */
    ul.major-icons li {
        padding: 1.5em;
    }
    ul.major-icons li .icon {
        height: 5em;
        line-height: 5em;
        width: 5em;
    }
    ul.major-icons li .icon:before {
        font-size: 42px;
    }
    /* Icon */
    .icon.major {
        margin: 0 0 1em 0;
    }
    /* Main */
    .main {
        padding: 3em 1.5em 1em 1.5em;
    }
    /* Header */
    #header {
        padding: 6em 3em 4em 3em;
    }
    #header .actions {
        margin: 4em 0 0 0;
    }
    /* Footer */
    #footer {
        padding: 3em 1.5em 3em 1.5em;
    }

}


/* XSmall */

@media screen and (max-width: 480px) {
    /* List */
    ul.actions {
        margin: 0 0 2em 0;
    }
    ul.actions li {
        display: block;
        padding: 1em 0 0 0;
        text-align: center;
        width: 100%;
    }
    ul.actions li:first-child {
        padding-top: 0;
    }
    ul.actions li>* {
        margin: 0 !important;
        width: 100%;
    }
    ul.actions li>*.icon:before {
        margin-left: -2em;
    }
    ul.actions.small li {
        padding: 0.5em 0 0 0;
    }
    ul.actions.small li:first-child {
        padding-top: 0;
    }

    /* Main */
    .main {
        padding: 2em 1.5em 3em 1.5em;
    }
    .partners{
        margin: 0px auto;
    }
    /* Header */
    #header {
        padding: 6em 2em 4em 2em;
    }
    #header br {
        display: none;
    }
    /* Footer */
    #footer {
        padding: 2em 1.5em 2em 1.5em;
    }
    #footer .copyright {
        margin: 1.5em 0 0 0;
    }
    #footer .copyright li {
        border: 0;
        display: block;
        margin: 1em 0 0 0;
        padding: 0;
    }
    #footer .copyright li:first-child {
        margin-top: 0;
    }
}


/* XXSmall */

@media screen and (max-width: 320px) {
    /* Basic */
    html,
    body {
        min-width: 320px;
    }
    .partners{
        margin: 0px auto;
    }
    /* Main */
    .main {
        padding: 2em 1em 0.1em 1em;
    }
    /* Header */
    #header {
        padding: 3em 1em 3em 1em;
    }
    /* Footer */
    #footer {
        padding: 2em 1em 2em 1em;
    }
}


/* Program content*/

.program-dropdown-main {
    color: var(--cp-dark);
    font-weight:bold;
}

.program-dropdown-sub, .program-dropdown-sub a:hover {
    color: var(--cp-dark);
}

.css3-tabstrip {
    width: 100%;
    height: 975px;
}

.css3-tabstrip,
.css3-tabstrip input[type="radio"]:checked+label {
    position: relative;
}

.css3-tabstrip li,
.css3-tabstrip input[type="radio"]+label {
    display: table-cell;
}

.css3-tabstrip li>div,
.css3-tabstrip input[type="radio"] {
    position: absolute;
}

.css3-tabstrip li>div,
.css3-tabstrip input[type="radio"]+label {
    border: solid 2px rgba(204, 204, 204, 0);
}

.css3-tabstrip {
    color: var(--cp-dark);
}

.css3-tabstrip li {
    vertical-align: top;
}

.css3-tabstrip li:first-child {
    margin-left: 8px;
}

.css3-tabstrip li>div {
    top: 34px;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8px;
    overflow: auto;
    background: #fff;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.css3-tabstrip input[type="radio"]+label {
    margin: 0 2px 0 0;
    padding: 0 1.2px;
    line-height: 32px;
    color: white;
    background: var(--cp-mid);
    text-align: center;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.css3-tabstrip input[type="radio"]:checked+label {
    z-index: 1;
    color: var(--cp-dark);
    background: #fff;
    border-bottom-color: #fff;
    cursor: default;
}

.css3-tabstrip input[type="radio"] {
    opacity: 0;
}

.css3-tabstrip input[type="radio"]~div {
    display: none;
}

.css3-tabstrip input[type="radio"]:checked:not(:disabled)~div {
    display: inline-block;
}

.css3-tabstrip input[type="radio"]:disabled+label {
    opacity: .5;
    cursor: no-drop;
}

.contact {
    max-width: 150px;
    height: 150px;
    border-radius: 50%;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

#scroller {
    position: relative;
}

.link_keynote {
    text-decoration: underline;
}

.link_keynote::after
{
  content: "";
  width: 15px;
  height: 15px;
  margin-left: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5z'/%3E%3Cpath fill-rule='evenodd' d='M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0v-5z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}

.link_presentation::after
{
  content: "";
  width: 15px;
  height: 15px;
  margin-left: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='black' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5z'/%3E%3Cpath fill-rule='evenodd' d='M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0v-5z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}

.link_workshopleader {
    text-decoration: underline;
}

.link_workshopleader::after
{
  content: "";
  width: 15px;
  height: 15px;
  margin-left: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5z'/%3E%3Cpath fill-rule='evenodd' d='M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0v-5z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}

/* videoWrapper */

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 25px;
    height: 0;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* START: MAPATHON */
.es-carousel ul{
    display:block;
}
/* END: MAPATHON */

/* mapbox */
#map{
    height: 400px;
    margin-bottom: 40px;
}
.keynote-topic{
    text-align: center;
    color: #fff;
   
}
.keynote-content{
    text-align: justify;
    color: #fff;
    
   
}