
    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_0515bdf8f58b876a4661feb4.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_21436e6d44896ebf7b106c5b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d46c0f0319a11d2dc5b4c551.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0238fb4ebb3e821800d407ff.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c8e2dbcb4b377622bea7a77a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0238fb4ebb3e821800d407ff.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8f9ac37f5a92fbe22d8fda3b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8f9ac37f5a92fbe22d8fda3b.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;}
.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;}
.ls4{letter-spacing:-0.292500px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.058500px;}
.ls2{letter-spacing:0.175500px;}
.ls5{letter-spacing:0.351000px;}
.ls0{letter-spacing:0.643500px;}
.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;}
}
.ws23{word-spacing:-14.250000px;}
.ws0{word-spacing:-12.750000px;}
.ws2{word-spacing:0.000000px;}
.ws11{word-spacing:0.292500px;}
.ws12{word-spacing:0.468000px;}
.ws41{word-spacing:0.526500px;}
.ws19{word-spacing:0.643500px;}
.ws1c{word-spacing:0.702000px;}
.ws16{word-spacing:1.053000px;}
.ws1d{word-spacing:1.170000px;}
.ws34{word-spacing:1.287000px;}
.ws21{word-spacing:1.345500px;}
.ws1a{word-spacing:1.521000px;}
.ws32{word-spacing:1.638000px;}
.ws1f{word-spacing:1.755000px;}
.ws38{word-spacing:1.872000px;}
.ws10{word-spacing:1.930500px;}
.ws24{word-spacing:1.989000px;}
.ws5{word-spacing:1.999500px;}
.ws2f{word-spacing:2.164500px;}
.ws15{word-spacing:2.223000px;}
.ws37{word-spacing:2.457000px;}
.ws2d{word-spacing:2.515500px;}
.ws27{word-spacing:2.632500px;}
.ws20{word-spacing:2.749500px;}
.ws8{word-spacing:2.808000px;}
.ws22{word-spacing:2.983500px;}
.ws3c{word-spacing:3.042000px;}
.ws30{word-spacing:3.159000px;}
.ws31{word-spacing:3.217500px;}
.wsc{word-spacing:3.276000px;}
.ws33{word-spacing:3.393000px;}
.ws6{word-spacing:3.451500px;}
.ws2a{word-spacing:3.510000px;}
.ws18{word-spacing:3.627000px;}
.ws2c{word-spacing:3.861000px;}
.wsf{word-spacing:3.919500px;}
.ws2b{word-spacing:3.978000px;}
.ws1b{word-spacing:4.036500px;}
.wsa{word-spacing:4.095000px;}
.ws29{word-spacing:4.153500px;}
.ws1e{word-spacing:4.329000px;}
.ws3a{word-spacing:4.446000px;}
.ws7{word-spacing:4.504500px;}
.ws9{word-spacing:4.680000px;}
.wse{word-spacing:4.797000px;}
.ws3b{word-spacing:4.855500px;}
.ws14{word-spacing:5.031000px;}
.ws25{word-spacing:5.148000px;}
.wsd{word-spacing:5.382000px;}
.ws17{word-spacing:5.440500px;}
.ws3d{word-spacing:5.616000px;}
.ws2e{word-spacing:5.733000px;}
.wsb{word-spacing:5.908500px;}
.ws39{word-spacing:5.967000px;}
.ws40{word-spacing:6.259500px;}
.ws36{word-spacing:6.376500px;}
.ws3f{word-spacing:6.669000px;}
.ws3e{word-spacing:7.020000px;}
.ws28{word-spacing:7.078500px;}
.ws35{word-spacing:7.137000px;}
.ws26{word-spacing:7.254000px;}
.ws13{word-spacing:7.312500px;}
.ws4{word-spacing:10.656000px;}
.ws1{word-spacing:12.750000px;}
.ws3{word-spacing:13.344000px;}
._0{margin-left:-1.866600px;}
._2{width:13.344000px;}
._1{width:796.446600px;}
._3{width:1123.685400px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.000000px;}
.fs0{font-size:51.000000px;}
.fs5{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:130.006575px;}
.y57{bottom:142.504350px;}
.y2c{bottom:146.313450px;}
.y56{bottom:158.811225px;}
.y2b{bottom:162.620325px;}
.y55{bottom:175.118100px;}
.y2a{bottom:178.927200px;}
.y54{bottom:191.424975px;}
.y29{bottom:195.234075px;}
.y53{bottom:207.731850px;}
.y28{bottom:211.540950px;}
.y52{bottom:224.038725px;}
.y27{bottom:227.847825px;}
.y51{bottom:240.345600px;}
.y26{bottom:244.154700px;}
.y50{bottom:256.652475px;}
.y25{bottom:260.461575px;}
.y4f{bottom:272.959350px;}
.y24{bottom:276.768450px;}
.y4e{bottom:289.266225px;}
.y23{bottom:293.075325px;}
.y4d{bottom:305.573100px;}
.y22{bottom:309.382200px;}
.y4c{bottom:321.879975px;}
.y21{bottom:325.689075px;}
.y4b{bottom:338.186850px;}
.y20{bottom:341.995950px;}
.y4a{bottom:354.493725px;}
.y1f{bottom:358.302825px;}
.y49{bottom:370.800600px;}
.y1e{bottom:374.609700px;}
.y48{bottom:387.107475px;}
.y1d{bottom:390.916575px;}
.y47{bottom:403.414350px;}
.y1c{bottom:407.223450px;}
.y46{bottom:419.721225px;}
.y1b{bottom:423.530325px;}
.y45{bottom:436.028100px;}
.y1a{bottom:439.837200px;}
.y44{bottom:452.334975px;}
.y19{bottom:456.144075px;}
.y43{bottom:468.641850px;}
.y18{bottom:472.450950px;}
.y42{bottom:484.948725px;}
.y17{bottom:488.757825px;}
.y41{bottom:501.255600px;}
.y16{bottom:505.064700px;}
.y40{bottom:517.562475px;}
.y15{bottom:521.371575px;}
.y3f{bottom:533.869350px;}
.y14{bottom:537.678450px;}
.y3e{bottom:550.176225px;}
.y13{bottom:553.985325px;}
.y3d{bottom:566.483100px;}
.y12{bottom:570.292200px;}
.y3c{bottom:582.789975px;}
.y11{bottom:586.599075px;}
.y3b{bottom:599.096850px;}
.y10{bottom:602.905950px;}
.y3a{bottom:615.403725px;}
.yf{bottom:619.212825px;}
.y39{bottom:631.710600px;}
.ye{bottom:635.519700px;}
.y38{bottom:648.017475px;}
.yd{bottom:651.826575px;}
.y37{bottom:664.324350px;}
.yc{bottom:668.133450px;}
.y36{bottom:680.631225px;}
.yb{bottom:684.440325px;}
.y35{bottom:696.938100px;}
.ya{bottom:700.747200px;}
.y34{bottom:713.244975px;}
.y9{bottom:717.054075px;}
.y33{bottom:729.551850px;}
.y8{bottom:733.360950px;}
.y32{bottom:745.858725px;}
.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.704700px;}
.y5{bottom:867.890850px;}
.y4{bottom:881.390850px;}
.h5{height:35.328000px;}
.h4{height:44.496000px;}
.h2{height:45.745605px;}
.h8{height:51.127441px;}
.h9{height:51.844482px;}
.h7{height:52.472900px;}
.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;}
.x1{left:93.542100px;}
.x5{left:107.148450px;}
.x4{left:119.053950px;}
.x6{left:132.655650px;}
.x8{left:382.341975px;}
.x3{left:401.928900px;}
.x7{left:473.435100px;}
.x2{left:507.059400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.260000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.052000pt;}
.ls2{letter-spacing:0.156000pt;}
.ls5{letter-spacing:0.312000pt;}
.ls0{letter-spacing:0.572000pt;}
.ws23{word-spacing:-12.666667pt;}
.ws0{word-spacing:-11.333333pt;}
.ws2{word-spacing:0.000000pt;}
.ws11{word-spacing:0.260000pt;}
.ws12{word-spacing:0.416000pt;}
.ws41{word-spacing:0.468000pt;}
.ws19{word-spacing:0.572000pt;}
.ws1c{word-spacing:0.624000pt;}
.ws16{word-spacing:0.936000pt;}
.ws1d{word-spacing:1.040000pt;}
.ws34{word-spacing:1.144000pt;}
.ws21{word-spacing:1.196000pt;}
.ws1a{word-spacing:1.352000pt;}
.ws32{word-spacing:1.456000pt;}
.ws1f{word-spacing:1.560000pt;}
.ws38{word-spacing:1.664000pt;}
.ws10{word-spacing:1.716000pt;}
.ws24{word-spacing:1.768000pt;}
.ws5{word-spacing:1.777333pt;}
.ws2f{word-spacing:1.924000pt;}
.ws15{word-spacing:1.976000pt;}
.ws37{word-spacing:2.184000pt;}
.ws2d{word-spacing:2.236000pt;}
.ws27{word-spacing:2.340000pt;}
.ws20{word-spacing:2.444000pt;}
.ws8{word-spacing:2.496000pt;}
.ws22{word-spacing:2.652000pt;}
.ws3c{word-spacing:2.704000pt;}
.ws30{word-spacing:2.808000pt;}
.ws31{word-spacing:2.860000pt;}
.wsc{word-spacing:2.912000pt;}
.ws33{word-spacing:3.016000pt;}
.ws6{word-spacing:3.068000pt;}
.ws2a{word-spacing:3.120000pt;}
.ws18{word-spacing:3.224000pt;}
.ws2c{word-spacing:3.432000pt;}
.wsf{word-spacing:3.484000pt;}
.ws2b{word-spacing:3.536000pt;}
.ws1b{word-spacing:3.588000pt;}
.wsa{word-spacing:3.640000pt;}
.ws29{word-spacing:3.692000pt;}
.ws1e{word-spacing:3.848000pt;}
.ws3a{word-spacing:3.952000pt;}
.ws7{word-spacing:4.004000pt;}
.ws9{word-spacing:4.160000pt;}
.wse{word-spacing:4.264000pt;}
.ws3b{word-spacing:4.316000pt;}
.ws14{word-spacing:4.472000pt;}
.ws25{word-spacing:4.576000pt;}
.wsd{word-spacing:4.784000pt;}
.ws17{word-spacing:4.836000pt;}
.ws3d{word-spacing:4.992000pt;}
.ws2e{word-spacing:5.096000pt;}
.wsb{word-spacing:5.252000pt;}
.ws39{word-spacing:5.304000pt;}
.ws40{word-spacing:5.564000pt;}
.ws36{word-spacing:5.668000pt;}
.ws3f{word-spacing:5.928000pt;}
.ws3e{word-spacing:6.240000pt;}
.ws28{word-spacing:6.292000pt;}
.ws35{word-spacing:6.344000pt;}
.ws26{word-spacing:6.448000pt;}
.ws13{word-spacing:6.500000pt;}
.ws4{word-spacing:9.472000pt;}
.ws1{word-spacing:11.333333pt;}
.ws3{word-spacing:11.861333pt;}
._0{margin-left:-1.659200pt;}
._2{width:11.861333pt;}
._1{width:707.952533pt;}
._3{width:998.831467pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:45.333333pt;}
.fs5{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:115.561400pt;}
.y57{bottom:126.670533pt;}
.y2c{bottom:130.056400pt;}
.y56{bottom:141.165533pt;}
.y2b{bottom:144.551400pt;}
.y55{bottom:155.660533pt;}
.y2a{bottom:159.046400pt;}
.y54{bottom:170.155533pt;}
.y29{bottom:173.541400pt;}
.y53{bottom:184.650533pt;}
.y28{bottom:188.036400pt;}
.y52{bottom:199.145533pt;}
.y27{bottom:202.531400pt;}
.y51{bottom:213.640533pt;}
.y26{bottom:217.026400pt;}
.y50{bottom:228.135533pt;}
.y25{bottom:231.521400pt;}
.y4f{bottom:242.630533pt;}
.y24{bottom:246.016400pt;}
.y4e{bottom:257.125533pt;}
.y23{bottom:260.511400pt;}
.y4d{bottom:271.620533pt;}
.y22{bottom:275.006400pt;}
.y4c{bottom:286.115533pt;}
.y21{bottom:289.501400pt;}
.y4b{bottom:300.610533pt;}
.y20{bottom:303.996400pt;}
.y4a{bottom:315.105533pt;}
.y1f{bottom:318.491400pt;}
.y49{bottom:329.600533pt;}
.y1e{bottom:332.986400pt;}
.y48{bottom:344.095533pt;}
.y1d{bottom:347.481400pt;}
.y47{bottom:358.590533pt;}
.y1c{bottom:361.976400pt;}
.y46{bottom:373.085533pt;}
.y1b{bottom:376.471400pt;}
.y45{bottom:387.580533pt;}
.y1a{bottom:390.966400pt;}
.y44{bottom:402.075533pt;}
.y19{bottom:405.461400pt;}
.y43{bottom:416.570533pt;}
.y18{bottom:419.956400pt;}
.y42{bottom:431.065533pt;}
.y17{bottom:434.451400pt;}
.y41{bottom:445.560533pt;}
.y16{bottom:448.946400pt;}
.y40{bottom:460.055533pt;}
.y15{bottom:463.441400pt;}
.y3f{bottom:474.550533pt;}
.y14{bottom:477.936400pt;}
.y3e{bottom:489.045533pt;}
.y13{bottom:492.431400pt;}
.y3d{bottom:503.540533pt;}
.y12{bottom:506.926400pt;}
.y3c{bottom:518.035533pt;}
.y11{bottom:521.421400pt;}
.y3b{bottom:532.530533pt;}
.y10{bottom:535.916400pt;}
.y3a{bottom:547.025533pt;}
.yf{bottom:550.411400pt;}
.y39{bottom:561.520533pt;}
.ye{bottom:564.906400pt;}
.y38{bottom:576.015533pt;}
.yd{bottom:579.401400pt;}
.y37{bottom:590.510533pt;}
.yc{bottom:593.896400pt;}
.y36{bottom:605.005533pt;}
.yb{bottom:608.391400pt;}
.y35{bottom:619.500533pt;}
.ya{bottom:622.886400pt;}
.y34{bottom:633.995533pt;}
.y9{bottom:637.381400pt;}
.y33{bottom:648.490533pt;}
.y8{bottom:651.876400pt;}
.y32{bottom:662.985533pt;}
.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.626400pt;}
.y5{bottom:771.458533pt;}
.y4{bottom:783.458533pt;}
.h5{height:31.402667pt;}
.h4{height:39.552000pt;}
.h2{height:40.662760pt;}
.h8{height:45.446615pt;}
.h9{height:46.083984pt;}
.h7{height:46.642578pt;}
.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;}
.x1{left:83.148533pt;}
.x5{left:95.243067pt;}
.x4{left:105.825733pt;}
.x6{left:117.916133pt;}
.x8{left:339.859533pt;}
.x3{left:357.270133pt;}
.x7{left:420.831200pt;}
.x2{left:450.719467pt;}
}




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