
    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_3c26e32e5ca57f5d43f627eb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.702000;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_d9964d7bf5389853cd8bd673.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_d22b1b61c44fbf259612f5d2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.700000;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_23bf8805bddbee15263ddc68.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921022;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_0b8a16316033a9b35f32fec6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959000;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_74d95d8511fb4832dfb3f584.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.692000;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_abce9077f0fdf1e15c473c68.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.889000;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;}
.m1{transform:matrix(0.191326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191326,0.000000,0.000000,0.250000,0,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;}
.v2{vertical-align:18.899550px;}
.v1{vertical-align:72.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.585512px;}
.ls1{letter-spacing:22.684320px;}
.ls2{letter-spacing:22.704000px;}
.ls5{letter-spacing:1480.218540px;}
.ls4{letter-spacing:1497.226320px;}
.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;}
}
.ws5{word-spacing:-54.000000px;}
.ws1{word-spacing:-42.940275px;}
.ws0{word-spacing:-36.605407px;}
.ws4{word-spacing:-15.750000px;}
.ws3{word-spacing:-15.012000px;}
.ws6{word-spacing:-11.812500px;}
.ws2{word-spacing:0.000000px;}
._1{margin-left:-22.800000px;}
._18{margin-left:-11.655000px;}
._19{margin-left:-9.602584px;}
._14{margin-left:-8.185481px;}
._9{margin-left:-6.171488px;}
._2{margin-left:-4.800000px;}
._4{margin-left:-3.732000px;}
._0{margin-left:-2.585512px;}
._3{margin-left:-1.381952px;}
._13{width:1.502928px;}
._7{width:2.585512px;}
._5{width:3.726000px;}
._6{width:4.806000px;}
._17{width:5.985000px;}
._a{width:7.119000px;}
._15{width:8.127000px;}
._b{width:9.382952px;}
._8{width:11.335952px;}
._11{width:13.293000px;}
._f{width:14.742000px;}
._1e{width:16.947000px;}
._1a{width:18.081000px;}
._1f{width:20.979000px;}
._c{width:23.116952px;}
._16{width:24.259048px;}
._d{width:25.956000px;}
._e{width:27.153000px;}
._1b{width:30.618000px;}
._12{width:31.689000px;}
._1c{width:34.965000px;}
._1d{width:39.420000px;}
._10{width:52.857000px;}
.fc2{color:rgb(227,181,77);}
.fc1{color:rgb(0,146,110);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:47.250000px;}
.fs2{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fs3{font-size:84.000000px;}
.fs4{font-size:96.000000px;}
.fs1{font-size:136.079580px;}
.fs6{font-size:171.761100px;}
.y0{bottom:0.000000px;}
.y4{bottom:9.721080px;}
.y3{bottom:39.039645px;}
.y7a{bottom:86.490495px;}
.y1{bottom:86.490510px;}
.y9b{bottom:122.456700px;}
.y48{bottom:122.456812px;}
.y79{bottom:122.456925px;}
.y29{bottom:122.457037px;}
.y78{bottom:140.456812px;}
.y28{bottom:140.456925px;}
.y27{bottom:158.456812px;}
.y77{bottom:158.457038px;}
.y47{bottom:176.456812px;}
.y76{bottom:176.456925px;}
.y26{bottom:176.457037px;}
.y75{bottom:194.456813px;}
.y25{bottom:194.456925px;}
.y9a{bottom:194.457038px;}
.y46{bottom:194.457375px;}
.y24{bottom:212.456812px;}
.y99{bottom:212.456925px;}
.y45{bottom:212.457262px;}
.y98{bottom:230.456813px;}
.y23{bottom:230.456925px;}
.y44{bottom:230.457150px;}
.y22{bottom:248.456812px;}
.y97{bottom:248.456925px;}
.y43{bottom:248.457037px;}
.y74{bottom:266.456813px;}
.y21{bottom:266.456925px;}
.y73{bottom:284.456700px;}
.y20{bottom:284.456812px;}
.y96{bottom:284.457038px;}
.yab{bottom:284.457375px;}
.y1f{bottom:302.456812px;}
.y95{bottom:302.456925px;}
.y42{bottom:302.457150px;}
.yaa{bottom:302.457263px;}
.y81{bottom:302.457375px;}
.y1e{bottom:320.456812px;}
.y41{bottom:320.457037px;}
.ya9{bottom:320.457150px;}
.y80{bottom:320.457263px;}
.y1d{bottom:338.456700px;}
.y40{bottom:338.456925px;}
.ya8{bottom:338.457038px;}
.y7f{bottom:338.457150px;}
.y3f{bottom:356.456812px;}
.y1c{bottom:356.456925px;}
.y7e{bottom:356.457038px;}
.y1b{bottom:374.456812px;}
.y7d{bottom:374.456925px;}
.y7c{bottom:392.456813px;}
.y3e{bottom:392.456925px;}
.y1a{bottom:392.457150px;}
.y94{bottom:392.457375px;}
.y7b{bottom:410.456700px;}
.y3d{bottom:410.456812px;}
.y19{bottom:410.457037px;}
.y93{bottom:410.457263px;}
.ya7{bottom:410.457825px;}
.y3c{bottom:428.456812px;}
.y18{bottom:428.456925px;}
.y92{bottom:428.457150px;}
.ya6{bottom:428.457713px;}
.y17{bottom:446.456812px;}
.y3b{bottom:446.457037px;}
.ya5{bottom:446.457600px;}
.y9e{bottom:455.918925px;}
.y72{bottom:464.456813px;}
.y16{bottom:464.456925px;}
.ya4{bottom:464.457488px;}
.y62{bottom:467.456865px;}
.y9d{bottom:472.419000px;}
.y71{bottom:482.456700px;}
.y15{bottom:482.456812px;}
.ya3{bottom:482.457375px;}
.y61{bottom:483.956700px;}
.y9c{bottom:488.918790px;}
.y14{bottom:500.456812px;}
.ya2{bottom:500.457263px;}
.y13{bottom:518.456700px;}
.y3a{bottom:518.457150px;}
.y91{bottom:536.456475px;}
.y12{bottom:536.456812px;}
.y60{bottom:536.456925px;}
.y39{bottom:536.457037px;}
.y90{bottom:553.706370px;}
.y5f{bottom:554.456813px;}
.y11{bottom:554.456925px;}
.y8f{bottom:570.956535px;}
.y10{bottom:572.456812px;}
.y5e{bottom:572.456925px;}
.y8e{bottom:588.206700px;}
.y38{bottom:590.456700px;}
.y5d{bottom:590.456813px;}
.yf{bottom:590.456925px;}
.ya1{bottom:590.457150px;}
.yd{bottom:608.456700px;}
.ye{bottom:608.456812px;}
.y70{bottom:608.456925px;}
.y37{bottom:608.457037px;}
.y5c{bottom:608.457150px;}
.y8d{bottom:623.456700px;}
.y6f{bottom:626.456813px;}
.y36{bottom:626.456925px;}
.y5b{bottom:626.457038px;}
.y35{bottom:644.456812px;}
.y5a{bottom:644.456925px;}
.y6e{bottom:644.457038px;}
.y8c{bottom:650.456700px;}
.y59{bottom:662.456813px;}
.y6d{bottom:662.456925px;}
.y34{bottom:662.457150px;}
.yc{bottom:670.334655px;}
.y8b{bottom:677.456700px;}
.y6c{bottom:680.456813px;}
.y58{bottom:680.456925px;}
.y33{bottom:680.457037px;}
.yb{bottom:687.584490px;}
.y6b{bottom:698.456700px;}
.y57{bottom:698.456813px;}
.y32{bottom:698.456925px;}
.ya{bottom:704.834655px;}
.y31{bottom:716.456812px;}
.yb2{bottom:719.456865px;}
.y8a{bottom:728.456700px;}
.y30{bottom:734.456812px;}
.y56{bottom:734.457150px;}
.yb1{bottom:735.956700px;}
.y9{bottom:740.084655px;}
.y55{bottom:752.457037px;}
.y2f{bottom:752.457150px;}
.y6a{bottom:754.706535px;}
.y8{bottom:767.084655px;}
.y54{bottom:770.456925px;}
.y2e{bottom:770.457037px;}
.y69{bottom:771.956535px;}
.y53{bottom:788.456813px;}
.y2d{bottom:788.456925px;}
.y68{bottom:789.206700px;}
.y7{bottom:794.084655px;}
.y2c{bottom:806.456812px;}
.yb0{bottom:806.457150px;}
.ya0{bottom:824.456700px;}
.y2b{bottom:824.456812px;}
.y52{bottom:824.457037px;}
.y89{bottom:830.456925px;}
.y67{bottom:837.454725px;}
.y6{bottom:842.084655px;}
.y51{bottom:842.456925px;}
.y2a{bottom:842.456947px;}
.y88{bottom:846.957030px;}
.y50{bottom:860.456813px;}
.y87{bottom:863.456865px;}
.y66{bottom:864.454725px;}
.y4f{bottom:878.456813px;}
.yaf{bottom:878.457150px;}
.y86{bottom:879.956700px;}
.y65{bottom:891.454725px;}
.y4e{bottom:896.456813px;}
.yae{bottom:896.457037px;}
.y85{bottom:914.456925px;}
.y4d{bottom:914.457037px;}
.y84{bottom:932.456813px;}
.y4c{bottom:932.456925px;}
.y64{bottom:942.454875px;}
.y5{bottom:950.456700px;}
.y4b{bottom:950.456813px;}
.y83{bottom:950.456992px;}
.yad{bottom:950.457465px;}
.y2{bottom:955.755105px;}
.y63{bottom:966.454725px;}
.y4a{bottom:968.456700px;}
.y82{bottom:968.456880px;}
.yac{bottom:968.457353px;}
.y49{bottom:1015.037880px;}
.y9f{bottom:1015.037895px;}
.h5{height:33.168000px;}
.h8{height:39.366000px;}
.hc{height:39.366660px;}
.h2{height:41.280000px;}
.hd{height:41.553000px;}
.ha{height:43.344000px;}
.hb{height:43.533000px;}
.he{height:51.407550px;}
.h6{height:58.044000px;}
.h7{height:69.984000px;}
.h3{height:70.500000px;}
.h4{height:93.622751px;}
.h9{height:118.171637px;}
.h1{height:1088.250000px;}
.h0{height:1088.503875px;}
.w3{width:153.000000px;}
.w4{width:820.629915px;}
.w1{width:833.250000px;}
.w2{width:833.385825px;}
.w0{width:833.385870px;}
.x0{left:0.000000px;}
.x3{left:7.029465px;}
.xf{left:12.755910px;}
.x10{left:72.283470px;}
.x2{left:77.811015px;}
.x5{left:85.039380px;}
.xa{left:89.291340px;}
.x7{left:97.789320px;}
.xb{left:102.041377px;}
.x6{left:123.213067px;}
.x4{left:375.497565px;}
.x8{left:425.197110px;}
.xc{left:429.448815px;}
.x9{left:437.946795px;}
.xe{left:442.198755px;}
.x12{left:449.071590px;}
.xd{left:453.323550px;}
.x11{left:708.838575px;}
.x1{left:721.594485px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.799600pt;}
.v1{vertical-align:64.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.298233pt;}
.ls1{letter-spacing:20.163840pt;}
.ls2{letter-spacing:20.181333pt;}
.ls5{letter-spacing:1315.749813pt;}
.ls4{letter-spacing:1330.867840pt;}
.ws5{word-spacing:-48.000000pt;}
.ws1{word-spacing:-38.169133pt;}
.ws0{word-spacing:-32.538140pt;}
.ws4{word-spacing:-14.000000pt;}
.ws3{word-spacing:-13.344000pt;}
.ws6{word-spacing:-10.500000pt;}
.ws2{word-spacing:0.000000pt;}
._1{margin-left:-20.266667pt;}
._18{margin-left:-10.360000pt;}
._19{margin-left:-8.535630pt;}
._14{margin-left:-7.275983pt;}
._9{margin-left:-5.485767pt;}
._2{margin-left:-4.266667pt;}
._4{margin-left:-3.317333pt;}
._0{margin-left:-2.298233pt;}
._3{margin-left:-1.228402pt;}
._13{width:1.335936pt;}
._7{width:2.298233pt;}
._5{width:3.312000pt;}
._6{width:4.272000pt;}
._17{width:5.320000pt;}
._a{width:6.328000pt;}
._15{width:7.224000pt;}
._b{width:8.340402pt;}
._8{width:10.076402pt;}
._11{width:11.816000pt;}
._f{width:13.104000pt;}
._1e{width:15.064000pt;}
._1a{width:16.072000pt;}
._1f{width:18.648000pt;}
._c{width:20.548402pt;}
._16{width:21.563598pt;}
._d{width:23.072000pt;}
._e{width:24.136000pt;}
._1b{width:27.216000pt;}
._12{width:28.168000pt;}
._1c{width:31.080000pt;}
._1d{width:35.040000pt;}
._10{width:46.984000pt;}
.fs9{font-size:42.000000pt;}
.fs2{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fs3{font-size:74.666667pt;}
.fs4{font-size:85.333333pt;}
.fs1{font-size:120.959627pt;}
.fs6{font-size:152.676533pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:8.640960pt;}
.y3{bottom:34.701907pt;}
.y7a{bottom:76.880440pt;}
.y1{bottom:76.880453pt;}
.y9b{bottom:108.850400pt;}
.y48{bottom:108.850500pt;}
.y79{bottom:108.850600pt;}
.y29{bottom:108.850700pt;}
.y78{bottom:124.850500pt;}
.y28{bottom:124.850600pt;}
.y27{bottom:140.850500pt;}
.y77{bottom:140.850700pt;}
.y47{bottom:156.850500pt;}
.y76{bottom:156.850600pt;}
.y26{bottom:156.850700pt;}
.y75{bottom:172.850500pt;}
.y25{bottom:172.850600pt;}
.y9a{bottom:172.850700pt;}
.y46{bottom:172.851000pt;}
.y24{bottom:188.850500pt;}
.y99{bottom:188.850600pt;}
.y45{bottom:188.850900pt;}
.y98{bottom:204.850500pt;}
.y23{bottom:204.850600pt;}
.y44{bottom:204.850800pt;}
.y22{bottom:220.850500pt;}
.y97{bottom:220.850600pt;}
.y43{bottom:220.850700pt;}
.y74{bottom:236.850500pt;}
.y21{bottom:236.850600pt;}
.y73{bottom:252.850400pt;}
.y20{bottom:252.850500pt;}
.y96{bottom:252.850700pt;}
.yab{bottom:252.851000pt;}
.y1f{bottom:268.850500pt;}
.y95{bottom:268.850600pt;}
.y42{bottom:268.850800pt;}
.yaa{bottom:268.850900pt;}
.y81{bottom:268.851000pt;}
.y1e{bottom:284.850500pt;}
.y41{bottom:284.850700pt;}
.ya9{bottom:284.850800pt;}
.y80{bottom:284.850900pt;}
.y1d{bottom:300.850400pt;}
.y40{bottom:300.850600pt;}
.ya8{bottom:300.850700pt;}
.y7f{bottom:300.850800pt;}
.y3f{bottom:316.850500pt;}
.y1c{bottom:316.850600pt;}
.y7e{bottom:316.850700pt;}
.y1b{bottom:332.850500pt;}
.y7d{bottom:332.850600pt;}
.y7c{bottom:348.850500pt;}
.y3e{bottom:348.850600pt;}
.y1a{bottom:348.850800pt;}
.y94{bottom:348.851000pt;}
.y7b{bottom:364.850400pt;}
.y3d{bottom:364.850500pt;}
.y19{bottom:364.850700pt;}
.y93{bottom:364.850900pt;}
.ya7{bottom:364.851400pt;}
.y3c{bottom:380.850500pt;}
.y18{bottom:380.850600pt;}
.y92{bottom:380.850800pt;}
.ya6{bottom:380.851300pt;}
.y17{bottom:396.850500pt;}
.y3b{bottom:396.850700pt;}
.ya5{bottom:396.851200pt;}
.y9e{bottom:405.261267pt;}
.y72{bottom:412.850500pt;}
.y16{bottom:412.850600pt;}
.ya4{bottom:412.851100pt;}
.y62{bottom:415.517213pt;}
.y9d{bottom:419.928000pt;}
.y71{bottom:428.850400pt;}
.y15{bottom:428.850500pt;}
.ya3{bottom:428.851000pt;}
.y61{bottom:430.183733pt;}
.y9c{bottom:434.594480pt;}
.y14{bottom:444.850500pt;}
.ya2{bottom:444.850900pt;}
.y13{bottom:460.850400pt;}
.y3a{bottom:460.850800pt;}
.y91{bottom:476.850200pt;}
.y12{bottom:476.850500pt;}
.y60{bottom:476.850600pt;}
.y39{bottom:476.850700pt;}
.y90{bottom:492.183440pt;}
.y5f{bottom:492.850500pt;}
.y11{bottom:492.850600pt;}
.y8f{bottom:507.516920pt;}
.y10{bottom:508.850500pt;}
.y5e{bottom:508.850600pt;}
.y8e{bottom:522.850400pt;}
.y38{bottom:524.850400pt;}
.y5d{bottom:524.850500pt;}
.yf{bottom:524.850600pt;}
.ya1{bottom:524.850800pt;}
.yd{bottom:540.850400pt;}
.ye{bottom:540.850500pt;}
.y70{bottom:540.850600pt;}
.y37{bottom:540.850700pt;}
.y5c{bottom:540.850800pt;}
.y8d{bottom:554.183733pt;}
.y6f{bottom:556.850500pt;}
.y36{bottom:556.850600pt;}
.y5b{bottom:556.850700pt;}
.y35{bottom:572.850500pt;}
.y5a{bottom:572.850600pt;}
.y6e{bottom:572.850700pt;}
.y8c{bottom:578.183733pt;}
.y59{bottom:588.850500pt;}
.y6d{bottom:588.850600pt;}
.y34{bottom:588.850800pt;}
.yc{bottom:595.853027pt;}
.y8b{bottom:602.183733pt;}
.y6c{bottom:604.850500pt;}
.y58{bottom:604.850600pt;}
.y33{bottom:604.850700pt;}
.yb{bottom:611.186213pt;}
.y6b{bottom:620.850400pt;}
.y57{bottom:620.850500pt;}
.y32{bottom:620.850600pt;}
.ya{bottom:626.519693pt;}
.y31{bottom:636.850500pt;}
.yb2{bottom:639.517213pt;}
.y8a{bottom:647.517067pt;}
.y30{bottom:652.850500pt;}
.y56{bottom:652.850800pt;}
.yb1{bottom:654.183733pt;}
.y9{bottom:657.853027pt;}
.y55{bottom:668.850700pt;}
.y2f{bottom:668.850800pt;}
.y6a{bottom:670.850253pt;}
.y8{bottom:681.853027pt;}
.y54{bottom:684.850600pt;}
.y2e{bottom:684.850700pt;}
.y69{bottom:686.183587pt;}
.y53{bottom:700.850500pt;}
.y2d{bottom:700.850600pt;}
.y68{bottom:701.517067pt;}
.y7{bottom:705.853027pt;}
.y2c{bottom:716.850500pt;}
.yb0{bottom:716.850800pt;}
.ya0{bottom:732.850400pt;}
.y2b{bottom:732.850500pt;}
.y52{bottom:732.850700pt;}
.y89{bottom:738.183933pt;}
.y67{bottom:744.404200pt;}
.y6{bottom:748.519693pt;}
.y51{bottom:748.850600pt;}
.y2a{bottom:748.850620pt;}
.y88{bottom:752.850693pt;}
.y50{bottom:764.850500pt;}
.y87{bottom:767.517213pt;}
.y66{bottom:768.404200pt;}
.y4f{bottom:780.850500pt;}
.yaf{bottom:780.850800pt;}
.y86{bottom:782.183733pt;}
.y65{bottom:792.404200pt;}
.y4e{bottom:796.850500pt;}
.yae{bottom:796.850700pt;}
.y85{bottom:812.850600pt;}
.y4d{bottom:812.850700pt;}
.y84{bottom:828.850500pt;}
.y4c{bottom:828.850600pt;}
.y64{bottom:837.737667pt;}
.y5{bottom:844.850400pt;}
.y4b{bottom:844.850500pt;}
.y83{bottom:844.850660pt;}
.yad{bottom:844.851080pt;}
.y2{bottom:849.560093pt;}
.y63{bottom:859.070867pt;}
.y4a{bottom:860.850400pt;}
.y82{bottom:860.850560pt;}
.yac{bottom:860.850980pt;}
.y49{bottom:902.255893pt;}
.y9f{bottom:902.255907pt;}
.h5{height:29.482667pt;}
.h8{height:34.992000pt;}
.hc{height:34.992587pt;}
.h2{height:36.693333pt;}
.hd{height:36.936000pt;}
.ha{height:38.528000pt;}
.hb{height:38.696000pt;}
.he{height:45.695600pt;}
.h6{height:51.594667pt;}
.h7{height:62.208000pt;}
.h3{height:62.666667pt;}
.h4{height:83.220223pt;}
.h9{height:105.041455pt;}
.h1{height:967.333333pt;}
.h0{height:967.559000pt;}
.w3{width:136.000000pt;}
.w4{width:729.448813pt;}
.w1{width:740.666667pt;}
.w2{width:740.787400pt;}
.w0{width:740.787440pt;}
.x0{left:0.000000pt;}
.x3{left:6.248413pt;}
.xf{left:11.338587pt;}
.x10{left:64.251973pt;}
.x2{left:69.165347pt;}
.x5{left:75.590560pt;}
.xa{left:79.370080pt;}
.x7{left:86.923840pt;}
.xb{left:90.703447pt;}
.x6{left:109.522727pt;}
.x4{left:333.775613pt;}
.x8{left:377.952987pt;}
.xc{left:381.732280pt;}
.x9{left:389.286040pt;}
.xe{left:393.065560pt;}
.x12{left:399.174747pt;}
.xd{left:402.954267pt;}
.x11{left:630.078733pt;}
.x1{left:641.417320pt;}
}




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