
    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_ac195d64e2176b593456acca.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.111000;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_47daf5da8ba7d573f0394272.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.978000;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_dbe2559f18ce9e29ec08b187.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.638000;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_ee09e51750f9c088c6321d85.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.978000;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_02314b17fb93f22bf2512569.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.896000;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_a8d832e7518941f7efffd2f0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.930000;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_d225b94df7179a8c1af7c4d1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.086000;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_b2a13cd30cab81adb41baee4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.730000;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_a7cf37a760a3b3b9da1d200e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.926000;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_8e06cf87c1400ab3304ef1a6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.730000;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_306e61968a94261f74e86a24.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.384000;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_bf06eca6bade201703c3e457.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910100;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_1f290ae976abd689f3bcdbb0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.978000;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_84566b45315590f55aa315ab.woff2')format("woff");}.ffe{font-family:ffe;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;}
@font-face{font-family:fff;src:url('chunks/assets/font_f5d052ccad2b869f62530186.woff2')format("woff");}.fff{font-family:fff;line-height:0.930000;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_69de5a3f61a7910739506166.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.762000;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_be4b8285e0f55d7052342227.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.996000;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_e9882e02e8bf200334d66112.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.996000;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_afe76556354014dbc58ed240.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.872000;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_bf60a479cc46df200577afb5.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.996000;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_567982a239f616beb12760e6.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.972000;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_0b07eb1fa61d785c1eb75c8e.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.996000;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_3eb48c497a49cf4fef8b5489.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.709000;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_ceb5e04fb1caf57cb1774a6b.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.942000;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_e4f2ad3c182c27d175ed5b1a.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.762000;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_fb9b65536ea2a3aabc57594c.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.930000;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_bb83972025d294b95afaa688.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.926000;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_1d6335ae5ea6e8ddd1995b04.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.996000;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_2c4bfdc4381a22258c7ccdba.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.930000;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_672273bd15f25068cbcb57e0.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.073000;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_74459833cb5ffef2d3d3d0ff.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.762000;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_ab59f481253047d5155f7da4.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.996000;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_a19d29b68b2c5a34de30468a.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.749000;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_56d2737d7cbad34a580077a6.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.996000;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_702ef3693181ec25300a23b5.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.762000;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_bc112fd7ab3fdaa31cdeb848.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.948000;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_f0d96daa1cb9788b8f0e8b83.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.972000;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_fe33cce094f9eb18a88412ba.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.948000;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_d356a386f285e3d6fb5cf618.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.774000;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_0009fbd6a6a0749a20b56d46.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.926000;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_56c89b2d9119a6c5487ecbd5.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.927000;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_5bb88db089a457362bc5cf8f.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.930000;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_3cef2580350d3271523ef23c.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.926000;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_ce32223eb77b76724d9dde72.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.960000;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_a19dccde4499a1597f8c1d97.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.926000;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_5233e3a19dc5b19f06bd99ec.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.930000;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_0275eb6cfb7e5c3af65e9087.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.926000;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_7a0a8d47f3a9c18b2f748f05.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.942000;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_72aa82003114d9c97fe5e662.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.926000;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_3ce6b05a9f1ede4bf6e2fae4.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.996000;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_a1f58bb12411117f14d5deb1.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.927000;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_8913b7590176be9ddd8336f3.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.942000;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_21eba81c029f66322fcabb45.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.926000;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_b3893313b94d6ef530f4c22d.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.947000;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_24b3cff5abb659b4e977d8fc.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.926000;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_b69119876bf4c897be8457f9.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.978000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_ce1decd19b433703923b7503.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_0b7207356a0332eacaac4cd6.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.978000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_3edcd62795be80562d6a761b.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.926000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_173798112a098906790e4bef.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.978000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_11ec3157b0279c7fd76d7239.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.926000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_e27653a8fe3a5a266d900d3e.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.926000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_f8093b261d5c5bbaca4f0b7b.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.926000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_8cd8d4fe878253cdc4a4f004.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_6c98ec3b86e130f50c9625e1.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.926000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_e82539e220ff1ad6ac8083e9.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_991a94f8fcd0fff250bb3aae.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_9ffc918b49c54781342a7c7c.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.930000;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.974400px;}
.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;}
}
.ws9{word-spacing:-19.200000px;}
.ws0{word-spacing:-16.680000px;}
.ws3{word-spacing:-4.386000px;}
.wsa{word-spacing:-0.066000px;}
.ws2{word-spacing:-0.060000px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:166.821600px;}
.ws6{word-spacing:180.321600px;}
.ws4{word-spacing:187.719600px;}
.ws5{word-spacing:193.821600px;}
.ws8{word-spacing:202.423800px;}
._2{margin-left:-5.790000px;}
._1{margin-left:-3.954000px;}
._12{margin-left:-2.818200px;}
._3{margin-left:-1.812000px;}
._7{width:1.050000px;}
._0{width:2.076000px;}
._6{width:3.222000px;}
._8{width:4.224000px;}
._e{width:5.520000px;}
._f{width:7.213800px;}
._10{width:8.216400px;}
._16{width:9.388200px;}
._b{width:10.608600px;}
._c{width:12.151800px;}
._11{width:13.340400px;}
._5{width:14.430000px;}
._4{width:15.522000px;}
._9{width:17.682000px;}
._32{width:19.303200px;}
._19{width:20.666400px;}
._18{width:21.972000px;}
._17{width:23.514000px;}
._1a{width:24.732000px;}
._13{width:25.833600px;}
._1c{width:26.858400px;}
._1b{width:28.200600px;}
._15{width:29.418000px;}
._d{width:32.491200px;}
._31{width:33.588000px;}
._36{width:37.396800px;}
._3a{width:40.221000px;}
._35{width:42.323400px;}
._33{width:44.182200px;}
._39{width:47.148600px;}
._34{width:66.755400px;}
._37{width:78.367800px;}
._38{width:81.498600px;}
._2a{width:178.663200px;}
._1f{width:182.335200px;}
._29{width:189.540000px;}
._1e{width:193.212000px;}
._22{width:205.663200px;}
._25{width:211.101600px;}
._21{width:216.540000px;}
._2e{width:225.141600px;}
._30{width:229.404000px;}
._2f{width:230.580000px;}
._2b{width:240.050400px;}
._26{width:270.734400px;}
._14{width:289.602000px;}
._24{width:290.810400px;}
._2c{width:342.566400px;}
._27{width:413.816400px;}
._a{width:430.667400px;}
._1d{width:496.446000px;}
._28{width:552.596400px;}
._23{width:607.136400px;}
._20{width:610.376400px;}
._2d{width:645.048000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:85.022340px;}
.y20{bottom:85.023540px;}
.y1{bottom:119.763960px;}
.y110{bottom:128.530440px;}
.y151{bottom:129.147540px;}
.y16b{bottom:130.648740px;}
.y1f{bottom:130.715790px;}
.y42{bottom:130.991490px;}
.y76{bottom:130.991640px;}
.y66{bottom:130.991940px;}
.yca{bottom:131.514540px;}
.y10f{bottom:145.030440px;}
.y150{bottom:145.647540px;}
.y16a{bottom:147.725640px;}
.y41{bottom:149.099490px;}
.yb8{bottom:149.135490px;}
.y108{bottom:149.186340px;}
.yc9{bottom:149.514540px;}
.y9a{bottom:149.568690px;}
.y65{bottom:150.076740px;}
.y75{bottom:151.112040px;}
.yef{bottom:160.134540px;}
.y169{bottom:164.802540px;}
.y40{bottom:167.207640px;}
.yb7{bottom:167.278890px;}
.y107{bottom:167.381040px;}
.yc8{bottom:167.514540px;}
.y99{bottom:168.145290px;}
.y64{bottom:169.161540px;}
.y14f{bottom:170.651490px;}
.y74{bottom:171.232290px;}
.yda{bottom:172.907040px;}
.y1c{bottom:177.763590px;}
.yee{bottom:179.915040px;}
.y168{bottom:181.879440px;}
.y3f{bottom:185.315640px;}
.yb6{bottom:185.422440px;}
.yc7{bottom:185.514540px;}
.y106{bottom:185.575740px;}
.y98{bottom:186.721890px;}
.y14e{bottom:187.151490px;}
.y73{bottom:191.352690px;}
.ydd{bottom:196.059090px;}
.y1b{bottom:196.164840px;}
.yed{bottom:199.695390px;}
.y3e{bottom:203.423640px;}
.yc6{bottom:203.514540px;}
.yb5{bottom:203.565990px;}
.y14d{bottom:203.651490px;}
.y105{bottom:203.770440px;}
.y63{bottom:205.254240px;}
.y97{bottom:205.298640px;}
.y167{bottom:207.460140px;}
.y72{bottom:211.473090px;}
.ydc{bottom:212.559090px;}
.y1a{bottom:214.565940px;}
.yec{bottom:219.475890px;}
.y14c{bottom:220.151490px;}
.yc5{bottom:221.514540px;}
.yb4{bottom:221.709540px;}
.y104{bottom:221.965140px;}
.y96{bottom:223.875390px;}
.y62{bottom:224.339040px;}
.y166{bottom:224.537040px;}
.y71{bottom:231.593490px;}
.y19{bottom:232.967190px;}
.y12d{bottom:235.220190px;}
.y14b{bottom:236.651490px;}
.y3d{bottom:238.539540px;}
.yeb{bottom:239.256240px;}
.yc4{bottom:239.514540px;}
.yb3{bottom:239.852940px;}
.y165{bottom:241.613940px;}
.y95{bottom:242.451990px;}
.y61{bottom:243.423840px;}
.y18{bottom:251.368440px;}
.y70{bottom:251.713740px;}
.y14a{bottom:253.151490px;}
.y12c{bottom:253.220190px;}
.y3c{bottom:256.647540px;}
.y103{bottom:257.167740px;}
.yc3{bottom:257.514540px;}
.yb2{bottom:257.996490px;}
.y164{bottom:258.690840px;}
.yea{bottom:259.036740px;}
.y94{bottom:261.028740px;}
.y60{bottom:262.508790px;}
.y17{bottom:269.769690px;}
.y12b{bottom:271.220190px;}
.y3b{bottom:274.755540px;}
.y102{bottom:275.362440px;}
.yc2{bottom:275.514540px;}
.y163{bottom:275.767740px;}
.yb1{bottom:276.139890px;}
.y149{bottom:278.155440px;}
.ye9{bottom:278.817090px;}
.y93{bottom:279.605340px;}
.y5f{bottom:281.593590px;}
.y16{bottom:288.170790px;}
.y12a{bottom:289.220190px;}
.y3a{bottom:292.863690px;}
.yc1{bottom:293.514540px;}
.y101{bottom:293.557290px;}
.yb0{bottom:294.283590px;}
.y148{bottom:294.655440px;}
.y92{bottom:298.182090px;}
.y5e{bottom:300.678390px;}
.y162{bottom:301.348590px;}
.y15{bottom:306.572040px;}
.y129{bottom:307.220190px;}
.y39{bottom:310.971690px;}
.y147{bottom:311.155440px;}
.yc0{bottom:311.514540px;}
.y100{bottom:311.751840px;}
.y161{bottom:318.425490px;}
.y6f{bottom:320.952390px;}
.y14{bottom:324.973290px;}
.y128{bottom:325.220190px;}
.y91{bottom:325.262640px;}
.y146{bottom:327.655440px;}
.y38{bottom:329.079690px;}
.ybf{bottom:329.514540px;}
.yff{bottom:329.946540px;}
.y160{bottom:335.502240px;}
.y5d{bottom:336.771090px;}
.y6e{bottom:337.452390px;}
.yaf{bottom:342.190740px;}
.y127{bottom:343.220190px;}
.y13{bottom:343.374390px;}
.y90{bottom:343.839240px;}
.y145{bottom:344.155440px;}
.y37{bottom:347.187840px;}
.ybe{bottom:347.514540px;}
.yfe{bottom:348.141390px;}
.y15f{bottom:352.579140px;}
.ye8{bottom:353.974440px;}
.y5c{bottom:355.855890px;}
.y144{bottom:360.655440px;}
.y126{bottom:361.220190px;}
.y12{bottom:361.775640px;}
.y8f{bottom:362.415990px;}
.y36{bottom:365.295840px;}
.ybd{bottom:365.514540px;}
.yfd{bottom:366.336090px;}
.ye7{bottom:370.474440px;}
.y5b{bottom:374.940690px;}
.y15e{bottom:378.159990px;}
.y35{bottom:383.403840px;}
.ybc{bottom:383.514540px;}
.yfc{bottom:384.530640px;}
.y143{bottom:385.659390px;}
.y5a{bottom:394.025640px;}
.y15d{bottom:395.236890px;}
.y125{bottom:396.228090px;}
.y8e{bottom:398.000490px;}
.yae{bottom:398.601990px;}
.ybb{bottom:401.514540px;}
.y142{bottom:402.159390px;}
.yfb{bottom:402.725490px;}
.yd9{bottom:408.197190px;}
.y11{bottom:409.940640px;}
.y15c{bottom:412.313790px;}
.y59{bottom:413.110440px;}
.y124{bottom:414.228090px;}
.y8d{bottom:416.577240px;}
.y34{bottom:418.519740px;}
.y141{bottom:418.659390px;}
.yba{bottom:419.514540px;}
.yfa{bottom:420.920190px;}
.y10{bottom:428.341740px;}
.y15b{bottom:429.390540px;}
.y58{bottom:432.195240px;}
.y123{bottom:432.228090px;}
.y8c{bottom:435.153840px;}
.y140{bottom:435.159390px;}
.y33{bottom:436.627740px;}
.yb9{bottom:437.514540px;}
.yf9{bottom:439.114890px;}
.y15a{bottom:446.467440px;}
.yf{bottom:446.742990px;}
.y122{bottom:450.228090px;}
.y57{bottom:451.280040px;}
.y13f{bottom:451.659390px;}
.y8b{bottom:453.730440px;}
.y32{bottom:454.735890px;}
.y159{bottom:463.544340px;}
.y56{bottom:470.364990px;}
.y8a{bottom:472.307190px;}
.y13e{bottom:476.663190px;}
.y158{bottom:480.621240px;}
.yad{bottom:486.576990px;}
.yf8{bottom:487.073340px;}
.ye{bottom:488.204040px;}
.y55{bottom:489.449790px;}
.y13d{bottom:493.163190px;}
.y157{bottom:497.698140px;}
.y121{bottom:497.991840px;}
.ycc{bottom:500.620440px;}
.y31{bottom:502.607640px;}
.yac{bottom:504.720540px;}
.yd{bottom:506.605290px;}
.y89{bottom:507.891690px;}
.y54{bottom:508.534590px;}
.y13c{bottom:509.663190px;}
.ycb{bottom:517.120440px;}
.yab{bottom:522.864090px;}
.y156{bottom:523.278840px;}
.yc{bottom:525.006540px;}
.y13b{bottom:526.163190px;}
.y88{bottom:526.468440px;}
.y53{bottom:527.619390px;}
.y155{bottom:540.355740px;}
.yaa{bottom:541.007490px;}
.y13a{bottom:542.663190px;}
.y87{bottom:545.045040px;}
.y154{bottom:557.432640px;}
.ya9{bottom:559.151040px;}
.y139{bottom:559.163190px;}
.y86{bottom:563.621640px;}
.y52{bottom:563.712090px;}
.yb{bottom:566.467590px;}
.yf7{bottom:566.595540px;}
.y153{bottom:574.509540px;}
.y138{bottom:575.663190px;}
.ya8{bottom:577.294590px;}
.y120{bottom:577.319490px;}
.y30{bottom:582.043140px;}
.y85{bottom:582.198390px;}
.y51{bottom:582.796890px;}
.yf6{bottom:584.790390px;}
.ya{bottom:584.868840px;}
.y152{bottom:591.586440px;}
.y137{bottom:592.163190px;}
.y11f{bottom:595.319490px;}
.ya7{bottom:595.438140px;}
.y2f{bottom:600.151290px;}
.y84{bottom:600.774990px;}
.y50{bottom:601.881690px;}
.yf5{bottom:602.985090px;}
.y136{bottom:608.663190px;}
.y11e{bottom:613.319490px;}
.y17a{bottom:616.733940px;}
.y83{bottom:619.351740px;}
.y4f{bottom:620.966640px;}
.yf4{bottom:621.179790px;}
.y9{bottom:624.529740px;}
.ya6{bottom:630.589440px;}
.y11d{bottom:631.319490px;}
.y179{bottom:633.958290px;}
.y2e{bottom:635.267040px;}
.y82{bottom:637.928340px;}
.y4e{bottom:640.051440px;}
.y8{bottom:642.930990px;}
.y187{bottom:643.088340px;}
.y135{bottom:645.448140px;}
.ya5{bottom:648.732990px;}
.y11c{bottom:649.319490px;}
.y2d{bottom:653.375190px;}
.yf3{bottom:656.382390px;}
.y81{bottom:656.505090px;}
.y4d{bottom:659.136240px;}
.y178{bottom:659.686590px;}
.y186{bottom:660.264390px;}
.ya4{bottom:666.876390px;}
.y11b{bottom:667.319490px;}
.y2c{bottom:671.483190px;}
.yf2{bottom:674.576940px;}
.y80{bottom:675.081690px;}
.y177{bottom:676.910940px;}
.y185{bottom:677.440590px;}
.ye6{bottom:677.567340px;}
.y4c{bottom:678.221040px;}
.y7{bottom:684.392040px;}
.yd8{bottom:684.464940px;}
.ya3{bottom:685.019940px;}
.y11a{bottom:685.319490px;}
.y2b{bottom:689.591190px;}
.ydb{bottom:691.489440px;}
.yf1{bottom:692.771790px;}
.y7f{bottom:693.658440px;}
.y176{bottom:694.135140px;}
.y184{bottom:694.616640px;}
.ye5{bottom:696.812790px;}
.y4b{bottom:697.305990px;}
.y6{bottom:702.793290px;}
.ya2{bottom:703.163490px;}
.yd7{bottom:705.216840px;}
.y2a{bottom:707.699190px;}
.yf0{bottom:710.966490px;}
.y175{bottom:711.359490px;}
.y183{bottom:711.792840px;}
.y7e{bottom:712.235040px;}
.ye4{bottom:716.058090px;}
.y4a{bottom:716.390790px;}
.y119{bottom:720.327240px;}
.y5{bottom:721.194540px;}
.yd6{bottom:721.716840px;}
.y134{bottom:724.775640px;}
.y29{bottom:725.807340px;}
.y174{bottom:728.583690px;}
.y182{bottom:728.969040px;}
.y6d{bottom:730.100940px;}
.y7d{bottom:730.811790px;}
.ye3{bottom:735.303390px;}
.y49{bottom:735.475590px;}
.yd5{bottom:738.216840px;}
.ya1{bottom:738.314790px;}
.y118{bottom:738.327240px;}
.y133{bottom:742.775640px;}
.y28{bottom:743.915340px;}
.y173{bottom:745.808040px;}
.y6c{bottom:749.310690px;}
.y7c{bottom:749.388390px;}
.ye2{bottom:754.548840px;}
.y48{bottom:754.560390px;}
.y181{bottom:754.649040px;}
.yd4{bottom:754.716840px;}
.y117{bottom:756.327240px;}
.ya0{bottom:756.458340px;}
.y132{bottom:760.775640px;}
.y27{bottom:762.023340px;}
.y6b{bottom:768.520590px;}
.yd3{bottom:771.216840px;}
.y172{bottom:771.536340px;}
.y180{bottom:771.825240px;}
.ye1{bottom:773.794140px;}
.y116{bottom:774.327240px;}
.y9f{bottom:774.601890px;}
.y10e{bottom:776.000190px;}
.y7b{bottom:776.468940px;}
.y131{bottom:778.775640px;}
.y26{bottom:780.131340px;}
.yd2{bottom:787.716840px;}
.y6a{bottom:787.730340px;}
.y4{bottom:788.167290px;}
.y171{bottom:788.760540px;}
.y17f{bottom:789.001290px;}
.y47{bottom:790.653090px;}
.y115{bottom:792.327240px;}
.y10d{bottom:792.500190px;}
.y9e{bottom:792.745440px;}
.ye0{bottom:793.039590px;}
.y7a{bottom:795.045690px;}
.y130{bottom:796.775640px;}
.y25{bottom:798.239340px;}
.yd1{bottom:804.216840px;}
.y170{bottom:805.984890px;}
.y17e{bottom:806.177490px;}
.y69{bottom:806.940090px;}
.y46{bottom:808.987890px;}
.y10c{bottom:809.000190px;}
.y114{bottom:810.327240px;}
.y3{bottom:811.968540px;}
.ydf{bottom:812.284890px;}
.y79{bottom:813.622290px;}
.y12f{bottom:814.775640px;}
.y24{bottom:816.347490px;}
.yd0{bottom:820.716840px;}
.y16f{bottom:823.209090px;}
.y10b{bottom:825.500190px;}
.y68{bottom:826.149840px;}
.y45{bottom:827.322840px;}
.y9d{bottom:827.896740px;}
.y113{bottom:828.327240px;}
.yde{bottom:831.530340px;}
.y17d{bottom:831.857640px;}
.y78{bottom:832.199040px;}
.y12e{bottom:832.775640px;}
.y2{bottom:835.769790px;}
.y16e{bottom:840.433440px;}
.ycf{bottom:841.468890px;}
.y10a{bottom:842.000190px;}
.y44{bottom:845.657640px;}
.y9c{bottom:846.040290px;}
.y112{bottom:846.327240px;}
.y17c{bottom:849.033690px;}
.y109{bottom:858.500190px;}
.y67{bottom:862.367490px;}
.y43{bottom:863.992440px;}
.y9b{bottom:864.183840px;}
.y23{bottom:864.219240px;}
.y111{bottom:864.327240px;}
.y16d{bottom:866.161740px;}
.y17b{bottom:866.209890px;}
.yce{bottom:866.289390px;}
.y77{bottom:880.539390px;}
.y22{bottom:882.327240px;}
.ycd{bottom:882.789390px;}
.y16c{bottom:883.385940px;}
.y1d{bottom:925.309140px;}
.y21{bottom:926.434140px;}
.h7{height:33.648000px;}
.h14{height:37.638000px;}
.hf{height:37.854000px;}
.h15{height:38.502000px;}
.h12{height:40.446000px;}
.h6{height:40.824000px;}
.h9{height:41.760000px;}
.hb{height:42.060000px;}
.ha{height:42.360000px;}
.hd{height:42.780000px;}
.h5{height:44.940000px;}
.he{height:45.000000px;}
.h10{height:45.576000px;}
.h4{height:45.720000px;}
.h8{height:46.980000px;}
.h11{height:48.642000px;}
.hc{height:49.500000px;}
.h13{height:50.292000px;}
.h3{height:58.674000px;}
.h2{height:69.342000px;}
.h1{height:1020.473400px;}
.h0{height:1261.500000px;}
.w1{width:722.835450px;}
.w0{width:891.000000px;}
.x0{left:0.000000px;}
.x1{left:83.332770px;}
.x12{left:85.038480px;}
.x18{left:92.538630px;}
.x19{left:100.933080px;}
.x13{left:106.298430px;}
.x15{left:114.801480px;}
.x9{left:126.489480px;}
.xf{left:127.557480px;}
.xd{left:128.865480px;}
.x2{left:131.491980px;}
.x3{left:152.092980px;}
.x16{left:165.166980px;}
.x1a{left:176.343480px;}
.xb{left:222.550980px;}
.x4{left:234.577980px;}
.x14{left:236.109780px;}
.x10{left:244.579980px;}
.x6{left:259.632480px;}
.xa{left:276.316980px;}
.x5{left:280.744980px;}
.x1c{left:291.237480px;}
.xc{left:293.746980px;}
.x7{left:294.871980px;}
.x8{left:304.111980px;}
.xe{left:306.252480px;}
.x1b{left:312.656130px;}
.x17{left:344.544930px;}
.x1d{left:347.542530px;}
.x1f{left:369.920730px;}
.x1e{left:391.180530px;}
.x11{left:623.833980px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.866133pt;}
.ws9{word-spacing:-17.066667pt;}
.ws0{word-spacing:-14.826667pt;}
.ws3{word-spacing:-3.898667pt;}
.wsa{word-spacing:-0.058667pt;}
.ws2{word-spacing:-0.053333pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:148.285867pt;}
.ws6{word-spacing:160.285867pt;}
.ws4{word-spacing:166.861867pt;}
.ws5{word-spacing:172.285867pt;}
.ws8{word-spacing:179.932267pt;}
._2{margin-left:-5.146667pt;}
._1{margin-left:-3.514667pt;}
._12{margin-left:-2.505067pt;}
._3{margin-left:-1.610667pt;}
._7{width:0.933333pt;}
._0{width:1.845333pt;}
._6{width:2.864000pt;}
._8{width:3.754667pt;}
._e{width:4.906667pt;}
._f{width:6.412267pt;}
._10{width:7.303467pt;}
._16{width:8.345067pt;}
._b{width:9.429867pt;}
._c{width:10.801600pt;}
._11{width:11.858133pt;}
._5{width:12.826667pt;}
._4{width:13.797333pt;}
._9{width:15.717333pt;}
._32{width:17.158400pt;}
._19{width:18.370133pt;}
._18{width:19.530667pt;}
._17{width:20.901333pt;}
._1a{width:21.984000pt;}
._13{width:22.963200pt;}
._1c{width:23.874133pt;}
._1b{width:25.067200pt;}
._15{width:26.149333pt;}
._d{width:28.881067pt;}
._31{width:29.856000pt;}
._36{width:33.241600pt;}
._3a{width:35.752000pt;}
._35{width:37.620800pt;}
._33{width:39.273067pt;}
._39{width:41.909867pt;}
._34{width:59.338133pt;}
._37{width:69.660267pt;}
._38{width:72.443200pt;}
._2a{width:158.811733pt;}
._1f{width:162.075733pt;}
._29{width:168.480000pt;}
._1e{width:171.744000pt;}
._22{width:182.811733pt;}
._25{width:187.645867pt;}
._21{width:192.480000pt;}
._2e{width:200.125867pt;}
._30{width:203.914667pt;}
._2f{width:204.960000pt;}
._2b{width:213.378133pt;}
._26{width:240.652800pt;}
._14{width:257.424000pt;}
._24{width:258.498133pt;}
._2c{width:304.503467pt;}
._27{width:367.836800pt;}
._a{width:382.815467pt;}
._1d{width:441.285333pt;}
._28{width:491.196800pt;}
._23{width:539.676800pt;}
._20{width:542.556800pt;}
._2d{width:573.376000pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:75.575413pt;}
.y20{bottom:75.576480pt;}
.y1{bottom:106.456853pt;}
.y110{bottom:114.249280pt;}
.y151{bottom:114.797813pt;}
.y16b{bottom:116.132213pt;}
.y1f{bottom:116.191813pt;}
.y42{bottom:116.436880pt;}
.y76{bottom:116.437013pt;}
.y66{bottom:116.437280pt;}
.yca{bottom:116.901813pt;}
.y10f{bottom:128.915947pt;}
.y150{bottom:129.464480pt;}
.y16a{bottom:131.311680pt;}
.y41{bottom:132.532880pt;}
.yb8{bottom:132.564880pt;}
.y108{bottom:132.610080pt;}
.yc9{bottom:132.901813pt;}
.y9a{bottom:132.949947pt;}
.y65{bottom:133.401547pt;}
.y75{bottom:134.321813pt;}
.yef{bottom:142.341813pt;}
.y169{bottom:146.491147pt;}
.y40{bottom:148.629013pt;}
.yb7{bottom:148.692347pt;}
.y107{bottom:148.783147pt;}
.yc8{bottom:148.901813pt;}
.y99{bottom:149.462480pt;}
.y64{bottom:150.365813pt;}
.y14f{bottom:151.690213pt;}
.y74{bottom:152.206480pt;}
.yda{bottom:153.695147pt;}
.y1c{bottom:158.012080pt;}
.yee{bottom:159.924480pt;}
.y168{bottom:161.670613pt;}
.y3f{bottom:164.725013pt;}
.yb6{bottom:164.819947pt;}
.yc7{bottom:164.901813pt;}
.y106{bottom:164.956213pt;}
.y98{bottom:165.975013pt;}
.y14e{bottom:166.356880pt;}
.y73{bottom:170.091280pt;}
.ydd{bottom:174.274747pt;}
.y1b{bottom:174.368747pt;}
.yed{bottom:177.507013pt;}
.y3e{bottom:180.821013pt;}
.yc6{bottom:180.901813pt;}
.yb5{bottom:180.947547pt;}
.y14d{bottom:181.023547pt;}
.y105{bottom:181.129280pt;}
.y63{bottom:182.448213pt;}
.y97{bottom:182.487680pt;}
.y167{bottom:184.409013pt;}
.y72{bottom:187.976080pt;}
.ydc{bottom:188.941413pt;}
.y1a{bottom:190.725280pt;}
.yec{bottom:195.089680pt;}
.y14c{bottom:195.690213pt;}
.yc5{bottom:196.901813pt;}
.yb4{bottom:197.075147pt;}
.y104{bottom:197.302347pt;}
.y96{bottom:199.000347pt;}
.y62{bottom:199.412480pt;}
.y166{bottom:199.588480pt;}
.y71{bottom:205.860880pt;}
.y19{bottom:207.081947pt;}
.y12d{bottom:209.084613pt;}
.y14b{bottom:210.356880pt;}
.y3d{bottom:212.035147pt;}
.yeb{bottom:212.672213pt;}
.yc4{bottom:212.901813pt;}
.yb3{bottom:213.202613pt;}
.y165{bottom:214.767947pt;}
.y95{bottom:215.512880pt;}
.y61{bottom:216.376747pt;}
.y18{bottom:223.438613pt;}
.y70{bottom:223.745547pt;}
.y14a{bottom:225.023547pt;}
.y12c{bottom:225.084613pt;}
.y3c{bottom:228.131147pt;}
.y103{bottom:228.593547pt;}
.yc3{bottom:228.901813pt;}
.yb2{bottom:229.330213pt;}
.y164{bottom:229.947413pt;}
.yea{bottom:230.254880pt;}
.y94{bottom:232.025547pt;}
.y60{bottom:233.341147pt;}
.y17{bottom:239.795280pt;}
.y12b{bottom:241.084613pt;}
.y3b{bottom:244.227147pt;}
.y102{bottom:244.766613pt;}
.yc2{bottom:244.901813pt;}
.y163{bottom:245.126880pt;}
.yb1{bottom:245.457680pt;}
.y149{bottom:247.249280pt;}
.ye9{bottom:247.837413pt;}
.y93{bottom:248.538080pt;}
.y5f{bottom:250.305413pt;}
.y16{bottom:256.151813pt;}
.y12a{bottom:257.084613pt;}
.y3a{bottom:260.323280pt;}
.yc1{bottom:260.901813pt;}
.y101{bottom:260.939813pt;}
.yb0{bottom:261.585413pt;}
.y148{bottom:261.915947pt;}
.y92{bottom:265.050747pt;}
.y5e{bottom:267.269680pt;}
.y162{bottom:267.865413pt;}
.y15{bottom:272.508480pt;}
.y129{bottom:273.084613pt;}
.y39{bottom:276.419280pt;}
.y147{bottom:276.582613pt;}
.yc0{bottom:276.901813pt;}
.y100{bottom:277.112747pt;}
.y161{bottom:283.044880pt;}
.y6f{bottom:285.291013pt;}
.y14{bottom:288.865147pt;}
.y128{bottom:289.084613pt;}
.y91{bottom:289.122347pt;}
.y146{bottom:291.249280pt;}
.y38{bottom:292.515280pt;}
.ybf{bottom:292.901813pt;}
.yff{bottom:293.285813pt;}
.y160{bottom:298.224213pt;}
.y5d{bottom:299.352080pt;}
.y6e{bottom:299.957680pt;}
.yaf{bottom:304.169547pt;}
.y127{bottom:305.084613pt;}
.y13{bottom:305.221680pt;}
.y90{bottom:305.634880pt;}
.y145{bottom:305.915947pt;}
.y37{bottom:308.611413pt;}
.ybe{bottom:308.901813pt;}
.yfe{bottom:309.459013pt;}
.y15f{bottom:313.403680pt;}
.ye8{bottom:314.643947pt;}
.y5c{bottom:316.316347pt;}
.y144{bottom:320.582613pt;}
.y126{bottom:321.084613pt;}
.y12{bottom:321.578347pt;}
.y8f{bottom:322.147547pt;}
.y36{bottom:324.707413pt;}
.ybd{bottom:324.901813pt;}
.yfd{bottom:325.632080pt;}
.ye7{bottom:329.310613pt;}
.y5b{bottom:333.280613pt;}
.y15e{bottom:336.142213pt;}
.y35{bottom:340.803413pt;}
.ybc{bottom:340.901813pt;}
.yfc{bottom:341.805013pt;}
.y143{bottom:342.808347pt;}
.y5a{bottom:350.245013pt;}
.y15d{bottom:351.321680pt;}
.y125{bottom:352.202747pt;}
.y8e{bottom:353.778213pt;}
.yae{bottom:354.312880pt;}
.ybb{bottom:356.901813pt;}
.y142{bottom:357.475013pt;}
.yfb{bottom:357.978213pt;}
.yd9{bottom:362.841947pt;}
.y11{bottom:364.391680pt;}
.y15c{bottom:366.501147pt;}
.y59{bottom:367.209280pt;}
.y124{bottom:368.202747pt;}
.y8d{bottom:370.290880pt;}
.y34{bottom:372.017547pt;}
.y141{bottom:372.141680pt;}
.yba{bottom:372.901813pt;}
.yfa{bottom:374.151280pt;}
.y10{bottom:380.748213pt;}
.y15b{bottom:381.680480pt;}
.y58{bottom:384.173547pt;}
.y123{bottom:384.202747pt;}
.y8c{bottom:386.803413pt;}
.y140{bottom:386.808347pt;}
.y33{bottom:388.113547pt;}
.yb9{bottom:388.901813pt;}
.yf9{bottom:390.324347pt;}
.y15a{bottom:396.859947pt;}
.yf{bottom:397.104880pt;}
.y122{bottom:400.202747pt;}
.y57{bottom:401.137813pt;}
.y13f{bottom:401.475013pt;}
.y8b{bottom:403.315947pt;}
.y32{bottom:404.209680pt;}
.y159{bottom:412.039413pt;}
.y56{bottom:418.102213pt;}
.y8a{bottom:419.828613pt;}
.y13e{bottom:423.700613pt;}
.y158{bottom:427.218880pt;}
.yad{bottom:432.512880pt;}
.yf8{bottom:432.954080pt;}
.ye{bottom:433.959147pt;}
.y55{bottom:435.066480pt;}
.y13d{bottom:438.367280pt;}
.y157{bottom:442.398347pt;}
.y121{bottom:442.659413pt;}
.ycc{bottom:444.995947pt;}
.y31{bottom:446.762347pt;}
.yac{bottom:448.640480pt;}
.yd{bottom:450.315813pt;}
.y89{bottom:451.459280pt;}
.y54{bottom:452.030747pt;}
.y13c{bottom:453.033947pt;}
.ycb{bottom:459.662613pt;}
.yab{bottom:464.768080pt;}
.y156{bottom:465.136747pt;}
.yc{bottom:466.672480pt;}
.y13b{bottom:467.700613pt;}
.y88{bottom:467.971947pt;}
.y53{bottom:468.995013pt;}
.y155{bottom:480.316213pt;}
.yaa{bottom:480.895547pt;}
.y13a{bottom:482.367280pt;}
.y87{bottom:484.484480pt;}
.y154{bottom:495.495680pt;}
.ya9{bottom:497.023147pt;}
.y139{bottom:497.033947pt;}
.y86{bottom:500.997013pt;}
.y52{bottom:501.077413pt;}
.yb{bottom:503.526747pt;}
.yf7{bottom:503.640480pt;}
.y153{bottom:510.675147pt;}
.y138{bottom:511.700613pt;}
.ya8{bottom:513.150747pt;}
.y120{bottom:513.172880pt;}
.y30{bottom:517.371680pt;}
.y85{bottom:517.509680pt;}
.y51{bottom:518.041680pt;}
.yf6{bottom:519.813680pt;}
.ya{bottom:519.883413pt;}
.y152{bottom:525.854613pt;}
.y137{bottom:526.367280pt;}
.y11f{bottom:529.172880pt;}
.ya7{bottom:529.278347pt;}
.y2f{bottom:533.467813pt;}
.y84{bottom:534.022213pt;}
.y50{bottom:535.005947pt;}
.yf5{bottom:535.986747pt;}
.y136{bottom:541.033947pt;}
.y11e{bottom:545.172880pt;}
.y17a{bottom:548.207947pt;}
.y83{bottom:550.534880pt;}
.y4f{bottom:551.970347pt;}
.yf4{bottom:552.159813pt;}
.y9{bottom:555.137547pt;}
.ya6{bottom:560.523947pt;}
.y11d{bottom:561.172880pt;}
.y179{bottom:563.518480pt;}
.y2e{bottom:564.681813pt;}
.y82{bottom:567.047413pt;}
.y4e{bottom:568.934613pt;}
.y8{bottom:571.494213pt;}
.y187{bottom:571.634080pt;}
.y135{bottom:573.731680pt;}
.ya5{bottom:576.651547pt;}
.y11c{bottom:577.172880pt;}
.y2d{bottom:580.777947pt;}
.yf3{bottom:583.451013pt;}
.y81{bottom:583.560080pt;}
.y4d{bottom:585.898880pt;}
.y178{bottom:586.388080pt;}
.y186{bottom:586.901680pt;}
.ya4{bottom:592.779013pt;}
.y11b{bottom:593.172880pt;}
.y2c{bottom:596.873947pt;}
.yf2{bottom:599.623947pt;}
.y80{bottom:600.072613pt;}
.y177{bottom:601.698613pt;}
.y185{bottom:602.169413pt;}
.ye6{bottom:602.282080pt;}
.y4c{bottom:602.863147pt;}
.y7{bottom:608.348480pt;}
.yd8{bottom:608.413280pt;}
.ya3{bottom:608.906613pt;}
.y11a{bottom:609.172880pt;}
.y2b{bottom:612.969947pt;}
.ydb{bottom:614.657280pt;}
.yf1{bottom:615.797147pt;}
.y7f{bottom:616.585280pt;}
.y176{bottom:617.009013pt;}
.y184{bottom:617.437013pt;}
.ye5{bottom:619.389147pt;}
.y4b{bottom:619.827547pt;}
.y6{bottom:624.705147pt;}
.ya2{bottom:625.034213pt;}
.yd7{bottom:626.859413pt;}
.y2a{bottom:629.065947pt;}
.yf0{bottom:631.970213pt;}
.y175{bottom:632.319547pt;}
.y183{bottom:632.704747pt;}
.y7e{bottom:633.097813pt;}
.ye4{bottom:636.496080pt;}
.y4a{bottom:636.791813pt;}
.y119{bottom:640.290880pt;}
.y5{bottom:641.061813pt;}
.yd6{bottom:641.526080pt;}
.y134{bottom:644.245013pt;}
.y29{bottom:645.162080pt;}
.y174{bottom:647.629947pt;}
.y182{bottom:647.972480pt;}
.y6d{bottom:648.978613pt;}
.y7d{bottom:649.610480pt;}
.ye3{bottom:653.603013pt;}
.y49{bottom:653.756080pt;}
.yd5{bottom:656.192747pt;}
.ya1{bottom:656.279813pt;}
.y118{bottom:656.290880pt;}
.y133{bottom:660.245013pt;}
.y28{bottom:661.258080pt;}
.y173{bottom:662.940480pt;}
.y6c{bottom:666.053947pt;}
.y7c{bottom:666.123013pt;}
.ye2{bottom:670.710080pt;}
.y48{bottom:670.720347pt;}
.y181{bottom:670.799147pt;}
.yd4{bottom:670.859413pt;}
.y117{bottom:672.290880pt;}
.ya0{bottom:672.407413pt;}
.y132{bottom:676.245013pt;}
.y27{bottom:677.354080pt;}
.y6b{bottom:683.129413pt;}
.yd3{bottom:685.526080pt;}
.y172{bottom:685.810080pt;}
.y180{bottom:686.066880pt;}
.ye1{bottom:687.817013pt;}
.y116{bottom:688.290880pt;}
.y9f{bottom:688.535013pt;}
.y10e{bottom:689.777947pt;}
.y7b{bottom:690.194613pt;}
.y131{bottom:692.245013pt;}
.y26{bottom:693.450080pt;}
.yd2{bottom:700.192747pt;}
.y6a{bottom:700.204747pt;}
.y4{bottom:700.593147pt;}
.y171{bottom:701.120480pt;}
.y17f{bottom:701.334480pt;}
.y47{bottom:702.802747pt;}
.y115{bottom:704.290880pt;}
.y10d{bottom:704.444613pt;}
.y9e{bottom:704.662613pt;}
.ye0{bottom:704.924080pt;}
.y7a{bottom:706.707280pt;}
.y130{bottom:708.245013pt;}
.y25{bottom:709.546080pt;}
.yd1{bottom:714.859413pt;}
.y170{bottom:716.431013pt;}
.y17e{bottom:716.602213pt;}
.y69{bottom:717.280080pt;}
.y46{bottom:719.100347pt;}
.y10c{bottom:719.111280pt;}
.y114{bottom:720.290880pt;}
.y3{bottom:721.749813pt;}
.ydf{bottom:722.031013pt;}
.y79{bottom:723.219813pt;}
.y12f{bottom:724.245013pt;}
.y24{bottom:725.642213pt;}
.yd0{bottom:729.526080pt;}
.y16f{bottom:731.741413pt;}
.y10b{bottom:733.777947pt;}
.y68{bottom:734.355413pt;}
.y45{bottom:735.398080pt;}
.y9d{bottom:735.908213pt;}
.y113{bottom:736.290880pt;}
.yde{bottom:739.138080pt;}
.y17d{bottom:739.429013pt;}
.y78{bottom:739.732480pt;}
.y12e{bottom:740.245013pt;}
.y2{bottom:742.906480pt;}
.y16e{bottom:747.051947pt;}
.ycf{bottom:747.972347pt;}
.y10a{bottom:748.444613pt;}
.y44{bottom:751.695680pt;}
.y9c{bottom:752.035813pt;}
.y112{bottom:752.290880pt;}
.y17c{bottom:754.696613pt;}
.y109{bottom:763.111280pt;}
.y67{bottom:766.548880pt;}
.y43{bottom:767.993280pt;}
.y9b{bottom:768.163413pt;}
.y23{bottom:768.194880pt;}
.y111{bottom:768.290880pt;}
.y16d{bottom:769.921547pt;}
.y17b{bottom:769.964347pt;}
.yce{bottom:770.035013pt;}
.y77{bottom:782.701680pt;}
.y22{bottom:784.290880pt;}
.ycd{bottom:784.701680pt;}
.y16c{bottom:785.231947pt;}
.y1d{bottom:822.497013pt;}
.y21{bottom:823.497013pt;}
.h7{height:29.909333pt;}
.h14{height:33.456000pt;}
.hf{height:33.648000pt;}
.h15{height:34.224000pt;}
.h12{height:35.952000pt;}
.h6{height:36.288000pt;}
.h9{height:37.120000pt;}
.hb{height:37.386667pt;}
.ha{height:37.653333pt;}
.hd{height:38.026667pt;}
.h5{height:39.946667pt;}
.he{height:40.000000pt;}
.h10{height:40.512000pt;}
.h4{height:40.640000pt;}
.h8{height:41.760000pt;}
.h11{height:43.237333pt;}
.hc{height:44.000000pt;}
.h13{height:44.704000pt;}
.h3{height:52.154667pt;}
.h2{height:61.637333pt;}
.h1{height:907.087467pt;}
.h0{height:1121.333333pt;}
.w1{width:642.520400pt;}
.w0{width:792.000000pt;}
.x0{left:0.000000pt;}
.x1{left:74.073573pt;}
.x12{left:75.589760pt;}
.x18{left:82.256560pt;}
.x19{left:89.718293pt;}
.x13{left:94.487493pt;}
.x15{left:102.045760pt;}
.x9{left:112.435093pt;}
.xf{left:113.384427pt;}
.xd{left:114.547093pt;}
.x2{left:116.881760pt;}
.x3{left:135.193760pt;}
.x16{left:146.815093pt;}
.x1a{left:156.749760pt;}
.xb{left:197.823093pt;}
.x4{left:208.513760pt;}
.x14{left:209.875360pt;}
.x10{left:217.404427pt;}
.x6{left:230.784427pt;}
.xa{left:245.615093pt;}
.x5{left:249.551093pt;}
.x1c{left:258.877760pt;}
.xc{left:261.108427pt;}
.x7{left:262.108427pt;}
.x8{left:270.321760pt;}
.xe{left:272.224427pt;}
.x1b{left:277.916560pt;}
.x17{left:306.262160pt;}
.x1d{left:308.926693pt;}
.x1f{left:328.818427pt;}
.x1e{left:347.716027pt;}
.x11{left:554.519093pt;}
}




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