
    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_97b75b1a58d3688fad1b6796.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_91867b5fc15eb7f3283dc2db.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_dc45c0e481870c1d113c7321.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_994de9832b529b06a6bf648f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.768555;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_c516a96fc443ca20d9cbf4a9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_69d85e82accab8a759095b70.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.949219;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_a8725e3db4e12df577dfc16f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.927246;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_c006a8d63457d8238ce22a62.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.927246;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_27ed44622ae3732576c1f3f3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.768555;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_f9c8072d843a2512932ae121.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_647bd14bc9d8a045009ffa57.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921387;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_1c5283f6f5c6a1a65fa01328.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.921387;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_527229103e4259547076a06c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.921387;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_08d9b33f99723ec48180d3b4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.914062;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_9e22b6da5e8428566a785a3e.woff2')format("woff");}.fff{font-family:fff;line-height:0.914062;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_6e33aec9c805e478204292d0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.914062;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.682617;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_59728b0e64dfd59da2228cee.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.256200px;}
.ls0{letter-spacing:0.269280px;}
.ls8{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.864000px;}
.lse{letter-spacing:3.600000px;}
.lsf{letter-spacing:4.320000px;}
.ls10{letter-spacing:8.640000px;}
.lsc{letter-spacing:10.080000px;}
.lsd{letter-spacing:10.800000px;}
.ls11{letter-spacing:11.520000px;}
.lsb{letter-spacing:14.400000px;}
.ls1{letter-spacing:33.960000px;}
.ls12{letter-spacing:36.720000px;}
.ls7{letter-spacing:55.386720px;}
.ls5{letter-spacing:64.002720px;}
.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;}
}
.ws3{word-spacing:-63.360000px;}
.ws7{word-spacing:-59.760000px;}
.ws2{word-spacing:-48.240000px;}
.ws9{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.ws0{word-spacing:-16.272000px;}
.ws1{word-spacing:-15.226440px;}
.ws4{word-spacing:-14.319360px;}
.ws6{word-spacing:0.000000px;}
._6{margin-left:-11.299680px;}
._7{margin-left:-7.898880px;}
._5{margin-left:-5.219040px;}
._2{margin-left:-3.179520px;}
._3{margin-left:-2.027040px;}
._0{margin-left:-1.008000px;}
._1{width:1.092000px;}
._4{width:2.471040px;}
._c{width:3.497760px;}
._f{width:4.638240px;}
._d{width:5.904000px;}
._8{width:7.272000px;}
._9{width:8.412000px;}
._e{width:9.876000px;}
._14{width:11.148000px;}
._16{width:12.744000px;}
._17{width:14.184000px;}
._18{width:15.419040px;}
._15{width:16.704000px;}
._b{width:19.224000px;}
._a{width:20.592000px;}
._10{width:23.328000px;}
._11{width:24.744000px;}
._19{width:28.454400px;}
._1a{width:29.455200px;}
._12{width:31.176000px;}
._13{width:32.544000px;}
._1d{width:35.726400px;}
._1e{width:36.991200px;}
._1b{width:94.392000px;}
._1c{width:95.616000px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,32,96);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fs4{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.500000px;}
.y3{bottom:27.360000px;}
.y5{bottom:33.480000px;}
.y7{bottom:36.720000px;}
.ye{bottom:57.240000px;}
.y4{bottom:67.320000px;}
.y6{bottom:68.760000px;}
.yd{bottom:75.600000px;}
.yc{bottom:89.280000px;}
.yb{bottom:103.176000px;}
.ya{bottom:119.016000px;}
.y35{bottom:142.776000px;}
.yba{bottom:148.176000px;}
.y34{bottom:163.470000px;}
.y98{bottom:167.070000px;}
.yb9{bottom:168.870000px;}
.y5b{bottom:169.050000px;}
.y33{bottom:184.170000px;}
.yb8{bottom:189.570000px;}
.y7e{bottom:189.750000px;}
.y32{bottom:204.870000px;}
.y97{bottom:208.650000px;}
.yb7{bottom:210.270000px;}
.y7d{bottom:210.450000px;}
.y5a{bottom:210.810000px;}
.y31{bottom:225.570000px;}
.y96{bottom:229.350000px;}
.yb6{bottom:230.970000px;}
.y59{bottom:231.510000px;}
.y30{bottom:246.270000px;}
.y95{bottom:250.050000px;}
.yb5{bottom:251.670000px;}
.y58{bottom:252.210000px;}
.y2f{bottom:266.970000px;}
.yb4{bottom:272.370000px;}
.y57{bottom:272.910000px;}
.y94{bottom:291.810000px;}
.yb3{bottom:293.070000px;}
.y56{bottom:293.610000px;}
.y7c{bottom:293.970000px;}
.y2e{bottom:308.550000px;}
.yb2{bottom:313.770000px;}
.y55{bottom:314.310000px;}
.y7b{bottom:314.670000px;}
.y93{bottom:333.570000px;}
.yb1{bottom:334.470000px;}
.y54{bottom:335.010000px;}
.y7a{bottom:335.370000px;}
.y2d{bottom:350.310000px;}
.y92{bottom:354.315000px;}
.yb0{bottom:355.215000px;}
.y53{bottom:355.755000px;}
.y79{bottom:356.115000px;}
.y2c{bottom:371.055000px;}
.y91{bottom:375.015000px;}
.yaf{bottom:375.915000px;}
.y52{bottom:376.455000px;}
.y78{bottom:376.815000px;}
.y2b{bottom:391.755000px;}
.y90{bottom:395.715000px;}
.yae{bottom:396.615000px;}
.yca{bottom:397.515000px;}
.y2a{bottom:412.455000px;}
.y8f{bottom:416.415000px;}
.y51{bottom:418.215000px;}
.y77{bottom:418.395000px;}
.y29{bottom:433.155000px;}
.yad{bottom:438.195000px;}
.yc9{bottom:438.915000px;}
.y28{bottom:453.855000px;}
.y8e{bottom:457.995000px;}
.yc8{bottom:459.615000px;}
.y50{bottom:459.795000px;}
.y76{bottom:460.155000px;}
.yac{bottom:479.955000px;}
.yc7{bottom:480.315000px;}
.y4f{bottom:480.495000px;}
.y27{bottom:495.615000px;}
.y8d{bottom:499.755000px;}
.yab{bottom:500.655000px;}
.yc6{bottom:501.015000px;}
.y4e{bottom:501.195000px;}
.y75{bottom:501.915000px;}
.y8c{bottom:520.455000px;}
.yaa{bottom:521.355000px;}
.yc5{bottom:521.715000px;}
.y4d{bottom:521.895000px;}
.y26{bottom:537.195000px;}
.ya9{bottom:542.055000px;}
.yc4{bottom:542.415000px;}
.y4c{bottom:542.595000px;}
.y74{bottom:543.495000px;}
.y8b{bottom:562.215000px;}
.ya8{bottom:562.755000px;}
.y4b{bottom:563.295000px;}
.y73{bottom:564.195000px;}
.y25{bottom:578.955000px;}
.ya7{bottom:583.455000px;}
.y4a{bottom:583.995000px;}
.y72{bottom:584.895000px;}
.y24{bottom:599.655000px;}
.y8a{bottom:603.795000px;}
.ya6{bottom:604.155000px;}
.y49{bottom:604.695000px;}
.y71{bottom:605.595000px;}
.y23{bottom:620.385000px;}
.ya5{bottom:624.885000px;}
.y48{bottom:625.425000px;}
.yc3{bottom:625.785000px;}
.y70{bottom:626.325000px;}
.y22{bottom:641.085000px;}
.y89{bottom:645.585000px;}
.y47{bottom:646.125000px;}
.yc2{bottom:646.485000px;}
.y21{bottom:661.785000px;}
.ya4{bottom:666.285000px;}
.yc1{bottom:667.185000px;}
.y6f{bottom:668.085000px;}
.y20{bottom:682.485000px;}
.ya3{bottom:686.985000px;}
.y88{bottom:687.345000px;}
.y46{bottom:687.885000px;}
.y1f{bottom:703.185000px;}
.y87{bottom:708.045000px;}
.yc0{bottom:708.585000px;}
.y6e{bottom:709.845000px;}
.y1e{bottom:723.885000px;}
.ya2{bottom:728.745000px;}
.ybf{bottom:729.285000px;}
.y45{bottom:729.645000px;}
.y6d{bottom:730.545000px;}
.y1d{bottom:744.585000px;}
.y86{bottom:749.625000px;}
.y44{bottom:750.345000px;}
.y6c{bottom:751.245000px;}
.y1c{bottom:765.285000px;}
.ya1{bottom:770.325000px;}
.y43{bottom:771.045000px;}
.y6b{bottom:771.945000px;}
.y1b{bottom:785.985000px;}
.ya0{bottom:791.025000px;}
.y85{bottom:791.385000px;}
.y42{bottom:791.745000px;}
.y6a{bottom:792.645000px;}
.y1a{bottom:806.685000px;}
.y9f{bottom:811.725000px;}
.y84{bottom:812.085000px;}
.y41{bottom:812.445000px;}
.ybe{bottom:812.625000px;}
.y69{bottom:813.345000px;}
.y19{bottom:827.385000px;}
.y9e{bottom:832.425000px;}
.y83{bottom:832.785000px;}
.y40{bottom:833.145000px;}
.ybd{bottom:833.325000px;}
.y68{bottom:834.045000px;}
.y18{bottom:848.085000px;}
.ybc{bottom:854.025000px;}
.y67{bottom:854.745000px;}
.y17{bottom:868.785000px;}
.y9d{bottom:874.185000px;}
.y82{bottom:874.545000px;}
.y3f{bottom:874.725000px;}
.y66{bottom:875.445000px;}
.ybb{bottom:895.470000px;}
.y65{bottom:896.190000px;}
.y16{bottom:910.410000px;}
.y9c{bottom:915.990000px;}
.y81{bottom:916.170000px;}
.y3e{bottom:916.530000px;}
.y64{bottom:916.890000px;}
.y9b{bottom:936.690000px;}
.y80{bottom:936.870000px;}
.y3d{bottom:937.230000px;}
.y63{bottom:937.590000px;}
.y15{bottom:952.170000px;}
.y9a{bottom:957.390000px;}
.y7f{bottom:957.570000px;}
.y3c{bottom:957.930000px;}
.y62{bottom:958.290000px;}
.y14{bottom:972.870000px;}
.y3b{bottom:978.630000px;}
.y61{bottom:978.990000px;}
.y13{bottom:993.570000px;}
.y99{bottom:998.970000px;}
.y3a{bottom:999.330000px;}
.y60{bottom:999.690000px;}
.y12{bottom:1014.810000px;}
.y39{bottom:1020.030000px;}
.y5f{bottom:1020.390000px;}
.y11{bottom:1038.930000px;}
.y38{bottom:1040.730000px;}
.y5e{bottom:1040.910000px;}
.y37{bottom:1061.430000px;}
.y5d{bottom:1061.610000px;}
.y10{bottom:1069.710000px;}
.y5c{bottom:1082.310000px;}
.yf{bottom:1097.430000px;}
.y36{bottom:1103.010000px;}
.y9{bottom:1126.230000px;}
.y2{bottom:1149.120000px;}
.y1{bottom:1240.020000px;}
.h8{height:36.250664px;}
.h9{height:36.627539px;}
.he{height:50.273438px;}
.hd{height:50.800781px;}
.hf{height:52.417969px;}
.hc{height:59.436914px;}
.ha{height:63.019687px;}
.h7{height:65.884219px;}
.hb{height:67.565039px;}
.h6{height:67.824844px;}
.h5{height:73.722656px;}
.h3{height:84.420000px;}
.h2{height:95.245664px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:113.580000px;}
.w5{width:156.450000px;}
.w4{width:425.445000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:14.580000px;}
.x8{left:25.020000px;}
.x5{left:31.365000px;}
.x3{left:97.734000px;}
.x2{left:108.036000px;}
.x6{left:131.805000px;}
.xf{left:135.035987px;}
.xb{left:136.655987px;}
.x10{left:162.029987px;}
.x11{left:189.029987px;}
.xe{left:192.449987px;}
.x12{left:216.029987px;}
.x4{left:221.610000px;}
.xd{left:278.894987px;}
.xc{left:315.794987px;}
.x1{left:446.504987px;}
.x7{left:647.070000px;}
.xa{left:768.419987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.227733pt;}
.ls0{letter-spacing:0.239360pt;}
.ls8{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.768000pt;}
.lse{letter-spacing:3.200000pt;}
.lsf{letter-spacing:3.840000pt;}
.ls10{letter-spacing:7.680000pt;}
.lsc{letter-spacing:8.960000pt;}
.lsd{letter-spacing:9.600000pt;}
.ls11{letter-spacing:10.240000pt;}
.lsb{letter-spacing:12.800000pt;}
.ls1{letter-spacing:30.186667pt;}
.ls12{letter-spacing:32.640000pt;}
.ls7{letter-spacing:49.232640pt;}
.ls5{letter-spacing:56.891307pt;}
.ws3{word-spacing:-56.320000pt;}
.ws7{word-spacing:-53.120000pt;}
.ws2{word-spacing:-42.880000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws0{word-spacing:-14.464000pt;}
.ws1{word-spacing:-13.534613pt;}
.ws4{word-spacing:-12.728320pt;}
.ws6{word-spacing:0.000000pt;}
._6{margin-left:-10.044160pt;}
._7{margin-left:-7.021227pt;}
._5{margin-left:-4.639147pt;}
._2{margin-left:-2.826240pt;}
._3{margin-left:-1.801813pt;}
._0{margin-left:-0.896000pt;}
._1{width:0.970667pt;}
._4{width:2.196480pt;}
._c{width:3.109120pt;}
._f{width:4.122880pt;}
._d{width:5.248000pt;}
._8{width:6.464000pt;}
._9{width:7.477333pt;}
._e{width:8.778667pt;}
._14{width:9.909333pt;}
._16{width:11.328000pt;}
._17{width:12.608000pt;}
._18{width:13.705813pt;}
._15{width:14.848000pt;}
._b{width:17.088000pt;}
._a{width:18.304000pt;}
._10{width:20.736000pt;}
._11{width:21.994667pt;}
._19{width:25.292800pt;}
._1a{width:26.182400pt;}
._12{width:27.712000pt;}
._13{width:28.928000pt;}
._1d{width:31.756800pt;}
._1e{width:32.881067pt;}
._1b{width:83.904000pt;}
._1c{width:84.992000pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fs4{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.000000pt;}
.y3{bottom:24.320000pt;}
.y5{bottom:29.760000pt;}
.y7{bottom:32.640000pt;}
.ye{bottom:50.880000pt;}
.y4{bottom:59.840000pt;}
.y6{bottom:61.120000pt;}
.yd{bottom:67.200000pt;}
.yc{bottom:79.360000pt;}
.yb{bottom:91.712000pt;}
.ya{bottom:105.792000pt;}
.y35{bottom:126.912000pt;}
.yba{bottom:131.712000pt;}
.y34{bottom:145.306667pt;}
.y98{bottom:148.506667pt;}
.yb9{bottom:150.106667pt;}
.y5b{bottom:150.266667pt;}
.y33{bottom:163.706667pt;}
.yb8{bottom:168.506667pt;}
.y7e{bottom:168.666667pt;}
.y32{bottom:182.106667pt;}
.y97{bottom:185.466667pt;}
.yb7{bottom:186.906667pt;}
.y7d{bottom:187.066667pt;}
.y5a{bottom:187.386667pt;}
.y31{bottom:200.506667pt;}
.y96{bottom:203.866667pt;}
.yb6{bottom:205.306667pt;}
.y59{bottom:205.786667pt;}
.y30{bottom:218.906667pt;}
.y95{bottom:222.266667pt;}
.yb5{bottom:223.706667pt;}
.y58{bottom:224.186667pt;}
.y2f{bottom:237.306667pt;}
.yb4{bottom:242.106667pt;}
.y57{bottom:242.586667pt;}
.y94{bottom:259.386667pt;}
.yb3{bottom:260.506667pt;}
.y56{bottom:260.986667pt;}
.y7c{bottom:261.306667pt;}
.y2e{bottom:274.266667pt;}
.yb2{bottom:278.906667pt;}
.y55{bottom:279.386667pt;}
.y7b{bottom:279.706667pt;}
.y93{bottom:296.506667pt;}
.yb1{bottom:297.306667pt;}
.y54{bottom:297.786667pt;}
.y7a{bottom:298.106667pt;}
.y2d{bottom:311.386667pt;}
.y92{bottom:314.946667pt;}
.yb0{bottom:315.746667pt;}
.y53{bottom:316.226667pt;}
.y79{bottom:316.546667pt;}
.y2c{bottom:329.826667pt;}
.y91{bottom:333.346667pt;}
.yaf{bottom:334.146667pt;}
.y52{bottom:334.626667pt;}
.y78{bottom:334.946667pt;}
.y2b{bottom:348.226667pt;}
.y90{bottom:351.746667pt;}
.yae{bottom:352.546667pt;}
.yca{bottom:353.346667pt;}
.y2a{bottom:366.626667pt;}
.y8f{bottom:370.146667pt;}
.y51{bottom:371.746667pt;}
.y77{bottom:371.906667pt;}
.y29{bottom:385.026667pt;}
.yad{bottom:389.506667pt;}
.yc9{bottom:390.146667pt;}
.y28{bottom:403.426667pt;}
.y8e{bottom:407.106667pt;}
.yc8{bottom:408.546667pt;}
.y50{bottom:408.706667pt;}
.y76{bottom:409.026667pt;}
.yac{bottom:426.626667pt;}
.yc7{bottom:426.946667pt;}
.y4f{bottom:427.106667pt;}
.y27{bottom:440.546667pt;}
.y8d{bottom:444.226667pt;}
.yab{bottom:445.026667pt;}
.yc6{bottom:445.346667pt;}
.y4e{bottom:445.506667pt;}
.y75{bottom:446.146667pt;}
.y8c{bottom:462.626667pt;}
.yaa{bottom:463.426667pt;}
.yc5{bottom:463.746667pt;}
.y4d{bottom:463.906667pt;}
.y26{bottom:477.506667pt;}
.ya9{bottom:481.826667pt;}
.yc4{bottom:482.146667pt;}
.y4c{bottom:482.306667pt;}
.y74{bottom:483.106667pt;}
.y8b{bottom:499.746667pt;}
.ya8{bottom:500.226667pt;}
.y4b{bottom:500.706667pt;}
.y73{bottom:501.506667pt;}
.y25{bottom:514.626667pt;}
.ya7{bottom:518.626667pt;}
.y4a{bottom:519.106667pt;}
.y72{bottom:519.906667pt;}
.y24{bottom:533.026667pt;}
.y8a{bottom:536.706667pt;}
.ya6{bottom:537.026667pt;}
.y49{bottom:537.506667pt;}
.y71{bottom:538.306667pt;}
.y23{bottom:551.453333pt;}
.ya5{bottom:555.453333pt;}
.y48{bottom:555.933333pt;}
.yc3{bottom:556.253333pt;}
.y70{bottom:556.733333pt;}
.y22{bottom:569.853333pt;}
.y89{bottom:573.853333pt;}
.y47{bottom:574.333333pt;}
.yc2{bottom:574.653333pt;}
.y21{bottom:588.253333pt;}
.ya4{bottom:592.253333pt;}
.yc1{bottom:593.053333pt;}
.y6f{bottom:593.853333pt;}
.y20{bottom:606.653333pt;}
.ya3{bottom:610.653333pt;}
.y88{bottom:610.973333pt;}
.y46{bottom:611.453333pt;}
.y1f{bottom:625.053333pt;}
.y87{bottom:629.373333pt;}
.yc0{bottom:629.853333pt;}
.y6e{bottom:630.973333pt;}
.y1e{bottom:643.453333pt;}
.ya2{bottom:647.773333pt;}
.ybf{bottom:648.253333pt;}
.y45{bottom:648.573333pt;}
.y6d{bottom:649.373333pt;}
.y1d{bottom:661.853333pt;}
.y86{bottom:666.333333pt;}
.y44{bottom:666.973333pt;}
.y6c{bottom:667.773333pt;}
.y1c{bottom:680.253333pt;}
.ya1{bottom:684.733333pt;}
.y43{bottom:685.373333pt;}
.y6b{bottom:686.173333pt;}
.y1b{bottom:698.653333pt;}
.ya0{bottom:703.133333pt;}
.y85{bottom:703.453333pt;}
.y42{bottom:703.773333pt;}
.y6a{bottom:704.573333pt;}
.y1a{bottom:717.053333pt;}
.y9f{bottom:721.533333pt;}
.y84{bottom:721.853333pt;}
.y41{bottom:722.173333pt;}
.ybe{bottom:722.333333pt;}
.y69{bottom:722.973333pt;}
.y19{bottom:735.453333pt;}
.y9e{bottom:739.933333pt;}
.y83{bottom:740.253333pt;}
.y40{bottom:740.573333pt;}
.ybd{bottom:740.733333pt;}
.y68{bottom:741.373333pt;}
.y18{bottom:753.853333pt;}
.ybc{bottom:759.133333pt;}
.y67{bottom:759.773333pt;}
.y17{bottom:772.253333pt;}
.y9d{bottom:777.053333pt;}
.y82{bottom:777.373333pt;}
.y3f{bottom:777.533333pt;}
.y66{bottom:778.173333pt;}
.ybb{bottom:795.973333pt;}
.y65{bottom:796.613333pt;}
.y16{bottom:809.253333pt;}
.y9c{bottom:814.213333pt;}
.y81{bottom:814.373333pt;}
.y3e{bottom:814.693333pt;}
.y64{bottom:815.013333pt;}
.y9b{bottom:832.613333pt;}
.y80{bottom:832.773333pt;}
.y3d{bottom:833.093333pt;}
.y63{bottom:833.413333pt;}
.y15{bottom:846.373333pt;}
.y9a{bottom:851.013333pt;}
.y7f{bottom:851.173333pt;}
.y3c{bottom:851.493333pt;}
.y62{bottom:851.813333pt;}
.y14{bottom:864.773333pt;}
.y3b{bottom:869.893333pt;}
.y61{bottom:870.213333pt;}
.y13{bottom:883.173333pt;}
.y99{bottom:887.973333pt;}
.y3a{bottom:888.293333pt;}
.y60{bottom:888.613333pt;}
.y12{bottom:902.053333pt;}
.y39{bottom:906.693333pt;}
.y5f{bottom:907.013333pt;}
.y11{bottom:923.493333pt;}
.y38{bottom:925.093333pt;}
.y5e{bottom:925.253333pt;}
.y37{bottom:943.493333pt;}
.y5d{bottom:943.653333pt;}
.y10{bottom:950.853333pt;}
.y5c{bottom:962.053333pt;}
.yf{bottom:975.493333pt;}
.y36{bottom:980.453333pt;}
.y9{bottom:1001.093333pt;}
.y2{bottom:1021.440000pt;}
.y1{bottom:1102.240000pt;}
.h8{height:32.222812pt;}
.h9{height:32.557812pt;}
.he{height:44.687500pt;}
.hd{height:45.156250pt;}
.hf{height:46.593750pt;}
.hc{height:52.832812pt;}
.ha{height:56.017500pt;}
.h7{height:58.563750pt;}
.hb{height:60.057813pt;}
.h6{height:60.288750pt;}
.h5{height:65.531250pt;}
.h3{height:75.040000pt;}
.h2{height:84.662813pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:100.960000pt;}
.w5{width:139.066667pt;}
.w4{width:378.173333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:12.960000pt;}
.x8{left:22.240000pt;}
.x5{left:27.880000pt;}
.x3{left:86.874667pt;}
.x2{left:96.032000pt;}
.x6{left:117.160000pt;}
.xf{left:120.031988pt;}
.xb{left:121.471988pt;}
.x10{left:144.026655pt;}
.x11{left:168.026655pt;}
.xe{left:171.066655pt;}
.x12{left:192.026655pt;}
.x4{left:196.986667pt;}
.xd{left:247.906655pt;}
.xc{left:280.706655pt;}
.x1{left:396.893322pt;}
.x7{left:575.173333pt;}
.xa{left:683.039988pt;}
}




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