
    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_7341b6121bb0944918c0a557.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_08d83648c4f51f2562a25b63.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.912000;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_d1e0d87dce341ca8998cba72.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2344d4ec4ad58101119e9dc7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.718000;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_1a90ade0d12c50b7457a9d22.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973000;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_adc67030787799a0b932d1d6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.930000;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_ce94736dc5d575ede25a7a5a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.942000;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_08d83648c4f51f2562a25b63.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.912000;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_09a311866fb53675252453bb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.969000;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;}
.m3{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.563200px;}
.ls3{letter-spacing:-1.200000px;}
.ls7{letter-spacing:-0.912000px;}
.ls8{letter-spacing:-0.528000px;}
.ls6{letter-spacing:-0.480000px;}
.ls2{letter-spacing:-0.330000px;}
.ls5{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.240000px;}
.ls4{letter-spacing:2058.984600px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-23.640000px;}
.ws3e{word-spacing:-13.992000px;}
.ws3f{word-spacing:-10.992000px;}
.ws40{word-spacing:-10.080000px;}
.ws1{word-spacing:-7.536000px;}
.ws33{word-spacing:-2.208000px;}
.ws38{word-spacing:-2.160000px;}
.ws1b{word-spacing:-1.920000px;}
.ws12{word-spacing:-1.872000px;}
.ws4d{word-spacing:-1.824000px;}
.ws46{word-spacing:-1.488000px;}
.ws1c{word-spacing:-1.440000px;}
.wsa{word-spacing:-1.056000px;}
.ws4{word-spacing:-0.672000px;}
.ws20{word-spacing:-0.576000px;}
.ws49{word-spacing:-0.384000px;}
.ws4c{word-spacing:-0.240000px;}
.ws0{word-spacing:0.000000px;}
.ws2c{word-spacing:0.048000px;}
.ws25{word-spacing:0.096000px;}
.ws4e{word-spacing:0.288000px;}
.ws3{word-spacing:0.330000px;}
.ws55{word-spacing:0.480000px;}
.ws11{word-spacing:0.528000px;}
.wsc{word-spacing:0.576000px;}
.ws34{word-spacing:0.768000px;}
.ws1f{word-spacing:0.864000px;}
.ws44{word-spacing:0.912000px;}
.ws5{word-spacing:1.152000px;}
.ws2b{word-spacing:1.200000px;}
.ws21{word-spacing:1.248000px;}
.ws3d{word-spacing:1.536000px;}
.ws4f{word-spacing:1.632000px;}
.wsb{word-spacing:1.824000px;}
.ws1a{word-spacing:2.160000px;}
.ws53{word-spacing:2.208000px;}
.ws4b{word-spacing:2.304000px;}
.ws7{word-spacing:2.496000px;}
.ws9{word-spacing:2.544000px;}
.wsd{word-spacing:2.592000px;}
.ws54{word-spacing:2.736000px;}
.ws24{word-spacing:3.072000px;}
.ws1e{word-spacing:3.360000px;}
.ws36{word-spacing:3.456000px;}
.ws19{word-spacing:3.504000px;}
.ws32{word-spacing:3.744000px;}
.ws22{word-spacing:3.888000px;}
.ws6{word-spacing:3.936000px;}
.ws45{word-spacing:3.984000px;}
.ws29{word-spacing:4.128000px;}
.ws39{word-spacing:4.224000px;}
.ws51{word-spacing:4.464000px;}
.ws3a{word-spacing:4.704000px;}
.ws4a{word-spacing:5.184000px;}
.ws28{word-spacing:5.568000px;}
.ws15{word-spacing:5.616000px;}
.ws41{word-spacing:5.664000px;}
.ws26{word-spacing:5.760000px;}
.ws10{word-spacing:5.808000px;}
.ws2f{word-spacing:5.904000px;}
.ws37{word-spacing:6.336000px;}
.ws23{word-spacing:6.384000px;}
.ws2e{word-spacing:6.480000px;}
.wsf{word-spacing:6.528000px;}
.ws48{word-spacing:6.672000px;}
.ws2a{word-spacing:7.104000px;}
.ws47{word-spacing:7.248000px;}
.ws16{word-spacing:7.344000px;}
.ws14{word-spacing:7.584000px;}
.ws31{word-spacing:7.872000px;}
.ws43{word-spacing:8.016000px;}
.ws13{word-spacing:8.304000px;}
.ws35{word-spacing:8.544000px;}
.ws1d{word-spacing:8.688000px;}
.ws8{word-spacing:9.120000px;}
.ws52{word-spacing:9.312000px;}
.ws42{word-spacing:9.600000px;}
.wse{word-spacing:9.696000px;}
.ws18{word-spacing:10.032000px;}
.ws30{word-spacing:10.416000px;}
.ws3c{word-spacing:10.560000px;}
.ws2d{word-spacing:11.616000px;}
.ws50{word-spacing:13.968000px;}
.ws3b{word-spacing:17.472000px;}
.ws27{word-spacing:17.616000px;}
.ws17{word-spacing:24.672000px;}
._a{margin-left:-1785.711000px;}
._9{margin-left:-481.234800px;}
._2{margin-left:-436.134000px;}
._7{margin-left:-427.848000px;}
._e{margin-left:-294.558000px;}
._d{margin-left:-182.163000px;}
._8{margin-left:-8.438400px;}
._5{margin-left:-6.816000px;}
._6{margin-left:-5.140800px;}
._4{margin-left:-3.456000px;}
._1{margin-left:-2.064000px;}
._3{margin-left:-1.008000px;}
._0{width:1.920000px;}
._b{width:54.004800px;}
._c{width:185.041800px;}
.fc5{color:rgb(127,125,126);}
.fc2{color:transparent;}
.fc1{color:rgb(56,114,193);}
.fc4{color:rgb(35,31,32);}
.fc3{color:rgb(57,53,54);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:27.984000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:49.393650px;}
.y4{bottom:97.125005px;}
.y4a{bottom:99.496050px;}
.y49{bottom:117.496050px;}
.y48{bottom:135.496050px;}
.y20{bottom:139.264499px;}
.y47{bottom:153.496050px;}
.y46{bottom:171.496050px;}
.y45{bottom:189.496050px;}
.y17{bottom:196.933500px;}
.y44{bottom:207.496050px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y43{bottom:225.496050px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y42{bottom:243.496050px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y41{bottom:261.496050px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y40{bottom:279.496050px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y3f{bottom:297.496050px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y3e{bottom:315.496050px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y3d{bottom:333.496050px;}
.ye{bottom:348.133500px;}
.y3c{bottom:351.496050px;}
.y3b{bottom:369.496050px;}
.yd{bottom:386.785499px;}
.y3a{bottom:387.496050px;}
.y39{bottom:405.496050px;}
.yc{bottom:408.044999px;}
.y38{bottom:423.496050px;}
.y37{bottom:441.496050px;}
.y36{bottom:459.496050px;}
.y35{bottom:477.496050px;}
.y34{bottom:495.496050px;}
.yb{bottom:502.864502px;}
.y33{bottom:513.496050px;}
.ya{bottom:520.864502px;}
.y32{bottom:531.496050px;}
.y9{bottom:538.864499px;}
.y31{bottom:549.496050px;}
.y8{bottom:556.864499px;}
.y30{bottom:567.496050px;}
.y2f{bottom:585.496050px;}
.y2e{bottom:603.496050px;}
.y2d{bottom:621.496050px;}
.y2c{bottom:639.496050px;}
.y7{bottom:645.510000px;}
.y2b{bottom:657.496050px;}
.y6{bottom:666.771000px;}
.y64{bottom:673.717050px;}
.y2a{bottom:675.496050px;}
.y63{bottom:691.717050px;}
.y29{bottom:693.496050px;}
.y62{bottom:709.717050px;}
.y28{bottom:711.496050px;}
.y5{bottom:726.298500px;}
.y61{bottom:727.717050px;}
.y27{bottom:729.496050px;}
.y60{bottom:745.717050px;}
.y26{bottom:747.496050px;}
.y3{bottom:752.599495px;}
.y5f{bottom:763.717050px;}
.y25{bottom:765.496050px;}
.y5e{bottom:781.717050px;}
.y24{bottom:783.496050px;}
.y5d{bottom:799.717050px;}
.y23{bottom:801.496050px;}
.y5c{bottom:817.717050px;}
.y54{bottom:819.496050px;}
.y5b{bottom:835.717050px;}
.y53{bottom:837.496050px;}
.y5a{bottom:853.717050px;}
.y52{bottom:855.496050px;}
.y4c{bottom:866.436900px;}
.y59{bottom:871.717050px;}
.y51{bottom:873.496050px;}
.y2{bottom:879.369000px;}
.y58{bottom:889.717050px;}
.y50{bottom:891.496050px;}
.y57{bottom:907.717050px;}
.y4f{bottom:909.496050px;}
.y56{bottom:925.717050px;}
.y4e{bottom:927.496050px;}
.y4b{bottom:929.940900px;}
.y55{bottom:943.717050px;}
.y1{bottom:966.726000px;}
.y22{bottom:1000.018650px;}
.y4d{bottom:1001.409450px;}
.hf{height:20.176464px;}
.h7{height:32.130000px;}
.ha{height:33.600000px;}
.h11{height:34.176000px;}
.hd{height:34.368000px;}
.h10{height:34.608000px;}
.h6{height:45.900000px;}
.hb{height:46.200000px;}
.hc{height:46.398000px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.h5{height:78.030000px;}
.he{height:85.200000px;}
.h4{height:119.055004px;}
.h9{height:1062.750000px;}
.h8{height:1062.991500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w3{width:748.347000px;}
.w4{width:748.500000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:47.509200px;}
.x9{left:73.609200px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xd{left:114.803100px;}
.xe{left:123.307050px;}
.xc{left:136.063050px;}
.x4{left:203.484001px;}
.x6{left:335.325600px;}
.x7{left:386.929200px;}
.x8{left:399.685050px;}
.xf{left:408.189000px;}
.x3{left:454.959000px;}
.xb{left:551.267700px;}
.x5{left:693.808350px;}
@media print{
.v1{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:4.945067pt;}
.ls3{letter-spacing:-1.066667pt;}
.ls7{letter-spacing:-0.810667pt;}
.ls8{letter-spacing:-0.469333pt;}
.ls6{letter-spacing:-0.426667pt;}
.ls2{letter-spacing:-0.293333pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.213333pt;}
.ls4{letter-spacing:1830.208533pt;}
.ws2{word-spacing:-21.013333pt;}
.ws3e{word-spacing:-12.437333pt;}
.ws3f{word-spacing:-9.770667pt;}
.ws40{word-spacing:-8.960000pt;}
.ws1{word-spacing:-6.698667pt;}
.ws33{word-spacing:-1.962667pt;}
.ws38{word-spacing:-1.920000pt;}
.ws1b{word-spacing:-1.706667pt;}
.ws12{word-spacing:-1.664000pt;}
.ws4d{word-spacing:-1.621333pt;}
.ws46{word-spacing:-1.322667pt;}
.ws1c{word-spacing:-1.280000pt;}
.wsa{word-spacing:-0.938667pt;}
.ws4{word-spacing:-0.597333pt;}
.ws20{word-spacing:-0.512000pt;}
.ws49{word-spacing:-0.341333pt;}
.ws4c{word-spacing:-0.213333pt;}
.ws0{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.042667pt;}
.ws25{word-spacing:0.085333pt;}
.ws4e{word-spacing:0.256000pt;}
.ws3{word-spacing:0.293333pt;}
.ws55{word-spacing:0.426667pt;}
.ws11{word-spacing:0.469333pt;}
.wsc{word-spacing:0.512000pt;}
.ws34{word-spacing:0.682667pt;}
.ws1f{word-spacing:0.768000pt;}
.ws44{word-spacing:0.810667pt;}
.ws5{word-spacing:1.024000pt;}
.ws2b{word-spacing:1.066667pt;}
.ws21{word-spacing:1.109333pt;}
.ws3d{word-spacing:1.365333pt;}
.ws4f{word-spacing:1.450667pt;}
.wsb{word-spacing:1.621333pt;}
.ws1a{word-spacing:1.920000pt;}
.ws53{word-spacing:1.962667pt;}
.ws4b{word-spacing:2.048000pt;}
.ws7{word-spacing:2.218667pt;}
.ws9{word-spacing:2.261333pt;}
.wsd{word-spacing:2.304000pt;}
.ws54{word-spacing:2.432000pt;}
.ws24{word-spacing:2.730667pt;}
.ws1e{word-spacing:2.986667pt;}
.ws36{word-spacing:3.072000pt;}
.ws19{word-spacing:3.114667pt;}
.ws32{word-spacing:3.328000pt;}
.ws22{word-spacing:3.456000pt;}
.ws6{word-spacing:3.498667pt;}
.ws45{word-spacing:3.541333pt;}
.ws29{word-spacing:3.669333pt;}
.ws39{word-spacing:3.754667pt;}
.ws51{word-spacing:3.968000pt;}
.ws3a{word-spacing:4.181333pt;}
.ws4a{word-spacing:4.608000pt;}
.ws28{word-spacing:4.949333pt;}
.ws15{word-spacing:4.992000pt;}
.ws41{word-spacing:5.034667pt;}
.ws26{word-spacing:5.120000pt;}
.ws10{word-spacing:5.162667pt;}
.ws2f{word-spacing:5.248000pt;}
.ws37{word-spacing:5.632000pt;}
.ws23{word-spacing:5.674667pt;}
.ws2e{word-spacing:5.760000pt;}
.wsf{word-spacing:5.802667pt;}
.ws48{word-spacing:5.930667pt;}
.ws2a{word-spacing:6.314667pt;}
.ws47{word-spacing:6.442667pt;}
.ws16{word-spacing:6.528000pt;}
.ws14{word-spacing:6.741333pt;}
.ws31{word-spacing:6.997333pt;}
.ws43{word-spacing:7.125333pt;}
.ws13{word-spacing:7.381333pt;}
.ws35{word-spacing:7.594667pt;}
.ws1d{word-spacing:7.722667pt;}
.ws8{word-spacing:8.106667pt;}
.ws52{word-spacing:8.277333pt;}
.ws42{word-spacing:8.533333pt;}
.wse{word-spacing:8.618667pt;}
.ws18{word-spacing:8.917333pt;}
.ws30{word-spacing:9.258667pt;}
.ws3c{word-spacing:9.386667pt;}
.ws2d{word-spacing:10.325333pt;}
.ws50{word-spacing:12.416000pt;}
.ws3b{word-spacing:15.530667pt;}
.ws27{word-spacing:15.658667pt;}
.ws17{word-spacing:21.930667pt;}
._a{margin-left:-1587.298667pt;}
._9{margin-left:-427.764267pt;}
._2{margin-left:-387.674667pt;}
._7{margin-left:-380.309333pt;}
._e{margin-left:-261.829333pt;}
._d{margin-left:-161.922667pt;}
._8{margin-left:-7.500800pt;}
._5{margin-left:-6.058667pt;}
._6{margin-left:-4.569600pt;}
._4{margin-left:-3.072000pt;}
._1{margin-left:-1.834667pt;}
._3{margin-left:-0.896000pt;}
._0{width:1.706667pt;}
._b{width:48.004267pt;}
._c{width:164.481600pt;}
.fs8{font-size:24.874667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:43.905467pt;}
.y4{bottom:86.333337pt;}
.y4a{bottom:88.440933pt;}
.y49{bottom:104.440933pt;}
.y48{bottom:120.440933pt;}
.y20{bottom:123.790666pt;}
.y47{bottom:136.440933pt;}
.y46{bottom:152.440933pt;}
.y45{bottom:168.440933pt;}
.y17{bottom:175.052000pt;}
.y44{bottom:184.440933pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y43{bottom:200.440933pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y42{bottom:216.440933pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y41{bottom:232.440933pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y40{bottom:248.440933pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y3f{bottom:264.440933pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y3e{bottom:280.440933pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y3d{bottom:296.440933pt;}
.ye{bottom:309.452000pt;}
.y3c{bottom:312.440933pt;}
.y3b{bottom:328.440933pt;}
.yd{bottom:343.809333pt;}
.y3a{bottom:344.440933pt;}
.y39{bottom:360.440933pt;}
.yc{bottom:362.706666pt;}
.y38{bottom:376.440933pt;}
.y37{bottom:392.440933pt;}
.y36{bottom:408.440933pt;}
.y35{bottom:424.440933pt;}
.y34{bottom:440.440933pt;}
.yb{bottom:446.990669pt;}
.y33{bottom:456.440933pt;}
.ya{bottom:462.990669pt;}
.y32{bottom:472.440933pt;}
.y9{bottom:478.990666pt;}
.y31{bottom:488.440933pt;}
.y8{bottom:494.990666pt;}
.y30{bottom:504.440933pt;}
.y2f{bottom:520.440933pt;}
.y2e{bottom:536.440933pt;}
.y2d{bottom:552.440933pt;}
.y2c{bottom:568.440933pt;}
.y7{bottom:573.786667pt;}
.y2b{bottom:584.440933pt;}
.y6{bottom:592.685334pt;}
.y64{bottom:598.859600pt;}
.y2a{bottom:600.440933pt;}
.y63{bottom:614.859600pt;}
.y29{bottom:616.440933pt;}
.y62{bottom:630.859600pt;}
.y28{bottom:632.440933pt;}
.y5{bottom:645.598667pt;}
.y61{bottom:646.859600pt;}
.y27{bottom:648.440933pt;}
.y60{bottom:662.859600pt;}
.y26{bottom:664.440933pt;}
.y3{bottom:668.977329pt;}
.y5f{bottom:678.859600pt;}
.y25{bottom:680.440933pt;}
.y5e{bottom:694.859600pt;}
.y24{bottom:696.440933pt;}
.y5d{bottom:710.859600pt;}
.y23{bottom:712.440933pt;}
.y5c{bottom:726.859600pt;}
.y54{bottom:728.440933pt;}
.y5b{bottom:742.859600pt;}
.y53{bottom:744.440933pt;}
.y5a{bottom:758.859600pt;}
.y52{bottom:760.440933pt;}
.y4c{bottom:770.166133pt;}
.y59{bottom:774.859600pt;}
.y51{bottom:776.440933pt;}
.y2{bottom:781.661334pt;}
.y58{bottom:790.859600pt;}
.y50{bottom:792.440933pt;}
.y57{bottom:806.859600pt;}
.y4f{bottom:808.440933pt;}
.y56{bottom:822.859600pt;}
.y4e{bottom:824.440933pt;}
.y4b{bottom:826.614133pt;}
.y55{bottom:838.859600pt;}
.y1{bottom:859.312000pt;}
.y22{bottom:888.905467pt;}
.y4d{bottom:890.141733pt;}
.hf{height:17.934635pt;}
.h7{height:28.560000pt;}
.ha{height:29.866667pt;}
.h11{height:30.378667pt;}
.hd{height:30.549333pt;}
.h10{height:30.762667pt;}
.h6{height:40.800000pt;}
.hb{height:41.066667pt;}
.hc{height:41.242667pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.h5{height:69.360000pt;}
.he{height:75.733333pt;}
.h4{height:105.826671pt;}
.h9{height:944.666667pt;}
.h8{height:944.881333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w3{width:665.197333pt;}
.w4{width:665.333333pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:42.230400pt;}
.x9{left:65.430400pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xd{left:102.047200pt;}
.xe{left:109.606267pt;}
.xc{left:120.944933pt;}
.x4{left:180.874667pt;}
.x6{left:298.067200pt;}
.x7{left:343.937067pt;}
.x8{left:355.275600pt;}
.xf{left:362.834667pt;}
.x3{left:404.408000pt;}
.xb{left:490.015733pt;}
.x5{left:616.718533pt;}
}




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