
    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_a2b7c5ce03ab30c2fd979d08.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.144000;font-style:normal;font-weight: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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight: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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight: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_58b2d1c8fdf100c94d19e1a7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.066000;font-style:normal;font-weight: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_fc2beec734e3b1a73adec897.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.117000;font-style:normal;font-weight: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_a917f4747e95f8fd76734dfb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.986000;font-style:normal;font-weight: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_63f0faecc013392c4de7910d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.066000;font-style:normal;font-weight: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_9cf47398d50b60e54c3f5c4f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.117000;font-style:normal;font-weight: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_82aa564e50b9b54c099d11ac.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.117000;font-style:normal;font-weight: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_58b2d1c8fdf100c94d19e1a7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.066000;font-style:normal;font-weight: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_d596a61bbdb4f9ef83982c06.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.117000;font-style:normal;font-weight: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_a917f4747e95f8fd76734dfb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.986000;font-style:normal;font-weight: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_63f0faecc013392c4de7910d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.066000;font-style:normal;font-weight: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_9cf47398d50b60e54c3f5c4f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.117000;font-style:normal;font-weight: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_46674eccf5137d13a17d1b1a.woff2')format("woff");}.fff{font-family:fff;line-height:1.117000;font-style:normal;font-weight: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_a917f4747e95f8fd76734dfb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.986000;font-style:normal;font-weight: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_58b2d1c8fdf100c94d19e1a7.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.066000;font-style:normal;font-weight: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_655795d4eb36003bedcabc60.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.117000;font-style:normal;font-weight: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_63f0faecc013392c4de7910d.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.066000;font-style:normal;font-weight: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_9cf47398d50b60e54c3f5c4f.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.117000;font-style:normal;font-weight: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_d37fe28c4bb6ffac2fa39ce0.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.117000;font-style:normal;font-weight: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_a917f4747e95f8fd76734dfb.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.986000;font-style:normal;font-weight: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_58b2d1c8fdf100c94d19e1a7.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.066000;font-style:normal;font-weight: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_9c136d39f1ca2a404a631705.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.117000;font-style:normal;font-weight: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_48dee688597648eb4d47c47d.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.986000;font-style:normal;font-weight: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_63f0faecc013392c4de7910d.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.066000;font-style:normal;font-weight: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_9cf47398d50b60e54c3f5c4f.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.117000;font-style:normal;font-weight: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_de0479835e3437d6aef49ee9.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.117000;font-style:normal;font-weight: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_58b2d1c8fdf100c94d19e1a7.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.066000;font-style:normal;font-weight: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_280067c98b4c0de662a20b70.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.117000;font-style:normal;font-weight: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_63f0faecc013392c4de7910d.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.066000;font-style:normal;font-weight: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_9cf47398d50b60e54c3f5c4f.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.117000;font-style:normal;font-weight: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_b6041d20597edb8e5a88d74a.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.117000;font-style:normal;font-weight: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_58b2d1c8fdf100c94d19e1a7.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.066000;font-style:normal;font-weight: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_fc2beec734e3b1a73adec897.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.117000;font-style:normal;font-weight: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_1a26b50c9c621256a3d592e7.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.169000;font-style:normal;font-weight: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_8a3c89b0b28f968d551f5bad.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.986000;font-style:normal;font-weight: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_63f0faecc013392c4de7910d.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.066000;font-style:normal;font-weight: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_9cf47398d50b60e54c3f5c4f.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.117000;font-style:normal;font-weight: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_1a26b50c9c621256a3d592e7.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.169000;font-style:normal;font-weight: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_46674eccf5137d13a17d1b1a.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.117000;font-style:normal;font-weight: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_8a3c89b0b28f968d551f5bad.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.986000;font-style:normal;font-weight: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_58b2d1c8fdf100c94d19e1a7.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.066000;font-style:normal;font-weight: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_247d79280a948f839a040f4a.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.117000;font-style:normal;font-weight: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_1a26b50c9c621256a3d592e7.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.169000;font-style:normal;font-weight: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_e4f76d034b41abd798002fe7.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.986000;font-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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws1{word-spacing:-20.436000px;}
