
    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_0ad3de28e04fa275878b05ad.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_a077ef297cacca35df73410b.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_3280d7d5d4f71c5f6b7acfaf.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_fada5197fba306cd75adbe1e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.097168;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;}
}
.ws1d{word-spacing:-55.944000px;}
.ws3e{word-spacing:-38.661000px;}
.ws6{word-spacing:-38.657700px;}
.wsa{word-spacing:-38.649900px;}
.ws5{word-spacing:-38.647800px;}
.ws4c{word-spacing:-38.439600px;}
.ws57{word-spacing:-38.431800px;}
.ws5e{word-spacing:-38.430900px;}
.ws3{word-spacing:-38.374200px;}
.ws9{word-spacing:-38.361900px;}
.ws19{word-spacing:-38.160000px;}
.ws1a{word-spacing:-38.151900px;}
.ws67{word-spacing:-38.145600px;}
.ws5d{word-spacing:-38.143800px;}
.ws1e{word-spacing:-37.946400px;}
.ws0{word-spacing:-37.944000px;}
.ws2d{word-spacing:-37.939200px;}
.ws4{word-spacing:-37.938600px;}
.wsb{word-spacing:-37.937700px;}
.wsf{word-spacing:-37.936800px;}
.ws12{word-spacing:-37.935000px;}
.ws2{word-spacing:-37.931400px;}
.ws38{word-spacing:-37.868400px;}
.ws68{word-spacing:-37.725300px;}
.ws23{word-spacing:-37.721400px;}
.ws26{word-spacing:-37.715400px;}
.ws6b{word-spacing:-37.224000px;}
.wse{word-spacing:-37.210800px;}
.ws25{word-spacing:-35.994600px;}
.ws54{word-spacing:-35.777700px;}
.ws4a{word-spacing:-35.061000px;}
.ws8{word-spacing:-33.547800px;}
.ws24{word-spacing:-32.896800px;}
.ws37{word-spacing:-32.879100px;}
.ws44{word-spacing:-32.828100px;}
.ws61{word-spacing:-32.679000px;}
.ws45{word-spacing:-32.180400px;}
.ws2b{word-spacing:-32.171400px;}
.ws35{word-spacing:-31.962600px;}
.ws29{word-spacing:-31.665600px;}
.ws3f{word-spacing:-31.460400px;}
.ws1c{word-spacing:-31.389000px;}
.ws28{word-spacing:-31.228200px;}
.ws4f{word-spacing:-30.941100px;}
.ws1b{word-spacing:-30.732300px;}
.ws55{word-spacing:-30.517200px;}
.ws31{word-spacing:-30.240000px;}
.ws16{word-spacing:-30.236400px;}
.ws4b{word-spacing:-30.007800px;}
.ws3d{word-spacing:-29.300400px;}
.ws34{word-spacing:-29.296800px;}
.ws30{word-spacing:-29.292300px;}
.ws66{word-spacing:-29.081400px;}
.ws20{word-spacing:-28.575000px;}
.ws1f{word-spacing:-28.353600px;}
.ws33{word-spacing:-28.071000px;}
.ws42{word-spacing:-27.860400px;}
.ws48{word-spacing:-27.640800px;}
.ws41{word-spacing:-27.142800px;}
.ws17{word-spacing:-26.640000px;}
.ws18{word-spacing:-25.708200px;}
.ws63{word-spacing:-25.696800px;}
.ws15{word-spacing:-25.687800px;}
.ws2c{word-spacing:-24.480000px;}
.ws21{word-spacing:-24.261000px;}
.ws58{word-spacing:-23.320800px;}
.ws4e{word-spacing:-23.029200px;}
.ws59{word-spacing:-23.020200px;}
.ws13{word-spacing:-22.804200px;}
.ws2e{word-spacing:-22.604400px;}
.ws49{word-spacing:-22.300200px;}
.ws14{word-spacing:-22.091400px;}
.ws6a{word-spacing:-21.729600px;}
.ws10{word-spacing:-21.160800px;}
.ws69{word-spacing:-21.015000px;}
.ws36{word-spacing:-20.656800px;}
.ws2a{word-spacing:-20.651400px;}
.ws46{word-spacing:-20.649600px;}
.ws47{word-spacing:-20.157900px;}
.ws27{word-spacing:-19.008600px;}
.ws7{word-spacing:-18.472500px;}
.ws52{word-spacing:-17.776800px;}
.ws3c{word-spacing:-17.775000px;}
.ws50{word-spacing:-17.269200px;}
.ws43{word-spacing:-16.342800px;}
.ws39{word-spacing:-16.331400px;}
.ws5b{word-spacing:-16.330200px;}
.ws2f{word-spacing:-14.180400px;}
.ws11{word-spacing:-14.178000px;}
.ws40{word-spacing:-14.171400px;}
.ws56{word-spacing:-13.680000px;}
.ws60{word-spacing:-13.447800px;}
.ws3a{word-spacing:-11.304000px;}
.wsc{word-spacing:-10.565100px;}
.wsd{word-spacing:-10.340400px;}
.ws5c{word-spacing:-10.062000px;}
.ws32{word-spacing:-5.313600px;}
.ws62{word-spacing:-5.031000px;}
.ws5f{word-spacing:-4.085100px;}
.ws65{word-spacing:-0.975600px;}
.ws51{word-spacing:-0.270000px;}
.ws64{word-spacing:0.219600px;}
.ws4d{word-spacing:0.220500px;}
.ws3b{word-spacing:0.939600px;}
.ws53{word-spacing:6.707700px;}
.ws5a{word-spacing:9.376200px;}
.ws22{word-spacing:13.681800px;}
.ws1{word-spacing:455.092800px;}
._13{margin-left:-2.336400px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._4{width:18.775800px;}
._6{width:20.330400px;}
._1a{width:22.039200px;}
._11{width:23.114400px;}
._f{width:24.738000px;}
._a{width:26.015400px;}
._9{width:27.572400px;}
._b{width:29.358000px;}
._17{width:30.738000px;}
._8{width:31.768800px;}
._d{width:33.111000px;}
._12{width:34.694400px;}
._1{width:36.000000px;}
._19{width:37.096800px;}
._10{width:38.203200px;}
._16{width:39.517800px;}
._14{width:41.309400px;}
._7{width:43.120800px;}
._5{width:46.659900px;}
._1d{width:47.930100px;}
._18{width:49.611000px;}
._1e{width:52.047000px;}
._c{width:54.096600px;}
._1f{width:56.154000px;}
._15{width:58.167600px;}
._1b{width:64.266600px;}
._1c{width:66.577800px;}
._e{width:70.772400px;}
._20{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;}
.y2e{bottom:100.875000px;}
.y5a{bottom:102.496500px;}
.y2d{bottom:121.575000px;}
.y59{bottom:123.196500px;}
.y2c{bottom:142.275000px;}
.y58{bottom:143.896500px;}
.y2b{bottom:162.975000px;}
.y57{bottom:164.596500px;}
.y2a{bottom:183.675000px;}
.y56{bottom:185.296500px;}
.y55{bottom:205.996500px;}
.y29{bottom:225.436500px;}
.y54{bottom:226.696500px;}
.y28{bottom:246.136500px;}
.y27{bottom:266.836500px;}
.y53{bottom:268.275000px;}
.y26{bottom:287.536500px;}
.y52{bottom:288.975000px;}
.y25{bottom:308.236500px;}
.y51{bottom:309.675000px;}
.y24{bottom:328.936500px;}
.y50{bottom:330.375000px;}
.y23{bottom:349.636500px;}
.y4f{bottom:351.075000px;}
.y22{bottom:370.336500px;}
.y4e{bottom:371.775000px;}
.y21{bottom:391.036500px;}
.y4d{bottom:392.475000px;}
.y20{bottom:411.736500px;}
.y4c{bottom:413.175000px;}
.y1f{bottom:432.436500px;}
.y4b{bottom:433.875000px;}
.y1e{bottom:453.136500px;}
.y4a{bottom:454.575000px;}
.y1d{bottom:473.836500px;}
.y49{bottom:475.275000px;}
.y1c{bottom:494.536500px;}
.y48{bottom:495.975000px;}
.y1b{bottom:515.236500px;}
.y1a{bottom:535.936500px;}
.y47{bottom:537.736500px;}
.y46{bottom:558.436500px;}
.y19{bottom:577.695000px;}
.y45{bottom:579.136500px;}
.y18{bottom:598.396500px;}
.y44{bottom:599.836500px;}
.y43{bottom:620.536500px;}
.y17{bottom:639.975000px;}
.y42{bottom:641.236500px;}
.y41{bottom:661.936500px;}
.y16{bottom:681.736500px;}
.y40{bottom:682.636500px;}
.y15{bottom:702.436500px;}
.y3f{bottom:703.336500px;}
.y14{bottom:723.136500px;}
.y3e{bottom:724.036500px;}
.y13{bottom:743.836500px;}
.y3d{bottom:744.736500px;}
.y12{bottom:764.536500px;}
.y3c{bottom:765.436500px;}
.y11{bottom:785.236500px;}
.y3b{bottom:786.136500px;}
.y3a{bottom:806.836500px;}
.y10{bottom:826.996500px;}
.y5f{bottom:827.536500px;}
.yf{bottom:847.695000px;}
.y5e{bottom:848.236500px;}
.y39{bottom:848.596500px;}
.ye{bottom:868.395000px;}
.y38{bottom:869.295000px;}
.yd{bottom:889.095000px;}
.y37{bottom:889.995000px;}
.yc{bottom:909.795000px;}
.y36{bottom:910.695000px;}
.yb{bottom:930.495000px;}
.y35{bottom:931.395000px;}
.y5d{bottom:931.575000px;}
.y34{bottom:952.095000px;}
.y5c{bottom:952.275000px;}
.ya{bottom:972.075000px;}
.y5b{bottom:972.975000px;}
.y33{bottom:993.675000px;}
.y9{bottom:1013.836500px;}
.y32{bottom:1014.375000px;}
.y31{bottom:1035.075000px;}
.y30{bottom:1055.775000px;}
.y2f{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:63.457031px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.x4{left:129.238500px;}
.x7{left:159.480000px;}
.x3{left:465.825000px;}
.x5{left:575.638500px;}
.x6{left:584.280000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1d{word-spacing:-49.728000pt;}
.ws3e{word-spacing:-34.365333pt;}
.ws6{word-spacing:-34.362400pt;}
.wsa{word-spacing:-34.355467pt;}
.ws5{word-spacing:-34.353600pt;}
.ws4c{word-spacing:-34.168533pt;}
.ws57{word-spacing:-34.161600pt;}
.ws5e{word-spacing:-34.160800pt;}
.ws3{word-spacing:-34.110400pt;}
.ws9{word-spacing:-34.099467pt;}
.ws19{word-spacing:-33.920000pt;}
.ws1a{word-spacing:-33.912800pt;}
.ws67{word-spacing:-33.907200pt;}
.ws5d{word-spacing:-33.905600pt;}
.ws1e{word-spacing:-33.730133pt;}
.ws0{word-spacing:-33.728000pt;}
.ws2d{word-spacing:-33.723733pt;}
.ws4{word-spacing:-33.723200pt;}
.wsb{word-spacing:-33.722400pt;}
.wsf{word-spacing:-33.721600pt;}
.ws12{word-spacing:-33.720000pt;}
.ws2{word-spacing:-33.716800pt;}
.ws38{word-spacing:-33.660800pt;}
.ws68{word-spacing:-33.533600pt;}
.ws23{word-spacing:-33.530133pt;}
.ws26{word-spacing:-33.524800pt;}
.ws6b{word-spacing:-33.088000pt;}
.wse{word-spacing:-33.076267pt;}
.ws25{word-spacing:-31.995200pt;}
.ws54{word-spacing:-31.802400pt;}
.ws4a{word-spacing:-31.165333pt;}
.ws8{word-spacing:-29.820267pt;}
.ws24{word-spacing:-29.241600pt;}
.ws37{word-spacing:-29.225867pt;}
.ws44{word-spacing:-29.180533pt;}
.ws61{word-spacing:-29.048000pt;}
.ws45{word-spacing:-28.604800pt;}
.ws2b{word-spacing:-28.596800pt;}
.ws35{word-spacing:-28.411200pt;}
.ws29{word-spacing:-28.147200pt;}
.ws3f{word-spacing:-27.964800pt;}
.ws1c{word-spacing:-27.901333pt;}
.ws28{word-spacing:-27.758400pt;}
.ws4f{word-spacing:-27.503200pt;}
.ws1b{word-spacing:-27.317600pt;}
.ws55{word-spacing:-27.126400pt;}
.ws31{word-spacing:-26.880000pt;}
.ws16{word-spacing:-26.876800pt;}
.ws4b{word-spacing:-26.673600pt;}
.ws3d{word-spacing:-26.044800pt;}
.ws34{word-spacing:-26.041600pt;}
.ws30{word-spacing:-26.037600pt;}
.ws66{word-spacing:-25.850133pt;}
.ws20{word-spacing:-25.400000pt;}
.ws1f{word-spacing:-25.203200pt;}
.ws33{word-spacing:-24.952000pt;}
.ws42{word-spacing:-24.764800pt;}
.ws48{word-spacing:-24.569600pt;}
.ws41{word-spacing:-24.126933pt;}
.ws17{word-spacing:-23.680000pt;}
.ws18{word-spacing:-22.851733pt;}
.ws63{word-spacing:-22.841600pt;}
.ws15{word-spacing:-22.833600pt;}
.ws2c{word-spacing:-21.760000pt;}
.ws21{word-spacing:-21.565333pt;}
.ws58{word-spacing:-20.729600pt;}
.ws4e{word-spacing:-20.470400pt;}
.ws59{word-spacing:-20.462400pt;}
.ws13{word-spacing:-20.270400pt;}
.ws2e{word-spacing:-20.092800pt;}
.ws49{word-spacing:-19.822400pt;}
.ws14{word-spacing:-19.636800pt;}
.ws6a{word-spacing:-19.315200pt;}
.ws10{word-spacing:-18.809600pt;}
.ws69{word-spacing:-18.680000pt;}
.ws36{word-spacing:-18.361600pt;}
.ws2a{word-spacing:-18.356800pt;}
.ws46{word-spacing:-18.355200pt;}
.ws47{word-spacing:-17.918133pt;}
.ws27{word-spacing:-16.896533pt;}
.ws7{word-spacing:-16.420000pt;}
.ws52{word-spacing:-15.801600pt;}
.ws3c{word-spacing:-15.800000pt;}
.ws50{word-spacing:-15.350400pt;}
.ws43{word-spacing:-14.526933pt;}
.ws39{word-spacing:-14.516800pt;}
.ws5b{word-spacing:-14.515733pt;}
.ws2f{word-spacing:-12.604800pt;}
.ws11{word-spacing:-12.602667pt;}
.ws40{word-spacing:-12.596800pt;}
.ws56{word-spacing:-12.160000pt;}
.ws60{word-spacing:-11.953600pt;}
.ws3a{word-spacing:-10.048000pt;}
.wsc{word-spacing:-9.391200pt;}
.wsd{word-spacing:-9.191467pt;}
.ws5c{word-spacing:-8.944000pt;}
.ws32{word-spacing:-4.723200pt;}
.ws62{word-spacing:-4.472000pt;}
.ws5f{word-spacing:-3.631200pt;}
.ws65{word-spacing:-0.867200pt;}
.ws51{word-spacing:-0.240000pt;}
.ws64{word-spacing:0.195200pt;}
.ws4d{word-spacing:0.196000pt;}
.ws3b{word-spacing:0.835200pt;}
.ws53{word-spacing:5.962400pt;}
.ws5a{word-spacing:8.334400pt;}
.ws22{word-spacing:12.161600pt;}
.ws1{word-spacing:404.526933pt;}
._13{margin-left:-2.076800pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._4{width:16.689600pt;}
._6{width:18.071467pt;}
._1a{width:19.590400pt;}
._11{width:20.546133pt;}
._f{width:21.989333pt;}
._a{width:23.124800pt;}
._9{width:24.508800pt;}
._b{width:26.096000pt;}
._17{width:27.322667pt;}
._8{width:28.238933pt;}
._d{width:29.432000pt;}
._12{width:30.839467pt;}
._1{width:32.000000pt;}
._19{width:32.974933pt;}
._10{width:33.958400pt;}
._16{width:35.126933pt;}
._14{width:36.719467pt;}
._7{width:38.329600pt;}
._5{width:41.475467pt;}
._1d{width:42.604533pt;}
._18{width:44.098667pt;}
._1e{width:46.264000pt;}
._c{width:48.085867pt;}
._1f{width:49.914667pt;}
._15{width:51.704533pt;}
._1b{width:57.125867pt;}
._1c{width:59.180267pt;}
._e{width:62.908800pt;}
._20{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;}
.y2e{bottom:89.666667pt;}
.y5a{bottom:91.108000pt;}
.y2d{bottom:108.066667pt;}
.y59{bottom:109.508000pt;}
.y2c{bottom:126.466667pt;}
.y58{bottom:127.908000pt;}
.y2b{bottom:144.866667pt;}
.y57{bottom:146.308000pt;}
.y2a{bottom:163.266667pt;}
.y56{bottom:164.708000pt;}
.y55{bottom:183.108000pt;}
.y29{bottom:200.388000pt;}
.y54{bottom:201.508000pt;}
.y28{bottom:218.788000pt;}
.y27{bottom:237.188000pt;}
.y53{bottom:238.466667pt;}
.y26{bottom:255.588000pt;}
.y52{bottom:256.866667pt;}
.y25{bottom:273.988000pt;}
.y51{bottom:275.266667pt;}
.y24{bottom:292.388000pt;}
.y50{bottom:293.666667pt;}
.y23{bottom:310.788000pt;}
.y4f{bottom:312.066667pt;}
.y22{bottom:329.188000pt;}
.y4e{bottom:330.466667pt;}
.y21{bottom:347.588000pt;}
.y4d{bottom:348.866667pt;}
.y20{bottom:365.988000pt;}
.y4c{bottom:367.266667pt;}
.y1f{bottom:384.388000pt;}
.y4b{bottom:385.666667pt;}
.y1e{bottom:402.788000pt;}
.y4a{bottom:404.066667pt;}
.y1d{bottom:421.188000pt;}
.y49{bottom:422.466667pt;}
.y1c{bottom:439.588000pt;}
.y48{bottom:440.866667pt;}
.y1b{bottom:457.988000pt;}
.y1a{bottom:476.388000pt;}
.y47{bottom:477.988000pt;}
.y46{bottom:496.388000pt;}
.y19{bottom:513.506667pt;}
.y45{bottom:514.788000pt;}
.y18{bottom:531.908000pt;}
.y44{bottom:533.188000pt;}
.y43{bottom:551.588000pt;}
.y17{bottom:568.866667pt;}
.y42{bottom:569.988000pt;}
.y41{bottom:588.388000pt;}
.y16{bottom:605.988000pt;}
.y40{bottom:606.788000pt;}
.y15{bottom:624.388000pt;}
.y3f{bottom:625.188000pt;}
.y14{bottom:642.788000pt;}
.y3e{bottom:643.588000pt;}
.y13{bottom:661.188000pt;}
.y3d{bottom:661.988000pt;}
.y12{bottom:679.588000pt;}
.y3c{bottom:680.388000pt;}
.y11{bottom:697.988000pt;}
.y3b{bottom:698.788000pt;}
.y3a{bottom:717.188000pt;}
.y10{bottom:735.108000pt;}
.y5f{bottom:735.588000pt;}
.yf{bottom:753.506667pt;}
.y5e{bottom:753.988000pt;}
.y39{bottom:754.308000pt;}
.ye{bottom:771.906667pt;}
.y38{bottom:772.706667pt;}
.yd{bottom:790.306667pt;}
.y37{bottom:791.106667pt;}
.yc{bottom:808.706667pt;}
.y36{bottom:809.506667pt;}
.yb{bottom:827.106667pt;}
.y35{bottom:827.906667pt;}
.y5d{bottom:828.066667pt;}
.y34{bottom:846.306667pt;}
.y5c{bottom:846.466667pt;}
.ya{bottom:864.066667pt;}
.y5b{bottom:864.866667pt;}
.y33{bottom:883.266667pt;}
.y9{bottom:901.188000pt;}
.y32{bottom:901.666667pt;}
.y31{bottom:920.066667pt;}
.y30{bottom:938.466667pt;}
.y2f{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:56.406250pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.x4{left:114.878667pt;}
.x7{left:141.760000pt;}
.x3{left:414.066667pt;}
.x5{left:511.678667pt;}
.x6{left:519.360000pt;}
.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; }
  