
    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_f6d0ad6996b0386e7e557cd0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_590e0d48ddfc7641e7e4c929.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1e789d010b771f59e6bce2b7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_fea4df574c73b56e85975ed9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6c61b1a3fe8869b065d3b21b.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_1f9f4fc7c0127f74cd5e05e6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8b59da44f8eb2fc89d6519d4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893066;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_ebc801ea852054b643babb37.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_74a2843a852b0b8300b098f6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_0a11e1a133fc8b073d883267.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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_1cbcd0e5d4c9eeb5415246ab.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.690918;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_c76b7d55c6ada723a65670de.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_55502f71a12c7087120f8311.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.690918;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_f37caec432fcbd76251fd526.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.858398;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_d816e82da8b03e669663cda9.woff2')format("woff");}.fff{font-family:fff;line-height:0.858398;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_9a57bc633138011922e026c5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.858398;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_18977fdb56b4f3f9a964dcf7.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.858398;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_071f66a55e22dbfd4575d26e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.858398;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_e06b48339e8c50c2109b9309.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.858398;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_512eb224f2b874c216ba9b6e.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.858398;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_3c4b1e7caefe89a2c98970e4.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.858398;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_c027ec4355e8659fe39b6496.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.858398;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_24b95f2312901f6f4652f5b9.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.858398;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_71c5c926bb09f4525ccdf25b.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.858398;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_f7db53f73feb6e4bc024c2e4.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.858398;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_964dcd0aa0041710669c364f.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.858398;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.152863,-0.197820,0.197820,0.152863,0,0);-ms-transform:matrix(0.152863,-0.197820,0.197820,0.152863,0,0);-webkit-transform:matrix(0.152863,-0.197820,0.197820,0.152863,0,0);}
