
    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_0159809b9be3dac1815b8364.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.886000;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_23cedb289d6ed6c5fda42e45.woff2')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_9fee7316555ad5efd1674ae0.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e0858de8b9ef7f18e299305e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.884277;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_3f026ffd4645ec42858e857d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_dd6afb1a5c78749d6c04cb4b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_de3ba8f4b9cf5ea92621dc2f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_9ea18de54c1915b6ee57579f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_c7060512639b8a5d5670715c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.714000;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;}
.m3{transform:matrix(0.000000,-0.250036,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250036,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250036,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.249951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249951,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);}
.m2{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;}
.ls18{letter-spacing:-1.656000px;}
.lsc{letter-spacing:-1.008000px;}
.ls13{letter-spacing:-0.936000px;}
.ls2{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.576000px;}
.ls3{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.ls1{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.256200px;}
.ls9{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.792000px;}
.ls15{letter-spacing:1.152000px;}
.ls10{letter-spacing:4.320000px;}
.ls19{letter-spacing:7.920000px;}
.lsf{letter-spacing:8.640000px;}
.lse{letter-spacing:84.384000px;}
.ls12{letter-spacing:95.184000px;}
.ls14{letter-spacing:138.384000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-108.001498px;}
.wsb{word-spacing:-18.792000px;}
.ws3{word-spacing:-18.720000px;}
.ws8{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.928000px;}
.ws9{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.wse{word-spacing:-17.064000px;}
.wsd{word-spacing:-16.344000px;}
.wsa{word-spacing:-15.226440px;}
.ws1{word-spacing:0.000000px;}
._a{margin-left:-111.616037px;}
._3{margin-left:-110.463887px;}
._9{margin-left:-95.337589px;}
._b{margin-left:-93.324205px;}
._e{margin-left:-90.938341px;}
._c{margin-left:-84.540496px;}
._5{margin-left:-82.089296px;}
._7{margin-left:-79.789315px;}
._4{margin-left:-78.781183px;}
._1{margin-left:-77.195536px;}
._8{margin-left:-75.756788px;}
._2{margin-left:-73.592185px;}
._6{margin-left:-72.441474px;}
._f{margin-left:-68.364948px;}
._d{margin-left:-66.962009px;}
._12{margin-left:-65.797784px;}
._10{margin-left:-64.151810px;}
._11{margin-left:-62.964873px;}
._43{margin-left:-57.170649px;}
._42{margin-left:-54.081324px;}
._44{margin-left:-52.676683px;}
._13{margin-left:-51.516714px;}
._0{margin-left:-49.255882px;}
._1e{margin-left:-4.608000px;}
._1c{margin-left:-2.808000px;}
._17{margin-left:-1.080000px;}
._15{width:1.152000px;}
._1f{width:2.640000px;}
._22{width:4.392000px;}
._20{width:5.544000px;}
._1a{width:6.984000px;}
._1b{width:8.292000px;}
._26{width:9.360000px;}
._1d{width:10.584000px;}
._21{width:11.664000px;}
._14{width:12.888000px;}
._16{width:14.040000px;}
._28{width:15.240000px;}
._23{width:16.320000px;}
._29{width:19.044000px;}
._2e{width:20.124000px;}
._2a{width:21.240000px;}
._2b{width:22.248000px;}
._24{width:23.256000px;}
._25{width:24.408000px;}
._27{width:25.776000px;}
._31{width:27.120000px;}
._2c{width:28.872000px;}
._2d{width:30.096000px;}
._3d{width:31.464000px;}
._2f{width:32.904000px;}
._30{width:33.996000px;}
._3c{width:35.040000px;}
._3a{width:36.768000px;}
._3b{width:38.280000px;}
._32{width:39.528000px;}
._33{width:40.944000px;}
._39{width:42.168000px;}
._34{width:43.704000px;}
._35{width:45.660000px;}
._37{width:59.760000px;}
._38{width:61.140000px;}
._40{width:66.096000px;}
._41{width:67.356000px;}
._3e{width:88.752000px;}
._3f{width:89.868000px;}
._36{width:194.376000px;}
._19{width:584.107680px;}
._18{width:813.843840px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:transparent;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:83.994624px;}
.fs1{font-size:108.001498px;}
.fs0{font-size:144.018835px;}
.y0{bottom:0.000000px;}
.y2{bottom:30.245976px;}
.y1d{bottom:57.600000px;}
.y1c{bottom:77.760000px;}
.y4a{bottom:115.200000px;}
.y3e{bottom:115.560000px;}
.y3d{bottom:146.556000px;}
.y48{bottom:177.330000px;}
.y3c{bottom:177.690000px;}
.y3b{bottom:208.650000px;}
.y3a{bottom:239.790000px;}
.y4d{bottom:249.208992px;}
.y39{bottom:270.750000px;}
.y1a{bottom:274.710000px;}
.y38{bottom:301.710000px;}
.y19{bottom:305.670000px;}
.y49{bottom:332.490000px;}
.y37{bottom:332.850000px;}
.y18{bottom:336.810000px;}
.y36{bottom:363.810000px;}
.y17{bottom:367.770000px;}
.y45{bottom:394.635000px;}
.y35{bottom:394.995000px;}
.y16{bottom:398.955000px;}
.y34{bottom:425.955000px;}
.y15{bottom:429.555000px;}
.y33{bottom:457.095000px;}
.y14{bottom:464.475000px;}
.y44{bottom:487.695000px;}
.y32{bottom:488.055000px;}
.y13{bottom:498.855000px;}
.y31{bottom:518.835000px;}
.y41{bottom:519.195000px;}
.y12{bottom:533.235000px;}
.y43{bottom:549.795000px;}
.y30{bottom:550.155000px;}
.y11{bottom:567.075000px;}
.y47{bottom:580.935000px;}
.y2f{bottom:581.295000px;}
.y10{bottom:601.815000px;}
.y46{bottom:611.895000px;}
.y2e{bottom:612.255000px;}
.yf{bottom:636.225000px;}
.y2d{bottom:643.425000px;}
.ye{bottom:670.605000px;}
.y2c{bottom:674.385000px;}
.yd{bottom:704.805000px;}
.y2b{bottom:705.525000px;}
.y2a{bottom:736.485000px;}
.yc{bottom:739.185000px;}
.y4c{bottom:767.265000px;}
.y29{bottom:767.625000px;}
.yb{bottom:773.205000px;}
.y28{bottom:798.585000px;}
.ya{bottom:807.945000px;}
.y4b{bottom:829.365000px;}
.y27{bottom:829.725000px;}
.y9{bottom:842.145000px;}
.y26{bottom:860.685000px;}
.y8{bottom:876.525000px;}
.y25{bottom:891.870000px;}
.y7{bottom:907.530000px;}
.y24{bottom:922.830000px;}
.y6{bottom:938.490000px;}
.y23{bottom:953.970000px;}
.y5{bottom:969.630000px;}
.y22{bottom:984.930000px;}
.y21{bottom:1016.070000px;}
.y1{bottom:1028.872125px;}
.y20{bottom:1046.670000px;}
.y40{bottom:1047.030000px;}
.y1f{bottom:1078.170000px;}
.y1e{bottom:1108.770000px;}
.y3f{bottom:1109.130000px;}
.y4{bottom:1109.310000px;}
.y3{bottom:1139.940000px;}
.y42{bottom:1140.300000px;}
.y1b{bottom:1196.280000px;}
.h7{height:50.229844px;}
.h6{height:58.651172px;}
.ha{height:59.384199px;}
.h9{height:70.628906px;}
.h5{height:70.664062px;}
.h4{height:72.562500px;}
.h8{height:74.953125px;}
.h3{height:90.937261px;}
.h2{height:121.263859px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.w2{width:892.980000px;}
.w3{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:26.739360px;}
.x4{left:127.656000px;}
.x9{left:138.276000px;}
.x6{left:171.030000px;}
.x7{left:180.750000px;}
.x1{left:190.638333px;}
.x2{left:370.927411px;}
.x3{left:446.505000px;}
.x8{left:748.770000px;}
.x5{left:757.230000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-1.472000pt;}
.lsc{letter-spacing:-0.896000pt;}
.ls13{letter-spacing:-0.832000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.512000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.227733pt;}
.ls9{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.704000pt;}
.ls15{letter-spacing:1.024000pt;}
.ls10{letter-spacing:3.840000pt;}
.ls19{letter-spacing:7.040000pt;}
.lsf{letter-spacing:7.680000pt;}
.lse{letter-spacing:75.008000pt;}
.ls12{letter-spacing:84.608000pt;}
.ls14{letter-spacing:123.008000pt;}
.ws0{word-spacing:-96.001331pt;}
.wsb{word-spacing:-16.704000pt;}
.ws3{word-spacing:-16.640000pt;}
.ws8{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.936000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.wse{word-spacing:-15.168000pt;}
.wsd{word-spacing:-14.528000pt;}
.wsa{word-spacing:-13.534613pt;}
.ws1{word-spacing:0.000000pt;}
._a{margin-left:-99.214256pt;}
._3{margin-left:-98.190122pt;}
._9{margin-left:-84.744523pt;}
._b{margin-left:-82.954849pt;}
._e{margin-left:-80.834081pt;}
._c{margin-left:-75.147108pt;}
._5{margin-left:-72.968263pt;}
._7{margin-left:-70.923836pt;}
._4{margin-left:-70.027718pt;}
._1{margin-left:-68.618254pt;}
._8{margin-left:-67.339367pt;}
._2{margin-left:-65.415275pt;}
._6{margin-left:-64.392421pt;}
._f{margin-left:-60.768843pt;}
._d{margin-left:-59.521785pt;}
._12{margin-left:-58.486919pt;}
._10{margin-left:-57.023831pt;}
._11{margin-left:-55.968776pt;}
._43{margin-left:-50.818355pt;}
._42{margin-left:-48.072288pt;}
._44{margin-left:-46.823718pt;}
._13{margin-left:-45.792635pt;}
._0{margin-left:-43.783006pt;}
._1e{margin-left:-4.096000pt;}
._1c{margin-left:-2.496000pt;}
._17{margin-left:-0.960000pt;}
._15{width:1.024000pt;}
._1f{width:2.346667pt;}
._22{width:3.904000pt;}
._20{width:4.928000pt;}
._1a{width:6.208000pt;}
._1b{width:7.370667pt;}
._26{width:8.320000pt;}
._1d{width:9.408000pt;}
._21{width:10.368000pt;}
._14{width:11.456000pt;}
._16{width:12.480000pt;}
._28{width:13.546667pt;}
._23{width:14.506667pt;}
._29{width:16.928000pt;}
._2e{width:17.888000pt;}
._2a{width:18.880000pt;}
._2b{width:19.776000pt;}
._24{width:20.672000pt;}
._25{width:21.696000pt;}
._27{width:22.912000pt;}
._31{width:24.106667pt;}
._2c{width:25.664000pt;}
._2d{width:26.752000pt;}
._3d{width:27.968000pt;}
._2f{width:29.248000pt;}
._30{width:30.218667pt;}
._3c{width:31.146667pt;}
._3a{width:32.682667pt;}
._3b{width:34.026667pt;}
._32{width:35.136000pt;}
._33{width:36.394667pt;}
._39{width:37.482667pt;}
._34{width:38.848000pt;}
._35{width:40.586667pt;}
._37{width:53.120000pt;}
._38{width:54.346667pt;}
._40{width:58.752000pt;}
._41{width:59.872000pt;}
._3e{width:78.890667pt;}
._3f{width:79.882667pt;}
._36{width:172.778667pt;}
._19{width:519.206827pt;}
._18{width:723.416747pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.661888pt;}
.fs1{font-size:96.001331pt;}
.fs0{font-size:128.016742pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:26.885312pt;}
.y1d{bottom:51.200000pt;}
.y1c{bottom:69.120000pt;}
.y4a{bottom:102.400000pt;}
.y3e{bottom:102.720000pt;}
.y3d{bottom:130.272000pt;}
.y48{bottom:157.626667pt;}
.y3c{bottom:157.946667pt;}
.y3b{bottom:185.466667pt;}
.y3a{bottom:213.146667pt;}
.y4d{bottom:221.519104pt;}
.y39{bottom:240.666667pt;}
.y1a{bottom:244.186667pt;}
.y38{bottom:268.186667pt;}
.y19{bottom:271.706667pt;}
.y49{bottom:295.546667pt;}
.y37{bottom:295.866667pt;}
.y18{bottom:299.386667pt;}
.y36{bottom:323.386667pt;}
.y17{bottom:326.906667pt;}
.y45{bottom:350.786667pt;}
.y35{bottom:351.106667pt;}
.y16{bottom:354.626667pt;}
.y34{bottom:378.626667pt;}
.y15{bottom:381.826667pt;}
.y33{bottom:406.306667pt;}
.y14{bottom:412.866667pt;}
.y44{bottom:433.506667pt;}
.y32{bottom:433.826667pt;}
.y13{bottom:443.426667pt;}
.y31{bottom:461.186667pt;}
.y41{bottom:461.506667pt;}
.y12{bottom:473.986667pt;}
.y43{bottom:488.706667pt;}
.y30{bottom:489.026667pt;}
.y11{bottom:504.066667pt;}
.y47{bottom:516.386667pt;}
.y2f{bottom:516.706667pt;}
.y10{bottom:534.946667pt;}
.y46{bottom:543.906667pt;}
.y2e{bottom:544.226667pt;}
.yf{bottom:565.533333pt;}
.y2d{bottom:571.933333pt;}
.ye{bottom:596.093333pt;}
.y2c{bottom:599.453333pt;}
.yd{bottom:626.493333pt;}
.y2b{bottom:627.133333pt;}
.y2a{bottom:654.653333pt;}
.yc{bottom:657.053333pt;}
.y4c{bottom:682.013333pt;}
.y29{bottom:682.333333pt;}
.yb{bottom:687.293333pt;}
.y28{bottom:709.853333pt;}
.ya{bottom:718.173333pt;}
.y4b{bottom:737.213333pt;}
.y27{bottom:737.533333pt;}
.y9{bottom:748.573333pt;}
.y26{bottom:765.053333pt;}
.y8{bottom:779.133333pt;}
.y25{bottom:792.773333pt;}
.y7{bottom:806.693333pt;}
.y24{bottom:820.293333pt;}
.y6{bottom:834.213333pt;}
.y23{bottom:847.973333pt;}
.y5{bottom:861.893333pt;}
.y22{bottom:875.493333pt;}
.y21{bottom:903.173333pt;}
.y1{bottom:914.553000pt;}
.y20{bottom:930.373333pt;}
.y40{bottom:930.693333pt;}
.y1f{bottom:958.373333pt;}
.y1e{bottom:985.573333pt;}
.y3f{bottom:985.893333pt;}
.y4{bottom:986.053333pt;}
.y3{bottom:1013.280000pt;}
.y42{bottom:1013.600000pt;}
.y1b{bottom:1063.360000pt;}
.h7{height:44.648750pt;}
.h6{height:52.134375pt;}
.ha{height:52.785955pt;}
.h9{height:62.781250pt;}
.h5{height:62.812500pt;}
.h4{height:64.500000pt;}
.h8{height:66.625000pt;}
.h3{height:80.833121pt;}
.h2{height:107.790097pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.w2{width:793.760000pt;}
.w3{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:23.768320pt;}
.x4{left:113.472000pt;}
.x9{left:122.912000pt;}
.x6{left:152.026667pt;}
.x7{left:160.666667pt;}
.x1{left:169.456296pt;}
.x2{left:329.713254pt;}
.x3{left:396.893333pt;}
.x8{left:665.573333pt;}
.x5{left:673.093333pt;}
}




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