
    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_4267e96a3c384bef9ab786a4.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_033a7a579853a0d962ae6422.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936035;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_3ce9021035a6562fa68b47d7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.960449;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_72a67b9634cfeda3ecf2c7e3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.804199;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_7c0999e43148b35f03c80c9b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_43b388e836e58cdedc717322.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_c0aa397ceb72e83b54efcce5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_dba91c37762d4b2bb2e55df6.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8a09e294d05373ba8c69fa8f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7db6c894c3c5ec2b268b4c57.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-1.080000px;}
.lsb{letter-spacing:-0.690000px;}
.lsd{letter-spacing:-0.369600px;}
.lsa{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.350400px;}
.ls11{letter-spacing:-0.341400px;}
.ls2{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.064800px;}
.ls6{letter-spacing:-0.028080px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004080px;}
.ls7{letter-spacing:0.028080px;}
.lse{letter-spacing:0.341400px;}
.ls8{letter-spacing:0.350400px;}
.ls5{letter-spacing:0.360000px;}
.ls0{letter-spacing:9.900000px;}
.lsc{letter-spacing:164.501280px;}
.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;}
}
.ws1{word-spacing:-21.420000px;}
.ws5{word-spacing:-21.410400px;}
.ws3{word-spacing:-21.088080px;}
.ws4{word-spacing:-21.060000px;}
.ws2{word-spacing:-21.031920px;}
.wsd{word-spacing:-20.995200px;}
.ws0{word-spacing:-20.916000px;}
.wse{word-spacing:-20.718600px;}
.wsc{word-spacing:-20.709600px;}
.ws8{word-spacing:-20.700000px;}
.wsb{word-spacing:-20.690400px;}
.ws9{word-spacing:-20.370000px;}
.ws6{word-spacing:-19.980000px;}
.wsa{word-spacing:-0.084240px;}
.ws7{word-spacing:0.000000px;}
._1b{margin-left:-22.783680px;}
._8{margin-left:-2.386800px;}
._1{margin-left:-1.347840px;}
._0{width:1.285680px;}
._10{width:2.842080px;}
._3{width:4.548960px;}
._4{width:5.644080px;}
._5{width:6.907680px;}
._16{width:8.171280px;}
._9{width:10.035600px;}
._1c{width:11.190240px;}
._20{width:12.315360px;}
._11{width:15.078960px;}
._e{width:16.426800px;}
._f{width:17.858880px;}
._a{width:19.627920px;}
._2{width:22.155120px;}
._d{width:23.825760px;}
._1a{width:24.864960px;}
._18{width:27.630720px;}
._19{width:28.647600px;}
._12{width:29.736720px;}
._c{width:35.212320px;}
._17{width:39.508560px;}
._b{width:41.614560px;}
._13{width:42.793920px;}
._1e{width:44.640000px;}
._15{width:49.858080px;}
._14{width:51.302160px;}
._7{width:57.957120px;}
._6{width:59.726160px;}
._1d{width:66.044160px;}
._1f{width:150.300000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:81.360000px;}
.fs0{font-size:84.240000px;}
.y6{bottom:-1.620000px;}
.y0{bottom:0.000000px;}
.y5{bottom:22.140000px;}
.y4{bottom:40.860000px;}
.y3{bottom:67.140000px;}
.y24{bottom:100.800000px;}
.y66{bottom:134.136000px;}
.y4b{bottom:134.856000px;}
.y23{bottom:136.836000px;}
.y30{bottom:137.196000px;}
.y65{bottom:170.310000px;}
.y4a{bottom:171.030000px;}
.y22{bottom:173.370000px;}
.y64{bottom:206.490000px;}
.y49{bottom:207.390000px;}
.y21{bottom:209.550000px;}
.y63{bottom:242.850000px;}
.y48{bottom:243.570000px;}
.y20{bottom:245.730000px;}
.y62{bottom:279.030000px;}
.y47{bottom:279.750000px;}
.y1f{bottom:282.090000px;}
.y61{bottom:315.210000px;}
.y46{bottom:315.930000px;}
.y1e{bottom:318.270000px;}
.y60{bottom:351.390000px;}
.y45{bottom:352.290000px;}
.y1d{bottom:354.450000px;}
.y5f{bottom:387.615000px;}
.y44{bottom:388.515000px;}
.y1c{bottom:390.675000px;}
.y5e{bottom:423.615000px;}
.y43{bottom:424.695000px;}
.y2f{bottom:426.495000px;}
.y1b{bottom:426.855000px;}
.y5d{bottom:459.795000px;}
.y42{bottom:460.875000px;}
.y1a{bottom:463.215000px;}
.y5c{bottom:496.335000px;}
.y41{bottom:497.235000px;}
.y19{bottom:499.395000px;}
.y5b{bottom:532.515000px;}
.y40{bottom:533.055000px;}
.y18{bottom:535.575000px;}
.y5a{bottom:568.875000px;}
.y3f{bottom:569.595000px;}
.y17{bottom:571.755000px;}
.y75{bottom:583.815000px;}
.y59{bottom:605.055000px;}
.y3e{bottom:605.775000px;}
.y16{bottom:608.115000px;}
.y74{bottom:620.175000px;}
.y58{bottom:641.265000px;}
.y3d{bottom:641.985000px;}
.y15{bottom:644.325000px;}
.y73{bottom:656.385000px;}
.y57{bottom:677.445000px;}
.y3c{bottom:678.345000px;}
.y2e{bottom:680.145000px;}
.y14{bottom:680.505000px;}
.y72{bottom:692.565000px;}
.y56{bottom:713.805000px;}
.y3b{bottom:714.525000px;}
.y13{bottom:716.325000px;}
.y2d{bottom:716.685000px;}
.y71{bottom:728.745000px;}
.y55{bottom:749.985000px;}
.y3a{bottom:750.705000px;}
.y12{bottom:753.045000px;}
.y70{bottom:764.745000px;}
.y54{bottom:785.805000px;}
.y39{bottom:786.885000px;}
.y11{bottom:789.225000px;}
.y6f{bottom:801.285000px;}
.y53{bottom:822.345000px;}
.y38{bottom:823.245000px;}
.y10{bottom:825.405000px;}
.y6e{bottom:837.465000px;}
.y52{bottom:858.705000px;}
.y37{bottom:859.425000px;}
.yf{bottom:861.585000px;}
.y6d{bottom:873.645000px;}
.y51{bottom:894.930000px;}
.y36{bottom:895.650000px;}
.y2c{bottom:897.450000px;}
.ye{bottom:897.810000px;}
.y6c{bottom:910.050000px;}
.y50{bottom:931.110000px;}
.y35{bottom:931.830000px;}
.yd{bottom:933.810000px;}
.y2b{bottom:934.170000px;}
.y6b{bottom:946.230000px;}
.y4f{bottom:967.290000px;}
.y34{bottom:968.190000px;}
.yc{bottom:969.990000px;}
.y2a{bottom:970.350000px;}
.y6a{bottom:982.410000px;}
.y4e{bottom:1003.470000px;}
.y33{bottom:1004.370000px;}
.yb{bottom:1006.170000px;}
.y29{bottom:1006.530000px;}
.y69{bottom:1018.590000px;}
.y4d{bottom:1039.830000px;}
.y32{bottom:1040.550000px;}
.ya{bottom:1042.350000px;}
.y28{bottom:1042.710000px;}
.y68{bottom:1054.770000px;}
.y4c{bottom:1077.630000px;}
.y31{bottom:1078.170000px;}
.y9{bottom:1078.710000px;}
.y27{bottom:1079.070000px;}
.y67{bottom:1091.130000px;}
.y8{bottom:1114.890000px;}
.y26{bottom:1115.250000px;}
.y7{bottom:1151.100000px;}
.y25{bottom:1151.460000px;}
.y2{bottom:1187.280000px;}
.y1{bottom:1211.400000px;}
.h4{height:45.180000px;}
.h5{height:61.781484px;}
.h3{height:80.208984px;}
.h6{height:82.676953px;}
.h2{height:84.898125px;}
.h7{height:86.255508px;}
.h8{height:86.585445px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:45.360000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:117.936000px;}
.xb{left:127.656000px;}
.x12{left:154.650000px;}
.xa{left:170.130000px;}
.x3{left:180.750000px;}
.x15{left:186.330000px;}
.xf{left:197.130000px;}
.x14{left:224.130000px;}
.x7{left:241.050000px;}
.x8{left:244.290000px;}
.x5{left:254.190000px;}
.xc{left:280.470000px;}
.x11{left:316.155000px;}
.xe{left:334.335000px;}
.x13{left:340.095000px;}
.xd{left:350.355000px;}
.x9{left:396.975000px;}
.x2{left:421.455000px;}
.x10{left:444.495000px;}
.x6{left:499.605000px;}
.x4{left:788.760000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.960000pt;}
.lsb{letter-spacing:-0.613333pt;}
.lsd{letter-spacing:-0.328533pt;}
.lsa{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.311467pt;}
.ls11{letter-spacing:-0.303467pt;}
.ls2{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.057600pt;}
.ls6{letter-spacing:-0.024960pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003627pt;}
.ls7{letter-spacing:0.024960pt;}
.lse{letter-spacing:0.303467pt;}
.ls8{letter-spacing:0.311467pt;}
.ls5{letter-spacing:0.320000pt;}
.ls0{letter-spacing:8.800000pt;}
.lsc{letter-spacing:146.223360pt;}
.ws1{word-spacing:-19.040000pt;}
.ws5{word-spacing:-19.031467pt;}
.ws3{word-spacing:-18.744960pt;}
.ws4{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.695040pt;}
.wsd{word-spacing:-18.662400pt;}
.ws0{word-spacing:-18.592000pt;}
.wse{word-spacing:-18.416533pt;}
.wsc{word-spacing:-18.408533pt;}
.ws8{word-spacing:-18.400000pt;}
.wsb{word-spacing:-18.391467pt;}
.ws9{word-spacing:-18.106667pt;}
.ws6{word-spacing:-17.760000pt;}
.wsa{word-spacing:-0.074880pt;}
.ws7{word-spacing:0.000000pt;}
._1b{margin-left:-20.252160pt;}
._8{margin-left:-2.121600pt;}
._1{margin-left:-1.198080pt;}
._0{width:1.142827pt;}
._10{width:2.526293pt;}
._3{width:4.043520pt;}
._4{width:5.016960pt;}
._5{width:6.140160pt;}
._16{width:7.263360pt;}
._9{width:8.920533pt;}
._1c{width:9.946880pt;}
._20{width:10.946987pt;}
._11{width:13.403520pt;}
._e{width:14.601600pt;}
._f{width:15.874560pt;}
._a{width:17.447040pt;}
._2{width:19.693440pt;}
._d{width:21.178453pt;}
._1a{width:22.102187pt;}
._18{width:24.560640pt;}
._19{width:25.464533pt;}
._12{width:26.432640pt;}
._c{width:31.299840pt;}
._17{width:35.118720pt;}
._b{width:36.990720pt;}
._13{width:38.039040pt;}
._1e{width:39.680000pt;}
._15{width:44.318293pt;}
._14{width:45.601920pt;}
._7{width:51.517440pt;}
._6{width:53.089920pt;}
._1d{width:58.705920pt;}
._1f{width:133.600000pt;}
.fs1{font-size:72.320000pt;}
.fs0{font-size:74.880000pt;}
.y6{bottom:-1.440000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:19.680000pt;}
.y4{bottom:36.320000pt;}
.y3{bottom:59.680000pt;}
.y24{bottom:89.600000pt;}
.y66{bottom:119.232000pt;}
.y4b{bottom:119.872000pt;}
.y23{bottom:121.632000pt;}
.y30{bottom:121.952000pt;}
.y65{bottom:151.386667pt;}
.y4a{bottom:152.026667pt;}
.y22{bottom:154.106667pt;}
.y64{bottom:183.546667pt;}
.y49{bottom:184.346667pt;}
.y21{bottom:186.266667pt;}
.y63{bottom:215.866667pt;}
.y48{bottom:216.506667pt;}
.y20{bottom:218.426667pt;}
.y62{bottom:248.026667pt;}
.y47{bottom:248.666667pt;}
.y1f{bottom:250.746667pt;}
.y61{bottom:280.186667pt;}
.y46{bottom:280.826667pt;}
.y1e{bottom:282.906667pt;}
.y60{bottom:312.346667pt;}
.y45{bottom:313.146667pt;}
.y1d{bottom:315.066667pt;}
.y5f{bottom:344.546667pt;}
.y44{bottom:345.346667pt;}
.y1c{bottom:347.266667pt;}
.y5e{bottom:376.546667pt;}
.y43{bottom:377.506667pt;}
.y2f{bottom:379.106667pt;}
.y1b{bottom:379.426667pt;}
.y5d{bottom:408.706667pt;}
.y42{bottom:409.666667pt;}
.y1a{bottom:411.746667pt;}
.y5c{bottom:441.186667pt;}
.y41{bottom:441.986667pt;}
.y19{bottom:443.906667pt;}
.y5b{bottom:473.346667pt;}
.y40{bottom:473.826667pt;}
.y18{bottom:476.066667pt;}
.y5a{bottom:505.666667pt;}
.y3f{bottom:506.306667pt;}
.y17{bottom:508.226667pt;}
.y75{bottom:518.946667pt;}
.y59{bottom:537.826667pt;}
.y3e{bottom:538.466667pt;}
.y16{bottom:540.546667pt;}
.y74{bottom:551.266667pt;}
.y58{bottom:570.013333pt;}
.y3d{bottom:570.653333pt;}
.y15{bottom:572.733333pt;}
.y73{bottom:583.453333pt;}
.y57{bottom:602.173333pt;}
.y3c{bottom:602.973333pt;}
.y2e{bottom:604.573333pt;}
.y14{bottom:604.893333pt;}
.y72{bottom:615.613333pt;}
.y56{bottom:634.493333pt;}
.y3b{bottom:635.133333pt;}
.y13{bottom:636.733333pt;}
.y2d{bottom:637.053333pt;}
.y71{bottom:647.773333pt;}
.y55{bottom:666.653333pt;}
.y3a{bottom:667.293333pt;}
.y12{bottom:669.373333pt;}
.y70{bottom:679.773333pt;}
.y54{bottom:698.493333pt;}
.y39{bottom:699.453333pt;}
.y11{bottom:701.533333pt;}
.y6f{bottom:712.253333pt;}
.y53{bottom:730.973333pt;}
.y38{bottom:731.773333pt;}
.y10{bottom:733.693333pt;}
.y6e{bottom:744.413333pt;}
.y52{bottom:763.293333pt;}
.y37{bottom:763.933333pt;}
.yf{bottom:765.853333pt;}
.y6d{bottom:776.573333pt;}
.y51{bottom:795.493333pt;}
.y36{bottom:796.133333pt;}
.y2c{bottom:797.733333pt;}
.ye{bottom:798.053333pt;}
.y6c{bottom:808.933333pt;}
.y50{bottom:827.653333pt;}
.y35{bottom:828.293333pt;}
.yd{bottom:830.053333pt;}
.y2b{bottom:830.373333pt;}
.y6b{bottom:841.093333pt;}
.y4f{bottom:859.813333pt;}
.y34{bottom:860.613333pt;}
.yc{bottom:862.213333pt;}
.y2a{bottom:862.533333pt;}
.y6a{bottom:873.253333pt;}
.y4e{bottom:891.973333pt;}
.y33{bottom:892.773333pt;}
.yb{bottom:894.373333pt;}
.y29{bottom:894.693333pt;}
.y69{bottom:905.413333pt;}
.y4d{bottom:924.293333pt;}
.y32{bottom:924.933333pt;}
.ya{bottom:926.533333pt;}
.y28{bottom:926.853333pt;}
.y68{bottom:937.573333pt;}
.y4c{bottom:957.893333pt;}
.y31{bottom:958.373333pt;}
.y9{bottom:958.853333pt;}
.y27{bottom:959.173333pt;}
.y67{bottom:969.893333pt;}
.y8{bottom:991.013333pt;}
.y26{bottom:991.333333pt;}
.y7{bottom:1023.200000pt;}
.y25{bottom:1023.520000pt;}
.y2{bottom:1055.360000pt;}
.y1{bottom:1076.800000pt;}
.h4{height:40.160000pt;}
.h5{height:54.916875pt;}
.h3{height:71.296875pt;}
.h6{height:73.490625pt;}
.h2{height:75.465000pt;}
.h7{height:76.671562pt;}
.h8{height:76.964840pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:40.320000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:104.832000pt;}
.xb{left:113.472000pt;}
.x12{left:137.466667pt;}
.xa{left:151.226667pt;}
.x3{left:160.666667pt;}
.x15{left:165.626667pt;}
.xf{left:175.226667pt;}
.x14{left:199.226667pt;}
.x7{left:214.266667pt;}
.x8{left:217.146667pt;}
.x5{left:225.946667pt;}
.xc{left:249.306667pt;}
.x11{left:281.026667pt;}
.xe{left:297.186667pt;}
.x13{left:302.306667pt;}
.xd{left:311.426667pt;}
.x9{left:352.866667pt;}
.x2{left:374.626667pt;}
.x10{left:395.106667pt;}
.x6{left:444.093333pt;}
.x4{left:701.120000pt;}
}




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