
    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_a103105fde460637ae0f3c1f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_be00696f1074efbb1ce0a065.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_8c9fee94a7d26848770e22d3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_97e7af276e0e160ad7f9f3de.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_3c7e37d1d272abf894eeeae1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_b7f8450f8b1295ee9b8619fd.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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c1c8c83a8b3f014e76925006.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_865d57e2f6494d459e83d680.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.689941;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.381600px;}
.ls1c{letter-spacing:-0.780000px;}
.ls3b{letter-spacing:-0.300000px;}
.ls3a{letter-spacing:-0.180000px;}
.ls1d{letter-spacing:-0.120000px;}
.ls3d{letter-spacing:-0.096000px;}
.ls3c{letter-spacing:-0.060000px;}
.ls1b{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004140px;}
.ls0{letter-spacing:0.005676px;}
.ls3e{letter-spacing:0.048000px;}
.ls24{letter-spacing:0.060000px;}
.ls2b{letter-spacing:0.120000px;}
.ls35{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.180000px;}
.ls44{letter-spacing:0.192000px;}
.ls1e{letter-spacing:0.240000px;}
.ls8{letter-spacing:0.300000px;}
.lse{letter-spacing:0.360000px;}
.ls31{letter-spacing:0.384000px;}
.ls13{letter-spacing:0.420000px;}
.lsf{letter-spacing:0.480000px;}
.lsb{letter-spacing:0.540000px;}
.lsa{letter-spacing:0.600000px;}
.ls38{letter-spacing:0.624000px;}
.ls1f{letter-spacing:0.660000px;}
.ls41{letter-spacing:0.672000px;}
.ls28{letter-spacing:0.720000px;}
.ls3f{letter-spacing:0.768000px;}
.ls20{letter-spacing:0.780000px;}
.ls42{letter-spacing:0.816000px;}
.ls21{letter-spacing:0.840000px;}
.ls14{letter-spacing:0.900000px;}
.ls1a{letter-spacing:0.960000px;}
.ls6{letter-spacing:1.020000px;}
.ls2d{letter-spacing:1.056000px;}
.ls9{letter-spacing:1.080000px;}
.ls40{letter-spacing:1.104000px;}
.ls7{letter-spacing:1.200000px;}
.ls12{letter-spacing:1.320000px;}
.ls32{letter-spacing:1.344000px;}
.ls11{letter-spacing:1.380000px;}
.ls2a{letter-spacing:1.440000px;}
.ls23{letter-spacing:1.500000px;}
.ls39{letter-spacing:1.536000px;}
.ls18{letter-spacing:1.560000px;}
.ls27{letter-spacing:1.620000px;}
.ls2e{letter-spacing:1.680000px;}
.ls36{letter-spacing:1.728000px;}
.ls46{letter-spacing:1.776000px;}
.ls22{letter-spacing:1.800000px;}
.ls25{letter-spacing:1.860000px;}
.ls34{letter-spacing:1.968000px;}
.ls29{letter-spacing:2.100000px;}
.ls4{letter-spacing:2.160000px;}
.ls5{letter-spacing:2.340000px;}
.ls33{letter-spacing:2.352000px;}
.ls30{letter-spacing:2.448000px;}
.lsc{letter-spacing:2.460000px;}
.ls19{letter-spacing:2.580000px;}
.ls17{letter-spacing:2.700000px;}
.ls45{letter-spacing:2.736000px;}
.ls3{letter-spacing:2.820000px;}
.ls16{letter-spacing:2.940000px;}
.ls2f{letter-spacing:2.976000px;}
.ls2{letter-spacing:3.060000px;}
.ls10{letter-spacing:3.120000px;}
.ls26{letter-spacing:3.300000px;}
.ls43{letter-spacing:3.360000px;}
.ls2c{letter-spacing:3.420000px;}
.ls15{letter-spacing:3.720000px;}
.ls37{letter-spacing:4.032000px;}
.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;}
}
.ws11{word-spacing:-15.360000px;}
.ws13{word-spacing:-15.120000px;}
.ws12{word-spacing:-15.000000px;}
.ws2{word-spacing:-13.344000px;}
.ws1{word-spacing:-12.510000px;}
.ws26{word-spacing:-12.000000px;}
.ws0{word-spacing:-10.210662px;}
.ws4{word-spacing:-2.886000px;}
.ws29{word-spacing:-2.640000px;}
.ws5{word-spacing:-2.331000px;}
.ws21{word-spacing:-1.968000px;}
.ws25{word-spacing:-1.536000px;}
.ws27{word-spacing:-0.864000px;}
.ws2a{word-spacing:-0.816000px;}
.ws1a{word-spacing:-0.180000px;}
.ws3{word-spacing:0.000000px;}
.ws10{word-spacing:0.060000px;}
.ws20{word-spacing:0.144000px;}
.wsc{word-spacing:0.660000px;}
.ws15{word-spacing:0.780000px;}
.ws1c{word-spacing:1.080000px;}
.wsa{word-spacing:1.680000px;}
.wsf{word-spacing:1.740000px;}
.ws1d{word-spacing:1.800000px;}
.ws23{word-spacing:1.872000px;}
.ws18{word-spacing:1.920000px;}
.ws16{word-spacing:2.160000px;}
.ws19{word-spacing:2.220000px;}
.wsb{word-spacing:2.400000px;}
.ws22{word-spacing:2.544000px;}
.ws1b{word-spacing:2.700000px;}
.ws24{word-spacing:2.832000px;}
.wsd{word-spacing:2.880000px;}
.ws17{word-spacing:3.120000px;}
.ws9{word-spacing:3.180000px;}
.ws28{word-spacing:3.312000px;}
.wse{word-spacing:3.600000px;}
.ws1f{word-spacing:3.936000px;}
.ws1e{word-spacing:3.984000px;}
.ws14{word-spacing:4.440000px;}
.ws7{word-spacing:4.740000px;}
.ws8{word-spacing:4.920000px;}
.ws6{word-spacing:4.980000px;}
._8{margin-left:-2898.144000px;}
._a{margin-left:-2874.336000px;}
._2{margin-left:-9.368400px;}
._1{margin-left:-5.376000px;}
._5{margin-left:-4.320000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.050000px;}
._6{width:1.209000px;}
._3{width:2.331000px;}
._9{width:3.600000px;}
._7{width:5.280000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:26.235000px;}
.fs5{font-size:36.729000px;}
.fs8{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs7{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs9{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs3{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y31{bottom:47.777250px;}
.y65{bottom:83.920350px;}
.y13{bottom:88.026750px;}
.y9b{bottom:95.121900px;}
.y64{bottom:101.920350px;}
.y12{bottom:103.023000px;}
.y9a{bottom:110.121900px;}
.y63{bottom:119.920350px;}
.y99{bottom:125.121900px;}
.y62{bottom:137.920350px;}
.y98{bottom:140.121900px;}
.y97{bottom:155.121900px;}
.y61{bottom:155.920350px;}
.y2c{bottom:165.552150px;}
.y96{bottom:170.121900px;}
.y60{bottom:173.920350px;}
.y2b{bottom:183.552150px;}
.y95{bottom:185.121900px;}
.y5f{bottom:191.920350px;}
.y94{bottom:200.121900px;}
.y2a{bottom:201.552150px;}
.y5e{bottom:209.920350px;}
.y93{bottom:215.121900px;}
.y29{bottom:219.552150px;}
.y5d{bottom:227.920350px;}
.y92{bottom:230.121900px;}
.y28{bottom:237.552150px;}
.y91{bottom:245.121900px;}
.y5c{bottom:245.920350px;}
.y27{bottom:255.552150px;}
.y90{bottom:260.121900px;}
.y5b{bottom:263.920350px;}
.y26{bottom:273.552150px;}
.y8f{bottom:275.121900px;}
.y5a{bottom:281.920350px;}
.y8e{bottom:290.121900px;}
.y25{bottom:291.552150px;}
.y59{bottom:299.920350px;}
.y8d{bottom:305.121900px;}
.y24{bottom:309.552150px;}
.y58{bottom:317.920350px;}
.y8c{bottom:320.121900px;}
.y23{bottom:327.552150px;}
.y8b{bottom:335.121900px;}
.y57{bottom:335.920350px;}
.y22{bottom:345.552150px;}
.y8a{bottom:350.121900px;}
.y56{bottom:353.920350px;}
.y21{bottom:363.552150px;}
.y89{bottom:365.121900px;}
.y55{bottom:371.920350px;}
.y88{bottom:380.121900px;}
.y20{bottom:381.552150px;}
.y54{bottom:389.920350px;}
.y87{bottom:395.121900px;}
.y1f{bottom:399.552150px;}
.y53{bottom:407.920350px;}
.y86{bottom:410.121900px;}
.y1e{bottom:417.552150px;}
.y85{bottom:425.121900px;}
.y52{bottom:425.920350px;}
.y1d{bottom:435.552150px;}
.y84{bottom:440.121900px;}
.y51{bottom:443.920350px;}
.y1c{bottom:453.552150px;}
.y83{bottom:455.121900px;}
.y50{bottom:461.920350px;}
.y82{bottom:470.121900px;}
.y1b{bottom:471.552150px;}
.y4f{bottom:479.920350px;}
.y81{bottom:485.121900px;}
.y1a{bottom:489.552150px;}
.y4e{bottom:497.920350px;}
.y80{bottom:500.121900px;}
.y19{bottom:507.552150px;}
.y4d{bottom:515.920350px;}
.y18{bottom:525.552150px;}
.y7f{bottom:533.245350px;}
.y4c{bottom:533.920350px;}
.y17{bottom:543.552150px;}
.y4b{bottom:551.920350px;}
.y16{bottom:561.552150px;}
.y15{bottom:579.552150px;}
.y4a{bottom:587.515350px;}
.y7e{bottom:587.785350px;}
.y2e{bottom:597.552150px;}
.y7d{bottom:605.785350px;}
.y14{bottom:615.147150px;}
.y2d{bottom:615.552150px;}
.y49{bottom:623.770350px;}
.y7c{bottom:623.785350px;}
.y48{bottom:641.770350px;}
.y7b{bottom:641.785350px;}
.y47{bottom:659.770350px;}
.y7a{bottom:659.785350px;}
.y46{bottom:677.770350px;}
.y79{bottom:677.785350px;}
.y11{bottom:687.455250px;}
.y45{bottom:695.770350px;}
.y78{bottom:695.785350px;}
.y10{bottom:705.455250px;}
.y44{bottom:713.770350px;}
.y77{bottom:713.785350px;}
.yf{bottom:723.455250px;}
.y43{bottom:731.770350px;}
.y76{bottom:731.785350px;}
.ye{bottom:741.455250px;}
.y42{bottom:749.770350px;}
.y75{bottom:749.785350px;}
.yd{bottom:759.455250px;}
.y41{bottom:767.770350px;}
.y74{bottom:767.785350px;}
.y40{bottom:785.770350px;}
.y73{bottom:785.785350px;}
.yc{bottom:792.590100px;}
.y3f{bottom:803.770350px;}
.y72{bottom:803.785350px;}
.yb{bottom:817.918050px;}
.y3e{bottom:821.770350px;}
.y71{bottom:821.785350px;}
.y3d{bottom:839.770350px;}
.y70{bottom:839.785350px;}
.ya{bottom:849.633600px;}
.y3c{bottom:857.770350px;}
.y6f{bottom:857.785350px;}
.y9{bottom:868.558950px;}
.y3b{bottom:875.770350px;}
.y6e{bottom:875.785350px;}
.y8{bottom:876.633600px;}
.ya7{bottom:890.263500px;}
.y3a{bottom:893.770350px;}
.y6d{bottom:893.785350px;}
.y7{bottom:895.558950px;}
.ya6{bottom:905.263500px;}
.y39{bottom:911.770350px;}
.y6c{bottom:911.785350px;}
.ya5{bottom:920.263500px;}
.y6{bottom:924.280950px;}
.y38{bottom:929.770350px;}
.y6b{bottom:929.785350px;}
.ya4{bottom:935.263500px;}
.y37{bottom:947.770350px;}
.y6a{bottom:947.785350px;}
.ya3{bottom:950.263500px;}
.ya2{bottom:965.263500px;}
.y36{bottom:965.770350px;}
.y69{bottom:965.785350px;}
.y5{bottom:970.465200px;}
.ya1{bottom:980.263500px;}
.y35{bottom:983.770350px;}
.y68{bottom:983.785350px;}
.ya0{bottom:995.263500px;}
.y34{bottom:1001.770350px;}
.y67{bottom:1001.785350px;}
.y4{bottom:1006.926000px;}
.y9f{bottom:1010.263500px;}
.y33{bottom:1019.770350px;}
.y9e{bottom:1025.263500px;}
.y66{bottom:1037.380350px;}
.y32{bottom:1037.770350px;}
.y9d{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y3{bottom:1071.618450px;}
.y9c{bottom:1132.413900px;}
.ya8{bottom:1132.423500px;}
.y30{bottom:1136.089500px;}
.y2f{bottom:1150.492500px;}
.h7{height:19.125417px;}
.h9{height:28.393066px;}
.h2{height:30.577148px;}
.hb{height:32.761230px;}
.h8{height:32.805176px;}
.hf{height:33.351562px;}
.h4{height:34.945312px;}
.he{height:34.992188px;}
.hd{height:41.660156px;}
.hc{height:41.689453px;}
.ha{height:43.681641px;}
.h3{height:56.786133px;}
.h6{height:57.121316px;}
.h5{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:76.535400px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x5{left:104.173200px;}
.x3{left:106.724400px;}
.xc{left:110.555400px;}
.x13{left:123.307050px;}
.x4{left:125.439150px;}
.x6{left:131.815200px;}
.xa{left:455.041500px;}
.xd{left:457.115400px;}
.x15{left:478.351050px;}
.x7{left:480.475200px;}
.x10{left:482.598600px;}
.xe{left:491.135400px;}
.x14{left:503.863050px;}
.x8{left:514.495200px;}
.xf{left:574.865400px;}
.x12{left:663.492300px;}
.x2{left:693.365400px;}
.x11{left:735.078600px;}
.x16{left:756.331050px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:27.005867pt;}
.ls1c{letter-spacing:-0.693333pt;}
.ls3b{letter-spacing:-0.266667pt;}
.ls3a{letter-spacing:-0.160000pt;}
.ls1d{letter-spacing:-0.106667pt;}
.ls3d{letter-spacing:-0.085333pt;}
.ls3c{letter-spacing:-0.053333pt;}
.ls1b{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003680pt;}
.ls0{letter-spacing:0.005045pt;}
.ls3e{letter-spacing:0.042667pt;}
.ls24{letter-spacing:0.053333pt;}
.ls2b{letter-spacing:0.106667pt;}
.ls35{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.160000pt;}
.ls44{letter-spacing:0.170667pt;}
.ls1e{letter-spacing:0.213333pt;}
.ls8{letter-spacing:0.266667pt;}
.lse{letter-spacing:0.320000pt;}
.ls31{letter-spacing:0.341333pt;}
.ls13{letter-spacing:0.373333pt;}
.lsf{letter-spacing:0.426667pt;}
.lsb{letter-spacing:0.480000pt;}
.lsa{letter-spacing:0.533333pt;}
.ls38{letter-spacing:0.554667pt;}
.ls1f{letter-spacing:0.586667pt;}
.ls41{letter-spacing:0.597333pt;}
.ls28{letter-spacing:0.640000pt;}
.ls3f{letter-spacing:0.682667pt;}
.ls20{letter-spacing:0.693333pt;}
.ls42{letter-spacing:0.725333pt;}
.ls21{letter-spacing:0.746667pt;}
.ls14{letter-spacing:0.800000pt;}
.ls1a{letter-spacing:0.853333pt;}
.ls6{letter-spacing:0.906667pt;}
.ls2d{letter-spacing:0.938667pt;}
.ls9{letter-spacing:0.960000pt;}
.ls40{letter-spacing:0.981333pt;}
.ls7{letter-spacing:1.066667pt;}
.ls12{letter-spacing:1.173333pt;}
.ls32{letter-spacing:1.194667pt;}
.ls11{letter-spacing:1.226667pt;}
.ls2a{letter-spacing:1.280000pt;}
.ls23{letter-spacing:1.333333pt;}
.ls39{letter-spacing:1.365333pt;}
.ls18{letter-spacing:1.386667pt;}
.ls27{letter-spacing:1.440000pt;}
.ls2e{letter-spacing:1.493333pt;}
.ls36{letter-spacing:1.536000pt;}
.ls46{letter-spacing:1.578667pt;}
.ls22{letter-spacing:1.600000pt;}
.ls25{letter-spacing:1.653333pt;}
.ls34{letter-spacing:1.749333pt;}
.ls29{letter-spacing:1.866667pt;}
.ls4{letter-spacing:1.920000pt;}
.ls5{letter-spacing:2.080000pt;}
.ls33{letter-spacing:2.090667pt;}
.ls30{letter-spacing:2.176000pt;}
.lsc{letter-spacing:2.186667pt;}
.ls19{letter-spacing:2.293333pt;}
.ls17{letter-spacing:2.400000pt;}
.ls45{letter-spacing:2.432000pt;}
.ls3{letter-spacing:2.506667pt;}
.ls16{letter-spacing:2.613333pt;}
.ls2f{letter-spacing:2.645333pt;}
.ls2{letter-spacing:2.720000pt;}
.ls10{letter-spacing:2.773333pt;}
.ls26{letter-spacing:2.933333pt;}
.ls43{letter-spacing:2.986667pt;}
.ls2c{letter-spacing:3.040000pt;}
.ls15{letter-spacing:3.306667pt;}
.ls37{letter-spacing:3.584000pt;}
.ws11{word-spacing:-13.653333pt;}
.ws13{word-spacing:-13.440000pt;}
.ws12{word-spacing:-13.333333pt;}
.ws2{word-spacing:-11.861333pt;}
.ws1{word-spacing:-11.120000pt;}
.ws26{word-spacing:-10.666667pt;}
.ws0{word-spacing:-9.076144pt;}
.ws4{word-spacing:-2.565333pt;}
.ws29{word-spacing:-2.346667pt;}
.ws5{word-spacing:-2.072000pt;}
.ws21{word-spacing:-1.749333pt;}
.ws25{word-spacing:-1.365333pt;}
.ws27{word-spacing:-0.768000pt;}
.ws2a{word-spacing:-0.725333pt;}
.ws1a{word-spacing:-0.160000pt;}
.ws3{word-spacing:0.000000pt;}
.ws10{word-spacing:0.053333pt;}
.ws20{word-spacing:0.128000pt;}
.wsc{word-spacing:0.586667pt;}
.ws15{word-spacing:0.693333pt;}
.ws1c{word-spacing:0.960000pt;}
.wsa{word-spacing:1.493333pt;}
.wsf{word-spacing:1.546667pt;}
.ws1d{word-spacing:1.600000pt;}
.ws23{word-spacing:1.664000pt;}
.ws18{word-spacing:1.706667pt;}
.ws16{word-spacing:1.920000pt;}
.ws19{word-spacing:1.973333pt;}
.wsb{word-spacing:2.133333pt;}
.ws22{word-spacing:2.261333pt;}
.ws1b{word-spacing:2.400000pt;}
.ws24{word-spacing:2.517333pt;}
.wsd{word-spacing:2.560000pt;}
.ws17{word-spacing:2.773333pt;}
.ws9{word-spacing:2.826667pt;}
.ws28{word-spacing:2.944000pt;}
.wse{word-spacing:3.200000pt;}
.ws1f{word-spacing:3.498667pt;}
.ws1e{word-spacing:3.541333pt;}
.ws14{word-spacing:3.946667pt;}
.ws7{word-spacing:4.213333pt;}
.ws8{word-spacing:4.373333pt;}
.ws6{word-spacing:4.426667pt;}
._8{margin-left:-2576.128000pt;}
._a{margin-left:-2554.965333pt;}
._2{margin-left:-8.327467pt;}
._1{margin-left:-4.778667pt;}
._5{margin-left:-3.840000pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.933333pt;}
._6{width:1.074667pt;}
._3{width:2.072000pt;}
._9{width:3.200000pt;}
._7{width:4.693333pt;}
.fs6{font-size:23.320000pt;}
.fs5{font-size:32.648000pt;}
.fs8{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs7{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs9{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs3{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y31{bottom:42.468667pt;}
.y65{bottom:74.595867pt;}
.y13{bottom:78.246000pt;}
.y9b{bottom:84.552800pt;}
.y64{bottom:90.595867pt;}
.y12{bottom:91.576000pt;}
.y9a{bottom:97.886133pt;}
.y63{bottom:106.595867pt;}
.y99{bottom:111.219467pt;}
.y62{bottom:122.595867pt;}
.y98{bottom:124.552800pt;}
.y97{bottom:137.886133pt;}
.y61{bottom:138.595867pt;}
.y2c{bottom:147.157467pt;}
.y96{bottom:151.219467pt;}
.y60{bottom:154.595867pt;}
.y2b{bottom:163.157467pt;}
.y95{bottom:164.552800pt;}
.y5f{bottom:170.595867pt;}
.y94{bottom:177.886133pt;}
.y2a{bottom:179.157467pt;}
.y5e{bottom:186.595867pt;}
.y93{bottom:191.219467pt;}
.y29{bottom:195.157467pt;}
.y5d{bottom:202.595867pt;}
.y92{bottom:204.552800pt;}
.y28{bottom:211.157467pt;}
.y91{bottom:217.886133pt;}
.y5c{bottom:218.595867pt;}
.y27{bottom:227.157467pt;}
.y90{bottom:231.219467pt;}
.y5b{bottom:234.595867pt;}
.y26{bottom:243.157467pt;}
.y8f{bottom:244.552800pt;}
.y5a{bottom:250.595867pt;}
.y8e{bottom:257.886133pt;}
.y25{bottom:259.157467pt;}
.y59{bottom:266.595867pt;}
.y8d{bottom:271.219467pt;}
.y24{bottom:275.157467pt;}
.y58{bottom:282.595867pt;}
.y8c{bottom:284.552800pt;}
.y23{bottom:291.157467pt;}
.y8b{bottom:297.886133pt;}
.y57{bottom:298.595867pt;}
.y22{bottom:307.157467pt;}
.y8a{bottom:311.219467pt;}
.y56{bottom:314.595867pt;}
.y21{bottom:323.157467pt;}
.y89{bottom:324.552800pt;}
.y55{bottom:330.595867pt;}
.y88{bottom:337.886133pt;}
.y20{bottom:339.157467pt;}
.y54{bottom:346.595867pt;}
.y87{bottom:351.219467pt;}
.y1f{bottom:355.157467pt;}
.y53{bottom:362.595867pt;}
.y86{bottom:364.552800pt;}
.y1e{bottom:371.157467pt;}
.y85{bottom:377.886133pt;}
.y52{bottom:378.595867pt;}
.y1d{bottom:387.157467pt;}
.y84{bottom:391.219467pt;}
.y51{bottom:394.595867pt;}
.y1c{bottom:403.157467pt;}
.y83{bottom:404.552800pt;}
.y50{bottom:410.595867pt;}
.y82{bottom:417.886133pt;}
.y1b{bottom:419.157467pt;}
.y4f{bottom:426.595867pt;}
.y81{bottom:431.219467pt;}
.y1a{bottom:435.157467pt;}
.y4e{bottom:442.595867pt;}
.y80{bottom:444.552800pt;}
.y19{bottom:451.157467pt;}
.y4d{bottom:458.595867pt;}
.y18{bottom:467.157467pt;}
.y7f{bottom:473.995867pt;}
.y4c{bottom:474.595867pt;}
.y17{bottom:483.157467pt;}
.y4b{bottom:490.595867pt;}
.y16{bottom:499.157467pt;}
.y15{bottom:515.157467pt;}
.y4a{bottom:522.235867pt;}
.y7e{bottom:522.475867pt;}
.y2e{bottom:531.157467pt;}
.y7d{bottom:538.475867pt;}
.y14{bottom:546.797467pt;}
.y2d{bottom:547.157467pt;}
.y49{bottom:554.462533pt;}
.y7c{bottom:554.475867pt;}
.y48{bottom:570.462533pt;}
.y7b{bottom:570.475867pt;}
.y47{bottom:586.462533pt;}
.y7a{bottom:586.475867pt;}
.y46{bottom:602.462533pt;}
.y79{bottom:602.475867pt;}
.y11{bottom:611.071333pt;}
.y45{bottom:618.462533pt;}
.y78{bottom:618.475867pt;}
.y10{bottom:627.071333pt;}
.y44{bottom:634.462533pt;}
.y77{bottom:634.475867pt;}
.yf{bottom:643.071333pt;}
.y43{bottom:650.462533pt;}
.y76{bottom:650.475867pt;}
.ye{bottom:659.071333pt;}
.y42{bottom:666.462533pt;}
.y75{bottom:666.475867pt;}
.yd{bottom:675.071333pt;}
.y41{bottom:682.462533pt;}
.y74{bottom:682.475867pt;}
.y40{bottom:698.462533pt;}
.y73{bottom:698.475867pt;}
.yc{bottom:704.524533pt;}
.y3f{bottom:714.462533pt;}
.y72{bottom:714.475867pt;}
.yb{bottom:727.038267pt;}
.y3e{bottom:730.462533pt;}
.y71{bottom:730.475867pt;}
.y3d{bottom:746.462533pt;}
.y70{bottom:746.475867pt;}
.ya{bottom:755.229867pt;}
.y3c{bottom:762.462533pt;}
.y6f{bottom:762.475867pt;}
.y9{bottom:772.052400pt;}
.y3b{bottom:778.462533pt;}
.y6e{bottom:778.475867pt;}
.y8{bottom:779.229867pt;}
.ya7{bottom:791.345333pt;}
.y3a{bottom:794.462533pt;}
.y6d{bottom:794.475867pt;}
.y7{bottom:796.052400pt;}
.ya6{bottom:804.678667pt;}
.y39{bottom:810.462533pt;}
.y6c{bottom:810.475867pt;}
.ya5{bottom:818.012000pt;}
.y6{bottom:821.583067pt;}
.y38{bottom:826.462533pt;}
.y6b{bottom:826.475867pt;}
.ya4{bottom:831.345333pt;}
.y37{bottom:842.462533pt;}
.y6a{bottom:842.475867pt;}
.ya3{bottom:844.678667pt;}
.ya2{bottom:858.012000pt;}
.y36{bottom:858.462533pt;}
.y69{bottom:858.475867pt;}
.y5{bottom:862.635733pt;}
.ya1{bottom:871.345333pt;}
.y35{bottom:874.462533pt;}
.y68{bottom:874.475867pt;}
.ya0{bottom:884.678667pt;}
.y34{bottom:890.462533pt;}
.y67{bottom:890.475867pt;}
.y4{bottom:895.045333pt;}
.y9f{bottom:898.012000pt;}
.y33{bottom:906.462533pt;}
.y9e{bottom:911.345333pt;}
.y66{bottom:922.115867pt;}
.y32{bottom:922.462533pt;}
.y9d{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y3{bottom:952.549733pt;}
.y9c{bottom:1006.590133pt;}
.ya8{bottom:1006.598667pt;}
.y30{bottom:1009.857333pt;}
.y2f{bottom:1022.660000pt;}
.h7{height:17.000371pt;}
.h9{height:25.238281pt;}
.h2{height:27.179688pt;}
.hb{height:29.121094pt;}
.h8{height:29.160156pt;}
.hf{height:29.645833pt;}
.h4{height:31.062500pt;}
.he{height:31.104167pt;}
.hd{height:37.031250pt;}
.hc{height:37.057292pt;}
.ha{height:38.828125pt;}
.h3{height:50.476562pt;}
.h6{height:50.774503pt;}
.h5{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:68.031467pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x5{left:92.598400pt;}
.x3{left:94.866133pt;}
.xc{left:98.271467pt;}
.x13{left:109.606267pt;}
.x4{left:111.501467pt;}
.x6{left:117.169067pt;}
.xa{left:404.481333pt;}
.xd{left:406.324800pt;}
.x15{left:425.200933pt;}
.x7{left:427.089067pt;}
.x10{left:428.976533pt;}
.xe{left:436.564800pt;}
.x14{left:447.878267pt;}
.x8{left:457.329067pt;}
.xf{left:510.991467pt;}
.x12{left:589.770933pt;}
.x2{left:616.324800pt;}
.x11{left:653.403200pt;}
.x16{left:672.294267pt;}
}




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