
    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_72fec1034012bcfa5480d2ce.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fc8fb97bcab102bbcaff71d2.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_87542a22f992467c90c077b5.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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;}
}
.wsf{word-spacing:-55.944000px;}
.ws4b{word-spacing:-38.806200px;}
.ws25{word-spacing:-38.655900px;}
.ws3b{word-spacing:-38.651400px;}
.ws1a{word-spacing:-38.645100px;}
.wsc{word-spacing:-38.443500px;}
.ws4c{word-spacing:-38.441700px;}
.ws2d{word-spacing:-38.439000px;}
.ws4{word-spacing:-38.437200px;}
.ws29{word-spacing:-38.433600px;}
.ws49{word-spacing:-38.432100px;}
.ws22{word-spacing:-38.160000px;}
.ws16{word-spacing:-38.155200px;}
.ws41{word-spacing:-38.143800px;}
.ws5{word-spacing:-38.085000px;}
.ws2{word-spacing:-38.081700px;}
.ws1c{word-spacing:-37.948200px;}
.ws0{word-spacing:-37.944000px;}
.ws48{word-spacing:-37.941900px;}
.ws2e{word-spacing:-37.941300px;}
.ws19{word-spacing:-37.940400px;}
.ws33{word-spacing:-37.939200px;}
.ws3{word-spacing:-37.935900px;}
.ws3e{word-spacing:-37.935000px;}
.ws20{word-spacing:-37.933200px;}
.ws23{word-spacing:-37.930500px;}
.wse{word-spacing:-37.927800px;}
.ws26{word-spacing:-37.863900px;}
.wsd{word-spacing:-37.432800px;}
.ws40{word-spacing:-37.221900px;}
.ws1d{word-spacing:-37.209600px;}
.ws46{word-spacing:-36.999000px;}
.ws3d{word-spacing:-36.500400px;}
.ws42{word-spacing:-36.489600px;}
.ws15{word-spacing:-36.000000px;}
.wsa{word-spacing:-35.058600px;}
.ws1f{word-spacing:-35.049900px;}
.ws12{word-spacing:-35.045100px;}
.ws27{word-spacing:-34.338300px;}
.ws36{word-spacing:-34.333200px;}
.ws11{word-spacing:-29.517000px;}
.ws3f{word-spacing:-29.304000px;}
.ws13{word-spacing:-29.282400px;}
.ws14{word-spacing:-29.074800px;}
.ws3c{word-spacing:-28.791600px;}
.ws37{word-spacing:-28.360800px;}
.ws7{word-spacing:-28.080000px;}
.ws6{word-spacing:-28.061100px;}
.ws1e{word-spacing:-27.635400px;}
.ws32{word-spacing:-27.126900px;}
.ws1b{word-spacing:-25.194600px;}
.ws31{word-spacing:-22.806000px;}
.ws8{word-spacing:-22.600800px;}
.ws28{word-spacing:-19.212000px;}
.ws47{word-spacing:-17.545800px;}
.ws9{word-spacing:-16.551900px;}
.ws18{word-spacing:-14.891400px;}
.wsb{word-spacing:-14.886000px;}
.ws43{word-spacing:-14.175000px;}
.ws3a{word-spacing:-13.470000px;}
.ws35{word-spacing:-13.451400px;}
.ws21{word-spacing:-13.235400px;}
.ws4a{word-spacing:-12.742200px;}
.ws38{word-spacing:-6.478200px;}
.ws10{word-spacing:-4.582200px;}
.ws45{word-spacing:-3.375900px;}
.ws17{word-spacing:-1.437900px;}
.ws44{word-spacing:5.265000px;}
.ws30{word-spacing:6.987600px;}
.ws39{word-spacing:7.416000px;}
.ws34{word-spacing:8.144100px;}
.ws2b{word-spacing:46.305900px;}
.ws24{word-spacing:71.074200px;}
.ws2f{word-spacing:91.695600px;}
.ws2a{word-spacing:94.334400px;}
.ws2c{word-spacing:189.600300px;}
.ws1{word-spacing:1037.484900px;}
._11{margin-left:-2.390400px;}
._2{margin-left:-1.368000px;}
._0{width:1.076400px;}
._13{width:2.334600px;}
._15{width:17.631000px;}
._1{width:18.968400px;}
._8{width:20.952000px;}
._5{width:22.381200px;}
._f{width:23.587200px;}
._7{width:27.637200px;}
._3{width:29.141100px;}
._d{width:30.343800px;}
._9{width:32.470200px;}
._c{width:34.614000px;}
._4{width:40.395600px;}
._a{width:44.167800px;}
._10{width:51.118200px;}
._6{width:52.462200px;}
._14{width:54.495000px;}
._12{width:62.341200px;}
._b{width:63.932400px;}
._e{width:65.511900px;}
._16{width:82.800000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:5.700000px;}
.y2f{bottom:5.761500px;}
.y28{bottom:5.820000px;}
.y33{bottom:6.525000px;}
.y4{bottom:12.240000px;}
.y29{bottom:16.080000px;}
.y27{bottom:26.340000px;}
.y2b{bottom:26.400000px;}
.y2e{bottom:26.461500px;}
.y32{bottom:27.225000px;}
.y3{bottom:63.975000px;}
.y25{bottom:119.775000px;}
.y4c{bottom:149.655000px;}
.y4b{bottom:170.355000px;}
.y4a{bottom:191.055000px;}
.y24{bottom:203.115000px;}
.y23{bottom:223.815000px;}
.y49{bottom:232.815000px;}
.y22{bottom:265.575000px;}
.y48{bottom:274.575000px;}
.y21{bottom:286.275000px;}
.y47{bottom:295.275000px;}
.y20{bottom:306.975000px;}
.y46{bottom:315.975000px;}
.y1f{bottom:327.675000px;}
.y45{bottom:336.675000px;}
.y1e{bottom:369.436500px;}
.y44{bottom:378.255000px;}
.y1d{bottom:390.136500px;}
.y43{bottom:398.955000px;}
.y42{bottom:419.655000px;}
.y1c{bottom:431.715000px;}
.y41{bottom:461.415000px;}
.y1b{bottom:473.475000px;}
.y40{bottom:482.115000px;}
.y1a{bottom:494.175000px;}
.y3f{bottom:502.815000px;}
.y19{bottom:514.875000px;}
.y18{bottom:535.575000px;}
.y3e{bottom:544.575000px;}
.y17{bottom:577.336500px;}
.y16{bottom:598.036500px;}
.y15{bottom:618.736500px;}
.y3d{bottom:627.915000px;}
.y14{bottom:639.436500px;}
.y3c{bottom:648.615000px;}
.y3b{bottom:669.315000px;}
.y13{bottom:681.015000px;}
.y12{bottom:701.715000px;}
.y3a{bottom:711.075000px;}
.y11{bottom:722.415000px;}
.y39{bottom:731.775000px;}
.y10{bottom:743.115000px;}
.y38{bottom:752.475000px;}
.yf{bottom:784.875000px;}
.y37{bottom:794.055000px;}
.y36{bottom:814.755000px;}
.ye{bottom:826.636500px;}
.y35{bottom:835.455000px;}
.y34{bottom:856.155000px;}
.yd{bottom:868.215000px;}
.y55{bottom:868.575000px;}
.yc{bottom:888.915000px;}
.y31{bottom:896.250000px;}
.yb{bottom:909.615000px;}
.ya{bottom:930.315000px;}
.y30{bottom:944.475000px;}
.y9{bottom:951.015000px;}
.y54{bottom:952.095000px;}
.y8{bottom:971.715000px;}
.y53{bottom:972.795000px;}
.y2d{bottom:991.875000px;}
.y52{bottom:993.495000px;}
.y7{bottom:1013.475000px;}
.y51{bottom:1014.195000px;}
.y50{bottom:1034.895000px;}
.y2a{bottom:1039.275000px;}
.y4f{bottom:1055.595000px;}
.y26{bottom:1086.675000px;}
.y4e{bottom:1097.175000px;}
.y6{bottom:1117.875000px;}
.y4d{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h7{height:45.075000px;}
.h6{height:45.825000px;}
.h8{height:45.900000px;}
.h2{height:48.796875px;}
.h4{height:48.972656px;}
.h5{height:50.027344px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w3{width:235.500000px;}
.w4{width:247.275000px;}
.w5{width:292.725000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.x8{left:51.300000px;}
.x9{left:73.800000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.x7{left:153.360000px;}
.x2{left:160.560000px;}
.x6{left:222.480000px;}
.xa{left:288.975000px;}
.x5{left:357.660000px;}
.xb{left:538.425000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.wsf{word-spacing:-49.728000pt;}
.ws4b{word-spacing:-34.494400pt;}
.ws25{word-spacing:-34.360800pt;}
.ws3b{word-spacing:-34.356800pt;}
.ws1a{word-spacing:-34.351200pt;}
.wsc{word-spacing:-34.172000pt;}
.ws4c{word-spacing:-34.170400pt;}
.ws2d{word-spacing:-34.168000pt;}
.ws4{word-spacing:-34.166400pt;}
.ws29{word-spacing:-34.163200pt;}
.ws49{word-spacing:-34.161867pt;}
.ws22{word-spacing:-33.920000pt;}
.ws16{word-spacing:-33.915733pt;}
.ws41{word-spacing:-33.905600pt;}
.ws5{word-spacing:-33.853333pt;}
.ws2{word-spacing:-33.850400pt;}
.ws1c{word-spacing:-33.731733pt;}
.ws0{word-spacing:-33.728000pt;}
.ws48{word-spacing:-33.726133pt;}
.ws2e{word-spacing:-33.725600pt;}
.ws19{word-spacing:-33.724800pt;}
.ws33{word-spacing:-33.723733pt;}
.ws3{word-spacing:-33.720800pt;}
.ws3e{word-spacing:-33.720000pt;}
.ws20{word-spacing:-33.718400pt;}
.ws23{word-spacing:-33.716000pt;}
.wse{word-spacing:-33.713600pt;}
.ws26{word-spacing:-33.656800pt;}
.wsd{word-spacing:-33.273600pt;}
.ws40{word-spacing:-33.086133pt;}
.ws1d{word-spacing:-33.075200pt;}
.ws46{word-spacing:-32.888000pt;}
.ws3d{word-spacing:-32.444800pt;}
.ws42{word-spacing:-32.435200pt;}
.ws15{word-spacing:-32.000000pt;}
.wsa{word-spacing:-31.163200pt;}
.ws1f{word-spacing:-31.155467pt;}
.ws12{word-spacing:-31.151200pt;}
.ws27{word-spacing:-30.522933pt;}
.ws36{word-spacing:-30.518400pt;}
.ws11{word-spacing:-26.237333pt;}
.ws3f{word-spacing:-26.048000pt;}
.ws13{word-spacing:-26.028800pt;}
.ws14{word-spacing:-25.844267pt;}
.ws3c{word-spacing:-25.592533pt;}
.ws37{word-spacing:-25.209600pt;}
.ws7{word-spacing:-24.960000pt;}
.ws6{word-spacing:-24.943200pt;}
.ws1e{word-spacing:-24.564800pt;}
.ws32{word-spacing:-24.112800pt;}
.ws1b{word-spacing:-22.395200pt;}
.ws31{word-spacing:-20.272000pt;}
.ws8{word-spacing:-20.089600pt;}
.ws28{word-spacing:-17.077333pt;}
.ws47{word-spacing:-15.596267pt;}
.ws9{word-spacing:-14.712800pt;}
.ws18{word-spacing:-13.236800pt;}
.wsb{word-spacing:-13.232000pt;}
.ws43{word-spacing:-12.600000pt;}
.ws3a{word-spacing:-11.973333pt;}
.ws35{word-spacing:-11.956800pt;}
.ws21{word-spacing:-11.764800pt;}
.ws4a{word-spacing:-11.326400pt;}
.ws38{word-spacing:-5.758400pt;}
.ws10{word-spacing:-4.073067pt;}
.ws45{word-spacing:-3.000800pt;}
.ws17{word-spacing:-1.278133pt;}
.ws44{word-spacing:4.680000pt;}
.ws30{word-spacing:6.211200pt;}
.ws39{word-spacing:6.592000pt;}
.ws34{word-spacing:7.239200pt;}
.ws2b{word-spacing:41.160800pt;}
.ws24{word-spacing:63.177067pt;}
.ws2f{word-spacing:81.507200pt;}
.ws2a{word-spacing:83.852800pt;}
.ws2c{word-spacing:168.533600pt;}
.ws1{word-spacing:922.208800pt;}
._11{margin-left:-2.124800pt;}
._2{margin-left:-1.216000pt;}
._0{width:0.956800pt;}
._13{width:2.075200pt;}
._15{width:15.672000pt;}
._1{width:16.860800pt;}
._8{width:18.624000pt;}
._5{width:19.894400pt;}
._f{width:20.966400pt;}
._7{width:24.566400pt;}
._3{width:25.903200pt;}
._d{width:26.972267pt;}
._9{width:28.862400pt;}
._c{width:30.768000pt;}
._4{width:35.907200pt;}
._a{width:39.260267pt;}
._10{width:45.438400pt;}
._6{width:46.633067pt;}
._14{width:48.440000pt;}
._12{width:55.414400pt;}
._b{width:56.828800pt;}
._e{width:58.232800pt;}
._16{width:73.600000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:5.066667pt;}
.y2f{bottom:5.121333pt;}
.y28{bottom:5.173333pt;}
.y33{bottom:5.800000pt;}
.y4{bottom:10.880000pt;}
.y29{bottom:14.293333pt;}
.y27{bottom:23.413333pt;}
.y2b{bottom:23.466667pt;}
.y2e{bottom:23.521333pt;}
.y32{bottom:24.200000pt;}
.y3{bottom:56.866667pt;}
.y25{bottom:106.466667pt;}
.y4c{bottom:133.026667pt;}
.y4b{bottom:151.426667pt;}
.y4a{bottom:169.826667pt;}
.y24{bottom:180.546667pt;}
.y23{bottom:198.946667pt;}
.y49{bottom:206.946667pt;}
.y22{bottom:236.066667pt;}
.y48{bottom:244.066667pt;}
.y21{bottom:254.466667pt;}
.y47{bottom:262.466667pt;}
.y20{bottom:272.866667pt;}
.y46{bottom:280.866667pt;}
.y1f{bottom:291.266667pt;}
.y45{bottom:299.266667pt;}
.y1e{bottom:328.388000pt;}
.y44{bottom:336.226667pt;}
.y1d{bottom:346.788000pt;}
.y43{bottom:354.626667pt;}
.y42{bottom:373.026667pt;}
.y1c{bottom:383.746667pt;}
.y41{bottom:410.146667pt;}
.y1b{bottom:420.866667pt;}
.y40{bottom:428.546667pt;}
.y1a{bottom:439.266667pt;}
.y3f{bottom:446.946667pt;}
.y19{bottom:457.666667pt;}
.y18{bottom:476.066667pt;}
.y3e{bottom:484.066667pt;}
.y17{bottom:513.188000pt;}
.y16{bottom:531.588000pt;}
.y15{bottom:549.988000pt;}
.y3d{bottom:558.146667pt;}
.y14{bottom:568.388000pt;}
.y3c{bottom:576.546667pt;}
.y3b{bottom:594.946667pt;}
.y13{bottom:605.346667pt;}
.y12{bottom:623.746667pt;}
.y3a{bottom:632.066667pt;}
.y11{bottom:642.146667pt;}
.y39{bottom:650.466667pt;}
.y10{bottom:660.546667pt;}
.y38{bottom:668.866667pt;}
.yf{bottom:697.666667pt;}
.y37{bottom:705.826667pt;}
.y36{bottom:724.226667pt;}
.ye{bottom:734.788000pt;}
.y35{bottom:742.626667pt;}
.y34{bottom:761.026667pt;}
.yd{bottom:771.746667pt;}
.y55{bottom:772.066667pt;}
.yc{bottom:790.146667pt;}
.y31{bottom:796.666667pt;}
.yb{bottom:808.546667pt;}
.ya{bottom:826.946667pt;}
.y30{bottom:839.533333pt;}
.y9{bottom:845.346667pt;}
.y54{bottom:846.306667pt;}
.y8{bottom:863.746667pt;}
.y53{bottom:864.706667pt;}
.y2d{bottom:881.666667pt;}
.y52{bottom:883.106667pt;}
.y7{bottom:900.866667pt;}
.y51{bottom:901.506667pt;}
.y50{bottom:919.906667pt;}
.y2a{bottom:923.800000pt;}
.y4f{bottom:938.306667pt;}
.y26{bottom:965.933333pt;}
.y4e{bottom:975.266667pt;}
.y6{bottom:993.666667pt;}
.y4d{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h7{height:40.066667pt;}
.h6{height:40.733333pt;}
.h8{height:40.800000pt;}
.h2{height:43.375000pt;}
.h4{height:43.531250pt;}
.h5{height:44.468750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w3{width:209.333333pt;}
.w4{width:219.800000pt;}
.w5{width:260.200000pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.x8{left:45.600000pt;}
.x9{left:65.600000pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.x7{left:136.320000pt;}
.x2{left:142.720000pt;}
.x6{left:197.760000pt;}
.xa{left:256.866667pt;}
.x5{left:317.920000pt;}
.xb{left:478.600000pt;}
}




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