
    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_dee835ced627a9c361134022.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.008000;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_0c9668f7f8996f6a2873c8d1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.904297;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_5153e058fcb58b5bce536941.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.709000;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_cbb93218cf32363069118f23.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_15557528c4e507dd89dac9a9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.008000;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_1ce34193eb5f1a64c3f1ce0a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ac9a40387f613e91f9f74b80.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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;}
.ls12{letter-spacing:-2.016000px;}
.ls10{letter-spacing:-1.728000px;}
.ls25{letter-spacing:-1.652400px;}
.ls2f{letter-spacing:-1.584000px;}
.lsd{letter-spacing:-1.526400px;}
.ls11{letter-spacing:-1.440000px;}
.ls1{letter-spacing:-1.368000px;}
.ls16{letter-spacing:-1.335600px;}
.lsc{letter-spacing:-1.188000px;}
.ls2a{letter-spacing:-1.083600px;}
.ls35{letter-spacing:-1.029600px;}
.ls2b{letter-spacing:-0.928800px;}
.ls36{letter-spacing:-0.871200px;}
.ls2e{letter-spacing:-0.864000px;}
.ls22{letter-spacing:-0.846000px;}
.ls3{letter-spacing:-0.795600px;}
.ls39{letter-spacing:-0.792000px;}
.lsb{letter-spacing:-0.756000px;}
.ls15{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.540000px;}
.ls29{letter-spacing:-0.464400px;}
.ls17{letter-spacing:-0.432000px;}
.ls38{letter-spacing:-0.396000px;}
.ls34{letter-spacing:-0.381600px;}
.ls1f{letter-spacing:-0.331200px;}
.ls1c{letter-spacing:-0.309600px;}
.ls3a{letter-spacing:-0.237600px;}
.ls24{letter-spacing:-0.165600px;}
.ls31{letter-spacing:-0.097200px;}
.ls8{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.061200px;}
.lsf{letter-spacing:0.144000px;}
.ls2c{letter-spacing:0.169200px;}
.ls27{letter-spacing:0.309600px;}
.ls2d{letter-spacing:0.388800px;}
.ls2{letter-spacing:0.720000px;}
.ls20{letter-spacing:0.745200px;}
.ls18{letter-spacing:0.756000px;}
.ls28{letter-spacing:0.763200px;}
.ls13{letter-spacing:0.864000px;}
.ls37{letter-spacing:0.950400px;}
.ls0{letter-spacing:1.080000px;}
.ls1d{letter-spacing:1.083600px;}
.ls9{letter-spacing:1.188000px;}
.ls1e{letter-spacing:1.242000px;}
.ls5{letter-spacing:1.260000px;}
.lse{letter-spacing:1.335600px;}
.ls23{letter-spacing:1.353600px;}
.ls19{letter-spacing:1.512000px;}
.ls14{letter-spacing:1.584000px;}
.lsa{letter-spacing:1.620000px;}
.ls1b{letter-spacing:1.738800px;}
.ls32{letter-spacing:1.846800px;}
.ls21{letter-spacing:48.560400px;}
.ls1a{letter-spacing:48.607200px;}
.ls6{letter-spacing:99.000000px;}
.ls7{letter-spacing:99.000600px;}
.ls30{letter-spacing:102.780000px;}
.ls33{letter-spacing:134.280000px;}
.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;}
}
.ws2f{word-spacing:-57.240000px;}
.ws46{word-spacing:-56.095200px;}
.ws6{word-spacing:-54.950400px;}
.ws11{word-spacing:-43.488000px;}
.ws12{word-spacing:-42.768000px;}
.wsf{word-spacing:-41.184000px;}
.wse{word-spacing:-40.896000px;}
.ws10{word-spacing:-40.608000px;}
.ws3b{word-spacing:-39.600000px;}
.ws19{word-spacing:-31.536000px;}
.ws18{word-spacing:-31.212000px;}
.ws20{word-spacing:-24.757200px;}
.ws44{word-spacing:-22.687200px;}
.ws2a{word-spacing:-11.844000px;}
.ws43{word-spacing:-10.886400px;}
.ws4{word-spacing:-10.260000px;}
.ws1f{word-spacing:-10.044000px;}
.ws1d{word-spacing:-9.612000px;}
.ws36{word-spacing:-7.106400px;}
.ws5{word-spacing:-6.480000px;}
.ws29{word-spacing:-6.091200px;}
.ws41{word-spacing:-5.346000px;}
.ws1c{word-spacing:-3.888000px;}
.ws4c{word-spacing:-3.801600px;}
.ws22{word-spacing:-3.715200px;}
.ws48{word-spacing:-3.168000px;}
.ws27{word-spacing:-3.146400px;}
.ws9{word-spacing:-2.808000px;}
.ws1{word-spacing:-2.736000px;}
.ws23{word-spacing:-2.649600px;}
.ws8{word-spacing:-2.376000px;}
.ws25{word-spacing:-2.152800px;}
.ws42{word-spacing:-1.846800px;}
.ws49{word-spacing:-1.346400px;}
.ws3{word-spacing:-1.260000px;}
.ws2b{word-spacing:-1.242000px;}
.ws26{word-spacing:-1.076400px;}
.ws2c{word-spacing:-0.979200px;}
.wsc{word-spacing:-0.954000px;}
.wsa{word-spacing:-0.432000px;}
.ws3c{word-spacing:-0.388800px;}
.ws1e{word-spacing:-0.324000px;}
.ws30{word-spacing:-0.190800px;}
.ws33{word-spacing:-0.154800px;}
.ws7{word-spacing:0.000000px;}
.ws4a{word-spacing:0.396000px;}
.ws37{word-spacing:0.414000px;}
.ws40{word-spacing:0.432000px;}
.ws47{word-spacing:0.633600px;}
.ws2d{word-spacing:0.918000px;}
.ws3a{word-spacing:1.008000px;}
.ws35{word-spacing:1.083600px;}
.ws3f{word-spacing:1.188000px;}
.ws34{word-spacing:1.238400px;}
.ws28{word-spacing:1.407600px;}
.ws16{word-spacing:1.728000px;}
.ws45{word-spacing:1.812600px;}
.ws17{word-spacing:2.016000px;}
.ws2{word-spacing:2.199600px;}
.ws1a{word-spacing:2.480400px;}
.ws24{word-spacing:2.484000px;}
.ws2e{word-spacing:2.631600px;}
.wsd{word-spacing:3.132000px;}
.wsb{word-spacing:3.434400px;}
.ws1b{word-spacing:3.600000px;}
.ws4b{word-spacing:3.960000px;}
.ws31{word-spacing:4.006800px;}
.ws32{word-spacing:4.179600px;}
.ws3e{word-spacing:4.752000px;}
.ws21{word-spacing:4.953600px;}
.ws15{word-spacing:5.616000px;}
.ws39{word-spacing:6.296400px;}
.ws0{word-spacing:6.552000px;}
.ws3d{word-spacing:7.632000px;}
.ws38{word-spacing:9.921600px;}
.ws13{word-spacing:81.216000px;}
.ws14{word-spacing:96.775200px;}
._11{margin-left:-3589.480080px;}
._a{margin-left:-16.408800px;}
._f{margin-left:-12.776400px;}
._3{margin-left:-10.872000px;}
._b{margin-left:-7.927200px;}
._8{margin-left:-6.707520px;}
._7{margin-left:-4.104000px;}
._9{margin-left:-3.103920px;}
._5{margin-left:-2.088000px;}
._4{margin-left:-1.080000px;}
._0{width:1.080000px;}
._1{width:2.088000px;}
._2{width:3.744000px;}
._12{width:4.968000px;}
._e{width:6.556320px;}
._6{width:8.143200px;}
._d{width:10.686960px;}
._10{width:11.791440px;}
._c{width:189.216000px;}
._13{width:1798.783920px;}
.fc5{color:rgb(15,122,190);}
.fc3{color:rgb(14,121,190);}
.fc4{color:rgb(118,214,255);}
.fc1{color:rgb(0,0,0);}
.fc6{color:rgb(146,208,80);}
.fc2{color:rgb(128,204,40);}
.fc0{color:rgb(0,142,202);}
.fs1{font-size:46.800000px;}
.fsa{font-size:61.200000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:79.200000px;}
.fs8{font-size:82.800000px;}
.fs3{font-size:97.200000px;}
.fs4{font-size:108.000000px;}
.fs6{font-size:144.000000px;}
.fs7{font-size:154.800000px;}
.fs9{font-size:169.200000px;}
.fs2{font-size:180.000000px;}
.fs5{font-size:190.800000px;}
.y0{bottom:0.000000px;}
.y2{bottom:19.322850px;}
.y3{bottom:32.151600px;}
.y1{bottom:46.124850px;}
.y47{bottom:96.924300px;}
.y54{bottom:104.445450px;}
.y37{bottom:105.531750px;}
.y34{bottom:107.870850px;}
.y73{bottom:108.577050px;}
.y49{bottom:121.205400px;}
.y3f{bottom:122.116200px;}
.y2c{bottom:122.126850px;}
.y2a{bottom:122.685750px;}
.y2e{bottom:122.706450px;}
.y30{bottom:125.500950px;}
.y4c{bottom:126.310200px;}
.y36{bottom:130.723650px;}
.y1e{bottom:131.000400px;}
.y33{bottom:133.062750px;}
.y72{bottom:139.168050px;}
.y48{bottom:146.397300px;}
.y3e{bottom:147.308100px;}
.y2b{bottom:147.318750px;}
.y29{bottom:147.877650px;}
.y2d{bottom:147.898350px;}
.y38{bottom:147.925350px;}
.y2f{bottom:150.692850px;}
.y35{bottom:155.915550px;}
.y32{bottom:158.254650px;}
.y12{bottom:163.032600px;}
.y13{bottom:163.749000px;}
.yb{bottom:165.845100px;}
.y71{bottom:178.833450px;}
.ya{bottom:198.245100px;}
.y3d{bottom:199.520250px;}
.y27{bottom:205.955400px;}
.y46{bottom:211.549350px;}
.y9{bottom:230.645100px;}
.y6{bottom:238.015500px;}
.y26{bottom:238.355400px;}
.y1b{bottom:239.042250px;}
.y45{bottom:258.337650px;}
.y8{bottom:263.045100px;}
.y25{bottom:270.755400px;}
.y1a{bottom:271.820250px;}
.y66{bottom:272.916150px;}
.y5{bottom:292.015500px;}
.y14{bottom:294.802050px;}
.y65{bottom:298.108050px;}
.y19{bottom:304.220250px;}
.y53{bottom:319.473300px;}
.y64{bottom:323.299950px;}
.y18{bottom:336.620250px;}
.y4{bottom:346.015500px;}
.y63{bottom:348.491850px;}
.y52{bottom:351.873300px;}
.y44{bottom:351.952950px;}
.y11{bottom:354.361800px;}
.y57{bottom:354.800100px;}
.y24{bottom:367.955400px;}
.y17{bottom:369.020250px;}
.y56{bottom:383.600100px;}
.y51{bottom:384.273300px;}
.y43{bottom:398.741250px;}
.y23{bottom:400.355400px;}
.y60{bottom:410.348400px;}
.y55{bottom:412.399950px;}
.y16{bottom:412.814250px;}
.y22{bottom:432.755400px;}
.y5f{bottom:435.540300px;}
.ye{bottom:448.214100px;}
.y70{bottom:456.490950px;}
.y5e{bottom:460.732200px;}
.y10{bottom:464.296800px;}
.y21{bottom:465.155400px;}
.y50{bottom:467.136300px;}
.y15{bottom:470.561400px;}
.y5d{bottom:485.924100px;}
.y6c{bottom:486.181800px;}
.y6f{bottom:486.190950px;}
.y42{bottom:492.356550px;}
.y4f{bottom:499.536300px;}
.y5c{bottom:511.116000px;}
.y6b{bottom:516.781800px;}
.y6e{bottom:516.781950px;}
.yf{bottom:517.796400px;}
.y20{bottom:529.955400px;}
.y5b{bottom:536.307900px;}
.y6a{bottom:547.381950px;}
.y5a{bottom:561.499800px;}
.y1f{bottom:562.355400px;}
.y3a{bottom:577.887000px;}
.y69{bottom:577.981800px;}
.y6d{bottom:577.981950px;}
.y59{bottom:586.691700px;}
.y39{bottom:590.494200px;}
.y41{bottom:598.534950px;}
.y68{bottom:608.581950px;}
.y4b{bottom:611.069250px;}
.y3c{bottom:619.273500px;}
.yd{bottom:621.031200px;}
.y4e{bottom:623.691150px;}
.y3b{bottom:631.880700px;}
.y67{bottom:652.894350px;}
.y1d{bottom:653.864700px;}
.y40{bottom:656.156550px;}
.y1c{bottom:665.586000px;}
.y4d{bottom:666.891150px;}
.y4a{bottom:668.690850px;}
.y61{bottom:673.719750px;}
.y58{bottom:678.621600px;}
.y62{bottom:678.621750px;}
.yc{bottom:678.652800px;}
.y31{bottom:692.129100px;}
.y28{bottom:694.829250px;}
.y7{bottom:757.767450px;}
.h2{height:35.942400px;}
.hc{height:47.001600px;}
.h1{height:55.296000px;}
.h10{height:60.825600px;}
.ha{height:63.590400px;}
.h4{height:68.040000px;}
.hf{height:70.811719px;}
.hd{height:78.679688px;}
.h5{height:82.944000px;}
.h8{height:104.835938px;}
.he{height:104.906250px;}
.h7{height:110.592000px;}
.h9{height:118.886400px;}
.h3{height:124.365234px;}
.hb{height:129.945600px;}
.h6{height:146.534400px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x2{left:30.288750px;}
.x30{left:49.366350px;}
.x40{left:58.035300px;}
.x14{left:59.964600px;}
.x17{left:61.362300px;}
.x16{left:65.911050px;}
.x5{left:70.517850px;}
.x32{left:72.943650px;}
.x13{left:74.629500px;}
.x1b{left:81.129900px;}
.x23{left:86.799900px;}
.x3f{left:89.800050px;}
.x3a{left:95.843100px;}
.x6{left:104.717850px;}
.x11{left:108.337050px;}
.x39{left:131.947350px;}
.x1{left:156.066450px;}
.x2a{left:161.061150px;}
.x24{left:181.800150px;}
.x12{left:197.719650px;}
.x3b{left:215.766900px;}
.x3c{left:217.567800px;}
.x26{left:222.452100px;}
.x3d{left:227.462400px;}
.x31{left:236.624850px;}
.x8{left:250.932900px;}
.x3e{left:254.455200px;}
.x27{left:272.871000px;}
.x18{left:300.923400px;}
.x1c{left:317.627400px;}
.x10{left:337.579950px;}
.x2b{left:344.661150px;}
.x2d{left:370.403700px;}
.x2e{left:382.013700px;}
.x9{left:384.111300px;}
.x2f{left:426.104700px;}
.x7{left:449.841900px;}
.xc{left:486.541650px;}
.x2c{left:491.903700px;}
.x25{left:509.149950px;}
.x19{left:540.381000px;}
.x1f{left:571.348650px;}
.xa{left:583.687800px;}
.x42{left:585.193800px;}
.x3{left:598.698600px;}
.x41{left:612.791100px;}
.x21{left:614.854350px;}
.xb{left:617.887950px;}
.x1e{left:626.505150px;}
.x1d{left:635.501550px;}
.x20{left:643.350450px;}
.xf{left:654.868500px;}
.x28{left:736.296150px;}
.x37{left:743.363700px;}
.x33{left:746.965500px;}
.x35{left:755.970000px;}
.xd{left:758.355450px;}
.x36{left:761.372700px;}
.x34{left:764.063700px;}
.x15{left:777.518850px;}
.x22{left:798.092700px;}
.x1a{left:800.497200px;}
.x38{left:818.049300px;}
.xe{left:842.937600px;}
.x29{left:990.321750px;}
.x4{left:1003.821750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-1.792000pt;}
.ls10{letter-spacing:-1.536000pt;}
.ls25{letter-spacing:-1.468800pt;}
.ls2f{letter-spacing:-1.408000pt;}
.lsd{letter-spacing:-1.356800pt;}
.ls11{letter-spacing:-1.280000pt;}
.ls1{letter-spacing:-1.216000pt;}
.ls16{letter-spacing:-1.187200pt;}
.lsc{letter-spacing:-1.056000pt;}
.ls2a{letter-spacing:-0.963200pt;}
.ls35{letter-spacing:-0.915200pt;}
.ls2b{letter-spacing:-0.825600pt;}
.ls36{letter-spacing:-0.774400pt;}
.ls2e{letter-spacing:-0.768000pt;}
.ls22{letter-spacing:-0.752000pt;}
.ls3{letter-spacing:-0.707200pt;}
.ls39{letter-spacing:-0.704000pt;}
.lsb{letter-spacing:-0.672000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls29{letter-spacing:-0.412800pt;}
.ls17{letter-spacing:-0.384000pt;}
.ls38{letter-spacing:-0.352000pt;}
.ls34{letter-spacing:-0.339200pt;}
.ls1f{letter-spacing:-0.294400pt;}
.ls1c{letter-spacing:-0.275200pt;}
.ls3a{letter-spacing:-0.211200pt;}
.ls24{letter-spacing:-0.147200pt;}
.ls31{letter-spacing:-0.086400pt;}
.ls8{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.054400pt;}
.lsf{letter-spacing:0.128000pt;}
.ls2c{letter-spacing:0.150400pt;}
.ls27{letter-spacing:0.275200pt;}
.ls2d{letter-spacing:0.345600pt;}
.ls2{letter-spacing:0.640000pt;}
.ls20{letter-spacing:0.662400pt;}
.ls18{letter-spacing:0.672000pt;}
.ls28{letter-spacing:0.678400pt;}
.ls13{letter-spacing:0.768000pt;}
.ls37{letter-spacing:0.844800pt;}
.ls0{letter-spacing:0.960000pt;}
.ls1d{letter-spacing:0.963200pt;}
.ls9{letter-spacing:1.056000pt;}
.ls1e{letter-spacing:1.104000pt;}
.ls5{letter-spacing:1.120000pt;}
.lse{letter-spacing:1.187200pt;}
.ls23{letter-spacing:1.203200pt;}
.ls19{letter-spacing:1.344000pt;}
.ls14{letter-spacing:1.408000pt;}
.lsa{letter-spacing:1.440000pt;}
.ls1b{letter-spacing:1.545600pt;}
.ls32{letter-spacing:1.641600pt;}
.ls21{letter-spacing:43.164800pt;}
.ls1a{letter-spacing:43.206400pt;}
.ls6{letter-spacing:88.000000pt;}
.ls7{letter-spacing:88.000533pt;}
.ls30{letter-spacing:91.360000pt;}
.ls33{letter-spacing:119.360000pt;}
.ws2f{word-spacing:-50.880000pt;}
.ws46{word-spacing:-49.862400pt;}
.ws6{word-spacing:-48.844800pt;}
.ws11{word-spacing:-38.656000pt;}
.ws12{word-spacing:-38.016000pt;}
.wsf{word-spacing:-36.608000pt;}
.wse{word-spacing:-36.352000pt;}
.ws10{word-spacing:-36.096000pt;}
.ws3b{word-spacing:-35.200000pt;}
.ws19{word-spacing:-28.032000pt;}
.ws18{word-spacing:-27.744000pt;}
.ws20{word-spacing:-22.006400pt;}
.ws44{word-spacing:-20.166400pt;}
.ws2a{word-spacing:-10.528000pt;}
.ws43{word-spacing:-9.676800pt;}
.ws4{word-spacing:-9.120000pt;}
.ws1f{word-spacing:-8.928000pt;}
.ws1d{word-spacing:-8.544000pt;}
.ws36{word-spacing:-6.316800pt;}
.ws5{word-spacing:-5.760000pt;}
.ws29{word-spacing:-5.414400pt;}
.ws41{word-spacing:-4.752000pt;}
.ws1c{word-spacing:-3.456000pt;}
.ws4c{word-spacing:-3.379200pt;}
.ws22{word-spacing:-3.302400pt;}
.ws48{word-spacing:-2.816000pt;}
.ws27{word-spacing:-2.796800pt;}
.ws9{word-spacing:-2.496000pt;}
.ws1{word-spacing:-2.432000pt;}
.ws23{word-spacing:-2.355200pt;}
.ws8{word-spacing:-2.112000pt;}
.ws25{word-spacing:-1.913600pt;}
.ws42{word-spacing:-1.641600pt;}
.ws49{word-spacing:-1.196800pt;}
.ws3{word-spacing:-1.120000pt;}
.ws2b{word-spacing:-1.104000pt;}
.ws26{word-spacing:-0.956800pt;}
.ws2c{word-spacing:-0.870400pt;}
.wsc{word-spacing:-0.848000pt;}
.wsa{word-spacing:-0.384000pt;}
.ws3c{word-spacing:-0.345600pt;}
.ws1e{word-spacing:-0.288000pt;}
.ws30{word-spacing:-0.169600pt;}
.ws33{word-spacing:-0.137600pt;}
.ws7{word-spacing:0.000000pt;}
.ws4a{word-spacing:0.352000pt;}
.ws37{word-spacing:0.368000pt;}
.ws40{word-spacing:0.384000pt;}
.ws47{word-spacing:0.563200pt;}
.ws2d{word-spacing:0.816000pt;}
.ws3a{word-spacing:0.896000pt;}
.ws35{word-spacing:0.963200pt;}
.ws3f{word-spacing:1.056000pt;}
.ws34{word-spacing:1.100800pt;}
.ws28{word-spacing:1.251200pt;}
.ws16{word-spacing:1.536000pt;}
.ws45{word-spacing:1.611200pt;}
.ws17{word-spacing:1.792000pt;}
.ws2{word-spacing:1.955200pt;}
.ws1a{word-spacing:2.204800pt;}
.ws24{word-spacing:2.208000pt;}
.ws2e{word-spacing:2.339200pt;}
.wsd{word-spacing:2.784000pt;}
.wsb{word-spacing:3.052800pt;}
.ws1b{word-spacing:3.200000pt;}
.ws4b{word-spacing:3.520000pt;}
.ws31{word-spacing:3.561600pt;}
.ws32{word-spacing:3.715200pt;}
.ws3e{word-spacing:4.224000pt;}
.ws21{word-spacing:4.403200pt;}
.ws15{word-spacing:4.992000pt;}
.ws39{word-spacing:5.596800pt;}
.ws0{word-spacing:5.824000pt;}
.ws3d{word-spacing:6.784000pt;}
.ws38{word-spacing:8.819200pt;}
.ws13{word-spacing:72.192000pt;}
.ws14{word-spacing:86.022400pt;}
._11{margin-left:-3190.648960pt;}
._a{margin-left:-14.585600pt;}
._f{margin-left:-11.356800pt;}
._3{margin-left:-9.664000pt;}
._b{margin-left:-7.046400pt;}
._8{margin-left:-5.962240pt;}
._7{margin-left:-3.648000pt;}
._9{margin-left:-2.759040pt;}
._5{margin-left:-1.856000pt;}
._4{margin-left:-0.960000pt;}
._0{width:0.960000pt;}
._1{width:1.856000pt;}
._2{width:3.328000pt;}
._12{width:4.416000pt;}
._e{width:5.827840pt;}
._6{width:7.238400pt;}
._d{width:9.499520pt;}
._10{width:10.481280pt;}
._c{width:168.192000pt;}
._13{width:1598.919040pt;}
.fs1{font-size:41.600000pt;}
.fsa{font-size:54.400000pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:70.400000pt;}
.fs8{font-size:73.600000pt;}
.fs3{font-size:86.400000pt;}
.fs4{font-size:96.000000pt;}
.fs6{font-size:128.000000pt;}
.fs7{font-size:137.600000pt;}
.fs9{font-size:150.400000pt;}
.fs2{font-size:160.000000pt;}
.fs5{font-size:169.600000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:17.175867pt;}
.y3{bottom:28.579200pt;}
.y1{bottom:40.999867pt;}
.y47{bottom:86.154933pt;}
.y54{bottom:92.840400pt;}
.y37{bottom:93.806000pt;}
.y34{bottom:95.885200pt;}
.y73{bottom:96.512933pt;}
.y49{bottom:107.738133pt;}
.y3f{bottom:108.547733pt;}
.y2c{bottom:108.557200pt;}
.y2a{bottom:109.054000pt;}
.y2e{bottom:109.072400pt;}
.y30{bottom:111.556400pt;}
.y4c{bottom:112.275733pt;}
.y36{bottom:116.198800pt;}
.y1e{bottom:116.444800pt;}
.y33{bottom:118.278000pt;}
.y72{bottom:123.704933pt;}
.y48{bottom:130.130933pt;}
.y3e{bottom:130.940533pt;}
.y2b{bottom:130.950000pt;}
.y29{bottom:131.446800pt;}
.y2d{bottom:131.465200pt;}
.y38{bottom:131.489200pt;}
.y2f{bottom:133.949200pt;}
.y35{bottom:138.591600pt;}
.y32{bottom:140.670800pt;}
.y12{bottom:144.917867pt;}
.y13{bottom:145.554667pt;}
.yb{bottom:147.417867pt;}
.y71{bottom:158.963067pt;}
.ya{bottom:176.217867pt;}
.y3d{bottom:177.351333pt;}
.y27{bottom:183.071467pt;}
.y46{bottom:188.043867pt;}
.y9{bottom:205.017867pt;}
.y6{bottom:211.569333pt;}
.y26{bottom:211.871467pt;}
.y1b{bottom:212.482000pt;}
.y45{bottom:229.633467pt;}
.y8{bottom:233.817867pt;}
.y25{bottom:240.671467pt;}
.y1a{bottom:241.618000pt;}
.y66{bottom:242.592133pt;}
.y5{bottom:259.569333pt;}
.y14{bottom:262.046267pt;}
.y65{bottom:264.984933pt;}
.y19{bottom:270.418000pt;}
.y53{bottom:283.976267pt;}
.y64{bottom:287.377733pt;}
.y18{bottom:299.218000pt;}
.y4{bottom:307.569333pt;}
.y63{bottom:309.770533pt;}
.y52{bottom:312.776267pt;}
.y44{bottom:312.847067pt;}
.y11{bottom:314.988267pt;}
.y57{bottom:315.377867pt;}
.y24{bottom:327.071467pt;}
.y17{bottom:328.018000pt;}
.y56{bottom:340.977867pt;}
.y51{bottom:341.576267pt;}
.y43{bottom:354.436667pt;}
.y23{bottom:355.871467pt;}
.y60{bottom:364.754133pt;}
.y55{bottom:366.577733pt;}
.y16{bottom:366.946000pt;}
.y22{bottom:384.671467pt;}
.y5f{bottom:387.146933pt;}
.ye{bottom:398.412533pt;}
.y70{bottom:405.769733pt;}
.y5e{bottom:409.539733pt;}
.y10{bottom:412.708267pt;}
.y21{bottom:413.471467pt;}
.y50{bottom:415.232267pt;}
.y15{bottom:418.276800pt;}
.y5d{bottom:431.932533pt;}
.y6c{bottom:432.161600pt;}
.y6f{bottom:432.169733pt;}
.y42{bottom:437.650267pt;}
.y4f{bottom:444.032267pt;}
.y5c{bottom:454.325333pt;}
.y6b{bottom:459.361600pt;}
.y6e{bottom:459.361733pt;}
.yf{bottom:460.263467pt;}
.y20{bottom:471.071467pt;}
.y5b{bottom:476.718133pt;}
.y6a{bottom:486.561733pt;}
.y5a{bottom:499.110933pt;}
.y1f{bottom:499.871467pt;}
.y3a{bottom:513.677333pt;}
.y69{bottom:513.761600pt;}
.y6d{bottom:513.761733pt;}
.y59{bottom:521.503733pt;}
.y39{bottom:524.883733pt;}
.y41{bottom:532.031067pt;}
.y68{bottom:540.961733pt;}
.y4b{bottom:543.172667pt;}
.y3c{bottom:550.465333pt;}
.yd{bottom:552.027733pt;}
.y4e{bottom:554.392133pt;}
.y3b{bottom:561.671733pt;}
.y67{bottom:580.350533pt;}
.y1d{bottom:581.213067pt;}
.y40{bottom:583.250267pt;}
.y1c{bottom:591.632000pt;}
.y4d{bottom:592.792133pt;}
.y4a{bottom:594.391867pt;}
.y61{bottom:598.862000pt;}
.y58{bottom:603.219200pt;}
.y62{bottom:603.219333pt;}
.yc{bottom:603.246933pt;}
.y31{bottom:615.225867pt;}
.y28{bottom:617.626000pt;}
.y7{bottom:673.571067pt;}
.h2{height:31.948800pt;}
.hc{height:41.779200pt;}
.h1{height:49.152000pt;}
.h10{height:54.067200pt;}
.ha{height:56.524800pt;}
.h4{height:60.480000pt;}
.hf{height:62.943750pt;}
.hd{height:69.937500pt;}
.h5{height:73.728000pt;}
.h8{height:93.187500pt;}
.he{height:93.250000pt;}
.h7{height:98.304000pt;}
.h9{height:105.676800pt;}
.h3{height:110.546875pt;}
.hb{height:115.507200pt;}
.h6{height:130.252800pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x2{left:26.923333pt;}
.x30{left:43.881200pt;}
.x40{left:51.586933pt;}
.x14{left:53.301867pt;}
.x17{left:54.544267pt;}
.x16{left:58.587600pt;}
.x5{left:62.682533pt;}
.x32{left:64.838800pt;}
.x13{left:66.337333pt;}
.x1b{left:72.115467pt;}
.x23{left:77.155467pt;}
.x3f{left:79.822267pt;}
.x3a{left:85.193867pt;}
.x6{left:93.082533pt;}
.x11{left:96.299600pt;}
.x39{left:117.286533pt;}
.x1{left:138.725733pt;}
.x2a{left:143.165467pt;}
.x24{left:161.600133pt;}
.x12{left:175.750800pt;}
.x3b{left:191.792800pt;}
.x3c{left:193.393600pt;}
.x26{left:197.735200pt;}
.x3d{left:202.188800pt;}
.x31{left:210.333200pt;}
.x8{left:223.051467pt;}
.x3e{left:226.182400pt;}
.x27{left:242.552000pt;}
.x18{left:267.487467pt;}
.x1c{left:282.335467pt;}
.x10{left:300.071067pt;}
.x2b{left:306.365467pt;}
.x2d{left:329.247733pt;}
.x2e{left:339.567733pt;}
.x9{left:341.432267pt;}
.x2f{left:378.759733pt;}
.x7{left:399.859467pt;}
.xc{left:432.481467pt;}
.x2c{left:437.247733pt;}
.x25{left:452.577733pt;}
.x19{left:480.338667pt;}
.x1f{left:507.865467pt;}
.xa{left:518.833600pt;}
.x42{left:520.172267pt;}
.x3{left:532.176533pt;}
.x41{left:544.703200pt;}
.x21{left:546.537200pt;}
.xb{left:549.233733pt;}
.x1e{left:556.893467pt;}
.x1d{left:564.890267pt;}
.x20{left:571.867067pt;}
.xf{left:582.105333pt;}
.x28{left:654.485467pt;}
.x37{left:660.767733pt;}
.x33{left:663.969333pt;}
.x35{left:671.973333pt;}
.xd{left:674.093733pt;}
.x36{left:676.775733pt;}
.x34{left:679.167733pt;}
.x15{left:691.127867pt;}
.x22{left:709.415733pt;}
.x1a{left:711.553067pt;}
.x38{left:727.154933pt;}
.xe{left:749.277867pt;}
.x29{left:880.286000pt;}
.x4{left:892.286000pt;}
}




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