
    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_e0331cfdfdd4bafa05c93036.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.020000;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_b26840f09aec04da6b14a773.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.990000;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_67b1a4f959f28037396837c2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.990000;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_32fe8fa7ab526170bc74af1f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.149000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.979000px;}
.ls1{letter-spacing:-0.480000px;}
.ls3{letter-spacing:-0.450000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000300px;}
.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;}
}
.ws0{word-spacing:-15.750000px;}
.ws51{word-spacing:-13.500000px;}
.ws1{word-spacing:-11.250000px;}
.ws14{word-spacing:-10.800000px;}
.ws6c{word-spacing:-9.182250px;}
.ws50{word-spacing:-3.588000px;}
.ws22{word-spacing:-3.150000px;}
.ws78{word-spacing:-2.772000px;}
.wsb{word-spacing:-2.709000px;}
.ws3d{word-spacing:-2.646000px;}
.ws65{word-spacing:-2.583000px;}
.ws87{word-spacing:-2.520000px;}
.ws4e{word-spacing:-2.394000px;}
.ws79{word-spacing:-2.331000px;}
.ws76{word-spacing:-2.268000px;}
.ws3e{word-spacing:-2.142000px;}
.wsa{word-spacing:-2.079000px;}
.ws28{word-spacing:-2.016000px;}
.ws73{word-spacing:-1.944000px;}
.ws7a{word-spacing:-1.764000px;}
.ws2f{word-spacing:-1.530000px;}
.ws84{word-spacing:-1.485000px;}
.ws85{word-spacing:-1.395000px;}
.ws66{word-spacing:-1.386000px;}
.ws6d{word-spacing:-1.350000px;}
.ws1c{word-spacing:-1.197000px;}
.ws32{word-spacing:-1.170000px;}
.ws31{word-spacing:-1.125000px;}
.ws7d{word-spacing:-0.945000px;}
.ws63{word-spacing:-0.882000px;}
.ws6b{word-spacing:-0.594000px;}
.ws2e{word-spacing:-0.567000px;}
.ws83{word-spacing:-0.495000px;}
.ws46{word-spacing:-0.315000px;}
.ws35{word-spacing:-0.189000px;}
.ws30{word-spacing:-0.180000px;}
.ws75{word-spacing:-0.162000px;}
.ws5b{word-spacing:-0.126000px;}
.ws60{word-spacing:-0.063000px;}
.ws2{word-spacing:0.000000px;}
.ws44{word-spacing:0.126000px;}
.ws2b{word-spacing:0.378000px;}
.ws36{word-spacing:0.441000px;}
.ws80{word-spacing:0.504000px;}
.ws21{word-spacing:0.567000px;}
.ws69{word-spacing:0.702000px;}
.ws9{word-spacing:0.756000px;}
.ws86{word-spacing:0.810000px;}
.ws3c{word-spacing:0.819000px;}
.ws27{word-spacing:0.882000px;}
.ws24{word-spacing:0.945000px;}
.ws4c{word-spacing:1.008000px;}
.ws7b{word-spacing:1.071000px;}
.ws72{word-spacing:1.134000px;}
.ws47{word-spacing:1.260000px;}
.ws82{word-spacing:1.350000px;}
.ws1d{word-spacing:1.386000px;}
.ws64{word-spacing:1.449000px;}
.ws67{word-spacing:1.575000px;}
.ws39{word-spacing:1.701000px;}
.ws4f{word-spacing:1.764000px;}
.ws81{word-spacing:1.800000px;}
.ws15{word-spacing:1.827000px;}
.ws48{word-spacing:1.890000px;}
.ws1b{word-spacing:1.953000px;}
.ws1a{word-spacing:2.016000px;}
.ws2c{word-spacing:2.142000px;}
.ws45{word-spacing:2.268000px;}
.wsf{word-spacing:2.385000px;}
.ws26{word-spacing:2.394000px;}
.ws33{word-spacing:2.565000px;}
.ws54{word-spacing:2.583000px;}
.ws7e{word-spacing:2.646000px;}
.ws6a{word-spacing:2.700000px;}
.ws5a{word-spacing:2.709000px;}
.ws88{word-spacing:3.087000px;}
.ws89{word-spacing:3.150000px;}
.ws57{word-spacing:3.213000px;}
.ws61{word-spacing:3.402000px;}
.ws17{word-spacing:3.465000px;}
.ws74{word-spacing:3.510000px;}
.ws38{word-spacing:3.717000px;}
.ws68{word-spacing:3.726000px;}
.ws43{word-spacing:3.843000px;}
.ws23{word-spacing:3.906000px;}
.ws25{word-spacing:3.969000px;}
.ws4d{word-spacing:4.032000px;}
.ws71{word-spacing:4.050000px;}
.ws5e{word-spacing:4.158000px;}
.wse{word-spacing:4.185000px;}
.ws7{word-spacing:4.221000px;}
.ws1f{word-spacing:4.347000px;}
.ws77{word-spacing:4.473000px;}
.ws5f{word-spacing:4.536000px;}
.ws49{word-spacing:4.599000px;}
.ws4{word-spacing:4.662000px;}
.ws40{word-spacing:4.725000px;}
.ws4a{word-spacing:4.788000px;}
.ws8{word-spacing:4.977000px;}
.ws11{word-spacing:5.085000px;}
.ws5{word-spacing:5.103000px;}
.ws7c{word-spacing:5.166000px;}
.ws13{word-spacing:5.355000px;}
.ws2d{word-spacing:5.544000px;}
.ws37{word-spacing:5.607000px;}
.ws42{word-spacing:5.670000px;}
.ws53{word-spacing:5.859000px;}
.wsd{word-spacing:5.940000px;}
.wsc{word-spacing:5.985000px;}
.ws34{word-spacing:6.210000px;}
.ws18{word-spacing:6.237000px;}
.ws3a{word-spacing:6.363000px;}
.ws1e{word-spacing:6.489000px;}
.ws62{word-spacing:6.552000px;}
.ws2a{word-spacing:6.615000px;}
.ws59{word-spacing:6.804000px;}
.ws12{word-spacing:6.840000px;}
.ws5d{word-spacing:6.930000px;}
.ws6{word-spacing:7.245000px;}
.ws70{word-spacing:7.290000px;}
.ws3b{word-spacing:7.308000px;}
.ws55{word-spacing:7.434000px;}
.ws41{word-spacing:7.497000px;}
.ws52{word-spacing:7.560000px;}
.ws16{word-spacing:7.812000px;}
.ws5c{word-spacing:8.001000px;}
.ws3{word-spacing:8.316000px;}
.ws20{word-spacing:8.505000px;}
.ws7f{word-spacing:8.631000px;}
.ws4b{word-spacing:8.757000px;}
.ws56{word-spacing:9.072000px;}
.ws29{word-spacing:9.261000px;}
.ws58{word-spacing:10.080000px;}
.ws19{word-spacing:10.521000px;}
.ws3f{word-spacing:10.647000px;}
.ws6e{word-spacing:15.282000px;}
.ws10{word-spacing:15.660000px;}
.ws6f{word-spacing:20.304000px;}
._1{margin-left:-21.643200px;}
._4{margin-left:-5.796000px;}
._2{margin-left:-4.140000px;}
._5{margin-left:-2.476200px;}
._0{margin-left:-1.197000px;}
._8{width:1.791600px;}
._6{width:2.932200px;}
._3{width:4.192800px;}
._7{width:7.607400px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(79,76,77);}
.fs6{font-size:36.000000px;}
.fs2{font-size:36.729000px;}
.fs5{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs4{font-size:45.000000px;}
.fs3{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs1{font-size:63.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:29.220600px;}
.y4c{bottom:30.599100px;}
.y55{bottom:63.779550px;}
.y7d{bottom:77.279550px;}
.y1c{bottom:82.962300px;}
.y4a{bottom:85.039500px;}
.y53{bottom:91.067550px;}
.y7c{bottom:95.031600px;}
.y1b{bottom:96.462300px;}
.y49{bottom:98.539500px;}
.y7b{bottom:108.531600px;}
.y1a{bottom:109.962300px;}
.y52{bottom:111.317550px;}
.y48{bottom:112.039500px;}
.y7a{bottom:122.031600px;}
.y19{bottom:123.462300px;}
.y47{bottom:129.791400px;}
.y51{bottom:131.567550px;}
.y79{bottom:135.531600px;}
.y46{bottom:143.291400px;}
.y78{bottom:149.031600px;}
.y50{bottom:151.817550px;}
.y45{bottom:156.791400px;}
.y77{bottom:162.531600px;}
.y44{bottom:170.291400px;}
.y4f{bottom:172.067550px;}
.y18{bottom:175.152450px;}
.y76{bottom:176.031600px;}
.y43{bottom:183.791400px;}
.y17{bottom:188.652450px;}
.y4e{bottom:192.317550px;}
.y42{bottom:197.291400px;}
.y4d{bottom:212.567550px;}
.y20{bottom:215.652450px;}
.y75{bottom:221.789700px;}
.y1f{bottom:229.152450px;}
.y41{bottom:232.817550px;}
.y16{bottom:234.252600px;}
.y74{bottom:242.039700px;}
.y1e{bottom:242.652450px;}
.y40{bottom:253.067550px;}
.y15{bottom:254.502600px;}
.y1d{bottom:256.152450px;}
.y73{bottom:262.289700px;}
.y3f{bottom:273.317550px;}
.y14{bottom:274.752600px;}
.y72{bottom:282.539700px;}
.y3e{bottom:293.567550px;}
.y13{bottom:295.002600px;}
.y71{bottom:302.789700px;}
.y3d{bottom:313.817550px;}
.y12{bottom:315.252600px;}
.y70{bottom:323.039700px;}
.y3c{bottom:334.067550px;}
.y11{bottom:335.502600px;}
.y6f{bottom:343.289700px;}
.y3b{bottom:354.317550px;}
.y10{bottom:355.752600px;}
.y6e{bottom:363.539700px;}
.y3a{bottom:374.567550px;}
.yf{bottom:376.002600px;}
.y6d{bottom:383.789700px;}
.y39{bottom:394.817550px;}
.ye{bottom:396.252600px;}
.y6c{bottom:404.039700px;}
.y38{bottom:415.067550px;}
.yd{bottom:416.502600px;}
.y6b{bottom:424.289700px;}
.y37{bottom:435.317550px;}
.yc{bottom:436.752600px;}
.y6a{bottom:444.539700px;}
.y36{bottom:455.567550px;}
.yb{bottom:457.002600px;}
.y69{bottom:464.789700px;}
.y35{bottom:475.817550px;}
.ya{bottom:477.252600px;}
.y68{bottom:485.039700px;}
.y34{bottom:496.067550px;}
.y9{bottom:497.502600px;}
.y67{bottom:505.289700px;}
.y33{bottom:516.317550px;}
.y8{bottom:517.752600px;}
.y66{bottom:525.539700px;}
.y32{bottom:536.567550px;}
.y65{bottom:545.789700px;}
.y31{bottom:556.817550px;}
.y64{bottom:566.039700px;}
.y30{bottom:577.067550px;}
.y7{bottom:578.502600px;}
.y63{bottom:586.289700px;}
.y2f{bottom:597.317550px;}
.y62{bottom:606.539700px;}
.y2e{bottom:617.567550px;}
.y2d{bottom:637.817550px;}
.y6{bottom:639.252600px;}
.y61{bottom:647.039700px;}
.y2c{bottom:658.067550px;}
.y5{bottom:659.502600px;}
.y60{bottom:667.289700px;}
.y2b{bottom:678.317550px;}
.y5f{bottom:687.539700px;}
.y2a{bottom:698.567550px;}
.y4{bottom:700.002600px;}
.y5e{bottom:707.789700px;}
.y29{bottom:718.817550px;}
.y3{bottom:720.252600px;}
.y5d{bottom:728.039700px;}
.y28{bottom:739.067550px;}
.y2{bottom:740.502600px;}
.y5c{bottom:748.289700px;}
.y27{bottom:759.317550px;}
.y5b{bottom:768.539700px;}
.y26{bottom:779.567550px;}
.y5a{bottom:788.789700px;}
.y25{bottom:799.817550px;}
.y59{bottom:809.039700px;}
.y24{bottom:820.067550px;}
.y23{bottom:840.317550px;}
.y58{bottom:842.045550px;}
.y22{bottom:860.567550px;}
.y57{bottom:862.295550px;}
.y21{bottom:880.817550px;}
.y56{bottom:882.545550px;}
.y54{bottom:928.173750px;}
.y4b{bottom:928.576500px;}
.ha{height:27.072000px;}
.h9{height:29.328000px;}
.h2{height:31.584000px;}
.h5{height:36.864000px;}
.h6{height:38.934000px;}
.h8{height:41.715000px;}
.h4{height:48.384000px;}
.h3{height:49.186872px;}
.hb{height:50.058000px;}
.h7{height:58.401000px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w1{width:637.500000px;}
.w0{width:637.795500px;}
.x0{left:0.000000px;}
.xa{left:51.143550px;}
.xb{left:85.039350px;}
.xc{left:98.767200px;}
.x7{left:106.299150px;}
.x9{left:123.592500px;}
.x8{left:127.559100px;}
.x3{left:143.143050px;}
.x2{left:153.975450px;}
.x4{left:209.144100px;}
.x6{left:286.916100px;}
.x5{left:295.862100px;}
.xd{left:423.115500px;}
.x1{left:568.772400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.648000pt;}
.ls1{letter-spacing:-0.426667pt;}
.ls3{letter-spacing:-0.400000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000267pt;}
.ws0{word-spacing:-14.000000pt;}
.ws51{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.000000pt;}
.ws14{word-spacing:-9.600000pt;}
.ws6c{word-spacing:-8.162000pt;}
.ws50{word-spacing:-3.189333pt;}
.ws22{word-spacing:-2.800000pt;}
.ws78{word-spacing:-2.464000pt;}
.wsb{word-spacing:-2.408000pt;}
.ws3d{word-spacing:-2.352000pt;}
.ws65{word-spacing:-2.296000pt;}
.ws87{word-spacing:-2.240000pt;}
.ws4e{word-spacing:-2.128000pt;}
.ws79{word-spacing:-2.072000pt;}
.ws76{word-spacing:-2.016000pt;}
.ws3e{word-spacing:-1.904000pt;}
.wsa{word-spacing:-1.848000pt;}
.ws28{word-spacing:-1.792000pt;}
.ws73{word-spacing:-1.728000pt;}
.ws7a{word-spacing:-1.568000pt;}
.ws2f{word-spacing:-1.360000pt;}
.ws84{word-spacing:-1.320000pt;}
.ws85{word-spacing:-1.240000pt;}
.ws66{word-spacing:-1.232000pt;}
.ws6d{word-spacing:-1.200000pt;}
.ws1c{word-spacing:-1.064000pt;}
.ws32{word-spacing:-1.040000pt;}
.ws31{word-spacing:-1.000000pt;}
.ws7d{word-spacing:-0.840000pt;}
.ws63{word-spacing:-0.784000pt;}
.ws6b{word-spacing:-0.528000pt;}
.ws2e{word-spacing:-0.504000pt;}
.ws83{word-spacing:-0.440000pt;}
.ws46{word-spacing:-0.280000pt;}
.ws35{word-spacing:-0.168000pt;}
.ws30{word-spacing:-0.160000pt;}
.ws75{word-spacing:-0.144000pt;}
.ws5b{word-spacing:-0.112000pt;}
.ws60{word-spacing:-0.056000pt;}
.ws2{word-spacing:0.000000pt;}
.ws44{word-spacing:0.112000pt;}
.ws2b{word-spacing:0.336000pt;}
.ws36{word-spacing:0.392000pt;}
.ws80{word-spacing:0.448000pt;}
.ws21{word-spacing:0.504000pt;}
.ws69{word-spacing:0.624000pt;}
.ws9{word-spacing:0.672000pt;}
.ws86{word-spacing:0.720000pt;}
.ws3c{word-spacing:0.728000pt;}
.ws27{word-spacing:0.784000pt;}
.ws24{word-spacing:0.840000pt;}
.ws4c{word-spacing:0.896000pt;}
.ws7b{word-spacing:0.952000pt;}
.ws72{word-spacing:1.008000pt;}
.ws47{word-spacing:1.120000pt;}
.ws82{word-spacing:1.200000pt;}
.ws1d{word-spacing:1.232000pt;}
.ws64{word-spacing:1.288000pt;}
.ws67{word-spacing:1.400000pt;}
.ws39{word-spacing:1.512000pt;}
.ws4f{word-spacing:1.568000pt;}
.ws81{word-spacing:1.600000pt;}
.ws15{word-spacing:1.624000pt;}
.ws48{word-spacing:1.680000pt;}
.ws1b{word-spacing:1.736000pt;}
.ws1a{word-spacing:1.792000pt;}
.ws2c{word-spacing:1.904000pt;}
.ws45{word-spacing:2.016000pt;}
.wsf{word-spacing:2.120000pt;}
.ws26{word-spacing:2.128000pt;}
.ws33{word-spacing:2.280000pt;}
.ws54{word-spacing:2.296000pt;}
.ws7e{word-spacing:2.352000pt;}
.ws6a{word-spacing:2.400000pt;}
.ws5a{word-spacing:2.408000pt;}
.ws88{word-spacing:2.744000pt;}
.ws89{word-spacing:2.800000pt;}
.ws57{word-spacing:2.856000pt;}
.ws61{word-spacing:3.024000pt;}
.ws17{word-spacing:3.080000pt;}
.ws74{word-spacing:3.120000pt;}
.ws38{word-spacing:3.304000pt;}
.ws68{word-spacing:3.312000pt;}
.ws43{word-spacing:3.416000pt;}
.ws23{word-spacing:3.472000pt;}
.ws25{word-spacing:3.528000pt;}
.ws4d{word-spacing:3.584000pt;}
.ws71{word-spacing:3.600000pt;}
.ws5e{word-spacing:3.696000pt;}
.wse{word-spacing:3.720000pt;}
.ws7{word-spacing:3.752000pt;}
.ws1f{word-spacing:3.864000pt;}
.ws77{word-spacing:3.976000pt;}
.ws5f{word-spacing:4.032000pt;}
.ws49{word-spacing:4.088000pt;}
.ws4{word-spacing:4.144000pt;}
.ws40{word-spacing:4.200000pt;}
.ws4a{word-spacing:4.256000pt;}
.ws8{word-spacing:4.424000pt;}
.ws11{word-spacing:4.520000pt;}
.ws5{word-spacing:4.536000pt;}
.ws7c{word-spacing:4.592000pt;}
.ws13{word-spacing:4.760000pt;}
.ws2d{word-spacing:4.928000pt;}
.ws37{word-spacing:4.984000pt;}
.ws42{word-spacing:5.040000pt;}
.ws53{word-spacing:5.208000pt;}
.wsd{word-spacing:5.280000pt;}
.wsc{word-spacing:5.320000pt;}
.ws34{word-spacing:5.520000pt;}
.ws18{word-spacing:5.544000pt;}
.ws3a{word-spacing:5.656000pt;}
.ws1e{word-spacing:5.768000pt;}
.ws62{word-spacing:5.824000pt;}
.ws2a{word-spacing:5.880000pt;}
.ws59{word-spacing:6.048000pt;}
.ws12{word-spacing:6.080000pt;}
.ws5d{word-spacing:6.160000pt;}
.ws6{word-spacing:6.440000pt;}
.ws70{word-spacing:6.480000pt;}
.ws3b{word-spacing:6.496000pt;}
.ws55{word-spacing:6.608000pt;}
.ws41{word-spacing:6.664000pt;}
.ws52{word-spacing:6.720000pt;}
.ws16{word-spacing:6.944000pt;}
.ws5c{word-spacing:7.112000pt;}
.ws3{word-spacing:7.392000pt;}
.ws20{word-spacing:7.560000pt;}
.ws7f{word-spacing:7.672000pt;}
.ws4b{word-spacing:7.784000pt;}
.ws56{word-spacing:8.064000pt;}
.ws29{word-spacing:8.232000pt;}
.ws58{word-spacing:8.960000pt;}
.ws19{word-spacing:9.352000pt;}
.ws3f{word-spacing:9.464000pt;}
.ws6e{word-spacing:13.584000pt;}
.ws10{word-spacing:13.920000pt;}
.ws6f{word-spacing:18.048000pt;}
._1{margin-left:-19.238400pt;}
._4{margin-left:-5.152000pt;}
._2{margin-left:-3.680000pt;}
._5{margin-left:-2.201067pt;}
._0{margin-left:-1.064000pt;}
._8{width:1.592533pt;}
._6{width:2.606400pt;}
._3{width:3.726933pt;}
._7{width:6.762133pt;}
.fs6{font-size:32.000000pt;}
.fs2{font-size:32.648000pt;}
.fs5{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs4{font-size:40.000000pt;}
.fs3{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs1{font-size:56.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:25.973867pt;}
.y4c{bottom:27.199200pt;}
.y55{bottom:56.692933pt;}
.y7d{bottom:68.692933pt;}
.y1c{bottom:73.744267pt;}
.y4a{bottom:75.590667pt;}
.y53{bottom:80.948933pt;}
.y7c{bottom:84.472533pt;}
.y1b{bottom:85.744267pt;}
.y49{bottom:87.590667pt;}
.y7b{bottom:96.472533pt;}
.y1a{bottom:97.744267pt;}
.y52{bottom:98.948933pt;}
.y48{bottom:99.590667pt;}
.y7a{bottom:108.472533pt;}
.y19{bottom:109.744267pt;}
.y47{bottom:115.370133pt;}
.y51{bottom:116.948933pt;}
.y79{bottom:120.472533pt;}
.y46{bottom:127.370133pt;}
.y78{bottom:132.472533pt;}
.y50{bottom:134.948933pt;}
.y45{bottom:139.370133pt;}
.y77{bottom:144.472533pt;}
.y44{bottom:151.370133pt;}
.y4f{bottom:152.948933pt;}
.y18{bottom:155.691067pt;}
.y76{bottom:156.472533pt;}
.y43{bottom:163.370133pt;}
.y17{bottom:167.691067pt;}
.y4e{bottom:170.948933pt;}
.y42{bottom:175.370133pt;}
.y4d{bottom:188.948933pt;}
.y20{bottom:191.691067pt;}
.y75{bottom:197.146400pt;}
.y1f{bottom:203.691067pt;}
.y41{bottom:206.948933pt;}
.y16{bottom:208.224533pt;}
.y74{bottom:215.146400pt;}
.y1e{bottom:215.691067pt;}
.y40{bottom:224.948933pt;}
.y15{bottom:226.224533pt;}
.y1d{bottom:227.691067pt;}
.y73{bottom:233.146400pt;}
.y3f{bottom:242.948933pt;}
.y14{bottom:244.224533pt;}
.y72{bottom:251.146400pt;}
.y3e{bottom:260.948933pt;}
.y13{bottom:262.224533pt;}
.y71{bottom:269.146400pt;}
.y3d{bottom:278.948933pt;}
.y12{bottom:280.224533pt;}
.y70{bottom:287.146400pt;}
.y3c{bottom:296.948933pt;}
.y11{bottom:298.224533pt;}
.y6f{bottom:305.146400pt;}
.y3b{bottom:314.948933pt;}
.y10{bottom:316.224533pt;}
.y6e{bottom:323.146400pt;}
.y3a{bottom:332.948933pt;}
.yf{bottom:334.224533pt;}
.y6d{bottom:341.146400pt;}
.y39{bottom:350.948933pt;}
.ye{bottom:352.224533pt;}
.y6c{bottom:359.146400pt;}
.y38{bottom:368.948933pt;}
.yd{bottom:370.224533pt;}
.y6b{bottom:377.146400pt;}
.y37{bottom:386.948933pt;}
.yc{bottom:388.224533pt;}
.y6a{bottom:395.146400pt;}
.y36{bottom:404.948933pt;}
.yb{bottom:406.224533pt;}
.y69{bottom:413.146400pt;}
.y35{bottom:422.948933pt;}
.ya{bottom:424.224533pt;}
.y68{bottom:431.146400pt;}
.y34{bottom:440.948933pt;}
.y9{bottom:442.224533pt;}
.y67{bottom:449.146400pt;}
.y33{bottom:458.948933pt;}
.y8{bottom:460.224533pt;}
.y66{bottom:467.146400pt;}
.y32{bottom:476.948933pt;}
.y65{bottom:485.146400pt;}
.y31{bottom:494.948933pt;}
.y64{bottom:503.146400pt;}
.y30{bottom:512.948933pt;}
.y7{bottom:514.224533pt;}
.y63{bottom:521.146400pt;}
.y2f{bottom:530.948933pt;}
.y62{bottom:539.146400pt;}
.y2e{bottom:548.948933pt;}
.y2d{bottom:566.948933pt;}
.y6{bottom:568.224533pt;}
.y61{bottom:575.146400pt;}
.y2c{bottom:584.948933pt;}
.y5{bottom:586.224533pt;}
.y60{bottom:593.146400pt;}
.y2b{bottom:602.948933pt;}
.y5f{bottom:611.146400pt;}
.y2a{bottom:620.948933pt;}
.y4{bottom:622.224533pt;}
.y5e{bottom:629.146400pt;}
.y29{bottom:638.948933pt;}
.y3{bottom:640.224533pt;}
.y5d{bottom:647.146400pt;}
.y28{bottom:656.948933pt;}
.y2{bottom:658.224533pt;}
.y5c{bottom:665.146400pt;}
.y27{bottom:674.948933pt;}
.y5b{bottom:683.146400pt;}
.y26{bottom:692.948933pt;}
.y5a{bottom:701.146400pt;}
.y25{bottom:710.948933pt;}
.y59{bottom:719.146400pt;}
.y24{bottom:728.948933pt;}
.y23{bottom:746.948933pt;}
.y58{bottom:748.484933pt;}
.y22{bottom:764.948933pt;}
.y57{bottom:766.484933pt;}
.y21{bottom:782.948933pt;}
.y56{bottom:784.484933pt;}
.y54{bottom:825.043333pt;}
.y4b{bottom:825.401333pt;}
.ha{height:24.064000pt;}
.h9{height:26.069333pt;}
.h2{height:28.074667pt;}
.h5{height:32.768000pt;}
.h6{height:34.608000pt;}
.h8{height:37.080000pt;}
.h4{height:43.008000pt;}
.h3{height:43.721664pt;}
.hb{height:44.496000pt;}
.h7{height:51.912000pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w1{width:566.666667pt;}
.w0{width:566.929333pt;}
.x0{left:0.000000pt;}
.xa{left:45.460933pt;}
.xb{left:75.590533pt;}
.xc{left:87.793067pt;}
.x7{left:94.488133pt;}
.x9{left:109.860000pt;}
.x8{left:113.385867pt;}
.x3{left:127.238267pt;}
.x2{left:136.867067pt;}
.x4{left:185.905867pt;}
.x6{left:255.036533pt;}
.x5{left:262.988533pt;}
.xd{left:376.102667pt;}
.x1{left:505.575467pt;}
}




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