
    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_b28a4cbd26d5bb618ceeefb0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.095703;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_635c7c3b8b391f5e2a7d9763.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_72b96b9e0fa051810d516672.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7a40f7f5741304742feb5465.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_897c8c45a5755be36f222b71.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.961000;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_93b129ec30c7e029e489e0f3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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);}
.v3{vertical-align:-21.977400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.987000px;}
.v1{vertical-align:27.972000px;}
.lsa{letter-spacing:-8.514000px;}
.lsb{letter-spacing:-7.326000px;}
.ls8{letter-spacing:-1.998000px;}
.ls7{letter-spacing:-1.423686px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.881496px;}
.ls9{letter-spacing:1.054800px;}
.ls1{letter-spacing:1.890000px;}
.ls4{letter-spacing:2.100000px;}
.ls5{letter-spacing:2.310000px;}
.ls0{letter-spacing:2.940000px;}
.ls6{letter-spacing:40.068000px;}
.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;}
}
.ws0{word-spacing:-23.940000px;}
.ws7{word-spacing:-16.500000px;}
.ws10{word-spacing:-11.502000px;}
.ws8{word-spacing:-9.619500px;}
.wsf{word-spacing:-8.195814px;}
.ws1d{word-spacing:-7.986000px;}
.ws39{word-spacing:-6.534000px;}
.ws33{word-spacing:-6.204000px;}
.ws26{word-spacing:-3.630000px;}
.ws12{word-spacing:-3.234000px;}
.ws3{word-spacing:-2.940000px;}
.ws3a{word-spacing:-2.838000px;}
.ws1e{word-spacing:-2.310000px;}
.ws45{word-spacing:-2.244000px;}
.ws3d{word-spacing:-2.178000px;}
.ws9{word-spacing:-2.100000px;}
.ws27{word-spacing:-1.980000px;}
.ws49{word-spacing:-1.914000px;}
.ws5{word-spacing:-1.890000px;}
.ws3b{word-spacing:-1.518000px;}
.ws44{word-spacing:-1.452000px;}
.ws2{word-spacing:-1.428000px;}
.ws2f{word-spacing:-1.320000px;}
.ws19{word-spacing:-1.296000px;}
.ws35{word-spacing:-1.254000px;}
.wsa{word-spacing:-1.122000px;}
.ws37{word-spacing:-1.056000px;}
.ws6{word-spacing:-0.918000px;}
.ws4{word-spacing:-0.881496px;}
.ws32{word-spacing:-0.792000px;}
.ws20{word-spacing:-0.462000px;}
.ws3c{word-spacing:-0.330000px;}
.ws11{word-spacing:-0.264000px;}
.ws23{word-spacing:-0.132000px;}
.ws42{word-spacing:-0.066000px;}
.ws1{word-spacing:0.000000px;}
.ws2d{word-spacing:0.198000px;}
.wsd{word-spacing:0.270000px;}
.ws28{word-spacing:0.330000px;}
.ws21{word-spacing:0.396000px;}
.ws48{word-spacing:0.462000px;}
.ws1b{word-spacing:0.660000px;}
.ws29{word-spacing:0.726000px;}
.ws31{word-spacing:0.990000px;}
.wsb{word-spacing:1.122000px;}
.ws38{word-spacing:1.188000px;}
.ws16{word-spacing:1.452000px;}
.ws24{word-spacing:1.980000px;}
.ws41{word-spacing:2.112000px;}
.wsc{word-spacing:2.268000px;}
.ws2b{word-spacing:3.498000px;}
.ws43{word-spacing:3.564000px;}
.ws1f{word-spacing:3.696000px;}
.ws40{word-spacing:3.828000px;}
.ws34{word-spacing:3.960000px;}
.ws3e{word-spacing:4.026000px;}
.ws15{word-spacing:4.224000px;}
.wse{word-spacing:4.356000px;}
.ws30{word-spacing:4.620000px;}
.ws36{word-spacing:4.686000px;}
.ws13{word-spacing:4.818000px;}
.ws47{word-spacing:4.884000px;}
.ws2c{word-spacing:5.478000px;}
.ws17{word-spacing:5.940000px;}
.ws3f{word-spacing:6.204000px;}
.ws1c{word-spacing:7.128000px;}
.ws22{word-spacing:7.194000px;}
.ws1a{word-spacing:7.392000px;}
.ws25{word-spacing:7.986000px;}
.ws2a{word-spacing:8.118000px;}
.ws2e{word-spacing:8.514000px;}
.ws18{word-spacing:8.580000px;}
.ws46{word-spacing:8.712000px;}
.ws4a{word-spacing:10.230000px;}
.ws14{word-spacing:38.070000px;}
._9{margin-left:-2042.700000px;}
._18{margin-left:-9.064200px;}
._10{margin-left:-7.916400px;}
._e{margin-left:-6.774600px;}
._3{margin-left:-5.703600px;}
._f{margin-left:-4.392600px;}
._1{margin-left:-3.360000px;}
._2{margin-left:-2.344800px;}
._0{margin-left:-1.003200px;}
._4{width:1.783200px;}
._6{width:3.126600px;}
._7{width:4.239000px;}
._a{width:6.058800px;}
._5{width:7.457400px;}
._d{width:9.273000px;}
._13{width:10.348800px;}
._16{width:11.391600px;}
._12{width:12.454200px;}
._19{width:13.658400px;}
._17{width:14.962200px;}
._1a{width:17.826600px;}
._11{width:38.070000px;}
._14{width:39.366000px;}
._b{width:65.070000px;}
._c{width:878.520000px;}
._15{width:2104.030800px;}
._8{width:2121.310800px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(28,29,30);}
.fs5{font-size:36.000000px;}
.fs7{font-size:38.478000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:48.972000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:9.000000px;}
.y2{bottom:77.782200px;}
.y1d{bottom:81.325500px;}
.y1{bottom:89.782200px;}
.y1c{bottom:93.325500px;}
.y3a{bottom:139.925250px;}
.y39{bottom:153.425250px;}
.yce{bottom:162.837300px;}
.y38{bottom:166.925250px;}
.y37{bottom:180.425250px;}
.ycd{bottom:182.635050px;}
.y48{bottom:193.925250px;}
.yaf{bottom:201.542250px;}
.ycc{bottom:202.435050px;}
.y47{bottom:207.425250px;}
.y46{bottom:220.925250px;}
.yae{bottom:221.342250px;}
.ycb{bottom:222.235050px;}
.ya0{bottom:231.935100px;}
.y45{bottom:234.425250px;}
.yad{bottom:241.142250px;}
.yca{bottom:242.035050px;}
.y44{bottom:247.925250px;}
.y89{bottom:251.735100px;}
.y9a{bottom:260.936550px;}
.yac{bottom:260.942250px;}
.y43{bottom:261.425250px;}
.yc9{bottom:261.835050px;}
.y88{bottom:271.535100px;}
.yb1{bottom:271.535250px;}
.y70{bottom:274.925250px;}
.y99{bottom:280.736550px;}
.yab{bottom:280.742250px;}
.yc8{bottom:281.635050px;}
.y6f{bottom:288.425250px;}
.y87{bottom:291.335100px;}
.ya9{bottom:291.335250px;}
.y98{bottom:300.536550px;}
.yc7{bottom:301.435050px;}
.y6e{bottom:301.925250px;}
.y86{bottom:311.135100px;}
.ya8{bottom:311.135250px;}
.y19{bottom:311.932200px;}
.y6d{bottom:315.425250px;}
.y97{bottom:320.336550px;}
.yc6{bottom:321.235050px;}
.y42{bottom:321.237300px;}
.y18{bottom:328.132200px;}
.y6c{bottom:328.925250px;}
.yaa{bottom:330.308250px;}
.y85{bottom:330.935100px;}
.ya7{bottom:330.935250px;}
.y96{bottom:340.136550px;}
.yc5{bottom:341.035050px;}
.y41{bottom:341.037300px;}
.y17{bottom:344.332200px;}
.y84{bottom:350.735100px;}
.ya6{bottom:350.735250px;}
.y95{bottom:359.936550px;}
.yc4{bottom:360.835050px;}
.y40{bottom:360.837300px;}
.y83{bottom:370.535100px;}
.ya5{bottom:370.535250px;}
.y94{bottom:379.736550px;}
.yc3{bottom:380.635050px;}
.y36{bottom:380.637300px;}
.y80{bottom:381.196350px;}
.y16{bottom:381.794700px;}
.y82{bottom:390.335100px;}
.y63{bottom:390.335250px;}
.y15{bottom:397.994700px;}
.y93{bottom:399.536550px;}
.yc2{bottom:400.435050px;}
.y35{bottom:400.437300px;}
.y7f{bottom:400.996350px;}
.y62{bottom:410.135100px;}
.ya4{bottom:410.135250px;}
.y14{bottom:414.194700px;}
.y92{bottom:419.336550px;}
.yc1{bottom:420.235050px;}
.y34{bottom:420.237300px;}
.y7e{bottom:420.796350px;}
.y61{bottom:429.935100px;}
.ya3{bottom:429.935250px;}
.y13{bottom:430.394700px;}
.y91{bottom:439.136550px;}
.yc0{bottom:440.035050px;}
.y33{bottom:440.037300px;}
.y7d{bottom:440.596350px;}
.y12{bottom:446.594700px;}
.y60{bottom:449.735100px;}
.ya2{bottom:449.735250px;}
.y90{bottom:458.936550px;}
.ybf{bottom:459.835050px;}
.y32{bottom:459.837300px;}
.y7c{bottom:460.396350px;}
.y11{bottom:462.794700px;}
.y5f{bottom:469.535100px;}
.ya1{bottom:469.535250px;}
.y8f{bottom:478.736550px;}
.y10{bottom:478.994700px;}
.ybe{bottom:479.635050px;}
.y31{bottom:479.637300px;}
.y7b{bottom:480.196350px;}
.y5e{bottom:489.335100px;}
.y9f{bottom:489.335250px;}
.yf{bottom:495.194700px;}
.y8e{bottom:498.536550px;}
.ybd{bottom:499.435050px;}
.y30{bottom:499.437300px;}
.y7a{bottom:499.996350px;}
.y5d{bottom:509.135100px;}
.y9e{bottom:509.135250px;}
.y8d{bottom:518.342100px;}
.ybc{bottom:519.235050px;}
.y2f{bottom:519.237300px;}
.y79{bottom:519.796350px;}
.y5c{bottom:528.935100px;}
.y9d{bottom:528.935250px;}
.ye{bottom:532.657200px;}
.y8c{bottom:538.142100px;}
.ybb{bottom:539.035050px;}
.y2e{bottom:539.037300px;}
.y78{bottom:539.596350px;}
.y5b{bottom:548.735100px;}
.y9c{bottom:548.735250px;}
.yd{bottom:548.857200px;}
.y8b{bottom:557.942100px;}
.yba{bottom:558.835050px;}
.y2d{bottom:558.837300px;}
.y77{bottom:559.396350px;}
.yc{bottom:565.057200px;}
.y5a{bottom:568.535100px;}
.y9b{bottom:568.535250px;}
.yb9{bottom:578.635050px;}
.y2c{bottom:578.637300px;}
.y76{bottom:579.196350px;}
.yb{bottom:581.257200px;}
.y59{bottom:588.335100px;}
.y6b{bottom:588.335250px;}
.ya{bottom:597.457200px;}
.yb8{bottom:598.435050px;}
.y2b{bottom:598.437300px;}
.y75{bottom:598.996350px;}
.y8a{bottom:607.508100px;}
.y58{bottom:608.135100px;}
.y6a{bottom:608.135250px;}
.y9{bottom:613.657200px;}
.yb7{bottom:618.235050px;}
.y2a{bottom:618.237300px;}
.y74{bottom:618.794100px;}
.y57{bottom:627.935100px;}
.y69{bottom:627.935250px;}
.y8{bottom:629.857200px;}
.yb6{bottom:638.035050px;}
.y29{bottom:638.037300px;}
.y7{bottom:646.057200px;}
.y56{bottom:647.735100px;}
.y68{bottom:647.735250px;}
.yb5{bottom:657.835050px;}
.y28{bottom:657.837300px;}
.y55{bottom:667.535100px;}
.y67{bottom:667.535250px;}
.y73{bottom:668.360100px;}
.yb4{bottom:677.635050px;}
.y27{bottom:677.637300px;}
.y6{bottom:683.517000px;}
.y81{bottom:687.335100px;}
.y54{bottom:687.335250px;}
.yb3{bottom:697.435050px;}
.y26{bottom:697.437300px;}
.y5{bottom:701.517000px;}
.y72{bottom:707.135100px;}
.y53{bottom:707.135250px;}
.y25{bottom:717.235050px;}
.y3f{bottom:717.237300px;}
.y71{bottom:726.935100px;}
.y52{bottom:726.935250px;}
.y24{bottom:737.035050px;}
.y3e{bottom:737.037300px;}
.y66{bottom:746.735100px;}
.y51{bottom:746.735250px;}
.y4{bottom:753.492000px;}
.y23{bottom:756.835050px;}
.y3d{bottom:756.837300px;}
.y65{bottom:766.535100px;}
.y50{bottom:766.535250px;}
.y22{bottom:776.635050px;}
.y3c{bottom:776.637300px;}
.y3{bottom:778.692000px;}
.y64{bottom:786.335100px;}
.y4f{bottom:786.335250px;}
.y21{bottom:796.435050px;}
.yb2{bottom:796.437300px;}
.y4e{bottom:806.135100px;}
.y20{bottom:816.235050px;}
.y4d{bottom:825.935100px;}
.y1f{bottom:836.035050px;}
.y4c{bottom:845.735100px;}
.y4b{bottom:865.535100px;}
.y4a{bottom:885.335100px;}
.y1e{bottom:885.601050px;}
.y49{bottom:926.814750px;}
.y3b{bottom:928.880100px;}
.y1b{bottom:928.894800px;}
.yb0{bottom:928.899750px;}
.h7{height:28.656000px;}
.h3{height:42.117188px;}
.h2{height:42.234375px;}
.h6{height:47.381836px;}
.hc{height:47.513672px;}
.h5{height:52.646484px;}
.hb{height:52.706484px;}
.h9{height:57.911133px;}
.he{height:57.911733px;}
.ha{height:57.920133px;}
.h10{height:58.072266px;}
.hf{height:58.081266px;}
.h8{height:58.620117px;}
.hd{height:63.175781px;}
.h4{height:74.607422px;}
.h0{height:1083.472500px;}
.h1{height:1083.750000px;}
.w0{width:785.835000px;}
.w1{width:786.000000px;}
.x0{left:0.000000px;}
.x9{left:46.500000px;}
.x1{left:137.799150px;}
.x2{left:149.530650px;}
.xc{left:151.904250px;}
.x7{left:167.562300px;}
.xb{left:203.168250px;}
.x3{left:227.041650px;}
.x5{left:294.176100px;}
.xe{left:321.587850px;}
.x4{left:347.606100px;}
.x8{left:359.235300px;}
.x6{left:364.351800px;}
.xd{left:525.974400px;}
.xa{left:530.738100px;}
@media print{
.v3{vertical-align:-19.535467pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.544000pt;}
.v1{vertical-align:24.864000pt;}
.lsa{letter-spacing:-7.568000pt;}
.lsb{letter-spacing:-6.512000pt;}
.ls8{letter-spacing:-1.776000pt;}
.ls7{letter-spacing:-1.265499pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.783552pt;}
.ls9{letter-spacing:0.937600pt;}
.ls1{letter-spacing:1.680000pt;}
.ls4{letter-spacing:1.866667pt;}
.ls5{letter-spacing:2.053333pt;}
.ls0{letter-spacing:2.613333pt;}
.ls6{letter-spacing:35.616000pt;}
.ws0{word-spacing:-21.280000pt;}
.ws7{word-spacing:-14.666667pt;}
.ws10{word-spacing:-10.224000pt;}
.ws8{word-spacing:-8.550667pt;}
.wsf{word-spacing:-7.285168pt;}
.ws1d{word-spacing:-7.098667pt;}
.ws39{word-spacing:-5.808000pt;}
.ws33{word-spacing:-5.514667pt;}
.ws26{word-spacing:-3.226667pt;}
.ws12{word-spacing:-2.874667pt;}
.ws3{word-spacing:-2.613333pt;}
.ws3a{word-spacing:-2.522667pt;}
.ws1e{word-spacing:-2.053333pt;}
.ws45{word-spacing:-1.994667pt;}
.ws3d{word-spacing:-1.936000pt;}
.ws9{word-spacing:-1.866667pt;}
.ws27{word-spacing:-1.760000pt;}
.ws49{word-spacing:-1.701333pt;}
.ws5{word-spacing:-1.680000pt;}
.ws3b{word-spacing:-1.349333pt;}
.ws44{word-spacing:-1.290667pt;}
.ws2{word-spacing:-1.269333pt;}
.ws2f{word-spacing:-1.173333pt;}
.ws19{word-spacing:-1.152000pt;}
.ws35{word-spacing:-1.114667pt;}
.wsa{word-spacing:-0.997333pt;}
.ws37{word-spacing:-0.938667pt;}
.ws6{word-spacing:-0.816000pt;}
.ws4{word-spacing:-0.783552pt;}
.ws32{word-spacing:-0.704000pt;}
.ws20{word-spacing:-0.410667pt;}
.ws3c{word-spacing:-0.293333pt;}
.ws11{word-spacing:-0.234667pt;}
.ws23{word-spacing:-0.117333pt;}
.ws42{word-spacing:-0.058667pt;}
.ws1{word-spacing:0.000000pt;}
.ws2d{word-spacing:0.176000pt;}
.wsd{word-spacing:0.240000pt;}
.ws28{word-spacing:0.293333pt;}
.ws21{word-spacing:0.352000pt;}
.ws48{word-spacing:0.410667pt;}
.ws1b{word-spacing:0.586667pt;}
.ws29{word-spacing:0.645333pt;}
.ws31{word-spacing:0.880000pt;}
.wsb{word-spacing:0.997333pt;}
.ws38{word-spacing:1.056000pt;}
.ws16{word-spacing:1.290667pt;}
.ws24{word-spacing:1.760000pt;}
.ws41{word-spacing:1.877333pt;}
.wsc{word-spacing:2.016000pt;}
.ws2b{word-spacing:3.109333pt;}
.ws43{word-spacing:3.168000pt;}
.ws1f{word-spacing:3.285333pt;}
.ws40{word-spacing:3.402667pt;}
.ws34{word-spacing:3.520000pt;}
.ws3e{word-spacing:3.578667pt;}
.ws15{word-spacing:3.754667pt;}
.wse{word-spacing:3.872000pt;}
.ws30{word-spacing:4.106667pt;}
.ws36{word-spacing:4.165333pt;}
.ws13{word-spacing:4.282667pt;}
.ws47{word-spacing:4.341333pt;}
.ws2c{word-spacing:4.869333pt;}
.ws17{word-spacing:5.280000pt;}
.ws3f{word-spacing:5.514667pt;}
.ws1c{word-spacing:6.336000pt;}
.ws22{word-spacing:6.394667pt;}
.ws1a{word-spacing:6.570667pt;}
.ws25{word-spacing:7.098667pt;}
.ws2a{word-spacing:7.216000pt;}
.ws2e{word-spacing:7.568000pt;}
.ws18{word-spacing:7.626667pt;}
.ws46{word-spacing:7.744000pt;}
.ws4a{word-spacing:9.093333pt;}
.ws14{word-spacing:33.840000pt;}
._9{margin-left:-1815.733333pt;}
._18{margin-left:-8.057067pt;}
._10{margin-left:-7.036800pt;}
._e{margin-left:-6.021867pt;}
._3{margin-left:-5.069867pt;}
._f{margin-left:-3.904533pt;}
._1{margin-left:-2.986667pt;}
._2{margin-left:-2.084267pt;}
._0{margin-left:-0.891733pt;}
._4{width:1.585067pt;}
._6{width:2.779200pt;}
._7{width:3.768000pt;}
._a{width:5.385600pt;}
._5{width:6.628800pt;}
._d{width:8.242667pt;}
._13{width:9.198933pt;}
._16{width:10.125867pt;}
._12{width:11.070400pt;}
._19{width:12.140800pt;}
._17{width:13.299733pt;}
._1a{width:15.845867pt;}
._11{width:33.840000pt;}
._14{width:34.992000pt;}
._b{width:57.840000pt;}
._c{width:780.906667pt;}
._15{width:1870.249600pt;}
._8{width:1885.609600pt;}
.fs5{font-size:32.000000pt;}
.fs7{font-size:34.202667pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:43.530667pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:8.000000pt;}
.y2{bottom:69.139733pt;}
.y1d{bottom:72.289333pt;}
.y1{bottom:79.806400pt;}
.y1c{bottom:82.956000pt;}
.y3a{bottom:124.378000pt;}
.y39{bottom:136.378000pt;}
.yce{bottom:144.744267pt;}
.y38{bottom:148.378000pt;}
.y37{bottom:160.378000pt;}
.ycd{bottom:162.342267pt;}
.y48{bottom:172.378000pt;}
.yaf{bottom:179.148667pt;}
.ycc{bottom:179.942267pt;}
.y47{bottom:184.378000pt;}
.y46{bottom:196.378000pt;}
.yae{bottom:196.748667pt;}
.ycb{bottom:197.542267pt;}
.ya0{bottom:206.164533pt;}
.y45{bottom:208.378000pt;}
.yad{bottom:214.348667pt;}
.yca{bottom:215.142267pt;}
.y44{bottom:220.378000pt;}
.y89{bottom:223.764533pt;}
.y9a{bottom:231.943600pt;}
.yac{bottom:231.948667pt;}
.y43{bottom:232.378000pt;}
.yc9{bottom:232.742267pt;}
.y88{bottom:241.364533pt;}
.yb1{bottom:241.364667pt;}
.y70{bottom:244.378000pt;}
.y99{bottom:249.543600pt;}
.yab{bottom:249.548667pt;}
.yc8{bottom:250.342267pt;}
.y6f{bottom:256.378000pt;}
.y87{bottom:258.964533pt;}
.ya9{bottom:258.964667pt;}
.y98{bottom:267.143600pt;}
.yc7{bottom:267.942267pt;}
.y6e{bottom:268.378000pt;}
.y86{bottom:276.564533pt;}
.ya8{bottom:276.564667pt;}
.y19{bottom:277.273067pt;}
.y6d{bottom:280.378000pt;}
.y97{bottom:284.743600pt;}
.yc6{bottom:285.542267pt;}
.y42{bottom:285.544267pt;}
.y18{bottom:291.673067pt;}
.y6c{bottom:292.378000pt;}
.yaa{bottom:293.607333pt;}
.y85{bottom:294.164533pt;}
.ya7{bottom:294.164667pt;}
.y96{bottom:302.343600pt;}
.yc5{bottom:303.142267pt;}
.y41{bottom:303.144267pt;}
.y17{bottom:306.073067pt;}
.y84{bottom:311.764533pt;}
.ya6{bottom:311.764667pt;}
.y95{bottom:319.943600pt;}
.yc4{bottom:320.742267pt;}
.y40{bottom:320.744267pt;}
.y83{bottom:329.364533pt;}
.ya5{bottom:329.364667pt;}
.y94{bottom:337.543600pt;}
.yc3{bottom:338.342267pt;}
.y36{bottom:338.344267pt;}
.y80{bottom:338.841200pt;}
.y16{bottom:339.373067pt;}
.y82{bottom:346.964533pt;}
.y63{bottom:346.964667pt;}
.y15{bottom:353.773067pt;}
.y93{bottom:355.143600pt;}
.yc2{bottom:355.942267pt;}
.y35{bottom:355.944267pt;}
.y7f{bottom:356.441200pt;}
.y62{bottom:364.564533pt;}
.ya4{bottom:364.564667pt;}
.y14{bottom:368.173067pt;}
.y92{bottom:372.743600pt;}
.yc1{bottom:373.542267pt;}
.y34{bottom:373.544267pt;}
.y7e{bottom:374.041200pt;}
.y61{bottom:382.164533pt;}
.ya3{bottom:382.164667pt;}
.y13{bottom:382.573067pt;}
.y91{bottom:390.343600pt;}
.yc0{bottom:391.142267pt;}
.y33{bottom:391.144267pt;}
.y7d{bottom:391.641200pt;}
.y12{bottom:396.973067pt;}
.y60{bottom:399.764533pt;}
.ya2{bottom:399.764667pt;}
.y90{bottom:407.943600pt;}
.ybf{bottom:408.742267pt;}
.y32{bottom:408.744267pt;}
.y7c{bottom:409.241200pt;}
.y11{bottom:411.373067pt;}
.y5f{bottom:417.364533pt;}
.ya1{bottom:417.364667pt;}
.y8f{bottom:425.543600pt;}
.y10{bottom:425.773067pt;}
.ybe{bottom:426.342267pt;}
.y31{bottom:426.344267pt;}
.y7b{bottom:426.841200pt;}
.y5e{bottom:434.964533pt;}
.y9f{bottom:434.964667pt;}
.yf{bottom:440.173067pt;}
.y8e{bottom:443.143600pt;}
.ybd{bottom:443.942267pt;}
.y30{bottom:443.944267pt;}
.y7a{bottom:444.441200pt;}
.y5d{bottom:452.564533pt;}
.y9e{bottom:452.564667pt;}
.y8d{bottom:460.748533pt;}
.ybc{bottom:461.542267pt;}
.y2f{bottom:461.544267pt;}
.y79{bottom:462.041200pt;}
.y5c{bottom:470.164533pt;}
.y9d{bottom:470.164667pt;}
.ye{bottom:473.473067pt;}
.y8c{bottom:478.348533pt;}
.ybb{bottom:479.142267pt;}
.y2e{bottom:479.144267pt;}
.y78{bottom:479.641200pt;}
.y5b{bottom:487.764533pt;}
.y9c{bottom:487.764667pt;}
.yd{bottom:487.873067pt;}
.y8b{bottom:495.948533pt;}
.yba{bottom:496.742267pt;}
.y2d{bottom:496.744267pt;}
.y77{bottom:497.241200pt;}
.yc{bottom:502.273067pt;}
.y5a{bottom:505.364533pt;}
.y9b{bottom:505.364667pt;}
.yb9{bottom:514.342267pt;}
.y2c{bottom:514.344267pt;}
.y76{bottom:514.841200pt;}
.yb{bottom:516.673067pt;}
.y59{bottom:522.964533pt;}
.y6b{bottom:522.964667pt;}
.ya{bottom:531.073067pt;}
.yb8{bottom:531.942267pt;}
.y2b{bottom:531.944267pt;}
.y75{bottom:532.441200pt;}
.y8a{bottom:540.007200pt;}
.y58{bottom:540.564533pt;}
.y6a{bottom:540.564667pt;}
.y9{bottom:545.473067pt;}
.yb7{bottom:549.542267pt;}
.y2a{bottom:549.544267pt;}
.y74{bottom:550.039200pt;}
.y57{bottom:558.164533pt;}
.y69{bottom:558.164667pt;}
.y8{bottom:559.873067pt;}
.yb6{bottom:567.142267pt;}
.y29{bottom:567.144267pt;}
.y7{bottom:574.273067pt;}
.y56{bottom:575.764533pt;}
.y68{bottom:575.764667pt;}
.yb5{bottom:584.742267pt;}
.y28{bottom:584.744267pt;}
.y55{bottom:593.364533pt;}
.y67{bottom:593.364667pt;}
.y73{bottom:594.097867pt;}
.yb4{bottom:602.342267pt;}
.y27{bottom:602.344267pt;}
.y6{bottom:607.570667pt;}
.y81{bottom:610.964533pt;}
.y54{bottom:610.964667pt;}
.yb3{bottom:619.942267pt;}
.y26{bottom:619.944267pt;}
.y5{bottom:623.570667pt;}
.y72{bottom:628.564533pt;}
.y53{bottom:628.564667pt;}
.y25{bottom:637.542267pt;}
.y3f{bottom:637.544267pt;}
.y71{bottom:646.164533pt;}
.y52{bottom:646.164667pt;}
.y24{bottom:655.142267pt;}
.y3e{bottom:655.144267pt;}
.y66{bottom:663.764533pt;}
.y51{bottom:663.764667pt;}
.y4{bottom:669.770667pt;}
.y23{bottom:672.742267pt;}
.y3d{bottom:672.744267pt;}
.y65{bottom:681.364533pt;}
.y50{bottom:681.364667pt;}
.y22{bottom:690.342267pt;}
.y3c{bottom:690.344267pt;}
.y3{bottom:692.170667pt;}
.y64{bottom:698.964533pt;}
.y4f{bottom:698.964667pt;}
.y21{bottom:707.942267pt;}
.yb2{bottom:707.944267pt;}
.y4e{bottom:716.564533pt;}
.y20{bottom:725.542267pt;}
.y4d{bottom:734.164533pt;}
.y1f{bottom:743.142267pt;}
.y4c{bottom:751.764533pt;}
.y4b{bottom:769.364533pt;}
.y4a{bottom:786.964533pt;}
.y1e{bottom:787.200933pt;}
.y49{bottom:823.835333pt;}
.y3b{bottom:825.671200pt;}
.y1b{bottom:825.684267pt;}
.yb0{bottom:825.688667pt;}
.h7{height:25.472000pt;}
.h3{height:37.437500pt;}
.h2{height:37.541667pt;}
.h6{height:42.117188pt;}
.hc{height:42.234375pt;}
.h5{height:46.796875pt;}
.hb{height:46.850208pt;}
.h9{height:51.476562pt;}
.he{height:51.477096pt;}
.ha{height:51.484563pt;}
.h10{height:51.619792pt;}
.hf{height:51.627792pt;}
.h8{height:52.106771pt;}
.hd{height:56.156250pt;}
.h4{height:66.317708pt;}
.h0{height:963.086667pt;}
.h1{height:963.333333pt;}
.w0{width:698.520000pt;}
.w1{width:698.666667pt;}
.x0{left:0.000000pt;}
.x9{left:41.333333pt;}
.x1{left:122.488133pt;}
.x2{left:132.916133pt;}
.xc{left:135.026000pt;}
.x7{left:148.944267pt;}
.xb{left:180.594000pt;}
.x3{left:201.814800pt;}
.x5{left:261.489867pt;}
.xe{left:285.855867pt;}
.x4{left:308.983200pt;}
.x8{left:319.320267pt;}
.x6{left:323.868267pt;}
.xd{left:467.532800pt;}
.xa{left:471.767200pt;}
}




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