
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_aafe69b1c04d486df94e3518.woff')format("woff");}.ff1{font-family:ff1;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_19a0a2108ddc59e132ea0710.woff')format("woff");}.ff2{font-family:ff2;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6e19052d0a7142823fe512d3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_612403290ed6336f0cc853e4.woff')format("woff");}.ff4{font-family:ff4;line-height:0.951000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_87c5597f74ddf7364769b1d3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6cb002e2120dcbb2244bcc2e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_92ad08e20691ddcf3ced7b32.woff')format("woff");}.ff7{font-family:ff7;line-height:0.779785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5dd8f93fe72a197588f4a144.woff')format("woff");}.ff8{font-family:ff8;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6ad39865b4a657cb4290d852.woff')format("woff");}.ff9{font-family:ff9;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3883a08acb50e26dde839d68.woff')format("woff");}.ffa{font-family:ffa;line-height:0.779785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2f945b9db4e367618a4fdf92.woff')format("woff");}.ffb{font-family:ffb;line-height:0.779785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_edb1620e0f9e5b3f8e297b18.woff')format("woff");}.ffc{font-family:ffc;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_9ad76ec6ef52b85ac079e5b9.woff')format("woff");}.ffd{font-family:ffd;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_4e6eebf11031932c0a8e3a9f.woff')format("woff");}.ffe{font-family:ffe;line-height:0.965820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_9045f8f10ffc45a5b173c911.woff')format("woff");}.fff{font-family:fff;line-height:0.779785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_e0850250585eb8da1d207587.woff')format("woff");}.ff10{font-family:ff10;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_120b3ccf5203dd963ece4f6c.woff')format("woff");}.ff11{font-family:ff11;line-height:0.779785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_590f65c882efbc2c69c1053e.woff')format("woff");}.ff12{font-family:ff12;line-height:0.779785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_f33b18ab2367891320087ea5.woff')format("woff");}.ff13{font-family:ff13;line-height:0.779785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_34ec46daaae02a82154eb52c.woff')format("woff");}.ff14{font-family:ff14;line-height:0.965820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_d9da84277f45bd4faf15a8b5.woff')format("woff");}.ff15{font-family:ff15;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_edb1620e0f9e5b3f8e297b18.woff')format("woff");}.ff16{font-family:ff16;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_2f945b9db4e367618a4fdf92.woff')format("woff");}.ff17{font-family:ff17;line-height:0.779785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_4e6eebf11031932c0a8e3a9f.woff')format("woff");}.ff18{font-family:ff18;line-height:0.965820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_120b3ccf5203dd963ece4f6c.woff')format("woff");}.ff19{font-family:ff19;line-height:0.779785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_9ad76ec6ef52b85ac079e5b9.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_9045f8f10ffc45a5b173c911.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.779785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_ca8b603455266484a3db832e.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_454db217ded22e4347e28998.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_e0850250585eb8da1d207587.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_edb1620e0f9e5b3f8e297b18.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_2f945b9db4e367618a4fdf92.woff')format("woff");}.ff20{font-family:ff20;line-height:0.779785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_9ad76ec6ef52b85ac079e5b9.woff')format("woff");}.ff21{font-family:ff21;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_35706d756e3673f13dbdd947.woff')format("woff");}.ff22{font-family:ff22;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_4e6eebf11031932c0a8e3a9f.woff')format("woff");}.ff23{font-family:ff23;line-height:0.965820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_9045f8f10ffc45a5b173c911.woff')format("woff");}.ff24{font-family:ff24;line-height:0.779785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_2eb2b3214fefe92a55db9ed0.woff')format("woff");}.ff25{font-family:ff25;line-height:0.779785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_590f65c882efbc2c69c1053e.woff')format("woff");}.ff26{font-family:ff26;line-height:0.779785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_d9da84277f45bd4faf15a8b5.woff')format("woff");}.ff27{font-family:ff27;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_edb1620e0f9e5b3f8e297b18.woff')format("woff");}.ff28{font-family:ff28;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_9ad76ec6ef52b85ac079e5b9.woff')format("woff");}.ff29{font-family:ff29;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_13f73a07c9bf4d2cb41f2414.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.779785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_35706d756e3673f13dbdd947.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_842596c321185811c5835939.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_d9da84277f45bd4faf15a8b5.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_e0850250585eb8da1d207587.woff')format("woff");}.ff2e{font-family:ff2e;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_edb1620e0f9e5b3f8e297b18.woff')format("woff");}.ff2f{font-family:ff2f;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_9ad76ec6ef52b85ac079e5b9.woff')format("woff");}.ff30{font-family:ff30;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_842596c321185811c5835939.woff')format("woff");}.ff31{font-family:ff31;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_4e6eebf11031932c0a8e3a9f.woff')format("woff");}.ff32{font-family:ff32;line-height:0.965820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_2f945b9db4e367618a4fdf92.woff')format("woff");}.ff33{font-family:ff33;line-height:0.779785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_d9da84277f45bd4faf15a8b5.woff')format("woff");}.ff34{font-family:ff34;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_4e6eebf11031932c0a8e3a9f.woff')format("woff");}.ff35{font-family:ff35;line-height:0.965820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_edb1620e0f9e5b3f8e297b18.woff')format("woff");}.ff36{font-family:ff36;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_3883a08acb50e26dde839d68.woff')format("woff");}.ff37{font-family:ff37;line-height:0.779785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_04ec117d30f7aceafec26d03.woff')format("woff");}.ff38{font-family:ff38;line-height:0.960938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_f9e62ee26b5cf131f51b1389.woff')format("woff");}.ff39{font-family:ff39;line-height:0.965820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_5dd8f93fe72a197588f4a144.woff')format("woff");}.ff3a{font-family:ff3a;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_edb1620e0f9e5b3f8e297b18.woff')format("woff");}.ff3b{font-family:ff3b;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_2f945b9db4e367618a4fdf92.woff')format("woff");}.ff3c{font-family:ff3c;line-height:0.779785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_4e6eebf11031932c0a8e3a9f.woff')format("woff");}.ff3d{font-family:ff3d;line-height:0.965820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_9ad76ec6ef52b85ac079e5b9.woff')format("woff");}.ff3e{font-family:ff3e;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_120b3ccf5203dd963ece4f6c.woff')format("woff");}.ff3f{font-family:ff3f;line-height:0.779785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_9045f8f10ffc45a5b173c911.woff')format("woff");}.ff40{font-family:ff40;line-height:0.779785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_e0850250585eb8da1d207587.woff')format("woff");}.ff41{font-family:ff41;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_590f65c882efbc2c69c1053e.woff')format("woff");}.ff42{font-family:ff42;line-height:0.779785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_3883a08acb50e26dde839d68.woff')format("woff");}.ff43{font-family:ff43;line-height:0.779785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_ca8b603455266484a3db832e.woff')format("woff");}.ff44{font-family:ff44;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_454db217ded22e4347e28998.woff')format("woff");}.ff45{font-family:ff45;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_13f73a07c9bf4d2cb41f2414.woff')format("woff");}.ff46{font-family:ff46;line-height:0.779785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_f33b18ab2367891320087ea5.woff')format("woff");}.ff47{font-family:ff47;line-height:0.779785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url('chunks/assets/font_2eb2b3214fefe92a55db9ed0.woff')format("woff");}.ff48{font-family:ff48;line-height:0.779785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_34ec46daaae02a82154eb52c.woff')format("woff");}.ff49{font-family:ff49;line-height:0.965820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a;src:url('chunks/assets/font_6ad39865b4a657cb4290d852.woff')format("woff");}.ff4a{font-family:ff4a;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b;src:url('chunks/assets/font_4a3373666bec7ea41ff98827.woff')format("woff");}.ff4b{font-family:ff4b;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c;src:url('chunks/assets/font_6ad39865b4a657cb4290d852.woff')format("woff");}.ff4c{font-family:ff4c;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d;src:url('chunks/assets/font_94c97e15234a69a9e79b895d.woff')format("woff");}.ff4d{font-family:ff4d;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e;src:url('chunks/assets/font_4a3373666bec7ea41ff98827.woff')format("woff");}.ff4e{font-family:ff4e;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f;src:url('chunks/assets/font_6ad39865b4a657cb4290d852.woff')format("woff");}.ff4f{font-family:ff4f;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff50;src:url('chunks/assets/font_94c97e15234a69a9e79b895d.woff')format("woff");}.ff50{font-family:ff50;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51;src:url('chunks/assets/font_4a3373666bec7ea41ff98827.woff')format("woff");}.ff51{font-family:ff51;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff52;src:url('chunks/assets/font_842596c321185811c5835939.woff')format("woff");}.ff52{font-family:ff52;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff53;src:url('chunks/assets/font_4a3373666bec7ea41ff98827.woff')format("woff");}.ff53{font-family:ff53;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54;src:url('chunks/assets/font_94c97e15234a69a9e79b895d.woff')format("woff");}.ff54{font-family:ff54;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff55;src:url('chunks/assets/font_adb010e9e4d374755b796d99.woff')format("woff");}.ff55{font-family:ff55;line-height:0.779785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff56;src:url('chunks/assets/font_842596c321185811c5835939.woff')format("woff");}.ff56{font-family:ff56;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff57;src:url('chunks/assets/font_4a3373666bec7ea41ff98827.woff')format("woff");}.ff57{font-family:ff57;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff58;src:url('chunks/assets/font_94c97e15234a69a9e79b895d.woff')format("woff");}.ff58{font-family:ff58;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff59;src:url('chunks/assets/font_842596c321185811c5835939.woff')format("woff");}.ff59{font-family:ff59;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5a;src:url('chunks/assets/font_073e93e2a24c32137c141f37.woff')format("woff");}.ff5a{font-family:ff5a;line-height:0.960938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5b;src:url('chunks/assets/font_94c97e15234a69a9e79b895d.woff')format("woff");}.ff5b{font-family:ff5b;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5c;src:url('chunks/assets/font_4a3373666bec7ea41ff98827.woff')format("woff");}.ff5c{font-family:ff5c;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5d;src:url('chunks/assets/font_adb010e9e4d374755b796d99.woff')format("woff");}.ff5d{font-family:ff5d;line-height:0.779785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5e;src:url('chunks/assets/font_073e93e2a24c32137c141f37.woff')format("woff");}.ff5e{font-family:ff5e;line-height:0.960938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5f;src:url('chunks/assets/font_94c97e15234a69a9e79b895d.woff')format("woff");}.ff5f{font-family:ff5f;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff60;src:url('chunks/assets/font_3883a08acb50e26dde839d68.woff')format("woff");}.ff60{font-family:ff60;line-height:0.779785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff61;src:url('chunks/assets/font_611257744ab2e0d2c2673072.woff')format("woff");}.ff61{font-family:ff61;line-height:0.965820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff62;src:url('chunks/assets/font_04ec117d30f7aceafec26d03.woff')format("woff");}.ff62{font-family:ff62;line-height:0.960938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff63;src:url('chunks/assets/font_41d9e93ca8193a0fe5f6ce8f.woff')format("woff");}.ff63{font-family:ff63;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff64;src:url('chunks/assets/font_f0c9af030cf1e8c4bb5b853f.woff')format("woff");}.ff64{font-family:ff64;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff65;src:url('chunks/assets/font_672e61f439e80c9461ac3fa0.woff')format("woff");}.ff65{font-family:ff65;line-height:0.951172;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff66;src:url('chunks/assets/font_3de90527daefe6c0aad2e8e5.woff')format("woff");}.ff66{font-family:ff66;line-height:0.960938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff67;src:url('chunks/assets/font_ff27048a2fb0ad508016616f.woff')format("woff");}.ff67{font-family:ff67;line-height:0.965820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff68;src:url('chunks/assets/font_af71e5aabeb8bd3a0a362ca1.woff')format("woff");}.ff68{font-family:ff68;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff69;src:url('chunks/assets/font_d130cd37d2b6acb3532030c2.woff')format("woff");}.ff69{font-family:ff69;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6a;src:url('chunks/assets/font_1821ddee70a4e6c100432b73.woff')format("woff");}.ff6a{font-family:ff6a;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6b;src:url('chunks/assets/font_48dd9e536addd8572203b8e1.woff')format("woff");}.ff6b{font-family:ff6b;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6c;src:url('chunks/assets/font_ef26c3ff8b72db605e00b316.woff')format("woff");}.ff6c{font-family:ff6c;line-height:0.762695;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6d;src:url('chunks/assets/font_dc7b9ad7da2a70c221e592c4.woff')format("woff");}.ff6d{font-family:ff6d;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6e;src:url('chunks/assets/font_ef26c3ff8b72db605e00b316.woff')format("woff");}.ff6e{font-family:ff6e;line-height:0.762695;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6f;src:url('chunks/assets/font_08b3f99eb3173ff65dd789aa.woff')format("woff");}.ff6f{font-family:ff6f;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff70;src:url('chunks/assets/font_ef26c3ff8b72db605e00b316.woff')format("woff");}.ff70{font-family:ff70;line-height:0.762695;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff71;src:url('chunks/assets/font_9ef93b1a040fcdc0e4f599d0.woff')format("woff");}.ff71{font-family:ff71;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff72;src:url('chunks/assets/font_2f4bb3e88433aee0baeee462.woff')format("woff");}.ff72{font-family:ff72;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff73;src:url('chunks/assets/font_932d039195295515637f333a.woff')format("woff");}.ff73{font-family:ff73;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff74;src:url('chunks/assets/font_ef26c3ff8b72db605e00b316.woff')format("woff");}.ff74{font-family:ff74;line-height:0.762695;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff75;src:url('chunks/assets/font_2bc49be4f8c8f55150558100.woff')format("woff");}.ff75{font-family:ff75;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff76;src:url('chunks/assets/font_ef26c3ff8b72db605e00b316.woff')format("woff");}.ff76{font-family:ff76;line-height:0.762695;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff77;src:url('chunks/assets/font_2bc49be4f8c8f55150558100.woff')format("woff");}.ff77{font-family:ff77;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff78;src:url('chunks/assets/font_ef26c3ff8b72db605e00b316.woff')format("woff");}.ff78{font-family:ff78;line-height:0.762695;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff79;src:url('chunks/assets/font_c4d84d94c432edcd1005c30f.woff')format("woff");}.ff79{font-family:ff79;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7a;src:url('chunks/assets/font_92dad466e0ffaf9d7ea19d27.woff')format("woff");}.ff7a{font-family:ff7a;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7b;src:url('chunks/assets/font_b65312e2eb5fa661cf5713ca.woff')format("woff");}.ff7b{font-family:ff7b;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7c;src:url('chunks/assets/font_3c5a3a196be74121b6e9f241.woff')format("woff");}.ff7c{font-family:ff7c;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7d;src:url('chunks/assets/font_1c929f1cc61a1bf5d21bb5d7.woff')format("woff");}.ff7d{font-family:ff7d;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7e;src:url('chunks/assets/font_918c2cb2943a6478304f4501.woff')format("woff");}.ff7e{font-family:ff7e;line-height:0.765137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7f;src:url('chunks/assets/font_f79c2346c1ea51990b25bb9c.woff')format("woff");}.ff7f{font-family:ff7f;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff80;src:url('chunks/assets/font_97f0354cadabbab772e3a301.woff')format("woff");}.ff80{font-family:ff80;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff81;src:url('chunks/assets/font_ef26c3ff8b72db605e00b316.woff')format("woff");}.ff81{font-family:ff81;line-height:0.762695;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff82;src:url('chunks/assets/font_253ed44abee1e245886c51c6.woff')format("woff");}.ff82{font-family:ff82;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff83;src:url('chunks/assets/font_0bb665bd5ed120ea217ca789.woff')format("woff");}.ff83{font-family:ff83;line-height:0.960938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff84;src:url('chunks/assets/font_ef26c3ff8b72db605e00b316.woff')format("woff");}.ff84{font-family:ff84;line-height:0.762695;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff85;src:url('chunks/assets/font_bbc93aea3305d65e9e37bb9d.woff')format("woff");}.ff85{font-family:ff85;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff86;src:url('chunks/assets/font_106a73d0b13f60684fb6c980.woff')format("woff");}.ff86{font-family:ff86;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff87;src:url('chunks/assets/font_2385a6bb7ec2b0f175990079.woff')format("woff");}.ff87{font-family:ff87;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff88;src:url('chunks/assets/font_106a73d0b13f60684fb6c980.woff')format("woff");}.ff88{font-family:ff88;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff89;src:url('chunks/assets/font_71a790d01a62bf602d2ad0d7.woff')format("woff");}.ff89{font-family:ff89;line-height:0.676000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8a;src:url('chunks/assets/font_0b3468b325f76167a171e785.woff')format("woff");}.ff8a{font-family:ff8a;line-height:0.895000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.216506,0.125000,-0.125000,0.216506,0,0);-ms-transform:matrix(0.216506,0.125000,-0.125000,0.216506,0,0);-webkit-transform:matrix(0.216506,0.125000,-0.125000,0.216506,0,0);}
.m4{transform:matrix(0.226577,0.105655,-0.105655,0.226577,0,0);-ms-transform:matrix(0.226577,0.105655,-0.105655,0.226577,0,0);-webkit-transform:matrix(0.226577,0.105655,-0.105655,0.226577,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8{vertical-align:-16.795718px;}
.v9{vertical-align:-13.600792px;}
.v5{vertical-align:-6.539041px;}
.v3{vertical-align:-1.932575px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.229415px;}
.v1{vertical-align:2.954032px;}
.vd{vertical-align:4.889910px;}
.v4{vertical-align:6.133035px;}
.v6{vertical-align:9.579901px;}
.v7{vertical-align:10.847527px;}
.vc{vertical-align:11.854338px;}
.va{vertical-align:15.551668px;}
.vb{vertical-align:29.521047px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:17.582400px;}
.ls1{letter-spacing:29.887800px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws49{word-spacing:-41.642328px;}
.ws47{word-spacing:-40.220685px;}
.ws4c{word-spacing:-38.541382px;}
.wsd{word-spacing:-37.140295px;}
.ws2c{word-spacing:-36.917138px;}
.ws30{word-spacing:-34.907484px;}
.ws58{word-spacing:-32.154526px;}
.ws2b{word-spacing:-31.906762px;}
.ws25{word-spacing:-30.943224px;}
.ws2d{word-spacing:-30.557811px;}
.ws31{word-spacing:-29.649336px;}
.ws29{word-spacing:-29.208861px;}
.ws28{word-spacing:-28.052619px;}
.ws3b{word-spacing:-26.318261px;}
.ws39{word-spacing:-23.730479px;}
.ws32{word-spacing:-21.858470px;}
.ws12{word-spacing:-17.753353px;}
.ws34{word-spacing:-17.261033px;}
.wse{word-spacing:-17.108886px;}
.ws4f{word-spacing:-16.737168px;}
.ws26{word-spacing:-15.499143px;}
.ws76{word-spacing:-15.063552px;}
.ws41{word-spacing:-14.140084px;}
.ws23{word-spacing:-13.549705px;}
.ws36{word-spacing:-12.002888px;}
.ws3e{word-spacing:-11.614033px;}
.ws38{word-spacing:-11.325137px;}
.ws45{word-spacing:-11.304325px;}
.ws2e{word-spacing:-11.259590px;}
.wsf{word-spacing:-10.783748px;}
.ws11{word-spacing:-10.761666px;}
.ws10{word-spacing:-10.753916px;}
.wsb{word-spacing:-10.400954px;}
.ws2f{word-spacing:-8.286397px;}
.wsa{word-spacing:-8.129482px;}
.ws3a{word-spacing:-1.134936px;}
.ws3c{word-spacing:-1.083976px;}
.ws73{word-spacing:-0.956410px;}
.ws75{word-spacing:-0.161395px;}
.ws8{word-spacing:0.000000px;}
.ws51{word-spacing:0.597756px;}
.ws74{word-spacing:0.836858px;}
.ws77{word-spacing:0.956410px;}
.ws4d{word-spacing:1.016185px;}
.ws15{word-spacing:1.195512px;}
.ws71{word-spacing:1.255288px;}
.ws16{word-spacing:1.288298px;}
.ws72{word-spacing:1.315063px;}
.ws17{word-spacing:1.554166px;}
.ws88{word-spacing:1.793268px;}
.ws85{word-spacing:1.853044px;}
.ws1f{word-spacing:1.912819px;}
.ws7c{word-spacing:2.211697px;}
.ws1{word-spacing:2.272433px;}
.ws50{word-spacing:2.689902px;}
.ws19{word-spacing:2.869229px;}
.ws67{word-spacing:2.929004px;}
.ws66{word-spacing:2.941867px;}
.ws63{word-spacing:2.988780px;}
.ws62{word-spacing:3.019867px;}
.ws55{word-spacing:3.107473px;}
.ws4{word-spacing:3.108331px;}
.ws53{word-spacing:3.165156px;}
.ws87{word-spacing:3.167502px;}
.ws3{word-spacing:3.168107px;}
.ws56{word-spacing:3.169867px;}
.ws83{word-spacing:3.170742px;}
.ws6d{word-spacing:3.171744px;}
.ws54{word-spacing:3.172565px;}
.ws7{word-spacing:3.299635px;}
.ws13{word-spacing:3.389299px;}
.ws59{word-spacing:3.586536px;}
.ws7a{word-spacing:4.064741px;}
.ws6b{word-spacing:4.244068px;}
.ws4b{word-spacing:4.303843px;}
.ws6c{word-spacing:4.363619px;}
.ws7b{word-spacing:5.080926px;}
.ws20{word-spacing:5.140702px;}
.ws1d{word-spacing:5.618906px;}
.ws21{word-spacing:5.917784px;}
.ws6a{word-spacing:5.977560px;}
.ws68{word-spacing:6.037336px;}
.ws69{word-spacing:6.061867px;}
.ws86{word-spacing:6.085692px;}
.ws5c{word-spacing:6.097111px;}
.ws5{word-spacing:6.156887px;}
.ws1e{word-spacing:6.216662px;}
.ws1c{word-spacing:6.276438px;}
.ws5e{word-spacing:6.395989px;}
.ws5d{word-spacing:6.439867px;}
.ws2{word-spacing:6.742733px;}
.ws4a{word-spacing:6.814464px;}
.ws64{word-spacing:6.874194px;}
.ws70{word-spacing:6.993745px;}
.ws6f{word-spacing:7.053521px;}
.ws27{word-spacing:7.304967px;}
.ws5b{word-spacing:7.412174px;}
.ws7e{word-spacing:7.770828px;}
.ws80{word-spacing:7.799431px;}
.ws7f{word-spacing:7.808742px;}
.ws18{word-spacing:8.069706px;}
.ws6e{word-spacing:8.177334px;}
.ws78{word-spacing:8.189257px;}
.ws43{word-spacing:8.667462px;}
.ws1b{word-spacing:8.846789px;}
.ws82{word-spacing:9.187796px;}
.ws81{word-spacing:9.205442px;}
.ws79{word-spacing:9.206429px;}
.ws7d{word-spacing:9.504320px;}
.ws84{word-spacing:9.527502px;}
.ws5f{word-spacing:9.922750px;}
.ws61{word-spacing:10.281403px;}
.ws6{word-spacing:11.093616px;}
.ws14{word-spacing:11.777625px;}
.ws4e{word-spacing:12.134447px;}
.ws1a{word-spacing:12.612652px;}
.wsc{word-spacing:13.150632px;}
.ws0{word-spacing:14.128647px;}
.ws60{word-spacing:14.346144px;}
.ws9{word-spacing:38.555262px;}
.ws22{word-spacing:51.646464px;}
.ws37{word-spacing:53.248159px;}
.ws33{word-spacing:62.675720px;}
.ws35{word-spacing:88.072806px;}
.ws46{word-spacing:108.673253px;}
.ws44{word-spacing:108.673396px;}
.ws2a{word-spacing:168.421758px;}
.ws24{word-spacing:192.702959px;}
.ws3f{word-spacing:307.760702px;}
.ws40{word-spacing:307.760812px;}
.ws5a{word-spacing:346.825973px;}
.ws52{word-spacing:377.466537px;}
.ws57{word-spacing:539.852838px;}
.ws65{word-spacing:572.975074px;}
.ws48{word-spacing:691.613891px;}
.ws3d{word-spacing:798.717457px;}
.ws42{word-spacing:1032.423793px;}
._f{margin-left:-34.789399px;}
._10{margin-left:-31.561517px;}
._b{margin-left:-29.887800px;}
._25{margin-left:-28.214083px;}
._8{margin-left:-13.831202px;}
._11{margin-left:-10.042301px;}
._26{margin-left:-8.866316px;}
._1e{margin-left:-7.673070px;}
._4{margin-left:-6.671002px;}
._27{margin-left:-5.512796px;}
._1{margin-left:-4.461678px;}
._3d{margin-left:-3.347778px;}
._3{margin-left:-2.151936px;}
._6{margin-left:-1.075946px;}
._7{width:1.243328px;}
._2{width:2.582310px;}
._0{width:4.461678px;}
._e{width:5.778586px;}
._c{width:7.683655px;}
._45{width:17.418962px;}
._37{width:18.650030px;}
._13{width:19.694564px;}
._14{width:20.757084px;}
._46{width:21.830053px;}
._20{width:23.082277px;}
._1f{width:24.478385px;}
._5{width:26.480591px;}
._44{width:27.879539px;}
._42{width:28.928423px;}
._2a{width:31.850920px;}
._1d{width:35.671706px;}
._43{width:37.778179px;}
._18{width:39.237022px;}
._21{width:40.256496px;}
._23{width:42.538664px;}
._17{width:46.501554px;}
._1a{width:48.702124px;}
._15{width:53.050267px;}
._1c{width:55.437455px;}
._28{width:58.398636px;}
._16{width:59.895151px;}
._2b{width:62.390332px;}
._2e{width:64.141561px;}
._d{width:65.822827px;}
._19{width:68.383286px;}
._2f{width:71.731200px;}
._3f{width:77.093518px;}
._3b{width:79.740126px;}
._3a{width:86.836401px;}
._40{width:88.513984px;}
._33{width:91.670205px;}
._36{width:122.318346px;}
._41{width:124.877735px;}
._31{width:130.172327px;}
._35{width:142.922500px;}
._34{width:214.344614px;}
._2c{width:254.489936px;}
._2d{width:258.390910px;}
._30{width:329.312520px;}
._3e{width:368.377779px;}
._39{width:378.505423px;}
._38{width:398.990571px;}
._3c{width:582.254966px;}
._32{width:866.488416px;}
._29{width:896.380416px;}
._24{width:1916.792020px;}
._22{width:2150.980847px;}
._a{width:2258.844533px;}
._12{width:2299.190047px;}
._1b{width:2470.267800px;}
._9{width:2507.032824px;}
.fc3{color:rgb(0,0,255);}
.fc7{color:rgb(26,26,26);}
.fc6{color:rgb(77,77,77);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(68,68,68);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(115,115,115);}
.fc0{color:rgb(197,5,12);}
.fs30{font-size:1.927069px;}
.fs34{font-size:2.147306px;}
.fs5a{font-size:3.083311px;}
.fs2d{font-size:3.688961px;}
.fs58{font-size:3.744020px;}
.fs42{font-size:3.936727px;}
.fs33{font-size:4.294611px;}
.fs21{font-size:4.680025px;}
.fs23{font-size:5.010380px;}
.fs40{font-size:5.505912px;}
.fs26{font-size:5.616030px;}
.fs12{font-size:5.698618px;}
.fs2b{font-size:6.331799px;}
.fs43{font-size:6.414387px;}
.fs2e{font-size:6.607094px;}
.fs31{font-size:6.744742px;}
.fs1a{font-size:7.185215px;}
.fs24{font-size:8.231338px;}
.fs1b{font-size:8.258868px;}
.fs4d{font-size:8.286397px;}
.fs54{font-size:8.341457px;}
.fs11{font-size:8.836988px;}
.fs41{font-size:9.112284px;}
.fsf{font-size:9.332520px;}
.fs16{font-size:9.745464px;}
.fs17{font-size:9.938170px;}
.fs49{font-size:9.965700px;}
.fs27{font-size:9.993231px;}
.fs46{font-size:10.406173px;}
.fs28{font-size:10.764058px;}
.fs2c{font-size:11.232060px;}
.fs4c{font-size:11.259590px;}
.fs3e{font-size:11.342177px;}
.fs32{font-size:11.397237px;}
.fsc{font-size:11.865240px;}
.fs53{font-size:12.002888px;}
.fs22{font-size:12.195594px;}
.fs4a{font-size:13.159130px;}
.fs10{font-size:13.241719px;}
.fs29{font-size:13.572072px;}
.fs1c{font-size:14.095134px;}
.fsa{font-size:14.810903px;}
.fs15{font-size:15.168786px;}
.fs18{font-size:15.471612px;}
.fs2a{font-size:15.499143px;}
.fs1d{font-size:15.664319px;}
.fs3b{font-size:15.719377px;}
.fs1e{font-size:17.095856px;}
.fs52{font-size:17.261033px;}
.fs2f{font-size:17.536329px;}
.fs19{font-size:17.618918px;}
.fs47{font-size:17.701506px;}
.fse{font-size:17.866683px;}
.fs44{font-size:18.417275px;}
.fs14{font-size:19.215632px;}
.fs25{font-size:20.316815px;}
.fs9{font-size:20.922464px;}
.fs4e{font-size:21.610703px;}
.fs39{font-size:21.720822px;}
.fs51{font-size:21.858470px;}
.fs1f{font-size:23.647892px;}
.fs56{font-size:23.730479px;}
.fs57{font-size:25.987905px;}
.fs59{font-size:26.318261px;}
.fs3d{font-size:26.896380px;}
.fsb{font-size:27.171674px;}
.fs38{font-size:27.667207px;}
.fs35{font-size:28.052619px;}
.fs37{font-size:28.961097px;}
.fs3f{font-size:29.208861px;}
.fs3c{font-size:29.318979px;}
.fs50{font-size:29.649336px;}
.fs4b{font-size:30.557811px;}
.fs8{font-size:30.943224px;}
.fs45{font-size:31.906762px;}
.fs20{font-size:32.099465px;}
.fs5c{font-size:32.154526px;}
.fs5e{font-size:33.035469px;}
.fs5b{font-size:33.035471px;}
.fs13{font-size:33.613591px;}
.fs7{font-size:33.888888px;}
.fs4f{font-size:34.907484px;}
.fs55{font-size:36.173841px;}
.fs48{font-size:36.917138px;}
.fs3a{font-size:37.935731px;}
.fsd{font-size:38.100910px;}
.fs6{font-size:38.541382px;}
.fs5d{font-size:40.220685px;}
.fs36{font-size:46.800250px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs5f{font-size:86.077200px;}
.fs1{font-size:103.292400px;}
.fs5{font-size:123.975000px;}
.fs0{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.ybe{bottom:0.688239px;}
.yb4{bottom:2.064717px;}
.y110{bottom:2.081968px;}
.yb3{bottom:6.753345px;}
.y106{bottom:16.732810px;}
.ya5{bottom:18.582452px;}
.yb8{bottom:18.797527px;}
.yb2{bottom:19.829885px;}
.ya6{bottom:24.636804px;}
.yb1{bottom:32.906426px;}
.yc2{bottom:35.290314px;}
.y12b{bottom:36.412143px;}
.ya2{bottom:37.330385px;}
.y9a{bottom:40.154835px;}
.y143{bottom:40.713637px;}
.y15f{bottom:42.369464px;}
.yb0{bottom:45.982966px;}
.y5c{bottom:46.190580px;}
.y83{bottom:47.029654px;}
.y160{bottom:48.036929px;}
.y9f{bottom:48.379648px;}
.y71{bottom:48.873639px;}
.y59{bottom:51.565975px;}
.y7b{bottom:52.821322px;}
.yc3{bottom:52.923024px;}
.y7d{bottom:53.701800px;}
.y79{bottom:53.724650px;}
.yaf{bottom:59.059507px;}
.y12c{bottom:59.351203px;}
.y107{bottom:60.349150px;}
.y99{bottom:60.939542px;}
.y2d{bottom:63.168000px;}
.ya1{bottom:64.421398px;}
.y5b{bottom:69.649371px;}
.yc4{bottom:70.555651px;}
.y144{bottom:70.824092px;}
.y48{bottom:71.553591px;}
.yae{bottom:72.136047px;}
.yf0{bottom:74.194830px;}
.yf1{bottom:79.695922px;}
.y7a{bottom:80.121367px;}
.y78{bottom:81.020373px;}
.y7c{bottom:81.408980px;}
.y12d{bottom:82.296980px;}
.y54{bottom:84.165707px;}
.yad{bottom:85.212588px;}
.y82{bottom:85.710694px;}
.y155{bottom:85.979544px;}
.y58{bottom:86.105082px;}
.yc5{bottom:88.195271px;}
.yb9{bottom:90.225576px;}
.y9e{bottom:90.286657px;}
.y5a{bottom:92.640407px;}
.y56{bottom:94.003753px;}
.y113{bottom:94.059469px;}
.y16e{bottom:94.334765px;}
.y70{bottom:96.244714px;}
.y6a{bottom:96.692538px;}
.y68{bottom:97.043732px;}
.y181{bottom:98.289128px;}
.y75{bottom:99.855409px;}
.y6e{bottom:100.738584px;}
.y145{bottom:100.934547px;}
.ya0{bottom:102.807706px;}
.y12e{bottom:105.236040px;}
.yc6{bottom:105.827898px;}
.y6b{bottom:106.586854px;}
.y11c{bottom:108.608841px;}
.yee{bottom:108.763500px;}
.y180{bottom:111.365669px;}
.y124{bottom:111.933063px;}
.ye6{bottom:114.603375px;}
.y69{bottom:117.137860px;}
.y67{bottom:117.643963px;}
.ya3{bottom:118.314000px;}
.y80{bottom:120.441820px;}
.y6f{bottom:122.075121px;}
.y108{bottom:123.192223px;}
.yc7{bottom:123.460608px;}
.y17f{bottom:124.442209px;}
.y57{bottom:125.525951px;}
.yed{bottom:126.696000px;}
.y6d{bottom:127.914801px;}
.y12f{bottom:128.175073px;}
.ya7{bottom:128.368155px;}
.y98{bottom:128.500520px;}
.y77{bottom:129.856351px;}
.y146{bottom:131.045002px;}
.yfb{bottom:131.802495px;}
.ye{bottom:132.721500px;}
.y1a3{bottom:134.758500px;}
.y161{bottom:135.229925px;}
.y17e{bottom:137.518749px;}
.y96{bottom:140.463986px;}
.yc8{bottom:141.093291px;}
.yec{bottom:144.628500px;}
.y156{bottom:147.322283px;}
.y17d{bottom:150.595290px;}
.y130{bottom:151.120905px;}
.yf2{bottom:151.197096px;}
.y1a2{bottom:152.691000px;}
.y52{bottom:153.472996px;}
.y9d{bottom:153.854005px;}
.y97{bottom:154.222681px;}
.y66{bottom:154.517357px;}
.y81{bottom:157.147889px;}
.yc9{bottom:158.725946px;}
.y147{bottom:161.155457px;}
.y6c{bottom:162.614902px;}
.y168{bottom:163.172427px;}
.y114{bottom:163.489017px;}
.y17c{bottom:163.671830px;}
.y16f{bottom:164.039608px;}
.y94{bottom:166.594327px;}
.y131{bottom:174.059937px;}
.yd{bottom:175.365000px;}
.yca{bottom:176.358683px;}
.y17b{bottom:176.748371px;}
.y1a1{bottom:179.590500px;}
.y9b{bottom:180.139806px;}
.yfc{bottom:183.909040px;}
.y109{bottom:186.028441px;}
.y17a{bottom:189.824911px;}
.y148{bottom:191.265912px;}
.y47{bottom:191.287405px;}
.y11d{bottom:192.580878px;}
.y9c{bottom:193.282720px;}
.ycb{bottom:193.991338px;}
.y95{bottom:194.743246px;}
.y132{bottom:196.998962px;}
.y1a0{bottom:197.523000px;}
.y125{bottom:199.229253px;}
.yba{bottom:199.421543px;}
.yc{bottom:201.801000px;}
.y179{bottom:202.901452px;}
.y53{bottom:202.909920px;}
.ye7{bottom:204.576883px;}
.y157{bottom:208.665050px;}
.ycc{bottom:211.624040px;}
.y55{bottom:214.133457px;}
.y19f{bottom:215.455500px;}
.y178{bottom:215.977992px;}
.y63{bottom:219.320521px;}
.y65{bottom:219.711419px;}
.y133{bottom:219.944810px;}
.y149{bottom:221.376367px;}
.y162{bottom:222.429830px;}
.yf3{bottom:222.698235px;}
.yb{bottom:228.238500px;}
.y177{bottom:229.054533px;}
.ycd{bottom:229.256703px;}
.y74{bottom:230.039978px;}
.ya8{bottom:232.099554px;}
.y5f{bottom:232.191430px;}
.y115{bottom:232.911696px;}
.y19e{bottom:233.388000px;}
.y170{bottom:233.737582px;}
.y76{bottom:235.597307px;}
.yfd{bottom:236.015626px;}
.y134{bottom:242.883834px;}
.y64{bottom:243.392084px;}
.y62{bottom:243.424679px;}
.y169{bottom:246.655842px;}
.yce{bottom:246.896287px;}
.y10a{bottom:248.871514px;}
.y14a{bottom:251.486822px;}
.y91{bottom:254.709918px;}
.y2c{bottom:258.082500px;}
.y19d{bottom:260.287500px;}
.ycf{bottom:264.528950px;}
.y135{bottom:265.822826px;}
.y8f{bottom:267.001502px;}
.y158{bottom:270.007743px;}
.y93{bottom:272.299968px;}
.y61{bottom:275.779002px;}
.y2b{bottom:276.015000px;}
.y11e{bottom:276.552901px;}
.y90{bottom:276.958016px;}
.y7f{bottom:277.630191px;}
.ybf{bottom:278.169523px;}
.y19c{bottom:278.220000px;}
.y14b{bottom:281.597277px;}
.yd0{bottom:282.161646px;}
.y46{bottom:283.954664px;}
.y126{bottom:286.525479px;}
.yfe{bottom:288.122207px;}
.y136{bottom:288.768740px;}
.y2a{bottom:293.947500px;}
.yf4{bottom:294.199376px;}
.ye8{bottom:294.543496px;}
.y8d{bottom:295.005536px;}
.y19b{bottom:296.152500px;}
.yb5{bottom:296.824564px;}
.ye2{bottom:297.415077px;}
.yd1{bottom:299.794310px;}
.y15e{bottom:300.577617px;}
.y116{bottom:302.341229px;}
.y5e{bottom:302.425578px;}
.y171{bottom:303.435524px;}
.y167{bottom:308.524626px;}
.ybb{bottom:308.610656px;}
.y163{bottom:309.622784px;}
.y10b{bottom:311.707732px;}
.y29{bottom:311.880000px;}
.y19a{bottom:314.085000px;}
.y8e{bottom:315.545001px;}
.y51{bottom:316.348842px;}
.yd2{bottom:317.427003px;}
.y60{bottom:323.337625px;}
.y92{bottom:323.357956px;}
.yfa{bottom:324.354123px;}
.y28{bottom:329.812500px;}
.y16a{bottom:330.132305px;}
.y159{bottom:331.350502px;}
.y4c{bottom:331.560066px;}
.y199{bottom:332.019000px;}
.y137{bottom:334.646723px;}
.yd3{bottom:335.059666px;}
.ya9{bottom:335.824055px;}
.yff{bottom:340.228785px;}
.y14c{bottom:341.818187px;}
.y4e{bottom:346.886925px;}
.y50{bottom:347.341102px;}
.yd4{bottom:352.692362px;}
.y138{bottom:357.592638px;}
.y198{bottom:359.613000px;}
.y11f{bottom:360.524980px;}
.y73{bottom:360.876761px;}
.y27{bottom:362.689500px;}
.y123{bottom:363.231568px;}
.y11b{bottom:363.395068px;}
.yf5{bottom:365.693627px;}
.ya{bottom:368.742000px;}
.yd5{bottom:370.325059px;}
.y117{bottom:371.763908px;}
.y14d{bottom:371.928642px;}
.y172{bottom:373.133462px;}
.y127{bottom:373.828625px;}
.y10c{bottom:374.543950px;}
.y4f{bottom:379.150464px;}
.y8c{bottom:379.304040px;}
.y139{bottom:380.531629px;}
.y26{bottom:380.622000px;}
.y88{bottom:384.088746px;}
.ye9{bottom:384.516963px;}
.yd6{bottom:387.964610px;}
.yef{bottom:389.715568px;}
.y100{bottom:392.335363px;}
.y15a{bottom:392.693244px;}
.y43{bottom:392.978068px;}
.y9{bottom:393.052500px;}
.y164{bottom:396.822678px;}
.y25{bottom:398.556000px;}
.y197{bottom:401.466000px;}
.y14e{bottom:402.039097px;}
.y4b{bottom:402.903746px;}
.y85{bottom:403.094978px;}
.y13a{bottom:403.470620px;}
.y87{bottom:403.746068px;}
.yd7{bottom:405.597306px;}
.y16b{bottom:413.615692px;}
.y24{bottom:416.488500px;}
.y8{bottom:417.363000px;}
.y4d{bottom:417.747445px;}
.ybc{bottom:417.799769px;}
.ya4{bottom:419.294068px;}
.y196{bottom:419.400000px;}
.y8a{bottom:422.668824px;}
.yd8{bottom:423.229986px;}
.y86{bottom:424.863225px;}
.y13b{bottom:426.416535px;}
.y49{bottom:429.317103px;}
.y14f{bottom:432.149552px;}
.y8b{bottom:433.418963px;}
.y23{bottom:434.421000px;}
.yf6{bottom:437.194768px;}
.y195{bottom:437.332500px;}
.y10d{bottom:437.387039px;}
.yaa{bottom:439.555430px;}
.yd9{bottom:440.862662px;}
.y118{bottom:441.186570px;}
.y7{bottom:441.673500px;}
.y173{bottom:442.838327px;}
.y101{bottom:444.441927px;}
.y120{bottom:444.496989px;}
.y13c{bottom:449.355526px;}
.y5d{bottom:453.077628px;}
.y7e{bottom:453.819368px;}
.y15b{bottom:454.029099px;}
.y194{bottom:455.265000px;}
.yda{bottom:458.495342px;}
.y128{bottom:461.124848px;}
.y150{bottom:462.260007px;}
.y6{bottom:465.984000px;}
.y22{bottom:467.298000px;}
.y13d{bottom:472.294534px;}
.yea{bottom:474.483558px;}
.ydb{bottom:476.128022px;}
.y3f{bottom:477.759000px;}
.y193{bottom:482.164500px;}
.y165{bottom:484.015668px;}
.y21{bottom:485.230500px;}
.y18d{bottom:485.946000px;}
.y5{bottom:490.294500px;}
.y151{bottom:492.370462px;}
.ydc{bottom:493.760718px;}
.y13e{bottom:495.240415px;}
.y3e{bottom:495.691500px;}
.y102{bottom:496.548489px;}
.y16c{bottom:497.092208px;}
.y84{bottom:498.331056px;}
.y192{bottom:500.097000px;}
.y10e{bottom:500.223274px;}
.y20{bottom:503.163000px;}
.y18c{bottom:503.878500px;}
.y4a{bottom:503.894314px;}
.yf7{bottom:508.695923px;}
.y119{bottom:510.616104px;}
.ydd{bottom:511.393381px;}
.y174{bottom:512.536299px;}
.y3d{bottom:513.624000px;}
.y15c{bottom:515.371841px;}
.y89{bottom:517.904916px;}
.y13f{bottom:518.179423px;}
.y4{bottom:520.983000px;}
.y1f{bottom:521.095500px;}
.y18b{bottom:521.811000px;}
.y152{bottom:522.480917px;}
.ybd{bottom:526.995761px;}
.y121{bottom:528.469023px;}
.yde{bottom:529.026066px;}
.y3c{bottom:531.556500px;}
.y191{bottom:532.843500px;}
.y1e{bottom:539.028000px;}
.y18a{bottom:539.743500px;}
.y140{bottom:541.118431px;}
.yab{bottom:543.286805px;}
.ydf{bottom:546.665637px;}
.y129{bottom:548.421074px;}
.y103{bottom:548.655078px;}
.y3b{bottom:549.489000px;}
.y153{bottom:552.591372px;}
.y1d{bottom:556.962000px;}
.y10f{bottom:563.066366px;}
.y141{bottom:564.064312px;}
.ye0{bottom:564.298322px;}
.yeb{bottom:564.457042px;}
.y189{bottom:567.337500px;}
.y166{bottom:571.215546px;}
.y45{bottom:571.238346px;}
.y1c{bottom:574.894500px;}
.y3a{bottom:576.388500px;}
.y15d{bottom:576.714575px;}
.y11a{bottom:580.038775px;}
.yf8{bottom:580.197064px;}
.y16d{bottom:580.568713px;}
.ye1{bottom:581.931002px;}
.y175{bottom:582.234257px;}
.y154{bottom:582.701827px;}
.y142{bottom:587.003320px;}
.y44{bottom:590.509037px;}
.y18e{bottom:591.573000px;}
.y1b{bottom:592.827000px;}
.yc0{bottom:598.079666px;}
.y39{bottom:603.288000px;}
.y188{bottom:609.192000px;}
.y72{bottom:610.812087px;}
.y38{bottom:621.220500px;}
.y190{bottom:622.150500px;}
.y1a{bottom:625.704000px;}
.y187{bottom:627.124500px;}
.y18f{bottom:638.589000px;}
.y37{bottom:639.153000px;}
.y19{bottom:643.636500px;}
.y36{bottom:657.085500px;}
.y186{bottom:659.871000px;}
.y18{bottom:661.569000px;}
.y3{bottom:668.439000px;}
.y112{bottom:673.617000px;}
.y35{bottom:675.018000px;}
.y17{bottom:679.501500px;}
.y16{bottom:697.434000px;}
.y111{bottom:701.211000px;}
.y2{bottom:701.314500px;}
.y34{bottom:701.917500px;}
.y185{bottom:709.314000px;}
.y33{bottom:719.850000px;}
.ye5{bottom:725.133000px;}
.y184{bottom:727.246500px;}
.y15{bottom:730.311000px;}
.y32{bottom:737.784000px;}
.ye4{bottom:743.065500px;}
.y14{bottom:748.243500px;}
.y176{bottom:752.927050px;}
.y183{bottom:754.146000px;}
.y31{bottom:755.716500px;}
.y13{bottom:766.177500px;}
.ye3{bottom:770.659500px;}
.y40{bottom:772.078500px;}
.y30{bottom:773.649000px;}
.y12{bottom:784.110000px;}
.y11{bottom:802.042500px;}
.y1{bottom:804.072000px;}
.y10{bottom:834.919500px;}
.y2f{bottom:860.323500px;}
.y12a{bottom:867.022495px;}
.y122{bottom:867.185995px;}
.yf9{bottom:893.506495px;}
.y104{bottom:896.768995px;}
.yac{bottom:923.084995px;}
.yf{bottom:936.538500px;}
.y2e{bottom:944.010000px;}
.y105{bottom:1001.596500px;}
.yb7{bottom:1010.563500px;}
.yc1{bottom:1019.529000px;}
.yb6{bottom:1037.461500px;}
.y182{bottom:1047.123000px;}
.y42{bottom:1065.055500px;}
.y41{bottom:1105.536000px;}
.h4d{height:2.357649px;}
.h2a{height:2.820758px;}
.h39{height:3.010212px;}
.h1f{height:3.578574px;}
.h21{height:3.831179px;}
.h36{height:4.210087px;}
.h24{height:4.294289px;}
.h37{height:4.841599px;}
.h3a{height:4.904751px;}
.h2b{height:5.052104px;}
.h2d{height:5.157356px;}
.h18{height:5.494164px;}
.h22{height:6.294080px;}
.h44{height:6.295720px;}
.h19{height:6.315130px;}
.h29{height:6.656002px;}
.h11{height:6.757189px;}
.h38{height:6.967693px;}
.hf{height:7.136097px;}
.h40{height:7.571596px;}
.h15{height:7.599207px;}
.h25{height:7.641308px;}
.h3d{height:7.906253px;}
.h26{height:8.230720px;}
.h43{height:8.554650px;}
.hc{height:9.072737px;}
.h20{height:9.325342px;}
.h41{height:9.997854px;}
.h10{height:10.125259px;}
.h27{height:10.311594px;}
.h1a{height:10.777822px;}
.h14{height:11.598789px;}
.h28{height:11.775716px;}
.h16{height:11.830344px;}
.h1b{height:11.977697px;}
.h34{height:12.019797px;}
.h1c{height:13.072320px;}
.h4a{height:13.114340px;}
.h2c{height:13.323500px;}
.h3e{height:13.448996px;}
.h17{height:13.472278px;}
.he{height:13.661731px;}
.h3b{height:13.992813px;}
.h13{height:14.693203px;}
.h2e{height:14.911351px;}
.h23{height:15.535221px;}
.ha{height:15.998330px;}
.h45{height:16.419070px;}
.h48{height:16.607314px;}
.h32{height:16.608792px;}
.h1d{height:18.082323px;}
.h4c{height:19.990533px;}
.hb{height:20.776778px;}
.h47{height:22.526546px;}
.h42{height:23.216775px;}
.h51{height:24.115894px;}
.h35{height:24.224446px;}
.h3c{height:24.241661px;}
.h1e{height:24.388070px;}
.h54{height:24.429903px;}
.h53{height:24.586908px;}
.h4e{height:25.260521px;}
.h12{height:25.702580px;}
.h9{height:26.614719px;}
.h46{height:26.691953px;}
.h4b{height:27.483641px;}
.h3f{height:28.048372px;}
.h55{height:28.906037px;}
.h33{height:29.007498px;}
.hd{height:29.133801px;}
.h50{height:29.282417px;}
.h8{height:29.470608px;}
.h52{height:30.558294px;}
.h56{height:30.754684px;}
.h31{height:32.003214px;}
.h2f{height:35.557221px;}
.h57{height:35.785738px;}
.h30{height:40.348800px;}
.h4{height:44.831700px;}
.h49{height:45.940117px;}
.h3{height:50.211840px;}
.h5{height:50.498765px;}
.h59{height:60.254040px;}
.h2{height:72.511265px;}
.h6{height:86.782500px;}
.h4f{height:98.418173px;}
.h1{height:104.105820px;}
.h58{height:242.260118px;}
.h7{height:619.415074px;}
.h0{height:1188.000000px;}
.w2{width:128.700688px;}
.w3{width:244.324802px;}
.w1{width:619.415074px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x55{left:11.579070px;}
.x50{left:12.958249px;}
.x76{left:15.098242px;}
.x4c{left:16.399444px;}
.x53{left:17.517833px;}
.x74{left:18.582452px;}
.x52{left:19.700841px;}
.x4b{left:21.647266px;}
.x71{left:23.304273px;}
.x79{left:25.346551px;}
.x4e{left:27.529559px;}
.x60{left:29.626537px;}
.x5c{left:30.863216px;}
.x69{left:32.831150px;}
.x66{left:35.057173px;}
.x7d{left:37.358472px;}
.x7c{left:38.853241px;}
.x7e{left:40.702883px;}
.x72{left:42.143883px;}
.x77{left:43.724682px;}
.x87{left:45.359250px;}
.x68{left:46.660452px;}
.x7b{left:49.746773px;}
.x5a{left:51.725460px;}
.x1e{left:52.992855px;}
.x78{left:54.220326px;}
.x80{left:57.059312px;}
.x83{left:59.704731px;}
.x75{left:62.178090px;}
.x84{left:64.393359px;}
.x5e{left:66.081695px;}
.x85{left:69.856256px;}
.x51{left:71.302415px;}
.x81{left:73.426495px;}
.x1b{left:75.708369px;}
.x8f{left:79.566877px;}
.x86{left:80.663758px;}
.x82{left:81.760639px;}
.x5f{left:82.997318px;}
.x59{left:84.233998px;}
.x5d{left:85.857812px;}
.x62{left:87.707454px;}
.x89{left:96.762441px;}
.x29{left:102.852106px;}
.x6e{left:104.203682px;}
.xf{left:108.000000px;}
.x2{left:109.626000px;}
.x65{left:113.451893px;}
.x8e{left:118.463133px;}
.x5b{left:120.914984px;}
.x64{left:124.420702px;}
.x6a{left:125.807937px;}
.x63{left:127.141400px;}
.x11{left:130.416000px;}
.x67{left:133.970017px;}
.x31{left:135.511194px;}
.x32{left:136.673843px;}
.x6b{left:139.067287px;}
.x6c{left:140.755627px;}
.x61{left:144.497926px;}
.x4a{left:146.680931px;}
.x6d{left:148.175703px;}
.x14{left:149.294338px;}
.x4f{left:156.961500px;}
.x7a{left:160.284408px;}
.x30{left:161.545984px;}
.x10{left:164.787000px;}
.x8d{left:166.962473px;}
.x73{left:171.715623px;}
.x56{left:178.942133px;}
.x58{left:185.109600px;}
.x1f{left:191.296980px;}
.x1{left:197.881500px;}
.x8a{left:204.299783px;}
.x7f{left:223.548621px;}
.x16{left:226.114731px;}
.x17{left:231.520834px;}
.x28{left:249.551150px;}
.x88{left:254.250535px;}
.x1c{left:256.114253px;}
.x34{left:258.434036px;}
.x33{left:263.300437px;}
.x20{left:294.134050px;}
.x54{left:306.266342px;}
.x8b{left:311.837123px;}
.x2a{left:317.930179px;}
.x15{left:325.219799px;}
.x40{left:327.121797px;}
.x35{left:329.212190px;}
.x2b{left:331.382831px;}
.x42{left:332.527901px;}
.x12{left:339.568500px;}
.x3c{left:340.895450px;}
.xe{left:343.390500px;}
.x21{left:352.760077px;}
.xd{left:354.945000px;}
.xc{left:361.573500px;}
.x70{left:364.078416px;}
.x41{left:374.529365px;}
.xb{left:379.722000px;}
.x1d{left:384.631189px;}
.x3{left:387.909000px;}
.x4{left:392.011500px;}
.x5{left:398.791500px;}
.x7{left:399.799500px;}
.x9{left:401.794500px;}
.x6{left:403.789500px;}
.x3d{left:406.740147px;}
.x8{left:408.631500px;}
.x6f{left:414.350442px;}
.x8c{left:419.374462px;}
.xa{left:421.759500px;}
.x3e{left:426.886433px;}
.x37{left:430.768675px;}
.x36{left:432.441210px;}
.x2c{left:436.597055px;}
.x45{left:438.665282px;}
.x1a{left:447.067675px;}
.x22{left:449.254699px;}
.x43{left:457.556523px;}
.x90{left:459.000000px;}
.x19{left:475.399445px;}
.x18{left:481.913792px;}
.x25{left:483.583983px;}
.x39{left:504.558014px;}
.x2d{left:507.797194px;}
.x46{left:509.868090px;}
.x26{left:518.020119px;}
.x38{left:522.041621px;}
.x23{left:534.166743px;}
.x2e{left:543.397263px;}
.x27{left:544.865273px;}
.x44{left:549.555515px;}
.x47{left:554.249119px;}
.x3a{left:561.263854px;}
.x3b{left:563.264048px;}
.x24{left:570.602135px;}
.x2f{left:578.997305px;}
.x48{left:587.506113px;}
.x49{left:589.581584px;}
.x3f{left:592.835729px;}
.x4d{left:632.782216px;}
.x57{left:795.055500px;}
.x13{left:802.528500px;}
@media print{
.v8{vertical-align:-14.929527pt;}
.v9{vertical-align:-12.089593pt;}
.v5{vertical-align:-5.812481pt;}
.v3{vertical-align:-1.717844pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.092813pt;}
.v1{vertical-align:2.625806pt;}
.vd{vertical-align:4.346587pt;}
.v4{vertical-align:5.451587pt;}
.v6{vertical-align:8.515468pt;}
.v7{vertical-align:9.642246pt;}
.vc{vertical-align:10.537189pt;}
.va{vertical-align:13.823705pt;}
.vb{vertical-align:26.240931pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:15.628800pt;}
.ls1{letter-spacing:26.566933pt;}
.ws49{word-spacing:-37.015403pt;}
.ws47{word-spacing:-35.751720pt;}
.ws4c{word-spacing:-34.259007pt;}
.wsd{word-spacing:-33.013596pt;}
.ws2c{word-spacing:-32.815234pt;}
.ws30{word-spacing:-31.028875pt;}
.ws58{word-spacing:-28.581801pt;}
.ws2b{word-spacing:-28.361566pt;}
.ws25{word-spacing:-27.505088pt;}
.ws2d{word-spacing:-27.162499pt;}
.ws31{word-spacing:-26.354966pt;}
.ws29{word-spacing:-25.963432pt;}
.ws28{word-spacing:-24.935662pt;}
.ws3b{word-spacing:-23.394010pt;}
.ws39{word-spacing:-21.093760pt;}
.ws32{word-spacing:-19.429751pt;}
.ws12{word-spacing:-15.780758pt;}
.ws34{word-spacing:-15.343141pt;}
.wse{word-spacing:-15.207899pt;}
.ws4f{word-spacing:-14.877483pt;}
.ws26{word-spacing:-13.777016pt;}
.ws76{word-spacing:-13.389824pt;}
.ws41{word-spacing:-12.568964pt;}
.ws23{word-spacing:-12.044182pt;}
.ws36{word-spacing:-10.669234pt;}
.ws3e{word-spacing:-10.323585pt;}
.ws38{word-spacing:-10.066788pt;}
.ws45{word-spacing:-10.048289pt;}
.ws2e{word-spacing:-10.008525pt;}
.wsf{word-spacing:-9.585554pt;}
.ws11{word-spacing:-9.565925pt;}
.ws10{word-spacing:-9.559037pt;}
.wsb{word-spacing:-9.245293pt;}
.ws2f{word-spacing:-7.365686pt;}
.wsa{word-spacing:-7.226206pt;}
.ws3a{word-spacing:-1.008832pt;}
.ws3c{word-spacing:-0.963535pt;}
.ws73{word-spacing:-0.850142pt;}
.ws75{word-spacing:-0.143462pt;}
.ws8{word-spacing:0.000000pt;}
.ws51{word-spacing:0.531339pt;}
.ws74{word-spacing:0.743874pt;}
.ws77{word-spacing:0.850142pt;}
.ws4d{word-spacing:0.903276pt;}
.ws15{word-spacing:1.062677pt;}
.ws71{word-spacing:1.115811pt;}
.ws16{word-spacing:1.145154pt;}
.ws72{word-spacing:1.168945pt;}
.ws17{word-spacing:1.381481pt;}
.ws88{word-spacing:1.594016pt;}
.ws85{word-spacing:1.647150pt;}
.ws1f{word-spacing:1.700284pt;}
.ws7c{word-spacing:1.965953pt;}
.ws1{word-spacing:2.019940pt;}
.ws50{word-spacing:2.391024pt;}
.ws19{word-spacing:2.550426pt;}
.ws67{word-spacing:2.603559pt;}
.ws66{word-spacing:2.614993pt;}
.ws63{word-spacing:2.656693pt;}
.ws62{word-spacing:2.684326pt;}
.ws55{word-spacing:2.762198pt;}
.ws4{word-spacing:2.762961pt;}
.ws53{word-spacing:2.813472pt;}
.ws87{word-spacing:2.815557pt;}
.ws3{word-spacing:2.816095pt;}
.ws56{word-spacing:2.817660pt;}
.ws83{word-spacing:2.818437pt;}
.ws6d{word-spacing:2.819328pt;}
.ws54{word-spacing:2.820058pt;}
.ws7{word-spacing:2.933009pt;}
.ws13{word-spacing:3.012710pt;}
.ws59{word-spacing:3.188032pt;}
.ws7a{word-spacing:3.613103pt;}
.ws6b{word-spacing:3.772505pt;}
.ws4b{word-spacing:3.825638pt;}
.ws6c{word-spacing:3.878772pt;}
.ws7b{word-spacing:4.516379pt;}
.ws20{word-spacing:4.569513pt;}
.ws1d{word-spacing:4.994583pt;}
.ws21{word-spacing:5.260253pt;}
.ws6a{word-spacing:5.313387pt;}
.ws68{word-spacing:5.366521pt;}
.ws69{word-spacing:5.388326pt;}
.ws86{word-spacing:5.409504pt;}
.ws5c{word-spacing:5.419654pt;}
.ws5{word-spacing:5.472788pt;}
.ws1e{word-spacing:5.525922pt;}
.ws1c{word-spacing:5.579056pt;}
.ws5e{word-spacing:5.685324pt;}
.ws5d{word-spacing:5.724326pt;}
.ws2{word-spacing:5.993540pt;}
.ws4a{word-spacing:6.057301pt;}
.ws64{word-spacing:6.110395pt;}
.ws70{word-spacing:6.216662pt;}
.ws6f{word-spacing:6.269796pt;}
.ws27{word-spacing:6.493304pt;}
.ws5b{word-spacing:6.588599pt;}
.ws7e{word-spacing:6.907403pt;}
.ws80{word-spacing:6.932828pt;}
.ws7f{word-spacing:6.941104pt;}
.ws18{word-spacing:7.173072pt;}
.ws6e{word-spacing:7.268741pt;}
.ws78{word-spacing:7.279340pt;}
.ws43{word-spacing:7.704411pt;}
.ws1b{word-spacing:7.863812pt;}
.ws82{word-spacing:8.166930pt;}
.ws81{word-spacing:8.182615pt;}
.ws79{word-spacing:8.183492pt;}
.ws7d{word-spacing:8.448285pt;}
.ws84{word-spacing:8.468891pt;}
.ws5f{word-spacing:8.820222pt;}
.ws61{word-spacing:9.139025pt;}
.ws6{word-spacing:9.860992pt;}
.ws14{word-spacing:10.469000pt;}
.ws4e{word-spacing:10.786175pt;}
.ws1a{word-spacing:11.211246pt;}
.wsc{word-spacing:11.689451pt;}
.ws0{word-spacing:12.558797pt;}
.ws60{word-spacing:12.752128pt;}
.ws9{word-spacing:34.271344pt;}
.ws22{word-spacing:45.907968pt;}
.ws37{word-spacing:47.331697pt;}
.ws33{word-spacing:55.711751pt;}
.ws35{word-spacing:78.286939pt;}
.ws46{word-spacing:96.598447pt;}
.ws44{word-spacing:96.598574pt;}
.ws2a{word-spacing:149.708229pt;}
.ws24{word-spacing:171.291519pt;}
.ws3f{word-spacing:273.565069pt;}
.ws40{word-spacing:273.565166pt;}
.ws5a{word-spacing:308.289754pt;}
.ws52{word-spacing:335.525811pt;}
.ws57{word-spacing:479.869190pt;}
.ws65{word-spacing:509.311177pt;}
.ws48{word-spacing:614.767903pt;}
.ws3d{word-spacing:709.971073pt;}
.ws42{word-spacing:917.710038pt;}
._f{margin-left:-30.923910pt;}
._10{margin-left:-28.054682pt;}
._b{margin-left:-26.566933pt;}
._25{margin-left:-25.079185pt;}
._8{margin-left:-12.294402pt;}
._11{margin-left:-8.926490pt;}
._26{margin-left:-7.881170pt;}
._1e{margin-left:-6.820507pt;}
._4{margin-left:-5.929779pt;}
._27{margin-left:-4.900263pt;}
._1{margin-left:-3.965936pt;}
._3d{margin-left:-2.975803pt;}
._3{margin-left:-1.912832pt;}
._6{margin-left:-0.956397pt;}
._7{width:1.105181pt;}
._2{width:2.295387pt;}
._0{width:3.965936pt;}
._e{width:5.136521pt;}
._c{width:6.829916pt;}
._45{width:15.483522pt;}
._37{width:16.577805pt;}
._13{width:17.506279pt;}
._14{width:18.450741pt;}
._46{width:19.404492pt;}
._20{width:20.517580pt;}
._1f{width:21.758564pt;}
._5{width:23.538303pt;}
._44{width:24.781812pt;}
._42{width:25.714154pt;}
._2a{width:28.311929pt;}
._1d{width:31.708183pt;}
._43{width:33.580604pt;}
._18{width:34.877353pt;}
._21{width:35.783552pt;}
._23{width:37.812146pt;}
._17{width:41.334715pt;}
._1a{width:43.290777pt;}
._15{width:47.155793pt;}
._1c{width:49.277738pt;}
._28{width:51.909899pt;}
._16{width:53.240134pt;}
._2b{width:55.458073pt;}
._2e{width:57.014721pt;}
._d{width:58.509180pt;}
._19{width:60.785143pt;}
._2f{width:63.761067pt;}
._3f{width:68.527572pt;}
._3b{width:70.880112pt;}
._3a{width:77.187912pt;}
._40{width:78.679096pt;}
._33{width:81.484627pt;}
._36{width:108.727419pt;}
._41{width:111.002431pt;}
._31{width:115.708735pt;}
._35{width:127.042223pt;}
._34{width:190.528545pt;}
._2c{width:226.213277pt;}
._2d{width:229.680809pt;}
._30{width:292.722240pt;}
._3e{width:327.446915pt;}
._39{width:336.449265pt;}
._38{width:354.658286pt;}
._3c{width:517.559970pt;}
._32{width:770.211925pt;}
._29{width:796.782592pt;}
._24{width:1703.815129pt;}
._22{width:1911.982975pt;}
._a{width:2007.861807pt;}
._12{width:2043.724486pt;}
._1b{width:2195.793600pt;}
._9{width:2228.473621pt;}
.fs30{font-size:1.712950pt;}
.fs34{font-size:1.908716pt;}
.fs5a{font-size:2.740721pt;}
.fs2d{font-size:3.279076pt;}
.fs58{font-size:3.328018pt;}
.fs42{font-size:3.499313pt;}
.fs33{font-size:3.817432pt;}
.fs21{font-size:4.160022pt;}
.fs23{font-size:4.453671pt;}
.fs40{font-size:4.894144pt;}
.fs26{font-size:4.992027pt;}
.fs12{font-size:5.065439pt;}
.fs2b{font-size:5.628265pt;}
.fs43{font-size:5.701677pt;}
.fs2e{font-size:5.872972pt;}
.fs31{font-size:5.995326pt;}
.fs1a{font-size:6.386858pt;}
.fs24{font-size:7.316745pt;}
.fs1b{font-size:7.341216pt;}
.fs4d{font-size:7.365686pt;}
.fs54{font-size:7.414628pt;}
.fs11{font-size:7.855101pt;}
.fs41{font-size:8.099808pt;}
.fsf{font-size:8.295573pt;}
.fs16{font-size:8.662635pt;}
.fs17{font-size:8.833929pt;}
.fs49{font-size:8.858400pt;}
.fs27{font-size:8.882872pt;}
.fs46{font-size:9.249932pt;}
.fs28{font-size:9.568051pt;}
.fs2c{font-size:9.984053pt;}
.fs4c{font-size:10.008525pt;}
.fs3e{font-size:10.081935pt;}
.fs32{font-size:10.130877pt;}
.fsc{font-size:10.546880pt;}
.fs53{font-size:10.669234pt;}
.fs22{font-size:10.840528pt;}
.fs4a{font-size:11.697004pt;}
.fs10{font-size:11.770417pt;}
.fs29{font-size:12.064064pt;}
.fs1c{font-size:12.529008pt;}
.fsa{font-size:13.165247pt;}
.fs15{font-size:13.483366pt;}
.fs18{font-size:13.752544pt;}
.fs2a{font-size:13.777016pt;}
.fs1d{font-size:13.923839pt;}
.fs3b{font-size:13.972779pt;}
.fs1e{font-size:15.196316pt;}
.fs52{font-size:15.343141pt;}
.fs2f{font-size:15.587848pt;}
.fs19{font-size:15.661260pt;}
.fs47{font-size:15.734672pt;}
.fse{font-size:15.881496pt;}
.fs44{font-size:16.370911pt;}
.fs14{font-size:17.080562pt;}
.fs25{font-size:18.059391pt;}
.fs9{font-size:18.597746pt;}
.fs4e{font-size:19.209514pt;}
.fs39{font-size:19.307397pt;}
.fs51{font-size:19.429751pt;}
.fs1f{font-size:21.020348pt;}
.fs56{font-size:21.093760pt;}
.fs57{font-size:23.100360pt;}
.fs59{font-size:23.394010pt;}
.fs3d{font-size:23.907894pt;}
.fsb{font-size:24.152599pt;}
.fs38{font-size:24.593073pt;}
.fs35{font-size:24.935662pt;}
.fs37{font-size:25.743198pt;}
.fs3f{font-size:25.963432pt;}
.fs3c{font-size:26.061315pt;}
.fs50{font-size:26.354966pt;}
.fs4b{font-size:27.162499pt;}
.fs8{font-size:27.505088pt;}
.fs45{font-size:28.361566pt;}
.fs20{font-size:28.532858pt;}
.fs5c{font-size:28.581801pt;}
.fs5e{font-size:29.364862pt;}
.fs5b{font-size:29.364863pt;}
.fs13{font-size:29.878748pt;}
.fs7{font-size:30.123456pt;}
.fs4f{font-size:31.028875pt;}
.fs55{font-size:32.154525pt;}
.fs48{font-size:32.815234pt;}
.fs3a{font-size:33.720650pt;}
.fsd{font-size:33.867476pt;}
.fs6{font-size:34.259007pt;}
.fs5d{font-size:35.751720pt;}
.fs36{font-size:41.600222pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs5f{font-size:76.513067pt;}
.fs1{font-size:91.815467pt;}
.fs5{font-size:110.200000pt;}
.fs0{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.ybe{bottom:0.611768pt;}
.yb4{bottom:1.835304pt;}
.y110{bottom:1.850638pt;}
.yb3{bottom:6.002973pt;}
.y106{bottom:14.873609pt;}
.ya5{bottom:16.517735pt;}
.yb8{bottom:16.708913pt;}
.yb2{bottom:17.626565pt;}
.ya6{bottom:21.899382pt;}
.yb1{bottom:29.250156pt;}
.yc2{bottom:31.369168pt;}
.y12b{bottom:32.366349pt;}
.ya2{bottom:33.182564pt;}
.y9a{bottom:35.693186pt;}
.y143{bottom:36.189899pt;}
.y15f{bottom:37.661746pt;}
.yb0{bottom:40.873748pt;}
.y5c{bottom:41.058294pt;}
.y83{bottom:41.804137pt;}
.y160{bottom:42.699493pt;}
.y9f{bottom:43.004132pt;}
.y71{bottom:43.443234pt;}
.y59{bottom:45.836422pt;}
.y7b{bottom:46.952287pt;}
.yc3{bottom:47.042688pt;}
.y7d{bottom:47.734934pt;}
.y79{bottom:47.755244pt;}
.yaf{bottom:52.497339pt;}
.y12c{bottom:52.756625pt;}
.y107{bottom:53.643688pt;}
.y99{bottom:54.168481pt;}
.y2d{bottom:56.149333pt;}
.ya1{bottom:57.263465pt;}
.y5b{bottom:61.910552pt;}
.yc4{bottom:62.716134pt;}
.y144{bottom:62.954748pt;}
.y48{bottom:63.603192pt;}
.yae{bottom:64.120931pt;}
.yf0{bottom:65.950960pt;}
.yf1{bottom:70.840820pt;}
.y7a{bottom:71.218993pt;}
.y78{bottom:72.018109pt;}
.y7c{bottom:72.363538pt;}
.y12d{bottom:73.152871pt;}
.y54{bottom:74.813962pt;}
.yad{bottom:75.744522pt;}
.y82{bottom:76.187283pt;}
.y155{bottom:76.426261pt;}
.y58{bottom:76.537851pt;}
.yc5{bottom:78.395796pt;}
.yb9{bottom:80.200512pt;}
.y9e{bottom:80.254806pt;}
.y5a{bottom:82.347028pt;}
.y56{bottom:83.558892pt;}
.y113{bottom:83.608417pt;}
.y16e{bottom:83.853124pt;}
.y70{bottom:85.550857pt;}
.y6a{bottom:85.948922pt;}
.y68{bottom:86.261095pt;}
.y181{bottom:87.368114pt;}
.y75{bottom:88.760363pt;}
.y6e{bottom:89.545408pt;}
.y145{bottom:89.719597pt;}
.ya0{bottom:91.384628pt;}
.y12e{bottom:93.543147pt;}
.yc6{bottom:94.069243pt;}
.y6b{bottom:94.743870pt;}
.y11c{bottom:96.541192pt;}
.yee{bottom:96.678667pt;}
.y180{bottom:98.991705pt;}
.y124{bottom:99.496056pt;}
.ye6{bottom:101.869667pt;}
.y69{bottom:104.122542pt;}
.y67{bottom:104.572412pt;}
.ya3{bottom:105.168000pt;}
.y80{bottom:107.059396pt;}
.y6f{bottom:108.511219pt;}
.y108{bottom:109.504198pt;}
.yc7{bottom:109.742763pt;}
.y17f{bottom:110.615297pt;}
.y57{bottom:111.578623pt;}
.yed{bottom:112.618667pt;}
.y6d{bottom:113.702046pt;}
.y12f{bottom:113.933398pt;}
.ya7{bottom:114.105026pt;}
.y98{bottom:114.222685pt;}
.y77{bottom:115.427868pt;}
.y146{bottom:116.484446pt;}
.yfb{bottom:117.157773pt;}
.ye{bottom:117.974667pt;}
.y1a3{bottom:119.785333pt;}
.y161{bottom:120.204378pt;}
.y17e{bottom:122.238888pt;}
.y96{bottom:124.856876pt;}
.yc8{bottom:125.416258pt;}
.yec{bottom:128.558667pt;}
.y156{bottom:130.953141pt;}
.y17d{bottom:133.862480pt;}
.y130{bottom:134.329693pt;}
.yf2{bottom:134.397419pt;}
.y1a2{bottom:135.725333pt;}
.y52{bottom:136.420441pt;}
.y9d{bottom:136.759116pt;}
.y97{bottom:137.086828pt;}
.y66{bottom:137.348762pt;}
.y81{bottom:139.687013pt;}
.yc9{bottom:141.089729pt;}
.y147{bottom:143.249295pt;}
.y6c{bottom:144.546579pt;}
.y168{bottom:145.042157pt;}
.y114{bottom:145.323571pt;}
.y17c{bottom:145.486071pt;}
.y16f{bottom:145.812985pt;}
.y94{bottom:148.083846pt;}
.y131{bottom:154.719944pt;}
.yd{bottom:155.880000pt;}
.yca{bottom:156.763274pt;}
.y17b{bottom:157.109663pt;}
.y1a1{bottom:159.636000pt;}
.y9b{bottom:160.124272pt;}
.yfc{bottom:163.474702pt;}
.y109{bottom:165.358614pt;}
.y17a{bottom:168.733254pt;}
.y148{bottom:170.014144pt;}
.y47{bottom:170.033249pt;}
.y11d{bottom:171.183003pt;}
.y9c{bottom:171.806862pt;}
.ycb{bottom:172.436745pt;}
.y95{bottom:173.105107pt;}
.y132{bottom:175.110188pt;}
.y1a0{bottom:175.576000pt;}
.y125{bottom:177.092669pt;}
.yba{bottom:177.263594pt;}
.yc{bottom:179.378667pt;}
.y179{bottom:180.356846pt;}
.y53{bottom:180.364373pt;}
.ye7{bottom:181.846119pt;}
.y157{bottom:185.480045pt;}
.ycc{bottom:188.110257pt;}
.y55{bottom:190.340850pt;}
.y19f{bottom:191.516000pt;}
.y178{bottom:191.980438pt;}
.y63{bottom:194.951574pt;}
.y65{bottom:195.299039pt;}
.y133{bottom:195.506498pt;}
.y149{bottom:196.778993pt;}
.y162{bottom:197.715404pt;}
.yf3{bottom:197.953987pt;}
.yb{bottom:202.878667pt;}
.y177{bottom:203.604029pt;}
.ycd{bottom:203.783736pt;}
.y74{bottom:204.479980pt;}
.ya8{bottom:206.310715pt;}
.y5f{bottom:206.392382pt;}
.y115{bottom:207.032618pt;}
.y19e{bottom:207.456000pt;}
.y170{bottom:207.766740pt;}
.y76{bottom:209.419828pt;}
.yfd{bottom:209.791667pt;}
.y134{bottom:215.896742pt;}
.y64{bottom:216.348519pt;}
.y62{bottom:216.377492pt;}
.y169{bottom:219.249637pt;}
.yce{bottom:219.463366pt;}
.y10a{bottom:221.219123pt;}
.y14a{bottom:223.543841pt;}
.y91{bottom:226.408816pt;}
.y2c{bottom:229.406667pt;}
.y19d{bottom:231.366667pt;}
.ycf{bottom:235.136845pt;}
.y135{bottom:236.286956pt;}
.y8f{bottom:237.334669pt;}
.y158{bottom:240.006883pt;}
.y93{bottom:242.044416pt;}
.y61{bottom:245.136891pt;}
.y2b{bottom:245.346667pt;}
.y11e{bottom:245.824801pt;}
.y90{bottom:246.184903pt;}
.y7f{bottom:246.782392pt;}
.ybf{bottom:247.261798pt;}
.y19c{bottom:247.306667pt;}
.y14b{bottom:250.308690pt;}
.yd0{bottom:250.810352pt;}
.y46{bottom:252.404146pt;}
.y126{bottom:254.689314pt;}
.yfe{bottom:256.108628pt;}
.y136{bottom:256.683325pt;}
.y2a{bottom:261.286667pt;}
.yf4{bottom:261.510557pt;}
.ye8{bottom:261.816441pt;}
.y8d{bottom:262.227143pt;}
.y19b{bottom:263.246667pt;}
.yb5{bottom:263.844057pt;}
.ye2{bottom:264.368957pt;}
.yd1{bottom:266.483831pt;}
.y15e{bottom:267.180104pt;}
.y116{bottom:268.747759pt;}
.y5e{bottom:268.822736pt;}
.y171{bottom:269.720466pt;}
.y167{bottom:274.244112pt;}
.ybb{bottom:274.320583pt;}
.y163{bottom:275.220252pt;}
.y10b{bottom:277.073539pt;}
.y29{bottom:277.226667pt;}
.y19a{bottom:279.186667pt;}
.y8e{bottom:280.484445pt;}
.y51{bottom:281.198971pt;}
.yd2{bottom:282.157336pt;}
.y60{bottom:287.411223pt;}
.y92{bottom:287.429294pt;}
.yfa{bottom:288.314776pt;}
.y28{bottom:293.166667pt;}
.y16a{bottom:293.450938pt;}
.y159{bottom:294.533780pt;}
.y4c{bottom:294.720059pt;}
.y199{bottom:295.128000pt;}
.y137{bottom:297.463754pt;}
.yd3{bottom:297.830814pt;}
.ya9{bottom:298.510271pt;}
.yff{bottom:302.425586pt;}
.y14c{bottom:303.838388pt;}
.y4e{bottom:308.343933pt;}
.y50{bottom:308.747646pt;}
.yd4{bottom:313.504322pt;}
.y138{bottom:317.860122pt;}
.y198{bottom:319.656000pt;}
.y11f{bottom:320.466648pt;}
.y73{bottom:320.779343pt;}
.y27{bottom:322.390667pt;}
.y123{bottom:322.872504pt;}
.y11b{bottom:323.017838pt;}
.yf5{bottom:325.061001pt;}
.ya{bottom:327.770667pt;}
.yd5{bottom:329.177830pt;}
.y117{bottom:330.456807pt;}
.y14d{bottom:330.603237pt;}
.y172{bottom:331.674189pt;}
.y127{bottom:332.292111pt;}
.y10c{bottom:332.927955pt;}
.y4f{bottom:337.022635pt;}
.y8c{bottom:337.159147pt;}
.y139{bottom:338.250337pt;}
.y26{bottom:338.330667pt;}
.y88{bottom:341.412219pt;}
.ye9{bottom:341.792856pt;}
.yd6{bottom:344.857431pt;}
.yef{bottom:346.413838pt;}
.y100{bottom:348.742545pt;}
.y15a{bottom:349.060662pt;}
.y43{bottom:349.313838pt;}
.y9{bottom:349.380000pt;}
.y164{bottom:352.731269pt;}
.y25{bottom:354.272000pt;}
.y197{bottom:356.858667pt;}
.y14e{bottom:357.368086pt;}
.y4b{bottom:358.136663pt;}
.y85{bottom:358.306647pt;}
.y13a{bottom:358.640551pt;}
.y87{bottom:358.885394pt;}
.yd7{bottom:360.530939pt;}
.y16b{bottom:367.658393pt;}
.y24{bottom:370.212000pt;}
.y8{bottom:370.989333pt;}
.y4d{bottom:371.331062pt;}
.ybc{bottom:371.377572pt;}
.ya4{bottom:372.705838pt;}
.y196{bottom:372.800000pt;}
.y8a{bottom:375.705622pt;}
.yd8{bottom:376.204432pt;}
.y86{bottom:377.656200pt;}
.y13b{bottom:379.036920pt;}
.y49{bottom:381.615202pt;}
.y14f{bottom:384.132935pt;}
.y8b{bottom:385.261300pt;}
.y23{bottom:386.152000pt;}
.yf6{bottom:388.617571pt;}
.y195{bottom:388.740000pt;}
.y10d{bottom:388.788479pt;}
.yaa{bottom:390.715938pt;}
.yd9{bottom:391.877922pt;}
.y118{bottom:392.165840pt;}
.y7{bottom:392.598667pt;}
.y173{bottom:393.634069pt;}
.y101{bottom:395.059491pt;}
.y120{bottom:395.108435pt;}
.y13c{bottom:399.427134pt;}
.y5d{bottom:402.735670pt;}
.y7e{bottom:403.394994pt;}
.y15b{bottom:403.581421pt;}
.y194{bottom:404.680000pt;}
.yda{bottom:407.551415pt;}
.y128{bottom:409.888754pt;}
.y150{bottom:410.897784pt;}
.y6{bottom:414.208000pt;}
.y22{bottom:415.376000pt;}
.y13d{bottom:419.817363pt;}
.yea{bottom:421.763163pt;}
.ydb{bottom:423.224908pt;}
.y3f{bottom:424.674667pt;}
.y193{bottom:428.590667pt;}
.y165{bottom:430.236149pt;}
.y21{bottom:431.316000pt;}
.y18d{bottom:431.952000pt;}
.y5{bottom:435.817333pt;}
.y151{bottom:437.662633pt;}
.ydc{bottom:438.898416pt;}
.y13e{bottom:440.213703pt;}
.y3e{bottom:440.614667pt;}
.y102{bottom:441.376434pt;}
.y16c{bottom:441.859741pt;}
.y84{bottom:442.960938pt;}
.y192{bottom:444.530667pt;}
.y10e{bottom:444.642910pt;}
.y20{bottom:447.256000pt;}
.y18c{bottom:447.892000pt;}
.y4a{bottom:447.906057pt;}
.yf7{bottom:452.174154pt;}
.y119{bottom:453.880981pt;}
.ydd{bottom:454.571894pt;}
.y174{bottom:455.587821pt;}
.y3d{bottom:456.554667pt;}
.y15c{bottom:458.108303pt;}
.y89{bottom:460.359925pt;}
.y13f{bottom:460.603932pt;}
.y4{bottom:463.096000pt;}
.y1f{bottom:463.196000pt;}
.y18b{bottom:463.832000pt;}
.y152{bottom:464.427481pt;}
.ybd{bottom:468.440677pt;}
.y121{bottom:469.750243pt;}
.yde{bottom:470.245392pt;}
.y3c{bottom:472.494667pt;}
.y191{bottom:473.638667pt;}
.y1e{bottom:479.136000pt;}
.y18a{bottom:479.772000pt;}
.y140{bottom:480.994161pt;}
.yab{bottom:482.921605pt;}
.ydf{bottom:485.925010pt;}
.y129{bottom:487.485399pt;}
.y103{bottom:487.693402pt;}
.y3b{bottom:488.434667pt;}
.y153{bottom:491.192330pt;}
.y1d{bottom:495.077333pt;}
.y10f{bottom:500.503436pt;}
.y141{bottom:501.390500pt;}
.ye0{bottom:501.598508pt;}
.yeb{bottom:501.739593pt;}
.y189{bottom:504.300000pt;}
.y166{bottom:507.747152pt;}
.y45{bottom:507.767419pt;}
.y1c{bottom:511.017333pt;}
.y3a{bottom:512.345333pt;}
.y15d{bottom:512.635178pt;}
.y11a{bottom:515.590022pt;}
.yf8{bottom:515.730724pt;}
.y16d{bottom:516.061078pt;}
.ye1{bottom:517.272001pt;}
.y175{bottom:517.541562pt;}
.y154{bottom:517.957179pt;}
.y142{bottom:521.780729pt;}
.y44{bottom:524.896922pt;}
.y18e{bottom:525.842667pt;}
.y1b{bottom:526.957333pt;}
.yc0{bottom:531.626370pt;}
.y39{bottom:536.256000pt;}
.y188{bottom:541.504000pt;}
.y72{bottom:542.944077pt;}
.y38{bottom:552.196000pt;}
.y190{bottom:553.022667pt;}
.y1a{bottom:556.181333pt;}
.y187{bottom:557.444000pt;}
.y18f{bottom:567.634667pt;}
.y37{bottom:568.136000pt;}
.y19{bottom:572.121333pt;}
.y36{bottom:584.076000pt;}
.y186{bottom:586.552000pt;}
.y18{bottom:588.061333pt;}
.y3{bottom:594.168000pt;}
.y112{bottom:598.770667pt;}
.y35{bottom:600.016000pt;}
.y17{bottom:604.001333pt;}
.y16{bottom:619.941333pt;}
.y111{bottom:623.298667pt;}
.y2{bottom:623.390667pt;}
.y34{bottom:623.926667pt;}
.y185{bottom:630.501333pt;}
.y33{bottom:639.866667pt;}
.ye5{bottom:644.562667pt;}
.y184{bottom:646.441333pt;}
.y15{bottom:649.165333pt;}
.y32{bottom:655.808000pt;}
.ye4{bottom:660.502667pt;}
.y14{bottom:665.105333pt;}
.y176{bottom:669.268488pt;}
.y183{bottom:670.352000pt;}
.y31{bottom:671.748000pt;}
.y13{bottom:681.046667pt;}
.ye3{bottom:685.030667pt;}
.y40{bottom:686.292000pt;}
.y30{bottom:687.688000pt;}
.y12{bottom:696.986667pt;}
.y11{bottom:712.926667pt;}
.y1{bottom:714.730667pt;}
.y10{bottom:742.150667pt;}
.y2f{bottom:764.732000pt;}
.y12a{bottom:770.686662pt;}
.y122{bottom:770.831995pt;}
.yf9{bottom:794.227995pt;}
.y104{bottom:797.127995pt;}
.yac{bottom:820.519995pt;}
.yf{bottom:832.478667pt;}
.y2e{bottom:839.120000pt;}
.y105{bottom:890.308000pt;}
.yb7{bottom:898.278667pt;}
.yc1{bottom:906.248000pt;}
.yb6{bottom:922.188000pt;}
.y182{bottom:930.776000pt;}
.y42{bottom:946.716000pt;}
.y41{bottom:982.698667pt;}
.h4d{height:2.095688pt;}
.h2a{height:2.507341pt;}
.h39{height:2.675744pt;}
.h1f{height:3.180954pt;}
.h21{height:3.405493pt;}
.h36{height:3.742300pt;}
.h24{height:3.817145pt;}
.h37{height:4.303644pt;}
.h3a{height:4.359779pt;}
.h2b{height:4.490759pt;}
.h2d{height:4.584317pt;}
.h18{height:4.883701pt;}
.h22{height:5.594738pt;}
.h44{height:5.596195pt;}
.h19{height:5.613449pt;}
.h29{height:5.916446pt;}
.h11{height:6.006391pt;}
.h38{height:6.193505pt;}
.hf{height:6.343197pt;}
.h40{height:6.730308pt;}
.h15{height:6.754850pt;}
.h25{height:6.792274pt;}
.h3d{height:7.027780pt;}
.h26{height:7.316196pt;}
.h43{height:7.604133pt;}
.hc{height:8.064655pt;}
.h20{height:8.289193pt;}
.h41{height:8.886982pt;}
.h10{height:9.000231pt;}
.h27{height:9.165861pt;}
.h1a{height:9.580286pt;}
.h14{height:10.310034pt;}
.h28{height:10.467303pt;}
.h16{height:10.515861pt;}
.h1b{height:10.646842pt;}
.h34{height:10.684264pt;}
.h1c{height:11.619840pt;}
.h4a{height:11.657191pt;}
.h2c{height:11.843111pt;}
.h3e{height:11.954663pt;}
.h17{height:11.975358pt;}
.he{height:12.143761pt;}
.h3b{height:12.438056pt;}
.h13{height:13.060625pt;}
.h2e{height:13.254534pt;}
.h23{height:13.809085pt;}
.ha{height:14.220738pt;}
.h45{height:14.594729pt;}
.h48{height:14.762057pt;}
.h32{height:14.763371pt;}
.h1d{height:16.073176pt;}
.h4c{height:17.769363pt;}
.hb{height:18.468247pt;}
.h47{height:20.023597pt;}
.h42{height:20.637133pt;}
.h51{height:21.436350pt;}
.h35{height:21.532841pt;}
.h3c{height:21.548143pt;}
.h1e{height:21.678285pt;}
.h54{height:21.715470pt;}
.h53{height:21.855029pt;}
.h4e{height:22.453796pt;}
.h12{height:22.846738pt;}
.h9{height:23.657528pt;}
.h46{height:23.726181pt;}
.h4b{height:24.429903pt;}
.h3f{height:24.931887pt;}
.h55{height:25.694255pt;}
.h33{height:25.784442pt;}
.hd{height:25.896712pt;}
.h50{height:26.028816pt;}
.h8{height:26.196096pt;}
.h52{height:27.162928pt;}
.h56{height:27.337497pt;}
.h31{height:28.447301pt;}
.h2f{height:31.606419pt;}
.h57{height:31.809545pt;}
.h30{height:35.865600pt;}
.h4{height:39.850400pt;}
.h49{height:40.835659pt;}
.h3{height:44.632747pt;}
.h5{height:44.887791pt;}
.h59{height:53.559147pt;}
.h2{height:64.454458pt;}
.h6{height:77.140000pt;}
.h4f{height:87.482820pt;}
.h1{height:92.538507pt;}
.h58{height:215.342327pt;}
.h7{height:550.591177pt;}
.h0{height:1056.000000pt;}
.w2{width:114.400611pt;}
.w3{width:217.177602pt;}
.w1{width:550.591177pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x55{left:10.292507pt;}
.x50{left:11.518443pt;}
.x76{left:13.420660pt;}
.x4c{left:14.577284pt;}
.x53{left:15.571407pt;}
.x74{left:16.517735pt;}
.x52{left:17.511858pt;}
.x4b{left:19.242015pt;}
.x71{left:20.714909pt;}
.x79{left:22.530267pt;}
.x4e{left:24.470719pt;}
.x60{left:26.334700pt;}
.x5c{left:27.433970pt;}
.x69{left:29.183244pt;}
.x66{left:31.161931pt;}
.x7d{left:33.207530pt;}
.x7c{left:34.536214pt;}
.x7e{left:36.180340pt;}
.x72{left:37.461230pt;}
.x77{left:38.866384pt;}
.x87{left:40.319333pt;}
.x68{left:41.475957pt;}
.x7b{left:44.219354pt;}
.x5a{left:45.978187pt;}
.x1e{left:47.104760pt;}
.x78{left:48.195846pt;}
.x80{left:50.719389pt;}
.x83{left:53.070872pt;}
.x75{left:55.269413pt;}
.x84{left:57.238541pt;}
.x5e{left:58.739284pt;}
.x85{left:62.094449pt;}
.x51{left:63.379924pt;}
.x81{left:65.267996pt;}
.x1b{left:67.296328pt;}
.x8f{left:70.726113pt;}
.x86{left:71.701118pt;}
.x82{left:72.676124pt;}
.x5f{left:73.775394pt;}
.x59{left:74.874665pt;}
.x5d{left:76.318055pt;}
.x62{left:77.962181pt;}
.x89{left:86.011059pt;}
.x29{left:91.424094pt;}
.x6e{left:92.625495pt;}
.xf{left:96.000000pt;}
.x2{left:97.445333pt;}
.x65{left:100.846127pt;}
.x8e{left:105.300563pt;}
.x5b{left:107.479986pt;}
.x64{left:110.596179pt;}
.x6a{left:111.829277pt;}
.x63{left:113.014577pt;}
.x11{left:115.925333pt;}
.x67{left:119.084460pt;}
.x31{left:120.454395pt;}
.x32{left:121.487861pt;}
.x6b{left:123.615366pt;}
.x6c{left:125.116113pt;}
.x61{left:128.442601pt;}
.x4a{left:130.383050pt;}
.x6d{left:131.711736pt;}
.x14{left:132.706078pt;}
.x4f{left:139.521334pt;}
.x7a{left:142.475029pt;}
.x30{left:143.596430pt;}
.x10{left:146.477333pt;}
.x8d{left:148.411087pt;}
.x73{left:152.636110pt;}
.x56{left:159.059673pt;}
.x58{left:164.541867pt;}
.x1f{left:170.041760pt;}
.x1{left:175.894667pt;}
.x8a{left:181.599807pt;}
.x7f{left:198.709885pt;}
.x16{left:200.990872pt;}
.x17{left:205.796297pt;}
.x28{left:221.823244pt;}
.x88{left:226.000475pt;}
.x1c{left:227.657114pt;}
.x34{left:229.719143pt;}
.x33{left:234.044833pt;}
.x20{left:261.452489pt;}
.x54{left:272.236749pt;}
.x8b{left:277.188553pt;}
.x2a{left:282.604603pt;}
.x15{left:289.084266pt;}
.x40{left:290.774931pt;}
.x35{left:292.633058pt;}
.x2b{left:294.562516pt;}
.x42{left:295.580357pt;}
.x12{left:301.838667pt;}
.x3c{left:303.018178pt;}
.xe{left:305.236000pt;}
.x21{left:313.564513pt;}
.xd{left:315.506667pt;}
.xc{left:321.398667pt;}
.x70{left:323.625259pt;}
.x41{left:332.914991pt;}
.xb{left:337.530667pt;}
.x1d{left:341.894390pt;}
.x3{left:344.808000pt;}
.x4{left:348.454667pt;}
.x5{left:354.481333pt;}
.x7{left:355.377333pt;}
.x9{left:357.150667pt;}
.x6{left:358.924000pt;}
.x3d{left:361.546798pt;}
.x8{left:363.228000pt;}
.x6f{left:368.311504pt;}
.x8c{left:372.777299pt;}
.xa{left:374.897333pt;}
.x3e{left:379.454607pt;}
.x37{left:382.905489pt;}
.x36{left:384.392187pt;}
.x2c{left:388.086271pt;}
.x45{left:389.924695pt;}
.x1a{left:397.393489pt;}
.x22{left:399.337510pt;}
.x43{left:406.716909pt;}
.x90{left:408.000000pt;}
.x19{left:422.577285pt;}
.x18{left:428.367815pt;}
.x25{left:429.852429pt;}
.x39{left:448.496013pt;}
.x2d{left:451.375283pt;}
.x46{left:453.216080pt;}
.x26{left:460.462328pt;}
.x38{left:464.036996pt;}
.x23{left:474.814883pt;}
.x2e{left:483.019789pt;}
.x27{left:484.324687pt;}
.x44{left:488.493791pt;}
.x47{left:492.665884pt;}
.x3a{left:498.901203pt;}
.x3b{left:500.679154pt;}
.x24{left:507.201897pt;}
.x2f{left:514.664271pt;}
.x48{left:522.227656pt;}
.x49{left:524.072519pt;}
.x3f{left:526.965092pt;}
.x4d{left:562.473081pt;}
.x57{left:706.716000pt;}
.x13{left:713.358667pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  