
    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_390c3002d64643ed383691d6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.896973;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_b53671a7900d6bd39a8b62ba.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.691406;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_28f998ebf8ef37144aa14976.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8a56f8a80360ae0f41c6e6be.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_b9f3cf9eb563733cb676ca69.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941333;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;}
.ls1{letter-spacing:36.000000px;}
.ls2{letter-spacing:312.336000px;}
.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;}
}
.wsc{word-spacing:-55.944000px;}
.ws5{word-spacing:-40.968000px;}
.ws23{word-spacing:-39.006900px;}
.ws6c{word-spacing:-38.883300px;}
.ws84{word-spacing:-38.863800px;}
.ws27{word-spacing:-38.862900px;}
.ws5e{word-spacing:-38.657700px;}
.ws55{word-spacing:-38.654100px;}
.ws7d{word-spacing:-38.653200px;}
.ws18{word-spacing:-38.651400px;}
.ws83{word-spacing:-38.649600px;}
.ws5a{word-spacing:-38.644200px;}
.ws5f{word-spacing:-38.589300px;}
.ws72{word-spacing:-38.487600px;}
.ws87{word-spacing:-38.448000px;}
.ws74{word-spacing:-38.443200px;}
.ws3b{word-spacing:-38.440800px;}
.ws48{word-spacing:-38.439900px;}
.wsa{word-spacing:-38.437200px;}
.ws4d{word-spacing:-38.435400px;}
.ws5d{word-spacing:-38.432100px;}
.ws79{word-spacing:-38.422800px;}
.ws76{word-spacing:-38.422200px;}
.ws70{word-spacing:-38.352600px;}
.ws6f{word-spacing:-38.163300px;}
.ws6b{word-spacing:-38.160000px;}
.ws57{word-spacing:-38.154300px;}
.ws6a{word-spacing:-38.154000px;}
.ws52{word-spacing:-38.149200px;}
.ws15{word-spacing:-38.145000px;}
.ws7{word-spacing:-38.086200px;}
.ws85{word-spacing:-38.079900px;}
.ws88{word-spacing:-37.948200px;}
.ws61{word-spacing:-37.944000px;}
.ws69{word-spacing:-37.940100px;}
.ws33{word-spacing:-37.939200px;}
.ws9{word-spacing:-37.935900px;}
.ws64{word-spacing:-37.934100px;}
.ws6e{word-spacing:-37.932600px;}
.ws65{word-spacing:-37.930500px;}
.ws30{word-spacing:-37.929600px;}
.ws4e{word-spacing:-37.927800px;}
.ws5c{word-spacing:-37.926000px;}
.ws56{word-spacing:-37.922400px;}
.ws59{word-spacing:-37.921800px;}
.ws8{word-spacing:-37.850700px;}
.ws68{word-spacing:-37.723500px;}
.ws67{word-spacing:-37.721700px;}
.wsb{word-spacing:-37.717200px;}
.ws51{word-spacing:-37.715400px;}
.ws6d{word-spacing:-37.703700px;}
.ws53{word-spacing:-37.627200px;}
.ws62{word-spacing:-37.434600px;}
.ws8a{word-spacing:-37.221300px;}
.ws66{word-spacing:-37.206000px;}
.ws38{word-spacing:-37.204200px;}
.ws39{word-spacing:-37.187100px;}
.ws60{word-spacing:-37.139700px;}
.ws58{word-spacing:-36.496500px;}
.ws34{word-spacing:-35.980200px;}
.wsf{word-spacing:-35.969100px;}
.ws12{word-spacing:-35.053200px;}
.ws86{word-spacing:-34.322400px;}
.ws1f{word-spacing:-33.974100px;}
.ws7f{word-spacing:-33.622200px;}
.ws6{word-spacing:-33.547800px;}
.ws29{word-spacing:-33.545700px;}
.ws80{word-spacing:-32.683200px;}
.ws2d{word-spacing:-32.396400px;}
.ws28{word-spacing:-32.383800px;}
.ws45{word-spacing:-32.169600px;}
.ws2c{word-spacing:-30.960000px;}
.ws4f{word-spacing:-30.014100px;}
.ws3a{word-spacing:-29.296800px;}
.ws7c{word-spacing:-28.360800px;}
.ws89{word-spacing:-27.784800px;}
.ws2a{word-spacing:-27.140400px;}
.ws17{word-spacing:-26.408400px;}
.ws16{word-spacing:-25.912800px;}
.ws1c{word-spacing:-25.695000px;}
.ws81{word-spacing:-25.197300px;}
.ws35{word-spacing:-24.480000px;}
.ws21{word-spacing:-24.248700px;}
.ws4{word-spacing:-23.687700px;}
.ws0{word-spacing:-23.390100px;}
.ws1{word-spacing:-23.178600px;}
.ws2{word-spacing:-23.174100px;}
.ws44{word-spacing:-22.320000px;}
.ws54{word-spacing:-21.603300px;}
.ws2e{word-spacing:-21.369600px;}
.ws50{word-spacing:-21.154800px;}
.ws77{word-spacing:-20.875200px;}
.ws7a{word-spacing:-20.871600px;}
.ws43{word-spacing:-20.443200px;}
.ws11{word-spacing:-19.912200px;}
.ws36{word-spacing:-19.715400px;}
.ws42{word-spacing:-19.206000px;}
.ws7b{word-spacing:-18.720000px;}
.ws2f{word-spacing:-18.500400px;}
.ws31{word-spacing:-17.990100px;}
.ws78{word-spacing:-17.774100px;}
.ws32{word-spacing:-17.772300px;}
.ws14{word-spacing:-16.831200px;}
.ws22{word-spacing:-16.326000px;}
.ws40{word-spacing:-15.617400px;}
.ws3c{word-spacing:-15.403200px;}
.ws2b{word-spacing:-14.180400px;}
.ws4c{word-spacing:-13.442400px;}
.ws73{word-spacing:-12.520800px;}
.ws4a{word-spacing:-11.300400px;}
.ws4b{word-spacing:-10.806000px;}
.ws47{word-spacing:-10.569600px;}
.ws3d{word-spacing:-9.342000px;}
.ws5b{word-spacing:-9.117000px;}
.ws3e{word-spacing:-8.927700px;}
.ws3f{word-spacing:-8.640000px;}
.ws82{word-spacing:-8.200800px;}
.ws1b{word-spacing:-7.920000px;}
.ws1d{word-spacing:-6.908100px;}
.ws49{word-spacing:-5.749200px;}
.ws3{word-spacing:-5.177700px;}
.ws37{word-spacing:-2.157000px;}
.ws41{word-spacing:-0.493200px;}
.ws13{word-spacing:-0.483300px;}
.ws10{word-spacing:-0.286800px;}
.ws63{word-spacing:0.000000px;}
.ws75{word-spacing:0.722700px;}
.ws26{word-spacing:4.327200px;}
.ws20{word-spacing:5.196900px;}
.ws71{word-spacing:17.002800px;}
.ws25{word-spacing:17.157300px;}
.ws24{word-spacing:17.994000px;}
.ws1e{word-spacing:18.942000px;}
.ws46{word-spacing:18.945000px;}
.ws1a{word-spacing:23.544000px;}
.ws19{word-spacing:23.760000px;}
.ws7e{word-spacing:26.362800px;}
.wse{word-spacing:27.363600px;}
.wsd{word-spacing:28.096200px;}
._4{margin-left:-1.134900px;}
._3{width:1.067400px;}
._15{width:18.139500px;}
._0{width:19.142100px;}
._6{width:20.980500px;}
._1a{width:22.079400px;}
._11{width:23.176800px;}
._16{width:24.278400px;}
._20{width:26.992800px;}
._1c{width:28.494900px;}
._23{width:29.656800px;}
._c{width:30.820800px;}
._13{width:32.760000px;}
._21{width:35.802900px;}
._9{width:37.185600px;}
._a{width:38.195700px;}
._18{width:39.768600px;}
._b{width:40.794300px;}
._17{width:42.836400px;}
._1f{width:44.073000px;}
._1e{width:45.981000px;}
._1d{width:47.617200px;}
._e{width:49.044600px;}
._f{width:50.819400px;}
._1b{width:54.861000px;}
._7{width:56.664000px;}
._8{width:58.205700px;}
._12{width:62.478000px;}
._14{width:74.794200px;}
._10{width:76.255800px;}
._d{width:80.936100px;}
._5{width:84.364200px;}
._22{width:158.400000px;}
._1{width:954.360000px;}
._2{width:1025.700300px;}
._19{width:1026.702900px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(227,108,9);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:3.765000px;}
.y5d{bottom:3.811500px;}
.y63{bottom:3.825000px;}
.y66{bottom:3.855000px;}
.y59{bottom:3.871500px;}
.y5b{bottom:3.975000px;}
.y8{bottom:4.575000px;}
.y69{bottom:4.711500px;}
.y61{bottom:24.495000px;}
.y65{bottom:24.555000px;}
.y68{bottom:25.411500px;}
.y7{bottom:72.900000px;}
.y5a{bottom:122.100000px;}
.y58{bottom:143.625000px;}
.y57{bottom:168.915000px;}
.y2e{bottom:172.875000px;}
.y56{bottom:189.615000px;}
.y2d{bottom:193.575000px;}
.y55{bottom:211.575000px;}
.y54{bottom:232.275000px;}
.y2c{bottom:234.975000px;}
.y53{bottom:254.415000px;}
.y2b{bottom:255.675000px;}
.y52{bottom:275.115000px;}
.y2a{bottom:276.375000px;}
.y84{bottom:295.815000px;}
.y29{bottom:297.075000px;}
.y83{bottom:316.515000px;}
.y28{bottom:317.775000px;}
.y82{bottom:337.215000px;}
.y27{bottom:338.475000px;}
.y51{bottom:339.915000px;}
.y81{bottom:357.915000px;}
.y26{bottom:359.175000px;}
.y50{bottom:360.436500px;}
.y80{bottom:378.615000px;}
.y25{bottom:379.875000px;}
.y4f{bottom:382.575000px;}
.y7f{bottom:399.315000px;}
.y4e{bottom:403.275000px;}
.y7e{bottom:420.015000px;}
.y24{bottom:421.275000px;}
.y4d{bottom:425.236500px;}
.y23{bottom:441.975000px;}
.y4c{bottom:445.936500px;}
.y7d{bottom:449.715000px;}
.y22{bottom:462.675000px;}
.y4b{bottom:468.075000px;}
.y7c{bottom:479.415000px;}
.y4a{bottom:488.775000px;}
.y7b{bottom:500.115000px;}
.y21{bottom:504.075000px;}
.y49{bottom:509.296500px;}
.y7a{bottom:520.815000px;}
.y20{bottom:524.775000px;}
.y48{bottom:531.436500px;}
.y79{bottom:541.515000px;}
.y1f{bottom:545.475000px;}
.y47{bottom:552.136500px;}
.y78{bottom:562.215000px;}
.y1e{bottom:566.175000px;}
.y46{bottom:572.836500px;}
.y77{bottom:582.915000px;}
.y1d{bottom:586.875000px;}
.y45{bottom:593.536500px;}
.y76{bottom:603.615000px;}
.y1c{bottom:607.575000px;}
.y44{bottom:614.236500px;}
.y75{bottom:624.315000px;}
.y1b{bottom:628.275000px;}
.y43{bottom:634.936500px;}
.y74{bottom:645.015000px;}
.y1a{bottom:648.975000px;}
.y42{bottom:655.636500px;}
.y73{bottom:665.715000px;}
.y19{bottom:669.675000px;}
.y41{bottom:676.336500px;}
.y72{bottom:686.415000px;}
.y18{bottom:690.375000px;}
.y40{bottom:697.036500px;}
.y71{bottom:707.115000px;}
.y3f{bottom:717.736500px;}
.y70{bottom:727.815000px;}
.y17{bottom:731.775000px;}
.y3e{bottom:738.436500px;}
.y6f{bottom:748.515000px;}
.y16{bottom:752.475000px;}
.y3d{bottom:759.136500px;}
.y6e{bottom:770.475000px;}
.y3c{bottom:779.836500px;}
.y6d{bottom:791.175000px;}
.y15{bottom:793.875000px;}
.y3b{bottom:800.536500px;}
.y6c{bottom:813.315000px;}
.y14{bottom:814.575000px;}
.y3a{bottom:821.236500px;}
.y6b{bottom:834.015000px;}
.y13{bottom:835.275000px;}
.y39{bottom:841.936500px;}
.y12{bottom:855.975000px;}
.y38{bottom:862.636500px;}
.y11{bottom:876.675000px;}
.y37{bottom:883.336500px;}
.y10{bottom:897.375000px;}
.y6a{bottom:898.815000px;}
.y36{bottom:904.036500px;}
.y67{bottom:915.525000px;}
.yf{bottom:918.075000px;}
.y35{bottom:924.736500px;}
.ye{bottom:938.775000px;}
.y34{bottom:945.436500px;}
.y64{bottom:958.500000px;}
.y33{bottom:966.136500px;}
.yd{bottom:971.536500px;}
.y32{bottom:986.836500px;}
.y62{bottom:1000.650000px;}
.yc{bottom:1004.115000px;}
.y31{bottom:1007.536500px;}
.y60{bottom:1022.100000px;}
.y30{bottom:1028.236500px;}
.yb{bottom:1036.875000px;}
.y2f{bottom:1048.936500px;}
.y5e{bottom:1064.250000px;}
.ya{bottom:1069.636500px;}
.y5c{bottom:1085.625000px;}
.y9{bottom:1090.155000px;}
.y6{bottom:1131.915000px;}
.y5{bottom:1152.615000px;}
.y4{bottom:1173.315000px;}
.y3{bottom:1194.015000px;}
.y2{bottom:1214.715000px;}
.y1{bottom:1235.415000px;}
.h3{height:20.175000px;}
.h8{height:21.375000px;}
.h9{height:21.450000px;}
.ha{height:42.075000px;}
.hb{height:42.900000px;}
.h4{height:45.225146px;}
.h5{height:48.796875px;}
.h2{height:49.042969px;}
.h6{height:50.027344px;}
.h7{height:59.392000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w4{width:211.050000px;}
.w3{width:212.325000px;}
.w5{width:294.675000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.145000px;}
.x1a{left:14.955000px;}
.x12{left:18.405000px;}
.x11{left:19.800000px;}
.xd{left:21.975000px;}
.x1d{left:25.425000px;}
.x14{left:28.620000px;}
.x1b{left:30.600000px;}
.x17{left:34.200000px;}
.x10{left:39.285000px;}
.x13{left:40.513500px;}
.x1f{left:44.820000px;}
.xc{left:49.363500px;}
.x18{left:51.163500px;}
.x19{left:65.025000px;}
.x16{left:68.955000px;}
.xe{left:84.975000px;}
.x1e{left:86.085000px;}
.xf{left:91.800000px;}
.x15{left:102.780000px;}
.x8{left:119.475000px;}
.x1c{left:120.780000px;}
.x1{left:127.620000px;}
.x4{left:151.560000px;}
.x3{left:160.560000px;}
.x6{left:179.280000px;}
.xa{left:331.725000px;}
.x20{left:451.800000px;}
.x2{left:470.025000px;}
.x7{left:483.300000px;}
.xb{left:542.700000px;}
.x5{left:607.680000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:32.000000pt;}
.ls2{letter-spacing:277.632000pt;}
.wsc{word-spacing:-49.728000pt;}
.ws5{word-spacing:-36.416000pt;}
.ws23{word-spacing:-34.672800pt;}
.ws6c{word-spacing:-34.562933pt;}
.ws84{word-spacing:-34.545600pt;}
.ws27{word-spacing:-34.544800pt;}
.ws5e{word-spacing:-34.362400pt;}
.ws55{word-spacing:-34.359200pt;}
.ws7d{word-spacing:-34.358400pt;}
.ws18{word-spacing:-34.356800pt;}
.ws83{word-spacing:-34.355200pt;}
.ws5a{word-spacing:-34.350400pt;}
.ws5f{word-spacing:-34.301600pt;}
.ws72{word-spacing:-34.211200pt;}
.ws87{word-spacing:-34.176000pt;}
.ws74{word-spacing:-34.171733pt;}
.ws3b{word-spacing:-34.169600pt;}
.ws48{word-spacing:-34.168800pt;}
.wsa{word-spacing:-34.166400pt;}
.ws4d{word-spacing:-34.164800pt;}
.ws5d{word-spacing:-34.161867pt;}
.ws79{word-spacing:-34.153600pt;}
.ws76{word-spacing:-34.153067pt;}
.ws70{word-spacing:-34.091200pt;}
.ws6f{word-spacing:-33.922933pt;}
.ws6b{word-spacing:-33.920000pt;}
.ws57{word-spacing:-33.914933pt;}
.ws6a{word-spacing:-33.914667pt;}
.ws52{word-spacing:-33.910400pt;}
.ws15{word-spacing:-33.906667pt;}
.ws7{word-spacing:-33.854400pt;}
.ws85{word-spacing:-33.848800pt;}
.ws88{word-spacing:-33.731733pt;}
.ws61{word-spacing:-33.728000pt;}
.ws69{word-spacing:-33.724533pt;}
.ws33{word-spacing:-33.723733pt;}
.ws9{word-spacing:-33.720800pt;}
.ws64{word-spacing:-33.719200pt;}
.ws6e{word-spacing:-33.717867pt;}
.ws65{word-spacing:-33.716000pt;}
.ws30{word-spacing:-33.715200pt;}
.ws4e{word-spacing:-33.713600pt;}
.ws5c{word-spacing:-33.712000pt;}
.ws56{word-spacing:-33.708800pt;}
.ws59{word-spacing:-33.708267pt;}
.ws8{word-spacing:-33.645067pt;}
.ws68{word-spacing:-33.532000pt;}
.ws67{word-spacing:-33.530400pt;}
.wsb{word-spacing:-33.526400pt;}
.ws51{word-spacing:-33.524800pt;}
.ws6d{word-spacing:-33.514400pt;}
.ws53{word-spacing:-33.446400pt;}
.ws62{word-spacing:-33.275200pt;}
.ws8a{word-spacing:-33.085600pt;}
.ws66{word-spacing:-33.072000pt;}
.ws38{word-spacing:-33.070400pt;}
.ws39{word-spacing:-33.055200pt;}
.ws60{word-spacing:-33.013067pt;}
.ws58{word-spacing:-32.441333pt;}
.ws34{word-spacing:-31.982400pt;}
.wsf{word-spacing:-31.972533pt;}
.ws12{word-spacing:-31.158400pt;}
.ws86{word-spacing:-30.508800pt;}
.ws1f{word-spacing:-30.199200pt;}
.ws7f{word-spacing:-29.886400pt;}
.ws6{word-spacing:-29.820267pt;}
.ws29{word-spacing:-29.818400pt;}
.ws80{word-spacing:-29.051733pt;}
.ws2d{word-spacing:-28.796800pt;}
.ws28{word-spacing:-28.785600pt;}
.ws45{word-spacing:-28.595200pt;}
.ws2c{word-spacing:-27.520000pt;}
.ws4f{word-spacing:-26.679200pt;}
.ws3a{word-spacing:-26.041600pt;}
.ws7c{word-spacing:-25.209600pt;}
.ws89{word-spacing:-24.697600pt;}
.ws2a{word-spacing:-24.124800pt;}
.ws17{word-spacing:-23.474133pt;}
.ws16{word-spacing:-23.033600pt;}
.ws1c{word-spacing:-22.840000pt;}
.ws81{word-spacing:-22.397600pt;}
.ws35{word-spacing:-21.760000pt;}
.ws21{word-spacing:-21.554400pt;}
.ws4{word-spacing:-21.055733pt;}
.ws0{word-spacing:-20.791200pt;}
.ws1{word-spacing:-20.603200pt;}
.ws2{word-spacing:-20.599200pt;}
.ws44{word-spacing:-19.840000pt;}
.ws54{word-spacing:-19.202933pt;}
.ws2e{word-spacing:-18.995200pt;}
.ws50{word-spacing:-18.804267pt;}
.ws77{word-spacing:-18.555733pt;}
.ws7a{word-spacing:-18.552533pt;}
.ws43{word-spacing:-18.171733pt;}
.ws11{word-spacing:-17.699733pt;}
.ws36{word-spacing:-17.524800pt;}
.ws42{word-spacing:-17.072000pt;}
.ws7b{word-spacing:-16.640000pt;}
.ws2f{word-spacing:-16.444800pt;}
.ws31{word-spacing:-15.991200pt;}
.ws78{word-spacing:-15.799200pt;}
.ws32{word-spacing:-15.797600pt;}
.ws14{word-spacing:-14.961067pt;}
.ws22{word-spacing:-14.512000pt;}
.ws40{word-spacing:-13.882133pt;}
.ws3c{word-spacing:-13.691733pt;}
.ws2b{word-spacing:-12.604800pt;}
.ws4c{word-spacing:-11.948800pt;}
.ws73{word-spacing:-11.129600pt;}
.ws4a{word-spacing:-10.044800pt;}
.ws4b{word-spacing:-9.605333pt;}
.ws47{word-spacing:-9.395200pt;}
.ws3d{word-spacing:-8.304000pt;}
.ws5b{word-spacing:-8.104000pt;}
.ws3e{word-spacing:-7.935733pt;}
.ws3f{word-spacing:-7.680000pt;}
.ws82{word-spacing:-7.289600pt;}
.ws1b{word-spacing:-7.040000pt;}
.ws1d{word-spacing:-6.140533pt;}
.ws49{word-spacing:-5.110400pt;}
.ws3{word-spacing:-4.602400pt;}
.ws37{word-spacing:-1.917333pt;}
.ws41{word-spacing:-0.438400pt;}
.ws13{word-spacing:-0.429600pt;}
.ws10{word-spacing:-0.254933pt;}
.ws63{word-spacing:0.000000pt;}
.ws75{word-spacing:0.642400pt;}
.ws26{word-spacing:3.846400pt;}
.ws20{word-spacing:4.619467pt;}
.ws71{word-spacing:15.113600pt;}
.ws25{word-spacing:15.250933pt;}
.ws24{word-spacing:15.994667pt;}
.ws1e{word-spacing:16.837333pt;}
.ws46{word-spacing:16.840000pt;}
.ws1a{word-spacing:20.928000pt;}
.ws19{word-spacing:21.120000pt;}
.ws7e{word-spacing:23.433600pt;}
.wse{word-spacing:24.323200pt;}
.wsd{word-spacing:24.974400pt;}
._4{margin-left:-1.008800pt;}
._3{width:0.948800pt;}
._15{width:16.124000pt;}
._0{width:17.015200pt;}
._6{width:18.649333pt;}
._1a{width:19.626133pt;}
._11{width:20.601600pt;}
._16{width:21.580800pt;}
._20{width:23.993600pt;}
._1c{width:25.328800pt;}
._23{width:26.361600pt;}
._c{width:27.396267pt;}
._13{width:29.120000pt;}
._21{width:31.824800pt;}
._9{width:33.053867pt;}
._a{width:33.951733pt;}
._18{width:35.349867pt;}
._b{width:36.261600pt;}
._17{width:38.076800pt;}
._1f{width:39.176000pt;}
._1e{width:40.872000pt;}
._1d{width:42.326400pt;}
._e{width:43.595200pt;}
._f{width:45.172800pt;}
._1b{width:48.765333pt;}
._7{width:50.368000pt;}
._8{width:51.738400pt;}
._12{width:55.536000pt;}
._14{width:66.483733pt;}
._10{width:67.782933pt;}
._d{width:71.943200pt;}
._5{width:74.990400pt;}
._22{width:140.800000pt;}
._1{width:848.320000pt;}
._2{width:911.733600pt;}
._19{width:912.624800pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:3.346667pt;}
.y5d{bottom:3.388000pt;}
.y63{bottom:3.400000pt;}
.y66{bottom:3.426667pt;}
.y59{bottom:3.441333pt;}
.y5b{bottom:3.533333pt;}
.y8{bottom:4.066667pt;}
.y69{bottom:4.188000pt;}
.y61{bottom:21.773333pt;}
.y65{bottom:21.826667pt;}
.y68{bottom:22.588000pt;}
.y7{bottom:64.800000pt;}
.y5a{bottom:108.533333pt;}
.y58{bottom:127.666667pt;}
.y57{bottom:150.146667pt;}
.y2e{bottom:153.666667pt;}
.y56{bottom:168.546667pt;}
.y2d{bottom:172.066667pt;}
.y55{bottom:188.066667pt;}
.y54{bottom:206.466667pt;}
.y2c{bottom:208.866667pt;}
.y53{bottom:226.146667pt;}
.y2b{bottom:227.266667pt;}
.y52{bottom:244.546667pt;}
.y2a{bottom:245.666667pt;}
.y84{bottom:262.946667pt;}
.y29{bottom:264.066667pt;}
.y83{bottom:281.346667pt;}
.y28{bottom:282.466667pt;}
.y82{bottom:299.746667pt;}
.y27{bottom:300.866667pt;}
.y51{bottom:302.146667pt;}
.y81{bottom:318.146667pt;}
.y26{bottom:319.266667pt;}
.y50{bottom:320.388000pt;}
.y80{bottom:336.546667pt;}
.y25{bottom:337.666667pt;}
.y4f{bottom:340.066667pt;}
.y7f{bottom:354.946667pt;}
.y4e{bottom:358.466667pt;}
.y7e{bottom:373.346667pt;}
.y24{bottom:374.466667pt;}
.y4d{bottom:377.988000pt;}
.y23{bottom:392.866667pt;}
.y4c{bottom:396.388000pt;}
.y7d{bottom:399.746667pt;}
.y22{bottom:411.266667pt;}
.y4b{bottom:416.066667pt;}
.y7c{bottom:426.146667pt;}
.y4a{bottom:434.466667pt;}
.y7b{bottom:444.546667pt;}
.y21{bottom:448.066667pt;}
.y49{bottom:452.708000pt;}
.y7a{bottom:462.946667pt;}
.y20{bottom:466.466667pt;}
.y48{bottom:472.388000pt;}
.y79{bottom:481.346667pt;}
.y1f{bottom:484.866667pt;}
.y47{bottom:490.788000pt;}
.y78{bottom:499.746667pt;}
.y1e{bottom:503.266667pt;}
.y46{bottom:509.188000pt;}
.y77{bottom:518.146667pt;}
.y1d{bottom:521.666667pt;}
.y45{bottom:527.588000pt;}
.y76{bottom:536.546667pt;}
.y1c{bottom:540.066667pt;}
.y44{bottom:545.988000pt;}
.y75{bottom:554.946667pt;}
.y1b{bottom:558.466667pt;}
.y43{bottom:564.388000pt;}
.y74{bottom:573.346667pt;}
.y1a{bottom:576.866667pt;}
.y42{bottom:582.788000pt;}
.y73{bottom:591.746667pt;}
.y19{bottom:595.266667pt;}
.y41{bottom:601.188000pt;}
.y72{bottom:610.146667pt;}
.y18{bottom:613.666667pt;}
.y40{bottom:619.588000pt;}
.y71{bottom:628.546667pt;}
.y3f{bottom:637.988000pt;}
.y70{bottom:646.946667pt;}
.y17{bottom:650.466667pt;}
.y3e{bottom:656.388000pt;}
.y6f{bottom:665.346667pt;}
.y16{bottom:668.866667pt;}
.y3d{bottom:674.788000pt;}
.y6e{bottom:684.866667pt;}
.y3c{bottom:693.188000pt;}
.y6d{bottom:703.266667pt;}
.y15{bottom:705.666667pt;}
.y3b{bottom:711.588000pt;}
.y6c{bottom:722.946667pt;}
.y14{bottom:724.066667pt;}
.y3a{bottom:729.988000pt;}
.y6b{bottom:741.346667pt;}
.y13{bottom:742.466667pt;}
.y39{bottom:748.388000pt;}
.y12{bottom:760.866667pt;}
.y38{bottom:766.788000pt;}
.y11{bottom:779.266667pt;}
.y37{bottom:785.188000pt;}
.y10{bottom:797.666667pt;}
.y6a{bottom:798.946667pt;}
.y36{bottom:803.588000pt;}
.y67{bottom:813.800000pt;}
.yf{bottom:816.066667pt;}
.y35{bottom:821.988000pt;}
.ye{bottom:834.466667pt;}
.y34{bottom:840.388000pt;}
.y64{bottom:852.000000pt;}
.y33{bottom:858.788000pt;}
.yd{bottom:863.588000pt;}
.y32{bottom:877.188000pt;}
.y62{bottom:889.466667pt;}
.yc{bottom:892.546667pt;}
.y31{bottom:895.588000pt;}
.y60{bottom:908.533333pt;}
.y30{bottom:913.988000pt;}
.yb{bottom:921.666667pt;}
.y2f{bottom:932.388000pt;}
.y5e{bottom:946.000000pt;}
.ya{bottom:950.788000pt;}
.y5c{bottom:965.000000pt;}
.y9{bottom:969.026667pt;}
.y6{bottom:1006.146667pt;}
.y5{bottom:1024.546667pt;}
.y4{bottom:1042.946667pt;}
.y3{bottom:1061.346667pt;}
.y2{bottom:1079.746667pt;}
.y1{bottom:1098.146667pt;}
.h3{height:17.933333pt;}
.h8{height:19.000000pt;}
.h9{height:19.066667pt;}
.ha{height:37.400000pt;}
.hb{height:38.133333pt;}
.h4{height:40.200130pt;}
.h5{height:43.375000pt;}
.h2{height:43.593750pt;}
.h6{height:44.468750pt;}
.h7{height:52.792889pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w4{width:187.600000pt;}
.w3{width:188.733333pt;}
.w5{width:261.933333pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.240000pt;}
.x1a{left:13.293333pt;}
.x12{left:16.360000pt;}
.x11{left:17.600000pt;}
.xd{left:19.533333pt;}
.x1d{left:22.600000pt;}
.x14{left:25.440000pt;}
.x1b{left:27.200000pt;}
.x17{left:30.400000pt;}
.x10{left:34.920000pt;}
.x13{left:36.012000pt;}
.x1f{left:39.840000pt;}
.xc{left:43.878667pt;}
.x18{left:45.478667pt;}
.x19{left:57.800000pt;}
.x16{left:61.293333pt;}
.xe{left:75.533333pt;}
.x1e{left:76.520000pt;}
.xf{left:81.600000pt;}
.x15{left:91.360000pt;}
.x8{left:106.200000pt;}
.x1c{left:107.360000pt;}
.x1{left:113.440000pt;}
.x4{left:134.720000pt;}
.x3{left:142.720000pt;}
.x6{left:159.360000pt;}
.xa{left:294.866667pt;}
.x20{left:401.600000pt;}
.x2{left:417.800000pt;}
.x7{left:429.600000pt;}
.xb{left:482.400000pt;}
.x5{left:540.160000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  