
    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_4e7b5ac51824de59670610d2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.080566;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_72b24456e38a22af29791a14.woff2')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_03af8347598109fba28729e6.woff2')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_b584a73b0c1958a5f87ea8f1.woff2')format("woff");}.ff4{font-family:ff4;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;}
}
.ws21{word-spacing:-55.944000px;}
.ws19{word-spacing:-38.801700px;}
.ws72{word-spacing:-38.662200px;}
.ws6{word-spacing:-38.657700px;}
.ws82{word-spacing:-38.656500px;}
.ws42{word-spacing:-38.656200px;}
.wsb{word-spacing:-38.651400px;}
.ws5{word-spacing:-38.647800px;}
.wsa0{word-spacing:-38.633400px;}
.ws1a{word-spacing:-38.582700px;}
.ws62{word-spacing:-38.578200px;}
.ws6e{word-spacing:-38.443500px;}
.ws8b{word-spacing:-38.441700px;}
.ws9{word-spacing:-38.425800px;}
.ws3{word-spacing:-38.374200px;}
.wsa{word-spacing:-38.360700px;}
.ws16{word-spacing:-38.306400px;}
.ws59{word-spacing:-38.304000px;}
.wsa1{word-spacing:-38.291400px;}
.wsc{word-spacing:-38.286000px;}
.ws93{word-spacing:-38.158200px;}
.ws5c{word-spacing:-38.153400px;}
.ws2f{word-spacing:-38.147400px;}
.ws4e{word-spacing:-38.079600px;}
.ws26{word-spacing:-38.078100px;}
.ws0{word-spacing:-37.944000px;}
.ws24{word-spacing:-37.939200px;}
.ws4{word-spacing:-37.938600px;}
.ws2{word-spacing:-37.931400px;}
.wsd{word-spacing:-37.734000px;}
.ws2e{word-spacing:-37.715400px;}
.ws30{word-spacing:-37.713600px;}
.ws66{word-spacing:-37.650600px;}
.ws25{word-spacing:-37.642500px;}
.ws38{word-spacing:-37.580400px;}
.ws6a{word-spacing:-37.368000px;}
.ws4c{word-spacing:-37.207800px;}
.ws6d{word-spacing:-36.999000px;}
.ws3a{word-spacing:-36.639900px;}
.ws3f{word-spacing:-36.504000px;}
.ws5f{word-spacing:-35.784000px;}
.ws11{word-spacing:-35.402100px;}
.ws39{word-spacing:-35.278200px;}
.ws96{word-spacing:-35.064000px;}
.ws1b{word-spacing:-35.045100px;}
.ws1c{word-spacing:-35.037000px;}
.ws94{word-spacing:-34.971600px;}
.ws8c{word-spacing:-34.488000px;}
.ws9d{word-spacing:-34.465800px;}
.ws7d{word-spacing:-34.344000px;}
.ws98{word-spacing:-34.264500px;}
.ws67{word-spacing:-34.056000px;}
.ws8f{word-spacing:-33.972300px;}
.ws4f{word-spacing:-33.971100px;}
.ws50{word-spacing:-33.966900px;}
.ws5b{word-spacing:-33.822000px;}
.ws3e{word-spacing:-33.758100px;}
.ws8{word-spacing:-33.547800px;}
.ws2a{word-spacing:-32.904600px;}
.ws4b{word-spacing:-32.900100px;}
.ws64{word-spacing:-32.898000px;}
.wsa3{word-spacing:-32.688000px;}
.wse{word-spacing:-32.400000px;}
.wsf{word-spacing:-32.390100px;}
.ws8d{word-spacing:-32.184000px;}
.ws40{word-spacing:-32.182200px;}
.ws3b{word-spacing:-31.383000px;}
.ws58{word-spacing:-31.380300px;}
.wsa7{word-spacing:-31.092300px;}
.ws36{word-spacing:-30.952500px;}
.ws6b{word-spacing:-30.744000px;}
.ws54{word-spacing:-30.736800px;}
.ws2c{word-spacing:-30.726000px;}
.ws48{word-spacing:-30.390000px;}
.ws88{word-spacing:-30.380400px;}
.ws65{word-spacing:-30.018000px;}
.ws89{word-spacing:-29.664000px;}
.ws71{word-spacing:-29.514600px;}
.ws1e{word-spacing:-29.295600px;}
.ws4d{word-spacing:-28.917000px;}
.ws4a{word-spacing:-28.582200px;}
.ws20{word-spacing:-28.573200px;}
.ws83{word-spacing:-28.572300px;}
.ws53{word-spacing:-28.553400px;}
.wsa2{word-spacing:-28.497600px;}
.ws60{word-spacing:-28.224000px;}
.ws81{word-spacing:-27.637200px;}
.ws7e{word-spacing:-27.144000px;}
.ws32{word-spacing:-27.125100px;}
.ws1d{word-spacing:-26.430000px;}
.ws69{word-spacing:-26.424000px;}
.ws31{word-spacing:-26.418000px;}
.ws2b{word-spacing:-25.917300px;}
.ws68{word-spacing:-25.905600px;}
.ws80{word-spacing:-25.698000px;}
.ws5a{word-spacing:-25.342200px;}
.ws70{word-spacing:-24.984000px;}
.ws86{word-spacing:-23.544000px;}
.ws7b{word-spacing:-23.473500px;}
.ws47{word-spacing:-23.317200px;}
.ws8a{word-spacing:-23.241600px;}
.ws6c{word-spacing:-23.181000px;}
.ws13{word-spacing:-22.830000px;}
.ws79{word-spacing:-22.822200px;}
.ws35{word-spacing:-22.308300px;}
.ws49{word-spacing:-22.102200px;}
.ws29{word-spacing:-22.096800px;}
.ws33{word-spacing:-21.528000px;}
.ws95{word-spacing:-21.390000px;}
.ws97{word-spacing:-20.664000px;}
.ws5e{word-spacing:-20.298000px;}
.ws5d{word-spacing:-19.944000px;}
.ws84{word-spacing:-19.873500px;}
.ws45{word-spacing:-18.860100px;}
.ws85{word-spacing:-18.718200px;}
.ws7{word-spacing:-18.472500px;}
.ws87{word-spacing:-18.271800px;}
.ws74{word-spacing:-17.064000px;}
.ws7f{word-spacing:-16.695900px;}
.ws7a{word-spacing:-16.695000px;}
.ws23{word-spacing:-16.327200px;}
.ws2d{word-spacing:-15.840000px;}
.ws22{word-spacing:-15.831900px;}
.ws3c{word-spacing:-15.333000px;}
.ws9c{word-spacing:-15.115500px;}
.ws91{word-spacing:-14.910000px;}
.ws76{word-spacing:-14.904000px;}
.ws78{word-spacing:-14.537700px;}
.ws28{word-spacing:-14.396400px;}
.ws77{word-spacing:-14.178000px;}
.ws27{word-spacing:-14.173800px;}
.wsa4{word-spacing:-13.096800px;}
.ws92{word-spacing:-12.951000px;}
.ws57{word-spacing:-12.655800px;}
.ws51{word-spacing:-12.022200px;}
.ws41{word-spacing:-11.438100px;}
.ws63{word-spacing:-11.304000px;}
.ws6f{word-spacing:-11.226300px;}
.ws18{word-spacing:-11.078100px;}
.ws10{word-spacing:-10.938600px;}
.ws17{word-spacing:-10.794000px;}
.ws73{word-spacing:-8.632800px;}
.ws44{word-spacing:-8.625600px;}
.wsa8{word-spacing:-8.623800px;}
.ws43{word-spacing:-8.417700px;}
.wsa5{word-spacing:-7.841700px;}
.ws9a{word-spacing:-7.332300px;}
.ws37{word-spacing:-6.606000px;}
.ws55{word-spacing:-6.467400px;}
.ws8e{word-spacing:-5.544000px;}
.ws14{word-spacing:-5.532300px;}
.ws1f{word-spacing:-5.527800px;}
.wsa6{word-spacing:-4.814100px;}
.ws34{word-spacing:-2.148300px;}
.ws12{word-spacing:-1.575900px;}
.ws3d{word-spacing:-0.924300px;}
.ws46{word-spacing:2.023200px;}
.ws56{word-spacing:2.390400px;}
.ws52{word-spacing:3.478200px;}
.ws75{word-spacing:6.696000px;}
.ws61{word-spacing:7.059600px;}
.ws9b{word-spacing:9.798300px;}
.ws7c{word-spacing:10.081800px;}
.ws90{word-spacing:10.656000px;}
.ws9e{word-spacing:13.689900px;}
.ws15{word-spacing:22.896300px;}
.ws99{word-spacing:31.902000px;}
.ws9f{word-spacing:39.450000px;}
.ws1{word-spacing:455.092800px;}
._2b{margin-left:-2.290800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._4{width:18.775800px;}
._13{width:20.013600px;}
._7{width:21.788100px;}
._c{width:22.862400px;}
._5{width:24.837000px;}
._12{width:26.056500px;}
._e{width:27.927600px;}
._f{width:28.933200px;}
._d{width:30.756000px;}
._1f{width:32.324400px;}
._9{width:34.294800px;}
._1{width:36.000000px;}
._23{width:37.339500px;}
._18{width:38.368200px;}
._24{width:39.624300px;}
._10{width:40.663800px;}
._14{width:41.689800px;}
._11{width:42.880200px;}
._1e{width:44.508000px;}
._1b{width:45.526200px;}
._6{width:46.651200px;}
._17{width:48.666600px;}
._1d{width:50.534400px;}
._a{width:51.754800px;}
._2a{width:52.813200px;}
._8{width:55.497900px;}
._15{width:57.444300px;}
._19{width:59.474400px;}
._1c{width:60.795600px;}
._20{width:64.004400px;}
._22{width:67.628400px;}
._25{width:71.352000px;}
._b{width:79.969200px;}
._27{width:96.558000px;}
._26{width:98.067000px;}
._29{width:122.400000px;}
._28{width:158.400000px;}
._16{width:569.160000px;}
._0{width:612.144000px;}
._21{width:716.472000px;}
._1a{width:985.107000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.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;}
.y2c{bottom:99.975000px;}
.y7e{bottom:101.775000px;}
.y56{bottom:102.315000px;}
.y2b{bottom:120.675000px;}
.y7d{bottom:122.475000px;}
.y55{bottom:122.836500px;}
.y7c{bottom:143.175000px;}
.y8a{bottom:143.536500px;}
.y2a{bottom:162.436500px;}
.y7b{bottom:163.875000px;}
.y89{bottom:164.236500px;}
.y54{bottom:164.596500px;}
.y7a{bottom:184.575000px;}
.y88{bottom:184.936500px;}
.y53{bottom:185.296500px;}
.y29{bottom:204.196500px;}
.y79{bottom:205.275000px;}
.y87{bottom:205.636500px;}
.y52{bottom:205.996500px;}
.y28{bottom:224.896500px;}
.y78{bottom:225.975000px;}
.y86{bottom:226.336500px;}
.y27{bottom:245.596500px;}
.y77{bottom:246.675000px;}
.y85{bottom:247.036500px;}
.y51{bottom:247.575000px;}
.y26{bottom:266.295000px;}
.y76{bottom:267.375000px;}
.y50{bottom:268.275000px;}
.y25{bottom:286.996500px;}
.y75{bottom:288.075000px;}
.y84{bottom:288.795000px;}
.y4f{bottom:288.975000px;}
.y24{bottom:307.696500px;}
.y74{bottom:308.775000px;}
.y4e{bottom:309.675000px;}
.y23{bottom:328.396500px;}
.y73{bottom:329.475000px;}
.y4d{bottom:330.375000px;}
.y4c{bottom:351.075000px;}
.y22{bottom:369.975000px;}
.y72{bottom:371.236500px;}
.y4b{bottom:371.775000px;}
.y21{bottom:390.675000px;}
.y71{bottom:391.936500px;}
.y4a{bottom:392.475000px;}
.y70{bottom:412.636500px;}
.y49{bottom:413.175000px;}
.y83{bottom:413.536500px;}
.y20{bottom:432.436500px;}
.y6f{bottom:433.336500px;}
.y48{bottom:433.875000px;}
.y82{bottom:434.236500px;}
.y1f{bottom:453.136500px;}
.y6e{bottom:454.036500px;}
.y47{bottom:454.575000px;}
.y81{bottom:454.936500px;}
.y6d{bottom:474.736500px;}
.y80{bottom:475.636500px;}
.y1e{bottom:494.896500px;}
.y46{bottom:496.336500px;}
.y1d{bottom:515.596500px;}
.y6c{bottom:516.496500px;}
.y45{bottom:517.036500px;}
.y1c{bottom:536.296500px;}
.y6b{bottom:537.195000px;}
.y44{bottom:537.736500px;}
.y1b{bottom:556.996500px;}
.y6a{bottom:557.896500px;}
.y43{bottom:558.436500px;}
.y1a{bottom:577.695000px;}
.y69{bottom:578.596500px;}
.y42{bottom:579.136500px;}
.y19{bottom:598.396500px;}
.y68{bottom:599.295000px;}
.y41{bottom:599.836500px;}
.y40{bottom:620.536500px;}
.y18{bottom:639.975000px;}
.y67{bottom:640.875000px;}
.y3f{bottom:641.236500px;}
.y17{bottom:660.675000px;}
.y66{bottom:661.575000px;}
.y3e{bottom:661.936500px;}
.y65{bottom:682.275000px;}
.y3d{bottom:682.636500px;}
.y16{bottom:702.436500px;}
.y64{bottom:702.975000px;}
.y3c{bottom:703.336500px;}
.y15{bottom:723.136500px;}
.y63{bottom:723.675000px;}
.y7f{bottom:724.396500px;}
.y62{bottom:744.375000px;}
.y3b{bottom:745.096500px;}
.y14{bottom:764.895000px;}
.y61{bottom:765.075000px;}
.y3a{bottom:765.795000px;}
.y13{bottom:785.596500px;}
.y60{bottom:785.775000px;}
.y39{bottom:786.496500px;}
.y12{bottom:806.295000px;}
.y5f{bottom:806.475000px;}
.y38{bottom:807.195000px;}
.y11{bottom:826.996500px;}
.y5e{bottom:827.175000px;}
.y37{bottom:827.895000px;}
.y10{bottom:847.695000px;}
.y5d{bottom:847.875000px;}
.y36{bottom:848.596500px;}
.yf{bottom:868.395000px;}
.y5c{bottom:868.575000px;}
.y35{bottom:869.295000px;}
.y8d{bottom:869.475000px;}
.ye{bottom:889.095000px;}
.y5b{bottom:889.275000px;}
.y34{bottom:889.995000px;}
.y8c{bottom:890.175000px;}
.yd{bottom:909.795000px;}
.y8b{bottom:910.875000px;}
.y5a{bottom:931.036500px;}
.y33{bottom:931.575000px;}
.yc{bottom:951.375000px;}
.y59{bottom:951.736500px;}
.y32{bottom:952.275000px;}
.y31{bottom:972.975000px;}
.yb{bottom:993.136500px;}
.y58{bottom:993.495000px;}
.y30{bottom:993.675000px;}
.y57{bottom:1014.195000px;}
.y2f{bottom:1014.375000px;}
.ya{bottom:1034.895000px;}
.y2e{bottom:1035.075000px;}
.y2d{bottom:1055.775000px;}
.y9{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h5{height:20.175000px;}
.h4{height:45.095654px;}
.h3{height:48.796875px;}
.h6{height:50.027344px;}
.h2{height:62.261719px;}
.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;}
.xd{left:132.120000px;}
.xb{left:136.080000px;}
.x4{left:140.400000px;}
.x9{left:154.800000px;}
.x5{left:239.938500px;}
.xc{left:303.660000px;}
.xa{left:334.080000px;}
.x7{left:384.660000px;}
.x3{left:465.825000px;}
.x8{left:626.760000px;}
.x6{left:708.120000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws21{word-spacing:-49.728000pt;}
.ws19{word-spacing:-34.490400pt;}
.ws72{word-spacing:-34.366400pt;}
.ws6{word-spacing:-34.362400pt;}
.ws82{word-spacing:-34.361333pt;}
.ws42{word-spacing:-34.361067pt;}
.wsb{word-spacing:-34.356800pt;}
.ws5{word-spacing:-34.353600pt;}
.wsa0{word-spacing:-34.340800pt;}
.ws1a{word-spacing:-34.295733pt;}
.ws62{word-spacing:-34.291733pt;}
.ws6e{word-spacing:-34.172000pt;}
.ws8b{word-spacing:-34.170400pt;}
.ws9{word-spacing:-34.156267pt;}
.ws3{word-spacing:-34.110400pt;}
.wsa{word-spacing:-34.098400pt;}
.ws16{word-spacing:-34.050133pt;}
.ws59{word-spacing:-34.048000pt;}
.wsa1{word-spacing:-34.036800pt;}
.wsc{word-spacing:-34.032000pt;}
.ws93{word-spacing:-33.918400pt;}
.ws5c{word-spacing:-33.914133pt;}
.ws2f{word-spacing:-33.908800pt;}
.ws4e{word-spacing:-33.848533pt;}
.ws26{word-spacing:-33.847200pt;}
.ws0{word-spacing:-33.728000pt;}
.ws24{word-spacing:-33.723733pt;}
.ws4{word-spacing:-33.723200pt;}
.ws2{word-spacing:-33.716800pt;}
.wsd{word-spacing:-33.541333pt;}
.ws2e{word-spacing:-33.524800pt;}
.ws30{word-spacing:-33.523200pt;}
.ws66{word-spacing:-33.467200pt;}
.ws25{word-spacing:-33.460000pt;}
.ws38{word-spacing:-33.404800pt;}
.ws6a{word-spacing:-33.216000pt;}
.ws4c{word-spacing:-33.073600pt;}
.ws6d{word-spacing:-32.888000pt;}
.ws3a{word-spacing:-32.568800pt;}
.ws3f{word-spacing:-32.448000pt;}
.ws5f{word-spacing:-31.808000pt;}
.ws11{word-spacing:-31.468533pt;}
.ws39{word-spacing:-31.358400pt;}
.ws96{word-spacing:-31.168000pt;}
.ws1b{word-spacing:-31.151200pt;}
.ws1c{word-spacing:-31.144000pt;}
.ws94{word-spacing:-31.085867pt;}
.ws8c{word-spacing:-30.656000pt;}
.ws9d{word-spacing:-30.636267pt;}
.ws7d{word-spacing:-30.528000pt;}
.ws98{word-spacing:-30.457333pt;}
.ws67{word-spacing:-30.272000pt;}
.ws8f{word-spacing:-30.197600pt;}
.ws4f{word-spacing:-30.196533pt;}
.ws50{word-spacing:-30.192800pt;}
.ws5b{word-spacing:-30.064000pt;}
.ws3e{word-spacing:-30.007200pt;}
.ws8{word-spacing:-29.820267pt;}
.ws2a{word-spacing:-29.248533pt;}
.ws4b{word-spacing:-29.244533pt;}
.ws64{word-spacing:-29.242667pt;}
.wsa3{word-spacing:-29.056000pt;}
.wse{word-spacing:-28.800000pt;}
.wsf{word-spacing:-28.791200pt;}
.ws8d{word-spacing:-28.608000pt;}
.ws40{word-spacing:-28.606400pt;}
.ws3b{word-spacing:-27.896000pt;}
.ws58{word-spacing:-27.893600pt;}
.wsa7{word-spacing:-27.637600pt;}
.ws36{word-spacing:-27.513333pt;}
.ws6b{word-spacing:-27.328000pt;}
.ws54{word-spacing:-27.321600pt;}
.ws2c{word-spacing:-27.312000pt;}
.ws48{word-spacing:-27.013333pt;}
.ws88{word-spacing:-27.004800pt;}
.ws65{word-spacing:-26.682667pt;}
.ws89{word-spacing:-26.368000pt;}
.ws71{word-spacing:-26.235200pt;}
.ws1e{word-spacing:-26.040533pt;}
.ws4d{word-spacing:-25.704000pt;}
.ws4a{word-spacing:-25.406400pt;}
.ws20{word-spacing:-25.398400pt;}
.ws83{word-spacing:-25.397600pt;}
.ws53{word-spacing:-25.380800pt;}
.wsa2{word-spacing:-25.331200pt;}
.ws60{word-spacing:-25.088000pt;}
.ws81{word-spacing:-24.566400pt;}
.ws7e{word-spacing:-24.128000pt;}
.ws32{word-spacing:-24.111200pt;}
.ws1d{word-spacing:-23.493333pt;}
.ws69{word-spacing:-23.488000pt;}
.ws31{word-spacing:-23.482667pt;}
.ws2b{word-spacing:-23.037600pt;}
.ws68{word-spacing:-23.027200pt;}
.ws80{word-spacing:-22.842667pt;}
.ws5a{word-spacing:-22.526400pt;}
.ws70{word-spacing:-22.208000pt;}
.ws86{word-spacing:-20.928000pt;}
.ws7b{word-spacing:-20.865333pt;}
.ws47{word-spacing:-20.726400pt;}
.ws8a{word-spacing:-20.659200pt;}
.ws6c{word-spacing:-20.605333pt;}
.ws13{word-spacing:-20.293333pt;}
.ws79{word-spacing:-20.286400pt;}
.ws35{word-spacing:-19.829600pt;}
.ws49{word-spacing:-19.646400pt;}
.ws29{word-spacing:-19.641600pt;}
.ws33{word-spacing:-19.136000pt;}
.ws95{word-spacing:-19.013333pt;}
.ws97{word-spacing:-18.368000pt;}
.ws5e{word-spacing:-18.042667pt;}
.ws5d{word-spacing:-17.728000pt;}
.ws84{word-spacing:-17.665333pt;}
.ws45{word-spacing:-16.764533pt;}
.ws85{word-spacing:-16.638400pt;}
.ws7{word-spacing:-16.420000pt;}
.ws87{word-spacing:-16.241600pt;}
.ws74{word-spacing:-15.168000pt;}
.ws7f{word-spacing:-14.840800pt;}
.ws7a{word-spacing:-14.840000pt;}
.ws23{word-spacing:-14.513067pt;}
.ws2d{word-spacing:-14.080000pt;}
.ws22{word-spacing:-14.072800pt;}
.ws3c{word-spacing:-13.629333pt;}
.ws9c{word-spacing:-13.436000pt;}
.ws91{word-spacing:-13.253333pt;}
.ws76{word-spacing:-13.248000pt;}
.ws78{word-spacing:-12.922400pt;}
.ws28{word-spacing:-12.796800pt;}
.ws77{word-spacing:-12.602667pt;}
.ws27{word-spacing:-12.598933pt;}
.wsa4{word-spacing:-11.641600pt;}
.ws92{word-spacing:-11.512000pt;}
.ws57{word-spacing:-11.249600pt;}
.ws51{word-spacing:-10.686400pt;}
.ws41{word-spacing:-10.167200pt;}
.ws63{word-spacing:-10.048000pt;}
.ws6f{word-spacing:-9.978933pt;}
.ws18{word-spacing:-9.847200pt;}
.ws10{word-spacing:-9.723200pt;}
.ws17{word-spacing:-9.594667pt;}
.ws73{word-spacing:-7.673600pt;}
.ws44{word-spacing:-7.667200pt;}
.wsa8{word-spacing:-7.665600pt;}
.ws43{word-spacing:-7.482400pt;}
.wsa5{word-spacing:-6.970400pt;}
.ws9a{word-spacing:-6.517600pt;}
.ws37{word-spacing:-5.872000pt;}
.ws55{word-spacing:-5.748800pt;}
.ws8e{word-spacing:-4.928000pt;}
.ws14{word-spacing:-4.917600pt;}
.ws1f{word-spacing:-4.913600pt;}
.wsa6{word-spacing:-4.279200pt;}
.ws34{word-spacing:-1.909600pt;}
.ws12{word-spacing:-1.400800pt;}
.ws3d{word-spacing:-0.821600pt;}
.ws46{word-spacing:1.798400pt;}
.ws56{word-spacing:2.124800pt;}
.ws52{word-spacing:3.091733pt;}
.ws75{word-spacing:5.952000pt;}
.ws61{word-spacing:6.275200pt;}
.ws9b{word-spacing:8.709600pt;}
.ws7c{word-spacing:8.961600pt;}
.ws90{word-spacing:9.472000pt;}
.ws9e{word-spacing:12.168800pt;}
.ws15{word-spacing:20.352267pt;}
.ws99{word-spacing:28.357333pt;}
.ws9f{word-spacing:35.066667pt;}
.ws1{word-spacing:404.526933pt;}
._2b{margin-left:-2.036267pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._4{width:16.689600pt;}
._13{width:17.789867pt;}
._7{width:19.367200pt;}
._c{width:20.322133pt;}
._5{width:22.077333pt;}
._12{width:23.161333pt;}
._e{width:24.824533pt;}
._f{width:25.718400pt;}
._d{width:27.338667pt;}
._1f{width:28.732800pt;}
._9{width:30.484267pt;}
._1{width:32.000000pt;}
._23{width:33.190667pt;}
._18{width:34.105067pt;}
._24{width:35.221600pt;}
._10{width:36.145600pt;}
._14{width:37.057600pt;}
._11{width:38.115733pt;}
._1e{width:39.562667pt;}
._1b{width:40.467733pt;}
._6{width:41.467733pt;}
._17{width:43.259200pt;}
._1d{width:44.919467pt;}
._a{width:46.004267pt;}
._2a{width:46.945067pt;}
._8{width:49.331467pt;}
._15{width:51.061600pt;}
._19{width:52.866133pt;}
._1c{width:54.040533pt;}
._20{width:56.892800pt;}
._22{width:60.114133pt;}
._25{width:63.424000pt;}
._b{width:71.083733pt;}
._27{width:85.829333pt;}
._26{width:87.170667pt;}
._29{width:108.800000pt;}
._28{width:140.800000pt;}
._16{width:505.920000pt;}
._0{width:544.128000pt;}
._21{width:636.864000pt;}
._1a{width:875.650667pt;}
.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;}
.y2c{bottom:88.866667pt;}
.y7e{bottom:90.466667pt;}
.y56{bottom:90.946667pt;}
.y2b{bottom:107.266667pt;}
.y7d{bottom:108.866667pt;}
.y55{bottom:109.188000pt;}
.y7c{bottom:127.266667pt;}
.y8a{bottom:127.588000pt;}
.y2a{bottom:144.388000pt;}
.y7b{bottom:145.666667pt;}
.y89{bottom:145.988000pt;}
.y54{bottom:146.308000pt;}
.y7a{bottom:164.066667pt;}
.y88{bottom:164.388000pt;}
.y53{bottom:164.708000pt;}
.y29{bottom:181.508000pt;}
.y79{bottom:182.466667pt;}
.y87{bottom:182.788000pt;}
.y52{bottom:183.108000pt;}
.y28{bottom:199.908000pt;}
.y78{bottom:200.866667pt;}
.y86{bottom:201.188000pt;}
.y27{bottom:218.308000pt;}
.y77{bottom:219.266667pt;}
.y85{bottom:219.588000pt;}
.y51{bottom:220.066667pt;}
.y26{bottom:236.706667pt;}
.y76{bottom:237.666667pt;}
.y50{bottom:238.466667pt;}
.y25{bottom:255.108000pt;}
.y75{bottom:256.066667pt;}
.y84{bottom:256.706667pt;}
.y4f{bottom:256.866667pt;}
.y24{bottom:273.508000pt;}
.y74{bottom:274.466667pt;}
.y4e{bottom:275.266667pt;}
.y23{bottom:291.908000pt;}
.y73{bottom:292.866667pt;}
.y4d{bottom:293.666667pt;}
.y4c{bottom:312.066667pt;}
.y22{bottom:328.866667pt;}
.y72{bottom:329.988000pt;}
.y4b{bottom:330.466667pt;}
.y21{bottom:347.266667pt;}
.y71{bottom:348.388000pt;}
.y4a{bottom:348.866667pt;}
.y70{bottom:366.788000pt;}
.y49{bottom:367.266667pt;}
.y83{bottom:367.588000pt;}
.y20{bottom:384.388000pt;}
.y6f{bottom:385.188000pt;}
.y48{bottom:385.666667pt;}
.y82{bottom:385.988000pt;}
.y1f{bottom:402.788000pt;}
.y6e{bottom:403.588000pt;}
.y47{bottom:404.066667pt;}
.y81{bottom:404.388000pt;}
.y6d{bottom:421.988000pt;}
.y80{bottom:422.788000pt;}
.y1e{bottom:439.908000pt;}
.y46{bottom:441.188000pt;}
.y1d{bottom:458.308000pt;}
.y6c{bottom:459.108000pt;}
.y45{bottom:459.588000pt;}
.y1c{bottom:476.708000pt;}
.y6b{bottom:477.506667pt;}
.y44{bottom:477.988000pt;}
.y1b{bottom:495.108000pt;}
.y6a{bottom:495.908000pt;}
.y43{bottom:496.388000pt;}
.y1a{bottom:513.506667pt;}
.y69{bottom:514.308000pt;}
.y42{bottom:514.788000pt;}
.y19{bottom:531.908000pt;}
.y68{bottom:532.706667pt;}
.y41{bottom:533.188000pt;}
.y40{bottom:551.588000pt;}
.y18{bottom:568.866667pt;}
.y67{bottom:569.666667pt;}
.y3f{bottom:569.988000pt;}
.y17{bottom:587.266667pt;}
.y66{bottom:588.066667pt;}
.y3e{bottom:588.388000pt;}
.y65{bottom:606.466667pt;}
.y3d{bottom:606.788000pt;}
.y16{bottom:624.388000pt;}
.y64{bottom:624.866667pt;}
.y3c{bottom:625.188000pt;}
.y15{bottom:642.788000pt;}
.y63{bottom:643.266667pt;}
.y7f{bottom:643.908000pt;}
.y62{bottom:661.666667pt;}
.y3b{bottom:662.308000pt;}
.y14{bottom:679.906667pt;}
.y61{bottom:680.066667pt;}
.y3a{bottom:680.706667pt;}
.y13{bottom:698.308000pt;}
.y60{bottom:698.466667pt;}
.y39{bottom:699.108000pt;}
.y12{bottom:716.706667pt;}
.y5f{bottom:716.866667pt;}
.y38{bottom:717.506667pt;}
.y11{bottom:735.108000pt;}
.y5e{bottom:735.266667pt;}
.y37{bottom:735.906667pt;}
.y10{bottom:753.506667pt;}
.y5d{bottom:753.666667pt;}
.y36{bottom:754.308000pt;}
.yf{bottom:771.906667pt;}
.y5c{bottom:772.066667pt;}
.y35{bottom:772.706667pt;}
.y8d{bottom:772.866667pt;}
.ye{bottom:790.306667pt;}
.y5b{bottom:790.466667pt;}
.y34{bottom:791.106667pt;}
.y8c{bottom:791.266667pt;}
.yd{bottom:808.706667pt;}
.y8b{bottom:809.666667pt;}
.y5a{bottom:827.588000pt;}
.y33{bottom:828.066667pt;}
.yc{bottom:845.666667pt;}
.y59{bottom:845.988000pt;}
.y32{bottom:846.466667pt;}
.y31{bottom:864.866667pt;}
.yb{bottom:882.788000pt;}
.y58{bottom:883.106667pt;}
.y30{bottom:883.266667pt;}
.y57{bottom:901.506667pt;}
.y2f{bottom:901.666667pt;}
.ya{bottom:919.906667pt;}
.y2e{bottom:920.066667pt;}
.y2d{bottom:938.466667pt;}
.y9{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h5{height:17.933333pt;}
.h4{height:40.085026pt;}
.h3{height:43.375000pt;}
.h6{height:44.468750pt;}
.h2{height:55.343750pt;}
.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;}
.xd{left:117.440000pt;}
.xb{left:120.960000pt;}
.x4{left:124.800000pt;}
.x9{left:137.600000pt;}
.x5{left:213.278667pt;}
.xc{left:269.920000pt;}
.xa{left:296.960000pt;}
.x7{left:341.920000pt;}
.x3{left:414.066667pt;}
.x8{left:557.120000pt;}
.x6{left:629.440000pt;}
.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; }
  