.wsa1{word-spacing:-15.960000px;}
.ws2{word-spacing:-12.576000px;}
.ws3{word-spacing:-10.260000px;}
.wsd9{word-spacing:-9.120000px;}
.wsd5{word-spacing:-8.880000px;}
.wsd0{word-spacing:-2.592000px;}
.wsc4{word-spacing:-2.322000px;}
.wsb{word-spacing:-1.836000px;}
.ws59{word-spacing:-1.728000px;}
.ws19{word-spacing:-1.404000px;}
.ws5d{word-spacing:-1.080000px;}
.wsc0{word-spacing:-1.026000px;}
.ws37{word-spacing:-0.918000px;}
.wsa8{word-spacing:-0.864000px;}
.ws9b{word-spacing:-0.810000px;}
.ws1d{word-spacing:-0.702000px;}
.ws2f{word-spacing:-0.594000px;}
.ws8a{word-spacing:-0.540000px;}
.ws9c{word-spacing:-0.432000px;}
.wscf{word-spacing:-0.378000px;}
.ws3b{word-spacing:-0.324000px;}
.ws29{word-spacing:-0.270000px;}
.ws2a{word-spacing:-0.216000px;}
.wsd3{word-spacing:-0.162000px;}
.wsc8{word-spacing:-0.054000px;}
.wsda{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.wsa7{word-spacing:0.108000px;}
.ws1f{word-spacing:0.162000px;}
.wsaa{word-spacing:0.270000px;}
.ws9a{word-spacing:0.324000px;}
.ws9{word-spacing:0.432000px;}
.wsaf{word-spacing:0.486000px;}
.ws98{word-spacing:0.594000px;}
.ws3f{word-spacing:0.702000px;}
.ws95{word-spacing:0.810000px;}
.ws57{word-spacing:0.864000px;}
.ws2d{word-spacing:0.972000px;}
.ws94{word-spacing:1.026000px;}
.ws28{word-spacing:1.080000px;}
.wsb7{word-spacing:1.134000px;}
.ws38{word-spacing:1.188000px;}
.ws49{word-spacing:1.296000px;}
.ws10{word-spacing:1.404000px;}
.ws83{word-spacing:1.458000px;}
.ws91{word-spacing:1.512000px;}
.wsce{word-spacing:1.566000px;}
.wsbe{word-spacing:1.620000px;}
.ws18{word-spacing:1.674000px;}
.wsa9{word-spacing:1.728000px;}
.ws8f{word-spacing:1.782000px;}
.ws73{word-spacing:1.890000px;}
.wsc{word-spacing:1.944000px;}
.wsa2{word-spacing:1.998000px;}
.ws5b{word-spacing:2.052000px;}
.ws74{word-spacing:2.106000px;}
.ws92{word-spacing:2.160000px;}
.wsd{word-spacing:2.268000px;}
.wsbd{word-spacing:2.322000px;}
.ws8{word-spacing:2.376000px;}
.ws4e{word-spacing:2.538000px;}
.ws54{word-spacing:2.592000px;}
.ws6d{word-spacing:2.700000px;}
.wsd2{word-spacing:2.754000px;}
.wsab{word-spacing:2.808000px;}
.ws96{word-spacing:2.862000px;}
.ws6a{word-spacing:3.024000px;}
.ws21{word-spacing:3.078000px;}
.ws4a{word-spacing:3.132000px;}
.ws69{word-spacing:3.186000px;}
.wsc5{word-spacing:3.240000px;}
.ws42{word-spacing:3.402000px;}
.wscd{word-spacing:3.456000px;}
.wsb8{word-spacing:3.510000px;}
.wsc3{word-spacing:3.618000px;}
.ws30{word-spacing:3.726000px;}
.wsc9{word-spacing:3.780000px;}
.ws61{word-spacing:3.834000px;}
.ws45{word-spacing:3.942000px;}
.wsa{word-spacing:3.996000px;}
.ws82{word-spacing:4.050000px;}
.ws7c{word-spacing:4.104000px;}
.wsb0{word-spacing:4.266000px;}
.wsa0{word-spacing:4.320000px;}
.ws6{word-spacing:4.590000px;}
.ws89{word-spacing:4.644000px;}
.ws16{word-spacing:4.752000px;}
.ws7{word-spacing:4.806000px;}
.wsa3{word-spacing:4.914000px;}
.ws26{word-spacing:4.968000px;}
.ws4c{word-spacing:5.022000px;}
.wsca{word-spacing:5.076000px;}
.ws11{word-spacing:5.130000px;}
.wscc{word-spacing:5.184000px;}
.ws27{word-spacing:5.238000px;}
.wsf{word-spacing:5.346000px;}
.ws44{word-spacing:5.400000px;}
.wsc2{word-spacing:5.454000px;}
.wsa5{word-spacing:5.508000px;}
.wsad{word-spacing:5.616000px;}
.ws41{word-spacing:5.670000px;}
.ws5a{word-spacing:5.778000px;}
.ws5f{word-spacing:5.940000px;}
.ws3e{word-spacing:5.994000px;}
.ws66{word-spacing:6.102000px;}
.ws87{word-spacing:6.156000px;}
.wse{word-spacing:6.210000px;}
.ws55{word-spacing:6.264000px;}
.ws48{word-spacing:6.372000px;}
.ws2b{word-spacing:6.426000px;}
.ws56{word-spacing:6.480000px;}
.wscb{word-spacing:6.588000px;}
.ws76{word-spacing:6.858000px;}
.ws58{word-spacing:6.912000px;}
.ws6f{word-spacing:6.966000px;}
.ws75{word-spacing:7.020000px;}
.ws17{word-spacing:7.128000px;}
.ws5e{word-spacing:7.236000px;}
.ws39{word-spacing:7.344000px;}
.ws2e{word-spacing:7.506000px;}
.ws8d{word-spacing:7.668000px;}
.ws70{word-spacing:7.776000px;}
.ws9e{word-spacing:7.884000px;}
.ws5c{word-spacing:7.938000px;}
.ws1b{word-spacing:7.992000px;}
.ws67{word-spacing:8.154000px;}
.ws15{word-spacing:8.262000px;}
.ws4{word-spacing:8.478000px;}
.ws68{word-spacing:8.532000px;}
.wsb6{word-spacing:8.586000px;}
.ws4d{word-spacing:8.640000px;}
.ws20{word-spacing:8.694000px;}
.ws46{word-spacing:8.748000px;}
.wsae{word-spacing:8.856000px;}
.wsc7{word-spacing:8.910000px;}
.ws5{word-spacing:8.964000px;}
.ws9f{word-spacing:9.072000px;}
.ws7f{word-spacing:9.126000px;}
.wsba{word-spacing:9.180000px;}
.ws52{word-spacing:9.234000px;}
.wsd4{word-spacing:9.342000px;}
.ws3a{word-spacing:9.396000px;}
.ws90{word-spacing:9.612000px;}
.wsa6{word-spacing:9.666000px;}
.wsb3{word-spacing:9.720000px;}
.wsc6{word-spacing:9.936000px;}
.wsd8{word-spacing:10.152000px;}
.ws51{word-spacing:10.206000px;}
.ws3c{word-spacing:10.314000px;}
.ws7e{word-spacing:10.368000px;}
.ws31{word-spacing:10.476000px;}
.ws43{word-spacing:10.584000px;}
.ws88{word-spacing:10.638000px;}
.wsc1{word-spacing:10.746000px;}
.ws86{word-spacing:11.124000px;}
.ws3d{word-spacing:11.178000px;}
.ws36{word-spacing:11.232000px;}
.ws78{word-spacing:11.286000px;}
.ws93{word-spacing:11.502000px;}
.ws25{word-spacing:11.664000px;}
.wsbc{word-spacing:11.772000px;}
.ws4b{word-spacing:11.826000px;}
.wsb9{word-spacing:11.934000px;}
.wsd1{word-spacing:11.988000px;}
.ws7d{word-spacing:12.312000px;}
.wsa4{word-spacing:12.366000px;}
.ws84{word-spacing:12.420000px;}
.ws60{word-spacing:12.582000px;}
.ws64{word-spacing:12.852000px;}
.ws71{word-spacing:12.906000px;}
.ws1e{word-spacing:13.176000px;}
.ws47{word-spacing:13.284000px;}
.ws1a{word-spacing:13.392000px;}
.wsbb{word-spacing:13.716000px;}
.wsb4{word-spacing:14.040000px;}
.ws97{word-spacing:14.148000px;}
.ws23{word-spacing:14.418000px;}
.ws9d{word-spacing:14.634000px;}
.ws7a{word-spacing:14.688000px;}
.ws99{word-spacing:14.958000px;}
.ws22{word-spacing:15.174000px;}
.ws79{word-spacing:15.282000px;}
.wsb1{word-spacing:15.498000px;}
.ws12{word-spacing:15.552000px;}
.wsb5{word-spacing:15.768000px;}
.ws50{word-spacing:15.984000px;}
.wsbf{word-spacing:16.362000px;}
.ws63{word-spacing:16.416000px;}
.ws72{word-spacing:16.794000px;}
.wsb2{word-spacing:16.848000px;}
.ws65{word-spacing:16.956000px;}
.wsac{word-spacing:17.226000px;}
.wsd7{word-spacing:17.496000px;}
.ws6c{word-spacing:17.766000px;}
.wsd6{word-spacing:18.414000px;}
.ws53{word-spacing:18.468000px;}
.ws40{word-spacing:18.630000px;}
.ws4f{word-spacing:18.846000px;}
.ws34{word-spacing:19.332000px;}
.ws33{word-spacing:19.386000px;}
.ws14{word-spacing:19.926000px;}
.ws62{word-spacing:20.142000px;}
.ws85{word-spacing:20.250000px;}
.ws77{word-spacing:20.358000px;}
.ws8c{word-spacing:20.790000px;}
.ws81{word-spacing:22.410000px;}
.ws32{word-spacing:23.166000px;}
.ws8e{word-spacing:23.382000px;}
.ws7b{word-spacing:24.354000px;}
.ws2c{word-spacing:25.110000px;}
.ws6b{word-spacing:25.218000px;}
.ws6e{word-spacing:26.460000px;}
.ws35{word-spacing:26.568000px;}
.ws13{word-spacing:27.540000px;}
.ws1c{word-spacing:28.404000px;}
.ws24{word-spacing:29.484000px;}
.ws8b{word-spacing:36.558000px;}
.ws80{word-spacing:44.226000px;}
._9{margin-left:-18.272400px;}
._5{margin-left:-10.332000px;}
._e{margin-left:-9.214200px;}
._7{margin-left:-7.724400px;}
._6{margin-left:-5.640000px;}
._1{margin-left:-4.162200px;}
._4{margin-left:-3.032400px;}
._2{margin-left:-1.940400px;}
._3{width:1.726200px;}
._8{width:2.743800px;}
._f{width:3.747600px;}
._d{width:5.343600px;}
._a{width:6.717600px;}
._b{width:8.321400px;}
._c{width:11.778600px;}
._0{width:60.312000px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs9{font-size:84.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y23{bottom:33.859800px;}
.y5{bottom:66.525004px;}
.y26{bottom:80.946750px;}
.ycc{bottom:81.078750px;}
.y13e{bottom:81.111750px;}
.y11f{bottom:81.152250px;}
.y18f{bottom:83.438400px;}
.y15c{bottom:86.976750px;}
.y25{bottom:94.449750px;}
.y4{bottom:97.125005px;}
.y18e{bottom:98.438400px;}
.yab{bottom:100.524750px;}
.y63{bottom:100.529250px;}
.ydb{bottom:100.536750px;}
.ycb{bottom:100.572750px;}
.yf9{bottom:100.599750px;}
.y13d{bottom:100.605750px;}
.y89{bottom:100.644900px;}
.y11e{bottom:100.646250px;}
.yb4{bottom:100.658400px;}
.y15b{bottom:101.976750px;}
.y24{bottom:107.952750px;}
.y15a{bottom:116.976750px;}
.y18d{bottom:117.686400px;}
.yaa{bottom:120.018750px;}
.y62{bottom:120.023250px;}
.yda{bottom:120.030750px;}
.yca{bottom:120.066750px;}
.yf8{bottom:120.093750px;}
.y88{bottom:120.138900px;}
.y11d{bottom:120.140250px;}
.yb3{bottom:120.152400px;}
.y18c{bottom:132.686400px;}
.y159{bottom:136.224750px;}
.y22{bottom:139.264499px;}
.ya9{bottom:139.512750px;}
.y61{bottom:139.517250px;}
.yd9{bottom:139.524750px;}
.yc9{bottom:139.560750px;}
.yf7{bottom:139.587750px;}
.y13c{bottom:139.607250px;}
.y11c{bottom:139.634250px;}
.yb2{bottom:139.646400px;}
.y158{bottom:151.224750px;}
.y18b{bottom:151.934400px;}
.ya8{bottom:159.006750px;}
.y60{bottom:159.011250px;}
.yd8{bottom:159.018750px;}
.yc8{bottom:159.054750px;}
.yf6{bottom:159.081750px;}
.y13b{bottom:159.101250px;}
.y11b{bottom:159.128250px;}
.y87{bottom:159.140400px;}
.y157{bottom:166.224750px;}
.y18a{bottom:166.934400px;}
.ya7{bottom:178.500750px;}
.y5f{bottom:178.505250px;}
.yd7{bottom:178.512750px;}
.yc7{bottom:178.548750px;}
.y13a{bottom:178.595250px;}
.y11a{bottom:178.622250px;}
.y86{bottom:178.634400px;}
.y189{bottom:181.934400px;}
.y156{bottom:185.472750px;}
.y19{bottom:196.933500px;}
.ya6{bottom:197.994750px;}
.yd6{bottom:198.006750px;}
.yc6{bottom:198.042750px;}
.yf5{bottom:198.083250px;}
.y139{bottom:198.089250px;}
.y119{bottom:198.116250px;}
.y85{bottom:198.128400px;}
.y155{bottom:200.472750px;}
.y188{bottom:201.182400px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y187{bottom:216.182400px;}
.ya5{bottom:217.488750px;}
.yd5{bottom:217.500750px;}
.y5e{bottom:217.506750px;}
.yc5{bottom:217.536750px;}
.yf4{bottom:217.577250px;}
.y138{bottom:217.583250px;}
.y118{bottom:217.610250px;}
.y84{bottom:217.622400px;}
.y154{bottom:219.720750px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y186{bottom:231.182400px;}
.y1f{bottom:234.718504px;}
.y153{bottom:234.720750px;}
.y16{bottom:234.733496px;}
.y3e{bottom:236.952750px;}
.ya4{bottom:236.982750px;}
.yd4{bottom:236.994750px;}
.y5d{bottom:237.000750px;}
.yc4{bottom:237.030750px;}
.yf3{bottom:237.071250px;}
.y137{bottom:237.077250px;}
.y83{bottom:237.116400px;}
.y152{bottom:249.720750px;}
.y185{bottom:250.430400px;}
.y3d{bottom:256.452750px;}
.ya3{bottom:256.476750px;}
.yd3{bottom:256.488750px;}
.y5c{bottom:256.494750px;}
.yc3{bottom:256.524750px;}
.yf2{bottom:256.565250px;}
.y136{bottom:256.571250px;}
.y82{bottom:256.610400px;}
.y117{bottom:256.611750px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y184{bottom:265.430400px;}
.y151{bottom:268.968750px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.ya2{bottom:275.970750px;}
.yd2{bottom:275.982750px;}
.y5b{bottom:275.988750px;}
.yc2{bottom:276.018750px;}
.yf1{bottom:276.059250px;}
.y135{bottom:276.065250px;}
.y81{bottom:276.104400px;}
.y116{bottom:276.105750px;}
.y183{bottom:280.430400px;}
.y150{bottom:283.968750px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y3c{bottom:295.452750px;}
.ya1{bottom:295.464750px;}
.yd1{bottom:295.476750px;}
.y5a{bottom:295.482750px;}
.yc1{bottom:295.512750px;}
.yf0{bottom:295.553250px;}
.y134{bottom:295.559250px;}
.y80{bottom:295.598400px;}
.y115{bottom:295.599750px;}
.y182{bottom:299.678400px;}
.y14f{bottom:303.216750px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y181{bottom:314.678400px;}
.y3b{bottom:314.952750px;}
.ya0{bottom:314.958750px;}
.yd0{bottom:314.970750px;}
.y59{bottom:314.976750px;}
.yc0{bottom:315.006750px;}
.yef{bottom:315.047250px;}
.y133{bottom:315.053250px;}
.y7f{bottom:315.092400px;}
.y114{bottom:315.093750px;}
.y14e{bottom:318.216750px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y180{bottom:329.678400px;}
.y14d{bottom:333.216750px;}
.y9f{bottom:334.452750px;}
.ycf{bottom:334.464750px;}
.y58{bottom:334.470750px;}
.ybf{bottom:334.500750px;}
.yee{bottom:334.541250px;}
.y132{bottom:334.547250px;}
.yb1{bottom:334.586400px;}
.y113{bottom:334.587750px;}
.y17f{bottom:344.678400px;}
.y10{bottom:348.133500px;}
.y14c{bottom:352.464750px;}
.yce{bottom:353.958750px;}
.y57{bottom:353.964750px;}
.ybe{bottom:353.994750px;}
.y3a{bottom:354.030750px;}
.yed{bottom:354.035250px;}
.y131{bottom:354.041250px;}
.y112{bottom:354.081750px;}
.y7e{bottom:354.093900px;}
.y17e{bottom:363.926400px;}
.y14b{bottom:371.712750px;}
.y9e{bottom:373.452750px;}
.y56{bottom:373.458750px;}
.ybd{bottom:373.488750px;}
.y39{bottom:373.524750px;}
.yec{bottom:373.529250px;}
.y130{bottom:373.535250px;}
.y111{bottom:373.575750px;}
.y7d{bottom:373.587900px;}
.y17d{bottom:378.926400px;}
.y14a{bottom:386.712750px;}
.yf{bottom:386.785499px;}
.y55{bottom:392.952750px;}
.ybc{bottom:392.982750px;}
.y38{bottom:393.018750px;}
.yeb{bottom:393.023250px;}
.y12f{bottom:393.029250px;}
.y110{bottom:393.069750px;}
.y7c{bottom:393.081900px;}
.y17c{bottom:398.174400px;}
.y149{bottom:401.712750px;}
.ye{bottom:408.044999px;}
.ybb{bottom:412.476750px;}
.y37{bottom:412.512750px;}
.yea{bottom:412.517250px;}
.y10f{bottom:412.563750px;}
.y7b{bottom:412.575900px;}
.y17b{bottom:413.174400px;}
.ycd{bottom:413.952750px;}
.y148{bottom:420.960750px;}
.y17a{bottom:428.174400px;}
.y54{bottom:431.952750px;}
.yba{bottom:431.970750px;}
.y36{bottom:432.006750px;}
.ye9{bottom:432.011250px;}
.y12e{bottom:432.030750px;}
.y10e{bottom:432.057750px;}
.y7a{bottom:432.069900px;}
.y9d{bottom:432.083400px;}
.y147{bottom:435.960750px;}
.y179{bottom:447.422400px;}
.y146{bottom:450.960750px;}
.yb9{bottom:451.464750px;}
.y35{bottom:451.500750px;}
.ye8{bottom:451.505250px;}
.y12d{bottom:451.524750px;}
.y10d{bottom:451.551750px;}
.y79{bottom:451.563900px;}
.y9c{bottom:451.577400px;}
.y178{bottom:462.422400px;}
.y145{bottom:470.208750px;}
.yb8{bottom:470.958750px;}
.y34{bottom:470.994750px;}
.y12c{bottom:471.018750px;}
.y10c{bottom:471.045750px;}
.y78{bottom:471.057900px;}
.y9b{bottom:471.071400px;}
.y177{bottom:477.422400px;}
.yd{bottom:484.864502px;}
.y144{bottom:485.208750px;}
.yb7{bottom:490.452750px;}
.y33{bottom:490.488750px;}
.ye7{bottom:490.506750px;}
.y12b{bottom:490.512750px;}
.y10b{bottom:490.539750px;}
.y77{bottom:490.551900px;}
.y53{bottom:490.565250px;}
.y9a{bottom:490.565400px;}
.y176{bottom:492.422400px;}
.yc{bottom:502.864502px;}
.y143{bottom:504.456750px;}
.y32{bottom:509.982750px;}
.ye6{bottom:510.000750px;}
.y12a{bottom:510.006750px;}
.y76{bottom:510.045900px;}
.y52{bottom:510.059250px;}
.y99{bottom:510.059400px;}
.y175{bottom:511.670400px;}
.y142{bottom:519.456750px;}
.yb{bottom:520.864502px;}
.yb6{bottom:521.946750px;}
.y174{bottom:526.670400px;}
.y31{bottom:529.476750px;}
.ye5{bottom:529.494750px;}
.y129{bottom:529.500750px;}
.y75{bottom:529.539900px;}
.y10a{bottom:529.541250px;}
.y51{bottom:529.553250px;}
.y98{bottom:529.553400px;}
.y141{bottom:538.704750px;}
.ya{bottom:538.864499px;}
.y173{bottom:541.670400px;}
.yb5{bottom:548.952750px;}
.y30{bottom:548.970750px;}
.ye4{bottom:548.988750px;}
.y128{bottom:548.994750px;}
.yb0{bottom:549.033900px;}
.y109{bottom:549.035250px;}
.y50{bottom:549.047250px;}
.y97{bottom:549.047400px;}
.y140{bottom:553.704750px;}
.y172{bottom:556.670400px;}
.y9{bottom:556.864499px;}
.y2f{bottom:568.464750px;}
.ye3{bottom:568.482750px;}
.y127{bottom:568.488750px;}
.yaf{bottom:568.527900px;}
.y108{bottom:568.529250px;}
.y4f{bottom:568.541250px;}
.y74{bottom:568.541400px;}
.y171{bottom:575.918400px;}
.y13f{bottom:587.952750px;}
.y2e{bottom:587.958750px;}
.ye2{bottom:587.976750px;}
.y126{bottom:587.982750px;}
.yae{bottom:588.021900px;}
.y107{bottom:588.023250px;}
.y4e{bottom:588.035250px;}
.y73{bottom:588.035400px;}
.y170{bottom:595.166400px;}
.y2d{bottom:607.452750px;}
.ye1{bottom:607.470750px;}
.y125{bottom:607.476750px;}
.yad{bottom:607.515900px;}
.y106{bottom:607.517250px;}
.y4d{bottom:607.529250px;}
.y72{bottom:607.529400px;}
.y96{bottom:607.542900px;}
.y16f{bottom:610.166400px;}
.y2c{bottom:626.952750px;}
.ye0{bottom:626.964750px;}
.y124{bottom:626.970750px;}
.yac{bottom:627.009900px;}
.y4c{bottom:627.023250px;}
.y71{bottom:627.023400px;}
.y95{bottom:627.036900px;}
.y16e{bottom:629.414400px;}
.y16d{bottom:644.414400px;}
.y8{bottom:645.510000px;}
.ydf{bottom:646.458750px;}
.y123{bottom:646.464750px;}
.y4b{bottom:646.517250px;}
.y70{bottom:646.517400px;}
.y105{bottom:646.518750px;}
.y94{bottom:646.530900px;}
.y198{bottom:648.662400px;}
.y16c{bottom:663.662400px;}
.yde{bottom:665.952750px;}
.y122{bottom:665.958750px;}
.y4a{bottom:666.011250px;}
.y6f{bottom:666.011400px;}
.y104{bottom:666.012750px;}
.y93{bottom:666.024900px;}
.y7{bottom:666.771000px;}
.y16b{bottom:678.662400px;}
.y197{bottom:682.910400px;}
.y2b{bottom:685.452750px;}
.y49{bottom:685.505250px;}
.y6e{bottom:685.505400px;}
.y103{bottom:685.506750px;}
.y92{bottom:685.518900px;}
.y16a{bottom:693.662400px;}
.ydd{bottom:697.446750px;}
.y196{bottom:697.910400px;}
.y48{bottom:704.999250px;}
.y6d{bottom:704.999400px;}
.y102{bottom:705.000750px;}
.y91{bottom:705.012900px;}
.y169{bottom:712.910400px;}
.y121{bottom:716.946750px;}
.y195{bottom:717.158400px;}
.ydc{bottom:724.452750px;}
.y6c{bottom:724.493400px;}
.y101{bottom:724.494750px;}
.y90{bottom:724.506900px;}
.y6{bottom:726.298500px;}
.y168{bottom:727.910400px;}
.y194{bottom:732.158400px;}
.y167{bottom:742.910400px;}
.y120{bottom:743.952750px;}
.y2a{bottom:743.958750px;}
.y6b{bottom:743.987400px;}
.y100{bottom:743.988750px;}
.y47{bottom:744.000750px;}
.y8f{bottom:744.000900px;}
.y193{bottom:747.158400px;}
.y3{bottom:752.599495px;}
.y166{bottom:762.158400px;}
.y6a{bottom:763.481400px;}
.yff{bottom:763.482750px;}
.y46{bottom:763.494750px;}
.y8e{bottom:763.494900px;}
.y165{bottom:777.158400px;}
.y29{bottom:782.955750px;}
.y69{bottom:782.975400px;}
.yfe{bottom:782.976750px;}
.y45{bottom:782.988750px;}
.y8d{bottom:782.988900px;}
.y164{bottom:792.158400px;}
.y192{bottom:796.406400px;}
.y68{bottom:802.469400px;}
.yfd{bottom:802.470750px;}
.y44{bottom:802.482750px;}
.y8c{bottom:802.482900px;}
.y163{bottom:811.406400px;}
.y191{bottom:815.654400px;}
.y28{bottom:821.952750px;}
.y67{bottom:821.963400px;}
.yfc{bottom:821.964750px;}
.y43{bottom:821.976750px;}
.y8b{bottom:821.976900px;}
.y162{bottom:826.406400px;}
.y190{bottom:830.654400px;}
.yfb{bottom:841.458750px;}
.y42{bottom:841.470750px;}
.y8a{bottom:841.470900px;}
.y161{bottom:845.654400px;}
.y160{bottom:860.654400px;}
.yfa{bottom:860.952750px;}
.y41{bottom:860.964750px;}
.y66{bottom:860.964900px;}
.y15f{bottom:875.654400px;}
.y2{bottom:879.369000px;}
.y40{bottom:880.458750px;}
.y65{bottom:880.458900px;}
.y15e{bottom:894.902400px;}
.y27{bottom:899.952750px;}
.y64{bottom:899.952900px;}
.y15d{bottom:909.902400px;}
.y1{bottom:966.726000px;}
.y3f{bottom:977.952600px;}
.h8{height:32.130000px;}
.h16{height:37.920000px;}
.h9{height:37.968000px;}
.hd{height:38.010000px;}
.h11{height:41.568000px;}
.h15{height:43.440000px;}
.h14{height:45.024000px;}
.hc{height:46.764000px;}
.h3{height:48.195000px;}
.h12{height:48.870000px;}
.h7{height:54.240000px;}
.h6{height:56.952000px;}
.h10{height:61.620000px;}
.h2{height:65.088000px;}
.he{height:67.548000px;}
.h13{height:76.020000px;}
.h5{height:92.208000px;}
.hf{height:114.030000px;}
.h4{height:119.055004px;}
.ha{height:1020.472500px;}
.hb{height:1020.750000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w3{width:722.835000px;}
.w4{width:723.000000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:59.701350px;}
.x6{left:93.804000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x7{left:115.066500px;}
.x4{left:203.484001px;}
.x3{left:454.959000px;}
.x9{left:476.934900px;}
.xb{left:649.776900px;}
.xa{left:652.517400px;}
.x5{left:654.623250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-18.165333pt;}
.wsa1{word-spacing:-14.186667pt;}
.ws2{word-spacing:-11.178667pt;}
.ws3{word-spacing:-9.120000pt;}
.wsd9{word-spacing:-8.106667pt;}
.wsd5{word-spacing:-7.893333pt;}
.wsd0{word-spacing:-2.304000pt;}
.wsc4{word-spacing:-2.064000pt;}
.wsb{word-spacing:-1.632000pt;}
.ws59{word-spacing:-1.536000pt;}
.ws19{word-spacing:-1.248000pt;}
.ws5d{word-spacing:-0.960000pt;}
.wsc0{word-spacing:-0.912000pt;}
.ws37{word-spacing:-0.816000pt;}
.wsa8{word-spacing:-0.768000pt;}
.ws9b{word-spacing:-0.720000pt;}
.ws1d{word-spacing:-0.624000pt;}
.ws2f{word-spacing:-0.528000pt;}
.ws8a{word-spacing:-0.480000pt;}
.ws9c{word-spacing:-0.384000pt;}
.wscf{word-spacing:-0.336000pt;}
.ws3b{word-spacing:-0.288000pt;}
.ws29{word-spacing:-0.240000pt;}
.ws2a{word-spacing:-0.192000pt;}
.wsd3{word-spacing:-0.144000pt;}
.wsc8{word-spacing:-0.048000pt;}
.wsda{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.wsa7{word-spacing:0.096000pt;}
.ws1f{word-spacing:0.144000pt;}
.wsaa{word-spacing:0.240000pt;}
.ws9a{word-spacing:0.288000pt;}
.ws9{word-spacing:0.384000pt;}
.wsaf{word-spacing:0.432000pt;}
.ws98{word-spacing:0.528000pt;}
.ws3f{word-spacing:0.624000pt;}
.ws95{word-spacing:0.720000pt;}
.ws57{word-spacing:0.768000pt;}
.ws2d{word-spacing:0.864000pt;}
.ws94{word-spacing:0.912000pt;}
.ws28{word-spacing:0.960000pt;}
.wsb7{word-spacing:1.008000pt;}
.ws38{word-spacing:1.056000pt;}
.ws49{word-spacing:1.152000pt;}
.ws10{word-spacing:1.248000pt;}
.ws83{word-spacing:1.296000pt;}
.ws91{word-spacing:1.344000pt;}
.wsce{word-spacing:1.392000pt;}
.wsbe{word-spacing:1.440000pt;}
.ws18{word-spacing:1.488000pt;}
.wsa9{word-spacing:1.536000pt;}
.ws8f{word-spacing:1.584000pt;}
.ws73{word-spacing:1.680000pt;}
.wsc{word-spacing:1.728000pt;}
.wsa2{word-spacing:1.776000pt;}
.ws5b{word-spacing:1.824000pt;}
.ws74{word-spacing:1.872000pt;}
.ws92{word-spacing:1.920000pt;}
.wsd{word-spacing:2.016000pt;}
.wsbd{word-spacing:2.064000pt;}
.ws8{word-spacing:2.112000pt;}
.ws4e{word-spacing:2.256000pt;}
.ws54{word-spacing:2.304000pt;}
.ws6d{word-spacing:2.400000pt;}
.wsd2{word-spacing:2.448000pt;}
.wsab{word-spacing:2.496000pt;}
.ws96{word-spacing:2.544000pt;}
.ws6a{word-spacing:2.688000pt;}
.ws21{word-spacing:2.736000pt;}
.ws4a{word-spacing:2.784000pt;}
.ws69{word-spacing:2.832000pt;}
.wsc5{word-spacing:2.880000pt;}
.ws42{word-spacing:3.024000pt;}
.wscd{word-spacing:3.072000pt;}
.wsb8{word-spacing:3.120000pt;}
.wsc3{word-spacing:3.216000pt;}
.ws30{word-spacing:3.312000pt;}
.wsc9{word-spacing:3.360000pt;}
.ws61{word-spacing:3.408000pt;}
.ws45{word-spacing:3.504000pt;}
.wsa{word-spacing:3.552000pt;}
.ws82{word-spacing:3.600000pt;}
.ws7c{word-spacing:3.648000pt;}
.wsb0{word-spacing:3.792000pt;}
.wsa0{word-spacing:3.840000pt;}
.ws6{word-spacing:4.080000pt;}
.ws89{word-spacing:4.128000pt;}
.ws16{word-spacing:4.224000pt;}
.ws7{word-spacing:4.272000pt;}
.wsa3{word-spacing:4.368000pt;}
.ws26{word-spacing:4.416000pt;}
.ws4c{word-spacing:4.464000pt;}
.wsca{word-spacing:4.512000pt;}
.ws11{word-spacing:4.560000pt;}
.wscc{word-spacing:4.608000pt;}
.ws27{word-spacing:4.656000pt;}
.wsf{word-spacing:4.752000pt;}
.ws44{word-spacing:4.800000pt;}
.wsc2{word-spacing:4.848000pt;}
.wsa5{word-spacing:4.896000pt;}
.wsad{word-spacing:4.992000pt;}
.ws41{word-spacing:5.040000pt;}
.ws5a{word-spacing:5.136000pt;}
.ws5f{word-spacing:5.280000pt;}
.ws3e{word-spacing:5.328000pt;}
.ws66{word-spacing:5.424000pt;}
.ws87{word-spacing:5.472000pt;}
.wse{word-spacing:5.520000pt;}
.ws55{word-spacing:5.568000pt;}
.ws48{word-spacing:5.664000pt;}
.ws2b{word-spacing:5.712000pt;}
.ws56{word-spacing:5.760000pt;}
.wscb{word-spacing:5.856000pt;}
.ws76{word-spacing:6.096000pt;}
.ws58{word-spacing:6.144000pt;}
.ws6f{word-spacing:6.192000pt;}
.ws75{word-spacing:6.240000pt;}
.ws17{word-spacing:6.336000pt;}
.ws5e{word-spacing:6.432000pt;}
.ws39{word-spacing:6.528000pt;}
.ws2e{word-spacing:6.672000pt;}
.ws8d{word-spacing:6.816000pt;}
.ws70{word-spacing:6.912000pt;}
.ws9e{word-spacing:7.008000pt;}
.ws5c{word-spacing:7.056000pt;}
.ws1b{word-spacing:7.104000pt;}
.ws67{word-spacing:7.248000pt;}
.ws15{word-spacing:7.344000pt;}
.ws4{word-spacing:7.536000pt;}
.ws68{word-spacing:7.584000pt;}
.wsb6{word-spacing:7.632000pt;}
.ws4d{word-spacing:7.680000pt;}
.ws20{word-spacing:7.728000pt;}
.ws46{word-spacing:7.776000pt;}
.wsae{word-spacing:7.872000pt;}
.wsc7{word-spacing:7.920000pt;}
.ws5{word-spacing:7.968000pt;}
.ws9f{word-spacing:8.064000pt;}
.ws7f{word-spacing:8.112000pt;}
.wsba{word-spacing:8.160000pt;}
.ws52{word-spacing:8.208000pt;}
.wsd4{word-spacing:8.304000pt;}
.ws3a{word-spacing:8.352000pt;}
.ws90{word-spacing:8.544000pt;}
.wsa6{word-spacing:8.592000pt;}
.wsb3{word-spacing:8.640000pt;}
.wsc6{word-spacing:8.832000pt;}
.wsd8{word-spacing:9.024000pt;}
.ws51{word-spacing:9.072000pt;}
.ws3c{word-spacing:9.168000pt;}
.ws7e{word-spacing:9.216000pt;}
.ws31{word-spacing:9.312000pt;}
.ws43{word-spacing:9.408000pt;}
.ws88{word-spacing:9.456000pt;}
.wsc1{word-spacing:9.552000pt;}
.ws86{word-spacing:9.888000pt;}
.ws3d{word-spacing:9.936000pt;}
.ws36{word-spacing:9.984000pt;}
.ws78{word-spacing:10.032000pt;}
.ws93{word-spacing:10.224000pt;}
.ws25{word-spacing:10.368000pt;}
.wsbc{word-spacing:10.464000pt;}
.ws4b{word-spacing:10.512000pt;}
.wsb9{word-spacing:10.608000pt;}
.wsd1{word-spacing:10.656000pt;}
.ws7d{word-spacing:10.944000pt;}
.wsa4{word-spacing:10.992000pt;}
.ws84{word-spacing:11.040000pt;}
.ws60{word-spacing:11.184000pt;}
.ws64{word-spacing:11.424000pt;}
.ws71{word-spacing:11.472000pt;}
.ws1e{word-spacing:11.712000pt;}
.ws47{word-spacing:11.808000pt;}
.ws1a{word-spacing:11.904000pt;}
.wsbb{word-spacing:12.192000pt;}
.wsb4{word-spacing:12.480000pt;}
.ws97{word-spacing:12.576000pt;}
.ws23{word-spacing:12.816000pt;}
.ws9d{word-spacing:13.008000pt;}
.ws7a{word-spacing:13.056000pt;}
.ws99{word-spacing:13.296000pt;}
.ws22{word-spacing:13.488000pt;}
.ws79{word-spacing:13.584000pt;}
.wsb1{word-spacing:13.776000pt;}
.ws12{word-spacing:13.824000pt;}
.wsb5{word-spacing:14.016000pt;}
.ws50{word-spacing:14.208000pt;}
.wsbf{word-spacing:14.544000pt;}
.ws63{word-spacing:14.592000pt;}
.ws72{word-spacing:14.928000pt;}
.wsb2{word-spacing:14.976000pt;}
.ws65{word-spacing:15.072000pt;}
.wsac{word-spacing:15.312000pt;}
.wsd7{word-spacing:15.552000pt;}
.ws6c{word-spacing:15.792000pt;}
.wsd6{word-spacing:16.368000pt;}
.ws53{word-spacing:16.416000pt;}
.ws40{word-spacing:16.560000pt;}
.ws4f{word-spacing:16.752000pt;}
.ws34{word-spacing:17.184000pt;}
.ws33{word-spacing:17.232000pt;}
.ws14{word-spacing:17.712000pt;}
.ws62{word-spacing:17.904000pt;}
.ws85{word-spacing:18.000000pt;}
.ws77{word-spacing:18.096000pt;}
.ws8c{word-spacing:18.480000pt;}
.ws81{word-spacing:19.920000pt;}
.ws32{word-spacing:20.592000pt;}
.ws8e{word-spacing:20.784000pt;}
.ws7b{word-spacing:21.648000pt;}
.ws2c{word-spacing:22.320000pt;}
.ws6b{word-spacing:22.416000pt;}
.ws6e{word-spacing:23.520000pt;}
.ws35{word-spacing:23.616000pt;}
.ws13{word-spacing:24.480000pt;}
.ws1c{word-spacing:25.248000pt;}
.ws24{word-spacing:26.208000pt;}
.ws8b{word-spacing:32.496000pt;}
.ws80{word-spacing:39.312000pt;}
._9{margin-left:-16.242133pt;}
._5{margin-left:-9.184000pt;}
._e{margin-left:-8.190400pt;}
._7{margin-left:-6.866133pt;}
._6{margin-left:-5.013333pt;}
._1{margin-left:-3.699733pt;}
._4{margin-left:-2.695467pt;}
._2{margin-left:-1.724800pt;}
._3{width:1.534400pt;}
._8{width:2.438933pt;}
._f{width:3.331200pt;}
._d{width:4.749867pt;}
._a{width:5.971200pt;}
._b{width:7.396800pt;}
._c{width:10.469867pt;}
._0{width:53.610667pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs9{font-size:74.666667pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:30.097600pt;}
.y5{bottom:59.133337pt;}
.y26{bottom:71.952667pt;}
.ycc{bottom:72.070000pt;}
.y13e{bottom:72.099333pt;}
.y11f{bottom:72.135333pt;}
.y18f{bottom:74.167467pt;}
.y15c{bottom:77.312667pt;}
.y25{bottom:83.955333pt;}
.y4{bottom:86.333337pt;}
.y18e{bottom:87.500800pt;}
.yab{bottom:89.355333pt;}
.y63{bottom:89.359333pt;}
.ydb{bottom:89.366000pt;}
.ycb{bottom:89.398000pt;}
.yf9{bottom:89.422000pt;}
.y13d{bottom:89.427333pt;}
.y89{bottom:89.462133pt;}
.y11e{bottom:89.463333pt;}
.yb4{bottom:89.474133pt;}
.y15b{bottom:90.646000pt;}
.y24{bottom:95.958000pt;}
.y15a{bottom:103.979333pt;}
.y18d{bottom:104.610133pt;}
.yaa{bottom:106.683333pt;}
.y62{bottom:106.687333pt;}
.yda{bottom:106.694000pt;}
.yca{bottom:106.726000pt;}
.yf8{bottom:106.750000pt;}
.y88{bottom:106.790133pt;}
.y11d{bottom:106.791333pt;}
.yb3{bottom:106.802133pt;}
.y18c{bottom:117.943467pt;}
.y159{bottom:121.088667pt;}
.y22{bottom:123.790666pt;}
.ya9{bottom:124.011333pt;}
.y61{bottom:124.015333pt;}
.yd9{bottom:124.022000pt;}
.yc9{bottom:124.054000pt;}
.yf7{bottom:124.078000pt;}
.y13c{bottom:124.095333pt;}
.y11c{bottom:124.119333pt;}
.yb2{bottom:124.130133pt;}
.y158{bottom:134.422000pt;}
.y18b{bottom:135.052800pt;}
.ya8{bottom:141.339333pt;}
.y60{bottom:141.343333pt;}
.yd8{bottom:141.350000pt;}
.yc8{bottom:141.382000pt;}
.yf6{bottom:141.406000pt;}
.y13b{bottom:141.423333pt;}
.y11b{bottom:141.447333pt;}
.y87{bottom:141.458133pt;}
.y157{bottom:147.755333pt;}
.y18a{bottom:148.386133pt;}
.ya7{bottom:158.667333pt;}
.y5f{bottom:158.671333pt;}
.yd7{bottom:158.678000pt;}
.yc7{bottom:158.710000pt;}
.y13a{bottom:158.751333pt;}
.y11a{bottom:158.775333pt;}
.y86{bottom:158.786133pt;}
.y189{bottom:161.719467pt;}
.y156{bottom:164.864667pt;}
.y19{bottom:175.052000pt;}
.ya6{bottom:175.995333pt;}
.yd6{bottom:176.006000pt;}
.yc6{bottom:176.038000pt;}
.yf5{bottom:176.074000pt;}
.y139{bottom:176.079333pt;}
.y119{bottom:176.103333pt;}
.y85{bottom:176.114133pt;}
.y155{bottom:178.198000pt;}
.y188{bottom:178.828800pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y187{bottom:192.162133pt;}
.ya5{bottom:193.323333pt;}
.yd5{bottom:193.334000pt;}
.y5e{bottom:193.339333pt;}
.yc5{bottom:193.366000pt;}
.yf4{bottom:193.402000pt;}
.y138{bottom:193.407333pt;}
.y118{bottom:193.431333pt;}
.y84{bottom:193.442133pt;}
.y154{bottom:195.307333pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y186{bottom:205.495467pt;}
.y1f{bottom:208.638670pt;}
.y153{bottom:208.640667pt;}
.y16{bottom:208.651996pt;}
.y3e{bottom:210.624667pt;}
.ya4{bottom:210.651333pt;}
.yd4{bottom:210.662000pt;}
.y5d{bottom:210.667333pt;}
.yc4{bottom:210.694000pt;}
.yf3{bottom:210.730000pt;}
.y137{bottom:210.735333pt;}
.y83{bottom:210.770133pt;}
.y152{bottom:221.974000pt;}
.y185{bottom:222.604800pt;}
.y3d{bottom:227.958000pt;}
.ya3{bottom:227.979333pt;}
.yd3{bottom:227.990000pt;}
.y5c{bottom:227.995333pt;}
.yc3{bottom:228.022000pt;}
.yf2{bottom:228.058000pt;}
.y136{bottom:228.063333pt;}
.y82{bottom:228.098133pt;}
.y117{bottom:228.099333pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y184{bottom:235.938133pt;}
.y151{bottom:239.083333pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.ya2{bottom:245.307333pt;}
.yd2{bottom:245.318000pt;}
.y5b{bottom:245.323333pt;}
.yc2{bottom:245.350000pt;}
.yf1{bottom:245.386000pt;}
.y135{bottom:245.391333pt;}
.y81{bottom:245.426133pt;}
.y116{bottom:245.427333pt;}
.y183{bottom:249.271467pt;}
.y150{bottom:252.416667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y3c{bottom:262.624667pt;}
.ya1{bottom:262.635333pt;}
.yd1{bottom:262.646000pt;}
.y5a{bottom:262.651333pt;}
.yc1{bottom:262.678000pt;}
.yf0{bottom:262.714000pt;}
.y134{bottom:262.719333pt;}
.y80{bottom:262.754133pt;}
.y115{bottom:262.755333pt;}
.y182{bottom:266.380800pt;}
.y14f{bottom:269.526000pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y181{bottom:279.714133pt;}
.y3b{bottom:279.958000pt;}
.ya0{bottom:279.963333pt;}
.yd0{bottom:279.974000pt;}
.y59{bottom:279.979333pt;}
.yc0{bottom:280.006000pt;}
.yef{bottom:280.042000pt;}
.y133{bottom:280.047333pt;}
.y7f{bottom:280.082133pt;}
.y114{bottom:280.083333pt;}
.y14e{bottom:282.859333pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y180{bottom:293.047467pt;}
.y14d{bottom:296.192667pt;}
.y9f{bottom:297.291333pt;}
.ycf{bottom:297.302000pt;}
.y58{bottom:297.307333pt;}
.ybf{bottom:297.334000pt;}
.yee{bottom:297.370000pt;}
.y132{bottom:297.375333pt;}
.yb1{bottom:297.410133pt;}
.y113{bottom:297.411333pt;}
.y17f{bottom:306.380800pt;}
.y10{bottom:309.452000pt;}
.y14c{bottom:313.302000pt;}
.yce{bottom:314.630000pt;}
.y57{bottom:314.635333pt;}
.ybe{bottom:314.662000pt;}
.y3a{bottom:314.694000pt;}
.yed{bottom:314.698000pt;}
.y131{bottom:314.703333pt;}
.y112{bottom:314.739333pt;}
.y7e{bottom:314.750133pt;}
.y17e{bottom:323.490133pt;}
.y14b{bottom:330.411333pt;}
.y9e{bottom:331.958000pt;}
.y56{bottom:331.963333pt;}
.ybd{bottom:331.990000pt;}
.y39{bottom:332.022000pt;}
.yec{bottom:332.026000pt;}
.y130{bottom:332.031333pt;}
.y111{bottom:332.067333pt;}
.y7d{bottom:332.078133pt;}
.y17d{bottom:336.823467pt;}
.y14a{bottom:343.744667pt;}
.yf{bottom:343.809333pt;}
.y55{bottom:349.291333pt;}
.ybc{bottom:349.318000pt;}
.y38{bottom:349.350000pt;}
.yeb{bottom:349.354000pt;}
.y12f{bottom:349.359333pt;}
.y110{bottom:349.395333pt;}
.y7c{bottom:349.406133pt;}
.y17c{bottom:353.932800pt;}
.y149{bottom:357.078000pt;}
.ye{bottom:362.706666pt;}
.ybb{bottom:366.646000pt;}
.y37{bottom:366.678000pt;}
.yea{bottom:366.682000pt;}
.y10f{bottom:366.723333pt;}
.y7b{bottom:366.734133pt;}
.y17b{bottom:367.266133pt;}
.ycd{bottom:367.958000pt;}
.y148{bottom:374.187333pt;}
.y17a{bottom:380.599467pt;}
.y54{bottom:383.958000pt;}
.yba{bottom:383.974000pt;}
.y36{bottom:384.006000pt;}
.ye9{bottom:384.010000pt;}
.y12e{bottom:384.027333pt;}
.y10e{bottom:384.051333pt;}
.y7a{bottom:384.062133pt;}
.y9d{bottom:384.074133pt;}
.y147{bottom:387.520667pt;}
.y179{bottom:397.708800pt;}
.y146{bottom:400.854000pt;}
.yb9{bottom:401.302000pt;}
.y35{bottom:401.334000pt;}
.ye8{bottom:401.338000pt;}
.y12d{bottom:401.355333pt;}
.y10d{bottom:401.379333pt;}
.y79{bottom:401.390133pt;}
.y9c{bottom:401.402133pt;}
.y178{bottom:411.042133pt;}
.y145{bottom:417.963333pt;}
.yb8{bottom:418.630000pt;}
.y34{bottom:418.662000pt;}
.y12c{bottom:418.683333pt;}
.y10c{bottom:418.707333pt;}
.y78{bottom:418.718133pt;}
.y9b{bottom:418.730133pt;}
.y177{bottom:424.375467pt;}
.yd{bottom:430.990669pt;}
.y144{bottom:431.296667pt;}
.yb7{bottom:435.958000pt;}
.y33{bottom:435.990000pt;}
.ye7{bottom:436.006000pt;}
.y12b{bottom:436.011333pt;}
.y10b{bottom:436.035333pt;}
.y77{bottom:436.046133pt;}
.y53{bottom:436.058000pt;}
.y9a{bottom:436.058133pt;}
.y176{bottom:437.708800pt;}
.yc{bottom:446.990669pt;}
.y143{bottom:448.406000pt;}
.y32{bottom:453.318000pt;}
.ye6{bottom:453.334000pt;}
.y12a{bottom:453.339333pt;}
.y76{bottom:453.374133pt;}
.y52{bottom:453.386000pt;}
.y99{bottom:453.386133pt;}
.y175{bottom:454.818133pt;}
.y142{bottom:461.739333pt;}
.yb{bottom:462.990669pt;}
.yb6{bottom:463.952667pt;}
.y174{bottom:468.151467pt;}
.y31{bottom:470.646000pt;}
.ye5{bottom:470.662000pt;}
.y129{bottom:470.667333pt;}
.y75{bottom:470.702133pt;}
.y10a{bottom:470.703333pt;}
.y51{bottom:470.714000pt;}
.y98{bottom:470.714133pt;}
.y141{bottom:478.848667pt;}
.ya{bottom:478.990666pt;}
.y173{bottom:481.484800pt;}
.yb5{bottom:487.958000pt;}
.y30{bottom:487.974000pt;}
.ye4{bottom:487.990000pt;}
.y128{bottom:487.995333pt;}
.yb0{bottom:488.030133pt;}
.y109{bottom:488.031333pt;}
.y50{bottom:488.042000pt;}
.y97{bottom:488.042133pt;}
.y140{bottom:492.182000pt;}
.y172{bottom:494.818133pt;}
.y9{bottom:494.990666pt;}
.y2f{bottom:505.302000pt;}
.ye3{bottom:505.318000pt;}
.y127{bottom:505.323333pt;}
.yaf{bottom:505.358133pt;}
.y108{bottom:505.359333pt;}
.y4f{bottom:505.370000pt;}
.y74{bottom:505.370133pt;}
.y171{bottom:511.927467pt;}
.y13f{bottom:522.624667pt;}
.y2e{bottom:522.630000pt;}
.ye2{bottom:522.646000pt;}
.y126{bottom:522.651333pt;}
.yae{bottom:522.686133pt;}
.y107{bottom:522.687333pt;}
.y4e{bottom:522.698000pt;}
.y73{bottom:522.698133pt;}
.y170{bottom:529.036800pt;}
.y2d{bottom:539.958000pt;}
.ye1{bottom:539.974000pt;}
.y125{bottom:539.979333pt;}
.yad{bottom:540.014133pt;}
.y106{bottom:540.015333pt;}
.y4d{bottom:540.026000pt;}
.y72{bottom:540.026133pt;}
.y96{bottom:540.038133pt;}
.y16f{bottom:542.370133pt;}
.y2c{bottom:557.291333pt;}
.ye0{bottom:557.302000pt;}
.y124{bottom:557.307333pt;}
.yac{bottom:557.342133pt;}
.y4c{bottom:557.354000pt;}
.y71{bottom:557.354133pt;}
.y95{bottom:557.366133pt;}
.y16e{bottom:559.479467pt;}
.y16d{bottom:572.812800pt;}
.y8{bottom:573.786667pt;}
.ydf{bottom:574.630000pt;}
.y123{bottom:574.635333pt;}
.y4b{bottom:574.682000pt;}
.y70{bottom:574.682133pt;}
.y105{bottom:574.683333pt;}
.y94{bottom:574.694133pt;}
.y198{bottom:576.588800pt;}
.y16c{bottom:589.922133pt;}
.yde{bottom:591.958000pt;}
.y122{bottom:591.963333pt;}
.y4a{bottom:592.010000pt;}
.y6f{bottom:592.010133pt;}
.y104{bottom:592.011333pt;}
.y93{bottom:592.022133pt;}
.y7{bottom:592.685334pt;}
.y16b{bottom:603.255467pt;}
.y197{bottom:607.031467pt;}
.y2b{bottom:609.291333pt;}
.y49{bottom:609.338000pt;}
.y6e{bottom:609.338133pt;}
.y103{bottom:609.339333pt;}
.y92{bottom:609.350133pt;}
.y16a{bottom:616.588800pt;}
.ydd{bottom:619.952667pt;}
.y196{bottom:620.364800pt;}
.y48{bottom:626.666000pt;}
.y6d{bottom:626.666133pt;}
.y102{bottom:626.667333pt;}
.y91{bottom:626.678133pt;}
.y169{bottom:633.698133pt;}
.y121{bottom:637.286000pt;}
.y195{bottom:637.474133pt;}
.ydc{bottom:643.958000pt;}
.y6c{bottom:643.994133pt;}
.y101{bottom:643.995333pt;}
.y90{bottom:644.006133pt;}
.y6{bottom:645.598667pt;}
.y168{bottom:647.031467pt;}
.y194{bottom:650.807467pt;}
.y167{bottom:660.364800pt;}
.y120{bottom:661.291333pt;}
.y2a{bottom:661.296667pt;}
.y6b{bottom:661.322133pt;}
.y100{bottom:661.323333pt;}
.y47{bottom:661.334000pt;}
.y8f{bottom:661.334133pt;}
.y193{bottom:664.140800pt;}
.y3{bottom:668.977329pt;}
.y166{bottom:677.474133pt;}
.y6a{bottom:678.650133pt;}
.yff{bottom:678.651333pt;}
.y46{bottom:678.662000pt;}
.y8e{bottom:678.662133pt;}
.y165{bottom:690.807467pt;}
.y29{bottom:695.960667pt;}
.y69{bottom:695.978133pt;}
.yfe{bottom:695.979333pt;}
.y45{bottom:695.990000pt;}
.y8d{bottom:695.990133pt;}
.y164{bottom:704.140800pt;}
.y192{bottom:707.916800pt;}
.y68{bottom:713.306133pt;}
.yfd{bottom:713.307333pt;}
.y44{bottom:713.318000pt;}
.y8c{bottom:713.318133pt;}
.y163{bottom:721.250133pt;}
.y191{bottom:725.026133pt;}
.y28{bottom:730.624667pt;}
.y67{bottom:730.634133pt;}
.yfc{bottom:730.635333pt;}
.y43{bottom:730.646000pt;}
.y8b{bottom:730.646133pt;}
.y162{bottom:734.583467pt;}
.y190{bottom:738.359467pt;}
.yfb{bottom:747.963333pt;}
.y42{bottom:747.974000pt;}
.y8a{bottom:747.974133pt;}
.y161{bottom:751.692800pt;}
.y160{bottom:765.026133pt;}
.yfa{bottom:765.291333pt;}
.y41{bottom:765.302000pt;}
.y66{bottom:765.302133pt;}
.y15f{bottom:778.359467pt;}
.y2{bottom:781.661334pt;}
.y40{bottom:782.630000pt;}
.y65{bottom:782.630133pt;}
.y15e{bottom:795.468800pt;}
.y27{bottom:799.958000pt;}
.y64{bottom:799.958133pt;}
.y15d{bottom:808.802133pt;}
.y1{bottom:859.312000pt;}
.y3f{bottom:869.291200pt;}
.h8{height:28.560000pt;}
.h16{height:33.706667pt;}
.h9{height:33.749333pt;}
.hd{height:33.786667pt;}
.h11{height:36.949333pt;}
.h15{height:38.613333pt;}
.h14{height:40.021333pt;}
.hc{height:41.568000pt;}
.h3{height:42.840000pt;}
.h12{height:43.440000pt;}
.h7{height:48.213333pt;}
.h6{height:50.624000pt;}
.h10{height:54.773333pt;}
.h2{height:57.856000pt;}
.he{height:60.042667pt;}
.h13{height:67.573333pt;}
.h5{height:81.962667pt;}
.hf{height:101.360000pt;}
.h4{height:105.826671pt;}
.ha{height:907.086667pt;}
.hb{height:907.333333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w3{width:642.520000pt;}
.w4{width:642.666667pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:53.067867pt;}
.x6{left:83.381333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x7{left:102.281333pt;}
.x4{left:180.874667pt;}
.x3{left:404.408000pt;}
.x9{left:423.942133pt;}
.xb{left:577.579467pt;}
.xa{left:580.015467pt;}
.x5{left:581.887333pt;}
}




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