.m1{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);}
.v2{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.lsc{letter-spacing:-0.936000px;}
.ls16{letter-spacing:-0.672000px;}
.ls13{letter-spacing:-0.576000px;}
.ls20{letter-spacing:-0.504000px;}
.ls8{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.144000px;}
.ls21{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.072000px;}
.ls18{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.181440px;}
.ls14{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.269280px;}
.ls26{letter-spacing:0.269400px;}
.ls27{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.432000px;}
.ls1a{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.540000px;}
.ls19{letter-spacing:0.576000px;}
.ls7{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.792000px;}
.ls24{letter-spacing:0.864000px;}
.ls3{letter-spacing:1.080000px;}
.ls28{letter-spacing:1.152000px;}
.ls23{letter-spacing:1.440000px;}
.ls1e{letter-spacing:3.744000px;}
.ls1f{letter-spacing:8.064000px;}
.ls17{letter-spacing:13.140000px;}
.lsd{letter-spacing:20.304000px;}
.ls15{letter-spacing:21.600000px;}
.ls1d{letter-spacing:51.984000px;}
.lse{letter-spacing:54.864000px;}
.ls22{letter-spacing:72.144000px;}
.lsb{letter-spacing:105.984000px;}
.ls11{letter-spacing:141.960000px;}
.lsa{letter-spacing:141.984000px;}
.lsf{letter-spacing:146.280000px;}
.ls25{letter-spacing:180.144000px;}
.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;}
}
.ws8{word-spacing:-72.000000px;}
.ws14{word-spacing:-19.440000px;}
.ws3{word-spacing:-18.792000px;}
.ws5{word-spacing:-18.720000px;}
.wse{word-spacing:-18.576000px;}
.ws12{word-spacing:-18.504000px;}
.wsf{word-spacing:-18.432000px;}
.wsb{word-spacing:-18.216000px;}
.ws0{word-spacing:-18.144000px;}
.ws13{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.928000px;}
.wsa{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws10{word-spacing:-17.496000px;}
.ws7{word-spacing:-17.064000px;}
.wsd{word-spacing:-12.420000px;}
.ws15{word-spacing:-12.329400px;}
.ws1{word-spacing:-12.060000px;}
.wsc{word-spacing:-11.388000px;}
.ws4{word-spacing:0.000000px;}
._23{margin-left:-16.008000px;}
._16{margin-left:-2.148000px;}
._0{margin-left:-1.068000px;}
._3{width:1.056000px;}
._6{width:2.245440px;}
._2{width:3.816000px;}
._1{width:5.148000px;}
._13{width:6.492000px;}
._e{width:7.992000px;}
._f{width:9.240000px;}
._15{width:10.704000px;}
._17{width:11.760000px;}
._8{width:12.960000px;}
._9{width:14.136000px;}
._7{width:15.804000px;}
._10{width:16.954560px;}
._21{width:19.008000px;}
._c{width:20.016000px;}
._d{width:21.240000px;}
._1a{width:22.524000px;}
._4{width:23.760000px;}
._5{width:24.852000px;}
._14{width:26.496000px;}
._20{width:27.792000px;}
._26{width:28.800000px;}
._a{width:29.856000px;}
._b{width:31.020000px;}
._22{width:32.388000px;}
._25{width:33.468000px;}
._1c{width:34.524000px;}
._1b{width:36.204000px;}
._1f{width:37.584000px;}
._1d{width:38.592000px;}
._1e{width:40.104000px;}
._12{width:41.256000px;}
._11{width:42.312000px;}
._2b{width:43.320000px;}
._29{width:44.424000px;}
._2d{width:45.912000px;}
._2a{width:51.768000px;}
._2c{width:53.088000px;}
._27{width:57.096000px;}
._28{width:58.104000px;}
._19{width:76.416000px;}
._18{width:77.736000px;}
._24{width:846.156000px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(216,216,216);}
.fs2{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:59.999889px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:120.000000px;}
.fs0{font-size:239.999417px;}
.y0{bottom:0.000000px;}
.y4{bottom:4.500000px;}
.ye5{bottom:10.500000px;}
.y21{bottom:20.482012px;}
.yc7{bottom:24.840000px;}
.yda{bottom:24.885000px;}
.yc9{bottom:25.200000px;}
.ycc{bottom:25.245000px;}
.y20{bottom:36.681982px;}
.y1f{bottom:52.881952px;}
.y3{bottom:52.956000px;}
.y1d{bottom:55.036650px;}
.y2{bottom:57.456000px;}
.yd6{bottom:66.240000px;}
.yd9{bottom:66.285000px;}
.ydd{bottom:66.600000px;}
.ydb{bottom:66.645000px;}
.y1e{bottom:69.081922px;}
.yd5{bottom:107.640000px;}
.yd8{bottom:107.685000px;}
.yd4{bottom:108.000000px;}
.ya7{bottom:127.656000px;}
.y83{bottom:143.856000px;}
.y93{bottom:145.656000px;}
.y3e{bottom:146.556000px;}
.y45{bottom:149.076000px;}
.yc3{bottom:151.050000px;}
.y89{bottom:152.490000px;}
.y1b{bottom:152.850000px;}
.ybf{bottom:163.650000px;}
.ya2{bottom:169.050000px;}
.y70{bottom:176.250000px;}
.y82{bottom:185.250000px;}
.y92{bottom:187.050000px;}
.y3d{bottom:187.950000px;}
.y44{bottom:190.470000px;}
.yb9{bottom:192.450000px;}
.y88{bottom:193.890000px;}
.y1a{bottom:194.250000px;}
.ybb{bottom:205.050000px;}
.ya1{bottom:210.450000px;}
.y6f{bottom:217.650000px;}
.y81{bottom:226.650000px;}
.yaa{bottom:228.450000px;}
.y3c{bottom:229.350000px;}
.y43{bottom:231.690000px;}
.y5a{bottom:231.870000px;}
.yb8{bottom:233.850000px;}
.y87{bottom:235.290000px;}
.y2d{bottom:235.650000px;}
.y19{bottom:243.930000px;}
.y91{bottom:246.450000px;}
.ybc{bottom:251.850000px;}
.y6e{bottom:259.050000px;}
.ybe{bottom:264.495000px;}
.y80{bottom:268.095000px;}
.ya0{bottom:269.895000px;}
.y3b{bottom:270.615000px;}
.y59{bottom:272.955000px;}
.y42{bottom:274.395000px;}
.y30{bottom:276.735000px;}
.y2c{bottom:277.095000px;}
.y18{bottom:285.375000px;}
.y90{bottom:287.895000px;}
.yb7{bottom:293.295000px;}
.y6d{bottom:300.495000px;}
.y1{bottom:301.215000px;}
.ybd{bottom:305.895000px;}
.y7f{bottom:309.495000px;}
.y9f{bottom:311.295000px;}
.y3a{bottom:312.015000px;}
.y58{bottom:314.715000px;}
.y41{bottom:317.055000px;}
.y5c{bottom:318.135000px;}
.y17{bottom:318.495000px;}
.y8f{bottom:329.295000px;}
.yb6{bottom:334.695000px;}
.y6c{bottom:341.895000px;}
.yba{bottom:347.295000px;}
.ye0{bottom:350.535000px;}
.y7e{bottom:350.895000px;}
.y9e{bottom:352.695000px;}
.y39{bottom:353.415000px;}
.y57{bottom:356.115000px;}
.y5b{bottom:359.535000px;}
.y2b{bottom:359.895000px;}
.y16{bottom:368.175000px;}
.ya6{bottom:370.695000px;}
.y6b{bottom:383.295000px;}
.y8e{bottom:388.695000px;}
.y7d{bottom:391.935000px;}
.yad{bottom:394.095000px;}
.y38{bottom:394.815000px;}
.y56{bottom:397.515000px;}
.y40{bottom:400.935000px;}
.y15{bottom:401.295000px;}
.ydf{bottom:410.115000px;}
.y9d{bottom:412.095000px;}
.y6a{bottom:424.695000px;}
.y8d{bottom:430.095000px;}
.y7c{bottom:433.695000px;}
.yb5{bottom:435.495000px;}
.y37{bottom:436.215000px;}
.y55{bottom:438.915000px;}
.y71{bottom:442.335000px;}
.y2a{bottom:442.695000px;}
.y14{bottom:450.975000px;}
.y9c{bottom:453.495000px;}
.y69{bottom:466.095000px;}
.ya9{bottom:471.495000px;}
.y7b{bottom:474.735000px;}
.yb4{bottom:476.895000px;}
.y36{bottom:479.055000px;}
.y54{bottom:480.315000px;}
.y8a{bottom:483.735000px;}
.y29{bottom:484.095000px;}
.y8c{bottom:489.495000px;}
.y13{bottom:492.375000px;}
.y9b{bottom:494.895000px;}
.y68{bottom:507.495000px;}
.yd3{bottom:510.555000px;}
.yc5{bottom:512.535000px;}
.ya5{bottom:512.895000px;}
.y7a{bottom:516.495000px;}
.yc2{bottom:518.295000px;}
.y35{bottom:520.275000px;}
.y53{bottom:521.715000px;}
.y28{bottom:525.495000px;}
.y8b{bottom:530.925000px;}
.y12{bottom:533.805000px;}
.yde{bottom:535.785000px;}
.yb3{bottom:536.325000px;}
.y67{bottom:548.925000px;}
.yd2{bottom:551.985000px;}
.yc4{bottom:553.965000px;}
.y9a{bottom:554.325000px;}
.y79{bottom:557.925000px;}
.y34{bottom:562.965000px;}
.y52{bottom:563.145000px;}
.y27{bottom:566.925000px;}
.yd1{bottom:569.625000px;}
.yb0{bottom:572.325000px;}
.y11{bottom:575.205000px;}
.yb2{bottom:577.725000px;}
.y66{bottom:590.325000px;}
.y99{bottom:595.725000px;}
.y78{bottom:599.325000px;}
.y51{bottom:604.545000px;}
.y33{bottom:605.625000px;}
.y85{bottom:607.965000px;}
.y26{bottom:608.325000px;}
.yd0{bottom:612.645000px;}
.yaf{bottom:613.725000px;}
.y10{bottom:616.605000px;}
.yc1{bottom:619.125000px;}
.y65{bottom:631.725000px;}
.y98{bottom:637.125000px;}
.y77{bottom:640.725000px;}
.y50{bottom:645.945000px;}
.y32{bottom:648.465000px;}
.y84{bottom:649.365000px;}
.yf{bottom:649.725000px;}
.ya4{bottom:655.125000px;}
.ycf{bottom:655.485000px;}
.ydc{bottom:661.425000px;}
.y64{bottom:673.125000px;}
.yac{bottom:678.525000px;}
.y76{bottom:682.125000px;}
.y4f{bottom:687.345000px;}
.y31{bottom:689.685000px;}
.y3f{bottom:690.765000px;}
.y25{bottom:691.125000px;}
.y97{bottom:696.525000px;}
.yce{bottom:698.325000px;}
.ye{bottom:699.405000px;}
.y63{bottom:714.525000px;}
.yb1{bottom:719.925000px;}
.y75{bottom:723.525000px;}
.y4e{bottom:728.745000px;}
.y86{bottom:732.165000px;}
.yd{bottom:732.525000px;}
.y96{bottom:737.925000px;}
.ycd{bottom:741.165000px;}
.y62{bottom:755.925000px;}
.yc0{bottom:761.325000px;}
.y74{bottom:764.925000px;}
.ye4{bottom:768.705000px;}
.y4d{bottom:770.145000px;}
.y2f{bottom:773.565000px;}
.yc{bottom:773.925000px;}
.ya8{bottom:779.325000px;}
.ycb{bottom:784.185000px;}
.yd7{bottom:787.065000px;}
.y61{bottom:797.370000px;}
.y73{bottom:806.370000px;}
.y4c{bottom:811.590000px;}
.yb{bottom:815.370000px;}
.yab{bottom:820.770000px;}
.yca{bottom:827.070000px;}
.y60{bottom:838.770000px;}
.y72{bottom:847.770000px;}
.ye3{bottom:852.810000px;}
.y4b{bottom:852.990000px;}
.y5e{bottom:856.410000px;}
.ya{bottom:856.770000px;}
.yae{bottom:862.170000px;}
.yc8{bottom:869.910000px;}
.y5f{bottom:879.810000px;}
.y95{bottom:880.170000px;}
.y4a{bottom:894.210000px;}
.ye2{bottom:895.470000px;}
.y5d{bottom:897.810000px;}
.y9{bottom:898.170000px;}
.yc6{bottom:912.930000px;}
.y94{bottom:921.570000px;}
.y49{bottom:936.870000px;}
.ye1{bottom:938.130000px;}
.y8{bottom:939.210000px;}
.y24{bottom:939.570000px;}
.ya3{bottom:962.970000px;}
.y48{bottom:979.710000px;}
.y7{bottom:980.610000px;}
.y23{bottom:980.970000px;}
.y47{bottom:1021.110000px;}
.y6{bottom:1022.010000px;}
.y2e{bottom:1022.370000px;}
.y46{bottom:1062.360000px;}
.y22{bottom:1063.440000px;}
.y5{bottom:1063.800000px;}
.y1c{bottom:1143.000000px;}
.h3{height:20.700000px;}
.h14{height:36.729492px;}
.he{height:41.400000px;}
.hf{height:41.436000px;}
.h6{height:47.344922px;}
.hc{height:49.992188px;}
.h9{height:62.578009px;}
.hd{height:70.628906px;}
.h2{height:70.664062px;}
.h4{height:72.562500px;}
.hb{height:74.004654px;}
.ha{height:74.953125px;}
.h5{height:80.464922px;}
.h8{height:80.925750px;}
.h10{height:124.200000px;}
.h11{height:124.236000px;}
.h7{height:125.156250px;}
.h1{height:250.311892px;}
.h1d{height:280.500000px;}
.h1c{height:280.680000px;}
.h1f{height:440.250000px;}
.h1e{height:440.520000px;}
.h1b{height:468.750000px;}
.h1a{height:468.960000px;}
.h27{height:483.750000px;}
.h26{height:484.080000px;}
.h22{height:500.640000px;}
.h23{height:501.000000px;}
.h2a{height:633.480000px;}
.h2b{height:633.750000px;}
.h28{height:722.760000px;}
.h29{height:723.000000px;}
.h19{height:792.000000px;}
.h18{height:792.240000px;}
.h20{height:795.480000px;}
.h21{height:795.750000px;}
.h17{height:816.000000px;}
.h16{height:843.750000px;}
.h15{height:844.080000px;}
.h24{height:899.160000px;}
.h25{height:899.250000px;}
.h13{height:906.000000px;}
.h12{height:906.360000px;}
.h0{height:1188.000000px;}
.w1{width:9.000000px;}
.w3{width:18.000000px;}
.wa{width:77.436000px;}
.wc{width:87.660000px;}
.we{width:97.560000px;}
.w5{width:113.256000px;}
.wd{width:120.096000px;}
.w6{width:123.876000px;}
.w4{width:125.820000px;}
.wb{width:127.476000px;}
.w7{width:139.320000px;}
.w9{width:145.440000px;}
.w8{width:149.436000px;}
.w21{width:402.000000px;}
.w20{width:402.240000px;}
.w18{width:512.760000px;}
.w19{width:513.000000px;}
.w1e{width:538.320000px;}
.w1f{width:538.500000px;}
.w10{width:563.250000px;}
.wf{width:563.520000px;}
.w14{width:584.760000px;}
.w15{width:585.000000px;}
.w13{width:606.000000px;}
.w12{width:648.750000px;}
.w11{width:648.840000px;}
.w16{width:691.320000px;}
.w17{width:691.500000px;}
.w1c{width:755.040000px;}
.w1d{width:755.250000px;}
.w1b{width:797.250000px;}
.w1a{width:797.520000px;}
.w2{width:892.991940px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:5.220000px;}
.x5{left:6.474060px;}
.x2a{left:8.460000px;}
.x20{left:14.625000px;}
.x1f{left:16.605000px;}
.x17{left:18.360000px;}
.x21{left:20.025000px;}
.x26{left:21.780000px;}
.x15{left:22.905000px;}
.x27{left:25.200000px;}
.x1c{left:28.080000px;}
.x2c{left:32.580000px;}
.xf{left:35.274000px;}
.x16{left:38.334000px;}
.x2d{left:39.780000px;}
.x23{left:41.760000px;}
.x24{left:45.360000px;}
.x2b{left:48.060000px;}
.x18{left:51.660000px;}
.x1b{left:56.160000px;}
.x19{left:58.905000px;}
.x1a{left:70.245000px;}
.x1d{left:127.476000px;}
.xe{left:130.356000px;}
.x2{left:134.856000px;}
.x6{left:161.850000px;}
.x39{left:175.695000px;}
.x7{left:188.850000px;}
.xa{left:214.230000px;}
.x9{left:215.850000px;}
.xc{left:218.910000px;}
.x1{left:232.755000px;}
.x34{left:234.375000px;}
.x38{left:243.735000px;}
.x10{left:257.610000px;}
.x2e{left:259.755000px;}
.x31{left:267.135000px;}
.xb{left:269.850000px;}
.x4{left:272.340000px;}
.x1e{left:274.530000px;}
.x32{left:277.455000px;}
.x30{left:280.995000px;}
.x2f{left:302.415000px;}
.x33{left:323.655000px;}
.x22{left:353.595000px;}
.x36{left:355.515000px;}
.x12{left:372.315000px;}
.x37{left:373.335000px;}
.x35{left:376.755000px;}
.xd{left:459.075000px;}
.x25{left:482.505000px;}
.x13{left:497.625000px;}
.x28{left:571.605000px;}
.x14{left:638.385000px;}
.x29{left:693.150000px;}
.x8{left:765.330000px;}
.x3{left:774.330000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.lsc{letter-spacing:-0.832000pt;}
.ls16{letter-spacing:-0.597333pt;}
.ls13{letter-spacing:-0.512000pt;}
.ls20{letter-spacing:-0.448000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls21{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.064000pt;}
.ls18{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.161280pt;}
.ls14{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.239360pt;}
.ls26{letter-spacing:0.239467pt;}
.ls27{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.384000pt;}
.ls1a{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.480000pt;}
.ls19{letter-spacing:0.512000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.704000pt;}
.ls24{letter-spacing:0.768000pt;}
.ls3{letter-spacing:0.960000pt;}
.ls28{letter-spacing:1.024000pt;}
.ls23{letter-spacing:1.280000pt;}
.ls1e{letter-spacing:3.328000pt;}
.ls1f{letter-spacing:7.168000pt;}
.ls17{letter-spacing:11.680000pt;}
.lsd{letter-spacing:18.048000pt;}
.ls15{letter-spacing:19.200000pt;}
.ls1d{letter-spacing:46.208000pt;}
.lse{letter-spacing:48.768000pt;}
.ls22{letter-spacing:64.128000pt;}
.lsb{letter-spacing:94.208000pt;}
.ls11{letter-spacing:126.186667pt;}
.lsa{letter-spacing:126.208000pt;}
.lsf{letter-spacing:130.026667pt;}
.ls25{letter-spacing:160.128000pt;}
.ws8{word-spacing:-64.000000pt;}
.ws14{word-spacing:-17.280000pt;}
.ws3{word-spacing:-16.704000pt;}
.ws5{word-spacing:-16.640000pt;}
.wse{word-spacing:-16.512000pt;}
.ws12{word-spacing:-16.448000pt;}
.wsf{word-spacing:-16.384000pt;}
.wsb{word-spacing:-16.192000pt;}
.ws0{word-spacing:-16.128000pt;}
.ws13{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.936000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws10{word-spacing:-15.552000pt;}
.ws7{word-spacing:-15.168000pt;}
.wsd{word-spacing:-11.040000pt;}
.ws15{word-spacing:-10.959467pt;}
.ws1{word-spacing:-10.720000pt;}
.wsc{word-spacing:-10.122667pt;}
.ws4{word-spacing:0.000000pt;}
._23{margin-left:-14.229333pt;}
._16{margin-left:-1.909333pt;}
._0{margin-left:-0.949333pt;}
._3{width:0.938667pt;}
._6{width:1.995947pt;}
._2{width:3.392000pt;}
._1{width:4.576000pt;}
._13{width:5.770667pt;}
._e{width:7.104000pt;}
._f{width:8.213333pt;}
._15{width:9.514667pt;}
._17{width:10.453333pt;}
._8{width:11.520000pt;}
._9{width:12.565333pt;}
._7{width:14.048000pt;}
._10{width:15.070720pt;}
._21{width:16.896000pt;}
._c{width:17.792000pt;}
._d{width:18.880000pt;}
._1a{width:20.021333pt;}
._4{width:21.120000pt;}
._5{width:22.090667pt;}
._14{width:23.552000pt;}
._20{width:24.704000pt;}
._26{width:25.600000pt;}
._a{width:26.538667pt;}
._b{width:27.573333pt;}
._22{width:28.789333pt;}
._25{width:29.749333pt;}
._1c{width:30.688000pt;}
._1b{width:32.181333pt;}
._1f{width:33.408000pt;}
._1d{width:34.304000pt;}
._1e{width:35.648000pt;}
._12{width:36.672000pt;}
._11{width:37.610667pt;}
._2b{width:38.506667pt;}
._29{width:39.488000pt;}
._2d{width:40.810667pt;}
._2a{width:46.016000pt;}
._2c{width:47.189333pt;}
._27{width:50.752000pt;}
._28{width:51.648000pt;}
._19{width:67.925333pt;}
._18{width:69.098667pt;}
._24{width:752.138667pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.333234pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:106.666667pt;}
.fs0{font-size:213.332815pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:4.000000pt;}
.ye5{bottom:9.333333pt;}
.y21{bottom:18.206233pt;}
.yc7{bottom:22.080000pt;}
.yda{bottom:22.120000pt;}
.yc9{bottom:22.400000pt;}
.ycc{bottom:22.440000pt;}
.y20{bottom:32.606206pt;}
.y1f{bottom:47.006180pt;}
.y3{bottom:47.072000pt;}
.y1d{bottom:48.921467pt;}
.y2{bottom:51.072000pt;}
.yd6{bottom:58.880000pt;}
.yd9{bottom:58.920000pt;}
.ydd{bottom:59.200000pt;}
.ydb{bottom:59.240000pt;}
.y1e{bottom:61.406153pt;}
.yd5{bottom:95.680000pt;}
.yd8{bottom:95.720000pt;}
.yd4{bottom:96.000000pt;}
.ya7{bottom:113.472000pt;}
.y83{bottom:127.872000pt;}
.y93{bottom:129.472000pt;}
.y3e{bottom:130.272000pt;}
.y45{bottom:132.512000pt;}
.yc3{bottom:134.266667pt;}
.y89{bottom:135.546667pt;}
.y1b{bottom:135.866667pt;}
.ybf{bottom:145.466667pt;}
.ya2{bottom:150.266667pt;}
.y70{bottom:156.666667pt;}
.y82{bottom:164.666667pt;}
.y92{bottom:166.266667pt;}
.y3d{bottom:167.066667pt;}
.y44{bottom:169.306667pt;}
.yb9{bottom:171.066667pt;}
.y88{bottom:172.346667pt;}
.y1a{bottom:172.666667pt;}
.ybb{bottom:182.266667pt;}
.ya1{bottom:187.066667pt;}
.y6f{bottom:193.466667pt;}
.y81{bottom:201.466667pt;}
.yaa{bottom:203.066667pt;}
.y3c{bottom:203.866667pt;}
.y43{bottom:205.946667pt;}
.y5a{bottom:206.106667pt;}
.yb8{bottom:207.866667pt;}
.y87{bottom:209.146667pt;}
.y2d{bottom:209.466667pt;}
.y19{bottom:216.826667pt;}
.y91{bottom:219.066667pt;}
.ybc{bottom:223.866667pt;}
.y6e{bottom:230.266667pt;}
.ybe{bottom:235.106667pt;}
.y80{bottom:238.306667pt;}
.ya0{bottom:239.906667pt;}
.y3b{bottom:240.546667pt;}
.y59{bottom:242.626667pt;}
.y42{bottom:243.906667pt;}
.y30{bottom:245.986667pt;}
.y2c{bottom:246.306667pt;}
.y18{bottom:253.666667pt;}
.y90{bottom:255.906667pt;}
.yb7{bottom:260.706667pt;}
.y6d{bottom:267.106667pt;}
.y1{bottom:267.746667pt;}
.ybd{bottom:271.906667pt;}
.y7f{bottom:275.106667pt;}
.y9f{bottom:276.706667pt;}
.y3a{bottom:277.346667pt;}
.y58{bottom:279.746667pt;}
.y41{bottom:281.826667pt;}
.y5c{bottom:282.786667pt;}
.y17{bottom:283.106667pt;}
.y8f{bottom:292.706667pt;}
.yb6{bottom:297.506667pt;}
.y6c{bottom:303.906667pt;}
.yba{bottom:308.706667pt;}
.ye0{bottom:311.586667pt;}
.y7e{bottom:311.906667pt;}
.y9e{bottom:313.506667pt;}
.y39{bottom:314.146667pt;}
.y57{bottom:316.546667pt;}
.y5b{bottom:319.586667pt;}
.y2b{bottom:319.906667pt;}
.y16{bottom:327.266667pt;}
.ya6{bottom:329.506667pt;}
.y6b{bottom:340.706667pt;}
.y8e{bottom:345.506667pt;}
.y7d{bottom:348.386667pt;}
.yad{bottom:350.306667pt;}
.y38{bottom:350.946667pt;}
.y56{bottom:353.346667pt;}
.y40{bottom:356.386667pt;}
.y15{bottom:356.706667pt;}
.ydf{bottom:364.546667pt;}
.y9d{bottom:366.306667pt;}
.y6a{bottom:377.506667pt;}
.y8d{bottom:382.306667pt;}
.y7c{bottom:385.506667pt;}
.yb5{bottom:387.106667pt;}
.y37{bottom:387.746667pt;}
.y55{bottom:390.146667pt;}
.y71{bottom:393.186667pt;}
.y2a{bottom:393.506667pt;}
.y14{bottom:400.866667pt;}
.y9c{bottom:403.106667pt;}
.y69{bottom:414.306667pt;}
.ya9{bottom:419.106667pt;}
.y7b{bottom:421.986667pt;}
.yb4{bottom:423.906667pt;}
.y36{bottom:425.826667pt;}
.y54{bottom:426.946667pt;}
.y8a{bottom:429.986667pt;}
.y29{bottom:430.306667pt;}
.y8c{bottom:435.106667pt;}
.y13{bottom:437.666667pt;}
.y9b{bottom:439.906667pt;}
.y68{bottom:451.106667pt;}
.yd3{bottom:453.826667pt;}
.yc5{bottom:455.586667pt;}
.ya5{bottom:455.906667pt;}
.y7a{bottom:459.106667pt;}
.yc2{bottom:460.706667pt;}
.y35{bottom:462.466667pt;}
.y53{bottom:463.746667pt;}
.y28{bottom:467.106667pt;}
.y8b{bottom:471.933333pt;}
.y12{bottom:474.493333pt;}
.yde{bottom:476.253333pt;}
.yb3{bottom:476.733333pt;}
.y67{bottom:487.933333pt;}
.yd2{bottom:490.653333pt;}
.yc4{bottom:492.413333pt;}
.y9a{bottom:492.733333pt;}
.y79{bottom:495.933333pt;}
.y34{bottom:500.413333pt;}
.y52{bottom:500.573333pt;}
.y27{bottom:503.933333pt;}
.yd1{bottom:506.333333pt;}
.yb0{bottom:508.733333pt;}
.y11{bottom:511.293333pt;}
.yb2{bottom:513.533333pt;}
.y66{bottom:524.733333pt;}
.y99{bottom:529.533333pt;}
.y78{bottom:532.733333pt;}
.y51{bottom:537.373333pt;}
.y33{bottom:538.333333pt;}
.y85{bottom:540.413333pt;}
.y26{bottom:540.733333pt;}
.yd0{bottom:544.573333pt;}
.yaf{bottom:545.533333pt;}
.y10{bottom:548.093333pt;}
.yc1{bottom:550.333333pt;}
.y65{bottom:561.533333pt;}
.y98{bottom:566.333333pt;}
.y77{bottom:569.533333pt;}
.y50{bottom:574.173333pt;}
.y32{bottom:576.413333pt;}
.y84{bottom:577.213333pt;}
.yf{bottom:577.533333pt;}
.ya4{bottom:582.333333pt;}
.ycf{bottom:582.653333pt;}
.ydc{bottom:587.933333pt;}
.y64{bottom:598.333333pt;}
.yac{bottom:603.133333pt;}
.y76{bottom:606.333333pt;}
.y4f{bottom:610.973333pt;}
.y31{bottom:613.053333pt;}
.y3f{bottom:614.013333pt;}
.y25{bottom:614.333333pt;}
.y97{bottom:619.133333pt;}
.yce{bottom:620.733333pt;}
.ye{bottom:621.693333pt;}
.y63{bottom:635.133333pt;}
.yb1{bottom:639.933333pt;}
.y75{bottom:643.133333pt;}
.y4e{bottom:647.773333pt;}
.y86{bottom:650.813333pt;}
.yd{bottom:651.133333pt;}
.y96{bottom:655.933333pt;}
.ycd{bottom:658.813333pt;}
.y62{bottom:671.933333pt;}
.yc0{bottom:676.733333pt;}
.y74{bottom:679.933333pt;}
.ye4{bottom:683.293333pt;}
.y4d{bottom:684.573333pt;}
.y2f{bottom:687.613333pt;}
.yc{bottom:687.933333pt;}
.ya8{bottom:692.733333pt;}
.ycb{bottom:697.053333pt;}
.yd7{bottom:699.613333pt;}
.y61{bottom:708.773333pt;}
.y73{bottom:716.773333pt;}
.y4c{bottom:721.413333pt;}
.yb{bottom:724.773333pt;}
.yab{bottom:729.573333pt;}
.yca{bottom:735.173333pt;}
.y60{bottom:745.573333pt;}
.y72{bottom:753.573333pt;}
.ye3{bottom:758.053333pt;}
.y4b{bottom:758.213333pt;}
.y5e{bottom:761.253333pt;}
.ya{bottom:761.573333pt;}
.yae{bottom:766.373333pt;}
.yc8{bottom:773.253333pt;}
.y5f{bottom:782.053333pt;}
.y95{bottom:782.373333pt;}
.y4a{bottom:794.853333pt;}
.ye2{bottom:795.973333pt;}
.y5d{bottom:798.053333pt;}
.y9{bottom:798.373333pt;}
.yc6{bottom:811.493333pt;}
.y94{bottom:819.173333pt;}
.y49{bottom:832.773333pt;}
.ye1{bottom:833.893333pt;}
.y8{bottom:834.853333pt;}
.y24{bottom:835.173333pt;}
.ya3{bottom:855.973333pt;}
.y48{bottom:870.853333pt;}
.y7{bottom:871.653333pt;}
.y23{bottom:871.973333pt;}
.y47{bottom:907.653333pt;}
.y6{bottom:908.453333pt;}
.y2e{bottom:908.773333pt;}
.y46{bottom:944.320000pt;}
.y22{bottom:945.280000pt;}
.y5{bottom:945.600000pt;}
.y1c{bottom:1016.000000pt;}
.h3{height:18.400000pt;}
.h14{height:32.648438pt;}
.he{height:36.800000pt;}
.hf{height:36.832000pt;}
.h6{height:42.084375pt;}
.hc{height:44.437500pt;}
.h9{height:55.624897pt;}
.hd{height:62.781250pt;}
.h2{height:62.812500pt;}
.h4{height:64.500000pt;}
.hb{height:65.781915pt;}
.ha{height:66.625000pt;}
.h5{height:71.524375pt;}
.h8{height:71.934000pt;}
.h10{height:110.400000pt;}
.h11{height:110.432000pt;}
.h7{height:111.250000pt;}
.h1{height:222.499459pt;}
.h1d{height:249.333333pt;}
.h1c{height:249.493333pt;}
.h1f{height:391.333333pt;}
.h1e{height:391.573333pt;}
.h1b{height:416.666667pt;}
.h1a{height:416.853333pt;}
.h27{height:430.000000pt;}
.h26{height:430.293333pt;}
.h22{height:445.013333pt;}
.h23{height:445.333333pt;}
.h2a{height:563.093333pt;}
.h2b{height:563.333333pt;}
.h28{height:642.453333pt;}
.h29{height:642.666667pt;}
.h19{height:704.000000pt;}
.h18{height:704.213333pt;}
.h20{height:707.093333pt;}
.h21{height:707.333333pt;}
.h17{height:725.333333pt;}
.h16{height:750.000000pt;}
.h15{height:750.293333pt;}
.h24{height:799.253333pt;}
.h25{height:799.333333pt;}
.h13{height:805.333333pt;}
.h12{height:805.653333pt;}
.h0{height:1056.000000pt;}
.w1{width:8.000000pt;}
.w3{width:16.000000pt;}
.wa{width:68.832000pt;}
.wc{width:77.920000pt;}
.we{width:86.720000pt;}
.w5{width:100.672000pt;}
.wd{width:106.752000pt;}
.w6{width:110.112000pt;}
.w4{width:111.840000pt;}
.wb{width:113.312000pt;}
.w7{width:123.840000pt;}
.w9{width:129.280000pt;}
.w8{width:132.832000pt;}
.w21{width:357.333333pt;}
.w20{width:357.546667pt;}
.w18{width:455.786667pt;}
.w19{width:456.000000pt;}
.w1e{width:478.506667pt;}
.w1f{width:478.666667pt;}
.w10{width:500.666667pt;}
.wf{width:500.906667pt;}
.w14{width:519.786667pt;}
.w15{width:520.000000pt;}
.w13{width:538.666667pt;}
.w12{width:576.666667pt;}
.w11{width:576.746667pt;}
.w16{width:614.506667pt;}
.w17{width:614.666667pt;}
.w1c{width:671.146667pt;}
.w1d{width:671.333333pt;}
.w1b{width:708.666667pt;}
.w1a{width:708.906667pt;}
.w2{width:793.770613pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:4.640000pt;}
.x5{left:5.754720pt;}
.x2a{left:7.520000pt;}
.x20{left:13.000000pt;}
.x1f{left:14.760000pt;}
.x17{left:16.320000pt;}
.x21{left:17.800000pt;}
.x26{left:19.360000pt;}
.x15{left:20.360000pt;}
.x27{left:22.400000pt;}
.x1c{left:24.960000pt;}
.x2c{left:28.960000pt;}
.xf{left:31.354667pt;}
.x16{left:34.074667pt;}
.x2d{left:35.360000pt;}
.x23{left:37.120000pt;}
.x24{left:40.320000pt;}
.x2b{left:42.720000pt;}
.x18{left:45.920000pt;}
.x1b{left:49.920000pt;}
.x19{left:52.360000pt;}
.x1a{left:62.440000pt;}
.x1d{left:113.312000pt;}
.xe{left:115.872000pt;}
.x2{left:119.872000pt;}
.x6{left:143.866667pt;}
.x39{left:156.173333pt;}
.x7{left:167.866667pt;}
.xa{left:190.426667pt;}
.x9{left:191.866667pt;}
.xc{left:194.586667pt;}
.x1{left:206.893333pt;}
.x34{left:208.333333pt;}
.x38{left:216.653333pt;}
.x10{left:228.986667pt;}
.x2e{left:230.893333pt;}
.x31{left:237.453333pt;}
.xb{left:239.866667pt;}
.x4{left:242.080000pt;}
.x1e{left:244.026667pt;}
.x32{left:246.626667pt;}
.x30{left:249.773333pt;}
.x2f{left:268.813333pt;}
.x33{left:287.693333pt;}
.x22{left:314.306667pt;}
.x36{left:316.013333pt;}
.x12{left:330.946667pt;}
.x37{left:331.853333pt;}
.x35{left:334.893333pt;}
.xd{left:408.066667pt;}
.x25{left:428.893333pt;}
.x13{left:442.333333pt;}
.x28{left:508.093333pt;}
.x14{left:567.453333pt;}
.x29{left:616.133333pt;}
.x8{left:680.293333pt;}
.x3{left:688.293333pt;}
}




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