
    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_3ea458311d903c0e087c595d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_cd52079475446f0049c5d6db.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_c3da8d90704bf2d6397f00eb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_08c9e906dfe62bca0ab733f8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_5c8b890bc33dea837ffa2162.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_33474c8530fe2ccbb58ff6da.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_3d11b1e94f892a6f497dc14f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_4fa9e54d14ae3a29dc3022a5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_f6a2cc042db15866cce775b8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;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_359d01edf130577d36b3965b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.035156;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;}
.ls11{letter-spacing:-1.296000px;}
.ls1d{letter-spacing:-1.200000px;}
.ls23{letter-spacing:-0.828000px;}
.ls21{letter-spacing:-0.552000px;}
.ls10{letter-spacing:-0.456000px;}
.lsf{letter-spacing:-0.372000px;}
.ls20{letter-spacing:-0.276000px;}
.ls22{letter-spacing:-0.096000px;}
.lse{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.138000px;}
.ls2{letter-spacing:0.552000px;}
.lsd{letter-spacing:0.600000px;}
.ls1c{letter-spacing:0.648000px;}
.ls18{letter-spacing:0.828000px;}
.ls1e{letter-spacing:1.200000px;}
.ls1f{letter-spacing:1.320000px;}
.ls8{letter-spacing:1.740000px;}
.ls7{letter-spacing:1.800000px;}
.ls1b{letter-spacing:3.000000px;}
.ls26{letter-spacing:5.400000px;}
.lsb{letter-spacing:9.000000px;}
.lsc{letter-spacing:9.060000px;}
.ls24{letter-spacing:10.200000px;}
.ls15{letter-spacing:21.000000px;}
.ls16{letter-spacing:21.180000px;}
.ls19{letter-spacing:24.780000px;}
.ls25{letter-spacing:27.000000px;}
.ls1{letter-spacing:29.400000px;}
.ls4{letter-spacing:34.200000px;}
.ls3{letter-spacing:35.340000px;}
.ls5{letter-spacing:35.400000px;}
.ls6{letter-spacing:35.580000px;}
.ls1a{letter-spacing:36.780000px;}
.ls13{letter-spacing:41.340000px;}
.ls14{letter-spacing:41.400000px;}
.ls12{letter-spacing:41.580000px;}
.ls17{letter-spacing:61.800000px;}
.lsa{letter-spacing:64.140000px;}
.ls9{letter-spacing:64.200000px;}
.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;}
}
.ws7{word-spacing:-22.200000px;}
.ws3{word-spacing:-21.828000px;}
.ws2{word-spacing:-21.648000px;}
.ws0{word-spacing:-21.000000px;}
.wsa{word-spacing:-20.904000px;}
.ws5{word-spacing:-20.724000px;}
.ws6{word-spacing:-20.448000px;}
.ws8{word-spacing:-20.172000px;}
.ws4{word-spacing:-19.800000px;}
.ws9{word-spacing:-19.704000px;}
.ws1{word-spacing:0.000000px;}
._12{margin-left:-5.124000px;}
._11{margin-left:-3.354000px;}
._1e{margin-left:-2.346000px;}
._1{margin-left:-1.320000px;}
._0{width:1.650000px;}
._2{width:3.330000px;}
._c{width:4.512000px;}
._19{width:5.520000px;}
._13{width:6.564000px;}
._b{width:8.088000px;}
._a{width:9.132000px;}
._6{width:10.392000px;}
._17{width:11.904000px;}
._18{width:13.398000px;}
._1b{width:14.472000px;}
._1a{width:16.140000px;}
._5{width:17.538000px;}
._e{width:18.624000px;}
._d{width:19.968000px;}
._21{width:22.368000px;}
._1c{width:24.252000px;}
._1d{width:25.398000px;}
._f{width:27.024000px;}
._7{width:29.124000px;}
._27{width:30.570000px;}
._1f{width:31.572000px;}
._20{width:32.640000px;}
._3{width:34.098000px;}
._4{width:35.382000px;}
._10{width:36.474000px;}
._24{width:37.716000px;}
._16{width:39.024000px;}
._14{width:40.296000px;}
._15{width:42.144000px;}
._2a{width:43.986000px;}
._2b{width:47.016000px;}
._35{width:48.120000px;}
._22{width:49.902000px;}
._23{width:51.054000px;}
._9{width:55.968000px;}
._8{width:57.096000px;}
._26{width:72.000000px;}
._25{width:73.134000px;}
._29{width:76.632000px;}
._28{width:78.114000px;}
._30{width:79.914000px;}
._31{width:81.090000px;}
._32{width:90.180000px;}
._2f{width:107.814000px;}
._2e{width:109.182000px;}
._33{width:117.792000px;}
._34{width:119.028000px;}
._2c{width:160.998000px;}
._2d{width:162.198000px;}
.fc3{color:rgb(34,34,34);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,255);}
.fs0{font-size:66.000000px;}
.fs1{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:6.300000px;}
.y4{bottom:31.237500px;}
.y3{bottom:57.337500px;}
.y3d{bottom:102.037500px;}
.y22{bottom:122.737500px;}
.y55{bottom:133.537500px;}
.y3c{bottom:138.337500px;}
.y21{bottom:159.030000px;}
.y54{bottom:174.075000px;}
.y3b{bottom:174.675000px;}
.y20{bottom:195.075000px;}
.y3a{bottom:225.675000px;}
.y53{bottom:228.675000px;}
.y1f{bottom:231.375000px;}
.y39{bottom:261.975000px;}
.y52{bottom:264.975000px;}
.y1e{bottom:267.675000px;}
.y38{bottom:298.275000px;}
.y51{bottom:301.275000px;}
.y1d{bottom:303.675000px;}
.y50{bottom:337.575000px;}
.y1c{bottom:340.005000px;}
.y37{bottom:349.620000px;}
.y4f{bottom:373.620000px;}
.y1b{bottom:376.320000px;}
.y36{bottom:385.620000px;}
.y4e{bottom:409.905000px;}
.y1a{bottom:412.620000px;}
.y35{bottom:421.905000px;}
.y4d{bottom:446.205000px;}
.y19{bottom:448.620000px;}
.y34{bottom:458.205000px;}
.y4c{bottom:482.505000px;}
.y18{bottom:484.920000px;}
.y33{bottom:494.505000px;}
.y17{bottom:521.250000px;}
.y4b{bottom:533.550000px;}
.y32{bottom:545.550000px;}
.y16{bottom:557.550000px;}
.y4a{bottom:569.850000px;}
.y31{bottom:581.850000px;}
.y15{bottom:593.550000px;}
.y49{bottom:606.150000px;}
.y30{bottom:618.150000px;}
.y14{bottom:629.850000px;}
.y48{bottom:657.450000px;}
.y13{bottom:666.150000px;}
.y2f{bottom:669.450000px;}
.y47{bottom:693.495000px;}
.y12{bottom:702.480000px;}
.y2e{bottom:705.480000px;}
.y46{bottom:729.780000px;}
.y11{bottom:738.480000px;}
.y2d{bottom:741.780000px;}
.y45{bottom:766.095000px;}
.y10{bottom:774.795000px;}
.y2c{bottom:793.080000px;}
.yf{bottom:811.080000px;}
.y44{bottom:817.380000px;}
.y2b{bottom:829.380000px;}
.ye{bottom:847.425000px;}
.y43{bottom:853.425000px;}
.y2a{bottom:865.425000px;}
.yd{bottom:883.425000px;}
.y42{bottom:889.725000px;}
.y29{bottom:901.725000px;}
.yc{bottom:919.725000px;}
.y28{bottom:937.425000px;}
.y41{bottom:941.025000px;}
.yb{bottom:955.425000px;}
.y27{bottom:956.025000px;}
.y40{bottom:977.325000px;}
.ya{bottom:992.325000px;}
.y3f{bottom:1013.325000px;}
.y9{bottom:1027.755000px;}
.y26{bottom:1028.355000px;}
.y3e{bottom:1049.670000px;}
.y8{bottom:1064.070000px;}
.y25{bottom:1064.670000px;}
.y7{bottom:1100.370000px;}
.y24{bottom:1100.955000px;}
.y6{bottom:1136.655000px;}
.y23{bottom:1137.255000px;}
.y2{bottom:1185.900000px;}
.y1{bottom:1204.800000px;}
.h5{height:21.900000px;}
.h2{height:46.567383px;}
.ha{height:58.652344px;}
.h4{height:65.645508px;}
.h3{height:66.515625px;}
.h8{height:69.234375px;}
.h7{height:82.400391px;}
.h9{height:82.441406px;}
.h6{height:84.656250px;}
.hb{height:98.296875px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w3{width:60.000000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:17.400000px;}
.x3{left:127.537487px;}
.x1{left:192.374987px;}
.x6{left:206.174987px;}
.xa{left:278.774987px;}
.x7{left:292.874987px;}
.x2{left:302.504987px;}
.x9{left:363.719987px;}
.x4{left:448.650000px;}
.x8{left:463.649987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-1.152000pt;}
.ls1d{letter-spacing:-1.066667pt;}
.ls23{letter-spacing:-0.736000pt;}
.ls21{letter-spacing:-0.490667pt;}
.ls10{letter-spacing:-0.405333pt;}
.lsf{letter-spacing:-0.330667pt;}
.ls20{letter-spacing:-0.245333pt;}
.ls22{letter-spacing:-0.085333pt;}
.lse{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.122667pt;}
.ls2{letter-spacing:0.490667pt;}
.lsd{letter-spacing:0.533333pt;}
.ls1c{letter-spacing:0.576000pt;}
.ls18{letter-spacing:0.736000pt;}
.ls1e{letter-spacing:1.066667pt;}
.ls1f{letter-spacing:1.173333pt;}
.ls8{letter-spacing:1.546667pt;}
.ls7{letter-spacing:1.600000pt;}
.ls1b{letter-spacing:2.666667pt;}
.ls26{letter-spacing:4.800000pt;}
.lsb{letter-spacing:8.000000pt;}
.lsc{letter-spacing:8.053333pt;}
.ls24{letter-spacing:9.066667pt;}
.ls15{letter-spacing:18.666667pt;}
.ls16{letter-spacing:18.826667pt;}
.ls19{letter-spacing:22.026667pt;}
.ls25{letter-spacing:24.000000pt;}
.ls1{letter-spacing:26.133333pt;}
.ls4{letter-spacing:30.400000pt;}
.ls3{letter-spacing:31.413333pt;}
.ls5{letter-spacing:31.466667pt;}
.ls6{letter-spacing:31.626667pt;}
.ls1a{letter-spacing:32.693333pt;}
.ls13{letter-spacing:36.746667pt;}
.ls14{letter-spacing:36.800000pt;}
.ls12{letter-spacing:36.960000pt;}
.ls17{letter-spacing:54.933333pt;}
.lsa{letter-spacing:57.013333pt;}
.ls9{letter-spacing:57.066667pt;}
.ws7{word-spacing:-19.733333pt;}
.ws3{word-spacing:-19.402667pt;}
.ws2{word-spacing:-19.242667pt;}
.ws0{word-spacing:-18.666667pt;}
.wsa{word-spacing:-18.581333pt;}
.ws5{word-spacing:-18.421333pt;}
.ws6{word-spacing:-18.176000pt;}
.ws8{word-spacing:-17.930667pt;}
.ws4{word-spacing:-17.600000pt;}
.ws9{word-spacing:-17.514667pt;}
.ws1{word-spacing:0.000000pt;}
._12{margin-left:-4.554667pt;}
._11{margin-left:-2.981333pt;}
._1e{margin-left:-2.085333pt;}
._1{margin-left:-1.173333pt;}
._0{width:1.466667pt;}
._2{width:2.960000pt;}
._c{width:4.010667pt;}
._19{width:4.906667pt;}
._13{width:5.834667pt;}
._b{width:7.189333pt;}
._a{width:8.117333pt;}
._6{width:9.237333pt;}
._17{width:10.581333pt;}
._18{width:11.909333pt;}
._1b{width:12.864000pt;}
._1a{width:14.346667pt;}
._5{width:15.589333pt;}
._e{width:16.554667pt;}
._d{width:17.749333pt;}
._21{width:19.882667pt;}
._1c{width:21.557333pt;}
._1d{width:22.576000pt;}
._f{width:24.021333pt;}
._7{width:25.888000pt;}
._27{width:27.173333pt;}
._1f{width:28.064000pt;}
._20{width:29.013333pt;}
._3{width:30.309333pt;}
._4{width:31.450667pt;}
._10{width:32.421333pt;}
._24{width:33.525333pt;}
._16{width:34.688000pt;}
._14{width:35.818667pt;}
._15{width:37.461333pt;}
._2a{width:39.098667pt;}
._2b{width:41.792000pt;}
._35{width:42.773333pt;}
._22{width:44.357333pt;}
._23{width:45.381333pt;}
._9{width:49.749333pt;}
._8{width:50.752000pt;}
._26{width:64.000000pt;}
._25{width:65.008000pt;}
._29{width:68.117333pt;}
._28{width:69.434667pt;}
._30{width:71.034667pt;}
._31{width:72.080000pt;}
._32{width:80.160000pt;}
._2f{width:95.834667pt;}
._2e{width:97.050667pt;}
._33{width:104.704000pt;}
._34{width:105.802667pt;}
._2c{width:143.109333pt;}
._2d{width:144.176000pt;}
.fs0{font-size:58.666667pt;}
.fs1{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:5.600000pt;}
.y4{bottom:27.766667pt;}
.y3{bottom:50.966667pt;}
.y3d{bottom:90.700000pt;}
.y22{bottom:109.100000pt;}
.y55{bottom:118.700000pt;}
.y3c{bottom:122.966667pt;}
.y21{bottom:141.360000pt;}
.y54{bottom:154.733333pt;}
.y3b{bottom:155.266667pt;}
.y20{bottom:173.400000pt;}
.y3a{bottom:200.600000pt;}
.y53{bottom:203.266667pt;}
.y1f{bottom:205.666667pt;}
.y39{bottom:232.866667pt;}
.y52{bottom:235.533333pt;}
.y1e{bottom:237.933333pt;}
.y38{bottom:265.133333pt;}
.y51{bottom:267.800000pt;}
.y1d{bottom:269.933333pt;}
.y50{bottom:300.066667pt;}
.y1c{bottom:302.226667pt;}
.y37{bottom:310.773333pt;}
.y4f{bottom:332.106667pt;}
.y1b{bottom:334.506667pt;}
.y36{bottom:342.773333pt;}
.y4e{bottom:364.360000pt;}
.y1a{bottom:366.773333pt;}
.y35{bottom:375.026667pt;}
.y4d{bottom:396.626667pt;}
.y19{bottom:398.773333pt;}
.y34{bottom:407.293333pt;}
.y4c{bottom:428.893333pt;}
.y18{bottom:431.040000pt;}
.y33{bottom:439.560000pt;}
.y17{bottom:463.333333pt;}
.y4b{bottom:474.266667pt;}
.y32{bottom:484.933333pt;}
.y16{bottom:495.600000pt;}
.y4a{bottom:506.533333pt;}
.y31{bottom:517.200000pt;}
.y15{bottom:527.600000pt;}
.y49{bottom:538.800000pt;}
.y30{bottom:549.466667pt;}
.y14{bottom:559.866667pt;}
.y48{bottom:584.400000pt;}
.y13{bottom:592.133333pt;}
.y2f{bottom:595.066667pt;}
.y47{bottom:616.440000pt;}
.y12{bottom:624.426667pt;}
.y2e{bottom:627.093333pt;}
.y46{bottom:648.693333pt;}
.y11{bottom:656.426667pt;}
.y2d{bottom:659.360000pt;}
.y45{bottom:680.973333pt;}
.y10{bottom:688.706667pt;}
.y2c{bottom:704.960000pt;}
.yf{bottom:720.960000pt;}
.y44{bottom:726.560000pt;}
.y2b{bottom:737.226667pt;}
.ye{bottom:753.266667pt;}
.y43{bottom:758.600000pt;}
.y2a{bottom:769.266667pt;}
.yd{bottom:785.266667pt;}
.y42{bottom:790.866667pt;}
.y29{bottom:801.533333pt;}
.yc{bottom:817.533333pt;}
.y28{bottom:833.266667pt;}
.y41{bottom:836.466667pt;}
.yb{bottom:849.266667pt;}
.y27{bottom:849.800000pt;}
.y40{bottom:868.733333pt;}
.ya{bottom:882.066667pt;}
.y3f{bottom:900.733333pt;}
.y9{bottom:913.560000pt;}
.y26{bottom:914.093333pt;}
.y3e{bottom:933.040000pt;}
.y8{bottom:945.840000pt;}
.y25{bottom:946.373333pt;}
.y7{bottom:978.106667pt;}
.y24{bottom:978.626667pt;}
.y6{bottom:1010.360000pt;}
.y23{bottom:1010.893333pt;}
.y2{bottom:1054.133333pt;}
.y1{bottom:1070.933333pt;}
.h5{height:19.466667pt;}
.h2{height:41.393229pt;}
.ha{height:52.135417pt;}
.h4{height:58.351562pt;}
.h3{height:59.125000pt;}
.h8{height:61.541667pt;}
.h7{height:73.244792pt;}
.h9{height:73.281250pt;}
.h6{height:75.250000pt;}
.hb{height:87.375000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w3{width:53.333333pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:15.466667pt;}
.x3{left:113.366655pt;}
.x1{left:170.999988pt;}
.x6{left:183.266655pt;}
.xa{left:247.799988pt;}
.x7{left:260.333322pt;}
.x2{left:268.893322pt;}
.x9{left:323.306655pt;}
.x4{left:398.800000pt;}
.x8{left:412.133322pt;}
}




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