
    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_4ad8e98592a306626aa59eca.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_9282bdc996ecd5a00077ec53.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9a986d9773591fdd578ad2f4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_fe7308ec94275465b64eff8c.woff2')format("woff");}.ff4{font-family:ff4;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;}
.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;}
}
.ws13{word-spacing:-55.944000px;}
.ws54{word-spacing:-38.871900px;}
.ws30{word-spacing:-38.869800px;}
.ws42{word-spacing:-38.865600px;}
.ws1c{word-spacing:-38.799900px;}
.ws2a{word-spacing:-38.795400px;}
.wsb{word-spacing:-38.721600px;}
.ws33{word-spacing:-38.668200px;}
.ws6{word-spacing:-38.657700px;}
.ws3f{word-spacing:-38.655600px;}
.ws29{word-spacing:-38.654700px;}
.ws28{word-spacing:-38.650200px;}
.ws5{word-spacing:-38.647800px;}
.ws3a{word-spacing:-38.582100px;}
.ws3b{word-spacing:-38.581200px;}
.ws43{word-spacing:-38.579400px;}
.ws36{word-spacing:-38.437200px;}
.ws21{word-spacing:-38.428200px;}
.ws3{word-spacing:-38.374200px;}
.ws53{word-spacing:-38.372100px;}
.ws46{word-spacing:-38.358900px;}
.ws2c{word-spacing:-38.304000px;}
.ws27{word-spacing:-38.289000px;}
.ws2d{word-spacing:-38.288700px;}
.ws4c{word-spacing:-38.284200px;}
.ws2f{word-spacing:-38.275200px;}
.ws2e{word-spacing:-38.160000px;}
.ws2b{word-spacing:-38.156100px;}
.ws22{word-spacing:-38.153700px;}
.ws37{word-spacing:-38.147400px;}
.ws17{word-spacing:-38.143800px;}
.ws4a{word-spacing:-38.088000px;}
.ws0{word-spacing:-37.944000px;}
.ws26{word-spacing:-37.939500px;}
.ws4{word-spacing:-37.938600px;}
.ws2{word-spacing:-37.931400px;}
.ws48{word-spacing:-37.857600px;}
.ws55{word-spacing:-37.567800px;}
.ws9{word-spacing:-35.280000px;}
.ws1a{word-spacing:-35.200800px;}
.wsa{word-spacing:-34.776000px;}
.ws39{word-spacing:-34.344000px;}
.ws8{word-spacing:-33.547800px;}
.ws20{word-spacing:-33.257700px;}
.ws38{word-spacing:-33.114000px;}
.ws31{word-spacing:-32.538600px;}
.ws25{word-spacing:-32.396400px;}
.ws1f{word-spacing:-32.166900px;}
.ws1e{word-spacing:-30.729600px;}
.ws35{word-spacing:-29.514300px;}
.ws19{word-spacing:-28.211400px;}
.ws56{word-spacing:-27.493800px;}
.ws1d{word-spacing:-27.353700px;}
.ws18{word-spacing:-27.144000px;}
.ws47{word-spacing:-25.200000px;}
.ws23{word-spacing:-23.900400px;}
.ws10{word-spacing:-22.307700px;}
.ws3e{word-spacing:-21.587400px;}
.ws51{word-spacing:-21.091200px;}
.ws24{word-spacing:-21.088800px;}
.ws7{word-spacing:-18.472500px;}
.ws44{word-spacing:-17.704800px;}
.wsd{word-spacing:-17.496000px;}
.wsc{word-spacing:-17.280000px;}
.ws52{word-spacing:-16.560000px;}
.ws41{word-spacing:-16.330500px;}
.ws49{word-spacing:-16.040100px;}
.ws4b{word-spacing:-15.624000px;}
.ws1b{word-spacing:-14.888700px;}
.ws45{word-spacing:-13.594800px;}
.wsf{word-spacing:-11.664000px;}
.ws4f{word-spacing:-10.787400px;}
.ws34{word-spacing:-9.353400px;}
.ws50{word-spacing:-8.622900px;}
.ws32{word-spacing:-6.990000px;}
.ws11{word-spacing:-0.864000px;}
.ws4d{word-spacing:-0.150000px;}
.ws3c{word-spacing:0.939000px;}
.ws3d{word-spacing:3.610800px;}
.ws12{word-spacing:6.691800px;}
.ws40{word-spacing:8.568000px;}
.ws4e{word-spacing:9.947700px;}
.ws16{word-spacing:25.416000px;}
.wse{word-spacing:30.976200px;}
.ws14{word-spacing:74.880000px;}
.ws15{word-spacing:74.888400px;}
.ws1{word-spacing:455.092800px;}
._21{margin-left:-2.312400px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._5{width:2.532300px;}
._7{width:3.737400px;}
._4{width:18.775800px;}
._e{width:21.746400px;}
._6{width:23.049000px;}
._13{width:24.894900px;}
._12{width:26.424000px;}
._17{width:27.432000px;}
._d{width:29.363400px;}
._11{width:30.841200px;}
._14{width:33.116400px;}
._a{width:34.766700px;}
._1{width:36.000000px;}
._8{width:39.810000px;}
._1b{width:41.029800px;}
._f{width:42.104700px;}
._10{width:43.451400px;}
._1c{width:44.500200px;}
._1f{width:46.500000px;}
._16{width:47.599800px;}
._20{width:48.690900px;}
._15{width:50.068800px;}
._1d{width:56.886000px;}
._18{width:58.605000px;}
._19{width:61.189200px;}
._b{width:63.694200px;}
._1a{width:65.808000px;}
._1e{width:67.728600px;}
._9{width:88.394400px;}
._c{width:132.480000px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.471500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y33{bottom:116.715000px;}
.y32{bottom:137.415000px;}
.y31{bottom:158.115000px;}
.y30{bottom:178.815000px;}
.y2f{bottom:199.336500px;}
.y5c{bottom:207.255000px;}
.y2e{bottom:220.036500px;}
.y5b{bottom:227.775000px;}
.y2d{bottom:240.736500px;}
.y5a{bottom:248.475000px;}
.y2c{bottom:261.436500px;}
.y59{bottom:269.175000px;}
.y2b{bottom:282.136500px;}
.y58{bottom:289.875000px;}
.y2a{bottom:302.836500px;}
.y57{bottom:310.575000px;}
.y29{bottom:323.536500px;}
.y56{bottom:331.275000px;}
.y28{bottom:344.236500px;}
.y27{bottom:364.936500px;}
.y55{bottom:372.675000px;}
.y26{bottom:385.636500px;}
.y54{bottom:393.375000px;}
.y25{bottom:406.336500px;}
.y53{bottom:414.075000px;}
.y24{bottom:427.036500px;}
.y52{bottom:434.775000px;}
.y23{bottom:447.736500px;}
.y51{bottom:455.475000px;}
.y22{bottom:468.436500px;}
.y50{bottom:476.175000px;}
.y21{bottom:489.136500px;}
.y4f{bottom:496.875000px;}
.y20{bottom:509.836500px;}
.y4e{bottom:517.575000px;}
.y1f{bottom:530.536500px;}
.y4d{bottom:538.275000px;}
.y1e{bottom:551.236500px;}
.y4c{bottom:558.975000px;}
.y1d{bottom:571.936500px;}
.y4b{bottom:579.675000px;}
.y1c{bottom:592.636500px;}
.y4a{bottom:600.375000px;}
.y1b{bottom:613.336500px;}
.y49{bottom:621.075000px;}
.y1a{bottom:634.036500px;}
.y48{bottom:641.775000px;}
.y19{bottom:654.736500px;}
.y47{bottom:662.475000px;}
.y18{bottom:675.436500px;}
.y46{bottom:683.175000px;}
.y17{bottom:696.136500px;}
.y45{bottom:703.875000px;}
.y16{bottom:716.836500px;}
.y44{bottom:724.575000px;}
.y43{bottom:745.275000px;}
.y15{bottom:758.236500px;}
.y42{bottom:765.975000px;}
.y14{bottom:778.936500px;}
.y41{bottom:786.675000px;}
.y13{bottom:799.636500px;}
.y40{bottom:807.375000px;}
.y3f{bottom:828.075000px;}
.y12{bottom:841.036500px;}
.y3e{bottom:848.775000px;}
.y11{bottom:861.736500px;}
.y3d{bottom:869.475000px;}
.y10{bottom:882.436500px;}
.y3c{bottom:890.175000px;}
.yf{bottom:903.136500px;}
.y3b{bottom:910.875000px;}
.ye{bottom:923.836500px;}
.y3a{bottom:931.575000px;}
.yd{bottom:944.536500px;}
.y39{bottom:952.275000px;}
.yc{bottom:965.236500px;}
.y38{bottom:972.975000px;}
.y37{bottom:993.675000px;}
.yb{bottom:1006.636500px;}
.y36{bottom:1014.375000px;}
.ya{bottom:1027.336500px;}
.y35{bottom:1035.075000px;}
.y34{bottom:1055.775000px;}
.y9{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h5{height:20.175000px;}
.h4{height:45.095654px;}
.h3{height:48.796875px;}
.h6{height:49.992188px;}
.h2{height:62.261719px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:33.450000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.x5{left:149.220000px;}
.x4{left:258.838500px;}
.x3{left:461.625000px;}
.x7{left:515.160000px;}
.x6{left:550.620000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws13{word-spacing:-49.728000pt;}
.ws54{word-spacing:-34.552800pt;}
.ws30{word-spacing:-34.550933pt;}
.ws42{word-spacing:-34.547200pt;}
.ws1c{word-spacing:-34.488800pt;}
.ws2a{word-spacing:-34.484800pt;}
.wsb{word-spacing:-34.419200pt;}
.ws33{word-spacing:-34.371733pt;}
.ws6{word-spacing:-34.362400pt;}
.ws3f{word-spacing:-34.360533pt;}
.ws29{word-spacing:-34.359733pt;}
.ws28{word-spacing:-34.355733pt;}
.ws5{word-spacing:-34.353600pt;}
.ws3a{word-spacing:-34.295200pt;}
.ws3b{word-spacing:-34.294400pt;}
.ws43{word-spacing:-34.292800pt;}
.ws36{word-spacing:-34.166400pt;}
.ws21{word-spacing:-34.158400pt;}
.ws3{word-spacing:-34.110400pt;}
.ws53{word-spacing:-34.108533pt;}
.ws46{word-spacing:-34.096800pt;}
.ws2c{word-spacing:-34.048000pt;}
.ws27{word-spacing:-34.034667pt;}
.ws2d{word-spacing:-34.034400pt;}
.ws4c{word-spacing:-34.030400pt;}
.ws2f{word-spacing:-34.022400pt;}
.ws2e{word-spacing:-33.920000pt;}
.ws2b{word-spacing:-33.916533pt;}
.ws22{word-spacing:-33.914400pt;}
.ws37{word-spacing:-33.908800pt;}
.ws17{word-spacing:-33.905600pt;}
.ws4a{word-spacing:-33.856000pt;}
.ws0{word-spacing:-33.728000pt;}
.ws26{word-spacing:-33.724000pt;}
.ws4{word-spacing:-33.723200pt;}
.ws2{word-spacing:-33.716800pt;}
.ws48{word-spacing:-33.651200pt;}
.ws55{word-spacing:-33.393600pt;}
.ws9{word-spacing:-31.360000pt;}
.ws1a{word-spacing:-31.289600pt;}
.wsa{word-spacing:-30.912000pt;}
.ws39{word-spacing:-30.528000pt;}
.ws8{word-spacing:-29.820267pt;}
.ws20{word-spacing:-29.562400pt;}
.ws38{word-spacing:-29.434667pt;}
.ws31{word-spacing:-28.923200pt;}
.ws25{word-spacing:-28.796800pt;}
.ws1f{word-spacing:-28.592800pt;}
.ws1e{word-spacing:-27.315200pt;}
.ws35{word-spacing:-26.234933pt;}
.ws19{word-spacing:-25.076800pt;}
.ws56{word-spacing:-24.438933pt;}
.ws1d{word-spacing:-24.314400pt;}
.ws18{word-spacing:-24.128000pt;}
.ws47{word-spacing:-22.400000pt;}
.ws23{word-spacing:-21.244800pt;}
.ws10{word-spacing:-19.829067pt;}
.ws3e{word-spacing:-19.188800pt;}
.ws51{word-spacing:-18.747733pt;}
.ws24{word-spacing:-18.745600pt;}
.ws7{word-spacing:-16.420000pt;}
.ws44{word-spacing:-15.737600pt;}
.wsd{word-spacing:-15.552000pt;}
.wsc{word-spacing:-15.360000pt;}
.ws52{word-spacing:-14.720000pt;}
.ws41{word-spacing:-14.516000pt;}
.ws49{word-spacing:-14.257867pt;}
.ws4b{word-spacing:-13.888000pt;}
.ws1b{word-spacing:-13.234400pt;}
.ws45{word-spacing:-12.084267pt;}
.wsf{word-spacing:-10.368000pt;}
.ws4f{word-spacing:-9.588800pt;}
.ws34{word-spacing:-8.314133pt;}
.ws50{word-spacing:-7.664800pt;}
.ws32{word-spacing:-6.213333pt;}
.ws11{word-spacing:-0.768000pt;}
.ws4d{word-spacing:-0.133333pt;}
.ws3c{word-spacing:0.834667pt;}
.ws3d{word-spacing:3.209600pt;}
.ws12{word-spacing:5.948267pt;}
.ws40{word-spacing:7.616000pt;}
.ws4e{word-spacing:8.842400pt;}
.ws16{word-spacing:22.592000pt;}
.wse{word-spacing:27.534400pt;}
.ws14{word-spacing:66.560000pt;}
.ws15{word-spacing:66.567467pt;}
.ws1{word-spacing:404.526933pt;}
._21{margin-left:-2.055467pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._5{width:2.250933pt;}
._7{width:3.322133pt;}
._4{width:16.689600pt;}
._e{width:19.330133pt;}
._6{width:20.488000pt;}
._13{width:22.128800pt;}
._12{width:23.488000pt;}
._17{width:24.384000pt;}
._d{width:26.100800pt;}
._11{width:27.414400pt;}
._14{width:29.436800pt;}
._a{width:30.903733pt;}
._1{width:32.000000pt;}
._8{width:35.386667pt;}
._1b{width:36.470933pt;}
._f{width:37.426400pt;}
._10{width:38.623467pt;}
._1c{width:39.555733pt;}
._1f{width:41.333333pt;}
._16{width:42.310933pt;}
._20{width:43.280800pt;}
._15{width:44.505600pt;}
._1d{width:50.565333pt;}
._18{width:52.093333pt;}
._19{width:54.390400pt;}
._b{width:56.617067pt;}
._1a{width:58.496000pt;}
._1e{width:60.203200pt;}
._9{width:78.572800pt;}
._c{width:117.760000pt;}
._0{width:544.128000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.974667pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y33{bottom:103.746667pt;}
.y32{bottom:122.146667pt;}
.y31{bottom:140.546667pt;}
.y30{bottom:158.946667pt;}
.y2f{bottom:177.188000pt;}
.y5c{bottom:184.226667pt;}
.y2e{bottom:195.588000pt;}
.y5b{bottom:202.466667pt;}
.y2d{bottom:213.988000pt;}
.y5a{bottom:220.866667pt;}
.y2c{bottom:232.388000pt;}
.y59{bottom:239.266667pt;}
.y2b{bottom:250.788000pt;}
.y58{bottom:257.666667pt;}
.y2a{bottom:269.188000pt;}
.y57{bottom:276.066667pt;}
.y29{bottom:287.588000pt;}
.y56{bottom:294.466667pt;}
.y28{bottom:305.988000pt;}
.y27{bottom:324.388000pt;}
.y55{bottom:331.266667pt;}
.y26{bottom:342.788000pt;}
.y54{bottom:349.666667pt;}
.y25{bottom:361.188000pt;}
.y53{bottom:368.066667pt;}
.y24{bottom:379.588000pt;}
.y52{bottom:386.466667pt;}
.y23{bottom:397.988000pt;}
.y51{bottom:404.866667pt;}
.y22{bottom:416.388000pt;}
.y50{bottom:423.266667pt;}
.y21{bottom:434.788000pt;}
.y4f{bottom:441.666667pt;}
.y20{bottom:453.188000pt;}
.y4e{bottom:460.066667pt;}
.y1f{bottom:471.588000pt;}
.y4d{bottom:478.466667pt;}
.y1e{bottom:489.988000pt;}
.y4c{bottom:496.866667pt;}
.y1d{bottom:508.388000pt;}
.y4b{bottom:515.266667pt;}
.y1c{bottom:526.788000pt;}
.y4a{bottom:533.666667pt;}
.y1b{bottom:545.188000pt;}
.y49{bottom:552.066667pt;}
.y1a{bottom:563.588000pt;}
.y48{bottom:570.466667pt;}
.y19{bottom:581.988000pt;}
.y47{bottom:588.866667pt;}
.y18{bottom:600.388000pt;}
.y46{bottom:607.266667pt;}
.y17{bottom:618.788000pt;}
.y45{bottom:625.666667pt;}
.y16{bottom:637.188000pt;}
.y44{bottom:644.066667pt;}
.y43{bottom:662.466667pt;}
.y15{bottom:673.988000pt;}
.y42{bottom:680.866667pt;}
.y14{bottom:692.388000pt;}
.y41{bottom:699.266667pt;}
.y13{bottom:710.788000pt;}
.y40{bottom:717.666667pt;}
.y3f{bottom:736.066667pt;}
.y12{bottom:747.588000pt;}
.y3e{bottom:754.466667pt;}
.y11{bottom:765.988000pt;}
.y3d{bottom:772.866667pt;}
.y10{bottom:784.388000pt;}
.y3c{bottom:791.266667pt;}
.yf{bottom:802.788000pt;}
.y3b{bottom:809.666667pt;}
.ye{bottom:821.188000pt;}
.y3a{bottom:828.066667pt;}
.yd{bottom:839.588000pt;}
.y39{bottom:846.466667pt;}
.yc{bottom:857.988000pt;}
.y38{bottom:864.866667pt;}
.y37{bottom:883.266667pt;}
.yb{bottom:894.788000pt;}
.y36{bottom:901.666667pt;}
.ya{bottom:913.188000pt;}
.y35{bottom:920.066667pt;}
.y34{bottom:938.466667pt;}
.y9{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h5{height:17.933333pt;}
.h4{height:40.085026pt;}
.h3{height:43.375000pt;}
.h6{height:44.437500pt;}
.h2{height:55.343750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:29.733333pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.x5{left:132.640000pt;}
.x4{left:230.078667pt;}
.x3{left:410.333333pt;}
.x7{left:457.920000pt;}
.x6{left:489.440000pt;}
.x2{left:649.920000pt;}
}




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