
    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_b61d4a51f9059c75041f6f75.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_ea0d23ff6ed6c3ad78e5f46f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.960000;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_cc1aef02ac6f365e24926720.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976000;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_2f4045b6c32d6df2494871ba.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.889000;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_fdda64ee59b428f5cd11b77b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.906000;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);}
.v2{vertical-align:-16.872000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.034000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:2.991857px;}
.ls4{letter-spacing:17.394700px;}
.ls3{letter-spacing:17.454475px;}
.ls7{letter-spacing:18.112007px;}
.ls5{letter-spacing:18.351109px;}
.ls0{letter-spacing:21.931142px;}
.ls6{letter-spacing:1599.519429px;}
.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;}
}
.ws4{word-spacing:-15.786786px;}
.ws44{word-spacing:-14.943900px;}
.ws3{word-spacing:-11.050667px;}
.ws46{word-spacing:-2.988780px;}
.ws31{word-spacing:-2.689902px;}
.ws29{word-spacing:-2.450800px;}
.ws2c{word-spacing:-1.613941px;}
.ws67{word-spacing:-1.554166px;}
.ws2d{word-spacing:-1.255288px;}
.ws4c{word-spacing:-1.195512px;}
.ws2b{word-spacing:-1.135736px;}
.ws2a{word-spacing:-1.075961px;}
.ws17{word-spacing:-0.681444px;}
.ws53{word-spacing:-0.657532px;}
.ws56{word-spacing:-0.597756px;}
.ws37{word-spacing:-0.478205px;}
.ws3d{word-spacing:-0.418429px;}
.ws8{word-spacing:-0.113574px;}
.ws62{word-spacing:-0.068144px;}
.ws5e{word-spacing:-0.059776px;}
.ws14{word-spacing:-0.056787px;}
.ws2{word-spacing:0.000000px;}
.ws5a{word-spacing:0.298878px;}
.ws33{word-spacing:0.358654px;}
.ws3c{word-spacing:0.478205px;}
.ws18{word-spacing:0.624657px;}
.ws40{word-spacing:0.777083px;}
.ws4b{word-spacing:0.836858px;}
.ws52{word-spacing:0.956410px;}
.ws65{word-spacing:1.016185px;}
.ws55{word-spacing:1.374839px;}
.ws47{word-spacing:1.434614px;}
.ws2e{word-spacing:1.494390px;}
.ws57{word-spacing:1.673717px;}
.ws13{word-spacing:1.703610px;}
.ws4a{word-spacing:1.733492px;}
.ws45{word-spacing:1.972595px;}
.ws1f{word-spacing:2.032370px;}
.ws16{word-spacing:2.101119px;}
.wse{word-spacing:2.157906px;}
.ws21{word-spacing:2.450800px;}
.ws20{word-spacing:2.510575px;}
.ws5b{word-spacing:2.869229px;}
.ws22{word-spacing:3.048556px;}
.ws54{word-spacing:3.108331px;}
.ws58{word-spacing:3.168107px;}
.ws60{word-spacing:3.227882px;}
.ws34{word-spacing:3.347434px;}
.ws2f{word-spacing:3.407209px;}
.ws63{word-spacing:3.466985px;}
.ws59{word-spacing:3.586536px;}
.ws48{word-spacing:3.765863px;}
.ws3e{word-spacing:3.885414px;}
.ws4f{word-spacing:3.945190px;}
.ws19{word-spacing:3.975090px;}
.ws30{word-spacing:4.064741px;}
.ws42{word-spacing:4.124516px;}
.ws10{word-spacing:4.429386px;}
.ws4d{word-spacing:4.662497px;}
.ws35{word-spacing:4.782048px;}
.ws1a{word-spacing:4.826895px;}
.ws4e{word-spacing:4.841824px;}
.ws27{word-spacing:5.260253px;}
.wsd{word-spacing:5.281191px;}
.ws9{word-spacing:5.394765px;}
.ws50{word-spacing:5.439580px;}
.wsc{word-spacing:5.735487px;}
.ws15{word-spacing:5.792274px;}
.ws25{word-spacing:5.977560px;}
.ws49{word-spacing:6.276438px;}
.ws28{word-spacing:6.336214px;}
.ws36{word-spacing:6.395989px;}
.wsa{word-spacing:6.644079px;}
.ws11{word-spacing:6.871227px;}
.ws51{word-spacing:7.471950px;}
.ws3b{word-spacing:7.890379px;}
.ws39{word-spacing:8.189257px;}
.ws12{word-spacing:8.234115px;}
.ws43{word-spacing:8.249033px;}
.ws41{word-spacing:8.787013px;}
.ws32{word-spacing:9.085891px;}
.ws26{word-spacing:9.982525px;}
.ws38{word-spacing:10.400954px;}
.ws6{word-spacing:10.412565px;}
.ws1e{word-spacing:10.418857px;}
.ws1d{word-spacing:10.420949px;}
.ws5d{word-spacing:11.536691px;}
.ws5f{word-spacing:11.955120px;}
.wsf{word-spacing:12.493140px;}
.ws3a{word-spacing:12.552876px;}
.ws1c{word-spacing:12.583999px;}
.ws5c{word-spacing:12.672427px;}
.ws24{word-spacing:13.090856px;}
.ws61{word-spacing:13.210408px;}
.ws3f{word-spacing:14.156916px;}
.ws64{word-spacing:14.884124px;}
.ws7{word-spacing:14.991768px;}
.ws0{word-spacing:15.729999px;}
.wsb{word-spacing:15.957147px;}
.ws66{word-spacing:15.960085px;}
.ws23{word-spacing:17.932680px;}
.ws1b{word-spacing:18.115053px;}
.ws5{word-spacing:18.875999px;}
.ws1{word-spacing:28.313998px;}
._8{margin-left:-7.439097px;}
._5{margin-left:-6.416949px;}
._3{margin-left:-4.770072px;}
._c{margin-left:-3.407208px;}
._4{margin-left:-2.385036px;}
._1{margin-left:-1.192518px;}
._2{width:1.590024px;}
._7{width:3.123261px;}
._a{width:11.973322px;}
._d{width:14.692822px;}
._9{width:17.433585px;}
._e{width:20.795921px;}
._11{width:21.812106px;}
._6{width:23.680179px;}
._10{width:25.207339px;}
._b{width:27.189456px;}
._f{width:32.517926px;}
._0{width:1790.153388px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:34.072200px;}
.fs2{font-size:39.750600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:45.429600px;}
.fs8{font-size:51.108000px;}
.fs0{font-size:56.787000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:68.144400px;}
.fs1{font-size:102.216600px;}
.y0{bottom:0.000000px;}
.y11{bottom:59.341500px;}
.y10{bottom:104.173500px;}
.y2e{bottom:119.116500px;}
.y4f{bottom:126.589500px;}
.yf{bottom:130.324500px;}
.y2d{bottom:148.218000px;}
.y4e{bottom:149.005500px;}
.y76{bottom:150.760500px;}
.y2c{bottom:163.162500px;}
.y4d{bottom:171.421500px;}
.y75{bottom:173.176500px;}
.y2b{bottom:178.105500px;}
.y4c{bottom:193.837500px;}
.y74{bottom:195.592500px;}
.y4b{bottom:216.253500px;}
.y73{bottom:218.008500px;}
.y4a{bottom:238.668000px;}
.y72{bottom:240.424500px;}
.y60{bottom:261.084000px;}
.y71{bottom:262.840500px;}
.y49{bottom:264.036000px;}
.y5f{bottom:283.500000px;}
.y70{bottom:285.256500px;}
.y48{bottom:286.452000px;}
.y6{bottom:289.573500px;}
.y5e{bottom:305.916000px;}
.y6f{bottom:307.672500px;}
.y47{bottom:308.868000px;}
.y2a{bottom:314.077500px;}
.y5{bottom:326.934000px;}
.y5d{bottom:328.332000px;}
.y6e{bottom:330.088500px;}
.y46{bottom:331.284000px;}
.y29{bottom:336.493500px;}
.ye{bottom:345.874500px;}
.y5c{bottom:350.748000px;}
.y6d{bottom:352.504500px;}
.y45{bottom:353.700000px;}
.y28{bottom:358.909500px;}
.y4{bottom:364.294500px;}
.yd{bottom:365.190000px;}
.y5b{bottom:373.164000px;}
.y6c{bottom:374.920500px;}
.y44{bottom:376.116000px;}
.yc{bottom:381.067500px;}
.yb{bottom:396.945000px;}
.y6b{bottom:397.336500px;}
.y5a{bottom:398.254500px;}
.y43{bottom:398.532000px;}
.y3{bottom:401.653500px;}
.y27{bottom:408.907500px;}
.ya{bottom:412.824000px;}
.y59{bottom:420.670500px;}
.y42{bottom:420.948000px;}
.y6a{bottom:421.507500px;}
.y9{bottom:428.701500px;}
.y26{bottom:431.323500px;}
.y2{bottom:439.014000px;}
.y58{bottom:443.086500px;}
.y41{bottom:443.364000px;}
.y69{bottom:443.923500px;}
.y8{bottom:444.579000px;}
.y25{bottom:453.739500px;}
.y7{bottom:460.458000px;}
.y57{bottom:465.502500px;}
.y40{bottom:465.780000px;}
.y68{bottom:466.339500px;}
.y24{bottom:476.155500px;}
.y85{bottom:477.586500px;}
.y56{bottom:487.918500px;}
.y3f{bottom:488.196000px;}
.y67{bottom:488.755500px;}
.y23{bottom:498.571500px;}
.y84{bottom:500.002500px;}
.y55{bottom:510.334500px;}
.y3e{bottom:510.612000px;}
.y66{bottom:511.171500px;}
.y22{bottom:520.987500px;}
.y3d{bottom:533.028000px;}
.y65{bottom:533.587500px;}
.y83{bottom:534.373500px;}
.y21{bottom:543.403500px;}
.y64{bottom:556.003500px;}
.y82{bottom:556.789500px;}
.y3c{bottom:558.396000px;}
.y54{bottom:565.222500px;}
.y20{bottom:565.819500px;}
.y81{bottom:579.205500px;}
.y3b{bottom:580.812000px;}
.y53{bottom:580.914000px;}
.y1f{bottom:588.235500px;}
.y52{bottom:596.605500px;}
.y3a{bottom:603.228000px;}
.y63{bottom:609.052500px;}
.y1e{bottom:610.650000px;}
.y51{bottom:612.297000px;}
.y80{bottom:613.576500px;}
.y62{bottom:624.744000px;}
.y39{bottom:628.594500px;}
.y1d{bottom:633.066000px;}
.y7f{bottom:635.992500px;}
.y61{bottom:640.435500px;}
.y38{bottom:651.010500px;}
.y1c{bottom:655.482000px;}
.y7e{bottom:665.881500px;}
.y37{bottom:673.426500px;}
.y1b{bottom:677.898000px;}
.y36{bottom:695.842500px;}
.y1a{bottom:700.314000px;}
.y35{bottom:718.258500px;}
.y7d{bottom:718.932000px;}
.y19{bottom:722.730000px;}
.y34{bottom:740.674500px;}
.y7c{bottom:741.348000px;}
.y18{bottom:745.146000px;}
.y33{bottom:763.090500px;}
.y7b{bottom:763.764000px;}
.y17{bottom:767.562000px;}
.y32{bottom:785.506500px;}
.y7a{bottom:786.180000px;}
.y16{bottom:789.978000px;}
.y31{bottom:807.922500px;}
.y79{bottom:808.596000px;}
.y15{bottom:812.394000px;}
.y78{bottom:831.012000px;}
.y14{bottom:834.810000px;}
.y30{bottom:839.268000px;}
.y77{bottom:853.428000px;}
.y13{bottom:857.226000px;}
.y2f{bottom:875.844000px;}
.y12{bottom:880.735500px;}
.y50{bottom:927.409500px;}
.y1{bottom:927.573000px;}
.h9{height:25.281572px;}
.h7{height:29.455195px;}
.h4{height:29.494945px;}
.hb{height:33.708763px;}
.ha{height:34.390207px;}
.h10{height:37.922136px;}
.hf{height:38.688756px;}
.he{height:41.125613px;}
.h2{height:42.135954px;}
.h8{height:42.987759px;}
.hd{height:50.495000px;}
.hc{height:51.585311px;}
.h6{height:60.418207px;}
.h5{height:60.424207px;}
.h3{height:77.377966px;}
.h0{height:994.960500px;}
.h1{height:995.250000px;}
.w1{width:663.000000px;}
.w0{width:663.307500px;}
.x0{left:0.000000px;}
.x1{left:68.031000px;}
.x4{left:82.975500px;}
.x2{left:414.036000px;}
.x3{left:424.285500px;}
@media print{
.v2{vertical-align:-14.997333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.141333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:2.659428pt;}
.ls4{letter-spacing:15.461955pt;}
.ls3{letter-spacing:15.515089pt;}
.ls7{letter-spacing:16.099562pt;}
.ls5{letter-spacing:16.312097pt;}
.ls0{letter-spacing:19.494349pt;}
.ls6{letter-spacing:1421.795048pt;}
.ws4{word-spacing:-14.032699pt;}
.ws44{word-spacing:-13.283467pt;}
.ws3{word-spacing:-9.822815pt;}
.ws46{word-spacing:-2.656693pt;}
.ws31{word-spacing:-2.391024pt;}
.ws29{word-spacing:-2.178489pt;}
.ws2c{word-spacing:-1.434614pt;}
.ws67{word-spacing:-1.381481pt;}
.ws2d{word-spacing:-1.115811pt;}
.ws4c{word-spacing:-1.062677pt;}
.ws2b{word-spacing:-1.009543pt;}
.ws2a{word-spacing:-0.956410pt;}
.ws17{word-spacing:-0.605728pt;}
.ws53{word-spacing:-0.584473pt;}
.ws56{word-spacing:-0.531339pt;}
.ws37{word-spacing:-0.425071pt;}
.ws3d{word-spacing:-0.371937pt;}
.ws8{word-spacing:-0.100955pt;}
.ws62{word-spacing:-0.060573pt;}
.ws5e{word-spacing:-0.053134pt;}
.ws14{word-spacing:-0.050477pt;}
.ws2{word-spacing:0.000000pt;}
.ws5a{word-spacing:0.265669pt;}
.ws33{word-spacing:0.318803pt;}
.ws3c{word-spacing:0.425071pt;}
.ws18{word-spacing:0.555251pt;}
.ws40{word-spacing:0.690740pt;}
.ws4b{word-spacing:0.743874pt;}
.ws52{word-spacing:0.850142pt;}
.ws65{word-spacing:0.903276pt;}
.ws55{word-spacing:1.222079pt;}
.ws47{word-spacing:1.275213pt;}
.ws2e{word-spacing:1.328347pt;}
.ws57{word-spacing:1.487748pt;}
.ws13{word-spacing:1.514320pt;}
.ws4a{word-spacing:1.540882pt;}
.ws45{word-spacing:1.753418pt;}
.ws1f{word-spacing:1.806551pt;}
.ws16{word-spacing:1.867661pt;}
.wse{word-spacing:1.918139pt;}
.ws21{word-spacing:2.178489pt;}
.ws20{word-spacing:2.231622pt;}
.ws5b{word-spacing:2.550426pt;}
.ws22{word-spacing:2.709827pt;}
.ws54{word-spacing:2.762961pt;}
.ws58{word-spacing:2.816095pt;}
.ws60{word-spacing:2.869229pt;}
.ws34{word-spacing:2.975497pt;}
.ws2f{word-spacing:3.028630pt;}
.ws63{word-spacing:3.081764pt;}
.ws59{word-spacing:3.188032pt;}
.ws48{word-spacing:3.347434pt;}
.ws3e{word-spacing:3.453701pt;}
.ws4f{word-spacing:3.506835pt;}
.ws19{word-spacing:3.533413pt;}
.ws30{word-spacing:3.613103pt;}
.ws42{word-spacing:3.666237pt;}
.ws10{word-spacing:3.937232pt;}
.ws4d{word-spacing:4.144442pt;}
.ws35{word-spacing:4.250709pt;}
.ws1a{word-spacing:4.290573pt;}
.ws4e{word-spacing:4.303843pt;}
.ws27{word-spacing:4.675780pt;}
.wsd{word-spacing:4.694392pt;}
.ws9{word-spacing:4.795347pt;}
.ws50{word-spacing:4.835182pt;}
.wsc{word-spacing:5.098211pt;}
.ws15{word-spacing:5.148688pt;}
.ws25{word-spacing:5.313387pt;}
.ws49{word-spacing:5.579056pt;}
.ws28{word-spacing:5.632190pt;}
.ws36{word-spacing:5.685324pt;}
.wsa{word-spacing:5.905848pt;}
.ws11{word-spacing:6.107757pt;}
.ws51{word-spacing:6.641733pt;}
.ws3b{word-spacing:7.013670pt;}
.ws39{word-spacing:7.279340pt;}
.ws12{word-spacing:7.319213pt;}
.ws43{word-spacing:7.332474pt;}
.ws41{word-spacing:7.810678pt;}
.ws32{word-spacing:8.076348pt;}
.ws26{word-spacing:8.873356pt;}
.ws38{word-spacing:9.245293pt;}
.ws6{word-spacing:9.255613pt;}
.ws1e{word-spacing:9.261206pt;}
.ws1d{word-spacing:9.263066pt;}
.ws5d{word-spacing:10.254836pt;}
.ws5f{word-spacing:10.626773pt;}
.wsf{word-spacing:11.105013pt;}
.ws3a{word-spacing:11.158112pt;}
.ws1c{word-spacing:11.185777pt;}
.ws5c{word-spacing:11.264380pt;}
.ws24{word-spacing:11.636317pt;}
.ws61{word-spacing:11.742585pt;}
.ws3f{word-spacing:12.583925pt;}
.ws64{word-spacing:13.230333pt;}
.ws7{word-spacing:13.326016pt;}
.ws0{word-spacing:13.982221pt;}
.wsb{word-spacing:14.184131pt;}
.ws66{word-spacing:14.186742pt;}
.ws23{word-spacing:15.940160pt;}
.ws1b{word-spacing:16.102269pt;}
.ws5{word-spacing:16.778666pt;}
.ws1{word-spacing:25.167998pt;}
._8{margin-left:-6.612531pt;}
._5{margin-left:-5.703955pt;}
._3{margin-left:-4.240064pt;}
._c{margin-left:-3.028629pt;}
._4{margin-left:-2.120032pt;}
._1{margin-left:-1.060016pt;}
._2{width:1.413355pt;}
._7{width:2.776232pt;}
._a{width:10.642953pt;}
._d{width:13.060286pt;}
._9{width:15.496520pt;}
._e{width:18.485263pt;}
._11{width:19.388539pt;}
._6{width:21.049048pt;}
._10{width:22.406524pt;}
._b{width:24.168405pt;}
._f{width:28.904823pt;}
._0{width:1591.247456pt;}
.fs6{font-size:30.286400pt;}
.fs2{font-size:35.333867pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:40.381867pt;}
.fs8{font-size:45.429333pt;}
.fs0{font-size:50.477333pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:60.572800pt;}
.fs1{font-size:90.859200pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:52.748000pt;}
.y10{bottom:92.598667pt;}
.y2e{bottom:105.881333pt;}
.y4f{bottom:112.524000pt;}
.yf{bottom:115.844000pt;}
.y2d{bottom:131.749333pt;}
.y4e{bottom:132.449333pt;}
.y76{bottom:134.009333pt;}
.y2c{bottom:145.033333pt;}
.y4d{bottom:152.374667pt;}
.y75{bottom:153.934667pt;}
.y2b{bottom:158.316000pt;}
.y4c{bottom:172.300000pt;}
.y74{bottom:173.860000pt;}
.y4b{bottom:192.225333pt;}
.y73{bottom:193.785333pt;}
.y4a{bottom:212.149333pt;}
.y72{bottom:213.710667pt;}
.y60{bottom:232.074667pt;}
.y71{bottom:233.636000pt;}
.y49{bottom:234.698667pt;}
.y5f{bottom:252.000000pt;}
.y70{bottom:253.561333pt;}
.y48{bottom:254.624000pt;}
.y6{bottom:257.398667pt;}
.y5e{bottom:271.925333pt;}
.y6f{bottom:273.486667pt;}
.y47{bottom:274.549333pt;}
.y2a{bottom:279.180000pt;}
.y5{bottom:290.608000pt;}
.y5d{bottom:291.850667pt;}
.y6e{bottom:293.412000pt;}
.y46{bottom:294.474667pt;}
.y29{bottom:299.105333pt;}
.ye{bottom:307.444000pt;}
.y5c{bottom:311.776000pt;}
.y6d{bottom:313.337333pt;}
.y45{bottom:314.400000pt;}
.y28{bottom:319.030667pt;}
.y4{bottom:323.817333pt;}
.yd{bottom:324.613333pt;}
.y5b{bottom:331.701333pt;}
.y6c{bottom:333.262667pt;}
.y44{bottom:334.325333pt;}
.yc{bottom:338.726667pt;}
.yb{bottom:352.840000pt;}
.y6b{bottom:353.188000pt;}
.y5a{bottom:354.004000pt;}
.y43{bottom:354.250667pt;}
.y3{bottom:357.025333pt;}
.y27{bottom:363.473333pt;}
.ya{bottom:366.954667pt;}
.y59{bottom:373.929333pt;}
.y42{bottom:374.176000pt;}
.y6a{bottom:374.673333pt;}
.y9{bottom:381.068000pt;}
.y26{bottom:383.398667pt;}
.y2{bottom:390.234667pt;}
.y58{bottom:393.854667pt;}
.y41{bottom:394.101333pt;}
.y69{bottom:394.598667pt;}
.y8{bottom:395.181333pt;}
.y25{bottom:403.324000pt;}
.y7{bottom:409.296000pt;}
.y57{bottom:413.780000pt;}
.y40{bottom:414.026667pt;}
.y68{bottom:414.524000pt;}
.y24{bottom:423.249333pt;}
.y85{bottom:424.521333pt;}
.y56{bottom:433.705333pt;}
.y3f{bottom:433.952000pt;}
.y67{bottom:434.449333pt;}
.y23{bottom:443.174667pt;}
.y84{bottom:444.446667pt;}
.y55{bottom:453.630667pt;}
.y3e{bottom:453.877333pt;}
.y66{bottom:454.374667pt;}
.y22{bottom:463.100000pt;}
.y3d{bottom:473.802667pt;}
.y65{bottom:474.300000pt;}
.y83{bottom:474.998667pt;}
.y21{bottom:483.025333pt;}
.y64{bottom:494.225333pt;}
.y82{bottom:494.924000pt;}
.y3c{bottom:496.352000pt;}
.y54{bottom:502.420000pt;}
.y20{bottom:502.950667pt;}
.y81{bottom:514.849333pt;}
.y3b{bottom:516.277333pt;}
.y53{bottom:516.368000pt;}
.y1f{bottom:522.876000pt;}
.y52{bottom:530.316000pt;}
.y3a{bottom:536.202667pt;}
.y63{bottom:541.380000pt;}
.y1e{bottom:542.800000pt;}
.y51{bottom:544.264000pt;}
.y80{bottom:545.401333pt;}
.y62{bottom:555.328000pt;}
.y39{bottom:558.750667pt;}
.y1d{bottom:562.725333pt;}
.y7f{bottom:565.326667pt;}
.y61{bottom:569.276000pt;}
.y38{bottom:578.676000pt;}
.y1c{bottom:582.650667pt;}
.y7e{bottom:591.894667pt;}
.y37{bottom:598.601333pt;}
.y1b{bottom:602.576000pt;}
.y36{bottom:618.526667pt;}
.y1a{bottom:622.501333pt;}
.y35{bottom:638.452000pt;}
.y7d{bottom:639.050667pt;}
.y19{bottom:642.426667pt;}
.y34{bottom:658.377333pt;}
.y7c{bottom:658.976000pt;}
.y18{bottom:662.352000pt;}
.y33{bottom:678.302667pt;}
.y7b{bottom:678.901333pt;}
.y17{bottom:682.277333pt;}
.y32{bottom:698.228000pt;}
.y7a{bottom:698.826667pt;}
.y16{bottom:702.202667pt;}
.y31{bottom:718.153333pt;}
.y79{bottom:718.752000pt;}
.y15{bottom:722.128000pt;}
.y78{bottom:738.677333pt;}
.y14{bottom:742.053333pt;}
.y30{bottom:746.016000pt;}
.y77{bottom:758.602667pt;}
.y13{bottom:761.978667pt;}
.y2f{bottom:778.528000pt;}
.y12{bottom:782.876000pt;}
.y50{bottom:824.364000pt;}
.y1{bottom:824.509333pt;}
.h9{height:22.472509pt;}
.h7{height:26.182395pt;}
.h4{height:26.217729pt;}
.hb{height:29.963345pt;}
.ha{height:30.569073pt;}
.h10{height:33.708565pt;}
.hf{height:34.390005pt;}
.he{height:36.556100pt;}
.h2{height:37.454181pt;}
.h8{height:38.211341pt;}
.hd{height:44.884445pt;}
.hc{height:45.853610pt;}
.h6{height:53.705073pt;}
.h5{height:53.710406pt;}
.h3{height:68.780414pt;}
.h0{height:884.409333pt;}
.h1{height:884.666667pt;}
.w1{width:589.333333pt;}
.w0{width:589.606667pt;}
.x0{left:0.000000pt;}
.x1{left:60.472000pt;}
.x4{left:73.756000pt;}
.x2{left:368.032000pt;}
.x3{left:377.142667pt;}
}




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