
    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_dd787a2b0c0e81e4d2df9a00.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.800293;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_9e2139bc3b58cd84062c346a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.851562;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_b700a748babaaa7df171dc4c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2ccd0aa9b317f49d1effaf32.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_b05d5f497862cbb8a151d666.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.752000;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_90dd8b66ccea5f4ac6477085.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cd7aa16d4146e84012784383.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7aa0a95cbc7cb9ffaeeb2852.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933594;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_ad569b88f3271b835a0cd7dc.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.003906;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_163c9559ea404c90948ed85b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_cf1bcf008ce33a307db05aab.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_983a08b1e2bb24dfc080c7e5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.932617;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;}
.lsf{letter-spacing:-0.900000px;}
.ls14{letter-spacing:-0.750000px;}
.ls19{letter-spacing:-0.378600px;}
.lsc{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.341400px;}
.ls9{letter-spacing:-0.180000px;}
.ls10{letter-spacing:-0.037440px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.028080px;}
.ls1{letter-spacing:0.034560px;}
.ls13{letter-spacing:0.037440px;}
.ls3{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.217440px;}
.ls2{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.341400px;}
.ls8{letter-spacing:0.349200px;}
.lsa{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.378720px;}
.lse{letter-spacing:4.860000px;}
.lsd{letter-spacing:14.220000px;}
.ls15{letter-spacing:25.740000px;}
.ls5{letter-spacing:79.020000px;}
.ls16{letter-spacing:129.221280px;}
.ls11{letter-spacing:172.026720px;}
.ls17{letter-spacing:243.180000px;}
.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:-59.760000px;}
.ws4{word-spacing:-21.420000px;}
.ws5{word-spacing:-21.401400px;}
.wsa{word-spacing:-21.097440px;}
.ws3{word-spacing:-21.060000px;}
.ws8{word-spacing:-21.022560px;}
.wsc{word-spacing:-20.718600px;}
.ws6{word-spacing:-20.700000px;}
.wsd{word-spacing:-20.681400px;}
.wsb{word-spacing:-20.310000px;}
.ws0{word-spacing:-20.075760px;}
.ws2{word-spacing:-14.904000px;}
.ws1{word-spacing:-14.832000px;}
.ws7{word-spacing:0.000000px;}
._12{margin-left:-5.203200px;}
._11{margin-left:-3.875040px;}
._2d{margin-left:-2.442960px;}
._2{margin-left:-1.432080px;}
._3{width:1.149120px;}
._6{width:2.358720px;}
._10{width:3.406320px;}
._14{width:4.495920px;}
._1c{width:5.728320px;}
._18{width:6.893040px;}
._7{width:8.002800px;}
._26{width:9.182160px;}
._13{width:11.035440px;}
._16{width:12.784080px;}
._17{width:14.074800px;}
._1b{width:15.921360px;}
._9{width:17.100720px;}
._a{width:18.617040px;}
._1e{width:19.627920px;}
._30{width:22.263360px;}
._15{width:23.270880px;}
._2e{width:25.103520px;}
._2c{width:26.114400px;}
._1d{width:27.293760px;}
._21{width:28.304640px;}
._24{width:30.200400px;}
._25{width:31.590000px;}
._32{width:32.685120px;}
._19{width:34.631760px;}
._1a{width:35.829840px;}
._2f{width:37.071600px;}
._31{width:38.224560px;}
._5{width:39.677040px;}
._8{width:40.856400px;}
._28{width:42.799440px;}
._27{width:44.141760px;}
._33{width:45.489600px;}
._34{width:46.500480px;}
._2a{width:48.606480px;}
._29{width:49.954320px;}
._c{width:52.127040px;}
._b{width:53.239680px;}
._22{width:55.429920px;}
._2b{width:56.431200px;}
._23{width:57.896880px;}
._4{width:60.170880px;}
._35{width:67.947120px;}
._e{width:70.256160px;}
._f{width:71.351280px;}
._1f{width:76.068720px;}
._d{width:79.438320px;}
._20{width:82.218240px;}
._36{width:244.094880px;}
._0{width:292.222560px;}
._1{width:1213.426560px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(255,0,0);}
.fc6{color:rgb(0,0,255);}
.fc1{color:rgb(0,128,0);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs5{font-size:120.240000px;}
.fs2{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:10.440000px;}
.y5{bottom:31.140000px;}
.y2f{bottom:66.960000px;}
.y2e{bottom:72.180000px;}
.y62{bottom:84.240000px;}
.y4f{bottom:84.600000px;}
.y2d{bottom:85.500000px;}
.y84{bottom:86.940000px;}
.y61{bottom:89.460000px;}
.y60{bottom:102.600000px;}
.y4e{bottom:112.320000px;}
.y83{bottom:114.660000px;}
.y2c{bottom:115.380000px;}
.y4d{bottom:140.040000px;}
.y82{bottom:142.380000px;}
.y2b{bottom:143.100000px;}
.y5f{bottom:156.630000px;}
.y4c{bottom:167.970000px;}
.y81{bottom:170.130000px;}
.y29{bottom:170.850000px;}
.y2a{bottom:178.410000px;}
.y5e{bottom:184.350000px;}
.y4b{bottom:195.690000px;}
.y80{bottom:198.030000px;}
.y28{bottom:198.570000px;}
.y5d{bottom:212.250000px;}
.y4a{bottom:223.410000px;}
.y7f{bottom:225.750000px;}
.y27{bottom:226.470000px;}
.y5c{bottom:239.970000px;}
.y49{bottom:251.130000px;}
.y7e{bottom:253.470000px;}
.y26{bottom:254.190000px;}
.y5b{bottom:267.690000px;}
.y48{bottom:279.030000px;}
.y7d{bottom:281.190000px;}
.y25{bottom:281.910000px;}
.y5a{bottom:295.590000px;}
.y47{bottom:306.750000px;}
.y7c{bottom:309.090000px;}
.y24{bottom:309.810000px;}
.y59{bottom:323.310000px;}
.y46{bottom:334.470000px;}
.y7b{bottom:336.810000px;}
.y23{bottom:337.530000px;}
.y58{bottom:351.030000px;}
.y45{bottom:362.190000px;}
.y7a{bottom:364.530000px;}
.y22{bottom:365.250000px;}
.y57{bottom:378.750000px;}
.y44{bottom:390.090000px;}
.y79{bottom:392.430000px;}
.y21{bottom:392.970000px;}
.y56{bottom:406.695000px;}
.y43{bottom:417.855000px;}
.y78{bottom:420.195000px;}
.y20{bottom:420.915000px;}
.y55{bottom:434.415000px;}
.y42{bottom:445.575000px;}
.y77{bottom:447.915000px;}
.y1f{bottom:448.635000px;}
.y54{bottom:462.135000px;}
.y41{bottom:473.475000px;}
.y76{bottom:475.635000px;}
.y1e{bottom:476.355000px;}
.y53{bottom:489.855000px;}
.y40{bottom:501.195000px;}
.y75{bottom:503.535000px;}
.y1d{bottom:504.255000px;}
.y3f{bottom:528.915000px;}
.y74{bottom:531.255000px;}
.y1c{bottom:531.975000px;}
.y52{bottom:538.635000px;}
.y3e{bottom:556.635000px;}
.y1b{bottom:559.695000px;}
.y73{bottom:580.035000px;}
.y3d{bottom:584.535000px;}
.y1a{bottom:587.415000px;}
.y72{bottom:607.755000px;}
.y3c{bottom:612.255000px;}
.y19{bottom:615.315000px;}
.y71{bottom:635.475000px;}
.y3b{bottom:639.975000px;}
.y18{bottom:643.035000px;}
.y70{bottom:663.405000px;}
.y3a{bottom:667.905000px;}
.y17{bottom:670.785000px;}
.y39{bottom:695.625000px;}
.y16{bottom:698.505000px;}
.y6f{bottom:712.185000px;}
.y38{bottom:723.345000px;}
.y15{bottom:726.405000px;}
.y37{bottom:751.065000px;}
.y14{bottom:754.125000px;}
.y6e{bottom:760.965000px;}
.y36{bottom:778.965000px;}
.y13{bottom:781.845000px;}
.y6d{bottom:788.685000px;}
.y35{bottom:806.685000px;}
.y12{bottom:809.745000px;}
.y6c{bottom:816.405000px;}
.y34{bottom:834.405000px;}
.y11{bottom:837.465000px;}
.y6b{bottom:844.125000px;}
.y33{bottom:862.125000px;}
.y10{bottom:865.185000px;}
.y6a{bottom:872.025000px;}
.y32{bottom:890.025000px;}
.yf{bottom:892.905000px;}
.y69{bottom:899.790000px;}
.y31{bottom:917.790000px;}
.ye{bottom:920.850000px;}
.y68{bottom:927.510000px;}
.y30{bottom:945.510000px;}
.yd{bottom:948.570000px;}
.y67{bottom:955.410000px;}
.yc{bottom:976.290000px;}
.y66{bottom:983.130000px;}
.y51{bottom:983.850000px;}
.yb{bottom:1004.190000px;}
.y65{bottom:1010.850000px;}
.ya{bottom:1031.910000px;}
.y64{bottom:1038.570000px;}
.y9{bottom:1059.630000px;}
.y63{bottom:1066.470000px;}
.y8{bottom:1087.350000px;}
.y7{bottom:1115.250000px;}
.y50{bottom:1122.810000px;}
.y4{bottom:1139.370000px;}
.y3{bottom:1159.200000px;}
.y2{bottom:1183.320000px;}
.y1{bottom:1210.680000px;}
.hd{height:38.158594px;}
.h7{height:49.150080px;}
.h5{height:50.229844px;}
.hb{height:52.998047px;}
.he{height:58.651172px;}
.hf{height:59.439023px;}
.ha{height:60.465234px;}
.hc{height:65.884219px;}
.h4{height:67.169883px;}
.h2{height:76.355508px;}
.h9{height:82.676953px;}
.h8{height:84.898125px;}
.h10{height:86.585445px;}
.h6{height:95.874961px;}
.h3{height:105.060586px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:42.479987px;}
.x4{left:84.995987px;}
.xf{left:89.855987px;}
.x1{left:106.415987px;}
.x6{left:139.715987px;}
.x9{left:152.669987px;}
.x10{left:188.129973px;}
.x11{left:194.969987px;}
.x7{left:210.629987px;}
.xe{left:301.034987px;}
.x8{left:310.754987px;}
.x14{left:327.674987px;}
.x12{left:334.874973px;}
.x13{left:341.714987px;}
.xc{left:400.754973px;}
.xd{left:407.594987px;}
.xb{left:417.854987px;}
.xa{left:446.504987px;}
.x2{left:521.564987px;}
.x3{left:641.669987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.800000pt;}
.ls14{letter-spacing:-0.666667pt;}
.ls19{letter-spacing:-0.336533pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.303467pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls10{letter-spacing:-0.033280pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.024960pt;}
.ls1{letter-spacing:0.030720pt;}
.ls13{letter-spacing:0.033280pt;}
.ls3{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.193280pt;}
.ls2{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.303467pt;}
.ls8{letter-spacing:0.310400pt;}
.lsa{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.336640pt;}
.lse{letter-spacing:4.320000pt;}
.lsd{letter-spacing:12.640000pt;}
.ls15{letter-spacing:22.880000pt;}
.ls5{letter-spacing:70.240000pt;}
.ls16{letter-spacing:114.863360pt;}
.ls11{letter-spacing:152.912640pt;}
.ls17{letter-spacing:216.160000pt;}
.ws9{word-spacing:-53.120000pt;}
.ws4{word-spacing:-19.040000pt;}
.ws5{word-spacing:-19.023467pt;}
.wsa{word-spacing:-18.753280pt;}
.ws3{word-spacing:-18.720000pt;}
.ws8{word-spacing:-18.686720pt;}
.wsc{word-spacing:-18.416533pt;}
.ws6{word-spacing:-18.400000pt;}
.wsd{word-spacing:-18.383467pt;}
.wsb{word-spacing:-18.053333pt;}
.ws0{word-spacing:-17.845120pt;}
.ws2{word-spacing:-13.248000pt;}
.ws1{word-spacing:-13.184000pt;}
.ws7{word-spacing:0.000000pt;}
._12{margin-left:-4.625067pt;}
._11{margin-left:-3.444480pt;}
._2d{margin-left:-2.171520pt;}
._2{margin-left:-1.272960pt;}
._3{width:1.021440pt;}
._6{width:2.096640pt;}
._10{width:3.027840pt;}
._14{width:3.996373pt;}
._1c{width:5.091840pt;}
._18{width:6.127147pt;}
._7{width:7.113600pt;}
._26{width:8.161920pt;}
._13{width:9.809280pt;}
._16{width:11.363627pt;}
._17{width:12.510933pt;}
._1b{width:14.152320pt;}
._9{width:15.200640pt;}
._a{width:16.548480pt;}
._1e{width:17.447040pt;}
._30{width:19.789653pt;}
._15{width:20.685227pt;}
._2e{width:22.314240pt;}
._2c{width:23.212800pt;}
._1d{width:24.261120pt;}
._21{width:25.159680pt;}
._24{width:26.844800pt;}
._25{width:28.080000pt;}
._32{width:29.053440pt;}
._19{width:30.783787pt;}
._1a{width:31.848747pt;}
._2f{width:32.952533pt;}
._31{width:33.977387pt;}
._5{width:35.268480pt;}
._8{width:36.316800pt;}
._28{width:38.043947pt;}
._27{width:39.237120pt;}
._33{width:40.435200pt;}
._34{width:41.333760pt;}
._2a{width:43.205760pt;}
._29{width:44.403840pt;}
._c{width:46.335147pt;}
._b{width:47.324160pt;}
._22{width:49.271040pt;}
._2b{width:50.161067pt;}
._23{width:51.463893pt;}
._4{width:53.485227pt;}
._35{width:60.397440pt;}
._e{width:62.449920pt;}
._f{width:63.423360pt;}
._1f{width:67.616640pt;}
._d{width:70.611840pt;}
._20{width:73.082880pt;}
._36{width:216.973227pt;}
._0{width:259.753387pt;}
._1{width:1078.601387pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs5{font-size:106.880000pt;}
.fs2{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:9.280000pt;}
.y5{bottom:27.680000pt;}
.y2f{bottom:59.520000pt;}
.y2e{bottom:64.160000pt;}
.y62{bottom:74.880000pt;}
.y4f{bottom:75.200000pt;}
.y2d{bottom:76.000000pt;}
.y84{bottom:77.280000pt;}
.y61{bottom:79.520000pt;}
.y60{bottom:91.200000pt;}
.y4e{bottom:99.840000pt;}
.y83{bottom:101.920000pt;}
.y2c{bottom:102.560000pt;}
.y4d{bottom:124.480000pt;}
.y82{bottom:126.560000pt;}
.y2b{bottom:127.200000pt;}
.y5f{bottom:139.226667pt;}
.y4c{bottom:149.306667pt;}
.y81{bottom:151.226667pt;}
.y29{bottom:151.866667pt;}
.y2a{bottom:158.586667pt;}
.y5e{bottom:163.866667pt;}
.y4b{bottom:173.946667pt;}
.y80{bottom:176.026667pt;}
.y28{bottom:176.506667pt;}
.y5d{bottom:188.666667pt;}
.y4a{bottom:198.586667pt;}
.y7f{bottom:200.666667pt;}
.y27{bottom:201.306667pt;}
.y5c{bottom:213.306667pt;}
.y49{bottom:223.226667pt;}
.y7e{bottom:225.306667pt;}
.y26{bottom:225.946667pt;}
.y5b{bottom:237.946667pt;}
.y48{bottom:248.026667pt;}
.y7d{bottom:249.946667pt;}
.y25{bottom:250.586667pt;}
.y5a{bottom:262.746667pt;}
.y47{bottom:272.666667pt;}
.y7c{bottom:274.746667pt;}
.y24{bottom:275.386667pt;}
.y59{bottom:287.386667pt;}
.y46{bottom:297.306667pt;}
.y7b{bottom:299.386667pt;}
.y23{bottom:300.026667pt;}
.y58{bottom:312.026667pt;}
.y45{bottom:321.946667pt;}
.y7a{bottom:324.026667pt;}
.y22{bottom:324.666667pt;}
.y57{bottom:336.666667pt;}
.y44{bottom:346.746667pt;}
.y79{bottom:348.826667pt;}
.y21{bottom:349.306667pt;}
.y56{bottom:361.506667pt;}
.y43{bottom:371.426667pt;}
.y78{bottom:373.506667pt;}
.y20{bottom:374.146667pt;}
.y55{bottom:386.146667pt;}
.y42{bottom:396.066667pt;}
.y77{bottom:398.146667pt;}
.y1f{bottom:398.786667pt;}
.y54{bottom:410.786667pt;}
.y41{bottom:420.866667pt;}
.y76{bottom:422.786667pt;}
.y1e{bottom:423.426667pt;}
.y53{bottom:435.426667pt;}
.y40{bottom:445.506667pt;}
.y75{bottom:447.586667pt;}
.y1d{bottom:448.226667pt;}
.y3f{bottom:470.146667pt;}
.y74{bottom:472.226667pt;}
.y1c{bottom:472.866667pt;}
.y52{bottom:478.786667pt;}
.y3e{bottom:494.786667pt;}
.y1b{bottom:497.506667pt;}
.y73{bottom:515.586667pt;}
.y3d{bottom:519.586667pt;}
.y1a{bottom:522.146667pt;}
.y72{bottom:540.226667pt;}
.y3c{bottom:544.226667pt;}
.y19{bottom:546.946667pt;}
.y71{bottom:564.866667pt;}
.y3b{bottom:568.866667pt;}
.y18{bottom:571.586667pt;}
.y70{bottom:589.693333pt;}
.y3a{bottom:593.693333pt;}
.y17{bottom:596.253333pt;}
.y39{bottom:618.333333pt;}
.y16{bottom:620.893333pt;}
.y6f{bottom:633.053333pt;}
.y38{bottom:642.973333pt;}
.y15{bottom:645.693333pt;}
.y37{bottom:667.613333pt;}
.y14{bottom:670.333333pt;}
.y6e{bottom:676.413333pt;}
.y36{bottom:692.413333pt;}
.y13{bottom:694.973333pt;}
.y6d{bottom:701.053333pt;}
.y35{bottom:717.053333pt;}
.y12{bottom:719.773333pt;}
.y6c{bottom:725.693333pt;}
.y34{bottom:741.693333pt;}
.y11{bottom:744.413333pt;}
.y6b{bottom:750.333333pt;}
.y33{bottom:766.333333pt;}
.y10{bottom:769.053333pt;}
.y6a{bottom:775.133333pt;}
.y32{bottom:791.133333pt;}
.yf{bottom:793.693333pt;}
.y69{bottom:799.813333pt;}
.y31{bottom:815.813333pt;}
.ye{bottom:818.533333pt;}
.y68{bottom:824.453333pt;}
.y30{bottom:840.453333pt;}
.yd{bottom:843.173333pt;}
.y67{bottom:849.253333pt;}
.yc{bottom:867.813333pt;}
.y66{bottom:873.893333pt;}
.y51{bottom:874.533333pt;}
.yb{bottom:892.613333pt;}
.y65{bottom:898.533333pt;}
.ya{bottom:917.253333pt;}
.y64{bottom:923.173333pt;}
.y9{bottom:941.893333pt;}
.y63{bottom:947.973333pt;}
.y8{bottom:966.533333pt;}
.y7{bottom:991.333333pt;}
.y50{bottom:998.053333pt;}
.y4{bottom:1012.773333pt;}
.y3{bottom:1030.400000pt;}
.y2{bottom:1051.840000pt;}
.y1{bottom:1076.160000pt;}
.hd{height:33.918750pt;}
.h7{height:43.688960pt;}
.h5{height:44.648750pt;}
.hb{height:47.109375pt;}
.he{height:52.134375pt;}
.hf{height:52.834688pt;}
.ha{height:53.746875pt;}
.hc{height:58.563750pt;}
.h4{height:59.706562pt;}
.h2{height:67.871563pt;}
.h9{height:73.490625pt;}
.h8{height:75.465000pt;}
.h10{height:76.964840pt;}
.h6{height:85.222187pt;}
.h3{height:93.387187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:37.759988pt;}
.x4{left:75.551988pt;}
.xf{left:79.871988pt;}
.x1{left:94.591988pt;}
.x6{left:124.191988pt;}
.x9{left:135.706655pt;}
.x10{left:167.226643pt;}
.x11{left:173.306655pt;}
.x7{left:187.226655pt;}
.xe{left:267.586655pt;}
.x8{left:276.226655pt;}
.x14{left:291.266655pt;}
.x12{left:297.666643pt;}
.x13{left:303.746655pt;}
.xc{left:356.226643pt;}
.xd{left:362.306655pt;}
.xb{left:371.426655pt;}
.xa{left:396.893322pt;}
.x2{left:463.613322pt;}
.x3{left:570.373322pt;}
}




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