
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_58a223fed8ff3bd5cc30a469.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7d0f7a4cd2eb9af53d6e3856.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c43d0c2cc82ee30134a86de6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_520e2f7533922745336ef8bc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_bc0e7620a2a27672ca56e262.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_65f2b4d54705f3f1bda0d1ca.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_e07c5129807a3ac269ab6f6f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_359d01edf130577d36b3965b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.035156;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_4483c3210b99c55e33817663.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.061035;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_58985701b4c755d552b4c977.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_78125b120bead95f89dc1fbc.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_59f5047850d07665f147a094.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.758789;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);}
.v1{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.305400px;}
.lsb{letter-spacing:-0.274800px;}
.ls5{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.036000px;}
.ls9{letter-spacing:0.074880px;}
.ls3{letter-spacing:0.109440px;}
.ls0{letter-spacing:0.150000px;}
.ls1{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.360000px;}
.lsd{letter-spacing:37.025280px;}
.lsf{letter-spacing:39.905280px;}
.lsa{letter-spacing:59.345280px;}
.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;}
}
.ws5{word-spacing:-66.240000px;}
.wsa{word-spacing:-28.712400px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.254600px;}
.ws3{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.572800px;}
.ws8{word-spacing:-13.500000px;}
.ws4{word-spacing:-10.440000px;}
.ws7{word-spacing:0.000000px;}
._0{margin-left:-1.152000px;}
._1{width:1.380000px;}
._4{width:3.050880px;}
._d{width:4.138560px;}
._3{width:5.690880px;}
._2{width:7.021440px;}
._1f{width:8.040960px;}
._a{width:9.273600px;}
._b{width:10.289760px;}
._6{width:11.331840px;}
._5{width:12.412800px;}
._7{width:13.876320px;}
._22{width:15.301440px;}
._c{width:17.590560px;}
._8{width:18.745920px;}
._9{width:19.805760px;}
._1c{width:20.891520px;}
._1e{width:22.098240px;}
._14{width:23.872320px;}
._1d{width:25.277760px;}
._e{width:26.694720px;}
._f{width:27.872640px;}
._10{width:29.041920px;}
._17{width:30.251040px;}
._15{width:32.060160px;}
._16{width:33.315360px;}
._13{width:35.310720px;}
._12{width:36.356160px;}
._23{width:37.625760px;}
._20{width:39.029760px;}
._1a{width:40.406400px;}
._30{width:41.420160px;}
._1b{width:42.592320px;}
._27{width:43.850880px;}
._28{width:44.973600px;}
._25{width:46.474560px;}
._29{width:47.825280px;}
._26{width:49.216320px;}
._2d{width:50.999040px;}
._11{width:52.594560px;}
._24{width:54.342720px;}
._2e{width:56.568960px;}
._2f{width:57.893760px;}
._31{width:59.946240px;}
._2c{width:65.073600px;}
._21{width:66.571200px;}
._2a{width:80.614080px;}
._2b{width:81.673920px;}
._18{width:99.028800px;}
._19{width:101.053440px;}
.fc7{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc4{color:rgb(112,48,160);}
.fc3{color:rgb(51,51,204);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc5{color:rgb(0,0,0);}
.fc0{color:rgb(0,176,80);}
.fs3{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:131.760000px;}
.yd{bottom:-13.140000px;}
.y0{bottom:0.000000px;}
.yc{bottom:4.140000px;}
.y33{bottom:10.080000px;}
.y37{bottom:10.794000px;}
.y9{bottom:10.800000px;}
.yb{bottom:21.240000px;}
.y32{bottom:26.460000px;}
.y7{bottom:32.760000px;}
.y31{bottom:42.660000px;}
.y34{bottom:48.420000px;}
.y35{bottom:48.600000px;}
.y6{bottom:50.220000px;}
.y8{bottom:53.280000px;}
.y30{bottom:58.500000px;}
.y8e{bottom:99.036000px;}
.y73{bottom:105.156000px;}
.y2d{bottom:108.936000px;}
.y8d{bottom:127.476000px;}
.y99{bottom:128.556000px;}
.y72{bottom:133.596000px;}
.y2c{bottom:137.376000px;}
.y36{bottom:142.056000px;}
.y8c{bottom:156.270000px;}
.y98{bottom:156.990000px;}
.y59{bottom:158.250000px;}
.y71{bottom:162.030000px;}
.y2b{bottom:165.810000px;}
.y8b{bottom:184.710000px;}
.y97{bottom:185.430000px;}
.y58{bottom:186.690000px;}
.y70{bottom:190.470000px;}
.y2a{bottom:194.430000px;}
.y8a{bottom:213.150000px;}
.y96{bottom:213.870000px;}
.y57{bottom:215.130000px;}
.y6f{bottom:219.090000px;}
.y29{bottom:222.870000px;}
.y89{bottom:241.590000px;}
.y95{bottom:242.490000px;}
.y56{bottom:243.570000px;}
.yb6{bottom:244.650000px;}
.y6e{bottom:247.530000px;}
.y28{bottom:251.310000px;}
.y88{bottom:270.030000px;}
.y55{bottom:272.010000px;}
.yb5{bottom:273.270000px;}
.y6d{bottom:277.050000px;}
.y27{bottom:279.750000px;}
.y87{bottom:298.470000px;}
.y54{bottom:300.450000px;}
.yb4{bottom:301.710000px;}
.y6c{bottom:305.670000px;}
.y26{bottom:308.190000px;}
.y86{bottom:326.775000px;}
.y53{bottom:328.935000px;}
.yb3{bottom:330.195000px;}
.y6b{bottom:334.155000px;}
.y25{bottom:336.675000px;}
.y85{bottom:355.575000px;}
.y52{bottom:357.555000px;}
.yb2{bottom:358.635000px;}
.y6a{bottom:363.675000px;}
.y24{bottom:365.115000px;}
.y84{bottom:384.015000px;}
.y51{bottom:387.075000px;}
.y69{bottom:392.295000px;}
.y23{bottom:393.555000px;}
.y83{bottom:408.675000px;}
.y50{bottom:415.515000px;}
.y68{bottom:421.815000px;}
.y22{bottom:421.995000px;}
.yb1{bottom:443.955000px;}
.y4f{bottom:444.135000px;}
.y67{bottom:450.435000px;}
.y21{bottom:450.615000px;}
.yb0{bottom:472.395000px;}
.y4e{bottom:473.655000px;}
.y20{bottom:479.055000px;}
.y66{bottom:479.955000px;}
.yaf{bottom:500.835000px;}
.y4d{bottom:502.095000px;}
.y1f{bottom:507.495000px;}
.y65{bottom:508.575000px;}
.yae{bottom:529.455000px;}
.y4c{bottom:530.535000px;}
.y1e{bottom:535.935000px;}
.y64{bottom:538.095000px;}
.yad{bottom:557.895000px;}
.y4b{bottom:558.975000px;}
.y94{bottom:559.155000px;}
.y1d{bottom:564.375000px;}
.y63{bottom:566.535000px;}
.yac{bottom:586.365000px;}
.y4a{bottom:587.445000px;}
.y93{bottom:588.345000px;}
.y1c{bottom:592.845000px;}
.y62{bottom:595.005000px;}
.y82{bottom:610.125000px;}
.yab{bottom:614.805000px;}
.y49{bottom:616.065000px;}
.y92{bottom:617.145000px;}
.y1b{bottom:621.285000px;}
.y61{bottom:623.445000px;}
.y81{bottom:638.565000px;}
.yaa{bottom:643.245000px;}
.y48{bottom:645.225000px;}
.y91{bottom:645.585000px;}
.y1a{bottom:649.725000px;}
.y60{bottom:651.885000px;}
.y80{bottom:667.005000px;}
.ya9{bottom:671.685000px;}
.y47{bottom:674.025000px;}
.y19{bottom:677.985000px;}
.y2e{bottom:678.345000px;}
.y5f{bottom:680.325000px;}
.y7f{bottom:695.445000px;}
.ya8{bottom:700.125000px;}
.y46{bottom:702.465000px;}
.y5e{bottom:708.765000px;}
.y18{bottom:708.945000px;}
.y7e{bottom:723.885000px;}
.ya7{bottom:728.565000px;}
.y45{bottom:731.085000px;}
.y17{bottom:737.385000px;}
.y7d{bottom:752.325000px;}
.ya6{bottom:757.185000px;}
.y44{bottom:759.525000px;}
.y16{bottom:765.825000px;}
.y7c{bottom:780.765000px;}
.ya5{bottom:785.265000px;}
.y43{bottom:787.965000px;}
.y15{bottom:794.265000px;}
.y7b{bottom:809.025000px;}
.ya4{bottom:814.065000px;}
.y42{bottom:816.405000px;}
.y5d{bottom:822.750000px;}
.y14{bottom:822.930000px;}
.y7a{bottom:838.950000px;}
.ya3{bottom:842.550000px;}
.y41{bottom:844.530000px;}
.y90{bottom:844.890000px;}
.y5c{bottom:851.190000px;}
.y13{bottom:851.370000px;}
.y79{bottom:867.570000px;}
.ya2{bottom:870.990000px;}
.y40{bottom:873.330000px;}
.y5b{bottom:875.850000px;}
.y12{bottom:879.810000px;}
.y78{bottom:897.090000px;}
.ya1{bottom:899.430000px;}
.y3f{bottom:901.770000px;}
.y11{bottom:914.190000px;}
.y77{bottom:926.790000px;}
.ya0{bottom:927.870000px;}
.y3e{bottom:930.210000px;}
.y10{bottom:936.690000px;}
.y9f{bottom:956.310000px;}
.y76{bottom:956.490000px;}
.y3d{bottom:958.650000px;}
.yf{bottom:971.070000px;}
.y9e{bottom:984.930000px;}
.y75{bottom:986.190000px;}
.y3c{bottom:987.270000px;}
.ye{bottom:993.210000px;}
.y5{bottom:1014.270000px;}
.y9d{bottom:1014.450000px;}
.y74{bottom:1015.350000px;}
.y3b{bottom:1015.710000px;}
.y4{bottom:1034.250000px;}
.y9c{bottom:1042.890000px;}
.y3a{bottom:1043.790000px;}
.y5a{bottom:1044.150000px;}
.y3{bottom:1054.050000px;}
.y9b{bottom:1071.360000px;}
.y2{bottom:1072.080000px;}
.y39{bottom:1072.620000px;}
.y1{bottom:1088.640000px;}
.y9a{bottom:1099.980000px;}
.y8f{bottom:1100.700000px;}
.y38{bottom:1101.060000px;}
.ya{bottom:1122.300000px;}
.y2f{bottom:1131.480000px;}
.h6{height:35.100000px;}
.h9{height:41.250937px;}
.h1{height:50.229844px;}
.hc{height:52.971680px;}
.hb{height:53.709961px;}
.hd{height:55.291992px;}
.h3{height:58.621992px;}
.h7{height:60.226875px;}
.h12{height:60.679688px;}
.ha{height:65.010937px;}
.h8{height:66.757500px;}
.h13{height:68.084282px;}
.h2{height:72.562500px;}
.h5{height:72.562518px;}
.h11{height:109.800000px;}
.h10{height:111.043847px;}
.hf{height:111.043849px;}
.h4{height:167.250000px;}
.he{height:268.635000px;}
.h0{height:1188.000000px;}
.w6{width:21.600000px;}
.w2{width:23.940000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.w3{width:333.795000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:10.800000px;}
.x5{left:16.920000px;}
.xb{left:31.680000px;}
.x3{left:53.999986px;}
.x8{left:55.799986px;}
.xc{left:80.999986px;}
.x1{left:144.215986px;}
.x2{left:174.809986px;}
.xf{left:247.529986px;}
.x9{left:488.984986px;}
.xe{left:515.984986px;}
.x6{left:547.845000px;}
.xd{left:861.629986px;}
.xa{left:871.200000px;}
.x4{left:876.060000px;}
@media print{
.v1{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.271467pt;}
.lsb{letter-spacing:-0.244267pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.032000pt;}
.ls9{letter-spacing:0.066560pt;}
.ls3{letter-spacing:0.097280pt;}
.ls0{letter-spacing:0.133333pt;}
.ls1{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.320000pt;}
.lsd{letter-spacing:32.911360pt;}
.lsf{letter-spacing:35.471360pt;}
.lsa{letter-spacing:52.751360pt;}
.ws5{word-spacing:-58.880000pt;}
.wsa{word-spacing:-25.522133pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.448533pt;}
.ws3{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws1{word-spacing:-13.232640pt;}
.ws9{word-spacing:-12.953600pt;}
.ws8{word-spacing:-12.000000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws7{word-spacing:0.000000pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.226667pt;}
._4{width:2.711893pt;}
._d{width:3.678720pt;}
._3{width:5.058560pt;}
._2{width:6.241280pt;}
._1f{width:7.147520pt;}
._a{width:8.243200pt;}
._b{width:9.146453pt;}
._6{width:10.072747pt;}
._5{width:11.033600pt;}
._7{width:12.334507pt;}
._22{width:13.601280pt;}
._c{width:15.636053pt;}
._8{width:16.663040pt;}
._9{width:17.605120pt;}
._1c{width:18.570240pt;}
._1e{width:19.642880pt;}
._14{width:21.219840pt;}
._1d{width:22.469120pt;}
._e{width:23.728640pt;}
._f{width:24.775680pt;}
._10{width:25.815040pt;}
._17{width:26.889813pt;}
._15{width:28.497920pt;}
._16{width:29.613653pt;}
._13{width:31.387307pt;}
._12{width:32.316587pt;}
._23{width:33.445120pt;}
._20{width:34.693120pt;}
._1a{width:35.916800pt;}
._30{width:36.817920pt;}
._1b{width:37.859840pt;}
._27{width:38.978560pt;}
._28{width:39.976533pt;}
._25{width:41.310720pt;}
._29{width:42.511360pt;}
._26{width:43.747840pt;}
._2d{width:45.332480pt;}
._11{width:46.750720pt;}
._24{width:48.304640pt;}
._2e{width:50.283520pt;}
._2f{width:51.461120pt;}
._31{width:53.285547pt;}
._2c{width:57.843200pt;}
._21{width:59.174400pt;}
._2a{width:71.656960pt;}
._2b{width:72.599040pt;}
._18{width:88.025600pt;}
._19{width:89.825280pt;}
.fs3{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:117.120000pt;}
.yd{bottom:-11.680000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:3.680000pt;}
.y33{bottom:8.960000pt;}
.y37{bottom:9.594667pt;}
.y9{bottom:9.600000pt;}
.yb{bottom:18.880000pt;}
.y32{bottom:23.520000pt;}
.y7{bottom:29.120000pt;}
.y31{bottom:37.920000pt;}
.y34{bottom:43.040000pt;}
.y35{bottom:43.200000pt;}
.y6{bottom:44.640000pt;}
.y8{bottom:47.360000pt;}
.y30{bottom:52.000000pt;}
.y8e{bottom:88.032000pt;}
.y73{bottom:93.472000pt;}
.y2d{bottom:96.832000pt;}
.y8d{bottom:113.312000pt;}
.y99{bottom:114.272000pt;}
.y72{bottom:118.752000pt;}
.y2c{bottom:122.112000pt;}
.y36{bottom:126.272000pt;}
.y8c{bottom:138.906667pt;}
.y98{bottom:139.546667pt;}
.y59{bottom:140.666667pt;}
.y71{bottom:144.026667pt;}
.y2b{bottom:147.386667pt;}
.y8b{bottom:164.186667pt;}
.y97{bottom:164.826667pt;}
.y58{bottom:165.946667pt;}
.y70{bottom:169.306667pt;}
.y2a{bottom:172.826667pt;}
.y8a{bottom:189.466667pt;}
.y96{bottom:190.106667pt;}
.y57{bottom:191.226667pt;}
.y6f{bottom:194.746667pt;}
.y29{bottom:198.106667pt;}
.y89{bottom:214.746667pt;}
.y95{bottom:215.546667pt;}
.y56{bottom:216.506667pt;}
.yb6{bottom:217.466667pt;}
.y6e{bottom:220.026667pt;}
.y28{bottom:223.386667pt;}
.y88{bottom:240.026667pt;}
.y55{bottom:241.786667pt;}
.yb5{bottom:242.906667pt;}
.y6d{bottom:246.266667pt;}
.y27{bottom:248.666667pt;}
.y87{bottom:265.306667pt;}
.y54{bottom:267.066667pt;}
.yb4{bottom:268.186667pt;}
.y6c{bottom:271.706667pt;}
.y26{bottom:273.946667pt;}
.y86{bottom:290.466667pt;}
.y53{bottom:292.386667pt;}
.yb3{bottom:293.506667pt;}
.y6b{bottom:297.026667pt;}
.y25{bottom:299.266667pt;}
.y85{bottom:316.066667pt;}
.y52{bottom:317.826667pt;}
.yb2{bottom:318.786667pt;}
.y6a{bottom:323.266667pt;}
.y24{bottom:324.546667pt;}
.y84{bottom:341.346667pt;}
.y51{bottom:344.066667pt;}
.y69{bottom:348.706667pt;}
.y23{bottom:349.826667pt;}
.y83{bottom:363.266667pt;}
.y50{bottom:369.346667pt;}
.y68{bottom:374.946667pt;}
.y22{bottom:375.106667pt;}
.yb1{bottom:394.626667pt;}
.y4f{bottom:394.786667pt;}
.y67{bottom:400.386667pt;}
.y21{bottom:400.546667pt;}
.yb0{bottom:419.906667pt;}
.y4e{bottom:421.026667pt;}
.y20{bottom:425.826667pt;}
.y66{bottom:426.626667pt;}
.yaf{bottom:445.186667pt;}
.y4d{bottom:446.306667pt;}
.y1f{bottom:451.106667pt;}
.y65{bottom:452.066667pt;}
.yae{bottom:470.626667pt;}
.y4c{bottom:471.586667pt;}
.y1e{bottom:476.386667pt;}
.y64{bottom:478.306667pt;}
.yad{bottom:495.906667pt;}
.y4b{bottom:496.866667pt;}
.y94{bottom:497.026667pt;}
.y1d{bottom:501.666667pt;}
.y63{bottom:503.586667pt;}
.yac{bottom:521.213333pt;}
.y4a{bottom:522.173333pt;}
.y93{bottom:522.973333pt;}
.y1c{bottom:526.973333pt;}
.y62{bottom:528.893333pt;}
.y82{bottom:542.333333pt;}
.yab{bottom:546.493333pt;}
.y49{bottom:547.613333pt;}
.y92{bottom:548.573333pt;}
.y1b{bottom:552.253333pt;}
.y61{bottom:554.173333pt;}
.y81{bottom:567.613333pt;}
.yaa{bottom:571.773333pt;}
.y48{bottom:573.533333pt;}
.y91{bottom:573.853333pt;}
.y1a{bottom:577.533333pt;}
.y60{bottom:579.453333pt;}
.y80{bottom:592.893333pt;}
.ya9{bottom:597.053333pt;}
.y47{bottom:599.133333pt;}
.y19{bottom:602.653333pt;}
.y2e{bottom:602.973333pt;}
.y5f{bottom:604.733333pt;}
.y7f{bottom:618.173333pt;}
.ya8{bottom:622.333333pt;}
.y46{bottom:624.413333pt;}
.y5e{bottom:630.013333pt;}
.y18{bottom:630.173333pt;}
.y7e{bottom:643.453333pt;}
.ya7{bottom:647.613333pt;}
.y45{bottom:649.853333pt;}
.y17{bottom:655.453333pt;}
.y7d{bottom:668.733333pt;}
.ya6{bottom:673.053333pt;}
.y44{bottom:675.133333pt;}
.y16{bottom:680.733333pt;}
.y7c{bottom:694.013333pt;}
.ya5{bottom:698.013333pt;}
.y43{bottom:700.413333pt;}
.y15{bottom:706.013333pt;}
.y7b{bottom:719.133333pt;}
.ya4{bottom:723.613333pt;}
.y42{bottom:725.693333pt;}
.y5d{bottom:731.333333pt;}
.y14{bottom:731.493333pt;}
.y7a{bottom:745.733333pt;}
.ya3{bottom:748.933333pt;}
.y41{bottom:750.693333pt;}
.y90{bottom:751.013333pt;}
.y5c{bottom:756.613333pt;}
.y13{bottom:756.773333pt;}
.y79{bottom:771.173333pt;}
.ya2{bottom:774.213333pt;}
.y40{bottom:776.293333pt;}
.y5b{bottom:778.533333pt;}
.y12{bottom:782.053333pt;}
.y78{bottom:797.413333pt;}
.ya1{bottom:799.493333pt;}
.y3f{bottom:801.573333pt;}
.y11{bottom:812.613333pt;}
.y77{bottom:823.813333pt;}
.ya0{bottom:824.773333pt;}
.y3e{bottom:826.853333pt;}
.y10{bottom:832.613333pt;}
.y9f{bottom:850.053333pt;}
.y76{bottom:850.213333pt;}
.y3d{bottom:852.133333pt;}
.yf{bottom:863.173333pt;}
.y9e{bottom:875.493333pt;}
.y75{bottom:876.613333pt;}
.y3c{bottom:877.573333pt;}
.ye{bottom:882.853333pt;}
.y5{bottom:901.573333pt;}
.y9d{bottom:901.733333pt;}
.y74{bottom:902.533333pt;}
.y3b{bottom:902.853333pt;}
.y4{bottom:919.333333pt;}
.y9c{bottom:927.013333pt;}
.y3a{bottom:927.813333pt;}
.y5a{bottom:928.133333pt;}
.y3{bottom:936.933333pt;}
.y9b{bottom:952.320000pt;}
.y2{bottom:952.960000pt;}
.y39{bottom:953.440000pt;}
.y1{bottom:967.680000pt;}
.y9a{bottom:977.760000pt;}
.y8f{bottom:978.400000pt;}
.y38{bottom:978.720000pt;}
.ya{bottom:997.600000pt;}
.y2f{bottom:1005.760000pt;}
.h6{height:31.200000pt;}
.h9{height:36.667500pt;}
.h1{height:44.648750pt;}
.hc{height:47.085938pt;}
.hb{height:47.742188pt;}
.hd{height:49.148438pt;}
.h3{height:52.108438pt;}
.h7{height:53.535000pt;}
.h12{height:53.937500pt;}
.ha{height:57.787500pt;}
.h8{height:59.340000pt;}
.h13{height:60.519362pt;}
.h2{height:64.500000pt;}
.h5{height:64.500016pt;}
.h11{height:97.600000pt;}
.h10{height:98.705642pt;}
.hf{height:98.705644pt;}
.h4{height:148.666667pt;}
.he{height:238.786667pt;}
.h0{height:1056.000000pt;}
.w6{width:19.200000pt;}
.w2{width:21.280000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.w3{width:296.706667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:9.600000pt;}
.x5{left:15.040000pt;}
.xb{left:28.160000pt;}
.x3{left:47.999988pt;}
.x8{left:49.599988pt;}
.xc{left:71.999988pt;}
.x1{left:128.191988pt;}
.x2{left:155.386655pt;}
.xf{left:220.026655pt;}
.x9{left:434.653321pt;}
.xe{left:458.653321pt;}
.x6{left:486.973333pt;}
.xd{left:765.893321pt;}
.xa{left:774.400000pt;}
.x4{left:778.720000pt;}
}




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