
    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_ff74aeb04bf42f66632e0a78.woff')format("woff");}.ff1{font-family:ff1;line-height:1.171875;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_188ec153eba9bdbb6153af38.woff')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_bf7068f9624f328bcd8da3be.woff')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_88f6f1ee9d28163606cfedd1.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f8e81351b4ce15dd3d00ab1d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a15e2acff6f3dad1b5677521.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_168214f342e91eb41049eb2c.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_66f074e9fe8f233a36cdc77f.woff')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.v1{vertical-align:23.760000px;}
.ls5{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.058320px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.432000px;}
.ls8{letter-spacing:0.792000px;}
.ls0{letter-spacing:2.334240px;}
.lsa{letter-spacing:103.104000px;}
.ls9{letter-spacing:139.104000px;}
.ls7{letter-spacing:169.122720px;}
.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;}
}
.ws5{word-spacing:-59.760000px;}
.ws3{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.784000px;}
.ws0{word-spacing:-13.447440px;}
.ws2{word-spacing:-12.060000px;}
.ws4{word-spacing:0.000000px;}
._b{margin-left:-4.320000px;}
._a{margin-left:-2.626560px;}
._1{margin-left:-1.333440px;}
._0{width:1.484640px;}
._3{width:3.144000px;}
._6{width:4.216320px;}
._5{width:5.866560px;}
._4{width:7.165440px;}
._12{width:8.421120px;}
._22{width:9.518400px;}
._11{width:10.584000px;}
._e{width:11.664000px;}
._2{width:13.248000px;}
._8{width:14.256000px;}
._9{width:15.867360px;}
._18{width:16.992000px;}
._15{width:19.117440px;}
._c{width:20.232000px;}
._d{width:21.456000px;}
._10{width:22.536000px;}
._f{width:24.480000px;}
._14{width:25.813440px;}
._1c{width:26.848800px;}
._19{width:28.440000px;}
._1a{width:29.509920px;}
._1f{width:31.032000px;}
._20{width:32.160000px;}
._1b{width:33.528000px;}
._13{width:34.632000px;}
._16{width:35.640000px;}
._17{width:36.966240px;}
._1e{width:38.053440px;}
._1d{width:39.312000px;}
._7{width:41.544000px;}
._23{width:49.536000px;}
._29{width:64.512000px;}
._24{width:65.664000px;}
._25{width:76.680000px;}
._26{width:77.988000px;}
._27{width:79.578720px;}
._28{width:80.788800px;}
._21{width:98.568000px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6c{bottom:7.020000px;}
.y6e{bottom:7.380000px;}
.y70{bottom:7.560000px;}
.y6b{bottom:30.960000px;}
.y73{bottom:31.320000px;}
.y7{bottom:57.600000px;}
.y33{bottom:95.220000px;}
.y5e{bottom:102.960000px;}
.y69{bottom:103.860000px;}
.y56{bottom:112.680000px;}
.y32{bottom:118.980000px;}
.y5d{bottom:126.720000px;}
.y68{bottom:127.620000px;}
.y81{bottom:129.240000px;}
.y55{bottom:136.440000px;}
.y31{bottom:142.740000px;}
.y5c{bottom:150.480000px;}
.y67{bottom:151.560000px;}
.y80{bottom:153.000000px;}
.y54{bottom:160.200000px;}
.y59{bottom:166.140000px;}
.y30{bottom:166.500000px;}
.y5b{bottom:174.420000px;}
.y66{bottom:175.320000px;}
.y7f{bottom:176.790000px;}
.y53{bottom:184.170000px;}
.y58{bottom:190.110000px;}
.y2f{bottom:190.470000px;}
.y5a{bottom:193.890000px;}
.y65{bottom:199.110000px;}
.y7e{bottom:200.730000px;}
.y52{bottom:207.930000px;}
.y57{bottom:213.870000px;}
.y2e{bottom:214.230000px;}
.y64{bottom:222.510000px;}
.y7d{bottom:224.490000px;}
.y51{bottom:231.690000px;}
.y2d{bottom:237.990000px;}
.y63{bottom:246.810000px;}
.y7c{bottom:247.890000px;}
.y50{bottom:255.450000px;}
.y2c{bottom:261.750000px;}
.y62{bottom:270.570000px;}
.y7b{bottom:271.650000px;}
.y4f{bottom:279.390000px;}
.y2b{bottom:285.510000px;}
.y61{bottom:294.330000px;}
.y7a{bottom:295.950000px;}
.y4e{bottom:303.150000px;}
.y2a{bottom:309.450000px;}
.y60{bottom:313.950000px;}
.y79{bottom:319.710000px;}
.y4d{bottom:326.910000px;}
.y29{bottom:333.210000px;}
.y78{bottom:343.470000px;}
.y4c{bottom:350.670000px;}
.y28{bottom:356.970000px;}
.y77{bottom:362.910000px;}
.y4b{bottom:374.430000px;}
.y27{bottom:380.730000px;}
.y4a{bottom:398.370000px;}
.y26{bottom:404.670000px;}
.y49{bottom:422.175000px;}
.y25{bottom:428.475000px;}
.y48{bottom:445.935000px;}
.y24{bottom:452.235000px;}
.y47{bottom:469.695000px;}
.y23{bottom:475.995000px;}
.y46{bottom:493.635000px;}
.y22{bottom:499.935000px;}
.y45{bottom:517.395000px;}
.y21{bottom:523.695000px;}
.y44{bottom:541.155000px;}
.y20{bottom:547.455000px;}
.y43{bottom:564.555000px;}
.y1f{bottom:571.215000px;}
.y42{bottom:588.495000px;}
.y1e{bottom:595.155000px;}
.y41{bottom:612.615000px;}
.y1d{bottom:618.915000px;}
.y40{bottom:636.375000px;}
.y1c{bottom:642.675000px;}
.y3f{bottom:655.995000px;}
.y1b{bottom:666.465000px;}
.y1a{bottom:690.405000px;}
.y19{bottom:714.165000px;}
.y3d{bottom:737.565000px;}
.y18{bottom:737.925000px;}
.y17{bottom:761.325000px;}
.y3e{bottom:761.685000px;}
.y16{bottom:785.085000px;}
.y3c{bottom:785.445000px;}
.y15{bottom:809.385000px;}
.y14{bottom:833.145000px;}
.y13{bottom:856.905000px;}
.y12{bottom:880.665000px;}
.y76{bottom:900.105000px;}
.y11{bottom:904.650000px;}
.y75{bottom:923.910000px;}
.y5f{bottom:928.050000px;}
.y10{bottom:928.410000px;}
.y74{bottom:947.670000px;}
.yf{bottom:951.810000px;}
.y3b{bottom:952.170000px;}
.y72{bottom:964.770000px;}
.ye{bottom:975.570000px;}
.y3a{bottom:975.930000px;}
.yd{bottom:999.510000px;}
.y39{bottom:999.870000px;}
.y71{bottom:1013.190000px;}
.yc{bottom:1023.270000px;}
.y38{bottom:1023.630000px;}
.y6f{bottom:1037.670000px;}
.yb{bottom:1047.030000px;}
.y37{bottom:1047.390000px;}
.y6d{bottom:1062.330000px;}
.ya{bottom:1070.790000px;}
.y36{bottom:1071.150000px;}
.y6a{bottom:1086.810000px;}
.y9{bottom:1094.730000px;}
.y35{bottom:1095.090000px;}
.y8{bottom:1118.490000px;}
.y34{bottom:1118.850000px;}
.y6{bottom:1144.080000px;}
.y5{bottom:1164.780000px;}
.y4{bottom:1183.140000px;}
.y3{bottom:1201.320000px;}
.y2{bottom:1219.680000px;}
.y1{bottom:1238.040000px;}
.ha{height:23.760000px;}
.hb{height:23.940000px;}
.h8{height:47.700000px;}
.h9{height:50.800781px;}
.h7{height:52.066406px;}
.h2{height:61.189805px;}
.h4{height:65.884219px;}
.h6{height:70.664062px;}
.h5{height:72.562500px;}
.hc{height:74.004654px;}
.h3{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:71.136000px;}
.w7{width:92.340000px;}
.w4{width:141.660000px;}
.w5{width:157.710000px;}
.w3{width:255.495000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:7.740000px;}
.x22{left:10.260000px;}
.x16{left:13.320000px;}
.x1c{left:14.940000px;}
.x27{left:19.296000px;}
.x1b{left:27.540000px;}
.x23{left:31.140000px;}
.x20{left:34.380000px;}
.x26{left:38.880000px;}
.x25{left:42.330000px;}
.x21{left:46.830000px;}
.x17{left:56.340000px;}
.x19{left:64.290000px;}
.x1f{left:65.910000px;}
.x24{left:81.030000px;}
.x12{left:84.959987px;}
.xd{left:90.539987px;}
.xf{left:109.475987px;}
.x9{left:114.335987px;}
.xb{left:120.995987px;}
.x7{left:126.395987px;}
.x8{left:136.655987px;}
.x11{left:138.095987px;}
.xc{left:258.869987px;}
.x10{left:283.169987px;}
.xe{left:321.194987px;}
.x15{left:342.075000px;}
.x3{left:350.534987px;}
.x29{left:385.994987px;}
.xa{left:396.254987px;}
.x4{left:433.874987px;}
.x6{left:446.474987px;}
.x2{left:457.094987px;}
.x18{left:484.455000px;}
.x5{left:508.424987px;}
.x1{left:510.404987px;}
.x1a{left:643.065000px;}
.x1d{left:714.930000px;}
.x14{left:754.709987px;}
.x13{left:797.549987px;}
.x28{left:840.209987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.051840pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.384000pt;}
.ls8{letter-spacing:0.704000pt;}
.ls0{letter-spacing:2.074880pt;}
.lsa{letter-spacing:91.648000pt;}
.ls9{letter-spacing:123.648000pt;}
.ls7{letter-spacing:150.331307pt;}
.ws5{word-spacing:-53.120000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws2{word-spacing:-10.720000pt;}
.ws4{word-spacing:0.000000pt;}
._b{margin-left:-3.840000pt;}
._a{margin-left:-2.334720pt;}
._1{margin-left:-1.185280pt;}
._0{width:1.319680pt;}
._3{width:2.794667pt;}
._6{width:3.747840pt;}
._5{width:5.214720pt;}
._4{width:6.369280pt;}
._12{width:7.485440pt;}
._22{width:8.460800pt;}
._11{width:9.408000pt;}
._e{width:10.368000pt;}
._2{width:11.776000pt;}
._8{width:12.672000pt;}
._9{width:14.104320pt;}
._18{width:15.104000pt;}
._15{width:16.993280pt;}
._c{width:17.984000pt;}
._d{width:19.072000pt;}
._10{width:20.032000pt;}
._f{width:21.760000pt;}
._14{width:22.945280pt;}
._1c{width:23.865600pt;}
._19{width:25.280000pt;}
._1a{width:26.231040pt;}
._1f{width:27.584000pt;}
._20{width:28.586667pt;}
._1b{width:29.802667pt;}
._13{width:30.784000pt;}
._16{width:31.680000pt;}
._17{width:32.858880pt;}
._1e{width:33.825280pt;}
._1d{width:34.944000pt;}
._7{width:36.928000pt;}
._23{width:44.032000pt;}
._29{width:57.344000pt;}
._24{width:58.368000pt;}
._25{width:68.160000pt;}
._26{width:69.322667pt;}
._27{width:70.736640pt;}
._28{width:71.812267pt;}
._21{width:87.616000pt;}
.fs4{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:6.240000pt;}
.y6e{bottom:6.560000pt;}
.y70{bottom:6.720000pt;}
.y6b{bottom:27.520000pt;}
.y73{bottom:27.840000pt;}
.y7{bottom:51.200000pt;}
.y33{bottom:84.640000pt;}
.y5e{bottom:91.520000pt;}
.y69{bottom:92.320000pt;}
.y56{bottom:100.160000pt;}
.y32{bottom:105.760000pt;}
.y5d{bottom:112.640000pt;}
.y68{bottom:113.440000pt;}
.y81{bottom:114.880000pt;}
.y55{bottom:121.280000pt;}
.y31{bottom:126.880000pt;}
.y5c{bottom:133.760000pt;}
.y67{bottom:134.720000pt;}
.y80{bottom:136.000000pt;}
.y54{bottom:142.400000pt;}
.y59{bottom:147.680000pt;}
.y30{bottom:148.000000pt;}
.y5b{bottom:155.040000pt;}
.y66{bottom:155.840000pt;}
.y7f{bottom:157.146667pt;}
.y53{bottom:163.706667pt;}
.y58{bottom:168.986667pt;}
.y2f{bottom:169.306667pt;}
.y5a{bottom:172.346667pt;}
.y65{bottom:176.986667pt;}
.y7e{bottom:178.426667pt;}
.y52{bottom:184.826667pt;}
.y57{bottom:190.106667pt;}
.y2e{bottom:190.426667pt;}
.y64{bottom:197.786667pt;}
.y7d{bottom:199.546667pt;}
.y51{bottom:205.946667pt;}
.y2d{bottom:211.546667pt;}
.y63{bottom:219.386667pt;}
.y7c{bottom:220.346667pt;}
.y50{bottom:227.066667pt;}
.y2c{bottom:232.666667pt;}
.y62{bottom:240.506667pt;}
.y7b{bottom:241.466667pt;}
.y4f{bottom:248.346667pt;}
.y2b{bottom:253.786667pt;}
.y61{bottom:261.626667pt;}
.y7a{bottom:263.066667pt;}
.y4e{bottom:269.466667pt;}
.y2a{bottom:275.066667pt;}
.y60{bottom:279.066667pt;}
.y79{bottom:284.186667pt;}
.y4d{bottom:290.586667pt;}
.y29{bottom:296.186667pt;}
.y78{bottom:305.306667pt;}
.y4c{bottom:311.706667pt;}
.y28{bottom:317.306667pt;}
.y77{bottom:322.586667pt;}
.y4b{bottom:332.826667pt;}
.y27{bottom:338.426667pt;}
.y4a{bottom:354.106667pt;}
.y26{bottom:359.706667pt;}
.y49{bottom:375.266667pt;}
.y25{bottom:380.866667pt;}
.y48{bottom:396.386667pt;}
.y24{bottom:401.986667pt;}
.y47{bottom:417.506667pt;}
.y23{bottom:423.106667pt;}
.y46{bottom:438.786667pt;}
.y22{bottom:444.386667pt;}
.y45{bottom:459.906667pt;}
.y21{bottom:465.506667pt;}
.y44{bottom:481.026667pt;}
.y20{bottom:486.626667pt;}
.y43{bottom:501.826667pt;}
.y1f{bottom:507.746667pt;}
.y42{bottom:523.106667pt;}
.y1e{bottom:529.026667pt;}
.y41{bottom:544.546667pt;}
.y1d{bottom:550.146667pt;}
.y40{bottom:565.666667pt;}
.y1c{bottom:571.266667pt;}
.y3f{bottom:583.106667pt;}
.y1b{bottom:592.413333pt;}
.y1a{bottom:613.693333pt;}
.y19{bottom:634.813333pt;}
.y3d{bottom:655.613333pt;}
.y18{bottom:655.933333pt;}
.y17{bottom:676.733333pt;}
.y3e{bottom:677.053333pt;}
.y16{bottom:697.853333pt;}
.y3c{bottom:698.173333pt;}
.y15{bottom:719.453333pt;}
.y14{bottom:740.573333pt;}
.y13{bottom:761.693333pt;}
.y12{bottom:782.813333pt;}
.y76{bottom:800.093333pt;}
.y11{bottom:804.133333pt;}
.y75{bottom:821.253333pt;}
.y5f{bottom:824.933333pt;}
.y10{bottom:825.253333pt;}
.y74{bottom:842.373333pt;}
.yf{bottom:846.053333pt;}
.y3b{bottom:846.373333pt;}
.y72{bottom:857.573333pt;}
.ye{bottom:867.173333pt;}
.y3a{bottom:867.493333pt;}
.yd{bottom:888.453333pt;}
.y39{bottom:888.773333pt;}
.y71{bottom:900.613333pt;}
.yc{bottom:909.573333pt;}
.y38{bottom:909.893333pt;}
.y6f{bottom:922.373333pt;}
.yb{bottom:930.693333pt;}
.y37{bottom:931.013333pt;}
.y6d{bottom:944.293333pt;}
.ya{bottom:951.813333pt;}
.y36{bottom:952.133333pt;}
.y6a{bottom:966.053333pt;}
.y9{bottom:973.093333pt;}
.y35{bottom:973.413333pt;}
.y8{bottom:994.213333pt;}
.y34{bottom:994.533333pt;}
.y6{bottom:1016.960000pt;}
.y5{bottom:1035.360000pt;}
.y4{bottom:1051.680000pt;}
.y3{bottom:1067.840000pt;}
.y2{bottom:1084.160000pt;}
.y1{bottom:1100.480000pt;}
.ha{height:21.120000pt;}
.hb{height:21.280000pt;}
.h8{height:42.400000pt;}
.h9{height:45.156250pt;}
.h7{height:46.281250pt;}
.h2{height:54.390938pt;}
.h4{height:58.563750pt;}
.h6{height:62.812500pt;}
.h5{height:64.500000pt;}
.hc{height:65.781915pt;}
.h3{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:63.232000pt;}
.w7{width:82.080000pt;}
.w4{width:125.920000pt;}
.w5{width:140.186667pt;}
.w3{width:227.106667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.880000pt;}
.x22{left:9.120000pt;}
.x16{left:11.840000pt;}
.x1c{left:13.280000pt;}
.x27{left:17.152000pt;}
.x1b{left:24.480000pt;}
.x23{left:27.680000pt;}
.x20{left:30.560000pt;}
.x26{left:34.560000pt;}
.x25{left:37.626667pt;}
.x21{left:41.626667pt;}
.x17{left:50.080000pt;}
.x19{left:57.146667pt;}
.x1f{left:58.586667pt;}
.x24{left:72.026667pt;}
.x12{left:75.519988pt;}
.xd{left:80.479988pt;}
.xf{left:97.311988pt;}
.x9{left:101.631988pt;}
.xb{left:107.551988pt;}
.x7{left:112.351988pt;}
.x8{left:121.471988pt;}
.x11{left:122.751988pt;}
.xc{left:230.106655pt;}
.x10{left:251.706655pt;}
.xe{left:285.506655pt;}
.x15{left:304.066667pt;}
.x3{left:311.586655pt;}
.x29{left:343.106655pt;}
.xa{left:352.226655pt;}
.x4{left:385.666655pt;}
.x6{left:396.866655pt;}
.x2{left:406.306655pt;}
.x18{left:430.626667pt;}
.x5{left:451.933322pt;}
.x1{left:453.693322pt;}
.x1a{left:571.613333pt;}
.x1d{left:635.493333pt;}
.x14{left:670.853322pt;}
.x13{left:708.933322pt;}
.x28{left:746.853322pt;}
}




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