
    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_44b42a0ba7ba08040eab955e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_4584487198f7087778b74358.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984000;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_28aa403a322091599b68265a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.952637;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_fbd7c475d4b071e02438281b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.929688;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_17956eaadeda6d34509e3e88.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.984333;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_299f8cbe3fd3e238c7ec5d1c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.966016;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_085149f53ff1f7fa4dda9b8a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.984048;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_643c6196cfbbb7d8caaea526.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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);}
.v5{vertical-align:-21.978000px;}
.v2{vertical-align:-17.982000px;}
.v4{vertical-align:-5.460000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.008520px;}
.ls3{letter-spacing:0.009000px;}
.lsd{letter-spacing:0.009732px;}
.ls1{letter-spacing:0.012600px;}
.ls11{letter-spacing:0.016200px;}
.ls8{letter-spacing:0.016800px;}
.ls9{letter-spacing:0.019152px;}
.ls12{letter-spacing:0.021600px;}
.ls5{letter-spacing:0.024600px;}
.ls2{letter-spacing:0.025800px;}
.lse{letter-spacing:0.036000px;}
.lsb{letter-spacing:0.046800px;}
.ls10{letter-spacing:0.048600px;}
.ls13{letter-spacing:0.050400px;}
.lsc{letter-spacing:0.114000px;}
.ls15{letter-spacing:2.106000px;}
.lsf{letter-spacing:4.950000px;}
.lsa{letter-spacing:5.016000px;}
.ls6{letter-spacing:5.742000px;}
.ls14{letter-spacing:7.590000px;}
.ls7{letter-spacing:1204.380000px;}
.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:-16.500000px;}
.ws5{word-spacing:-15.000000px;}
.ws7{word-spacing:-13.500000px;}
.ws6{word-spacing:-9.619500px;}
.ws0{word-spacing:-9.427110px;}
.ws3{word-spacing:-8.745000px;}
.ws4{word-spacing:-0.871500px;}
.ws2{word-spacing:0.000000px;}
._f{margin-left:-2453.400000px;}
._17{margin-left:-10.973220px;}
._18{margin-left:-9.510000px;}
._19{margin-left:-7.458000px;}
._13{margin-left:-5.868000px;}
._0{margin-left:-4.440000px;}
._9{margin-left:-3.360000px;}
._3{margin-left:-2.100000px;}
._4{margin-left:-1.074780px;}
._6{width:1.128000px;}
._8{width:3.132000px;}
._a{width:4.524000px;}
._c{width:5.634000px;}
._7{width:7.074000px;}
._d{width:8.220000px;}
._b{width:9.402000px;}
._e{width:10.662000px;}
._5{width:12.388500px;}
._10{width:13.437000px;}
._2{width:14.784000px;}
._15{width:15.792000px;}
._11{width:18.018000px;}
._12{width:19.668000px;}
._16{width:21.168000px;}
._14{width:22.968000px;}
._1{width:1777.380000px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:31.482000px;}
.fs6{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:61.097550px;}
.y32{bottom:97.627800px;}
.y1e{bottom:106.752750px;}
.y31{bottom:115.627800px;}
.y63{bottom:119.352750px;}
.y1d{bottom:126.552750px;}
.y30{bottom:133.627800px;}
.y62{bottom:135.552750px;}
.y1c{bottom:146.352750px;}
.y2f{bottom:151.627800px;}
.y61{bottom:151.752750px;}
.y1b{bottom:166.152750px;}
.y60{bottom:167.952750px;}
.y2e{bottom:169.627800px;}
.y5f{bottom:184.152750px;}
.y1a{bottom:185.952750px;}
.y2d{bottom:187.627800px;}
.y5e{bottom:200.352750px;}
.y19{bottom:205.752750px;}
.y5d{bottom:216.552750px;}
.y18{bottom:225.552750px;}
.y5c{bottom:232.752750px;}
.y17{bottom:245.352750px;}
.y5b{bottom:248.952750px;}
.y16{bottom:265.152750px;}
.y5a{bottom:281.352750px;}
.y15{bottom:284.952750px;}
.y59{bottom:297.552750px;}
.y14{bottom:304.752750px;}
.y58{bottom:313.752750px;}
.y13{bottom:324.552750px;}
.y57{bottom:329.952750px;}
.y12{bottom:344.352750px;}
.y56{bottom:346.152750px;}
.y55{bottom:362.352750px;}
.y11{bottom:364.152750px;}
.y25{bottom:376.921200px;}
.y54{bottom:378.552750px;}
.y10{bottom:383.952750px;}
.y53{bottom:394.752750px;}
.y24{bottom:394.928100px;}
.yf{bottom:403.752750px;}
.y52{bottom:410.952750px;}
.y23{bottom:417.180150px;}
.ye{bottom:423.552750px;}
.y51{bottom:427.152750px;}
.y22{bottom:439.432050px;}
.y29{bottom:443.352750px;}
.y50{bottom:459.552750px;}
.y2{bottom:460.517550px;}
.y21{bottom:461.684100px;}
.y28{bottom:463.152750px;}
.y4f{bottom:475.752750px;}
.y27{bottom:482.952750px;}
.y20{bottom:483.929100px;}
.y4e{bottom:491.952750px;}
.y76{bottom:496.721100px;}
.yd{bottom:497.352750px;}
.y1f{bottom:501.929100px;}
.y26{bottom:502.752750px;}
.y4d{bottom:508.152750px;}
.y75{bottom:512.921100px;}
.y4c{bottom:524.352750px;}
.yc{bottom:531.552750px;}
.y4b{bottom:540.552750px;}
.y46{bottom:542.352750px;}
.y74{bottom:545.321100px;}
.yb{bottom:547.752750px;}
.y4a{bottom:556.752750px;}
.y45{bottom:562.152750px;}
.ya{bottom:563.952750px;}
.y49{bottom:572.952750px;}
.y44{bottom:581.952750px;}
.y48{bottom:589.152750px;}
.y73{bottom:593.921100px;}
.y9{bottom:596.352750px;}
.y43{bottom:601.752750px;}
.y47{bottom:605.352750px;}
.y72{bottom:610.121100px;}
.y8{bottom:617.048250px;}
.y42{bottom:621.552750px;}
.y71{bottom:626.321100px;}
.y7{bottom:628.752750px;}
.y41{bottom:641.352750px;}
.y6{bottom:649.448250px;}
.y70{bottom:658.721100px;}
.y5{bottom:661.152750px;}
.y40{bottom:680.952750px;}
.y4{bottom:695.352750px;}
.y3f{bottom:700.752750px;}
.y2b{bottom:708.232800px;}
.y2c{bottom:708.757800px;}
.y3e{bottom:720.552750px;}
.y3{bottom:740.352750px;}
.y3d{bottom:760.152750px;}
.y3c{bottom:779.952750px;}
.y6f{bottom:789.965400px;}
.y3b{bottom:799.752750px;}
.y6e{bottom:806.165400px;}
.y3a{bottom:819.552750px;}
.y6d{bottom:822.365400px;}
.y6c{bottom:838.565400px;}
.y39{bottom:839.352750px;}
.y6b{bottom:854.765400px;}
.y38{bottom:859.152750px;}
.y6a{bottom:870.965400px;}
.y37{bottom:878.952750px;}
.y69{bottom:887.165400px;}
.y36{bottom:898.752750px;}
.y68{bottom:903.365400px;}
.y35{bottom:918.552750px;}
.y67{bottom:919.565400px;}
.y66{bottom:935.765400px;}
.y34{bottom:938.352750px;}
.y2a{bottom:940.507800px;}
.y65{bottom:951.965400px;}
.y33{bottom:958.152750px;}
.y64{bottom:968.165400px;}
.h6{height:22.509630px;}
.h9{height:35.991211px;}
.h8{height:37.599609px;}
.h7{height:38.610000px;}
.h13{height:38.612571px;}
.h12{height:38.628000px;}
.hc{height:39.990234px;}
.h2{height:42.900000px;}
.ha{height:42.902857px;}
.hd{height:43.294307px;}
.hb{height:43.989258px;}
.he{height:44.307991px;}
.hf{height:44.308591px;}
.h3{height:45.955078px;}
.h10{height:48.769811px;}
.h11{height:48.770411px;}
.h5{height:49.502596px;}
.h4{height:55.986328px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:43.165350px;}
.x3{left:52.165350px;}
.x4{left:55.919850px;}
.x9{left:68.031600px;}
.x11{left:81.535350px;}
.xc{left:84.531450px;}
.xb{left:87.524700px;}
.xf{left:100.795350px;}
.xa{left:129.531600px;}
.x5{left:359.305350px;}
.x6{left:372.059850px;}
.x7{left:375.805350px;}
.xd{left:384.435450px;}
.xe{left:397.189950px;}
.x10{left:407.230350px;}
.x12{left:461.818950px;}
.x13{left:482.674950px;}
.x2{left:490.210350px;}
.x8{left:529.726200px;}
@media print{
.v5{vertical-align:-19.536000pt;}
.v2{vertical-align:-15.984000pt;}
.v4{vertical-align:-4.853333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.007573pt;}
.ls3{letter-spacing:0.008000pt;}
.lsd{letter-spacing:0.008651pt;}
.ls1{letter-spacing:0.011200pt;}
.ls11{letter-spacing:0.014400pt;}
.ls8{letter-spacing:0.014933pt;}
.ls9{letter-spacing:0.017024pt;}
.ls12{letter-spacing:0.019200pt;}
.ls5{letter-spacing:0.021867pt;}
.ls2{letter-spacing:0.022933pt;}
.lse{letter-spacing:0.032000pt;}
.lsb{letter-spacing:0.041600pt;}
.ls10{letter-spacing:0.043200pt;}
.ls13{letter-spacing:0.044800pt;}
.lsc{letter-spacing:0.101333pt;}
.ls15{letter-spacing:1.872000pt;}
.lsf{letter-spacing:4.400000pt;}
.lsa{letter-spacing:4.458667pt;}
.ls6{letter-spacing:5.104000pt;}
.ls14{letter-spacing:6.746667pt;}
.ls7{letter-spacing:1070.560000pt;}
.ws1{word-spacing:-14.666667pt;}
.ws5{word-spacing:-13.333333pt;}
.ws7{word-spacing:-12.000000pt;}
.ws6{word-spacing:-8.550667pt;}
.ws0{word-spacing:-8.379653pt;}
.ws3{word-spacing:-7.773333pt;}
.ws4{word-spacing:-0.774667pt;}
.ws2{word-spacing:0.000000pt;}
._f{margin-left:-2180.800000pt;}
._17{margin-left:-9.753973pt;}
._18{margin-left:-8.453333pt;}
._19{margin-left:-6.629333pt;}
._13{margin-left:-5.216000pt;}
._0{margin-left:-3.946667pt;}
._9{margin-left:-2.986667pt;}
._3{margin-left:-1.866667pt;}
._4{margin-left:-0.955360pt;}
._6{width:1.002667pt;}
._8{width:2.784000pt;}
._a{width:4.021333pt;}
._c{width:5.008000pt;}
._7{width:6.288000pt;}
._d{width:7.306667pt;}
._b{width:8.357333pt;}
._e{width:9.477333pt;}
._5{width:11.012000pt;}
._10{width:11.944000pt;}
._2{width:13.141333pt;}
._15{width:14.037333pt;}
._11{width:16.016000pt;}
._12{width:17.482667pt;}
._16{width:18.816000pt;}
._14{width:20.416000pt;}
._1{width:1579.893333pt;}
.fs4{font-size:27.984000pt;}
.fs6{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:54.308933pt;}
.y32{bottom:86.780267pt;}
.y1e{bottom:94.891333pt;}
.y31{bottom:102.780267pt;}
.y63{bottom:106.091333pt;}
.y1d{bottom:112.491333pt;}
.y30{bottom:118.780267pt;}
.y62{bottom:120.491333pt;}
.y1c{bottom:130.091333pt;}
.y2f{bottom:134.780267pt;}
.y61{bottom:134.891333pt;}
.y1b{bottom:147.691333pt;}
.y60{bottom:149.291333pt;}
.y2e{bottom:150.780267pt;}
.y5f{bottom:163.691333pt;}
.y1a{bottom:165.291333pt;}
.y2d{bottom:166.780267pt;}
.y5e{bottom:178.091333pt;}
.y19{bottom:182.891333pt;}
.y5d{bottom:192.491333pt;}
.y18{bottom:200.491333pt;}
.y5c{bottom:206.891333pt;}
.y17{bottom:218.091333pt;}
.y5b{bottom:221.291333pt;}
.y16{bottom:235.691333pt;}
.y5a{bottom:250.091333pt;}
.y15{bottom:253.291333pt;}
.y59{bottom:264.491333pt;}
.y14{bottom:270.891333pt;}
.y58{bottom:278.891333pt;}
.y13{bottom:288.491333pt;}
.y57{bottom:293.291333pt;}
.y12{bottom:306.091333pt;}
.y56{bottom:307.691333pt;}
.y55{bottom:322.091333pt;}
.y11{bottom:323.691333pt;}
.y25{bottom:335.041067pt;}
.y54{bottom:336.491333pt;}
.y10{bottom:341.291333pt;}
.y53{bottom:350.891333pt;}
.y24{bottom:351.047200pt;}
.yf{bottom:358.891333pt;}
.y52{bottom:365.291333pt;}
.y23{bottom:370.826800pt;}
.ye{bottom:376.491333pt;}
.y51{bottom:379.691333pt;}
.y22{bottom:390.606267pt;}
.y29{bottom:394.091333pt;}
.y50{bottom:408.491333pt;}
.y2{bottom:409.348933pt;}
.y21{bottom:410.385867pt;}
.y28{bottom:411.691333pt;}
.y4f{bottom:422.891333pt;}
.y27{bottom:429.291333pt;}
.y20{bottom:430.159200pt;}
.y4e{bottom:437.291333pt;}
.y76{bottom:441.529867pt;}
.yd{bottom:442.091333pt;}
.y1f{bottom:446.159200pt;}
.y26{bottom:446.891333pt;}
.y4d{bottom:451.691333pt;}
.y75{bottom:455.929867pt;}
.y4c{bottom:466.091333pt;}
.yc{bottom:472.491333pt;}
.y4b{bottom:480.491333pt;}
.y46{bottom:482.091333pt;}
.y74{bottom:484.729867pt;}
.yb{bottom:486.891333pt;}
.y4a{bottom:494.891333pt;}
.y45{bottom:499.691333pt;}
.ya{bottom:501.291333pt;}
.y49{bottom:509.291333pt;}
.y44{bottom:517.291333pt;}
.y48{bottom:523.691333pt;}
.y73{bottom:527.929867pt;}
.y9{bottom:530.091333pt;}
.y43{bottom:534.891333pt;}
.y47{bottom:538.091333pt;}
.y72{bottom:542.329867pt;}
.y8{bottom:548.487333pt;}
.y42{bottom:552.491333pt;}
.y71{bottom:556.729867pt;}
.y7{bottom:558.891333pt;}
.y41{bottom:570.091333pt;}
.y6{bottom:577.287333pt;}
.y70{bottom:585.529867pt;}
.y5{bottom:587.691333pt;}
.y40{bottom:605.291333pt;}
.y4{bottom:618.091333pt;}
.y3f{bottom:622.891333pt;}
.y2b{bottom:629.540267pt;}
.y2c{bottom:630.006933pt;}
.y3e{bottom:640.491333pt;}
.y3{bottom:658.091333pt;}
.y3d{bottom:675.691333pt;}
.y3c{bottom:693.291333pt;}
.y6f{bottom:702.191467pt;}
.y3b{bottom:710.891333pt;}
.y6e{bottom:716.591467pt;}
.y3a{bottom:728.491333pt;}
.y6d{bottom:730.991467pt;}
.y6c{bottom:745.391467pt;}
.y39{bottom:746.091333pt;}
.y6b{bottom:759.791467pt;}
.y38{bottom:763.691333pt;}
.y6a{bottom:774.191467pt;}
.y37{bottom:781.291333pt;}
.y69{bottom:788.591467pt;}
.y36{bottom:798.891333pt;}
.y68{bottom:802.991467pt;}
.y35{bottom:816.491333pt;}
.y67{bottom:817.391467pt;}
.y66{bottom:831.791467pt;}
.y34{bottom:834.091333pt;}
.y2a{bottom:836.006933pt;}
.y65{bottom:846.191467pt;}
.y33{bottom:851.691333pt;}
.y64{bottom:860.591467pt;}
.h6{height:20.008560pt;}
.h9{height:31.992188pt;}
.h8{height:33.421875pt;}
.h7{height:34.320000pt;}
.h13{height:34.322286pt;}
.h12{height:34.336000pt;}
.hc{height:35.546875pt;}
.h2{height:38.133333pt;}
.ha{height:38.135873pt;}
.hd{height:38.483828pt;}
.hb{height:39.101562pt;}
.he{height:39.384881pt;}
.hf{height:39.385415pt;}
.h3{height:40.848958pt;}
.h10{height:43.350943pt;}
.h11{height:43.351476pt;}
.h5{height:44.002308pt;}
.h4{height:49.765625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:38.369200pt;}
.x3{left:46.369200pt;}
.x4{left:49.706533pt;}
.x9{left:60.472533pt;}
.x11{left:72.475867pt;}
.xc{left:75.139067pt;}
.xb{left:77.799733pt;}
.xf{left:89.595867pt;}
.xa{left:115.139200pt;}
.x5{left:319.382533pt;}
.x6{left:330.719867pt;}
.x7{left:334.049200pt;}
.xd{left:341.720400pt;}
.xe{left:353.057733pt;}
.x10{left:361.982533pt;}
.x12{left:410.505733pt;}
.x13{left:429.044400pt;}
.x2{left:435.742533pt;}
.x8{left:470.867733pt;}
}




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