
    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_bfe3478f2bc0d18c93d60c16.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900391;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_27d264c3d34aedaf081b332d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1f8ae5fcddf7be14c46ceabc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.050293;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_f2e1085848b8f74526b75c54.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.050293;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_51d3953c6781c9e6d7eb7d47.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_cd1e5f3b89051fe82ddc7493.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.954590;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_61c3ffb8fbaffe0039b1360e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.954590;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_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_afa924aaf4d0b70e91ffbd99.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.762207;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);}
.v1{vertical-align:-62.640000px;}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.180000px;}
.ls1{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.028080px;}
.lsb{letter-spacing:0.037440px;}
.ls6{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.172080px;}
.ls17{letter-spacing:0.256200px;}
.lsd{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.540000px;}
.lse{letter-spacing:1.980000px;}
.ls8{letter-spacing:4.860000px;}
.ls15{letter-spacing:7.740000px;}
.ls9{letter-spacing:10.620000px;}
.lsc{letter-spacing:14.220000px;}
.lsa{letter-spacing:17.100000px;}
.lsf{letter-spacing:18.540000px;}
.ls14{letter-spacing:21.221280px;}
.ls4{letter-spacing:21.420000px;}
.ls7{letter-spacing:26.460000px;}
.ls5{letter-spacing:191.484000px;}
.ls0{letter-spacing:1466.369760px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-21.420000px;}
.ws5{word-spacing:-21.088080px;}
.ws1{word-spacing:-21.060000px;}
.ws4{word-spacing:-20.880000px;}
.ws6{word-spacing:-0.322440px;}
.ws0{word-spacing:-0.066240px;}
.ws2{word-spacing:0.000000px;}
._b{margin-left:-5.391360px;}
._a{margin-left:-4.212000px;}
._11{margin-left:-2.274480px;}
._0{margin-left:-1.263600px;}
._9{width:1.010880px;}
._1{width:2.026320px;}
._14{width:3.312480px;}
._7{width:4.633200px;}
._20{width:5.728320px;}
._8{width:6.739200px;}
._2{width:8.002800px;}
._16{width:9.097440px;}
._21{width:10.108800px;}
._1e{width:11.372400px;}
._c{width:12.888720px;}
._13{width:13.899600px;}
._12{width:15.019200px;}
._18{width:16.258320px;}
._17{width:17.269200px;}
._22{width:18.330720px;}
._10{width:19.880640px;}
._2e{width:22.070880px;}
._15{width:23.506320px;}
._1b{width:25.272000px;}
._1a{width:26.872560px;}
._1d{width:28.127760px;}
._23{width:29.660880px;}
._d{width:30.812160px;}
._1f{width:32.143200px;}
._2d{width:33.359040px;}
._3{width:34.369920px;}
._24{width:35.380080px;}
._4{width:36.570000px;}
._25{width:38.666160px;}
._26{width:39.761280px;}
._f{width:42.372720px;}
._e{width:43.383600px;}
._2c{width:47.574240px;}
._2b{width:48.627840px;}
._6{width:49.870080px;}
._1c{width:53.754240px;}
._5{width:65.622960px;}
._2a{width:67.476240px;}
._29{width:68.571360px;}
._27{width:85.672080px;}
._28{width:87.051360px;}
._19{width:191.484000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:2.880000px;}
.y6{bottom:5.796000px;}
.y4{bottom:20.016000px;}
.y5{bottom:23.580000px;}
.y3{bottom:53.856000px;}
.y2{bottom:69.336000px;}
.y43{bottom:94.176000px;}
.y42{bottom:111.096000px;}
.y41{bottom:114.876000px;}
.y40{bottom:128.196000px;}
.y59{bottom:131.976000px;}
.y8a{bottom:132.156000px;}
.y22{bottom:132.516000px;}
.y3f{bottom:145.116000px;}
.y3e{bottom:148.896000px;}
.y3d{bottom:162.030000px;}
.y89{bottom:168.510000px;}
.y21{bottom:168.690000px;}
.y7f{bottom:179.130000px;}
.y7e{bottom:182.910000px;}
.y7d{bottom:196.050000px;}
.y20{bottom:204.870000px;}
.y6c{bottom:216.390000px;}
.y88{bottom:216.570000px;}
.y57{bottom:228.450000px;}
.y3c{bottom:228.630000px;}
.y58{bottom:236.010000px;}
.y7c{bottom:240.870000px;}
.y1f{bottom:241.050000px;}
.y87{bottom:252.930000px;}
.y56{bottom:264.630000px;}
.y3b{bottom:264.810000px;}
.y7b{bottom:277.050000px;}
.y86{bottom:289.155000px;}
.y1e{bottom:289.335000px;}
.y55{bottom:300.855000px;}
.y3a{bottom:301.215000px;}
.y7a{bottom:313.455000px;}
.y85{bottom:325.335000px;}
.y54{bottom:337.215000px;}
.y39{bottom:337.395000px;}
.y1d{bottom:337.575000px;}
.y78{bottom:349.635000px;}
.y79{bottom:357.195000px;}
.y53{bottom:373.395000px;}
.y38{bottom:373.575000px;}
.y1c{bottom:373.755000px;}
.y77{bottom:385.815000px;}
.y52{bottom:409.575000px;}
.y84{bottom:409.755000px;}
.y37{bottom:421.815000px;}
.y1b{bottom:421.995000px;}
.y51{bottom:445.755000px;}
.y6a{bottom:457.815000px;}
.y36{bottom:457.995000px;}
.y1a{bottom:458.175000px;}
.y6b{bottom:465.375000px;}
.y76{bottom:470.235000px;}
.y50{bottom:482.115000px;}
.y69{bottom:493.995000px;}
.y35{bottom:494.175000px;}
.y83{bottom:506.235000px;}
.y19{bottom:506.415000px;}
.y4f{bottom:518.295000px;}
.y68{bottom:530.175000px;}
.y34{bottom:530.535000px;}
.y82{bottom:542.415000px;}
.y18{bottom:542.775000px;}
.y4e{bottom:554.475000px;}
.y67{bottom:566.565000px;}
.y33{bottom:578.805000px;}
.y17{bottom:578.985000px;}
.y4d{bottom:590.685000px;}
.y66{bottom:602.745000px;}
.y32{bottom:614.985000px;}
.y16{bottom:615.165000px;}
.y4c{bottom:626.865000px;}
.y65{bottom:638.925000px;}
.y31{bottom:651.165000px;}
.y15{bottom:651.345000px;}
.y4b{bottom:663.225000px;}
.y75{bottom:663.405000px;}
.y64{bottom:675.105000px;}
.y30{bottom:687.345000px;}
.y14{bottom:687.705000px;}
.y4a{bottom:699.405000px;}
.y63{bottom:711.465000px;}
.y74{bottom:711.645000px;}
.y2f{bottom:723.705000px;}
.y49{bottom:735.585000px;}
.y13{bottom:735.765000px;}
.y62{bottom:747.645000px;}
.y73{bottom:747.825000px;}
.y2e{bottom:759.885000px;}
.y48{bottom:771.765000px;}
.y12{bottom:784.005000px;}
.y61{bottom:795.885000px;}
.y81{bottom:796.065000px;}
.y2d{bottom:808.125000px;}
.y11{bottom:820.365000px;}
.y8b{bottom:823.425000px;}
.y60{bottom:832.065000px;}
.y71{bottom:832.245000px;}
.y72{bottom:839.805000px;}
.y47{bottom:844.305000px;}
.y2b{bottom:856.410000px;}
.y10{bottom:856.590000px;}
.y2c{bottom:863.970000px;}
.y5f{bottom:868.290000px;}
.y70{bottom:868.470000px;}
.y46{bottom:880.530000px;}
.y2a{bottom:892.590000px;}
.yf{bottom:892.770000px;}
.y5e{bottom:904.470000px;}
.y6f{bottom:904.830000px;}
.y45{bottom:916.710000px;}
.y29{bottom:928.770000px;}
.ye{bottom:928.950000px;}
.y5d{bottom:940.830000px;}
.y6e{bottom:941.010000px;}
.y80{bottom:953.070000px;}
.y28{bottom:964.950000px;}
.yd{bottom:965.130000px;}
.y5c{bottom:977.010000px;}
.y6d{bottom:977.190000px;}
.y27{bottom:1001.130000px;}
.y5b{bottom:1013.190000px;}
.yc{bottom:1013.370000px;}
.y26{bottom:1037.490000px;}
.y5a{bottom:1049.370000px;}
.yb{bottom:1061.610000px;}
.y25{bottom:1073.670000px;}
.y44{bottom:1085.730000px;}
.ya{bottom:1109.850000px;}
.y23{bottom:1121.910000px;}
.y24{bottom:1129.470000px;}
.y9{bottom:1158.120000px;}
.y1{bottom:1184.040000px;}
.y7{bottom:1228.500000px;}
.h3{height:21.780000px;}
.h4{height:28.260000px;}
.h9{height:28.742344px;}
.ha{height:44.178047px;}
.h8{height:45.061523px;}
.hb{height:54.000000px;}
.h6{height:59.436914px;}
.h2{height:65.884219px;}
.h7{height:70.295977px;}
.h5{height:76.201172px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:49.680000px;}
.w4{width:261.075000px;}
.w5{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:16.635000px;}
.x6{left:20.775000px;}
.x8{left:33.690000px;}
.xd{left:63.899987px;}
.x13{left:69.659987px;}
.x1f{left:90.899987px;}
.x9{left:109.295987px;}
.xc{left:117.035987px;}
.x19{left:197.129987px;}
.x1e{left:242.129987px;}
.x1c{left:274.889987px;}
.x12{left:279.929987px;}
.xe{left:379.514973px;}
.xf{left:386.354987px;}
.x5{left:400.140000px;}
.x3{left:425.414987px;}
.x1d{left:429.374987px;}
.x4{left:459.074987px;}
.x7{left:469.155000px;}
.x16{left:476.714987px;}
.x21{left:478.514987px;}
.x17{left:486.794973px;}
.x18{left:493.664987px;}
.xa{left:559.004987px;}
.xb{left:572.144987px;}
.x1a{left:731.849973px;}
.x1b{left:738.689987px;}
.x10{left:775.949973px;}
.x11{left:782.789987px;}
.x14{left:793.769973px;}
.x15{left:800.609987px;}
.x2{left:872.069987px;}
.x1{left:891.719987px;}
@media print{
.v1{vertical-align:-55.680000pt;}
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.160000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.024960pt;}
.lsb{letter-spacing:0.033280pt;}
.ls6{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.152960pt;}
.ls17{letter-spacing:0.227733pt;}
.lsd{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.480000pt;}
.lse{letter-spacing:1.760000pt;}
.ls8{letter-spacing:4.320000pt;}
.ls15{letter-spacing:6.880000pt;}
.ls9{letter-spacing:9.440000pt;}
.lsc{letter-spacing:12.640000pt;}
.lsa{letter-spacing:15.200000pt;}
.lsf{letter-spacing:16.480000pt;}
.ls14{letter-spacing:18.863360pt;}
.ls4{letter-spacing:19.040000pt;}
.ls7{letter-spacing:23.520000pt;}
.ls5{letter-spacing:170.208000pt;}
.ls0{letter-spacing:1303.439787pt;}
.ws3{word-spacing:-19.040000pt;}
.ws5{word-spacing:-18.744960pt;}
.ws1{word-spacing:-18.720000pt;}
.ws4{word-spacing:-18.560000pt;}
.ws6{word-spacing:-0.286613pt;}
.ws0{word-spacing:-0.058880pt;}
.ws2{word-spacing:0.000000pt;}
._b{margin-left:-4.792320pt;}
._a{margin-left:-3.744000pt;}
._11{margin-left:-2.021760pt;}
._0{margin-left:-1.123200pt;}
._9{width:0.898560pt;}
._1{width:1.801173pt;}
._14{width:2.944427pt;}
._7{width:4.118400pt;}
._20{width:5.091840pt;}
._8{width:5.990400pt;}
._2{width:7.113600pt;}
._16{width:8.086613pt;}
._21{width:8.985600pt;}
._1e{width:10.108800pt;}
._c{width:11.456640pt;}
._13{width:12.355200pt;}
._12{width:13.350400pt;}
._18{width:14.451840pt;}
._17{width:15.350400pt;}
._22{width:16.293973pt;}
._10{width:17.671680pt;}
._2e{width:19.618560pt;}
._15{width:20.894507pt;}
._1b{width:22.464000pt;}
._1a{width:23.886720pt;}
._1d{width:25.002453pt;}
._23{width:26.365227pt;}
._d{width:27.388587pt;}
._1f{width:28.571733pt;}
._2d{width:29.652480pt;}
._3{width:30.551040pt;}
._24{width:31.448960pt;}
._4{width:32.506667pt;}
._25{width:34.369920pt;}
._26{width:35.343360pt;}
._f{width:37.664640pt;}
._e{width:38.563200pt;}
._2c{width:42.288213pt;}
._2b{width:43.224747pt;}
._6{width:44.328960pt;}
._1c{width:47.781547pt;}
._5{width:58.331520pt;}
._2a{width:59.978880pt;}
._29{width:60.952320pt;}
._27{width:76.152960pt;}
._28{width:77.378987pt;}
._19{width:170.208000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:2.560000pt;}
.y6{bottom:5.152000pt;}
.y4{bottom:17.792000pt;}
.y5{bottom:20.960000pt;}
.y3{bottom:47.872000pt;}
.y2{bottom:61.632000pt;}
.y43{bottom:83.712000pt;}
.y42{bottom:98.752000pt;}
.y41{bottom:102.112000pt;}
.y40{bottom:113.952000pt;}
.y59{bottom:117.312000pt;}
.y8a{bottom:117.472000pt;}
.y22{bottom:117.792000pt;}
.y3f{bottom:128.992000pt;}
.y3e{bottom:132.352000pt;}
.y3d{bottom:144.026667pt;}
.y89{bottom:149.786667pt;}
.y21{bottom:149.946667pt;}
.y7f{bottom:159.226667pt;}
.y7e{bottom:162.586667pt;}
.y7d{bottom:174.266667pt;}
.y20{bottom:182.106667pt;}
.y6c{bottom:192.346667pt;}
.y88{bottom:192.506667pt;}
.y57{bottom:203.066667pt;}
.y3c{bottom:203.226667pt;}
.y58{bottom:209.786667pt;}
.y7c{bottom:214.106667pt;}
.y1f{bottom:214.266667pt;}
.y87{bottom:224.826667pt;}
.y56{bottom:235.226667pt;}
.y3b{bottom:235.386667pt;}
.y7b{bottom:246.266667pt;}
.y86{bottom:257.026667pt;}
.y1e{bottom:257.186667pt;}
.y55{bottom:267.426667pt;}
.y3a{bottom:267.746667pt;}
.y7a{bottom:278.626667pt;}
.y85{bottom:289.186667pt;}
.y54{bottom:299.746667pt;}
.y39{bottom:299.906667pt;}
.y1d{bottom:300.066667pt;}
.y78{bottom:310.786667pt;}
.y79{bottom:317.506667pt;}
.y53{bottom:331.906667pt;}
.y38{bottom:332.066667pt;}
.y1c{bottom:332.226667pt;}
.y77{bottom:342.946667pt;}
.y52{bottom:364.066667pt;}
.y84{bottom:364.226667pt;}
.y37{bottom:374.946667pt;}
.y1b{bottom:375.106667pt;}
.y51{bottom:396.226667pt;}
.y6a{bottom:406.946667pt;}
.y36{bottom:407.106667pt;}
.y1a{bottom:407.266667pt;}
.y6b{bottom:413.666667pt;}
.y76{bottom:417.986667pt;}
.y50{bottom:428.546667pt;}
.y69{bottom:439.106667pt;}
.y35{bottom:439.266667pt;}
.y83{bottom:449.986667pt;}
.y19{bottom:450.146667pt;}
.y4f{bottom:460.706667pt;}
.y68{bottom:471.266667pt;}
.y34{bottom:471.586667pt;}
.y82{bottom:482.146667pt;}
.y18{bottom:482.466667pt;}
.y4e{bottom:492.866667pt;}
.y67{bottom:503.613333pt;}
.y33{bottom:514.493333pt;}
.y17{bottom:514.653333pt;}
.y4d{bottom:525.053333pt;}
.y66{bottom:535.773333pt;}
.y32{bottom:546.653333pt;}
.y16{bottom:546.813333pt;}
.y4c{bottom:557.213333pt;}
.y65{bottom:567.933333pt;}
.y31{bottom:578.813333pt;}
.y15{bottom:578.973333pt;}
.y4b{bottom:589.533333pt;}
.y75{bottom:589.693333pt;}
.y64{bottom:600.093333pt;}
.y30{bottom:610.973333pt;}
.y14{bottom:611.293333pt;}
.y4a{bottom:621.693333pt;}
.y63{bottom:632.413333pt;}
.y74{bottom:632.573333pt;}
.y2f{bottom:643.293333pt;}
.y49{bottom:653.853333pt;}
.y13{bottom:654.013333pt;}
.y62{bottom:664.573333pt;}
.y73{bottom:664.733333pt;}
.y2e{bottom:675.453333pt;}
.y48{bottom:686.013333pt;}
.y12{bottom:696.893333pt;}
.y61{bottom:707.453333pt;}
.y81{bottom:707.613333pt;}
.y2d{bottom:718.333333pt;}
.y11{bottom:729.213333pt;}
.y8b{bottom:731.933333pt;}
.y60{bottom:739.613333pt;}
.y71{bottom:739.773333pt;}
.y72{bottom:746.493333pt;}
.y47{bottom:750.493333pt;}
.y2b{bottom:761.253333pt;}
.y10{bottom:761.413333pt;}
.y2c{bottom:767.973333pt;}
.y5f{bottom:771.813333pt;}
.y70{bottom:771.973333pt;}
.y46{bottom:782.693333pt;}
.y2a{bottom:793.413333pt;}
.yf{bottom:793.573333pt;}
.y5e{bottom:803.973333pt;}
.y6f{bottom:804.293333pt;}
.y45{bottom:814.853333pt;}
.y29{bottom:825.573333pt;}
.ye{bottom:825.733333pt;}
.y5d{bottom:836.293333pt;}
.y6e{bottom:836.453333pt;}
.y80{bottom:847.173333pt;}
.y28{bottom:857.733333pt;}
.yd{bottom:857.893333pt;}
.y5c{bottom:868.453333pt;}
.y6d{bottom:868.613333pt;}
.y27{bottom:889.893333pt;}
.y5b{bottom:900.613333pt;}
.yc{bottom:900.773333pt;}
.y26{bottom:922.213333pt;}
.y5a{bottom:932.773333pt;}
.yb{bottom:943.653333pt;}
.y25{bottom:954.373333pt;}
.y44{bottom:965.093333pt;}
.ya{bottom:986.533333pt;}
.y23{bottom:997.253333pt;}
.y24{bottom:1003.973333pt;}
.y9{bottom:1029.440000pt;}
.y1{bottom:1052.480000pt;}
.y7{bottom:1092.000000pt;}
.h3{height:19.360000pt;}
.h4{height:25.120000pt;}
.h9{height:25.548750pt;}
.ha{height:39.269375pt;}
.h8{height:40.054688pt;}
.hb{height:48.000000pt;}
.h6{height:52.832812pt;}
.h2{height:58.563750pt;}
.h7{height:62.485312pt;}
.h5{height:67.734375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:44.160000pt;}
.w4{width:232.066667pt;}
.w5{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:14.786667pt;}
.x6{left:18.466667pt;}
.x8{left:29.946667pt;}
.xd{left:56.799988pt;}
.x13{left:61.919988pt;}
.x1f{left:80.799988pt;}
.x9{left:97.151988pt;}
.xc{left:104.031988pt;}
.x19{left:175.226655pt;}
.x1e{left:215.226655pt;}
.x1c{left:244.346655pt;}
.x12{left:248.826655pt;}
.xe{left:337.346643pt;}
.xf{left:343.426655pt;}
.x5{left:355.680000pt;}
.x3{left:378.146655pt;}
.x1d{left:381.666655pt;}
.x4{left:408.066655pt;}
.x7{left:417.026667pt;}
.x16{left:423.746655pt;}
.x21{left:425.346655pt;}
.x17{left:432.706643pt;}
.x18{left:438.813322pt;}
.xa{left:496.893322pt;}
.xb{left:508.573322pt;}
.x1a{left:650.533310pt;}
.x1b{left:656.613322pt;}
.x10{left:689.733310pt;}
.x11{left:695.813322pt;}
.x14{left:705.573310pt;}
.x15{left:711.653322pt;}
.x2{left:775.173322pt;}
.x1{left:792.639988pt;}
}




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