
    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_d22957dff27d65d64323cc87.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.934000;font-style:normal;font-weight: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_baae78a1baa340df0df91045.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_dde1c1b2a19645549562923d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.727000;font-style:normal;font-weight: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_7e1b81febc62d2288c421d3b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c1fdf89e8a941015f8bfa39f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight: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_a8b540bfbb5b0a32eac1d1e3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_dc2a27568d63340a8a73cdaf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.835938;font-style:normal;font-weight: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_fe6e9d93c885d5548765932a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight: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_ee504304a9fcfe1260639214.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.917969;font-style:normal;font-weight: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_28f19656abd40bfb2767c276.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.765137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;font-style:normal;font-weight: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_ec5605c8a52732b2d32a0347.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8ea2e97d9b6b137e91666322.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.881836;font-style:normal;font-weight: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_07299fb602834f62296b5dc3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.988281;font-style:normal;font-weight: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_71d8f352c70dac0fb791d33f.woff2')format("woff");}.fff{font-family:fff;line-height:0.983398;font-style:normal;font-weight: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_efb537f05af75986bb2b7d70.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.752930;font-style:normal;font-weight: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_b03f2f31b63fc401c47976f9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.702000;font-style:normal;font-weight: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_cfaf5bf3adbda864b6073dd9.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);}
