
    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_4ad9f2ebff058006781b9a17.woff')format("woff");}.ff1{font-family:ff1;line-height:0.981000;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_d4eaa5862c285a73939904e8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.954000;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_7828e0bc07e60f3806688cf4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.955000;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_c2b080a3bd76eefa40dfc1d1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.019000;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_a8e05d0ee7c7bbf8c53acc1e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.991000;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_917a6fafddb88fad0f0e8cb4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.981000;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_b0ad0bbba698247699157a25.woff')format("woff");}.ff7{font-family:ff7;line-height:1.019000;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;}
.ls7{letter-spacing:-2.184000px;}
.ls6{letter-spacing:-1.650000px;}
.ls3{letter-spacing:-1.560000px;}
.ls4{letter-spacing:-1.500000px;}
.ls5{letter-spacing:-0.630000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:13.230000px;}
.ls0{letter-spacing:78.840000px;}
.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;}
}
.ws0{word-spacing:-16.860000px;}
.wsa{word-spacing:-7.260000px;}
.ws35{word-spacing:-4.440000px;}
.ws22{word-spacing:-3.840000px;}
.ws3f{word-spacing:-3.348000px;}
.ws33{word-spacing:-3.240000px;}
.ws2b{word-spacing:-2.040000px;}
.ws2c{word-spacing:-1.980000px;}
.ws2f{word-spacing:-1.800000px;}
.wsc{word-spacing:-1.740000px;}
.ws23{word-spacing:-1.680000px;}
.ws29{word-spacing:-0.780000px;}
.ws2a{word-spacing:-0.720000px;}
.ws5{word-spacing:-0.180000px;}
.ws1{word-spacing:0.000000px;}
.ws1b{word-spacing:0.630000px;}
.ws6{word-spacing:0.720000px;}
.ws1a{word-spacing:0.900000px;}
.ws3e{word-spacing:0.918000px;}
.ws2d{word-spacing:1.080000px;}
.ws3d{word-spacing:1.458000px;}
.wse{word-spacing:1.500000px;}
.ws2{word-spacing:1.560000px;}
.ws32{word-spacing:1.680000px;}
.ws31{word-spacing:1.740000px;}
.ws37{word-spacing:2.040000px;}
.ws36{word-spacing:2.100000px;}
.ws3b{word-spacing:2.220000px;}
.ws30{word-spacing:2.580000px;}
.ws3a{word-spacing:3.180000px;}
.ws39{word-spacing:3.300000px;}
.ws34{word-spacing:3.360000px;}
.ws41{word-spacing:3.780000px;}
.ws43{word-spacing:4.440000px;}
.ws28{word-spacing:4.560000px;}
.ws27{word-spacing:4.740000px;}
.ws44{word-spacing:4.860000px;}
.ws10{word-spacing:6.060000px;}
.wsb{word-spacing:6.240000px;}
.wsf{word-spacing:6.300000px;}
.ws20{word-spacing:6.540000px;}
.ws3{word-spacing:7.020000px;}
.ws26{word-spacing:7.080000px;}
.ws1f{word-spacing:7.260000px;}
.ws25{word-spacing:7.320000px;}
.ws21{word-spacing:8.460000px;}
.ws40{word-spacing:9.240000px;}
.ws17{word-spacing:10.860000px;}
.ws2e{word-spacing:11.040000px;}
.ws38{word-spacing:11.280000px;}
.ws15{word-spacing:13.740000px;}
.ws14{word-spacing:14.280000px;}
.wsd{word-spacing:14.460000px;}
.ws19{word-spacing:15.840000px;}
.ws42{word-spacing:17.040000px;}
.ws1e{word-spacing:17.100000px;}
.ws1c{word-spacing:17.280000px;}
.ws4{word-spacing:18.060000px;}
.ws7{word-spacing:18.120000px;}
.ws8{word-spacing:19.380000px;}
.ws3c{word-spacing:19.824000px;}
.ws24{word-spacing:19.980000px;}
.ws11{word-spacing:20.640000px;}
.ws1d{word-spacing:21.960000px;}
.ws9{word-spacing:24.180000px;}
.ws13{word-spacing:26.100000px;}
.ws12{word-spacing:27.180000px;}
.ws16{word-spacing:28.860000px;}
.ws18{word-spacing:43.680000px;}
._a{margin-left:-16.085400px;}
._6{margin-left:-6.192000px;}
._1{margin-left:-4.410000px;}
._0{margin-left:-2.730000px;}
._3{margin-left:-1.710000px;}
._8{width:1.044000px;}
._4{width:2.430000px;}
._2{width:4.374000px;}
._7{width:6.636000px;}
._12{width:8.598000px;}
._5{width:9.666000px;}
._f{width:10.920000px;}
._d{width:12.558000px;}
._9{width:14.220000px;}
._13{width:15.882000px;}
._e{width:17.654400px;}
._b{width:18.731400px;}
._10{width:37.217400px;}
._c{width:39.648000px;}
._11{width:61.140000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs7{font-size:84.000000px;}
.fs4{font-size:99.600000px;}
.fs9{font-size:101.400000px;}
.fs5{font-size:108.000000px;}
.fs3{font-size:126.000000px;}
.fs2{font-size:144.000000px;}
.fs0{font-size:210.000000px;}
.y0{bottom:0.000000px;}
.y62{bottom:20.416350px;}
.y23{bottom:21.150750px;}
.y66{bottom:98.753550px;}
.y31{bottom:112.309350px;}
.y65{bottom:114.953550px;}
.y64{bottom:131.153550px;}
.y30{bottom:131.809350px;}
.y1d{bottom:143.442900px;}
.y63{bottom:147.353550px;}
.y2f{bottom:151.309350px;}
.y1c{bottom:164.442900px;}
.y2e{bottom:170.809350px;}
.y4a{bottom:174.984450px;}
.y2d{bottom:190.309350px;}
.y1b{bottom:195.942900px;}
.y49{bottom:195.984450px;}
.y1a{bottom:216.942900px;}
.y2c{bottom:223.309350px;}
.y48{bottom:228.984450px;}
.y2b{bottom:242.809350px;}
.y5f{bottom:243.165450px;}
.y19{bottom:248.442900px;}
.y47{bottom:251.484450px;}
.y2a{bottom:262.309350px;}
.y5e{bottom:264.165450px;}
.y18{bottom:269.442900px;}
.y29{bottom:281.809350px;}
.y46{bottom:284.484450px;}
.y17{bottom:290.442900px;}
.y5d{bottom:297.165450px;}
.y28{bottom:301.309350px;}
.y45{bottom:306.984450px;}
.y5c{bottom:318.165450px;}
.y27{bottom:320.809350px;}
.y16{bottom:326.442900px;}
.y26{bottom:340.309350px;}
.y15{bottom:347.442900px;}
.y44{bottom:348.984450px;}
.y25{bottom:359.809500px;}
.y14{bottom:368.442900px;}
.y83{bottom:375.220200px;}
.y13{bottom:389.442900px;}
.y82{bottom:394.720200px;}
.y4b{bottom:399.388350px;}
.y61{bottom:404.373750px;}
.y81{bottom:414.220200px;}
.y12{bottom:417.942900px;}
.y60{bottom:431.379750px;}
.y80{bottom:446.021550px;}
.y11{bottom:462.942900px;}
.y42{bottom:480.075000px;}
.y10{bottom:483.942900px;}
.y41{bottom:504.075000px;}
.yf{bottom:504.942900px;}
.y22{bottom:513.942900px;}
.y5b{bottom:524.385450px;}
.ye{bottom:525.942900px;}
.y21{bottom:534.942900px;}
.y40{bottom:537.075000px;}
.y5a{bottom:546.885450px;}
.yd{bottom:546.942900px;}
.y20{bottom:555.942900px;}
.yc{bottom:567.942900px;}
.y3f{bottom:570.075000px;}
.y1f{bottom:576.942900px;}
.y59{bottom:579.885450px;}
.yb{bottom:588.942900px;}
.y3e{bottom:592.575000px;}
.y77{bottom:595.778550px;}
.y7b{bottom:601.533150px;}
.y58{bottom:602.385450px;}
.y1e{bottom:608.442900px;}
.ya{bottom:609.942900px;}
.y76{bottom:616.778550px;}
.y7a{bottom:619.533150px;}
.y9{bottom:630.942900px;}
.y3d{bottom:634.575000px;}
.y79{bottom:637.533150px;}
.y75{bottom:637.778550px;}
.y57{bottom:639.885450px;}
.y8{bottom:651.942900px;}
.y78{bottom:655.533150px;}
.y74{bottom:658.778550px;}
.y56{bottom:684.795450px;}
.y43{bottom:684.978900px;}
.y73{bottom:697.718550px;}
.y55{bottom:705.795450px;}
.y72{bottom:718.718550px;}
.y7{bottom:730.062900px;}
.y71{bottom:739.718550px;}
.y6{bottom:751.062900px;}
.y3a{bottom:769.346100px;}
.y5{bottom:772.062900px;}
.y70{bottom:778.718550px;}
.y54{bottom:787.092450px;}
.y4{bottom:793.062900px;}
.y39{bottom:793.346100px;}
.y6f{bottom:799.718550px;}
.y3{bottom:814.062900px;}
.y6e{bottom:820.718550px;}
.y38{bottom:826.346100px;}
.y2{bottom:835.062900px;}
.y37{bottom:859.346100px;}
.y6d{bottom:859.718550px;}
.y6c{bottom:880.718550px;}
.y36{bottom:881.846100px;}
.y6b{bottom:900.218550px;}
.y35{bottom:923.846100px;}
.y24{bottom:926.926050px;}
.y6a{bottom:939.218550px;}
.y52{bottom:945.653550px;}
.y69{bottom:960.218550px;}
.y51{bottom:966.653550px;}
.y3c{bottom:974.467050px;}
.y68{bottom:981.218550px;}
.y1{bottom:981.649800px;}
.y50{bottom:999.653550px;}
.y67{bottom:1000.718550px;}
.y4f{bottom:1022.153550px;}
.y34{bottom:1045.751100px;}
.y7f{bottom:1046.118300px;}
.y4e{bottom:1055.153550px;}
.y33{bottom:1066.751100px;}
.y7e{bottom:1067.118300px;}
.y4d{bottom:1077.653550px;}
.y32{bottom:1087.751100px;}
.y7d{bottom:1088.118300px;}
.y4c{bottom:1119.653550px;}
.y7c{bottom:1169.415300px;}
.y3b{bottom:1169.450850px;}
.y53{bottom:1170.057600px;}
.hd{height:41.256000px;}
.he{height:44.712000px;}
.h3{height:45.840000px;}
.h8{height:46.500000px;}
.h5{height:46.800000px;}
.h4{height:49.680000px;}
.ha{height:51.480000px;}
.hc{height:65.100000px;}
.hb{height:77.190000px;}
.hf{height:78.585000px;}
.h9{height:84.240000px;}
.h7{height:97.650000px;}
.h6{height:111.600000px;}
.h2{height:162.750000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:89.291400px;}
.x1{left:90.407250px;}
.xb{left:92.706900px;}
.x2{left:117.407250px;}
.x8{left:191.316300px;}
.x3{left:461.252250px;}
.x6{left:485.020500px;}
.x4{left:488.252250px;}
.x5{left:550.476150px;}
.x7{left:554.399700px;}
.xa{left:570.867000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-1.941333pt;}
.ls6{letter-spacing:-1.466667pt;}
.ls3{letter-spacing:-1.386667pt;}
.ls4{letter-spacing:-1.333333pt;}
.ls5{letter-spacing:-0.560000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:11.760000pt;}
.ls0{letter-spacing:70.080000pt;}
.ws0{word-spacing:-14.986667pt;}
.wsa{word-spacing:-6.453333pt;}
.ws35{word-spacing:-3.946667pt;}
.ws22{word-spacing:-3.413333pt;}
.ws3f{word-spacing:-2.976000pt;}
.ws33{word-spacing:-2.880000pt;}
.ws2b{word-spacing:-1.813333pt;}
.ws2c{word-spacing:-1.760000pt;}
.ws2f{word-spacing:-1.600000pt;}
.wsc{word-spacing:-1.546667pt;}
.ws23{word-spacing:-1.493333pt;}
.ws29{word-spacing:-0.693333pt;}
.ws2a{word-spacing:-0.640000pt;}
.ws5{word-spacing:-0.160000pt;}
.ws1{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.560000pt;}
.ws6{word-spacing:0.640000pt;}
.ws1a{word-spacing:0.800000pt;}
.ws3e{word-spacing:0.816000pt;}
.ws2d{word-spacing:0.960000pt;}
.ws3d{word-spacing:1.296000pt;}
.wse{word-spacing:1.333333pt;}
.ws2{word-spacing:1.386667pt;}
.ws32{word-spacing:1.493333pt;}
.ws31{word-spacing:1.546667pt;}
.ws37{word-spacing:1.813333pt;}
.ws36{word-spacing:1.866667pt;}
.ws3b{word-spacing:1.973333pt;}
.ws30{word-spacing:2.293333pt;}
.ws3a{word-spacing:2.826667pt;}
.ws39{word-spacing:2.933333pt;}
.ws34{word-spacing:2.986667pt;}
.ws41{word-spacing:3.360000pt;}
.ws43{word-spacing:3.946667pt;}
.ws28{word-spacing:4.053333pt;}
.ws27{word-spacing:4.213333pt;}
.ws44{word-spacing:4.320000pt;}
.ws10{word-spacing:5.386667pt;}
.wsb{word-spacing:5.546667pt;}
.wsf{word-spacing:5.600000pt;}
.ws20{word-spacing:5.813333pt;}
.ws3{word-spacing:6.240000pt;}
.ws26{word-spacing:6.293333pt;}
.ws1f{word-spacing:6.453333pt;}
.ws25{word-spacing:6.506667pt;}
.ws21{word-spacing:7.520000pt;}
.ws40{word-spacing:8.213333pt;}
.ws17{word-spacing:9.653333pt;}
.ws2e{word-spacing:9.813333pt;}
.ws38{word-spacing:10.026667pt;}
.ws15{word-spacing:12.213333pt;}
.ws14{word-spacing:12.693333pt;}
.wsd{word-spacing:12.853333pt;}
.ws19{word-spacing:14.080000pt;}
.ws42{word-spacing:15.146667pt;}
.ws1e{word-spacing:15.200000pt;}
.ws1c{word-spacing:15.360000pt;}
.ws4{word-spacing:16.053333pt;}
.ws7{word-spacing:16.106667pt;}
.ws8{word-spacing:17.226667pt;}
.ws3c{word-spacing:17.621333pt;}
.ws24{word-spacing:17.760000pt;}
.ws11{word-spacing:18.346667pt;}
.ws1d{word-spacing:19.520000pt;}
.ws9{word-spacing:21.493333pt;}
.ws13{word-spacing:23.200000pt;}
.ws12{word-spacing:24.160000pt;}
.ws16{word-spacing:25.653333pt;}
.ws18{word-spacing:38.826667pt;}
._a{margin-left:-14.298133pt;}
._6{margin-left:-5.504000pt;}
._1{margin-left:-3.920000pt;}
._0{margin-left:-2.426667pt;}
._3{margin-left:-1.520000pt;}
._8{width:0.928000pt;}
._4{width:2.160000pt;}
._2{width:3.888000pt;}
._7{width:5.898667pt;}
._12{width:7.642667pt;}
._5{width:8.592000pt;}
._f{width:9.706667pt;}
._d{width:11.162667pt;}
._9{width:12.640000pt;}
._13{width:14.117333pt;}
._e{width:15.692800pt;}
._b{width:16.650133pt;}
._10{width:33.082133pt;}
._c{width:35.242667pt;}
._11{width:54.346667pt;}
.fs8{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs7{font-size:74.666667pt;}
.fs4{font-size:88.533333pt;}
.fs9{font-size:90.133333pt;}
.fs5{font-size:96.000000pt;}
.fs3{font-size:112.000000pt;}
.fs2{font-size:128.000000pt;}
.fs0{font-size:186.666667pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:18.147867pt;}
.y23{bottom:18.800667pt;}
.y66{bottom:87.780933pt;}
.y31{bottom:99.830533pt;}
.y65{bottom:102.180933pt;}
.y64{bottom:116.580933pt;}
.y30{bottom:117.163867pt;}
.y1d{bottom:127.504800pt;}
.y63{bottom:130.980933pt;}
.y2f{bottom:134.497200pt;}
.y1c{bottom:146.171467pt;}
.y2e{bottom:151.830533pt;}
.y4a{bottom:155.541733pt;}
.y2d{bottom:169.163867pt;}
.y1b{bottom:174.171467pt;}
.y49{bottom:174.208400pt;}
.y1a{bottom:192.838133pt;}
.y2c{bottom:198.497200pt;}
.y48{bottom:203.541733pt;}
.y2b{bottom:215.830533pt;}
.y5f{bottom:216.147067pt;}
.y19{bottom:220.838133pt;}
.y47{bottom:223.541733pt;}
.y2a{bottom:233.163867pt;}
.y5e{bottom:234.813733pt;}
.y18{bottom:239.504800pt;}
.y29{bottom:250.497200pt;}
.y46{bottom:252.875067pt;}
.y17{bottom:258.171467pt;}
.y5d{bottom:264.147067pt;}
.y28{bottom:267.830533pt;}
.y45{bottom:272.875067pt;}
.y5c{bottom:282.813733pt;}
.y27{bottom:285.163867pt;}
.y16{bottom:290.171467pt;}
.y26{bottom:302.497200pt;}
.y15{bottom:308.838133pt;}
.y44{bottom:310.208400pt;}
.y25{bottom:319.830667pt;}
.y14{bottom:327.504800pt;}
.y83{bottom:333.529067pt;}
.y13{bottom:346.171467pt;}
.y82{bottom:350.862400pt;}
.y4b{bottom:355.011867pt;}
.y61{bottom:359.443333pt;}
.y81{bottom:368.195733pt;}
.y12{bottom:371.504800pt;}
.y60{bottom:383.448667pt;}
.y80{bottom:396.463600pt;}
.y11{bottom:411.504800pt;}
.y42{bottom:426.733333pt;}
.y10{bottom:430.171467pt;}
.y41{bottom:448.066667pt;}
.yf{bottom:448.838133pt;}
.y22{bottom:456.838133pt;}
.y5b{bottom:466.120400pt;}
.ye{bottom:467.504800pt;}
.y21{bottom:475.504800pt;}
.y40{bottom:477.400000pt;}
.y5a{bottom:486.120400pt;}
.yd{bottom:486.171467pt;}
.y20{bottom:494.171467pt;}
.yc{bottom:504.838133pt;}
.y3f{bottom:506.733333pt;}
.y1f{bottom:512.838133pt;}
.y59{bottom:515.453733pt;}
.yb{bottom:523.504800pt;}
.y3e{bottom:526.733333pt;}
.y77{bottom:529.580933pt;}
.y7b{bottom:534.696133pt;}
.y58{bottom:535.453733pt;}
.y1e{bottom:540.838133pt;}
.ya{bottom:542.171467pt;}
.y76{bottom:548.247600pt;}
.y7a{bottom:550.696133pt;}
.y9{bottom:560.838133pt;}
.y3d{bottom:564.066667pt;}
.y79{bottom:566.696133pt;}
.y75{bottom:566.914267pt;}
.y57{bottom:568.787067pt;}
.y8{bottom:579.504800pt;}
.y78{bottom:582.696133pt;}
.y74{bottom:585.580933pt;}
.y56{bottom:608.707067pt;}
.y43{bottom:608.870133pt;}
.y73{bottom:620.194267pt;}
.y55{bottom:627.373733pt;}
.y72{bottom:638.860933pt;}
.y7{bottom:648.944800pt;}
.y71{bottom:657.527600pt;}
.y6{bottom:667.611467pt;}
.y3a{bottom:683.863200pt;}
.y5{bottom:686.278133pt;}
.y70{bottom:692.194267pt;}
.y54{bottom:699.637733pt;}
.y4{bottom:704.944800pt;}
.y39{bottom:705.196533pt;}
.y6f{bottom:710.860933pt;}
.y3{bottom:723.611467pt;}
.y6e{bottom:729.527600pt;}
.y38{bottom:734.529867pt;}
.y2{bottom:742.278133pt;}
.y37{bottom:763.863200pt;}
.y6d{bottom:764.194267pt;}
.y6c{bottom:782.860933pt;}
.y36{bottom:783.863200pt;}
.y6b{bottom:800.194267pt;}
.y35{bottom:821.196533pt;}
.y24{bottom:823.934267pt;}
.y6a{bottom:834.860933pt;}
.y52{bottom:840.580933pt;}
.y69{bottom:853.527600pt;}
.y51{bottom:859.247600pt;}
.y3c{bottom:866.192933pt;}
.y68{bottom:872.194267pt;}
.y1{bottom:872.577600pt;}
.y50{bottom:888.580933pt;}
.y67{bottom:889.527600pt;}
.y4f{bottom:908.580933pt;}
.y34{bottom:929.556533pt;}
.y7f{bottom:929.882933pt;}
.y4e{bottom:937.914267pt;}
.y33{bottom:948.223200pt;}
.y7e{bottom:948.549600pt;}
.y4d{bottom:957.914267pt;}
.y32{bottom:966.889867pt;}
.y7d{bottom:967.216267pt;}
.y4c{bottom:995.247600pt;}
.y7c{bottom:1039.480267pt;}
.y3b{bottom:1039.511867pt;}
.y53{bottom:1040.051200pt;}
.hd{height:36.672000pt;}
.he{height:39.744000pt;}
.h3{height:40.746667pt;}
.h8{height:41.333333pt;}
.h5{height:41.600000pt;}
.h4{height:44.160000pt;}
.ha{height:45.760000pt;}
.hc{height:57.866667pt;}
.hb{height:68.613333pt;}
.hf{height:69.853333pt;}
.h9{height:74.880000pt;}
.h7{height:86.800000pt;}
.h6{height:99.200000pt;}
.h2{height:144.666667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:79.370133pt;}
.x1{left:80.362000pt;}
.xb{left:82.406133pt;}
.x2{left:104.362000pt;}
.x8{left:170.058933pt;}
.x3{left:410.002000pt;}
.x6{left:431.129333pt;}
.x4{left:434.002000pt;}
.x5{left:489.312133pt;}
.x7{left:492.799733pt;}
.xa{left:507.437333pt;}
}




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