
    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_94c7f2b62ee8f8f4943e079a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.121582;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_38584d92c31d59097cdb03fa.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.885000;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_98dd379358144d4187c594d2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.931000;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_4134f4fb889e8cc7c285cc60.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.119286;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_98dd379358144d4187c594d2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.931000;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_e8e4037296cb05539592a602.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_81cfc65bbfade2cf14065950.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.113770;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_72dcdd726caec4080fd00772.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.121582;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_72dcdd726caec4080fd00772.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.121582;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;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.058500px;}
.ls1{letter-spacing:0.117000px;}
.ls6{letter-spacing:0.175500px;}
.ls5{letter-spacing:0.234000px;}
.ls8{letter-spacing:0.292500px;}
.ls0{letter-spacing:0.351000px;}
.ls2{letter-spacing:0.409500px;}
.ls7{letter-spacing:0.468000px;}
.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;}
}
.ws1{word-spacing:-14.976000px;}
.ws0{word-spacing:-12.750000px;}
.ws2{word-spacing:-10.968750px;}
.ws8{word-spacing:-2.128500px;}
.ws7{word-spacing:-1.999500px;}
.ws4{word-spacing:0.000000px;}
.ws10{word-spacing:0.117000px;}
.wse{word-spacing:0.234000px;}
.ws3f{word-spacing:0.351000px;}
.wsa{word-spacing:0.409500px;}
.ws20{word-spacing:0.526500px;}
.ws23{word-spacing:0.643500px;}
.wsc{word-spacing:0.702000px;}
.wsf{word-spacing:0.819000px;}
.ws3e{word-spacing:0.877500px;}
.ws36{word-spacing:1.170000px;}
.ws3c{word-spacing:1.228500px;}
.ws42{word-spacing:1.345500px;}
.ws3b{word-spacing:1.521000px;}
.ws31{word-spacing:1.579500px;}
.ws28{word-spacing:1.638000px;}
.ws3d{word-spacing:1.755000px;}
.ws30{word-spacing:1.872000px;}
.ws9{word-spacing:1.930500px;}
.ws48{word-spacing:1.989000px;}
.ws1e{word-spacing:2.047500px;}
.ws43{word-spacing:2.106000px;}
.ws39{word-spacing:2.281500px;}
.ws16{word-spacing:2.340000px;}
.ws1b{word-spacing:2.457000px;}
.ws13{word-spacing:2.574000px;}
.ws47{word-spacing:2.691000px;}
.ws11{word-spacing:2.749500px;}
.ws14{word-spacing:2.808000px;}
.ws17{word-spacing:2.866500px;}
.ws15{word-spacing:2.925000px;}
.ws37{word-spacing:2.983500px;}
.ws2f{word-spacing:3.100500px;}
.ws2c{word-spacing:3.159000px;}
.ws35{word-spacing:3.217500px;}
.ws18{word-spacing:3.393000px;}
.ws3a{word-spacing:3.510000px;}
.ws29{word-spacing:3.627000px;}
.ws41{word-spacing:3.861000px;}
.ws40{word-spacing:3.978000px;}
.ws1d{word-spacing:4.036500px;}
.ws2d{word-spacing:4.095000px;}
.ws33{word-spacing:4.212000px;}
.ws1f{word-spacing:4.329000px;}
.ws12{word-spacing:4.387500px;}
.ws21{word-spacing:4.446000px;}
.wsd{word-spacing:4.504500px;}
.ws2e{word-spacing:4.563000px;}
.wsb{word-spacing:4.621500px;}
.ws24{word-spacing:4.738500px;}
.ws49{word-spacing:4.855500px;}
.ws46{word-spacing:4.972500px;}
.ws26{word-spacing:5.031000px;}
.ws44{word-spacing:5.323500px;}
.ws38{word-spacing:5.499000px;}
.ws1c{word-spacing:5.557500px;}
.ws45{word-spacing:5.616000px;}
.ws2b{word-spacing:5.674500px;}
.ws34{word-spacing:5.733000px;}
.ws32{word-spacing:5.791500px;}
.ws25{word-spacing:6.201000px;}
.ws2a{word-spacing:6.376500px;}
.ws22{word-spacing:6.727500px;}
.ws4a{word-spacing:6.786000px;}
.ws19{word-spacing:7.254000px;}
.ws1a{word-spacing:7.312500px;}
.ws6{word-spacing:10.656000px;}
.ws27{word-spacing:12.750000px;}
.ws5{word-spacing:13.344000px;}
.ws3{word-spacing:1160.046000px;}
._1{margin-left:-1.012050px;}
._0{width:13.344000px;}
._2{width:869.585400px;}
._3{width:1150.098000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:43.875000px;}
.fs2{font-size:48.000000px;}
.fs0{font-size:51.000000px;}
.fs6{font-size:57.000000px;}
.fs4{font-size:58.500000px;}
.fs3{font-size:64.500000px;}
.fs1{font-size:171.052800px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.647450px;}
.y58{bottom:126.197475px;}
.y2d{bottom:128.760075px;}
.y57{bottom:142.504350px;}
.y2c{bottom:145.066950px;}
.y56{bottom:158.811225px;}
.y2b{bottom:161.373825px;}
.y55{bottom:175.118100px;}
.y2a{bottom:177.680700px;}
.y54{bottom:191.424975px;}
.y29{bottom:193.987575px;}
.y53{bottom:207.731850px;}
.y28{bottom:210.294450px;}
.y52{bottom:224.038725px;}
.y27{bottom:226.601325px;}
.y51{bottom:240.345600px;}
.y26{bottom:242.908200px;}
.y50{bottom:256.652475px;}
.y25{bottom:259.215075px;}
.y4f{bottom:272.959350px;}
.y24{bottom:275.521950px;}
.y4e{bottom:289.266225px;}
.y23{bottom:291.828825px;}
.y4d{bottom:305.573100px;}
.y22{bottom:308.135700px;}
.y4c{bottom:321.879975px;}
.y21{bottom:324.442575px;}
.y4b{bottom:338.186850px;}
.y20{bottom:340.706325px;}
.y4a{bottom:354.493725px;}
.y1f{bottom:357.013200px;}
.y49{bottom:370.800600px;}
.y1e{bottom:373.320075px;}
.y48{bottom:387.107475px;}
.y1d{bottom:389.626950px;}
.y47{bottom:403.414350px;}
.y1c{bottom:405.933825px;}
.y46{bottom:419.721225px;}
.y1b{bottom:422.240700px;}
.y45{bottom:436.028100px;}
.y1a{bottom:438.547575px;}
.y44{bottom:452.334975px;}
.y19{bottom:454.854450px;}
.y43{bottom:468.641850px;}
.y18{bottom:471.161325px;}
.y42{bottom:484.948725px;}
.y17{bottom:487.468200px;}
.y41{bottom:501.255600px;}
.y16{bottom:503.775075px;}
.y40{bottom:517.562475px;}
.y15{bottom:520.081950px;}
.y3f{bottom:533.869350px;}
.y14{bottom:536.388825px;}
.y3e{bottom:550.176225px;}
.y13{bottom:552.695700px;}
.y3d{bottom:566.483100px;}
.y12{bottom:569.002575px;}
.y3c{bottom:582.789975px;}
.y11{bottom:585.309450px;}
.y3b{bottom:599.096850px;}
.y10{bottom:601.616325px;}
.y3a{bottom:615.403725px;}
.yf{bottom:617.923200px;}
.y39{bottom:631.710600px;}
.ye{bottom:634.230075px;}
.y38{bottom:648.017475px;}
.yd{bottom:650.536950px;}
.y37{bottom:664.324350px;}
.yc{bottom:666.843825px;}
.y36{bottom:680.631225px;}
.yb{bottom:683.150700px;}
.y35{bottom:696.938100px;}
.ya{bottom:699.457575px;}
.y34{bottom:713.244975px;}
.y9{bottom:715.764450px;}
.y33{bottom:729.551850px;}
.y32{bottom:745.858725px;}
.y8{bottom:758.469600px;}
.y31{bottom:762.165600px;}
.y7{bottom:776.061975px;}
.y30{bottom:778.472475px;}
.y6{bottom:793.654350px;}
.y2f{bottom:794.779350px;}
.y2e{bottom:831.202200px;}
.y3{bottom:835.327800px;}
.y2{bottom:855.702900px;}
.y5{bottom:867.890850px;}
.y4{bottom:881.390850px;}
.h5{height:35.328000px;}
.h4{height:44.496000px;}
.h2{height:45.745605px;}
.h9{height:51.127441px;}
.ha{height:51.844482px;}
.h7{height:52.472900px;}
.h8{height:52.645400px;}
.h6{height:57.854736px;}
.h3{height:148.644883px;}
.h1{height:935.250000px;}
.h0{height:935.433000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x6{left:93.543300px;}
.x1{left:107.149650px;}
.x7{left:119.049300px;}
.x4{left:132.660300px;}
.x3{left:415.535250px;}
.x8{left:436.167075px;}
.x5{left:473.435100px;}
.x2{left:517.476750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.052000pt;}
.ls1{letter-spacing:0.104000pt;}
.ls6{letter-spacing:0.156000pt;}
.ls5{letter-spacing:0.208000pt;}
.ls8{letter-spacing:0.260000pt;}
.ls0{letter-spacing:0.312000pt;}
.ls2{letter-spacing:0.364000pt;}
.ls7{letter-spacing:0.416000pt;}
.ws1{word-spacing:-13.312000pt;}
.ws0{word-spacing:-11.333333pt;}
.ws2{word-spacing:-9.750000pt;}
.ws8{word-spacing:-1.892000pt;}
.ws7{word-spacing:-1.777333pt;}
.ws4{word-spacing:0.000000pt;}
.ws10{word-spacing:0.104000pt;}
.wse{word-spacing:0.208000pt;}
.ws3f{word-spacing:0.312000pt;}
.wsa{word-spacing:0.364000pt;}
.ws20{word-spacing:0.468000pt;}
.ws23{word-spacing:0.572000pt;}
.wsc{word-spacing:0.624000pt;}
.wsf{word-spacing:0.728000pt;}
.ws3e{word-spacing:0.780000pt;}
.ws36{word-spacing:1.040000pt;}
.ws3c{word-spacing:1.092000pt;}
.ws42{word-spacing:1.196000pt;}
.ws3b{word-spacing:1.352000pt;}
.ws31{word-spacing:1.404000pt;}
.ws28{word-spacing:1.456000pt;}
.ws3d{word-spacing:1.560000pt;}
.ws30{word-spacing:1.664000pt;}
.ws9{word-spacing:1.716000pt;}
.ws48{word-spacing:1.768000pt;}
.ws1e{word-spacing:1.820000pt;}
.ws43{word-spacing:1.872000pt;}
.ws39{word-spacing:2.028000pt;}
.ws16{word-spacing:2.080000pt;}
.ws1b{word-spacing:2.184000pt;}
.ws13{word-spacing:2.288000pt;}
.ws47{word-spacing:2.392000pt;}
.ws11{word-spacing:2.444000pt;}
.ws14{word-spacing:2.496000pt;}
.ws17{word-spacing:2.548000pt;}
.ws15{word-spacing:2.600000pt;}
.ws37{word-spacing:2.652000pt;}
.ws2f{word-spacing:2.756000pt;}
.ws2c{word-spacing:2.808000pt;}
.ws35{word-spacing:2.860000pt;}
.ws18{word-spacing:3.016000pt;}
.ws3a{word-spacing:3.120000pt;}
.ws29{word-spacing:3.224000pt;}
.ws41{word-spacing:3.432000pt;}
.ws40{word-spacing:3.536000pt;}
.ws1d{word-spacing:3.588000pt;}
.ws2d{word-spacing:3.640000pt;}
.ws33{word-spacing:3.744000pt;}
.ws1f{word-spacing:3.848000pt;}
.ws12{word-spacing:3.900000pt;}
.ws21{word-spacing:3.952000pt;}
.wsd{word-spacing:4.004000pt;}
.ws2e{word-spacing:4.056000pt;}
.wsb{word-spacing:4.108000pt;}
.ws24{word-spacing:4.212000pt;}
.ws49{word-spacing:4.316000pt;}
.ws46{word-spacing:4.420000pt;}
.ws26{word-spacing:4.472000pt;}
.ws44{word-spacing:4.732000pt;}
.ws38{word-spacing:4.888000pt;}
.ws1c{word-spacing:4.940000pt;}
.ws45{word-spacing:4.992000pt;}
.ws2b{word-spacing:5.044000pt;}
.ws34{word-spacing:5.096000pt;}
.ws32{word-spacing:5.148000pt;}
.ws25{word-spacing:5.512000pt;}
.ws2a{word-spacing:5.668000pt;}
.ws22{word-spacing:5.980000pt;}
.ws4a{word-spacing:6.032000pt;}
.ws19{word-spacing:6.448000pt;}
.ws1a{word-spacing:6.500000pt;}
.ws6{word-spacing:9.472000pt;}
.ws27{word-spacing:11.333333pt;}
.ws5{word-spacing:11.861333pt;}
.ws3{word-spacing:1031.152000pt;}
._1{margin-left:-0.899600pt;}
._0{width:11.861333pt;}
._2{width:772.964800pt;}
._3{width:1022.309333pt;}
.fs5{font-size:39.000000pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:45.333333pt;}
.fs6{font-size:50.666667pt;}
.fs4{font-size:52.000000pt;}
.fs3{font-size:57.333333pt;}
.fs1{font-size:152.046933pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:76.131067pt;}
.y58{bottom:112.175533pt;}
.y2d{bottom:114.453400pt;}
.y57{bottom:126.670533pt;}
.y2c{bottom:128.948400pt;}
.y56{bottom:141.165533pt;}
.y2b{bottom:143.443400pt;}
.y55{bottom:155.660533pt;}
.y2a{bottom:157.938400pt;}
.y54{bottom:170.155533pt;}
.y29{bottom:172.433400pt;}
.y53{bottom:184.650533pt;}
.y28{bottom:186.928400pt;}
.y52{bottom:199.145533pt;}
.y27{bottom:201.423400pt;}
.y51{bottom:213.640533pt;}
.y26{bottom:215.918400pt;}
.y50{bottom:228.135533pt;}
.y25{bottom:230.413400pt;}
.y4f{bottom:242.630533pt;}
.y24{bottom:244.908400pt;}
.y4e{bottom:257.125533pt;}
.y23{bottom:259.403400pt;}
.y4d{bottom:271.620533pt;}
.y22{bottom:273.898400pt;}
.y4c{bottom:286.115533pt;}
.y21{bottom:288.393400pt;}
.y4b{bottom:300.610533pt;}
.y20{bottom:302.850067pt;}
.y4a{bottom:315.105533pt;}
.y1f{bottom:317.345067pt;}
.y49{bottom:329.600533pt;}
.y1e{bottom:331.840067pt;}
.y48{bottom:344.095533pt;}
.y1d{bottom:346.335067pt;}
.y47{bottom:358.590533pt;}
.y1c{bottom:360.830067pt;}
.y46{bottom:373.085533pt;}
.y1b{bottom:375.325067pt;}
.y45{bottom:387.580533pt;}
.y1a{bottom:389.820067pt;}
.y44{bottom:402.075533pt;}
.y19{bottom:404.315067pt;}
.y43{bottom:416.570533pt;}
.y18{bottom:418.810067pt;}
.y42{bottom:431.065533pt;}
.y17{bottom:433.305067pt;}
.y41{bottom:445.560533pt;}
.y16{bottom:447.800067pt;}
.y40{bottom:460.055533pt;}
.y15{bottom:462.295067pt;}
.y3f{bottom:474.550533pt;}
.y14{bottom:476.790067pt;}
.y3e{bottom:489.045533pt;}
.y13{bottom:491.285067pt;}
.y3d{bottom:503.540533pt;}
.y12{bottom:505.780067pt;}
.y3c{bottom:518.035533pt;}
.y11{bottom:520.275067pt;}
.y3b{bottom:532.530533pt;}
.y10{bottom:534.770067pt;}
.y3a{bottom:547.025533pt;}
.yf{bottom:549.265067pt;}
.y39{bottom:561.520533pt;}
.ye{bottom:563.760067pt;}
.y38{bottom:576.015533pt;}
.yd{bottom:578.255067pt;}
.y37{bottom:590.510533pt;}
.yc{bottom:592.750067pt;}
.y36{bottom:605.005533pt;}
.yb{bottom:607.245067pt;}
.y35{bottom:619.500533pt;}
.ya{bottom:621.740067pt;}
.y34{bottom:633.995533pt;}
.y9{bottom:636.235067pt;}
.y33{bottom:648.490533pt;}
.y32{bottom:662.985533pt;}
.y8{bottom:674.195200pt;}
.y31{bottom:677.480533pt;}
.y7{bottom:689.832867pt;}
.y30{bottom:691.975533pt;}
.y6{bottom:705.470533pt;}
.y2f{bottom:706.470533pt;}
.y2e{bottom:738.846400pt;}
.y3{bottom:742.513600pt;}
.y2{bottom:760.624800pt;}
.y5{bottom:771.458533pt;}
.y4{bottom:783.458533pt;}
.h5{height:31.402667pt;}
.h4{height:39.552000pt;}
.h2{height:40.662760pt;}
.h9{height:45.446615pt;}
.ha{height:46.083984pt;}
.h7{height:46.642578pt;}
.h8{height:46.795911pt;}
.h6{height:51.426432pt;}
.h3{height:132.128785pt;}
.h1{height:831.333333pt;}
.h0{height:831.496000pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x6{left:83.149600pt;}
.x1{left:95.244133pt;}
.x7{left:105.821600pt;}
.x4{left:117.920267pt;}
.x3{left:369.364667pt;}
.x8{left:387.704067pt;}
.x5{left:420.831200pt;}
.x2{left:459.979333pt;}
}




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