
    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_ba401980da74d2eb0b0ad71a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_aba0382e760347de24c21313.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_036331a6e3e25ac4636aa387.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.704000;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_5057c98945bedbaeea9add82.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_a228a41fd1306beabfe5807d.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_ac007149fd704cd190fd4f1b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.897091;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_31f4b9e4206d1531e776dada.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.383000;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:35.148288px;}
.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;}
}
.ws41{word-spacing:-32.278875px;}
.ws35{word-spacing:-4.483200px;}
.ws36{word-spacing:-3.873485px;}
.ws10{word-spacing:-3.194184px;}
.ws42{word-spacing:-2.940979px;}
.ws15{word-spacing:-2.654054px;}
.ws23{word-spacing:-1.506355px;}
.ws22{word-spacing:-1.291162px;}
.ws8{word-spacing:-0.903273px;}
.ws21{word-spacing:-0.286925px;}
.ws2{word-spacing:-0.183273px;}
.ws1b{word-spacing:-0.071731px;}
.ws19{word-spacing:0.000000px;}
.wsb{word-spacing:0.078546px;}
.wsa{word-spacing:0.209455px;}
.ws3d{word-spacing:1.291162px;}
.ws3f{word-spacing:1.362893px;}
.ws2f{word-spacing:2.080205px;}
.ws7{word-spacing:2.369457px;}
.ws1a{word-spacing:2.582323px;}
.ws3e{word-spacing:2.654054px;}
.ws4{word-spacing:3.089457px;}
.ws39{word-spacing:3.371366px;}
.wsc{word-spacing:3.613094px;}
.ws18{word-spacing:3.873485px;}
.ws2a{word-spacing:3.945216px;}
.ws34{word-spacing:4.483200px;}
.ws31{word-spacing:4.519066px;}
.ws1{word-spacing:4.648169px;}
.ws40{word-spacing:4.662528px;}
.ws28{word-spacing:4.698394px;}
.ws26{word-spacing:5.379825px;}
.ws3{word-spacing:5.380368px;}
.ws1d{word-spacing:5.738496px;}
.ws32{word-spacing:5.810227px;}
.ws13{word-spacing:6.384077px;}
.wsf{word-spacing:6.558551px;}
.ws44{word-spacing:6.742733px;}
.ws43{word-spacing:7.531776px;}
.ws29{word-spacing:7.603507px;}
.ws0{word-spacing:7.748437px;}
.ws38{word-spacing:7.962163px;}
.ws2d{word-spacing:7.998029px;}
.ws24{word-spacing:8.177357px;}
.ws33{word-spacing:8.966400px;}
.ws37{word-spacing:9.073997px;}
.ws20{word-spacing:9.109862px;}
.ws25{word-spacing:9.432653px;}
.ws1e{word-spacing:9.683712px;}
.ws1c{word-spacing:9.898906px;}
.ws12{word-spacing:10.759680px;}
.ws2e{word-spacing:10.974874px;}
.ws2b{word-spacing:11.297664px;}
.wse{word-spacing:11.336737px;}
.ws3c{word-spacing:11.405261px;}
.wsd{word-spacing:12.384010px;}
.ws16{word-spacing:12.624691px;}
.ws5{word-spacing:13.954921px;}
.ws2c{word-spacing:14.202778px;}
.ws1f{word-spacing:14.417971px;}
.ws14{word-spacing:14.704896px;}
.ws27{word-spacing:15.637402px;}
.ws9{word-spacing:23.956384px;}
.ws3a{word-spacing:24.532070px;}
.ws3b{word-spacing:25.034189px;}
.ws30{word-spacing:30.772685px;}
.ws6{word-spacing:32.858209px;}
.ws17{word-spacing:33.068083px;}
.ws11{word-spacing:83.925075px;}
._0{margin-left:-11.653650px;}
._1c{margin-left:-8.091257px;}
._11{margin-left:-5.881958px;}
._1{margin-left:-3.843225px;}
._3{margin-left:-2.324084px;}
._5{margin-left:-1.275919px;}
._a{width:1.275919px;}
._4{width:2.324084px;}
._2{width:3.843225px;}
._7{width:5.213752px;}
._14{width:8.033894px;}
._1e{width:15.565670px;}
._e{width:17.280907px;}
._13{width:18.463604px;}
._18{width:20.530366px;}
._1d{width:22.867894px;}
._d{width:26.149559px;}
._9{width:27.621841px;}
._12{width:28.835942px;}
._b{width:31.059546px;}
._6{width:33.511863px;}
._16{width:35.148288px;}
._f{width:36.941568px;}
._c{width:38.029123px;}
._1a{width:39.739085px;}
._17{width:41.717956px;}
._19{width:44.703781px;}
._8{width:49.745496px;}
._1f{width:53.368013px;}
._15{width:63.210430px;}
._10{width:64.543721px;}
._1b{width:96.836850px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs3{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:63.168000px;}
.y1b{bottom:108.000000px;}
.y4c{bottom:119.227500px;}
.y1a{bottom:134.890500px;}
.y62{bottom:147.072000px;}
.y4b{bottom:161.062500px;}
.y19{bottom:161.781000px;}
.y61{bottom:173.962500px;}
.y36{bottom:175.867500px;}
.y4a{bottom:187.953000px;}
.y18{bottom:188.673000px;}
.y60{bottom:200.853000px;}
.y35{bottom:202.758000px;}
.y17{bottom:215.563500px;}
.y5f{bottom:227.743500px;}
.y49{bottom:229.788000px;}
.y16{bottom:242.454000px;}
.y34{bottom:243.733500px;}
.y5e{bottom:254.635500px;}
.y33{bottom:270.625500px;}
.y48{bottom:271.623000px;}
.y15{bottom:287.103000px;}
.y5d{bottom:299.284500px;}
.y32{bottom:309.883500px;}
.y47{bottom:316.272000px;}
.y31{bottom:348.357000px;}
.y14{bottom:354.603000px;}
.y5c{bottom:367.107000px;}
.y13{bottom:379.824000px;}
.y46{bottom:384.096000px;}
.y5b{bottom:393.999000px;}
.y30{bottom:399.496500px;}
.y12{bottom:405.046500px;}
.y45{bottom:410.986500px;}
.y11{bottom:430.267500px;}
.y5a{bottom:432.471000px;}
.y44{bottom:437.877000px;}
.y10{bottom:455.490000px;}
.y2f{bottom:466.876500px;}
.y43{bottom:479.712000px;}
.yf{bottom:480.711000px;}
.y59{bottom:490.945500px;}
.y2e{bottom:493.767000px;}
.ye{bottom:505.933500px;}
.y58{bottom:517.837500px;}
.y2d{bottom:520.659000px;}
.y42{bottom:521.547000px;}
.yd{bottom:531.154500px;}
.y57{bottom:544.728000px;}
.y2c{bottom:547.549500px;}
.yc{bottom:556.377000px;}
.y41{bottom:563.382000px;}
.y2b{bottom:574.440000px;}
.yb{bottom:581.598000px;}
.y56{bottom:583.200000px;}
.y2a{bottom:601.330500px;}
.y40{bottom:605.217000px;}
.ya{bottom:606.820500px;}
.y29{bottom:628.222500px;}
.y9{bottom:632.041500px;}
.y55{bottom:641.676000px;}
.y3f{bottom:647.050500px;}
.y8{bottom:657.264000px;}
.y28{bottom:667.480500px;}
.y7{bottom:682.485000px;}
.y54{bottom:683.509500px;}
.y3e{bottom:685.524000px;}
.y27{bottom:708.457500px;}
.y6{bottom:715.213500px;}
.y53{bottom:725.344500px;}
.y3d{bottom:743.998500px;}
.y26{bottom:749.433000px;}
.y52{bottom:767.179500px;}
.y3c{bottom:770.889000px;}
.y5{bottom:783.688500px;}
.y25{bottom:788.692500px;}
.y51{bottom:809.014500px;}
.y3b{bottom:812.724000px;}
.y4{bottom:828.138000px;}
.y24{bottom:833.341500px;}
.y50{bottom:847.486500px;}
.y3a{bottom:854.559000px;}
.y3{bottom:887.859000px;}
.y39{bottom:896.394000px;}
.y4f{bottom:898.627500px;}
.y23{bottom:900.721500px;}
.y67{bottom:909.855000px;}
.y22{bottom:927.613500px;}
.y2{bottom:934.222500px;}
.y66{bottom:936.745500px;}
.y38{bottom:938.229000px;}
.y21{bottom:954.504000px;}
.y65{bottom:963.636000px;}
.y4e{bottom:966.451500px;}
.y37{bottom:976.701000px;}
.y1{bottom:980.586000px;}
.y20{bottom:981.394500px;}
.y64{bottom:990.526500px;}
.y4d{bottom:993.342000px;}
.y1f{bottom:1008.285000px;}
.y63{bottom:1017.418500px;}
.y1e{bottom:1035.177000px;}
.y1d{bottom:1062.067500px;}
.h3{height:45.687311px;}
.h4{height:49.090950px;}
.h8{height:50.211840px;}
.h6{height:53.798400px;}
.h7{height:60.254040px;}
.h2{height:64.557900px;}
.h5{height:72.304680px;}
.h1{height:86.782500px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:108.000000px;}
.xb{left:129.460500px;}
.xa{left:134.338500px;}
.x2{left:151.852500px;}
.x7{left:176.443500px;}
.x1{left:202.969500px;}
.x3{left:205.708500px;}
.x5{left:371.938500px;}
.x4{left:411.301500px;}
.x6{left:422.998500px;}
.x9{left:454.609500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:31.242923pt;}
.ws41{word-spacing:-28.692333pt;}
.ws35{word-spacing:-3.985067pt;}
.ws36{word-spacing:-3.443098pt;}
.ws10{word-spacing:-2.839275pt;}
.ws42{word-spacing:-2.614204pt;}
.ws15{word-spacing:-2.359159pt;}
.ws23{word-spacing:-1.338982pt;}
.ws22{word-spacing:-1.147699pt;}
.ws8{word-spacing:-0.802910pt;}
.ws21{word-spacing:-0.255044pt;}
.ws2{word-spacing:-0.162909pt;}
.ws1b{word-spacing:-0.063761pt;}
.ws19{word-spacing:0.000000pt;}
.wsb{word-spacing:0.069818pt;}
.wsa{word-spacing:0.186182pt;}
.ws3d{word-spacing:1.147699pt;}
.ws3f{word-spacing:1.211460pt;}
.ws2f{word-spacing:1.849071pt;}
.ws7{word-spacing:2.106184pt;}
.ws1a{word-spacing:2.295398pt;}
.ws3e{word-spacing:2.359159pt;}
.ws4{word-spacing:2.746184pt;}
.ws39{word-spacing:2.996770pt;}
.wsc{word-spacing:3.211639pt;}
.ws18{word-spacing:3.443098pt;}
.ws2a{word-spacing:3.506859pt;}
.ws34{word-spacing:3.985067pt;}
.ws31{word-spacing:4.016947pt;}
.ws1{word-spacing:4.131706pt;}
.ws40{word-spacing:4.144469pt;}
.ws28{word-spacing:4.176350pt;}
.ws26{word-spacing:4.782067pt;}
.ws3{word-spacing:4.782549pt;}
.ws1d{word-spacing:5.100885pt;}
.ws32{word-spacing:5.164646pt;}
.ws13{word-spacing:5.674735pt;}
.wsf{word-spacing:5.829823pt;}
.ws44{word-spacing:5.993540pt;}
.ws43{word-spacing:6.694912pt;}
.ws29{word-spacing:6.758673pt;}
.ws0{word-spacing:6.887500pt;}
.ws38{word-spacing:7.077478pt;}
.ws2d{word-spacing:7.109359pt;}
.ws24{word-spacing:7.268762pt;}
.ws33{word-spacing:7.970133pt;}
.ws37{word-spacing:8.065775pt;}
.ws20{word-spacing:8.097655pt;}
.ws25{word-spacing:8.384580pt;}
.ws1e{word-spacing:8.607744pt;}
.ws1c{word-spacing:8.799027pt;}
.ws12{word-spacing:9.564160pt;}
.ws2e{word-spacing:9.755443pt;}
.ws2b{word-spacing:10.042368pt;}
.wse{word-spacing:10.077099pt;}
.ws3c{word-spacing:10.138010pt;}
.wsd{word-spacing:11.008009pt;}
.ws16{word-spacing:11.221948pt;}
.ws5{word-spacing:12.404374pt;}
.ws2c{word-spacing:12.624691pt;}
.ws1f{word-spacing:12.815974pt;}
.ws14{word-spacing:13.071019pt;}
.ws27{word-spacing:13.899913pt;}
.ws9{word-spacing:21.294563pt;}
.ws3a{word-spacing:21.806285pt;}
.ws3b{word-spacing:22.252612pt;}
.ws30{word-spacing:27.353498pt;}
.ws6{word-spacing:29.207297pt;}
.ws17{word-spacing:29.393852pt;}
.ws11{word-spacing:74.600067pt;}
._0{margin-left:-10.358800pt;}
._1c{margin-left:-7.192228pt;}
._11{margin-left:-5.228407pt;}
._1{margin-left:-3.416200pt;}
._3{margin-left:-2.065853pt;}
._5{margin-left:-1.134150pt;}
._a{width:1.134150pt;}
._4{width:2.065853pt;}
._2{width:3.416200pt;}
._7{width:4.634446pt;}
._14{width:7.141239pt;}
._1e{width:13.836151pt;}
._e{width:15.360806pt;}
._13{width:16.412093pt;}
._18{width:18.249214pt;}
._1d{width:20.327017pt;}
._d{width:23.244052pt;}
._9{width:24.552748pt;}
._12{width:25.631949pt;}
._b{width:27.608485pt;}
._6{width:29.788323pt;}
._16{width:31.242923pt;}
._f{width:32.836949pt;}
._c{width:33.803665pt;}
._1a{width:35.323631pt;}
._17{width:37.082628pt;}
._19{width:39.736694pt;}
._8{width:44.218219pt;}
._1f{width:47.438234pt;}
._15{width:56.187049pt;}
._10{width:57.372196pt;}
._1b{width:86.077200pt;}
.fs2{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs3{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:56.149333pt;}
.y1b{bottom:96.000000pt;}
.y4c{bottom:105.980000pt;}
.y1a{bottom:119.902667pt;}
.y62{bottom:130.730667pt;}
.y4b{bottom:143.166667pt;}
.y19{bottom:143.805333pt;}
.y61{bottom:154.633333pt;}
.y36{bottom:156.326667pt;}
.y4a{bottom:167.069333pt;}
.y18{bottom:167.709333pt;}
.y60{bottom:178.536000pt;}
.y35{bottom:180.229333pt;}
.y17{bottom:191.612000pt;}
.y5f{bottom:202.438667pt;}
.y49{bottom:204.256000pt;}
.y16{bottom:215.514667pt;}
.y34{bottom:216.652000pt;}
.y5e{bottom:226.342667pt;}
.y33{bottom:240.556000pt;}
.y48{bottom:241.442667pt;}
.y15{bottom:255.202667pt;}
.y5d{bottom:266.030667pt;}
.y32{bottom:275.452000pt;}
.y47{bottom:281.130667pt;}
.y31{bottom:309.650667pt;}
.y14{bottom:315.202667pt;}
.y5c{bottom:326.317333pt;}
.y13{bottom:337.621333pt;}
.y46{bottom:341.418667pt;}
.y5b{bottom:350.221333pt;}
.y30{bottom:355.108000pt;}
.y12{bottom:360.041333pt;}
.y45{bottom:365.321333pt;}
.y11{bottom:382.460000pt;}
.y5a{bottom:384.418667pt;}
.y44{bottom:389.224000pt;}
.y10{bottom:404.880000pt;}
.y2f{bottom:415.001333pt;}
.y43{bottom:426.410667pt;}
.yf{bottom:427.298667pt;}
.y59{bottom:436.396000pt;}
.y2e{bottom:438.904000pt;}
.ye{bottom:449.718667pt;}
.y58{bottom:460.300000pt;}
.y2d{bottom:462.808000pt;}
.y42{bottom:463.597333pt;}
.yd{bottom:472.137333pt;}
.y57{bottom:484.202667pt;}
.y2c{bottom:486.710667pt;}
.yc{bottom:494.557333pt;}
.y41{bottom:500.784000pt;}
.y2b{bottom:510.613333pt;}
.yb{bottom:516.976000pt;}
.y56{bottom:518.400000pt;}
.y2a{bottom:534.516000pt;}
.y40{bottom:537.970667pt;}
.ya{bottom:539.396000pt;}
.y29{bottom:558.420000pt;}
.y9{bottom:561.814667pt;}
.y55{bottom:570.378667pt;}
.y3f{bottom:575.156000pt;}
.y8{bottom:584.234667pt;}
.y28{bottom:593.316000pt;}
.y7{bottom:606.653333pt;}
.y54{bottom:607.564000pt;}
.y3e{bottom:609.354667pt;}
.y27{bottom:629.740000pt;}
.y6{bottom:635.745333pt;}
.y53{bottom:644.750667pt;}
.y3d{bottom:661.332000pt;}
.y26{bottom:666.162667pt;}
.y52{bottom:681.937333pt;}
.y3c{bottom:685.234667pt;}
.y5{bottom:696.612000pt;}
.y25{bottom:701.060000pt;}
.y51{bottom:719.124000pt;}
.y3b{bottom:722.421333pt;}
.y4{bottom:736.122667pt;}
.y24{bottom:740.748000pt;}
.y50{bottom:753.321333pt;}
.y3a{bottom:759.608000pt;}
.y3{bottom:789.208000pt;}
.y39{bottom:796.794667pt;}
.y4f{bottom:798.780000pt;}
.y23{bottom:800.641333pt;}
.y67{bottom:808.760000pt;}
.y22{bottom:824.545333pt;}
.y2{bottom:830.420000pt;}
.y66{bottom:832.662667pt;}
.y38{bottom:833.981333pt;}
.y21{bottom:848.448000pt;}
.y65{bottom:856.565333pt;}
.y4e{bottom:859.068000pt;}
.y37{bottom:868.178667pt;}
.y1{bottom:871.632000pt;}
.y20{bottom:872.350667pt;}
.y64{bottom:880.468000pt;}
.y4d{bottom:882.970667pt;}
.y1f{bottom:896.253333pt;}
.y63{bottom:904.372000pt;}
.y1e{bottom:920.157333pt;}
.y1d{bottom:944.060000pt;}
.h3{height:40.610943pt;}
.h4{height:43.636400pt;}
.h8{height:44.632747pt;}
.h6{height:47.820800pt;}
.h7{height:53.559147pt;}
.h2{height:57.384800pt;}
.h5{height:64.270827pt;}
.h1{height:77.140000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:96.000000pt;}
.xb{left:115.076000pt;}
.xa{left:119.412000pt;}
.x2{left:134.980000pt;}
.x7{left:156.838667pt;}
.x1{left:180.417333pt;}
.x3{left:182.852000pt;}
.x5{left:330.612000pt;}
.x4{left:365.601333pt;}
.x6{left:375.998667pt;}
.x9{left:404.097333pt;}
}




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