
    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_f9008b1cf4c4521ebf7831b5.woff')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_1a7e8fa2632634fde08456e3.woff')format("woff");}.ff2{font-family:ff2;line-height:0.691406;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_d8184c75988c3a93b493dab8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.049805;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_0294cd1331774578e11544d0.woff')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_10df8b3f1cf2a566809dbc9e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.793457;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:188.597700px;}
.ls2{letter-spacing:396.180000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws14{word-spacing:-55.944000px;}
.ws0{word-spacing:-45.005400px;}
.ws1{word-spacing:-44.989800px;}
.ws6c{word-spacing:-38.876400px;}
.ws31{word-spacing:-38.876100px;}
.ws68{word-spacing:-38.872800px;}
.ws2{word-spacing:-38.870100px;}
.ws61{word-spacing:-38.866200px;}
.ws3e{word-spacing:-38.662200px;}
.ws30{word-spacing:-38.660400px;}
.ws8{word-spacing:-38.657700px;}
.ws57{word-spacing:-38.656800px;}
.ws33{word-spacing:-38.656500px;}
.ws74{word-spacing:-38.655900px;}
.ws62{word-spacing:-38.654700px;}
.ws4f{word-spacing:-38.654100px;}
.ws32{word-spacing:-38.653200px;}
.ws2e{word-spacing:-38.652300px;}
.ws25{word-spacing:-38.649600px;}
.ws77{word-spacing:-38.447700px;}
.ws4{word-spacing:-38.445300px;}
.ws39{word-spacing:-38.443500px;}
.ws40{word-spacing:-38.443200px;}
.ws5e{word-spacing:-38.441700px;}
.ws41{word-spacing:-38.440800px;}
.ws53{word-spacing:-38.439000px;}
.ws5{word-spacing:-38.437200px;}
.ws24{word-spacing:-38.435400px;}
.ws5f{word-spacing:-38.433600px;}
.ws46{word-spacing:-38.431800px;}
.ws6a{word-spacing:-38.427600px;}
.ws42{word-spacing:-38.371200px;}
.ws72{word-spacing:-38.359800px;}
.ws67{word-spacing:-38.166000px;}
.ws35{word-spacing:-38.160000px;}
.ws76{word-spacing:-38.156400px;}
.ws38{word-spacing:-38.154600px;}
.ws9{word-spacing:-38.146800px;}
.ws5a{word-spacing:-38.146500px;}
.ws1e{word-spacing:-37.944000px;}
.ws4c{word-spacing:-37.941900px;}
.ws60{word-spacing:-37.941300px;}
.ws6f{word-spacing:-37.939200px;}
.ws64{word-spacing:-37.936800px;}
.ws6{word-spacing:-37.935900px;}
.ws34{word-spacing:-37.935000px;}
.ws7{word-spacing:-37.934100px;}
.ws1c{word-spacing:-37.932300px;}
.ws4e{word-spacing:-37.931400px;}
.ws11{word-spacing:-37.726200px;}
.ws79{word-spacing:-37.724400px;}
.ws48{word-spacing:-37.713600px;}
.ws16{word-spacing:-37.656000px;}
.ws15{word-spacing:-37.440000px;}
.ws43{word-spacing:-37.221000px;}
.ws54{word-spacing:-37.218600px;}
.ws3a{word-spacing:-36.279900px;}
.ws28{word-spacing:-35.996400px;}
.wsf{word-spacing:-35.055000px;}
.ws69{word-spacing:-34.839000px;}
.ws2b{word-spacing:-34.335000px;}
.ws59{word-spacing:-34.117200px;}
.ws71{word-spacing:-33.615000px;}
.ws21{word-spacing:-33.613200px;}
.ws3{word-spacing:-33.547800px;}
.ws23{word-spacing:-33.110400px;}
.ws56{word-spacing:-33.109200px;}
.ws20{word-spacing:-32.895000px;}
.ws51{word-spacing:-32.387100px;}
.ws6d{word-spacing:-32.184000px;}
.ws5d{word-spacing:-32.179500px;}
.ws1f{word-spacing:-31.680000px;}
.ws65{word-spacing:-31.241700px;}
.ws26{word-spacing:-30.744000px;}
.ws52{word-spacing:-30.742200px;}
.ws4d{word-spacing:-30.730500px;}
.wse{word-spacing:-30.729600px;}
.ws2c{word-spacing:-30.018600px;}
.wsd{word-spacing:-29.514600px;}
.ws3c{word-spacing:-28.800000px;}
.ws10{word-spacing:-28.360800px;}
.ws75{word-spacing:-27.852300px;}
.ws3f{word-spacing:-27.847800px;}
.ws22{word-spacing:-27.351000px;}
.ws78{word-spacing:-27.141000px;}
.ws70{word-spacing:-27.128700px;}
.ws6e{word-spacing:-26.413200px;}
.ws18{word-spacing:-24.984000px;}
.ws3b{word-spacing:-24.260400px;}
.ws3d{word-spacing:-24.245400px;}
.wsb{word-spacing:-24.046800px;}
.wsa{word-spacing:-23.741100px;}
.ws63{word-spacing:-23.040000px;}
.ws6b{word-spacing:-22.824000px;}
.ws58{word-spacing:-22.813200px;}
.ws19{word-spacing:-22.242600px;}
.ws27{word-spacing:-21.592800px;}
.ws5b{word-spacing:-21.170400px;}
.ws13{word-spacing:-20.664600px;}
.ws2f{word-spacing:-20.644200px;}
.ws12{word-spacing:-20.151900px;}
.ws4b{word-spacing:-19.944000px;}
.ws29{word-spacing:-19.220400px;}
.ws47{word-spacing:-19.217400px;}
.ws2a{word-spacing:-18.496800px;}
.ws1b{word-spacing:-18.493200px;}
.ws66{word-spacing:-17.775000px;}
.ws49{word-spacing:-17.481600px;}
.ws4a{word-spacing:-17.268300px;}
.ws55{word-spacing:-16.344000px;}
.ws2d{word-spacing:-16.331100px;}
.wsc{word-spacing:-15.834600px;}
.ws45{word-spacing:-15.400800px;}
.ws73{word-spacing:-14.893800px;}
.ws44{word-spacing:-14.893200px;}
.ws1d{word-spacing:-14.184000px;}
.ws5c{word-spacing:-10.065600px;}
.ws50{word-spacing:0.000000px;}
.ws1a{word-spacing:1.656000px;}
.ws17{word-spacing:22.179600px;}
.ws36{word-spacing:105.849900px;}
.ws37{word-spacing:106.781400px;}
._f{margin-left:-2.235600px;}
._0{margin-left:-1.110600px;}
._5{width:1.058400px;}
._13{width:2.235600px;}
._1{width:18.144000px;}
._4{width:19.506600px;}
._18{width:20.921400px;}
._a{width:22.023000px;}
._12{width:23.116800px;}
._e{width:24.816000px;}
._9{width:26.404200px;}
._8{width:28.362600px;}
._b{width:29.736000px;}
._1a{width:30.787200px;}
._7{width:33.241500px;}
._6{width:34.323900px;}
._10{width:35.363400px;}
._2{width:36.560100px;}
._11{width:37.936800px;}
._d{width:39.486600px;}
._14{width:40.883100px;}
._17{width:41.954400px;}
._1b{width:43.042200px;}
._19{width:47.779200px;}
._c{width:59.216400px;}
._1c{width:126.000000px;}
._15{width:162.000000px;}
._16{width:164.006100px;}
._3{width:287.934000px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.700000px;}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.590000px;}
.y4{bottom:52.725000px;}
.y2a{bottom:120.315000px;}
.y49{bottom:128.236500px;}
.y65{bottom:133.815000px;}
.y29{bottom:141.015000px;}
.y28{bottom:161.715000px;}
.y48{bottom:163.875000px;}
.y64{bottom:169.636500px;}
.y27{bottom:182.415000px;}
.y47{bottom:184.575000px;}
.y26{bottom:203.115000px;}
.y63{bottom:205.275000px;}
.y46{bottom:220.215000px;}
.y25{bottom:223.815000px;}
.y45{bottom:240.915000px;}
.y24{bottom:244.515000px;}
.y44{bottom:261.615000px;}
.y62{bottom:282.315000px;}
.y43{bottom:297.255000px;}
.y61{bottom:303.015000px;}
.y23{bottom:315.975000px;}
.y42{bottom:333.075000px;}
.y60{bottom:338.836500px;}
.y22{bottom:351.615000px;}
.y41{bottom:353.775000px;}
.y5f{bottom:359.536500px;}
.y21{bottom:372.315000px;}
.y73{bottom:380.236500px;}
.y40{bottom:389.415000px;}
.y20{bottom:393.015000px;}
.y5e{bottom:395.175000px;}
.y3f{bottom:410.115000px;}
.y1f{bottom:413.715000px;}
.y72{bottom:415.875000px;}
.y5d{bottom:430.815000px;}
.y1e{bottom:434.415000px;}
.y3e{bottom:445.936500px;}
.y71{bottom:451.515000px;}
.y1d{bottom:455.115000px;}
.y3d{bottom:466.636500px;}
.y3c{bottom:487.336500px;}
.y1c{bottom:490.936500px;}
.y5c{bottom:502.275000px;}
.y70{bottom:508.036500px;}
.y1b{bottom:511.636500px;}
.y3b{bottom:522.975000px;}
.y5b{bottom:537.915000px;}
.y6f{bottom:543.675000px;}
.y1a{bottom:547.275000px;}
.y3a{bottom:558.615000px;}
.y6e{bottom:564.375000px;}
.y19{bottom:567.975000px;}
.y5a{bottom:573.736500px;}
.y18{bottom:588.675000px;}
.y39{bottom:594.436500px;}
.y6d{bottom:600.015000px;}
.y17{bottom:609.375000px;}
.y38{bottom:615.136500px;}
.y16{bottom:630.075000px;}
.y6c{bottom:635.836500px;}
.y59{bottom:645.015000px;}
.y15{bottom:650.775000px;}
.y14{bottom:671.475000px;}
.y58{bottom:680.836500px;}
.y37{bottom:692.175000px;}
.y13{bottom:707.115000px;}
.y36{bottom:712.875000px;}
.y57{bottom:716.475000px;}
.y12{bottom:727.815000px;}
.y35{bottom:733.575000px;}
.y56{bottom:737.175000px;}
.y6b{bottom:742.936500px;}
.y34{bottom:754.275000px;}
.y11{bottom:763.636500px;}
.y55{bottom:772.815000px;}
.y10{bottom:784.336500px;}
.y33{bottom:789.915000px;}
.y54{bottom:793.515000px;}
.y6a{bottom:799.275000px;}
.yf{bottom:805.036500px;}
.y53{bottom:814.215000px;}
.ye{bottom:825.736500px;}
.y69{bottom:834.915000px;}
.yd{bottom:846.436500px;}
.y52{bottom:850.036500px;}
.yc{bottom:867.136500px;}
.y51{bottom:870.736500px;}
.y32{bottom:882.075000px;}
.yb{bottom:887.836500px;}
.y50{bottom:891.436500px;}
.y68{bottom:912.136500px;}
.y31{bottom:917.715000px;}
.y4f{bottom:927.075000px;}
.y67{bottom:947.775000px;}
.y30{bottom:953.536500px;}
.ya{bottom:959.115000px;}
.y4e{bottom:962.715000px;}
.y66{bottom:968.475000px;}
.y4d{bottom:983.415000px;}
.y2f{bottom:989.175000px;}
.y9{bottom:994.936500px;}
.y4c{bottom:1019.236500px;}
.y2e{bottom:1024.815000px;}
.y8{bottom:1030.575000px;}
.y4b{bottom:1039.936500px;}
.y2d{bottom:1060.636500px;}
.y7{bottom:1066.215000px;}
.y2c{bottom:1081.336500px;}
.y4a{bottom:1096.275000px;}
.y2b{bottom:1116.975000px;}
.y6{bottom:1137.675000px;}
.y3{bottom:1176.555000px;}
.y2{bottom:1197.975000px;}
.y1{bottom:1221.915000px;}
.h4{height:20.175000px;}
.h5{height:45.225146px;}
.h3{height:48.796875px;}
.h2{height:57.133008px;}
.h6{height:60.046875px;}
.h7{height:60.772875px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:127.620000px;}
.x3{left:145.620000px;}
.x2{left:159.838500px;}
.x1{left:163.080000px;}
.x5{left:290.880000px;}
.x8{left:404.100000px;}
.x4{left:470.025000px;}
.x6{left:474.300000px;}
.x7{left:571.680000px;}
.x9{left:728.638500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:167.642400pt;}
.ls2{letter-spacing:352.160000pt;}
.ws14{word-spacing:-49.728000pt;}
.ws0{word-spacing:-40.004800pt;}
.ws1{word-spacing:-39.990933pt;}
.ws6c{word-spacing:-34.556800pt;}
.ws31{word-spacing:-34.556533pt;}
.ws68{word-spacing:-34.553600pt;}
.ws2{word-spacing:-34.551200pt;}
.ws61{word-spacing:-34.547733pt;}
.ws3e{word-spacing:-34.366400pt;}
.ws30{word-spacing:-34.364800pt;}
.ws8{word-spacing:-34.362400pt;}
.ws57{word-spacing:-34.361600pt;}
.ws33{word-spacing:-34.361333pt;}
.ws74{word-spacing:-34.360800pt;}
.ws62{word-spacing:-34.359733pt;}
.ws4f{word-spacing:-34.359200pt;}
.ws32{word-spacing:-34.358400pt;}
.ws2e{word-spacing:-34.357600pt;}
.ws25{word-spacing:-34.355200pt;}
.ws77{word-spacing:-34.175733pt;}
.ws4{word-spacing:-34.173600pt;}
.ws39{word-spacing:-34.172000pt;}
.ws40{word-spacing:-34.171733pt;}
.ws5e{word-spacing:-34.170400pt;}
.ws41{word-spacing:-34.169600pt;}
.ws53{word-spacing:-34.168000pt;}
.ws5{word-spacing:-34.166400pt;}
.ws24{word-spacing:-34.164800pt;}
.ws5f{word-spacing:-34.163200pt;}
.ws46{word-spacing:-34.161600pt;}
.ws6a{word-spacing:-34.157867pt;}
.ws42{word-spacing:-34.107733pt;}
.ws72{word-spacing:-34.097600pt;}
.ws67{word-spacing:-33.925333pt;}
.ws35{word-spacing:-33.920000pt;}
.ws76{word-spacing:-33.916800pt;}
.ws38{word-spacing:-33.915200pt;}
.ws9{word-spacing:-33.908267pt;}
.ws5a{word-spacing:-33.908000pt;}
.ws1e{word-spacing:-33.728000pt;}
.ws4c{word-spacing:-33.726133pt;}
.ws60{word-spacing:-33.725600pt;}
.ws6f{word-spacing:-33.723733pt;}
.ws64{word-spacing:-33.721600pt;}
.ws6{word-spacing:-33.720800pt;}
.ws34{word-spacing:-33.720000pt;}
.ws7{word-spacing:-33.719200pt;}
.ws1c{word-spacing:-33.717600pt;}
.ws4e{word-spacing:-33.716800pt;}
.ws11{word-spacing:-33.534400pt;}
.ws79{word-spacing:-33.532800pt;}
.ws48{word-spacing:-33.523200pt;}
.ws16{word-spacing:-33.472000pt;}
.ws15{word-spacing:-33.280000pt;}
.ws43{word-spacing:-33.085333pt;}
.ws54{word-spacing:-33.083200pt;}
.ws3a{word-spacing:-32.248800pt;}
.ws28{word-spacing:-31.996800pt;}
.wsf{word-spacing:-31.160000pt;}
.ws69{word-spacing:-30.968000pt;}
.ws2b{word-spacing:-30.520000pt;}
.ws59{word-spacing:-30.326400pt;}
.ws71{word-spacing:-29.880000pt;}
.ws21{word-spacing:-29.878400pt;}
.ws3{word-spacing:-29.820267pt;}
.ws23{word-spacing:-29.431467pt;}
.ws56{word-spacing:-29.430400pt;}
.ws20{word-spacing:-29.240000pt;}
.ws51{word-spacing:-28.788533pt;}
.ws6d{word-spacing:-28.608000pt;}
.ws5d{word-spacing:-28.604000pt;}
.ws1f{word-spacing:-28.160000pt;}
.ws65{word-spacing:-27.770400pt;}
.ws26{word-spacing:-27.328000pt;}
.ws52{word-spacing:-27.326400pt;}
.ws4d{word-spacing:-27.316000pt;}
.wse{word-spacing:-27.315200pt;}
.ws2c{word-spacing:-26.683200pt;}
.wsd{word-spacing:-26.235200pt;}
.ws3c{word-spacing:-25.600000pt;}
.ws10{word-spacing:-25.209600pt;}
.ws75{word-spacing:-24.757600pt;}
.ws3f{word-spacing:-24.753600pt;}
.ws22{word-spacing:-24.312000pt;}
.ws78{word-spacing:-24.125333pt;}
.ws70{word-spacing:-24.114400pt;}
.ws6e{word-spacing:-23.478400pt;}
.ws18{word-spacing:-22.208000pt;}
.ws3b{word-spacing:-21.564800pt;}
.ws3d{word-spacing:-21.551467pt;}
.wsb{word-spacing:-21.374933pt;}
.wsa{word-spacing:-21.103200pt;}
.ws63{word-spacing:-20.480000pt;}
.ws6b{word-spacing:-20.288000pt;}
.ws58{word-spacing:-20.278400pt;}
.ws19{word-spacing:-19.771200pt;}
.ws27{word-spacing:-19.193600pt;}
.ws5b{word-spacing:-18.818133pt;}
.ws13{word-spacing:-18.368533pt;}
.ws2f{word-spacing:-18.350400pt;}
.ws12{word-spacing:-17.912800pt;}
.ws4b{word-spacing:-17.728000pt;}
.ws29{word-spacing:-17.084800pt;}
.ws47{word-spacing:-17.082133pt;}
.ws2a{word-spacing:-16.441600pt;}
.ws1b{word-spacing:-16.438400pt;}
.ws66{word-spacing:-15.800000pt;}
.ws49{word-spacing:-15.539200pt;}
.ws4a{word-spacing:-15.349600pt;}
.ws55{word-spacing:-14.528000pt;}
.ws2d{word-spacing:-14.516533pt;}
.wsc{word-spacing:-14.075200pt;}
.ws45{word-spacing:-13.689600pt;}
.ws73{word-spacing:-13.238933pt;}
.ws44{word-spacing:-13.238400pt;}
.ws1d{word-spacing:-12.608000pt;}
.ws5c{word-spacing:-8.947200pt;}
.ws50{word-spacing:0.000000pt;}
.ws1a{word-spacing:1.472000pt;}
.ws17{word-spacing:19.715200pt;}
.ws36{word-spacing:94.088800pt;}
.ws37{word-spacing:94.916800pt;}
._f{margin-left:-1.987200pt;}
._0{margin-left:-0.987200pt;}
._5{width:0.940800pt;}
._13{width:1.987200pt;}
._1{width:16.128000pt;}
._4{width:17.339200pt;}
._18{width:18.596800pt;}
._a{width:19.576000pt;}
._12{width:20.548267pt;}
._e{width:22.058667pt;}
._9{width:23.470400pt;}
._8{width:25.211200pt;}
._b{width:26.432000pt;}
._1a{width:27.366400pt;}
._7{width:29.548000pt;}
._6{width:30.510133pt;}
._10{width:31.434133pt;}
._2{width:32.497867pt;}
._11{width:33.721600pt;}
._d{width:35.099200pt;}
._14{width:36.340533pt;}
._17{width:37.292800pt;}
._1b{width:38.259733pt;}
._19{width:42.470400pt;}
._c{width:52.636800pt;}
._1c{width:112.000000pt;}
._15{width:144.000000pt;}
._16{width:145.783200pt;}
._3{width:255.941333pt;}
.fs3{font-size:53.066667pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.080000pt;}
.y4{bottom:46.866667pt;}
.y2a{bottom:106.946667pt;}
.y49{bottom:113.988000pt;}
.y65{bottom:118.946667pt;}
.y29{bottom:125.346667pt;}
.y28{bottom:143.746667pt;}
.y48{bottom:145.666667pt;}
.y64{bottom:150.788000pt;}
.y27{bottom:162.146667pt;}
.y47{bottom:164.066667pt;}
.y26{bottom:180.546667pt;}
.y63{bottom:182.466667pt;}
.y46{bottom:195.746667pt;}
.y25{bottom:198.946667pt;}
.y45{bottom:214.146667pt;}
.y24{bottom:217.346667pt;}
.y44{bottom:232.546667pt;}
.y62{bottom:250.946667pt;}
.y43{bottom:264.226667pt;}
.y61{bottom:269.346667pt;}
.y23{bottom:280.866667pt;}
.y42{bottom:296.066667pt;}
.y60{bottom:301.188000pt;}
.y22{bottom:312.546667pt;}
.y41{bottom:314.466667pt;}
.y5f{bottom:319.588000pt;}
.y21{bottom:330.946667pt;}
.y73{bottom:337.988000pt;}
.y40{bottom:346.146667pt;}
.y20{bottom:349.346667pt;}
.y5e{bottom:351.266667pt;}
.y3f{bottom:364.546667pt;}
.y1f{bottom:367.746667pt;}
.y72{bottom:369.666667pt;}
.y5d{bottom:382.946667pt;}
.y1e{bottom:386.146667pt;}
.y3e{bottom:396.388000pt;}
.y71{bottom:401.346667pt;}
.y1d{bottom:404.546667pt;}
.y3d{bottom:414.788000pt;}
.y3c{bottom:433.188000pt;}
.y1c{bottom:436.388000pt;}
.y5c{bottom:446.466667pt;}
.y70{bottom:451.588000pt;}
.y1b{bottom:454.788000pt;}
.y3b{bottom:464.866667pt;}
.y5b{bottom:478.146667pt;}
.y6f{bottom:483.266667pt;}
.y1a{bottom:486.466667pt;}
.y3a{bottom:496.546667pt;}
.y6e{bottom:501.666667pt;}
.y19{bottom:504.866667pt;}
.y5a{bottom:509.988000pt;}
.y18{bottom:523.266667pt;}
.y39{bottom:528.388000pt;}
.y6d{bottom:533.346667pt;}
.y17{bottom:541.666667pt;}
.y38{bottom:546.788000pt;}
.y16{bottom:560.066667pt;}
.y6c{bottom:565.188000pt;}
.y59{bottom:573.346667pt;}
.y15{bottom:578.466667pt;}
.y14{bottom:596.866667pt;}
.y58{bottom:605.188000pt;}
.y37{bottom:615.266667pt;}
.y13{bottom:628.546667pt;}
.y36{bottom:633.666667pt;}
.y57{bottom:636.866667pt;}
.y12{bottom:646.946667pt;}
.y35{bottom:652.066667pt;}
.y56{bottom:655.266667pt;}
.y6b{bottom:660.388000pt;}
.y34{bottom:670.466667pt;}
.y11{bottom:678.788000pt;}
.y55{bottom:686.946667pt;}
.y10{bottom:697.188000pt;}
.y33{bottom:702.146667pt;}
.y54{bottom:705.346667pt;}
.y6a{bottom:710.466667pt;}
.yf{bottom:715.588000pt;}
.y53{bottom:723.746667pt;}
.ye{bottom:733.988000pt;}
.y69{bottom:742.146667pt;}
.yd{bottom:752.388000pt;}
.y52{bottom:755.588000pt;}
.yc{bottom:770.788000pt;}
.y51{bottom:773.988000pt;}
.y32{bottom:784.066667pt;}
.yb{bottom:789.188000pt;}
.y50{bottom:792.388000pt;}
.y68{bottom:810.788000pt;}
.y31{bottom:815.746667pt;}
.y4f{bottom:824.066667pt;}
.y67{bottom:842.466667pt;}
.y30{bottom:847.588000pt;}
.ya{bottom:852.546667pt;}
.y4e{bottom:855.746667pt;}
.y66{bottom:860.866667pt;}
.y4d{bottom:874.146667pt;}
.y2f{bottom:879.266667pt;}
.y9{bottom:884.388000pt;}
.y4c{bottom:905.988000pt;}
.y2e{bottom:910.946667pt;}
.y8{bottom:916.066667pt;}
.y4b{bottom:924.388000pt;}
.y2d{bottom:942.788000pt;}
.y7{bottom:947.746667pt;}
.y2c{bottom:961.188000pt;}
.y4a{bottom:974.466667pt;}
.y2b{bottom:992.866667pt;}
.y6{bottom:1011.266667pt;}
.y3{bottom:1045.826667pt;}
.y2{bottom:1064.866667pt;}
.y1{bottom:1086.146667pt;}
.h4{height:17.933333pt;}
.h5{height:40.200130pt;}
.h3{height:43.375000pt;}
.h2{height:50.784896pt;}
.h6{height:53.375000pt;}
.h7{height:54.020333pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:113.440000pt;}
.x3{left:129.440000pt;}
.x2{left:142.078667pt;}
.x1{left:144.960000pt;}
.x5{left:258.560000pt;}
.x8{left:359.200000pt;}
.x4{left:417.800000pt;}
.x6{left:421.600000pt;}
.x7{left:508.160000pt;}
.x9{left:647.678667pt;}
}




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