.m4{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;}
.ls13{letter-spacing:-0.396134px;}
.ls33{letter-spacing:-0.238127px;}
.ls1f{letter-spacing:-0.114269px;}
.ls20{letter-spacing:-0.052012px;}
.ls0{letter-spacing:0.000000px;}
.ls48{letter-spacing:0.018000px;}
.ls19{letter-spacing:0.026006px;}
.ls1c{letter-spacing:0.034281px;}
.ls4{letter-spacing:0.053326px;}
.ls26{letter-spacing:0.099690px;}
.lsd{letter-spacing:0.104025px;}
.ls2{letter-spacing:0.106651px;}
.lsa{letter-spacing:0.112693px;}
.ls7{letter-spacing:0.114326px;}
.lsb{letter-spacing:0.117028px;}
.ls35{letter-spacing:0.121493px;}
.ls3{letter-spacing:0.125696px;}
.ls8{letter-spacing:0.128576px;}
.ls14{letter-spacing:0.129505px;}
.ls2e{letter-spacing:0.130031px;}
.ls12{letter-spacing:0.156168px;}
.ls16{letter-spacing:0.163786px;}
.ls31{letter-spacing:0.174950px;}
.ls21{letter-spacing:0.201876px;}
.lse{letter-spacing:0.212842px;}
.ls1e{letter-spacing:0.220921px;}
.ls2d{letter-spacing:0.221052px;}
.lsc{letter-spacing:0.234055px;}
.ls15{letter-spacing:0.239966px;}
.ls5{letter-spacing:0.242724px;}
.ls23{letter-spacing:0.247715px;}
.ls9{letter-spacing:0.250241px;}
.ls6{letter-spacing:0.251393px;}
.ls1{letter-spacing:0.254151px;}
.ls17{letter-spacing:0.281733px;}
.ls36{letter-spacing:0.283703px;}
.ls1d{letter-spacing:0.290402px;}
.ls32{letter-spacing:0.315883px;}
.ls2c{letter-spacing:0.316408px;}
.ls1a{letter-spacing:0.325077px;}
.ls10{letter-spacing:0.327572px;}
.ls1b{letter-spacing:0.333746px;}
.ls25{letter-spacing:0.346749px;}
.ls39{letter-spacing:0.365199px;}
.lsf{letter-spacing:0.374200px;}
.ls34{letter-spacing:0.383919px;}
.ls27{letter-spacing:0.385758px;}
.ls2b{letter-spacing:0.388779px;}
.ls24{letter-spacing:0.390092px;}
.ls30{letter-spacing:0.393639px;}
.ls42{letter-spacing:0.425555px;}
.ls2f{letter-spacing:0.432516px;}
.ls46{letter-spacing:0.437376px;}
.ls3f{letter-spacing:0.455108px;}
.ls2a{letter-spacing:0.481114px;}
.ls43{letter-spacing:0.526034px;}
.ls22{letter-spacing:0.539431px;}
.ls18{letter-spacing:0.546129px;}
.ls3e{letter-spacing:0.549675px;}
.ls41{letter-spacing:0.567407px;}
.ls11{letter-spacing:0.573449px;}
.ls29{letter-spacing:0.576207px;}
.ls40{letter-spacing:0.596959px;}
.ls28{letter-spacing:0.608518px;}
.ls3d{letter-spacing:0.614691px;}
.ls44{letter-spacing:0.620601px;}
.ls3a{letter-spacing:0.687657px;}
.ls3c{letter-spacing:0.703348px;}
.ls47{letter-spacing:0.756543px;}
.ls45{letter-spacing:0.792006px;}
.ls3b{letter-spacing:0.839289px;}
.ls37{letter-spacing:161.450373px;}
.ls38{letter-spacing:177.356165px;}
.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;}
}
.ws2d{word-spacing:-26.136000px;}
.ws24{word-spacing:-25.249609px;}
.ws2c{word-spacing:-18.876000px;}
.ws25{word-spacing:-17.388659px;}
.ws27{word-spacing:-17.164060px;}
.ws2a{word-spacing:-17.116776px;}
.ws26{word-spacing:-17.075403px;}
.ws28{word-spacing:-17.004477px;}
.ws2b{word-spacing:-16.992656px;}
.ws29{word-spacing:-16.969014px;}
.ws16{word-spacing:-16.386896px;}
.ws17{word-spacing:-16.354586px;}
.ws18{word-spacing:-14.720139px;}
.ws19{word-spacing:-14.627804px;}
.ws20{word-spacing:-13.942581px;}
.ws21{word-spacing:-13.884264px;}
.ws1a{word-spacing:-13.882951px;}
.ws22{word-spacing:-13.685015px;}
.ws23{word-spacing:-13.631558px;}
.ws15{word-spacing:-12.435275px;}
.ws12{word-spacing:-12.396266px;}
.ws9{word-spacing:-12.383263px;}
.wsf{word-spacing:-12.374594px;}
.ws14{word-spacing:-12.339919px;}
.ws7{word-spacing:-12.331250px;}
.wsa{word-spacing:-12.300910px;}
.wsb{word-spacing:-12.162210px;}
.ws13{word-spacing:-12.149207px;}
.ws8{word-spacing:-12.075523px;}
.ws10{word-spacing:-11.997505px;}
.ws6{word-spacing:-10.828935px;}
.wsc{word-spacing:-10.809890px;}
.ws11{word-spacing:-10.790845px;}
.wsd{word-spacing:-10.752756px;}
.ws5{word-spacing:-10.714666px;}
.wse{word-spacing:-10.474700px;}
.ws1c{word-spacing:-0.286068px;}
.ws1e{word-spacing:-0.264396px;}
.ws1f{word-spacing:-0.173374px;}
.ws1d{word-spacing:-0.147368px;}
.ws0{word-spacing:0.000000px;}
.ws1b{word-spacing:67.872516px;}
.ws4{word-spacing:103.151355px;}
.ws3{word-spacing:130.307716px;}
.ws1{word-spacing:164.447314px;}
.ws2{word-spacing:494.775129px;}
._4{margin-left:-7.608000px;}
._5{margin-left:-5.628000px;}
._16{margin-left:-4.536000px;}
._0{margin-left:-3.312000px;}
._1{margin-left:-2.016000px;}
._2{margin-left:-1.008000px;}
._3{width:1.464000px;}
._f{width:2.715372px;}
._13{width:32.209598px;}
._d{width:60.856109px;}
._15{width:97.035842px;}
._11{width:131.157618px;}
._e{width:145.355717px;}
._14{width:171.679407px;}
._12{width:177.356165px;}
._6{width:180.373865px;}
._7{width:183.140802px;}
._a{width:377.863829px;}
._8{width:380.592358px;}
._9{width:386.073403px;}
._b{width:394.276981px;}
._10{width:557.115672px;}
._c{width:790.799055px;}
.fc5{color:rgb(116,167,254);}
.fc3{color:transparent;}
.fc2{color:rgb(36,31,31);}
.fc4{color:rgb(128,128,128);}
.fc1{color:rgb(122,122,122);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.089818px;}
.fs8{font-size:43.343586px;}
.fs2{font-size:47.953200px;}
.fs5{font-size:48.597354px;}
.fs6{font-size:53.851122px;}
.fs3{font-size:59.104890px;}
.fs9{font-size:65.672100px;}
.fs4{font-size:76.179636px;}
.fse{font-size:78.000000px;}
.fs1{font-size:84.000000px;}
.fsc{font-size:86.687172px;}
.fsd{font-size:108.000000px;}
.fsb{font-size:141.851736px;}
.fs0{font-size:144.000000px;}
.fsa{font-size:197.016300px;}
.y4a{bottom:-49.254000px;}
.y3e{bottom:-45.313500px;}
.y41{bottom:-40.059000px;}
.y33{bottom:-30.210000px;}
.y36{bottom:-24.955500px;}
.y49{bottom:-20.358000px;}
.y4c{bottom:-17.074500px;}
.y3d{bottom:-16.417500px;}
.y87{bottom:-14.995245px;}
.y40{bottom:-13.134000px;}
.y32{bottom:-1.314000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:0.327000px;}
.y43{bottom:0.328500px;}
.y52{bottom:0.655500px;}
.y64{bottom:1.314000px;}
.y35{bottom:1.969500px;}
.y3a{bottom:2.298000px;}
.y67{bottom:2.956500px;}
.y77{bottom:3.283500px;}
.y68{bottom:3.285000px;}
.y7b{bottom:3.612000px;}
.y6d{bottom:4.267500px;}
.y6a{bottom:4.269000px;}
.y57{bottom:4.596000px;}
.y54{bottom:4.597500px;}
.y81{bottom:4.924500px;}
.y5b{bottom:4.926000px;}
.y4e{bottom:6.895500px;}
.y75{bottom:7.224000px;}
.y45{bottom:8.208000px;}
.y48{bottom:8.538000px;}
.y46{bottom:9.522000px;}
.y4b{bottom:9.852000px;}
.y2e{bottom:12.477000px;}
.y3c{bottom:12.478500px;}
.y42{bottom:13.464000px;}
.y3f{bottom:13.791000px;}
.y39{bottom:15.103500px;}
.y18{bottom:19.482750px;}
.y73{bottom:24.736500px;}
.y31{bottom:27.582000px;}
.y38{bottom:28.567500px;}
.y34{bottom:28.896000px;}
.yc5{bottom:33.000000px;}
.y72{bottom:57.572550px;}
.yb3{bottom:58.229250px;}
.yb2{bottom:77.274150px;}
.y71{bottom:90.080250px;}
.yb1{bottom:95.005650px;}
.y15{bottom:106.500000px;}
.yb0{bottom:113.393850px;}
.y70{bottom:122.259600px;}
.y14{bottom:123.000000px;}
.yaf{bottom:131.781750px;}
.y16{bottom:142.500000px;}
.yae{bottom:150.170250px;}
.y6f{bottom:151.812750px;}
.y13{bottom:162.000000px;}
.yad{bottom:168.887250px;}
.y6c{bottom:185.415000px;}
.yac{bottom:187.275750px;}
.y12{bottom:199.500000px;}
.y6b{bottom:200.847000px;}
.yab{bottom:205.662750px;}
.y69{bottom:216.280500px;}
.yaa{bottom:224.051250px;}
.y65{bottom:229.305750px;}
.y66{bottom:231.712500px;}
.y11{bottom:237.000000px;}
.ya9{bottom:244.410750px;}
.y63{bottom:247.474500px;}
.yc4{bottom:261.000000px;}
.y62{bottom:262.797750px;}
.ya8{bottom:271.335750px;}
.y10{bottom:276.000000px;}
.y60{bottom:281.186250px;}
.y61{bottom:296.400000px;}
.y5e{bottom:296.619750px;}
.ya7{bottom:297.932250px;}
.yc3{bottom:301.500000px;}
.y5f{bottom:311.833500px;}
.y5c{bottom:312.051750px;}
.ya6{bottom:324.858750px;}
.y5d{bottom:327.267000px;}
.y59{bottom:327.813750px;}
.y5a{bottom:342.699000px;}
.y58{bottom:343.247250px;}
.yc2{bottom:345.000000px;}
.ya5{bottom:351.783750px;}
.yf{bottom:352.500000px;}
.y56{bottom:358.461000px;}
.y55{bottom:373.893000px;}
.ya4{bottom:378.710250px;}
.yc1{bottom:385.500000px;}
.y53{bottom:389.326500px;}
.ye{bottom:390.000000px;}
.y51{bottom:405.088500px;}
.ya3{bottom:405.306750px;}
.y50{bottom:417.783750px;}
.yc0{bottom:429.000000px;}
.ya2{bottom:432.231750px;}
.ya1{bottom:459.158250px;}
.yd{bottom:466.500000px;}
.ybf{bottom:469.500000px;}
.ya0{bottom:485.754750px;}
.y4f{bottom:491.337750px;}
.yc{bottom:504.000000px;}
.ybe{bottom:511.500000px;}
.y9f{bottom:512.681250px;}
.y4d{bottom:524.940000px;}
.y9e{bottom:539.606250px;}
.yb{bottom:543.000000px;}
.y47{bottom:544.312500px;}
.ybd{bottom:553.500000px;}
.y44{bottom:564.015000px;}
.y9d{bottom:566.532750px;}
.ya{bottom:580.500000px;}
.y3b{bottom:583.059000px;}
.y9c{bottom:593.129250px;}
.ybc{bottom:595.500000px;}
.y30{bottom:606.702000px;}
.y2f{bottom:614.801250px;}
.y37{bottom:616.115250px;}
.y9{bottom:618.000000px;}
.y9b{bottom:620.054250px;}
.ybb{bottom:634.500000px;}
.y2c{bottom:637.787250px;}
.y2d{bottom:645.120000px;}
.y9a{bottom:646.980750px;}
.y8{bottom:657.000000px;}
.y2b{bottom:669.636750px;}
.yba{bottom:672.000000px;}
.y99{bottom:673.905750px;}
.y7{bottom:694.500000px;}
.y98{bottom:698.861250px;}
.y2a{bottom:704.444250px;}
.yb9{bottom:709.500000px;}
.y97{bottom:717.249750px;}
.y80{bottom:723.927000px;}
.y96{bottom:735.638250px;}
.y29{bottom:738.264750px;}
.y7f{bottom:741.001500px;}
.yb8{bottom:748.500000px;}
.y95{bottom:754.026750px;}
.y7e{bottom:756.762000px;}
.y28{bottom:767.160750px;}
.y6{bottom:771.000000px;}
.y7d{bottom:772.195500px;}
.y94{bottom:772.742250px;}
.y27{bottom:783.906750px;}
.y7c{bottom:787.629000px;}
.yb7{bottom:789.000000px;}
.y93{bottom:791.130750px;}
.y26{bottom:797.042250px;}
.y7a{bottom:803.061000px;}
.y5{bottom:808.500000px;}
.y92{bottom:809.519250px;}
.y25{bottom:810.176250px;}
.y79{bottom:818.823000px;}
.y24{bottom:823.967250px;}
.y91{bottom:830.534250px;}
.yb6{bottom:832.500000px;}
.y78{bottom:834.256500px;}
.y23{bottom:837.429750px;}
.y4{bottom:847.500000px;}
.y90{bottom:848.922750px;}
.y76{bottom:849.688500px;}
.y22{bottom:850.892250px;}
.y21{bottom:864.356250px;}
.y74{bottom:865.450500px;}
.y8f{bottom:867.311250px;}
.yb5{bottom:873.000000px;}
.y20{bottom:877.818750px;}
.y3{bottom:885.000000px;}
.y8e{bottom:885.698250px;}
.y1f{bottom:895.550250px;}
.y8d{bottom:904.086750px;}
.y1e{bottom:913.281750px;}
.y8c{bottom:922.475250px;}
.yb4{bottom:922.500000px;}
.y2{bottom:924.000000px;}
.y1d{bottom:930.356250px;}
.y8b{bottom:941.192250px;}
.y1c{bottom:950.714250px;}
.y17{bottom:957.081288px;}
.y8a{bottom:960.564750px;}
.y89{bottom:979.610250px;}
.y1b{bottom:989.460750px;}
.y88{bottom:1001.610750px;}
.y1a{bottom:1006.863750px;}
.y1{bottom:1023.000000px;}
.y86{bottom:1041.998250px;}
.y85{bottom:1061.043750px;}
.y84{bottom:1080.089250px;}
.y19{bottom:1088.625750px;}
.y83{bottom:1098.804750px;}
.yc6{bottom:1105.500000px;}
.y82{bottom:1117.850250px;}
.h14{height:14.776230px;}
.h16{height:14.776245px;}
.h1c{height:16.418100px;}
.h12{height:18.388200px;}
.h1b{height:18.716550px;}
.h10{height:22.328550px;}
.h19{height:32.930967px;}
.he{height:33.054743px;}
.h1a{height:35.745760px;}
.h18{height:36.448016px;}
.h11{height:37.761600px;}
.hd{height:39.726490px;}
.h8{height:40.201715px;}
.h17{height:40.388342px;}
.h13{height:40.914231px;}
.hf{height:45.206006px;}
.h1f{height:46.117976px;}
.h9{height:48.744218px;}
.h6{height:50.013689px;}
.hb{height:50.685522px;}
.h23{height:53.898000px;}
.hc{height:56.165037px;}
.h20{height:57.055844px;}
.h4{height:59.724000px;}
.h2{height:60.060000px;}
.h15{height:61.644553px;}
.h3{height:62.496000px;}
.h1d{height:64.453575px;}
.h21{height:67.639698px;}
.h24{height:74.628000px;}
.h22{height:77.220000px;}
.ha{height:79.452980px;}
.h1{height:107.136000px;}
.h1e{height:131.312134px;}
.h5{height:978.000000px;}
.h7{height:1113.582000px;}
.h0{height:1152.000000px;}
.w3{width:47.638050px;}
.w15{width:60.450900px;}
.w5{width:67.021650px;}
.w6{width:76.549350px;}
.w12{width:96.590100px;}
.w8{width:105.789150px;}
.w11{width:115.645350px;}
.w13{width:115.973850px;}
.wc{width:120.573450px;}
.wa{width:125.501400px;}
.w7{width:144.556650px;}
.w14{width:154.413000px;}
.wb{width:164.269500px;}
.wd{width:169.197000px;}
.w10{width:193.509000px;}
.w16{width:251.988000px;}
.w4{width:270.715500px;}
.wf{width:271.044000px;}
.we{width:407.058000px;}
.w9{width:581.512500px;}
.w17{width:774.481500px;}
.w2{width:775.911000px;}
.w1{width:1314.000000px;}
.w0{width:1536.000000px;}
.x0{left:0.000000px;}
.x1a{left:4.840500px;}
.x1b{left:6.996000px;}
.x21{left:9.402000px;}
.x23{left:11.571000px;}
.x11{left:13.819200px;}
.x4{left:15.663513px;}
.x6{left:19.808100px;}
.x16{left:23.388000px;}
.x26{left:25.671900px;}
.x18{left:27.156000px;}
.x32{left:29.383500px;}
.x29{left:30.992400px;}
.x24{left:32.318400px;}
.x1f{left:34.484400px;}
.x25{left:35.869500px;}
.x8{left:39.178050px;}
.x30{left:45.642000px;}
.xf{left:48.897300px;}
.xe{left:58.616400px;}
.x27{left:60.087000px;}
.x2a{left:62.880900px;}
.x5{left:68.842650px;}
.x13{left:77.058000px;}
.x2b{left:82.251000px;}
.x28{left:84.420000px;}
.x2d{left:88.883550px;}
.x34{left:96.831000px;}
.x2e{left:103.441950px;}
.x1c{left:106.597350px;}
.x10{left:108.267150px;}
.x3{left:111.000000px;}
.x1d{left:137.507100px;}
.x12{left:156.891000px;}
.x1{left:166.500000px;}
.x7{left:169.223850px;}
.x1e{left:187.436400px;}
.x33{left:205.515000px;}
.x20{left:263.665500px;}
.x9{left:281.108850px;}
.xb{left:287.218350px;}
.xc{left:291.760350px;}
.xa{left:300.446850px;}
.x2c{left:360.583500px;}
.xd{left:379.385850px;}
.x14{left:428.592000px;}
.x35{left:478.200000px;}
.x15{left:496.599000px;}
.x36{left:538.980000px;}
.x22{left:549.822000px;}
.x2f{left:554.749500px;}
.x17{left:574.134000px;}
.x31{left:671.052000px;}
.x19{left:719.676000px;}
.x2{left:889.500000px;}
.x37{left:1180.500000px;}
.x38{left:1359.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-0.352119pt;}
.ls33{letter-spacing:-0.211668pt;}
.ls1f{letter-spacing:-0.101573pt;}
.ls20{letter-spacing:-0.046233pt;}
.ls0{letter-spacing:0.000000pt;}
.ls48{letter-spacing:0.016000pt;}
.ls19{letter-spacing:0.023117pt;}
.ls1c{letter-spacing:0.030472pt;}
.ls4{letter-spacing:0.047401pt;}
.ls26{letter-spacing:0.088614pt;}
.lsd{letter-spacing:0.092466pt;}
.ls2{letter-spacing:0.094801pt;}
.lsa{letter-spacing:0.100172pt;}
.ls7{letter-spacing:0.101623pt;}
.lsb{letter-spacing:0.104025pt;}
.ls35{letter-spacing:0.107994pt;}
.ls3{letter-spacing:0.111730pt;}
.ls8{letter-spacing:0.114290pt;}
.ls14{letter-spacing:0.115116pt;}
.ls2e{letter-spacing:0.115583pt;}
.ls12{letter-spacing:0.138816pt;}
.ls16{letter-spacing:0.145588pt;}
.ls31{letter-spacing:0.155512pt;}
.ls21{letter-spacing:0.179445pt;}
.lse{letter-spacing:0.189193pt;}
.ls1e{letter-spacing:0.196374pt;}
.ls2d{letter-spacing:0.196491pt;}
.lsc{letter-spacing:0.208049pt;}
.ls15{letter-spacing:0.213303pt;}
.ls5{letter-spacing:0.215755pt;}
.ls23{letter-spacing:0.220191pt;}
.ls9{letter-spacing:0.222436pt;}
.ls6{letter-spacing:0.223460pt;}
.ls1{letter-spacing:0.225912pt;}
.ls17{letter-spacing:0.250430pt;}
.ls36{letter-spacing:0.252181pt;}
.ls1d{letter-spacing:0.258135pt;}
.ls32{letter-spacing:0.280785pt;}
.ls2c{letter-spacing:0.281252pt;}
.ls1a{letter-spacing:0.288957pt;}
.ls10{letter-spacing:0.291175pt;}
.ls1b{letter-spacing:0.296663pt;}
.ls25{letter-spacing:0.308221pt;}
.ls39{letter-spacing:0.324622pt;}
.lsf{letter-spacing:0.332622pt;}
.ls34{letter-spacing:0.341261pt;}
.ls27{letter-spacing:0.342896pt;}
.ls2b{letter-spacing:0.345581pt;}
.ls24{letter-spacing:0.346749pt;}
.ls30{letter-spacing:0.349901pt;}
.ls42{letter-spacing:0.378271pt;}
.ls2f{letter-spacing:0.384459pt;}
.ls46{letter-spacing:0.388779pt;}
.ls3f{letter-spacing:0.404540pt;}
.ls2a{letter-spacing:0.427657pt;}
.ls43{letter-spacing:0.467585pt;}
.ls22{letter-spacing:0.479494pt;}
.ls18{letter-spacing:0.485448pt;}
.ls3e{letter-spacing:0.488600pt;}
.ls41{letter-spacing:0.504362pt;}
.ls11{letter-spacing:0.509732pt;}
.ls29{letter-spacing:0.512184pt;}
.ls40{letter-spacing:0.530631pt;}
.ls28{letter-spacing:0.540905pt;}
.ls3d{letter-spacing:0.546392pt;}
.ls44{letter-spacing:0.551646pt;}
.ls3a{letter-spacing:0.611251pt;}
.ls3c{letter-spacing:0.625198pt;}
.ls47{letter-spacing:0.672482pt;}
.ls45{letter-spacing:0.704005pt;}
.ls3b{letter-spacing:0.746035pt;}
.ls37{letter-spacing:143.511442pt;}
.ls38{letter-spacing:157.649924pt;}
.ws2d{word-spacing:-23.232000pt;}
.ws24{word-spacing:-22.444097pt;}
.ws2c{word-spacing:-16.778667pt;}
.ws25{word-spacing:-15.456585pt;}
.ws27{word-spacing:-15.256942pt;}
.ws2a{word-spacing:-15.214912pt;}
.ws26{word-spacing:-15.178136pt;}
.ws28{word-spacing:-15.115091pt;}
.ws2b{word-spacing:-15.104583pt;}
.ws29{word-spacing:-15.083568pt;}
.ws16{word-spacing:-14.566130pt;}
.ws17{word-spacing:-14.537410pt;}
.ws18{word-spacing:-13.084568pt;}
.ws19{word-spacing:-13.002492pt;}
.ws20{word-spacing:-12.393405pt;}
.ws21{word-spacing:-12.341568pt;}
.ws1a{word-spacing:-12.340401pt;}
.ws22{word-spacing:-12.164458pt;}
.ws23{word-spacing:-12.116940pt;}
.ws15{word-spacing:-11.053578pt;}
.ws12{word-spacing:-11.018903pt;}
.ws9{word-spacing:-11.007344pt;}
.wsf{word-spacing:-10.999639pt;}
.ws14{word-spacing:-10.968817pt;}
.ws7{word-spacing:-10.961111pt;}
.wsa{word-spacing:-10.934142pt;}
.wsb{word-spacing:-10.810854pt;}
.ws13{word-spacing:-10.799295pt;}
.ws8{word-spacing:-10.733798pt;}
.ws10{word-spacing:-10.664449pt;}
.ws6{word-spacing:-9.625720pt;}
.wsc{word-spacing:-9.608791pt;}
.ws11{word-spacing:-9.591863pt;}
.wsd{word-spacing:-9.558005pt;}
.ws5{word-spacing:-9.524147pt;}
.wse{word-spacing:-9.310844pt;}
.ws1c{word-spacing:-0.254282pt;}
.ws1e{word-spacing:-0.235019pt;}
.ws1f{word-spacing:-0.154111pt;}
.ws1d{word-spacing:-0.130994pt;}
.ws0{word-spacing:0.000000pt;}
.ws1b{word-spacing:60.331126pt;}
.ws4{word-spacing:91.690093pt;}
.ws3{word-spacing:115.829081pt;}
.ws1{word-spacing:146.175390pt;}
.ws2{word-spacing:439.800115pt;}
._4{margin-left:-6.762667pt;}
._5{margin-left:-5.002667pt;}
._16{margin-left:-4.032000pt;}
._0{margin-left:-2.944000pt;}
._1{margin-left:-1.792000pt;}
._2{margin-left:-0.896000pt;}
._3{width:1.301333pt;}
._f{width:2.413664pt;}
._13{width:28.630754pt;}
._d{width:54.094319pt;}
._15{width:86.254081pt;}
._11{width:116.584549pt;}
._e{width:129.205081pt;}
._14{width:152.603917pt;}
._12{width:157.649924pt;}
._6{width:160.332325pt;}
._7{width:162.791824pt;}
._a{width:335.878959pt;}
._8{width:338.304318pt;}
._9{width:343.176359pt;}
._b{width:350.468428pt;}
._10{width:495.213930pt;}
._c{width:702.932493pt;}
.fs7{font-size:33.857616pt;}
.fs8{font-size:38.527632pt;}
.fs2{font-size:42.625067pt;}
.fs5{font-size:43.197648pt;}
.fs6{font-size:47.867664pt;}
.fs3{font-size:52.537680pt;}
.fs9{font-size:58.375200pt;}
.fs4{font-size:67.715232pt;}
.fse{font-size:69.333333pt;}
.fs1{font-size:74.666667pt;}
.fsc{font-size:77.055264pt;}
.fsd{font-size:96.000000pt;}
.fsb{font-size:126.090432pt;}
.fs0{font-size:128.000000pt;}
.fsa{font-size:175.125600pt;}
.y4a{bottom:-43.781333pt;}
.y3e{bottom:-40.278667pt;}
.y41{bottom:-35.608000pt;}
.y33{bottom:-26.853333pt;}
.y36{bottom:-22.182667pt;}
.y49{bottom:-18.096000pt;}
.y4c{bottom:-15.177333pt;}
.y3d{bottom:-14.593333pt;}
.y87{bottom:-13.329107pt;}
.y40{bottom:-11.674667pt;}
.y32{bottom:-1.168000pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:0.290667pt;}
.y43{bottom:0.292000pt;}
.y52{bottom:0.582667pt;}
.y64{bottom:1.168000pt;}
.y35{bottom:1.750667pt;}
.y3a{bottom:2.042667pt;}
.y67{bottom:2.628000pt;}
.y77{bottom:2.918667pt;}
.y68{bottom:2.920000pt;}
.y7b{bottom:3.210667pt;}
.y6d{bottom:3.793333pt;}
.y6a{bottom:3.794667pt;}
.y57{bottom:4.085333pt;}
.y54{bottom:4.086667pt;}
.y81{bottom:4.377333pt;}
.y5b{bottom:4.378667pt;}
.y4e{bottom:6.129333pt;}
.y75{bottom:6.421333pt;}
.y45{bottom:7.296000pt;}
.y48{bottom:7.589333pt;}
.y46{bottom:8.464000pt;}
.y4b{bottom:8.757333pt;}
.y2e{bottom:11.090667pt;}
.y3c{bottom:11.092000pt;}
.y42{bottom:11.968000pt;}
.y3f{bottom:12.258667pt;}
.y39{bottom:13.425333pt;}
.y18{bottom:17.318000pt;}
.y73{bottom:21.988000pt;}
.y31{bottom:24.517333pt;}
.y38{bottom:25.393333pt;}
.y34{bottom:25.685333pt;}
.yc5{bottom:29.333333pt;}
.y72{bottom:51.175600pt;}
.yb3{bottom:51.759333pt;}
.yb2{bottom:68.688133pt;}
.y71{bottom:80.071333pt;}
.yb1{bottom:84.449467pt;}
.y15{bottom:94.666667pt;}
.yb0{bottom:100.794533pt;}
.y70{bottom:108.675200pt;}
.y14{bottom:109.333333pt;}
.yaf{bottom:117.139333pt;}
.y16{bottom:126.666667pt;}
.yae{bottom:133.484667pt;}
.y6f{bottom:134.944667pt;}
.y13{bottom:144.000000pt;}
.yad{bottom:150.122000pt;}
.y6c{bottom:164.813333pt;}
.yac{bottom:166.467333pt;}
.y12{bottom:177.333333pt;}
.y6b{bottom:178.530667pt;}
.yab{bottom:182.811333pt;}
.y69{bottom:192.249333pt;}
.yaa{bottom:199.156667pt;}
.y65{bottom:203.827333pt;}
.y66{bottom:205.966667pt;}
.y11{bottom:210.666667pt;}
.ya9{bottom:217.254000pt;}
.y63{bottom:219.977333pt;}
.yc4{bottom:232.000000pt;}
.y62{bottom:233.598000pt;}
.ya8{bottom:241.187333pt;}
.y10{bottom:245.333333pt;}
.y60{bottom:249.943333pt;}
.y61{bottom:263.466667pt;}
.y5e{bottom:263.662000pt;}
.ya7{bottom:264.828667pt;}
.yc3{bottom:268.000000pt;}
.y5f{bottom:277.185333pt;}
.y5c{bottom:277.379333pt;}
.ya6{bottom:288.763333pt;}
.y5d{bottom:290.904000pt;}
.y59{bottom:291.390000pt;}
.y5a{bottom:304.621333pt;}
.y58{bottom:305.108667pt;}
.yc2{bottom:306.666667pt;}
.ya5{bottom:312.696667pt;}
.yf{bottom:313.333333pt;}
.y56{bottom:318.632000pt;}
.y55{bottom:332.349333pt;}
.ya4{bottom:336.631333pt;}
.yc1{bottom:342.666667pt;}
.y53{bottom:346.068000pt;}
.ye{bottom:346.666667pt;}
.y51{bottom:360.078667pt;}
.ya3{bottom:360.272667pt;}
.y50{bottom:371.363333pt;}
.yc0{bottom:381.333333pt;}
.ya2{bottom:384.206000pt;}
.ya1{bottom:408.140667pt;}
.yd{bottom:414.666667pt;}
.ybf{bottom:417.333333pt;}
.ya0{bottom:431.782000pt;}
.y4f{bottom:436.744667pt;}
.yc{bottom:448.000000pt;}
.ybe{bottom:454.666667pt;}
.y9f{bottom:455.716667pt;}
.y4d{bottom:466.613333pt;}
.y9e{bottom:479.650000pt;}
.yb{bottom:482.666667pt;}
.y47{bottom:483.833333pt;}
.ybd{bottom:492.000000pt;}
.y44{bottom:501.346667pt;}
.y9d{bottom:503.584667pt;}
.ya{bottom:516.000000pt;}
.y3b{bottom:518.274667pt;}
.y9c{bottom:527.226000pt;}
.ybc{bottom:529.333333pt;}
.y30{bottom:539.290667pt;}
.y2f{bottom:546.490000pt;}
.y37{bottom:547.658000pt;}
.y9{bottom:549.333333pt;}
.y9b{bottom:551.159333pt;}
.ybb{bottom:564.000000pt;}
.y2c{bottom:566.922000pt;}
.y2d{bottom:573.440000pt;}
.y9a{bottom:575.094000pt;}
.y8{bottom:584.000000pt;}
.y2b{bottom:595.232667pt;}
.yba{bottom:597.333333pt;}
.y99{bottom:599.027333pt;}
.y7{bottom:617.333333pt;}
.y98{bottom:621.210000pt;}
.y2a{bottom:626.172667pt;}
.yb9{bottom:630.666667pt;}
.y97{bottom:637.555333pt;}
.y80{bottom:643.490667pt;}
.y96{bottom:653.900667pt;}
.y29{bottom:656.235333pt;}
.y7f{bottom:658.668000pt;}
.yb8{bottom:665.333333pt;}
.y95{bottom:670.246000pt;}
.y7e{bottom:672.677333pt;}
.y28{bottom:681.920667pt;}
.y6{bottom:685.333333pt;}
.y7d{bottom:686.396000pt;}
.y94{bottom:686.882000pt;}
.y27{bottom:696.806000pt;}
.y7c{bottom:700.114667pt;}
.yb7{bottom:701.333333pt;}
.y93{bottom:703.227333pt;}
.y26{bottom:708.482000pt;}
.y7a{bottom:713.832000pt;}
.y5{bottom:718.666667pt;}
.y92{bottom:719.572667pt;}
.y25{bottom:720.156667pt;}
.y79{bottom:727.842667pt;}
.y24{bottom:732.415333pt;}
.y91{bottom:738.252667pt;}
.yb6{bottom:740.000000pt;}
.y78{bottom:741.561333pt;}
.y23{bottom:744.382000pt;}
.y4{bottom:753.333333pt;}
.y90{bottom:754.598000pt;}
.y76{bottom:755.278667pt;}
.y22{bottom:756.348667pt;}
.y21{bottom:768.316667pt;}
.y74{bottom:769.289333pt;}
.y8f{bottom:770.943333pt;}
.yb5{bottom:776.000000pt;}
.y20{bottom:780.283333pt;}
.y3{bottom:786.666667pt;}
.y8e{bottom:787.287333pt;}
.y1f{bottom:796.044667pt;}
.y8d{bottom:803.632667pt;}
.y1e{bottom:811.806000pt;}
.y8c{bottom:819.978000pt;}
.yb4{bottom:820.000000pt;}
.y2{bottom:821.333333pt;}
.y1d{bottom:826.983333pt;}
.y8b{bottom:836.615333pt;}
.y1c{bottom:845.079333pt;}
.y17{bottom:850.738923pt;}
.y8a{bottom:853.835333pt;}
.y89{bottom:870.764667pt;}
.y1b{bottom:879.520667pt;}
.y88{bottom:890.320667pt;}
.y1a{bottom:894.990000pt;}
.y1{bottom:909.333333pt;}
.y86{bottom:926.220667pt;}
.y85{bottom:943.150000pt;}
.y84{bottom:960.079333pt;}
.y19{bottom:967.667333pt;}
.y83{bottom:976.715333pt;}
.yc6{bottom:982.666667pt;}
.y82{bottom:993.644667pt;}
.h14{height:13.134427pt;}
.h16{height:13.134440pt;}
.h1c{height:14.593867pt;}
.h12{height:16.345067pt;}
.h1b{height:16.636933pt;}
.h10{height:19.847600pt;}
.h19{height:29.271970pt;}
.he{height:29.381994pt;}
.h1a{height:31.774009pt;}
.h18{height:32.398236pt;}
.h11{height:33.565867pt;}
.hd{height:35.312435pt;}
.h8{height:35.734858pt;}
.h17{height:35.900748pt;}
.h13{height:36.368206pt;}
.hf{height:40.183116pt;}
.h1f{height:40.993756pt;}
.h9{height:43.328194pt;}
.h6{height:44.456612pt;}
.hb{height:45.053797pt;}
.h23{height:47.909333pt;}
.hc{height:49.924478pt;}
.h20{height:50.716305pt;}
.h4{height:53.088000pt;}
.h2{height:53.386667pt;}
.h15{height:54.795158pt;}
.h3{height:55.552000pt;}
.h1d{height:57.292066pt;}
.h21{height:60.124176pt;}
.h24{height:66.336000pt;}
.h22{height:68.640000pt;}
.ha{height:70.624871pt;}
.h1{height:95.232000pt;}
.h1e{height:116.721896pt;}
.h5{height:869.333333pt;}
.h7{height:989.850667pt;}
.h0{height:1024.000000pt;}
.w3{width:42.344933pt;}
.w15{width:53.734133pt;}
.w5{width:59.574800pt;}
.w6{width:68.043867pt;}
.w12{width:85.857867pt;}
.w8{width:94.034800pt;}
.w11{width:102.795867pt;}
.w13{width:103.087867pt;}
.wc{width:107.176400pt;}
.wa{width:111.556800pt;}
.w7{width:128.494800pt;}
.w14{width:137.256000pt;}
.wb{width:146.017333pt;}
.wd{width:150.397333pt;}
.w10{width:172.008000pt;}
.w16{width:223.989333pt;}
.w4{width:240.636000pt;}
.wf{width:240.928000pt;}
.we{width:361.829333pt;}
.w9{width:516.900000pt;}
.w17{width:688.428000pt;}
.w2{width:689.698667pt;}
.w1{width:1168.000000pt;}
.w0{width:1365.333333pt;}
.x0{left:0.000000pt;}
.x1a{left:4.302667pt;}
.x1b{left:6.218667pt;}
.x21{left:8.357333pt;}
.x23{left:10.285333pt;}
.x11{left:12.283733pt;}
.x4{left:13.923122pt;}
.x6{left:17.607200pt;}
.x16{left:20.789333pt;}
.x26{left:22.819467pt;}
.x18{left:24.138667pt;}
.x32{left:26.118667pt;}
.x29{left:27.548800pt;}
.x24{left:28.727467pt;}
.x1f{left:30.652800pt;}
.x25{left:31.884000pt;}
.x8{left:34.824933pt;}
.x30{left:40.570667pt;}
.xf{left:43.464267pt;}
.xe{left:52.103467pt;}
.x27{left:53.410667pt;}
.x2a{left:55.894133pt;}
.x5{left:61.193467pt;}
.x13{left:68.496000pt;}
.x2b{left:73.112000pt;}
.x28{left:75.040000pt;}
.x2d{left:79.007600pt;}
.x34{left:86.072000pt;}
.x2e{left:91.948400pt;}
.x1c{left:94.753200pt;}
.x10{left:96.237467pt;}
.x3{left:98.666667pt;}
.x1d{left:122.228533pt;}
.x12{left:139.458667pt;}
.x1{left:148.000000pt;}
.x7{left:150.421200pt;}
.x1e{left:166.610133pt;}
.x33{left:182.680000pt;}
.x20{left:234.369333pt;}
.x9{left:249.874533pt;}
.xb{left:255.305200pt;}
.xc{left:259.342533pt;}
.xa{left:267.063867pt;}
.x2c{left:320.518667pt;}
.xd{left:337.231867pt;}
.x14{left:380.970667pt;}
.x35{left:425.066667pt;}
.x15{left:441.421333pt;}
.x36{left:479.093333pt;}
.x22{left:488.730667pt;}
.x2f{left:493.110667pt;}
.x17{left:510.341333pt;}
.x31{left:596.490667pt;}
.x19{left:639.712000pt;}
.x2{left:790.666667pt;}
.x37{left:1049.333333pt;}
.x38{left:1208.000000pt;}
}




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