
    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_44dd7ab31927892c732158e2.woff2')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_cb8c9a08614579b852c19951.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_444b5346acc1dc81562e1d97.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_8c2741b967a5fd23312430f7.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a0f41030c5d5983f96e81177.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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;}
.ls1{letter-spacing:188.597700px;}
.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;}
.ws4d{word-spacing:-38.878200px;}
.ws6{word-spacing:-38.657700px;}
.ws32{word-spacing:-38.656800px;}
.ws39{word-spacing:-38.650500px;}
.ws5{word-spacing:-38.647800px;}
.ws15{word-spacing:-38.444400px;}
.ws2e{word-spacing:-38.443200px;}
.wse{word-spacing:-38.442600px;}
.ws25{word-spacing:-38.439900px;}
.ws2d{word-spacing:-38.439000px;}
.ws2f{word-spacing:-38.432700px;}
.ws3{word-spacing:-38.374200px;}
.ws4a{word-spacing:-38.359800px;}
.ws1c{word-spacing:-38.166000px;}
.ws38{word-spacing:-38.156400px;}
.ws20{word-spacing:-38.149200px;}
.ws9{word-spacing:-38.087100px;}
.ws0{word-spacing:-37.944000px;}
.ws4{word-spacing:-37.938600px;}
.wsa{word-spacing:-37.932300px;}
.ws2{word-spacing:-37.931400px;}
.wsd{word-spacing:-37.927800px;}
.ws18{word-spacing:-37.926000px;}
.wsb{word-spacing:-37.920600px;}
.wsc{word-spacing:-37.724400px;}
.ws2a{word-spacing:-37.721700px;}
.ws27{word-spacing:-37.434600px;}
.ws31{word-spacing:-37.200600px;}
.ws24{word-spacing:-36.990900px;}
.ws1b{word-spacing:-36.504000px;}
.ws4b{word-spacing:-35.998200px;}
.ws37{word-spacing:-35.784000px;}
.ws36{word-spacing:-35.757000px;}
.ws29{word-spacing:-35.047800px;}
.ws19{word-spacing:-33.623100px;}
.ws43{word-spacing:-33.613200px;}
.ws13{word-spacing:-33.610500px;}
.ws8{word-spacing:-33.547800px;}
.ws4c{word-spacing:-33.124200px;}
.ws12{word-spacing:-32.400000px;}
.ws49{word-spacing:-31.456800px;}
.ws14{word-spacing:-29.292300px;}
.ws3a{word-spacing:-26.858400px;}
.ws3b{word-spacing:-26.214000px;}
.ws44{word-spacing:-25.710000px;}
.ws52{word-spacing:-25.703100px;}
.ws22{word-spacing:-25.480800px;}
.ws46{word-spacing:-24.471000px;}
.ws16{word-spacing:-23.031900px;}
.ws17{word-spacing:-22.824000px;}
.ws4f{word-spacing:-22.324200px;}
.ws35{word-spacing:-22.320000px;}
.ws34{word-spacing:-22.095600px;}
.ws33{word-spacing:-22.072500px;}
.ws4e{word-spacing:-20.158200px;}
.ws28{word-spacing:-19.224000px;}
.ws7{word-spacing:-18.472500px;}
.ws10{word-spacing:-16.327800px;}
.ws1d{word-spacing:-15.840000px;}
.ws45{word-spacing:-14.893200px;}
.ws48{word-spacing:-14.881200px;}
.ws1a{word-spacing:-10.348200px;}
.ws2c{word-spacing:-7.704000px;}
.ws1e{word-spacing:-7.695000px;}
.ws23{word-spacing:-5.530500px;}
.ws2b{word-spacing:-4.824000px;}
.ws26{word-spacing:-4.604400px;}
.ws51{word-spacing:-1.944000px;}
.ws11{word-spacing:-1.721400px;}
.ws47{word-spacing:0.000000px;}
.ws41{word-spacing:1.684800px;}
.ws42{word-spacing:3.614400px;}
.ws21{word-spacing:5.256000px;}
.ws3e{word-spacing:5.273100px;}
.ws3f{word-spacing:5.976000px;}
.ws30{word-spacing:5.986800px;}
.ws40{word-spacing:8.872200px;}
.ws1f{word-spacing:11.235000px;}
.ws50{word-spacing:20.161800px;}
.ws3c{word-spacing:26.868600px;}
.ws3d{word-spacing:27.586800px;}
.ws1{word-spacing:455.092800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._4{width:18.775800px;}
._b{width:20.448000px;}
._14{width:21.933900px;}
._8{width:23.465100px;}
._19{width:24.728700px;}
._1b{width:25.804500px;}
._9{width:27.832500px;}
._15{width:30.187200px;}
._f{width:31.593600px;}
._13{width:34.880100px;}
._1{width:36.000000px;}
._5{width:37.156800px;}
._6{width:40.735800px;}
._c{width:41.764800px;}
._1a{width:42.860400px;}
._a{width:46.751400px;}
._d{width:49.509600px;}
._10{width:51.460500px;}
._11{width:52.772400px;}
._7{width:55.361400px;}
._17{width:58.861200px;}
._18{width:61.029600px;}
._e{width:62.323200px;}
._12{width:63.324000px;}
._16{width:66.937800px;}
._1c{width:77.542200px;}
._1d{width:78.562800px;}
._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);}
.fs2{font-size:59.700000px;}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:3.750000px;}
.y31{bottom:3.780000px;}
.y33{bottom:3.811500px;}
.y35{bottom:3.840000px;}
.y2d{bottom:3.900000px;}
.y7{bottom:4.471500px;}
.y37{bottom:4.695000px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y53{bottom:115.815000px;}
.y2a{bottom:120.496500px;}
.y52{bottom:136.515000px;}
.y29{bottom:141.196500px;}
.y51{bottom:157.215000px;}
.y50{bottom:177.915000px;}
.y28{bottom:182.775000px;}
.y27{bottom:203.475000px;}
.y4f{bottom:219.675000px;}
.y26{bottom:224.175000px;}
.y4e{bottom:240.375000px;}
.y25{bottom:244.875000px;}
.y4d{bottom:261.075000px;}
.y24{bottom:265.575000px;}
.y4c{bottom:281.775000px;}
.y23{bottom:307.336500px;}
.y4b{bottom:323.355000px;}
.y22{bottom:349.096500px;}
.y4a{bottom:365.115000px;}
.y49{bottom:385.815000px;}
.y21{bottom:390.675000px;}
.y48{bottom:406.515000px;}
.y20{bottom:411.375000px;}
.y47{bottom:427.215000px;}
.y1f{bottom:432.075000px;}
.y46{bottom:447.915000px;}
.y1e{bottom:452.775000px;}
.y45{bottom:468.615000px;}
.y44{bottom:489.315000px;}
.y1d{bottom:494.536500px;}
.y61{bottom:514.875000px;}
.y1c{bottom:515.236500px;}
.y43{bottom:531.075000px;}
.y60{bottom:535.575000px;}
.y1b{bottom:535.936500px;}
.y5f{bottom:556.275000px;}
.y1a{bottom:556.636500px;}
.y42{bottom:572.655000px;}
.y5e{bottom:576.975000px;}
.y19{bottom:598.396500px;}
.y41{bottom:614.415000px;}
.y5d{bottom:618.736500px;}
.y18{bottom:619.096500px;}
.y40{bottom:635.115000px;}
.y5c{bottom:639.436500px;}
.y17{bottom:639.795000px;}
.y3f{bottom:655.815000px;}
.y16{bottom:660.496500px;}
.y3e{bottom:676.515000px;}
.y15{bottom:681.195000px;}
.y3d{bottom:697.215000px;}
.y5b{bottom:701.896500px;}
.y3c{bottom:717.915000px;}
.y14{bottom:722.775000px;}
.y3b{bottom:738.615000px;}
.y13{bottom:743.475000px;}
.y3a{bottom:780.375000px;}
.y12{bottom:785.236500px;}
.y39{bottom:801.075000px;}
.y11{bottom:805.936500px;}
.y10{bottom:826.636500px;}
.y38{bottom:842.655000px;}
.yf{bottom:847.336500px;}
.y5a{bottom:847.695000px;}
.ye{bottom:868.036500px;}
.y59{bottom:868.395000px;}
.yd{bottom:888.736500px;}
.y58{bottom:909.975000px;}
.y36{bottom:922.200000px;}
.yc{bottom:930.495000px;}
.y34{bottom:944.475000px;}
.y57{bottom:951.736500px;}
.y32{bottom:965.925000px;}
.yb{bottom:972.075000px;}
.y56{bottom:972.436500px;}
.y30{bottom:987.375000px;}
.y2e{bottom:1008.825000px;}
.ya{bottom:1013.836500px;}
.y55{bottom:1014.195000px;}
.y2c{bottom:1030.275000px;}
.y9{bottom:1055.595000px;}
.y54{bottom:1055.775000px;}
.y2b{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h4{height:20.175000px;}
.h6{height:21.375000px;}
.h7{height:22.200000px;}
.h3{height:45.095654px;}
.h2{height:48.796875px;}
.h5{height:50.027344px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:33.450000px;}
.w3{width:138.075000px;}
.w4{width:210.900000px;}
.w5{width:223.800000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:8.025000px;}
.xe{left:24.360000px;}
.xc{left:30.885000px;}
.xf{left:50.985000px;}
.xa{left:57.463500px;}
.x9{left:119.475000px;}
.x1{left:127.620000px;}
.x4{left:179.100000px;}
.xb{left:257.475000px;}
.x8{left:268.200000px;}
.x6{left:281.160000px;}
.x3{left:461.625000px;}
.xd{left:468.300000px;}
.x5{left:519.300000px;}
.x7{left:650.700000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:167.642400pt;}
.wsf{word-spacing:-49.728000pt;}
.ws4d{word-spacing:-34.558400pt;}
.ws6{word-spacing:-34.362400pt;}
.ws32{word-spacing:-34.361600pt;}
.ws39{word-spacing:-34.356000pt;}
.ws5{word-spacing:-34.353600pt;}
.ws15{word-spacing:-34.172800pt;}
.ws2e{word-spacing:-34.171733pt;}
.wse{word-spacing:-34.171200pt;}
.ws25{word-spacing:-34.168800pt;}
.ws2d{word-spacing:-34.168000pt;}
.ws2f{word-spacing:-34.162400pt;}
.ws3{word-spacing:-34.110400pt;}
.ws4a{word-spacing:-34.097600pt;}
.ws1c{word-spacing:-33.925333pt;}
.ws38{word-spacing:-33.916800pt;}
.ws20{word-spacing:-33.910400pt;}
.ws9{word-spacing:-33.855200pt;}
.ws0{word-spacing:-33.728000pt;}
.ws4{word-spacing:-33.723200pt;}
.wsa{word-spacing:-33.717600pt;}
.ws2{word-spacing:-33.716800pt;}
.wsd{word-spacing:-33.713600pt;}
.ws18{word-spacing:-33.712000pt;}
.wsb{word-spacing:-33.707200pt;}
.wsc{word-spacing:-33.532800pt;}
.ws2a{word-spacing:-33.530400pt;}
.ws27{word-spacing:-33.275200pt;}
.ws31{word-spacing:-33.067200pt;}
.ws24{word-spacing:-32.880800pt;}
.ws1b{word-spacing:-32.448000pt;}
.ws4b{word-spacing:-31.998400pt;}
.ws37{word-spacing:-31.808000pt;}
.ws36{word-spacing:-31.784000pt;}
.ws29{word-spacing:-31.153600pt;}
.ws19{word-spacing:-29.887200pt;}
.ws43{word-spacing:-29.878400pt;}
.ws13{word-spacing:-29.876000pt;}
.ws8{word-spacing:-29.820267pt;}
.ws4c{word-spacing:-29.443733pt;}
.ws12{word-spacing:-28.800000pt;}
.ws49{word-spacing:-27.961600pt;}
.ws14{word-spacing:-26.037600pt;}
.ws3a{word-spacing:-23.874133pt;}
.ws3b{word-spacing:-23.301333pt;}
.ws44{word-spacing:-22.853333pt;}
.ws52{word-spacing:-22.847200pt;}
.ws22{word-spacing:-22.649600pt;}
.ws46{word-spacing:-21.752000pt;}
.ws16{word-spacing:-20.472800pt;}
.ws17{word-spacing:-20.288000pt;}
.ws4f{word-spacing:-19.843733pt;}
.ws35{word-spacing:-19.840000pt;}
.ws34{word-spacing:-19.640533pt;}
.ws33{word-spacing:-19.620000pt;}
.ws4e{word-spacing:-17.918400pt;}
.ws28{word-spacing:-17.088000pt;}
.ws7{word-spacing:-16.420000pt;}
.ws10{word-spacing:-14.513600pt;}
.ws1d{word-spacing:-14.080000pt;}
.ws45{word-spacing:-13.238400pt;}
.ws48{word-spacing:-13.227733pt;}
.ws1a{word-spacing:-9.198400pt;}
.ws2c{word-spacing:-6.848000pt;}
.ws1e{word-spacing:-6.840000pt;}
.ws23{word-spacing:-4.916000pt;}
.ws2b{word-spacing:-4.288000pt;}
.ws26{word-spacing:-4.092800pt;}
.ws51{word-spacing:-1.728000pt;}
.ws11{word-spacing:-1.530133pt;}
.ws47{word-spacing:0.000000pt;}
.ws41{word-spacing:1.497600pt;}
.ws42{word-spacing:3.212800pt;}
.ws21{word-spacing:4.672000pt;}
.ws3e{word-spacing:4.687200pt;}
.ws3f{word-spacing:5.312000pt;}
.ws30{word-spacing:5.321600pt;}
.ws40{word-spacing:7.886400pt;}
.ws1f{word-spacing:9.986667pt;}
.ws50{word-spacing:17.921600pt;}
.ws3c{word-spacing:23.883200pt;}
.ws3d{word-spacing:24.521600pt;}
.ws1{word-spacing:404.526933pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._4{width:16.689600pt;}
._b{width:18.176000pt;}
._14{width:19.496800pt;}
._8{width:20.857867pt;}
._19{width:21.981067pt;}
._1b{width:22.937333pt;}
._9{width:24.740000pt;}
._15{width:26.833067pt;}
._f{width:28.083200pt;}
._13{width:31.004533pt;}
._1{width:32.000000pt;}
._5{width:33.028267pt;}
._6{width:36.209600pt;}
._c{width:37.124267pt;}
._1a{width:38.098133pt;}
._a{width:41.556800pt;}
._d{width:44.008533pt;}
._10{width:45.742667pt;}
._11{width:46.908800pt;}
._7{width:49.210133pt;}
._17{width:52.321067pt;}
._18{width:54.248533pt;}
._e{width:55.398400pt;}
._12{width:56.288000pt;}
._16{width:59.500267pt;}
._1c{width:68.926400pt;}
._1d{width:69.833600pt;}
._0{width:544.128000pt;}
.fs2{font-size:53.066667pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:3.333333pt;}
.y31{bottom:3.360000pt;}
.y33{bottom:3.388000pt;}
.y35{bottom:3.413333pt;}
.y2d{bottom:3.466667pt;}
.y7{bottom:3.974667pt;}
.y37{bottom:4.173333pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y53{bottom:102.946667pt;}
.y2a{bottom:107.108000pt;}
.y52{bottom:121.346667pt;}
.y29{bottom:125.508000pt;}
.y51{bottom:139.746667pt;}
.y50{bottom:158.146667pt;}
.y28{bottom:162.466667pt;}
.y27{bottom:180.866667pt;}
.y4f{bottom:195.266667pt;}
.y26{bottom:199.266667pt;}
.y4e{bottom:213.666667pt;}
.y25{bottom:217.666667pt;}
.y4d{bottom:232.066667pt;}
.y24{bottom:236.066667pt;}
.y4c{bottom:250.466667pt;}
.y23{bottom:273.188000pt;}
.y4b{bottom:287.426667pt;}
.y22{bottom:310.308000pt;}
.y4a{bottom:324.546667pt;}
.y49{bottom:342.946667pt;}
.y21{bottom:347.266667pt;}
.y48{bottom:361.346667pt;}
.y20{bottom:365.666667pt;}
.y47{bottom:379.746667pt;}
.y1f{bottom:384.066667pt;}
.y46{bottom:398.146667pt;}
.y1e{bottom:402.466667pt;}
.y45{bottom:416.546667pt;}
.y44{bottom:434.946667pt;}
.y1d{bottom:439.588000pt;}
.y61{bottom:457.666667pt;}
.y1c{bottom:457.988000pt;}
.y43{bottom:472.066667pt;}
.y60{bottom:476.066667pt;}
.y1b{bottom:476.388000pt;}
.y5f{bottom:494.466667pt;}
.y1a{bottom:494.788000pt;}
.y42{bottom:509.026667pt;}
.y5e{bottom:512.866667pt;}
.y19{bottom:531.908000pt;}
.y41{bottom:546.146667pt;}
.y5d{bottom:549.988000pt;}
.y18{bottom:550.308000pt;}
.y40{bottom:564.546667pt;}
.y5c{bottom:568.388000pt;}
.y17{bottom:568.706667pt;}
.y3f{bottom:582.946667pt;}
.y16{bottom:587.108000pt;}
.y3e{bottom:601.346667pt;}
.y15{bottom:605.506667pt;}
.y3d{bottom:619.746667pt;}
.y5b{bottom:623.908000pt;}
.y3c{bottom:638.146667pt;}
.y14{bottom:642.466667pt;}
.y3b{bottom:656.546667pt;}
.y13{bottom:660.866667pt;}
.y3a{bottom:693.666667pt;}
.y12{bottom:697.988000pt;}
.y39{bottom:712.066667pt;}
.y11{bottom:716.388000pt;}
.y10{bottom:734.788000pt;}
.y38{bottom:749.026667pt;}
.yf{bottom:753.188000pt;}
.y5a{bottom:753.506667pt;}
.ye{bottom:771.588000pt;}
.y59{bottom:771.906667pt;}
.yd{bottom:789.988000pt;}
.y58{bottom:808.866667pt;}
.y36{bottom:819.733333pt;}
.yc{bottom:827.106667pt;}
.y34{bottom:839.533333pt;}
.y57{bottom:845.988000pt;}
.y32{bottom:858.600000pt;}
.yb{bottom:864.066667pt;}
.y56{bottom:864.388000pt;}
.y30{bottom:877.666667pt;}
.y2e{bottom:896.733333pt;}
.ya{bottom:901.188000pt;}
.y55{bottom:901.506667pt;}
.y2c{bottom:915.800000pt;}
.y9{bottom:938.306667pt;}
.y54{bottom:938.466667pt;}
.y2b{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h4{height:17.933333pt;}
.h6{height:19.000000pt;}
.h7{height:19.733333pt;}
.h3{height:40.085026pt;}
.h2{height:43.375000pt;}
.h5{height:44.468750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:29.733333pt;}
.w3{width:122.733333pt;}
.w4{width:187.466667pt;}
.w5{width:198.933333pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:7.133333pt;}
.xe{left:21.653333pt;}
.xc{left:27.453333pt;}
.xf{left:45.320000pt;}
.xa{left:51.078667pt;}
.x9{left:106.200000pt;}
.x1{left:113.440000pt;}
.x4{left:159.200000pt;}
.xb{left:228.866667pt;}
.x8{left:238.400000pt;}
.x6{left:249.920000pt;}
.x3{left:410.333333pt;}
.xd{left:416.266667pt;}
.x5{left:461.600000pt;}
.x7{left:578.400000pt;}
.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; }
  