
    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_c849f464beb358e775c900d1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.965820;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_2e49cbe2ff87fba071f0adf2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.972656;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_6ad5eba9ae357770d5e11509.woff')format("woff");}.ff3{font-family:ff3;line-height:0.779785;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_247d6715a5e32e2536c36d77.woff')format("woff");}.ff4{font-family:ff4;line-height:0.781738;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_12d30e0644cb21870b286726.woff')format("woff");}.ff5{font-family:ff5;line-height:0.765137;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_19d43b431b419c069ebdd728.woff')format("woff");}.ff6{font-family:ff6;line-height:0.972656;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_9ad13506abde12201b20794e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.972656;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_e348130c069423f8041e8c9b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.972656;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_cca5699398a2f70b5fa1b8e5.woff')format("woff");}.ff9{font-family:ff9;line-height:0.780762;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_2e18e7173ffa721f543103cf.woff')format("woff");}.ffa{font-family:ffa;line-height:0.973633;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:ffb;src:url('chunks/assets/font_e0485d35d18c48cf6a57a6f1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.972656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-21.991524px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.ls6{letter-spacing:-1.188000px;}
.ls4{letter-spacing:-0.660000px;}
.ls3{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.066000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.017880px;}
.ls1{letter-spacing:0.264000px;}
.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;}
}
.ws30{word-spacing:-66.000000px;}
.ws56{word-spacing:-15.906000px;}
.ws42{word-spacing:-3.828000px;}
.ws8{word-spacing:-3.300000px;}
.ws5f{word-spacing:-3.168000px;}
.ws22{word-spacing:-3.102000px;}
.ws51{word-spacing:-2.904000px;}
.ws26{word-spacing:-2.772000px;}
.ws2a{word-spacing:-2.706000px;}
.ws1{word-spacing:-2.508000px;}
.ws4a{word-spacing:-2.442000px;}
.ws27{word-spacing:-2.310000px;}
.ws49{word-spacing:-2.244000px;}
.ws50{word-spacing:-2.046000px;}
.ws54{word-spacing:-1.980000px;}
.ws39{word-spacing:-1.848000px;}
.ws3a{word-spacing:-1.716000px;}
.ws4b{word-spacing:-1.320000px;}
.ws2b{word-spacing:-0.990000px;}
.ws25{word-spacing:-0.924000px;}
.ws6{word-spacing:-0.792000px;}
.ws3e{word-spacing:-0.396000px;}
.ws2{word-spacing:-0.264000px;}
.ws52{word-spacing:-0.132000px;}
.ws24{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:0.066000px;}
.ws20{word-spacing:0.264000px;}
.ws3{word-spacing:0.660000px;}
.ws44{word-spacing:0.726000px;}
.ws4d{word-spacing:0.792000px;}
.ws68{word-spacing:0.858000px;}
.ws2c{word-spacing:1.188000px;}
.ws9{word-spacing:1.518000px;}
.ws11{word-spacing:1.716000px;}
.ws4{word-spacing:1.848000px;}
.ws19{word-spacing:1.980000px;}
.ws63{word-spacing:2.112000px;}
.ws1d{word-spacing:2.310000px;}
.ws48{word-spacing:2.442000px;}
.ws10{word-spacing:2.640000px;}
.ws16{word-spacing:2.904000px;}
.wsb{word-spacing:2.970000px;}
.ws3b{word-spacing:3.432000px;}
.ws5d{word-spacing:3.630000px;}
.ws41{word-spacing:3.762000px;}
.ws2d{word-spacing:3.894000px;}
.ws5c{word-spacing:4.158000px;}
.ws57{word-spacing:4.488000px;}
.ws28{word-spacing:4.620000px;}
.ws1e{word-spacing:4.752000px;}
.ws32{word-spacing:4.818000px;}
.ws3f{word-spacing:4.950000px;}
.ws66{word-spacing:5.016000px;}
.ws1f{word-spacing:5.148000px;}
.ws47{word-spacing:5.214000px;}
.ws2e{word-spacing:5.346000px;}
.ws2f{word-spacing:5.544000px;}
.ws5b{word-spacing:5.742000px;}
.ws21{word-spacing:6.138000px;}
.ws67{word-spacing:6.270000px;}
.ws7{word-spacing:6.336000px;}
.ws35{word-spacing:6.600000px;}
.wse{word-spacing:6.930000px;}
.ws55{word-spacing:6.996000px;}
.ws18{word-spacing:7.392000px;}
.ws59{word-spacing:7.590000px;}
.ws36{word-spacing:7.656000px;}
.ws43{word-spacing:7.722000px;}
.ws1c{word-spacing:8.052000px;}
.wsa{word-spacing:8.184000px;}
.ws40{word-spacing:8.646000px;}
.ws29{word-spacing:8.976000px;}
.wsc{word-spacing:9.306000px;}
.ws4f{word-spacing:9.372000px;}
.ws58{word-spacing:9.504000px;}
.ws45{word-spacing:9.768000px;}
.ws38{word-spacing:10.032000px;}
.ws3d{word-spacing:10.494000px;}
.ws1b{word-spacing:10.956000px;}
.ws53{word-spacing:11.088000px;}
.ws5a{word-spacing:11.418000px;}
.ws12{word-spacing:11.880000px;}
.ws61{word-spacing:12.210000px;}
.ws64{word-spacing:12.474000px;}
.ws34{word-spacing:12.936000px;}
.ws23{word-spacing:13.068000px;}
.ws46{word-spacing:13.200000px;}
.ws13{word-spacing:16.368000px;}
.ws1a{word-spacing:16.962000px;}
.ws3c{word-spacing:17.622000px;}
.ws65{word-spacing:19.074000px;}
.wsd{word-spacing:20.460000px;}
.wsf{word-spacing:20.724000px;}
.ws37{word-spacing:20.856000px;}
.ws4e{word-spacing:22.506000px;}
.ws33{word-spacing:25.476000px;}
.ws4c{word-spacing:26.070000px;}
.ws17{word-spacing:27.324000px;}
.ws5e{word-spacing:28.644000px;}
.ws60{word-spacing:29.568000px;}
.ws31{word-spacing:37.290000px;}
.ws62{word-spacing:39.336000px;}
.ws15{word-spacing:60.720000px;}
.ws14{word-spacing:88.968000px;}
._1b{margin-left:-16.460400px;}
._1{margin-left:-7.524000px;}
._d{margin-left:-5.677200px;}
._2{margin-left:-4.090800px;}
._4{margin-left:-2.188800px;}
._0{margin-left:-1.063800px;}
._5{width:1.511400px;}
._3{width:2.659800px;}
._7{width:4.065600px;}
._c{width:5.821200px;}
._a{width:7.365600px;}
._6{width:9.108000px;}
._9{width:10.480800px;}
._e{width:11.708400px;}
._13{width:12.883200px;}
._8{width:13.906200px;}
._10{width:17.074200px;}
._11{width:18.135600px;}
._f{width:19.305000px;}
._b{width:20.341200px;}
._20{width:22.195800px;}
._1d{width:23.667600px;}
._1a{width:25.740000px;}
._1c{width:27.363600px;}
._21{width:28.380000px;}
._1f{width:30.452400px;}
._12{width:36.624600px;}
._1e{width:39.263400px;}
._18{width:76.626000px;}
._15{width:167.904000px;}
._19{width:263.076000px;}
._17{width:342.408000px;}
._14{width:556.116000px;}
._16{width:710.028000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(178,71,89);}
.fs4{font-size:38.478000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.590700px;}
.y29{bottom:72.592350px;}
.y2{bottom:72.698700px;}
.y2a{bottom:72.700350px;}
.y7c{bottom:110.583150px;}
.y26{bottom:112.725150px;}
.y6f{bottom:112.733850px;}
.y5d{bottom:119.041200px;}
.y7b{bottom:130.383150px;}
.y25{bottom:132.525150px;}
.y6e{bottom:132.533850px;}
.y5c{bottom:143.791200px;}
.y7a{bottom:150.183150px;}
.y24{bottom:152.325150px;}
.y6d{bottom:152.333850px;}
.y5b{bottom:169.877700px;}
.y79{bottom:169.983150px;}
.y23{bottom:172.125150px;}
.y6c{bottom:172.133850px;}
.y78{bottom:189.783150px;}
.y22{bottom:191.925150px;}
.y6b{bottom:191.933850px;}
.y5a{bottom:195.964200px;}
.y21{bottom:211.725150px;}
.y6a{bottom:211.733850px;}
.y20{bottom:231.525150px;}
.y69{bottom:231.533850px;}
.y58{bottom:234.371850px;}
.y59{bottom:234.378000px;}
.y1f{bottom:251.325150px;}
.y68{bottom:251.333850px;}
.y77{bottom:270.666150px;}
.y1e{bottom:271.125150px;}
.y57{bottom:271.133850px;}
.y76{bottom:290.466150px;}
.y1d{bottom:290.925150px;}
.y56{bottom:290.933850px;}
.y75{bottom:310.266150px;}
.y1c{bottom:310.725150px;}
.y55{bottom:310.733850px;}
.y74{bottom:330.066150px;}
.y1b{bottom:330.525150px;}
.y54{bottom:330.533850px;}
.y73{bottom:349.866150px;}
.y1a{bottom:350.325150px;}
.y53{bottom:350.333850px;}
.y72{bottom:369.666150px;}
.y19{bottom:370.125150px;}
.y52{bottom:370.133850px;}
.y71{bottom:389.466150px;}
.y18{bottom:389.925150px;}
.y51{bottom:389.933850px;}
.y50{bottom:409.733850px;}
.y70{bottom:417.770100px;}
.y17{bottom:429.525150px;}
.y4f{bottom:429.533850px;}
.y16{bottom:449.325150px;}
.y4e{bottom:449.333850px;}
.y15{bottom:469.125150px;}
.y4d{bottom:469.133850px;}
.y14{bottom:488.925150px;}
.y4c{bottom:488.933850px;}
.y13{bottom:508.725150px;}
.y4b{bottom:508.733850px;}
.y12{bottom:528.525150px;}
.y4a{bottom:528.533850px;}
.y11{bottom:548.325150px;}
.y49{bottom:548.333850px;}
.y10{bottom:568.125150px;}
.y48{bottom:568.133850px;}
.yf{bottom:587.925150px;}
.y47{bottom:587.933850px;}
.ye{bottom:607.725150px;}
.y46{bottom:607.733850px;}
.y45{bottom:627.533850px;}
.y44{bottom:647.333850px;}
.y43{bottom:667.133850px;}
.yd{bottom:675.540150px;}
.y42{bottom:686.933850px;}
.yc{bottom:695.340150px;}
.y41{bottom:706.733850px;}
.yb{bottom:715.140150px;}
.y40{bottom:726.533850px;}
.y3f{bottom:746.333850px;}
.y3e{bottom:766.133850px;}
.y3d{bottom:785.933850px;}
.ya{bottom:787.215531px;}
.y3c{bottom:805.733850px;}
.y9{bottom:810.021600px;}
.y3b{bottom:825.533850px;}
.y3a{bottom:845.333850px;}
.y39{bottom:865.133850px;}
.y8{bottom:868.939800px;}
.y38{bottom:884.933850px;}
.y7{bottom:888.739800px;}
.y67{bottom:894.260250px;}
.y37{bottom:904.733850px;}
.y66{bottom:918.267750px;}
.y36{bottom:924.533850px;}
.y35{bottom:944.333850px;}
.y6{bottom:948.082950px;}
.y65{bottom:956.201250px;}
.y34{bottom:964.133850px;}
.y64{bottom:980.951250px;}
.y33{bottom:983.933850px;}
.y32{bottom:1003.733850px;}
.y63{bottom:1007.037750px;}
.y5{bottom:1023.023550px;}
.y31{bottom:1023.533850px;}
.y62{bottom:1031.787750px;}
.y30{bottom:1043.333850px;}
.y61{bottom:1057.874250px;}
.y2f{bottom:1063.133850px;}
.y2e{bottom:1082.933850px;}
.y60{bottom:1083.960750px;}
.y2d{bottom:1102.733850px;}
.y5f{bottom:1108.710750px;}
.y2c{bottom:1122.533850px;}
.y5e{bottom:1135.176750px;}
.y2b{bottom:1142.333850px;}
.y4{bottom:1176.782700px;}
.y28{bottom:1176.784350px;}
.y3{bottom:1192.982700px;}
.y27{bottom:1192.984350px;}
.h8{height:29.083957px;}
.h3{height:40.816406px;}
.ha{height:40.869141px;}
.h2{height:41.291016px;}
.h5{height:49.886719px;}
.h9{height:49.951172px;}
.h7{height:51.061957px;}
.h6{height:54.000000px;}
.hb{height:54.421875px;}
.h4{height:73.406250px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:107.997150px;}
.x11{left:117.474750px;}
.x4{left:122.122650px;}
.x9{left:133.518750px;}
.x22{left:137.782500px;}
.x12{left:154.055250px;}
.x6{left:188.194350px;}
.x15{left:189.744750px;}
.x14{left:191.625750px;}
.x5{left:204.700350px;}
.x8{left:232.197001px;}
.x1{left:274.411650px;}
.xc{left:299.119500px;}
.x23{left:311.980500px;}
.x24{left:314.965500px;}
.x25{left:325.576200px;}
.x26{left:328.561050px;}
.xd{left:366.317250px;}
.xe{left:369.302250px;}
.x7{left:376.230450px;}
.xf{left:379.912800px;}
.x10{left:382.897800px;}
.x21{left:394.878000px;}
.x13{left:401.060250px;}
.x2a{left:412.422750px;}
.x2b{left:415.407600px;}
.x2c{left:426.018300px;}
.x2d{left:429.003300px;}
.xa{left:459.228750px;}
.x3{left:460.644150px;}
.x27{left:470.994450px;}
.x28{left:473.979450px;}
.xb{left:484.737750px;}
.x1a{left:485.977350px;}
.x29{left:487.575000px;}
.x1b{left:491.382900px;}
.x2e{left:500.715450px;}
.x1c{left:501.828450px;}
.x2f{left:503.700450px;}
.x1d{left:507.233850px;}
.x30{left:514.311000px;}
.x31{left:517.296000px;}
.x16{left:585.630450px;}
.x17{left:589.546200px;}
.x18{left:600.156750px;}
.x19{left:604.072650px;}
.x1e{left:771.309150px;}
.x1f{left:774.302850px;}
.x20{left:784.913400px;}
@media print{
.v2{vertical-align:-19.548021pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls6{letter-spacing:-1.056000pt;}
.ls4{letter-spacing:-0.586667pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.058667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.015893pt;}
.ls1{letter-spacing:0.234667pt;}
.ws30{word-spacing:-58.666667pt;}
.ws56{word-spacing:-14.138667pt;}
.ws42{word-spacing:-3.402667pt;}
.ws8{word-spacing:-2.933333pt;}
.ws5f{word-spacing:-2.816000pt;}
.ws22{word-spacing:-2.757333pt;}
.ws51{word-spacing:-2.581333pt;}
.ws26{word-spacing:-2.464000pt;}
.ws2a{word-spacing:-2.405333pt;}
.ws1{word-spacing:-2.229333pt;}
.ws4a{word-spacing:-2.170667pt;}
.ws27{word-spacing:-2.053333pt;}
.ws49{word-spacing:-1.994667pt;}
.ws50{word-spacing:-1.818667pt;}
.ws54{word-spacing:-1.760000pt;}
.ws39{word-spacing:-1.642667pt;}
.ws3a{word-spacing:-1.525333pt;}
.ws4b{word-spacing:-1.173333pt;}
.ws2b{word-spacing:-0.880000pt;}
.ws25{word-spacing:-0.821333pt;}
.ws6{word-spacing:-0.704000pt;}
.ws3e{word-spacing:-0.352000pt;}
.ws2{word-spacing:-0.234667pt;}
.ws52{word-spacing:-0.117333pt;}
.ws24{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:0.058667pt;}
.ws20{word-spacing:0.234667pt;}
.ws3{word-spacing:0.586667pt;}
.ws44{word-spacing:0.645333pt;}
.ws4d{word-spacing:0.704000pt;}
.ws68{word-spacing:0.762667pt;}
.ws2c{word-spacing:1.056000pt;}
.ws9{word-spacing:1.349333pt;}
.ws11{word-spacing:1.525333pt;}
.ws4{word-spacing:1.642667pt;}
.ws19{word-spacing:1.760000pt;}
.ws63{word-spacing:1.877333pt;}
.ws1d{word-spacing:2.053333pt;}
.ws48{word-spacing:2.170667pt;}
.ws10{word-spacing:2.346667pt;}
.ws16{word-spacing:2.581333pt;}
.wsb{word-spacing:2.640000pt;}
.ws3b{word-spacing:3.050667pt;}
.ws5d{word-spacing:3.226667pt;}
.ws41{word-spacing:3.344000pt;}
.ws2d{word-spacing:3.461333pt;}
.ws5c{word-spacing:3.696000pt;}
.ws57{word-spacing:3.989333pt;}
.ws28{word-spacing:4.106667pt;}
.ws1e{word-spacing:4.224000pt;}
.ws32{word-spacing:4.282667pt;}
.ws3f{word-spacing:4.400000pt;}
.ws66{word-spacing:4.458667pt;}
.ws1f{word-spacing:4.576000pt;}
.ws47{word-spacing:4.634667pt;}
.ws2e{word-spacing:4.752000pt;}
.ws2f{word-spacing:4.928000pt;}
.ws5b{word-spacing:5.104000pt;}
.ws21{word-spacing:5.456000pt;}
.ws67{word-spacing:5.573333pt;}
.ws7{word-spacing:5.632000pt;}
.ws35{word-spacing:5.866667pt;}
.wse{word-spacing:6.160000pt;}
.ws55{word-spacing:6.218667pt;}
.ws18{word-spacing:6.570667pt;}
.ws59{word-spacing:6.746667pt;}
.ws36{word-spacing:6.805333pt;}
.ws43{word-spacing:6.864000pt;}
.ws1c{word-spacing:7.157333pt;}
.wsa{word-spacing:7.274667pt;}
.ws40{word-spacing:7.685333pt;}
.ws29{word-spacing:7.978667pt;}
.wsc{word-spacing:8.272000pt;}
.ws4f{word-spacing:8.330667pt;}
.ws58{word-spacing:8.448000pt;}
.ws45{word-spacing:8.682667pt;}
.ws38{word-spacing:8.917333pt;}
.ws3d{word-spacing:9.328000pt;}
.ws1b{word-spacing:9.738667pt;}
.ws53{word-spacing:9.856000pt;}
.ws5a{word-spacing:10.149333pt;}
.ws12{word-spacing:10.560000pt;}
.ws61{word-spacing:10.853333pt;}
.ws64{word-spacing:11.088000pt;}
.ws34{word-spacing:11.498667pt;}
.ws23{word-spacing:11.616000pt;}
.ws46{word-spacing:11.733333pt;}
.ws13{word-spacing:14.549333pt;}
.ws1a{word-spacing:15.077333pt;}
.ws3c{word-spacing:15.664000pt;}
.ws65{word-spacing:16.954667pt;}
.wsd{word-spacing:18.186667pt;}
.wsf{word-spacing:18.421333pt;}
.ws37{word-spacing:18.538667pt;}
.ws4e{word-spacing:20.005333pt;}
.ws33{word-spacing:22.645333pt;}
.ws4c{word-spacing:23.173333pt;}
.ws17{word-spacing:24.288000pt;}
.ws5e{word-spacing:25.461333pt;}
.ws60{word-spacing:26.282667pt;}
.ws31{word-spacing:33.146667pt;}
.ws62{word-spacing:34.965333pt;}
.ws15{word-spacing:53.973333pt;}
.ws14{word-spacing:79.082667pt;}
._1b{margin-left:-14.631467pt;}
._1{margin-left:-6.688000pt;}
._d{margin-left:-5.046400pt;}
._2{margin-left:-3.636267pt;}
._4{margin-left:-1.945600pt;}
._0{margin-left:-0.945600pt;}
._5{width:1.343467pt;}
._3{width:2.364267pt;}
._7{width:3.613867pt;}
._c{width:5.174400pt;}
._a{width:6.547200pt;}
._6{width:8.096000pt;}
._9{width:9.316267pt;}
._e{width:10.407467pt;}
._13{width:11.451733pt;}
._8{width:12.361067pt;}
._10{width:15.177067pt;}
._11{width:16.120533pt;}
._f{width:17.160000pt;}
._b{width:18.081067pt;}
._20{width:19.729600pt;}
._1d{width:21.037867pt;}
._1a{width:22.880000pt;}
._1c{width:24.323200pt;}
._21{width:25.226667pt;}
._1f{width:27.068800pt;}
._12{width:32.555200pt;}
._1e{width:34.900800pt;}
._18{width:68.112000pt;}
._15{width:149.248000pt;}
._19{width:233.845333pt;}
._17{width:304.362667pt;}
._14{width:494.325333pt;}
._16{width:631.136000pt;}
.fs4{font-size:34.202667pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.525067pt;}
.y29{bottom:64.526533pt;}
.y2{bottom:64.621067pt;}
.y2a{bottom:64.622533pt;}
.y7c{bottom:98.296133pt;}
.y26{bottom:100.200133pt;}
.y6f{bottom:100.207867pt;}
.y5d{bottom:105.814400pt;}
.y7b{bottom:115.896133pt;}
.y25{bottom:117.800133pt;}
.y6e{bottom:117.807867pt;}
.y5c{bottom:127.814400pt;}
.y7a{bottom:133.496133pt;}
.y24{bottom:135.400133pt;}
.y6d{bottom:135.407867pt;}
.y5b{bottom:151.002400pt;}
.y79{bottom:151.096133pt;}
.y23{bottom:153.000133pt;}
.y6c{bottom:153.007867pt;}
.y78{bottom:168.696133pt;}
.y22{bottom:170.600133pt;}
.y6b{bottom:170.607867pt;}
.y5a{bottom:174.190400pt;}
.y21{bottom:188.200133pt;}
.y6a{bottom:188.207867pt;}
.y20{bottom:205.800133pt;}
.y69{bottom:205.807867pt;}
.y58{bottom:208.330533pt;}
.y59{bottom:208.336000pt;}
.y1f{bottom:223.400133pt;}
.y68{bottom:223.407867pt;}
.y77{bottom:240.592133pt;}
.y1e{bottom:241.000133pt;}
.y57{bottom:241.007867pt;}
.y76{bottom:258.192133pt;}
.y1d{bottom:258.600133pt;}
.y56{bottom:258.607867pt;}
.y75{bottom:275.792133pt;}
.y1c{bottom:276.200133pt;}
.y55{bottom:276.207867pt;}
.y74{bottom:293.392133pt;}
.y1b{bottom:293.800133pt;}
.y54{bottom:293.807867pt;}
.y73{bottom:310.992133pt;}
.y1a{bottom:311.400133pt;}
.y53{bottom:311.407867pt;}
.y72{bottom:328.592133pt;}
.y19{bottom:329.000133pt;}
.y52{bottom:329.007867pt;}
.y71{bottom:346.192133pt;}
.y18{bottom:346.600133pt;}
.y51{bottom:346.607867pt;}
.y50{bottom:364.207867pt;}
.y70{bottom:371.351200pt;}
.y17{bottom:381.800133pt;}
.y4f{bottom:381.807867pt;}
.y16{bottom:399.400133pt;}
.y4e{bottom:399.407867pt;}
.y15{bottom:417.000133pt;}
.y4d{bottom:417.007867pt;}
.y14{bottom:434.600133pt;}
.y4c{bottom:434.607867pt;}
.y13{bottom:452.200133pt;}
.y4b{bottom:452.207867pt;}
.y12{bottom:469.800133pt;}
.y4a{bottom:469.807867pt;}
.y11{bottom:487.400133pt;}
.y49{bottom:487.407867pt;}
.y10{bottom:505.000133pt;}
.y48{bottom:505.007867pt;}
.yf{bottom:522.600133pt;}
.y47{bottom:522.607867pt;}
.ye{bottom:540.200133pt;}
.y46{bottom:540.207867pt;}
.y45{bottom:557.807867pt;}
.y44{bottom:575.407867pt;}
.y43{bottom:593.007867pt;}
.yd{bottom:600.480133pt;}
.y42{bottom:610.607867pt;}
.yc{bottom:618.080133pt;}
.y41{bottom:628.207867pt;}
.yb{bottom:635.680133pt;}
.y40{bottom:645.807867pt;}
.y3f{bottom:663.407867pt;}
.y3e{bottom:681.007867pt;}
.y3d{bottom:698.607867pt;}
.ya{bottom:699.747139pt;}
.y3c{bottom:716.207867pt;}
.y9{bottom:720.019200pt;}
.y3b{bottom:733.807867pt;}
.y3a{bottom:751.407867pt;}
.y39{bottom:769.007867pt;}
.y8{bottom:772.390933pt;}
.y38{bottom:786.607867pt;}
.y7{bottom:789.990933pt;}
.y67{bottom:794.898000pt;}
.y37{bottom:804.207867pt;}
.y66{bottom:816.238000pt;}
.y36{bottom:821.807867pt;}
.y35{bottom:839.407867pt;}
.y6{bottom:842.740400pt;}
.y65{bottom:849.956667pt;}
.y34{bottom:857.007867pt;}
.y64{bottom:871.956667pt;}
.y33{bottom:874.607867pt;}
.y32{bottom:892.207867pt;}
.y63{bottom:895.144667pt;}
.y5{bottom:909.354267pt;}
.y31{bottom:909.807867pt;}
.y62{bottom:917.144667pt;}
.y30{bottom:927.407867pt;}
.y61{bottom:940.332667pt;}
.y2f{bottom:945.007867pt;}
.y2e{bottom:962.607867pt;}
.y60{bottom:963.520667pt;}
.y2d{bottom:980.207867pt;}
.y5f{bottom:985.520667pt;}
.y2c{bottom:997.807867pt;}
.y5e{bottom:1009.046000pt;}
.y2b{bottom:1015.407867pt;}
.y4{bottom:1046.029067pt;}
.y28{bottom:1046.030533pt;}
.y3{bottom:1060.429067pt;}
.y27{bottom:1060.430533pt;}
.h8{height:25.852406pt;}
.h3{height:36.281250pt;}
.ha{height:36.328125pt;}
.h2{height:36.703125pt;}
.h5{height:44.343750pt;}
.h9{height:44.401042pt;}
.h7{height:45.388406pt;}
.h6{height:48.000000pt;}
.hb{height:48.375000pt;}
.h4{height:65.250000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:95.997467pt;}
.x11{left:104.422000pt;}
.x4{left:108.553467pt;}
.x9{left:118.683333pt;}
.x22{left:122.473333pt;}
.x12{left:136.938000pt;}
.x6{left:167.283867pt;}
.x15{left:168.662000pt;}
.x14{left:170.334000pt;}
.x5{left:181.955867pt;}
.x8{left:206.397335pt;}
.x1{left:243.921467pt;}
.xc{left:265.884000pt;}
.x23{left:277.316000pt;}
.x24{left:279.969333pt;}
.x25{left:289.401067pt;}
.x26{left:292.054267pt;}
.xd{left:325.615333pt;}
.xe{left:328.268667pt;}
.x7{left:334.427067pt;}
.xf{left:337.700267pt;}
.x10{left:340.353600pt;}
.x21{left:351.002667pt;}
.x13{left:356.498000pt;}
.x2a{left:366.598000pt;}
.x2b{left:369.251200pt;}
.x2c{left:378.682933pt;}
.x2d{left:381.336267pt;}
.xa{left:408.203333pt;}
.x3{left:409.461467pt;}
.x27{left:418.661733pt;}
.x28{left:421.315067pt;}
.xb{left:430.878000pt;}
.x1a{left:431.979867pt;}
.x29{left:433.400000pt;}
.x1b{left:436.784800pt;}
.x2e{left:445.080400pt;}
.x1c{left:446.069733pt;}
.x2f{left:447.733733pt;}
.x1d{left:450.874533pt;}
.x30{left:457.165333pt;}
.x31{left:459.818667pt;}
.x16{left:520.560400pt;}
.x17{left:524.041067pt;}
.x18{left:533.472667pt;}
.x19{left:536.953467pt;}
.x1e{left:685.608133pt;}
.x1f{left:688.269200pt;}
.x20{left:697.700800pt;}
}




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