
    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_2e3b3461c999408f98cb316f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1f9ea2f93b25698fd0eac2a5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2778f5f6d2456b3582914833.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_47f67e26e4ba3dc33cae1336.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.087000;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_d51aa64a62610079700cf955.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.066000;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_fbb6511880d14733b2920679.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c19230f785b69a92761cda96.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.951000;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_466823c1a862ded7c723da27.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938000;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:ff9;src:url('chunks/assets/font_1f9ea2f93b25698fd0eac2a5.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_24e325d6c5e2efb2970b6d2f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.821000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-0.660000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.066000px;}
.lsf{letter-spacing:0.099000px;}
.ls1{letter-spacing:0.132000px;}
.lsb{letter-spacing:0.165000px;}
.ls11{letter-spacing:0.198000px;}
.ls9{letter-spacing:0.264000px;}
.ls7{letter-spacing:0.330000px;}
.ls8{letter-spacing:0.396000px;}
.lsc{letter-spacing:0.528000px;}
.lsd{letter-spacing:0.594000px;}
.ls10{letter-spacing:0.759000px;}
.ls0{letter-spacing:1.260000px;}
.ls5{letter-spacing:1.680000px;}
.ls3{letter-spacing:9.990000px;}
.ls6{letter-spacing:361.231800px;}
.lsa{letter-spacing:742.258800px;}
.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.310000px;}
.ws2b{word-spacing:-12.000000px;}
.ws5{word-spacing:-1.260000px;}
.ws4{word-spacing:-0.630000px;}
.ws3{word-spacing:0.000000px;}
.ws4b{word-spacing:0.066000px;}
.ws61{word-spacing:0.132000px;}
.ws32{word-spacing:0.198000px;}
.ws35{word-spacing:0.330000px;}
.ws41{word-spacing:0.396000px;}
.ws28{word-spacing:0.462000px;}
.ws4c{word-spacing:0.528000px;}
.wsd{word-spacing:0.546000px;}
.ws51{word-spacing:0.660000px;}
.ws26{word-spacing:0.726000px;}
.ws21{word-spacing:0.792000px;}
.ws24{word-spacing:0.858000px;}
.ws47{word-spacing:0.924000px;}
.ws2d{word-spacing:0.990000px;}
.ws1d{word-spacing:1.056000px;}
.ws27{word-spacing:1.122000px;}
.ws2a{word-spacing:1.188000px;}
.ws25{word-spacing:1.254000px;}
.ws12{word-spacing:1.320000px;}
.ws1b{word-spacing:1.386000px;}
.ws46{word-spacing:1.452000px;}
.ws66{word-spacing:1.518000px;}
.ws9{word-spacing:1.584000px;}
.ws2f{word-spacing:1.650000px;}
.ws3a{word-spacing:1.716000px;}
.ws5c{word-spacing:1.782000px;}
.ws8{word-spacing:1.848000px;}
.ws63{word-spacing:2.112000px;}
.wsf{word-spacing:2.142000px;}
.ws62{word-spacing:2.178000px;}
.wse{word-spacing:2.226000px;}
.ws49{word-spacing:2.244000px;}
.ws60{word-spacing:2.310000px;}
.ws48{word-spacing:2.376000px;}
.ws1e{word-spacing:2.574000px;}
.ws5a{word-spacing:2.640000px;}
.ws56{word-spacing:2.706000px;}
.ws53{word-spacing:2.772000px;}
.wsc{word-spacing:2.904000px;}
.ws18{word-spacing:2.970000px;}
.ws4f{word-spacing:3.036000px;}
.ws5d{word-spacing:3.102000px;}
.ws43{word-spacing:3.168000px;}
.ws1f{word-spacing:3.234000px;}
.ws58{word-spacing:3.300000px;}
.ws34{word-spacing:3.366000px;}
.ws39{word-spacing:3.432000px;}
.ws19{word-spacing:3.498000px;}
.ws3e{word-spacing:3.564000px;}
.ws1a{word-spacing:3.630000px;}
.ws5f{word-spacing:3.828000px;}
.ws4e{word-spacing:3.894000px;}
.ws50{word-spacing:3.960000px;}
.ws36{word-spacing:4.026000px;}
.ws31{word-spacing:4.158000px;}
.ws14{word-spacing:4.224000px;}
.ws2e{word-spacing:4.290000px;}
.ws55{word-spacing:4.356000px;}
.ws7{word-spacing:4.422000px;}
.wsb{word-spacing:4.488000px;}
.ws3d{word-spacing:4.620000px;}
.ws23{word-spacing:4.752000px;}
.ws40{word-spacing:4.884000px;}
.ws17{word-spacing:4.950000px;}
.ws11{word-spacing:5.016000px;}
.wsa{word-spacing:5.082000px;}
.ws1c{word-spacing:5.280000px;}
.ws13{word-spacing:5.412000px;}
.ws2c{word-spacing:5.478000px;}
.ws20{word-spacing:5.544000px;}
.ws42{word-spacing:5.610000px;}
.ws3b{word-spacing:5.676000px;}
.ws29{word-spacing:5.742000px;}
.ws52{word-spacing:5.808000px;}
.ws5e{word-spacing:5.874000px;}
.ws4a{word-spacing:6.006000px;}
.ws16{word-spacing:6.468000px;}
.ws54{word-spacing:6.600000px;}
.ws15{word-spacing:6.732000px;}
.ws4d{word-spacing:6.798000px;}
.ws44{word-spacing:6.864000px;}
.ws10{word-spacing:6.930000px;}
.ws37{word-spacing:6.996000px;}
.ws57{word-spacing:7.062000px;}
.ws33{word-spacing:7.326000px;}
.ws3c{word-spacing:7.524000px;}
.ws65{word-spacing:7.590000px;}
.ws3f{word-spacing:7.656000px;}
.ws30{word-spacing:7.788000px;}
.ws38{word-spacing:7.854000px;}
.ws5b{word-spacing:7.920000px;}
.ws22{word-spacing:7.986000px;}
.ws59{word-spacing:8.052000px;}
.ws64{word-spacing:8.118000px;}
.ws45{word-spacing:8.184000px;}
.ws6{word-spacing:8.250000px;}
.ws2{word-spacing:10.656000px;}
.ws1{word-spacing:13.344000px;}
._4{margin-left:-11.676000px;}
._0{margin-left:-1.260000px;}
._1{width:1.881000px;}
._2{width:11.130000px;}
._3{width:12.222000px;}
._5{width:427.518000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs5{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y25{bottom:63.779550px;}
.y22{bottom:114.801600px;}
.y78{bottom:116.416950px;}
.y8a{bottom:116.417100px;}
.ya3{bottom:125.409450px;}
.y4e{bottom:125.409600px;}
.y21{bottom:126.803100px;}
.y77{bottom:134.418450px;}
.y89{bottom:134.418600px;}
.y20{bottom:143.050050px;}
.ya2{bottom:143.410950px;}
.y4d{bottom:143.411100px;}
.y76{bottom:152.419950px;}
.y1f{bottom:157.172550px;}
.ya1{bottom:161.412450px;}
.y4c{bottom:161.412600px;}
.y75{bottom:170.421450px;}
.y1e{bottom:173.426550px;}
.ya0{bottom:179.413950px;}
.y4b{bottom:179.414100px;}
.y1d{bottom:185.428050px;}
.y74{bottom:188.422950px;}
.y9f{bottom:197.415450px;}
.y4a{bottom:197.415600px;}
.y1c{bottom:197.429550px;}
.y73{bottom:206.424450px;}
.y1b{bottom:213.683550px;}
.y9e{bottom:215.416950px;}
.y49{bottom:215.417100px;}
.y72{bottom:224.425950px;}
.y1a{bottom:225.685050px;}
.y9d{bottom:233.418450px;}
.y48{bottom:233.418600px;}
.y71{bottom:251.419950px;}
.y47{bottom:251.420100px;}
.y70{bottom:269.421450px;}
.y88{bottom:269.421600px;}
.y19{bottom:273.607500px;}
.y46{bottom:278.414100px;}
.y6f{bottom:287.422950px;}
.y87{bottom:287.423100px;}
.y18{bottom:291.609000px;}
.y45{bottom:296.415600px;}
.y6e{bottom:305.424450px;}
.y86{bottom:305.424600px;}
.y17{bottom:309.610500px;}
.y9c{bottom:314.416950px;}
.y44{bottom:314.417100px;}
.y6d{bottom:323.425950px;}
.y85{bottom:323.426100px;}
.y16{bottom:327.612000px;}
.y9b{bottom:332.418450px;}
.y43{bottom:332.418600px;}
.y6c{bottom:341.427450px;}
.y15{bottom:345.613500px;}
.y9a{bottom:350.419950px;}
.y42{bottom:350.420100px;}
.y6b{bottom:359.428950px;}
.y14{bottom:363.615000px;}
.y99{bottom:368.421450px;}
.y41{bottom:368.421600px;}
.y6a{bottom:377.430450px;}
.y13{bottom:381.616500px;}
.y98{bottom:386.422950px;}
.y40{bottom:386.423100px;}
.y69{bottom:395.431950px;}
.y12{bottom:399.618000px;}
.y97{bottom:404.424450px;}
.y3f{bottom:404.424600px;}
.y11{bottom:417.619500px;}
.y68{bottom:422.425950px;}
.y3e{bottom:422.426100px;}
.y67{bottom:440.427450px;}
.y3d{bottom:440.427600px;}
.y66{bottom:458.428950px;}
.y3c{bottom:458.429100px;}
.y65{bottom:476.430450px;}
.y84{bottom:476.430600px;}
.y3b{bottom:485.423100px;}
.y10{bottom:487.140600px;}
.y64{bottom:494.431950px;}
.y83{bottom:494.432100px;}
.y3a{bottom:503.424600px;}
.y63{bottom:512.433450px;}
.y82{bottom:512.433600px;}
.yf{bottom:514.140600px;}
.y96{bottom:521.425950px;}
.y39{bottom:521.426100px;}
.y62{bottom:530.434950px;}
.y81{bottom:530.435100px;}
.y95{bottom:539.427450px;}
.y38{bottom:539.427600px;}
.y61{bottom:548.436450px;}
.y80{bottom:548.436600px;}
.ye{bottom:551.325450px;}
.y94{bottom:557.428950px;}
.y37{bottom:557.429100px;}
.y60{bottom:566.437950px;}
.ya9{bottom:566.438100px;}
.y93{bottom:575.430450px;}
.y36{bottom:575.430600px;}
.yd{bottom:578.325450px;}
.y5f{bottom:584.439450px;}
.ya8{bottom:584.439600px;}
.y92{bottom:593.431950px;}
.y35{bottom:593.432100px;}
.y5e{bottom:602.440950px;}
.ya7{bottom:602.441100px;}
.yc{bottom:605.325450px;}
.y91{bottom:611.433450px;}
.y34{bottom:611.433600px;}
.y5d{bottom:629.434950px;}
.y33{bottom:629.435100px;}
.yb{bottom:632.325450px;}
.y5c{bottom:647.436450px;}
.y32{bottom:647.436600px;}
.ya{bottom:659.325450px;}
.y5b{bottom:665.437950px;}
.y7f{bottom:665.438100px;}
.y31{bottom:674.430600px;}
.y5a{bottom:683.439450px;}
.y7e{bottom:683.439600px;}
.y9{bottom:686.325450px;}
.y30{bottom:692.432100px;}
.y59{bottom:701.440950px;}
.y7d{bottom:701.441100px;}
.y2f{bottom:710.433600px;}
.y8{bottom:713.325450px;}
.y58{bottom:719.442450px;}
.y7c{bottom:719.442600px;}
.y2e{bottom:728.435100px;}
.y57{bottom:737.443950px;}
.y7b{bottom:737.444100px;}
.y7{bottom:740.325450px;}
.y90{bottom:746.436450px;}
.y2d{bottom:746.436600px;}
.y56{bottom:755.445450px;}
.y7a{bottom:755.445600px;}
.y8f{bottom:764.437950px;}
.y2c{bottom:764.438100px;}
.y6{bottom:767.325450px;}
.y55{bottom:773.446950px;}
.y79{bottom:773.447100px;}
.y8e{bottom:782.439450px;}
.y2b{bottom:782.439600px;}
.y54{bottom:791.448450px;}
.ya6{bottom:791.448600px;}
.y5{bottom:794.325450px;}
.y8d{bottom:800.440950px;}
.y2a{bottom:800.441100px;}
.y53{bottom:809.449950px;}
.ya5{bottom:809.450100px;}
.y8c{bottom:818.442450px;}
.y29{bottom:818.442600px;}
.y4{bottom:821.325450px;}
.y52{bottom:827.451450px;}
.ya4{bottom:827.451600px;}
.y8b{bottom:836.443950px;}
.y28{bottom:836.444100px;}
.y51{bottom:854.445450px;}
.y27{bottom:854.445600px;}
.y50{bottom:872.446950px;}
.y26{bottom:872.447100px;}
.y1{bottom:892.729200px;}
.y24{bottom:909.919650px;}
.y4f{bottom:909.921150px;}
.y23{bottom:921.921150px;}
.y3{bottom:927.403500px;}
.y2{bottom:940.903500px;}
.ha{height:30.030000px;}
.h9{height:30.912000px;}
.h7{height:31.206000px;}
.h8{height:31.500000px;}
.hc{height:34.320000px;}
.h2{height:35.328000px;}
.h6{height:38.610000px;}
.hb{height:38.616000px;}
.h5{height:47.190000px;}
.h4{height:77.760000px;}
.h3{height:78.120000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2{left:106.299150px;}
.xb{left:117.162600px;}
.x8{left:129.200100px;}
.x6{left:131.585100px;}
.x7{left:133.700100px;}
.x3{left:142.227600px;}
.x9{left:148.415100px;}
.xa{left:154.017600px;}
.x4{left:159.732600px;}
.x5{left:164.457600px;}
.xf{left:166.455450px;}
.x10{left:172.080450px;}
.xc{left:193.392600px;}
.x11{left:221.060250px;}
.xd{left:282.457800px;}
.xe{left:301.262400px;}
.x12{left:444.217200px;}
.x1{left:445.299000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.586667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.058667pt;}
.lsf{letter-spacing:0.088000pt;}
.ls1{letter-spacing:0.117333pt;}
.lsb{letter-spacing:0.146667pt;}
.ls11{letter-spacing:0.176000pt;}
.ls9{letter-spacing:0.234667pt;}
.ls7{letter-spacing:0.293333pt;}
.ls8{letter-spacing:0.352000pt;}
.lsc{letter-spacing:0.469333pt;}
.lsd{letter-spacing:0.528000pt;}
.ls10{letter-spacing:0.674667pt;}
.ls0{letter-spacing:1.120000pt;}
.ls5{letter-spacing:1.493333pt;}
.ls3{letter-spacing:8.880000pt;}
.ls6{letter-spacing:321.094933pt;}
.lsa{letter-spacing:659.785600pt;}
.ws0{word-spacing:-20.720000pt;}
.ws2b{word-spacing:-10.666667pt;}
.ws5{word-spacing:-1.120000pt;}
.ws4{word-spacing:-0.560000pt;}
.ws3{word-spacing:0.000000pt;}
.ws4b{word-spacing:0.058667pt;}
.ws61{word-spacing:0.117333pt;}
.ws32{word-spacing:0.176000pt;}
.ws35{word-spacing:0.293333pt;}
.ws41{word-spacing:0.352000pt;}
.ws28{word-spacing:0.410667pt;}
.ws4c{word-spacing:0.469333pt;}
.wsd{word-spacing:0.485333pt;}
.ws51{word-spacing:0.586667pt;}
.ws26{word-spacing:0.645333pt;}
.ws21{word-spacing:0.704000pt;}
.ws24{word-spacing:0.762667pt;}
.ws47{word-spacing:0.821333pt;}
.ws2d{word-spacing:0.880000pt;}
.ws1d{word-spacing:0.938667pt;}
.ws27{word-spacing:0.997333pt;}
.ws2a{word-spacing:1.056000pt;}
.ws25{word-spacing:1.114667pt;}
.ws12{word-spacing:1.173333pt;}
.ws1b{word-spacing:1.232000pt;}
.ws46{word-spacing:1.290667pt;}
.ws66{word-spacing:1.349333pt;}
.ws9{word-spacing:1.408000pt;}
.ws2f{word-spacing:1.466667pt;}
.ws3a{word-spacing:1.525333pt;}
.ws5c{word-spacing:1.584000pt;}
.ws8{word-spacing:1.642667pt;}
.ws63{word-spacing:1.877333pt;}
.wsf{word-spacing:1.904000pt;}
.ws62{word-spacing:1.936000pt;}
.wse{word-spacing:1.978667pt;}
.ws49{word-spacing:1.994667pt;}
.ws60{word-spacing:2.053333pt;}
.ws48{word-spacing:2.112000pt;}
.ws1e{word-spacing:2.288000pt;}
.ws5a{word-spacing:2.346667pt;}
.ws56{word-spacing:2.405333pt;}
.ws53{word-spacing:2.464000pt;}
.wsc{word-spacing:2.581333pt;}
.ws18{word-spacing:2.640000pt;}
.ws4f{word-spacing:2.698667pt;}
.ws5d{word-spacing:2.757333pt;}
.ws43{word-spacing:2.816000pt;}
.ws1f{word-spacing:2.874667pt;}
.ws58{word-spacing:2.933333pt;}
.ws34{word-spacing:2.992000pt;}
.ws39{word-spacing:3.050667pt;}
.ws19{word-spacing:3.109333pt;}
.ws3e{word-spacing:3.168000pt;}
.ws1a{word-spacing:3.226667pt;}
.ws5f{word-spacing:3.402667pt;}
.ws4e{word-spacing:3.461333pt;}
.ws50{word-spacing:3.520000pt;}
.ws36{word-spacing:3.578667pt;}
.ws31{word-spacing:3.696000pt;}
.ws14{word-spacing:3.754667pt;}
.ws2e{word-spacing:3.813333pt;}
.ws55{word-spacing:3.872000pt;}
.ws7{word-spacing:3.930667pt;}
.wsb{word-spacing:3.989333pt;}
.ws3d{word-spacing:4.106667pt;}
.ws23{word-spacing:4.224000pt;}
.ws40{word-spacing:4.341333pt;}
.ws17{word-spacing:4.400000pt;}
.ws11{word-spacing:4.458667pt;}
.wsa{word-spacing:4.517333pt;}
.ws1c{word-spacing:4.693333pt;}
.ws13{word-spacing:4.810667pt;}
.ws2c{word-spacing:4.869333pt;}
.ws20{word-spacing:4.928000pt;}
.ws42{word-spacing:4.986667pt;}
.ws3b{word-spacing:5.045333pt;}
.ws29{word-spacing:5.104000pt;}
.ws52{word-spacing:5.162667pt;}
.ws5e{word-spacing:5.221333pt;}
.ws4a{word-spacing:5.338667pt;}
.ws16{word-spacing:5.749333pt;}
.ws54{word-spacing:5.866667pt;}
.ws15{word-spacing:5.984000pt;}
.ws4d{word-spacing:6.042667pt;}
.ws44{word-spacing:6.101333pt;}
.ws10{word-spacing:6.160000pt;}
.ws37{word-spacing:6.218667pt;}
.ws57{word-spacing:6.277333pt;}
.ws33{word-spacing:6.512000pt;}
.ws3c{word-spacing:6.688000pt;}
.ws65{word-spacing:6.746667pt;}
.ws3f{word-spacing:6.805333pt;}
.ws30{word-spacing:6.922667pt;}
.ws38{word-spacing:6.981333pt;}
.ws5b{word-spacing:7.040000pt;}
.ws22{word-spacing:7.098667pt;}
.ws59{word-spacing:7.157333pt;}
.ws64{word-spacing:7.216000pt;}
.ws45{word-spacing:7.274667pt;}
.ws6{word-spacing:7.333333pt;}
.ws2{word-spacing:9.472000pt;}
.ws1{word-spacing:11.861333pt;}
._4{margin-left:-10.378667pt;}
._0{margin-left:-1.120000pt;}
._1{width:1.672000pt;}
._2{width:9.893333pt;}
._3{width:10.864000pt;}
._5{width:380.016000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:56.692933pt;}
.y22{bottom:102.045867pt;}
.y78{bottom:103.481733pt;}
.y8a{bottom:103.481867pt;}
.ya3{bottom:111.475067pt;}
.y4e{bottom:111.475200pt;}
.y21{bottom:112.713867pt;}
.y77{bottom:119.483067pt;}
.y89{bottom:119.483200pt;}
.y20{bottom:127.155600pt;}
.ya2{bottom:127.476400pt;}
.y4d{bottom:127.476533pt;}
.y76{bottom:135.484400pt;}
.y1f{bottom:139.708933pt;}
.ya1{bottom:143.477733pt;}
.y4c{bottom:143.477867pt;}
.y75{bottom:151.485733pt;}
.y1e{bottom:154.156933pt;}
.ya0{bottom:159.479067pt;}
.y4b{bottom:159.479200pt;}
.y1d{bottom:164.824933pt;}
.y74{bottom:167.487067pt;}
.y9f{bottom:175.480400pt;}
.y4a{bottom:175.480533pt;}
.y1c{bottom:175.492933pt;}
.y73{bottom:183.488400pt;}
.y1b{bottom:189.940933pt;}
.y9e{bottom:191.481733pt;}
.y49{bottom:191.481867pt;}
.y72{bottom:199.489733pt;}
.y1a{bottom:200.608933pt;}
.y9d{bottom:207.483067pt;}
.y48{bottom:207.483200pt;}
.y71{bottom:223.484400pt;}
.y47{bottom:223.484533pt;}
.y70{bottom:239.485733pt;}
.y88{bottom:239.485867pt;}
.y19{bottom:243.206667pt;}
.y46{bottom:247.479200pt;}
.y6f{bottom:255.487067pt;}
.y87{bottom:255.487200pt;}
.y18{bottom:259.208000pt;}
.y45{bottom:263.480533pt;}
.y6e{bottom:271.488400pt;}
.y86{bottom:271.488533pt;}
.y17{bottom:275.209333pt;}
.y9c{bottom:279.481733pt;}
.y44{bottom:279.481867pt;}
.y6d{bottom:287.489733pt;}
.y85{bottom:287.489867pt;}
.y16{bottom:291.210667pt;}
.y9b{bottom:295.483067pt;}
.y43{bottom:295.483200pt;}
.y6c{bottom:303.491067pt;}
.y15{bottom:307.212000pt;}
.y9a{bottom:311.484400pt;}
.y42{bottom:311.484533pt;}
.y6b{bottom:319.492400pt;}
.y14{bottom:323.213333pt;}
.y99{bottom:327.485733pt;}
.y41{bottom:327.485867pt;}
.y6a{bottom:335.493733pt;}
.y13{bottom:339.214667pt;}
.y98{bottom:343.487067pt;}
.y40{bottom:343.487200pt;}
.y69{bottom:351.495067pt;}
.y12{bottom:355.216000pt;}
.y97{bottom:359.488400pt;}
.y3f{bottom:359.488533pt;}
.y11{bottom:371.217333pt;}
.y68{bottom:375.489733pt;}
.y3e{bottom:375.489867pt;}
.y67{bottom:391.491067pt;}
.y3d{bottom:391.491200pt;}
.y66{bottom:407.492400pt;}
.y3c{bottom:407.492533pt;}
.y65{bottom:423.493733pt;}
.y84{bottom:423.493867pt;}
.y3b{bottom:431.487200pt;}
.y10{bottom:433.013867pt;}
.y64{bottom:439.495067pt;}
.y83{bottom:439.495200pt;}
.y3a{bottom:447.488533pt;}
.y63{bottom:455.496400pt;}
.y82{bottom:455.496533pt;}
.yf{bottom:457.013867pt;}
.y96{bottom:463.489733pt;}
.y39{bottom:463.489867pt;}
.y62{bottom:471.497733pt;}
.y81{bottom:471.497867pt;}
.y95{bottom:479.491067pt;}
.y38{bottom:479.491200pt;}
.y61{bottom:487.499067pt;}
.y80{bottom:487.499200pt;}
.ye{bottom:490.067067pt;}
.y94{bottom:495.492400pt;}
.y37{bottom:495.492533pt;}
.y60{bottom:503.500400pt;}
.ya9{bottom:503.500533pt;}
.y93{bottom:511.493733pt;}
.y36{bottom:511.493867pt;}
.yd{bottom:514.067067pt;}
.y5f{bottom:519.501733pt;}
.ya8{bottom:519.501867pt;}
.y92{bottom:527.495067pt;}
.y35{bottom:527.495200pt;}
.y5e{bottom:535.503067pt;}
.ya7{bottom:535.503200pt;}
.yc{bottom:538.067067pt;}
.y91{bottom:543.496400pt;}
.y34{bottom:543.496533pt;}
.y5d{bottom:559.497733pt;}
.y33{bottom:559.497867pt;}
.yb{bottom:562.067067pt;}
.y5c{bottom:575.499067pt;}
.y32{bottom:575.499200pt;}
.ya{bottom:586.067067pt;}
.y5b{bottom:591.500400pt;}
.y7f{bottom:591.500533pt;}
.y31{bottom:599.493867pt;}
.y5a{bottom:607.501733pt;}
.y7e{bottom:607.501867pt;}
.y9{bottom:610.067067pt;}
.y30{bottom:615.495200pt;}
.y59{bottom:623.503067pt;}
.y7d{bottom:623.503200pt;}
.y2f{bottom:631.496533pt;}
.y8{bottom:634.067067pt;}
.y58{bottom:639.504400pt;}
.y7c{bottom:639.504533pt;}
.y2e{bottom:647.497867pt;}
.y57{bottom:655.505733pt;}
.y7b{bottom:655.505867pt;}
.y7{bottom:658.067067pt;}
.y90{bottom:663.499067pt;}
.y2d{bottom:663.499200pt;}
.y56{bottom:671.507067pt;}
.y7a{bottom:671.507200pt;}
.y8f{bottom:679.500400pt;}
.y2c{bottom:679.500533pt;}
.y6{bottom:682.067067pt;}
.y55{bottom:687.508400pt;}
.y79{bottom:687.508533pt;}
.y8e{bottom:695.501733pt;}
.y2b{bottom:695.501867pt;}
.y54{bottom:703.509733pt;}
.ya6{bottom:703.509867pt;}
.y5{bottom:706.067067pt;}
.y8d{bottom:711.503067pt;}
.y2a{bottom:711.503200pt;}
.y53{bottom:719.511067pt;}
.ya5{bottom:719.511200pt;}
.y8c{bottom:727.504400pt;}
.y29{bottom:727.504533pt;}
.y4{bottom:730.067067pt;}
.y52{bottom:735.512400pt;}
.ya4{bottom:735.512533pt;}
.y8b{bottom:743.505733pt;}
.y28{bottom:743.505867pt;}
.y51{bottom:759.507067pt;}
.y27{bottom:759.507200pt;}
.y50{bottom:775.508400pt;}
.y26{bottom:775.508533pt;}
.y1{bottom:793.537067pt;}
.y24{bottom:808.817467pt;}
.y4f{bottom:808.818800pt;}
.y23{bottom:819.485467pt;}
.y3{bottom:824.358667pt;}
.y2{bottom:836.358667pt;}
.ha{height:26.693333pt;}
.h9{height:27.477333pt;}
.h7{height:27.738667pt;}
.h8{height:28.000000pt;}
.hc{height:30.506667pt;}
.h2{height:31.402667pt;}
.h6{height:34.320000pt;}
.hb{height:34.325333pt;}
.h5{height:41.946667pt;}
.h4{height:69.120000pt;}
.h3{height:69.440000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2{left:94.488133pt;}
.xb{left:104.144533pt;}
.x8{left:114.844533pt;}
.x6{left:116.964533pt;}
.x7{left:118.844533pt;}
.x3{left:126.424533pt;}
.x9{left:131.924533pt;}
.xa{left:136.904533pt;}
.x4{left:141.984533pt;}
.x5{left:146.184533pt;}
.xf{left:147.960400pt;}
.x10{left:152.960400pt;}
.xc{left:171.904533pt;}
.x11{left:196.498000pt;}
.xd{left:251.073600pt;}
.xe{left:267.788800pt;}
.x12{left:394.859733pt;}
.x1{left:395.821333pt;}
}




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