
    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_1254ff4cf99358541d75b727.woff')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_61511d8f02de3a323a9ef3f8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.882324;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_bd58fabe93f2958ab0037d65.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_742e1f18fd5847e2f424e30e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_f9e7f1391e9ab3e6b4503dc7.woff')format("woff");}.ff5{font-family:ff5;line-height:1.120117;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_14c7c73c2cae5b49c6f7989a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_162f86cb45fb58b706f35cbc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.731445;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_c98f71e7464a3da8f2f90589.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_6013ed8a72a33a4f04d98ae2.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_b0dc33e3ab215eb758401a9d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.926270;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_cab84a09456ea7fa174abf41.woff')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_f9fe0eab55644f607f1e6243.woff')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_76b83487fa897fa33055cd56.woff')format("woff");}.ffd{font-family:ffd;line-height:0.740723;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_a4eed3a0ae47d6de5213a040.woff')format("woff");}.ffe{font-family:ffe;line-height:0.727539;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_2a1033673d639073224aad4d.woff')format("woff");}.fff{font-family:fff;line-height:0.938477;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_c8fbda14a3d2860c916bec18.woff')format("woff");}.ff10{font-family:ff10;line-height:0.938477;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_6deeb1fd3181bca2496ef598.woff')format("woff");}.ff11{font-family:ff11;line-height:0.910156;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_1facb820bc9fd9be890569f5.woff')format("woff");}.ff12{font-family:ff12;line-height:0.740234;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_2ff6d634a455797d7dcb24a5.woff')format("woff");}.ff13{font-family:ff13;line-height:0.718750;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_ffcc86c40011251f47981d88.woff')format("woff");}.ff14{font-family:ff14;line-height:0.677246;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_ad112b2abfcb89dbd51faff6.woff')format("woff");}.ff15{font-family:ff15;line-height:0.938477;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_76d0e1d8a35e01f5d53e7195.woff')format("woff");}.ff16{font-family:ff16;line-height:0.677246;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_bda36a0ccf4340fbd4b84b56.woff')format("woff");}.ff17{font-family:ff17;line-height:0.740234;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_a515524f7fff179a2afc9e85.woff')format("woff");}.ff18{font-family:ff18;line-height:0.677246;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_7ab902a204eb093551936351.woff')format("woff");}.ff19{font-family:ff19;line-height:0.728027;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_cc06d41c9fc747aada78e306.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.910156;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_d1d7d694f6ec1b8e4c55ecdb.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.882324;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_15b6ba8e1544b3a761ff560d.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.938477;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_273a7755544d215f5810bc55.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.925293;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_50c351e983f779506d2640b6.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.756836;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_f98ea1eae9fed69460d70ff3.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.669434;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_8a88823b5ebfa9b1f4ded8c9.woff')format("woff");}.ff20{font-family:ff20;line-height:0.675781;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_adf55bdf70165477ff311220.woff')format("woff");}.ff21{font-family:ff21;line-height:0.675781;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_8f9187ddd83ad068e51b7ffc.woff')format("woff");}.ff22{font-family:ff22;line-height:0.669434;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_713e9901e635d4e32fc48e9b.woff')format("woff");}.ff23{font-family:ff23;line-height:0.675781;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_63293d274b2f219d21c0ca92.woff')format("woff");}.ff24{font-family:ff24;line-height:0.675781;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_dc15ec415603e22aeaab9212.woff')format("woff");}.ff25{font-family:ff25;line-height:0.669434;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_a050a989ee878e7add2403ae.woff')format("woff");}.ff26{font-family:ff26;line-height:0.675781;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_be117036cc807c6baac9a61a.woff')format("woff");}.ff27{font-family:ff27;line-height:0.895996;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_235d9a2ac9252607a2b36da3.woff')format("woff");}.ff28{font-family:ff28;line-height:0.740723;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_f3e6c9483a290fc1ab781ef0.woff')format("woff");}.ff29{font-family:ff29;line-height:0.718750;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_4dd7773fa30ead9d8dd65d21.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.938477;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_153917301d69bdaecb4d48a5.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.728027;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_3917fb775f98b244bca78996.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.740234;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_97be32bb9c87bf8ea1281cdc.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.729004;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_95e3ae04e7b24645977a281e.woff')format("woff");}.ff2e{font-family:ff2e;line-height:0.689453;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_e85527aa7627789f3d798f8c.woff')format("woff");}.ff2f{font-family:ff2f;line-height:0.677246;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_866fa3d13a80de043514f329.woff')format("woff");}.ff30{font-family:ff30;line-height:0.677246;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_c24372436e9c51e430cfb602.woff')format("woff");}.ff31{font-family:ff31;line-height:0.677246;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_966e8876871f4a20316083c9.woff')format("woff");}.ff32{font-family:ff32;line-height:0.666504;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_2c9eeb2f7b1621df1c780f41.woff')format("woff");}.ff33{font-family:ff33;line-height:0.678711;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_6bd35c8f943b44debb5467ba.woff')format("woff");}.ff34{font-family:ff34;line-height:0.860840;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_2c8ad5874ada15dc31f82ba5.woff')format("woff");}.ff35{font-family:ff35;line-height:0.874023;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_800029712aea47982c6091fe.woff')format("woff");}.ff36{font-family:ff36;line-height:0.675781;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_857b11a5793582fe155ea9b4.woff')format("woff");}.ff37{font-family:ff37;line-height:0.746094;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_de970b992d6a218317651c5a.woff')format("woff");}.ff38{font-family:ff38;line-height:0.677734;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);}
