
    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_85696b548ddd62cdfecd4114.woff')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_8756e44da5b9fb9685e19889.woff')format("woff");}.ff2{font-family:ff2;line-height:0.891602;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_61fb328714b6b8147053689c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.861816;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_a120c243ce341bb9fe9622ff.woff')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_63e4874224d8b4e5a06c892e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_092169fd1c7aa0cf01ea2281.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_cb1fe51c942ab83bd5860c76.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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);}
.v2{vertical-align:-24.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.120000px;}
.ls10{letter-spacing:-4.176000px;}
.lsf{letter-spacing:-3.132000px;}
.lsd{letter-spacing:-3.024000px;}
.lsc{letter-spacing:-2.916000px;}
.lsb{letter-spacing:-2.736000px;}
.lse{letter-spacing:-2.700000px;}
.ls1e{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.288000px;}
.ls1d{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.126360px;}
.ls16{letter-spacing:-0.096120px;}
.ls12{letter-spacing:-0.072000px;}
.ls14{letter-spacing:-0.065880px;}
.lsa{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.065880px;}
.ls8{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.131760px;}
.ls0{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.167760px;}
.ls6{letter-spacing:0.192240px;}
.ls18{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.216360px;}
.ls1b{letter-spacing:0.287280px;}
.ls7{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.504000px;}
.ls5{letter-spacing:30.831120px;}
.ls4{letter-spacing:31.824000px;}
.ls3{letter-spacing:36.396360px;}
.ls1{letter-spacing:38.427084px;}
.ls2{letter-spacing:913.916880px;}
.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;}
}
.wsa{word-spacing:-65.880000px;}
.ws23{word-spacing:-47.880000px;}
.ws4{word-spacing:-32.544000px;}
.ws3{word-spacing:-28.368000px;}
.ws0{word-spacing:-24.408000px;}
.ws2{word-spacing:-21.708000px;}
.wsf{word-spacing:-21.627000px;}
.ws1{word-spacing:-21.492000px;}
.ws22{word-spacing:-19.124640px;}
.ws10{word-spacing:-16.488000px;}
.wsb{word-spacing:-16.416000px;}
.wse{word-spacing:-16.344000px;}
.ws6{word-spacing:-16.272000px;}
.wsc{word-spacing:-16.200000px;}
.ws7{word-spacing:-16.128000px;}
.ws24{word-spacing:-16.056000px;}
.wsd{word-spacing:-15.984000px;}
.ws8{word-spacing:-14.888880px;}
.ws5{word-spacing:-10.820880px;}
.ws9{word-spacing:-9.519120px;}
.ws13{word-spacing:-0.720000px;}
.ws21{word-spacing:-0.504000px;}
.ws27{word-spacing:-0.360000px;}
.ws14{word-spacing:-0.288000px;}
.ws1d{word-spacing:-0.263520px;}
.ws15{word-spacing:-0.216000px;}
.ws1a{word-spacing:-0.144000px;}
.ws1c{word-spacing:-0.131760px;}
.ws1e{word-spacing:-0.072000px;}
.ws11{word-spacing:-0.065880px;}
.ws12{word-spacing:0.000000px;}
.ws19{word-spacing:0.072000px;}
.ws25{word-spacing:0.083880px;}
.ws1b{word-spacing:0.126360px;}
.ws20{word-spacing:0.144000px;}
.ws26{word-spacing:0.216000px;}
.ws1f{word-spacing:0.288000px;}
.ws18{word-spacing:2.736000px;}
.ws16{word-spacing:3.024000px;}
.ws17{word-spacing:3.132000px;}
._1{margin-left:-4.248000px;}
._3{margin-left:-3.168000px;}
._0{margin-left:-1.800000px;}
._2{width:1.008000px;}
._4{width:30.831840px;}
._7{width:32.472000px;}
._23{width:33.480000px;}
._25{width:40.968000px;}
._24{width:79.416000px;}
._27{width:92.304000px;}
._26{width:95.256000px;}
._16{width:111.384000px;}
._1a{width:113.328000px;}
._1b{width:134.424000px;}
._15{width:163.584000px;}
._13{width:167.976000px;}
._12{width:169.416000px;}
._1d{width:186.408000px;}
._1c{width:188.064000px;}
._f{width:197.352000px;}
._e{width:198.792000px;}
._14{width:200.664000px;}
._10{width:202.104000px;}
._b{width:220.608000px;}
._a{width:222.048000px;}
._1e{width:224.352000px;}
._c{width:225.360000px;}
._11{width:230.040000px;}
._20{width:243.360000px;}
._21{width:245.736000px;}
._d{width:253.296000px;}
._22{width:266.472000px;}
._19{width:292.176000px;}
._18{width:296.928000px;}
._17{width:305.568000px;}
._8{width:315.936000px;}
._9{width:317.952000px;}
._6{width:324.072000px;}
._1f{width:361.008000px;}
._5{width:845.007120px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(83,129,53);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:42.120000px;}
.fs4{font-size:47.880000px;}
.fs0{font-size:65.880000px;}
.fs3{font-size:72.000000px;}
.fs7{font-size:83.880000px;}
.fs6{font-size:96.120000px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:57.510720px;}
.y3{bottom:57.517650px;}
.y21{bottom:77.670000px;}
.y2{bottom:77.676930px;}
.y45{bottom:122.310000px;}
.y20{bottom:124.280640px;}
.y44{bottom:149.310000px;}
.y1f{bottom:151.290000px;}
.y43{bottom:173.430000px;}
.y1e{bottom:175.410000px;}
.y42{bottom:206.640000px;}
.y1d{bottom:208.620000px;}
.y1c{bottom:232.740000px;}
.y41{bottom:235.260000px;}
.y1b{bottom:256.950000px;}
.y56{bottom:263.070000px;}
.y40{bottom:263.970000px;}
.y1a{bottom:281.160000px;}
.y55{bottom:287.280000px;}
.y3f{bottom:292.590000px;}
.y54{bottom:311.400000px;}
.y19{bottom:316.710000px;}
.y3e{bottom:321.300000px;}
.y53{bottom:335.610000px;}
.y3d{bottom:349.920000px;}
.y3c{bottom:378.630000px;}
.y18{bottom:382.500000px;}
.y17{bottom:406.709100px;}
.y3b{bottom:408.510000px;}
.y16{bottom:430.920000px;}
.y52{bottom:444.870000px;}
.y15{bottom:465.030000px;}
.y3a{bottom:471.510000px;}
.y39{bottom:495.630000px;}
.y14{bottom:499.138830px;}
.y38{bottom:528.840000px;}
.y13{bottom:532.260000px;}
.y37{bottom:557.460000px;}
.y12{bottom:558.810000px;}
.y51{bottom:563.940000px;}
.y36{bottom:586.170000px;}
.y50{bottom:597.060000px;}
.y35{bottom:614.880000px;}
.y4f{bottom:632.610000px;}
.y34{bottom:643.500000px;}
.y33{bottom:672.210000px;}
.y11{bottom:683.730000px;}
.y4e{bottom:689.490000px;}
.y32{bottom:700.830000px;}
.y10{bottom:709.920000px;}
.y4d{bottom:713.700000px;}
.y31{bottom:729.540000px;}
.yf{bottom:730.169010px;}
.y4c{bottom:746.820000px;}
.ye{bottom:757.890000px;}
.y30{bottom:758.160000px;}
.y4b{bottom:775.530000px;}
.yd{bottom:784.170000px;}
.y2f{bottom:786.870000px;}
.y4a{bottom:804.150000px;}
.yc{bottom:810.357120px;}
.y2e{bottom:815.490000px;}
.y49{bottom:832.859850px;}
.yb{bottom:836.640000px;}
.y2d{bottom:844.199850px;}
.y48{bottom:861.479850px;}
.ya{bottom:870.930000px;}
.y2c{bottom:872.910000px;}
.y9{bottom:894.690000px;}
.y47{bottom:895.950000px;}
.y2b{bottom:901.530000px;}
.y2a{bottom:930.240000px;}
.y8{bottom:948.420000px;}
.y29{bottom:958.860000px;}
.y46{bottom:983.070000px;}
.y28{bottom:987.570000px;}
.y7{bottom:1002.249000px;}
.y27{bottom:1016.190000px;}
.y6{bottom:1038.510000px;}
.y26{bottom:1044.900000px;}
.y25{bottom:1073.520000px;}
.y5{bottom:1078.380000px;}
.y24{bottom:1102.230000px;}
.y4{bottom:1122.300000px;}
.y23{bottom:1136.610000px;}
.y1{bottom:1194.030000px;}
.h6{height:30.232617px;}
.h2{height:47.286914px;}
.h9{height:51.679688px;}
.ha{height:51.683288px;}
.h8{height:51.684368px;}
.h5{height:56.850469px;}
.hb{height:58.486992px;}
.hd{height:58.487592px;}
.hc{height:60.206836px;}
.h7{height:68.992383px;}
.h4{height:77.044922px;}
.h3{height:102.726562px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w0{width:893.070000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.380000px;}
.x4{left:113.766480px;}
.x7{left:117.000000px;}
.x3{left:119.160000px;}
.x5{left:127.712520px;}
.x6{left:148.945140px;}
.x2{left:442.335060px;}
.x8{left:786.690000px;}
@media print{
.v2{vertical-align:-21.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.440000pt;}
.ls10{letter-spacing:-3.712000pt;}
.lsf{letter-spacing:-2.784000pt;}
.lsd{letter-spacing:-2.688000pt;}
.lsc{letter-spacing:-2.592000pt;}
.lsb{letter-spacing:-2.432000pt;}
.lse{letter-spacing:-2.400000pt;}
.ls1e{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls1d{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.112320pt;}
.ls16{letter-spacing:-0.085440pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls14{letter-spacing:-0.058560pt;}
.lsa{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.058560pt;}
.ls8{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.117120pt;}
.ls0{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.149120pt;}
.ls6{letter-spacing:0.170880pt;}
.ls18{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.192320pt;}
.ls1b{letter-spacing:0.255360pt;}
.ls7{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.448000pt;}
.ls5{letter-spacing:27.405440pt;}
.ls4{letter-spacing:28.288000pt;}
.ls3{letter-spacing:32.352320pt;}
.ls1{letter-spacing:34.157408pt;}
.ls2{letter-spacing:812.370560pt;}
.wsa{word-spacing:-58.560000pt;}
.ws23{word-spacing:-42.560000pt;}
.ws4{word-spacing:-28.928000pt;}
.ws3{word-spacing:-25.216000pt;}
.ws0{word-spacing:-21.696000pt;}
.ws2{word-spacing:-19.296000pt;}
.wsf{word-spacing:-19.224000pt;}
.ws1{word-spacing:-19.104000pt;}
.ws22{word-spacing:-16.999680pt;}
.ws10{word-spacing:-14.656000pt;}
.wsb{word-spacing:-14.592000pt;}
.wse{word-spacing:-14.528000pt;}
.ws6{word-spacing:-14.464000pt;}
.wsc{word-spacing:-14.400000pt;}
.ws7{word-spacing:-14.336000pt;}
.ws24{word-spacing:-14.272000pt;}
.wsd{word-spacing:-14.208000pt;}
.ws8{word-spacing:-13.234560pt;}
.ws5{word-spacing:-9.618560pt;}
.ws9{word-spacing:-8.461440pt;}
.ws13{word-spacing:-0.640000pt;}
.ws21{word-spacing:-0.448000pt;}
.ws27{word-spacing:-0.320000pt;}
.ws14{word-spacing:-0.256000pt;}
.ws1d{word-spacing:-0.234240pt;}
.ws15{word-spacing:-0.192000pt;}
.ws1a{word-spacing:-0.128000pt;}
.ws1c{word-spacing:-0.117120pt;}
.ws1e{word-spacing:-0.064000pt;}
.ws11{word-spacing:-0.058560pt;}
.ws12{word-spacing:0.000000pt;}
.ws19{word-spacing:0.064000pt;}
.ws25{word-spacing:0.074560pt;}
.ws1b{word-spacing:0.112320pt;}
.ws20{word-spacing:0.128000pt;}
.ws26{word-spacing:0.192000pt;}
.ws1f{word-spacing:0.256000pt;}
.ws18{word-spacing:2.432000pt;}
.ws16{word-spacing:2.688000pt;}
.ws17{word-spacing:2.784000pt;}
._1{margin-left:-3.776000pt;}
._3{margin-left:-2.816000pt;}
._0{margin-left:-1.600000pt;}
._2{width:0.896000pt;}
._4{width:27.406080pt;}
._7{width:28.864000pt;}
._23{width:29.760000pt;}
._25{width:36.416000pt;}
._24{width:70.592000pt;}
._27{width:82.048000pt;}
._26{width:84.672000pt;}
._16{width:99.008000pt;}
._1a{width:100.736000pt;}
._1b{width:119.488000pt;}
._15{width:145.408000pt;}
._13{width:149.312000pt;}
._12{width:150.592000pt;}
._1d{width:165.696000pt;}
._1c{width:167.168000pt;}
._f{width:175.424000pt;}
._e{width:176.704000pt;}
._14{width:178.368000pt;}
._10{width:179.648000pt;}
._b{width:196.096000pt;}
._a{width:197.376000pt;}
._1e{width:199.424000pt;}
._c{width:200.320000pt;}
._11{width:204.480000pt;}
._20{width:216.320000pt;}
._21{width:218.432000pt;}
._d{width:225.152000pt;}
._22{width:236.864000pt;}
._19{width:259.712000pt;}
._18{width:263.936000pt;}
._17{width:271.616000pt;}
._8{width:280.832000pt;}
._9{width:282.624000pt;}
._6{width:288.064000pt;}
._1f{width:320.896000pt;}
._5{width:751.117440pt;}
.fs5{font-size:37.440000pt;}
.fs4{font-size:42.560000pt;}
.fs0{font-size:58.560000pt;}
.fs3{font-size:64.000000pt;}
.fs7{font-size:74.560000pt;}
.fs6{font-size:85.440000pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:51.120640pt;}
.y3{bottom:51.126800pt;}
.y21{bottom:69.040000pt;}
.y2{bottom:69.046160pt;}
.y45{bottom:108.720000pt;}
.y20{bottom:110.471680pt;}
.y44{bottom:132.720000pt;}
.y1f{bottom:134.480000pt;}
.y43{bottom:154.160000pt;}
.y1e{bottom:155.920000pt;}
.y42{bottom:183.680000pt;}
.y1d{bottom:185.440000pt;}
.y1c{bottom:206.880000pt;}
.y41{bottom:209.120000pt;}
.y1b{bottom:228.400000pt;}
.y56{bottom:233.840000pt;}
.y40{bottom:234.640000pt;}
.y1a{bottom:249.920000pt;}
.y55{bottom:255.360000pt;}
.y3f{bottom:260.080000pt;}
.y54{bottom:276.800000pt;}
.y19{bottom:281.520000pt;}
.y3e{bottom:285.600000pt;}
.y53{bottom:298.320000pt;}
.y3d{bottom:311.040000pt;}
.y3c{bottom:336.560000pt;}
.y18{bottom:340.000000pt;}
.y17{bottom:361.519200pt;}
.y3b{bottom:363.120000pt;}
.y16{bottom:383.040000pt;}
.y52{bottom:395.440000pt;}
.y15{bottom:413.360000pt;}
.y3a{bottom:419.120000pt;}
.y39{bottom:440.560000pt;}
.y14{bottom:443.678960pt;}
.y38{bottom:470.080000pt;}
.y13{bottom:473.120000pt;}
.y37{bottom:495.520000pt;}
.y12{bottom:496.720000pt;}
.y51{bottom:501.280000pt;}
.y36{bottom:521.040000pt;}
.y50{bottom:530.720000pt;}
.y35{bottom:546.560000pt;}
.y4f{bottom:562.320000pt;}
.y34{bottom:572.000000pt;}
.y33{bottom:597.520000pt;}
.y11{bottom:607.760000pt;}
.y4e{bottom:612.880000pt;}
.y32{bottom:622.960000pt;}
.y10{bottom:631.040000pt;}
.y4d{bottom:634.400000pt;}
.y31{bottom:648.480000pt;}
.yf{bottom:649.039120pt;}
.y4c{bottom:663.840000pt;}
.ye{bottom:673.680000pt;}
.y30{bottom:673.920000pt;}
.y4b{bottom:689.360000pt;}
.yd{bottom:697.040000pt;}
.y2f{bottom:699.440000pt;}
.y4a{bottom:714.800000pt;}
.yc{bottom:720.317440pt;}
.y2e{bottom:724.880000pt;}
.y49{bottom:740.319867pt;}
.yb{bottom:743.680000pt;}
.y2d{bottom:750.399867pt;}
.y48{bottom:765.759867pt;}
.ya{bottom:774.160000pt;}
.y2c{bottom:775.920000pt;}
.y9{bottom:795.280000pt;}
.y47{bottom:796.400000pt;}
.y2b{bottom:801.360000pt;}
.y2a{bottom:826.880000pt;}
.y8{bottom:843.040000pt;}
.y29{bottom:852.320000pt;}
.y46{bottom:873.840000pt;}
.y28{bottom:877.840000pt;}
.y7{bottom:890.888000pt;}
.y27{bottom:903.280000pt;}
.y6{bottom:923.120000pt;}
.y26{bottom:928.800000pt;}
.y25{bottom:954.240000pt;}
.y5{bottom:958.560000pt;}
.y24{bottom:979.760000pt;}
.y4{bottom:997.600000pt;}
.y23{bottom:1010.320000pt;}
.y1{bottom:1061.360000pt;}
.h6{height:26.873437pt;}
.h2{height:42.032812pt;}
.h9{height:45.937500pt;}
.ha{height:45.940700pt;}
.h8{height:45.941660pt;}
.h5{height:50.533750pt;}
.hb{height:51.988438pt;}
.hd{height:51.988971pt;}
.hc{height:53.517187pt;}
.h7{height:61.326562pt;}
.h4{height:68.484375pt;}
.h3{height:91.312500pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.840000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.560000pt;}
.x4{left:101.125760pt;}
.x7{left:104.000000pt;}
.x3{left:105.920000pt;}
.x5{left:113.522240pt;}
.x6{left:132.395680pt;}
.x2{left:393.186720pt;}
.x8{left:699.280000pt;}
}




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