
    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_19b998f36ef71f323eabdde9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.752441;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_6948b755b3cad51f9d53c765.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6adcae71d8ab99d49266ef34.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.935059;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_359d01edf130577d36b3965b.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_de1076706eaa0c0ceca692c8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e29f9970469e78164851ddc9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_389be3938a1a5f540ec02b1b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2e9b6ce3d8e3587b429f501a.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_37023c59892951cc1d6fd98e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916992;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_f7a2b83109f3bd670e3fd8aa.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_61885342c8f2bd82456d3723.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.976562;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:ffc;src:url('chunks/assets/font_5a13dde9038f267adc856de6.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v1{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.900000px;}
.ls22{letter-spacing:-0.750000px;}
.ls26{letter-spacing:-0.684000px;}
.ls1d{letter-spacing:-0.428400px;}
.ls9{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.341400px;}
.ls6{letter-spacing:-0.180000px;}
.ls1c{letter-spacing:-0.037440px;}
.ls7{letter-spacing:-0.018720px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.028080px;}
.lsf{letter-spacing:0.037440px;}
.ls1f{letter-spacing:0.252720px;}
.ls12{letter-spacing:0.291600px;}
.ls1e{letter-spacing:0.341400px;}
.ls10{letter-spacing:0.355680px;}
.ls0{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.540000px;}
.ls1b{letter-spacing:0.660000px;}
.ls24{letter-spacing:1.260000px;}
.ls19{letter-spacing:3.420000px;}
.ls20{letter-spacing:4.140000px;}
.ls18{letter-spacing:7.740000px;}
.ls17{letter-spacing:8.460000px;}
.ls21{letter-spacing:9.180000px;}
.ls14{letter-spacing:15.660000px;}
.ls13{letter-spacing:16.380000px;}
.ls1{letter-spacing:18.720000px;}
.ls16{letter-spacing:19.980000px;}
.ls15{letter-spacing:20.700000px;}
.ls1a{letter-spacing:24.300000px;}
.lsd{letter-spacing:26.460000px;}
.lse{letter-spacing:27.180000px;}
.ls23{letter-spacing:33.120000px;}
.ls4{letter-spacing:43.020000px;}
.ls2{letter-spacing:48.060000px;}
.lsc{letter-spacing:80.460000px;}
.lsb{letter-spacing:81.180000px;}
.ls25{letter-spacing:83.141280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-84.600000px;}
.wsc{word-spacing:-84.531600px;}
.wsf{word-spacing:-84.492720px;}
.ws9{word-spacing:-84.277440px;}
.ws5{word-spacing:-84.240000px;}
.ws1{word-spacing:-84.221280px;}
.ws8{word-spacing:-84.202560px;}
.wsa{word-spacing:-83.811600px;}
.ws6{word-spacing:-21.420000px;}
.wsd{word-spacing:-21.401400px;}
.wse{word-spacing:-21.312720px;}
.ws0{word-spacing:-21.060000px;}
.ws3{word-spacing:-21.041280px;}
.ws2{word-spacing:-20.718600px;}
.ws4{word-spacing:-20.700000px;}
.ws11{word-spacing:-20.376000px;}
.ws10{word-spacing:-20.310000px;}
.ws7{word-spacing:0.000000px;}
._5{margin-left:-2.247840px;}
._1{margin-left:-1.204800px;}
._0{width:1.915200px;}
._15{width:2.932320px;}
._e{width:4.123440px;}
._f{width:5.181360px;}
._23{width:6.210240px;}
._d{width:7.354320px;}
._14{width:8.655840px;}
._b{width:9.925920px;}
._a{width:11.171520px;}
._1f{width:12.671760px;}
._18{width:14.289600px;}
._c{width:16.197360px;}
._6{width:17.761920px;}
._2{width:18.931200px;}
._17{width:22.888080px;}
._16{width:24.774480px;}
._1a{width:26.072400px;}
._12{width:27.212160px;}
._13{width:28.350240px;}
._20{width:29.399280px;}
._21{width:31.537440px;}
._22{width:33.570480px;}
._1c{width:34.810560px;}
._1b{width:35.855760px;}
._7{width:37.416960px;}
._19{width:39.557280px;}
._1e{width:40.613760px;}
._1d{width:41.876160px;}
._8{width:43.655760px;}
._9{width:44.776560px;}
._4{width:47.494800px;}
._3{width:48.530160px;}
._10{width:58.294080px;}
._11{width:60.355680px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,103,152);}
.fs2{font-size:54.000000px;}
.fs1{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:24.480000px;}
.y5{bottom:60.660000px;}
.y4{bottom:84.600000px;}
.y2f{bottom:151.590000px;}
.y21{bottom:187.770000px;}
.y20{bottom:223.950000px;}
.y1f{bottom:260.130000px;}
.y1e{bottom:296.310000px;}
.y1d{bottom:332.670000px;}
.y1c{bottom:368.895000px;}
.y1b{bottom:405.075000px;}
.y1a{bottom:441.255000px;}
.y30{bottom:477.255000px;}
.y19{bottom:477.615000px;}
.y18{bottom:513.795000px;}
.y17{bottom:549.975000px;}
.y16{bottom:586.155000px;}
.y15{bottom:622.515000px;}
.y14{bottom:658.725000px;}
.y13{bottom:694.545000px;}
.y2e{bottom:694.905000px;}
.y2d{bottom:731.085000px;}
.y12{bottom:738.285000px;}
.y2c{bottom:767.445000px;}
.y11{bottom:774.645000px;}
.y10{bottom:803.265000px;}
.y2b{bottom:803.625000px;}
.y2a{bottom:839.805000px;}
.yf{bottom:847.005000px;}
.ye{bottom:875.625000px;}
.y29{bottom:875.985000px;}
.y28{bottom:912.210000px;}
.yd{bottom:919.410000px;}
.yc{bottom:948.210000px;}
.y27{bottom:948.570000px;}
.yb{bottom:984.390000px;}
.y26{bottom:984.750000px;}
.y25{bottom:1020.930000px;}
.ya{bottom:1028.130000px;}
.y9{bottom:1056.750000px;}
.y24{bottom:1057.110000px;}
.y8{bottom:1093.110000px;}
.y23{bottom:1093.470000px;}
.y7{bottom:1129.290000px;}
.y22{bottom:1129.650000px;}
.y3{bottom:1168.740000px;}
.y2{bottom:1193.760000px;}
.y1{bottom:1225.620000px;}
.h6{height:54.658125px;}
.h2{height:70.884844px;}
.h3{height:82.676953px;}
.h5{height:84.898125px;}
.h4{height:86.255508px;}
.h7{height:86.585445px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:127.656000px;}
.x4{left:141.876000px;}
.x11{left:170.130000px;}
.xf{left:180.750000px;}
.x1{left:183.270000px;}
.x6{left:231.690000px;}
.xa{left:236.370000px;}
.xc{left:239.790000px;}
.xd{left:242.490000px;}
.x5{left:308.055000px;}
.x2{left:315.615000px;}
.x7{left:333.075000px;}
.xe{left:334.335000px;}
.xb{left:342.795000px;}
.x8{left:345.495000px;}
.x9{left:348.195000px;}
.x10{left:409.935000px;}
@media print{
.v1{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.800000pt;}
.ls22{letter-spacing:-0.666667pt;}
.ls26{letter-spacing:-0.608000pt;}
.ls1d{letter-spacing:-0.380800pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.303467pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls1c{letter-spacing:-0.033280pt;}
.ls7{letter-spacing:-0.016640pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.024960pt;}
.lsf{letter-spacing:0.033280pt;}
.ls1f{letter-spacing:0.224640pt;}
.ls12{letter-spacing:0.259200pt;}
.ls1e{letter-spacing:0.303467pt;}
.ls10{letter-spacing:0.316160pt;}
.ls0{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.480000pt;}
.ls1b{letter-spacing:0.586667pt;}
.ls24{letter-spacing:1.120000pt;}
.ls19{letter-spacing:3.040000pt;}
.ls20{letter-spacing:3.680000pt;}
.ls18{letter-spacing:6.880000pt;}
.ls17{letter-spacing:7.520000pt;}
.ls21{letter-spacing:8.160000pt;}
.ls14{letter-spacing:13.920000pt;}
.ls13{letter-spacing:14.560000pt;}
.ls1{letter-spacing:16.640000pt;}
.ls16{letter-spacing:17.760000pt;}
.ls15{letter-spacing:18.400000pt;}
.ls1a{letter-spacing:21.600000pt;}
.lsd{letter-spacing:23.520000pt;}
.lse{letter-spacing:24.160000pt;}
.ls23{letter-spacing:29.440000pt;}
.ls4{letter-spacing:38.240000pt;}
.ls2{letter-spacing:42.720000pt;}
.lsc{letter-spacing:71.520000pt;}
.lsb{letter-spacing:72.160000pt;}
.ls25{letter-spacing:73.903360pt;}
.wsb{word-spacing:-75.200000pt;}
.wsc{word-spacing:-75.139200pt;}
.wsf{word-spacing:-75.104640pt;}
.ws9{word-spacing:-74.913280pt;}
.ws5{word-spacing:-74.880000pt;}
.ws1{word-spacing:-74.863360pt;}
.ws8{word-spacing:-74.846720pt;}
.wsa{word-spacing:-74.499200pt;}
.ws6{word-spacing:-19.040000pt;}
.wsd{word-spacing:-19.023467pt;}
.wse{word-spacing:-18.944640pt;}
.ws0{word-spacing:-18.720000pt;}
.ws3{word-spacing:-18.703360pt;}
.ws2{word-spacing:-18.416533pt;}
.ws4{word-spacing:-18.400000pt;}
.ws11{word-spacing:-18.112000pt;}
.ws10{word-spacing:-18.053333pt;}
.ws7{word-spacing:0.000000pt;}
._5{margin-left:-1.998080pt;}
._1{margin-left:-1.070933pt;}
._0{width:1.702400pt;}
._15{width:2.606507pt;}
._e{width:3.665280pt;}
._f{width:4.605653pt;}
._23{width:5.520213pt;}
._d{width:6.537173pt;}
._14{width:7.694080pt;}
._b{width:8.823040pt;}
._a{width:9.930240pt;}
._1f{width:11.263787pt;}
._18{width:12.701867pt;}
._c{width:14.397653pt;}
._6{width:15.788373pt;}
._2{width:16.827733pt;}
._17{width:20.344960pt;}
._16{width:22.021760pt;}
._1a{width:23.175467pt;}
._12{width:24.188587pt;}
._13{width:25.200213pt;}
._20{width:26.132693pt;}
._21{width:28.033280pt;}
._22{width:29.840427pt;}
._1c{width:30.942720pt;}
._1b{width:31.871787pt;}
._7{width:33.259520pt;}
._19{width:35.162027pt;}
._1e{width:36.101120pt;}
._1d{width:37.223253pt;}
._8{width:38.805120pt;}
._9{width:39.801387pt;}
._4{width:42.217600pt;}
._3{width:43.137920pt;}
._10{width:51.816960pt;}
._11{width:53.649493pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:21.760000pt;}
.y5{bottom:53.920000pt;}
.y4{bottom:75.200000pt;}
.y2f{bottom:134.746667pt;}
.y21{bottom:166.906667pt;}
.y20{bottom:199.066667pt;}
.y1f{bottom:231.226667pt;}
.y1e{bottom:263.386667pt;}
.y1d{bottom:295.706667pt;}
.y1c{bottom:327.906667pt;}
.y1b{bottom:360.066667pt;}
.y1a{bottom:392.226667pt;}
.y30{bottom:424.226667pt;}
.y19{bottom:424.546667pt;}
.y18{bottom:456.706667pt;}
.y17{bottom:488.866667pt;}
.y16{bottom:521.026667pt;}
.y15{bottom:553.346667pt;}
.y14{bottom:585.533333pt;}
.y13{bottom:617.373333pt;}
.y2e{bottom:617.693333pt;}
.y2d{bottom:649.853333pt;}
.y12{bottom:656.253333pt;}
.y2c{bottom:682.173333pt;}
.y11{bottom:688.573333pt;}
.y10{bottom:714.013333pt;}
.y2b{bottom:714.333333pt;}
.y2a{bottom:746.493333pt;}
.yf{bottom:752.893333pt;}
.ye{bottom:778.333333pt;}
.y29{bottom:778.653333pt;}
.y28{bottom:810.853333pt;}
.yd{bottom:817.253333pt;}
.yc{bottom:842.853333pt;}
.y27{bottom:843.173333pt;}
.yb{bottom:875.013333pt;}
.y26{bottom:875.333333pt;}
.y25{bottom:907.493333pt;}
.ya{bottom:913.893333pt;}
.y9{bottom:939.333333pt;}
.y24{bottom:939.653333pt;}
.y8{bottom:971.653333pt;}
.y23{bottom:971.973333pt;}
.y7{bottom:1003.813333pt;}
.y22{bottom:1004.133333pt;}
.y3{bottom:1038.880000pt;}
.y2{bottom:1061.120000pt;}
.y1{bottom:1089.440000pt;}
.h6{height:48.585000pt;}
.h2{height:63.008750pt;}
.h3{height:73.490625pt;}
.h5{height:75.465000pt;}
.h4{height:76.671562pt;}
.h7{height:76.964840pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.472000pt;}
.x4{left:126.112000pt;}
.x11{left:151.226667pt;}
.xf{left:160.666667pt;}
.x1{left:162.906667pt;}
.x6{left:205.946667pt;}
.xa{left:210.106667pt;}
.xc{left:213.146667pt;}
.xd{left:215.546667pt;}
.x5{left:273.826667pt;}
.x2{left:280.546667pt;}
.x7{left:296.066667pt;}
.xe{left:297.186667pt;}
.xb{left:304.706667pt;}
.x8{left:307.106667pt;}
.x9{left:309.506667pt;}
.x10{left:364.386667pt;}
}




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