@charset "UTF-8";
/*
|--------------------------------------------------------------------------------
| CSS reset
|--------------------------------------------------------------------------------
*/
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,
caption,
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 none;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
html {
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  font-size: 1rem;
  font-family: Tahoma, Arial, sans-serif;
  line-height: 1;
  margin: 0;
  padding: 0;
}
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;
}
/*
|--------------------------------------------------------------------------------
| Mixin
|--------------------------------------------------------------------------------
*/
.slow {
  animation: blink 1300ms linear infinite;
  -moz-animation: blink 1300ms linear infinite;
  -webkit-animation: blink 1300ms linear infinite;
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.clearfix:after {
  content: "";
  clear: both;
  display: table;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}

/* DEFAULT FONT */
h1,
h2,
h3,
h4 {
    font-family: 'KalatexaDisplay', tahoma, sans-serif;
    line-height: 1.2em;
}

p,
span {
    font-family: 'KalatexaText', tahoma, sans-serif;
    line-height: 1.3em;
}

/* Microsite */
.-desktop,
.-desktop.-ipad {
    display: none !important;
}
 
.-clearfix:after {
    content: "";
    clear: both;
    display: block;
}

@media screen and (min-width:768px){
    .-desktop.-ipad {
        display: block !important;
    }
    .-mobile.-ipad {
        display: none !important;
    }
}
@media screen and (min-width:1024px){
    .-mobile {
        display: none !important;
    }
    .-desktop {
        display: block !important;
    }
}