
    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_fed4260be6053b6e76af63b4.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_81d337768c9e251969cdac5d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5c37860577b4a5906107a12c.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f65bf65dc71f78ceff709489.woff')format("woff");}.ff4{font-family:ff4;line-height:1.128418;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;}
.v1{vertical-align:23.754000px;}
.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;}
}
.ws50{word-spacing:-55.944000px;}
.ws9e{word-spacing:-38.860200px;}
.wsa{word-spacing:-38.800800px;}
.ws9c{word-spacing:-38.796300px;}
.ws33{word-spacing:-38.666400px;}
.ws7c{word-spacing:-38.661900px;}
.ws70{word-spacing:-38.661000px;}
.ws49{word-spacing:-38.660400px;}
.ws6{word-spacing:-38.657700px;}
.ws58{word-spacing:-38.649000px;}
.ws5{word-spacing:-38.647800px;}
.ws44{word-spacing:-38.647500px;}
.ws36{word-spacing:-38.642400px;}
.ws65{word-spacing:-38.639700px;}
.ws91{word-spacing:-38.638800px;}
.ws52{word-spacing:-38.634600px;}
.ws8b{word-spacing:-38.598000px;}
.ws8d{word-spacing:-38.582100px;}
.ws2c{word-spacing:-38.579400px;}
.ws39{word-spacing:-38.577600px;}
.ws18{word-spacing:-38.448600px;}
.ws6e{word-spacing:-38.447100px;}
.ws26{word-spacing:-38.439600px;}
.ws3{word-spacing:-38.374200px;}
.wsb{word-spacing:-38.367900px;}
.wsf{word-spacing:-38.166000px;}
.ws9{word-spacing:-38.163300px;}
.ws38{word-spacing:-38.162400px;}
.ws93{word-spacing:-38.160000px;}
.ws19{word-spacing:-38.147400px;}
.ws40{word-spacing:-38.142900px;}
.ws25{word-spacing:-37.948200px;}
.ws0{word-spacing:-37.944000px;}
.ws8f{word-spacing:-37.942800px;}
.ws3d{word-spacing:-37.942200px;}
.ws4{word-spacing:-37.938600px;}
.ws4c{word-spacing:-37.936800px;}
.ws1a{word-spacing:-37.935000px;}
.ws98{word-spacing:-37.932300px;}
.ws2{word-spacing:-37.931400px;}
.wsc{word-spacing:-37.930500px;}
.ws43{word-spacing:-37.929600px;}
.ws22{word-spacing:-37.918800px;}
.ws67{word-spacing:-37.918200px;}
.ws46{word-spacing:-37.715400px;}
.ws6c{word-spacing:-37.713600px;}
.ws29{word-spacing:-37.706400px;}
.ws3a{word-spacing:-37.440000px;}
.ws51{word-spacing:-37.430100px;}
.ws15{word-spacing:-37.216800px;}
.ws81{word-spacing:-37.214400px;}
.ws77{word-spacing:-37.213200px;}
.wsd{word-spacing:-37.208700px;}
.ws56{word-spacing:-37.207800px;}
.wse{word-spacing:-37.205100px;}
.ws88{word-spacing:-36.510000px;}
.ws82{word-spacing:-36.504600px;}
.ws64{word-spacing:-36.500400px;}
.ws8e{word-spacing:-36.499200px;}
.ws1b{word-spacing:-35.973000px;}
.ws87{word-spacing:-35.784000px;}
.ws9d{word-spacing:-35.780400px;}
.ws1c{word-spacing:-35.767800px;}
.ws7b{word-spacing:-35.066400px;}
.ws63{word-spacing:-35.062200px;}
.ws3f{word-spacing:-34.844400px;}
.ws3e{word-spacing:-34.763400px;}
.ws27{word-spacing:-34.554000px;}
.ws24{word-spacing:-34.551000px;}
.ws7f{word-spacing:-34.547400px;}
.ws4a{word-spacing:-34.545600px;}
.ws4b{word-spacing:-34.344600px;}
.ws8c{word-spacing:-34.342200px;}
.ws5e{word-spacing:-34.340400px;}
.ws45{word-spacing:-34.317900px;}
.ws76{word-spacing:-34.113600px;}
.ws47{word-spacing:-33.831600px;}
.ws48{word-spacing:-33.618600px;}
.ws55{word-spacing:-33.615000px;}
.ws8{word-spacing:-33.547800px;}
.ws2b{word-spacing:-33.120000px;}
.ws97{word-spacing:-32.904000px;}
.ws17{word-spacing:-32.900400px;}
.ws8a{word-spacing:-32.899200px;}
.ws37{word-spacing:-32.895000px;}
.ws2a{word-spacing:-32.390100px;}
.ws35{word-spacing:-32.389200px;}
.ws41{word-spacing:-31.959000px;}
.ws7a{word-spacing:-31.680000px;}
.ws34{word-spacing:-31.671000px;}
.ws3b{word-spacing:-31.664700px;}
.ws42{word-spacing:-31.460400px;}
.ws3c{word-spacing:-31.458600px;}
.ws69{word-spacing:-31.453200px;}
.ws1d{word-spacing:-31.448700px;}
.ws57{word-spacing:-30.217800px;}
.ws4f{word-spacing:-29.512800px;}
.ws59{word-spacing:-29.509200px;}
.ws5a{word-spacing:-29.302800px;}
.ws11{word-spacing:-29.225700px;}
.ws1f{word-spacing:-28.566000px;}
.ws23{word-spacing:-28.505700px;}
.ws10{word-spacing:-28.063800px;}
.ws53{word-spacing:-27.998400px;}
.ws62{word-spacing:-27.870000px;}
.ws83{word-spacing:-27.846000px;}
.ws6f{word-spacing:-27.144000px;}
.ws16{word-spacing:-27.133800px;}
.ws4e{word-spacing:-27.131400px;}
.ws99{word-spacing:-27.113400px;}
.ws13{word-spacing:-26.422200px;}
.ws96{word-spacing:-26.344800px;}
.ws20{word-spacing:-25.920000px;}
.ws2e{word-spacing:-25.918200px;}
.ws2d{word-spacing:-25.910700px;}
.ws5f{word-spacing:-25.704000px;}
.ws5c{word-spacing:-25.700400px;}
.ws68{word-spacing:-25.482600px;}
.ws4d{word-spacing:-25.479000px;}
.ws61{word-spacing:-25.196400px;}
.ws6d{word-spacing:-25.128000px;}
.ws85{word-spacing:-24.984000px;}
.ws80{word-spacing:-24.471900px;}
.ws89{word-spacing:-23.756400px;}
.ws74{word-spacing:-23.548200px;}
.ws60{word-spacing:-23.531400px;}
.ws66{word-spacing:-22.824000px;}
.ws75{word-spacing:-22.728600px;}
.ws2f{word-spacing:-22.320000px;}
.ws21{word-spacing:-21.162000px;}
.ws7d{word-spacing:-20.862900px;}
.ws7e{word-spacing:-20.661000px;}
.ws6a{word-spacing:-19.215000px;}
.ws54{word-spacing:-18.500400px;}
.ws7{word-spacing:-18.472500px;}
.ws86{word-spacing:-18.000000px;}
.ws32{word-spacing:-17.996400px;}
.ws6b{word-spacing:-17.780400px;}
.ws5b{word-spacing:-17.766000px;}
.ws31{word-spacing:-17.263800px;}
.ws1e{word-spacing:-17.064000px;}
.ws9b{word-spacing:-16.548900px;}
.ws95{word-spacing:-14.899200px;}
.ws78{word-spacing:-14.822400px;}
.ws12{word-spacing:-13.951800px;}
.ws94{word-spacing:-13.461300px;}
.ws5d{word-spacing:-13.385700px;}
.ws71{word-spacing:-13.173300px;}
.ws14{word-spacing:-12.962400px;}
.ws72{word-spacing:-12.960000px;}
.ws28{word-spacing:-12.236400px;}
.ws73{word-spacing:-12.216600px;}
.ws90{word-spacing:-10.806000px;}
.ws84{word-spacing:-7.684200px;}
.ws92{word-spacing:-1.224000px;}
.ws30{word-spacing:0.000000px;}
.ws79{word-spacing:0.009000px;}
.ws9a{word-spacing:13.896000px;}
.ws1{word-spacing:455.092800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._5{width:17.383200px;}
._4{width:18.775800px;}
._a{width:20.148000px;}
._d{width:21.213000px;}
._12{width:22.723800px;}
._b{width:24.129600px;}
._c{width:25.160400px;}
._e{width:26.703900px;}
._6{width:28.267200px;}
._10{width:29.335200px;}
._8{width:30.642000px;}
._11{width:32.322000px;}
._15{width:33.872400px;}
._13{width:34.936800px;}
._1{width:36.000000px;}
._14{width:39.095400px;}
._f{width:40.192800px;}
._17{width:42.153600px;}
._7{width:43.223400px;}
._9{width:44.301600px;}
._16{width:46.087200px;}
._19{width:49.438200px;}
._1a{width:56.187600px;}
._18{width:57.292800px;}
._1b{width:70.992000px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:46.800000px;}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.471500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y85{bottom:99.975000px;}
.y65{bottom:116.355000px;}
.y2a{bottom:120.496500px;}
.y64{bottom:137.055000px;}
.y29{bottom:141.196500px;}
.y84{bottom:141.736500px;}
.y63{bottom:157.755000px;}
.y28{bottom:161.896500px;}
.y83{bottom:162.436500px;}
.y62{bottom:178.455000px;}
.y82{bottom:183.136500px;}
.y61{bottom:199.155000px;}
.y27{bottom:203.475000px;}
.y60{bottom:219.855000px;}
.y26{bottom:224.175000px;}
.y81{bottom:224.896500px;}
.y80{bottom:245.596500px;}
.y5f{bottom:261.615000px;}
.y25{bottom:265.936500px;}
.y5e{bottom:282.315000px;}
.y24{bottom:286.636500px;}
.y7f{bottom:287.175000px;}
.y23{bottom:307.336500px;}
.y7e{bottom:307.875000px;}
.y5d{bottom:324.075000px;}
.y5c{bottom:344.775000px;}
.y22{bottom:349.096500px;}
.y7d{bottom:349.636500px;}
.y7c{bottom:370.336500px;}
.y5b{bottom:386.355000px;}
.y21{bottom:390.675000px;}
.y5a{bottom:407.055000px;}
.y20{bottom:411.375000px;}
.y7b{bottom:412.096500px;}
.y59{bottom:427.755000px;}
.y3d{bottom:431.536500px;}
.y1f{bottom:432.075000px;}
.y7a{bottom:432.795000px;}
.y3c{bottom:452.236500px;}
.y58{bottom:469.515000px;}
.y1e{bottom:473.836500px;}
.y79{bottom:474.375000px;}
.y50{bottom:474.736500px;}
.y57{bottom:490.215000px;}
.y3b{bottom:493.996500px;}
.y1d{bottom:494.536500px;}
.y78{bottom:495.075000px;}
.y4f{bottom:495.436500px;}
.y56{bottom:510.915000px;}
.y3a{bottom:514.695000px;}
.y1c{bottom:515.236500px;}
.y4e{bottom:516.136500px;}
.y1b{bottom:535.936500px;}
.y4d{bottom:536.836500px;}
.y55{bottom:552.675000px;}
.y39{bottom:556.275000px;}
.y1a{bottom:556.636500px;}
.y4c{bottom:557.536500px;}
.y54{bottom:573.375000px;}
.y38{bottom:576.975000px;}
.y19{bottom:577.336500px;}
.y4b{bottom:578.236500px;}
.y53{bottom:594.075000px;}
.y18{bottom:598.036500px;}
.y4a{bottom:598.936500px;}
.y37{bottom:618.736500px;}
.y49{bottom:619.636500px;}
.y77{bottom:619.996500px;}
.y52{bottom:635.655000px;}
.y17{bottom:639.795000px;}
.y48{bottom:640.336500px;}
.y76{bottom:640.695000px;}
.y36{bottom:660.496500px;}
.y47{bottom:661.036500px;}
.y51{bottom:677.415000px;}
.y35{bottom:681.195000px;}
.y16{bottom:681.375000px;}
.y46{bottom:681.736500px;}
.y75{bottom:682.275000px;}
.y34{bottom:701.896500px;}
.y15{bottom:702.075000px;}
.y45{bottom:702.436500px;}
.y74{bottom:702.975000px;}
.y14{bottom:722.775000px;}
.y44{bottom:723.136500px;}
.y73{bottom:723.675000px;}
.y13{bottom:743.475000px;}
.y89{bottom:743.836500px;}
.y12{bottom:764.175000px;}
.y43{bottom:764.895000px;}
.y72{bottom:765.436500px;}
.y11{bottom:784.875000px;}
.y42{bottom:785.596500px;}
.y10{bottom:805.575000px;}
.y33{bottom:805.936500px;}
.y41{bottom:806.295000px;}
.y71{bottom:807.195000px;}
.yf{bottom:826.275000px;}
.y32{bottom:826.636500px;}
.y40{bottom:826.996500px;}
.y70{bottom:827.895000px;}
.y3f{bottom:847.695000px;}
.y6f{bottom:848.596500px;}
.ye{bottom:868.036500px;}
.y31{bottom:868.395000px;}
.y88{bottom:868.575000px;}
.y6e{bottom:869.295000px;}
.y87{bottom:889.275000px;}
.y6d{bottom:889.995000px;}
.yd{bottom:909.795000px;}
.y30{bottom:909.975000px;}
.y6c{bottom:910.695000px;}
.yc{bottom:930.495000px;}
.y86{bottom:931.036500px;}
.y6b{bottom:931.395000px;}
.y2f{bottom:951.736500px;}
.y6a{bottom:952.095000px;}
.yb{bottom:972.075000px;}
.y2e{bottom:972.436500px;}
.y3e{bottom:993.495000px;}
.y69{bottom:993.675000px;}
.ya{bottom:1013.836500px;}
.y2d{bottom:1014.195000px;}
.y68{bottom:1014.375000px;}
.y2c{bottom:1034.895000px;}
.y67{bottom:1035.075000px;}
.y9{bottom:1055.595000px;}
.y66{bottom:1055.775000px;}
.y2b{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h4{height:20.175000px;}
.h3{height:45.095654px;}
.h2{height:48.796875px;}
.h5{height:55.471969px;}
.h6{height:56.197969px;}
.h7{height:65.707031px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.x9{left:170.820000px;}
.x7{left:182.338500px;}
.x4{left:185.400000px;}
.x3{left:465.825000px;}
.x6{left:540.360000px;}
.x5{left:598.320000px;}
.x8{left:715.680000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.114667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws50{word-spacing:-49.728000pt;}
.ws9e{word-spacing:-34.542400pt;}
.wsa{word-spacing:-34.489600pt;}
.ws9c{word-spacing:-34.485600pt;}
.ws33{word-spacing:-34.370133pt;}
.ws7c{word-spacing:-34.366133pt;}
.ws70{word-spacing:-34.365333pt;}
.ws49{word-spacing:-34.364800pt;}
.ws6{word-spacing:-34.362400pt;}
.ws58{word-spacing:-34.354667pt;}
.ws5{word-spacing:-34.353600pt;}
.ws44{word-spacing:-34.353333pt;}
.ws36{word-spacing:-34.348800pt;}
.ws65{word-spacing:-34.346400pt;}
.ws91{word-spacing:-34.345600pt;}
.ws52{word-spacing:-34.341867pt;}
.ws8b{word-spacing:-34.309333pt;}
.ws8d{word-spacing:-34.295200pt;}
.ws2c{word-spacing:-34.292800pt;}
.ws39{word-spacing:-34.291200pt;}
.ws18{word-spacing:-34.176533pt;}
.ws6e{word-spacing:-34.175200pt;}
.ws26{word-spacing:-34.168533pt;}
.ws3{word-spacing:-34.110400pt;}
.wsb{word-spacing:-34.104800pt;}
.wsf{word-spacing:-33.925333pt;}
.ws9{word-spacing:-33.922933pt;}
.ws38{word-spacing:-33.922133pt;}
.ws93{word-spacing:-33.920000pt;}
.ws19{word-spacing:-33.908800pt;}
.ws40{word-spacing:-33.904800pt;}
.ws25{word-spacing:-33.731733pt;}
.ws0{word-spacing:-33.728000pt;}
.ws8f{word-spacing:-33.726933pt;}
.ws3d{word-spacing:-33.726400pt;}
.ws4{word-spacing:-33.723200pt;}
.ws4c{word-spacing:-33.721600pt;}
.ws1a{word-spacing:-33.720000pt;}
.ws98{word-spacing:-33.717600pt;}
.ws2{word-spacing:-33.716800pt;}
.wsc{word-spacing:-33.716000pt;}
.ws43{word-spacing:-33.715200pt;}
.ws22{word-spacing:-33.705600pt;}
.ws67{word-spacing:-33.705067pt;}
.ws46{word-spacing:-33.524800pt;}
.ws6c{word-spacing:-33.523200pt;}
.ws29{word-spacing:-33.516800pt;}
.ws3a{word-spacing:-33.280000pt;}
.ws51{word-spacing:-33.271200pt;}
.ws15{word-spacing:-33.081600pt;}
.ws81{word-spacing:-33.079467pt;}
.ws77{word-spacing:-33.078400pt;}
.wsd{word-spacing:-33.074400pt;}
.ws56{word-spacing:-33.073600pt;}
.wse{word-spacing:-33.071200pt;}
.ws88{word-spacing:-32.453333pt;}
.ws82{word-spacing:-32.448533pt;}
.ws64{word-spacing:-32.444800pt;}
.ws8e{word-spacing:-32.443733pt;}
.ws1b{word-spacing:-31.976000pt;}
.ws87{word-spacing:-31.808000pt;}
.ws9d{word-spacing:-31.804800pt;}
.ws1c{word-spacing:-31.793600pt;}
.ws7b{word-spacing:-31.170133pt;}
.ws63{word-spacing:-31.166400pt;}
.ws3f{word-spacing:-30.972800pt;}
.ws3e{word-spacing:-30.900800pt;}
.ws27{word-spacing:-30.714667pt;}
.ws24{word-spacing:-30.712000pt;}
.ws7f{word-spacing:-30.708800pt;}
.ws4a{word-spacing:-30.707200pt;}
.ws4b{word-spacing:-30.528533pt;}
.ws8c{word-spacing:-30.526400pt;}
.ws5e{word-spacing:-30.524800pt;}
.ws45{word-spacing:-30.504800pt;}
.ws76{word-spacing:-30.323200pt;}
.ws47{word-spacing:-30.072533pt;}
.ws48{word-spacing:-29.883200pt;}
.ws55{word-spacing:-29.880000pt;}
.ws8{word-spacing:-29.820267pt;}
.ws2b{word-spacing:-29.440000pt;}
.ws97{word-spacing:-29.248000pt;}
.ws17{word-spacing:-29.244800pt;}
.ws8a{word-spacing:-29.243733pt;}
.ws37{word-spacing:-29.240000pt;}
.ws2a{word-spacing:-28.791200pt;}
.ws35{word-spacing:-28.790400pt;}
.ws41{word-spacing:-28.408000pt;}
.ws7a{word-spacing:-28.160000pt;}
.ws34{word-spacing:-28.152000pt;}
.ws3b{word-spacing:-28.146400pt;}
.ws42{word-spacing:-27.964800pt;}
.ws3c{word-spacing:-27.963200pt;}
.ws69{word-spacing:-27.958400pt;}
.ws1d{word-spacing:-27.954400pt;}
.ws57{word-spacing:-26.860267pt;}
.ws4f{word-spacing:-26.233600pt;}
.ws59{word-spacing:-26.230400pt;}
.ws5a{word-spacing:-26.046933pt;}
.ws11{word-spacing:-25.978400pt;}
.ws1f{word-spacing:-25.392000pt;}
.ws23{word-spacing:-25.338400pt;}
.ws10{word-spacing:-24.945600pt;}
.ws53{word-spacing:-24.887467pt;}
.ws62{word-spacing:-24.773333pt;}
.ws83{word-spacing:-24.752000pt;}
.ws6f{word-spacing:-24.128000pt;}
.ws16{word-spacing:-24.118933pt;}
.ws4e{word-spacing:-24.116800pt;}
.ws99{word-spacing:-24.100800pt;}
.ws13{word-spacing:-23.486400pt;}
.ws96{word-spacing:-23.417600pt;}
.ws20{word-spacing:-23.040000pt;}
.ws2e{word-spacing:-23.038400pt;}
.ws2d{word-spacing:-23.031733pt;}
.ws5f{word-spacing:-22.848000pt;}
.ws5c{word-spacing:-22.844800pt;}
.ws68{word-spacing:-22.651200pt;}
.ws4d{word-spacing:-22.648000pt;}
.ws61{word-spacing:-22.396800pt;}
.ws6d{word-spacing:-22.336000pt;}
.ws85{word-spacing:-22.208000pt;}
.ws80{word-spacing:-21.752800pt;}
.ws89{word-spacing:-21.116800pt;}
.ws74{word-spacing:-20.931733pt;}
.ws60{word-spacing:-20.916800pt;}
.ws66{word-spacing:-20.288000pt;}
.ws75{word-spacing:-20.203200pt;}
.ws2f{word-spacing:-19.840000pt;}
.ws21{word-spacing:-18.810667pt;}
.ws7d{word-spacing:-18.544800pt;}
.ws7e{word-spacing:-18.365333pt;}
.ws6a{word-spacing:-17.080000pt;}
.ws54{word-spacing:-16.444800pt;}
.ws7{word-spacing:-16.420000pt;}
.ws86{word-spacing:-16.000000pt;}
.ws32{word-spacing:-15.996800pt;}
.ws6b{word-spacing:-15.804800pt;}
.ws5b{word-spacing:-15.792000pt;}
.ws31{word-spacing:-15.345600pt;}
.ws1e{word-spacing:-15.168000pt;}
.ws9b{word-spacing:-14.710133pt;}
.ws95{word-spacing:-13.243733pt;}
.ws78{word-spacing:-13.175467pt;}
.ws12{word-spacing:-12.401600pt;}
.ws94{word-spacing:-11.965600pt;}
.ws5d{word-spacing:-11.898400pt;}
.ws71{word-spacing:-11.709600pt;}
.ws14{word-spacing:-11.522133pt;}
.ws72{word-spacing:-11.520000pt;}
.ws28{word-spacing:-10.876800pt;}
.ws73{word-spacing:-10.859200pt;}
.ws90{word-spacing:-9.605333pt;}
.ws84{word-spacing:-6.830400pt;}
.ws92{word-spacing:-1.088000pt;}
.ws30{word-spacing:0.000000pt;}
.ws79{word-spacing:0.008000pt;}
.ws9a{word-spacing:12.352000pt;}
.ws1{word-spacing:404.526933pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._5{width:15.451733pt;}
._4{width:16.689600pt;}
._a{width:17.909333pt;}
._d{width:18.856000pt;}
._12{width:20.198933pt;}
._b{width:21.448533pt;}
._c{width:22.364800pt;}
._e{width:23.736800pt;}
._6{width:25.126400pt;}
._10{width:26.075733pt;}
._8{width:27.237333pt;}
._11{width:28.730667pt;}
._15{width:30.108800pt;}
._13{width:31.054933pt;}
._1{width:32.000000pt;}
._14{width:34.751467pt;}
._f{width:35.726933pt;}
._17{width:37.469867pt;}
._7{width:38.420800pt;}
._9{width:39.379200pt;}
._16{width:40.966400pt;}
._19{width:43.945067pt;}
._1a{width:49.944533pt;}
._18{width:50.926933pt;}
._1b{width:63.104000pt;}
._0{width:544.128000pt;}
.fs2{font-size:41.600000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.974667pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y85{bottom:88.866667pt;}
.y65{bottom:103.426667pt;}
.y2a{bottom:107.108000pt;}
.y64{bottom:121.826667pt;}
.y29{bottom:125.508000pt;}
.y84{bottom:125.988000pt;}
.y63{bottom:140.226667pt;}
.y28{bottom:143.908000pt;}
.y83{bottom:144.388000pt;}
.y62{bottom:158.626667pt;}
.y82{bottom:162.788000pt;}
.y61{bottom:177.026667pt;}
.y27{bottom:180.866667pt;}
.y60{bottom:195.426667pt;}
.y26{bottom:199.266667pt;}
.y81{bottom:199.908000pt;}
.y80{bottom:218.308000pt;}
.y5f{bottom:232.546667pt;}
.y25{bottom:236.388000pt;}
.y5e{bottom:250.946667pt;}
.y24{bottom:254.788000pt;}
.y7f{bottom:255.266667pt;}
.y23{bottom:273.188000pt;}
.y7e{bottom:273.666667pt;}
.y5d{bottom:288.066667pt;}
.y5c{bottom:306.466667pt;}
.y22{bottom:310.308000pt;}
.y7d{bottom:310.788000pt;}
.y7c{bottom:329.188000pt;}
.y5b{bottom:343.426667pt;}
.y21{bottom:347.266667pt;}
.y5a{bottom:361.826667pt;}
.y20{bottom:365.666667pt;}
.y7b{bottom:366.308000pt;}
.y59{bottom:380.226667pt;}
.y3d{bottom:383.588000pt;}
.y1f{bottom:384.066667pt;}
.y7a{bottom:384.706667pt;}
.y3c{bottom:401.988000pt;}
.y58{bottom:417.346667pt;}
.y1e{bottom:421.188000pt;}
.y79{bottom:421.666667pt;}
.y50{bottom:421.988000pt;}
.y57{bottom:435.746667pt;}
.y3b{bottom:439.108000pt;}
.y1d{bottom:439.588000pt;}
.y78{bottom:440.066667pt;}
.y4f{bottom:440.388000pt;}
.y56{bottom:454.146667pt;}
.y3a{bottom:457.506667pt;}
.y1c{bottom:457.988000pt;}
.y4e{bottom:458.788000pt;}
.y1b{bottom:476.388000pt;}
.y4d{bottom:477.188000pt;}
.y55{bottom:491.266667pt;}
.y39{bottom:494.466667pt;}
.y1a{bottom:494.788000pt;}
.y4c{bottom:495.588000pt;}
.y54{bottom:509.666667pt;}
.y38{bottom:512.866667pt;}
.y19{bottom:513.188000pt;}
.y4b{bottom:513.988000pt;}
.y53{bottom:528.066667pt;}
.y18{bottom:531.588000pt;}
.y4a{bottom:532.388000pt;}
.y37{bottom:549.988000pt;}
.y49{bottom:550.788000pt;}
.y77{bottom:551.108000pt;}
.y52{bottom:565.026667pt;}
.y17{bottom:568.706667pt;}
.y48{bottom:569.188000pt;}
.y76{bottom:569.506667pt;}
.y36{bottom:587.108000pt;}
.y47{bottom:587.588000pt;}
.y51{bottom:602.146667pt;}
.y35{bottom:605.506667pt;}
.y16{bottom:605.666667pt;}
.y46{bottom:605.988000pt;}
.y75{bottom:606.466667pt;}
.y34{bottom:623.908000pt;}
.y15{bottom:624.066667pt;}
.y45{bottom:624.388000pt;}
.y74{bottom:624.866667pt;}
.y14{bottom:642.466667pt;}
.y44{bottom:642.788000pt;}
.y73{bottom:643.266667pt;}
.y13{bottom:660.866667pt;}
.y89{bottom:661.188000pt;}
.y12{bottom:679.266667pt;}
.y43{bottom:679.906667pt;}
.y72{bottom:680.388000pt;}
.y11{bottom:697.666667pt;}
.y42{bottom:698.308000pt;}
.y10{bottom:716.066667pt;}
.y33{bottom:716.388000pt;}
.y41{bottom:716.706667pt;}
.y71{bottom:717.506667pt;}
.yf{bottom:734.466667pt;}
.y32{bottom:734.788000pt;}
.y40{bottom:735.108000pt;}
.y70{bottom:735.906667pt;}
.y3f{bottom:753.506667pt;}
.y6f{bottom:754.308000pt;}
.ye{bottom:771.588000pt;}
.y31{bottom:771.906667pt;}
.y88{bottom:772.066667pt;}
.y6e{bottom:772.706667pt;}
.y87{bottom:790.466667pt;}
.y6d{bottom:791.106667pt;}
.yd{bottom:808.706667pt;}
.y30{bottom:808.866667pt;}
.y6c{bottom:809.506667pt;}
.yc{bottom:827.106667pt;}
.y86{bottom:827.588000pt;}
.y6b{bottom:827.906667pt;}
.y2f{bottom:845.988000pt;}
.y6a{bottom:846.306667pt;}
.yb{bottom:864.066667pt;}
.y2e{bottom:864.388000pt;}
.y3e{bottom:883.106667pt;}
.y69{bottom:883.266667pt;}
.ya{bottom:901.188000pt;}
.y2d{bottom:901.506667pt;}
.y68{bottom:901.666667pt;}
.y2c{bottom:919.906667pt;}
.y67{bottom:920.066667pt;}
.y9{bottom:938.306667pt;}
.y66{bottom:938.466667pt;}
.y2b{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h4{height:17.933333pt;}
.h3{height:40.085026pt;}
.h2{height:43.375000pt;}
.h5{height:49.308417pt;}
.h6{height:49.953750pt;}
.h7{height:58.406250pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.x9{left:151.840000pt;}
.x7{left:162.078667pt;}
.x4{left:164.800000pt;}
.x3{left:414.066667pt;}
.x6{left:480.320000pt;}
.x5{left:531.840000pt;}
.x8{left:636.160000pt;}
.x2{left:649.920000pt;}
}




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