
    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_82367efa12612b4453b70275.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.095703;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_47207b7e27697f6479b373b8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_c1be200291f70f0a0d940096.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_2946c8ffff688094f6dd796f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.102539;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_af420470bd51b237fecd9884.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_897c8c45a5755be36f222b71.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.961000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.100000px;}
.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;}
}
.ws14{word-spacing:-17.100000px;}
.ws43{word-spacing:-3.300000px;}
.ws2f{word-spacing:-2.940000px;}
.ws3b{word-spacing:-2.760000px;}
.ws29{word-spacing:-2.460000px;}
.ws2e{word-spacing:-2.280000px;}
.ws3d{word-spacing:-2.160000px;}
.ws1{word-spacing:-2.112000px;}
.wsa{word-spacing:-1.980000px;}
.wsc{word-spacing:-1.920000px;}
.ws1f{word-spacing:-1.860000px;}
.ws19{word-spacing:-1.800000px;}
.ws2c{word-spacing:-1.680000px;}
.ws1b{word-spacing:-1.380000px;}
.ws3e{word-spacing:-1.260000px;}
.ws23{word-spacing:-0.960000px;}
.ws13{word-spacing:-0.780000px;}
.wsd{word-spacing:-0.720000px;}
.ws40{word-spacing:-0.660000px;}
.ws17{word-spacing:-0.360000px;}
.ws3c{word-spacing:-0.300000px;}
.wsb{word-spacing:-0.120000px;}
.ws0{word-spacing:0.000000px;}
.ws20{word-spacing:0.240000px;}
.ws2a{word-spacing:0.300000px;}
.ws31{word-spacing:0.360000px;}
.ws1a{word-spacing:0.600000px;}
.ws7{word-spacing:0.720000px;}
.wsf{word-spacing:0.900000px;}
.ws27{word-spacing:0.960000px;}
.ws8{word-spacing:1.020000px;}
.ws12{word-spacing:1.260000px;}
.ws37{word-spacing:1.440000px;}
.ws35{word-spacing:1.500000px;}
.ws10{word-spacing:1.680000px;}
.ws25{word-spacing:1.800000px;}
.ws2b{word-spacing:1.920000px;}
.ws18{word-spacing:1.980000px;}
.ws5{word-spacing:2.040000px;}
.ws3{word-spacing:2.220000px;}
.ws39{word-spacing:2.340000px;}
.ws11{word-spacing:2.580000px;}
.ws3a{word-spacing:2.640000px;}
.ws6{word-spacing:2.700000px;}
.ws21{word-spacing:2.760000px;}
.ws24{word-spacing:3.000000px;}
.ws28{word-spacing:3.360000px;}
.ws3f{word-spacing:3.480000px;}
.ws26{word-spacing:3.540000px;}
.ws30{word-spacing:3.600000px;}
.ws1e{word-spacing:3.660000px;}
.ws1d{word-spacing:3.780000px;}
.ws4{word-spacing:3.900000px;}
.wse{word-spacing:3.960000px;}
.ws9{word-spacing:4.020000px;}
.ws36{word-spacing:4.200000px;}
.ws32{word-spacing:4.320000px;}
.ws33{word-spacing:4.620000px;}
.ws15{word-spacing:4.740000px;}
.ws38{word-spacing:4.800000px;}
.ws42{word-spacing:5.160000px;}
.ws16{word-spacing:5.640000px;}
.ws1c{word-spacing:5.880000px;}
.ws22{word-spacing:6.060000px;}
.ws2{word-spacing:6.780000px;}
.ws41{word-spacing:7.740000px;}
.ws34{word-spacing:8.940000px;}
.ws2d{word-spacing:1643.460000px;}
._6{margin-left:-2041.920000px;}
._7{margin-left:-6.954000px;}
._1{margin-left:-3.360000px;}
._2{margin-left:-2.080800px;}
._0{margin-left:-1.003200px;}
._4{width:1.416000px;}
._9{width:2.556000px;}
._3{width:3.972000px;}
._8{width:5.424000px;}
._5{width:2022.022800px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(28,29,30);}
.fs3{font-size:36.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y20{bottom:9.000000px;}
.y2{bottom:77.782200px;}
.y23{bottom:81.325500px;}
.y1{bottom:89.782200px;}
.y22{bottom:93.325500px;}
.y4d{bottom:148.375200px;}
.y4c{bottom:166.375200px;}
.y4b{bottom:184.375200px;}
.y74{bottom:190.610100px;}
.y4a{bottom:202.375200px;}
.y73{bottom:208.610100px;}
.y49{bottom:220.375200px;}
.y48{bottom:238.375200px;}
.y1f{bottom:241.612050px;}
.y72{bottom:256.370100px;}
.y47{bottom:256.375200px;}
.y1e{bottom:259.612050px;}
.y71{bottom:274.370100px;}
.y46{bottom:274.375200px;}
.y1d{bottom:277.612050px;}
.y70{bottom:292.370100px;}
.y45{bottom:292.375200px;}
.y1c{bottom:295.612050px;}
.y6f{bottom:310.370100px;}
.y44{bottom:310.375200px;}
.y1b{bottom:313.612050px;}
.y6e{bottom:328.370100px;}
.y43{bottom:328.375200px;}
.y1a{bottom:331.612050px;}
.y6d{bottom:346.370100px;}
.y42{bottom:346.375200px;}
.y19{bottom:349.612050px;}
.y6c{bottom:364.370100px;}
.y41{bottom:364.375200px;}
.y18{bottom:367.612050px;}
.y6b{bottom:382.370100px;}
.y40{bottom:382.375200px;}
.y17{bottom:385.612050px;}
.y6a{bottom:400.370100px;}
.y3f{bottom:400.375200px;}
.y16{bottom:403.612050px;}
.y69{bottom:418.370100px;}
.y3e{bottom:418.375200px;}
.y15{bottom:421.612050px;}
.y68{bottom:436.370100px;}
.y3d{bottom:436.375200px;}
.y14{bottom:439.612050px;}
.y67{bottom:454.370100px;}
.y3c{bottom:454.375200px;}
.y13{bottom:457.612050px;}
.y66{bottom:472.370100px;}
.y3b{bottom:472.375200px;}
.y12{bottom:475.612050px;}
.y65{bottom:490.370100px;}
.y3a{bottom:490.375200px;}
.y11{bottom:493.612050px;}
.y64{bottom:508.370100px;}
.y39{bottom:508.375200px;}
.y10{bottom:511.612050px;}
.y63{bottom:526.370100px;}
.y38{bottom:526.375200px;}
.yf{bottom:529.612050px;}
.y62{bottom:544.370100px;}
.y37{bottom:544.375200px;}
.ye{bottom:547.612050px;}
.y61{bottom:562.370100px;}
.y36{bottom:562.375200px;}
.yd{bottom:565.612050px;}
.y60{bottom:580.370100px;}
.y35{bottom:580.375200px;}
.yc{bottom:583.612050px;}
.y5f{bottom:598.370100px;}
.y34{bottom:598.375200px;}
.yb{bottom:601.612050px;}
.y5e{bottom:616.370100px;}
.y33{bottom:616.375200px;}
.ya{bottom:619.612050px;}
.y5d{bottom:634.370100px;}
.y32{bottom:634.375200px;}
.y9{bottom:637.612050px;}
.y5c{bottom:652.370100px;}
.y31{bottom:652.375200px;}
.y8{bottom:655.612050px;}
.y5b{bottom:670.370100px;}
.y30{bottom:670.375200px;}
.y7{bottom:673.612050px;}
.y5a{bottom:688.370100px;}
.y2f{bottom:688.375200px;}
.y6{bottom:691.612050px;}
.y59{bottom:706.370100px;}
.y2e{bottom:706.375200px;}
.y5{bottom:709.612050px;}
.y58{bottom:724.370100px;}
.y2d{bottom:724.375200px;}
.y57{bottom:742.370100px;}
.y2c{bottom:742.375200px;}
.y4{bottom:757.375800px;}
.y56{bottom:760.370100px;}
.y2b{bottom:760.375200px;}
.y3{bottom:777.175800px;}
.y55{bottom:778.370100px;}
.y2a{bottom:778.375200px;}
.y54{bottom:796.370100px;}
.y29{bottom:796.375200px;}
.y53{bottom:814.370100px;}
.y28{bottom:814.375200px;}
.y52{bottom:832.370100px;}
.y27{bottom:832.375200px;}
.y51{bottom:850.370100px;}
.y26{bottom:850.375200px;}
.y50{bottom:868.370100px;}
.y25{bottom:868.375200px;}
.y4f{bottom:886.370100px;}
.y24{bottom:886.375200px;}
.y4e{bottom:928.880100px;}
.y21{bottom:928.894800px;}
.h7{height:28.656000px;}
.h3{height:42.117188px;}
.h2{height:42.234375px;}
.h5{height:52.646484px;}
.h6{height:52.792969px;}
.h4{height:58.620117px;}
.h0{height:1083.472500px;}
.h1{height:1083.750000px;}
.w0{width:785.835000px;}
.w1{width:786.000000px;}
.x0{left:0.000000px;}
.x3{left:46.500000px;}
.x1{left:137.799150px;}
.x8{left:151.904250px;}
.x2{left:167.563050px;}
.x7{left:191.168250px;}
.x6{left:508.104150px;}
.x5{left:511.824150px;}
.x4{left:577.927950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:1.866667pt;}
.ws14{word-spacing:-15.200000pt;}
.ws43{word-spacing:-2.933333pt;}
.ws2f{word-spacing:-2.613333pt;}
.ws3b{word-spacing:-2.453333pt;}
.ws29{word-spacing:-2.186667pt;}
.ws2e{word-spacing:-2.026667pt;}
.ws3d{word-spacing:-1.920000pt;}
.ws1{word-spacing:-1.877333pt;}
.wsa{word-spacing:-1.760000pt;}
.wsc{word-spacing:-1.706667pt;}
.ws1f{word-spacing:-1.653333pt;}
.ws19{word-spacing:-1.600000pt;}
.ws2c{word-spacing:-1.493333pt;}
.ws1b{word-spacing:-1.226667pt;}
.ws3e{word-spacing:-1.120000pt;}
.ws23{word-spacing:-0.853333pt;}
.ws13{word-spacing:-0.693333pt;}
.wsd{word-spacing:-0.640000pt;}
.ws40{word-spacing:-0.586667pt;}
.ws17{word-spacing:-0.320000pt;}
.ws3c{word-spacing:-0.266667pt;}
.wsb{word-spacing:-0.106667pt;}
.ws0{word-spacing:0.000000pt;}
.ws20{word-spacing:0.213333pt;}
.ws2a{word-spacing:0.266667pt;}
.ws31{word-spacing:0.320000pt;}
.ws1a{word-spacing:0.533333pt;}
.ws7{word-spacing:0.640000pt;}
.wsf{word-spacing:0.800000pt;}
.ws27{word-spacing:0.853333pt;}
.ws8{word-spacing:0.906667pt;}
.ws12{word-spacing:1.120000pt;}
.ws37{word-spacing:1.280000pt;}
.ws35{word-spacing:1.333333pt;}
.ws10{word-spacing:1.493333pt;}
.ws25{word-spacing:1.600000pt;}
.ws2b{word-spacing:1.706667pt;}
.ws18{word-spacing:1.760000pt;}
.ws5{word-spacing:1.813333pt;}
.ws3{word-spacing:1.973333pt;}
.ws39{word-spacing:2.080000pt;}
.ws11{word-spacing:2.293333pt;}
.ws3a{word-spacing:2.346667pt;}
.ws6{word-spacing:2.400000pt;}
.ws21{word-spacing:2.453333pt;}
.ws24{word-spacing:2.666667pt;}
.ws28{word-spacing:2.986667pt;}
.ws3f{word-spacing:3.093333pt;}
.ws26{word-spacing:3.146667pt;}
.ws30{word-spacing:3.200000pt;}
.ws1e{word-spacing:3.253333pt;}
.ws1d{word-spacing:3.360000pt;}
.ws4{word-spacing:3.466667pt;}
.wse{word-spacing:3.520000pt;}
.ws9{word-spacing:3.573333pt;}
.ws36{word-spacing:3.733333pt;}
.ws32{word-spacing:3.840000pt;}
.ws33{word-spacing:4.106667pt;}
.ws15{word-spacing:4.213333pt;}
.ws38{word-spacing:4.266667pt;}
.ws42{word-spacing:4.586667pt;}
.ws16{word-spacing:5.013333pt;}
.ws1c{word-spacing:5.226667pt;}
.ws22{word-spacing:5.386667pt;}
.ws2{word-spacing:6.026667pt;}
.ws41{word-spacing:6.880000pt;}
.ws34{word-spacing:7.946667pt;}
.ws2d{word-spacing:1460.853333pt;}
._6{margin-left:-1815.040000pt;}
._7{margin-left:-6.181333pt;}
._1{margin-left:-2.986667pt;}
._2{margin-left:-1.849600pt;}
._0{margin-left:-0.891733pt;}
._4{width:1.258667pt;}
._9{width:2.272000pt;}
._3{width:3.530667pt;}
._8{width:4.821333pt;}
._5{width:1797.353600pt;}
.fs3{font-size:32.000000pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:8.000000pt;}
.y2{bottom:69.139733pt;}
.y23{bottom:72.289333pt;}
.y1{bottom:79.806400pt;}
.y22{bottom:82.956000pt;}
.y4d{bottom:131.889067pt;}
.y4c{bottom:147.889067pt;}
.y4b{bottom:163.889067pt;}
.y74{bottom:169.431200pt;}
.y4a{bottom:179.889067pt;}
.y73{bottom:185.431200pt;}
.y49{bottom:195.889067pt;}
.y48{bottom:211.889067pt;}
.y1f{bottom:214.766267pt;}
.y72{bottom:227.884533pt;}
.y47{bottom:227.889067pt;}
.y1e{bottom:230.766267pt;}
.y71{bottom:243.884533pt;}
.y46{bottom:243.889067pt;}
.y1d{bottom:246.766267pt;}
.y70{bottom:259.884533pt;}
.y45{bottom:259.889067pt;}
.y1c{bottom:262.766267pt;}
.y6f{bottom:275.884533pt;}
.y44{bottom:275.889067pt;}
.y1b{bottom:278.766267pt;}
.y6e{bottom:291.884533pt;}
.y43{bottom:291.889067pt;}
.y1a{bottom:294.766267pt;}
.y6d{bottom:307.884533pt;}
.y42{bottom:307.889067pt;}
.y19{bottom:310.766267pt;}
.y6c{bottom:323.884533pt;}
.y41{bottom:323.889067pt;}
.y18{bottom:326.766267pt;}
.y6b{bottom:339.884533pt;}
.y40{bottom:339.889067pt;}
.y17{bottom:342.766267pt;}
.y6a{bottom:355.884533pt;}
.y3f{bottom:355.889067pt;}
.y16{bottom:358.766267pt;}
.y69{bottom:371.884533pt;}
.y3e{bottom:371.889067pt;}
.y15{bottom:374.766267pt;}
.y68{bottom:387.884533pt;}
.y3d{bottom:387.889067pt;}
.y14{bottom:390.766267pt;}
.y67{bottom:403.884533pt;}
.y3c{bottom:403.889067pt;}
.y13{bottom:406.766267pt;}
.y66{bottom:419.884533pt;}
.y3b{bottom:419.889067pt;}
.y12{bottom:422.766267pt;}
.y65{bottom:435.884533pt;}
.y3a{bottom:435.889067pt;}
.y11{bottom:438.766267pt;}
.y64{bottom:451.884533pt;}
.y39{bottom:451.889067pt;}
.y10{bottom:454.766267pt;}
.y63{bottom:467.884533pt;}
.y38{bottom:467.889067pt;}
.yf{bottom:470.766267pt;}
.y62{bottom:483.884533pt;}
.y37{bottom:483.889067pt;}
.ye{bottom:486.766267pt;}
.y61{bottom:499.884533pt;}
.y36{bottom:499.889067pt;}
.yd{bottom:502.766267pt;}
.y60{bottom:515.884533pt;}
.y35{bottom:515.889067pt;}
.yc{bottom:518.766267pt;}
.y5f{bottom:531.884533pt;}
.y34{bottom:531.889067pt;}
.yb{bottom:534.766267pt;}
.y5e{bottom:547.884533pt;}
.y33{bottom:547.889067pt;}
.ya{bottom:550.766267pt;}
.y5d{bottom:563.884533pt;}
.y32{bottom:563.889067pt;}
.y9{bottom:566.766267pt;}
.y5c{bottom:579.884533pt;}
.y31{bottom:579.889067pt;}
.y8{bottom:582.766267pt;}
.y5b{bottom:595.884533pt;}
.y30{bottom:595.889067pt;}
.y7{bottom:598.766267pt;}
.y5a{bottom:611.884533pt;}
.y2f{bottom:611.889067pt;}
.y6{bottom:614.766267pt;}
.y59{bottom:627.884533pt;}
.y2e{bottom:627.889067pt;}
.y5{bottom:630.766267pt;}
.y58{bottom:643.884533pt;}
.y2d{bottom:643.889067pt;}
.y57{bottom:659.884533pt;}
.y2c{bottom:659.889067pt;}
.y4{bottom:673.222933pt;}
.y56{bottom:675.884533pt;}
.y2b{bottom:675.889067pt;}
.y3{bottom:690.822933pt;}
.y55{bottom:691.884533pt;}
.y2a{bottom:691.889067pt;}
.y54{bottom:707.884533pt;}
.y29{bottom:707.889067pt;}
.y53{bottom:723.884533pt;}
.y28{bottom:723.889067pt;}
.y52{bottom:739.884533pt;}
.y27{bottom:739.889067pt;}
.y51{bottom:755.884533pt;}
.y26{bottom:755.889067pt;}
.y50{bottom:771.884533pt;}
.y25{bottom:771.889067pt;}
.y4f{bottom:787.884533pt;}
.y24{bottom:787.889067pt;}
.y4e{bottom:825.671200pt;}
.y21{bottom:825.684267pt;}
.h7{height:25.472000pt;}
.h3{height:37.437500pt;}
.h2{height:37.541667pt;}
.h5{height:46.796875pt;}
.h6{height:46.927083pt;}
.h4{height:52.106771pt;}
.h0{height:963.086667pt;}
.h1{height:963.333333pt;}
.w0{width:698.520000pt;}
.w1{width:698.666667pt;}
.x0{left:0.000000pt;}
.x3{left:41.333333pt;}
.x1{left:122.488133pt;}
.x8{left:135.026000pt;}
.x2{left:148.944933pt;}
.x7{left:169.927333pt;}
.x6{left:451.648133pt;}
.x5{left:454.954800pt;}
.x4{left:513.713733pt;}
}




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