
    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_63f42f13ff98e03cf537cb8c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999000;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_292b28e1e06d873042a2c4f4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.887000;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_7225477a075dd60563d9f1f2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_ec3858b0a6a77deb246614a7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_c21de370e5d983ddf0c1aa7e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.896000;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_9c526d5092076a8c8440a651.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.705000;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_83760c606be6740a437d3a75.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.725000;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_dc214164b756f023ddbf4f00.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.451000;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:ff9;src:url('chunks/assets/font_6b0742572092a487c414447c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.389000;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:ffa;src:url('chunks/assets/font_e363fcdebf3727615d5c0050.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.923000;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:ffb;src:url('chunks/assets/font_51db0dd512c25b25834dd51d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.637000;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:ffc;src:url('chunks/assets/font_1ff2cb7436bf96584babf6d3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.683000;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:ffd;src:url('chunks/assets/font_8fea8c619328c5ec5d152fd0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.046000;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);}
.v1{vertical-align:-10.668000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.754000px;}
.ls9{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.012505px;}
.lse{letter-spacing:0.016184px;}
.ls3{letter-spacing:0.017959px;}
.ls1{letter-spacing:0.055615px;}
.lsb{letter-spacing:0.061615px;}
.lsc{letter-spacing:0.062611px;}
.ls6{letter-spacing:2.993281px;}
.lsf{letter-spacing:2.999261px;}
.ls2{letter-spacing:4.721963px;}
.ls4{letter-spacing:4.727963px;}
.ls10{letter-spacing:5.166096px;}
.lsa{letter-spacing:14.578332px;}
.ls0{letter-spacing:14.584332px;}
.ls8{letter-spacing:21.871076px;}
.lsd{letter-spacing:29.891281px;}
.ls7{letter-spacing:32.723973px;}
.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;}
}
.ws13{word-spacing:-0.065455px;}
.wsb{word-spacing:-0.047821px;}
.ws18{word-spacing:0.000000px;}
.ws9{word-spacing:6.765905px;}
.ws27{word-spacing:14.465467px;}
.ws1e{word-spacing:15.316376px;}
.ws1f{word-spacing:15.962182px;}
.ws7{word-spacing:18.130924px;}
.ws4{word-spacing:18.196379px;}
.ws6{word-spacing:18.850925px;}
.ws5{word-spacing:19.132447px;}
.ws25{word-spacing:21.403654px;}
.ws23{word-spacing:21.469109px;}
.ws24{word-spacing:21.503225px;}
.ws14{word-spacing:21.665473px;}
.ws8{word-spacing:21.730927px;}
.ws15{word-spacing:21.744890px;}
.ws21{word-spacing:21.751895px;}
.ws31{word-spacing:21.796382px;}
.ws1c{word-spacing:22.189109px;}
.ws1d{word-spacing:22.468570px;}
.wsa{word-spacing:22.516382px;}
.wsd{word-spacing:22.664671px;}
.wse{word-spacing:22.913368px;}
.wsc{word-spacing:22.928097px;}
.wsf{word-spacing:22.947190px;}
.ws10{word-spacing:22.953190px;}
.ws2e{word-spacing:23.296220px;}
.ws2d{word-spacing:23.301838px;}
.ws2{word-spacing:23.312640px;}
.ws39{word-spacing:23.498201px;}
.ws2f{word-spacing:23.629111px;}
.ws11{word-spacing:24.218202px;}
.ws28{word-spacing:24.669560px;}
.ws22{word-spacing:24.671885px;}
.ws26{word-spacing:24.672890px;}
.ws34{word-spacing:24.673550px;}
.ws29{word-spacing:24.675215px;}
.ws36{word-spacing:25.330930px;}
.ws37{word-spacing:25.390220px;}
.ws38{word-spacing:25.396385px;}
.ws33{word-spacing:26.312749px;}
.ws35{word-spacing:26.378204px;}
.ws2a{word-spacing:26.443658px;}
.ws16{word-spacing:26.755738px;}
.ws19{word-spacing:26.827469px;}
.ws2b{word-spacing:29.454570px;}
.ws2c{word-spacing:29.520025px;}
.ws1a{word-spacing:30.829117px;}
.ws1b{word-spacing:30.894571px;}
.ws1{word-spacing:30.987720px;}
.ws0{word-spacing:31.091012px;}
.ws3a{word-spacing:32.106796px;}
.ws12{word-spacing:32.192873px;}
.ws30{word-spacing:33.643664px;}
.ws17{word-spacing:34.298210px;}
.ws20{word-spacing:80.625869px;}
.ws32{word-spacing:80.732266px;}
.ws3{word-spacing:96.750773px;}
._4{margin-left:-5.329439px;}
._17{margin-left:-4.019070px;}
._1{margin-left:-2.685602px;}
._3{margin-left:-1.244915px;}
._11{width:1.017693px;}
._0{width:2.582310px;}
._8{width:3.912733px;}
._a{width:10.865464px;}
._15{width:16.533674px;}
._12{width:17.843281px;}
._2{width:21.210532px;}
._14{width:22.545963px;}
._6{width:24.021793px;}
._10{width:25.399483px;}
._16{width:26.740339px;}
._5{width:27.818205px;}
._c{width:29.061182px;}
._7{width:31.346722px;}
._e{width:32.481545px;}
._9{width:34.758356px;}
._18{width:36.001307px;}
._d{width:43.038600px;}
._f{width:56.419540px;}
._13{width:80.697600px;}
._b{width:96.836850px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1d{bottom:61.467000px;}
.y3e{bottom:131.631000px;}
.y1c{bottom:139.263000px;}
.y3d{bottom:151.954500px;}
.y1b{bottom:159.586500px;}
.y1a{bottom:179.910000px;}
.y3c{bottom:182.847000px;}
.y19{bottom:200.233500px;}
.y3b{bottom:226.666500px;}
.y18{bottom:231.126000px;}
.y3a{bottom:246.990000px;}
.y39{bottom:267.313500px;}
.y17{bottom:268.252500px;}
.y38{bottom:298.206000px;}
.y16{bottom:319.810500px;}
.y37{bottom:335.332500px;}
.y15{bottom:353.583000px;}
.y36{bottom:386.890500px;}
.y14{bottom:387.357000px;}
.y35{bottom:407.214000px;}
.y13{bottom:423.885000px;}
.y34{bottom:440.988000px;}
.y33{bottom:474.760500px;}
.y12{bottom:475.443000px;}
.y32{bottom:508.534500px;}
.y11{bottom:509.217000px;}
.y31{bottom:542.307000px;}
.y10{bottom:542.991000px;}
.y30{bottom:562.630500px;}
.yf{bottom:576.763500px;}
.y2f{bottom:593.523000px;}
.ye{bottom:610.537500px;}
.y2e{bottom:637.342500px;}
.yd{bottom:647.065500px;}
.y2d{bottom:671.115000px;}
.yc{bottom:698.623500px;}
.y2c{bottom:702.007500px;}
.yb{bottom:718.947000px;}
.ya{bottom:739.270500px;}
.y2b{bottom:745.827000px;}
.y9{bottom:759.595500px;}
.y2a{bottom:779.599500px;}
.y8{bottom:779.919000px;}
.y7{bottom:800.242500px;}
.y29{bottom:810.492000px;}
.y47{bottom:819.202500px;}
.y6{bottom:820.566000px;}
.y28{bottom:847.618500px;}
.y46{bottom:855.730500px;}
.y5{bottom:857.094000px;}
.y27{bottom:899.176500px;}
.y45{bottom:907.288500px;}
.y26{bottom:919.500000px;}
.y4{bottom:926.586000px;}
.y25{bottom:939.823500px;}
.y44{bottom:941.061000px;}
.y24{bottom:960.147000px;}
.y43{bottom:977.590500px;}
.y23{bottom:996.676500px;}
.y3{bottom:1008.739500px;}
.y42{bottom:1029.148500px;}
.y2{bottom:1041.616500px;}
.y22{bottom:1048.234500px;}
.y41{bottom:1049.472000px;}
.y21{bottom:1068.558000px;}
.y1{bottom:1074.493500px;}
.y40{bottom:1083.246000px;}
.y20{bottom:1088.881500px;}
.y3f{bottom:1103.569500px;}
.y1f{bottom:1109.205000px;}
.y1e{bottom:1140.097500px;}
.h8{height:45.425492px;}
.h9{height:49.084950px;}
.h5{height:49.090950px;}
.h3{height:49.781453px;}
.h7{height:53.798400px;}
.h6{height:57.419702px;}
.h4{height:64.557900px;}
.h2{height:77.366008px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:106.299000px;}
.x6{left:122.709000px;}
.x5{left:131.704500px;}
.x2{left:135.021000px;}
.x8{left:139.026000px;}
.x9{left:147.208500px;}
.x1{left:221.415000px;}
.x3{left:374.241000px;}
.x7{left:442.366500px;}
@media print{
.v1{vertical-align:-9.482667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.114667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.011116pt;}
.lse{letter-spacing:0.014386pt;}
.ls3{letter-spacing:0.015963pt;}
.ls1{letter-spacing:0.049436pt;}
.lsb{letter-spacing:0.054769pt;}
.lsc{letter-spacing:0.055654pt;}
.ls6{letter-spacing:2.660694pt;}
.lsf{letter-spacing:2.666010pt;}
.ls2{letter-spacing:4.197300pt;}
.ls4{letter-spacing:4.202634pt;}
.ls10{letter-spacing:4.592085pt;}
.lsa{letter-spacing:12.958517pt;}
.ls0{letter-spacing:12.963851pt;}
.ls8{letter-spacing:19.440956pt;}
.lsd{letter-spacing:26.570028pt;}
.ls7{letter-spacing:29.087976pt;}
.ws13{word-spacing:-0.058182pt;}
.wsb{word-spacing:-0.042507pt;}
.ws18{word-spacing:0.000000pt;}
.ws9{word-spacing:6.014138pt;}
.ws27{word-spacing:12.858193pt;}
.ws1e{word-spacing:13.614557pt;}
.ws1f{word-spacing:14.188606pt;}
.ws7{word-spacing:16.116377pt;}
.ws4{word-spacing:16.174559pt;}
.ws6{word-spacing:16.756378pt;}
.ws5{word-spacing:17.006619pt;}
.ws25{word-spacing:19.025470pt;}
.ws23{word-spacing:19.083652pt;}
.ws24{word-spacing:19.113978pt;}
.ws14{word-spacing:19.258198pt;}
.ws8{word-spacing:19.316380pt;}
.ws15{word-spacing:19.328791pt;}
.ws21{word-spacing:19.335018pt;}
.ws31{word-spacing:19.374562pt;}
.ws1c{word-spacing:19.723653pt;}
.ws1d{word-spacing:19.972062pt;}
.wsa{word-spacing:20.014562pt;}
.wsd{word-spacing:20.146374pt;}
.wse{word-spacing:20.367438pt;}
.wsc{word-spacing:20.380531pt;}
.wsf{word-spacing:20.397502pt;}
.ws10{word-spacing:20.402836pt;}
.ws2e{word-spacing:20.707751pt;}
.ws2d{word-spacing:20.712745pt;}
.ws2{word-spacing:20.722347pt;}
.ws39{word-spacing:20.887290pt;}
.ws2f{word-spacing:21.003654pt;}
.ws11{word-spacing:21.527291pt;}
.ws28{word-spacing:21.928498pt;}
.ws22{word-spacing:21.930565pt;}
.ws26{word-spacing:21.931458pt;}
.ws34{word-spacing:21.932045pt;}
.ws29{word-spacing:21.933525pt;}
.ws36{word-spacing:22.516382pt;}
.ws37{word-spacing:22.569085pt;}
.ws38{word-spacing:22.574564pt;}
.ws33{word-spacing:23.389110pt;}
.ws35{word-spacing:23.447292pt;}
.ws2a{word-spacing:23.505474pt;}
.ws16{word-spacing:23.782878pt;}
.ws19{word-spacing:23.846639pt;}
.ws2b{word-spacing:26.181840pt;}
.ws2c{word-spacing:26.240022pt;}
.ws1a{word-spacing:27.403659pt;}
.ws1b{word-spacing:27.461841pt;}
.ws1{word-spacing:27.544640pt;}
.ws0{word-spacing:27.636455pt;}
.ws3a{word-spacing:28.539374pt;}
.ws12{word-spacing:28.615887pt;}
.ws30{word-spacing:29.905479pt;}
.ws17{word-spacing:30.487298pt;}
.ws20{word-spacing:71.667439pt;}
.ws32{word-spacing:71.762014pt;}
.ws3{word-spacing:86.000687pt;}
._4{margin-left:-4.737279pt;}
._17{margin-left:-3.572507pt;}
._1{margin-left:-2.387202pt;}
._3{margin-left:-1.106591pt;}
._11{width:0.904616pt;}
._0{width:2.295387pt;}
._8{width:3.477985pt;}
._a{width:9.658190pt;}
._15{width:14.696599pt;}
._12{width:15.860694pt;}
._2{width:18.853806pt;}
._14{width:20.040856pt;}
._6{width:21.352705pt;}
._10{width:22.577318pt;}
._16{width:23.769190pt;}
._5{width:24.727293pt;}
._c{width:25.832162pt;}
._7{width:27.863753pt;}
._e{width:28.872485pt;}
._9{width:30.896317pt;}
._18{width:32.001162pt;}
._d{width:38.256533pt;}
._f{width:50.150702pt;}
._13{width:71.731200pt;}
._b{width:86.077200pt;}
.fs4{font-size:42.507200pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:54.637333pt;}
.y3e{bottom:117.005333pt;}
.y1c{bottom:123.789333pt;}
.y3d{bottom:135.070667pt;}
.y1b{bottom:141.854667pt;}
.y1a{bottom:159.920000pt;}
.y3c{bottom:162.530667pt;}
.y19{bottom:177.985333pt;}
.y3b{bottom:201.481333pt;}
.y18{bottom:205.445333pt;}
.y3a{bottom:219.546667pt;}
.y39{bottom:237.612000pt;}
.y17{bottom:238.446667pt;}
.y38{bottom:265.072000pt;}
.y16{bottom:284.276000pt;}
.y37{bottom:298.073333pt;}
.y15{bottom:314.296000pt;}
.y36{bottom:343.902667pt;}
.y14{bottom:344.317333pt;}
.y35{bottom:361.968000pt;}
.y13{bottom:376.786667pt;}
.y34{bottom:391.989333pt;}
.y33{bottom:422.009333pt;}
.y12{bottom:422.616000pt;}
.y32{bottom:452.030667pt;}
.y11{bottom:452.637333pt;}
.y31{bottom:482.050667pt;}
.y10{bottom:482.658667pt;}
.y30{bottom:500.116000pt;}
.yf{bottom:512.678667pt;}
.y2f{bottom:527.576000pt;}
.ye{bottom:542.700000pt;}
.y2e{bottom:566.526667pt;}
.yd{bottom:575.169333pt;}
.y2d{bottom:596.546667pt;}
.yc{bottom:620.998667pt;}
.y2c{bottom:624.006667pt;}
.yb{bottom:639.064000pt;}
.ya{bottom:657.129333pt;}
.y2b{bottom:662.957333pt;}
.y9{bottom:675.196000pt;}
.y2a{bottom:692.977333pt;}
.y8{bottom:693.261333pt;}
.y7{bottom:711.326667pt;}
.y29{bottom:720.437333pt;}
.y47{bottom:728.180000pt;}
.y6{bottom:729.392000pt;}
.y28{bottom:753.438667pt;}
.y46{bottom:760.649333pt;}
.y5{bottom:761.861333pt;}
.y27{bottom:799.268000pt;}
.y45{bottom:806.478667pt;}
.y26{bottom:817.333333pt;}
.y4{bottom:823.632000pt;}
.y25{bottom:835.398667pt;}
.y44{bottom:836.498667pt;}
.y24{bottom:853.464000pt;}
.y43{bottom:868.969333pt;}
.y23{bottom:885.934667pt;}
.y3{bottom:896.657333pt;}
.y42{bottom:914.798667pt;}
.y2{bottom:925.881333pt;}
.y22{bottom:931.764000pt;}
.y41{bottom:932.864000pt;}
.y21{bottom:949.829333pt;}
.y1{bottom:955.105333pt;}
.y40{bottom:962.885333pt;}
.y20{bottom:967.894667pt;}
.y3f{bottom:980.950667pt;}
.y1f{bottom:985.960000pt;}
.y1e{bottom:1013.420000pt;}
.h8{height:40.378215pt;}
.h9{height:43.631067pt;}
.h5{height:43.636400pt;}
.h3{height:44.250180pt;}
.h7{height:47.820800pt;}
.h6{height:51.039735pt;}
.h4{height:57.384800pt;}
.h2{height:68.769785pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:94.488000pt;}
.x6{left:109.074667pt;}
.x5{left:117.070667pt;}
.x2{left:120.018667pt;}
.x8{left:123.578667pt;}
.x9{left:130.852000pt;}
.x1{left:196.813333pt;}
.x3{left:332.658667pt;}
.x7{left:393.214667pt;}
}




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