
    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_98d7a91b55a2629f218cd840.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_18c2cb9cfb6c6664aba036b1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.905000;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_f52f8dab5a2962e97465bbb8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.899000;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:ff6;src:url('chunks/assets/font_366b49b127e482c21a1aca17.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.689000;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:ff7;src:url('chunks/assets/font_5aceec6454135f9aadb0f85f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.735000;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:ff8;src:url('chunks/assets/font_497d5b71b030a73b363f6af2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.729581;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;}
.ls3{letter-spacing:4.511857px;}
.ls2{letter-spacing:4.925509px;}
.ls4{letter-spacing:6.138739px;}
.ls1{letter-spacing:16.955029px;}
.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;}
}
.ws1{word-spacing:-20.335639px;}
.ws3f{word-spacing:-12.702300px;}
.ws15{word-spacing:-0.842836px;}
.ws2d{word-spacing:-0.800993px;}
.ws9{word-spacing:-0.286923px;}
.ws41{word-spacing:-0.050809px;}
.ws0{word-spacing:0.000000px;}
.ws39{word-spacing:0.274369px;}
.wsf{word-spacing:0.621666px;}
.ws36{word-spacing:0.757057px;}
.ws3a{word-spacing:1.437900px;}
.ws38{word-spacing:1.818969px;}
.ws21{word-spacing:2.277451px;}
.ws16{word-spacing:2.283429px;}
.ws2f{word-spacing:2.648058px;}
.ws2e{word-spacing:3.293636px;}
.ws3c{word-spacing:3.800527px;}
.ws3e{word-spacing:4.044413px;}
.ws5{word-spacing:4.054573px;}
.ws45{word-spacing:4.095222px;}
.ws43{word-spacing:4.161273px;}
.ws6{word-spacing:4.247649px;}
.ws44{word-spacing:4.354349px;}
.ws40{word-spacing:4.374672px;}
.ws42{word-spacing:4.400077px;}
.ws3b{word-spacing:4.420400px;}
.ws1c{word-spacing:4.584789px;}
.wse{word-spacing:4.805958px;}
.ws27{word-spacing:4.997240px;}
.ws32{word-spacing:5.027128px;}
.ws31{word-spacing:5.146679px;}
.ws30{word-spacing:5.218409px;}
.ws37{word-spacing:5.441665px;}
.ws23{word-spacing:5.475445px;}
.ws29{word-spacing:5.618906px;}
.ws17{word-spacing:5.648794px;}
.ws12{word-spacing:5.708570px;}
.ws2c{word-spacing:5.852031px;}
.ws1d{word-spacing:5.959628px;}
.wsa{word-spacing:6.049291px;}
.ws7{word-spacing:6.198730px;}
.ws3d{word-spacing:6.407040px;}
.wsc{word-spacing:6.575316px;}
.ws2b{word-spacing:7.035589px;}
.ws14{word-spacing:7.352399px;}
.ws28{word-spacing:7.878423px;}
.wsb{word-spacing:8.888632px;}
.ws22{word-spacing:9.414657px;}
.ws25{word-spacing:9.450522px;}
.ws34{word-spacing:9.486078px;}
.ws8{word-spacing:10.281403px;}
.ws11{word-spacing:10.657988px;}
.ws1a{word-spacing:10.891115px;}
.wsd{word-spacing:11.620376px;}
.ws1e{word-spacing:12.863710px;}
.ws35{word-spacing:13.728646px;}
.ws18{word-spacing:13.784253px;}
.ws24{word-spacing:15.200934px;}
.ws1f{word-spacing:16.043772px;}
.ws10{word-spacing:18.094074px;}
.ws26{word-spacing:18.972776px;}
.ws4{word-spacing:19.887342px;}
.ws19{word-spacing:20.114489px;}
.ws2a{word-spacing:20.455211px;}
.ws13{word-spacing:20.981235px;}
.ws33{word-spacing:22.289996px;}
.ws20{word-spacing:28.220059px;}
.ws1b{word-spacing:29.128648px;}
.ws2{word-spacing:31.265304px;}
.ws3{word-spacing:31.542664px;}
._b{margin-left:-6.892134px;}
._0{margin-left:-1.124394px;}
._3{width:1.183555px;}
._11{width:14.023340px;}
._4{width:15.750871px;}
._6{width:16.784987px;}
._8{width:18.434793px;}
._d{width:19.588464px;}
._e{width:20.993190px;}
._2{width:22.176744px;}
._7{width:23.479857px;}
._5{width:25.308990px;}
._10{width:27.431884px;}
._9{width:29.929640px;}
._1{width:32.594730px;}
._c{width:35.136092px;}
._a{width:36.361500px;}
._f{width:47.765727px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs8{font-size:50.809198px;}
.fs5{font-size:56.787598px;}
.fs7{font-size:59.775599px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:89.664000px;}
.fs6{font-size:95.641800px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:66.525004px;}
.y68{bottom:68.286598px;}
.y4{bottom:97.125005px;}
.y67{bottom:115.397786px;}
.y66{bottom:130.364906px;}
.y21{bottom:139.264499px;}
.y64{bottom:145.332025px;}
.y65{bottom:145.502236px;}
.y63{bottom:160.299145px;}
.y18{bottom:196.933500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y45{bottom:227.747640px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y62{bottom:241.254541px;}
.y43{bottom:246.455908px;}
.y44{bottom:246.541089px;}
.y61{bottom:256.221661px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y42{bottom:265.078996px;}
.y60{bottom:271.188780px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y41{bottom:283.787264px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y5f{bottom:286.070794px;}
.y5e{bottom:301.037914px;}
.y40{bottom:302.495532px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y5d{bottom:316.005034px;}
.y3f{bottom:321.118620px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y5c{bottom:330.972153px;}
.y3e{bottom:339.826888px;}
.y5b{bottom:345.854167px;}
.yf{bottom:348.133500px;}
.y3d{bottom:358.535156px;}
.y5a{bottom:360.821287px;}
.y59{bottom:375.788407px;}
.y3c{bottom:377.158243px;}
.ye{bottom:386.785499px;}
.y58{bottom:390.670421px;}
.y3b{bottom:395.866511px;}
.y57{bottom:405.637540px;}
.yd{bottom:408.044999px;}
.y3a{bottom:414.489599px;}
.y56{bottom:420.604660px;}
.y39{bottom:433.197867px;}
.y38{bottom:451.906135px;}
.y55{bottom:453.956418px;}
.y37{bottom:470.529223px;}
.y54{bottom:471.899558px;}
.y36{bottom:489.237491px;}
.yc{bottom:502.864502px;}
.y35{bottom:507.945759px;}
.y53{bottom:507.956199px;}
.yb{bottom:520.864502px;}
.y34{bottom:526.568846px;}
.y52{bottom:526.579287px;}
.ya{bottom:538.864499px;}
.y33{bottom:545.277114px;}
.y51{bottom:545.287555px;}
.y9{bottom:556.864499px;}
.y32{bottom:563.985382px;}
.y50{bottom:563.995823px;}
.y31{bottom:582.608470px;}
.y4f{bottom:582.618910px;}
.y30{bottom:601.316738px;}
.y4e{bottom:601.327178px;}
.y2f{bottom:620.025006px;}
.y4d{bottom:620.035446px;}
.y2e{bottom:638.648093px;}
.y4c{bottom:638.658534px;}
.y8{bottom:645.510000px;}
.y2d{bottom:657.356361px;}
.y4b{bottom:657.366802px;}
.y7{bottom:666.771000px;}
.y2c{bottom:676.064629px;}
.y4a{bottom:676.075070px;}
.y2b{bottom:694.687717px;}
.y49{bottom:694.698158px;}
.y2a{bottom:713.395985px;}
.y48{bottom:713.406426px;}
.y6{bottom:726.298500px;}
.y29{bottom:732.104253px;}
.y47{bottom:732.114694px;}
.y28{bottom:750.727341px;}
.y46{bottom:750.737781px;}
.y3{bottom:752.599495px;}
.y27{bottom:795.117803px;}
.y26{bottom:809.999817px;}
.y2{bottom:879.369000px;}
.y25{bottom:936.878540px;}
.y1{bottom:966.726000px;}
.y24{bottom:981.183442px;}
.y23{bottom:1008.056396px;}
.y22{bottom:1076.853333px;}
.y6a{bottom:1109.423938px;}
.y69{bottom:1126.601257px;}
.h7{height:32.130000px;}
.hd{height:34.956728px;}
.hf{height:35.261584px;}
.h10{height:37.090715px;}
.ha{height:39.069867px;}
.he{height:41.125612px;}
.hc{height:41.484265px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h11{height:54.657439px;}
.h2{height:55.080000px;}
.hb{height:66.375409px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h8{height:1186.299000px;}
.h9{height:1186.500000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:76.535402px;}
.x5{left:85.039352px;}
.x7{left:93.543054px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xc{left:134.871982px;}
.x4{left:203.484001px;}
.x8{left:422.474724px;}
.x3{left:454.959000px;}
.x9{left:459.211312px;}
.xa{left:476.218964px;}
.xb{left:616.533215px;}
.xd{left:756.935257px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:4.010539pt;}
.ls2{letter-spacing:4.378231pt;}
.ls4{letter-spacing:5.456657pt;}
.ls1{letter-spacing:15.071137pt;}
.ws1{word-spacing:-18.076123pt;}
.ws3f{word-spacing:-11.290933pt;}
.ws15{word-spacing:-0.749188pt;}
.ws2d{word-spacing:-0.711993pt;}
.ws9{word-spacing:-0.255043pt;}
.ws41{word-spacing:-0.045164pt;}
.ws0{word-spacing:0.000000pt;}
.ws39{word-spacing:0.243884pt;}
.wsf{word-spacing:0.552592pt;}
.ws36{word-spacing:0.672939pt;}
.ws3a{word-spacing:1.278133pt;}
.ws38{word-spacing:1.616861pt;}
.ws21{word-spacing:2.024401pt;}
.ws16{word-spacing:2.029714pt;}
.ws2f{word-spacing:2.353830pt;}
.ws2e{word-spacing:2.927676pt;}
.ws3c{word-spacing:3.378247pt;}
.ws3e{word-spacing:3.595033pt;}
.ws5{word-spacing:3.604065pt;}
.ws45{word-spacing:3.640197pt;}
.ws43{word-spacing:3.698909pt;}
.ws6{word-spacing:3.775688pt;}
.ws44{word-spacing:3.870532pt;}
.ws40{word-spacing:3.888598pt;}
.ws42{word-spacing:3.911179pt;}
.ws3b{word-spacing:3.929245pt;}
.ws1c{word-spacing:4.075368pt;}
.wse{word-spacing:4.271962pt;}
.ws27{word-spacing:4.441991pt;}
.ws32{word-spacing:4.468558pt;}
.ws31{word-spacing:4.574826pt;}
.ws30{word-spacing:4.638586pt;}
.ws37{word-spacing:4.837036pt;}
.ws23{word-spacing:4.867062pt;}
.ws29{word-spacing:4.994583pt;}
.ws17{word-spacing:5.021150pt;}
.ws12{word-spacing:5.074284pt;}
.ws2c{word-spacing:5.201805pt;}
.ws1d{word-spacing:5.297447pt;}
.wsa{word-spacing:5.377148pt;}
.ws7{word-spacing:5.509982pt;}
.ws3d{word-spacing:5.695147pt;}
.wsc{word-spacing:5.844725pt;}
.ws2b{word-spacing:6.253857pt;}
.ws14{word-spacing:6.535465pt;}
.ws28{word-spacing:7.003043pt;}
.wsb{word-spacing:7.901006pt;}
.ws22{word-spacing:8.368584pt;}
.ws25{word-spacing:8.400464pt;}
.ws34{word-spacing:8.432069pt;}
.ws8{word-spacing:9.139025pt;}
.ws11{word-spacing:9.473768pt;}
.ws1a{word-spacing:9.680991pt;}
.wsd{word-spacing:10.329223pt;}
.ws1e{word-spacing:11.434408pt;}
.ws35{word-spacing:12.203241pt;}
.ws18{word-spacing:12.252670pt;}
.ws24{word-spacing:13.511941pt;}
.ws1f{word-spacing:14.261131pt;}
.ws10{word-spacing:16.083622pt;}
.ws26{word-spacing:16.864690pt;}
.ws4{word-spacing:17.677638pt;}
.ws19{word-spacing:17.879546pt;}
.ws2a{word-spacing:18.182409pt;}
.ws13{word-spacing:18.649987pt;}
.ws33{word-spacing:19.813330pt;}
.ws20{word-spacing:25.084497pt;}
.ws1b{word-spacing:25.892132pt;}
.ws2{word-spacing:27.791381pt;}
.ws3{word-spacing:28.037924pt;}
._b{margin-left:-6.126341pt;}
._0{margin-left:-0.999462pt;}
._3{width:1.052049pt;}
._11{width:12.465191pt;}
._4{width:14.000774pt;}
._6{width:14.919988pt;}
._8{width:16.386483pt;}
._d{width:17.411968pt;}
._e{width:18.660614pt;}
._2{width:19.712661pt;}
._7{width:20.870984pt;}
._5{width:22.496880pt;}
._10{width:24.383897pt;}
._9{width:26.604125pt;}
._1{width:28.973093pt;}
._c{width:31.232082pt;}
._a{width:32.321334pt;}
._f{width:42.458424pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:45.163732pt;}
.fs5{font-size:50.477865pt;}
.fs7{font-size:53.133865pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:79.701333pt;}
.fs6{font-size:85.014933pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:59.133337pt;}
.y68{bottom:60.699198pt;}
.y4{bottom:86.333337pt;}
.y67{bottom:102.575810pt;}
.y66{bottom:115.879916pt;}
.y21{bottom:123.790666pt;}
.y64{bottom:129.184022pt;}
.y65{bottom:129.335321pt;}
.y63{bottom:142.488129pt;}
.y18{bottom:175.052000pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y45{bottom:202.442347pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y62{bottom:214.448481pt;}
.y43{bottom:219.071919pt;}
.y44{bottom:219.147634pt;}
.y61{bottom:227.752587pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y42{bottom:235.625774pt;}
.y60{bottom:241.056693pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y41{bottom:252.255346pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y5f{bottom:254.285151pt;}
.y5e{bottom:267.589257pt;}
.y40{bottom:268.884917pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y5d{bottom:280.893363pt;}
.y3f{bottom:285.438773pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y5c{bottom:294.197469pt;}
.y3e{bottom:302.068345pt;}
.y5b{bottom:307.425927pt;}
.yf{bottom:309.452000pt;}
.y3d{bottom:318.697916pt;}
.y5a{bottom:320.730033pt;}
.y59{bottom:334.034139pt;}
.y3c{bottom:335.251772pt;}
.ye{bottom:343.809333pt;}
.y58{bottom:347.262596pt;}
.y3b{bottom:351.881343pt;}
.y57{bottom:360.566703pt;}
.yd{bottom:362.706666pt;}
.y3a{bottom:368.435199pt;}
.y56{bottom:373.870809pt;}
.y39{bottom:385.064771pt;}
.y38{bottom:401.694342pt;}
.y55{bottom:403.516816pt;}
.y37{bottom:418.248198pt;}
.y54{bottom:419.466274pt;}
.y36{bottom:434.877769pt;}
.yc{bottom:446.990669pt;}
.y35{bottom:451.507341pt;}
.y53{bottom:451.516621pt;}
.yb{bottom:462.990669pt;}
.y34{bottom:468.061197pt;}
.y52{bottom:468.070477pt;}
.ya{bottom:478.990666pt;}
.y33{bottom:484.690768pt;}
.y51{bottom:484.700049pt;}
.y9{bottom:494.990666pt;}
.y32{bottom:501.320340pt;}
.y50{bottom:501.329620pt;}
.y31{bottom:517.874195pt;}
.y4f{bottom:517.883476pt;}
.y30{bottom:534.503767pt;}
.y4e{bottom:534.513047pt;}
.y2f{bottom:551.133338pt;}
.y4d{bottom:551.142619pt;}
.y2e{bottom:567.687194pt;}
.y4c{bottom:567.696475pt;}
.y8{bottom:573.786667pt;}
.y2d{bottom:584.316766pt;}
.y4b{bottom:584.326046pt;}
.y7{bottom:592.685334pt;}
.y2c{bottom:600.946337pt;}
.y4a{bottom:600.955618pt;}
.y2b{bottom:617.500193pt;}
.y49{bottom:617.509473pt;}
.y2a{bottom:634.129764pt;}
.y48{bottom:634.139045pt;}
.y6{bottom:645.598667pt;}
.y29{bottom:650.759336pt;}
.y47{bottom:650.768616pt;}
.y28{bottom:667.313192pt;}
.y46{bottom:667.322472pt;}
.y3{bottom:668.977329pt;}
.y27{bottom:706.771380pt;}
.y26{bottom:719.999837pt;}
.y2{bottom:781.661334pt;}
.y25{bottom:832.780924pt;}
.y1{bottom:859.312000pt;}
.y24{bottom:872.163059pt;}
.y23{bottom:896.050130pt;}
.y22{bottom:957.202962pt;}
.y6a{bottom:986.154611pt;}
.y69{bottom:1001.423340pt;}
.h7{height:28.560000pt;}
.hd{height:31.072648pt;}
.hf{height:31.343630pt;}
.h10{height:32.969524pt;}
.ha{height:34.728771pt;}
.he{height:36.556099pt;}
.hc{height:36.874903pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h11{height:48.584390pt;}
.h2{height:48.960000pt;}
.hb{height:59.000364pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h8{height:1054.488000pt;}
.h9{height:1054.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:68.031469pt;}
.x5{left:75.590535pt;}
.x7{left:83.149382pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xc{left:119.886206pt;}
.x4{left:180.874667pt;}
.x8{left:375.533088pt;}
.x3{left:404.408000pt;}
.x9{left:408.187833pt;}
.xa{left:423.305746pt;}
.xb{left:548.029525pt;}
.xd{left:672.831340pt;}
}




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