
    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_aeb17f322066fc7c7e33d500.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.922000;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_087392075031090baf96b157.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_144a2821cb7f008d1615644c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3edffc18613db8f363de1100.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921000;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_8fc7dc14c7ab503908fa18df.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_ee4cd3182b51520471b38df2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws35{word-spacing:-18.327288px;}
.ws1d{word-spacing:-3.665458px;}
.ws7{word-spacing:-3.534548px;}
.ws37{word-spacing:-3.141821px;}
.ws5{word-spacing:-3.076366px;}
.wsd{word-spacing:-2.618184px;}
.ws8{word-spacing:-2.160002px;}
.ws4{word-spacing:-2.094547px;}
.ws22{word-spacing:-1.636365px;}
.ws3{word-spacing:-1.374547px;}
.ws23{word-spacing:-1.093843px;}
.ws2c{word-spacing:-0.981819px;}
.ws29{word-spacing:-0.261818px;}
.ws15{word-spacing:0.000000px;}
.ws18{word-spacing:0.130909px;}
.ws21{word-spacing:0.196364px;}
.wse{word-spacing:1.178183px;}
.ws39{word-spacing:1.374547px;}
.ws6{word-spacing:1.440001px;}
.ws38{word-spacing:1.785771px;}
.ws2a{word-spacing:2.356366px;}
.ws2b{word-spacing:2.880002px;}
.ws24{word-spacing:3.010912px;}
.ws34{word-spacing:3.338185px;}
.ws16{word-spacing:3.403639px;}
.ws9{word-spacing:3.469094px;}
.ws1e{word-spacing:3.534548px;}
.ws3a{word-spacing:3.665458px;}
.ws1{word-spacing:3.873474px;}
.ws42{word-spacing:3.927276px;}
.wsf{word-spacing:4.058185px;}
.ws25{word-spacing:4.123640px;}
.ws3b{word-spacing:4.230900px;}
.ws20{word-spacing:4.778186px;}
.ws31{word-spacing:4.909095px;}
.ws3d{word-spacing:4.924735px;}
.ws33{word-spacing:4.974550px;}
.ws1c{word-spacing:5.432732px;}
.ws2{word-spacing:5.498186px;}
.ws41{word-spacing:5.629096px;}
.ws2d{word-spacing:5.694550px;}
.wsa{word-spacing:5.890914px;}
.wsc{word-spacing:6.349096px;}
.ws3e{word-spacing:6.480005px;}
.ws14{word-spacing:6.545460px;}
.ws3f{word-spacing:7.069097px;}
.ws12{word-spacing:7.985461px;}
.ws19{word-spacing:8.116370px;}
.ws2e{word-spacing:8.640007px;}
.ws2f{word-spacing:8.836371px;}
.ws32{word-spacing:10.635036px;}
.ws0{word-spacing:10.661850px;}
.ws3c{word-spacing:10.735454px;}
.ws13{word-spacing:10.930918px;}
.ws1a{word-spacing:11.127282px;}
.ws1b{word-spacing:11.147202px;}
.ws10{word-spacing:11.323646px;}
.ws30{word-spacing:11.454555px;}
.ws11{word-spacing:11.864613px;}
.ws1f{word-spacing:12.043646px;}
.ws40{word-spacing:12.141587px;}
.ws36{word-spacing:12.240010px;}
.wsb{word-spacing:13.418193px;}
.ws28{word-spacing:53.410954px;}
.ws27{word-spacing:163.767409px;}
.ws26{word-spacing:263.638219px;}
.ws17{word-spacing:404.100000px;}
._e{margin-left:-8.247280px;}
._20{margin-left:-7.026227px;}
._5{margin-left:-4.941376px;}
._1{margin-left:-3.595275px;}
._2{margin-left:-2.324084px;}
._8{margin-left:-1.275919px;}
._6{width:1.047274px;}
._3{width:2.193175px;}
._0{width:3.967200px;}
._21{width:17.065452px;}
._4{width:18.065470px;}
._14{width:21.730927px;}
._12{width:25.003657px;}
._d{width:26.149559px;}
._7{width:27.229114px;}
._9{width:28.602768px;}
._16{width:29.717281px;}
._f{width:30.829117px;}
._10{width:31.876390px;}
._22{width:33.185482px;}
._b{width:34.232756px;}
._a{width:36.327303px;}
._23{width:39.927306px;}
._15{width:43.723673px;}
._11{width:45.351770px;}
._c{width:59.465950px;}
._1a{width:72.093960px;}
._1f{width:82.603705px;}
._1e{width:96.414626px;}
._1b{width:136.636031px;}
._1c{width:171.229234px;}
._1d{width:191.847433px;}
._18{width:293.353401px;}
._19{width:303.757507px;}
._13{width:403.320000px;}
._17{width:478.538392px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(77,77,77);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:60.000000px;}
.fs2{font-size:65.454600px;}
.fs4{font-size:78.000000px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y25{bottom:14.010000px;}
.y24{bottom:36.165000px;}
.y1f{bottom:51.375000px;}
.y20{bottom:127.170000px;}
.y26{bottom:132.375000px;}
.y1b{bottom:138.829500px;}
.y21{bottom:202.965000px;}
.y1a{bottom:238.965000px;}
.y19{bottom:259.288500px;}
.y54{bottom:269.394000px;}
.y22{bottom:278.775000px;}
.y35{bottom:284.400000px;}
.y53{bottom:289.717500px;}
.y18{bottom:289.774500px;}
.y34{bottom:304.723500px;}
.y52{bottom:310.041000px;}
.y17{bottom:310.098000px;}
.y33{bottom:325.047000px;}
.y51{bottom:330.364500px;}
.y16{bottom:330.421500px;}
.y32{bottom:345.370500px;}
.y50{bottom:350.689500px;}
.y15{bottom:350.746500px;}
.y23{bottom:354.570000px;}
.y31{bottom:365.695500px;}
.y4f{bottom:371.013000px;}
.y14{bottom:371.070000px;}
.y30{bottom:386.019000px;}
.y4e{bottom:391.336500px;}
.y13{bottom:391.393500px;}
.y2f{bottom:406.342500px;}
.y4d{bottom:411.660000px;}
.y12{bottom:411.717000px;}
.y2e{bottom:426.666000px;}
.y4c{bottom:431.983500px;}
.y11{bottom:446.686500px;}
.y4b{bottom:452.308500px;}
.y2d{bottom:457.152000px;}
.y10{bottom:467.010000px;}
.y4a{bottom:472.632000px;}
.y2c{bottom:477.475500px;}
.y49{bottom:492.955500px;}
.y2b{bottom:497.799000px;}
.yf{bottom:501.979500px;}
.y48{bottom:513.279000px;}
.y2a{bottom:518.124000px;}
.ye{bottom:522.303000px;}
.yd{bottom:542.626500px;}
.y47{bottom:554.344500px;}
.y29{bottom:572.638500px;}
.y28{bottom:592.962000px;}
.y46{bottom:607.750500px;}
.y27{bottom:613.287000px;}
.y45{bottom:628.075500px;}
.yc{bottom:637.696500px;}
.y1e{bottom:642.457500px;}
.y44{bottom:648.399000px;}
.yb{bottom:658.020000px;}
.y43{bottom:668.722500px;}
.ya{bottom:678.343500px;}
.y42{bottom:689.046000px;}
.y9{bottom:698.667000px;}
.y8{bottom:718.992000px;}
.y41{bottom:719.532000px;}
.y7{bottom:739.315500px;}
.y40{bottom:739.855500px;}
.y6{bottom:759.639000px;}
.y3f{bottom:760.179000px;}
.y5{bottom:779.962500px;}
.y3e{bottom:780.504000px;}
.y3d{bottom:835.794000px;}
.y3c{bottom:856.119000px;}
.y4{bottom:867.310500px;}
.y3b{bottom:876.442500px;}
.y3a{bottom:896.766000px;}
.y39{bottom:917.089500px;}
.y3{bottom:918.754500px;}
.y38{bottom:945.637500px;}
.y2{bottom:956.115000px;}
.y37{bottom:973.857000px;}
.y1{bottom:993.474000px;}
.y36{bottom:1002.076500px;}
.y56{bottom:1002.589500px;}
.y55{bottom:1022.914500px;}
.y1d{bottom:1043.238000px;}
.y1c{bottom:1063.561500px;}
.h7{height:46.865494px;}
.h3{height:49.090950px;}
.h8{height:49.096950px;}
.h2{height:59.737577px;}
.h5{height:62.578125px;}
.h6{height:81.351562px;}
.h1{height:88.766100px;}
.h4{height:378.000000px;}
.h0{height:1188.000000px;}
.w1{width:594.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:23.715000px;}
.xa{left:32.865000px;}
.xb{left:41.625000px;}
.x6{left:125.182500px;}
.x15{left:147.813000px;}
.x14{left:149.727000px;}
.x9{left:162.000000px;}
.x7{left:163.767000px;}
.x1{left:165.117000px;}
.x12{left:173.020500px;}
.x5{left:182.454000px;}
.xf{left:188.362500px;}
.x2{left:190.671000px;}
.xe{left:195.006000px;}
.x13{left:196.903500px;}
.xc{left:248.010000px;}
.x11{left:337.119000px;}
.x3{left:359.014500px;}
.x10{left:361.524000px;}
.x4{left:394.033500px;}
.x8{left:454.909500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws35{word-spacing:-16.290923pt;}
.ws1d{word-spacing:-3.258185pt;}
.ws7{word-spacing:-3.141821pt;}
.ws37{word-spacing:-2.792730pt;}
.ws5{word-spacing:-2.734548pt;}
.wsd{word-spacing:-2.327275pt;}
.ws8{word-spacing:-1.920002pt;}
.ws4{word-spacing:-1.861820pt;}
.ws22{word-spacing:-1.454547pt;}
.ws3{word-spacing:-1.221819pt;}
.ws23{word-spacing:-0.972305pt;}
.ws2c{word-spacing:-0.872728pt;}
.ws29{word-spacing:-0.232727pt;}
.ws15{word-spacing:0.000000pt;}
.ws18{word-spacing:0.116364pt;}
.ws21{word-spacing:0.174546pt;}
.wse{word-spacing:1.047274pt;}
.ws39{word-spacing:1.221819pt;}
.ws6{word-spacing:1.280001pt;}
.ws38{word-spacing:1.587352pt;}
.ws2a{word-spacing:2.094547pt;}
.ws2b{word-spacing:2.560002pt;}
.ws24{word-spacing:2.676366pt;}
.ws34{word-spacing:2.967275pt;}
.ws16{word-spacing:3.025457pt;}
.ws9{word-spacing:3.083639pt;}
.ws1e{word-spacing:3.141821pt;}
.ws3a{word-spacing:3.258185pt;}
.ws1{word-spacing:3.443088pt;}
.ws42{word-spacing:3.490912pt;}
.wsf{word-spacing:3.607276pt;}
.ws25{word-spacing:3.665458pt;}
.ws3b{word-spacing:3.760800pt;}
.ws20{word-spacing:4.247276pt;}
.ws31{word-spacing:4.363640pt;}
.ws3d{word-spacing:4.377542pt;}
.ws33{word-spacing:4.421822pt;}
.ws1c{word-spacing:4.829095pt;}
.ws2{word-spacing:4.887277pt;}
.ws41{word-spacing:5.003641pt;}
.ws2d{word-spacing:5.061822pt;}
.wsa{word-spacing:5.236368pt;}
.wsc{word-spacing:5.643641pt;}
.ws3e{word-spacing:5.760005pt;}
.ws14{word-spacing:5.818187pt;}
.ws3f{word-spacing:6.283642pt;}
.ws12{word-spacing:7.098188pt;}
.ws19{word-spacing:7.214551pt;}
.ws2e{word-spacing:7.680006pt;}
.ws2f{word-spacing:7.854552pt;}
.ws32{word-spacing:9.453365pt;}
.ws0{word-spacing:9.477200pt;}
.ws3c{word-spacing:9.542626pt;}
.ws13{word-spacing:9.716372pt;}
.ws1a{word-spacing:9.890917pt;}
.ws1b{word-spacing:9.908624pt;}
.ws10{word-spacing:10.065463pt;}
.ws30{word-spacing:10.181827pt;}
.ws11{word-spacing:10.546323pt;}
.ws1f{word-spacing:10.705463pt;}
.ws40{word-spacing:10.792522pt;}
.ws36{word-spacing:10.880009pt;}
.wsb{word-spacing:11.927283pt;}
.ws28{word-spacing:47.476403pt;}
.ws27{word-spacing:145.571030pt;}
.ws26{word-spacing:234.345083pt;}
.ws17{word-spacing:359.200000pt;}
._e{margin-left:-7.330915pt;}
._20{margin-left:-6.245535pt;}
._5{margin-left:-4.392334pt;}
._1{margin-left:-3.195800pt;}
._2{margin-left:-2.065853pt;}
._8{margin-left:-1.134150pt;}
._6{width:0.930910pt;}
._3{width:1.949489pt;}
._0{width:3.526400pt;}
._21{width:15.169291pt;}
._4{width:16.058195pt;}
._14{width:19.316380pt;}
._12{width:22.225473pt;}
._d{width:23.244052pt;}
._7{width:24.203657pt;}
._9{width:25.424683pt;}
._16{width:26.415361pt;}
._f{width:27.403659pt;}
._10{width:28.334569pt;}
._22{width:29.498206pt;}
._b{width:30.429116pt;}
._a{width:32.290936pt;}
._23{width:35.490939pt;}
._15{width:38.865487pt;}
._11{width:40.312685pt;}
._c{width:52.858622pt;}
._1a{width:64.083520pt;}
._1f{width:73.425516pt;}
._1e{width:85.701890pt;}
._1b{width:121.454250pt;}
._1c{width:152.203763pt;}
._1d{width:170.531051pt;}
._18{width:260.758579pt;}
._19{width:270.006673pt;}
._13{width:358.506667pt;}
._17{width:425.367460pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:58.181867pt;}
.fs4{font-size:69.333333pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:12.453333pt;}
.y24{bottom:32.146667pt;}
.y1f{bottom:45.666667pt;}
.y20{bottom:113.040000pt;}
.y26{bottom:117.666667pt;}
.y1b{bottom:123.404000pt;}
.y21{bottom:180.413333pt;}
.y1a{bottom:212.413333pt;}
.y19{bottom:230.478667pt;}
.y54{bottom:239.461333pt;}
.y22{bottom:247.800000pt;}
.y35{bottom:252.800000pt;}
.y53{bottom:257.526667pt;}
.y18{bottom:257.577333pt;}
.y34{bottom:270.865333pt;}
.y52{bottom:275.592000pt;}
.y17{bottom:275.642667pt;}
.y33{bottom:288.930667pt;}
.y51{bottom:293.657333pt;}
.y16{bottom:293.708000pt;}
.y32{bottom:306.996000pt;}
.y50{bottom:311.724000pt;}
.y15{bottom:311.774667pt;}
.y23{bottom:315.173333pt;}
.y31{bottom:325.062667pt;}
.y4f{bottom:329.789333pt;}
.y14{bottom:329.840000pt;}
.y30{bottom:343.128000pt;}
.y4e{bottom:347.854667pt;}
.y13{bottom:347.905333pt;}
.y2f{bottom:361.193333pt;}
.y4d{bottom:365.920000pt;}
.y12{bottom:365.970667pt;}
.y2e{bottom:379.258667pt;}
.y4c{bottom:383.985333pt;}
.y11{bottom:397.054667pt;}
.y4b{bottom:402.052000pt;}
.y2d{bottom:406.357333pt;}
.y10{bottom:415.120000pt;}
.y4a{bottom:420.117333pt;}
.y2c{bottom:424.422667pt;}
.y49{bottom:438.182667pt;}
.y2b{bottom:442.488000pt;}
.yf{bottom:446.204000pt;}
.y48{bottom:456.248000pt;}
.y2a{bottom:460.554667pt;}
.ye{bottom:464.269333pt;}
.yd{bottom:482.334667pt;}
.y47{bottom:492.750667pt;}
.y29{bottom:509.012000pt;}
.y28{bottom:527.077333pt;}
.y46{bottom:540.222667pt;}
.y27{bottom:545.144000pt;}
.y45{bottom:558.289333pt;}
.yc{bottom:566.841333pt;}
.y1e{bottom:571.073333pt;}
.y44{bottom:576.354667pt;}
.yb{bottom:584.906667pt;}
.y43{bottom:594.420000pt;}
.ya{bottom:602.972000pt;}
.y42{bottom:612.485333pt;}
.y9{bottom:621.037333pt;}
.y8{bottom:639.104000pt;}
.y41{bottom:639.584000pt;}
.y7{bottom:657.169333pt;}
.y40{bottom:657.649333pt;}
.y6{bottom:675.234667pt;}
.y3f{bottom:675.714667pt;}
.y5{bottom:693.300000pt;}
.y3e{bottom:693.781333pt;}
.y3d{bottom:742.928000pt;}
.y3c{bottom:760.994667pt;}
.y4{bottom:770.942667pt;}
.y3b{bottom:779.060000pt;}
.y3a{bottom:797.125333pt;}
.y39{bottom:815.190667pt;}
.y3{bottom:816.670667pt;}
.y38{bottom:840.566667pt;}
.y2{bottom:849.880000pt;}
.y37{bottom:865.650667pt;}
.y1{bottom:883.088000pt;}
.y36{bottom:890.734667pt;}
.y56{bottom:891.190667pt;}
.y55{bottom:909.257333pt;}
.y1d{bottom:927.322667pt;}
.y1c{bottom:945.388000pt;}
.h7{height:41.658217pt;}
.h3{height:43.636400pt;}
.h8{height:43.641733pt;}
.h2{height:53.100068pt;}
.h5{height:55.625000pt;}
.h6{height:72.312500pt;}
.h1{height:78.903200pt;}
.h4{height:336.000000pt;}
.h0{height:1056.000000pt;}
.w1{width:528.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:21.080000pt;}
.xa{left:29.213333pt;}
.xb{left:37.000000pt;}
.x6{left:111.273333pt;}
.x15{left:131.389333pt;}
.x14{left:133.090667pt;}
.x9{left:144.000000pt;}
.x7{left:145.570667pt;}
.x1{left:146.770667pt;}
.x12{left:153.796000pt;}
.x5{left:162.181333pt;}
.xf{left:167.433333pt;}
.x2{left:169.485333pt;}
.xe{left:173.338667pt;}
.x13{left:175.025333pt;}
.xc{left:220.453333pt;}
.x11{left:299.661333pt;}
.x3{left:319.124000pt;}
.x10{left:321.354667pt;}
.x4{left:350.252000pt;}
.x8{left:404.364000pt;}
}




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