
    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_293382f93f70faa8c117a448.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.204000;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_581210778da20b9519aec941.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.048000;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_0793f43ced153968c5347ac7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.188000;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_521cfc845dde7a9a70e5aafe.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.188000;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_ec2645dda5ade2d35b887d58.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.204000;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_730185aaad61cc5002bd72ff.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_a84962c0440e687266d2d331.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.098000;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_6b8bbbf577154f1c7f03d180.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.204000;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_9eaf6a9d90a6f0b8c73757f0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_1fc8e85fde5a3701dd840f5b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.034000;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:ffb;src:url('chunks/assets/font_e6433eb96d63acde28d8a3d3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.052000;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:ffc;src:url('chunks/assets/font_c42facf120a01601632b89e2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.001953;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;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:1.250400px;}
.ls3{letter-spacing:1.439400px;}
.ls5{letter-spacing:4.463400px;}
.ls2{letter-spacing:20.031600px;}
.ls1{letter-spacing:37.039200px;}
.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;}
}
.ws24{word-spacing:-42.000000px;}
.ws22{word-spacing:-31.500000px;}
.ws23{word-spacing:-23.184000px;}
.ws4{word-spacing:-13.248000px;}
.ws12{word-spacing:-12.816000px;}
.ws1d{word-spacing:-3.216000px;}
.ws1e{word-spacing:-1.488000px;}
.ws5{word-spacing:-0.096000px;}
.ws0{word-spacing:0.000000px;}
.wse{word-spacing:0.192000px;}
.ws9{word-spacing:0.336000px;}
.wsa{word-spacing:0.384000px;}
.ws13{word-spacing:0.480000px;}
.ws17{word-spacing:0.624000px;}
.wsf{word-spacing:0.816000px;}
.ws18{word-spacing:0.960000px;}
.ws15{word-spacing:1.008000px;}
.wsb{word-spacing:1.056000px;}
.ws19{word-spacing:1.248000px;}
.ws16{word-spacing:1.296000px;}
.ws11{word-spacing:1.728000px;}
.ws2{word-spacing:1.872000px;}
.ws1{word-spacing:1.920000px;}
.wsc{word-spacing:2.016000px;}
.ws8{word-spacing:2.208000px;}
.ws7{word-spacing:3.312000px;}
.ws6{word-spacing:3.504000px;}
.ws1b{word-spacing:3.552000px;}
.ws1c{word-spacing:4.464000px;}
.ws1f{word-spacing:4.800000px;}
.ws21{word-spacing:4.944000px;}
.ws14{word-spacing:6.432000px;}
.ws20{word-spacing:7.680000px;}
.ws10{word-spacing:8.400000px;}
.wsd{word-spacing:9.168000px;}
.ws3{word-spacing:10.368000px;}
.ws1a{word-spacing:12.384000px;}
._0{margin-left:-60.816000px;}
._c{margin-left:-58.176000px;}
._10{margin-left:-4.963800px;}
._5{margin-left:-3.532200px;}
._4{margin-left:-2.477400px;}
._1{margin-left:-1.204800px;}
._3{width:1.862400px;}
._7{width:2.952000px;}
._a{width:4.005000px;}
._6{width:5.227200px;}
._b{width:7.084800px;}
._8{width:8.952000px;}
._9{width:10.728000px;}
._e{width:11.774400px;}
._d{width:14.673600px;}
._f{width:15.693000px;}
._2{width:92.584800px;}
._12{width:94.500000px;}
._11{width:102.144000px;}
._13{width:115.500000px;}
._14{width:228.816000px;}
.fc3{color:rgb(153,153,153);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(0,15,61);}
.fc0{color:rgb(255,178,53);}
.fs2{font-size:48.000000px;}
.fs1{font-size:84.000000px;}
.fs3{font-size:120.000000px;}
.fs0{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:31.456950px;}
.y7{bottom:46.849650px;}
.y70{bottom:120.342900px;}
.y6f{bottom:138.342900px;}
.y4b{bottom:147.460950px;}
.y6e{bottom:156.342900px;}
.y4a{bottom:165.460950px;}
.y6d{bottom:174.342900px;}
.y49{bottom:183.460950px;}
.y6c{bottom:192.342900px;}
.y48{bottom:201.460950px;}
.y47{bottom:219.460950px;}
.y6b{bottom:235.854750px;}
.y46{bottom:243.838950px;}
.y45{bottom:261.838950px;}
.y44{bottom:279.838950px;}
.y43{bottom:297.838950px;}
.y6a{bottom:304.122450px;}
.y42{bottom:315.838950px;}
.y69{bottom:322.122450px;}
.y41{bottom:333.838950px;}
.y68{bottom:340.122450px;}
.y40{bottom:351.838950px;}
.y67{bottom:358.122450px;}
.y3f{bottom:369.838950px;}
.y66{bottom:376.122450px;}
.y65{bottom:394.122450px;}
.y6{bottom:396.156450px;}
.y64{bottom:412.122450px;}
.y3e{bottom:413.350650px;}
.y5{bottom:421.356450px;}
.y63{bottom:442.878300px;}
.y62{bottom:460.878300px;}
.y3d{bottom:470.988450px;}
.y1e{bottom:477.155100px;}
.y61{bottom:478.878300px;}
.y3c{bottom:488.988450px;}
.y60{bottom:496.878300px;}
.y3b{bottom:506.988450px;}
.y5f{bottom:514.878300px;}
.y3a{bottom:527.114400px;}
.y5e{bottom:532.878300px;}
.y39{bottom:545.114400px;}
.y1d{bottom:550.288950px;}
.y5d{bottom:550.878300px;}
.y38{bottom:563.114400px;}
.y1c{bottom:568.288950px;}
.y5c{bottom:568.878300px;}
.y37{bottom:583.240500px;}
.y1b{bottom:586.288950px;}
.y80{bottom:586.878300px;}
.y5b{bottom:599.634150px;}
.y36{bottom:601.240500px;}
.y1a{bottom:604.288950px;}
.y7f{bottom:604.878300px;}
.y87{bottom:614.563350px;}
.y5a{bottom:617.634150px;}
.y35{bottom:619.240500px;}
.y19{bottom:622.288950px;}
.y7e{bottom:622.878300px;}
.y59{bottom:635.634150px;}
.y34{bottom:637.240500px;}
.y7d{bottom:640.878300px;}
.y18{bottom:646.288950px;}
.y86{bottom:647.941350px;}
.y58{bottom:653.634150px;}
.y33{bottom:655.240500px;}
.y7c{bottom:658.878300px;}
.y57{bottom:671.634150px;}
.y32{bottom:675.366450px;}
.y7b{bottom:676.878300px;}
.y85{bottom:681.319350px;}
.y56{bottom:689.634150px;}
.y31{bottom:693.366450px;}
.y7a{bottom:694.878300px;}
.y17{bottom:694.926750px;}
.y55{bottom:707.634150px;}
.y30{bottom:711.366450px;}
.y84{bottom:714.697200px;}
.y16{bottom:718.926750px;}
.y54{bottom:725.634150px;}
.y2f{bottom:729.366450px;}
.y79{bottom:743.634150px;}
.y4{bottom:744.038400px;}
.y2e{bottom:747.366450px;}
.y83{bottom:748.075200px;}
.y53{bottom:756.390150px;}
.y78{bottom:761.634150px;}
.y15{bottom:767.564550px;}
.y2d{bottom:771.744300px;}
.y52{bottom:774.390150px;}
.y77{bottom:779.634300px;}
.y2c{bottom:789.744300px;}
.y14{bottom:791.564550px;}
.y3{bottom:792.038400px;}
.y51{bottom:792.390150px;}
.y76{bottom:797.634300px;}
.y82{bottom:800.587050px;}
.y50{bottom:810.390150px;}
.y4f{bottom:828.390150px;}
.y81{bottom:830.587050px;}
.y2b{bottom:833.256300px;}
.y13{bottom:835.950300px;}
.y2{bottom:840.038400px;}
.y4e{bottom:846.390150px;}
.y12{bottom:859.950300px;}
.y75{bottom:864.390150px;}
.y4d{bottom:877.146000px;}
.y74{bottom:882.390150px;}
.y1{bottom:888.038400px;}
.y2a{bottom:895.146000px;}
.y73{bottom:900.390150px;}
.y11{bottom:904.336050px;}
.y29{bottom:913.146000px;}
.y10{bottom:924.462150px;}
.y28{bottom:931.146000px;}
.yf{bottom:944.588250px;}
.y27{bottom:949.146000px;}
.ye{bottom:964.714200px;}
.y26{bottom:967.146000px;}
.yd{bottom:984.840150px;}
.y25{bottom:985.146000px;}
.y4c{bottom:991.524000px;}
.y72{bottom:1003.146000px;}
.yc{bottom:1009.218000px;}
.y24{bottom:1009.524000px;}
.y71{bottom:1021.146000px;}
.y23{bottom:1027.524000px;}
.yb{bottom:1037.847900px;}
.y22{bottom:1045.524000px;}
.ya{bottom:1062.225900px;}
.y21{bottom:1063.524000px;}
.y20{bottom:1081.524000px;}
.y9{bottom:1086.225900px;}
.y1f{bottom:1125.035850px;}
.h8{height:36.672000px;}
.h9{height:37.536000px;}
.h4{height:43.824000px;}
.h5{height:44.832000px;}
.h3{height:65.856000px;}
.ha{height:75.096000px;}
.h6{height:78.456000px;}
.h7{height:112.080000px;}
.h2{height:168.120000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:80.681400px;}
.x1{left:85.039350px;}
.x6{left:97.039350px;}
.x9{left:102.047250px;}
.x8{left:106.299150px;}
.x3{left:198.532050px;}
.x7{left:443.739300px;}
.x4{left:444.909450px;}
.x5{left:643.285350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:1.111467pt;}
.ls3{letter-spacing:1.279467pt;}
.ls5{letter-spacing:3.967467pt;}
.ls2{letter-spacing:17.805867pt;}
.ls1{letter-spacing:32.923733pt;}
.ws24{word-spacing:-37.333333pt;}
.ws22{word-spacing:-28.000000pt;}
.ws23{word-spacing:-20.608000pt;}
.ws4{word-spacing:-11.776000pt;}
.ws12{word-spacing:-11.392000pt;}
.ws1d{word-spacing:-2.858667pt;}
.ws1e{word-spacing:-1.322667pt;}
.ws5{word-spacing:-0.085333pt;}
.ws0{word-spacing:0.000000pt;}
.wse{word-spacing:0.170667pt;}
.ws9{word-spacing:0.298667pt;}
.wsa{word-spacing:0.341333pt;}
.ws13{word-spacing:0.426667pt;}
.ws17{word-spacing:0.554667pt;}
.wsf{word-spacing:0.725333pt;}
.ws18{word-spacing:0.853333pt;}
.ws15{word-spacing:0.896000pt;}
.wsb{word-spacing:0.938667pt;}
.ws19{word-spacing:1.109333pt;}
.ws16{word-spacing:1.152000pt;}
.ws11{word-spacing:1.536000pt;}
.ws2{word-spacing:1.664000pt;}
.ws1{word-spacing:1.706667pt;}
.wsc{word-spacing:1.792000pt;}
.ws8{word-spacing:1.962667pt;}
.ws7{word-spacing:2.944000pt;}
.ws6{word-spacing:3.114667pt;}
.ws1b{word-spacing:3.157333pt;}
.ws1c{word-spacing:3.968000pt;}
.ws1f{word-spacing:4.266667pt;}
.ws21{word-spacing:4.394667pt;}
.ws14{word-spacing:5.717333pt;}
.ws20{word-spacing:6.826667pt;}
.ws10{word-spacing:7.466667pt;}
.wsd{word-spacing:8.149333pt;}
.ws3{word-spacing:9.216000pt;}
.ws1a{word-spacing:11.008000pt;}
._0{margin-left:-54.058667pt;}
._c{margin-left:-51.712000pt;}
._10{margin-left:-4.412267pt;}
._5{margin-left:-3.139733pt;}
._4{margin-left:-2.202133pt;}
._1{margin-left:-1.070933pt;}
._3{width:1.655467pt;}
._7{width:2.624000pt;}
._a{width:3.560000pt;}
._6{width:4.646400pt;}
._b{width:6.297600pt;}
._8{width:7.957333pt;}
._9{width:9.536000pt;}
._e{width:10.466133pt;}
._d{width:13.043200pt;}
._f{width:13.949333pt;}
._2{width:82.297600pt;}
._12{width:84.000000pt;}
._11{width:90.794667pt;}
._13{width:102.666667pt;}
._14{width:203.392000pt;}
.fs2{font-size:42.666667pt;}
.fs1{font-size:74.666667pt;}
.fs3{font-size:106.666667pt;}
.fs0{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:27.961733pt;}
.y7{bottom:41.644133pt;}
.y70{bottom:106.971467pt;}
.y6f{bottom:122.971467pt;}
.y4b{bottom:131.076400pt;}
.y6e{bottom:138.971467pt;}
.y4a{bottom:147.076400pt;}
.y6d{bottom:154.971467pt;}
.y49{bottom:163.076400pt;}
.y6c{bottom:170.971467pt;}
.y48{bottom:179.076400pt;}
.y47{bottom:195.076400pt;}
.y6b{bottom:209.648667pt;}
.y46{bottom:216.745733pt;}
.y45{bottom:232.745733pt;}
.y44{bottom:248.745733pt;}
.y43{bottom:264.745733pt;}
.y6a{bottom:270.331067pt;}
.y42{bottom:280.745733pt;}
.y69{bottom:286.331067pt;}
.y41{bottom:296.745733pt;}
.y68{bottom:302.331067pt;}
.y40{bottom:312.745733pt;}
.y67{bottom:318.331067pt;}
.y3f{bottom:328.745733pt;}
.y66{bottom:334.331067pt;}
.y65{bottom:350.331067pt;}
.y6{bottom:352.139067pt;}
.y64{bottom:366.331067pt;}
.y3e{bottom:367.422800pt;}
.y5{bottom:374.539067pt;}
.y63{bottom:393.669600pt;}
.y62{bottom:409.669600pt;}
.y3d{bottom:418.656400pt;}
.y1e{bottom:424.137867pt;}
.y61{bottom:425.669600pt;}
.y3c{bottom:434.656400pt;}
.y60{bottom:441.669600pt;}
.y3b{bottom:450.656400pt;}
.y5f{bottom:457.669600pt;}
.y3a{bottom:468.546133pt;}
.y5e{bottom:473.669600pt;}
.y39{bottom:484.546133pt;}
.y1d{bottom:489.145733pt;}
.y5d{bottom:489.669600pt;}
.y38{bottom:500.546133pt;}
.y1c{bottom:505.145733pt;}
.y5c{bottom:505.669600pt;}
.y37{bottom:518.436000pt;}
.y1b{bottom:521.145733pt;}
.y80{bottom:521.669600pt;}
.y5b{bottom:533.008133pt;}
.y36{bottom:534.436000pt;}
.y1a{bottom:537.145733pt;}
.y7f{bottom:537.669600pt;}
.y87{bottom:546.278533pt;}
.y5a{bottom:549.008133pt;}
.y35{bottom:550.436000pt;}
.y19{bottom:553.145733pt;}
.y7e{bottom:553.669600pt;}
.y59{bottom:565.008133pt;}
.y34{bottom:566.436000pt;}
.y7d{bottom:569.669600pt;}
.y18{bottom:574.479067pt;}
.y86{bottom:575.947867pt;}
.y58{bottom:581.008133pt;}
.y33{bottom:582.436000pt;}
.y7c{bottom:585.669600pt;}
.y57{bottom:597.008133pt;}
.y32{bottom:600.325733pt;}
.y7b{bottom:601.669600pt;}
.y85{bottom:605.617200pt;}
.y56{bottom:613.008133pt;}
.y31{bottom:616.325733pt;}
.y7a{bottom:617.669600pt;}
.y17{bottom:617.712667pt;}
.y55{bottom:629.008133pt;}
.y30{bottom:632.325733pt;}
.y84{bottom:635.286400pt;}
.y16{bottom:639.046000pt;}
.y54{bottom:645.008133pt;}
.y2f{bottom:648.325733pt;}
.y79{bottom:661.008133pt;}
.y4{bottom:661.367467pt;}
.y2e{bottom:664.325733pt;}
.y83{bottom:664.955733pt;}
.y53{bottom:672.346800pt;}
.y78{bottom:677.008133pt;}
.y15{bottom:682.279600pt;}
.y2d{bottom:685.994933pt;}
.y52{bottom:688.346800pt;}
.y77{bottom:693.008267pt;}
.y2c{bottom:701.994933pt;}
.y14{bottom:703.612933pt;}
.y3{bottom:704.034133pt;}
.y51{bottom:704.346800pt;}
.y76{bottom:709.008267pt;}
.y82{bottom:711.632933pt;}
.y50{bottom:720.346800pt;}
.y4f{bottom:736.346800pt;}
.y81{bottom:738.299600pt;}
.y2b{bottom:740.672267pt;}
.y13{bottom:743.066933pt;}
.y2{bottom:746.700800pt;}
.y4e{bottom:752.346800pt;}
.y12{bottom:764.400267pt;}
.y75{bottom:768.346800pt;}
.y4d{bottom:779.685333pt;}
.y74{bottom:784.346800pt;}
.y1{bottom:789.367467pt;}
.y2a{bottom:795.685333pt;}
.y73{bottom:800.346800pt;}
.y11{bottom:803.854267pt;}
.y29{bottom:811.685333pt;}
.y10{bottom:821.744133pt;}
.y28{bottom:827.685333pt;}
.yf{bottom:839.634000pt;}
.y27{bottom:843.685333pt;}
.ye{bottom:857.523733pt;}
.y26{bottom:859.685333pt;}
.yd{bottom:875.413467pt;}
.y25{bottom:875.685333pt;}
.y4c{bottom:881.354667pt;}
.y72{bottom:891.685333pt;}
.yc{bottom:897.082667pt;}
.y24{bottom:897.354667pt;}
.y71{bottom:907.685333pt;}
.y23{bottom:913.354667pt;}
.yb{bottom:922.531467pt;}
.y22{bottom:929.354667pt;}
.ya{bottom:944.200800pt;}
.y21{bottom:945.354667pt;}
.y20{bottom:961.354667pt;}
.y9{bottom:965.534133pt;}
.y1f{bottom:1000.031867pt;}
.h8{height:32.597333pt;}
.h9{height:33.365333pt;}
.h4{height:38.954667pt;}
.h5{height:39.850667pt;}
.h3{height:58.538667pt;}
.ha{height:66.752000pt;}
.h6{height:69.738667pt;}
.h7{height:99.626667pt;}
.h2{height:149.440000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:71.716800pt;}
.x1{left:75.590533pt;}
.x6{left:86.257200pt;}
.x9{left:90.708667pt;}
.x8{left:94.488133pt;}
.x3{left:176.472933pt;}
.x7{left:394.434933pt;}
.x4{left:395.475067pt;}
.x5{left:571.809200pt;}
}




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