
    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_3ee05c34432bce1a2cdcd57f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.090820;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_f6f024a5e604f1a195ae140e.woff')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_bf9cd828bb39083a7b41da7a.woff')format("woff");}.ff3{font-family:ff3;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws6{word-spacing:-55.944000px;}
.ws56{word-spacing:-38.878800px;}
.ws3{word-spacing:-38.870100px;}
.ws64{word-spacing:-38.661000px;}
.ws3a{word-spacing:-38.656800px;}
.ws6a{word-spacing:-38.649600px;}
.ws2b{word-spacing:-38.598000px;}
.wsb{word-spacing:-38.520000px;}
.ws3d{word-spacing:-38.454000px;}
.ws44{word-spacing:-38.448000px;}
.ws43{word-spacing:-38.444400px;}
.ws3e{word-spacing:-38.443200px;}
.ws4a{word-spacing:-38.431200px;}
.ws11{word-spacing:-38.376000px;}
.ws5{word-spacing:-38.166000px;}
.ws39{word-spacing:-38.162400px;}
.ws4{word-spacing:-38.160000px;}
.ws19{word-spacing:-38.158200px;}
.wsa{word-spacing:-38.156400px;}
.ws37{word-spacing:-38.154600px;}
.ws51{word-spacing:-38.154000px;}
.ws8{word-spacing:-38.152800px;}
.ws2c{word-spacing:-38.149200px;}
.ws9{word-spacing:-38.091300px;}
.ws2{word-spacing:-38.081700px;}
.ws35{word-spacing:-37.948200px;}
.ws67{word-spacing:-37.946400px;}
.ws5e{word-spacing:-37.944600px;}
.ws0{word-spacing:-37.944000px;}
.ws3c{word-spacing:-37.943100px;}
.ws6b{word-spacing:-37.942800px;}
.ws59{word-spacing:-37.942200px;}
.ws27{word-spacing:-37.941900px;}
.ws36{word-spacing:-37.940400px;}
.ws1e{word-spacing:-37.938600px;}
.ws38{word-spacing:-37.935000px;}
.ws34{word-spacing:-37.878000px;}
.ws45{word-spacing:-37.728000px;}
.ws7{word-spacing:-37.727100px;}
.ws46{word-spacing:-37.722000px;}
.ws40{word-spacing:-37.440000px;}
.ws5a{word-spacing:-37.436400px;}
.ws33{word-spacing:-37.434000px;}
.ws42{word-spacing:-37.224000px;}
.ws4c{word-spacing:-37.014000px;}
.ws4f{word-spacing:-36.720000px;}
.ws70{word-spacing:-36.709200px;}
.ws16{word-spacing:-36.500400px;}
.ws1c{word-spacing:-35.996400px;}
.ws15{word-spacing:-35.054400px;}
.ws62{word-spacing:-35.053200px;}
.ws2d{word-spacing:-34.566000px;}
.ws4b{word-spacing:-34.554600px;}
.ws60{word-spacing:-34.344000px;}
.ws29{word-spacing:-34.331400px;}
.ws20{word-spacing:-33.842400px;}
.ws49{word-spacing:-33.840000px;}
.ws63{word-spacing:-33.630000px;}
.ws21{word-spacing:-33.611400px;}
.ws5d{word-spacing:-32.910000px;}
.ws4d{word-spacing:-32.904000px;}
.ws6f{word-spacing:-32.406000px;}
.ws50{word-spacing:-32.400000px;}
.ws18{word-spacing:-32.396400px;}
.ws1d{word-spacing:-32.099400px;}
.ws3f{word-spacing:-31.680000px;}
.ws25{word-spacing:-31.679100px;}
.ws3b{word-spacing:-31.464000px;}
.ws30{word-spacing:-31.456800px;}
.ws23{word-spacing:-31.394400px;}
.ws4e{word-spacing:-30.960000px;}
.ws24{word-spacing:-30.956400px;}
.ws31{word-spacing:-30.240000px;}
.ws61{word-spacing:-30.024000px;}
.ws22{word-spacing:-30.021000px;}
.ws1a{word-spacing:-30.020400px;}
.ws69{word-spacing:-29.520000px;}
.ws1b{word-spacing:-29.511000px;}
.ws26{word-spacing:-29.510400px;}
.ws68{word-spacing:-29.304000px;}
.ws66{word-spacing:-29.295000px;}
.ws13{word-spacing:-28.796400px;}
.ws6c{word-spacing:-28.573200px;}
.ws48{word-spacing:-28.080000px;}
.ws12{word-spacing:-28.065600px;}
.ws71{word-spacing:-27.864000px;}
.ws14{word-spacing:-27.860400px;}
.ws54{word-spacing:-27.144000px;}
.ws57{word-spacing:-26.911200px;}
.ws1f{word-spacing:-26.640000px;}
.ws2e{word-spacing:-25.920000px;}
.ws17{word-spacing:-25.916400px;}
.ws2a{word-spacing:-25.206000px;}
.ws6e{word-spacing:-24.768000px;}
.ws5c{word-spacing:-24.264000px;}
.ws47{word-spacing:-23.760000px;}
.ws65{word-spacing:-23.040000px;}
.ws32{word-spacing:-22.102200px;}
.ws52{word-spacing:-21.600600px;}
.ws55{word-spacing:-21.384000px;}
.wsf{word-spacing:-21.378600px;}
.ws6d{word-spacing:-20.874000px;}
.ws10{word-spacing:-19.944000px;}
.ws5b{word-spacing:-18.720000px;}
.wse{word-spacing:-18.288000px;}
.ws41{word-spacing:-17.784000px;}
.ws72{word-spacing:-11.808000px;}
.ws53{word-spacing:-10.584000px;}
.ws5f{word-spacing:-9.870000px;}
.ws58{word-spacing:-5.760000px;}
.wsd{word-spacing:-4.818600px;}
.wsc{word-spacing:-4.304700px;}
.ws28{word-spacing:0.000000px;}
.ws2f{word-spacing:2.376000px;}
.ws1{word-spacing:1037.484900px;}
._20{margin-left:-2.092800px;}
._3{margin-left:-1.015200px;}
._0{width:1.076400px;}
._26{width:2.442000px;}
._14{width:17.130000px;}
._1{width:18.968400px;}
._8{width:20.512800px;}
._1f{width:21.960000px;}
._d{width:23.335200px;}
._b{width:24.553200px;}
._a{width:25.556400px;}
._e{width:26.941800px;}
._7{width:28.267200px;}
._c{width:30.312000px;}
._9{width:31.316400px;}
._f{width:32.697600px;}
._22{width:34.212000px;}
._2{width:35.705700px;}
._13{width:36.787200px;}
._16{width:37.800000px;}
._18{width:39.333600px;}
._1e{width:42.405600px;}
._10{width:43.683600px;}
._27{width:45.151200px;}
._1c{width:46.530000px;}
._15{width:49.026000px;}
._17{width:50.978400px;}
._5{width:52.472700px;}
._4{width:54.248400px;}
._24{width:55.818000px;}
._1b{width:57.132000px;}
._23{width:58.263600px;}
._11{width:59.774400px;}
._19{width:64.008000px;}
._1a{width:65.167200px;}
._21{width:67.327200px;}
._25{width:71.379600px;}
._6{width:72.648000px;}
._1d{width:93.228000px;}
._12{width:117.874800px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:63.975000px;}
.y82{bottom:119.236500px;}
.y5c{bottom:139.575000px;}
.y72{bottom:139.936500px;}
.y48{bottom:140.296500px;}
.y29{bottom:141.736500px;}
.y81{bottom:160.636500px;}
.y47{bottom:160.996500px;}
.y28{bottom:162.436500px;}
.y5b{bottom:181.336500px;}
.y46{bottom:181.696500px;}
.y27{bottom:183.136500px;}
.y71{bottom:202.396500px;}
.y26{bottom:203.836500px;}
.y5a{bottom:223.096500px;}
.y45{bottom:223.275000px;}
.y25{bottom:224.536500px;}
.y70{bottom:243.795000px;}
.y24{bottom:245.236500px;}
.y80{bottom:264.675000px;}
.y44{bottom:265.036500px;}
.y23{bottom:265.936500px;}
.y6f{bottom:285.375000px;}
.y22{bottom:286.636500px;}
.y59{bottom:306.436500px;}
.y43{bottom:306.795000px;}
.y21{bottom:307.336500px;}
.y6e{bottom:327.136500px;}
.y58{bottom:348.196500px;}
.y42{bottom:348.375000px;}
.y20{bottom:348.915000px;}
.y6d{bottom:368.896500px;}
.y1f{bottom:369.615000px;}
.y57{bottom:389.775000px;}
.y41{bottom:390.136500px;}
.y1e{bottom:390.315000px;}
.y6c{bottom:410.475000px;}
.y40{bottom:410.836500px;}
.y1d{bottom:411.015000px;}
.y7f{bottom:431.175000px;}
.y3f{bottom:431.536500px;}
.y1c{bottom:431.715000px;}
.y7e{bottom:451.875000px;}
.y3e{bottom:452.236500px;}
.y1b{bottom:452.415000px;}
.y6b{bottom:472.936500px;}
.y1a{bottom:473.115000px;}
.y56{bottom:473.295000px;}
.y6a{bottom:493.636500px;}
.y19{bottom:493.815000px;}
.y3d{bottom:493.996500px;}
.y18{bottom:514.515000px;}
.y55{bottom:514.695000px;}
.y17{bottom:535.215000px;}
.y54{bottom:535.396500px;}
.y3c{bottom:535.575000px;}
.y16{bottom:555.915000px;}
.y53{bottom:556.096500px;}
.y15{bottom:576.615000px;}
.y52{bottom:576.795000px;}
.y69{bottom:576.975000px;}
.y3b{bottom:577.336500px;}
.y51{bottom:597.496500px;}
.y50{bottom:618.195000px;}
.y14{bottom:618.375000px;}
.y68{bottom:618.736500px;}
.y3a{bottom:619.096500px;}
.y4f{bottom:659.775000px;}
.y13{bottom:660.136500px;}
.y67{bottom:660.496500px;}
.y4e{bottom:680.475000px;}
.y7d{bottom:681.195000px;}
.y4d{bottom:701.175000px;}
.y12{bottom:701.715000px;}
.y7c{bottom:701.896500px;}
.y66{bottom:702.075000px;}
.y39{bottom:702.436500px;}
.y4c{bottom:721.875000px;}
.y11{bottom:722.415000px;}
.y65{bottom:722.775000px;}
.y10{bottom:743.115000px;}
.y64{bottom:743.475000px;}
.y38{bottom:744.195000px;}
.y4b{bottom:763.636500px;}
.yf{bottom:763.815000px;}
.y63{bottom:764.175000px;}
.ye{bottom:784.515000px;}
.y7b{bottom:785.236500px;}
.y37{bottom:785.775000px;}
.yd{bottom:805.215000px;}
.y4a{bottom:805.395000px;}
.y62{bottom:805.936500px;}
.y7a{bottom:826.996500px;}
.y36{bottom:827.536500px;}
.yc{bottom:846.975000px;}
.y61{bottom:847.695000px;}
.y79{bottom:868.575000px;}
.y35{bottom:869.295000px;}
.y49{bottom:888.736500px;}
.y60{bottom:889.275000px;}
.y34{bottom:889.995000px;}
.y78{bottom:910.336500px;}
.y33{bottom:910.695000px;}
.y5f{bottom:931.036500px;}
.y32{bottom:931.395000px;}
.yb{bottom:951.375000px;}
.y77{bottom:951.736500px;}
.y31{bottom:952.095000px;}
.ya{bottom:972.075000px;}
.y76{bottom:972.436500px;}
.y30{bottom:972.795000px;}
.y75{bottom:993.136500px;}
.y2f{bottom:993.495000px;}
.y9{bottom:1013.836500px;}
.y5e{bottom:1014.195000px;}
.y84{bottom:1014.375000px;}
.y74{bottom:1034.536500px;}
.y5d{bottom:1034.895000px;}
.y2e{bottom:1035.075000px;}
.y8{bottom:1055.595000px;}
.y83{bottom:1056.136500px;}
.y73{bottom:1076.295000px;}
.y2d{bottom:1076.836500px;}
.y7{bottom:1097.175000px;}
.y2c{bottom:1097.536500px;}
.y6{bottom:1117.875000px;}
.y2b{bottom:1118.236500px;}
.y2a{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h4{height:60.082031px;}
.h2{height:63.000000px;}
.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;}
.xe{left:129.600000px;}
.xc{left:145.800000px;}
.xd{left:149.760000px;}
.xa{left:152.100000px;}
.x2{left:160.560000px;}
.x6{left:179.280000px;}
.x5{left:246.780000px;}
.x9{left:296.460000px;}
.x8{left:359.100000px;}
.xf{left:363.600000px;}
.x7{left:368.460000px;}
.xb{left:433.800000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws6{word-spacing:-49.728000pt;}
.ws56{word-spacing:-34.558933pt;}
.ws3{word-spacing:-34.551200pt;}
.ws64{word-spacing:-34.365333pt;}
.ws3a{word-spacing:-34.361600pt;}
.ws6a{word-spacing:-34.355200pt;}
.ws2b{word-spacing:-34.309333pt;}
.wsb{word-spacing:-34.240000pt;}
.ws3d{word-spacing:-34.181333pt;}
.ws44{word-spacing:-34.176000pt;}
.ws43{word-spacing:-34.172800pt;}
.ws3e{word-spacing:-34.171733pt;}
.ws4a{word-spacing:-34.161067pt;}
.ws11{word-spacing:-34.112000pt;}
.ws5{word-spacing:-33.925333pt;}
.ws39{word-spacing:-33.922133pt;}
.ws4{word-spacing:-33.920000pt;}
.ws19{word-spacing:-33.918400pt;}
.wsa{word-spacing:-33.916800pt;}
.ws37{word-spacing:-33.915200pt;}
.ws51{word-spacing:-33.914667pt;}
.ws8{word-spacing:-33.913600pt;}
.ws2c{word-spacing:-33.910400pt;}
.ws9{word-spacing:-33.858933pt;}
.ws2{word-spacing:-33.850400pt;}
.ws35{word-spacing:-33.731733pt;}
.ws67{word-spacing:-33.730133pt;}
.ws5e{word-spacing:-33.728533pt;}
.ws0{word-spacing:-33.728000pt;}
.ws3c{word-spacing:-33.727200pt;}
.ws6b{word-spacing:-33.726933pt;}
.ws59{word-spacing:-33.726400pt;}
.ws27{word-spacing:-33.726133pt;}
.ws36{word-spacing:-33.724800pt;}
.ws1e{word-spacing:-33.723200pt;}
.ws38{word-spacing:-33.720000pt;}
.ws34{word-spacing:-33.669333pt;}
.ws45{word-spacing:-33.536000pt;}
.ws7{word-spacing:-33.535200pt;}
.ws46{word-spacing:-33.530667pt;}
.ws40{word-spacing:-33.280000pt;}
.ws5a{word-spacing:-33.276800pt;}
.ws33{word-spacing:-33.274667pt;}
.ws42{word-spacing:-33.088000pt;}
.ws4c{word-spacing:-32.901333pt;}
.ws4f{word-spacing:-32.640000pt;}
.ws70{word-spacing:-32.630400pt;}
.ws16{word-spacing:-32.444800pt;}
.ws1c{word-spacing:-31.996800pt;}
.ws15{word-spacing:-31.159467pt;}
.ws62{word-spacing:-31.158400pt;}
.ws2d{word-spacing:-30.725333pt;}
.ws4b{word-spacing:-30.715200pt;}
.ws60{word-spacing:-30.528000pt;}
.ws29{word-spacing:-30.516800pt;}
.ws20{word-spacing:-30.082133pt;}
.ws49{word-spacing:-30.080000pt;}
.ws63{word-spacing:-29.893333pt;}
.ws21{word-spacing:-29.876800pt;}
.ws5d{word-spacing:-29.253333pt;}
.ws4d{word-spacing:-29.248000pt;}
.ws6f{word-spacing:-28.805333pt;}
.ws50{word-spacing:-28.800000pt;}
.ws18{word-spacing:-28.796800pt;}
.ws1d{word-spacing:-28.532800pt;}
.ws3f{word-spacing:-28.160000pt;}
.ws25{word-spacing:-28.159200pt;}
.ws3b{word-spacing:-27.968000pt;}
.ws30{word-spacing:-27.961600pt;}
.ws23{word-spacing:-27.906133pt;}
.ws4e{word-spacing:-27.520000pt;}
.ws24{word-spacing:-27.516800pt;}
.ws31{word-spacing:-26.880000pt;}
.ws61{word-spacing:-26.688000pt;}
.ws22{word-spacing:-26.685333pt;}
.ws1a{word-spacing:-26.684800pt;}
.ws69{word-spacing:-26.240000pt;}
.ws1b{word-spacing:-26.232000pt;}
.ws26{word-spacing:-26.231467pt;}
.ws68{word-spacing:-26.048000pt;}
.ws66{word-spacing:-26.040000pt;}
.ws13{word-spacing:-25.596800pt;}
.ws6c{word-spacing:-25.398400pt;}
.ws48{word-spacing:-24.960000pt;}
.ws12{word-spacing:-24.947200pt;}
.ws71{word-spacing:-24.768000pt;}
.ws14{word-spacing:-24.764800pt;}
.ws54{word-spacing:-24.128000pt;}
.ws57{word-spacing:-23.921067pt;}
.ws1f{word-spacing:-23.680000pt;}
.ws2e{word-spacing:-23.040000pt;}
.ws17{word-spacing:-23.036800pt;}
.ws2a{word-spacing:-22.405333pt;}
.ws6e{word-spacing:-22.016000pt;}
.ws5c{word-spacing:-21.568000pt;}
.ws47{word-spacing:-21.120000pt;}
.ws65{word-spacing:-20.480000pt;}
.ws32{word-spacing:-19.646400pt;}
.ws52{word-spacing:-19.200533pt;}
.ws55{word-spacing:-19.008000pt;}
.wsf{word-spacing:-19.003200pt;}
.ws6d{word-spacing:-18.554667pt;}
.ws10{word-spacing:-17.728000pt;}
.ws5b{word-spacing:-16.640000pt;}
.wse{word-spacing:-16.256000pt;}
.ws41{word-spacing:-15.808000pt;}
.ws72{word-spacing:-10.496000pt;}
.ws53{word-spacing:-9.408000pt;}
.ws5f{word-spacing:-8.773333pt;}
.ws58{word-spacing:-5.120000pt;}
.wsd{word-spacing:-4.283200pt;}
.wsc{word-spacing:-3.826400pt;}
.ws28{word-spacing:0.000000pt;}
.ws2f{word-spacing:2.112000pt;}
.ws1{word-spacing:922.208800pt;}
._20{margin-left:-1.860267pt;}
._3{margin-left:-0.902400pt;}
._0{width:0.956800pt;}
._26{width:2.170667pt;}
._14{width:15.226667pt;}
._1{width:16.860800pt;}
._8{width:18.233600pt;}
._1f{width:19.520000pt;}
._d{width:20.742400pt;}
._b{width:21.825067pt;}
._a{width:22.716800pt;}
._e{width:23.948267pt;}
._7{width:25.126400pt;}
._c{width:26.944000pt;}
._9{width:27.836800pt;}
._f{width:29.064533pt;}
._22{width:30.410667pt;}
._2{width:31.738400pt;}
._13{width:32.699733pt;}
._16{width:33.600000pt;}
._18{width:34.963200pt;}
._1e{width:37.693867pt;}
._10{width:38.829867pt;}
._27{width:40.134400pt;}
._1c{width:41.360000pt;}
._15{width:43.578667pt;}
._17{width:45.314133pt;}
._5{width:46.642400pt;}
._4{width:48.220800pt;}
._24{width:49.616000pt;}
._1b{width:50.784000pt;}
._23{width:51.789867pt;}
._11{width:53.132800pt;}
._19{width:56.896000pt;}
._1a{width:57.926400pt;}
._21{width:59.846400pt;}
._25{width:63.448533pt;}
._6{width:64.576000pt;}
._1d{width:82.869333pt;}
._12{width:104.777600pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y82{bottom:105.988000pt;}
.y5c{bottom:124.066667pt;}
.y72{bottom:124.388000pt;}
.y48{bottom:124.708000pt;}
.y29{bottom:125.988000pt;}
.y81{bottom:142.788000pt;}
.y47{bottom:143.108000pt;}
.y28{bottom:144.388000pt;}
.y5b{bottom:161.188000pt;}
.y46{bottom:161.508000pt;}
.y27{bottom:162.788000pt;}
.y71{bottom:179.908000pt;}
.y26{bottom:181.188000pt;}
.y5a{bottom:198.308000pt;}
.y45{bottom:198.466667pt;}
.y25{bottom:199.588000pt;}
.y70{bottom:216.706667pt;}
.y24{bottom:217.988000pt;}
.y80{bottom:235.266667pt;}
.y44{bottom:235.588000pt;}
.y23{bottom:236.388000pt;}
.y6f{bottom:253.666667pt;}
.y22{bottom:254.788000pt;}
.y59{bottom:272.388000pt;}
.y43{bottom:272.706667pt;}
.y21{bottom:273.188000pt;}
.y6e{bottom:290.788000pt;}
.y58{bottom:309.508000pt;}
.y42{bottom:309.666667pt;}
.y20{bottom:310.146667pt;}
.y6d{bottom:327.908000pt;}
.y1f{bottom:328.546667pt;}
.y57{bottom:346.466667pt;}
.y41{bottom:346.788000pt;}
.y1e{bottom:346.946667pt;}
.y6c{bottom:364.866667pt;}
.y40{bottom:365.188000pt;}
.y1d{bottom:365.346667pt;}
.y7f{bottom:383.266667pt;}
.y3f{bottom:383.588000pt;}
.y1c{bottom:383.746667pt;}
.y7e{bottom:401.666667pt;}
.y3e{bottom:401.988000pt;}
.y1b{bottom:402.146667pt;}
.y6b{bottom:420.388000pt;}
.y1a{bottom:420.546667pt;}
.y56{bottom:420.706667pt;}
.y6a{bottom:438.788000pt;}
.y19{bottom:438.946667pt;}
.y3d{bottom:439.108000pt;}
.y18{bottom:457.346667pt;}
.y55{bottom:457.506667pt;}
.y17{bottom:475.746667pt;}
.y54{bottom:475.908000pt;}
.y3c{bottom:476.066667pt;}
.y16{bottom:494.146667pt;}
.y53{bottom:494.308000pt;}
.y15{bottom:512.546667pt;}
.y52{bottom:512.706667pt;}
.y69{bottom:512.866667pt;}
.y3b{bottom:513.188000pt;}
.y51{bottom:531.108000pt;}
.y50{bottom:549.506667pt;}
.y14{bottom:549.666667pt;}
.y68{bottom:549.988000pt;}
.y3a{bottom:550.308000pt;}
.y4f{bottom:586.466667pt;}
.y13{bottom:586.788000pt;}
.y67{bottom:587.108000pt;}
.y4e{bottom:604.866667pt;}
.y7d{bottom:605.506667pt;}
.y4d{bottom:623.266667pt;}
.y12{bottom:623.746667pt;}
.y7c{bottom:623.908000pt;}
.y66{bottom:624.066667pt;}
.y39{bottom:624.388000pt;}
.y4c{bottom:641.666667pt;}
.y11{bottom:642.146667pt;}
.y65{bottom:642.466667pt;}
.y10{bottom:660.546667pt;}
.y64{bottom:660.866667pt;}
.y38{bottom:661.506667pt;}
.y4b{bottom:678.788000pt;}
.yf{bottom:678.946667pt;}
.y63{bottom:679.266667pt;}
.ye{bottom:697.346667pt;}
.y7b{bottom:697.988000pt;}
.y37{bottom:698.466667pt;}
.yd{bottom:715.746667pt;}
.y4a{bottom:715.906667pt;}
.y62{bottom:716.388000pt;}
.y7a{bottom:735.108000pt;}
.y36{bottom:735.588000pt;}
.yc{bottom:752.866667pt;}
.y61{bottom:753.506667pt;}
.y79{bottom:772.066667pt;}
.y35{bottom:772.706667pt;}
.y49{bottom:789.988000pt;}
.y60{bottom:790.466667pt;}
.y34{bottom:791.106667pt;}
.y78{bottom:809.188000pt;}
.y33{bottom:809.506667pt;}
.y5f{bottom:827.588000pt;}
.y32{bottom:827.906667pt;}
.yb{bottom:845.666667pt;}
.y77{bottom:845.988000pt;}
.y31{bottom:846.306667pt;}
.ya{bottom:864.066667pt;}
.y76{bottom:864.388000pt;}
.y30{bottom:864.706667pt;}
.y75{bottom:882.788000pt;}
.y2f{bottom:883.106667pt;}
.y9{bottom:901.188000pt;}
.y5e{bottom:901.506667pt;}
.y84{bottom:901.666667pt;}
.y74{bottom:919.588000pt;}
.y5d{bottom:919.906667pt;}
.y2e{bottom:920.066667pt;}
.y8{bottom:938.306667pt;}
.y83{bottom:938.788000pt;}
.y73{bottom:956.706667pt;}
.y2d{bottom:957.188000pt;}
.y7{bottom:975.266667pt;}
.y2c{bottom:975.588000pt;}
.y6{bottom:993.666667pt;}
.y2b{bottom:993.988000pt;}
.y2a{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h4{height:53.406250pt;}
.h2{height:56.000000pt;}
.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;}
.xe{left:115.200000pt;}
.xc{left:129.600000pt;}
.xd{left:133.120000pt;}
.xa{left:135.200000pt;}
.x2{left:142.720000pt;}
.x6{left:159.360000pt;}
.x5{left:219.360000pt;}
.x9{left:263.520000pt;}
.x8{left:319.200000pt;}
.xf{left:323.200000pt;}
.x7{left:327.520000pt;}
.xb{left:385.600000pt;}
}




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