
    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_c16d6ebce368b80dd8603071.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_52d3c4be27920b543e470a0b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890000;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_c38bf3ce9142fd60600fd887.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.704000;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_6e00ac5153bc7bfd96ec4a12.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.429000;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;}
.v1{vertical-align:23.754000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.003300px;}
.ls7{letter-spacing:0.834017px;}
.ls1{letter-spacing:2.964877px;}
.ls6{letter-spacing:2.987675px;}
.ls4{letter-spacing:2.988017px;}
.ls3{letter-spacing:2.988780px;}
.ls5{letter-spacing:35.863409px;}
.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;}
}
.ws1{word-spacing:-35.865450px;}
.ws49{word-spacing:-17.932680px;}
.ws2{word-spacing:-16.438350px;}
.ws6{word-spacing:-14.943900px;}
.ws15{word-spacing:-14.920027px;}
.ws29{word-spacing:-11.955150px;}
.ws7a{word-spacing:-1.075961px;}
.ws7b{word-spacing:-0.298878px;}
.ws78{word-spacing:-0.119551px;}
.ws1f{word-spacing:-0.059776px;}
.ws28{word-spacing:0.000000px;}
.ws47{word-spacing:0.009341px;}
.ws12{word-spacing:0.215194px;}
.ws76{word-spacing:0.777083px;}
.ws18{word-spacing:0.896634px;}
.ws71{word-spacing:1.016185px;}
.ws51{word-spacing:1.135736px;}
.ws4e{word-spacing:1.195512px;}
.ws74{word-spacing:1.315063px;}
.ws52{word-spacing:1.374839px;}
.ws17{word-spacing:1.853044px;}
.ws4f{word-spacing:2.211697px;}
.ws59{word-spacing:2.271473px;}
.ws63{word-spacing:2.331248px;}
.ws24{word-spacing:2.450800px;}
.ws20{word-spacing:2.510575px;}
.ws4c{word-spacing:2.570351px;}
.ws2b{word-spacing:2.749678px;}
.ws5f{word-spacing:2.809453px;}
.ws1c{word-spacing:2.869229px;}
.ws34{word-spacing:2.929004px;}
.ws46{word-spacing:2.988780px;}
.ws57{word-spacing:3.048556px;}
.ws1a{word-spacing:3.108331px;}
.wsd{word-spacing:3.120307px;}
.ws1e{word-spacing:3.168107px;}
.ws2a{word-spacing:3.466985px;}
.ws61{word-spacing:3.526760px;}
.wsc{word-spacing:3.658291px;}
.ws43{word-spacing:3.825638px;}
.ws60{word-spacing:3.885414px;}
.ws31{word-spacing:4.064741px;}
.ws72{word-spacing:4.303843px;}
.ws79{word-spacing:4.363619px;}
.ws7c{word-spacing:4.602721px;}
.ws77{word-spacing:4.722272px;}
.ws58{word-spacing:4.782048px;}
.ws80{word-spacing:4.782060px;}
.ws22{word-spacing:4.841824px;}
.wsb{word-spacing:4.895654px;}
.ws75{word-spacing:4.961375px;}
.ws4b{word-spacing:5.200477px;}
.ws84{word-spacing:5.308087px;}
.wsf{word-spacing:5.379840px;}
.ws2e{word-spacing:5.499355px;}
.ws56{word-spacing:5.559131px;}
.ws4d{word-spacing:5.618906px;}
.ws50{word-spacing:5.678682px;}
.ws21{word-spacing:5.798233px;}
.ws48{word-spacing:5.920865px;}
.ws66{word-spacing:5.929754px;}
.ws5{word-spacing:5.977560px;}
.ws6b{word-spacing:6.216662px;}
.ws6a{word-spacing:6.336214px;}
.ws16{word-spacing:6.395989px;}
.wse{word-spacing:6.402010px;}
.ws4a{word-spacing:6.515540px;}
.ws4{word-spacing:6.575340px;}
.ws40{word-spacing:6.635092px;}
.ws39{word-spacing:6.874194px;}
.ws25{word-spacing:7.113296px;}
.ws3d{word-spacing:7.292623px;}
.ws7e{word-spacing:7.412193px;}
.ws7f{word-spacing:7.460014px;}
.ws30{word-spacing:7.591501px;}
.ws83{word-spacing:7.603475px;}
.ws2d{word-spacing:7.651277px;}
.ws3e{word-spacing:8.069706px;}
.ws5d{word-spacing:8.249033px;}
.ws5c{word-spacing:8.368584px;}
.ws81{word-spacing:8.368605px;}
.ws38{word-spacing:8.428360px;}
.ws67{word-spacing:8.607686px;}
.ws10{word-spacing:8.661542px;}
.ws54{word-spacing:8.667462px;}
.ws65{word-spacing:8.846789px;}
.ws7d{word-spacing:8.894632px;}
.ws32{word-spacing:8.906564px;}
.ws2c{word-spacing:9.026116px;}
.ws33{word-spacing:9.205442px;}
.ws55{word-spacing:9.265218px;}
.ws11{word-spacing:9.307123px;}
.ws41{word-spacing:9.324994px;}
.ws3b{word-spacing:9.504320px;}
.ws53{word-spacing:9.564096px;}
.ws26{word-spacing:9.683647px;}
.ws68{word-spacing:9.862974px;}
.ws64{word-spacing:10.221628px;}
.ws5a{word-spacing:10.281403px;}
.wsa{word-spacing:10.490688px;}
.ws73{word-spacing:10.640057px;}
.ws27{word-spacing:10.699832px;}
.ws23{word-spacing:10.879159px;}
.ws36{word-spacing:10.938935px;}
.ws82{word-spacing:11.381303px;}
.ws69{word-spacing:11.417140px;}
.ws3c{word-spacing:11.476915px;}
.ws1d{word-spacing:11.536691px;}
.ws19{word-spacing:11.656242px;}
.ws2f{word-spacing:11.716018px;}
.ws6f{word-spacing:11.835569px;}
.ws37{word-spacing:11.955120px;}
.ws1b{word-spacing:12.194222px;}
.ws44{word-spacing:12.373549px;}
.ws6d{word-spacing:12.612652px;}
.ws62{word-spacing:12.672427px;}
.ws3f{word-spacing:12.851754px;}
.ws45{word-spacing:12.971305px;}
.ws9{word-spacing:13.019213px;}
.ws3a{word-spacing:13.031081px;}
.ws5b{word-spacing:13.329959px;}
.ws42{word-spacing:13.389734px;}
.ws35{word-spacing:14.166817px;}
.ws5e{word-spacing:14.346144px;}
.ws0{word-spacing:14.346180px;}
.ws7{word-spacing:14.496000px;}
.ws8{word-spacing:14.496038px;}
.ws3{word-spacing:14.499058px;}
.ws6e{word-spacing:14.943900px;}
.ws6c{word-spacing:16.258963px;}
.ws70{word-spacing:16.617617px;}
.ws14{word-spacing:17.932680px;}
.ws13{word-spacing:20.120602px;}
._2{margin-left:-7.890399px;}
._4{margin-left:-6.793235px;}
._3{margin-left:-5.499355px;}
._0{margin-left:-3.586545px;}
._1{margin-left:-2.151927px;}
._6{margin-left:-1.016174px;}
._9{width:1.137085px;}
._8{width:2.988780px;}
._5{width:4.284685px;}
._7{width:12.642615px;}
._e{width:16.139426px;}
._b{width:18.709788px;}
._d{width:20.801909px;}
._c{width:22.953820px;}
._10{width:24.340685px;}
._f{width:25.344854px;}
._a{width:29.887800px;}
._11{width:47.822392px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.842800px;}
.fs2{font-size:46.027200px;}
.fs5{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y2f{bottom:113.332500px;}
.y62{bottom:126.558000px;}
.y2e{bottom:131.265000px;}
.y61{bottom:144.492000px;}
.y8f{bottom:149.197500px;}
.y2d{bottom:149.199000px;}
.y60{bottom:162.424500px;}
.y2c{bottom:167.131500px;}
.y5f{bottom:180.357000px;}
.y2b{bottom:185.064000px;}
.y5e{bottom:198.289500px;}
.y2a{bottom:202.996500px;}
.y5d{bottom:216.222000px;}
.y29{bottom:220.929000px;}
.y5c{bottom:234.154500px;}
.y28{bottom:238.861500px;}
.y27{bottom:256.795500px;}
.y8e{bottom:257.751000px;}
.y26{bottom:274.728000px;}
.y5b{bottom:279.435000px;}
.y8d{bottom:279.759000px;}
.y25{bottom:292.660500px;}
.y8c{bottom:303.993000px;}
.y5a{bottom:307.455000px;}
.y24{bottom:310.593000px;}
.y8b{bottom:321.925500px;}
.y59{bottom:325.387500px;}
.y23{bottom:328.525500px;}
.y8a{bottom:339.859500px;}
.y58{bottom:343.320000px;}
.y22{bottom:346.459500px;}
.yb7{bottom:348.625500px;}
.y57{bottom:361.254000px;}
.y89{bottom:361.867500px;}
.yb6{bottom:362.076000px;}
.y21{bottom:364.392000px;}
.yb5{bottom:375.525000px;}
.y56{bottom:379.186500px;}
.y20{bottom:382.324500px;}
.y88{bottom:386.101500px;}
.yb4{bottom:388.974000px;}
.y55{bottom:397.119000px;}
.y1f{bottom:400.257000px;}
.yb3{bottom:402.424500px;}
.y87{bottom:404.034000px;}
.y54{bottom:415.051500px;}
.yb2{bottom:415.873500px;}
.y1e{bottom:418.189500px;}
.y86{bottom:421.968000px;}
.yb1{bottom:429.324000px;}
.y53{bottom:432.984000px;}
.y1d{bottom:436.122000px;}
.y85{bottom:439.900500px;}
.yb0{bottom:442.773000px;}
.y52{bottom:450.918000px;}
.y1c{bottom:454.056000px;}
.yaf{bottom:456.222000px;}
.y84{bottom:457.833000px;}
.y51{bottom:468.850500px;}
.y1b{bottom:471.988500px;}
.y83{bottom:475.765500px;}
.yae{bottom:478.414500px;}
.y50{bottom:491.490000px;}
.y82{bottom:493.698000px;}
.y1a{bottom:494.491500px;}
.yad{bottom:506.434500px;}
.y81{bottom:511.630500px;}
.y4f{bottom:519.510000px;}
.yac{bottom:524.367000px;}
.y80{bottom:530.520000px;}
.y4e{bottom:537.442500px;}
.yab{bottom:542.299500px;}
.y19{bottom:548.164500px;}
.y7f{bottom:548.452500px;}
.y4d{bottom:555.375000px;}
.yaa{bottom:560.232000px;}
.y7e{bottom:570.460500px;}
.y18{bottom:571.938000px;}
.y4c{bottom:573.307500px;}
.ya9{bottom:578.164500px;}
.y17{bottom:586.882500px;}
.y4b{bottom:591.241500px;}
.y7d{bottom:594.694500px;}
.ya8{bottom:596.098500px;}
.y16{bottom:601.827000px;}
.y4a{bottom:609.174000px;}
.y7c{bottom:612.628500px;}
.y15{bottom:616.770000px;}
.ya7{bottom:618.738000px;}
.y49{bottom:627.106500px;}
.y7b{bottom:630.561000px;}
.y14{bottom:631.714500px;}
.y48{bottom:645.039000px;}
.y13{bottom:646.659000px;}
.ya6{bottom:646.758000px;}
.y7a{bottom:648.493500px;}
.y12{bottom:661.602000px;}
.y47{bottom:662.971500px;}
.ya5{bottom:664.690500px;}
.y79{bottom:666.426000px;}
.y11{bottom:676.546500px;}
.y46{bottom:680.905500px;}
.ya4{bottom:682.623000px;}
.y78{bottom:684.358500px;}
.y10{bottom:691.489500px;}
.y45{bottom:698.838000px;}
.ya3{bottom:700.555500px;}
.y77{bottom:702.291000px;}
.yf{bottom:706.434000px;}
.y44{bottom:716.770500px;}
.ya2{bottom:718.489500px;}
.y76{bottom:720.225000px;}
.ye{bottom:728.850000px;}
.y43{bottom:734.703000px;}
.ya1{bottom:736.422000px;}
.y75{bottom:738.157500px;}
.y42{bottom:752.635500px;}
.ya0{bottom:754.354500px;}
.y74{bottom:756.090000px;}
.y41{bottom:770.568000px;}
.y9f{bottom:772.287000px;}
.y73{bottom:774.022500px;}
.yd{bottom:776.269500px;}
.y40{bottom:788.502000px;}
.y9e{bottom:790.219500px;}
.y72{bottom:791.955000px;}
.yc{bottom:794.761500px;}
.y3f{bottom:806.434500px;}
.y9d{bottom:812.860500px;}
.yb{bottom:813.255000px;}
.y71{bottom:813.964500px;}
.y3e{bottom:829.074000px;}
.ya{bottom:831.748500px;}
.y70{bottom:838.198500px;}
.y9c{bottom:840.880500px;}
.y9{bottom:850.462500px;}
.y6f{bottom:856.131000px;}
.y3d{bottom:857.094000px;}
.y9b{bottom:858.813000px;}
.y6e{bottom:874.063500px;}
.y3c{bottom:875.026500px;}
.y9a{bottom:876.745500px;}
.y8{bottom:888.289500px;}
.y6d{bottom:891.996000px;}
.y3b{bottom:892.959000px;}
.y99{bottom:894.678000px;}
.y7{bottom:906.783000px;}
.y6c{bottom:909.930000px;}
.y3a{bottom:910.893000px;}
.y98{bottom:912.610500px;}
.y6{bottom:925.276500px;}
.y6b{bottom:927.862500px;}
.y39{bottom:928.825500px;}
.y97{bottom:930.543000px;}
.y5{bottom:943.768500px;}
.y6a{bottom:945.795000px;}
.y38{bottom:946.758000px;}
.y96{bottom:948.477000px;}
.y4{bottom:962.484000px;}
.y69{bottom:963.727500px;}
.y37{bottom:964.690500px;}
.y95{bottom:966.409500px;}
.y68{bottom:981.660000px;}
.y36{bottom:982.623000px;}
.y94{bottom:984.342000px;}
.y67{bottom:999.594000px;}
.y35{bottom:1000.555500px;}
.y93{bottom:1005.264000px;}
.y3{bottom:1009.420500px;}
.y66{bottom:1017.526500px;}
.y34{bottom:1018.489500px;}
.y92{bottom:1023.196500px;}
.y33{bottom:1036.422000px;}
.y65{bottom:1039.534500px;}
.y91{bottom:1041.129000px;}
.y2{bottom:1051.264500px;}
.y32{bottom:1054.354500px;}
.y90{bottom:1059.061500px;}
.y64{bottom:1063.768500px;}
.y31{bottom:1076.994000px;}
.y63{bottom:1081.701000px;}
.y1{bottom:1093.107000px;}
.y30{bottom:1099.635000px;}
.h8{height:32.900573px;}
.h6{height:37.013299px;}
.h5{height:37.120896px;}
.h3{height:40.826735px;}
.h4{height:41.125613px;}
.h7{height:41.245164px;}
.h2{height:55.420714px;}
.h1{height:98.701718px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:73.446000px;}
.x23{left:88.390500px;}
.x28{left:94.857000px;}
.x2{left:103.342500px;}
.x12{left:118.191000px;}
.x15{left:124.591500px;}
.x21{left:125.749500px;}
.x1{left:129.345000px;}
.x5{left:137.029500px;}
.x4{left:156.133500px;}
.x7{left:169.995000px;}
.x6{left:179.328000px;}
.x14{left:241.159500px;}
.x24{left:270.304500px;}
.x25{left:273.376500px;}
.x18{left:330.846000px;}
.x1a{left:341.344500px;}
.x16{left:368.149500px;}
.x17{left:376.237500px;}
.x19{left:381.445500px;}
.xa{left:385.752000px;}
.x9{left:393.000000px;}
.x3{left:395.895000px;}
.x22{left:400.689000px;}
.x26{left:405.381000px;}
.x27{left:417.157500px;}
.xc{left:422.640000px;}
.x8{left:424.851000px;}
.x20{left:433.977000px;}
.xb{left:435.297000px;}
.x1c{left:587.154000px;}
.x1b{left:593.442000px;}
.x1f{left:627.712500px;}
.x1e{left:638.299500px;}
.xe{left:641.721000px;}
.xd{left:671.196000px;}
.x11{left:678.961500px;}
.x10{left:692.866500px;}
.x1d{left:754.869000px;}
.xf{left:809.436000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.114667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.002933pt;}
.ls7{letter-spacing:0.741348pt;}
.ls1{letter-spacing:2.635446pt;}
.ls6{letter-spacing:2.655711pt;}
.ls4{letter-spacing:2.656015pt;}
.ls3{letter-spacing:2.656693pt;}
.ls5{letter-spacing:31.878586pt;}
.ws1{word-spacing:-31.880400pt;}
.ws49{word-spacing:-15.940160pt;}
.ws2{word-spacing:-14.611867pt;}
.ws6{word-spacing:-13.283467pt;}
.ws15{word-spacing:-13.262246pt;}
.ws29{word-spacing:-10.626800pt;}
.ws7a{word-spacing:-0.956410pt;}
.ws7b{word-spacing:-0.265669pt;}
.ws78{word-spacing:-0.106268pt;}
.ws1f{word-spacing:-0.053134pt;}
.ws28{word-spacing:0.000000pt;}
.ws47{word-spacing:0.008303pt;}
.ws12{word-spacing:0.191283pt;}
.ws76{word-spacing:0.690740pt;}
.ws18{word-spacing:0.797008pt;}
.ws71{word-spacing:0.903276pt;}
.ws51{word-spacing:1.009543pt;}
.ws4e{word-spacing:1.062677pt;}
.ws74{word-spacing:1.168945pt;}
.ws52{word-spacing:1.222079pt;}
.ws17{word-spacing:1.647150pt;}
.ws4f{word-spacing:1.965953pt;}
.ws59{word-spacing:2.019087pt;}
.ws63{word-spacing:2.072221pt;}
.ws24{word-spacing:2.178489pt;}
.ws20{word-spacing:2.231622pt;}
.ws4c{word-spacing:2.284756pt;}
.ws2b{word-spacing:2.444158pt;}
.ws5f{word-spacing:2.497292pt;}
.ws1c{word-spacing:2.550426pt;}
.ws34{word-spacing:2.603559pt;}
.ws46{word-spacing:2.656693pt;}
.ws57{word-spacing:2.709827pt;}
.ws1a{word-spacing:2.762961pt;}
.wsd{word-spacing:2.773606pt;}
.ws1e{word-spacing:2.816095pt;}
.ws2a{word-spacing:3.081764pt;}
.ws61{word-spacing:3.134898pt;}
.wsc{word-spacing:3.251814pt;}
.ws43{word-spacing:3.400567pt;}
.ws60{word-spacing:3.453701pt;}
.ws31{word-spacing:3.613103pt;}
.ws72{word-spacing:3.825638pt;}
.ws79{word-spacing:3.878772pt;}
.ws7c{word-spacing:4.091308pt;}
.ws77{word-spacing:4.197575pt;}
.ws58{word-spacing:4.250709pt;}
.ws80{word-spacing:4.250720pt;}
.ws22{word-spacing:4.303843pt;}
.wsb{word-spacing:4.351693pt;}
.ws75{word-spacing:4.410111pt;}
.ws4b{word-spacing:4.622646pt;}
.ws84{word-spacing:4.718299pt;}
.wsf{word-spacing:4.782080pt;}
.ws2e{word-spacing:4.888316pt;}
.ws56{word-spacing:4.941450pt;}
.ws4d{word-spacing:4.994583pt;}
.ws50{word-spacing:5.047717pt;}
.ws21{word-spacing:5.153985pt;}
.ws48{word-spacing:5.262991pt;}
.ws66{word-spacing:5.270893pt;}
.ws5{word-spacing:5.313387pt;}
.ws6b{word-spacing:5.525922pt;}
.ws6a{word-spacing:5.632190pt;}
.ws16{word-spacing:5.685324pt;}
.wse{word-spacing:5.690675pt;}
.ws4a{word-spacing:5.791591pt;}
.ws4{word-spacing:5.844747pt;}
.ws40{word-spacing:5.897859pt;}
.ws39{word-spacing:6.110395pt;}
.ws25{word-spacing:6.322930pt;}
.ws3d{word-spacing:6.482332pt;}
.ws7e{word-spacing:6.588616pt;}
.ws7f{word-spacing:6.631123pt;}
.ws30{word-spacing:6.748001pt;}
.ws83{word-spacing:6.758645pt;}
.ws2d{word-spacing:6.801135pt;}
.ws3e{word-spacing:7.173072pt;}
.ws5d{word-spacing:7.332474pt;}
.ws5c{word-spacing:7.438741pt;}
.ws81{word-spacing:7.438760pt;}
.ws38{word-spacing:7.491875pt;}
.ws67{word-spacing:7.651277pt;}
.ws10{word-spacing:7.699149pt;}
.ws54{word-spacing:7.704411pt;}
.ws65{word-spacing:7.863812pt;}
.ws7d{word-spacing:7.906339pt;}
.ws32{word-spacing:7.916946pt;}
.ws2c{word-spacing:8.023214pt;}
.ws33{word-spacing:8.182615pt;}
.ws55{word-spacing:8.235749pt;}
.ws11{word-spacing:8.272998pt;}
.ws41{word-spacing:8.288883pt;}
.ws3b{word-spacing:8.448285pt;}
.ws53{word-spacing:8.501419pt;}
.ws26{word-spacing:8.607686pt;}
.ws68{word-spacing:8.767088pt;}
.ws64{word-spacing:9.085891pt;}
.ws5a{word-spacing:9.139025pt;}
.wsa{word-spacing:9.325056pt;}
.ws73{word-spacing:9.457828pt;}
.ws27{word-spacing:9.510962pt;}
.ws23{word-spacing:9.670364pt;}
.ws36{word-spacing:9.723498pt;}
.ws82{word-spacing:10.116714pt;}
.ws69{word-spacing:10.148569pt;}
.ws3c{word-spacing:10.201702pt;}
.ws1d{word-spacing:10.254836pt;}
.ws19{word-spacing:10.361104pt;}
.ws2f{word-spacing:10.414238pt;}
.ws6f{word-spacing:10.520506pt;}
.ws37{word-spacing:10.626773pt;}
.ws1b{word-spacing:10.839309pt;}
.ws44{word-spacing:10.998710pt;}
.ws6d{word-spacing:11.211246pt;}
.ws62{word-spacing:11.264380pt;}
.ws3f{word-spacing:11.423781pt;}
.ws45{word-spacing:11.530049pt;}
.ws9{word-spacing:11.572634pt;}
.ws3a{word-spacing:11.583183pt;}
.ws5b{word-spacing:11.848852pt;}
.ws42{word-spacing:11.901986pt;}
.ws35{word-spacing:12.592726pt;}
.ws5e{word-spacing:12.752128pt;}
.ws0{word-spacing:12.752160pt;}
.ws7{word-spacing:12.885333pt;}
.ws8{word-spacing:12.885367pt;}
.ws3{word-spacing:12.888051pt;}
.ws6e{word-spacing:13.283467pt;}
.ws6c{word-spacing:14.452412pt;}
.ws70{word-spacing:14.771215pt;}
.ws14{word-spacing:15.940160pt;}
.ws13{word-spacing:17.884979pt;}
._2{margin-left:-7.013688pt;}
._4{margin-left:-6.038431pt;}
._3{margin-left:-4.888316pt;}
._0{margin-left:-3.188040pt;}
._1{margin-left:-1.912824pt;}
._6{margin-left:-0.903266pt;}
._9{width:1.010742pt;}
._8{width:2.656693pt;}
._5{width:3.808609pt;}
._7{width:11.237880pt;}
._e{width:14.346157pt;}
._b{width:16.630923pt;}
._d{width:18.490586pt;}
._c{width:20.403395pt;}
._10{width:21.636165pt;}
._f{width:22.528759pt;}
._a{width:26.566933pt;}
._11{width:42.508793pt;}
.fs6{font-size:37.193600pt;}
.fs2{font-size:40.913067pt;}
.fs5{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:100.740000pt;}
.y62{bottom:112.496000pt;}
.y2e{bottom:116.680000pt;}
.y61{bottom:128.437333pt;}
.y8f{bottom:132.620000pt;}
.y2d{bottom:132.621333pt;}
.y60{bottom:144.377333pt;}
.y2c{bottom:148.561333pt;}
.y5f{bottom:160.317333pt;}
.y2b{bottom:164.501333pt;}
.y5e{bottom:176.257333pt;}
.y2a{bottom:180.441333pt;}
.y5d{bottom:192.197333pt;}
.y29{bottom:196.381333pt;}
.y5c{bottom:208.137333pt;}
.y28{bottom:212.321333pt;}
.y27{bottom:228.262667pt;}
.y8e{bottom:229.112000pt;}
.y26{bottom:244.202667pt;}
.y5b{bottom:248.386667pt;}
.y8d{bottom:248.674667pt;}
.y25{bottom:260.142667pt;}
.y8c{bottom:270.216000pt;}
.y5a{bottom:273.293333pt;}
.y24{bottom:276.082667pt;}
.y8b{bottom:286.156000pt;}
.y59{bottom:289.233333pt;}
.y23{bottom:292.022667pt;}
.y8a{bottom:302.097333pt;}
.y58{bottom:305.173333pt;}
.y22{bottom:307.964000pt;}
.yb7{bottom:309.889333pt;}
.y57{bottom:321.114667pt;}
.y89{bottom:321.660000pt;}
.yb6{bottom:321.845333pt;}
.y21{bottom:323.904000pt;}
.yb5{bottom:333.800000pt;}
.y56{bottom:337.054667pt;}
.y20{bottom:339.844000pt;}
.y88{bottom:343.201333pt;}
.yb4{bottom:345.754667pt;}
.y55{bottom:352.994667pt;}
.y1f{bottom:355.784000pt;}
.yb3{bottom:357.710667pt;}
.y87{bottom:359.141333pt;}
.y54{bottom:368.934667pt;}
.yb2{bottom:369.665333pt;}
.y1e{bottom:371.724000pt;}
.y86{bottom:375.082667pt;}
.yb1{bottom:381.621333pt;}
.y53{bottom:384.874667pt;}
.y1d{bottom:387.664000pt;}
.y85{bottom:391.022667pt;}
.yb0{bottom:393.576000pt;}
.y52{bottom:400.816000pt;}
.y1c{bottom:403.605333pt;}
.yaf{bottom:405.530667pt;}
.y84{bottom:406.962667pt;}
.y51{bottom:416.756000pt;}
.y1b{bottom:419.545333pt;}
.y83{bottom:422.902667pt;}
.yae{bottom:425.257333pt;}
.y50{bottom:436.880000pt;}
.y82{bottom:438.842667pt;}
.y1a{bottom:439.548000pt;}
.yad{bottom:450.164000pt;}
.y81{bottom:454.782667pt;}
.y4f{bottom:461.786667pt;}
.yac{bottom:466.104000pt;}
.y80{bottom:471.573333pt;}
.y4e{bottom:477.726667pt;}
.yab{bottom:482.044000pt;}
.y19{bottom:487.257333pt;}
.y7f{bottom:487.513333pt;}
.y4d{bottom:493.666667pt;}
.yaa{bottom:497.984000pt;}
.y7e{bottom:507.076000pt;}
.y18{bottom:508.389333pt;}
.y4c{bottom:509.606667pt;}
.ya9{bottom:513.924000pt;}
.y17{bottom:521.673333pt;}
.y4b{bottom:525.548000pt;}
.y7d{bottom:528.617333pt;}
.ya8{bottom:529.865333pt;}
.y16{bottom:534.957333pt;}
.y4a{bottom:541.488000pt;}
.y7c{bottom:544.558667pt;}
.y15{bottom:548.240000pt;}
.ya7{bottom:549.989333pt;}
.y49{bottom:557.428000pt;}
.y7b{bottom:560.498667pt;}
.y14{bottom:561.524000pt;}
.y48{bottom:573.368000pt;}
.y13{bottom:574.808000pt;}
.ya6{bottom:574.896000pt;}
.y7a{bottom:576.438667pt;}
.y12{bottom:588.090667pt;}
.y47{bottom:589.308000pt;}
.ya5{bottom:590.836000pt;}
.y79{bottom:592.378667pt;}
.y11{bottom:601.374667pt;}
.y46{bottom:605.249333pt;}
.ya4{bottom:606.776000pt;}
.y78{bottom:608.318667pt;}
.y10{bottom:614.657333pt;}
.y45{bottom:621.189333pt;}
.ya3{bottom:622.716000pt;}
.y77{bottom:624.258667pt;}
.yf{bottom:627.941333pt;}
.y44{bottom:637.129333pt;}
.ya2{bottom:638.657333pt;}
.y76{bottom:640.200000pt;}
.ye{bottom:647.866667pt;}
.y43{bottom:653.069333pt;}
.ya1{bottom:654.597333pt;}
.y75{bottom:656.140000pt;}
.y42{bottom:669.009333pt;}
.ya0{bottom:670.537333pt;}
.y74{bottom:672.080000pt;}
.y41{bottom:684.949333pt;}
.y9f{bottom:686.477333pt;}
.y73{bottom:688.020000pt;}
.yd{bottom:690.017333pt;}
.y40{bottom:700.890667pt;}
.y9e{bottom:702.417333pt;}
.y72{bottom:703.960000pt;}
.yc{bottom:706.454667pt;}
.y3f{bottom:716.830667pt;}
.y9d{bottom:722.542667pt;}
.yb{bottom:722.893333pt;}
.y71{bottom:723.524000pt;}
.y3e{bottom:736.954667pt;}
.ya{bottom:739.332000pt;}
.y70{bottom:745.065333pt;}
.y9c{bottom:747.449333pt;}
.y9{bottom:755.966667pt;}
.y6f{bottom:761.005333pt;}
.y3d{bottom:761.861333pt;}
.y9b{bottom:763.389333pt;}
.y6e{bottom:776.945333pt;}
.y3c{bottom:777.801333pt;}
.y9a{bottom:779.329333pt;}
.y8{bottom:789.590667pt;}
.y6d{bottom:792.885333pt;}
.y3b{bottom:793.741333pt;}
.y99{bottom:795.269333pt;}
.y7{bottom:806.029333pt;}
.y6c{bottom:808.826667pt;}
.y3a{bottom:809.682667pt;}
.y98{bottom:811.209333pt;}
.y6{bottom:822.468000pt;}
.y6b{bottom:824.766667pt;}
.y39{bottom:825.622667pt;}
.y97{bottom:827.149333pt;}
.y5{bottom:838.905333pt;}
.y6a{bottom:840.706667pt;}
.y38{bottom:841.562667pt;}
.y96{bottom:843.090667pt;}
.y4{bottom:855.541333pt;}
.y69{bottom:856.646667pt;}
.y37{bottom:857.502667pt;}
.y95{bottom:859.030667pt;}
.y68{bottom:872.586667pt;}
.y36{bottom:873.442667pt;}
.y94{bottom:874.970667pt;}
.y67{bottom:888.528000pt;}
.y35{bottom:889.382667pt;}
.y93{bottom:893.568000pt;}
.y3{bottom:897.262667pt;}
.y66{bottom:904.468000pt;}
.y34{bottom:905.324000pt;}
.y92{bottom:909.508000pt;}
.y33{bottom:921.264000pt;}
.y65{bottom:924.030667pt;}
.y91{bottom:925.448000pt;}
.y2{bottom:934.457333pt;}
.y32{bottom:937.204000pt;}
.y90{bottom:941.388000pt;}
.y64{bottom:945.572000pt;}
.y31{bottom:957.328000pt;}
.y63{bottom:961.512000pt;}
.y1{bottom:971.650667pt;}
.y30{bottom:977.453333pt;}
.h8{height:29.244954pt;}
.h6{height:32.900710pt;}
.h5{height:32.996352pt;}
.h3{height:36.290431pt;}
.h4{height:36.556100pt;}
.h7{height:36.662368pt;}
.h2{height:49.262857pt;}
.h1{height:87.734861pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:65.285333pt;}
.x23{left:78.569333pt;}
.x28{left:84.317333pt;}
.x2{left:91.860000pt;}
.x12{left:105.058667pt;}
.x15{left:110.748000pt;}
.x21{left:111.777333pt;}
.x1{left:114.973333pt;}
.x5{left:121.804000pt;}
.x4{left:138.785333pt;}
.x7{left:151.106667pt;}
.x6{left:159.402667pt;}
.x14{left:214.364000pt;}
.x24{left:240.270667pt;}
.x25{left:243.001333pt;}
.x18{left:294.085333pt;}
.x1a{left:303.417333pt;}
.x16{left:327.244000pt;}
.x17{left:334.433333pt;}
.x19{left:339.062667pt;}
.xa{left:342.890667pt;}
.x9{left:349.333333pt;}
.x3{left:351.906667pt;}
.x22{left:356.168000pt;}
.x26{left:360.338667pt;}
.x27{left:370.806667pt;}
.xc{left:375.680000pt;}
.x8{left:377.645333pt;}
.x20{left:385.757333pt;}
.xb{left:386.930667pt;}
.x1c{left:521.914667pt;}
.x1b{left:527.504000pt;}
.x1f{left:557.966667pt;}
.x1e{left:567.377333pt;}
.xe{left:570.418667pt;}
.xd{left:596.618667pt;}
.x11{left:603.521333pt;}
.x10{left:615.881333pt;}
.x1d{left:670.994667pt;}
.xf{left:719.498667pt;}
}




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