
    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_3dcae56779d79450804fe915.woff')format("woff");}.ff1{font-family:ff1;line-height:0.724609;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_d83a0c5b0eeabd73c7492e57.woff')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_ada7e848afa152545295f7da.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_6a9e42cbc79843f35ebbd834.woff')format("woff");}.ff4{font-family:ff4;line-height:0.691406;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_e8556726a2d368b316bc6469.woff')format("woff");}.ff5{font-family:ff5;line-height:1.050293;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;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7{word-spacing:-55.944000px;}
.ws6{word-spacing:-40.968000px;}
.ws2c{word-spacing:-38.664600px;}
.wsb{word-spacing:-38.661900px;}
.ws9{word-spacing:-38.660400px;}
.ws24{word-spacing:-38.658600px;}
.ws1b{word-spacing:-38.649600px;}
.ws47{word-spacing:-38.444400px;}
.ws25{word-spacing:-38.367000px;}
.ws13{word-spacing:-38.160000px;}
.ws29{word-spacing:-38.158200px;}
.ws36{word-spacing:-38.154000px;}
.ws3a{word-spacing:-38.142000px;}
.ws0{word-spacing:-38.096400px;}
.ws43{word-spacing:-38.082000px;}
.wsa{word-spacing:-38.075400px;}
.ws45{word-spacing:-37.946400px;}
.ws1{word-spacing:-37.944000px;}
.ws31{word-spacing:-37.940400px;}
.ws3{word-spacing:-37.931400px;}
.wsd{word-spacing:-37.930500px;}
.ws17{word-spacing:-37.926000px;}
.wsc{word-spacing:-37.440000px;}
.wse{word-spacing:-37.437900px;}
.ws44{word-spacing:-37.427400px;}
.ws40{word-spacing:-37.014000px;}
.ws3e{word-spacing:-36.720000px;}
.ws42{word-spacing:-36.503100px;}
.ws3c{word-spacing:-36.491400px;}
.ws2d{word-spacing:-35.997300px;}
.ws10{word-spacing:-35.278200px;}
.wsf{word-spacing:-35.274000px;}
.ws34{word-spacing:-35.060400px;}
.ws2a{word-spacing:-35.056200px;}
.ws3b{word-spacing:-34.558200px;}
.ws26{word-spacing:-34.112700px;}
.ws14{word-spacing:-33.608700px;}
.ws8{word-spacing:-33.547800px;}
.ws22{word-spacing:-33.391800px;}
.ws37{word-spacing:-33.120000px;}
.ws28{word-spacing:-33.108000px;}
.ws3d{word-spacing:-32.902200px;}
.ws1f{word-spacing:-32.900400px;}
.ws2f{word-spacing:-31.450200px;}
.ws46{word-spacing:-30.239700px;}
.ws23{word-spacing:-30.237000px;}
.ws21{word-spacing:-30.222000px;}
.ws30{word-spacing:-30.013200px;}
.ws2b{word-spacing:-29.302200px;}
.ws3f{word-spacing:-29.088000px;}
.ws35{word-spacing:-28.796400px;}
.ws18{word-spacing:-28.794000px;}
.ws19{word-spacing:-28.782900px;}
.ws27{word-spacing:-28.582200px;}
.ws33{word-spacing:-28.580400px;}
.ws20{word-spacing:-28.078200px;}
.ws38{word-spacing:-27.136800px;}
.ws5{word-spacing:-23.687700px;}
.ws11{word-spacing:-23.024700px;}
.ws1c{word-spacing:-20.874600px;}
.ws2e{word-spacing:-20.160000px;}
.ws1e{word-spacing:-19.213200px;}
.ws32{word-spacing:-17.766000px;}
.ws1d{word-spacing:-17.060400px;}
.ws16{word-spacing:-16.831800px;}
.ws41{word-spacing:-16.344000px;}
.ws15{word-spacing:-16.338600px;}
.ws39{word-spacing:-15.622200px;}
.ws1a{word-spacing:-8.404200px;}
.ws4{word-spacing:-5.177700px;}
.ws12{word-spacing:-1.940400px;}
.ws2{word-spacing:537.269400px;}
._0{margin-left:-1.228800px;}
._3{width:1.089900px;}
._5{width:17.430000px;}
._4{width:18.775200px;}
._15{width:20.680500px;}
._6{width:21.728400px;}
._14{width:23.036400px;}
._9{width:24.079500px;}
._12{width:25.756200px;}
._10{width:26.885400px;}
._c{width:28.310700px;}
._f{width:29.680800px;}
._7{width:34.832700px;}
._11{width:36.902100px;}
._e{width:38.044800px;}
._13{width:39.366000px;}
._b{width:40.773000px;}
._a{width:41.826600px;}
._d{width:49.180800px;}
._8{width:55.436400px;}
._1{width:71.928000px;}
._16{width:158.400000px;}
._2{width:432.072000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.y8{bottom:34.725000px;}
.y9{bottom:42.571500px;}
.y2d{bottom:125.175000px;}
.y2c{bottom:145.875000px;}
.y2b{bottom:166.575000px;}
.y50{bottom:215.175000px;}
.y4f{bottom:235.875000px;}
.y2a{bottom:238.036500px;}
.y4e{bottom:256.575000px;}
.y29{bottom:258.736500px;}
.y4d{bottom:277.275000px;}
.y28{bottom:279.436500px;}
.y4c{bottom:297.975000px;}
.y27{bottom:300.136500px;}
.y4b{bottom:318.675000px;}
.y26{bottom:335.775000px;}
.y4a{bottom:339.375000px;}
.y49{bottom:360.075000px;}
.y25{bottom:371.415000px;}
.y48{bottom:380.775000px;}
.y24{bottom:392.115000px;}
.y47{bottom:401.475000px;}
.y23{bottom:412.815000px;}
.y46{bottom:422.175000px;}
.y22{bottom:433.515000px;}
.y45{bottom:442.875000px;}
.y21{bottom:454.215000px;}
.y44{bottom:463.575000px;}
.y20{bottom:474.915000px;}
.y43{bottom:484.275000px;}
.y1f{bottom:495.615000px;}
.y42{bottom:504.975000px;}
.y1e{bottom:516.315000px;}
.y41{bottom:525.675000px;}
.y1d{bottom:537.015000px;}
.y40{bottom:561.315000px;}
.y1c{bottom:572.836500px;}
.y3f{bottom:597.136500px;}
.y1b{bottom:608.475000px;}
.y3e{bottom:617.836500px;}
.y1a{bottom:629.175000px;}
.y3d{bottom:638.536500px;}
.y19{bottom:649.875000px;}
.y3c{bottom:659.236500px;}
.y18{bottom:685.515000px;}
.y3b{bottom:694.875000px;}
.y17{bottom:706.215000px;}
.y16{bottom:726.915000px;}
.y3a{bottom:730.515000px;}
.y15{bottom:747.615000px;}
.y39{bottom:751.215000px;}
.y14{bottom:768.315000px;}
.y38{bottom:771.915000px;}
.y13{bottom:789.015000px;}
.y37{bottom:792.615000px;}
.y12{bottom:809.715000px;}
.y36{bottom:828.436500px;}
.y11{bottom:830.415000px;}
.y35{bottom:849.136500px;}
.y10{bottom:866.236500px;}
.y34{bottom:869.836500px;}
.y33{bottom:890.536500px;}
.yf{bottom:901.875000px;}
.y32{bottom:911.236500px;}
.ye{bottom:937.515000px;}
.y31{bottom:946.875000px;}
.y30{bottom:967.575000px;}
.yd{bottom:973.336500px;}
.y2f{bottom:988.275000px;}
.yc{bottom:1008.975000px;}
.y2e{bottom:1029.675000px;}
.yb{bottom:1044.615000px;}
.ya{bottom:1065.315000px;}
.y7{bottom:1106.715000px;}
.y6{bottom:1127.415000px;}
.y5{bottom:1148.115000px;}
.y4{bottom:1168.815000px;}
.y3{bottom:1189.515000px;}
.y2{bottom:1210.215000px;}
.y1{bottom:1231.275000px;}
.h6{height:45.225146px;}
.h4{height:48.761719px;}
.h3{height:48.796875px;}
.h5{height:58.275000px;}
.h7{height:60.082031px;}
.h2{height:60.467139px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.620000px;}
.x3{left:149.938500px;}
.x1{left:201.060000px;}
.x6{left:264.238500px;}
.x4{left:316.438500px;}
.x9{left:343.800000px;}
.x8{left:569.160000px;}
.x5{left:586.080000px;}
.x7{left:671.220000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws7{word-spacing:-49.728000pt;}
.ws6{word-spacing:-36.416000pt;}
.ws2c{word-spacing:-34.368533pt;}
.wsb{word-spacing:-34.366133pt;}
.ws9{word-spacing:-34.364800pt;}
.ws24{word-spacing:-34.363200pt;}
.ws1b{word-spacing:-34.355200pt;}
.ws47{word-spacing:-34.172800pt;}
.ws25{word-spacing:-34.104000pt;}
.ws13{word-spacing:-33.920000pt;}
.ws29{word-spacing:-33.918400pt;}
.ws36{word-spacing:-33.914667pt;}
.ws3a{word-spacing:-33.904000pt;}
.ws0{word-spacing:-33.863467pt;}
.ws43{word-spacing:-33.850667pt;}
.wsa{word-spacing:-33.844800pt;}
.ws45{word-spacing:-33.730133pt;}
.ws1{word-spacing:-33.728000pt;}
.ws31{word-spacing:-33.724800pt;}
.ws3{word-spacing:-33.716800pt;}
.wsd{word-spacing:-33.716000pt;}
.ws17{word-spacing:-33.712000pt;}
.wsc{word-spacing:-33.280000pt;}
.wse{word-spacing:-33.278133pt;}
.ws44{word-spacing:-33.268800pt;}
.ws40{word-spacing:-32.901333pt;}
.ws3e{word-spacing:-32.640000pt;}
.ws42{word-spacing:-32.447200pt;}
.ws3c{word-spacing:-32.436800pt;}
.ws2d{word-spacing:-31.997600pt;}
.ws10{word-spacing:-31.358400pt;}
.wsf{word-spacing:-31.354667pt;}
.ws34{word-spacing:-31.164800pt;}
.ws2a{word-spacing:-31.161067pt;}
.ws3b{word-spacing:-30.718400pt;}
.ws26{word-spacing:-30.322400pt;}
.ws14{word-spacing:-29.874400pt;}
.ws8{word-spacing:-29.820267pt;}
.ws22{word-spacing:-29.681600pt;}
.ws37{word-spacing:-29.440000pt;}
.ws28{word-spacing:-29.429333pt;}
.ws3d{word-spacing:-29.246400pt;}
.ws1f{word-spacing:-29.244800pt;}
.ws2f{word-spacing:-27.955733pt;}
.ws46{word-spacing:-26.879733pt;}
.ws23{word-spacing:-26.877333pt;}
.ws21{word-spacing:-26.864000pt;}
.ws30{word-spacing:-26.678400pt;}
.ws2b{word-spacing:-26.046400pt;}
.ws3f{word-spacing:-25.856000pt;}
.ws35{word-spacing:-25.596800pt;}
.ws18{word-spacing:-25.594667pt;}
.ws19{word-spacing:-25.584800pt;}
.ws27{word-spacing:-25.406400pt;}
.ws33{word-spacing:-25.404800pt;}
.ws20{word-spacing:-24.958400pt;}
.ws38{word-spacing:-24.121600pt;}
.ws5{word-spacing:-21.055733pt;}
.ws11{word-spacing:-20.466400pt;}
.ws1c{word-spacing:-18.555200pt;}
.ws2e{word-spacing:-17.920000pt;}
.ws1e{word-spacing:-17.078400pt;}
.ws32{word-spacing:-15.792000pt;}
.ws1d{word-spacing:-15.164800pt;}
.ws16{word-spacing:-14.961600pt;}
.ws41{word-spacing:-14.528000pt;}
.ws15{word-spacing:-14.523200pt;}
.ws39{word-spacing:-13.886400pt;}
.ws1a{word-spacing:-7.470400pt;}
.ws4{word-spacing:-4.602400pt;}
.ws12{word-spacing:-1.724800pt;}
.ws2{word-spacing:477.572800pt;}
._0{margin-left:-1.092267pt;}
._3{width:0.968800pt;}
._5{width:15.493333pt;}
._4{width:16.689067pt;}
._15{width:18.382667pt;}
._6{width:19.314133pt;}
._14{width:20.476800pt;}
._9{width:21.404000pt;}
._12{width:22.894400pt;}
._10{width:23.898133pt;}
._c{width:25.165067pt;}
._f{width:26.382933pt;}
._7{width:30.962400pt;}
._11{width:32.801867pt;}
._e{width:33.817600pt;}
._13{width:34.992000pt;}
._b{width:36.242667pt;}
._a{width:37.179200pt;}
._d{width:43.716267pt;}
._8{width:49.276800pt;}
._1{width:63.936000pt;}
._16{width:140.800000pt;}
._2{width:384.064000pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:30.866667pt;}
.y9{bottom:37.841333pt;}
.y2d{bottom:111.266667pt;}
.y2c{bottom:129.666667pt;}
.y2b{bottom:148.066667pt;}
.y50{bottom:191.266667pt;}
.y4f{bottom:209.666667pt;}
.y2a{bottom:211.588000pt;}
.y4e{bottom:228.066667pt;}
.y29{bottom:229.988000pt;}
.y4d{bottom:246.466667pt;}
.y28{bottom:248.388000pt;}
.y4c{bottom:264.866667pt;}
.y27{bottom:266.788000pt;}
.y4b{bottom:283.266667pt;}
.y26{bottom:298.466667pt;}
.y4a{bottom:301.666667pt;}
.y49{bottom:320.066667pt;}
.y25{bottom:330.146667pt;}
.y48{bottom:338.466667pt;}
.y24{bottom:348.546667pt;}
.y47{bottom:356.866667pt;}
.y23{bottom:366.946667pt;}
.y46{bottom:375.266667pt;}
.y22{bottom:385.346667pt;}
.y45{bottom:393.666667pt;}
.y21{bottom:403.746667pt;}
.y44{bottom:412.066667pt;}
.y20{bottom:422.146667pt;}
.y43{bottom:430.466667pt;}
.y1f{bottom:440.546667pt;}
.y42{bottom:448.866667pt;}
.y1e{bottom:458.946667pt;}
.y41{bottom:467.266667pt;}
.y1d{bottom:477.346667pt;}
.y40{bottom:498.946667pt;}
.y1c{bottom:509.188000pt;}
.y3f{bottom:530.788000pt;}
.y1b{bottom:540.866667pt;}
.y3e{bottom:549.188000pt;}
.y1a{bottom:559.266667pt;}
.y3d{bottom:567.588000pt;}
.y19{bottom:577.666667pt;}
.y3c{bottom:585.988000pt;}
.y18{bottom:609.346667pt;}
.y3b{bottom:617.666667pt;}
.y17{bottom:627.746667pt;}
.y16{bottom:646.146667pt;}
.y3a{bottom:649.346667pt;}
.y15{bottom:664.546667pt;}
.y39{bottom:667.746667pt;}
.y14{bottom:682.946667pt;}
.y38{bottom:686.146667pt;}
.y13{bottom:701.346667pt;}
.y37{bottom:704.546667pt;}
.y12{bottom:719.746667pt;}
.y36{bottom:736.388000pt;}
.y11{bottom:738.146667pt;}
.y35{bottom:754.788000pt;}
.y10{bottom:769.988000pt;}
.y34{bottom:773.188000pt;}
.y33{bottom:791.588000pt;}
.yf{bottom:801.666667pt;}
.y32{bottom:809.988000pt;}
.ye{bottom:833.346667pt;}
.y31{bottom:841.666667pt;}
.y30{bottom:860.066667pt;}
.yd{bottom:865.188000pt;}
.y2f{bottom:878.466667pt;}
.yc{bottom:896.866667pt;}
.y2e{bottom:915.266667pt;}
.yb{bottom:928.546667pt;}
.ya{bottom:946.946667pt;}
.y7{bottom:983.746667pt;}
.y6{bottom:1002.146667pt;}
.y5{bottom:1020.546667pt;}
.y4{bottom:1038.946667pt;}
.y3{bottom:1057.346667pt;}
.y2{bottom:1075.746667pt;}
.y1{bottom:1094.466667pt;}
.h6{height:40.200130pt;}
.h4{height:43.343750pt;}
.h3{height:43.375000pt;}
.h5{height:51.800000pt;}
.h7{height:53.406250pt;}
.h2{height:53.748568pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.440000pt;}
.x3{left:133.278667pt;}
.x1{left:178.720000pt;}
.x6{left:234.878667pt;}
.x4{left:281.278667pt;}
.x9{left:305.600000pt;}
.x8{left:505.920000pt;}
.x5{left:520.960000pt;}
.x7{left:596.640000pt;}
}




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