.m1{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);}
.m9{transform:matrix(0.061790,0.242244,-0.242244,0.061790,0,0);-ms-transform:matrix(0.061790,0.242244,-0.242244,0.061790,0,0);-webkit-transform:matrix(0.061790,0.242244,-0.242244,0.061790,0,0);}
.m4{transform:matrix(0.085021,0.235099,-0.235099,0.085021,0,0);-ms-transform:matrix(0.085021,0.235099,-0.235099,0.085021,0,0);-webkit-transform:matrix(0.085021,0.235099,-0.235099,0.085021,0,0);}
.m6{transform:matrix(0.109463,-0.224762,0.224762,0.109463,0,0);-ms-transform:matrix(0.109463,-0.224762,0.224762,0.109463,0,0);-webkit-transform:matrix(0.109463,-0.224762,0.224762,0.109463,0,0);}
.m7{transform:matrix(0.139827,-0.207240,0.207240,0.139827,0,0);-ms-transform:matrix(0.139827,-0.207240,0.207240,0.139827,0,0);-webkit-transform:matrix(0.139827,-0.207240,0.207240,0.139827,0,0);}
.m8{transform:matrix(0.235043,-0.085175,0.085175,0.235043,0,0);-ms-transform:matrix(0.235043,-0.085175,0.085175,0.235043,0,0);-webkit-transform:matrix(0.235043,-0.085175,0.085175,0.235043,0,0);}
.m5{transform:matrix(0.241649,0.064076,-0.064076,0.241649,0,0);-ms-transform:matrix(0.241649,0.064076,-0.064076,0.241649,0,0);-webkit-transform:matrix(0.241649,0.064076,-0.064076,0.241649,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);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v19{vertical-align:-48.960000px;}
.v1c{vertical-align:-47.520000px;}
.v17{vertical-align:-41.760000px;}
.v8{vertical-align:-36.000000px;}
.v11{vertical-align:-33.120000px;}
.v7{vertical-align:-30.240000px;}
.v15{vertical-align:-28.800000px;}
.v13{vertical-align:-24.192649px;}
.v12{vertical-align:-23.040000px;}
.v4{vertical-align:-18.720000px;}
.v2{vertical-align:-17.280000px;}
.v10{vertical-align:-10.080000px;}
.vc{vertical-align:-7.200000px;}
.v16{vertical-align:-5.760000px;}
.v6{vertical-align:-4.320000px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:18.720000px;}
.v5{vertical-align:23.040000px;}
.v3{vertical-align:24.480000px;}
.v1b{vertical-align:28.800000px;}
.vd{vertical-align:30.240000px;}
.v9{vertical-align:36.000000px;}
.va{vertical-align:42.000000px;}
.v14{vertical-align:43.200000px;}
.vb{vertical-align:47.520000px;}
.v18{vertical-align:48.960000px;}
.v1{vertical-align:54.720000px;}
.v1a{vertical-align:60.480000px;}
.ve{vertical-align:72.000000px;}
.ls6b{letter-spacing:-16.200000px;}
.ls35{letter-spacing:-8.056800px;}
.ls1c{letter-spacing:-6.840000px;}
.ls67{letter-spacing:-4.260000px;}
.ls2b{letter-spacing:-1.900800px;}
.ls1f{letter-spacing:-1.687200px;}
.ls20{letter-spacing:-1.311000px;}
.ls15{letter-spacing:-1.128600px;}
.ls29{letter-spacing:-1.037400px;}
.ls81{letter-spacing:-0.907200px;}
.ls7e{letter-spacing:-0.777600px;}
.ls66{letter-spacing:-0.467400px;}
.ls33{letter-spacing:-0.360000px;}
.ls65{letter-spacing:-0.336000px;}
.ls1a{letter-spacing:-0.324000px;}
.ls68{letter-spacing:-0.307200px;}
.ls10{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.280800px;}
.ls85{letter-spacing:-0.259200px;}
.ls80{letter-spacing:-0.237600px;}
.ls7c{letter-spacing:-0.230400px;}
.ls1b{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.201600px;}
.ls84{letter-spacing:-0.129600px;}
.ls2a{letter-spacing:-0.124800px;}
.lsa{letter-spacing:-0.100800px;}
.ls2c{letter-spacing:-0.075600px;}
.ls7d{letter-spacing:-0.072000px;}
.ls86{letter-spacing:-0.062400px;}
.ls4{letter-spacing:-0.043200px;}
.ls12{letter-spacing:-0.032400px;}
.ls5{letter-spacing:-0.021600px;}
.ls3{letter-spacing:0.000000px;}
.ls51{letter-spacing:0.000005px;}
.ls26{letter-spacing:0.010800px;}
.ls2{letter-spacing:0.021600px;}
.ls7b{letter-spacing:0.032400px;}
.ls1{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.042000px;}
.ls21{letter-spacing:0.043200px;}
.ls3f{letter-spacing:0.045863px;}
.ls44{letter-spacing:0.047400px;}
.ls2f{letter-spacing:0.048000px;}
.ls25{letter-spacing:0.048600px;}
.ls3c{letter-spacing:0.090002px;}
.ls3e{letter-spacing:0.090602px;}
.ls82{letter-spacing:0.097200px;}
.ls7{letter-spacing:0.100800px;}
.ls6e{letter-spacing:0.102000px;}
.ls9{letter-spacing:0.102003px;}
.ls46{letter-spacing:0.107405px;}
.ls64{letter-spacing:0.114000px;}
.ls59{letter-spacing:0.120003px;}
.ls1d{letter-spacing:0.134400px;}
.ls7f{letter-spacing:0.144000px;}
.ls50{letter-spacing:0.168000px;}
.ls83{letter-spacing:0.183600px;}
.ls5f{letter-spacing:0.186000px;}
.ls34{letter-spacing:0.187200px;}
.ls13{letter-spacing:0.192000px;}
.ls7a{letter-spacing:0.205200px;}
.ls70{letter-spacing:0.210000px;}
.ls57{letter-spacing:0.210003px;}
.lse{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.218400px;}
.ls6a{letter-spacing:0.230400px;}
.ls41{letter-spacing:0.240000px;}
.lsd{letter-spacing:0.244800px;}
.ls6f{letter-spacing:0.246000px;}
.ls73{letter-spacing:0.246060px;}
.ls42{letter-spacing:0.262447px;}
.ls45{letter-spacing:0.278400px;}
.ls56{letter-spacing:0.282000px;}
.ls14{letter-spacing:0.288000px;}
.ls38{letter-spacing:0.292037px;}
.ls47{letter-spacing:0.297000px;}
.ls16{letter-spacing:0.302400px;}
.ls23{letter-spacing:0.306000px;}
.ls78{letter-spacing:0.334800px;}
.ls30{letter-spacing:0.336000px;}
.ls22{letter-spacing:0.341973px;}
.lsf{letter-spacing:0.360000px;}
.ls31{letter-spacing:0.360003px;}
.ls36{letter-spacing:0.622927px;}
.ls5b{letter-spacing:0.750005px;}
.ls19{letter-spacing:0.881400px;}
.ls32{letter-spacing:0.882005px;}
.ls8{letter-spacing:1.464000px;}
.ls6{letter-spacing:1.476000px;}
.ls72{letter-spacing:16.644000px;}
.ls3a{letter-spacing:21.466933px;}
.ls3b{letter-spacing:24.236532px;}
.ls76{letter-spacing:24.510000px;}
.ls6d{letter-spacing:24.606000px;}
.ls79{letter-spacing:24.810000px;}
.ls6c{letter-spacing:24.894000px;}
.ls75{letter-spacing:24.966000px;}
.ls71{letter-spacing:24.996000px;}
.ls77{letter-spacing:25.062000px;}
.ls37{letter-spacing:27.432945px;}
.ls43{letter-spacing:27.815705px;}
.ls39{letter-spacing:28.046826px;}
.ls3d{letter-spacing:28.158004px;}
.ls40{letter-spacing:28.398326px;}
.ls11{letter-spacing:29.718000px;}
.ls69{letter-spacing:29.952000px;}
.ls28{letter-spacing:29.976000px;}
.ls27{letter-spacing:30.036240px;}
.ls5a{letter-spacing:30.750005px;}
.ls58{letter-spacing:33.882005px;}
.ls61{letter-spacing:36.828002px;}
.ls54{letter-spacing:37.728006px;}
.ls62{letter-spacing:39.438002px;}
.ls55{letter-spacing:39.444000px;}
.ls4f{letter-spacing:39.468006px;}
.ls53{letter-spacing:39.618000px;}
.ls24{letter-spacing:39.624005px;}
.ls60{letter-spacing:39.641773px;}
.ls5d{letter-spacing:39.642013px;}
.ls63{letter-spacing:39.798000px;}
.ls5c{letter-spacing:40.032008px;}
.ls52{letter-spacing:40.062007px;}
.ls4c{letter-spacing:43.452006px;}
.ls1e{letter-spacing:44.538008px;}
.ls4b{letter-spacing:44.808007px;}
.ls49{letter-spacing:45.462006px;}
.ls4e{letter-spacing:46.805984px;}
.ls4d{letter-spacing:46.841373px;}
.ls4a{letter-spacing:46.841973px;}
.ls74{letter-spacing:49.218000px;}
.ls2e{letter-spacing:84.600000px;}
.ls48{letter-spacing:111.599940px;}
.ls2d{letter-spacing:111.600000px;}
.ls18{letter-spacing:120.000002px;}
.ls5e{letter-spacing:1136.688002px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(0,176,240),0 0.015em rgb(0,176,240),0.015em 0 rgb(0,176,240),0 -0.015em  rgb(0,176,240);}
.sc3{text-shadow:-0.015em 0 rgb(255,192,0),0 0.015em rgb(255,192,0),0.015em 0 rgb(255,192,0),0 -0.015em  rgb(255,192,0);}
.sc2{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(0,176,240);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(255,192,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws24{word-spacing:-60.091200px;}
.ws45{word-spacing:-53.375987px;}
.ws13{word-spacing:-47.006413px;}
.ws49{word-spacing:-46.502413px;}
.ws11{word-spacing:-40.320000px;}
.ws32{word-spacing:-40.219200px;}
.ws4b{word-spacing:-40.075200px;}
.ws2a{word-spacing:-40.032000px;}
.ws39{word-spacing:-39.988800px;}
.ws38{word-spacing:-39.744000px;}
.wsd{word-spacing:-33.719999px;}
.ws30{word-spacing:-33.575999px;}
.wsc{word-spacing:-33.395999px;}
.ws1a{word-spacing:-33.359999px;}
.ws63{word-spacing:-32.999999px;}
.ws55{word-spacing:-32.313600px;}
.ws48{word-spacing:-31.691997px;}
.ws4a{word-spacing:-31.224597px;}
.ws21{word-spacing:-30.380997px;}
.ws50{word-spacing:-30.045600px;}
.ws2e{word-spacing:-30.024000px;}
.ws22{word-spacing:-30.002400px;}
.ws12{word-spacing:-29.980800px;}
.ws1b{word-spacing:-26.687997px;}
.ws2d{word-spacing:-26.563197px;}
.ws18{word-spacing:-26.519999px;}
.ws56{word-spacing:-24.742800px;}
.ws5c{word-spacing:-24.591600px;}
.ws61{word-spacing:-24.440400px;}
.ws7{word-spacing:-23.570399px;}
.ws4{word-spacing:-23.452799px;}
.ws2{word-spacing:-23.251199px;}
.ws62{word-spacing:-21.621597px;}
.ws3b{word-spacing:-20.016000px;}
.ws16{word-spacing:-19.735200px;}
.ws6{word-spacing:-0.741590px;}
.ws4f{word-spacing:-0.713990px;}
.wsa{word-spacing:-0.618044px;}
.ws9{word-spacing:-0.511184px;}
.ws15{word-spacing:-0.480000px;}
.ws31{word-spacing:-0.365972px;}
.ws59{word-spacing:-0.354000px;}
.ws64{word-spacing:-0.335917px;}
.ws3{word-spacing:-0.314377px;}
.ws60{word-spacing:-0.313200px;}
.wsb{word-spacing:-0.311968px;}
.ws5b{word-spacing:-0.205200px;}
.ws1f{word-spacing:-0.168000px;}
.ws29{word-spacing:-0.144000px;}
.ws47{word-spacing:-0.140400px;}
.ws19{word-spacing:-0.120000px;}
.ws8{word-spacing:-0.115172px;}
.ws20{word-spacing:-0.114000px;}
.ws3f{word-spacing:-0.108000px;}
.ws2c{word-spacing:-0.096600px;}
.ws3e{word-spacing:-0.096000px;}
.ws3c{word-spacing:-0.088800px;}
.ws35{word-spacing:-0.072000px;}
.ws54{word-spacing:-0.038400px;}
.wsf{word-spacing:-0.026400px;}
.ws17{word-spacing:-0.006060px;}
.ws10{word-spacing:-0.006000px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:0.002417px;}
.ws5e{word-spacing:0.021600px;}
.ws14{word-spacing:0.025200px;}
.ws5d{word-spacing:0.096000px;}
.ws46{word-spacing:0.153600px;}
.ws40{word-spacing:0.209955px;}
.ws58{word-spacing:0.228000px;}
.ws51{word-spacing:0.666000px;}
.ws57{word-spacing:1.654800px;}
.ws1e{word-spacing:6.390000px;}
.ws2f{word-spacing:9.984000px;}
.ws34{word-spacing:10.273200px;}
.ws4d{word-spacing:10.749607px;}
.ws42{word-spacing:12.361821px;}
.ws41{word-spacing:12.934818px;}
.ws4c{word-spacing:13.359607px;}
.ws2b{word-spacing:13.663213px;}
.ws28{word-spacing:13.761023px;}
.ws25{word-spacing:15.844215px;}
.ws27{word-spacing:17.382023px;}
.ws5f{word-spacing:25.263600px;}
.ws5a{word-spacing:26.193600px;}
.ws36{word-spacing:26.773200px;}
.ws53{word-spacing:32.010000px;}
.ws37{word-spacing:34.783200px;}
.wse{word-spacing:38.888400px;}
.ws52{word-spacing:39.294000px;}
.ws44{word-spacing:43.447280px;}
.ws1d{word-spacing:48.648021px;}
.ws3a{word-spacing:67.176000px;}
.ws33{word-spacing:94.176000px;}
.ws23{word-spacing:119.731320px;}
.ws26{word-spacing:192.151200px;}
.ws1c{word-spacing:238.338000px;}
.ws3d{word-spacing:290.061616px;}
.ws4e{word-spacing:999.194400px;}
.ws0{word-spacing:1509.826800px;}
.ws43{word-spacing:1661.431200px;}
._14{margin-left:-1619.863233px;}
._d{margin-left:-15.307200px;}
._0{margin-left:-12.784804px;}
._2{margin-left:-11.743203px;}
._3{margin-left:-9.744003px;}
._f{margin-left:-7.869600px;}
._1a{margin-left:-6.092400px;}
._7{margin-left:-3.600000px;}
._4{margin-left:-2.354400px;}
._6{margin-left:-1.132800px;}
._1{width:1.008000px;}
._13{width:2.664000px;}
._19{width:4.320000px;}
._c{width:6.386449px;}
._15{width:8.763600px;}
._5{width:16.562400px;}
._16{width:38.856000px;}
._a{width:42.329045px;}
._18{width:47.089066px;}
._10{width:93.275940px;}
._12{width:96.155940px;}
._17{width:111.600000px;}
._b{width:120.000002px;}
._8{width:224.269229px;}
._9{width:883.354842px;}
._11{width:899.339520px;}
._e{width:907.067940px;}
.fc10{color:transparent;}
.fc0{color:rgb(166,166,166);}
.fc2{color:rgb(0,0,0);}
.fc5{color:rgb(255,255,255);}
.fc7{color:rgb(0,176,80);}
.fcb{color:rgb(51,102,255);}
.fc1{color:rgb(0,176,240);}
.fc4{color:rgb(192,0,0);}
.fcf{color:rgb(146,208,80);}
.fc3{color:rgb(228,235,21);}
.fc6{color:rgb(255,255,0);}
.fce{color:rgb(0,112,192);}
.fcc{color:rgb(11,139,255);}
.fcd{color:rgb(133,6,35);}
.fc8{color:rgb(255,0,0);}
.fc9{color:rgb(227,235,241);}
.fca{color:rgb(255,192,0);}
.fs5{font-size:54.000000px;}
.fs15{font-size:65.999997px;}
.fs17{font-size:71.999992px;}
.fs8{font-size:72.000000px;}
.fs1b{font-size:77.999984px;}
.fs11{font-size:77.999988px;}
.fsc{font-size:77.999990px;}
.fs19{font-size:77.999992px;}
.fs13{font-size:78.000001px;}
.fs4{font-size:83.999995px;}
.fs9{font-size:95.999990px;}
.fs14{font-size:95.999994px;}
.fs16{font-size:107.999988px;}
.fs0{font-size:108.000000px;}
.fsa{font-size:113.999990px;}
.fs1a{font-size:119.999985px;}
.fs10{font-size:119.999992px;}
.fs7{font-size:119.999995px;}
.fs18{font-size:119.999998px;}
.fs12{font-size:120.000012px;}
.fs1d{font-size:131.999990px;}
.fs2{font-size:144.000000px;}
.fs1e{font-size:155.999952px;}
.fsf{font-size:164.705904px;}
.fs1{font-size:168.000048px;}
.fs6{font-size:180.000000px;}
.fs3{font-size:191.999952px;}
.fs1c{font-size:198.000000px;}
.fse{font-size:211.764672px;}
.fsb{font-size:216.000000px;}
.fsd{font-size:240.000048px;}
.fs1f{font-size:263.999952px;}
.y0{bottom:0.000000px;}
.y92{bottom:6.480000px;}
.y4c{bottom:11.880000px;}
.y32{bottom:12.600000px;}
.y1a{bottom:13.680000px;}
.y5{bottom:17.280000px;}
.y2b{bottom:18.000000px;}
.y25{bottom:21.960000px;}
.y1{bottom:43.920000px;}
.y56{bottom:64.800000px;}
.y2f{bottom:65.160000px;}
.y3a{bottom:67.320000px;}
.y16{bottom:67.680000px;}
.y44{bottom:67.680015px;}
.y3b{bottom:71.640015px;}
.y1f{bottom:74.160000px;}
.y7e{bottom:90.000000px;}
.y15{bottom:91.800000px;}
.y3{bottom:101.880000px;}
.y7f{bottom:109.440000px;}
.y65{bottom:109.800000px;}
.y18{bottom:112.680000px;}
.y60{bottom:117.360000px;}
.y54{bottom:120.240000px;}
.y17{bottom:136.440000px;}
.y14{bottom:142.920000px;}
.y5c{bottom:147.240038px;}
.y2{bottom:153.000000px;}
.y53{bottom:154.800000px;}
.y80{bottom:160.200000px;}
.y43{bottom:165.600000px;}
.y13{bottom:168.120000px;}
.y3c{bottom:175.680000px;}
.y76{bottom:199.080000px;}
.y4a{bottom:199.440000px;}
.y23{bottom:200.880000px;}
.y5a{bottom:213.480150px;}
.y7d{bottom:216.000000px;}
.y7b{bottom:216.720000px;}
.y12{bottom:217.800000px;}
.y30{bottom:225.360000px;}
.y1e{bottom:239.400000px;}
.y45{bottom:240.480000px;}
.y52{bottom:241.920000px;}
.y11{bottom:243.360000px;}
.y22{bottom:244.440000px;}
.y7c{bottom:252.000000px;}
.y5e{bottom:252.360000px;}
.y5b{bottom:279.720082px;}
.y1d{bottom:282.600000px;}
.y75{bottom:284.400000px;}
.y7a{bottom:286.560000px;}
.y94{bottom:290.160000px;}
.y58{bottom:291.600000px;}
.y97{bottom:293.760000px;}
.y10{bottom:294.120000px;}
.y5d{bottom:311.040000px;}
.y20{bottom:315.360000px;}
.yf{bottom:319.680000px;}
.y1c{bottom:326.160000px;}
.y74{bottom:327.960000px;}
.y85{bottom:337.320000px;}
.y59{bottom:346.680023px;}
.y51{bottom:349.920000px;}
.y4{bottom:366.120000px;}
.ye{bottom:369.360000px;}
.y21{bottom:372.600000px;}
.y64{bottom:373.320000px;}
.y6c{bottom:380.160000px;}
.y93{bottom:381.600000px;}
.yd{bottom:394.920000px;}
.y1b{bottom:407.160000px;}
.y81{bottom:408.600000px;}
.y73{bottom:415.080000px;}
.y50{bottom:423.360000px;}
.y55{bottom:425.160000px;}
.y82{bottom:437.040000px;}
.y46{bottom:437.400000px;}
.y77{bottom:438.480000px;}
.y49{bottom:443.160000px;}
.y29{bottom:444.600000px;}
.yc{bottom:445.680000px;}
.y4f{bottom:454.680000px;}
.y3d{bottom:462.240000px;}
.yb{bottom:469.800000px;}
.y6b{bottom:470.160000px;}
.y90{bottom:474.480000px;}
.y48{bottom:476.280000px;}
.y4e{bottom:489.240000px;}
.y83{bottom:490.680000px;}
.y72{bottom:500.400000px;}
.y47{bottom:507.600000px;}
.y57{bottom:508.680000px;}
.y31{bottom:513.720000px;}
.y8f{bottom:539.280000px;}
.y6a{bottom:557.280000px;}
.y66{bottom:559.080000px;}
.y79{bottom:559.440000px;}
.y4d{bottom:565.920000px;}
.y39{bottom:580.680000px;}
.y88{bottom:582.120000px;}
.y42{bottom:583.920000px;}
.y71{bottom:587.520000px;}
.y28{bottom:587.880000px;}
.y63{bottom:592.560000px;}
.y69{bottom:600.480000px;}
.y8e{bottom:603.720000px;}
.y91{bottom:605.160000px;}
.y2e{bottom:606.240000px;}
.y8b{bottom:611.280000px;}
.y87{bottom:613.800000px;}
.y84{bottom:617.760000px;}
.y27{bottom:623.880000px;}
.y70{bottom:631.080000px;}
.y36{bottom:634.320000px;}
.y62{bottom:636.120000px;}
.y38{bottom:637.200000px;}
.y41{bottom:637.920000px;}
.y2d{bottom:642.240000px;}
.y5f{bottom:643.680000px;}
.y68{bottom:644.040000px;}
.y34{bottom:646.200000px;}
.y37{bottom:646.700040px;}
.y35{bottom:646.817760px;}
.y3f{bottom:649.800000px;}
.y40{bottom:650.417760px;}
.y96{bottom:653.040000px;}
.y8a{bottom:654.480000px;}
.y26{bottom:659.880000px;}
.y8d{bottom:672.480015px;}
.y6f{bottom:674.280015px;}
.y78{bottom:677.520015px;}
.y2c{bottom:678.240015px;}
.y61{bottom:679.680015px;}
.ya{bottom:681.120015px;}
.y8{bottom:681.480015px;}
.y89{bottom:698.040015px;}
.y9{bottom:704.880015px;}
.y7{bottom:705.600015px;}
.y33{bottom:742.680015px;}
.y8c{bottom:744.840015px;}
.y3e{bottom:745.920015px;}
.y67{bottom:748.440015px;}
.y19{bottom:749.160015px;}
.y2a{bottom:749.520015px;}
.y95{bottom:749.880015px;}
.y24{bottom:752.760015px;}
.y86{bottom:753.840015px;}
.y6d{bottom:754.920015px;}
.y4b{bottom:755.640015px;}
.y6e{bottom:757.440015px;}
.y6{bottom:758.160015px;}
.h26{height:48.650625px;}
.h29{height:56.786126px;}
.h17{height:61.154293px;}
.h6{height:61.195309px;}
.h8{height:61.852500px;}
.h7{height:63.292500px;}
.h1a{height:64.214400px;}
.h1b{height:77.214823px;}
.h25{height:77.519531px;}
.h28{height:78.228281px;}
.h27{height:78.416016px;}
.h16{height:78.626953px;}
.h4{height:78.732422px;}
.h1c{height:79.980466px;}
.h19{height:79.980477px;}
.h1e{height:80.023798px;}
.h18{height:80.050091px;}
.h1d{height:80.521027px;}
.ha{height:87.421872px;}
.hc{height:92.786126px;}
.h24{height:98.437500px;}
.h14{height:104.835938px;}
.h3{height:104.906250px;}
.h12{height:111.546430px;}
.h15{height:111.650618px;}
.hd{height:111.890618px;}
.h1f{height:113.090618px;}
.h21{height:113.572231px;}
.h2{height:122.308629px;}
.h9{height:131.132813px;}
.h23{height:131.955110px;}
.h1{height:133.452422px;}
.h10{height:143.416797px;}
.h20{height:144.246094px;}
.hf{height:155.250000px;}
.hb{height:157.253906px;}
.h13{height:158.308629px;}
.h11{height:169.828629px;}
.h5{height:174.656206px;}
.he{height:174.726597px;}
.h22{height:192.199184px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x19{left:10.800000px;}
.x2d{left:16.512405px;}
.x4{left:19.800000px;}
.x6{left:21.000000px;}
.x46{left:22.081650px;}
.x28{left:24.300000px;}
.x17{left:27.617355px;}
.x43{left:36.372690px;}
.x38{left:37.499820px;}
.x6d{left:39.000000px;}
.x1{left:45.841185px;}
.x16{left:50.499855px;}
.x6f{left:55.800000px;}
.x1f{left:63.116220px;}
.x5a{left:64.800000px;}
.x64{left:66.865860px;}
.x18{left:67.875000px;}
.x47{left:76.081650px;}
.x70{left:81.862500px;}
.x41{left:83.022690px;}
.x5f{left:86.341170px;}
.x5{left:94.968720px;}
.x60{left:99.841170px;}
.x5b{left:105.300000px;}
.x39{left:106.376220px;}
.x33{left:107.886315px;}
.x3c{left:115.220370px;}
.x20{left:131.009295px;}
.x29{left:136.800000px;}
.x7{left:139.777485px;}
.x24{left:142.406205px;}
.x73{left:153.000000px;}
.x45{left:154.186050px;}
.x42{left:157.032750px;}
.x3{left:162.562500px;}
.x6c{left:163.800000px;}
.x1a{left:165.656250px;}
.x25{left:171.509700px;}
.x59{left:176.437500px;}
.x5d{left:178.031250px;}
.x2e{left:180.281250px;}
.x35{left:183.967050px;}
.x5c{left:185.531250px;}
.x27{left:187.500000px;}
.x55{left:189.093750px;}
.x53{left:200.643150px;}
.x26{left:204.562500px;}
.x2b{left:210.372750px;}
.x54{left:241.705650px;}
.x4c{left:245.751750px;}
.x3a{left:247.376250px;}
.x2f{left:251.718750px;}
.x69{left:285.000000px;}
.x3b{left:288.813750px;}
.x23{left:307.798950px;}
.x37{left:325.800000px;}
.x77{left:328.500000px;}
.x63{left:344.906250px;}
.x62{left:347.343750px;}
.x22{left:357.208950px;}
.x44{left:360.688950px;}
.x68{left:383.812350px;}
.x58{left:398.748750px;}
.x50{left:406.874850px;}
.x5e{left:409.406250px;}
.x67{left:426.937200px;}
.x1b{left:434.906250px;}
.x2a{left:441.843750px;}
.x1c{left:443.253750px;}
.x51{left:469.345350px;}
.x30{left:474.843750px;}
.x48{left:489.249750px;}
.x52{left:507.562350px;}
.x66{left:510.286800px;}
.x1d{left:525.468750px;}
.x34{left:530.197200px;}
.x21{left:531.216450px;}
.x4b{left:544.952850px;}
.x49{left:569.498550px;}
.x3e{left:572.400000px;}
.x31{left:586.406250px;}
.x75{left:613.313550px;}
.x40{left:626.082900px;}
.x32{left:627.843750px;}
.x71{left:629.417550px;}
.x74{left:630.473700px;}
.x72{left:647.980050px;}
.x57{left:652.124850px;}
.x4f{left:656.581762px;}
.x61{left:684.108150px;}
.x1e{left:690.258450px;}
.x4a{left:697.230750px;}
.x6e{left:703.800000px;}
.x76{left:721.800000px;}
.x15{left:728.384550px;}
.x4e{left:734.790787px;}
.x10{left:736.072050px;}
.x11{left:741.322050px;}
.x3d{left:750.000000px;}
.xc{left:751.162050px;}
.xb{left:755.662050px;}
.x2{left:757.800000px;}
.x36{left:761.610900px;}
.x56{left:764.838840px;}
.xd{left:781.912050px;}
.x14{left:791.384550px;}
.xa{left:794.849550px;}
.x12{left:798.412050px;}
.xe{left:800.662050px;}
.x13{left:809.947050px;}
.x2c{left:842.627280px;}
.x3f{left:847.800000px;}
.xf{left:851.849550px;}
.x8{left:859.529700px;}
.x4d{left:862.905803px;}
.x6a{left:867.022050px;}
.x65{left:880.403850px;}
.x6b{left:900.397050px;}
.x9{left:912.502200px;}
@media print{
.v19{vertical-align:-43.520000pt;}
.v1c{vertical-align:-42.240000pt;}
.v17{vertical-align:-37.120000pt;}
.v8{vertical-align:-32.000000pt;}
.v11{vertical-align:-29.440000pt;}
.v7{vertical-align:-26.880000pt;}
.v15{vertical-align:-25.600000pt;}
.v13{vertical-align:-21.504577pt;}
.v12{vertical-align:-20.480000pt;}
.v4{vertical-align:-16.640000pt;}
.v2{vertical-align:-15.360000pt;}
.v10{vertical-align:-8.960000pt;}
.vc{vertical-align:-6.400000pt;}
.v16{vertical-align:-5.120000pt;}
.v6{vertical-align:-3.840000pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:16.640000pt;}
.v5{vertical-align:20.480000pt;}
.v3{vertical-align:21.760000pt;}
.v1b{vertical-align:25.600000pt;}
.vd{vertical-align:26.880000pt;}
.v9{vertical-align:32.000000pt;}
.va{vertical-align:37.333333pt;}
.v14{vertical-align:38.400000pt;}
.vb{vertical-align:42.240000pt;}
.v18{vertical-align:43.520000pt;}
.v1{vertical-align:48.640000pt;}
.v1a{vertical-align:53.760000pt;}
.ve{vertical-align:64.000000pt;}
.ls6b{letter-spacing:-14.400000pt;}
.ls35{letter-spacing:-7.161600pt;}
.ls1c{letter-spacing:-6.080000pt;}
.ls67{letter-spacing:-3.786667pt;}
.ls2b{letter-spacing:-1.689600pt;}
.ls1f{letter-spacing:-1.499733pt;}
.ls20{letter-spacing:-1.165333pt;}
.ls15{letter-spacing:-1.003200pt;}
.ls29{letter-spacing:-0.922133pt;}
.ls81{letter-spacing:-0.806400pt;}
.ls7e{letter-spacing:-0.691200pt;}
.ls66{letter-spacing:-0.415467pt;}
.ls33{letter-spacing:-0.320000pt;}
.ls65{letter-spacing:-0.298667pt;}
.ls1a{letter-spacing:-0.288000pt;}
.ls68{letter-spacing:-0.273067pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.249600pt;}
.ls85{letter-spacing:-0.230400pt;}
.ls80{letter-spacing:-0.211200pt;}
.ls7c{letter-spacing:-0.204800pt;}
.ls1b{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.179200pt;}
.ls84{letter-spacing:-0.115200pt;}
.ls2a{letter-spacing:-0.110933pt;}
.lsa{letter-spacing:-0.089600pt;}
.ls2c{letter-spacing:-0.067200pt;}
.ls7d{letter-spacing:-0.064000pt;}
.ls86{letter-spacing:-0.055467pt;}
.ls4{letter-spacing:-0.038400pt;}
.ls12{letter-spacing:-0.028800pt;}
.ls5{letter-spacing:-0.019200pt;}
.ls3{letter-spacing:0.000000pt;}
.ls51{letter-spacing:0.000004pt;}
.ls26{letter-spacing:0.009600pt;}
.ls2{letter-spacing:0.019200pt;}
.ls7b{letter-spacing:0.028800pt;}
.ls1{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.037333pt;}
.ls21{letter-spacing:0.038400pt;}
.ls3f{letter-spacing:0.040767pt;}
.ls44{letter-spacing:0.042133pt;}
.ls2f{letter-spacing:0.042667pt;}
.ls25{letter-spacing:0.043200pt;}
.ls3c{letter-spacing:0.080001pt;}
.ls3e{letter-spacing:0.080535pt;}
.ls82{letter-spacing:0.086400pt;}
.ls7{letter-spacing:0.089600pt;}
.ls6e{letter-spacing:0.090667pt;}
.ls9{letter-spacing:0.090670pt;}
.ls46{letter-spacing:0.095471pt;}
.ls64{letter-spacing:0.101333pt;}
.ls59{letter-spacing:0.106669pt;}
.ls1d{letter-spacing:0.119467pt;}
.ls7f{letter-spacing:0.128000pt;}
.ls50{letter-spacing:0.149333pt;}
.ls83{letter-spacing:0.163200pt;}
.ls5f{letter-spacing:0.165333pt;}
.ls34{letter-spacing:0.166400pt;}
.ls13{letter-spacing:0.170667pt;}
.ls7a{letter-spacing:0.182400pt;}
.ls70{letter-spacing:0.186667pt;}
.ls57{letter-spacing:0.186670pt;}
.lse{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.194133pt;}
.ls6a{letter-spacing:0.204800pt;}
.ls41{letter-spacing:0.213333pt;}
.lsd{letter-spacing:0.217600pt;}
.ls6f{letter-spacing:0.218667pt;}
.ls73{letter-spacing:0.218720pt;}
.ls42{letter-spacing:0.233286pt;}
.ls45{letter-spacing:0.247467pt;}
.ls56{letter-spacing:0.250667pt;}
.ls14{letter-spacing:0.256000pt;}
.ls38{letter-spacing:0.259588pt;}
.ls47{letter-spacing:0.264000pt;}
.ls16{letter-spacing:0.268800pt;}
.ls23{letter-spacing:0.272000pt;}
.ls78{letter-spacing:0.297600pt;}
.ls30{letter-spacing:0.298667pt;}
.ls22{letter-spacing:0.303976pt;}
.lsf{letter-spacing:0.320000pt;}
.ls31{letter-spacing:0.320003pt;}
.ls36{letter-spacing:0.553713pt;}
.ls5b{letter-spacing:0.666671pt;}
.ls19{letter-spacing:0.783467pt;}
.ls32{letter-spacing:0.784005pt;}
.ls8{letter-spacing:1.301333pt;}
.ls6{letter-spacing:1.312000pt;}
.ls72{letter-spacing:14.794667pt;}
.ls3a{letter-spacing:19.081718pt;}
.ls3b{letter-spacing:21.543584pt;}
.ls76{letter-spacing:21.786667pt;}
.ls6d{letter-spacing:21.872000pt;}
.ls79{letter-spacing:22.053333pt;}
.ls6c{letter-spacing:22.128000pt;}
.ls75{letter-spacing:22.192000pt;}
.ls71{letter-spacing:22.218667pt;}
.ls77{letter-spacing:22.277333pt;}
.ls37{letter-spacing:24.384840pt;}
.ls43{letter-spacing:24.725071pt;}
.ls39{letter-spacing:24.930512pt;}
.ls3d{letter-spacing:25.029337pt;}
.ls40{letter-spacing:25.242956pt;}
.ls11{letter-spacing:26.416000pt;}
.ls69{letter-spacing:26.624000pt;}
.ls28{letter-spacing:26.645333pt;}
.ls27{letter-spacing:26.698880pt;}
.ls5a{letter-spacing:27.333338pt;}
.ls58{letter-spacing:30.117338pt;}
.ls61{letter-spacing:32.736002pt;}
.ls54{letter-spacing:33.536006pt;}
.ls62{letter-spacing:35.056002pt;}
.ls55{letter-spacing:35.061333pt;}
.ls4f{letter-spacing:35.082672pt;}
.ls53{letter-spacing:35.216000pt;}
.ls24{letter-spacing:35.221338pt;}
.ls60{letter-spacing:35.237132pt;}
.ls5d{letter-spacing:35.237345pt;}
.ls63{letter-spacing:35.376000pt;}
.ls5c{letter-spacing:35.584007pt;}
.ls52{letter-spacing:35.610673pt;}
.ls4c{letter-spacing:38.624006pt;}
.ls1e{letter-spacing:39.589340pt;}
.ls4b{letter-spacing:39.829340pt;}
.ls49{letter-spacing:40.410672pt;}
.ls4e{letter-spacing:41.605319pt;}
.ls4d{letter-spacing:41.636776pt;}
.ls4a{letter-spacing:41.637310pt;}
.ls74{letter-spacing:43.749333pt;}
.ls2e{letter-spacing:75.200000pt;}
.ls48{letter-spacing:99.199947pt;}
.ls2d{letter-spacing:99.200000pt;}
.ls18{letter-spacing:106.666668pt;}
.ls5e{letter-spacing:1010.389335pt;}
.ws24{word-spacing:-53.414400pt;}
.ws45{word-spacing:-47.445321pt;}
.ws13{word-spacing:-41.783479pt;}
.ws49{word-spacing:-41.335478pt;}
.ws11{word-spacing:-35.840000pt;}
.ws32{word-spacing:-35.750400pt;}
.ws4b{word-spacing:-35.622400pt;}
.ws2a{word-spacing:-35.584000pt;}
.ws39{word-spacing:-35.545600pt;}
.ws38{word-spacing:-35.328000pt;}
.wsd{word-spacing:-29.973332pt;}
.ws30{word-spacing:-29.845332pt;}
.wsc{word-spacing:-29.685332pt;}
.ws1a{word-spacing:-29.653332pt;}
.ws63{word-spacing:-29.333332pt;}
.ws55{word-spacing:-28.723200pt;}
.ws48{word-spacing:-28.170664pt;}
.ws4a{word-spacing:-27.755198pt;}
.ws21{word-spacing:-27.005331pt;}
.ws50{word-spacing:-26.707200pt;}
.ws2e{word-spacing:-26.688000pt;}
.ws22{word-spacing:-26.668800pt;}
.ws12{word-spacing:-26.649600pt;}
.ws1b{word-spacing:-23.722664pt;}
.ws2d{word-spacing:-23.611731pt;}
.ws18{word-spacing:-23.573332pt;}
.ws56{word-spacing:-21.993600pt;}
.ws5c{word-spacing:-21.859200pt;}
.ws61{word-spacing:-21.724800pt;}
.ws7{word-spacing:-20.951465pt;}
.ws4{word-spacing:-20.846932pt;}
.ws2{word-spacing:-20.667732pt;}
.ws62{word-spacing:-19.219198pt;}
.ws3b{word-spacing:-17.792000pt;}
.ws16{word-spacing:-17.542400pt;}
.ws6{word-spacing:-0.659191pt;}
.ws4f{word-spacing:-0.634658pt;}
.wsa{word-spacing:-0.549372pt;}
.ws9{word-spacing:-0.454386pt;}
.ws15{word-spacing:-0.426667pt;}
.ws31{word-spacing:-0.325308pt;}
.ws59{word-spacing:-0.314667pt;}
.ws64{word-spacing:-0.298593pt;}
.ws3{word-spacing:-0.279446pt;}
.ws60{word-spacing:-0.278400pt;}
.wsb{word-spacing:-0.277305pt;}
.ws5b{word-spacing:-0.182400pt;}
.ws1f{word-spacing:-0.149333pt;}
.ws29{word-spacing:-0.128000pt;}
.ws47{word-spacing:-0.124800pt;}
.ws19{word-spacing:-0.106667pt;}
.ws8{word-spacing:-0.102375pt;}
.ws20{word-spacing:-0.101333pt;}
.ws3f{word-spacing:-0.096000pt;}
.ws2c{word-spacing:-0.085867pt;}
.ws3e{word-spacing:-0.085333pt;}
.ws3c{word-spacing:-0.078933pt;}
.ws35{word-spacing:-0.064000pt;}
.ws54{word-spacing:-0.034133pt;}
.wsf{word-spacing:-0.023467pt;}
.ws17{word-spacing:-0.005387pt;}
.ws10{word-spacing:-0.005333pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:0.002148pt;}
.ws5e{word-spacing:0.019200pt;}
.ws14{word-spacing:0.022400pt;}
.ws5d{word-spacing:0.085333pt;}
.ws46{word-spacing:0.136533pt;}
.ws40{word-spacing:0.186626pt;}
.ws58{word-spacing:0.202667pt;}
.ws51{word-spacing:0.592000pt;}
.ws57{word-spacing:1.470933pt;}
.ws1e{word-spacing:5.680000pt;}
.ws2f{word-spacing:8.874667pt;}
.ws34{word-spacing:9.131733pt;}
.ws4d{word-spacing:9.555206pt;}
.ws42{word-spacing:10.988286pt;}
.ws41{word-spacing:11.497616pt;}
.ws4c{word-spacing:11.875206pt;}
.ws2b{word-spacing:12.145078pt;}
.ws28{word-spacing:12.232020pt;}
.ws25{word-spacing:14.083747pt;}
.ws27{word-spacing:15.450687pt;}
.ws5f{word-spacing:22.456533pt;}
.ws5a{word-spacing:23.283200pt;}
.ws36{word-spacing:23.798400pt;}
.ws53{word-spacing:28.453333pt;}
.ws37{word-spacing:30.918400pt;}
.wse{word-spacing:34.567467pt;}
.ws52{word-spacing:34.928000pt;}
.ws44{word-spacing:38.619804pt;}
.ws1d{word-spacing:43.242686pt;}
.ws3a{word-spacing:59.712000pt;}
.ws33{word-spacing:83.712000pt;}
.ws23{word-spacing:106.427840pt;}
.ws26{word-spacing:170.801067pt;}
.ws1c{word-spacing:211.856000pt;}
.ws3d{word-spacing:257.832547pt;}
.ws4e{word-spacing:888.172800pt;}
.ws0{word-spacing:1342.068267pt;}
.ws43{word-spacing:1476.827733pt;}
._14{margin-left:-1439.878429pt;}
._d{margin-left:-13.606400pt;}
._0{margin-left:-11.364270pt;}
._2{margin-left:-10.438403pt;}
._3{margin-left:-8.661336pt;}
._f{margin-left:-6.995200pt;}
._1a{margin-left:-5.415467pt;}
._7{margin-left:-3.200000pt;}
._4{margin-left:-2.092800pt;}
._6{margin-left:-1.006933pt;}
._1{width:0.896000pt;}
._13{width:2.368000pt;}
._19{width:3.840000pt;}
._c{width:5.676843pt;}
._15{width:7.789867pt;}
._5{width:14.722133pt;}
._16{width:34.538667pt;}
._a{width:37.625818pt;}
._18{width:41.856948pt;}
._10{width:82.911947pt;}
._12{width:85.471947pt;}
._17{width:99.200000pt;}
._b{width:106.666668pt;}
._8{width:199.350426pt;}
._9{width:785.204304pt;}
._11{width:799.412906pt;}
._e{width:806.282613pt;}
.fs5{font-size:48.000000pt;}
.fs15{font-size:58.666664pt;}
.fs17{font-size:63.999993pt;}
.fs8{font-size:64.000000pt;}
.fs1b{font-size:69.333319pt;}
.fs11{font-size:69.333323pt;}
.fsc{font-size:69.333325pt;}
.fs19{font-size:69.333326pt;}
.fs13{font-size:69.333334pt;}
.fs4{font-size:74.666662pt;}
.fs9{font-size:85.333325pt;}
.fs14{font-size:85.333328pt;}
.fs16{font-size:95.999990pt;}
.fs0{font-size:96.000000pt;}
.fsa{font-size:101.333325pt;}
.fs1a{font-size:106.666653pt;}
.fs10{font-size:106.666660pt;}
.fs7{font-size:106.666662pt;}
.fs18{font-size:106.666665pt;}
.fs12{font-size:106.666677pt;}
.fs1d{font-size:117.333325pt;}
.fs2{font-size:128.000000pt;}
.fs1e{font-size:138.666624pt;}
.fsf{font-size:146.405248pt;}
.fs1{font-size:149.333376pt;}
.fs6{font-size:160.000000pt;}
.fs3{font-size:170.666624pt;}
.fs1c{font-size:176.000000pt;}
.fse{font-size:188.235264pt;}
.fsb{font-size:192.000000pt;}
.fsd{font-size:213.333376pt;}
.fs1f{font-size:234.666624pt;}
.y0{bottom:0.000000pt;}
.y92{bottom:5.760000pt;}
.y4c{bottom:10.560000pt;}
.y32{bottom:11.200000pt;}
.y1a{bottom:12.160000pt;}
.y5{bottom:15.360000pt;}
.y2b{bottom:16.000000pt;}
.y25{bottom:19.520000pt;}
.y1{bottom:39.040000pt;}
.y56{bottom:57.600000pt;}
.y2f{bottom:57.920000pt;}
.y3a{bottom:59.840000pt;}
.y16{bottom:60.160000pt;}
.y44{bottom:60.160013pt;}
.y3b{bottom:63.680013pt;}
.y1f{bottom:65.920000pt;}
.y7e{bottom:80.000000pt;}
.y15{bottom:81.600000pt;}
.y3{bottom:90.560000pt;}
.y7f{bottom:97.280000pt;}
.y65{bottom:97.600000pt;}
.y18{bottom:100.160000pt;}
.y60{bottom:104.320000pt;}
.y54{bottom:106.880000pt;}
.y17{bottom:121.280000pt;}
.y14{bottom:127.040000pt;}
.y5c{bottom:130.880033pt;}
.y2{bottom:136.000000pt;}
.y53{bottom:137.600000pt;}
.y80{bottom:142.400000pt;}
.y43{bottom:147.200000pt;}
.y13{bottom:149.440000pt;}
.y3c{bottom:156.160000pt;}
.y76{bottom:176.960000pt;}
.y4a{bottom:177.280000pt;}
.y23{bottom:178.560000pt;}
.y5a{bottom:189.760133pt;}
.y7d{bottom:192.000000pt;}
.y7b{bottom:192.640000pt;}
.y12{bottom:193.600000pt;}
.y30{bottom:200.320000pt;}
.y1e{bottom:212.800000pt;}
.y45{bottom:213.760000pt;}
.y52{bottom:215.040000pt;}
.y11{bottom:216.320000pt;}
.y22{bottom:217.280000pt;}
.y7c{bottom:224.000000pt;}
.y5e{bottom:224.320000pt;}
.y5b{bottom:248.640073pt;}
.y1d{bottom:251.200000pt;}
.y75{bottom:252.800000pt;}
.y7a{bottom:254.720000pt;}
.y94{bottom:257.920000pt;}
.y58{bottom:259.200000pt;}
.y97{bottom:261.120000pt;}
.y10{bottom:261.440000pt;}
.y5d{bottom:276.480000pt;}
.y20{bottom:280.320000pt;}
.yf{bottom:284.160000pt;}
.y1c{bottom:289.920000pt;}
.y74{bottom:291.520000pt;}
.y85{bottom:299.840000pt;}
.y59{bottom:308.160020pt;}
.y51{bottom:311.040000pt;}
.y4{bottom:325.440000pt;}
.ye{bottom:328.320000pt;}
.y21{bottom:331.200000pt;}
.y64{bottom:331.840000pt;}
.y6c{bottom:337.920000pt;}
.y93{bottom:339.200000pt;}
.yd{bottom:351.040000pt;}
.y1b{bottom:361.920000pt;}
.y81{bottom:363.200000pt;}
.y73{bottom:368.960000pt;}
.y50{bottom:376.320000pt;}
.y55{bottom:377.920000pt;}
.y82{bottom:388.480000pt;}
.y46{bottom:388.800000pt;}
.y77{bottom:389.760000pt;}
.y49{bottom:393.920000pt;}
.y29{bottom:395.200000pt;}
.yc{bottom:396.160000pt;}
.y4f{bottom:404.160000pt;}
.y3d{bottom:410.880000pt;}
.yb{bottom:417.600000pt;}
.y6b{bottom:417.920000pt;}
.y90{bottom:421.760000pt;}
.y48{bottom:423.360000pt;}
.y4e{bottom:434.880000pt;}
.y83{bottom:436.160000pt;}
.y72{bottom:444.800000pt;}
.y47{bottom:451.200000pt;}
.y57{bottom:452.160000pt;}
.y31{bottom:456.640000pt;}
.y8f{bottom:479.360000pt;}
.y6a{bottom:495.360000pt;}
.y66{bottom:496.960000pt;}
.y79{bottom:497.280000pt;}
.y4d{bottom:503.040000pt;}
.y39{bottom:516.160000pt;}
.y88{bottom:517.440000pt;}
.y42{bottom:519.040000pt;}
.y71{bottom:522.240000pt;}
.y28{bottom:522.560000pt;}
.y63{bottom:526.720000pt;}
.y69{bottom:533.760000pt;}
.y8e{bottom:536.640000pt;}
.y91{bottom:537.920000pt;}
.y2e{bottom:538.880000pt;}
.y8b{bottom:543.360000pt;}
.y87{bottom:545.600000pt;}
.y84{bottom:549.120000pt;}
.y27{bottom:554.560000pt;}
.y70{bottom:560.960000pt;}
.y36{bottom:563.840000pt;}
.y62{bottom:565.440000pt;}
.y38{bottom:566.400000pt;}
.y41{bottom:567.040000pt;}
.y2d{bottom:570.880000pt;}
.y5f{bottom:572.160000pt;}
.y68{bottom:572.480000pt;}
.y34{bottom:574.400000pt;}
.y37{bottom:574.844480pt;}
.y35{bottom:574.949120pt;}
.y3f{bottom:577.600000pt;}
.y40{bottom:578.149120pt;}
.y96{bottom:580.480000pt;}
.y8a{bottom:581.760000pt;}
.y26{bottom:586.560000pt;}
.y8d{bottom:597.760013pt;}
.y6f{bottom:599.360013pt;}
.y78{bottom:602.240013pt;}
.y2c{bottom:602.880013pt;}
.y61{bottom:604.160013pt;}
.ya{bottom:605.440013pt;}
.y8{bottom:605.760013pt;}
.y89{bottom:620.480013pt;}
.y9{bottom:626.560013pt;}
.y7{bottom:627.200013pt;}
.y33{bottom:660.160013pt;}
.y8c{bottom:662.080013pt;}
.y3e{bottom:663.040013pt;}
.y67{bottom:665.280013pt;}
.y19{bottom:665.920013pt;}
.y2a{bottom:666.240013pt;}
.y95{bottom:666.560013pt;}
.y24{bottom:669.120013pt;}
.y86{bottom:670.080013pt;}
.y6d{bottom:671.040013pt;}
.y4b{bottom:671.680013pt;}
.y6e{bottom:673.280013pt;}
.y6{bottom:673.920013pt;}
.h26{height:43.245000pt;}
.h29{height:50.476556pt;}
.h17{height:54.359372pt;}
.h6{height:54.395830pt;}
.h8{height:54.980000pt;}
.h7{height:56.260000pt;}
.h1a{height:57.079467pt;}
.h1b{height:68.635398pt;}
.h25{height:68.906250pt;}
.h28{height:69.536250pt;}
.h27{height:69.703125pt;}
.h16{height:69.890625pt;}
.h4{height:69.984375pt;}
.h1c{height:71.093747pt;}
.h19{height:71.093757pt;}
.h1e{height:71.132265pt;}
.h18{height:71.155637pt;}
.h1d{height:71.574246pt;}
.ha{height:77.708330pt;}
.hc{height:82.476556pt;}
.h24{height:87.500000pt;}
.h14{height:93.187500pt;}
.h3{height:93.250000pt;}
.h12{height:99.152382pt;}
.h15{height:99.244994pt;}
.hd{height:99.458327pt;}
.h1f{height:100.524994pt;}
.h21{height:100.953094pt;}
.h2{height:108.718781pt;}
.h9{height:116.562500pt;}
.h23{height:117.293431pt;}
.h1{height:118.624375pt;}
.h10{height:127.481597pt;}
.h20{height:128.218750pt;}
.hf{height:138.000000pt;}
.hb{height:139.781250pt;}
.h13{height:140.718781pt;}
.h11{height:150.958781pt;}
.h5{height:155.249961pt;}
.he{height:155.312531pt;}
.h22{height:170.843719pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x19{left:9.600000pt;}
.x2d{left:14.677693pt;}
.x4{left:17.600000pt;}
.x6{left:18.666667pt;}
.x46{left:19.628133pt;}
.x28{left:21.600000pt;}
.x17{left:24.548760pt;}
.x43{left:32.331280pt;}
.x38{left:33.333173pt;}
.x6d{left:34.666667pt;}
.x1{left:40.747720pt;}
.x16{left:44.888760pt;}
.x6f{left:49.600000pt;}
.x1f{left:56.103307pt;}
.x5a{left:57.600000pt;}
.x64{left:59.436320pt;}
.x18{left:60.333333pt;}
.x47{left:67.628133pt;}
.x70{left:72.766667pt;}
.x41{left:73.797947pt;}
.x5f{left:76.747707pt;}
.x5{left:84.416640pt;}
.x60{left:88.747707pt;}
.x5b{left:93.600000pt;}
.x39{left:94.556640pt;}
.x33{left:95.898947pt;}
.x3c{left:102.418107pt;}
.x20{left:116.452707pt;}
.x29{left:121.600000pt;}
.x7{left:124.246653pt;}
.x24{left:126.583293pt;}
.x73{left:136.000000pt;}
.x45{left:137.054267pt;}
.x42{left:139.584667pt;}
.x3{left:144.500000pt;}
.x6c{left:145.600000pt;}
.x1a{left:147.250000pt;}
.x25{left:152.453067pt;}
.x59{left:156.833333pt;}
.x5d{left:158.250000pt;}
.x2e{left:160.250000pt;}
.x35{left:163.526267pt;}
.x5c{left:164.916667pt;}
.x27{left:166.666667pt;}
.x55{left:168.083333pt;}
.x53{left:178.349467pt;}
.x26{left:181.833333pt;}
.x2b{left:186.998000pt;}
.x54{left:214.849467pt;}
.x4c{left:218.446000pt;}
.x3a{left:219.890000pt;}
.x2f{left:223.750000pt;}
.x69{left:253.333333pt;}
.x3b{left:256.723333pt;}
.x23{left:273.599067pt;}
.x37{left:289.600000pt;}
.x77{left:292.000000pt;}
.x63{left:306.583333pt;}
.x62{left:308.750000pt;}
.x22{left:317.519067pt;}
.x44{left:320.612400pt;}
.x68{left:341.166533pt;}
.x58{left:354.443333pt;}
.x50{left:361.666533pt;}
.x5e{left:363.916667pt;}
.x67{left:379.499733pt;}
.x1b{left:386.583333pt;}
.x2a{left:392.750000pt;}
.x1c{left:394.003333pt;}
.x51{left:417.195867pt;}
.x30{left:422.083333pt;}
.x48{left:434.888667pt;}
.x52{left:451.166533pt;}
.x66{left:453.588267pt;}
.x1d{left:467.083333pt;}
.x34{left:471.286400pt;}
.x21{left:472.192400pt;}
.x4b{left:484.402533pt;}
.x49{left:506.220933pt;}
.x3e{left:508.800000pt;}
.x31{left:521.250000pt;}
.x75{left:545.167600pt;}
.x40{left:556.518133pt;}
.x32{left:558.083333pt;}
.x71{left:559.482267pt;}
.x74{left:560.421067pt;}
.x72{left:575.982267pt;}
.x57{left:579.666533pt;}
.x4f{left:583.628233pt;}
.x61{left:608.096133pt;}
.x1e{left:613.563067pt;}
.x4a{left:619.760667pt;}
.x6e{left:625.600000pt;}
.x76{left:641.600000pt;}
.x15{left:647.452933pt;}
.x4e{left:653.147367pt;}
.x10{left:654.286267pt;}
.x11{left:658.952933pt;}
.x3d{left:666.666667pt;}
.xc{left:667.699600pt;}
.xb{left:671.699600pt;}
.x2{left:673.600000pt;}
.x36{left:676.987467pt;}
.x56{left:679.856747pt;}
.xd{left:695.032933pt;}
.x14{left:703.452933pt;}
.xa{left:706.532933pt;}
.x12{left:709.699600pt;}
.xe{left:711.699600pt;}
.x13{left:719.952933pt;}
.x2c{left:749.002027pt;}
.x3f{left:753.600000pt;}
.xf{left:757.199600pt;}
.x8{left:764.026400pt;}
.x4d{left:767.027380pt;}
.x6a{left:770.686267pt;}
.x65{left:782.581200pt;}
.x6b{left:800.352933pt;}
.x9{left:811.113067pt;}
}




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