
    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_d62f343a7e35ddf6d45d3622.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_3bf554e1b83e2e5da3ed78a2.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1caffbe218280b096f236a4b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.801000;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_8f7d077caf096dd10574e7b9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.853516;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_85e51e83ebb6f88d66f166e2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.087891;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_5afc6060e2df53d9ac644982.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.087891;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_5851c88ff53928b96ac01c14.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.090332;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_7d692660f551481748641c53.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.978516;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_a53d5290d0570a3272c06f79.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3e5f530dc3bc973fd0d6095c.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_0f6ed12899911d5626c4237a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.850586;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_555008e926846e4d4175d82c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.041992;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_cb477893923abf4122a6fdc0.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_6dea6ca1d3dd220dbda316ee.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.850586;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_d7813b662cbca4b54edd1b9c.woff2')format("woff");}.fff{font-family:fff;line-height:1.041992;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.739746;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.739746;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_47c9667d2c94fa695723e75f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.976562;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);}
.v7{vertical-align:-10.080000px;}
.v2{vertical-align:-7.920000px;}
.v4{vertical-align:-6.480000px;}
.v1{vertical-align:-5.040000px;}
.v5{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.440000px;}
.v9{vertical-align:4.320000px;}
.v3{vertical-align:5.760000px;}
.va{vertical-align:7.200000px;}
.vb{vertical-align:8.640000px;}
.v8{vertical-align:10.080000px;}
.ls20{letter-spacing:-1.200000px;}
.ls11{letter-spacing:-0.481800px;}
.ls2a{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.231600px;}
.ls10{letter-spacing:-0.090000px;}
.lse{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.043920px;}
.ls29{letter-spacing:0.083400px;}
.ls1{letter-spacing:0.108600px;}
.lsb{letter-spacing:0.115200px;}
.ls2b{letter-spacing:0.120000px;}
.ls18{letter-spacing:0.178560px;}
.ls13{letter-spacing:0.178800px;}
.ls3{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.184800px;}
.ls15{letter-spacing:0.214320px;}
.ls23{letter-spacing:0.235440px;}
.lsd{letter-spacing:0.238200px;}
.ls6{letter-spacing:0.238320px;}
.ls2d{letter-spacing:0.367200px;}
.lsa{letter-spacing:0.437760px;}
.ls19{letter-spacing:0.441360px;}
.ls12{letter-spacing:0.493800px;}
.ls1f{letter-spacing:0.625680px;}
.ls28{letter-spacing:0.689760px;}
.ls7{letter-spacing:0.720000px;}
.ls0{letter-spacing:0.792000px;}
.ls1c{letter-spacing:0.898560px;}
.ls2{letter-spacing:0.900000px;}
.ls27{letter-spacing:0.955440px;}
.ls5{letter-spacing:0.958320px;}
.ls25{letter-spacing:0.960000px;}
.ls21{letter-spacing:1.020000px;}
.lsc{letter-spacing:1.671840px;}
.ls1b{letter-spacing:2.160000px;}
.ls2c{letter-spacing:2.880000px;}
.ls30{letter-spacing:3.120000px;}
.ls9{letter-spacing:3.600000px;}
.ls24{letter-spacing:4.440000px;}
.ls1d{letter-spacing:7.920000px;}
.ls2f{letter-spacing:8.160000px;}
.ls8{letter-spacing:12.240000px;}
.ls1a{letter-spacing:12.960000px;}
.ls17{letter-spacing:13.680000px;}
.ls1e{letter-spacing:14.400000px;}
.ls4{letter-spacing:16.560000px;}
.ls16{letter-spacing:20.898720px;}
.ls2e{letter-spacing:37.434720px;}
.ls14{letter-spacing:197.494320px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-95.760000px;}
.ws4{word-spacing:-72.000000px;}
.wsc{word-spacing:-71.712000px;}
.ws5{word-spacing:-52.835760px;}
.ws6{word-spacing:-52.745760px;}
.ws7{word-spacing:-38.399760px;}
.ws8{word-spacing:-36.676080px;}
.wsd{word-spacing:-35.048160px;}
.wsb{word-spacing:-18.481680px;}
.ws1{word-spacing:-14.616000px;}
.ws0{word-spacing:-13.896000px;}
.ws3{word-spacing:-12.131280px;}
.ws2{word-spacing:-11.899680px;}
.wsa{word-spacing:0.000000px;}
._17{margin-left:-17.166960px;}
._e{margin-left:-14.484960px;}
._a{margin-left:-13.329360px;}
._7{margin-left:-12.086640px;}
._9{margin-left:-7.920000px;}
._5{margin-left:-4.377720px;}
._6{margin-left:-2.892240px;}
._0{margin-left:-1.068000px;}
._4{width:1.195200px;}
._c{width:2.399040px;}
._d{width:4.001760px;}
._12{width:5.417160px;}
._f{width:7.005600px;}
._8{width:8.367120px;}
._11{width:10.850160px;}
._10{width:12.378960px;}
._14{width:13.391520px;}
._b{width:14.400000px;}
._13{width:15.993360px;}
._15{width:17.567280px;}
._16{width:18.634560px;}
._2{width:113.544000px;}
._3{width:244.788000px;}
._1{width:1070.580000px;}
.fc2{color:transparent;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.fs3{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:4.140000px;}
.yc{bottom:5.040000px;}
.y3{bottom:13.680000px;}
.y5{bottom:22.500000px;}
.y2{bottom:38.160000px;}
.y4{bottom:40.860000px;}
.ya{bottom:43.020000px;}
.y9{bottom:61.380000px;}
.yb{bottom:71.820000px;}
.y8{bottom:79.560000px;}
.y88{bottom:133.416000px;}
.y46{bottom:140.256000px;}
.y57{bottom:156.450000px;}
.y2a{bottom:161.670000px;}
.y87{bottom:167.610000px;}
.y45{bottom:172.290000px;}
.y6c{bottom:184.350000px;}
.y56{bottom:188.490000px;}
.y29{bottom:193.710000px;}
.y86{bottom:201.630000px;}
.y44{bottom:204.330000px;}
.y6b{bottom:216.390000px;}
.y28{bottom:225.750000px;}
.y55{bottom:232.410000px;}
.y85{bottom:235.830000px;}
.y43{bottom:236.370000px;}
.y6a{bottom:248.430000px;}
.y27{bottom:257.790000px;}
.y84{bottom:270.030000px;}
.y54{bottom:276.510000px;}
.y42{bottom:280.470000px;}
.y26{bottom:290.010000px;}
.y83{bottom:304.230000px;}
.y41{bottom:312.510000px;}
.y53{bottom:320.610000px;}
.y25{bottom:322.050000px;}
.y69{bottom:324.570000px;}
.y82{bottom:338.430000px;}
.y24{bottom:354.135000px;}
.y40{bottom:356.655000px;}
.y52{bottom:364.575000px;}
.y81{bottom:384.555000px;}
.y23{bottom:386.175000px;}
.y3f{bottom:388.695000px;}
.y51{bottom:408.675000px;}
.y3e{bottom:420.735000px;}
.y80{bottom:428.655000px;}
.y22{bottom:430.095000px;}
.y50{bottom:452.775000px;}
.y7f{bottom:460.695000px;}
.y3d{bottom:464.835000px;}
.y21{bottom:474.195000px;}
.y68{bottom:484.815000px;}
.y7e{bottom:492.735000px;}
.y4f{bottom:496.875000px;}
.y20{bottom:506.235000px;}
.y3c{bottom:508.755000px;}
.y67{bottom:516.855000px;}
.y7d{bottom:524.775000px;}
.y3b{bottom:540.795000px;}
.y66{bottom:548.895000px;}
.y1f{bottom:550.335000px;}
.y7c{bottom:556.815000px;}
.y4e{bottom:572.835000px;}
.y1e{bottom:582.375000px;}
.y3a{bottom:584.895000px;}
.y7b{bottom:588.855000px;}
.y65{bottom:592.995000px;}
.y1d{bottom:614.415000px;}
.y4d{bottom:616.965000px;}
.y7a{bottom:620.925000px;}
.y39{bottom:629.025000px;}
.y64{bottom:636.945000px;}
.y1c{bottom:646.485000px;}
.y4c{bottom:649.005000px;}
.y79{bottom:652.965000px;}
.y38{bottom:661.065000px;}
.y63{bottom:669.165000px;}
.y1b{bottom:678.525000px;}
.y4b{bottom:681.045000px;}
.y78{bottom:685.005000px;}
.y37{bottom:693.105000px;}
.y62{bottom:701.205000px;}
.y77{bottom:717.045000px;}
.y1a{bottom:722.625000px;}
.y36{bottom:725.145000px;}
.y61{bottom:745.125000px;}
.y76{bottom:749.085000px;}
.y19{bottom:754.665000px;}
.y35{bottom:757.185000px;}
.y60{bottom:777.165000px;}
.y75{bottom:781.125000px;}
.y18{bottom:786.705000px;}
.y34{bottom:789.225000px;}
.y5f{bottom:809.205000px;}
.y74{bottom:813.165000px;}
.y17{bottom:818.745000px;}
.y4a{bottom:821.265000px;}
.y33{bottom:833.325000px;}
.y5e{bottom:841.245000px;}
.y16{bottom:850.785000px;}
.y73{bottom:857.265000px;}
.y49{bottom:865.365000px;}
.y32{bottom:877.245000px;}
.y15{bottom:882.870000px;}
.y5d{bottom:885.390000px;}
.y48{bottom:897.450000px;}
.y72{bottom:901.410000px;}
.y31{bottom:909.330000px;}
.y5c{bottom:917.430000px;}
.y14{bottom:926.970000px;}
.y71{bottom:933.450000px;}
.y30{bottom:941.550000px;}
.y5b{bottom:949.470000px;}
.y70{bottom:965.490000px;}
.y13{bottom:970.890000px;}
.y2f{bottom:973.590000px;}
.y5a{bottom:993.570000px;}
.y6f{bottom:997.530000px;}
.y12{bottom:998.610000px;}
.y2e{bottom:1005.630000px;}
.y47{bottom:1017.510000px;}
.y11{bottom:1026.330000px;}
.y6e{bottom:1029.570000px;}
.y59{bottom:1037.670000px;}
.y2d{bottom:1049.550000px;}
.y10{bottom:1052.610000px;}
.yf{bottom:1054.050000px;}
.y6d{bottom:1061.610000px;}
.y58{bottom:1081.590000px;}
.ye{bottom:1081.770000px;}
.y2c{bottom:1093.650000px;}
.yd{bottom:1119.030000px;}
.y2b{bottom:1125.690000px;}
.y7{bottom:1148.400000px;}
.y1{bottom:1165.320000px;}
.h7{height:21.996000px;}
.h6{height:51.648047px;}
.h5{height:51.793945px;}
.h2{height:54.900000px;}
.h3{height:62.402344px;}
.h9{height:65.460938px;}
.hd{height:69.669141px;}
.hc{height:70.136719px;}
.ha{height:70.323750px;}
.hb{height:76.083750px;}
.h4{height:82.995117px;}
.h8{height:96.761250px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.720000px;}
.w6{width:19.260000px;}
.w3{width:145.116000px;}
.w2{width:531.285000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x4{left:19.080000px;}
.x5{left:23.940000px;}
.x6{left:39.960000px;}
.x1{left:108.036000px;}
.xf{left:135.035987px;}
.xe{left:162.029987px;}
.xd{left:262.694987px;}
.x8{left:311.294987px;}
.xa{left:346.934987px;}
.xc{left:389.774987px;}
.xb{left:420.194987px;}
.x9{left:446.504987px;}
.x3{left:639.330000px;}
.x10{left:765.900000px;}
.x7{left:775.440000px;}
@media print{
.v7{vertical-align:-8.960000pt;}
.v2{vertical-align:-7.040000pt;}
.v4{vertical-align:-5.760000pt;}
.v1{vertical-align:-4.480000pt;}
.v5{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.280000pt;}
.v9{vertical-align:3.840000pt;}
.v3{vertical-align:5.120000pt;}
.va{vertical-align:6.400000pt;}
.vb{vertical-align:7.680000pt;}
.v8{vertical-align:8.960000pt;}
.ls20{letter-spacing:-1.066667pt;}
.ls11{letter-spacing:-0.428267pt;}
.ls2a{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.205867pt;}
.ls10{letter-spacing:-0.080000pt;}
.lse{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.039040pt;}
.ls29{letter-spacing:0.074133pt;}
.ls1{letter-spacing:0.096533pt;}
.lsb{letter-spacing:0.102400pt;}
.ls2b{letter-spacing:0.106667pt;}
.ls18{letter-spacing:0.158720pt;}
.ls13{letter-spacing:0.158933pt;}
.ls3{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.164267pt;}
.ls15{letter-spacing:0.190507pt;}
.ls23{letter-spacing:0.209280pt;}
.lsd{letter-spacing:0.211733pt;}
.ls6{letter-spacing:0.211840pt;}
.ls2d{letter-spacing:0.326400pt;}
.lsa{letter-spacing:0.389120pt;}
.ls19{letter-spacing:0.392320pt;}
.ls12{letter-spacing:0.438933pt;}
.ls1f{letter-spacing:0.556160pt;}
.ls28{letter-spacing:0.613120pt;}
.ls7{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.704000pt;}
.ls1c{letter-spacing:0.798720pt;}
.ls2{letter-spacing:0.800000pt;}
.ls27{letter-spacing:0.849280pt;}
.ls5{letter-spacing:0.851840pt;}
.ls25{letter-spacing:0.853333pt;}
.ls21{letter-spacing:0.906667pt;}
.lsc{letter-spacing:1.486080pt;}
.ls1b{letter-spacing:1.920000pt;}
.ls2c{letter-spacing:2.560000pt;}
.ls30{letter-spacing:2.773333pt;}
.ls9{letter-spacing:3.200000pt;}
.ls24{letter-spacing:3.946667pt;}
.ls1d{letter-spacing:7.040000pt;}
.ls2f{letter-spacing:7.253333pt;}
.ls8{letter-spacing:10.880000pt;}
.ls1a{letter-spacing:11.520000pt;}
.ls17{letter-spacing:12.160000pt;}
.ls1e{letter-spacing:12.800000pt;}
.ls4{letter-spacing:14.720000pt;}
.ls16{letter-spacing:18.576640pt;}
.ls2e{letter-spacing:33.275307pt;}
.ls14{letter-spacing:175.550507pt;}
.ws9{word-spacing:-85.120000pt;}
.ws4{word-spacing:-64.000000pt;}
.wsc{word-spacing:-63.744000pt;}
.ws5{word-spacing:-46.965120pt;}
.ws6{word-spacing:-46.885120pt;}
.ws7{word-spacing:-34.133120pt;}
.ws8{word-spacing:-32.600960pt;}
.wsd{word-spacing:-31.153920pt;}
.wsb{word-spacing:-16.428160pt;}
.ws1{word-spacing:-12.992000pt;}
.ws0{word-spacing:-12.352000pt;}
.ws3{word-spacing:-10.783360pt;}
.ws2{word-spacing:-10.577493pt;}
.wsa{word-spacing:0.000000pt;}
._17{margin-left:-15.259520pt;}
._e{margin-left:-12.875520pt;}
._a{margin-left:-11.848320pt;}
._7{margin-left:-10.743680pt;}
._9{margin-left:-7.040000pt;}
._5{margin-left:-3.891307pt;}
._6{margin-left:-2.570880pt;}
._0{margin-left:-0.949333pt;}
._4{width:1.062400pt;}
._c{width:2.132480pt;}
._d{width:3.557120pt;}
._12{width:4.815253pt;}
._f{width:6.227200pt;}
._8{width:7.437440pt;}
._11{width:9.644587pt;}
._10{width:11.003520pt;}
._14{width:11.903573pt;}
._b{width:12.800000pt;}
._13{width:14.216320pt;}
._15{width:15.615360pt;}
._16{width:16.564053pt;}
._2{width:100.928000pt;}
._3{width:217.589333pt;}
._1{width:951.626667pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.fs3{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.680000pt;}
.yc{bottom:4.480000pt;}
.y3{bottom:12.160000pt;}
.y5{bottom:20.000000pt;}
.y2{bottom:33.920000pt;}
.y4{bottom:36.320000pt;}
.ya{bottom:38.240000pt;}
.y9{bottom:54.560000pt;}
.yb{bottom:63.840000pt;}
.y8{bottom:70.720000pt;}
.y88{bottom:118.592000pt;}
.y46{bottom:124.672000pt;}
.y57{bottom:139.066667pt;}
.y2a{bottom:143.706667pt;}
.y87{bottom:148.986667pt;}
.y45{bottom:153.146667pt;}
.y6c{bottom:163.866667pt;}
.y56{bottom:167.546667pt;}
.y29{bottom:172.186667pt;}
.y86{bottom:179.226667pt;}
.y44{bottom:181.626667pt;}
.y6b{bottom:192.346667pt;}
.y28{bottom:200.666667pt;}
.y55{bottom:206.586667pt;}
.y85{bottom:209.626667pt;}
.y43{bottom:210.106667pt;}
.y6a{bottom:220.826667pt;}
.y27{bottom:229.146667pt;}
.y84{bottom:240.026667pt;}
.y54{bottom:245.786667pt;}
.y42{bottom:249.306667pt;}
.y26{bottom:257.786667pt;}
.y83{bottom:270.426667pt;}
.y41{bottom:277.786667pt;}
.y53{bottom:284.986667pt;}
.y25{bottom:286.266667pt;}
.y69{bottom:288.506667pt;}
.y82{bottom:300.826667pt;}
.y24{bottom:314.786667pt;}
.y40{bottom:317.026667pt;}
.y52{bottom:324.066667pt;}
.y81{bottom:341.826667pt;}
.y23{bottom:343.266667pt;}
.y3f{bottom:345.506667pt;}
.y51{bottom:363.266667pt;}
.y3e{bottom:373.986667pt;}
.y80{bottom:381.026667pt;}
.y22{bottom:382.306667pt;}
.y50{bottom:402.466667pt;}
.y7f{bottom:409.506667pt;}
.y3d{bottom:413.186667pt;}
.y21{bottom:421.506667pt;}
.y68{bottom:430.946667pt;}
.y7e{bottom:437.986667pt;}
.y4f{bottom:441.666667pt;}
.y20{bottom:449.986667pt;}
.y3c{bottom:452.226667pt;}
.y67{bottom:459.426667pt;}
.y7d{bottom:466.466667pt;}
.y3b{bottom:480.706667pt;}
.y66{bottom:487.906667pt;}
.y1f{bottom:489.186667pt;}
.y7c{bottom:494.946667pt;}
.y4e{bottom:509.186667pt;}
.y1e{bottom:517.666667pt;}
.y3a{bottom:519.906667pt;}
.y7b{bottom:523.426667pt;}
.y65{bottom:527.106667pt;}
.y1d{bottom:546.146667pt;}
.y4d{bottom:548.413333pt;}
.y7a{bottom:551.933333pt;}
.y39{bottom:559.133333pt;}
.y64{bottom:566.173333pt;}
.y1c{bottom:574.653333pt;}
.y4c{bottom:576.893333pt;}
.y79{bottom:580.413333pt;}
.y38{bottom:587.613333pt;}
.y63{bottom:594.813333pt;}
.y1b{bottom:603.133333pt;}
.y4b{bottom:605.373333pt;}
.y78{bottom:608.893333pt;}
.y37{bottom:616.093333pt;}
.y62{bottom:623.293333pt;}
.y77{bottom:637.373333pt;}
.y1a{bottom:642.333333pt;}
.y36{bottom:644.573333pt;}
.y61{bottom:662.333333pt;}
.y76{bottom:665.853333pt;}
.y19{bottom:670.813333pt;}
.y35{bottom:673.053333pt;}
.y60{bottom:690.813333pt;}
.y75{bottom:694.333333pt;}
.y18{bottom:699.293333pt;}
.y34{bottom:701.533333pt;}
.y5f{bottom:719.293333pt;}
.y74{bottom:722.813333pt;}
.y17{bottom:727.773333pt;}
.y4a{bottom:730.013333pt;}
.y33{bottom:740.733333pt;}
.y5e{bottom:747.773333pt;}
.y16{bottom:756.253333pt;}
.y73{bottom:762.013333pt;}
.y49{bottom:769.213333pt;}
.y32{bottom:779.773333pt;}
.y15{bottom:784.773333pt;}
.y5d{bottom:787.013333pt;}
.y48{bottom:797.733333pt;}
.y72{bottom:801.253333pt;}
.y31{bottom:808.293333pt;}
.y5c{bottom:815.493333pt;}
.y14{bottom:823.973333pt;}
.y71{bottom:829.733333pt;}
.y30{bottom:836.933333pt;}
.y5b{bottom:843.973333pt;}
.y70{bottom:858.213333pt;}
.y13{bottom:863.013333pt;}
.y2f{bottom:865.413333pt;}
.y5a{bottom:883.173333pt;}
.y6f{bottom:886.693333pt;}
.y12{bottom:887.653333pt;}
.y2e{bottom:893.893333pt;}
.y47{bottom:904.453333pt;}
.y11{bottom:912.293333pt;}
.y6e{bottom:915.173333pt;}
.y59{bottom:922.373333pt;}
.y2d{bottom:932.933333pt;}
.y10{bottom:935.653333pt;}
.yf{bottom:936.933333pt;}
.y6d{bottom:943.653333pt;}
.y58{bottom:961.413333pt;}
.ye{bottom:961.573333pt;}
.y2c{bottom:972.133333pt;}
.yd{bottom:994.693333pt;}
.y2b{bottom:1000.613333pt;}
.y7{bottom:1020.800000pt;}
.y1{bottom:1035.840000pt;}
.h7{height:19.552000pt;}
.h6{height:45.909375pt;}
.h5{height:46.039063pt;}
.h2{height:48.800000pt;}
.h3{height:55.468750pt;}
.h9{height:58.187500pt;}
.hd{height:61.928125pt;}
.hc{height:62.343750pt;}
.ha{height:62.510000pt;}
.hb{height:67.630000pt;}
.h4{height:73.773438pt;}
.h8{height:86.010000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.640000pt;}
.w6{width:17.120000pt;}
.w3{width:128.992000pt;}
.w2{width:472.253333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x4{left:16.960000pt;}
.x5{left:21.280000pt;}
.x6{left:35.520000pt;}
.x1{left:96.032000pt;}
.xf{left:120.031988pt;}
.xe{left:144.026655pt;}
.xd{left:233.506655pt;}
.x8{left:276.706655pt;}
.xa{left:308.386655pt;}
.xc{left:346.466655pt;}
.xb{left:373.506655pt;}
.x9{left:396.893322pt;}
.x3{left:568.293333pt;}
.x10{left:680.800000pt;}
.x7{left:689.280000pt;}
}




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