
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_320b98939b22606fa9ce5169.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.148926;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_928847b8531cacc6dd5c63fb.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5e1f68dfe2655fd9bbf5111c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.213379;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_254eda10e8e40f7aafcbe914.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.213379;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_854339332aa5eb4ac1e1f1c8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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;}
.lsa{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.144000px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.149760px;}
.ls0{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.396000px;}
.ls7{letter-spacing:2.160000px;}
.lsb{letter-spacing:33.960000px;}
.ls4{letter-spacing:54.840000px;}
.ls9{letter-spacing:64.002720px;}
.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;}
}
.ws0{word-spacing:-72.000000px;}
.ws5{word-spacing:-59.760000px;}
.ws2{word-spacing:-36.000000px;}
.ws3{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.ws1{word-spacing:0.000000px;}
._1{margin-left:-8.289600px;}
._3{margin-left:-6.853680px;}
._24{margin-left:-5.807760px;}
._5{margin-left:-4.536000px;}
._0{margin-left:-2.645280px;}
._4{margin-left:-1.442880px;}
._2{width:1.322640px;}
._e{width:2.618640px;}
._d{width:4.122720px;}
._12{width:5.665680px;}
._c{width:7.560000px;}
._15{width:9.240240px;}
._11{width:10.397280px;}
._f{width:11.486880px;}
._8{width:12.566400px;}
._1f{width:13.799760px;}
._7{width:14.834880px;}
._6{width:15.912000px;}
._16{width:16.992000px;}
._b{width:19.008000px;}
._13{width:20.232000px;}
._1e{width:21.240000px;}
._10{width:23.616000px;}
._17{width:25.007760px;}
._a{width:26.904000px;}
._14{width:28.536000px;}
._9{width:30.168000px;}
._18{width:46.094400px;}
._20{width:49.824000px;}
._1d{width:87.912000px;}
._21{width:107.928000px;}
._22{width:109.152000px;}
._1a{width:117.360000px;}
._23{width:135.581760px;}
._19{width:137.592000px;}
._1b{width:174.888000px;}
._1c{width:192.024000px;}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:5.400000px;}
.y3{bottom:7.200000px;}
.y43{bottom:14.220000px;}
.y46{bottom:14.400000px;}
.y47{bottom:29.880000px;}
.y54{bottom:45.354000px;}
.y49{bottom:45.360000px;}
.y45{bottom:45.390000px;}
.y53{bottom:116.136000px;}
.y3f{bottom:120.816000px;}
.y70{bottom:135.216000px;}
.y22{bottom:140.256000px;}
.y88{bottom:156.990000px;}
.y3e{bottom:165.990000px;}
.y21{bottom:171.390000px;}
.y6f{bottom:172.290000px;}
.y78{bottom:174.450000px;}
.y87{bottom:188.130000px;}
.y52{bottom:197.490000px;}
.y20{bottom:202.350000px;}
.y3d{bottom:214.050000px;}
.y86{bottom:219.090000px;}
.y6e{bottom:222.510000px;}
.y1f{bottom:233.490000px;}
.y51{bottom:242.670000px;}
.y3c{bottom:245.010000px;}
.y85{bottom:250.230000px;}
.y6d{bottom:253.470000px;}
.y3b{bottom:276.150000px;}
.y1e{bottom:278.490000px;}
.y84{bottom:281.190000px;}
.y6c{bottom:284.610000px;}
.y50{bottom:290.550000px;}
.y3a{bottom:307.110000px;}
.y83{bottom:312.330000px;}
.y6b{bottom:315.570000px;}
.y4f{bottom:321.690000px;}
.y1d{bottom:326.550000px;}
.y39{bottom:338.295000px;}
.y82{bottom:343.335000px;}
.y6a{bottom:346.755000px;}
.y4e{bottom:352.695000px;}
.y1c{bottom:357.555000px;}
.y38{bottom:369.255000px;}
.y81{bottom:374.475000px;}
.y69{bottom:377.715000px;}
.y4d{bottom:383.655000px;}
.y1b{bottom:389.775000px;}
.y37{bottom:400.395000px;}
.y80{bottom:405.435000px;}
.y68{bottom:408.855000px;}
.y4c{bottom:414.795000px;}
.y1a{bottom:422.175000px;}
.y36{bottom:431.175000px;}
.y7f{bottom:436.575000px;}
.y67{bottom:439.815000px;}
.y4b{bottom:445.755000px;}
.y19{bottom:454.575000px;}
.y35{bottom:463.755000px;}
.y7e{bottom:467.535000px;}
.y66{bottom:470.955000px;}
.y4a{bottom:476.895000px;}
.y18{bottom:486.795000px;}
.y34{bottom:494.535000px;}
.y48{bottom:498.495000px;}
.y7d{bottom:498.675000px;}
.y65{bottom:501.915000px;}
.y17{bottom:519.375000px;}
.y33{bottom:527.115000px;}
.y7c{bottom:529.635000px;}
.y64{bottom:533.055000px;}
.y16{bottom:550.335000px;}
.y32{bottom:558.075000px;}
.y7b{bottom:560.775000px;}
.y63{bottom:564.015000px;}
.y44{bottom:566.535000px;}
.y15{bottom:581.475000px;}
.y31{bottom:590.475000px;}
.y7a{bottom:591.735000px;}
.y62{bottom:595.155000px;}
.y14{bottom:612.465000px;}
.y30{bottom:621.465000px;}
.y79{bottom:622.905000px;}
.y61{bottom:626.145000px;}
.y42{bottom:634.785000px;}
.y13{bottom:643.605000px;}
.y2f{bottom:653.865000px;}
.y60{bottom:657.285000px;}
.y77{bottom:671.325000px;}
.y12{bottom:674.565000px;}
.y2e{bottom:685.005000px;}
.y5f{bottom:688.245000px;}
.y11{bottom:705.705000px;}
.y2d{bottom:715.965000px;}
.y5e{bottom:719.205000px;}
.y10{bottom:736.665000px;}
.y2c{bottom:747.105000px;}
.y5d{bottom:750.345000px;}
.yf{bottom:767.805000px;}
.y2b{bottom:778.065000px;}
.y5c{bottom:781.305000px;}
.ye{bottom:798.765000px;}
.y2a{bottom:809.205000px;}
.y5b{bottom:812.445000px;}
.yd{bottom:829.905000px;}
.y29{bottom:840.165000px;}
.y5a{bottom:843.405000px;}
.yc{bottom:860.865000px;}
.y28{bottom:871.350000px;}
.y59{bottom:874.590000px;}
.yb{bottom:892.050000px;}
.y58{bottom:896.190000px;}
.y41{bottom:902.310000px;}
.y76{bottom:905.550000px;}
.y27{bottom:916.530000px;}
.ya{bottom:923.010000px;}
.y57{bottom:933.270000px;}
.y40{bottom:933.450000px;}
.y75{bottom:936.690000px;}
.y9{bottom:954.150000px;}
.y74{bottom:958.290000px;}
.y26{bottom:964.410000px;}
.y8{bottom:994.470000px;}
.y73{bottom:995.370000px;}
.y25{bottom:995.550000px;}
.y56{bottom:1001.310000px;}
.y24{bottom:1026.510000px;}
.y72{bottom:1032.450000px;}
.y55{bottom:1038.390000px;}
.y7{bottom:1046.310000px;}
.y23{bottom:1057.650000px;}
.y71{bottom:1069.350000px;}
.y6{bottom:1088.610000px;}
.y1{bottom:1105.350000px;}
.y2{bottom:1125.870000px;}
.y4{bottom:1126.590000px;}
.h5{height:22.536000px;}
.h3{height:24.336000px;}
.ha{height:30.960000px;}
.hd{height:31.140000px;}
.h6{height:50.800781px;}
.hc{height:62.100000px;}
.hb{height:62.136000px;}
.h8{height:65.531250px;}
.h2{height:71.613281px;}
.h4{height:73.722656px;}
.h7{height:84.837305px;}
.h9{height:101.601562px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:4.860000px;}
.w4{width:5.220000px;}
.w7{width:6.300000px;}
.w6{width:12.060000px;}
.w8{width:12.096000px;}
.w3{width:12.240000px;}
.w12{width:115.560000px;}
.wf{width:138.060000px;}
.we{width:142.236000px;}
.wa{width:146.736000px;}
.w10{width:147.636000px;}
.w9{width:158.040000px;}
.wc{width:172.830000px;}
.wb{width:190.470000px;}
.w11{width:205.230000px;}
.wd{width:240.150000px;}
.w13{width:274.935000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:1.080000px;}
.x22{left:10.620000px;}
.x28{left:13.680000px;}
.x1d{left:16.020000px;}
.x20{left:18.045000px;}
.x26{left:28.260000px;}
.x19{left:31.320000px;}
.x1b{left:34.560000px;}
.x25{left:41.805000px;}
.x24{left:45.720000px;}
.x23{left:47.880000px;}
.x1e{left:50.940000px;}
.x21{left:54.045000px;}
.x27{left:85.494000px;}
.x14{left:106.956000px;}
.x11{left:108.035987px;}
.xd{left:112.895987px;}
.x12{left:135.035987px;}
.x13{left:162.029987px;}
.xe{left:215.489987px;}
.x16{left:268.770000px;}
.x30{left:315.975000px;}
.x2e{left:324.974987px;}
.x2d{left:338.474987px;}
.x1a{left:350.895000px;}
.xf{left:353.954987px;}
.x2f{left:364.394987px;}
.x10{left:367.094987px;}
.x2c{left:380.954987px;}
.x2b{left:382.394987px;}
.x29{left:385.814987px;}
.x17{left:419.115000px;}
.x31{left:435.315000px;}
.x2a{left:441.974987px;}
.xc{left:446.474987px;}
.x1c{left:496.905000px;}
.x18{left:613.365000px;}
.x1f{left:638.565000px;}
.x7{left:648.645000px;}
.x8{left:657.690000px;}
.x9{left:662.550000px;}
.xa{left:663.630000px;}
.xb{left:672.810000px;}
.x5{left:731.850000px;}
.x6{left:741.030000px;}
.x2{left:746.610000px;}
.x3{left:755.970000px;}
.x4{left:759.930000px;}
.x1{left:786.569987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.133120pt;}
.ls0{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.352000pt;}
.ls7{letter-spacing:1.920000pt;}
.lsb{letter-spacing:30.186667pt;}
.ls4{letter-spacing:48.746667pt;}
.ls9{letter-spacing:56.891307pt;}
.ws0{word-spacing:-64.000000pt;}
.ws5{word-spacing:-53.120000pt;}
.ws2{word-spacing:-32.000000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws1{word-spacing:0.000000pt;}
._1{margin-left:-7.368533pt;}
._3{margin-left:-6.092160pt;}
._24{margin-left:-5.162453pt;}
._5{margin-left:-4.032000pt;}
._0{margin-left:-2.351360pt;}
._4{margin-left:-1.282560pt;}
._2{width:1.175680pt;}
._e{width:2.327680pt;}
._d{width:3.664640pt;}
._12{width:5.036160pt;}
._c{width:6.720000pt;}
._15{width:8.213547pt;}
._11{width:9.242027pt;}
._f{width:10.210560pt;}
._8{width:11.170133pt;}
._1f{width:12.266453pt;}
._7{width:13.186560pt;}
._6{width:14.144000pt;}
._16{width:15.104000pt;}
._b{width:16.896000pt;}
._13{width:17.984000pt;}
._1e{width:18.880000pt;}
._10{width:20.992000pt;}
._17{width:22.229120pt;}
._a{width:23.914667pt;}
._14{width:25.365333pt;}
._9{width:26.816000pt;}
._18{width:40.972800pt;}
._20{width:44.288000pt;}
._1d{width:78.144000pt;}
._21{width:95.936000pt;}
._22{width:97.024000pt;}
._1a{width:104.320000pt;}
._23{width:120.517120pt;}
._19{width:122.304000pt;}
._1b{width:155.456000pt;}
._1c{width:170.688000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.800000pt;}
.y3{bottom:6.400000pt;}
.y43{bottom:12.640000pt;}
.y46{bottom:12.800000pt;}
.y47{bottom:26.560000pt;}
.y54{bottom:40.314667pt;}
.y49{bottom:40.320000pt;}
.y45{bottom:40.346667pt;}
.y53{bottom:103.232000pt;}
.y3f{bottom:107.392000pt;}
.y70{bottom:120.192000pt;}
.y22{bottom:124.672000pt;}
.y88{bottom:139.546667pt;}
.y3e{bottom:147.546667pt;}
.y21{bottom:152.346667pt;}
.y6f{bottom:153.146667pt;}
.y78{bottom:155.066667pt;}
.y87{bottom:167.226667pt;}
.y52{bottom:175.546667pt;}
.y20{bottom:179.866667pt;}
.y3d{bottom:190.266667pt;}
.y86{bottom:194.746667pt;}
.y6e{bottom:197.786667pt;}
.y1f{bottom:207.546667pt;}
.y51{bottom:215.706667pt;}
.y3c{bottom:217.786667pt;}
.y85{bottom:222.426667pt;}
.y6d{bottom:225.306667pt;}
.y3b{bottom:245.466667pt;}
.y1e{bottom:247.546667pt;}
.y84{bottom:249.946667pt;}
.y6c{bottom:252.986667pt;}
.y50{bottom:258.266667pt;}
.y3a{bottom:272.986667pt;}
.y83{bottom:277.626667pt;}
.y6b{bottom:280.506667pt;}
.y4f{bottom:285.946667pt;}
.y1d{bottom:290.266667pt;}
.y39{bottom:300.706667pt;}
.y82{bottom:305.186667pt;}
.y6a{bottom:308.226667pt;}
.y4e{bottom:313.506667pt;}
.y1c{bottom:317.826667pt;}
.y38{bottom:328.226667pt;}
.y81{bottom:332.866667pt;}
.y69{bottom:335.746667pt;}
.y4d{bottom:341.026667pt;}
.y1b{bottom:346.466667pt;}
.y37{bottom:355.906667pt;}
.y80{bottom:360.386667pt;}
.y68{bottom:363.426667pt;}
.y4c{bottom:368.706667pt;}
.y1a{bottom:375.266667pt;}
.y36{bottom:383.266667pt;}
.y7f{bottom:388.066667pt;}
.y67{bottom:390.946667pt;}
.y4b{bottom:396.226667pt;}
.y19{bottom:404.066667pt;}
.y35{bottom:412.226667pt;}
.y7e{bottom:415.586667pt;}
.y66{bottom:418.626667pt;}
.y4a{bottom:423.906667pt;}
.y18{bottom:432.706667pt;}
.y34{bottom:439.586667pt;}
.y48{bottom:443.106667pt;}
.y7d{bottom:443.266667pt;}
.y65{bottom:446.146667pt;}
.y17{bottom:461.666667pt;}
.y33{bottom:468.546667pt;}
.y7c{bottom:470.786667pt;}
.y64{bottom:473.826667pt;}
.y16{bottom:489.186667pt;}
.y32{bottom:496.066667pt;}
.y7b{bottom:498.466667pt;}
.y63{bottom:501.346667pt;}
.y44{bottom:503.586667pt;}
.y15{bottom:516.866667pt;}
.y31{bottom:524.866667pt;}
.y7a{bottom:525.986667pt;}
.y62{bottom:529.026667pt;}
.y14{bottom:544.413333pt;}
.y30{bottom:552.413333pt;}
.y79{bottom:553.693333pt;}
.y61{bottom:556.573333pt;}
.y42{bottom:564.253333pt;}
.y13{bottom:572.093333pt;}
.y2f{bottom:581.213333pt;}
.y60{bottom:584.253333pt;}
.y77{bottom:596.733333pt;}
.y12{bottom:599.613333pt;}
.y2e{bottom:608.893333pt;}
.y5f{bottom:611.773333pt;}
.y11{bottom:627.293333pt;}
.y2d{bottom:636.413333pt;}
.y5e{bottom:639.293333pt;}
.y10{bottom:654.813333pt;}
.y2c{bottom:664.093333pt;}
.y5d{bottom:666.973333pt;}
.yf{bottom:682.493333pt;}
.y2b{bottom:691.613333pt;}
.y5c{bottom:694.493333pt;}
.ye{bottom:710.013333pt;}
.y2a{bottom:719.293333pt;}
.y5b{bottom:722.173333pt;}
.yd{bottom:737.693333pt;}
.y29{bottom:746.813333pt;}
.y5a{bottom:749.693333pt;}
.yc{bottom:765.213333pt;}
.y28{bottom:774.533333pt;}
.y59{bottom:777.413333pt;}
.yb{bottom:792.933333pt;}
.y58{bottom:796.613333pt;}
.y41{bottom:802.053333pt;}
.y76{bottom:804.933333pt;}
.y27{bottom:814.693333pt;}
.ya{bottom:820.453333pt;}
.y57{bottom:829.573333pt;}
.y40{bottom:829.733333pt;}
.y75{bottom:832.613333pt;}
.y9{bottom:848.133333pt;}
.y74{bottom:851.813333pt;}
.y26{bottom:857.253333pt;}
.y8{bottom:883.973333pt;}
.y73{bottom:884.773333pt;}
.y25{bottom:884.933333pt;}
.y56{bottom:890.053333pt;}
.y24{bottom:912.453333pt;}
.y72{bottom:917.733333pt;}
.y55{bottom:923.013333pt;}
.y7{bottom:930.053333pt;}
.y23{bottom:940.133333pt;}
.y71{bottom:950.533333pt;}
.y6{bottom:967.653333pt;}
.y1{bottom:982.533333pt;}
.y2{bottom:1000.773333pt;}
.y4{bottom:1001.413333pt;}
.h5{height:20.032000pt;}
.h3{height:21.632000pt;}
.ha{height:27.520000pt;}
.hd{height:27.680000pt;}
.h6{height:45.156250pt;}
.hc{height:55.200000pt;}
.hb{height:55.232000pt;}
.h8{height:58.250000pt;}
.h2{height:63.656250pt;}
.h4{height:65.531250pt;}
.h7{height:75.410937pt;}
.h9{height:90.312500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:4.320000pt;}
.w4{width:4.640000pt;}
.w7{width:5.600000pt;}
.w6{width:10.720000pt;}
.w8{width:10.752000pt;}
.w3{width:10.880000pt;}
.w12{width:102.720000pt;}
.wf{width:122.720000pt;}
.we{width:126.432000pt;}
.wa{width:130.432000pt;}
.w10{width:131.232000pt;}
.w9{width:140.480000pt;}
.wc{width:153.626667pt;}
.wb{width:169.306667pt;}
.w11{width:182.426667pt;}
.wd{width:213.466667pt;}
.w13{width:244.386667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:0.960000pt;}
.x22{left:9.440000pt;}
.x28{left:12.160000pt;}
.x1d{left:14.240000pt;}
.x20{left:16.040000pt;}
.x26{left:25.120000pt;}
.x19{left:27.840000pt;}
.x1b{left:30.720000pt;}
.x25{left:37.160000pt;}
.x24{left:40.640000pt;}
.x23{left:42.560000pt;}
.x1e{left:45.280000pt;}
.x21{left:48.040000pt;}
.x27{left:75.994667pt;}
.x14{left:95.072000pt;}
.x11{left:96.031988pt;}
.xd{left:100.351988pt;}
.x12{left:120.031988pt;}
.x13{left:144.026655pt;}
.xe{left:191.546655pt;}
.x16{left:238.906667pt;}
.x30{left:280.866667pt;}
.x2e{left:288.866655pt;}
.x2d{left:300.866655pt;}
.x1a{left:311.906667pt;}
.xf{left:314.626655pt;}
.x2f{left:323.906655pt;}
.x10{left:326.306655pt;}
.x2c{left:338.626655pt;}
.x2b{left:339.906655pt;}
.x29{left:342.946655pt;}
.x17{left:372.546667pt;}
.x31{left:386.946667pt;}
.x2a{left:392.866655pt;}
.xc{left:396.866655pt;}
.x1c{left:441.693333pt;}
.x18{left:545.213333pt;}
.x1f{left:567.613333pt;}
.x7{left:576.573333pt;}
.x8{left:584.613333pt;}
.x9{left:588.933333pt;}
.xa{left:589.893333pt;}
.xb{left:598.053333pt;}
.x5{left:650.533333pt;}
.x6{left:658.693333pt;}
.x2{left:663.653333pt;}
.x3{left:671.973333pt;}
.x4{left:675.493333pt;}
.x1{left:699.173322pt;}
}




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