
    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_e8befef5d55ad00772b5877c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.165000;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_3d59bb678c53077617faf481.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.995000;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_3912c7c18f321c0fc63d6020.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.012000;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_748661dc6a32c3985bf5be29.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.179000;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_03f9c15f491b2bbef355a6be.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.179000;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_b70cea5708bd1ec75d5c68b4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.710000;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_6775d57269fa7c0c6887bcf8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.117000;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_b498d5cc89e3d87f4d31941b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.002000;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_3761c8a9533052101bfcc9a8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.835938;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;}
.lsb{letter-spacing:-0.960000px;}
.lsd{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.162000px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.108000px;}
.ls1c{letter-spacing:0.135000px;}
.lse{letter-spacing:0.162000px;}
.ls13{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.270000px;}
.ls1d{letter-spacing:0.378000px;}
.ls14{letter-spacing:0.405000px;}
.ls17{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.486000px;}
.ls6{letter-spacing:0.540000px;}
.ls16{letter-spacing:0.594000px;}
.ls12{letter-spacing:0.621000px;}
.ls5{letter-spacing:0.702000px;}
.ls3{letter-spacing:0.756000px;}
.ls19{letter-spacing:0.810000px;}
.ls15{letter-spacing:0.864000px;}
.ls11{letter-spacing:0.918000px;}
.ls9{letter-spacing:0.972000px;}
.ls1b{letter-spacing:0.999000px;}
.ls8{letter-spacing:1.134000px;}
.ls7{letter-spacing:1.161000px;}
.ls1f{letter-spacing:1.170000px;}
.ls4{letter-spacing:1.188000px;}
.ls1a{letter-spacing:1.242000px;}
.ls1e{letter-spacing:1.755000px;}
.lsa{letter-spacing:1.890000px;}
.ls18{letter-spacing:1.972920px;}
.ls2{letter-spacing:2.214000px;}
.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;}
}
.ws18{word-spacing:-12.609000px;}
.wsc{word-spacing:-1.890000px;}
.ws1d{word-spacing:-1.782000px;}
.ws1a{word-spacing:-1.242000px;}
.ws7{word-spacing:-1.188000px;}
.ws1f{word-spacing:-1.170000px;}
.wsa{word-spacing:-1.134000px;}
.ws1b{word-spacing:-1.026000px;}
.wsb{word-spacing:-0.972000px;}
.ws12{word-spacing:-0.918000px;}
.ws15{word-spacing:-0.864000px;}
.ws19{word-spacing:-0.810000px;}
.ws6{word-spacing:-0.756000px;}
.ws8{word-spacing:-0.702000px;}
.ws11{word-spacing:-0.648000px;}
.ws16{word-spacing:-0.594000px;}
.ws1e{word-spacing:-0.570000px;}
.ws9{word-spacing:-0.540000px;}
.wsf{word-spacing:-0.486000px;}
.ws17{word-spacing:-0.432000px;}
.ws1c{word-spacing:-0.378000px;}
.ws5{word-spacing:-0.270000px;}
.ws13{word-spacing:-0.216000px;}
.wse{word-spacing:-0.162000px;}
.ws10{word-spacing:-0.108000px;}
.wsd{word-spacing:-0.037800px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:0.162000px;}
.ws3{word-spacing:0.540000px;}
.ws1{word-spacing:0.960000px;}
.ws14{word-spacing:1.188000px;}
.ws4{word-spacing:1.998000px;}
._3{margin-left:-2.995200px;}
._2{margin-left:-1.766400px;}
._0{width:1.920000px;}
._4{width:2.947800px;}
._5{width:4.147200px;}
._7{width:5.326800px;}
._8{width:7.012200px;}
._1{width:25.824000px;}
._6{width:33.480000px;}
.fc3{color:rgb(32,53,89);}
.fc2{color:rgb(27,24,26);}
.fc1{color:rgb(29,52,87);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:30.000000px;}
.fs1{font-size:36.000000px;}
.fs6{font-size:37.800000px;}
.fs2{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:49.323000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yf{bottom:54.000000px;}
.y5b{bottom:54.051750px;}
.y3e{bottom:55.149000px;}
.y1f{bottom:61.570500px;}
.ye{bottom:65.250000px;}
.y5a{bottom:75.057750px;}
.y3d{bottom:76.155000px;}
.yd{bottom:76.500000px;}
.y1e{bottom:82.576500px;}
.y59{bottom:96.063750px;}
.y1d{bottom:103.582500px;}
.y3c{bottom:115.008000px;}
.y58{bottom:117.069750px;}
.y3b{bottom:136.014000px;}
.y1c{bottom:145.581000px;}
.yc{bottom:151.241250px;}
.y5e{bottom:151.754400px;}
.y5d{bottom:152.179650px;}
.y3a{bottom:157.020000px;}
.y57{bottom:159.068250px;}
.yb{bottom:165.485250px;}
.y1b{bottom:166.587000px;}
.y39{bottom:178.026000px;}
.ya{bottom:179.729250px;}
.y56{bottom:180.074250px;}
.y1a{bottom:187.593000px;}
.y38{bottom:199.032000px;}
.y55{bottom:201.080250px;}
.y9{bottom:208.229250px;}
.y19{bottom:208.599000px;}
.y54{bottom:222.086250px;}
.y8{bottom:222.473250px;}
.y18{bottom:229.605000px;}
.y7{bottom:236.717250px;}
.y37{bottom:237.885000px;}
.y53{bottom:243.092250px;}
.y17{bottom:250.611000px;}
.y6{bottom:250.961250px;}
.y36{bottom:258.891000px;}
.y52{bottom:264.098250px;}
.y5{bottom:265.205250px;}
.y4{bottom:279.449250px;}
.y35{bottom:279.897000px;}
.y51{bottom:285.104250px;}
.y3{bottom:293.693250px;}
.y34{bottom:300.845250px;}
.y50{bottom:306.110250px;}
.y2{bottom:322.193250px;}
.y4f{bottom:327.116250px;}
.y1{bottom:336.437250px;}
.y33{bottom:339.698250px;}
.y32{bottom:360.704250px;}
.y4e{bottom:369.114750px;}
.y31{bottom:381.710250px;}
.y16{bottom:384.832050px;}
.y4d{bottom:390.120750px;}
.y30{bottom:402.716250px;}
.y14{bottom:408.835050px;}
.y4c{bottom:411.126750px;}
.y15{bottom:417.826050px;}
.y2f{bottom:423.722250px;}
.y4b{bottom:432.132750px;}
.y13{bottom:441.829050px;}
.y2e{bottom:444.728250px;}
.y12{bottom:465.832050px;}
.y4a{bottom:474.131250px;}
.y2d{bottom:483.581250px;}
.y10{bottom:491.998950px;}
.y49{bottom:495.137250px;}
.y2c{bottom:504.587250px;}
.y48{bottom:516.143250px;}
.y2b{bottom:525.593250px;}
.y47{bottom:537.149250px;}
.y46{bottom:558.155250px;}
.y2a{bottom:564.446250px;}
.y45{bottom:579.161250px;}
.y29{bottom:585.452250px;}
.y28{bottom:606.458250px;}
.y44{bottom:621.159750px;}
.y27{bottom:627.464250px;}
.y43{bottom:642.165750px;}
.y26{bottom:648.470250px;}
.y42{bottom:663.171750px;}
.y41{bottom:684.177750px;}
.y25{bottom:687.323250px;}
.y40{bottom:705.183750px;}
.y24{bottom:708.329250px;}
.y5c{bottom:726.176250px;}
.y23{bottom:729.335250px;}
.y3f{bottom:747.182250px;}
.y22{bottom:768.188250px;}
.y21{bottom:789.194250px;}
.y11{bottom:863.437350px;}
.y20{bottom:911.202750px;}
.hd{height:24.741211px;}
.h5{height:32.340000px;}
.h4{height:32.976000px;}
.h3{height:36.960000px;}
.h9{height:41.580000px;}
.h2{height:43.968000px;}
.hc{height:45.525129px;}
.ha{height:46.264974px;}
.h8{height:49.464000px;}
.hb{height:49.695000px;}
.h7{height:50.652000px;}
.h6{height:74.496000px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x13{left:39.263700px;}
.x10{left:55.275600px;}
.x12{left:80.787450px;}
.xe{left:164.945700px;}
.xd{left:189.686700px;}
.x6{left:194.634300px;}
.x2{left:208.182300px;}
.x5{left:252.042300px;}
.x16{left:256.105800px;}
.xb{left:258.846300px;}
.xa{left:260.994300px;}
.xc{left:270.114300px;}
.x1{left:271.542300px;}
.x9{left:272.670300px;}
.x4{left:288.870300px;}
.x7{left:306.906300px;}
.x8{left:319.890300px;}
.x3{left:329.694300px;}
.x11{left:338.033100px;}
.x14{left:389.834700px;}
.x15{left:398.636400px;}
.xf{left:629.291400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.853333pt;}
.lsd{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.144000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.096000pt;}
.ls1c{letter-spacing:0.120000pt;}
.lse{letter-spacing:0.144000pt;}
.ls13{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.240000pt;}
.ls1d{letter-spacing:0.336000pt;}
.ls14{letter-spacing:0.360000pt;}
.ls17{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.432000pt;}
.ls6{letter-spacing:0.480000pt;}
.ls16{letter-spacing:0.528000pt;}
.ls12{letter-spacing:0.552000pt;}
.ls5{letter-spacing:0.624000pt;}
.ls3{letter-spacing:0.672000pt;}
.ls19{letter-spacing:0.720000pt;}
.ls15{letter-spacing:0.768000pt;}
.ls11{letter-spacing:0.816000pt;}
.ls9{letter-spacing:0.864000pt;}
.ls1b{letter-spacing:0.888000pt;}
.ls8{letter-spacing:1.008000pt;}
.ls7{letter-spacing:1.032000pt;}
.ls1f{letter-spacing:1.040000pt;}
.ls4{letter-spacing:1.056000pt;}
.ls1a{letter-spacing:1.104000pt;}
.ls1e{letter-spacing:1.560000pt;}
.lsa{letter-spacing:1.680000pt;}
.ls18{letter-spacing:1.753707pt;}
.ls2{letter-spacing:1.968000pt;}
.ws18{word-spacing:-11.208000pt;}
.wsc{word-spacing:-1.680000pt;}
.ws1d{word-spacing:-1.584000pt;}
.ws1a{word-spacing:-1.104000pt;}
.ws7{word-spacing:-1.056000pt;}
.ws1f{word-spacing:-1.040000pt;}
.wsa{word-spacing:-1.008000pt;}
.ws1b{word-spacing:-0.912000pt;}
.wsb{word-spacing:-0.864000pt;}
.ws12{word-spacing:-0.816000pt;}
.ws15{word-spacing:-0.768000pt;}
.ws19{word-spacing:-0.720000pt;}
.ws6{word-spacing:-0.672000pt;}
.ws8{word-spacing:-0.624000pt;}
.ws11{word-spacing:-0.576000pt;}
.ws16{word-spacing:-0.528000pt;}
.ws1e{word-spacing:-0.506667pt;}
.ws9{word-spacing:-0.480000pt;}
.wsf{word-spacing:-0.432000pt;}
.ws17{word-spacing:-0.384000pt;}
.ws1c{word-spacing:-0.336000pt;}
.ws5{word-spacing:-0.240000pt;}
.ws13{word-spacing:-0.192000pt;}
.wse{word-spacing:-0.144000pt;}
.ws10{word-spacing:-0.096000pt;}
.wsd{word-spacing:-0.033600pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:0.144000pt;}
.ws3{word-spacing:0.480000pt;}
.ws1{word-spacing:0.853333pt;}
.ws14{word-spacing:1.056000pt;}
.ws4{word-spacing:1.776000pt;}
._3{margin-left:-2.662400pt;}
._2{margin-left:-1.570133pt;}
._0{width:1.706667pt;}
._4{width:2.620267pt;}
._5{width:3.686400pt;}
._7{width:4.734933pt;}
._8{width:6.233067pt;}
._1{width:22.954667pt;}
._6{width:29.760000pt;}
.fs7{font-size:26.666667pt;}
.fs1{font-size:32.000000pt;}
.fs6{font-size:33.600000pt;}
.fs2{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:43.842667pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:48.000000pt;}
.y5b{bottom:48.046000pt;}
.y3e{bottom:49.021333pt;}
.y1f{bottom:54.729333pt;}
.ye{bottom:58.000000pt;}
.y5a{bottom:66.718000pt;}
.y3d{bottom:67.693333pt;}
.yd{bottom:68.000000pt;}
.y1e{bottom:73.401333pt;}
.y59{bottom:85.390000pt;}
.y1d{bottom:92.073333pt;}
.y3c{bottom:102.229333pt;}
.y58{bottom:104.062000pt;}
.y3b{bottom:120.901333pt;}
.y1c{bottom:129.405333pt;}
.yc{bottom:134.436667pt;}
.y5e{bottom:134.892800pt;}
.y5d{bottom:135.270800pt;}
.y3a{bottom:139.573333pt;}
.y57{bottom:141.394000pt;}
.yb{bottom:147.098000pt;}
.y1b{bottom:148.077333pt;}
.y39{bottom:158.245333pt;}
.ya{bottom:159.759333pt;}
.y56{bottom:160.066000pt;}
.y1a{bottom:166.749333pt;}
.y38{bottom:176.917333pt;}
.y55{bottom:178.738000pt;}
.y9{bottom:185.092667pt;}
.y19{bottom:185.421333pt;}
.y54{bottom:197.410000pt;}
.y8{bottom:197.754000pt;}
.y18{bottom:204.093333pt;}
.y7{bottom:210.415333pt;}
.y37{bottom:211.453333pt;}
.y53{bottom:216.082000pt;}
.y17{bottom:222.765333pt;}
.y6{bottom:223.076667pt;}
.y36{bottom:230.125333pt;}
.y52{bottom:234.754000pt;}
.y5{bottom:235.738000pt;}
.y4{bottom:248.399333pt;}
.y35{bottom:248.797333pt;}
.y51{bottom:253.426000pt;}
.y3{bottom:261.060667pt;}
.y34{bottom:267.418000pt;}
.y50{bottom:272.098000pt;}
.y2{bottom:286.394000pt;}
.y4f{bottom:290.770000pt;}
.y1{bottom:299.055333pt;}
.y33{bottom:301.954000pt;}
.y32{bottom:320.626000pt;}
.y4e{bottom:328.102000pt;}
.y31{bottom:339.298000pt;}
.y16{bottom:342.072933pt;}
.y4d{bottom:346.774000pt;}
.y30{bottom:357.970000pt;}
.y14{bottom:363.408933pt;}
.y4c{bottom:365.446000pt;}
.y15{bottom:371.400933pt;}
.y2f{bottom:376.642000pt;}
.y4b{bottom:384.118000pt;}
.y13{bottom:392.736933pt;}
.y2e{bottom:395.314000pt;}
.y12{bottom:414.072933pt;}
.y4a{bottom:421.450000pt;}
.y2d{bottom:429.850000pt;}
.y10{bottom:437.332400pt;}
.y49{bottom:440.122000pt;}
.y2c{bottom:448.522000pt;}
.y48{bottom:458.794000pt;}
.y2b{bottom:467.194000pt;}
.y47{bottom:477.466000pt;}
.y46{bottom:496.138000pt;}
.y2a{bottom:501.730000pt;}
.y45{bottom:514.810000pt;}
.y29{bottom:520.402000pt;}
.y28{bottom:539.074000pt;}
.y44{bottom:552.142000pt;}
.y27{bottom:557.746000pt;}
.y43{bottom:570.814000pt;}
.y26{bottom:576.418000pt;}
.y42{bottom:589.486000pt;}
.y41{bottom:608.158000pt;}
.y25{bottom:610.954000pt;}
.y40{bottom:626.830000pt;}
.y24{bottom:629.626000pt;}
.y5c{bottom:645.490000pt;}
.y23{bottom:648.298000pt;}
.y3f{bottom:664.162000pt;}
.y22{bottom:682.834000pt;}
.y21{bottom:701.506000pt;}
.y11{bottom:767.499867pt;}
.y20{bottom:809.958000pt;}
.hd{height:21.992188pt;}
.h5{height:28.746667pt;}
.h4{height:29.312000pt;}
.h3{height:32.853333pt;}
.h9{height:36.960000pt;}
.h2{height:39.082667pt;}
.hc{height:40.466781pt;}
.ha{height:41.124421pt;}
.h8{height:43.968000pt;}
.hb{height:44.173333pt;}
.h7{height:45.024000pt;}
.h6{height:66.218667pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x13{left:34.901067pt;}
.x10{left:49.133867pt;}
.x12{left:71.811067pt;}
.xe{left:146.618400pt;}
.xd{left:168.610400pt;}
.x6{left:173.008267pt;}
.x2{left:185.050933pt;}
.x5{left:224.037600pt;}
.x16{left:227.649600pt;}
.xb{left:230.085600pt;}
.xa{left:231.994933pt;}
.xc{left:240.101600pt;}
.x1{left:241.370933pt;}
.x9{left:242.373600pt;}
.x4{left:256.773600pt;}
.x7{left:272.805600pt;}
.x8{left:284.346933pt;}
.x3{left:293.061600pt;}
.x11{left:300.473867pt;}
.x14{left:346.519733pt;}
.x15{left:354.343467pt;}
.xf{left:559.370133pt;}
}




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