
    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_e7872e08726c54ac2d3f170d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.080566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_008907e68b6e95f9a7409a84.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7acc0c473d4cc6822adf989b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.097168;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_a8125c37a96384622749591d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_98b106e528cb250c5d5ec66c.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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:18.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-55.944000px;}
.ws8e{word-spacing:-38.653500px;}
.ws94{word-spacing:-38.652300px;}
.ws70{word-spacing:-38.648100px;}
.ws38{word-spacing:-38.646000px;}
.ws5a{word-spacing:-38.431800px;}
.ws19{word-spacing:-38.377500px;}
.wsf{word-spacing:-38.376000px;}
.ws14{word-spacing:-38.310000px;}
.ws76{word-spacing:-38.218500px;}
.ws4{word-spacing:-38.160000px;}
.ws86{word-spacing:-38.155200px;}
.ws40{word-spacing:-38.152800px;}
.ws5f{word-spacing:-38.151000px;}
.ws3{word-spacing:-38.150100px;}
.ws48{word-spacing:-38.143200px;}
.ws7d{word-spacing:-38.139300px;}
.ws2{word-spacing:-38.081700px;}
.ws6{word-spacing:-38.079600px;}
.ws10{word-spacing:-38.058300px;}
.ws0{word-spacing:-37.944000px;}
.ws82{word-spacing:-37.943100px;}
.ws88{word-spacing:-37.942800px;}
.ws1d{word-spacing:-37.942200px;}
.ws20{word-spacing:-37.936200px;}
.ws35{word-spacing:-37.935900px;}
.ws6b{word-spacing:-37.935300px;}
.ws5{word-spacing:-37.935000px;}
.ws81{word-spacing:-37.934100px;}
.ws8f{word-spacing:-37.932300px;}
.ws85{word-spacing:-37.929900px;}
.ws33{word-spacing:-37.928700px;}
.wse{word-spacing:-37.926000px;}
.ws24{word-spacing:-37.924200px;}
.ws18{word-spacing:-37.851300px;}
.ws65{word-spacing:-37.639800px;}
.wsd{word-spacing:-37.435200px;}
.ws77{word-spacing:-37.220400px;}
.ws90{word-spacing:-37.216800px;}
.ws62{word-spacing:-37.215000px;}
.ws71{word-spacing:-37.210800px;}
.ws63{word-spacing:-37.204200px;}
.ws7{word-spacing:-36.996900px;}
.ws2f{word-spacing:-36.702000px;}
.ws68{word-spacing:-36.504000px;}
.ws91{word-spacing:-36.503100px;}
.ws47{word-spacing:-36.501000px;}
.ws7b{word-spacing:-36.500400px;}
.ws67{word-spacing:-36.498600px;}
.ws4d{word-spacing:-36.497700px;}
.ws6f{word-spacing:-36.493800px;}
.ws93{word-spacing:-36.491400px;}
.ws57{word-spacing:-36.484200px;}
.ws59{word-spacing:-35.781000px;}
.ws1c{word-spacing:-35.286000px;}
.ws7f{word-spacing:-35.060400px;}
.ws3b{word-spacing:-35.055000px;}
.ws7e{word-spacing:-35.047800px;}
.ws28{word-spacing:-34.846800px;}
.ws13{word-spacing:-34.560000px;}
.ws5d{word-spacing:-34.326000px;}
.ws53{word-spacing:-34.116000px;}
.ws2d{word-spacing:-33.608700px;}
.ws27{word-spacing:-33.120000px;}
.ws3d{word-spacing:-32.900400px;}
.ws4b{word-spacing:-32.691300px;}
.ws8d{word-spacing:-32.406000px;}
.wsc{word-spacing:-32.383800px;}
.ws26{word-spacing:-32.184000px;}
.ws1e{word-spacing:-31.463100px;}
.wsa{word-spacing:-31.458600px;}
.ws52{word-spacing:-31.450500px;}
.ws1f{word-spacing:-31.237200px;}
.ws2e{word-spacing:-30.954600px;}
.ws73{word-spacing:-30.744000px;}
.ws2b{word-spacing:-30.720600px;}
.ws32{word-spacing:-30.717000px;}
.ws3c{word-spacing:-30.511200px;}
.ws34{word-spacing:-30.506400px;}
.ws80{word-spacing:-30.023100px;}
.ws56{word-spacing:-30.015000px;}
.ws66{word-spacing:-29.304000px;}
.ws29{word-spacing:-29.298000px;}
.ws37{word-spacing:-29.293200px;}
.ws12{word-spacing:-28.950000px;}
.ws11{word-spacing:-28.800000px;}
.ws36{word-spacing:-28.366200px;}
.ws2c{word-spacing:-27.856800px;}
.ws55{word-spacing:-27.856200px;}
.ws7a{word-spacing:-27.353400px;}
.ws51{word-spacing:-27.133200px;}
.ws79{word-spacing:-26.429100px;}
.ws64{word-spacing:-26.414100px;}
.ws6e{word-spacing:-25.892100px;}
.ws50{word-spacing:-23.031000px;}
.ws16{word-spacing:-22.824000px;}
.ws1b{word-spacing:-22.320000px;}
.ws44{word-spacing:-22.300200px;}
.ws45{word-spacing:-22.088700px;}
.ws22{word-spacing:-22.086300px;}
.ws15{word-spacing:-21.581100px;}
.ws54{word-spacing:-21.376800px;}
.ws3a{word-spacing:-20.647800px;}
.ws61{word-spacing:-20.417400px;}
.ws25{word-spacing:-20.154600px;}
.ws60{word-spacing:-19.944000px;}
.ws4a{word-spacing:-19.939200px;}
.ws84{word-spacing:-19.932300px;}
.ws5c{word-spacing:-19.931400px;}
.ws4f{word-spacing:-19.213200px;}
.ws92{word-spacing:-18.720000px;}
.ws46{word-spacing:-18.502200px;}
.ws42{word-spacing:-17.982900px;}
.ws41{word-spacing:-17.784000px;}
.ws4c{word-spacing:-17.783100px;}
.ws43{word-spacing:-17.776800px;}
.ws21{word-spacing:-17.767800px;}
.ws6c{word-spacing:-17.060400px;}
.ws3f{word-spacing:-17.055000px;}
.ws6d{word-spacing:-15.623100px;}
.ws30{word-spacing:-14.887800px;}
.ws4e{word-spacing:-13.951800px;}
.ws1a{word-spacing:-12.966000px;}
.ws78{word-spacing:-11.304000px;}
.ws2a{word-spacing:-11.077200px;}
.wsb{word-spacing:-9.858600px;}
.ws72{word-spacing:-9.144000px;}
.ws31{word-spacing:-8.640000px;}
.ws87{word-spacing:-8.424000px;}
.ws3e{word-spacing:-8.408700px;}
.ws8c{word-spacing:-6.264000px;}
.ws39{word-spacing:-6.046200px;}
.ws5b{word-spacing:-5.754600px;}
.ws5e{word-spacing:-4.821300px;}
.ws58{word-spacing:-4.108200px;}
.ws6a{word-spacing:-0.500400px;}
.ws83{word-spacing:0.000000px;}
.ws49{word-spacing:0.244800px;}
.ws23{word-spacing:2.395800px;}
.ws17{word-spacing:3.096000px;}
.ws7c{word-spacing:6.547800px;}
.ws89{word-spacing:8.856000px;}
.ws8a{word-spacing:8.861400px;}
.ws9{word-spacing:12.460800px;}
.ws8b{word-spacing:22.536000px;}
.ws69{word-spacing:26.856000px;}
.ws75{word-spacing:37.659900px;}
.ws74{word-spacing:38.016300px;}
.ws1{word-spacing:1037.484900px;}
._11{margin-left:-2.417400px;}
._5{margin-left:-1.175400px;}
._0{width:1.076400px;}
._1c{width:17.909100px;}
._1{width:18.968400px;}
._12{width:20.358000px;}
._a{width:21.717600px;}
._b{width:23.366700px;}
._7{width:24.768000px;}
._f{width:26.740800px;}
._8{width:28.035600px;}
._10{width:30.263400px;}
._16{width:31.342800px;}
._1e{width:34.229400px;}
._2{width:35.259600px;}
._18{width:36.642000px;}
._1b{width:37.808400px;}
._c{width:39.450000px;}
._19{width:40.821600px;}
._13{width:42.480000px;}
._9{width:43.992000px;}
._e{width:46.153800px;}
._6{width:47.251800px;}
._14{width:48.407400px;}
._4{width:49.464000px;}
._20{width:51.579000px;}
._1f{width:52.939800px;}
._1a{width:57.450000px;}
._d{width:59.400000px;}
._24{width:66.024000px;}
._3{width:69.624000px;}
._15{width:72.049500px;}
._1d{width:74.808000px;}
._25{width:77.279400px;}
._21{width:82.800000px;}
._23{width:84.096000px;}
._22{width:94.959300px;}
._17{width:99.923400px;}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(28,28,28);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:63.975000px;}
.y51{bottom:102.315000px;}
.y50{bottom:123.015000px;}
.y70{bottom:123.555000px;}
.y25{bottom:140.836500px;}
.y6f{bottom:144.255000px;}
.y24{bottom:161.536500px;}
.y4f{bottom:164.596500px;}
.y6e{bottom:164.955000px;}
.y23{bottom:182.236500px;}
.y4e{bottom:185.296500px;}
.y6d{bottom:185.655000px;}
.y22{bottom:202.936500px;}
.y4d{bottom:205.996500px;}
.y6c{bottom:206.175000px;}
.y4c{bottom:226.696500px;}
.y6b{bottom:226.875000px;}
.y4b{bottom:247.396500px;}
.y6a{bottom:247.575000px;}
.y4a{bottom:268.096500px;}
.y69{bottom:268.275000px;}
.y21{bottom:286.275000px;}
.y49{bottom:288.795000px;}
.y68{bottom:288.975000px;}
.y20{bottom:306.975000px;}
.y48{bottom:309.496500px;}
.y67{bottom:309.675000px;}
.y47{bottom:330.196500px;}
.y66{bottom:330.375000px;}
.y1f{bottom:348.736500px;}
.y46{bottom:350.896500px;}
.y65{bottom:351.075000px;}
.y1e{bottom:369.436500px;}
.y64{bottom:371.775000px;}
.y1d{bottom:390.136500px;}
.y45{bottom:392.475000px;}
.y1c{bottom:410.836500px;}
.y44{bottom:413.175000px;}
.y43{bottom:433.875000px;}
.y1b{bottom:452.415000px;}
.y42{bottom:454.575000px;}
.y1a{bottom:473.115000px;}
.y41{bottom:475.275000px;}
.y40{bottom:495.975000px;}
.y19{bottom:514.875000px;}
.y3f{bottom:516.675000px;}
.y18{bottom:535.575000px;}
.y63{bottom:537.375000px;}
.y17{bottom:556.275000px;}
.y62{bottom:558.075000px;}
.y3e{bottom:558.436500px;}
.y61{bottom:578.775000px;}
.y3d{bottom:579.136500px;}
.y16{bottom:598.036500px;}
.y60{bottom:599.475000px;}
.y3c{bottom:599.836500px;}
.y15{bottom:618.736500px;}
.y5f{bottom:620.175000px;}
.y3b{bottom:620.536500px;}
.y14{bottom:639.436500px;}
.y5e{bottom:640.875000px;}
.y3a{bottom:641.236500px;}
.y13{bottom:660.136500px;}
.y5d{bottom:661.575000px;}
.y39{bottom:661.936500px;}
.y5c{bottom:682.275000px;}
.y38{bottom:682.636500px;}
.y12{bottom:701.715000px;}
.y5b{bottom:702.975000px;}
.y37{bottom:703.336500px;}
.y11{bottom:722.415000px;}
.y5a{bottom:744.736500px;}
.y36{bottom:745.096500px;}
.y10{bottom:764.175000px;}
.y35{bottom:765.795000px;}
.yf{bottom:784.875000px;}
.y34{bottom:786.496500px;}
.y33{bottom:807.195000px;}
.ye{bottom:826.636500px;}
.y32{bottom:827.895000px;}
.y7a{bottom:828.436500px;}
.yd{bottom:847.336500px;}
.y59{bottom:848.596500px;}
.y79{bottom:849.136500px;}
.yc{bottom:868.036500px;}
.y58{bottom:869.295000px;}
.y31{bottom:869.475000px;}
.y78{bottom:869.836500px;}
.yb{bottom:888.736500px;}
.y30{bottom:890.175000px;}
.y77{bottom:890.536500px;}
.ya{bottom:909.436500px;}
.y2f{bottom:910.875000px;}
.y76{bottom:911.236500px;}
.y2e{bottom:931.575000px;}
.y75{bottom:931.936500px;}
.y9{bottom:951.015000px;}
.y2d{bottom:952.275000px;}
.y74{bottom:952.636500px;}
.y8{bottom:971.715000px;}
.y2c{bottom:972.975000px;}
.y73{bottom:973.336500px;}
.y2b{bottom:993.675000px;}
.y72{bottom:994.036500px;}
.y2a{bottom:1014.375000px;}
.y71{bottom:1014.736500px;}
.y29{bottom:1035.075000px;}
.y57{bottom:1035.436500px;}
.y28{bottom:1055.775000px;}
.y56{bottom:1056.136500px;}
.y7{bottom:1076.295000px;}
.y27{bottom:1076.475000px;}
.y55{bottom:1076.836500px;}
.y26{bottom:1097.175000px;}
.y54{bottom:1097.536500px;}
.y6{bottom:1117.875000px;}
.y53{bottom:1118.236500px;}
.y52{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h5{height:48.796875px;}
.h2{height:62.261719px;}
.h4{height:63.457031px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.xb{left:135.900000px;}
.x2{left:160.560000px;}
.xe{left:174.060000px;}
.x8{left:199.260000px;}
.x7{left:279.720000px;}
.xa{left:307.620000px;}
.x6{left:321.480000px;}
.x9{left:326.880000px;}
.x5{left:361.260000px;}
.xc{left:418.138500px;}
.xd{left:516.600000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:16.000000pt;}
.ws8{word-spacing:-49.728000pt;}
.ws8e{word-spacing:-34.358667pt;}
.ws94{word-spacing:-34.357600pt;}
.ws70{word-spacing:-34.353867pt;}
.ws38{word-spacing:-34.352000pt;}
.ws5a{word-spacing:-34.161600pt;}
.ws19{word-spacing:-34.113333pt;}
.wsf{word-spacing:-34.112000pt;}
.ws14{word-spacing:-34.053333pt;}
.ws76{word-spacing:-33.972000pt;}
.ws4{word-spacing:-33.920000pt;}
.ws86{word-spacing:-33.915733pt;}
.ws40{word-spacing:-33.913600pt;}
.ws5f{word-spacing:-33.912000pt;}
.ws3{word-spacing:-33.911200pt;}
.ws48{word-spacing:-33.905067pt;}
.ws7d{word-spacing:-33.901600pt;}
.ws2{word-spacing:-33.850400pt;}
.ws6{word-spacing:-33.848533pt;}
.ws10{word-spacing:-33.829600pt;}
.ws0{word-spacing:-33.728000pt;}
.ws82{word-spacing:-33.727200pt;}
.ws88{word-spacing:-33.726933pt;}
.ws1d{word-spacing:-33.726400pt;}
.ws20{word-spacing:-33.721067pt;}
.ws35{word-spacing:-33.720800pt;}
.ws6b{word-spacing:-33.720267pt;}
.ws5{word-spacing:-33.720000pt;}
.ws81{word-spacing:-33.719200pt;}
.ws8f{word-spacing:-33.717600pt;}
.ws85{word-spacing:-33.715467pt;}
.ws33{word-spacing:-33.714400pt;}
.wse{word-spacing:-33.712000pt;}
.ws24{word-spacing:-33.710400pt;}
.ws18{word-spacing:-33.645600pt;}
.ws65{word-spacing:-33.457600pt;}
.wsd{word-spacing:-33.275733pt;}
.ws77{word-spacing:-33.084800pt;}
.ws90{word-spacing:-33.081600pt;}
.ws62{word-spacing:-33.080000pt;}
.ws71{word-spacing:-33.076267pt;}
.ws63{word-spacing:-33.070400pt;}
.ws7{word-spacing:-32.886133pt;}
.ws2f{word-spacing:-32.624000pt;}
.ws68{word-spacing:-32.448000pt;}
.ws91{word-spacing:-32.447200pt;}
.ws47{word-spacing:-32.445333pt;}
.ws7b{word-spacing:-32.444800pt;}
.ws67{word-spacing:-32.443200pt;}
.ws4d{word-spacing:-32.442400pt;}
.ws6f{word-spacing:-32.438933pt;}
.ws93{word-spacing:-32.436800pt;}
.ws57{word-spacing:-32.430400pt;}
.ws59{word-spacing:-31.805333pt;}
.ws1c{word-spacing:-31.365333pt;}
.ws7f{word-spacing:-31.164800pt;}
.ws3b{word-spacing:-31.160000pt;}
.ws7e{word-spacing:-31.153600pt;}
.ws28{word-spacing:-30.974933pt;}
.ws13{word-spacing:-30.720000pt;}
.ws5d{word-spacing:-30.512000pt;}
.ws53{word-spacing:-30.325333pt;}
.ws2d{word-spacing:-29.874400pt;}
.ws27{word-spacing:-29.440000pt;}
.ws3d{word-spacing:-29.244800pt;}
.ws4b{word-spacing:-29.058933pt;}
.ws8d{word-spacing:-28.805333pt;}
.wsc{word-spacing:-28.785600pt;}
.ws26{word-spacing:-28.608000pt;}
.ws1e{word-spacing:-27.967200pt;}
.wsa{word-spacing:-27.963200pt;}
.ws52{word-spacing:-27.956000pt;}
.ws1f{word-spacing:-27.766400pt;}
.ws2e{word-spacing:-27.515200pt;}
.ws73{word-spacing:-27.328000pt;}
.ws2b{word-spacing:-27.307200pt;}
.ws32{word-spacing:-27.304000pt;}
.ws3c{word-spacing:-27.121067pt;}
.ws34{word-spacing:-27.116800pt;}
.ws80{word-spacing:-26.687200pt;}
.ws56{word-spacing:-26.680000pt;}
.ws66{word-spacing:-26.048000pt;}
.ws29{word-spacing:-26.042667pt;}
.ws37{word-spacing:-26.038400pt;}
.ws12{word-spacing:-25.733333pt;}
.ws11{word-spacing:-25.600000pt;}
.ws36{word-spacing:-25.214400pt;}
.ws2c{word-spacing:-24.761600pt;}
.ws55{word-spacing:-24.761067pt;}
.ws7a{word-spacing:-24.314133pt;}
.ws51{word-spacing:-24.118400pt;}
.ws79{word-spacing:-23.492533pt;}
.ws64{word-spacing:-23.479200pt;}
.ws6e{word-spacing:-23.015200pt;}
.ws50{word-spacing:-20.472000pt;}
.ws16{word-spacing:-20.288000pt;}
.ws1b{word-spacing:-19.840000pt;}
.ws44{word-spacing:-19.822400pt;}
.ws45{word-spacing:-19.634400pt;}
.ws22{word-spacing:-19.632267pt;}
.ws15{word-spacing:-19.183200pt;}
.ws54{word-spacing:-19.001600pt;}
.ws3a{word-spacing:-18.353600pt;}
.ws61{word-spacing:-18.148800pt;}
.ws25{word-spacing:-17.915200pt;}
.ws60{word-spacing:-17.728000pt;}
.ws4a{word-spacing:-17.723733pt;}
.ws84{word-spacing:-17.717600pt;}
.ws5c{word-spacing:-17.716800pt;}
.ws4f{word-spacing:-17.078400pt;}
.ws92{word-spacing:-16.640000pt;}
.ws46{word-spacing:-16.446400pt;}
.ws42{word-spacing:-15.984800pt;}
.ws41{word-spacing:-15.808000pt;}
.ws4c{word-spacing:-15.807200pt;}
.ws43{word-spacing:-15.801600pt;}
.ws21{word-spacing:-15.793600pt;}
.ws6c{word-spacing:-15.164800pt;}
.ws3f{word-spacing:-15.160000pt;}
.ws6d{word-spacing:-13.887200pt;}
.ws30{word-spacing:-13.233600pt;}
.ws4e{word-spacing:-12.401600pt;}
.ws1a{word-spacing:-11.525333pt;}
.ws78{word-spacing:-10.048000pt;}
.ws2a{word-spacing:-9.846400pt;}
.wsb{word-spacing:-8.763200pt;}
.ws72{word-spacing:-8.128000pt;}
.ws31{word-spacing:-7.680000pt;}
.ws87{word-spacing:-7.488000pt;}
.ws3e{word-spacing:-7.474400pt;}
.ws8c{word-spacing:-5.568000pt;}
.ws39{word-spacing:-5.374400pt;}
.ws5b{word-spacing:-5.115200pt;}
.ws5e{word-spacing:-4.285600pt;}
.ws58{word-spacing:-3.651733pt;}
.ws6a{word-spacing:-0.444800pt;}
.ws83{word-spacing:0.000000pt;}
.ws49{word-spacing:0.217600pt;}
.ws23{word-spacing:2.129600pt;}
.ws17{word-spacing:2.752000pt;}
.ws7c{word-spacing:5.820267pt;}
.ws89{word-spacing:7.872000pt;}
.ws8a{word-spacing:7.876800pt;}
.ws9{word-spacing:11.076267pt;}
.ws8b{word-spacing:20.032000pt;}
.ws69{word-spacing:23.872000pt;}
.ws75{word-spacing:33.475467pt;}
.ws74{word-spacing:33.792267pt;}
.ws1{word-spacing:922.208800pt;}
._11{margin-left:-2.148800pt;}
._5{margin-left:-1.044800pt;}
._0{width:0.956800pt;}
._1c{width:15.919200pt;}
._1{width:16.860800pt;}
._12{width:18.096000pt;}
._a{width:19.304533pt;}
._b{width:20.770400pt;}
._7{width:22.016000pt;}
._f{width:23.769600pt;}
._8{width:24.920533pt;}
._10{width:26.900800pt;}
._16{width:27.860267pt;}
._1e{width:30.426133pt;}
._2{width:31.341867pt;}
._18{width:32.570667pt;}
._1b{width:33.607467pt;}
._c{width:35.066667pt;}
._19{width:36.285867pt;}
._13{width:37.760000pt;}
._9{width:39.104000pt;}
._e{width:41.025600pt;}
._6{width:42.001600pt;}
._14{width:43.028800pt;}
._4{width:43.968000pt;}
._20{width:45.848000pt;}
._1f{width:47.057600pt;}
._1a{width:51.066667pt;}
._d{width:52.800000pt;}
._24{width:58.688000pt;}
._3{width:61.888000pt;}
._15{width:64.044000pt;}
._1d{width:66.496000pt;}
._25{width:68.692800pt;}
._21{width:73.600000pt;}
._23{width:74.752000pt;}
._22{width:84.408267pt;}
._17{width:88.820800pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y51{bottom:90.946667pt;}
.y50{bottom:109.346667pt;}
.y70{bottom:109.826667pt;}
.y25{bottom:125.188000pt;}
.y6f{bottom:128.226667pt;}
.y24{bottom:143.588000pt;}
.y4f{bottom:146.308000pt;}
.y6e{bottom:146.626667pt;}
.y23{bottom:161.988000pt;}
.y4e{bottom:164.708000pt;}
.y6d{bottom:165.026667pt;}
.y22{bottom:180.388000pt;}
.y4d{bottom:183.108000pt;}
.y6c{bottom:183.266667pt;}
.y4c{bottom:201.508000pt;}
.y6b{bottom:201.666667pt;}
.y4b{bottom:219.908000pt;}
.y6a{bottom:220.066667pt;}
.y4a{bottom:238.308000pt;}
.y69{bottom:238.466667pt;}
.y21{bottom:254.466667pt;}
.y49{bottom:256.706667pt;}
.y68{bottom:256.866667pt;}
.y20{bottom:272.866667pt;}
.y48{bottom:275.108000pt;}
.y67{bottom:275.266667pt;}
.y47{bottom:293.508000pt;}
.y66{bottom:293.666667pt;}
.y1f{bottom:309.988000pt;}
.y46{bottom:311.908000pt;}
.y65{bottom:312.066667pt;}
.y1e{bottom:328.388000pt;}
.y64{bottom:330.466667pt;}
.y1d{bottom:346.788000pt;}
.y45{bottom:348.866667pt;}
.y1c{bottom:365.188000pt;}
.y44{bottom:367.266667pt;}
.y43{bottom:385.666667pt;}
.y1b{bottom:402.146667pt;}
.y42{bottom:404.066667pt;}
.y1a{bottom:420.546667pt;}
.y41{bottom:422.466667pt;}
.y40{bottom:440.866667pt;}
.y19{bottom:457.666667pt;}
.y3f{bottom:459.266667pt;}
.y18{bottom:476.066667pt;}
.y63{bottom:477.666667pt;}
.y17{bottom:494.466667pt;}
.y62{bottom:496.066667pt;}
.y3e{bottom:496.388000pt;}
.y61{bottom:514.466667pt;}
.y3d{bottom:514.788000pt;}
.y16{bottom:531.588000pt;}
.y60{bottom:532.866667pt;}
.y3c{bottom:533.188000pt;}
.y15{bottom:549.988000pt;}
.y5f{bottom:551.266667pt;}
.y3b{bottom:551.588000pt;}
.y14{bottom:568.388000pt;}
.y5e{bottom:569.666667pt;}
.y3a{bottom:569.988000pt;}
.y13{bottom:586.788000pt;}
.y5d{bottom:588.066667pt;}
.y39{bottom:588.388000pt;}
.y5c{bottom:606.466667pt;}
.y38{bottom:606.788000pt;}
.y12{bottom:623.746667pt;}
.y5b{bottom:624.866667pt;}
.y37{bottom:625.188000pt;}
.y11{bottom:642.146667pt;}
.y5a{bottom:661.988000pt;}
.y36{bottom:662.308000pt;}
.y10{bottom:679.266667pt;}
.y35{bottom:680.706667pt;}
.yf{bottom:697.666667pt;}
.y34{bottom:699.108000pt;}
.y33{bottom:717.506667pt;}
.ye{bottom:734.788000pt;}
.y32{bottom:735.906667pt;}
.y7a{bottom:736.388000pt;}
.yd{bottom:753.188000pt;}
.y59{bottom:754.308000pt;}
.y79{bottom:754.788000pt;}
.yc{bottom:771.588000pt;}
.y58{bottom:772.706667pt;}
.y31{bottom:772.866667pt;}
.y78{bottom:773.188000pt;}
.yb{bottom:789.988000pt;}
.y30{bottom:791.266667pt;}
.y77{bottom:791.588000pt;}
.ya{bottom:808.388000pt;}
.y2f{bottom:809.666667pt;}
.y76{bottom:809.988000pt;}
.y2e{bottom:828.066667pt;}
.y75{bottom:828.388000pt;}
.y9{bottom:845.346667pt;}
.y2d{bottom:846.466667pt;}
.y74{bottom:846.788000pt;}
.y8{bottom:863.746667pt;}
.y2c{bottom:864.866667pt;}
.y73{bottom:865.188000pt;}
.y2b{bottom:883.266667pt;}
.y72{bottom:883.588000pt;}
.y2a{bottom:901.666667pt;}
.y71{bottom:901.988000pt;}
.y29{bottom:920.066667pt;}
.y57{bottom:920.388000pt;}
.y28{bottom:938.466667pt;}
.y56{bottom:938.788000pt;}
.y7{bottom:956.706667pt;}
.y27{bottom:956.866667pt;}
.y55{bottom:957.188000pt;}
.y26{bottom:975.266667pt;}
.y54{bottom:975.588000pt;}
.y6{bottom:993.666667pt;}
.y53{bottom:993.988000pt;}
.y52{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h5{height:43.375000pt;}
.h2{height:55.343750pt;}
.h4{height:56.406250pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.xb{left:120.800000pt;}
.x2{left:142.720000pt;}
.xe{left:154.720000pt;}
.x8{left:177.120000pt;}
.x7{left:248.640000pt;}
.xa{left:273.440000pt;}
.x6{left:285.760000pt;}
.x9{left:290.560000pt;}
.x5{left:321.120000pt;}
.xc{left:371.678667pt;}
.xd{left:459.200000pt;}
}




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