
    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_1645e61a3e8362be1202b32f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.946000;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_59908355d74615f09be5bdc8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.946000;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_b64c2ee7b92a9ee0f1d9ef4f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921000;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_68c595e44d776b8178ae348f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921000;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_a2ee81174fae89967c19cc13.woff')format("woff");}.ff5{font-family:ff5;line-height:0.701000;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;}
.lsd{letter-spacing:-3.300000px;}
.lsc{letter-spacing:-0.021600px;}
.ls0{letter-spacing:-0.014400px;}
.ls3{letter-spacing:-0.011635px;}
.ls4{letter-spacing:-0.008400px;}
.ls1{letter-spacing:-0.007200px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.014400px;}
.lsa{letter-spacing:0.064800px;}
.ls8{letter-spacing:0.132000px;}
.ls9{letter-spacing:0.574200px;}
.ls7{letter-spacing:1.036800px;}
.lsb{letter-spacing:1.440000px;}
.ls6{letter-spacing:59.551200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-50.040000px;}
.ws1{word-spacing:-20.016000px;}
.ws19{word-spacing:-20.001600px;}
.ws21{word-spacing:-18.922200px;}
.ws1f{word-spacing:-18.480000px;}
.ws1e{word-spacing:-18.348000px;}
.ws20{word-spacing:-15.048000px;}
.ws1d{word-spacing:-5.198400px;}
.ws14{word-spacing:-3.736800px;}
.ws39{word-spacing:-2.714400px;}
.ws28{word-spacing:-2.325600px;}
.wsd{word-spacing:-1.188000px;}
.ws3{word-spacing:-0.511200px;}
.ws2{word-spacing:-0.403200px;}
.wse{word-spacing:-0.309600px;}
.ws13{word-spacing:0.000000px;}
.ws6{word-spacing:1.627200px;}
.ws2d{word-spacing:1.834800px;}
.ws15{word-spacing:1.994400px;}
.wsa{word-spacing:2.001600px;}
.ws1c{word-spacing:2.023200px;}
.ws1a{word-spacing:2.037600px;}
.ws18{word-spacing:2.052000px;}
.ws1b{word-spacing:2.095200px;}
.ws2b{word-spacing:2.181600px;}
.ws17{word-spacing:2.335200px;}
.ws5{word-spacing:2.448000px;}
.ws23{word-spacing:2.548800px;}
.ws24{word-spacing:3.124800px;}
.ws10{word-spacing:3.513600px;}
.ws16{word-spacing:3.851053px;}
.ws8{word-spacing:4.744800px;}
.wsc{word-spacing:5.004000px;}
.ws7{word-spacing:5.032800px;}
.ws25{word-spacing:5.328000px;}
.ws2e{word-spacing:6.235200px;}
.ws33{word-spacing:6.314400px;}
.wsb{word-spacing:6.672000px;}
.wsf{word-spacing:7.041600px;}
.ws27{word-spacing:7.243200px;}
.ws34{word-spacing:7.372800px;}
.ws32{word-spacing:7.524000px;}
.ws2a{word-spacing:8.935200px;}
.ws2c{word-spacing:9.410400px;}
.ws26{word-spacing:11.649600px;}
.ws11{word-spacing:14.680800px;}
.ws4{word-spacing:17.632800px;}
.ws36{word-spacing:18.086400px;}
.ws30{word-spacing:19.094400px;}
.ws2f{word-spacing:20.426400px;}
.ws12{word-spacing:21.787200px;}
.ws22{word-spacing:25.819200px;}
.ws31{word-spacing:27.561600px;}
.ws9{word-spacing:27.626400px;}
.ws29{word-spacing:28.994400px;}
.ws35{word-spacing:29.966400px;}
.ws38{word-spacing:43.574400px;}
.ws37{word-spacing:76.924800px;}
._e{margin-left:-10.818000px;}
._d{margin-left:-6.487200px;}
._b{margin-left:-5.392800px;}
._18{margin-left:-3.960000px;}
._0{margin-left:-2.822400px;}
._1{margin-left:-1.425600px;}
._2{width:1.094400px;}
._4{width:2.491200px;}
._f{width:3.600000px;}
._17{width:5.076000px;}
._19{width:7.861800px;}
._11{width:9.072000px;}
._16{width:10.836000px;}
._3{width:12.420000px;}
._8{width:13.737600px;}
._7{width:15.278400px;}
._a{width:17.575200px;}
._9{width:18.583200px;}
._6{width:19.692000px;}
._14{width:22.644000px;}
._15{width:25.113600px;}
._12{width:28.195200px;}
._5{width:30.463200px;}
._13{width:34.207200px;}
._c{width:40.456800px;}
._1a{width:50.961600px;}
._10{width:59.551200px;}
.fc2{color:rgb(248,152,40);}
.fc1{color:rgb(158,28,32);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:116.346000px;}
.fs2{font-size:180.000000px;}
.fs1{font-size:240.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.082500px;}
.y2a{bottom:26.067750px;}
.yc{bottom:30.184950px;}
.y28{bottom:97.171800px;}
.y27{bottom:118.771800px;}
.y55{bottom:141.816450px;}
.y69{bottom:143.974500px;}
.y26{bottom:151.684800px;}
.y54{bottom:163.416450px;}
.y68{bottom:163.474200px;}
.y25{bottom:173.284800px;}
.y67{bottom:182.973900px;}
.y53{bottom:185.016450px;}
.y24{bottom:194.884800px;}
.y52{bottom:206.616450px;}
.y66{bottom:214.474050px;}
.y23{bottom:216.484800px;}
.y51{bottom:228.216450px;}
.y65{bottom:233.973750px;}
.y22{bottom:238.084800px;}
.y64{bottom:253.473450px;}
.y21{bottom:259.684800px;}
.y50{bottom:271.416450px;}
.y20{bottom:281.284800px;}
.y63{bottom:284.973600px;}
.y4f{bottom:293.016450px;}
.y62{bottom:304.473300px;}
.y4e{bottom:314.616450px;}
.y1f{bottom:317.570400px;}
.y61{bottom:335.973450px;}
.y4d{bottom:336.216450px;}
.y60{bottom:355.473150px;}
.y4c{bottom:357.816450px;}
.y4b{bottom:379.416450px;}
.y5f{bottom:386.973300px;}
.y1e{bottom:388.991100px;}
.y4a{bottom:401.016450px;}
.y5e{bottom:406.473000px;}
.y1d{bottom:410.591100px;}
.y49{bottom:422.616450px;}
.y5d{bottom:425.972700px;}
.y1c{bottom:432.191100px;}
.y48{bottom:444.216450px;}
.y1b{bottom:453.791100px;}
.y5c{bottom:457.472850px;}
.y47{bottom:465.816450px;}
.y1a{bottom:475.391100px;}
.y5b{bottom:476.972550px;}
.y46{bottom:487.416450px;}
.y5a{bottom:496.472250px;}
.y19{bottom:496.991100px;}
.y45{bottom:509.016450px;}
.y18{bottom:518.591100px;}
.y59{bottom:527.972400px;}
.y44{bottom:530.616450px;}
.y17{bottom:540.191100px;}
.y58{bottom:547.472100px;}
.y43{bottom:552.216450px;}
.y16{bottom:561.791100px;}
.y57{bottom:566.971800px;}
.y42{bottom:573.816450px;}
.y56{bottom:586.471500px;}
.y41{bottom:595.416450px;}
.y15{bottom:596.367300px;}
.y40{bottom:617.016450px;}
.y14{bottom:617.967300px;}
.y6b{bottom:620.381250px;}
.y3f{bottom:638.616450px;}
.y13{bottom:639.567300px;}
.y6a{bottom:656.381250px;}
.y3e{bottom:660.216450px;}
.y12{bottom:661.167300px;}
.y3d{bottom:681.816450px;}
.y11{bottom:682.767300px;}
.y3c{bottom:703.416450px;}
.y10{bottom:704.367300px;}
.y3b{bottom:725.016450px;}
.yf{bottom:725.967300px;}
.y7c{bottom:732.538200px;}
.y3a{bottom:746.616450px;}
.ye{bottom:748.542900px;}
.y7b{bottom:754.138200px;}
.y39{bottom:768.216450px;}
.y7a{bottom:775.738200px;}
.yd{bottom:778.543950px;}
.y38{bottom:789.816450px;}
.y79{bottom:797.176200px;}
.y37{bottom:811.416450px;}
.y78{bottom:818.776200px;}
.y36{bottom:833.016450px;}
.y77{bottom:840.376200px;}
.ya{bottom:843.318750px;}
.y35{bottom:854.616450px;}
.y76{bottom:861.976200px;}
.y9{bottom:867.318150px;}
.y34{bottom:876.216450px;}
.y75{bottom:883.576200px;}
.y8{bottom:891.317550px;}
.y74{bottom:905.176200px;}
.y7{bottom:915.316950px;}
.y33{bottom:919.416450px;}
.y73{bottom:926.776200px;}
.y6{bottom:939.316350px;}
.y32{bottom:941.016450px;}
.y72{bottom:948.376200px;}
.y31{bottom:962.616450px;}
.y5{bottom:963.315750px;}
.y71{bottom:969.976200px;}
.y30{bottom:984.216450px;}
.y4{bottom:987.315150px;}
.y70{bottom:991.576200px;}
.y2f{bottom:1005.816450px;}
.y3{bottom:1011.314550px;}
.y6f{bottom:1013.176200px;}
.y2e{bottom:1027.416450px;}
.y6e{bottom:1034.776200px;}
.y2{bottom:1035.313950px;}
.y2d{bottom:1049.016450px;}
.y6d{bottom:1069.350750px;}
.y2c{bottom:1070.616450px;}
.yb{bottom:1086.814200px;}
.y2b{bottom:1105.194750px;}
.y6c{bottom:1105.350750px;}
.y29{bottom:1212.453600px;}
.h7{height:47.256000px;}
.h5{height:49.752000px;}
.h2{height:51.552000px;}
.h6{height:80.511432px;}
.h4{height:128.880000px;}
.h3{height:171.840000px;}
.h1{height:1262.835000px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w2{width:892.707000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1{left:42.313050px;}
.x7{left:47.292600px;}
.x3{left:63.572850px;}
.x5{left:393.457800px;}
.x6{left:414.715800px;}
.x4{left:546.412800px;}
.x2{left:579.110400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-2.933333pt;}
.lsc{letter-spacing:-0.019200pt;}
.ls0{letter-spacing:-0.012800pt;}
.ls3{letter-spacing:-0.010342pt;}
.ls4{letter-spacing:-0.007467pt;}
.ls1{letter-spacing:-0.006400pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.012800pt;}
.lsa{letter-spacing:0.057600pt;}
.ls8{letter-spacing:0.117333pt;}
.ls9{letter-spacing:0.510400pt;}
.ls7{letter-spacing:0.921600pt;}
.lsb{letter-spacing:1.280000pt;}
.ls6{letter-spacing:52.934400pt;}
.ws0{word-spacing:-44.480000pt;}
.ws1{word-spacing:-17.792000pt;}
.ws19{word-spacing:-17.779200pt;}
.ws21{word-spacing:-16.819733pt;}
.ws1f{word-spacing:-16.426667pt;}
.ws1e{word-spacing:-16.309333pt;}
.ws20{word-spacing:-13.376000pt;}
.ws1d{word-spacing:-4.620800pt;}
.ws14{word-spacing:-3.321600pt;}
.ws39{word-spacing:-2.412800pt;}
.ws28{word-spacing:-2.067200pt;}
.wsd{word-spacing:-1.056000pt;}
.ws3{word-spacing:-0.454400pt;}
.ws2{word-spacing:-0.358400pt;}
.wse{word-spacing:-0.275200pt;}
.ws13{word-spacing:0.000000pt;}
.ws6{word-spacing:1.446400pt;}
.ws2d{word-spacing:1.630933pt;}
.ws15{word-spacing:1.772800pt;}
.wsa{word-spacing:1.779200pt;}
.ws1c{word-spacing:1.798400pt;}
.ws1a{word-spacing:1.811200pt;}
.ws18{word-spacing:1.824000pt;}
.ws1b{word-spacing:1.862400pt;}
.ws2b{word-spacing:1.939200pt;}
.ws17{word-spacing:2.075733pt;}
.ws5{word-spacing:2.176000pt;}
.ws23{word-spacing:2.265600pt;}
.ws24{word-spacing:2.777600pt;}
.ws10{word-spacing:3.123200pt;}
.ws16{word-spacing:3.423158pt;}
.ws8{word-spacing:4.217600pt;}
.wsc{word-spacing:4.448000pt;}
.ws7{word-spacing:4.473600pt;}
.ws25{word-spacing:4.736000pt;}
.ws2e{word-spacing:5.542400pt;}
.ws33{word-spacing:5.612800pt;}
.wsb{word-spacing:5.930667pt;}
.wsf{word-spacing:6.259200pt;}
.ws27{word-spacing:6.438400pt;}
.ws34{word-spacing:6.553600pt;}
.ws32{word-spacing:6.688000pt;}
.ws2a{word-spacing:7.942400pt;}
.ws2c{word-spacing:8.364800pt;}
.ws26{word-spacing:10.355200pt;}
.ws11{word-spacing:13.049600pt;}
.ws4{word-spacing:15.673600pt;}
.ws36{word-spacing:16.076800pt;}
.ws30{word-spacing:16.972800pt;}
.ws2f{word-spacing:18.156800pt;}
.ws12{word-spacing:19.366400pt;}
.ws22{word-spacing:22.950400pt;}
.ws31{word-spacing:24.499200pt;}
.ws9{word-spacing:24.556800pt;}
.ws29{word-spacing:25.772800pt;}
.ws35{word-spacing:26.636800pt;}
.ws38{word-spacing:38.732800pt;}
.ws37{word-spacing:68.377600pt;}
._e{margin-left:-9.616000pt;}
._d{margin-left:-5.766400pt;}
._b{margin-left:-4.793600pt;}
._18{margin-left:-3.520000pt;}
._0{margin-left:-2.508800pt;}
._1{margin-left:-1.267200pt;}
._2{width:0.972800pt;}
._4{width:2.214400pt;}
._f{width:3.200000pt;}
._17{width:4.512000pt;}
._19{width:6.988267pt;}
._11{width:8.064000pt;}
._16{width:9.632000pt;}
._3{width:11.040000pt;}
._8{width:12.211200pt;}
._7{width:13.580800pt;}
._a{width:15.622400pt;}
._9{width:16.518400pt;}
._6{width:17.504000pt;}
._14{width:20.128000pt;}
._15{width:22.323200pt;}
._12{width:25.062400pt;}
._5{width:27.078400pt;}
._13{width:30.406400pt;}
._c{width:35.961600pt;}
._1a{width:45.299200pt;}
._10{width:52.934400pt;}
.fs5{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:103.418667pt;}
.fs2{font-size:160.000000pt;}
.fs1{font-size:213.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.073333pt;}
.y2a{bottom:23.171333pt;}
.yc{bottom:26.831067pt;}
.y28{bottom:86.374933pt;}
.y27{bottom:105.574933pt;}
.y55{bottom:126.059067pt;}
.y69{bottom:127.977333pt;}
.y26{bottom:134.830933pt;}
.y54{bottom:145.259067pt;}
.y68{bottom:145.310400pt;}
.y25{bottom:154.030933pt;}
.y67{bottom:162.643467pt;}
.y53{bottom:164.459067pt;}
.y24{bottom:173.230933pt;}
.y52{bottom:183.659067pt;}
.y66{bottom:190.643600pt;}
.y23{bottom:192.430933pt;}
.y51{bottom:202.859067pt;}
.y65{bottom:207.976667pt;}
.y22{bottom:211.630933pt;}
.y64{bottom:225.309733pt;}
.y21{bottom:230.830933pt;}
.y50{bottom:241.259067pt;}
.y20{bottom:250.030933pt;}
.y63{bottom:253.309867pt;}
.y4f{bottom:260.459067pt;}
.y62{bottom:270.642933pt;}
.y4e{bottom:279.659067pt;}
.y1f{bottom:282.284800pt;}
.y61{bottom:298.643067pt;}
.y4d{bottom:298.859067pt;}
.y60{bottom:315.976133pt;}
.y4c{bottom:318.059067pt;}
.y4b{bottom:337.259067pt;}
.y5f{bottom:343.976267pt;}
.y1e{bottom:345.769867pt;}
.y4a{bottom:356.459067pt;}
.y5e{bottom:361.309333pt;}
.y1d{bottom:364.969867pt;}
.y49{bottom:375.659067pt;}
.y5d{bottom:378.642400pt;}
.y1c{bottom:384.169867pt;}
.y48{bottom:394.859067pt;}
.y1b{bottom:403.369867pt;}
.y5c{bottom:406.642533pt;}
.y47{bottom:414.059067pt;}
.y1a{bottom:422.569867pt;}
.y5b{bottom:423.975600pt;}
.y46{bottom:433.259067pt;}
.y5a{bottom:441.308667pt;}
.y19{bottom:441.769867pt;}
.y45{bottom:452.459067pt;}
.y18{bottom:460.969867pt;}
.y59{bottom:469.308800pt;}
.y44{bottom:471.659067pt;}
.y17{bottom:480.169867pt;}
.y58{bottom:486.641867pt;}
.y43{bottom:490.859067pt;}
.y16{bottom:499.369867pt;}
.y57{bottom:503.974933pt;}
.y42{bottom:510.059067pt;}
.y56{bottom:521.308000pt;}
.y41{bottom:529.259067pt;}
.y15{bottom:530.104267pt;}
.y40{bottom:548.459067pt;}
.y14{bottom:549.304267pt;}
.y6b{bottom:551.450000pt;}
.y3f{bottom:567.659067pt;}
.y13{bottom:568.504267pt;}
.y6a{bottom:583.450000pt;}
.y3e{bottom:586.859067pt;}
.y12{bottom:587.704267pt;}
.y3d{bottom:606.059067pt;}
.y11{bottom:606.904267pt;}
.y3c{bottom:625.259067pt;}
.y10{bottom:626.104267pt;}
.y3b{bottom:644.459067pt;}
.yf{bottom:645.304267pt;}
.y7c{bottom:651.145067pt;}
.y3a{bottom:663.659067pt;}
.ye{bottom:665.371467pt;}
.y7b{bottom:670.345067pt;}
.y39{bottom:682.859067pt;}
.y7a{bottom:689.545067pt;}
.yd{bottom:692.039067pt;}
.y38{bottom:702.059067pt;}
.y79{bottom:708.601067pt;}
.y37{bottom:721.259067pt;}
.y78{bottom:727.801067pt;}
.y36{bottom:740.459067pt;}
.y77{bottom:747.001067pt;}
.ya{bottom:749.616667pt;}
.y35{bottom:759.659067pt;}
.y76{bottom:766.201067pt;}
.y9{bottom:770.949467pt;}
.y34{bottom:778.859067pt;}
.y75{bottom:785.401067pt;}
.y8{bottom:792.282267pt;}
.y74{bottom:804.601067pt;}
.y7{bottom:813.615067pt;}
.y33{bottom:817.259067pt;}
.y73{bottom:823.801067pt;}
.y6{bottom:834.947867pt;}
.y32{bottom:836.459067pt;}
.y72{bottom:843.001067pt;}
.y31{bottom:855.659067pt;}
.y5{bottom:856.280667pt;}
.y71{bottom:862.201067pt;}
.y30{bottom:874.859067pt;}
.y4{bottom:877.613467pt;}
.y70{bottom:881.401067pt;}
.y2f{bottom:894.059067pt;}
.y3{bottom:898.946267pt;}
.y6f{bottom:900.601067pt;}
.y2e{bottom:913.259067pt;}
.y6e{bottom:919.801067pt;}
.y2{bottom:920.279067pt;}
.y2d{bottom:932.459067pt;}
.y6d{bottom:950.534000pt;}
.y2c{bottom:951.659067pt;}
.yb{bottom:966.057067pt;}
.y2b{bottom:982.395333pt;}
.y6c{bottom:982.534000pt;}
.y29{bottom:1077.736533pt;}
.h7{height:42.005333pt;}
.h5{height:44.224000pt;}
.h2{height:45.824000pt;}
.h6{height:71.565717pt;}
.h4{height:114.560000pt;}
.h3{height:152.746667pt;}
.h1{height:1122.520000pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w2{width:793.517333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1{left:37.611600pt;}
.x7{left:42.037867pt;}
.x3{left:56.509200pt;}
.x5{left:349.740267pt;}
.x6{left:368.636267pt;}
.x4{left:485.700267pt;}
.x2{left:514.764800pt;}
}




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