
    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_3362a976c82f487967515aca.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_01c8eeadd8590c15bce8f85a.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_bc46d75afc20d74d736206ca.woff')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_8d2cc0d59111ac627f910e93.woff')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;}
.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;}
}
.ws9{word-spacing:-55.944000px;}
.ws1a{word-spacing:-38.872800px;}
.ws1b{word-spacing:-38.665500px;}
.ws2e{word-spacing:-38.660400px;}
.ws2b{word-spacing:-38.659500px;}
.ws6{word-spacing:-38.657700px;}
.ws35{word-spacing:-38.657400px;}
.ws28{word-spacing:-38.653200px;}
.ws37{word-spacing:-38.649600px;}
.ws5{word-spacing:-38.647800px;}
.ws22{word-spacing:-38.640600px;}
.ws33{word-spacing:-38.631600px;}
.ws4a{word-spacing:-38.587200px;}
.ws8{word-spacing:-38.586300px;}
.ws3d{word-spacing:-38.582100px;}
.ws14{word-spacing:-38.439900px;}
.ws27{word-spacing:-38.437200px;}
.ws20{word-spacing:-38.435400px;}
.ws40{word-spacing:-38.431800px;}
.ws29{word-spacing:-38.430000px;}
.ws3{word-spacing:-38.374200px;}
.ws34{word-spacing:-38.368800px;}
.wsa{word-spacing:-38.366700px;}
.ws48{word-spacing:-38.359800px;}
.ws1f{word-spacing:-38.166000px;}
.ws30{word-spacing:-38.160000px;}
.ws21{word-spacing:-38.154600px;}
.ws24{word-spacing:-38.154000px;}
.ws3a{word-spacing:-38.151900px;}
.ws43{word-spacing:-38.149200px;}
.ws0{word-spacing:-37.944000px;}
.ws4f{word-spacing:-37.942200px;}
.ws4d{word-spacing:-37.940400px;}
.ws4{word-spacing:-37.938600px;}
.ws4c{word-spacing:-37.936800px;}
.ws1e{word-spacing:-37.935000px;}
.ws2{word-spacing:-37.931400px;}
.ws2d{word-spacing:-37.726800px;}
.wsb{word-spacing:-37.719900px;}
.ws11{word-spacing:-37.715400px;}
.ws4b{word-spacing:-37.440000px;}
.ws51{word-spacing:-37.211400px;}
.ws32{word-spacing:-34.831800px;}
.ws49{word-spacing:-33.828300px;}
.ws41{word-spacing:-33.621900px;}
.ws2c{word-spacing:-33.613200px;}
.ws19{word-spacing:-30.954000px;}
.ws16{word-spacing:-30.010800px;}
.ws1c{word-spacing:-29.503800px;}
.ws3e{word-spacing:-28.568700px;}
.ws3b{word-spacing:-27.831600px;}
.ws45{word-spacing:-26.640000px;}
.ws31{word-spacing:-26.414100px;}
.ws26{word-spacing:-26.411400px;}
.ws13{word-spacing:-25.677900px;}
.ws12{word-spacing:-25.197900px;}
.ws18{word-spacing:-24.975000px;}
.ws36{word-spacing:-24.253200px;}
.ws44{word-spacing:-22.600800px;}
.ws1d{word-spacing:-21.587700px;}
.ws38{word-spacing:-21.377400px;}
.ws2f{word-spacing:-19.944000px;}
.ws46{word-spacing:-19.931400px;}
.ws15{word-spacing:-19.431000px;}
.ws7{word-spacing:-18.472500px;}
.ws3c{word-spacing:-17.781900px;}
.wse{word-spacing:-15.822000px;}
.wsd{word-spacing:-15.614400px;}
.ws17{word-spacing:-15.604200px;}
.wsc{word-spacing:-15.120000px;}
.ws10{word-spacing:-14.896800px;}
.ws42{word-spacing:-14.888700px;}
.ws50{word-spacing:-14.180400px;}
.ws4e{word-spacing:-12.743100px;}
.ws23{word-spacing:-5.754000px;}
.ws2a{word-spacing:-3.160800px;}
.ws25{word-spacing:0.000000px;}
.ws47{word-spacing:0.943200px;}
.ws39{word-spacing:1.656000px;}
.wsf{word-spacing:5.986800px;}
.ws3f{word-spacing:9.085500px;}
.ws1{word-spacing:455.092800px;}
._11{margin-left:-2.394000px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._18{width:2.422200px;}
._4{width:18.775800px;}
._10{width:19.944000px;}
._f{width:24.037200px;}
._d{width:26.130000px;}
._b{width:27.556800px;}
._15{width:29.631600px;}
._9{width:31.461900px;}
._c{width:32.772000px;}
._12{width:34.014000px;}
._1{width:36.000000px;}
._a{width:37.561200px;}
._16{width:39.227700px;}
._5{width:41.456400px;}
._7{width:42.855600px;}
._8{width:43.863600px;}
._e{width:54.573600px;}
._14{width:58.680000px;}
._13{width:59.832000px;}
._6{width:62.989200px;}
._17{width:66.855600px;}
._19{width:73.440000px;}
._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;}
.y3d{bottom:139.575000px;}
.y3c{bottom:160.275000px;}
.y26{bottom:161.175000px;}
.y3b{bottom:202.036500px;}
.y25{bottom:202.936500px;}
.y3a{bottom:243.795000px;}
.y24{bottom:244.696500px;}
.y39{bottom:264.496500px;}
.y23{bottom:265.396500px;}
.y38{bottom:306.075000px;}
.y22{bottom:306.975000px;}
.y37{bottom:326.775000px;}
.y21{bottom:348.736500px;}
.y4e{bottom:349.636500px;}
.y36{bottom:368.536500px;}
.y4d{bottom:370.336500px;}
.y20{bottom:390.496500px;}
.y4c{bottom:391.036500px;}
.y35{bottom:410.295000px;}
.y4b{bottom:411.736500px;}
.y34{bottom:430.996500px;}
.y1f{bottom:432.075000px;}
.y4a{bottom:432.436500px;}
.y49{bottom:453.136500px;}
.y33{bottom:472.575000px;}
.y1e{bottom:473.836500px;}
.y1d{bottom:494.536500px;}
.y32{bottom:514.336500px;}
.y1c{bottom:515.236500px;}
.y48{bottom:535.936500px;}
.y31{bottom:556.096500px;}
.y47{bottom:556.636500px;}
.y1b{bottom:556.996500px;}
.y30{bottom:576.795000px;}
.y2f{bottom:597.496500px;}
.y46{bottom:598.396500px;}
.y1a{bottom:598.575000px;}
.y19{bottom:619.275000px;}
.y2e{bottom:639.075000px;}
.y18{bottom:639.975000px;}
.y2d{bottom:659.775000px;}
.y17{bottom:660.675000px;}
.y16{bottom:681.375000px;}
.y2c{bottom:701.536500px;}
.y15{bottom:702.075000px;}
.y45{bottom:722.775000px;}
.y2b{bottom:743.295000px;}
.y44{bottom:743.475000px;}
.y14{bottom:743.836500px;}
.y2a{bottom:784.875000px;}
.y43{bottom:785.236500px;}
.y13{bottom:785.596500px;}
.y12{bottom:806.295000px;}
.y29{bottom:826.636500px;}
.y42{bottom:826.996500px;}
.y28{bottom:847.336500px;}
.y41{bottom:847.695000px;}
.y11{bottom:847.875000px;}
.y10{bottom:868.575000px;}
.y27{bottom:889.095000px;}
.yf{bottom:889.275000px;}
.ye{bottom:909.975000px;}
.yd{bottom:930.675000px;}
.yc{bottom:951.375000px;}
.y40{bottom:951.736500px;}
.y3f{bottom:972.436500px;}
.yb{bottom:993.136500px;}
.y3e{bottom:1014.195000px;}
.ya{bottom:1034.895000px;}
.y9{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;}
.h3{height:45.095654px;}
.h2{height:48.796875px;}
.h5{height:50.027344px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:8.325000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.x4{left:151.020000px;}
.x8{left:159.480000px;}
.x5{left:411.838500px;}
.x3{left:474.225000px;}
.x7{left:649.260000px;}
.x6{left:684.720000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws9{word-spacing:-49.728000pt;}
.ws1a{word-spacing:-34.553600pt;}
.ws1b{word-spacing:-34.369333pt;}
.ws2e{word-spacing:-34.364800pt;}
.ws2b{word-spacing:-34.364000pt;}
.ws6{word-spacing:-34.362400pt;}
.ws35{word-spacing:-34.362133pt;}
.ws28{word-spacing:-34.358400pt;}
.ws37{word-spacing:-34.355200pt;}
.ws5{word-spacing:-34.353600pt;}
.ws22{word-spacing:-34.347200pt;}
.ws33{word-spacing:-34.339200pt;}
.ws4a{word-spacing:-34.299733pt;}
.ws8{word-spacing:-34.298933pt;}
.ws3d{word-spacing:-34.295200pt;}
.ws14{word-spacing:-34.168800pt;}
.ws27{word-spacing:-34.166400pt;}
.ws20{word-spacing:-34.164800pt;}
.ws40{word-spacing:-34.161600pt;}
.ws29{word-spacing:-34.160000pt;}
.ws3{word-spacing:-34.110400pt;}
.ws34{word-spacing:-34.105600pt;}
.wsa{word-spacing:-34.103733pt;}
.ws48{word-spacing:-34.097600pt;}
.ws1f{word-spacing:-33.925333pt;}
.ws30{word-spacing:-33.920000pt;}
.ws21{word-spacing:-33.915200pt;}
.ws24{word-spacing:-33.914667pt;}
.ws3a{word-spacing:-33.912800pt;}
.ws43{word-spacing:-33.910400pt;}
.ws0{word-spacing:-33.728000pt;}
.ws4f{word-spacing:-33.726400pt;}
.ws4d{word-spacing:-33.724800pt;}
.ws4{word-spacing:-33.723200pt;}
.ws4c{word-spacing:-33.721600pt;}
.ws1e{word-spacing:-33.720000pt;}
.ws2{word-spacing:-33.716800pt;}
.ws2d{word-spacing:-33.534933pt;}
.wsb{word-spacing:-33.528800pt;}
.ws11{word-spacing:-33.524800pt;}
.ws4b{word-spacing:-33.280000pt;}
.ws51{word-spacing:-33.076800pt;}
.ws32{word-spacing:-30.961600pt;}
.ws49{word-spacing:-30.069600pt;}
.ws41{word-spacing:-29.886133pt;}
.ws2c{word-spacing:-29.878400pt;}
.ws19{word-spacing:-27.514667pt;}
.ws16{word-spacing:-26.676267pt;}
.ws1c{word-spacing:-26.225600pt;}
.ws3e{word-spacing:-25.394400pt;}
.ws3b{word-spacing:-24.739200pt;}
.ws45{word-spacing:-23.680000pt;}
.ws31{word-spacing:-23.479200pt;}
.ws26{word-spacing:-23.476800pt;}
.ws13{word-spacing:-22.824800pt;}
.ws12{word-spacing:-22.398133pt;}
.ws18{word-spacing:-22.200000pt;}
.ws36{word-spacing:-21.558400pt;}
.ws44{word-spacing:-20.089600pt;}
.ws1d{word-spacing:-19.189067pt;}
.ws38{word-spacing:-19.002133pt;}
.ws2f{word-spacing:-17.728000pt;}
.ws46{word-spacing:-17.716800pt;}
.ws15{word-spacing:-17.272000pt;}
.ws7{word-spacing:-16.420000pt;}
.ws3c{word-spacing:-15.806133pt;}
.wse{word-spacing:-14.064000pt;}
.wsd{word-spacing:-13.879467pt;}
.ws17{word-spacing:-13.870400pt;}
.wsc{word-spacing:-13.440000pt;}
.ws10{word-spacing:-13.241600pt;}
.ws42{word-spacing:-13.234400pt;}
.ws50{word-spacing:-12.604800pt;}
.ws4e{word-spacing:-11.327200pt;}
.ws23{word-spacing:-5.114667pt;}
.ws2a{word-spacing:-2.809600pt;}
.ws25{word-spacing:0.000000pt;}
.ws47{word-spacing:0.838400pt;}
.ws39{word-spacing:1.472000pt;}
.wsf{word-spacing:5.321600pt;}
.ws3f{word-spacing:8.076000pt;}
.ws1{word-spacing:404.526933pt;}
._11{margin-left:-2.128000pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._18{width:2.153067pt;}
._4{width:16.689600pt;}
._10{width:17.728000pt;}
._f{width:21.366400pt;}
._d{width:23.226667pt;}
._b{width:24.494933pt;}
._15{width:26.339200pt;}
._9{width:27.966133pt;}
._c{width:29.130667pt;}
._12{width:30.234667pt;}
._1{width:32.000000pt;}
._a{width:33.387733pt;}
._16{width:34.869067pt;}
._5{width:36.850133pt;}
._7{width:38.093867pt;}
._8{width:38.989867pt;}
._e{width:48.509867pt;}
._14{width:52.160000pt;}
._13{width:53.184000pt;}
._6{width:55.990400pt;}
._17{width:59.427200pt;}
._19{width:65.280000pt;}
._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;}
.y3d{bottom:124.066667pt;}
.y3c{bottom:142.466667pt;}
.y26{bottom:143.266667pt;}
.y3b{bottom:179.588000pt;}
.y25{bottom:180.388000pt;}
.y3a{bottom:216.706667pt;}
.y24{bottom:217.508000pt;}
.y39{bottom:235.108000pt;}
.y23{bottom:235.908000pt;}
.y38{bottom:272.066667pt;}
.y22{bottom:272.866667pt;}
.y37{bottom:290.466667pt;}
.y21{bottom:309.988000pt;}
.y4e{bottom:310.788000pt;}
.y36{bottom:327.588000pt;}
.y4d{bottom:329.188000pt;}
.y20{bottom:347.108000pt;}
.y4c{bottom:347.588000pt;}
.y35{bottom:364.706667pt;}
.y4b{bottom:365.988000pt;}
.y34{bottom:383.108000pt;}
.y1f{bottom:384.066667pt;}
.y4a{bottom:384.388000pt;}
.y49{bottom:402.788000pt;}
.y33{bottom:420.066667pt;}
.y1e{bottom:421.188000pt;}
.y1d{bottom:439.588000pt;}
.y32{bottom:457.188000pt;}
.y1c{bottom:457.988000pt;}
.y48{bottom:476.388000pt;}
.y31{bottom:494.308000pt;}
.y47{bottom:494.788000pt;}
.y1b{bottom:495.108000pt;}
.y30{bottom:512.706667pt;}
.y2f{bottom:531.108000pt;}
.y46{bottom:531.908000pt;}
.y1a{bottom:532.066667pt;}
.y19{bottom:550.466667pt;}
.y2e{bottom:568.066667pt;}
.y18{bottom:568.866667pt;}
.y2d{bottom:586.466667pt;}
.y17{bottom:587.266667pt;}
.y16{bottom:605.666667pt;}
.y2c{bottom:623.588000pt;}
.y15{bottom:624.066667pt;}
.y45{bottom:642.466667pt;}
.y2b{bottom:660.706667pt;}
.y44{bottom:660.866667pt;}
.y14{bottom:661.188000pt;}
.y2a{bottom:697.666667pt;}
.y43{bottom:697.988000pt;}
.y13{bottom:698.308000pt;}
.y12{bottom:716.706667pt;}
.y29{bottom:734.788000pt;}
.y42{bottom:735.108000pt;}
.y28{bottom:753.188000pt;}
.y41{bottom:753.506667pt;}
.y11{bottom:753.666667pt;}
.y10{bottom:772.066667pt;}
.y27{bottom:790.306667pt;}
.yf{bottom:790.466667pt;}
.ye{bottom:808.866667pt;}
.yd{bottom:827.266667pt;}
.yc{bottom:845.666667pt;}
.y40{bottom:845.988000pt;}
.y3f{bottom:864.388000pt;}
.yb{bottom:882.788000pt;}
.y3e{bottom:901.506667pt;}
.ya{bottom:919.906667pt;}
.y9{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;}
.h3{height:40.085026pt;}
.h2{height:43.375000pt;}
.h5{height:44.468750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:7.400000pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.x4{left:134.240000pt;}
.x8{left:141.760000pt;}
.x5{left:366.078667pt;}
.x3{left:421.533333pt;}
.x7{left:577.120000pt;}
.x6{left:608.640000pt;}
.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; }
  