
    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_6445c682bba9e9d0acd61f97.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_9d6f88131089c58de72c3cc1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.858398;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_b56686f24ccef4e5c49b4daa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_f066b9244d98c6cba59d8ab5.woff2')format("woff");}.ff4{font-family:ff4;line-height:2.979492;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_1ab1c3e06bde35a77bc4ac0d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.238106,0.000000,-0.076194,0.238106,0,0);-ms-transform:matrix(0.238106,0.000000,-0.076194,0.238106,0,0);-webkit-transform:matrix(0.238106,0.000000,-0.076194,0.238106,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);}
.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);}
.v2{vertical-align:-27.366000px;}
.v1{vertical-align:-15.119314px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:48.246000px;}
.v4{vertical-align:54.000000px;}
.v5{vertical-align:62.745154px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:2.778000px;}
.ls5{letter-spacing:4.082215px;}
.ls3{letter-spacing:4.838181px;}
.ls2{letter-spacing:4.844480px;}
.ls9{letter-spacing:9.720000px;}
.ls1{letter-spacing:10.440000px;}
.ls4{letter-spacing:10.446000px;}
.ls6{letter-spacing:11.160000px;}
.lsb{letter-spacing:11.736000px;}
.ls8{letter-spacing:12.600000px;}
.lsa{letter-spacing:15.330000px;}
.lsc{letter-spacing:109.397700px;}
.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;}
}
.ws8{word-spacing:-55.944000px;}
.ws39{word-spacing:-49.742544px;}
.ws33{word-spacing:-47.376000px;}
.ws6{word-spacing:-40.536000px;}
.ws41{word-spacing:-38.434500px;}
.ws7{word-spacing:-38.429100px;}
.ws31{word-spacing:-38.160000px;}
.ws2{word-spacing:-38.081700px;}
.ws0{word-spacing:-37.944000px;}
.ws3{word-spacing:-37.934100px;}
.ws22{word-spacing:-37.712700px;}
.ws54{word-spacing:-37.639800px;}
.ws24{word-spacing:-37.440600px;}
.ws30{word-spacing:-23.459400px;}
.ws58{word-spacing:-23.252400px;}
.ws25{word-spacing:-23.249700px;}
.wse{word-spacing:-23.245200px;}
.ws32{word-spacing:-23.244300px;}
.ws3b{word-spacing:-23.239800px;}
.ws4d{word-spacing:-23.031000px;}
.ws4a{word-spacing:-23.029200px;}
.ws4{word-spacing:-23.026500px;}
.ws5{word-spacing:-23.025600px;}
.ws4c{word-spacing:-23.025000px;}
.ws47{word-spacing:-23.023800px;}
.ws15{word-spacing:-23.017800px;}
.ws40{word-spacing:-22.752000px;}
.ws23{word-spacing:-22.743300px;}
.ws19{word-spacing:-22.743000px;}
.ws3d{word-spacing:-22.741200px;}
.ws44{word-spacing:-22.536000px;}
.ws48{word-spacing:-22.533900px;}
.ws20{word-spacing:-22.528800px;}
.ws17{word-spacing:-22.523400px;}
.ws2c{word-spacing:-22.519800px;}
.wsf{word-spacing:-22.317900px;}
.ws34{word-spacing:-22.309200px;}
.ws27{word-spacing:-22.305600px;}
.ws38{word-spacing:-22.027500px;}
.ws3c{word-spacing:-21.812100px;}
.ws21{word-spacing:-21.805200px;}
.ws1c{word-spacing:-21.803400px;}
.ws2d{word-spacing:-21.587400px;}
.ws13{word-spacing:-21.078000px;}
.ws56{word-spacing:-19.654200px;}
.ws46{word-spacing:-19.649400px;}
.ws1d{word-spacing:-18.921600px;}
.ws5a{word-spacing:-17.500200px;}
.ws1a{word-spacing:-17.482200px;}
.ws59{word-spacing:-16.992000px;}
.ws52{word-spacing:-16.541400px;}
.ws5c{word-spacing:-16.050600px;}
.wsa{word-spacing:-16.039800px;}
.ws43{word-spacing:-13.174800px;}
.ws42{word-spacing:-13.165200px;}
.ws2a{word-spacing:-12.672000px;}
.ws37{word-spacing:-12.462000px;}
.ws36{word-spacing:-12.451200px;}
.ws45{word-spacing:-12.441600px;}
.ws35{word-spacing:-12.441000px;}
.ws29{word-spacing:-12.439200px;}
.ws4e{word-spacing:-12.227400px;}
.wsb{word-spacing:-11.952000px;}
.ws3a{word-spacing:-11.013300px;}
.ws53{word-spacing:-10.787400px;}
.ws16{word-spacing:-10.518000px;}
.ws51{word-spacing:-10.063800px;}
.ws5b{word-spacing:-9.795300px;}
.ws50{word-spacing:-9.783000px;}
.ws3f{word-spacing:-9.565200px;}
.ws11{word-spacing:-9.561600px;}
.ws9{word-spacing:-9.347400px;}
.ws26{word-spacing:-9.032400px;}
.ws2e{word-spacing:-8.856000px;}
.ws14{word-spacing:-7.623000px;}
.ws4b{word-spacing:-7.410600px;}
.ws10{word-spacing:-7.405800px;}
.ws57{word-spacing:-5.976000px;}
.ws55{word-spacing:-5.466000px;}
.ws1f{word-spacing:-4.539300px;}
.ws49{word-spacing:-0.205200px;}
.ws3e{word-spacing:0.000000px;}
.ws2b{word-spacing:0.007200px;}
.ws28{word-spacing:0.505800px;}
.wsc{word-spacing:1.742400px;}
.ws1e{word-spacing:1.958400px;}
.ws4f{word-spacing:4.143600px;}
.ws1b{word-spacing:5.560200px;}
.wsd{word-spacing:6.768000px;}
.ws18{word-spacing:11.525400px;}
.ws2f{word-spacing:12.970800px;}
.ws12{word-spacing:30.028800px;}
.ws1{word-spacing:1037.484900px;}
._15{margin-left:-7.151436px;}
._3{margin-left:-1.474200px;}
._0{width:1.076400px;}
._11{width:17.085600px;}
._1{width:18.968400px;}
._b{width:20.952000px;}
._f{width:22.928400px;}
._d{width:24.610200px;}
._4{width:25.803000px;}
._5{width:27.504000px;}
._13{width:29.342400px;}
._c{width:31.041600px;}
._2{width:32.603400px;}
._9{width:34.403700px;}
._18{width:35.640000px;}
._10{width:37.165500px;}
._12{width:42.048000px;}
._6{width:43.405200px;}
._16{width:45.858000px;}
._e{width:47.304000px;}
._7{width:48.493800px;}
._8{width:49.858200px;}
._14{width:54.792000px;}
._a{width:71.707200px;}
._17{width:82.800000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs3{font-size:51.000000px;}
.fs2{font-size:53.547571px;}
.fs4{font-size:59.700000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:75.596571px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:63.975000px;}
.y6c{bottom:130.575000px;}
.y6b{bottom:151.275000px;}
.y47{bottom:152.175000px;}
.y45{bottom:164.236500px;}
.y6a{bottom:171.975000px;}
.y46{bottom:177.915000px;}
.y24{bottom:182.236500px;}
.y69{bottom:192.675000px;}
.y23{bottom:202.936500px;}
.y68{bottom:213.375000px;}
.y44{bottom:217.875000px;}
.y22{bottom:223.636500px;}
.y67{bottom:234.075000px;}
.y21{bottom:244.336500px;}
.y66{bottom:254.775000px;}
.y43{bottom:259.815000px;}
.y65{bottom:275.475000px;}
.y20{bottom:285.915000px;}
.y64{bottom:296.175000px;}
.y42{bottom:301.575000px;}
.y41{bottom:322.275000px;}
.y1f{bottom:327.675000px;}
.y63{bottom:337.936500px;}
.y1e{bottom:369.436500px;}
.y62{bottom:379.696500px;}
.y3e{bottom:384.736500px;}
.y1d{bottom:390.136500px;}
.y40{bottom:396.615000px;}
.y3f{bottom:396.795000px;}
.y61{bottom:400.396500px;}
.y3d{bottom:410.295000px;}
.y1c{bottom:410.836500px;}
.y60{bottom:421.096500px;}
.y5f{bottom:441.795000px;}
.y3a{bottom:450.255000px;}
.y3b{bottom:450.436500px;}
.y1b{bottom:452.415000px;}
.y3c{bottom:457.096500px;}
.y5e{bottom:462.496500px;}
.y1a{bottom:473.115000px;}
.y5d{bottom:483.196500px;}
.y19{bottom:493.815000px;}
.y5c{bottom:503.896500px;}
.y39{bottom:513.255000px;}
.y18{bottom:514.515000px;}
.y5b{bottom:524.596500px;}
.y38{bottom:555.015000px;}
.y17{bottom:556.275000px;}
.y5a{bottom:566.175000px;}
.y36{bottom:575.896500px;}
.y37{bottom:576.075000px;}
.y16{bottom:576.975000px;}
.y15{bottom:597.675000px;}
.y59{bottom:607.936500px;}
.y14{bottom:618.375000px;}
.y58{bottom:628.636500px;}
.y35{bottom:638.715000px;}
.y13{bottom:639.075000px;}
.y57{bottom:649.336500px;}
.y56{bottom:670.036500px;}
.y34{bottom:680.655000px;}
.y12{bottom:680.836500px;}
.y55{bottom:690.736500px;}
.y11{bottom:722.415000px;}
.y54{bottom:732.315000px;}
.y10{bottom:743.115000px;}
.y33{bottom:743.295000px;}
.y53{bottom:774.075000px;}
.yf{bottom:784.875000px;}
.y32{bottom:785.055000px;}
.y52{bottom:794.775000px;}
.ye{bottom:805.575000px;}
.y51{bottom:815.475000px;}
.yd{bottom:826.275000px;}
.y31{bottom:826.815000px;}
.yc{bottom:846.975000px;}
.y50{bottom:857.236500px;}
.yb{bottom:867.675000px;}
.y30{bottom:868.575000px;}
.ya{bottom:888.375000px;}
.y4f{bottom:898.815000px;}
.y2f{bottom:910.155000px;}
.y9{bottom:930.136500px;}
.y2e{bottom:930.855000px;}
.y2d{bottom:951.555000px;}
.y4e{bottom:961.455000px;}
.y4c{bottom:976.395000px;}
.y4d{bottom:989.895000px;}
.y2c{bottom:993.315000px;}
.y2b{bottom:1014.015000px;}
.y71{bottom:1014.736500px;}
.y4b{bottom:1034.355000px;}
.y8{bottom:1034.536500px;}
.y2a{bottom:1034.715000px;}
.y70{bottom:1035.436500px;}
.y49{bottom:1055.236500px;}
.y4a{bottom:1055.415000px;}
.y28{bottom:1055.595000px;}
.y29{bottom:1055.775000px;}
.y6f{bottom:1056.136500px;}
.y7{bottom:1076.295000px;}
.y27{bottom:1076.475000px;}
.y6e{bottom:1076.836500px;}
.y48{bottom:1097.175000px;}
.y6d{bottom:1097.536500px;}
.y6{bottom:1117.875000px;}
.y26{bottom:1118.236500px;}
.y25{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h2{height:48.796875px;}
.h4{height:48.972656px;}
.h5{height:50.027344px;}
.h8{height:117.837891px;}
.h7{height:166.359375px;}
.h6{height:174.669422px;}
.h9{height:214.605375px;}
.ha{height:220.359375px;}
.hb{height:237.414576px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.x9{left:137.700000px;}
.x2{left:160.560000px;}
.x2c{left:188.638500px;}
.x2d{left:198.360000px;}
.x6{left:226.620000px;}
.x3c{left:249.120000px;}
.x1f{left:261.900000px;}
.x3d{left:268.380000px;}
.x20{left:274.500000px;}
.x3e{left:278.460000px;}
.x3f{left:299.338500px;}
.x40{left:308.160000px;}
.x41{left:321.660000px;}
.x5{left:327.600000px;}
.x7{left:332.460000px;}
.x2e{left:338.038500px;}
.x30{left:339.120000px;}
.x42{left:341.460000px;}
.x2f{left:347.938500px;}
.x31{left:363.060000px;}
.x32{left:379.438500px;}
.x43{left:381.780000px;}
.x44{left:389.700000px;}
.xa{left:401.760000px;}
.x33{left:403.738500px;}
.x54{left:405.000000px;}
.x45{left:406.080000px;}
.x25{left:408.060000px;}
.x8{left:409.138500px;}
.xb{left:412.020000px;}
.x1a{left:418.500000px;}
.x34{left:420.120000px;}
.xc{left:425.520000px;}
.x26{left:427.500000px;}
.x1b{left:428.580000px;}
.x46{left:431.100000px;}
.xd{left:435.060000px;}
.x12{left:436.860000px;}
.x48{left:439.020000px;}
.xe{left:442.620000px;}
.x13{left:444.420000px;}
.x1c{left:445.860000px;}
.x50{left:449.460000px;}
.x49{left:450.900000px;}
.x47{left:452.520000px;}
.xf{left:453.960000px;}
.x10{left:457.560000px;}
.x51{left:459.000000px;}
.x11{left:467.280000px;}
.x4a{left:468.360000px;}
.x27{left:469.438500px;}
.x14{left:475.200000px;}
.x28{left:477.000000px;}
.x1d{left:479.160000px;}
.x52{left:481.500000px;}
.x15{left:485.100000px;}
.x29{left:486.900000px;}
.x53{left:491.220000px;}
.x16{left:492.660000px;}
.x35{left:498.960000px;}
.x17{left:502.560000px;}
.x4b{left:505.800000px;}
.x1e{left:507.420000px;}
.x55{left:513.360000px;}
.x18{left:514.980000px;}
.x2a{left:517.860000px;}
.x4d{left:523.800000px;}
.x19{left:524.880000px;}
.x36{left:532.260000px;}
.x2b{left:535.138500px;}
.x4c{left:539.820000px;}
.x37{left:542.160000px;}
.x4e{left:545.938500px;}
.x38{left:563.038500px;}
.x4f{left:568.800000px;}
.x39{left:587.878500px;}
.x3a{left:595.260000px;}
.x3b{left:605.160000px;}
.x21{left:768.960000px;}
.x22{left:783.900000px;}
.x23{left:791.278500px;}
.x24{left:801.000000px;}
@media print{
.v2{vertical-align:-24.325333pt;}
.v1{vertical-align:-13.439390pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:42.885333pt;}
.v4{vertical-align:48.000000pt;}
.v5{vertical-align:55.773470pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:2.469333pt;}
.ls5{letter-spacing:3.628635pt;}
.ls3{letter-spacing:4.300605pt;}
.ls2{letter-spacing:4.306205pt;}
.ls9{letter-spacing:8.640000pt;}
.ls1{letter-spacing:9.280000pt;}
.ls4{letter-spacing:9.285333pt;}
.ls6{letter-spacing:9.920000pt;}
.lsb{letter-spacing:10.432000pt;}
.ls8{letter-spacing:11.200000pt;}
.lsa{letter-spacing:13.626667pt;}
.lsc{letter-spacing:97.242400pt;}
.ws8{word-spacing:-49.728000pt;}
.ws39{word-spacing:-44.215595pt;}
.ws33{word-spacing:-42.112000pt;}
.ws6{word-spacing:-36.032000pt;}
.ws41{word-spacing:-34.164000pt;}
.ws7{word-spacing:-34.159200pt;}
.ws31{word-spacing:-33.920000pt;}
.ws2{word-spacing:-33.850400pt;}
.ws0{word-spacing:-33.728000pt;}
.ws3{word-spacing:-33.719200pt;}
.ws22{word-spacing:-33.522400pt;}
.ws54{word-spacing:-33.457600pt;}
.ws24{word-spacing:-33.280533pt;}
.ws30{word-spacing:-20.852800pt;}
.ws58{word-spacing:-20.668800pt;}
.ws25{word-spacing:-20.666400pt;}
.wse{word-spacing:-20.662400pt;}
.ws32{word-spacing:-20.661600pt;}
.ws3b{word-spacing:-20.657600pt;}
.ws4d{word-spacing:-20.472000pt;}
.ws4a{word-spacing:-20.470400pt;}
.ws4{word-spacing:-20.468000pt;}
.ws5{word-spacing:-20.467200pt;}
.ws4c{word-spacing:-20.466667pt;}
.ws47{word-spacing:-20.465600pt;}
.ws15{word-spacing:-20.460267pt;}
.ws40{word-spacing:-20.224000pt;}
.ws23{word-spacing:-20.216267pt;}
.ws19{word-spacing:-20.216000pt;}
.ws3d{word-spacing:-20.214400pt;}
.ws44{word-spacing:-20.032000pt;}
.ws48{word-spacing:-20.030133pt;}
.ws20{word-spacing:-20.025600pt;}
.ws17{word-spacing:-20.020800pt;}
.ws2c{word-spacing:-20.017600pt;}
.wsf{word-spacing:-19.838133pt;}
.ws34{word-spacing:-19.830400pt;}
.ws27{word-spacing:-19.827200pt;}
.ws38{word-spacing:-19.580000pt;}
.ws3c{word-spacing:-19.388533pt;}
.ws21{word-spacing:-19.382400pt;}
.ws1c{word-spacing:-19.380800pt;}
.ws2d{word-spacing:-19.188800pt;}
.ws13{word-spacing:-18.736000pt;}
.ws56{word-spacing:-17.470400pt;}
.ws46{word-spacing:-17.466133pt;}
.ws1d{word-spacing:-16.819200pt;}
.ws5a{word-spacing:-15.555733pt;}
.ws1a{word-spacing:-15.539733pt;}
.ws59{word-spacing:-15.104000pt;}
.ws52{word-spacing:-14.703467pt;}
.ws5c{word-spacing:-14.267200pt;}
.wsa{word-spacing:-14.257600pt;}
.ws43{word-spacing:-11.710933pt;}
.ws42{word-spacing:-11.702400pt;}
.ws2a{word-spacing:-11.264000pt;}
.ws37{word-spacing:-11.077333pt;}
.ws36{word-spacing:-11.067733pt;}
.ws45{word-spacing:-11.059200pt;}
.ws35{word-spacing:-11.058667pt;}
.ws29{word-spacing:-11.057067pt;}
.ws4e{word-spacing:-10.868800pt;}
.wsb{word-spacing:-10.624000pt;}
.ws3a{word-spacing:-9.789600pt;}
.ws53{word-spacing:-9.588800pt;}
.ws16{word-spacing:-9.349333pt;}
.ws51{word-spacing:-8.945600pt;}
.ws5b{word-spacing:-8.706933pt;}
.ws50{word-spacing:-8.696000pt;}
.ws3f{word-spacing:-8.502400pt;}
.ws11{word-spacing:-8.499200pt;}
.ws9{word-spacing:-8.308800pt;}
.ws26{word-spacing:-8.028800pt;}
.ws2e{word-spacing:-7.872000pt;}
.ws14{word-spacing:-6.776000pt;}
.ws4b{word-spacing:-6.587200pt;}
.ws10{word-spacing:-6.582933pt;}
.ws57{word-spacing:-5.312000pt;}
.ws55{word-spacing:-4.858667pt;}
.ws1f{word-spacing:-4.034933pt;}
.ws49{word-spacing:-0.182400pt;}
.ws3e{word-spacing:0.000000pt;}
.ws2b{word-spacing:0.006400pt;}
.ws28{word-spacing:0.449600pt;}
.wsc{word-spacing:1.548800pt;}
.ws1e{word-spacing:1.740800pt;}
.ws4f{word-spacing:3.683200pt;}
.ws1b{word-spacing:4.942400pt;}
.wsd{word-spacing:6.016000pt;}
.ws18{word-spacing:10.244800pt;}
.ws2f{word-spacing:11.529600pt;}
.ws12{word-spacing:26.692267pt;}
.ws1{word-spacing:922.208800pt;}
._15{margin-left:-6.356832pt;}
._3{margin-left:-1.310400pt;}
._0{width:0.956800pt;}
._11{width:15.187200pt;}
._1{width:16.860800pt;}
._b{width:18.624000pt;}
._f{width:20.380800pt;}
._d{width:21.875733pt;}
._4{width:22.936000pt;}
._5{width:24.448000pt;}
._13{width:26.082133pt;}
._c{width:27.592533pt;}
._2{width:28.980800pt;}
._9{width:30.581067pt;}
._18{width:31.680000pt;}
._10{width:33.036000pt;}
._12{width:37.376000pt;}
._6{width:38.582400pt;}
._16{width:40.762667pt;}
._e{width:42.048000pt;}
._7{width:43.105600pt;}
._8{width:44.318400pt;}
._14{width:48.704000pt;}
._a{width:63.739733pt;}
._17{width:73.600000pt;}
.fs3{font-size:45.333333pt;}
.fs2{font-size:47.597841pt;}
.fs4{font-size:53.066667pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:67.196952pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y6c{bottom:116.066667pt;}
.y6b{bottom:134.466667pt;}
.y47{bottom:135.266667pt;}
.y45{bottom:145.988000pt;}
.y6a{bottom:152.866667pt;}
.y46{bottom:158.146667pt;}
.y24{bottom:161.988000pt;}
.y69{bottom:171.266667pt;}
.y23{bottom:180.388000pt;}
.y68{bottom:189.666667pt;}
.y44{bottom:193.666667pt;}
.y22{bottom:198.788000pt;}
.y67{bottom:208.066667pt;}
.y21{bottom:217.188000pt;}
.y66{bottom:226.466667pt;}
.y43{bottom:230.946667pt;}
.y65{bottom:244.866667pt;}
.y20{bottom:254.146667pt;}
.y64{bottom:263.266667pt;}
.y42{bottom:268.066667pt;}
.y41{bottom:286.466667pt;}
.y1f{bottom:291.266667pt;}
.y63{bottom:300.388000pt;}
.y1e{bottom:328.388000pt;}
.y62{bottom:337.508000pt;}
.y3e{bottom:341.988000pt;}
.y1d{bottom:346.788000pt;}
.y40{bottom:352.546667pt;}
.y3f{bottom:352.706667pt;}
.y61{bottom:355.908000pt;}
.y3d{bottom:364.706667pt;}
.y1c{bottom:365.188000pt;}
.y60{bottom:374.308000pt;}
.y5f{bottom:392.706667pt;}
.y3a{bottom:400.226667pt;}
.y3b{bottom:400.388000pt;}
.y1b{bottom:402.146667pt;}
.y3c{bottom:406.308000pt;}
.y5e{bottom:411.108000pt;}
.y1a{bottom:420.546667pt;}
.y5d{bottom:429.508000pt;}
.y19{bottom:438.946667pt;}
.y5c{bottom:447.908000pt;}
.y39{bottom:456.226667pt;}
.y18{bottom:457.346667pt;}
.y5b{bottom:466.308000pt;}
.y38{bottom:493.346667pt;}
.y17{bottom:494.466667pt;}
.y5a{bottom:503.266667pt;}
.y36{bottom:511.908000pt;}
.y37{bottom:512.066667pt;}
.y16{bottom:512.866667pt;}
.y15{bottom:531.266667pt;}
.y59{bottom:540.388000pt;}
.y14{bottom:549.666667pt;}
.y58{bottom:558.788000pt;}
.y35{bottom:567.746667pt;}
.y13{bottom:568.066667pt;}
.y57{bottom:577.188000pt;}
.y56{bottom:595.588000pt;}
.y34{bottom:605.026667pt;}
.y12{bottom:605.188000pt;}
.y55{bottom:613.988000pt;}
.y11{bottom:642.146667pt;}
.y54{bottom:650.946667pt;}
.y10{bottom:660.546667pt;}
.y33{bottom:660.706667pt;}
.y53{bottom:688.066667pt;}
.yf{bottom:697.666667pt;}
.y32{bottom:697.826667pt;}
.y52{bottom:706.466667pt;}
.ye{bottom:716.066667pt;}
.y51{bottom:724.866667pt;}
.yd{bottom:734.466667pt;}
.y31{bottom:734.946667pt;}
.yc{bottom:752.866667pt;}
.y50{bottom:761.988000pt;}
.yb{bottom:771.266667pt;}
.y30{bottom:772.066667pt;}
.ya{bottom:789.666667pt;}
.y4f{bottom:798.946667pt;}
.y2f{bottom:809.026667pt;}
.y9{bottom:826.788000pt;}
.y2e{bottom:827.426667pt;}
.y2d{bottom:845.826667pt;}
.y4e{bottom:854.626667pt;}
.y4c{bottom:867.906667pt;}
.y4d{bottom:879.906667pt;}
.y2c{bottom:882.946667pt;}
.y2b{bottom:901.346667pt;}
.y71{bottom:901.988000pt;}
.y4b{bottom:919.426667pt;}
.y8{bottom:919.588000pt;}
.y2a{bottom:919.746667pt;}
.y70{bottom:920.388000pt;}
.y49{bottom:937.988000pt;}
.y4a{bottom:938.146667pt;}
.y28{bottom:938.306667pt;}
.y29{bottom:938.466667pt;}
.y6f{bottom:938.788000pt;}
.y7{bottom:956.706667pt;}
.y27{bottom:956.866667pt;}
.y6e{bottom:957.188000pt;}
.y48{bottom:975.266667pt;}
.y6d{bottom:975.588000pt;}
.y6{bottom:993.666667pt;}
.y26{bottom:993.988000pt;}
.y25{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h2{height:43.375000pt;}
.h4{height:43.531250pt;}
.h5{height:44.468750pt;}
.h8{height:104.744792pt;}
.h7{height:147.875000pt;}
.h6{height:155.261708pt;}
.h9{height:190.760333pt;}
.ha{height:195.875000pt;}
.hb{height:211.035179pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.x9{left:122.400000pt;}
.x2{left:142.720000pt;}
.x2c{left:167.678667pt;}
.x2d{left:176.320000pt;}
.x6{left:201.440000pt;}
.x3c{left:221.440000pt;}
.x1f{left:232.800000pt;}
.x3d{left:238.560000pt;}
.x20{left:244.000000pt;}
.x3e{left:247.520000pt;}
.x3f{left:266.078667pt;}
.x40{left:273.920000pt;}
.x41{left:285.920000pt;}
.x5{left:291.200000pt;}
.x7{left:295.520000pt;}
.x2e{left:300.478667pt;}
.x30{left:301.440000pt;}
.x42{left:303.520000pt;}
.x2f{left:309.278667pt;}
.x31{left:322.720000pt;}
.x32{left:337.278667pt;}
.x43{left:339.360000pt;}
.x44{left:346.400000pt;}
.xa{left:357.120000pt;}
.x33{left:358.878667pt;}
.x54{left:360.000000pt;}
.x45{left:360.960000pt;}
.x25{left:362.720000pt;}
.x8{left:363.678667pt;}
.xb{left:366.240000pt;}
.x1a{left:372.000000pt;}
.x34{left:373.440000pt;}
.xc{left:378.240000pt;}
.x26{left:380.000000pt;}
.x1b{left:380.960000pt;}
.x46{left:383.200000pt;}
.xd{left:386.720000pt;}
.x12{left:388.320000pt;}
.x48{left:390.240000pt;}
.xe{left:393.440000pt;}
.x13{left:395.040000pt;}
.x1c{left:396.320000pt;}
.x50{left:399.520000pt;}
.x49{left:400.800000pt;}
.x47{left:402.240000pt;}
.xf{left:403.520000pt;}
.x10{left:406.720000pt;}
.x51{left:408.000000pt;}
.x11{left:415.360000pt;}
.x4a{left:416.320000pt;}
.x27{left:417.278667pt;}
.x14{left:422.400000pt;}
.x28{left:424.000000pt;}
.x1d{left:425.920000pt;}
.x52{left:428.000000pt;}
.x15{left:431.200000pt;}
.x29{left:432.800000pt;}
.x53{left:436.640000pt;}
.x16{left:437.920000pt;}
.x35{left:443.520000pt;}
.x17{left:446.720000pt;}
.x4b{left:449.600000pt;}
.x1e{left:451.040000pt;}
.x55{left:456.320000pt;}
.x18{left:457.760000pt;}
.x2a{left:460.320000pt;}
.x4d{left:465.600000pt;}
.x19{left:466.560000pt;}
.x36{left:473.120000pt;}
.x2b{left:475.678667pt;}
.x4c{left:479.840000pt;}
.x37{left:481.920000pt;}
.x4e{left:485.278667pt;}
.x38{left:500.478667pt;}
.x4f{left:505.600000pt;}
.x39{left:522.558667pt;}
.x3a{left:529.120000pt;}
.x3b{left:537.920000pt;}
.x21{left:683.520000pt;}
.x22{left:696.800000pt;}
.x23{left:703.358667pt;}
.x24{left:712.000000pt;}
}




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