
    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_ecd1677e0c7b5c7207b52518.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1183887af5908ee9b6ee4920.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3e24531a53a27fab2c2d89d0.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_90cae0a7d74de6334335ceee.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ec5d09ad11f475f3f374e679.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.052734;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_b700a748babaaa7df171dc4c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.767578;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_e451fe483eec520677aa0780.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.933105;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;}
.m2{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.244317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244317,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.240000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.544800px;}
.ls4{letter-spacing:-0.463800px;}
.ls18{letter-spacing:-0.431400px;}
.ls9{letter-spacing:-0.357000px;}
.ls13{letter-spacing:-0.326400px;}
.lsa{letter-spacing:-0.303000px;}
.ls6{letter-spacing:-0.226200px;}
.ls3{letter-spacing:-0.132600px;}
.lsb{letter-spacing:-0.108600px;}
.ls17{letter-spacing:-0.058320px;}
.ls1{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.038880px;}
.ls19{letter-spacing:0.045540px;}
.ls0{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.150000px;}
.lse{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.190200px;}
.ls10{letter-spacing:0.252600px;}
.lsd{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.417000px;}
.ls1c{letter-spacing:0.479520px;}
.ls7{letter-spacing:0.493800px;}
.ls1d{letter-spacing:0.780000px;}
.ls11{letter-spacing:1.026000px;}
.ls14{letter-spacing:2.460960px;}
.ls1b{letter-spacing:12.186720px;}
.ls15{letter-spacing:16.140960px;}
.ls1a{letter-spacing:42.426720px;}
.ls12{letter-spacing:64.170720px;}
.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;}
}
.wsc{word-spacing:-59.772960px;}
.ws9{word-spacing:-59.760000px;}
.wsa{word-spacing:-46.080720px;}
.wsb{word-spacing:-40.268880px;}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws8{word-spacing:-13.505760px;}
.wsd{word-spacing:-13.447440px;}
.ws4{word-spacing:-9.437760px;}
.ws6{word-spacing:-9.146880px;}
.ws5{word-spacing:-8.786880px;}
.ws7{word-spacing:0.000000px;}
._1e{margin-left:-533.278560px;}
._1f{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.434240px;}
._8{margin-left:-306.639120px;}
._12{margin-left:-292.350240px;}
._4{margin-left:-289.112160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.330240px;}
._16{margin-left:-222.594000px;}
._22{margin-left:-207.538560px;}
._f{margin-left:-202.866240px;}
._19{margin-left:-201.453120px;}
._18{margin-left:-199.809600px;}
._21{margin-left:-189.220320px;}
._26{margin-left:-179.841600px;}
._e{margin-left:-171.054720px;}
._17{margin-left:-166.147200px;}
._d{margin-left:-164.962080px;}
._9{margin-left:-153.774720px;}
._10{margin-left:-152.486400px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._25{margin-left:-145.392000px;}
._c{margin-left:-134.552160px;}
._23{margin-left:-133.199760px;}
._11{margin-left:-114.982560px;}
._24{margin-left:-109.266240px;}
._1d{margin-left:-102.349440px;}
._7{margin-left:-90.944880px;}
._1c{margin-left:-86.399760px;}
._1b{margin-left:-83.520000px;}
._13{margin-left:-81.171360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.303920px;}
._1a{margin-left:-31.530240px;}
._28{margin-left:-5.127120px;}
._34{margin-left:-3.961680px;}
._27{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._20{width:1.046880px;}
._2b{width:2.311680px;}
._2f{width:3.343200px;}
._2e{width:4.368240px;}
._31{width:6.274800px;}
._30{width:7.508880px;}
._2d{width:8.964000px;}
._2c{width:10.094400px;}
._32{width:11.832480px;}
._29{width:13.406400px;}
._2a{width:14.883600px;}
._35{width:16.088640px;}
._33{width:17.964720px;}
._37{width:19.283760px;}
._36{width:20.420640px;}
.fc2{color:rgb(15,17,21);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:68.580000px;}
.y30{bottom:97.740000px;}
.y87{bottom:108.720000px;}
.yb3{bottom:110.340000px;}
.y2f{bottom:118.800000px;}
.y57{bottom:119.520000px;}
.y86{bottom:129.780000px;}
.yb2{bottom:131.400000px;}
.yb5{bottom:131.940000px;}
.y2e{bottom:139.860000px;}
.y56{bottom:140.580000px;}
.yb4{bottom:149.040000px;}
.y85{bottom:150.840000px;}
.yb1{bottom:152.460000px;}
.y2d{bottom:160.920000px;}
.y55{bottom:161.640000px;}
.y84{bottom:171.900000px;}
.yb0{bottom:173.520000px;}
.y2c{bottom:181.980000px;}
.y54{bottom:182.700000px;}
.y83{bottom:192.960000px;}
.yaf{bottom:194.580000px;}
.y2b{bottom:203.040000px;}
.y53{bottom:203.760000px;}
.y82{bottom:214.050000px;}
.yae{bottom:215.670000px;}
.y2a{bottom:224.130000px;}
.y52{bottom:224.850000px;}
.y81{bottom:235.110000px;}
.yad{bottom:236.730000px;}
.y29{bottom:245.190000px;}
.y51{bottom:245.910000px;}
.y80{bottom:256.170000px;}
.yac{bottom:257.790000px;}
.y28{bottom:266.070000px;}
.y50{bottom:266.970000px;}
.y7f{bottom:277.230000px;}
.yab{bottom:278.850000px;}
.y27{bottom:287.130000px;}
.y4f{bottom:288.030000px;}
.y7e{bottom:298.290000px;}
.yaa{bottom:299.910000px;}
.y26{bottom:308.190000px;}
.y4e{bottom:318.090000px;}
.y7d{bottom:319.350000px;}
.ya9{bottom:320.970000px;}
.y25{bottom:329.250000px;}
.y4d{bottom:339.150000px;}
.y7c{bottom:340.230000px;}
.ya8{bottom:342.030000px;}
.y24{bottom:350.310000px;}
.y4c{bottom:360.210000px;}
.y7b{bottom:361.290000px;}
.ya7{bottom:363.090000px;}
.y23{bottom:371.370000px;}
.y7a{bottom:382.350000px;}
.ya6{bottom:384.150000px;}
.y4b{bottom:390.270000px;}
.y22{bottom:392.430000px;}
.y79{bottom:403.410000px;}
.ya5{bottom:405.210000px;}
.y4a{bottom:411.330000px;}
.y21{bottom:413.490000px;}
.y78{bottom:424.470000px;}
.ya4{bottom:426.270000px;}
.y49{bottom:432.390000px;}
.y20{bottom:434.550000px;}
.y77{bottom:445.575000px;}
.ya3{bottom:447.375000px;}
.y1f{bottom:455.655000px;}
.y48{bottom:462.495000px;}
.y76{bottom:466.635000px;}
.ya2{bottom:468.435000px;}
.y1e{bottom:476.715000px;}
.y47{bottom:483.555000px;}
.y75{bottom:487.695000px;}
.ya1{bottom:489.495000px;}
.y1d{bottom:500.295000px;}
.y46{bottom:504.615000px;}
.y74{bottom:508.755000px;}
.ya0{bottom:510.555000px;}
.y73{bottom:529.815000px;}
.y1c{bottom:530.175000px;}
.y9f{bottom:531.615000px;}
.y45{bottom:534.675000px;}
.y1b{bottom:551.235000px;}
.y9e{bottom:552.675000px;}
.y44{bottom:555.735000px;}
.y72{bottom:559.875000px;}
.y1a{bottom:572.295000px;}
.y9d{bottom:573.735000px;}
.y43{bottom:576.795000px;}
.y71{bottom:580.935000px;}
.y19{bottom:593.355000px;}
.y9c{bottom:594.795000px;}
.y42{bottom:597.855000px;}
.y70{bottom:601.995000px;}
.y18{bottom:614.415000px;}
.y9b{bottom:615.855000px;}
.y41{bottom:618.915000px;}
.y6f{bottom:623.235000px;}
.y17{bottom:635.475000px;}
.y9a{bottom:636.915000px;}
.y40{bottom:639.975000px;}
.y6e{bottom:645.015000px;}
.y16{bottom:656.535000px;}
.y99{bottom:657.795000px;}
.y3f{bottom:661.035000px;}
.y6d{bottom:666.795000px;}
.y15{bottom:677.595000px;}
.y98{bottom:678.855000px;}
.y3e{bottom:682.125000px;}
.y6c{bottom:696.885000px;}
.y14{bottom:698.685000px;}
.y97{bottom:699.945000px;}
.y3d{bottom:703.185000px;}
.y6b{bottom:718.125000px;}
.y13{bottom:719.745000px;}
.y96{bottom:721.005000px;}
.y3c{bottom:724.245000px;}
.y6a{bottom:739.905000px;}
.y12{bottom:740.805000px;}
.y95{bottom:742.065000px;}
.y3b{bottom:745.305000px;}
.y69{bottom:761.685000px;}
.y11{bottom:761.865000px;}
.y3a{bottom:762.405000px;}
.y94{bottom:763.125000px;}
.y10{bottom:782.925000px;}
.y68{bottom:783.465000px;}
.y93{bottom:784.185000px;}
.yf{bottom:803.985000px;}
.y92{bottom:805.245000px;}
.y67{bottom:824.865000px;}
.ye{bottom:825.045000px;}
.y91{bottom:826.305000px;}
.y39{bottom:844.485000px;}
.y66{bottom:845.925000px;}
.y90{bottom:847.365000px;}
.yd{bottom:848.265000px;}
.y65{bottom:866.985000px;}
.y8f{bottom:868.425000px;}
.yc{bottom:874.545000px;}
.y64{bottom:888.045000px;}
.y8e{bottom:889.485000px;}
.yb{bottom:891.285000px;}
.y63{bottom:909.105000px;}
.y8d{bottom:910.545000px;}
.ya{bottom:913.605000px;}
.y62{bottom:930.210000px;}
.y8c{bottom:931.650000px;}
.y9{bottom:938.850000px;}
.y61{bottom:951.270000px;}
.y8b{bottom:952.710000px;}
.y60{bottom:972.330000px;}
.y8{bottom:972.510000px;}
.y8a{bottom:973.770000px;}
.y5f{bottom:993.390000px;}
.y89{bottom:994.830000px;}
.y7{bottom:1006.170000px;}
.y5e{bottom:1014.450000px;}
.y88{bottom:1015.890000px;}
.y5d{bottom:1034.790000px;}
.y38{bottom:1036.950000px;}
.y5{bottom:1046.310000px;}
.y5c{bottom:1055.670000px;}
.y37{bottom:1058.010000px;}
.y5b{bottom:1076.730000px;}
.y4{bottom:1078.530000px;}
.y36{bottom:1079.070000px;}
.y5a{bottom:1097.790000px;}
.y35{bottom:1100.130000px;}
.y3{bottom:1110.570000px;}
.y59{bottom:1119.750000px;}
.y34{bottom:1121.190000px;}
.y58{bottom:1141.530000px;}
.y33{bottom:1142.250000px;}
.y2{bottom:1142.790000px;}
.y32{bottom:1170.180000px;}
.y1{bottom:1176.840000px;}
.y31{bottom:1190.340000px;}
.h8{height:38.671172px;}
.ha{height:43.506914px;}
.hc{height:45.170156px;}
.hb{height:45.316055px;}
.h9{height:59.439023px;}
.h6{height:61.189805px;}
.h3{height:65.884219px;}
.h7{height:67.824844px;}
.h4{height:83.787539px;}
.h2{height:86.255508px;}
.h5{height:98.051133px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x6{left:53.999987px;}
.x7{left:61.739987px;}
.xd{left:65.699987px;}
.xe{left:69.479987px;}
.x10{left:70.559987px;}
.x8{left:75.599987px;}
.x12{left:81.035987px;}
.x13{left:108.035987px;}
.xc{left:135.215987px;}
.x5{left:173.189987px;}
.x9{left:223.769987px;}
.x3{left:286.814987px;}
.x11{left:291.314987px;}
.xf{left:342.614987px;}
.x2{left:350.714987px;}
.x4{left:419.324987px;}
.x1{left:479.444987px;}
.xa{left:631.229987px;}
.xb{left:636.449987px;}
.x14{left:839.339987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.880000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.484267pt;}
.ls4{letter-spacing:-0.412267pt;}
.ls18{letter-spacing:-0.383467pt;}
.ls9{letter-spacing:-0.317333pt;}
.ls13{letter-spacing:-0.290133pt;}
.lsa{letter-spacing:-0.269333pt;}
.ls6{letter-spacing:-0.201067pt;}
.ls3{letter-spacing:-0.117867pt;}
.lsb{letter-spacing:-0.096533pt;}
.ls17{letter-spacing:-0.051840pt;}
.ls1{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.034560pt;}
.ls19{letter-spacing:0.040480pt;}
.ls0{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.133333pt;}
.lse{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.169067pt;}
.ls10{letter-spacing:0.224533pt;}
.lsd{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.370667pt;}
.ls1c{letter-spacing:0.426240pt;}
.ls7{letter-spacing:0.438933pt;}
.ls1d{letter-spacing:0.693333pt;}
.ls11{letter-spacing:0.912000pt;}
.ls14{letter-spacing:2.187520pt;}
.ls1b{letter-spacing:10.832640pt;}
.ls15{letter-spacing:14.347520pt;}
.ls1a{letter-spacing:37.712640pt;}
.ls12{letter-spacing:57.040640pt;}
.wsc{word-spacing:-53.131520pt;}
.ws9{word-spacing:-53.120000pt;}
.wsa{word-spacing:-40.960640pt;}
.wsb{word-spacing:-35.794560pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws8{word-spacing:-12.005120pt;}
.wsd{word-spacing:-11.953280pt;}
.ws4{word-spacing:-8.389120pt;}
.ws6{word-spacing:-8.130560pt;}
.ws5{word-spacing:-7.810560pt;}
.ws7{word-spacing:0.000000pt;}
._1e{margin-left:-474.025387pt;}
._1f{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.941547pt;}
._8{margin-left:-272.568107pt;}
._12{margin-left:-259.866880pt;}
._4{margin-left:-256.988587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.626880pt;}
._16{margin-left:-197.861333pt;}
._22{margin-left:-184.478720pt;}
._f{margin-left:-180.325547pt;}
._19{margin-left:-179.069440pt;}
._18{margin-left:-177.608533pt;}
._21{margin-left:-168.195840pt;}
._26{margin-left:-159.859200pt;}
._e{margin-left:-152.048640pt;}
._17{margin-left:-147.686400pt;}
._d{margin-left:-146.632960pt;}
._9{margin-left:-136.688640pt;}
._10{margin-left:-135.543467pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._25{margin-left:-129.237333pt;}
._c{margin-left:-119.601920pt;}
._23{margin-left:-118.399787pt;}
._11{margin-left:-102.206720pt;}
._24{margin-left:-97.125547pt;}
._1d{margin-left:-90.977280pt;}
._7{margin-left:-80.839893pt;}
._1c{margin-left:-76.799787pt;}
._1b{margin-left:-74.240000pt;}
._13{margin-left:-72.152320pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.825707pt;}
._1a{margin-left:-28.026880pt;}
._28{margin-left:-4.557440pt;}
._34{margin-left:-3.521493pt;}
._27{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._20{width:0.930560pt;}
._2b{width:2.054827pt;}
._2f{width:2.971733pt;}
._2e{width:3.882880pt;}
._31{width:5.577600pt;}
._30{width:6.674560pt;}
._2d{width:7.968000pt;}
._2c{width:8.972800pt;}
._32{width:10.517760pt;}
._29{width:11.916800pt;}
._2a{width:13.229867pt;}
._35{width:14.301013pt;}
._33{width:15.968640pt;}
._37{width:17.141120pt;}
._36{width:18.151680pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:60.960000pt;}
.y30{bottom:86.880000pt;}
.y87{bottom:96.640000pt;}
.yb3{bottom:98.080000pt;}
.y2f{bottom:105.600000pt;}
.y57{bottom:106.240000pt;}
.y86{bottom:115.360000pt;}
.yb2{bottom:116.800000pt;}
.yb5{bottom:117.280000pt;}
.y2e{bottom:124.320000pt;}
.y56{bottom:124.960000pt;}
.yb4{bottom:132.480000pt;}
.y85{bottom:134.080000pt;}
.yb1{bottom:135.520000pt;}
.y2d{bottom:143.040000pt;}
.y55{bottom:143.680000pt;}
.y84{bottom:152.800000pt;}
.yb0{bottom:154.240000pt;}
.y2c{bottom:161.760000pt;}
.y54{bottom:162.400000pt;}
.y83{bottom:171.520000pt;}
.yaf{bottom:172.960000pt;}
.y2b{bottom:180.480000pt;}
.y53{bottom:181.120000pt;}
.y82{bottom:190.266667pt;}
.yae{bottom:191.706667pt;}
.y2a{bottom:199.226667pt;}
.y52{bottom:199.866667pt;}
.y81{bottom:208.986667pt;}
.yad{bottom:210.426667pt;}
.y29{bottom:217.946667pt;}
.y51{bottom:218.586667pt;}
.y80{bottom:227.706667pt;}
.yac{bottom:229.146667pt;}
.y28{bottom:236.506667pt;}
.y50{bottom:237.306667pt;}
.y7f{bottom:246.426667pt;}
.yab{bottom:247.866667pt;}
.y27{bottom:255.226667pt;}
.y4f{bottom:256.026667pt;}
.y7e{bottom:265.146667pt;}
.yaa{bottom:266.586667pt;}
.y26{bottom:273.946667pt;}
.y4e{bottom:282.746667pt;}
.y7d{bottom:283.866667pt;}
.ya9{bottom:285.306667pt;}
.y25{bottom:292.666667pt;}
.y4d{bottom:301.466667pt;}
.y7c{bottom:302.426667pt;}
.ya8{bottom:304.026667pt;}
.y24{bottom:311.386667pt;}
.y4c{bottom:320.186667pt;}
.y7b{bottom:321.146667pt;}
.ya7{bottom:322.746667pt;}
.y23{bottom:330.106667pt;}
.y7a{bottom:339.866667pt;}
.ya6{bottom:341.466667pt;}
.y4b{bottom:346.906667pt;}
.y22{bottom:348.826667pt;}
.y79{bottom:358.586667pt;}
.ya5{bottom:360.186667pt;}
.y4a{bottom:365.626667pt;}
.y21{bottom:367.546667pt;}
.y78{bottom:377.306667pt;}
.ya4{bottom:378.906667pt;}
.y49{bottom:384.346667pt;}
.y20{bottom:386.266667pt;}
.y77{bottom:396.066667pt;}
.ya3{bottom:397.666667pt;}
.y1f{bottom:405.026667pt;}
.y48{bottom:411.106667pt;}
.y76{bottom:414.786667pt;}
.ya2{bottom:416.386667pt;}
.y1e{bottom:423.746667pt;}
.y47{bottom:429.826667pt;}
.y75{bottom:433.506667pt;}
.ya1{bottom:435.106667pt;}
.y1d{bottom:444.706667pt;}
.y46{bottom:448.546667pt;}
.y74{bottom:452.226667pt;}
.ya0{bottom:453.826667pt;}
.y73{bottom:470.946667pt;}
.y1c{bottom:471.266667pt;}
.y9f{bottom:472.546667pt;}
.y45{bottom:475.266667pt;}
.y1b{bottom:489.986667pt;}
.y9e{bottom:491.266667pt;}
.y44{bottom:493.986667pt;}
.y72{bottom:497.666667pt;}
.y1a{bottom:508.706667pt;}
.y9d{bottom:509.986667pt;}
.y43{bottom:512.706667pt;}
.y71{bottom:516.386667pt;}
.y19{bottom:527.426667pt;}
.y9c{bottom:528.706667pt;}
.y42{bottom:531.426667pt;}
.y70{bottom:535.106667pt;}
.y18{bottom:546.146667pt;}
.y9b{bottom:547.426667pt;}
.y41{bottom:550.146667pt;}
.y6f{bottom:553.986667pt;}
.y17{bottom:564.866667pt;}
.y9a{bottom:566.146667pt;}
.y40{bottom:568.866667pt;}
.y6e{bottom:573.346667pt;}
.y16{bottom:583.586667pt;}
.y99{bottom:584.706667pt;}
.y3f{bottom:587.586667pt;}
.y6d{bottom:592.706667pt;}
.y15{bottom:602.306667pt;}
.y98{bottom:603.426667pt;}
.y3e{bottom:606.333333pt;}
.y6c{bottom:619.453333pt;}
.y14{bottom:621.053333pt;}
.y97{bottom:622.173333pt;}
.y3d{bottom:625.053333pt;}
.y6b{bottom:638.333333pt;}
.y13{bottom:639.773333pt;}
.y96{bottom:640.893333pt;}
.y3c{bottom:643.773333pt;}
.y6a{bottom:657.693333pt;}
.y12{bottom:658.493333pt;}
.y95{bottom:659.613333pt;}
.y3b{bottom:662.493333pt;}
.y69{bottom:677.053333pt;}
.y11{bottom:677.213333pt;}
.y3a{bottom:677.693333pt;}
.y94{bottom:678.333333pt;}
.y10{bottom:695.933333pt;}
.y68{bottom:696.413333pt;}
.y93{bottom:697.053333pt;}
.yf{bottom:714.653333pt;}
.y92{bottom:715.773333pt;}
.y67{bottom:733.213333pt;}
.ye{bottom:733.373333pt;}
.y91{bottom:734.493333pt;}
.y39{bottom:750.653333pt;}
.y66{bottom:751.933333pt;}
.y90{bottom:753.213333pt;}
.yd{bottom:754.013333pt;}
.y65{bottom:770.653333pt;}
.y8f{bottom:771.933333pt;}
.yc{bottom:777.373333pt;}
.y64{bottom:789.373333pt;}
.y8e{bottom:790.653333pt;}
.yb{bottom:792.253333pt;}
.y63{bottom:808.093333pt;}
.y8d{bottom:809.373333pt;}
.ya{bottom:812.093333pt;}
.y62{bottom:826.853333pt;}
.y8c{bottom:828.133333pt;}
.y9{bottom:834.533333pt;}
.y61{bottom:845.573333pt;}
.y8b{bottom:846.853333pt;}
.y60{bottom:864.293333pt;}
.y8{bottom:864.453333pt;}
.y8a{bottom:865.573333pt;}
.y5f{bottom:883.013333pt;}
.y89{bottom:884.293333pt;}
.y7{bottom:894.373333pt;}
.y5e{bottom:901.733333pt;}
.y88{bottom:903.013333pt;}
.y5d{bottom:919.813333pt;}
.y38{bottom:921.733333pt;}
.y5{bottom:930.053333pt;}
.y5c{bottom:938.373333pt;}
.y37{bottom:940.453333pt;}
.y5b{bottom:957.093333pt;}
.y4{bottom:958.693333pt;}
.y36{bottom:959.173333pt;}
.y5a{bottom:975.813333pt;}
.y35{bottom:977.893333pt;}
.y3{bottom:987.173333pt;}
.y59{bottom:995.333333pt;}
.y34{bottom:996.613333pt;}
.y58{bottom:1014.693333pt;}
.y33{bottom:1015.333333pt;}
.y2{bottom:1015.813333pt;}
.y32{bottom:1040.160000pt;}
.y1{bottom:1046.080000pt;}
.y31{bottom:1058.080000pt;}
.h8{height:34.374375pt;}
.ha{height:38.672812pt;}
.hc{height:40.151250pt;}
.hb{height:40.280938pt;}
.h9{height:52.834688pt;}
.h6{height:54.390938pt;}
.h3{height:58.563750pt;}
.h7{height:60.288750pt;}
.h4{height:74.477812pt;}
.h2{height:76.671562pt;}
.h5{height:87.156562pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x6{left:47.999988pt;}
.x7{left:54.879988pt;}
.xd{left:58.399988pt;}
.xe{left:61.759988pt;}
.x10{left:62.719988pt;}
.x8{left:67.199988pt;}
.x12{left:72.031988pt;}
.x13{left:96.031988pt;}
.xc{left:120.191988pt;}
.x5{left:153.946655pt;}
.x9{left:198.906655pt;}
.x3{left:254.946655pt;}
.x11{left:258.946655pt;}
.xf{left:304.546655pt;}
.x2{left:311.746655pt;}
.x4{left:372.733321pt;}
.x1{left:426.173321pt;}
.xa{left:561.093322pt;}
.xb{left:565.733322pt;}
.x14{left:746.079988pt;}
}




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