
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3f32e8884f715fbd9f1ab325.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d43948c44943d5fa642180fb.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b700a748babaaa7df171dc4c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2ccd0aa9b317f49d1effaf32.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_b05d5f497862cbb8a151d666.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_385f2a0b0ffd1eaa3e9a83e9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4e35571c8f95830f325ced2b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_47b110d7907534c375a33a45.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_9104e7ca251b0a06b282b81d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.783691;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_531af1f80100c76a53688af8.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_46071426478df1eb4c00d7fb.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.372070;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m2{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;}
.ls5{letter-spacing:-0.560400px;}
.lsa{letter-spacing:-0.360000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.034560px;}
.ls3{letter-spacing:0.037440px;}
.ls2{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.149760px;}
.ls8{letter-spacing:0.171360px;}
.ls7{letter-spacing:0.341400px;}
.lsb{letter-spacing:0.360000px;}
.ls6{letter-spacing:10.620000px;}
.lsd{letter-spacing:83.861280px;}
.ls9{letter-spacing:122.741280px;}
.lsc{letter-spacing:125.621280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,51,0),0 0.015em rgb(255,51,0),0.015em 0 rgb(255,51,0),0 -0.015em  rgb(255,51,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,51,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-21.420000px;}
.ws6{word-spacing:-21.401400px;}
.ws7{word-spacing:-21.097440px;}
.ws4{word-spacing:-21.060000px;}
.ws9{word-spacing:-20.700000px;}
.ws1{word-spacing:-19.726560px;}
.ws0{word-spacing:-15.950640px;}
.ws3{word-spacing:-14.904000px;}
.ws2{word-spacing:-14.832000px;}
.ws5{word-spacing:0.000000px;}
._3{margin-left:-5.391360px;}
._7{margin-left:-3.667440px;}
._2{margin-left:-2.613360px;}
._1{margin-left:-1.471200px;}
._0{width:1.436400px;}
._6{width:3.371760px;}
._4{width:4.380480px;}
._19{width:5.685120px;}
._10{width:7.244640px;}
._f{width:8.463120px;}
._1d{width:10.232160px;}
._1e{width:11.783760px;}
._21{width:13.013520px;}
._e{width:14.062080px;}
._20{width:15.280560px;}
._5{width:16.511040px;}
._2d{width:17.725200px;}
._22{width:18.954000px;}
._2c{width:22.486080px;}
._8{width:23.839920px;}
._9{width:24.936240px;}
._2e{width:28.097040px;}
._2a{width:29.270400px;}
._15{width:30.534000px;}
._1f{width:31.797600px;}
._2f{width:32.814480px;}
._b{width:33.858480px;}
._a{width:34.959600px;}
._17{width:36.178080px;}
._13{width:39.171600px;}
._14{width:40.812960px;}
._1c{width:43.081680px;}
._18{width:44.141760px;}
._16{width:45.573840px;}
._d{width:48.859200px;}
._c{width:50.263200px;}
._23{width:52.481520px;}
._24{width:53.492400px;}
._11{width:58.968000px;}
._12{width:60.102240px;}
._1b{width:64.780560px;}
._1a{width:65.830560px;}
._27{width:67.346880px;}
._30{width:73.398240px;}
._31{width:74.889360px;}
._33{width:89.210160px;}
._29{width:103.194000px;}
._25{width:140.596560px;}
._26{width:141.899280px;}
._34{width:158.960880px;}
._32{width:276.728400px;}
._2b{width:349.550880px;}
._28{width:425.198400px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:transparent;}
.fc4{color:rgb(255,51,0);}
.fc3{color:rgb(51,102,153);}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(204,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y82{bottom:3.060000px;}
.y7f{bottom:4.140000px;}
.y7d{bottom:5.220000px;}
.y2f{bottom:8.100000px;}
.y36{bottom:8.280000px;}
.y83{bottom:8.640000px;}
.y89{bottom:9.540000px;}
.y7{bottom:10.475850px;}
.y96{bottom:11.160000px;}
.y8c{bottom:17.640000px;}
.y86{bottom:18.900000px;}
.y81{bottom:20.340000px;}
.y84{bottom:20.700000px;}
.y7b{bottom:21.960000px;}
.y8a{bottom:23.430000px;}
.y91{bottom:24.660000px;}
.y8f{bottom:25.020000px;}
.y93{bottom:25.740000px;}
.y80{bottom:30.780000px;}
.y6{bottom:31.176000px;}
.y8d{bottom:31.500000px;}
.y7c{bottom:31.680000px;}
.y49{bottom:35.820000px;}
.y4e{bottom:35.865000px;}
.y33{bottom:36.000000px;}
.y31{bottom:36.360000px;}
.y7a{bottom:36.540000px;}
.y67{bottom:37.260000px;}
.y88{bottom:37.290000px;}
.y62{bottom:37.440000px;}
.y5d{bottom:37.485000px;}
.y95{bottom:38.880000px;}
.y85{bottom:45.360000px;}
.y2d{bottom:50.220000px;}
.y7e{bottom:57.600000px;}
.y5a{bottom:63.540000px;}
.y32{bottom:63.720000px;}
.y30{bottom:64.080000px;}
.y79{bottom:64.440000px;}
.y66{bottom:65.154000px;}
.y61{bottom:65.160000px;}
.y5c{bottom:65.205000px;}
.y78{bottom:92.160000px;}
.y65{bottom:95.976000px;}
.y47{bottom:102.636000px;}
.y9a{bottom:115.596000px;}
.y2b{bottom:116.136000px;}
.y69{bottom:124.416000px;}
.y46{bottom:139.356000px;}
.y99{bottom:143.496000px;}
.y2a{bottom:143.856000px;}
.y68{bottom:152.850000px;}
.y45{bottom:167.070000px;}
.y98{bottom:171.210000px;}
.y29{bottom:171.570000px;}
.y60{bottom:181.470000px;}
.y44{bottom:194.790000px;}
.y97{bottom:198.930000px;}
.y28{bottom:199.290000px;}
.y64{bottom:209.910000px;}
.y94{bottom:219.270000px;}
.y43{bottom:222.690000px;}
.y27{bottom:227.190000px;}
.y63{bottom:238.530000px;}
.y42{bottom:250.410000px;}
.y26{bottom:254.910000px;}
.y5b{bottom:266.970000px;}
.y41{bottom:278.130000px;}
.y92{bottom:281.595000px;}
.y25{bottom:282.675000px;}
.y5f{bottom:295.635000px;}
.y40{bottom:305.895000px;}
.y24{bottom:310.395000px;}
.y5e{bottom:324.075000px;}
.y3f{bottom:333.795000px;}
.y23{bottom:338.295000px;}
.y90{bottom:345.135000px;}
.y59{bottom:352.695000px;}
.y3e{bottom:361.515000px;}
.y22{bottom:366.015000px;}
.y3d{bottom:389.235000px;}
.y21{bottom:393.735000px;}
.y8e{bottom:406.695000px;}
.y3c{bottom:417.135000px;}
.y20{bottom:421.635000px;}
.y3b{bottom:444.855000px;}
.y1f{bottom:449.355000px;}
.y8b{bottom:468.795000px;}
.y3a{bottom:472.575000px;}
.y1e{bottom:477.075000px;}
.y39{bottom:500.295000px;}
.y1d{bottom:504.795000px;}
.y38{bottom:528.195000px;}
.y1c{bottom:532.695000px;}
.y87{bottom:543.855000px;}
.y37{bottom:548.535000px;}
.y58{bottom:555.915000px;}
.y1b{bottom:560.415000px;}
.y35{bottom:577.005000px;}
.y57{bottom:583.665000px;}
.y1a{bottom:588.165000px;}
.y77{bottom:602.745000px;}
.y34{bottom:605.625000px;}
.y56{bottom:611.565000px;}
.y19{bottom:616.065000px;}
.y2c{bottom:634.065000px;}
.y55{bottom:639.285000px;}
.y18{bottom:643.785000px;}
.y54{bottom:667.005000px;}
.y17{bottom:671.505000px;}
.y53{bottom:694.725000px;}
.y16{bottom:699.225000px;}
.y2e{bottom:718.125000px;}
.y52{bottom:722.625000px;}
.y15{bottom:727.125000px;}
.y51{bottom:750.345000px;}
.y76{bottom:751.785000px;}
.y14{bottom:754.845000px;}
.y50{bottom:778.065000px;}
.y75{bottom:779.685000px;}
.y13{bottom:782.565000px;}
.y4f{bottom:805.785000px;}
.y74{bottom:807.405000px;}
.y12{bottom:810.285000px;}
.y4d{bottom:826.305000px;}
.y73{bottom:835.125000px;}
.y11{bottom:838.185000px;}
.y72{bottom:862.890000px;}
.y10{bottom:865.950000px;}
.y4c{bottom:882.510000px;}
.y71{bottom:890.790000px;}
.yf{bottom:893.670000px;}
.y70{bottom:918.510000px;}
.ye{bottom:921.570000px;}
.y4b{bottom:938.850000px;}
.y6f{bottom:946.230000px;}
.yd{bottom:949.290000px;}
.y6e{bottom:974.130000px;}
.yc{bottom:977.010000px;}
.y4a{bottom:995.190000px;}
.y6d{bottom:1001.850000px;}
.yb{bottom:1004.730000px;}
.y6a{bottom:1022.190000px;}
.ya{bottom:1032.630000px;}
.y6c{bottom:1050.630000px;}
.y48{bottom:1051.530000px;}
.y9{bottom:1060.350000px;}
.y6b{bottom:1079.250000px;}
.y8{bottom:1088.070000px;}
.y5{bottom:1112.190000px;}
.y4{bottom:1132.020000px;}
.y3{bottom:1155.600000px;}
.y2{bottom:1179.900000px;}
.y1{bottom:1207.800000px;}
.hb{height:27.720000px;}
.he{height:27.756000px;}
.hd{height:27.900000px;}
.h14{height:27.936000px;}
.h5{height:49.150080px;}
.h4{height:50.229844px;}
.hf{height:55.440000px;}
.h11{height:55.476000px;}
.h10{height:55.620000px;}
.h1b{height:58.176000px;}
.h1e{height:60.840000px;}
.h8{height:60.917695px;}
.h1d{height:61.380000px;}
.h20{height:61.560000px;}
.h1f{height:62.820000px;}
.h3{height:67.169883px;}
.h1c{height:74.340000px;}
.h2{height:76.355508px;}
.h7{height:82.676953px;}
.h12{height:83.160000px;}
.hc{height:83.340000px;}
.h19{height:84.034316px;}
.h18{height:84.034320px;}
.h1a{height:84.034329px;}
.h17{height:84.034336px;}
.h15{height:84.780000px;}
.h13{height:84.816000px;}
.h6{height:84.898125px;}
.h9{height:86.585445px;}
.ha{height:111.780000px;}
.h16{height:140.220000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w17{width:52.380000px;}
.w15{width:63.000000px;}
.w16{width:63.036000px;}
.w18{width:73.620000px;}
.w14{width:84.240000px;}
.wf{width:86.580000px;}
.wc{width:98.280000px;}
.wb{width:98.316000px;}
.wa{width:105.120000px;}
.w13{width:105.516000px;}
.w5{width:153.390000px;}
.wd{width:169.590000px;}
.w3{width:174.090000px;}
.w10{width:185.970000px;}
.w7{width:195.330000px;}
.w6{width:196.410000px;}
.w11{width:196.950000px;}
.we{width:228.270000px;}
.w8{width:247.215000px;}
.w12{width:285.195000px;}
.w9{width:303.150000px;}
.w4{width:392.475000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:7.776000px;}
.x35{left:9.360000px;}
.x26{left:13.500000px;}
.x3b{left:14.796000px;}
.x1d{left:15.870000px;}
.x33{left:19.080000px;}
.x17{left:20.925000px;}
.x45{left:23.580000px;}
.x46{left:26.280000px;}
.x18{left:27.405000px;}
.x19{left:29.205000px;}
.x24{left:31.500000px;}
.x2b{left:34.020000px;}
.x1a{left:36.585000px;}
.x13{left:38.916000px;}
.x6{left:42.479987px;}
.x21{left:44.505000px;}
.x2a{left:45.765000px;}
.x29{left:47.385000px;}
.x30{left:48.960000px;}
.x1c{left:51.690000px;}
.x3d{left:56.340000px;}
.x47{left:57.996000px;}
.x2c{left:66.465000px;}
.x44{left:68.970000px;}
.x31{left:72.714000px;}
.x1e{left:75.090000px;}
.x20{left:79.785000px;}
.x23{left:81.000000px;}
.x37{left:82.470000px;}
.x5{left:84.959987px;}
.x39{left:86.580000px;}
.x15{left:88.605000px;}
.x2d{left:93.095987px;}
.x2f{left:96.516000px;}
.x12{left:107.855987px;}
.x3e{left:113.250000px;}
.x22{left:123.875987px;}
.x3a{left:142.590000px;}
.x7{left:153.929987px;}
.x38{left:171.029987px;}
.x8{left:239.069987px;}
.x14{left:260.670000px;}
.xf{left:262.109987px;}
.x32{left:325.695000px;}
.xa{left:333.254987px;}
.xb{left:336.494987px;}
.xe{left:362.414987px;}
.x3c{left:372.495000px;}
.xc{left:375.014987px;}
.x10{left:382.214987px;}
.xd{left:389.234987px;}
.x48{left:398.594987px;}
.x2e{left:406.694987px;}
.x34{left:412.995000px;}
.x25{left:439.635000px;}
.x9{left:446.474987px;}
.x1b{left:457.815000px;}
.x3f{left:478.905000px;}
.x2{left:490.784987px;}
.x27{left:538.665000px;}
.x1{left:557.204987px;}
.x40{left:563.865000px;}
.x36{left:599.685000px;}
.x41{left:627.765000px;}
.x3{left:632.084987px;}
.x28{left:637.665000px;}
.x16{left:653.865000px;}
.x42{left:691.530000px;}
.x11{left:735.629987px;}
.x43{left:744.630000px;}
.x4{left:807.989987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.498133pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.030720pt;}
.ls3{letter-spacing:0.033280pt;}
.ls2{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls8{letter-spacing:0.152320pt;}
.ls7{letter-spacing:0.303467pt;}
.lsb{letter-spacing:0.320000pt;}
.ls6{letter-spacing:9.440000pt;}
.lsd{letter-spacing:74.543360pt;}
.ls9{letter-spacing:109.103360pt;}
.lsc{letter-spacing:111.663360pt;}
.ws8{word-spacing:-19.040000pt;}
.ws6{word-spacing:-19.023467pt;}
.ws7{word-spacing:-18.753280pt;}
.ws4{word-spacing:-18.720000pt;}
.ws9{word-spacing:-18.400000pt;}
.ws1{word-spacing:-17.534720pt;}
.ws0{word-spacing:-14.178347pt;}
.ws3{word-spacing:-13.248000pt;}
.ws2{word-spacing:-13.184000pt;}
.ws5{word-spacing:0.000000pt;}
._3{margin-left:-4.792320pt;}
._7{margin-left:-3.259947pt;}
._2{margin-left:-2.322987pt;}
._1{margin-left:-1.307733pt;}
._0{width:1.276800pt;}
._6{width:2.997120pt;}
._4{width:3.893760pt;}
._19{width:5.053440pt;}
._10{width:6.439680pt;}
._f{width:7.522773pt;}
._1d{width:9.095253pt;}
._1e{width:10.474453pt;}
._21{width:11.567573pt;}
._e{width:12.499627pt;}
._20{width:13.582720pt;}
._5{width:14.676480pt;}
._2d{width:15.755733pt;}
._22{width:16.848000pt;}
._2c{width:19.987627pt;}
._8{width:21.191040pt;}
._9{width:22.165547pt;}
._2e{width:24.975147pt;}
._2a{width:26.018133pt;}
._15{width:27.141333pt;}
._1f{width:28.264533pt;}
._2f{width:29.168427pt;}
._b{width:30.096427pt;}
._a{width:31.075200pt;}
._17{width:32.158293pt;}
._13{width:34.819200pt;}
._14{width:36.278187pt;}
._1c{width:38.294827pt;}
._18{width:39.237120pt;}
._16{width:40.510080pt;}
._d{width:43.430400pt;}
._c{width:44.678400pt;}
._23{width:46.650240pt;}
._24{width:47.548800pt;}
._11{width:52.416000pt;}
._12{width:53.424213pt;}
._1b{width:57.582720pt;}
._1a{width:58.516053pt;}
._27{width:59.863893pt;}
._30{width:65.242880pt;}
._31{width:66.568320pt;}
._33{width:79.297920pt;}
._29{width:91.728000pt;}
._25{width:124.974720pt;}
._26{width:126.132693pt;}
._34{width:141.298560pt;}
._32{width:245.980800pt;}
._2b{width:310.711893pt;}
._28{width:377.954133pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y82{bottom:2.720000pt;}
.y7f{bottom:3.680000pt;}
.y7d{bottom:4.640000pt;}
.y2f{bottom:7.200000pt;}
.y36{bottom:7.360000pt;}
.y83{bottom:7.680000pt;}
.y89{bottom:8.480000pt;}
.y7{bottom:9.311867pt;}
.y96{bottom:9.920000pt;}
.y8c{bottom:15.680000pt;}
.y86{bottom:16.800000pt;}
.y81{bottom:18.080000pt;}
.y84{bottom:18.400000pt;}
.y7b{bottom:19.520000pt;}
.y8a{bottom:20.826667pt;}
.y91{bottom:21.920000pt;}
.y8f{bottom:22.240000pt;}
.y93{bottom:22.880000pt;}
.y80{bottom:27.360000pt;}
.y6{bottom:27.712000pt;}
.y8d{bottom:28.000000pt;}
.y7c{bottom:28.160000pt;}
.y49{bottom:31.840000pt;}
.y4e{bottom:31.880000pt;}
.y33{bottom:32.000000pt;}
.y31{bottom:32.320000pt;}
.y7a{bottom:32.480000pt;}
.y67{bottom:33.120000pt;}
.y88{bottom:33.146667pt;}
.y62{bottom:33.280000pt;}
.y5d{bottom:33.320000pt;}
.y95{bottom:34.560000pt;}
.y85{bottom:40.320000pt;}
.y2d{bottom:44.640000pt;}
.y7e{bottom:51.200000pt;}
.y5a{bottom:56.480000pt;}
.y32{bottom:56.640000pt;}
.y30{bottom:56.960000pt;}
.y79{bottom:57.280000pt;}
.y66{bottom:57.914667pt;}
.y61{bottom:57.920000pt;}
.y5c{bottom:57.960000pt;}
.y78{bottom:81.920000pt;}
.y65{bottom:85.312000pt;}
.y47{bottom:91.232000pt;}
.y9a{bottom:102.752000pt;}
.y2b{bottom:103.232000pt;}
.y69{bottom:110.592000pt;}
.y46{bottom:123.872000pt;}
.y99{bottom:127.552000pt;}
.y2a{bottom:127.872000pt;}
.y68{bottom:135.866667pt;}
.y45{bottom:148.506667pt;}
.y98{bottom:152.186667pt;}
.y29{bottom:152.506667pt;}
.y60{bottom:161.306667pt;}
.y44{bottom:173.146667pt;}
.y97{bottom:176.826667pt;}
.y28{bottom:177.146667pt;}
.y64{bottom:186.586667pt;}
.y94{bottom:194.906667pt;}
.y43{bottom:197.946667pt;}
.y27{bottom:201.946667pt;}
.y63{bottom:212.026667pt;}
.y42{bottom:222.586667pt;}
.y26{bottom:226.586667pt;}
.y5b{bottom:237.306667pt;}
.y41{bottom:247.226667pt;}
.y92{bottom:250.306667pt;}
.y25{bottom:251.266667pt;}
.y5f{bottom:262.786667pt;}
.y40{bottom:271.906667pt;}
.y24{bottom:275.906667pt;}
.y5e{bottom:288.066667pt;}
.y3f{bottom:296.706667pt;}
.y23{bottom:300.706667pt;}
.y90{bottom:306.786667pt;}
.y59{bottom:313.506667pt;}
.y3e{bottom:321.346667pt;}
.y22{bottom:325.346667pt;}
.y3d{bottom:345.986667pt;}
.y21{bottom:349.986667pt;}
.y8e{bottom:361.506667pt;}
.y3c{bottom:370.786667pt;}
.y20{bottom:374.786667pt;}
.y3b{bottom:395.426667pt;}
.y1f{bottom:399.426667pt;}
.y8b{bottom:416.706667pt;}
.y3a{bottom:420.066667pt;}
.y1e{bottom:424.066667pt;}
.y39{bottom:444.706667pt;}
.y1d{bottom:448.706667pt;}
.y38{bottom:469.506667pt;}
.y1c{bottom:473.506667pt;}
.y87{bottom:483.426667pt;}
.y37{bottom:487.586667pt;}
.y58{bottom:494.146667pt;}
.y1b{bottom:498.146667pt;}
.y35{bottom:512.893333pt;}
.y57{bottom:518.813333pt;}
.y1a{bottom:522.813333pt;}
.y77{bottom:535.773333pt;}
.y34{bottom:538.333333pt;}
.y56{bottom:543.613333pt;}
.y19{bottom:547.613333pt;}
.y2c{bottom:563.613333pt;}
.y55{bottom:568.253333pt;}
.y18{bottom:572.253333pt;}
.y54{bottom:592.893333pt;}
.y17{bottom:596.893333pt;}
.y53{bottom:617.533333pt;}
.y16{bottom:621.533333pt;}
.y2e{bottom:638.333333pt;}
.y52{bottom:642.333333pt;}
.y15{bottom:646.333333pt;}
.y51{bottom:666.973333pt;}
.y76{bottom:668.253333pt;}
.y14{bottom:670.973333pt;}
.y50{bottom:691.613333pt;}
.y75{bottom:693.053333pt;}
.y13{bottom:695.613333pt;}
.y4f{bottom:716.253333pt;}
.y74{bottom:717.693333pt;}
.y12{bottom:720.253333pt;}
.y4d{bottom:734.493333pt;}
.y73{bottom:742.333333pt;}
.y11{bottom:745.053333pt;}
.y72{bottom:767.013333pt;}
.y10{bottom:769.733333pt;}
.y4c{bottom:784.453333pt;}
.y71{bottom:791.813333pt;}
.yf{bottom:794.373333pt;}
.y70{bottom:816.453333pt;}
.ye{bottom:819.173333pt;}
.y4b{bottom:834.533333pt;}
.y6f{bottom:841.093333pt;}
.yd{bottom:843.813333pt;}
.y6e{bottom:865.893333pt;}
.yc{bottom:868.453333pt;}
.y4a{bottom:884.613333pt;}
.y6d{bottom:890.533333pt;}
.yb{bottom:893.093333pt;}
.y6a{bottom:908.613333pt;}
.ya{bottom:917.893333pt;}
.y6c{bottom:933.893333pt;}
.y48{bottom:934.693333pt;}
.y9{bottom:942.533333pt;}
.y6b{bottom:959.333333pt;}
.y8{bottom:967.173333pt;}
.y5{bottom:988.613333pt;}
.y4{bottom:1006.240000pt;}
.y3{bottom:1027.200000pt;}
.y2{bottom:1048.800000pt;}
.y1{bottom:1073.600000pt;}
.hb{height:24.640000pt;}
.he{height:24.672000pt;}
.hd{height:24.800000pt;}
.h14{height:24.832000pt;}
.h5{height:43.688960pt;}
.h4{height:44.648750pt;}
.hf{height:49.280000pt;}
.h11{height:49.312000pt;}
.h10{height:49.440000pt;}
.h1b{height:51.712000pt;}
.h1e{height:54.080000pt;}
.h8{height:54.149062pt;}
.h1d{height:54.560000pt;}
.h20{height:54.720000pt;}
.h1f{height:55.840000pt;}
.h3{height:59.706562pt;}
.h1c{height:66.080000pt;}
.h2{height:67.871563pt;}
.h7{height:73.490625pt;}
.h12{height:73.920000pt;}
.hc{height:74.080000pt;}
.h19{height:74.697170pt;}
.h18{height:74.697173pt;}
.h1a{height:74.697181pt;}
.h17{height:74.697187pt;}
.h15{height:75.360000pt;}
.h13{height:75.392000pt;}
.h6{height:75.465000pt;}
.h9{height:76.964840pt;}
.ha{height:99.360000pt;}
.h16{height:124.640000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w17{width:46.560000pt;}
.w15{width:56.000000pt;}
.w16{width:56.032000pt;}
.w18{width:65.440000pt;}
.w14{width:74.880000pt;}
.wf{width:76.960000pt;}
.wc{width:87.360000pt;}
.wb{width:87.392000pt;}
.wa{width:93.440000pt;}
.w13{width:93.792000pt;}
.w5{width:136.346667pt;}
.wd{width:150.746667pt;}
.w3{width:154.746667pt;}
.w10{width:165.306667pt;}
.w7{width:173.626667pt;}
.w6{width:174.586667pt;}
.w11{width:175.066667pt;}
.we{width:202.906667pt;}
.w8{width:219.746667pt;}
.w12{width:253.506667pt;}
.w9{width:269.466667pt;}
.w4{width:348.866667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.912000pt;}
.x35{left:8.320000pt;}
.x26{left:12.000000pt;}
.x3b{left:13.152000pt;}
.x1d{left:14.106667pt;}
.x33{left:16.960000pt;}
.x17{left:18.600000pt;}
.x45{left:20.960000pt;}
.x46{left:23.360000pt;}
.x18{left:24.360000pt;}
.x19{left:25.960000pt;}
.x24{left:28.000000pt;}
.x2b{left:30.240000pt;}
.x1a{left:32.520000pt;}
.x13{left:34.592000pt;}
.x6{left:37.759988pt;}
.x21{left:39.560000pt;}
.x2a{left:40.680000pt;}
.x29{left:42.120000pt;}
.x30{left:43.520000pt;}
.x1c{left:45.946667pt;}
.x3d{left:50.080000pt;}
.x47{left:51.552000pt;}
.x2c{left:59.080000pt;}
.x44{left:61.306667pt;}
.x31{left:64.634667pt;}
.x1e{left:66.746667pt;}
.x20{left:70.920000pt;}
.x23{left:72.000000pt;}
.x37{left:73.306667pt;}
.x5{left:75.519988pt;}
.x39{left:76.960000pt;}
.x15{left:78.760000pt;}
.x2d{left:82.751988pt;}
.x2f{left:85.792000pt;}
.x12{left:95.871988pt;}
.x3e{left:100.666667pt;}
.x22{left:110.111988pt;}
.x3a{left:126.746667pt;}
.x7{left:136.826655pt;}
.x38{left:152.026655pt;}
.x8{left:212.506655pt;}
.x14{left:231.706667pt;}
.xf{left:232.986655pt;}
.x32{left:289.506667pt;}
.xa{left:296.226655pt;}
.xb{left:299.106655pt;}
.xe{left:322.146655pt;}
.x3c{left:331.106667pt;}
.xc{left:333.346655pt;}
.x10{left:339.746655pt;}
.xd{left:345.986655pt;}
.x48{left:354.306655pt;}
.x2e{left:361.506655pt;}
.x34{left:367.106667pt;}
.x25{left:390.786667pt;}
.x9{left:396.866655pt;}
.x1b{left:406.946667pt;}
.x3f{left:425.693333pt;}
.x2{left:436.253322pt;}
.x27{left:478.813333pt;}
.x1{left:495.293322pt;}
.x40{left:501.213333pt;}
.x36{left:533.053333pt;}
.x41{left:558.013333pt;}
.x3{left:561.853322pt;}
.x28{left:566.813333pt;}
.x16{left:581.213333pt;}
.x42{left:614.693333pt;}
.x11{left:653.893322pt;}
.x43{left:661.893333pt;}
.x4{left:718.213322pt;}
}




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