
    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_ab7f0a0a51400cd64cbb7b91.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919000;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_f6e7b74c0000cd3fef67572d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.728000;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_36b6f6d40d19043fd9de99a3.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_072eb85ca142a861384ed858.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_50592c76b0f8cee30f71c663.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1937b40ba4c1687a40091930.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.752000;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_fe756a977034f1f8bda7f70e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_336f7a25a2d0faa7eda3f3b7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.844000;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_a7e3e9dfc94eab8d6a5104bc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.724000;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_466be921bb2c4f3459d1b02e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.847000;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_3d2b24ce35de49be4100809c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.892000;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_8d7664423a7cbb560eaacb50.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.839000;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_a452de80162807f379927a5b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.898000;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_297d21598c5d70179bfeadc0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.826000;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_fe756a977034f1f8bda7f70e.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_5a5c5a9ce87705a60e7c9963.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.892000;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_8d7664423a7cbb560eaacb50.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.839000;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_c16e00fe611c9565aa96c3d6.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.844000;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_a452de80162807f379927a5b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.898000;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_a2e71019cedabdb62b404fb6.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.908203;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_5a5c5a9ce87705a60e7c9963.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.892000;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_8d7664423a7cbb560eaacb50.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.839000;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_fe756a977034f1f8bda7f70e.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_c16e00fe611c9565aa96c3d6.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.844000;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_a452de80162807f379927a5b.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.898000;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_674595e7222eefce25be8ccd.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_5a5c5a9ce87705a60e7c9963.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.892000;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_8d7664423a7cbb560eaacb50.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.839000;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_fe756a977034f1f8bda7f70e.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_5a5c5a9ce87705a60e7c9963.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.892000;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_674595e7222eefce25be8ccd.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_5a5c5a9ce87705a60e7c9963.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.892000;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_8d7664423a7cbb560eaacb50.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.839000;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_5a5c5a9ce87705a60e7c9963.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.892000;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_8d7664423a7cbb560eaacb50.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.839000;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_fe756a977034f1f8bda7f70e.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_466be921bb2c4f3459d1b02e.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.847000;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_a3da00836596215d62a310d4.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.243000;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_a452de80162807f379927a5b.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.898000;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_297d21598c5d70179bfeadc0.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.826000;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_c16e00fe611c9565aa96c3d6.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.844000;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_b7d42b370d257e8fc9db6849.woff2')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_5a5c5a9ce87705a60e7c9963.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.892000;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_8d7664423a7cbb560eaacb50.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.839000;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_a452de80162807f379927a5b.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.898000;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_c16e00fe611c9565aa96c3d6.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.844000;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_798af65f32f91a9deecd6ae5.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.922000;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;}
