
    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_cbff25b24e8c81815eed84cd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_b83d96eb041caaacb21f20f3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_66e32c90743c57ed00f6058c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.704000;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_17bfffe09cc11b3c83985697.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.911000;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_7f46788126615f3dd4246fe4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.705000;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:ff6;src:url('chunks/assets/font_29624d9885ca62dec3490ccc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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:ff7;src:url('chunks/assets/font_59d1e3bcaa7d8fca559d236a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.908000;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;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws49{word-spacing:-19.510886px;}
.ws73{word-spacing:-17.932800px;}
.ws4f{word-spacing:-3.873485px;}
.ws1f{word-spacing:-3.443098px;}
.ws26{word-spacing:-3.299635px;}
.ws28{word-spacing:-3.012710px;}
.ws22{word-spacing:-2.797517px;}
.ws55{word-spacing:-2.438861px;}
.ws40{word-spacing:-2.080205px;}
.ws54{word-spacing:-2.008474px;}
.wsd{word-spacing:-1.865011px;}
.ws3f{word-spacing:-1.075968px;}
.ws5b{word-spacing:-0.430387px;}
.ws58{word-spacing:-0.286925px;}
.ws34{word-spacing:-0.215194px;}
.ws17{word-spacing:0.000000px;}
.ws47{word-spacing:0.143462px;}
.ws65{word-spacing:0.215194px;}
.ws5d{word-spacing:0.286925px;}
.ws66{word-spacing:0.358656px;}
.ws44{word-spacing:0.789043px;}
.ws30{word-spacing:0.860774px;}
.ws2c{word-spacing:1.219430px;}
.ws51{word-spacing:1.506355px;}
.ws3e{word-spacing:1.793280px;}
.ws8{word-spacing:2.042184px;}
.ws25{word-spacing:2.080205px;}
.ws11{word-spacing:2.151936px;}
.ws19{word-spacing:2.438861px;}
.wsb{word-spacing:2.500366px;}
.wsf{word-spacing:2.510592px;}
.ws59{word-spacing:3.514829px;}
.ws21{word-spacing:3.586560px;}
.ws4{word-spacing:3.613094px;}
.ws23{word-spacing:3.873485px;}
.ws12{word-spacing:3.945216px;}
.ws36{word-spacing:4.016947px;}
.ws18{word-spacing:4.088678px;}
.ws13{word-spacing:4.303872px;}
.ws60{word-spacing:4.375603px;}
.ws10{word-spacing:4.519066px;}
.ws1{word-spacing:4.648169px;}
.ws56{word-spacing:4.734259px;}
.ws5c{word-spacing:4.805990px;}
.ws33{word-spacing:4.877722px;}
.ws38{word-spacing:4.949453px;}
.ws4d{word-spacing:5.021184px;}
.ws71{word-spacing:5.092915px;}
.ws64{word-spacing:5.164646px;}
.ws3d{word-spacing:5.236378px;}
.ws3a{word-spacing:5.308109px;}
.ws1d{word-spacing:5.523302px;}
.ws39{word-spacing:5.595034px;}
.ws46{word-spacing:5.881958px;}
.ws1b{word-spacing:5.953690px;}
.ws32{word-spacing:6.240614px;}
.ws6c{word-spacing:6.384077px;}
.ws5{word-spacing:6.427642px;}
.ws1e{word-spacing:6.455775px;}
.wse{word-spacing:6.599270px;}
.ws2{word-spacing:6.885824px;}
.ws43{word-spacing:7.101389px;}
.ws6e{word-spacing:7.173120px;}
.ws63{word-spacing:7.316582px;}
.ws62{word-spacing:7.388314px;}
.ws5e{word-spacing:7.675238px;}
.ws53{word-spacing:7.962163px;}
.ws15{word-spacing:8.033894px;}
.ws20{word-spacing:8.105626px;}
.ws6f{word-spacing:8.177357px;}
.ws72{word-spacing:8.320819px;}
.ws37{word-spacing:8.392550px;}
.ws24{word-spacing:8.536013px;}
.ws2b{word-spacing:8.607744px;}
.ws6a{word-spacing:8.751206px;}
.ws3c{word-spacing:8.894669px;}
.ws1c{word-spacing:9.038131px;}
.wsa{word-spacing:9.504008px;}
.ws31{word-spacing:9.540250px;}
.ws9{word-spacing:9.569463px;}
.ws14{word-spacing:9.683712px;}
.ws4a{word-spacing:10.042368px;}
.ws4e{word-spacing:10.257562px;}
.ws45{word-spacing:10.329293px;}
.ws67{word-spacing:10.544486px;}
.ws5f{word-spacing:10.616218px;}
.ws61{word-spacing:10.687949px;}
.ws3b{word-spacing:10.974874px;}
.ws16{word-spacing:11.046605px;}
.ws52{word-spacing:11.190067px;}
.ws2a{word-spacing:11.333530px;}
.ws3{word-spacing:11.467646px;}
.ws2d{word-spacing:11.548723px;}
.ws4c{word-spacing:11.620454px;}
.ws6b{word-spacing:11.692186px;}
.ws5a{word-spacing:11.763917px;}
.ws29{word-spacing:11.979110px;}
.ws35{word-spacing:12.050842px;}
.ws2e{word-spacing:12.266035px;}
.ws48{word-spacing:12.696422px;}
.ws42{word-spacing:13.270272px;}
.ws1a{word-spacing:13.628928px;}
.ws50{word-spacing:13.700659px;}
.ws7{word-spacing:13.758557px;}
.ws2f{word-spacing:14.131046px;}
.ws68{word-spacing:14.704896px;}
.ws27{word-spacing:14.776627px;}
.ws70{word-spacing:14.991821px;}
.ws41{word-spacing:15.063552px;}
.ws57{word-spacing:15.752091px;}
.ws4b{word-spacing:17.611354px;}
.ws6d{word-spacing:18.865306px;}
.ws6{word-spacing:32.661845px;}
.ws69{word-spacing:36.224256px;}
.ws0{word-spacing:37.316475px;}
.wsc{word-spacing:83.925075px;}
._1b{margin-left:-9.709486px;}
._3{margin-left:-6.972253px;}
._9{margin-left:-5.432732px;}
._22{margin-left:-4.355444px;}
._1{margin-left:-3.347325px;}
._5{margin-left:-2.324084px;}
._7{margin-left:-1.293910px;}
._4{width:1.424819px;}
._2{width:3.223350px;}
._14{width:18.076262px;}
._f{width:19.446362px;}
._c{width:21.544596px;}
._15{width:22.724431px;}
._17{width:24.498830px;}
._6{width:26.099287px;}
._16{width:28.136550px;}
._d{width:29.666116px;}
._13{width:30.694019px;}
._1d{width:32.478110px;}
._b{width:33.947507px;}
._18{width:36.028066px;}
._a{width:37.725280px;}
._10{width:39.684428px;}
._1f{width:41.799564px;}
._11{width:44.260033px;}
._21{width:45.269594px;}
._e{width:46.472766px;}
._1a{width:48.490291px;}
._0{width:50.333850px;}
._8{width:52.625498px;}
._1c{width:54.042280px;}
._19{width:55.640208px;}
._20{width:61.203788px;}
._1e{width:64.689931px;}
._12{width:116.203950px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs3{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:63.168000px;}
.y1b{bottom:122.517000px;}
.y8e{bottom:124.050000px;}
.y5e{bottom:124.870500px;}
.y76{bottom:128.959500px;}
.y3d{bottom:142.869000px;}
.y1a{bottom:149.407500px;}
.y8d{bottom:150.940500px;}
.y5d{bottom:151.762500px;}
.y75{bottom:155.850000px;}
.y3c{bottom:169.759500px;}
.y19{bottom:176.299500px;}
.y8c{bottom:177.832500px;}
.y5c{bottom:178.653000px;}
.y74{bottom:182.742000px;}
.y3b{bottom:196.650000px;}
.y18{bottom:203.190000px;}
.y8b{bottom:204.723000px;}
.y5b{bottom:205.543500px;}
.y73{bottom:209.632500px;}
.y3a{bottom:223.542000px;}
.y17{bottom:230.080500px;}
.y8a{bottom:231.613500px;}
.y5a{bottom:232.434000px;}
.y72{bottom:236.523000px;}
.y39{bottom:250.432500px;}
.y16{bottom:256.971000px;}
.y89{bottom:258.504000px;}
.y59{bottom:259.326000px;}
.y71{bottom:263.413500px;}
.y38{bottom:277.323000px;}
.y15{bottom:283.863000px;}
.y88{bottom:285.396000px;}
.y58{bottom:286.216500px;}
.y70{bottom:290.305500px;}
.y37{bottom:304.213500px;}
.y14{bottom:310.753500px;}
.y87{bottom:312.286500px;}
.y57{bottom:313.107000px;}
.y6f{bottom:317.196000px;}
.y36{bottom:331.105500px;}
.y13{bottom:337.644000px;}
.y86{bottom:339.177000px;}
.y56{bottom:339.997500px;}
.y6e{bottom:344.086500px;}
.y35{bottom:357.996000px;}
.y12{bottom:364.534500px;}
.y55{bottom:366.889500px;}
.y6d{bottom:370.977000px;}
.y85{bottom:383.826000px;}
.y34{bottom:384.886500px;}
.y54{bottom:393.780000px;}
.y6c{bottom:397.867500px;}
.y11{bottom:409.183500px;}
.y33{bottom:411.777000px;}
.y53{bottom:420.670500px;}
.y6b{bottom:424.759500px;}
.y32{bottom:438.667500px;}
.y6a{bottom:451.650000px;}
.y52{bottom:465.319500px;}
.y31{bottom:465.559500px;}
.y10{bottom:477.007500px;}
.y69{bottom:478.540500px;}
.y30{bottom:492.450000px;}
.yf{bottom:502.230000px;}
.y68{bottom:505.431000px;}
.y2f{bottom:519.340500px;}
.ye{bottom:527.451000px;}
.y67{bottom:532.323000px;}
.y51{bottom:533.143500px;}
.y2e{bottom:546.231000px;}
.yd{bottom:552.673500px;}
.y66{bottom:559.213500px;}
.y50{bottom:560.034000px;}
.y2d{bottom:573.123000px;}
.yc{bottom:577.894500px;}
.y65{bottom:586.104000px;}
.y4f{bottom:586.924500px;}
.y2c{bottom:600.013500px;}
.yb{bottom:603.117000px;}
.y84{bottom:612.994500px;}
.y4e{bottom:613.816500px;}
.y2b{bottom:626.904000px;}
.ya{bottom:628.338000px;}
.y64{bottom:630.753000px;}
.y83{bottom:639.886500px;}
.y4d{bottom:640.707000px;}
.y9{bottom:653.560500px;}
.y2a{bottom:653.794500px;}
.y82{bottom:666.777000px;}
.y4c{bottom:667.597500px;}
.y63{bottom:671.553000px;}
.y8{bottom:678.781500px;}
.y29{bottom:680.686500px;}
.y81{bottom:693.667500px;}
.y4b{bottom:694.488000px;}
.y7{bottom:704.004000px;}
.y28{bottom:707.577000px;}
.y80{bottom:720.558000px;}
.y4a{bottom:721.380000px;}
.y27{bottom:734.467500px;}
.y6{bottom:739.243500px;}
.y62{bottom:739.377000px;}
.y7f{bottom:747.450000px;}
.y49{bottom:748.270500px;}
.y95{bottom:761.358000px;}
.y61{bottom:766.267500px;}
.y7e{bottom:774.340500px;}
.y48{bottom:775.161000px;}
.y26{bottom:779.116500px;}
.y94{bottom:788.250000px;}
.y60{bottom:793.158000px;}
.y7d{bottom:801.231000px;}
.y47{bottom:802.051500px;}
.y5{bottom:807.739500px;}
.y93{bottom:815.140500px;}
.y5f{bottom:820.050000px;}
.y7c{bottom:828.121500px;}
.y46{bottom:828.943500px;}
.y4{bottom:841.120500px;}
.y92{bottom:842.031000px;}
.y25{bottom:846.940500px;}
.y7b{bottom:855.013500px;}
.y45{bottom:855.834000px;}
.y91{bottom:868.921500px;}
.y24{bottom:873.831000px;}
.y3{bottom:874.503000px;}
.y7a{bottom:881.904000px;}
.y44{bottom:882.724500px;}
.y90{bottom:895.812000px;}
.y23{bottom:900.721500px;}
.y79{bottom:908.794500px;}
.y43{bottom:909.615000px;}
.y22{bottom:927.613500px;}
.y2{bottom:934.222500px;}
.y42{bottom:936.505500px;}
.y8f{bottom:940.462500px;}
.y78{bottom:953.443500px;}
.y21{bottom:954.504000px;}
.y41{bottom:963.397500px;}
.y1{bottom:980.586000px;}
.y20{bottom:981.394500px;}
.y40{bottom:990.288000px;}
.y77{bottom:994.243500px;}
.y1f{bottom:1008.285000px;}
.y3f{bottom:1017.178500px;}
.y1e{bottom:1035.177000px;}
.y3e{bottom:1061.827500px;}
.y1d{bottom:1062.067500px;}
.h3{height:45.687311px;}
.h4{height:46.145493px;}
.h6{height:53.798400px;}
.h2{height:64.557900px;}
.h5{height:72.304680px;}
.h1{height:87.650325px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:108.000000px;}
.x1{left:125.115000px;}
.xa{left:134.338500px;}
.x8{left:151.897500px;}
.x7{left:176.443500px;}
.x2{left:190.501500px;}
.x5{left:248.818500px;}
.x4{left:269.838000px;}
.x3{left:356.434500px;}
.x6{left:423.000000px;}
.xb{left:454.609500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws49{word-spacing:-17.343010pt;}
.ws73{word-spacing:-15.940267pt;}
.ws4f{word-spacing:-3.443098pt;}
.ws1f{word-spacing:-3.060531pt;}
.ws26{word-spacing:-2.933009pt;}
.ws28{word-spacing:-2.677965pt;}
.ws22{word-spacing:-2.486682pt;}
.ws55{word-spacing:-2.167876pt;}
.ws40{word-spacing:-1.849071pt;}
.ws54{word-spacing:-1.785310pt;}
.wsd{word-spacing:-1.657788pt;}
.ws3f{word-spacing:-0.956416pt;}
.ws5b{word-spacing:-0.382566pt;}
.ws58{word-spacing:-0.255044pt;}
.ws34{word-spacing:-0.191283pt;}
.ws17{word-spacing:0.000000pt;}
.ws47{word-spacing:0.127522pt;}
.ws65{word-spacing:0.191283pt;}
.ws5d{word-spacing:0.255044pt;}
.ws66{word-spacing:0.318805pt;}
.ws44{word-spacing:0.701372pt;}
.ws30{word-spacing:0.765133pt;}
.ws2c{word-spacing:1.083938pt;}
.ws51{word-spacing:1.338982pt;}
.ws3e{word-spacing:1.594027pt;}
.ws8{word-spacing:1.815274pt;}
.ws25{word-spacing:1.849071pt;}
.ws11{word-spacing:1.912832pt;}
.ws19{word-spacing:2.167876pt;}
.wsb{word-spacing:2.222547pt;}
.wsf{word-spacing:2.231637pt;}
.ws59{word-spacing:3.124292pt;}
.ws21{word-spacing:3.188053pt;}
.ws4{word-spacing:3.211639pt;}
.ws23{word-spacing:3.443098pt;}
.ws12{word-spacing:3.506859pt;}
.ws36{word-spacing:3.570620pt;}
.ws18{word-spacing:3.634381pt;}
.ws13{word-spacing:3.825664pt;}
.ws60{word-spacing:3.889425pt;}
.ws10{word-spacing:4.016947pt;}
.ws1{word-spacing:4.131706pt;}
.ws56{word-spacing:4.208230pt;}
.ws5c{word-spacing:4.271991pt;}
.ws33{word-spacing:4.335753pt;}
.ws38{word-spacing:4.399514pt;}
.ws4d{word-spacing:4.463275pt;}
.ws71{word-spacing:4.527036pt;}
.ws64{word-spacing:4.590797pt;}
.ws3d{word-spacing:4.654558pt;}
.ws3a{word-spacing:4.718319pt;}
.ws1d{word-spacing:4.909602pt;}
.ws39{word-spacing:4.973363pt;}
.ws46{word-spacing:5.228407pt;}
.ws1b{word-spacing:5.292169pt;}
.ws32{word-spacing:5.547213pt;}
.ws6c{word-spacing:5.674735pt;}
.ws5{word-spacing:5.713459pt;}
.ws1e{word-spacing:5.738467pt;}
.wse{word-spacing:5.866018pt;}
.ws2{word-spacing:6.120732pt;}
.ws43{word-spacing:6.312346pt;}
.ws6e{word-spacing:6.376107pt;}
.ws63{word-spacing:6.503629pt;}
.ws62{word-spacing:6.567390pt;}
.ws5e{word-spacing:6.822434pt;}
.ws53{word-spacing:7.077478pt;}
.ws15{word-spacing:7.141239pt;}
.ws20{word-spacing:7.205001pt;}
.ws6f{word-spacing:7.268762pt;}
.ws72{word-spacing:7.396284pt;}
.ws37{word-spacing:7.460045pt;}
.ws24{word-spacing:7.587567pt;}
.ws2b{word-spacing:7.651328pt;}
.ws6a{word-spacing:7.778850pt;}
.ws3c{word-spacing:7.906372pt;}
.ws1c{word-spacing:8.033894pt;}
.wsa{word-spacing:8.448007pt;}
.ws31{word-spacing:8.480222pt;}
.ws9{word-spacing:8.506189pt;}
.ws14{word-spacing:8.607744pt;}
.ws4a{word-spacing:8.926549pt;}
.ws4e{word-spacing:9.117833pt;}
.ws45{word-spacing:9.181594pt;}
.ws67{word-spacing:9.372877pt;}
.ws5f{word-spacing:9.436638pt;}
.ws61{word-spacing:9.500399pt;}
.ws3b{word-spacing:9.755443pt;}
.ws16{word-spacing:9.819204pt;}
.ws52{word-spacing:9.946726pt;}
.ws2a{word-spacing:10.074249pt;}
.ws3{word-spacing:10.193463pt;}
.ws2d{word-spacing:10.265532pt;}
.ws4c{word-spacing:10.329293pt;}
.ws6b{word-spacing:10.393054pt;}
.ws5a{word-spacing:10.456815pt;}
.ws29{word-spacing:10.648098pt;}
.ws35{word-spacing:10.711859pt;}
.ws2e{word-spacing:10.903142pt;}
.ws48{word-spacing:11.285709pt;}
.ws42{word-spacing:11.795797pt;}
.ws1a{word-spacing:12.114603pt;}
.ws50{word-spacing:12.178364pt;}
.ws7{word-spacing:12.229828pt;}
.ws2f{word-spacing:12.560930pt;}
.ws68{word-spacing:13.071019pt;}
.ws27{word-spacing:13.134780pt;}
.ws70{word-spacing:13.326063pt;}
.ws41{word-spacing:13.389824pt;}
.ws57{word-spacing:14.001859pt;}
.ws4b{word-spacing:15.654537pt;}
.ws6d{word-spacing:16.769161pt;}
.ws6{word-spacing:29.032751pt;}
.ws69{word-spacing:32.199339pt;}
.ws0{word-spacing:33.170200pt;}
.wsc{word-spacing:74.600067pt;}
._1b{margin-left:-8.630654pt;}
._3{margin-left:-6.197558pt;}
._9{margin-left:-4.829095pt;}
._22{margin-left:-3.871506pt;}
._1{margin-left:-2.975400pt;}
._5{margin-left:-2.065853pt;}
._7{margin-left:-1.150142pt;}
._4{width:1.266506pt;}
._2{width:2.865200pt;}
._14{width:16.067789pt;}
._f{width:17.285655pt;}
._c{width:19.150752pt;}
._15{width:20.199494pt;}
._17{width:21.776738pt;}
._6{width:23.199366pt;}
._16{width:25.010267pt;}
._d{width:26.369881pt;}
._13{width:27.283573pt;}
._1d{width:28.869431pt;}
._b{width:30.175562pt;}
._18{width:32.024948pt;}
._a{width:33.533582pt;}
._10{width:35.275047pt;}
._1f{width:37.155168pt;}
._11{width:39.342251pt;}
._21{width:40.239639pt;}
._e{width:41.309125pt;}
._1a{width:43.102481pt;}
._0{width:44.741200pt;}
._8{width:46.778221pt;}
._1c{width:48.037582pt;}
._19{width:49.457963pt;}
._20{width:54.403367pt;}
._1e{width:57.502161pt;}
._12{width:103.292400pt;}
.fs2{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs3{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:56.149333pt;}
.y1b{bottom:108.904000pt;}
.y8e{bottom:110.266667pt;}
.y5e{bottom:110.996000pt;}
.y76{bottom:114.630667pt;}
.y3d{bottom:126.994667pt;}
.y1a{bottom:132.806667pt;}
.y8d{bottom:134.169333pt;}
.y5d{bottom:134.900000pt;}
.y75{bottom:138.533333pt;}
.y3c{bottom:150.897333pt;}
.y19{bottom:156.710667pt;}
.y8c{bottom:158.073333pt;}
.y5c{bottom:158.802667pt;}
.y74{bottom:162.437333pt;}
.y3b{bottom:174.800000pt;}
.y18{bottom:180.613333pt;}
.y8b{bottom:181.976000pt;}
.y5b{bottom:182.705333pt;}
.y73{bottom:186.340000pt;}
.y3a{bottom:198.704000pt;}
.y17{bottom:204.516000pt;}
.y8a{bottom:205.878667pt;}
.y5a{bottom:206.608000pt;}
.y72{bottom:210.242667pt;}
.y39{bottom:222.606667pt;}
.y16{bottom:228.418667pt;}
.y89{bottom:229.781333pt;}
.y59{bottom:230.512000pt;}
.y71{bottom:234.145333pt;}
.y38{bottom:246.509333pt;}
.y15{bottom:252.322667pt;}
.y88{bottom:253.685333pt;}
.y58{bottom:254.414667pt;}
.y70{bottom:258.049333pt;}
.y37{bottom:270.412000pt;}
.y14{bottom:276.225333pt;}
.y87{bottom:277.588000pt;}
.y57{bottom:278.317333pt;}
.y6f{bottom:281.952000pt;}
.y36{bottom:294.316000pt;}
.y13{bottom:300.128000pt;}
.y86{bottom:301.490667pt;}
.y56{bottom:302.220000pt;}
.y6e{bottom:305.854667pt;}
.y35{bottom:318.218667pt;}
.y12{bottom:324.030667pt;}
.y55{bottom:326.124000pt;}
.y6d{bottom:329.757333pt;}
.y85{bottom:341.178667pt;}
.y34{bottom:342.121333pt;}
.y54{bottom:350.026667pt;}
.y6c{bottom:353.660000pt;}
.y11{bottom:363.718667pt;}
.y33{bottom:366.024000pt;}
.y53{bottom:373.929333pt;}
.y6b{bottom:377.564000pt;}
.y32{bottom:389.926667pt;}
.y6a{bottom:401.466667pt;}
.y52{bottom:413.617333pt;}
.y31{bottom:413.830667pt;}
.y10{bottom:424.006667pt;}
.y69{bottom:425.369333pt;}
.y30{bottom:437.733333pt;}
.yf{bottom:446.426667pt;}
.y68{bottom:449.272000pt;}
.y2f{bottom:461.636000pt;}
.ye{bottom:468.845333pt;}
.y67{bottom:473.176000pt;}
.y51{bottom:473.905333pt;}
.y2e{bottom:485.538667pt;}
.yd{bottom:491.265333pt;}
.y66{bottom:497.078667pt;}
.y50{bottom:497.808000pt;}
.y2d{bottom:509.442667pt;}
.yc{bottom:513.684000pt;}
.y65{bottom:520.981333pt;}
.y4f{bottom:521.710667pt;}
.y2c{bottom:533.345333pt;}
.yb{bottom:536.104000pt;}
.y84{bottom:544.884000pt;}
.y4e{bottom:545.614667pt;}
.y2b{bottom:557.248000pt;}
.ya{bottom:558.522667pt;}
.y64{bottom:560.669333pt;}
.y83{bottom:568.788000pt;}
.y4d{bottom:569.517333pt;}
.y9{bottom:580.942667pt;}
.y2a{bottom:581.150667pt;}
.y82{bottom:592.690667pt;}
.y4c{bottom:593.420000pt;}
.y63{bottom:596.936000pt;}
.y8{bottom:603.361333pt;}
.y29{bottom:605.054667pt;}
.y81{bottom:616.593333pt;}
.y4b{bottom:617.322667pt;}
.y7{bottom:625.781333pt;}
.y28{bottom:628.957333pt;}
.y80{bottom:640.496000pt;}
.y4a{bottom:641.226667pt;}
.y27{bottom:652.860000pt;}
.y6{bottom:657.105333pt;}
.y62{bottom:657.224000pt;}
.y7f{bottom:664.400000pt;}
.y49{bottom:665.129333pt;}
.y95{bottom:676.762667pt;}
.y61{bottom:681.126667pt;}
.y7e{bottom:688.302667pt;}
.y48{bottom:689.032000pt;}
.y26{bottom:692.548000pt;}
.y94{bottom:700.666667pt;}
.y60{bottom:705.029333pt;}
.y7d{bottom:712.205333pt;}
.y47{bottom:712.934667pt;}
.y5{bottom:717.990667pt;}
.y93{bottom:724.569333pt;}
.y5f{bottom:728.933333pt;}
.y7c{bottom:736.108000pt;}
.y46{bottom:736.838667pt;}
.y4{bottom:747.662667pt;}
.y92{bottom:748.472000pt;}
.y25{bottom:752.836000pt;}
.y7b{bottom:760.012000pt;}
.y45{bottom:760.741333pt;}
.y91{bottom:772.374667pt;}
.y24{bottom:776.738667pt;}
.y3{bottom:777.336000pt;}
.y7a{bottom:783.914667pt;}
.y44{bottom:784.644000pt;}
.y90{bottom:796.277333pt;}
.y23{bottom:800.641333pt;}
.y79{bottom:807.817333pt;}
.y43{bottom:808.546667pt;}
.y22{bottom:824.545333pt;}
.y2{bottom:830.420000pt;}
.y42{bottom:832.449333pt;}
.y8f{bottom:835.966667pt;}
.y78{bottom:847.505333pt;}
.y21{bottom:848.448000pt;}
.y41{bottom:856.353333pt;}
.y1{bottom:871.632000pt;}
.y20{bottom:872.350667pt;}
.y40{bottom:880.256000pt;}
.y77{bottom:883.772000pt;}
.y1f{bottom:896.253333pt;}
.y3f{bottom:904.158667pt;}
.y1e{bottom:920.157333pt;}
.y3e{bottom:943.846667pt;}
.y1d{bottom:944.060000pt;}
.h3{height:40.610943pt;}
.h4{height:41.018216pt;}
.h6{height:47.820800pt;}
.h2{height:57.384800pt;}
.h5{height:64.270827pt;}
.h1{height:77.911400pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:96.000000pt;}
.x1{left:111.213333pt;}
.xa{left:119.412000pt;}
.x8{left:135.020000pt;}
.x7{left:156.838667pt;}
.x2{left:169.334667pt;}
.x5{left:221.172000pt;}
.x4{left:239.856000pt;}
.x3{left:316.830667pt;}
.x6{left:376.000000pt;}
.xb{left:404.097333pt;}
}




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