
    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_a7bebfa4214c27a33e6049fb.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_95b256da37318c40ee212975.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_99173cded12407c19b61e8ee.woff')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;}
.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;}
}
.ws7{word-spacing:-55.944000px;}
.ws26{word-spacing:-40.536000px;}
.ws3{word-spacing:-38.655000px;}
.ws2{word-spacing:-38.081700px;}
.ws0{word-spacing:-37.944000px;}
.ws5{word-spacing:-37.713300px;}
.ws6{word-spacing:-37.650600px;}
.ws7e{word-spacing:-37.349100px;}
.ws21{word-spacing:-23.247000px;}
.ws1f{word-spacing:-23.245200px;}
.ws48{word-spacing:-23.037000px;}
.ws38{word-spacing:-23.032800px;}
.ws37{word-spacing:-23.029200px;}
.ws4{word-spacing:-23.022900px;}
.ws30{word-spacing:-22.758000px;}
.ws49{word-spacing:-22.752000px;}
.ws36{word-spacing:-22.748400px;}
.ws4a{word-spacing:-22.746000px;}
.ws3a{word-spacing:-22.739400px;}
.ws39{word-spacing:-22.737600px;}
.ws60{word-spacing:-22.735800px;}
.ws86{word-spacing:-22.536000px;}
.ws3c{word-spacing:-22.530600px;}
.ws78{word-spacing:-22.528800px;}
.ws7d{word-spacing:-22.527600px;}
.ws2e{word-spacing:-22.527000px;}
.ws47{word-spacing:-22.525200px;}
.ws13{word-spacing:-22.523400px;}
.ws31{word-spacing:-22.521600px;}
.ws88{word-spacing:-22.520400px;}
.ws5a{word-spacing:-22.519200px;}
.ws34{word-spacing:-22.514400px;}
.ws77{word-spacing:-22.512600px;}
.ws2a{word-spacing:-22.509900px;}
.wsb{word-spacing:-22.317000px;}
.ws85{word-spacing:-22.315500px;}
.ws2b{word-spacing:-22.312800px;}
.ws2c{word-spacing:-22.305600px;}
.ws63{word-spacing:-22.032000px;}
.ws2f{word-spacing:-21.999600px;}
.ws83{word-spacing:-21.808800px;}
.ws1c{word-spacing:-21.807000px;}
.ws5f{word-spacing:-21.801600px;}
.ws74{word-spacing:-21.800400px;}
.ws25{word-spacing:-21.791700px;}
.ws19{word-spacing:-21.091200px;}
.wsf{word-spacing:-21.085200px;}
.ws7c{word-spacing:-20.368800px;}
.ws52{word-spacing:-20.361600px;}
.ws72{word-spacing:-19.656000px;}
.ws61{word-spacing:-19.436400px;}
.ws5c{word-spacing:-18.927000px;}
.ws3d{word-spacing:-18.925200px;}
.ws1b{word-spacing:-18.922200px;}
.ws20{word-spacing:-18.913500px;}
.ws62{word-spacing:-17.487000px;}
.ws7a{word-spacing:-17.463600px;}
.ws9{word-spacing:-17.273400px;}
.ws23{word-spacing:-16.774200px;}
.ws6e{word-spacing:-16.765200px;}
.ws32{word-spacing:-16.759800px;}
.ws18{word-spacing:-16.278000px;}
.ws51{word-spacing:-16.047000px;}
.ws69{word-spacing:-15.541200px;}
.ws4d{word-spacing:-15.336000px;}
.ws84{word-spacing:-15.334200px;}
.ws68{word-spacing:-15.329400px;}
.ws73{word-spacing:-14.622000px;}
.ws35{word-spacing:-14.609700px;}
.ws75{word-spacing:-14.605200px;}
.ws3b{word-spacing:-13.887000px;}
.ws82{word-spacing:-13.876500px;}
.ws29{word-spacing:-13.682400px;}
.ws16{word-spacing:-13.164000px;}
.ws58{word-spacing:-13.159200px;}
.ws66{word-spacing:-12.958200px;}
.wsd{word-spacing:-12.448800px;}
.ws57{word-spacing:-12.445200px;}
.ws11{word-spacing:-12.231900px;}
.ws6a{word-spacing:-11.701200px;}
.ws43{word-spacing:-11.232000px;}
.ws2d{word-spacing:-11.005200px;}
.ws5d{word-spacing:-10.208100px;}
.ws4b{word-spacing:-10.071000px;}
.ws87{word-spacing:-9.579300px;}
.ws65{word-spacing:-9.574200px;}
.ws4c{word-spacing:-9.559800px;}
.wsc{word-spacing:-9.352800px;}
.ws28{word-spacing:-9.066600px;}
.ws59{word-spacing:-8.850600px;}
.ws14{word-spacing:-8.632800px;}
.ws79{word-spacing:-8.326800px;}
.ws50{word-spacing:-7.632600px;}
.ws5b{word-spacing:-7.410300px;}
.ws22{word-spacing:-6.679200px;}
.ws56{word-spacing:-5.943600px;}
.ws44{word-spacing:-5.478000px;}
.ws80{word-spacing:-5.260200px;}
.ws6f{word-spacing:-4.536000px;}
.ws17{word-spacing:-4.530600px;}
.ws46{word-spacing:-4.528200px;}
.ws24{word-spacing:-4.519800px;}
.ws41{word-spacing:-3.318000px;}
.ws6b{word-spacing:-3.072000px;}
.ws1d{word-spacing:-2.574000px;}
.ws33{word-spacing:-2.367000px;}
.ws64{word-spacing:-0.923400px;}
.ws76{word-spacing:-0.921600px;}
.ws71{word-spacing:-0.432000px;}
.ws70{word-spacing:0.297900px;}
.ws40{word-spacing:1.024200px;}
.ws6d{word-spacing:1.245000px;}
.ws42{word-spacing:1.728000px;}
.ws12{word-spacing:1.965600px;}
.ws27{word-spacing:2.673000px;}
.ws1e{word-spacing:4.120800px;}
.ws6c{word-spacing:4.833000px;}
.ws67{word-spacing:5.548800px;}
.ws5e{word-spacing:6.489900px;}
.ws8{word-spacing:6.991200px;}
.ws3f{word-spacing:7.698000px;}
.ws55{word-spacing:7.930800px;}
.wsa{word-spacing:9.161100px;}
.ws7f{word-spacing:12.528000px;}
.ws15{word-spacing:12.756600px;}
.ws7b{word-spacing:12.762600px;}
.ws81{word-spacing:13.266900px;}
.ws45{word-spacing:13.464000px;}
.ws54{word-spacing:13.473000px;}
.ws4f{word-spacing:19.733700px;}
.ws1a{word-spacing:22.833000px;}
.ws53{word-spacing:23.569200px;}
.wse{word-spacing:33.129000px;}
.ws3e{word-spacing:36.294600px;}
.ws4e{word-spacing:49.689000px;}
.ws10{word-spacing:51.422400px;}
.ws1{word-spacing:1037.484900px;}
._2{margin-left:-1.092300px;}
._0{width:1.076400px;}
._1{width:18.968400px;}
._7{width:19.983600px;}
._a{width:21.272400px;}
._14{width:22.824000px;}
._5{width:24.264000px;}
._11{width:25.272000px;}
._1a{width:27.270300px;}
._f{width:28.875900px;}
._18{width:30.300600px;}
._8{width:32.400000px;}
._d{width:33.901200px;}
._3{width:35.712000px;}
._17{width:37.423800px;}
._12{width:38.658000px;}
._19{width:40.264800px;}
._1f{width:42.038100px;}
._c{width:43.530300px;}
._15{width:45.864000px;}
._1e{width:47.404800px;}
._4{width:49.456800px;}
._6{width:50.913600px;}
._e{width:54.385200px;}
._1d{width:55.839300px;}
._10{width:57.012000px;}
._1c{width:61.321200px;}
._13{width:64.704300px;}
._9{width:74.943000px;}
._1b{width:78.523200px;}
._16{width:90.991200px;}
._b{width:93.024000px;}
.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;}
.y2e{bottom:101.955000px;}
.y4f{bottom:119.775000px;}
.y2d{bottom:122.655000px;}
.y7c{bottom:123.196500px;}
.y4e{bottom:140.475000px;}
.y7b{bottom:143.896500px;}
.y4d{bottom:161.175000px;}
.y2c{bottom:164.236500px;}
.y7a{bottom:164.596500px;}
.y4c{bottom:181.875000px;}
.y2b{bottom:184.936500px;}
.y79{bottom:185.296500px;}
.y2a{bottom:205.636500px;}
.y78{bottom:205.996500px;}
.y4b{bottom:223.636500px;}
.y29{bottom:226.336500px;}
.y28{bottom:247.036500px;}
.y77{bottom:247.575000px;}
.y4a{bottom:265.396500px;}
.y27{bottom:267.736500px;}
.y76{bottom:268.275000px;}
.y26{bottom:288.436500px;}
.y75{bottom:288.975000px;}
.y49{bottom:306.975000px;}
.y25{bottom:309.136500px;}
.y74{bottom:309.675000px;}
.y24{bottom:329.836500px;}
.y48{bottom:348.736500px;}
.y23{bottom:350.536500px;}
.y73{bottom:351.436500px;}
.y47{bottom:369.436500px;}
.y22{bottom:371.236500px;}
.y72{bottom:372.136500px;}
.y46{bottom:390.136500px;}
.y21{bottom:391.936500px;}
.y71{bottom:392.836500px;}
.y45{bottom:410.836500px;}
.y20{bottom:412.636500px;}
.y70{bottom:413.536500px;}
.y44{bottom:431.536500px;}
.y6f{bottom:434.236500px;}
.y43{bottom:452.236500px;}
.y1f{bottom:454.396500px;}
.y42{bottom:472.936500px;}
.y1e{bottom:475.096500px;}
.y6e{bottom:475.996500px;}
.y41{bottom:493.636500px;}
.y1d{bottom:495.796500px;}
.y6d{bottom:496.695000px;}
.y40{bottom:514.336500px;}
.y1c{bottom:516.496500px;}
.y6c{bottom:517.396500px;}
.y3f{bottom:535.036500px;}
.y1b{bottom:537.195000px;}
.y6b{bottom:538.096500px;}
.y3e{bottom:555.736500px;}
.y1a{bottom:557.896500px;}
.y6a{bottom:558.796500px;}
.y3d{bottom:576.436500px;}
.y19{bottom:578.596500px;}
.y69{bottom:579.496500px;}
.y18{bottom:599.295000px;}
.y68{bottom:600.195000px;}
.y3c{bottom:618.195000px;}
.y17{bottom:619.996500px;}
.y67{bottom:620.896500px;}
.y3b{bottom:638.896500px;}
.y16{bottom:640.695000px;}
.y66{bottom:641.596500px;}
.y15{bottom:661.396500px;}
.y65{bottom:662.295000px;}
.y3a{bottom:680.475000px;}
.y14{bottom:682.096500px;}
.y64{bottom:682.996500px;}
.y63{bottom:703.695000px;}
.y39{bottom:722.236500px;}
.y13{bottom:723.675000px;}
.y62{bottom:724.396500px;}
.y12{bottom:744.375000px;}
.y61{bottom:745.096500px;}
.y38{bottom:763.996500px;}
.y85{bottom:765.075000px;}
.y11{bottom:785.775000px;}
.y60{bottom:786.675000px;}
.y37{bottom:805.575000px;}
.y10{bottom:806.475000px;}
.y5f{bottom:807.375000px;}
.yf{bottom:827.175000px;}
.y84{bottom:827.536500px;}
.y5e{bottom:828.075000px;}
.y36{bottom:847.336500px;}
.ye{bottom:847.875000px;}
.y83{bottom:848.236500px;}
.y5d{bottom:848.775000px;}
.y35{bottom:868.036500px;}
.yd{bottom:868.575000px;}
.y5c{bottom:869.475000px;}
.yc{bottom:889.275000px;}
.y82{bottom:889.995000px;}
.y5b{bottom:890.175000px;}
.y34{bottom:909.795000px;}
.yb{bottom:909.975000px;}
.y81{bottom:910.695000px;}
.y33{bottom:930.495000px;}
.ya{bottom:930.675000px;}
.y80{bottom:931.395000px;}
.y5a{bottom:931.936500px;}
.y32{bottom:951.195000px;}
.y9{bottom:951.375000px;}
.y7f{bottom:952.095000px;}
.y59{bottom:952.636500px;}
.y7e{bottom:972.795000px;}
.y58{bottom:973.336500px;}
.y31{bottom:992.775000px;}
.y8{bottom:993.136500px;}
.y57{bottom:994.036500px;}
.y7{bottom:1013.836500px;}
.y56{bottom:1014.736500px;}
.y30{bottom:1034.536500px;}
.y7d{bottom:1035.075000px;}
.y55{bottom:1035.436500px;}
.y54{bottom:1056.136500px;}
.y2f{bottom:1076.295000px;}
.y53{bottom:1076.836500px;}
.y52{bottom:1097.536500px;}
.y6{bottom:1117.875000px;}
.y51{bottom:1118.236500px;}
.y50{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;}
.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;}
.x7{left:129.960000px;}
.x9{left:134.100000px;}
.xa{left:138.600000px;}
.x2{left:160.560000px;}
.x6{left:226.260000px;}
.x8{left:323.460000px;}
.x5{left:373.680000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws7{word-spacing:-49.728000pt;}
.ws26{word-spacing:-36.032000pt;}
.ws3{word-spacing:-34.360000pt;}
.ws2{word-spacing:-33.850400pt;}
.ws0{word-spacing:-33.728000pt;}
.ws5{word-spacing:-33.522933pt;}
.ws6{word-spacing:-33.467200pt;}
.ws7e{word-spacing:-33.199200pt;}
.ws21{word-spacing:-20.664000pt;}
.ws1f{word-spacing:-20.662400pt;}
.ws48{word-spacing:-20.477333pt;}
.ws38{word-spacing:-20.473600pt;}
.ws37{word-spacing:-20.470400pt;}
.ws4{word-spacing:-20.464800pt;}
.ws30{word-spacing:-20.229333pt;}
.ws49{word-spacing:-20.224000pt;}
.ws36{word-spacing:-20.220800pt;}
.ws4a{word-spacing:-20.218667pt;}
.ws3a{word-spacing:-20.212800pt;}
.ws39{word-spacing:-20.211200pt;}
.ws60{word-spacing:-20.209600pt;}
.ws86{word-spacing:-20.032000pt;}
.ws3c{word-spacing:-20.027200pt;}
.ws78{word-spacing:-20.025600pt;}
.ws7d{word-spacing:-20.024533pt;}
.ws2e{word-spacing:-20.024000pt;}
.ws47{word-spacing:-20.022400pt;}
.ws13{word-spacing:-20.020800pt;}
.ws31{word-spacing:-20.019200pt;}
.ws88{word-spacing:-20.018133pt;}
.ws5a{word-spacing:-20.017067pt;}
.ws34{word-spacing:-20.012800pt;}
.ws77{word-spacing:-20.011200pt;}
.ws2a{word-spacing:-20.008800pt;}
.wsb{word-spacing:-19.837333pt;}
.ws85{word-spacing:-19.836000pt;}
.ws2b{word-spacing:-19.833600pt;}
.ws2c{word-spacing:-19.827200pt;}
.ws63{word-spacing:-19.584000pt;}
.ws2f{word-spacing:-19.555200pt;}
.ws83{word-spacing:-19.385600pt;}
.ws1c{word-spacing:-19.384000pt;}
.ws5f{word-spacing:-19.379200pt;}
.ws74{word-spacing:-19.378133pt;}
.ws25{word-spacing:-19.370400pt;}
.ws19{word-spacing:-18.747733pt;}
.wsf{word-spacing:-18.742400pt;}
.ws7c{word-spacing:-18.105600pt;}
.ws52{word-spacing:-18.099200pt;}
.ws72{word-spacing:-17.472000pt;}
.ws61{word-spacing:-17.276800pt;}
.ws5c{word-spacing:-16.824000pt;}
.ws3d{word-spacing:-16.822400pt;}
.ws1b{word-spacing:-16.819733pt;}
.ws20{word-spacing:-16.812000pt;}
.ws62{word-spacing:-15.544000pt;}
.ws7a{word-spacing:-15.523200pt;}
.ws9{word-spacing:-15.354133pt;}
.ws23{word-spacing:-14.910400pt;}
.ws6e{word-spacing:-14.902400pt;}
.ws32{word-spacing:-14.897600pt;}
.ws18{word-spacing:-14.469333pt;}
.ws51{word-spacing:-14.264000pt;}
.ws69{word-spacing:-13.814400pt;}
.ws4d{word-spacing:-13.632000pt;}
.ws84{word-spacing:-13.630400pt;}
.ws68{word-spacing:-13.626133pt;}
.ws73{word-spacing:-12.997333pt;}
.ws35{word-spacing:-12.986400pt;}
.ws75{word-spacing:-12.982400pt;}
.ws3b{word-spacing:-12.344000pt;}
.ws82{word-spacing:-12.334667pt;}
.ws29{word-spacing:-12.162133pt;}
.ws16{word-spacing:-11.701333pt;}
.ws58{word-spacing:-11.697067pt;}
.ws66{word-spacing:-11.518400pt;}
.wsd{word-spacing:-11.065600pt;}
.ws57{word-spacing:-11.062400pt;}
.ws11{word-spacing:-10.872800pt;}
.ws6a{word-spacing:-10.401067pt;}
.ws43{word-spacing:-9.984000pt;}
.ws2d{word-spacing:-9.782400pt;}
.ws5d{word-spacing:-9.073867pt;}
.ws4b{word-spacing:-8.952000pt;}
.ws87{word-spacing:-8.514933pt;}
.ws65{word-spacing:-8.510400pt;}
.ws4c{word-spacing:-8.497600pt;}
.wsc{word-spacing:-8.313600pt;}
.ws28{word-spacing:-8.059200pt;}
.ws59{word-spacing:-7.867200pt;}
.ws14{word-spacing:-7.673600pt;}
.ws79{word-spacing:-7.401600pt;}
.ws50{word-spacing:-6.784533pt;}
.ws5b{word-spacing:-6.586933pt;}
.ws22{word-spacing:-5.937067pt;}
.ws56{word-spacing:-5.283200pt;}
.ws44{word-spacing:-4.869333pt;}
.ws80{word-spacing:-4.675733pt;}
.ws6f{word-spacing:-4.032000pt;}
.ws17{word-spacing:-4.027200pt;}
.ws46{word-spacing:-4.025067pt;}
.ws24{word-spacing:-4.017600pt;}
.ws41{word-spacing:-2.949333pt;}
.ws6b{word-spacing:-2.730667pt;}
.ws1d{word-spacing:-2.288000pt;}
.ws33{word-spacing:-2.104000pt;}
.ws64{word-spacing:-0.820800pt;}
.ws76{word-spacing:-0.819200pt;}
.ws71{word-spacing:-0.384000pt;}
.ws70{word-spacing:0.264800pt;}
.ws40{word-spacing:0.910400pt;}
.ws6d{word-spacing:1.106667pt;}
.ws42{word-spacing:1.536000pt;}
.ws12{word-spacing:1.747200pt;}
.ws27{word-spacing:2.376000pt;}
.ws1e{word-spacing:3.662933pt;}
.ws6c{word-spacing:4.296000pt;}
.ws67{word-spacing:4.932267pt;}
.ws5e{word-spacing:5.768800pt;}
.ws8{word-spacing:6.214400pt;}
.ws3f{word-spacing:6.842667pt;}
.ws55{word-spacing:7.049600pt;}
.wsa{word-spacing:8.143200pt;}
.ws7f{word-spacing:11.136000pt;}
.ws15{word-spacing:11.339200pt;}
.ws7b{word-spacing:11.344533pt;}
.ws81{word-spacing:11.792800pt;}
.ws45{word-spacing:11.968000pt;}
.ws54{word-spacing:11.976000pt;}
.ws4f{word-spacing:17.541067pt;}
.ws1a{word-spacing:20.296000pt;}
.ws53{word-spacing:20.950400pt;}
.wse{word-spacing:29.448000pt;}
.ws3e{word-spacing:32.261867pt;}
.ws4e{word-spacing:44.168000pt;}
.ws10{word-spacing:45.708800pt;}
.ws1{word-spacing:922.208800pt;}
._2{margin-left:-0.970933pt;}
._0{width:0.956800pt;}
._1{width:16.860800pt;}
._7{width:17.763200pt;}
._a{width:18.908800pt;}
._14{width:20.288000pt;}
._5{width:21.568000pt;}
._11{width:22.464000pt;}
._1a{width:24.240267pt;}
._f{width:25.667467pt;}
._18{width:26.933867pt;}
._8{width:28.800000pt;}
._d{width:30.134400pt;}
._3{width:31.744000pt;}
._17{width:33.265600pt;}
._12{width:34.362667pt;}
._19{width:35.790933pt;}
._1f{width:37.367200pt;}
._c{width:38.693600pt;}
._15{width:40.768000pt;}
._1e{width:42.137600pt;}
._4{width:43.961600pt;}
._6{width:45.256533pt;}
._e{width:48.342400pt;}
._1d{width:49.634933pt;}
._10{width:50.677333pt;}
._1c{width:54.507733pt;}
._13{width:57.514933pt;}
._9{width:66.616000pt;}
._1b{width:69.798400pt;}
._16{width:80.881067pt;}
._b{width:82.688000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y2e{bottom:90.626667pt;}
.y4f{bottom:106.466667pt;}
.y2d{bottom:109.026667pt;}
.y7c{bottom:109.508000pt;}
.y4e{bottom:124.866667pt;}
.y7b{bottom:127.908000pt;}
.y4d{bottom:143.266667pt;}
.y2c{bottom:145.988000pt;}
.y7a{bottom:146.308000pt;}
.y4c{bottom:161.666667pt;}
.y2b{bottom:164.388000pt;}
.y79{bottom:164.708000pt;}
.y2a{bottom:182.788000pt;}
.y78{bottom:183.108000pt;}
.y4b{bottom:198.788000pt;}
.y29{bottom:201.188000pt;}
.y28{bottom:219.588000pt;}
.y77{bottom:220.066667pt;}
.y4a{bottom:235.908000pt;}
.y27{bottom:237.988000pt;}
.y76{bottom:238.466667pt;}
.y26{bottom:256.388000pt;}
.y75{bottom:256.866667pt;}
.y49{bottom:272.866667pt;}
.y25{bottom:274.788000pt;}
.y74{bottom:275.266667pt;}
.y24{bottom:293.188000pt;}
.y48{bottom:309.988000pt;}
.y23{bottom:311.588000pt;}
.y73{bottom:312.388000pt;}
.y47{bottom:328.388000pt;}
.y22{bottom:329.988000pt;}
.y72{bottom:330.788000pt;}
.y46{bottom:346.788000pt;}
.y21{bottom:348.388000pt;}
.y71{bottom:349.188000pt;}
.y45{bottom:365.188000pt;}
.y20{bottom:366.788000pt;}
.y70{bottom:367.588000pt;}
.y44{bottom:383.588000pt;}
.y6f{bottom:385.988000pt;}
.y43{bottom:401.988000pt;}
.y1f{bottom:403.908000pt;}
.y42{bottom:420.388000pt;}
.y1e{bottom:422.308000pt;}
.y6e{bottom:423.108000pt;}
.y41{bottom:438.788000pt;}
.y1d{bottom:440.708000pt;}
.y6d{bottom:441.506667pt;}
.y40{bottom:457.188000pt;}
.y1c{bottom:459.108000pt;}
.y6c{bottom:459.908000pt;}
.y3f{bottom:475.588000pt;}
.y1b{bottom:477.506667pt;}
.y6b{bottom:478.308000pt;}
.y3e{bottom:493.988000pt;}
.y1a{bottom:495.908000pt;}
.y6a{bottom:496.708000pt;}
.y3d{bottom:512.388000pt;}
.y19{bottom:514.308000pt;}
.y69{bottom:515.108000pt;}
.y18{bottom:532.706667pt;}
.y68{bottom:533.506667pt;}
.y3c{bottom:549.506667pt;}
.y17{bottom:551.108000pt;}
.y67{bottom:551.908000pt;}
.y3b{bottom:567.908000pt;}
.y16{bottom:569.506667pt;}
.y66{bottom:570.308000pt;}
.y15{bottom:587.908000pt;}
.y65{bottom:588.706667pt;}
.y3a{bottom:604.866667pt;}
.y14{bottom:606.308000pt;}
.y64{bottom:607.108000pt;}
.y63{bottom:625.506667pt;}
.y39{bottom:641.988000pt;}
.y13{bottom:643.266667pt;}
.y62{bottom:643.908000pt;}
.y12{bottom:661.666667pt;}
.y61{bottom:662.308000pt;}
.y38{bottom:679.108000pt;}
.y85{bottom:680.066667pt;}
.y11{bottom:698.466667pt;}
.y60{bottom:699.266667pt;}
.y37{bottom:716.066667pt;}
.y10{bottom:716.866667pt;}
.y5f{bottom:717.666667pt;}
.yf{bottom:735.266667pt;}
.y84{bottom:735.588000pt;}
.y5e{bottom:736.066667pt;}
.y36{bottom:753.188000pt;}
.ye{bottom:753.666667pt;}
.y83{bottom:753.988000pt;}
.y5d{bottom:754.466667pt;}
.y35{bottom:771.588000pt;}
.yd{bottom:772.066667pt;}
.y5c{bottom:772.866667pt;}
.yc{bottom:790.466667pt;}
.y82{bottom:791.106667pt;}
.y5b{bottom:791.266667pt;}
.y34{bottom:808.706667pt;}
.yb{bottom:808.866667pt;}
.y81{bottom:809.506667pt;}
.y33{bottom:827.106667pt;}
.ya{bottom:827.266667pt;}
.y80{bottom:827.906667pt;}
.y5a{bottom:828.388000pt;}
.y32{bottom:845.506667pt;}
.y9{bottom:845.666667pt;}
.y7f{bottom:846.306667pt;}
.y59{bottom:846.788000pt;}
.y7e{bottom:864.706667pt;}
.y58{bottom:865.188000pt;}
.y31{bottom:882.466667pt;}
.y8{bottom:882.788000pt;}
.y57{bottom:883.588000pt;}
.y7{bottom:901.188000pt;}
.y56{bottom:901.988000pt;}
.y30{bottom:919.588000pt;}
.y7d{bottom:920.066667pt;}
.y55{bottom:920.388000pt;}
.y54{bottom:938.788000pt;}
.y2f{bottom:956.706667pt;}
.y53{bottom:957.188000pt;}
.y52{bottom:975.588000pt;}
.y6{bottom:993.666667pt;}
.y51{bottom:993.988000pt;}
.y50{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;}
.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;}
.x7{left:115.520000pt;}
.x9{left:119.200000pt;}
.xa{left:123.200000pt;}
.x2{left:142.720000pt;}
.x6{left:201.120000pt;}
.x8{left:287.520000pt;}
.x5{left:332.160000pt;}
}




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