.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);}
.v3{vertical-align:-17.358000px;}
.v1{vertical-align:-1.701000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:28.206000px;}
.ls19{letter-spacing:-0.810000px;}
.ls18{letter-spacing:-0.540000px;}
.ls17{letter-spacing:0.000000px;}
.ls9{letter-spacing:1.099860px;}
.lsa{letter-spacing:1.104642px;}
.lsc{letter-spacing:1.109424px;}
.ls0{letter-spacing:1.649790px;}
.ls2{letter-spacing:1.787238px;}
.ls1{letter-spacing:2.337168px;}
.lsb{letter-spacing:2.982000px;}
.ls4{letter-spacing:2.986176px;}
.ls7{letter-spacing:2.988000px;}
.ls3{letter-spacing:2.992176px;}
.ls6{letter-spacing:4.351536px;}
.ls8{letter-spacing:6.138774px;}
.ls5{letter-spacing:6.527304px;}
.ls1b{letter-spacing:8.984333px;}
.lsf{letter-spacing:11.955000px;}
.ls11{letter-spacing:11.955150px;}
.ls1e{letter-spacing:13.210408px;}
.lsd{letter-spacing:13.449000px;}
.ls1f{letter-spacing:13.449600px;}
.ls13{letter-spacing:14.047266px;}
.ls14{letter-spacing:14.764573px;}
.ls16{letter-spacing:14.943900px;}
.ls20{letter-spacing:14.955955px;}
.ls15{letter-spacing:16.079636px;}
.ls1c{letter-spacing:16.737168px;}
.ls12{letter-spacing:18.530436px;}
.ls1d{letter-spacing:19.486846px;}
.ls1a{letter-spacing:20.263928px;}
.lse{letter-spacing:20.924172px;}
.ls10{letter-spacing:774.932823px;}
.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;}
}
.ws2{word-spacing:-15.984000px;}
.ws1{word-spacing:-15.012000px;}
.ws74{word-spacing:-15.009754px;}
.ws73{word-spacing:-13.503398px;}
.ws4{word-spacing:-13.500000px;}
.ws4a{word-spacing:-12.000000px;}
.ws9{word-spacing:-0.101616px;}
.ws0{word-spacing:-0.099000px;}
.wsa{word-spacing:-0.077706px;}
.ws8{word-spacing:-0.071730px;}
.ws35{word-spacing:-0.059776px;}
.ws10{word-spacing:-0.053796px;}
.ws7{word-spacing:-0.047820px;}
.ws46{word-spacing:0.000000px;}
.ws47{word-spacing:0.540000px;}
.ws48{word-spacing:0.810000px;}
.wsb{word-spacing:10.866792px;}
.ws83{word-spacing:11.381303px;}
.ws81{word-spacing:11.596466px;}
.ws3e{word-spacing:11.656242px;}
.ws6{word-spacing:11.907180px;}
.ws1d{word-spacing:11.907329px;}
.ws52{word-spacing:12.014896px;}
.ws5d{word-spacing:12.373549px;}
.ws77{word-spacing:12.433325px;}
.ws57{word-spacing:12.552876px;}
.ws1f{word-spacing:12.732203px;}
.ws2c{word-spacing:12.791978px;}
.ws82{word-spacing:12.863741px;}
.ws61{word-spacing:12.911530px;}
.ws2f{word-spacing:13.031081px;}
.ws15{word-spacing:13.031604px;}
.ws59{word-spacing:13.090856px;}
.ws7d{word-spacing:13.150632px;}
.ws8c{word-spacing:13.150665px;}
.wsd{word-spacing:13.180020px;}
.wsc{word-spacing:13.233816px;}
.ws8b{word-spacing:13.246306px;}
.ws66{word-spacing:13.270183px;}
.ws69{word-spacing:13.389734px;}
.wsf{word-spacing:13.395204px;}
.ws7b{word-spacing:13.449510px;}
.ws68{word-spacing:13.569061px;}
.ws7a{word-spacing:13.748388px;}
.ws30{word-spacing:13.867939px;}
.ws38{word-spacing:13.927715px;}
.ws29{word-spacing:13.987490px;}
.ws28{word-spacing:14.047266px;}
.ws5{word-spacing:14.156916px;}
.ws84{word-spacing:14.202718px;}
.ws34{word-spacing:14.286368px;}
.ws86{word-spacing:14.298359px;}
.ws21{word-spacing:14.465695px;}
.ws64{word-spacing:14.585246px;}
.ws2d{word-spacing:14.704798px;}
.ws33{word-spacing:14.764573px;}
.ws23{word-spacing:14.884124px;}
.ws1b{word-spacing:14.884722px;}
.ws87{word-spacing:14.920027px;}
.ws5c{word-spacing:14.943900px;}
.ws5f{word-spacing:15.063451px;}
.ws5a{word-spacing:15.123227px;}
.ws65{word-spacing:15.183002px;}
.ws4c{word-spacing:15.302554px;}
.ws44{word-spacing:15.422105px;}
.ws2e{word-spacing:15.541656px;}
.ws45{word-spacing:15.601432px;}
.ws6e{word-spacing:15.720983px;}
.ws5e{word-spacing:15.780758px;}
.ws6b{word-spacing:15.840534px;}
.ws19{word-spacing:15.900948px;}
.ws60{word-spacing:15.960085px;}
.ws2b{word-spacing:16.019861px;}
.ws16{word-spacing:16.020504px;}
.ws17{word-spacing:16.080282px;}
.wse{word-spacing:16.300188px;}
.ws3a{word-spacing:16.378514px;}
.ws22{word-spacing:16.438290px;}
.ws1c{word-spacing:16.438950px;}
.ws36{word-spacing:16.498066px;}
.ws1e{word-spacing:16.617617px;}
.ws43{word-spacing:16.677392px;}
.ws5b{word-spacing:16.856719px;}
.ws88{word-spacing:16.880672px;}
.ws6c{word-spacing:16.916495px;}
.ws71{word-spacing:16.976270px;}
.ws32{word-spacing:17.036046px;}
.ws4b{word-spacing:17.095822px;}
.ws4e{word-spacing:17.275148px;}
.ws51{word-spacing:17.334924px;}
.ws37{word-spacing:17.394700px;}
.ws7e{word-spacing:17.454475px;}
.ws55{word-spacing:17.574026px;}
.ws1a{word-spacing:17.694288px;}
.ws26{word-spacing:17.753353px;}
.ws3f{word-spacing:17.813129px;}
.ws56{word-spacing:17.932680px;}
.ws3d{word-spacing:17.992456px;}
.ws42{word-spacing:18.231558px;}
.ws50{word-spacing:18.291334px;}
.ws14{word-spacing:18.292068px;}
.ws2a{word-spacing:18.410885px;}
.ws89{word-spacing:18.410931px;}
.ws85{word-spacing:18.458752px;}
.ws20{word-spacing:18.470660px;}
.ws58{word-spacing:18.530436px;}
.ws18{word-spacing:18.889848px;}
.ws79{word-spacing:18.948865px;}
.ws62{word-spacing:19.008641px;}
.ws6f{word-spacing:19.187968px;}
.ws31{word-spacing:19.307519px;}
.ws76{word-spacing:19.427070px;}
.ws27{word-spacing:19.486846px;}
.ws13{word-spacing:19.547406px;}
.ws63{word-spacing:19.606397px;}
.ws41{word-spacing:19.666172px;}
.ws6a{word-spacing:19.845499px;}
.ws3b{word-spacing:19.905275px;}
.ws40{word-spacing:20.204153px;}
.ws67{word-spacing:20.263928px;}
.ws53{word-spacing:20.323704px;}
.ws4d{word-spacing:20.503031px;}
.ws54{word-spacing:20.861684px;}
.ws3c{word-spacing:21.041011px;}
.ws70{word-spacing:21.220338px;}
.ws24{word-spacing:21.280114px;}
.ws4f{word-spacing:21.578992px;}
.ws78{word-spacing:21.818094px;}
.ws7f{word-spacing:22.296299px;}
.ws80{word-spacing:22.595177px;}
.ws25{word-spacing:22.774504px;}
.ws6d{word-spacing:22.834279px;}
.ws75{word-spacing:23.133157px;}
.ws7c{word-spacing:23.372260px;}
.ws11{word-spacing:25.361328px;}
.ws49{word-spacing:25.414524px;}
.ws8a{word-spacing:27.305563px;}
.ws39{word-spacing:29.828024px;}
.ws12{word-spacing:29.829222px;}
.ws72{word-spacing:491.691409px;}
.ws3{word-spacing:1361.383800px;}
._15{margin-left:-23.192933px;}
._7{margin-left:-19.940940px;}
._2a{margin-left:-17.772237px;}
._28{margin-left:-15.099390px;}
._5{margin-left:-8.625366px;}
._3{margin-left:-7.462200px;}
._2{margin-left:-6.211200px;}
._b{margin-left:-4.723902px;}
._1{margin-left:-3.510600px;}
._0{margin-left:-1.791900px;}
._4{width:1.649790px;}
._a{width:2.760228px;}
._6{width:3.815298px;}
._8{width:4.910376px;}
._16{width:6.635092px;}
._9{width:12.265488px;}
._d{width:13.327223px;}
._e{width:16.438290px;}
._14{width:17.572658px;}
._17{width:19.359949px;}
._c{width:20.624850px;}
._18{width:23.910300px;}
._29{width:28.422463px;}
._f{width:29.887800px;}
._24{width:172.058519px;}
._20{width:249.061158px;}
._26{width:284.003798px;}
._23{width:297.345746px;}
._27{width:308.389571px;}
._1e{width:334.086185px;}
._25{width:358.817658px;}
._22{width:373.023218px;}
._1c{width:442.028344px;}
._11{width:526.683600px;}
._1a{width:557.205631px;}
._13{width:774.758600px;}
._12{width:833.791800px;}
._10{width:905.791200px;}
._1f{width:1181.573923px;}
._21{width:1255.982776px;}
._1d{width:1391.005613px;}
._1b{width:1624.704885px;}
._19{width:1753.916146px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,57,255);}
.fc2{color:rgb(0,158,227);}
.fc1{color:rgb(0,150,189);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.868000px;}
.fs4{font-size:47.820000px;}
.fsc{font-size:47.820600px;}
.fs2{font-size:48.000000px;}
.fs3{font-size:51.108000px;}
.fsa{font-size:53.796000px;}
.fse{font-size:53.798400px;}
.fs1{font-size:54.000000px;}
.fs8{font-size:54.396000px;}
.fsd{font-size:59.775600px;}
.fsb{font-size:59.778000px;}
.fs5{font-size:71.730000px;}
.fs7{font-size:77.706000px;}
.fs0{font-size:99.000000px;}
.fs6{font-size:101.616000px;}
.y57{bottom:-489.482310px;}
.yd3{bottom:-489.482160px;}
.y56{bottom:-474.538560px;}
.yd2{bottom:-474.538410px;}
.y55{bottom:-459.594810px;}
.yd1{bottom:-459.594660px;}
.y54{bottom:-430.388745px;}
.yd0{bottom:-430.388595px;}
.y53{bottom:-410.878350px;}
.ycf{bottom:-410.878200px;}
.y52{bottom:-365.798640px;}
.yce{bottom:-365.798490px;}
.y51{bottom:-347.865240px;}
.ycd{bottom:-347.865090px;}
.y50{bottom:-329.931840px;}
.ycc{bottom:-329.931690px;}
.y4f{bottom:-311.998440px;}
.ycb{bottom:-311.998290px;}
.y4e{bottom:-294.065040px;}
.yca{bottom:-294.064890px;}
.y4d{bottom:-276.131640px;}
.yc9{bottom:-276.131490px;}
.y4c{bottom:-258.198240px;}
.yc8{bottom:-258.198090px;}
.y4b{bottom:-240.264840px;}
.yc7{bottom:-240.264690px;}
.y4a{bottom:-222.331440px;}
.yc6{bottom:-222.331290px;}
.y49{bottom:-204.398040px;}
.yc5{bottom:-204.397890px;}
.y48{bottom:-168.232350px;}
.yc4{bottom:-168.232200px;}
.y47{bottom:-84.158787px;}
.yc3{bottom:-84.154398px;}
.y46{bottom:-57.085950px;}
.yc2{bottom:-57.081561px;}
.yae{bottom:-49.533660px;}
.y31{bottom:-49.526850px;}
.y45{bottom:-40.947150px;}
.yc1{bottom:-40.942761px;}
.yad{bottom:-34.589910px;}
.y30{bottom:-34.583100px;}
.y8{bottom:-31.889700px;}
.y44{bottom:-24.808350px;}
.yc0{bottom:-24.803961px;}
.yac{bottom:-19.646160px;}
.y2f{bottom:-19.639350px;}
.y0{bottom:0.000000px;}
.ybf{bottom:9.262356px;}
.yab{bottom:9.559905px;}
.ybe{bottom:25.401156px;}
.yaa{bottom:29.070300px;}
.ybd{bottom:41.539956px;}
.ybc{bottom:57.678756px;}
.y7{bottom:68.015850px;}
.ybb{bottom:73.817556px;}
.ya9{bottom:74.150010px;}
.y109{bottom:79.926540px;}
.ye8{bottom:81.414050px;}
.y124{bottom:81.427320px;}
.y88{bottom:81.428994px;}
.y6{bottom:81.515850px;}
.ya8{bottom:92.083410px;}
.y5{bottom:96.515850px;}
.y108{bottom:97.859220px;}
.ye7{bottom:99.346730px;}
.y123{bottom:99.360000px;}
.y87{bottom:99.361674px;}
.yba{bottom:100.123800px;}
.y4{bottom:110.015850px;}
.ya7{bottom:110.016810px;}
.y107{bottom:115.791900px;}
.ye6{bottom:117.279410px;}
.y122{bottom:117.292680px;}
.y86{bottom:117.294354px;}
.ya6{bottom:127.950210px;}
.y106{bottom:133.724580px;}
.y121{bottom:135.225360px;}
.y85{bottom:135.227034px;}
.ya5{bottom:145.883610px;}
.yc{bottom:150.945000px;}
.y105{bottom:151.657260px;}
.y120{bottom:153.158040px;}
.y84{bottom:153.159714px;}
.ye5{bottom:155.012758px;}
.y2e{bottom:160.504755px;}
.ya4{bottom:163.817010px;}
.yb9{bottom:164.941800px;}
.y104{bottom:169.589940px;}
.y11f{bottom:171.090720px;}
.y83{bottom:171.092394px;}
.ye4{bottom:172.945438px;}
.y2d{bottom:180.015150px;}
.yb8{bottom:180.096300px;}
.ya3{bottom:181.750410px;}
.y14d{bottom:182.747062px;}
.y11e{bottom:189.023400px;}
.ye3{bottom:190.878118px;}
.yb6{bottom:197.662800px;}
.y14c{bottom:197.691000px;}
.yb7{bottom:197.759933px;}
.ya2{bottom:199.683810px;}
.y103{bottom:205.455300px;}
.y11d{bottom:206.956080px;}
.y82{bottom:206.957754px;}
.ye2{bottom:208.810798px;}
.y14b{bottom:212.634937px;}
.ya1{bottom:217.617210px;}
.y11c{bottom:224.888760px;}
.y2c{bottom:225.094860px;}
.ye1{bottom:226.743478px;}
.y14a{bottom:227.578875px;}
.ya0{bottom:235.550610px;}
.yb5{bottom:235.995000px;}
.y149{bottom:242.522812px;}
.y11b{bottom:242.821440px;}
.y81{bottom:242.972553px;}
.y2b{bottom:243.028260px;}
.ye0{bottom:244.676158px;}
.y148{bottom:257.466750px;}
.y11a{bottom:260.754120px;}
.y80{bottom:260.905233px;}
.y2a{bottom:260.961660px;}
.ydf{bottom:262.608838px;}
.y102{bottom:263.389800px;}
.yb4{bottom:266.479800px;}
.y9f{bottom:271.716300px;}
.y147{bottom:272.410687px;}
.y119{bottom:278.686800px;}
.y7f{bottom:278.837913px;}
.y29{bottom:278.895060px;}
.yde{bottom:280.541518px;}
.y146{bottom:287.354625px;}
.y7e{bottom:296.770593px;}
.y28{bottom:296.828460px;}
.ydd{bottom:298.474198px;}
.y145{bottom:302.298562px;}
.yb3{bottom:303.390300px;}
.y118{bottom:311.934300px;}
.y7d{bottom:314.703273px;}
.y27{bottom:314.761860px;}
.ydc{bottom:316.406878px;}
.y144{bottom:317.242500px;}
.yb2{bottom:321.322800px;}
.y143{bottom:332.186437px;}
.y7c{bottom:332.635953px;}
.y26{bottom:332.695260px;}
.ydb{bottom:334.339558px;}
.y142{bottom:347.130375px;}
.y7b{bottom:350.568633px;}
.y25{bottom:350.628660px;}
.y9e{bottom:355.794102px;}
.y141{bottom:362.074312px;}
.y7a{bottom:368.501313px;}
.y24{bottom:368.562060px;}
.yda{bottom:370.204918px;}
.y35{bottom:372.499020px;}
.yb1{bottom:372.499170px;}
.y140{bottom:377.018250px;}
.y20{bottom:382.866789px;}
.y9d{bottom:382.866939px;}
.y79{bottom:386.433993px;}
.y23{bottom:386.495460px;}
.y34{bottom:386.677650px;}
.yb0{bottom:386.677800px;}
.y13f{bottom:391.962188px;}
.y1f{bottom:399.005589px;}
.y9c{bottom:399.005739px;}
.y78{bottom:404.366673px;}
.y13e{bottom:406.906125px;}
.y1e{bottom:415.144389px;}
.y9b{bottom:415.144539px;}
.yd9{bottom:417.248315px;}
.y13d{bottom:421.850062px;}
.y22{bottom:422.661150px;}
.yd8{bottom:435.180995px;}
.y13c{bottom:436.794000px;}
.y77{bottom:440.530911px;}
.y1d{bottom:449.210706px;}
.y9a{bottom:449.210856px;}
.y13b{bottom:451.737937px;}
.yd7{bottom:453.113675px;}
.y1c{bottom:465.349506px;}
.y99{bottom:465.349656px;}
.y13a{bottom:466.681875px;}
.y33{bottom:467.631150px;}
.yaf{bottom:467.631300px;}
.yd6{bottom:471.046355px;}
.y76{bottom:473.556930px;}
.y1b{bottom:481.488306px;}
.y98{bottom:481.488456px;}
.y139{bottom:481.625812px;}
.y75{bottom:491.489610px;}
.y138{bottom:496.569750px;}
.y1a{bottom:497.627106px;}
.y97{bottom:497.627256px;}
.y21{bottom:506.737650px;}
.yd5{bottom:507.210593px;}
.y74{bottom:509.422290px;}
.y137{bottom:511.513687px;}
.y19{bottom:513.765906px;}
.y96{bottom:513.766056px;}
.y136{bottom:526.457625px;}
.y73{bottom:527.354970px;}
.yb{bottom:532.370850px;}
.y18{bottom:540.072150px;}
.y95{bottom:540.072300px;}
.y135{bottom:541.401562px;}
.y101{bottom:543.787650px;}
.y72{bottom:545.287650px;}
.ya{bottom:547.370850px;}
.y134{bottom:556.345500px;}
.y100{bottom:561.720330px;}
.y9{bottom:562.370850px;}
.y71{bottom:563.220330px;}
.yff{bottom:579.653010px;}
.y32{bottom:580.393500px;}
.y70{bottom:581.153010px;}
.y133{bottom:589.521594px;}
.y43{bottom:589.655706px;}
.yfe{bottom:597.585690px;}
.y6f{bottom:599.085690px;}
.y17{bottom:604.890150px;}
.y94{bottom:604.890300px;}
.y42{bottom:605.794506px;}
.yfd{bottom:615.518370px;}
.y6e{bottom:617.018370px;}
.y16{bottom:620.044650px;}
.y93{bottom:620.044800px;}
.y41{bottom:621.933306px;}
.yfc{bottom:633.451050px;}
.y132{bottom:634.353294px;}
.y6d{bottom:634.951050px;}
.y14{bottom:637.611150px;}
.y91{bottom:637.611300px;}
.y15{bottom:637.708282px;}
.y92{bottom:637.708433px;}
.y40{bottom:638.072106px;}
.y131{bottom:652.285974px;}
.y6c{bottom:652.883730px;}
.y3f{bottom:654.210906px;}
.yfb{bottom:669.316410px;}
.y6b{bottom:670.816410px;}
.y13{bottom:675.943350px;}
.y90{bottom:675.943500px;}
.y3e{bottom:680.517150px;}
.y130{bottom:688.450212px;}
.y6a{bottom:688.749090px;}
.y117{bottom:702.660882px;}
.yfa{bottom:705.181770px;}
.y12{bottom:706.428150px;}
.y8f{bottom:706.428300px;}
.y69{bottom:706.681770px;}
.y116{bottom:720.593562px;}
.yf9{bottom:723.114450px;}
.y68{bottom:724.614450px;}
.y12f{bottom:733.281912px;}
.yf8{bottom:741.047130px;}
.y67{bottom:742.547130px;}
.y11{bottom:743.338650px;}
.y8e{bottom:743.338800px;}
.y3d{bottom:745.335150px;}
.y12e{bottom:751.214592px;}
.y115{bottom:756.757800px;}
.yf7{bottom:758.979810px;}
.y66{bottom:760.479810px;}
.y3c{bottom:760.489650px;}
.y10{bottom:761.271150px;}
.y8d{bottom:761.271300px;}
.y12d{bottom:769.147272px;}
.yf6{bottom:776.912490px;}
.y3a{bottom:778.056150px;}
.y3b{bottom:778.153283px;}
.y65{bottom:778.412490px;}
.y12c{bottom:787.079952px;}
.yf5{bottom:794.845170px;}
.y64{bottom:796.345170px;}
.y114{bottom:800.842800px;}
.y12b{bottom:805.012632px;}
.yf{bottom:812.447520px;}
.y8c{bottom:812.447670px;}
.yf4{bottom:812.777850px;}
.y63{bottom:814.277850px;}
.y39{bottom:816.388350px;}
.y12a{bottom:822.945312px;}
.ye{bottom:826.626150px;}
.y8b{bottom:826.626300px;}
.yf3{bottom:830.710530px;}
.y62{bottom:832.210530px;}
.y157{bottom:834.650251px;}
.y113{bottom:834.661237px;}
.y129{bottom:840.877992px;}
.y38{bottom:846.873150px;}
.yf2{bottom:848.643210px;}
.y156{bottom:849.594188px;}
.y112{bottom:849.605175px;}
.y61{bottom:850.143210px;}
.y128{bottom:858.810672px;}
.y155{bottom:864.538126px;}
.y111{bottom:864.549113px;}
.yf1{bottom:866.575890px;}
.y60{bottom:868.075890px;}
.y127{bottom:876.743352px;}
.y154{bottom:879.482063px;}
.y110{bottom:879.493050px;}
.y37{bottom:883.783650px;}
.yf0{bottom:884.508570px;}
.y5f{bottom:886.008570px;}
.y153{bottom:894.426001px;}
.y10f{bottom:894.436987px;}
.y126{bottom:894.676032px;}
.y36{bottom:901.716150px;}
.yef{bottom:902.441250px;}
.y5e{bottom:903.941250px;}
.yd{bottom:907.579650px;}
.y8a{bottom:907.579800px;}
.y152{bottom:909.369938px;}
.y10e{bottom:909.380925px;}
.yee{bottom:920.373930px;}
.y5d{bottom:921.873930px;}
.y151{bottom:924.313876px;}
.y10d{bottom:924.324863px;}
.y125{bottom:930.840270px;}
.yed{bottom:938.306610px;}
.y150{bottom:939.257813px;}
.y10c{bottom:939.268800px;}
.y5c{bottom:939.806610px;}
.yec{bottom:956.239290px;}
.y5b{bottom:957.739290px;}
.y3{bottom:961.130850px;}
.y14f{bottom:965.236354px;}
.y10b{bottom:965.241300px;}
.yeb{bottom:974.171970px;}
.y5a{bottom:975.671970px;}
.y1{bottom:988.999500px;}
.y10a{bottom:990.975150px;}
.y14e{bottom:990.975792px;}
.yea{bottom:992.104650px;}
.y59{bottom:993.604650px;}
.ye9{bottom:1021.993800px;}
.y58{bottom:1023.493650px;}
.yd4{bottom:1023.493800px;}
.y2{bottom:1033.378950px;}
.y89{bottom:1035.561750px;}
.h16{height:24.426108px;}
.hf{height:24.497844px;}
.ha{height:32.900160px;}
.h19{height:32.900573px;}
.h23{height:33.139676px;}
.h22{height:33.187496px;}
.h4{height:33.328125px;}
.h5{height:36.000000px;}
.h13{height:36.742668px;}
.h11{height:37.011648px;}
.h20{height:37.013299px;}
.h10{height:37.226832px;}
.h9{height:37.257732px;}
.h12{height:37.280628px;}
.h7{height:37.494141px;}
.h3{height:38.664000px;}
.h6{height:40.500000px;}
.h1d{height:40.826735px;}
.h1a{height:41.125613px;}
.h15{height:41.127264px;}
.h1c{height:41.364715px;}
.h14{height:41.366376px;}
.h1b{height:41.424491px;}
.hb{height:51.071760px;}
.he{height:65.241918px;}
.hd{height:65.630448px;}
.hc{height:72.350592px;}
.h2{height:74.646000px;}
.h17{height:347.905500px;}
.h8{height:374.043000px;}
.h1e{height:1008.307500px;}
.h1f{height:1009.806000px;}
.h21{height:1013.350500px;}
.h18{height:1014.094500px;}
.h1{height:1113.750000px;}
.h0{height:1114.015500px;}
.w5{width:1.500000px;}
.w3{width:3.000000px;}
.w2{width:813.378000px;}
.w4{width:814.878000px;}
.w0{width:816.378000px;}
.w1{width:816.750000px;}
.x46{left:-759.602850px;}
.x34{left:-758.102850px;}
.x37{left:-749.623500px;}
.x4a{left:-748.394925px;}
.x47{left:-741.670170px;}
.x36{left:-740.169450px;}
.x5c{left:-735.686850px;}
.x4b{left:-729.715050px;}
.x2d{left:-713.702850px;}
.x2f{left:-695.918850px;}
.x33{left:-662.971500px;}
.x49{left:-623.493809px;}
.x2b{left:-621.664500px;}
.x45{left:-565.874850px;}
.x5b{left:-564.374850px;}
.x28{left:-550.569000px;}
.x2c{left:-548.481967px;}
.x29{left:-544.866000px;}
.x48{left:-538.791784px;}
.x2e{left:-516.720234px;}
.x5d{left:-486.702000px;}
.x30{left:-478.410691px;}
.x35{left:-436.133790px;}
.x31{left:-361.011275px;}
.x2a{left:-228.333465px;}
.x32{left:-220.726226px;}
.x0{left:0.000000px;}
.x3c{left:1.500000px;}
.x6{left:3.000000px;}
.x61{left:52.256925px;}
.x5{left:56.125950px;}
.x4{left:58.251900px;}
.x22{left:61.725000px;}
.x20{left:63.754500px;}
.x15{left:66.754500px;}
.x41{left:67.982925px;}
.x4c{left:69.933000px;}
.x1f{left:73.208400px;}
.x3e{left:74.707680px;}
.x14{left:76.208400px;}
.x23{left:79.657530px;}
.x4f{left:80.691000px;}
.x51{left:82.646174px;}
.x42{left:86.662800px;}
.x4d{left:88.612875px;}
.x43{left:91.612725px;}
.xc{left:99.675000px;}
.x17{left:102.675000px;}
.xe{left:117.459000px;}
.x19{left:120.459000px;}
.x60{left:125.099654px;}
.x53{left:128.099654px;}
.x12{left:150.406350px;}
.x1d{left:153.406350px;}
.x68{left:175.944907px;}
.x5a{left:178.944907px;}
.x5f{left:180.045523px;}
.x52{left:183.045523px;}
.xa{left:191.713500px;}
.x40{left:192.884041px;}
.x16{left:194.713500px;}
.x38{left:210.435473px;}
.x24{left:213.435323px;}
.x2{left:236.123100px;}
.x3d{left:249.003000px;}
.x3{left:254.268750px;}
.x7{left:262.809000px;}
.xb{left:264.896032px;}
.x8{left:268.512000px;}
.x3f{left:277.586066px;}
.x1{left:292.179600px;}
.xd{left:296.657616px;}
.x18{left:299.657616px;}
.x50{left:329.676000px;}
.x4e{left:330.717000px;}
.x44{left:333.717000px;}
.xf{left:334.967158px;}
.x1a{left:337.967158px;}
.x39{left:366.031360px;}
.x25{left:369.031210px;}
.x5e{left:374.937924px;}
.x13{left:377.244060px;}
.x1e{left:380.244060px;}
.x66{left:390.456163px;}
.x58{left:393.456163px;}
.x62{left:396.660886px;}
.x54{left:399.660886px;}
.x67{left:417.343296px;}
.x59{left:420.343296px;}
.x3a{left:426.135725px;}
.x26{left:429.135575px;}
.x10{left:452.366725px;}
.x1b{left:455.366725px;}
.x63{left:469.874225px;}
.x55{left:472.874225px;}
.x64{left:506.385253px;}
.x56{left:509.385253px;}
.x3b{left:571.151331px;}
.x27{left:574.151181px;}
.x9{left:585.044535px;}
.x11{left:592.651775px;}
.x1c{left:595.651775px;}
.x65{left:726.874084px;}
.x57{left:729.874084px;}
.x21{left:813.378000px;}
@media print{
.v3{vertical-align:-15.429333pt;}
.v1{vertical-align:-1.512000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:25.072000pt;}
.ls19{letter-spacing:-0.720000pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls17{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.977653pt;}
.lsa{letter-spacing:0.981904pt;}
.lsc{letter-spacing:0.986155pt;}
.ls0{letter-spacing:1.466480pt;}
.ls2{letter-spacing:1.588656pt;}
.ls1{letter-spacing:2.077483pt;}
.lsb{letter-spacing:2.650667pt;}
.ls4{letter-spacing:2.654379pt;}
.ls7{letter-spacing:2.656000pt;}
.ls3{letter-spacing:2.659712pt;}
.ls6{letter-spacing:3.868032pt;}
.ls8{letter-spacing:5.456688pt;}
.ls5{letter-spacing:5.802048pt;}
.ls1b{letter-spacing:7.986074pt;}
.lsf{letter-spacing:10.626667pt;}
.ls11{letter-spacing:10.626800pt;}
.ls1e{letter-spacing:11.742585pt;}
.lsd{letter-spacing:11.954667pt;}
.ls1f{letter-spacing:11.955200pt;}
.ls13{letter-spacing:12.486459pt;}
.ls14{letter-spacing:13.124065pt;}
.ls16{letter-spacing:13.283467pt;}
.ls20{letter-spacing:13.294182pt;}
.ls15{letter-spacing:14.293010pt;}
.ls1c{letter-spacing:14.877483pt;}
.ls12{letter-spacing:16.471499pt;}
.ls1d{letter-spacing:17.321641pt;}
.ls1a{letter-spacing:18.012381pt;}
.lse{letter-spacing:18.599264pt;}
.ls10{letter-spacing:688.829176pt;}
.ws2{word-spacing:-14.208000pt;}
.ws1{word-spacing:-13.344000pt;}
.ws74{word-spacing:-13.342003pt;}
.ws73{word-spacing:-12.003021pt;}
.ws4{word-spacing:-12.000000pt;}
.ws4a{word-spacing:-10.666667pt;}
.ws9{word-spacing:-0.090325pt;}
.ws0{word-spacing:-0.088000pt;}
.wsa{word-spacing:-0.069072pt;}
.ws8{word-spacing:-0.063760pt;}
.ws35{word-spacing:-0.053134pt;}
.ws10{word-spacing:-0.047819pt;}
.ws7{word-spacing:-0.042507pt;}
.ws46{word-spacing:0.000000pt;}
.ws47{word-spacing:0.480000pt;}
.ws48{word-spacing:0.720000pt;}
.wsb{word-spacing:9.659371pt;}
.ws83{word-spacing:10.116714pt;}
.ws81{word-spacing:10.307970pt;}
.ws3e{word-spacing:10.361104pt;}
.ws6{word-spacing:10.584160pt;}
.ws1d{word-spacing:10.584293pt;}
.ws52{word-spacing:10.679907pt;}
.ws5d{word-spacing:10.998710pt;}
.ws77{word-spacing:11.051844pt;}
.ws57{word-spacing:11.158112pt;}
.ws1f{word-spacing:11.317514pt;}
.ws2c{word-spacing:11.370647pt;}
.ws82{word-spacing:11.434437pt;}
.ws61{word-spacing:11.476915pt;}
.ws2f{word-spacing:11.583183pt;}
.ws15{word-spacing:11.583648pt;}
.ws59{word-spacing:11.636317pt;}
.ws7d{word-spacing:11.689451pt;}
.ws8c{word-spacing:11.689480pt;}
.wsd{word-spacing:11.715573pt;}
.wsc{word-spacing:11.763392pt;}
.ws8b{word-spacing:11.774494pt;}
.ws66{word-spacing:11.795718pt;}
.ws69{word-spacing:11.901986pt;}
.wsf{word-spacing:11.906848pt;}
.ws7b{word-spacing:11.955120pt;}
.ws68{word-spacing:12.061388pt;}
.ws7a{word-spacing:12.220789pt;}
.ws30{word-spacing:12.327057pt;}
.ws38{word-spacing:12.380191pt;}
.ws29{word-spacing:12.433325pt;}
.ws28{word-spacing:12.486459pt;}
.ws5{word-spacing:12.583925pt;}
.ws84{word-spacing:12.624638pt;}
.ws34{word-spacing:12.698994pt;}
.ws86{word-spacing:12.709653pt;}
.ws21{word-spacing:12.858396pt;}
.ws64{word-spacing:12.964663pt;}
.ws2d{word-spacing:13.070931pt;}
.ws33{word-spacing:13.124065pt;}
.ws23{word-spacing:13.230333pt;}
.ws1b{word-spacing:13.230864pt;}
.ws87{word-spacing:13.262246pt;}
.ws5c{word-spacing:13.283467pt;}
.ws5f{word-spacing:13.389734pt;}
.ws5a{word-spacing:13.442868pt;}
.ws65{word-spacing:13.496002pt;}
.ws4c{word-spacing:13.602270pt;}
.ws44{word-spacing:13.708538pt;}
.ws2e{word-spacing:13.814805pt;}
.ws45{word-spacing:13.867939pt;}
.ws6e{word-spacing:13.974207pt;}
.ws5e{word-spacing:14.027341pt;}
.ws6b{word-spacing:14.080475pt;}
.ws19{word-spacing:14.134176pt;}
.ws60{word-spacing:14.186742pt;}
.ws2b{word-spacing:14.239876pt;}
.ws16{word-spacing:14.240448pt;}
.ws17{word-spacing:14.293584pt;}
.wse{word-spacing:14.489056pt;}
.ws3a{word-spacing:14.558679pt;}
.ws22{word-spacing:14.611813pt;}
.ws1c{word-spacing:14.612400pt;}
.ws36{word-spacing:14.664947pt;}
.ws1e{word-spacing:14.771215pt;}
.ws43{word-spacing:14.824349pt;}
.ws5b{word-spacing:14.983750pt;}
.ws88{word-spacing:15.005042pt;}
.ws6c{word-spacing:15.036884pt;}
.ws71{word-spacing:15.090018pt;}
.ws32{word-spacing:15.143152pt;}
.ws4b{word-spacing:15.196286pt;}
.ws4e{word-spacing:15.355687pt;}
.ws51{word-spacing:15.408821pt;}
.ws37{word-spacing:15.461955pt;}
.ws7e{word-spacing:15.515089pt;}
.ws55{word-spacing:15.621357pt;}
.ws1a{word-spacing:15.728256pt;}
.ws26{word-spacing:15.780758pt;}
.ws3f{word-spacing:15.833892pt;}
.ws56{word-spacing:15.940160pt;}
.ws3d{word-spacing:15.993294pt;}
.ws42{word-spacing:16.205829pt;}
.ws50{word-spacing:16.258963pt;}
.ws14{word-spacing:16.259616pt;}
.ws2a{word-spacing:16.365231pt;}
.ws89{word-spacing:16.365272pt;}
.ws85{word-spacing:16.407779pt;}
.ws20{word-spacing:16.418365pt;}
.ws58{word-spacing:16.471499pt;}
.ws18{word-spacing:16.790976pt;}
.ws79{word-spacing:16.843436pt;}
.ws62{word-spacing:16.896570pt;}
.ws6f{word-spacing:17.055971pt;}
.ws31{word-spacing:17.162239pt;}
.ws76{word-spacing:17.268507pt;}
.ws27{word-spacing:17.321641pt;}
.ws13{word-spacing:17.375472pt;}
.ws63{word-spacing:17.427908pt;}
.ws41{word-spacing:17.481042pt;}
.ws6a{word-spacing:17.640444pt;}
.ws3b{word-spacing:17.693578pt;}
.ws40{word-spacing:17.959247pt;}
.ws67{word-spacing:18.012381pt;}
.ws53{word-spacing:18.065515pt;}
.ws4d{word-spacing:18.224916pt;}
.ws54{word-spacing:18.543719pt;}
.ws3c{word-spacing:18.703121pt;}
.ws70{word-spacing:18.862523pt;}
.ws24{word-spacing:18.915657pt;}
.ws4f{word-spacing:19.181326pt;}
.ws78{word-spacing:19.393861pt;}
.ws7f{word-spacing:19.818932pt;}
.ws80{word-spacing:20.084602pt;}
.ws25{word-spacing:20.244003pt;}
.ws6d{word-spacing:20.297137pt;}
.ws75{word-spacing:20.562806pt;}
.ws7c{word-spacing:20.775342pt;}
.ws11{word-spacing:22.543403pt;}
.ws49{word-spacing:22.590688pt;}
.ws8a{word-spacing:24.271611pt;}
.ws39{word-spacing:26.513799pt;}
.ws12{word-spacing:26.514864pt;}
.ws72{word-spacing:437.059030pt;}
.ws3{word-spacing:1210.118933pt;}
._15{margin-left:-20.615940pt;}
._7{margin-left:-17.725280pt;}
._2a{margin-left:-15.797544pt;}
._28{margin-left:-13.421680pt;}
._5{margin-left:-7.666992pt;}
._3{margin-left:-6.633067pt;}
._2{margin-left:-5.521067pt;}
._b{margin-left:-4.199024pt;}
._1{margin-left:-3.120533pt;}
._0{margin-left:-1.592800pt;}
._4{width:1.466480pt;}
._a{width:2.453536pt;}
._6{width:3.391376pt;}
._8{width:4.364779pt;}
._16{width:5.897859pt;}
._9{width:10.902656pt;}
._d{width:11.846420pt;}
._e{width:14.611813pt;}
._14{width:15.620141pt;}
._17{width:17.208843pt;}
._c{width:18.333200pt;}
._18{width:21.253600pt;}
._29{width:25.264411pt;}
._f{width:26.566933pt;}
._24{width:152.940906pt;}
._20{width:221.387696pt;}
._26{width:252.447821pt;}
._23{width:264.307330pt;}
._27{width:274.124063pt;}
._1e{width:296.965498pt;}
._25{width:318.949029pt;}
._22{width:331.576194pt;}
._1c{width:392.914083pt;}
._11{width:468.163200pt;}
._1a{width:495.293894pt;}
._13{width:688.674311pt;}
._12{width:741.148267pt;}
._10{width:805.147733pt;}
._1f{width:1050.287931pt;}
._21{width:1116.429134pt;}
._1d{width:1236.449434pt;}
._1b{width:1444.182120pt;}
._19{width:1559.036574pt;}
.fs9{font-size:31.882667pt;}
.fs4{font-size:42.506667pt;}
.fsc{font-size:42.507200pt;}
.fs2{font-size:42.666667pt;}
.fs3{font-size:45.429333pt;}
.fsa{font-size:47.818667pt;}
.fse{font-size:47.820800pt;}
.fs1{font-size:48.000000pt;}
.fs8{font-size:48.352000pt;}
.fsd{font-size:53.133867pt;}
.fsb{font-size:53.136000pt;}
.fs5{font-size:63.760000pt;}
.fs7{font-size:69.072000pt;}
.fs0{font-size:88.000000pt;}
.fs6{font-size:90.325333pt;}
.y57{bottom:-435.095387pt;}
.yd3{bottom:-435.095253pt;}
.y56{bottom:-421.812053pt;}
.yd2{bottom:-421.811920pt;}
.y55{bottom:-408.528720pt;}
.yd1{bottom:-408.528587pt;}
.y54{bottom:-382.567773pt;}
.yd0{bottom:-382.567640pt;}
.y53{bottom:-365.225200pt;}
.ycf{bottom:-365.225067pt;}
.y52{bottom:-325.154347pt;}
.yce{bottom:-325.154213pt;}
.y51{bottom:-309.213547pt;}
.ycd{bottom:-309.213413pt;}
.y50{bottom:-293.272747pt;}
.ycc{bottom:-293.272613pt;}
.y4f{bottom:-277.331947pt;}
.ycb{bottom:-277.331813pt;}
.y4e{bottom:-261.391147pt;}
.yca{bottom:-261.391013pt;}
.y4d{bottom:-245.450347pt;}
.yc9{bottom:-245.450213pt;}
.y4c{bottom:-229.509547pt;}
.yc8{bottom:-229.509413pt;}
.y4b{bottom:-213.568747pt;}
.yc7{bottom:-213.568613pt;}
.y4a{bottom:-197.627947pt;}
.yc6{bottom:-197.627813pt;}
.y49{bottom:-181.687147pt;}
.yc5{bottom:-181.687013pt;}
.y48{bottom:-149.539867pt;}
.yc4{bottom:-149.539733pt;}
.y47{bottom:-74.807811pt;}
.yc3{bottom:-74.803909pt;}
.y46{bottom:-50.743067pt;}
.yc2{bottom:-50.739165pt;}
.yae{bottom:-44.029920pt;}
.y31{bottom:-44.023867pt;}
.y45{bottom:-36.397467pt;}
.yc1{bottom:-36.393565pt;}
.yad{bottom:-30.746587pt;}
.y30{bottom:-30.740533pt;}
.y8{bottom:-28.346400pt;}
.y44{bottom:-22.051867pt;}
.yc0{bottom:-22.047965pt;}
.yac{bottom:-17.463253pt;}
.y2f{bottom:-17.457200pt;}
.y0{bottom:0.000000pt;}
.ybf{bottom:8.233205pt;}
.yab{bottom:8.497693pt;}
.ybe{bottom:22.578805pt;}
.yaa{bottom:25.840267pt;}
.ybd{bottom:36.924405pt;}
.ybc{bottom:51.270005pt;}
.y7{bottom:60.458533pt;}
.ybb{bottom:65.615605pt;}
.ya9{bottom:65.911120pt;}
.y109{bottom:71.045813pt;}
.ye8{bottom:72.368045pt;}
.y124{bottom:72.379840pt;}
.y88{bottom:72.381328pt;}
.y6{bottom:72.458533pt;}
.ya8{bottom:81.851920pt;}
.y5{bottom:85.791867pt;}
.y108{bottom:86.985973pt;}
.ye7{bottom:88.308205pt;}
.y123{bottom:88.320000pt;}
.y87{bottom:88.321488pt;}
.yba{bottom:88.998933pt;}
.y4{bottom:97.791867pt;}
.ya7{bottom:97.792720pt;}
.y107{bottom:102.926133pt;}
.ye6{bottom:104.248365pt;}
.y122{bottom:104.260160pt;}
.y86{bottom:104.261648pt;}
.ya6{bottom:113.733520pt;}
.y106{bottom:118.866293pt;}
.y121{bottom:120.200320pt;}
.y85{bottom:120.201808pt;}
.ya5{bottom:129.674320pt;}
.yc{bottom:134.173333pt;}
.y105{bottom:134.806453pt;}
.y120{bottom:136.140480pt;}
.y84{bottom:136.141968pt;}
.ye5{bottom:137.789118pt;}
.y2e{bottom:142.670893pt;}
.ya4{bottom:145.615120pt;}
.yb9{bottom:146.614933pt;}
.y104{bottom:150.746613pt;}
.y11f{bottom:152.080640pt;}
.y83{bottom:152.082128pt;}
.ye4{bottom:153.729278pt;}
.y2d{bottom:160.013467pt;}
.yb8{bottom:160.085600pt;}
.ya3{bottom:161.555920pt;}
.y14d{bottom:162.441833pt;}
.y11e{bottom:168.020800pt;}
.ye3{bottom:169.669438pt;}
.yb6{bottom:175.700267pt;}
.y14c{bottom:175.725333pt;}
.yb7{bottom:175.786607pt;}
.ya2{bottom:177.496720pt;}
.y103{bottom:182.626933pt;}
.y11d{bottom:183.960960pt;}
.y82{bottom:183.962448pt;}
.ye2{bottom:185.609598pt;}
.y14b{bottom:189.008833pt;}
.ya1{bottom:193.437520pt;}
.y11c{bottom:199.901120pt;}
.y2c{bottom:200.084320pt;}
.ye1{bottom:201.549758pt;}
.y14a{bottom:202.292333pt;}
.ya0{bottom:209.378320pt;}
.yb5{bottom:209.773333pt;}
.y149{bottom:215.575833pt;}
.y11b{bottom:215.841280pt;}
.y81{bottom:215.975603pt;}
.y2b{bottom:216.025120pt;}
.ye0{bottom:217.489918pt;}
.y148{bottom:228.859333pt;}
.y11a{bottom:231.781440pt;}
.y80{bottom:231.915763pt;}
.y2a{bottom:231.965920pt;}
.ydf{bottom:233.430078pt;}
.y102{bottom:234.124267pt;}
.yb4{bottom:236.870933pt;}
.y9f{bottom:241.525600pt;}
.y147{bottom:242.142833pt;}
.y119{bottom:247.721600pt;}
.y7f{bottom:247.855923pt;}
.y29{bottom:247.906720pt;}
.yde{bottom:249.370238pt;}
.y146{bottom:255.426333pt;}
.y7e{bottom:263.796083pt;}
.y28{bottom:263.847520pt;}
.ydd{bottom:265.310398pt;}
.y145{bottom:268.709833pt;}
.yb3{bottom:269.680267pt;}
.y118{bottom:277.274933pt;}
.y7d{bottom:279.736243pt;}
.y27{bottom:279.788320pt;}
.ydc{bottom:281.250558pt;}
.y144{bottom:281.993333pt;}
.yb2{bottom:285.620267pt;}
.y143{bottom:295.276833pt;}
.y7c{bottom:295.676403pt;}
.y26{bottom:295.729120pt;}
.ydb{bottom:297.190718pt;}
.y142{bottom:308.560333pt;}
.y7b{bottom:311.616563pt;}
.y25{bottom:311.669920pt;}
.y9e{bottom:316.261424pt;}
.y141{bottom:321.843833pt;}
.y7a{bottom:327.556723pt;}
.y24{bottom:327.610720pt;}
.yda{bottom:329.071038pt;}
.y35{bottom:331.110240pt;}
.yb1{bottom:331.110373pt;}
.y140{bottom:335.127333pt;}
.y20{bottom:340.326035pt;}
.y9d{bottom:340.326168pt;}
.y79{bottom:343.496883pt;}
.y23{bottom:343.551520pt;}
.y34{bottom:343.713467pt;}
.yb0{bottom:343.713600pt;}
.y13f{bottom:348.410833pt;}
.y1f{bottom:354.671635pt;}
.y9c{bottom:354.671768pt;}
.y78{bottom:359.437043pt;}
.y13e{bottom:361.694333pt;}
.y1e{bottom:369.017235pt;}
.y9b{bottom:369.017368pt;}
.yd9{bottom:370.887391pt;}
.y13d{bottom:374.977833pt;}
.y22{bottom:375.698800pt;}
.yd8{bottom:386.827551pt;}
.y13c{bottom:388.261333pt;}
.y77{bottom:391.583032pt;}
.y1d{bottom:399.298405pt;}
.y9a{bottom:399.298539pt;}
.y13b{bottom:401.544833pt;}
.yd7{bottom:402.767711pt;}
.y1c{bottom:413.644005pt;}
.y99{bottom:413.644139pt;}
.y13a{bottom:414.828333pt;}
.y33{bottom:415.672133pt;}
.yaf{bottom:415.672267pt;}
.yd6{bottom:418.707871pt;}
.y76{bottom:420.939493pt;}
.y1b{bottom:427.989605pt;}
.y98{bottom:427.989739pt;}
.y139{bottom:428.111833pt;}
.y75{bottom:436.879653pt;}
.y138{bottom:441.395333pt;}
.y1a{bottom:442.335205pt;}
.y97{bottom:442.335339pt;}
.y21{bottom:450.433467pt;}
.yd5{bottom:450.853860pt;}
.y74{bottom:452.819813pt;}
.y137{bottom:454.678833pt;}
.y19{bottom:456.680805pt;}
.y96{bottom:456.680939pt;}
.y136{bottom:467.962333pt;}
.y73{bottom:468.759973pt;}
.yb{bottom:473.218533pt;}
.y18{bottom:480.064133pt;}
.y95{bottom:480.064267pt;}
.y135{bottom:481.245833pt;}
.y101{bottom:483.366800pt;}
.y72{bottom:484.700133pt;}
.ya{bottom:486.551867pt;}
.y134{bottom:494.529333pt;}
.y100{bottom:499.306960pt;}
.y9{bottom:499.885200pt;}
.y71{bottom:500.640293pt;}
.yff{bottom:515.247120pt;}
.y32{bottom:515.905333pt;}
.y70{bottom:516.580453pt;}
.y133{bottom:524.019195pt;}
.y43{bottom:524.138405pt;}
.yfe{bottom:531.187280pt;}
.y6f{bottom:532.520613pt;}
.y17{bottom:537.680133pt;}
.y94{bottom:537.680267pt;}
.y42{bottom:538.484005pt;}
.yfd{bottom:547.127440pt;}
.y6e{bottom:548.460773pt;}
.y16{bottom:551.150800pt;}
.y93{bottom:551.150933pt;}
.y41{bottom:552.829605pt;}
.yfc{bottom:563.067600pt;}
.y132{bottom:563.869595pt;}
.y6d{bottom:564.400933pt;}
.y14{bottom:566.765467pt;}
.y91{bottom:566.765600pt;}
.y15{bottom:566.851807pt;}
.y92{bottom:566.851940pt;}
.y40{bottom:567.175205pt;}
.y131{bottom:579.809755pt;}
.y6c{bottom:580.341093pt;}
.y3f{bottom:581.520805pt;}
.yfb{bottom:594.947920pt;}
.y6b{bottom:596.281253pt;}
.y13{bottom:600.838533pt;}
.y90{bottom:600.838667pt;}
.y3e{bottom:604.904133pt;}
.y130{bottom:611.955744pt;}
.y6a{bottom:612.221413pt;}
.y117{bottom:624.587451pt;}
.yfa{bottom:626.828240pt;}
.y12{bottom:627.936133pt;}
.y8f{bottom:627.936267pt;}
.y69{bottom:628.161573pt;}
.y116{bottom:640.527611pt;}
.yf9{bottom:642.768400pt;}
.y68{bottom:644.101733pt;}
.y12f{bottom:651.806144pt;}
.yf8{bottom:658.708560pt;}
.y67{bottom:660.041893pt;}
.y11{bottom:660.745467pt;}
.y8e{bottom:660.745600pt;}
.y3d{bottom:662.520133pt;}
.y12e{bottom:667.746304pt;}
.y115{bottom:672.673600pt;}
.yf7{bottom:674.648720pt;}
.y66{bottom:675.982053pt;}
.y3c{bottom:675.990800pt;}
.y10{bottom:676.685467pt;}
.y8d{bottom:676.685600pt;}
.y12d{bottom:683.686464pt;}
.yf6{bottom:690.588880pt;}
.y3a{bottom:691.605467pt;}
.y3b{bottom:691.691807pt;}
.y65{bottom:691.922213pt;}
.y12c{bottom:699.626624pt;}
.yf5{bottom:706.529040pt;}
.y64{bottom:707.862373pt;}
.y114{bottom:711.860267pt;}
.y12b{bottom:715.566784pt;}
.yf{bottom:722.175573pt;}
.y8c{bottom:722.175707pt;}
.yf4{bottom:722.469200pt;}
.y63{bottom:723.802533pt;}
.y39{bottom:725.678533pt;}
.y12a{bottom:731.506944pt;}
.ye{bottom:734.778800pt;}
.y8b{bottom:734.778933pt;}
.yf3{bottom:738.409360pt;}
.y62{bottom:739.742693pt;}
.y157{bottom:741.911334pt;}
.y113{bottom:741.921100pt;}
.y129{bottom:747.447104pt;}
.y38{bottom:752.776133pt;}
.yf2{bottom:754.349520pt;}
.y156{bottom:755.194834pt;}
.y112{bottom:755.204600pt;}
.y61{bottom:755.682853pt;}
.y128{bottom:763.387264pt;}
.y155{bottom:768.478334pt;}
.y111{bottom:768.488100pt;}
.yf1{bottom:770.289680pt;}
.y60{bottom:771.623013pt;}
.y127{bottom:779.327424pt;}
.y154{bottom:781.761834pt;}
.y110{bottom:781.771600pt;}
.y37{bottom:785.585467pt;}
.yf0{bottom:786.229840pt;}
.y5f{bottom:787.563173pt;}
.y153{bottom:795.045334pt;}
.y10f{bottom:795.055100pt;}
.y126{bottom:795.267584pt;}
.y36{bottom:801.525467pt;}
.yef{bottom:802.170000pt;}
.y5e{bottom:803.503333pt;}
.yd{bottom:806.737467pt;}
.y8a{bottom:806.737600pt;}
.y152{bottom:808.328834pt;}
.y10e{bottom:808.338600pt;}
.yee{bottom:818.110160pt;}
.y5d{bottom:819.443493pt;}
.y151{bottom:821.612334pt;}
.y10d{bottom:821.622100pt;}
.y125{bottom:827.413573pt;}
.yed{bottom:834.050320pt;}
.y150{bottom:834.895834pt;}
.y10c{bottom:834.905600pt;}
.y5c{bottom:835.383653pt;}
.yec{bottom:849.990480pt;}
.y5b{bottom:851.323813pt;}
.y3{bottom:854.338533pt;}
.y14f{bottom:857.987870pt;}
.y10b{bottom:857.992267pt;}
.yeb{bottom:865.930640pt;}
.y5a{bottom:867.263973pt;}
.y1{bottom:879.110667pt;}
.y10a{bottom:880.866800pt;}
.y14e{bottom:880.867371pt;}
.yea{bottom:881.870800pt;}
.y59{bottom:883.204133pt;}
.ye9{bottom:908.438933pt;}
.y58{bottom:909.772133pt;}
.yd4{bottom:909.772267pt;}
.y2{bottom:918.559067pt;}
.y89{bottom:920.499333pt;}
.h16{height:21.712096pt;}
.hf{height:21.775861pt;}
.ha{height:29.244587pt;}
.h19{height:29.244954pt;}
.h23{height:29.457490pt;}
.h22{height:29.499997pt;}
.h4{height:29.625000pt;}
.h5{height:32.000000pt;}
.h13{height:32.660149pt;}
.h11{height:32.899243pt;}
.h20{height:32.900710pt;}
.h10{height:33.090517pt;}
.h9{height:33.117984pt;}
.h12{height:33.138336pt;}
.h7{height:33.328125pt;}
.h3{height:34.368000pt;}
.h6{height:36.000000pt;}
.h1d{height:36.290431pt;}
.h1a{height:36.556100pt;}
.h15{height:36.557568pt;}
.h1c{height:36.768636pt;}
.h14{height:36.770112pt;}
.h1b{height:36.821770pt;}
.hb{height:45.397120pt;}
.he{height:57.992816pt;}
.hd{height:58.338176pt;}
.hc{height:64.311637pt;}
.h2{height:66.352000pt;}
.h17{height:309.249333pt;}
.h8{height:332.482667pt;}
.h1e{height:896.273333pt;}
.h1f{height:897.605333pt;}
.h21{height:900.756000pt;}
.h18{height:901.417333pt;}
.h1{height:990.000000pt;}
.h0{height:990.236000pt;}
.w5{width:1.333333pt;}
.w3{width:2.666667pt;}
.w2{width:723.002667pt;}
.w4{width:724.336000pt;}
.w0{width:725.669333pt;}
.w1{width:726.000000pt;}
.x46{left:-675.202533pt;}
.x34{left:-673.869200pt;}
.x37{left:-666.332000pt;}
.x4a{left:-665.239933pt;}
.x47{left:-659.262373pt;}
.x36{left:-657.928400pt;}
.x5c{left:-653.943867pt;}
.x4b{left:-648.635600pt;}
.x2d{left:-634.402533pt;}
.x2f{left:-618.594533pt;}
.x33{left:-589.308000pt;}
.x49{left:-554.216719pt;}
.x2b{left:-552.590667pt;}
.x45{left:-502.999867pt;}
.x5b{left:-501.666533pt;}
.x28{left:-489.394667pt;}
.x2c{left:-487.539527pt;}
.x29{left:-484.325333pt;}
.x48{left:-478.926030pt;}
.x2e{left:-459.306875pt;}
.x5d{left:-432.624000pt;}
.x30{left:-425.253948pt;}
.x35{left:-387.674480pt;}
.x31{left:-320.898911pt;}
.x2a{left:-202.963080pt;}
.x32{left:-196.201089pt;}
.x0{left:0.000000pt;}
.x3c{left:1.333333pt;}
.x6{left:2.666667pt;}
.x61{left:46.450600pt;}
.x5{left:49.889733pt;}
.x4{left:51.779467pt;}
.x22{left:54.866667pt;}
.x20{left:56.670667pt;}
.x15{left:59.337333pt;}
.x41{left:60.429267pt;}
.x4c{left:62.162667pt;}
.x1f{left:65.074133pt;}
.x3e{left:66.406827pt;}
.x14{left:67.740800pt;}
.x23{left:70.806693pt;}
.x4f{left:71.725333pt;}
.x51{left:73.463265pt;}
.x42{left:77.033600pt;}
.x4d{left:78.767000pt;}
.x43{left:81.433533pt;}
.xc{left:88.600000pt;}
.x17{left:91.266667pt;}
.xe{left:104.408000pt;}
.x19{left:107.074667pt;}
.x60{left:111.199692pt;}
.x53{left:113.866359pt;}
.x12{left:133.694533pt;}
.x1d{left:136.361200pt;}
.x68{left:156.395473pt;}
.x5a{left:159.062139pt;}
.x5f{left:160.040465pt;}
.x52{left:162.707132pt;}
.xa{left:170.412000pt;}
.x40{left:171.452481pt;}
.x16{left:173.078667pt;}
.x38{left:187.053754pt;}
.x24{left:189.720287pt;}
.x2{left:209.887200pt;}
.x3d{left:221.336000pt;}
.x3{left:226.016667pt;}
.x7{left:233.608000pt;}
.xb{left:235.463140pt;}
.x8{left:238.677333pt;}
.x3f{left:246.743170pt;}
.x1{left:259.715200pt;}
.xd{left:263.695659pt;}
.x18{left:266.362325pt;}
.x50{left:293.045333pt;}
.x4e{left:293.970667pt;}
.x44{left:296.637333pt;}
.xf{left:297.748585pt;}
.x1a{left:300.415252pt;}
.x39{left:325.361209pt;}
.x25{left:328.027742pt;}
.x5e{left:333.278155pt;}
.x13{left:335.328053pt;}
.x1e{left:337.994720pt;}
.x66{left:347.072145pt;}
.x58{left:349.738812pt;}
.x62{left:352.587454pt;}
.x54{left:355.254121pt;}
.x67{left:370.971818pt;}
.x59{left:373.638485pt;}
.x3a{left:378.787311pt;}
.x26{left:381.453845pt;}
.x10{left:402.103756pt;}
.x1b{left:404.770423pt;}
.x63{left:417.665978pt;}
.x55{left:420.332644pt;}
.x64{left:450.120225pt;}
.x56{left:452.786891pt;}
.x3b{left:507.690072pt;}
.x27{left:510.356605pt;}
.x9{left:520.039587pt;}
.x11{left:526.801577pt;}
.x1c{left:529.468244pt;}
.x65{left:646.110297pt;}
.x57{left:648.776964pt;}
.x21{left:723.002667pt;}
}




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