
    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_3aadfb1d680c3d4ba325683a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.080566;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_5d61107366e5b98f09d17c13.woff')format("woff");}.ff2{font-family:ff2;line-height:1.080566;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_fe3a6c48502b71c408f56c84.woff')format("woff");}.ff3{font-family:ff3;line-height:1.107910;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_484e3d5d2fdd6c557bf1aafd.woff')format("woff");}.ff5{font-family:ff5;line-height:1.107910;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_267ed63f456a8a580635bf68.woff')format("woff");}.ff6{font-family:ff6;line-height:0.937988;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_896d2811cfe1d90f5f2669f9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.923340;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_39dfa628b8cf2c16025660bd.woff')format("woff");}.ff8{font-family:ff8;line-height:0.937988;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_bd44cc66d7512860f9407421.woff')format("woff");}.ff9{font-family:ff9;line-height:0.923340;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b4feb020e884746ba36338c3.woff')format("woff");}.ffb{font-family:ffb;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;}
.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;}
.ls4{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.216000px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.504000px;}
.lsb{letter-spacing:0.648000px;}
.ls8{letter-spacing:0.720000px;}
.ls7{letter-spacing:54.144000px;}
.ls2{letter-spacing:77.309760px;}
.ls1{letter-spacing:111.029760px;}
.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;}
}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-13.140000px;}
.ws2{word-spacing:0.000000px;}
._4{margin-left:-1.512000px;}
._0{width:1.068000px;}
._1{width:2.785440px;}
._1f{width:4.392000px;}
._8{width:5.400000px;}
._7{width:6.552000px;}
._11{width:7.632000px;}
._3{width:9.072000px;}
._a{width:10.080000px;}
._b{width:11.304000px;}
._10{width:12.456000px;}
._21{width:13.608000px;}
._1d{width:14.976000px;}
._13{width:16.704000px;}
._12{width:19.080000px;}
._15{width:20.304000px;}
._25{width:21.564000px;}
._1c{width:22.608000px;}
._14{width:24.336000px;}
._1e{width:25.416000px;}
._9{width:26.424000px;}
._24{width:27.792000px;}
._23{width:29.016000px;}
._19{width:32.184000px;}
._18{width:33.192000px;}
._6{width:34.416000px;}
._27{width:35.448000px;}
._2{width:36.840000px;}
._c{width:40.680000px;}
._d{width:41.688000px;}
._26{width:42.996000px;}
._e{width:44.280000px;}
._f{width:45.288000px;}
._28{width:47.232000px;}
._20{width:51.480000px;}
._1b{width:53.448000px;}
._1a{width:54.576000px;}
._22{width:60.840000px;}
._29{width:66.384000px;}
._2a{width:67.464000px;}
._5{width:73.368000px;}
._16{width:93.888000px;}
._17{width:95.040000px;}
.fc5{color:rgb(91,155,213);}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(112,48,160);}
.fc6{color:rgb(34,34,34);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(48,88,236);}
.fs3{font-size:5.760000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4{bottom:10.260000px;}
.y5{bottom:11.340000px;}
.y28{bottom:17.640000px;}
.y2f{bottom:39.954000px;}
.y2a{bottom:39.960000px;}
.y5d{bottom:39.990000px;}
.y6{bottom:55.440000px;}
.y3{bottom:57.600000px;}
.y30{bottom:98.136000px;}
.y5b{bottom:107.856000px;}
.y2e{bottom:115.596000px;}
.y5a{bottom:165.270000px;}
.y2d{bottom:173.010000px;}
.y59{bottom:222.690000px;}
.y2c{bottom:230.430000px;}
.y83{bottom:253.650000px;}
.y58{bottom:280.110000px;}
.y2b{bottom:287.850000px;}
.y82{bottom:308.550000px;}
.y57{bottom:320.790000px;}
.y81{bottom:329.250000px;}
.y29{bottom:345.315000px;}
.y80{bottom:349.995000px;}
.y56{bottom:359.715000px;}
.y7f{bottom:370.695000px;}
.y55{bottom:383.475000px;}
.y7e{bottom:391.395000px;}
.y27{bottom:402.735000px;}
.y54{bottom:407.235000px;}
.y7d{bottom:412.095000px;}
.y53{bottom:430.995000px;}
.y7c{bottom:432.795000px;}
.y26{bottom:443.595000px;}
.y7b{bottom:453.495000px;}
.y52{bottom:454.935000px;}
.y7a{bottom:474.195000px;}
.y51{bottom:478.695000px;}
.y25{bottom:479.235000px;}
.y79{bottom:494.895000px;}
.y24{bottom:499.935000px;}
.y50{bottom:502.455000px;}
.y78{bottom:515.595000px;}
.y23{bottom:520.635000px;}
.y4f{bottom:526.215000px;}
.y77{bottom:536.295000px;}
.y22{bottom:541.335000px;}
.y4e{bottom:550.155000px;}
.y76{bottom:556.995000px;}
.y21{bottom:562.035000px;}
.y4d{bottom:570.855000px;}
.y75{bottom:577.695000px;}
.y20{bottom:582.735000px;}
.y4c{bottom:591.555000px;}
.y74{bottom:600.015000px;}
.y1f{bottom:603.435000px;}
.y4b{bottom:612.285000px;}
.y73{bottom:620.745000px;}
.y1e{bottom:624.165000px;}
.y4a{bottom:632.985000px;}
.y72{bottom:641.445000px;}
.y1d{bottom:646.485000px;}
.y49{bottom:653.685000px;}
.y71{bottom:662.145000px;}
.y1c{bottom:668.805000px;}
.y48{bottom:674.385000px;}
.y70{bottom:682.845000px;}
.y1b{bottom:691.125000px;}
.y47{bottom:695.085000px;}
.y6f{bottom:703.545000px;}
.y1a{bottom:713.445000px;}
.y46{bottom:715.785000px;}
.y6e{bottom:724.245000px;}
.y19{bottom:735.765000px;}
.y45{bottom:736.485000px;}
.y6d{bottom:744.945000px;}
.y44{bottom:757.185000px;}
.y18{bottom:758.085000px;}
.y6c{bottom:765.645000px;}
.y43{bottom:777.885000px;}
.y17{bottom:780.405000px;}
.y6b{bottom:786.345000px;}
.y42{bottom:798.585000px;}
.y16{bottom:802.725000px;}
.y6a{bottom:807.045000px;}
.y41{bottom:819.105000px;}
.y15{bottom:825.225000px;}
.y69{bottom:827.745000px;}
.y40{bottom:839.805000px;}
.y14{bottom:847.545000px;}
.y68{bottom:848.445000px;}
.y3f{bottom:860.505000px;}
.y67{bottom:869.145000px;}
.y13{bottom:869.865000px;}
.y3e{bottom:881.250000px;}
.y66{bottom:889.890000px;}
.y12{bottom:892.230000px;}
.y3d{bottom:901.950000px;}
.y65{bottom:910.590000px;}
.y11{bottom:914.550000px;}
.y3c{bottom:922.650000px;}
.y64{bottom:931.290000px;}
.y10{bottom:936.870000px;}
.y3b{bottom:943.350000px;}
.y63{bottom:951.990000px;}
.yf{bottom:957.570000px;}
.y3a{bottom:964.050000px;}
.y62{bottom:972.690000px;}
.ye{bottom:978.270000px;}
.y39{bottom:984.750000px;}
.y61{bottom:993.390000px;}
.yd{bottom:998.970000px;}
.y38{bottom:1005.450000px;}
.y60{bottom:1014.090000px;}
.yc{bottom:1019.670000px;}
.y37{bottom:1026.150000px;}
.y5f{bottom:1034.790000px;}
.yb{bottom:1040.370000px;}
.y36{bottom:1046.850000px;}
.y5e{bottom:1052.250000px;}
.ya{bottom:1061.070000px;}
.y35{bottom:1067.550000px;}
.y9{bottom:1085.190000px;}
.y34{bottom:1088.250000px;}
.y33{bottom:1108.950000px;}
.y5c{bottom:1109.670000px;}
.y8{bottom:1115.070000px;}
.y32{bottom:1129.650000px;}
.y7{bottom:1144.800000px;}
.y31{bottom:1150.380000px;}
.y2{bottom:1194.120000px;}
.y1{bottom:1211.940000px;}
.h6{height:5.076563px;}
.h3{height:27.036000px;}
.hb{height:34.380000px;}
.h2{height:46.696289px;}
.ha{height:50.941406px;}
.h9{height:51.996094px;}
.hc{height:56.700000px;}
.hd{height:56.736000px;}
.h8{height:62.261719px;}
.h4{height:63.457031px;}
.h5{height:65.884219px;}
.h7{height:82.808086px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:105.516000px;}
.w8{width:193.035000px;}
.w6{width:226.695000px;}
.w5{width:305.310000px;}
.w3{width:305.355000px;}
.w7{width:489.495000px;}
.w9{width:523.335000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.560000px;}
.x12{left:39.096000px;}
.x16{left:42.876000px;}
.x18{left:84.420000px;}
.x3{left:87.660000px;}
.x8{left:95.795987px;}
.x1{left:98.675987px;}
.x9{left:111.815987px;}
.xe{left:120.095987px;}
.x19{left:127.835987px;}
.x14{left:135.000000px;}
.x15{left:138.275987px;}
.x11{left:148.895987px;}
.xa{left:167.789987px;}
.xb{left:178.229987px;}
.x17{left:281.775000px;}
.x10{left:295.814987px;}
.x4{left:297.795000px;}
.x13{left:315.615000px;}
.xd{left:323.714987px;}
.x2{left:379.514987px;}
.x5{left:393.915000px;}
.xf{left:419.834987px;}
.xc{left:446.474987px;}
.x7{left:500.145000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.448000pt;}
.lsb{letter-spacing:0.576000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls7{letter-spacing:48.128000pt;}
.ls2{letter-spacing:68.719787pt;}
.ls1{letter-spacing:98.693120pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-11.680000pt;}
.ws2{word-spacing:0.000000pt;}
._4{margin-left:-1.344000pt;}
._0{width:0.949333pt;}
._1{width:2.475947pt;}
._1f{width:3.904000pt;}
._8{width:4.800000pt;}
._7{width:5.824000pt;}
._11{width:6.784000pt;}
._3{width:8.064000pt;}
._a{width:8.960000pt;}
._b{width:10.048000pt;}
._10{width:11.072000pt;}
._21{width:12.096000pt;}
._1d{width:13.312000pt;}
._13{width:14.848000pt;}
._12{width:16.960000pt;}
._15{width:18.048000pt;}
._25{width:19.168000pt;}
._1c{width:20.096000pt;}
._14{width:21.632000pt;}
._1e{width:22.592000pt;}
._9{width:23.488000pt;}
._24{width:24.704000pt;}
._23{width:25.792000pt;}
._19{width:28.608000pt;}
._18{width:29.504000pt;}
._6{width:30.592000pt;}
._27{width:31.509333pt;}
._2{width:32.746667pt;}
._c{width:36.160000pt;}
._d{width:37.056000pt;}
._26{width:38.218667pt;}
._e{width:39.360000pt;}
._f{width:40.256000pt;}
._28{width:41.984000pt;}
._20{width:45.760000pt;}
._1b{width:47.509333pt;}
._1a{width:48.512000pt;}
._22{width:54.080000pt;}
._29{width:59.008000pt;}
._2a{width:59.968000pt;}
._5{width:65.216000pt;}
._16{width:83.456000pt;}
._17{width:84.480000pt;}
.fs3{font-size:5.120000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:9.120000pt;}
.y5{bottom:10.080000pt;}
.y28{bottom:15.680000pt;}
.y2f{bottom:35.514667pt;}
.y2a{bottom:35.520000pt;}
.y5d{bottom:35.546667pt;}
.y6{bottom:49.280000pt;}
.y3{bottom:51.200000pt;}
.y30{bottom:87.232000pt;}
.y5b{bottom:95.872000pt;}
.y2e{bottom:102.752000pt;}
.y5a{bottom:146.906667pt;}
.y2d{bottom:153.786667pt;}
.y59{bottom:197.946667pt;}
.y2c{bottom:204.826667pt;}
.y83{bottom:225.466667pt;}
.y58{bottom:248.986667pt;}
.y2b{bottom:255.866667pt;}
.y82{bottom:274.266667pt;}
.y57{bottom:285.146667pt;}
.y81{bottom:292.666667pt;}
.y29{bottom:306.946667pt;}
.y80{bottom:311.106667pt;}
.y56{bottom:319.746667pt;}
.y7f{bottom:329.506667pt;}
.y55{bottom:340.866667pt;}
.y7e{bottom:347.906667pt;}
.y27{bottom:357.986667pt;}
.y54{bottom:361.986667pt;}
.y7d{bottom:366.306667pt;}
.y53{bottom:383.106667pt;}
.y7c{bottom:384.706667pt;}
.y26{bottom:394.306667pt;}
.y7b{bottom:403.106667pt;}
.y52{bottom:404.386667pt;}
.y7a{bottom:421.506667pt;}
.y51{bottom:425.506667pt;}
.y25{bottom:425.986667pt;}
.y79{bottom:439.906667pt;}
.y24{bottom:444.386667pt;}
.y50{bottom:446.626667pt;}
.y78{bottom:458.306667pt;}
.y23{bottom:462.786667pt;}
.y4f{bottom:467.746667pt;}
.y77{bottom:476.706667pt;}
.y22{bottom:481.186667pt;}
.y4e{bottom:489.026667pt;}
.y76{bottom:495.106667pt;}
.y21{bottom:499.586667pt;}
.y4d{bottom:507.426667pt;}
.y75{bottom:513.506667pt;}
.y20{bottom:517.986667pt;}
.y4c{bottom:525.826667pt;}
.y74{bottom:533.346667pt;}
.y1f{bottom:536.386667pt;}
.y4b{bottom:544.253333pt;}
.y73{bottom:551.773333pt;}
.y1e{bottom:554.813333pt;}
.y4a{bottom:562.653333pt;}
.y72{bottom:570.173333pt;}
.y1d{bottom:574.653333pt;}
.y49{bottom:581.053333pt;}
.y71{bottom:588.573333pt;}
.y1c{bottom:594.493333pt;}
.y48{bottom:599.453333pt;}
.y70{bottom:606.973333pt;}
.y1b{bottom:614.333333pt;}
.y47{bottom:617.853333pt;}
.y6f{bottom:625.373333pt;}
.y1a{bottom:634.173333pt;}
.y46{bottom:636.253333pt;}
.y6e{bottom:643.773333pt;}
.y19{bottom:654.013333pt;}
.y45{bottom:654.653333pt;}
.y6d{bottom:662.173333pt;}
.y44{bottom:673.053333pt;}
.y18{bottom:673.853333pt;}
.y6c{bottom:680.573333pt;}
.y43{bottom:691.453333pt;}
.y17{bottom:693.693333pt;}
.y6b{bottom:698.973333pt;}
.y42{bottom:709.853333pt;}
.y16{bottom:713.533333pt;}
.y6a{bottom:717.373333pt;}
.y41{bottom:728.093333pt;}
.y15{bottom:733.533333pt;}
.y69{bottom:735.773333pt;}
.y40{bottom:746.493333pt;}
.y14{bottom:753.373333pt;}
.y68{bottom:754.173333pt;}
.y3f{bottom:764.893333pt;}
.y67{bottom:772.573333pt;}
.y13{bottom:773.213333pt;}
.y3e{bottom:783.333333pt;}
.y66{bottom:791.013333pt;}
.y12{bottom:793.093333pt;}
.y3d{bottom:801.733333pt;}
.y65{bottom:809.413333pt;}
.y11{bottom:812.933333pt;}
.y3c{bottom:820.133333pt;}
.y64{bottom:827.813333pt;}
.y10{bottom:832.773333pt;}
.y3b{bottom:838.533333pt;}
.y63{bottom:846.213333pt;}
.yf{bottom:851.173333pt;}
.y3a{bottom:856.933333pt;}
.y62{bottom:864.613333pt;}
.ye{bottom:869.573333pt;}
.y39{bottom:875.333333pt;}
.y61{bottom:883.013333pt;}
.yd{bottom:887.973333pt;}
.y38{bottom:893.733333pt;}
.y60{bottom:901.413333pt;}
.yc{bottom:906.373333pt;}
.y37{bottom:912.133333pt;}
.y5f{bottom:919.813333pt;}
.yb{bottom:924.773333pt;}
.y36{bottom:930.533333pt;}
.y5e{bottom:935.333333pt;}
.ya{bottom:943.173333pt;}
.y35{bottom:948.933333pt;}
.y9{bottom:964.613333pt;}
.y34{bottom:967.333333pt;}
.y33{bottom:985.733333pt;}
.y5c{bottom:986.373333pt;}
.y8{bottom:991.173333pt;}
.y32{bottom:1004.133333pt;}
.y7{bottom:1017.600000pt;}
.y31{bottom:1022.560000pt;}
.y2{bottom:1061.440000pt;}
.y1{bottom:1077.280000pt;}
.h6{height:4.512500pt;}
.h3{height:24.032000pt;}
.hb{height:30.560000pt;}
.h2{height:41.507812pt;}
.ha{height:45.281250pt;}
.h9{height:46.218750pt;}
.hc{height:50.400000pt;}
.hd{height:50.432000pt;}
.h8{height:55.343750pt;}
.h4{height:56.406250pt;}
.h5{height:58.563750pt;}
.h7{height:73.607188pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:93.792000pt;}
.w8{width:171.586667pt;}
.w6{width:201.506667pt;}
.w5{width:271.386667pt;}
.w3{width:271.426667pt;}
.w7{width:435.106667pt;}
.w9{width:465.186667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.720000pt;}
.x12{left:34.752000pt;}
.x16{left:38.112000pt;}
.x18{left:75.040000pt;}
.x3{left:77.920000pt;}
.x8{left:85.151988pt;}
.x1{left:87.711988pt;}
.x9{left:99.391988pt;}
.xe{left:106.751988pt;}
.x19{left:113.631988pt;}
.x14{left:120.000000pt;}
.x15{left:122.911988pt;}
.x11{left:132.351988pt;}
.xa{left:149.146655pt;}
.xb{left:158.426655pt;}
.x17{left:250.466667pt;}
.x10{left:262.946655pt;}
.x4{left:264.706667pt;}
.x13{left:280.546667pt;}
.xd{left:287.746655pt;}
.x2{left:337.346655pt;}
.x5{left:350.146667pt;}
.xf{left:373.186655pt;}
.xc{left:396.866655pt;}
.x7{left:444.573333pt;}
}




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