
    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_0944c695354b63ac91030ab4.woff2')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_01b71f9744aabe39370c33d7.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_cadb5d50df3def8d69eaa85b.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_6a12fcdafded2a73fe2435a1.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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_43d5a414c86411c8a68d3ed9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:73.656000px;}
.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;}
}
.ws11{word-spacing:-55.944000px;}
.ws36{word-spacing:-40.536000px;}
.wsf{word-spacing:-38.875500px;}
.ws18{word-spacing:-38.869200px;}
.ws99{word-spacing:-38.863800px;}
.ws6{word-spacing:-38.657700px;}
.ws5{word-spacing:-38.647800px;}
.wsb{word-spacing:-38.444400px;}
.ws28{word-spacing:-38.444100px;}
.ws9{word-spacing:-38.442600px;}
.ws17{word-spacing:-38.439900px;}
.wsc{word-spacing:-38.421900px;}
.wse{word-spacing:-38.377500px;}
.ws3{word-spacing:-38.374200px;}
.wsd{word-spacing:-38.368800px;}
.wsa{word-spacing:-38.074500px;}
.ws0{word-spacing:-37.944000px;}
.ws4{word-spacing:-37.938600px;}
.ws2{word-spacing:-37.931400px;}
.ws8{word-spacing:-33.547800px;}
.ws21{word-spacing:-30.727800px;}
.ws27{word-spacing:-25.691400px;}
.ws26{word-spacing:-25.191000px;}
.ws19{word-spacing:-24.264000px;}
.ws48{word-spacing:-23.466600px;}
.ws71{word-spacing:-23.262000px;}
.ws7c{word-spacing:-23.248500px;}
.ws64{word-spacing:-23.247600px;}
.ws6d{word-spacing:-23.245200px;}
.ws16{word-spacing:-23.241600px;}
.ws37{word-spacing:-23.239800px;}
.ws1e{word-spacing:-23.171400px;}
.ws8d{word-spacing:-23.038800px;}
.ws3d{word-spacing:-23.032800px;}
.ws7f{word-spacing:-23.031000px;}
.ws3c{word-spacing:-23.027400px;}
.ws9e{word-spacing:-23.023200px;}
.ws4b{word-spacing:-23.022000px;}
.ws4f{word-spacing:-23.020200px;}
.ws60{word-spacing:-23.018100px;}
.ws49{word-spacing:-23.008800px;}
.ws40{word-spacing:-22.758000px;}
.ws25{word-spacing:-22.752000px;}
.ws92{word-spacing:-22.749000px;}
.ws2e{word-spacing:-22.746300px;}
.ws52{word-spacing:-22.742400px;}
.ws47{word-spacing:-22.738800px;}
.ws9a{word-spacing:-22.738500px;}
.ws45{word-spacing:-22.734000px;}
.ws9b{word-spacing:-22.536000px;}
.ws10{word-spacing:-22.527900px;}
.ws58{word-spacing:-22.523400px;}
.ws5c{word-spacing:-22.519800px;}
.ws75{word-spacing:-22.515600px;}
.ws80{word-spacing:-22.513500px;}
.ws7b{word-spacing:-22.466400px;}
.ws3f{word-spacing:-22.317000px;}
.ws2f{word-spacing:-22.309200px;}
.ws39{word-spacing:-22.307400px;}
.ws84{word-spacing:-22.305600px;}
.ws67{word-spacing:-22.304400px;}
.ws88{word-spacing:-22.298400px;}
.ws98{word-spacing:-22.296600px;}
.ws86{word-spacing:-21.797400px;}
.ws4a{word-spacing:-21.587400px;}
.ws5d{word-spacing:-21.318000px;}
.ws5a{word-spacing:-21.093000px;}
.ws6c{word-spacing:-21.091200px;}
.ws35{word-spacing:-21.079800px;}
.ws24{word-spacing:-20.367000px;}
.ws30{word-spacing:-20.362800px;}
.ws68{word-spacing:-20.149200px;}
.ws8e{word-spacing:-20.143800px;}
.ws1d{word-spacing:-20.004600px;}
.ws5e{word-spacing:-19.635600px;}
.ws55{word-spacing:-19.431000px;}
.ws77{word-spacing:-18.712800px;}
.ws7{word-spacing:-18.472500px;}
.ws63{word-spacing:-18.205200px;}
.ws46{word-spacing:-17.706000px;}
.ws57{word-spacing:-17.483400px;}
.ws3a{word-spacing:-17.272800px;}
.ws61{word-spacing:-16.992000px;}
.ws69{word-spacing:-16.988400px;}
.ws22{word-spacing:-16.778400px;}
.ws9f{word-spacing:-16.759800px;}
.ws53{word-spacing:-16.549200px;}
.ws8a{word-spacing:-16.548000px;}
.ws41{word-spacing:-16.056000px;}
.ws38{word-spacing:-16.043400px;}
.ws23{word-spacing:-15.971400px;}
.ws8f{word-spacing:-15.832800px;}
.ws34{word-spacing:-15.546600px;}
.ws15{word-spacing:-15.323400px;}
.ws2c{word-spacing:-15.118200px;}
.ws33{word-spacing:-15.111000px;}
.ws65{word-spacing:-15.105600px;}
.ws95{word-spacing:-14.389200px;}
.ws56{word-spacing:-14.106600px;}
.ws87{word-spacing:-13.888800px;}
.ws72{word-spacing:-13.176000px;}
.ws12{word-spacing:-12.966000px;}
.ws5b{word-spacing:-12.443400px;}
.ws32{word-spacing:-12.441000px;}
.ws44{word-spacing:-11.948400px;}
.ws4c{word-spacing:-11.947200px;}
.wsa0{word-spacing:-11.725200px;}
.ws73{word-spacing:-11.719800px;}
.ws2a{word-spacing:-11.705400px;}
.ws59{word-spacing:-11.238000px;}
.ws66{word-spacing:-11.227200px;}
.ws76{word-spacing:-11.003400px;}
.ws9c{word-spacing:-10.299300px;}
.ws1a{word-spacing:-9.784800px;}
.ws1b{word-spacing:-9.560700px;}
.ws8c{word-spacing:-9.554400px;}
.ws79{word-spacing:-8.853000px;}
.ws2b{word-spacing:-8.638200px;}
.ws6e{word-spacing:-8.328600px;}
.ws81{word-spacing:-8.118000px;}
.ws4e{word-spacing:-7.918800px;}
.ws97{word-spacing:-7.912800px;}
.ws94{word-spacing:-7.198200px;}
.ws42{word-spacing:-6.912000px;}
.ws43{word-spacing:-6.179400px;}
.ws9d{word-spacing:-5.976000px;}
.ws29{word-spacing:-5.943600px;}
.ws7e{word-spacing:-5.245200px;}
.ws5f{word-spacing:-4.746000px;}
.ws70{word-spacing:-4.527000px;}
.ws93{word-spacing:-4.314600px;}
.ws8b{word-spacing:-3.807000px;}
.ws6f{word-spacing:-3.090600px;}
.wsa1{word-spacing:-1.429200px;}
.ws74{word-spacing:-0.705600px;}
.ws78{word-spacing:-0.419400px;}
.ws31{word-spacing:0.000000px;}
.ws50{word-spacing:0.012600px;}
.ws7a{word-spacing:0.520200px;}
.ws1c{word-spacing:0.588600px;}
.ws6a{word-spacing:1.441800px;}
.ws13{word-spacing:1.738800px;}
.ws54{word-spacing:4.116600px;}
.ws91{word-spacing:4.834200px;}
.ws89{word-spacing:6.053400px;}
.ws85{word-spacing:6.266700px;}
.ws6b{word-spacing:8.214000px;}
.ws82{word-spacing:8.437500px;}
.ws62{word-spacing:9.153000px;}
.ws83{word-spacing:12.034800px;}
.ws14{word-spacing:12.756600px;}
.ws3b{word-spacing:15.408000px;}
.ws96{word-spacing:15.428400px;}
.ws51{word-spacing:16.348800px;}
.ws3e{word-spacing:16.848000px;}
.ws20{word-spacing:18.007200px;}
.ws1f{word-spacing:18.008400px;}
.ws4d{word-spacing:18.516600px;}
.ws2d{word-spacing:24.483000px;}
.ws90{word-spacing:26.436600px;}
.ws7d{word-spacing:28.591200px;}
.ws1{word-spacing:455.092800px;}
._19{margin-left:-2.310600px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._4{width:18.775800px;}
._d{width:20.592000px;}
._8{width:22.097400px;}
._c{width:23.653200px;}
._9{width:24.822600px;}
._6{width:26.483400px;}
._15{width:28.218600px;}
._16{width:29.221800px;}
._a{width:30.577200px;}
._7{width:32.112000px;}
._12{width:33.694800px;}
._1a{width:34.848000px;}
._1{width:36.000000px;}
._17{width:37.138800px;}
._1b{width:38.592000px;}
._13{width:41.716200px;}
._5{width:43.411200px;}
._14{width:46.287600px;}
._20{width:47.877300px;}
._1e{width:50.074200px;}
._18{width:51.102000px;}
._1f{width:54.193200px;}
._f{width:56.958000px;}
._e{width:58.003200px;}
._10{width:59.112000px;}
._11{width:60.543600px;}
._b{width:66.237000px;}
._21{width:68.233200px;}
._1d{width:70.180800px;}
._1c{width:71.764200px;}
._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);}
.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;}
.y2b{bottom:99.796500px;}
.y2a{bottom:120.496500px;}
.y7e{bottom:121.396500px;}
.y93{bottom:141.736500px;}
.y7d{bottom:142.096500px;}
.y45{bottom:160.996500px;}
.y5d{bottom:161.536500px;}
.y29{bottom:162.075000px;}
.y92{bottom:162.436500px;}
.y7c{bottom:162.796500px;}
.y5c{bottom:182.236500px;}
.y28{bottom:182.775000px;}
.y7b{bottom:183.496500px;}
.y44{bottom:202.575000px;}
.y5b{bottom:202.936500px;}
.y27{bottom:203.475000px;}
.y7a{bottom:204.196500px;}
.y5a{bottom:223.636500px;}
.y26{bottom:224.175000px;}
.y79{bottom:224.896500px;}
.y43{bottom:244.336500px;}
.y25{bottom:244.875000px;}
.y91{bottom:245.775000px;}
.y59{bottom:265.396500px;}
.y24{bottom:265.575000px;}
.y78{bottom:266.475000px;}
.y42{bottom:286.096500px;}
.y90{bottom:287.175000px;}
.y41{bottom:306.795000px;}
.y23{bottom:307.336500px;}
.y8f{bottom:307.875000px;}
.y77{bottom:308.236500px;}
.y40{bottom:327.496500px;}
.y22{bottom:328.036500px;}
.y76{bottom:328.936500px;}
.y75{bottom:349.636500px;}
.y3f{bottom:369.075000px;}
.y21{bottom:369.795000px;}
.y74{bottom:370.336500px;}
.y3e{bottom:389.775000px;}
.y20{bottom:390.496500px;}
.y73{bottom:391.036500px;}
.y58{bottom:410.475000px;}
.y1f{bottom:411.196500px;}
.y8e{bottom:411.736500px;}
.y57{bottom:431.175000px;}
.y3d{bottom:431.536500px;}
.y1e{bottom:431.896500px;}
.y72{bottom:432.795000px;}
.y8d{bottom:453.496500px;}
.y56{bottom:472.936500px;}
.y3c{bottom:473.295000px;}
.y1d{bottom:473.475000px;}
.y8c{bottom:474.196500px;}
.y71{bottom:474.375000px;}
.y55{bottom:493.636500px;}
.y3b{bottom:493.996500px;}
.y1c{bottom:494.175000px;}
.y8b{bottom:494.896500px;}
.y70{bottom:495.075000px;}
.y54{bottom:514.336500px;}
.y8a{bottom:515.596500px;}
.y6f{bottom:515.775000px;}
.y53{bottom:535.036500px;}
.y3a{bottom:535.575000px;}
.y1b{bottom:535.936500px;}
.y89{bottom:536.296500px;}
.y6e{bottom:536.475000px;}
.y39{bottom:556.275000px;}
.y1a{bottom:556.636500px;}
.y52{bottom:576.795000px;}
.y19{bottom:577.336500px;}
.y88{bottom:577.875000px;}
.y6d{bottom:578.236500px;}
.y51{bottom:597.496500px;}
.y18{bottom:598.036500px;}
.y87{bottom:598.575000px;}
.y50{bottom:618.195000px;}
.y17{bottom:618.736500px;}
.y86{bottom:619.275000px;}
.y6c{bottom:619.996500px;}
.y4f{bottom:638.896500px;}
.y38{bottom:639.795000px;}
.y85{bottom:639.975000px;}
.y6b{bottom:640.695000px;}
.y16{bottom:660.496500px;}
.y84{bottom:660.675000px;}
.y6a{bottom:661.396500px;}
.y4e{bottom:680.475000px;}
.y15{bottom:681.195000px;}
.y69{bottom:682.096500px;}
.y37{bottom:702.075000px;}
.y83{bottom:702.436500px;}
.y4d{bottom:722.236500px;}
.y14{bottom:722.775000px;}
.y82{bottom:723.136500px;}
.y68{bottom:723.675000px;}
.y13{bottom:743.475000px;}
.y36{bottom:743.836500px;}
.y67{bottom:744.375000px;}
.y4c{bottom:763.996500px;}
.y12{bottom:764.175000px;}
.y81{bottom:764.536500px;}
.y66{bottom:765.075000px;}
.y11{bottom:784.875000px;}
.y97{bottom:785.236500px;}
.y35{bottom:785.596500px;}
.y65{bottom:785.775000px;}
.y4b{bottom:805.575000px;}
.y96{bottom:805.936500px;}
.y34{bottom:806.295000px;}
.y4a{bottom:826.275000px;}
.y10{bottom:826.636500px;}
.y64{bottom:827.536500px;}
.y95{bottom:847.695000px;}
.y33{bottom:847.875000px;}
.y63{bottom:848.236500px;}
.y49{bottom:868.036500px;}
.yf{bottom:868.395000px;}
.y32{bottom:868.575000px;}
.y62{bottom:868.936500px;}
.y80{bottom:889.275000px;}
.y61{bottom:889.636500px;}
.y48{bottom:909.795000px;}
.ye{bottom:909.975000px;}
.y31{bottom:910.336500px;}
.y94{bottom:930.675000px;}
.y30{bottom:931.036500px;}
.y60{bottom:931.395000px;}
.y47{bottom:951.375000px;}
.yd{bottom:951.736500px;}
.y5f{bottom:952.095000px;}
.yc{bottom:972.436500px;}
.y2f{bottom:972.795000px;}
.y46{bottom:993.136500px;}
.y5e{bottom:993.495000px;}
.yb{bottom:1014.195000px;}
.y2e{bottom:1014.375000px;}
.ya{bottom:1034.895000px;}
.y2d{bottom:1035.075000px;}
.y7f{bottom:1055.595000px;}
.y2c{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;}
.h4{height:20.175000px;}
.h3{height:45.095654px;}
.h2{height:48.796875px;}
.h6{height:49.992188px;}
.h5{height:50.027344px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:33.450000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.x5{left:135.000000px;}
.x7{left:148.320000px;}
.x6{left:162.538500px;}
.x8{left:219.960000px;}
.x4{left:287.820000px;}
.xa{left:402.660000px;}
.x3{left:461.625000px;}
.xb{left:610.200000px;}
.x9{left:690.300000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:65.472000pt;}
.ws11{word-spacing:-49.728000pt;}
.ws36{word-spacing:-36.032000pt;}
.wsf{word-spacing:-34.556000pt;}
.ws18{word-spacing:-34.550400pt;}
.ws99{word-spacing:-34.545600pt;}
.ws6{word-spacing:-34.362400pt;}
.ws5{word-spacing:-34.353600pt;}
.wsb{word-spacing:-34.172800pt;}
.ws28{word-spacing:-34.172533pt;}
.ws9{word-spacing:-34.171200pt;}
.ws17{word-spacing:-34.168800pt;}
.wsc{word-spacing:-34.152800pt;}
.wse{word-spacing:-34.113333pt;}
.ws3{word-spacing:-34.110400pt;}
.wsd{word-spacing:-34.105600pt;}
.wsa{word-spacing:-33.844000pt;}
.ws0{word-spacing:-33.728000pt;}
.ws4{word-spacing:-33.723200pt;}
.ws2{word-spacing:-33.716800pt;}
.ws8{word-spacing:-29.820267pt;}
.ws21{word-spacing:-27.313600pt;}
.ws27{word-spacing:-22.836800pt;}
.ws26{word-spacing:-22.392000pt;}
.ws19{word-spacing:-21.568000pt;}
.ws48{word-spacing:-20.859200pt;}
.ws71{word-spacing:-20.677333pt;}
.ws7c{word-spacing:-20.665333pt;}
.ws64{word-spacing:-20.664533pt;}
.ws6d{word-spacing:-20.662400pt;}
.ws16{word-spacing:-20.659200pt;}
.ws37{word-spacing:-20.657600pt;}
.ws1e{word-spacing:-20.596800pt;}
.ws8d{word-spacing:-20.478933pt;}
.ws3d{word-spacing:-20.473600pt;}
.ws7f{word-spacing:-20.472000pt;}
.ws3c{word-spacing:-20.468800pt;}
.ws9e{word-spacing:-20.465067pt;}
.ws4b{word-spacing:-20.464000pt;}
.ws4f{word-spacing:-20.462400pt;}
.ws60{word-spacing:-20.460533pt;}
.ws49{word-spacing:-20.452267pt;}
.ws40{word-spacing:-20.229333pt;}
.ws25{word-spacing:-20.224000pt;}
.ws92{word-spacing:-20.221333pt;}
.ws2e{word-spacing:-20.218933pt;}
.ws52{word-spacing:-20.215467pt;}
.ws47{word-spacing:-20.212267pt;}
.ws9a{word-spacing:-20.212000pt;}
.ws45{word-spacing:-20.208000pt;}
.ws9b{word-spacing:-20.032000pt;}
.ws10{word-spacing:-20.024800pt;}
.ws58{word-spacing:-20.020800pt;}
.ws5c{word-spacing:-20.017600pt;}
.ws75{word-spacing:-20.013867pt;}
.ws80{word-spacing:-20.012000pt;}
.ws7b{word-spacing:-19.970133pt;}
.ws3f{word-spacing:-19.837333pt;}
.ws2f{word-spacing:-19.830400pt;}
.ws39{word-spacing:-19.828800pt;}
.ws84{word-spacing:-19.827200pt;}
.ws67{word-spacing:-19.826133pt;}
.ws88{word-spacing:-19.820800pt;}
.ws98{word-spacing:-19.819200pt;}
.ws86{word-spacing:-19.375467pt;}
.ws4a{word-spacing:-19.188800pt;}
.ws5d{word-spacing:-18.949333pt;}
.ws5a{word-spacing:-18.749333pt;}
.ws6c{word-spacing:-18.747733pt;}
.ws35{word-spacing:-18.737600pt;}
.ws24{word-spacing:-18.104000pt;}
.ws30{word-spacing:-18.100267pt;}
.ws68{word-spacing:-17.910400pt;}
.ws8e{word-spacing:-17.905600pt;}
.ws1d{word-spacing:-17.781867pt;}
.ws5e{word-spacing:-17.453867pt;}
.ws55{word-spacing:-17.272000pt;}
.ws77{word-spacing:-16.633600pt;}
.ws7{word-spacing:-16.420000pt;}
.ws63{word-spacing:-16.182400pt;}
.ws46{word-spacing:-15.738667pt;}
.ws57{word-spacing:-15.540800pt;}
.ws3a{word-spacing:-15.353600pt;}
.ws61{word-spacing:-15.104000pt;}
.ws69{word-spacing:-15.100800pt;}
.ws22{word-spacing:-14.914133pt;}
.ws9f{word-spacing:-14.897600pt;}
.ws53{word-spacing:-14.710400pt;}
.ws8a{word-spacing:-14.709333pt;}
.ws41{word-spacing:-14.272000pt;}
.ws38{word-spacing:-14.260800pt;}
.ws23{word-spacing:-14.196800pt;}
.ws8f{word-spacing:-14.073600pt;}
.ws34{word-spacing:-13.819200pt;}
.ws15{word-spacing:-13.620800pt;}
.ws2c{word-spacing:-13.438400pt;}
.ws33{word-spacing:-13.432000pt;}
.ws65{word-spacing:-13.427200pt;}
.ws95{word-spacing:-12.790400pt;}
.ws56{word-spacing:-12.539200pt;}
.ws87{word-spacing:-12.345600pt;}
.ws72{word-spacing:-11.712000pt;}
.ws12{word-spacing:-11.525333pt;}
.ws5b{word-spacing:-11.060800pt;}
.ws32{word-spacing:-11.058667pt;}
.ws44{word-spacing:-10.620800pt;}
.ws4c{word-spacing:-10.619733pt;}
.wsa0{word-spacing:-10.422400pt;}
.ws73{word-spacing:-10.417600pt;}
.ws2a{word-spacing:-10.404800pt;}
.ws59{word-spacing:-9.989333pt;}
.ws66{word-spacing:-9.979733pt;}
.ws76{word-spacing:-9.780800pt;}
.ws9c{word-spacing:-9.154933pt;}
.ws1a{word-spacing:-8.697600pt;}
.ws1b{word-spacing:-8.498400pt;}
.ws8c{word-spacing:-8.492800pt;}
.ws79{word-spacing:-7.869333pt;}
.ws2b{word-spacing:-7.678400pt;}
.ws6e{word-spacing:-7.403200pt;}
.ws81{word-spacing:-7.216000pt;}
.ws4e{word-spacing:-7.038933pt;}
.ws97{word-spacing:-7.033600pt;}
.ws94{word-spacing:-6.398400pt;}
.ws42{word-spacing:-6.144000pt;}
.ws43{word-spacing:-5.492800pt;}
.ws9d{word-spacing:-5.312000pt;}
.ws29{word-spacing:-5.283200pt;}
.ws7e{word-spacing:-4.662400pt;}
.ws5f{word-spacing:-4.218667pt;}
.ws70{word-spacing:-4.024000pt;}
.ws93{word-spacing:-3.835200pt;}
.ws8b{word-spacing:-3.384000pt;}
.ws6f{word-spacing:-2.747200pt;}
.wsa1{word-spacing:-1.270400pt;}
.ws74{word-spacing:-0.627200pt;}
.ws78{word-spacing:-0.372800pt;}
.ws31{word-spacing:0.000000pt;}
.ws50{word-spacing:0.011200pt;}
.ws7a{word-spacing:0.462400pt;}
.ws1c{word-spacing:0.523200pt;}
.ws6a{word-spacing:1.281600pt;}
.ws13{word-spacing:1.545600pt;}
.ws54{word-spacing:3.659200pt;}
.ws91{word-spacing:4.297067pt;}
.ws89{word-spacing:5.380800pt;}
.ws85{word-spacing:5.570400pt;}
.ws6b{word-spacing:7.301333pt;}
.ws82{word-spacing:7.500000pt;}
.ws62{word-spacing:8.136000pt;}
.ws83{word-spacing:10.697600pt;}
.ws14{word-spacing:11.339200pt;}
.ws3b{word-spacing:13.696000pt;}
.ws96{word-spacing:13.714133pt;}
.ws51{word-spacing:14.532267pt;}
.ws3e{word-spacing:14.976000pt;}
.ws20{word-spacing:16.006400pt;}
.ws1f{word-spacing:16.007467pt;}
.ws4d{word-spacing:16.459200pt;}
.ws2d{word-spacing:21.762667pt;}
.ws90{word-spacing:23.499200pt;}
.ws7d{word-spacing:25.414400pt;}
.ws1{word-spacing:404.526933pt;}
._19{margin-left:-2.053867pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._4{width:16.689600pt;}
._d{width:18.304000pt;}
._8{width:19.642133pt;}
._c{width:21.025067pt;}
._9{width:22.064533pt;}
._6{width:23.540800pt;}
._15{width:25.083200pt;}
._16{width:25.974933pt;}
._a{width:27.179733pt;}
._7{width:28.544000pt;}
._12{width:29.950933pt;}
._1a{width:30.976000pt;}
._1{width:32.000000pt;}
._17{width:33.012267pt;}
._1b{width:34.304000pt;}
._13{width:37.081067pt;}
._5{width:38.587733pt;}
._14{width:41.144533pt;}
._20{width:42.557600pt;}
._1e{width:44.510400pt;}
._18{width:45.424000pt;}
._1f{width:48.171733pt;}
._f{width:50.629333pt;}
._e{width:51.558400pt;}
._10{width:52.544000pt;}
._11{width:53.816533pt;}
._b{width:58.877333pt;}
._21{width:60.651733pt;}
._1d{width:62.382933pt;}
._1c{width:63.790400pt;}
._0{width:544.128000pt;}
.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;}
.y2b{bottom:88.708000pt;}
.y2a{bottom:107.108000pt;}
.y7e{bottom:107.908000pt;}
.y93{bottom:125.988000pt;}
.y7d{bottom:126.308000pt;}
.y45{bottom:143.108000pt;}
.y5d{bottom:143.588000pt;}
.y29{bottom:144.066667pt;}
.y92{bottom:144.388000pt;}
.y7c{bottom:144.708000pt;}
.y5c{bottom:161.988000pt;}
.y28{bottom:162.466667pt;}
.y7b{bottom:163.108000pt;}
.y44{bottom:180.066667pt;}
.y5b{bottom:180.388000pt;}
.y27{bottom:180.866667pt;}
.y7a{bottom:181.508000pt;}
.y5a{bottom:198.788000pt;}
.y26{bottom:199.266667pt;}
.y79{bottom:199.908000pt;}
.y43{bottom:217.188000pt;}
.y25{bottom:217.666667pt;}
.y91{bottom:218.466667pt;}
.y59{bottom:235.908000pt;}
.y24{bottom:236.066667pt;}
.y78{bottom:236.866667pt;}
.y42{bottom:254.308000pt;}
.y90{bottom:255.266667pt;}
.y41{bottom:272.706667pt;}
.y23{bottom:273.188000pt;}
.y8f{bottom:273.666667pt;}
.y77{bottom:273.988000pt;}
.y40{bottom:291.108000pt;}
.y22{bottom:291.588000pt;}
.y76{bottom:292.388000pt;}
.y75{bottom:310.788000pt;}
.y3f{bottom:328.066667pt;}
.y21{bottom:328.706667pt;}
.y74{bottom:329.188000pt;}
.y3e{bottom:346.466667pt;}
.y20{bottom:347.108000pt;}
.y73{bottom:347.588000pt;}
.y58{bottom:364.866667pt;}
.y1f{bottom:365.508000pt;}
.y8e{bottom:365.988000pt;}
.y57{bottom:383.266667pt;}
.y3d{bottom:383.588000pt;}
.y1e{bottom:383.908000pt;}
.y72{bottom:384.706667pt;}
.y8d{bottom:403.108000pt;}
.y56{bottom:420.388000pt;}
.y3c{bottom:420.706667pt;}
.y1d{bottom:420.866667pt;}
.y8c{bottom:421.508000pt;}
.y71{bottom:421.666667pt;}
.y55{bottom:438.788000pt;}
.y3b{bottom:439.108000pt;}
.y1c{bottom:439.266667pt;}
.y8b{bottom:439.908000pt;}
.y70{bottom:440.066667pt;}
.y54{bottom:457.188000pt;}
.y8a{bottom:458.308000pt;}
.y6f{bottom:458.466667pt;}
.y53{bottom:475.588000pt;}
.y3a{bottom:476.066667pt;}
.y1b{bottom:476.388000pt;}
.y89{bottom:476.708000pt;}
.y6e{bottom:476.866667pt;}
.y39{bottom:494.466667pt;}
.y1a{bottom:494.788000pt;}
.y52{bottom:512.706667pt;}
.y19{bottom:513.188000pt;}
.y88{bottom:513.666667pt;}
.y6d{bottom:513.988000pt;}
.y51{bottom:531.108000pt;}
.y18{bottom:531.588000pt;}
.y87{bottom:532.066667pt;}
.y50{bottom:549.506667pt;}
.y17{bottom:549.988000pt;}
.y86{bottom:550.466667pt;}
.y6c{bottom:551.108000pt;}
.y4f{bottom:567.908000pt;}
.y38{bottom:568.706667pt;}
.y85{bottom:568.866667pt;}
.y6b{bottom:569.506667pt;}
.y16{bottom:587.108000pt;}
.y84{bottom:587.266667pt;}
.y6a{bottom:587.908000pt;}
.y4e{bottom:604.866667pt;}
.y15{bottom:605.506667pt;}
.y69{bottom:606.308000pt;}
.y37{bottom:624.066667pt;}
.y83{bottom:624.388000pt;}
.y4d{bottom:641.988000pt;}
.y14{bottom:642.466667pt;}
.y82{bottom:642.788000pt;}
.y68{bottom:643.266667pt;}
.y13{bottom:660.866667pt;}
.y36{bottom:661.188000pt;}
.y67{bottom:661.666667pt;}
.y4c{bottom:679.108000pt;}
.y12{bottom:679.266667pt;}
.y81{bottom:679.588000pt;}
.y66{bottom:680.066667pt;}
.y11{bottom:697.666667pt;}
.y97{bottom:697.988000pt;}
.y35{bottom:698.308000pt;}
.y65{bottom:698.466667pt;}
.y4b{bottom:716.066667pt;}
.y96{bottom:716.388000pt;}
.y34{bottom:716.706667pt;}
.y4a{bottom:734.466667pt;}
.y10{bottom:734.788000pt;}
.y64{bottom:735.588000pt;}
.y95{bottom:753.506667pt;}
.y33{bottom:753.666667pt;}
.y63{bottom:753.988000pt;}
.y49{bottom:771.588000pt;}
.yf{bottom:771.906667pt;}
.y32{bottom:772.066667pt;}
.y62{bottom:772.388000pt;}
.y80{bottom:790.466667pt;}
.y61{bottom:790.788000pt;}
.y48{bottom:808.706667pt;}
.ye{bottom:808.866667pt;}
.y31{bottom:809.188000pt;}
.y94{bottom:827.266667pt;}
.y30{bottom:827.588000pt;}
.y60{bottom:827.906667pt;}
.y47{bottom:845.666667pt;}
.yd{bottom:845.988000pt;}
.y5f{bottom:846.306667pt;}
.yc{bottom:864.388000pt;}
.y2f{bottom:864.706667pt;}
.y46{bottom:882.788000pt;}
.y5e{bottom:883.106667pt;}
.yb{bottom:901.506667pt;}
.y2e{bottom:901.666667pt;}
.ya{bottom:919.906667pt;}
.y2d{bottom:920.066667pt;}
.y7f{bottom:938.306667pt;}
.y2c{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;}
.h4{height:17.933333pt;}
.h3{height:40.085026pt;}
.h2{height:43.375000pt;}
.h6{height:44.437500pt;}
.h5{height:44.468750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:29.733333pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.x5{left:120.000000pt;}
.x7{left:131.840000pt;}
.x6{left:144.478667pt;}
.x8{left:195.520000pt;}
.x4{left:255.840000pt;}
.xa{left:357.920000pt;}
.x3{left:410.333333pt;}
.xb{left:542.400000pt;}
.x9{left:613.600000pt;}
.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; }
  