
    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_47156224ff82694b6136ee1c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_4fc7728d230a1aeddb838417.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_7de3a4c396d9b4cc6e1c676b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_625170586048ca81c94ef085.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_a4a124cc97eece8b8d52f14f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_76c38b94295da5cbb8e3fe2f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_59061623b2915424d30bb111.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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);}
.m1{transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.800000px;}
.lse{letter-spacing:-5.580000px;}
.ls9{letter-spacing:-4.620000px;}
.ls15{letter-spacing:-4.260000px;}
.lsb{letter-spacing:-3.900000px;}
.ls11{letter-spacing:-3.240000px;}
.ls13{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-1.080000px;}
.ls12{letter-spacing:-0.840000px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.174000px;}
.ls2{letter-spacing:0.475200px;}
.lsd{letter-spacing:0.600000px;}
.ls10{letter-spacing:0.826800px;}
.ls14{letter-spacing:1.416000px;}
.ls0{letter-spacing:1.800000px;}
.ls17{letter-spacing:2.520000px;}
.lsa{letter-spacing:2.580000px;}
.ls8{letter-spacing:4.320000px;}
.ls16{letter-spacing:4.665600px;}
.ls5{letter-spacing:5.935800px;}
.ls7{letter-spacing:5.994000px;}
.ls3{letter-spacing:6.337800px;}
.ls18{letter-spacing:8.985000px;}
.ls4{letter-spacing:17.100000px;}
.lsf{letter-spacing:20.400000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-24.300000px;}
.ws1c{word-spacing:-20.400000px;}
.ws1b{word-spacing:-17.100000px;}
.ws3{word-spacing:-15.000000px;}
.ws2{word-spacing:-13.500000px;}
.ws4{word-spacing:-12.000000px;}
.ws19{word-spacing:-6.960000px;}
.ws3d{word-spacing:-6.192000px;}
.wsa{word-spacing:-5.994000px;}
.ws17{word-spacing:-5.580000px;}
.wsc{word-spacing:-4.620000px;}
.wsb{word-spacing:-4.320000px;}
.ws34{word-spacing:-3.720000px;}
.ws27{word-spacing:-3.300000px;}
.ws2c{word-spacing:-3.240000px;}
.wsf{word-spacing:-2.580000px;}
.ws3c{word-spacing:-2.520000px;}
.ws43{word-spacing:-2.304000px;}
.ws45{word-spacing:-2.016000px;}
.ws13{word-spacing:-1.080000px;}
.ws3b{word-spacing:-0.864000px;}
.ws32{word-spacing:-0.840000px;}
.ws15{word-spacing:-0.600000px;}
.ws36{word-spacing:-0.576000px;}
.ws6{word-spacing:-0.475200px;}
.ws2a{word-spacing:-0.120000px;}
.ws1{word-spacing:-0.048000px;}
.ws1e{word-spacing:-0.034800px;}
.ws25{word-spacing:-0.027840px;}
.ws5{word-spacing:0.000000px;}
.ws41{word-spacing:0.528000px;}
.ws14{word-spacing:0.600000px;}
.ws2b{word-spacing:0.840000px;}
.ws12{word-spacing:1.080000px;}
.ws30{word-spacing:1.140000px;}
.ws39{word-spacing:1.320000px;}
.ws38{word-spacing:1.440000px;}
.ws48{word-spacing:2.064000px;}
.ws1a{word-spacing:2.280000px;}
.ws16{word-spacing:2.400000px;}
.wse{word-spacing:2.580000px;}
.ws2d{word-spacing:3.240000px;}
.ws26{word-spacing:3.300000px;}
.ws11{word-spacing:3.900000px;}
.ws3a{word-spacing:4.260000px;}
.wsd{word-spacing:4.620000px;}
.ws44{word-spacing:4.656000px;}
.ws18{word-spacing:5.580000px;}
.ws42{word-spacing:5.664000px;}
.ws28{word-spacing:5.880000px;}
.ws1d{word-spacing:5.952000px;}
.ws9{word-spacing:5.994000px;}
.ws47{word-spacing:6.528000px;}
.ws40{word-spacing:6.672000px;}
.ws46{word-spacing:6.816000px;}
.ws8{word-spacing:6.966000px;}
.ws7{word-spacing:7.290000px;}
.ws29{word-spacing:8.520000px;}
.ws10{word-spacing:8.880000px;}
.ws33{word-spacing:9.120000px;}
.ws35{word-spacing:9.600000px;}
.ws2f{word-spacing:9.780000px;}
.ws37{word-spacing:10.992000px;}
.ws2e{word-spacing:13.320000px;}
.ws3f{word-spacing:14.784000px;}
.ws49{word-spacing:21.165000px;}
.ws31{word-spacing:22.080000px;}
.ws3e{word-spacing:28.704000px;}
.ws21{word-spacing:613.516200px;}
.ws22{word-spacing:641.930400px;}
.ws20{word-spacing:651.508200px;}
.ws24{word-spacing:666.387600px;}
.ws23{word-spacing:667.924800px;}
.ws1f{word-spacing:679.924800px;}
._c{margin-left:-14.917632px;}
._9{margin-left:-13.643640px;}
._25{margin-left:-11.503416px;}
._1{margin-left:-9.989400px;}
._d{margin-left:-8.075880px;}
._0{margin-left:-6.544800px;}
._8{margin-left:-5.197320px;}
._b{margin-left:-4.072560px;}
._4{margin-left:-2.756160px;}
._2{margin-left:-1.745400px;}
._3{width:1.355736px;}
._7{width:2.500200px;}
._a{width:3.577800px;}
._5{width:5.413560px;}
._6{width:6.939000px;}
._10{width:8.852400px;}
._f{width:10.367400px;}
._22{width:11.587200px;}
._14{width:12.630000px;}
._13{width:13.952400px;}
._12{width:16.014000px;}
._11{width:17.100000px;}
._23{width:18.420000px;}
._15{width:19.656000px;}
._21{width:20.958000px;}
._16{width:22.011000px;}
._26{width:23.491200px;}
._18{width:27.696000px;}
._24{width:29.490600px;}
._e{width:40.434000px;}
._17{width:52.325760px;}
._1f{width:486.588000px;}
._20{width:649.561200px;}
._1b{width:828.581400px;}
._1c{width:832.350600px;}
._1a{width:842.621400px;}
._19{width:843.917400px;}
._1e{width:853.710600px;}
._1d{width:855.869400px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:27.840000px;}
.fs6{font-size:34.800000px;}
.fs3{font-size:47.520000px;}
.fs2{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:59.802900px;}
.yae{bottom:103.269300px;}
.y51{bottom:103.775700px;}
.y22{bottom:104.504850px;}
.y9a{bottom:115.524600px;}
.yad{bottom:119.769300px;}
.y50{bottom:122.135700px;}
.y21{bottom:122.505000px;}
.y99{bottom:129.924600px;}
.y20{bottom:140.505000px;}
.y78{bottom:142.711050px;}
.y98{bottom:144.324450px;}
.y1f{bottom:158.505000px;}
.y97{bottom:158.724450px;}
.y42{bottom:159.919200px;}
.y77{bottom:161.461050px;}
.y96{bottom:173.124600px;}
.y1e{bottom:176.505000px;}
.y41{bottom:177.919200px;}
.y76{bottom:180.211050px;}
.y95{bottom:187.524600px;}
.y1d{bottom:194.505000px;}
.y40{bottom:195.919200px;}
.y75{bottom:198.961050px;}
.y94{bottom:201.924450px;}
.y1c{bottom:212.505000px;}
.y3f{bottom:213.919200px;}
.y93{bottom:216.324600px;}
.y74{bottom:217.711050px;}
.y1b{bottom:230.505000px;}
.y92{bottom:230.724450px;}
.y3e{bottom:231.919200px;}
.y73{bottom:236.461050px;}
.y91{bottom:245.124600px;}
.y1a{bottom:248.505000px;}
.y3d{bottom:249.919200px;}
.y72{bottom:255.211050px;}
.y90{bottom:259.524600px;}
.y19{bottom:266.505000px;}
.y3c{bottom:267.919200px;}
.y8f{bottom:273.924450px;}
.y71{bottom:273.961050px;}
.y18{bottom:284.505000px;}
.y3b{bottom:285.919200px;}
.y8e{bottom:288.324600px;}
.y70{bottom:292.711050px;}
.y8d{bottom:302.724450px;}
.y3a{bottom:303.919200px;}
.y17{bottom:306.756900px;}
.y8c{bottom:317.124600px;}
.y39{bottom:321.919200px;}
.y6f{bottom:324.216900px;}
.y16{bottom:324.756900px;}
.y7c{bottom:330.597150px;}
.y8b{bottom:331.524600px;}
.y38{bottom:339.919200px;}
.y15{bottom:342.756900px;}
.y8a{bottom:345.924450px;}
.y7b{bottom:347.097150px;}
.y6e{bottom:355.722900px;}
.y37{bottom:357.919200px;}
.y89{bottom:360.324600px;}
.y14{bottom:360.756900px;}
.y7a{bottom:363.597150px;}
.y6d{bottom:374.472900px;}
.y88{bottom:374.724450px;}
.y36{bottom:375.919200px;}
.y79{bottom:378.597150px;}
.y13{bottom:383.008800px;}
.y87{bottom:389.124600px;}
.y35{bottom:393.919200px;}
.y6c{bottom:397.474800px;}
.y12{bottom:401.008800px;}
.y86{bottom:403.524600px;}
.y34{bottom:411.919200px;}
.y6b{bottom:416.224800px;}
.y85{bottom:417.924450px;}
.y11{bottom:419.008800px;}
.y84{bottom:432.324600px;}
.y6a{bottom:434.974800px;}
.y10{bottom:437.008800px;}
.y83{bottom:446.724450px;}
.y69{bottom:457.976850px;}
.y82{bottom:461.124600px;}
.y4d{bottom:464.075700px;}
.yf{bottom:467.764800px;}
.y81{bottom:475.524600px;}
.y68{bottom:476.726850px;}
.y4c{bottom:484.633350px;}
.y80{bottom:489.924600px;}
.y67{bottom:499.728750px;}
.y7f{bottom:504.324450px;}
.y4b{bottom:505.191150px;}
.y7e{bottom:518.724450px;}
.ye{bottom:519.780450px;}
.y4a{bottom:525.748800px;}
.y66{bottom:531.234600px;}
.y7d{bottom:545.880450px;}
.y49{bottom:546.306600px;}
.y65{bottom:549.984600px;}
.yd{bottom:552.780450px;}
.y48{bottom:566.751450px;}
.y64{bottom:568.734600px;}
.yc{bottom:571.530450px;}
.y47{bottom:587.196450px;}
.yb{bottom:590.280450px;}
.y63{bottom:591.736650px;}
.y9d{bottom:595.837350px;}
.y46{bottom:607.641300px;}
.ya{bottom:609.030450px;}
.y62{bottom:610.486650px;}
.y9c{bottom:612.337350px;}
.y44{bottom:622.041300px;}
.y9b{bottom:627.337350px;}
.y9{bottom:627.780450px;}
.y61{bottom:633.488550px;}
.y43{bottom:640.693200px;}
.y45{bottom:655.093200px;}
.y60{bottom:656.490600px;}
.y4f{bottom:677.368800px;}
.y5f{bottom:679.492500px;}
.y8{bottom:692.794350px;}
.y4e{bottom:695.368800px;}
.y7{bottom:709.817100px;}
.y5e{bottom:710.998500px;}
.y33{bottom:720.781800px;}
.y32{bottom:738.781800px;}
.y6{bottom:740.836050px;}
.y5d{bottom:742.504350px;}
.y31{bottom:756.781800px;}
.y5{bottom:759.488100px;}
.y5c{bottom:761.254350px;}
.yac{bottom:763.768800px;}
.y30{bottom:774.781800px;}
.yab{bottom:778.168800px;}
.y5b{bottom:780.004350px;}
.y4{bottom:786.488100px;}
.yaa{bottom:792.568800px;}
.y2f{bottom:797.033700px;}
.y5a{bottom:798.754350px;}
.ya9{bottom:806.968800px;}
.y3{bottom:813.488100px;}
.y2e{bottom:815.033700px;}
.y59{bottom:817.504350px;}
.ya8{bottom:821.368800px;}
.y2d{bottom:833.033700px;}
.ya7{bottom:835.768650px;}
.y58{bottom:836.254350px;}
.ya6{bottom:850.168800px;}
.y57{bottom:855.004350px;}
.y2c{bottom:855.285750px;}
.y2{bottom:864.488100px;}
.ya5{bottom:864.568800px;}
.y2b{bottom:873.285750px;}
.y56{bottom:873.754350px;}
.ya4{bottom:878.968800px;}
.y2a{bottom:891.285750px;}
.y55{bottom:892.504350px;}
.ya3{bottom:893.368800px;}
.ya2{bottom:907.768650px;}
.y29{bottom:909.285750px;}
.y54{bottom:911.254350px;}
.y25{bottom:920.042100px;}
.ya1{bottom:922.168800px;}
.y28{bottom:927.285750px;}
.y53{bottom:930.004350px;}
.ya0{bottom:936.568800px;}
.y24{bottom:942.542100px;}
.y27{bottom:945.285750px;}
.y9f{bottom:950.968800px;}
.y52{bottom:961.510350px;}
.y26{bottom:963.285750px;}
.y23{bottom:963.542100px;}
.y9e{bottom:965.368800px;}
.h12{height:26.277188px;}
.he{height:32.531250px;}
.h6{height:33.328125px;}
.h10{height:33.351525px;}
.h14{height:35.411133px;}
.h13{height:41.660156px;}
.h7{height:41.696016px;}
.hd{height:42.117188px;}
.h11{height:42.140588px;}
.hf{height:42.632812px;}
.h9{height:47.381836px;}
.h8{height:47.961914px;}
.h2{height:49.992188px;}
.hb{height:52.646484px;}
.hc{height:53.291016px;}
.h5{height:60.996094px;}
.h3{height:63.175781px;}
.ha{height:63.949219px;}
.h4{height:79.936523px;}
.h0{height:1041.732000px;}
.h1{height:1041.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xd{left:68.031450px;}
.x16{left:74.594100px;}
.xe{left:93.543300px;}
.x2{left:102.047250px;}
.x3{left:123.123600px;}
.xb{left:127.559100px;}
.x4{left:137.323050px;}
.xf{left:141.867450px;}
.x7{left:142.956750px;}
.x9{left:153.070800px;}
.x5{left:193.406250px;}
.x8{left:232.723050px;}
.x10{left:258.471000px;}
.x17{left:273.219150px;}
.x6{left:279.038550px;}
.x1a{left:297.618600px;}
.x11{left:311.573550px;}
.x12{left:314.233800px;}
.xc{left:318.076350px;}
.x19{left:327.126000px;}
.x18{left:339.713700px;}
.xa{left:344.750850px;}
.x13{left:442.348050px;}
.x14{left:495.450600px;}
.x15{left:512.284500px;}
.x1{left:645.803100px;}
@media print{
.v2{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.600000pt;}
.lse{letter-spacing:-4.960000pt;}
.ls9{letter-spacing:-4.106667pt;}
.ls15{letter-spacing:-3.786667pt;}
.lsb{letter-spacing:-3.466667pt;}
.ls11{letter-spacing:-2.880000pt;}
.ls13{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-0.960000pt;}
.ls12{letter-spacing:-0.746667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.154667pt;}
.ls2{letter-spacing:0.422400pt;}
.lsd{letter-spacing:0.533333pt;}
.ls10{letter-spacing:0.734933pt;}
.ls14{letter-spacing:1.258667pt;}
.ls0{letter-spacing:1.600000pt;}
.ls17{letter-spacing:2.240000pt;}
.lsa{letter-spacing:2.293333pt;}
.ls8{letter-spacing:3.840000pt;}
.ls16{letter-spacing:4.147200pt;}
.ls5{letter-spacing:5.276267pt;}
.ls7{letter-spacing:5.328000pt;}
.ls3{letter-spacing:5.633600pt;}
.ls18{letter-spacing:7.986667pt;}
.ls4{letter-spacing:15.200000pt;}
.lsf{letter-spacing:18.133333pt;}
.ws0{word-spacing:-21.600000pt;}
.ws1c{word-spacing:-18.133333pt;}
.ws1b{word-spacing:-15.200000pt;}
.ws3{word-spacing:-13.333333pt;}
.ws2{word-spacing:-12.000000pt;}
.ws4{word-spacing:-10.666667pt;}
.ws19{word-spacing:-6.186667pt;}
.ws3d{word-spacing:-5.504000pt;}
.wsa{word-spacing:-5.328000pt;}
.ws17{word-spacing:-4.960000pt;}
.wsc{word-spacing:-4.106667pt;}
.wsb{word-spacing:-3.840000pt;}
.ws34{word-spacing:-3.306667pt;}
.ws27{word-spacing:-2.933333pt;}
.ws2c{word-spacing:-2.880000pt;}
.wsf{word-spacing:-2.293333pt;}
.ws3c{word-spacing:-2.240000pt;}
.ws43{word-spacing:-2.048000pt;}
.ws45{word-spacing:-1.792000pt;}
.ws13{word-spacing:-0.960000pt;}
.ws3b{word-spacing:-0.768000pt;}
.ws32{word-spacing:-0.746667pt;}
.ws15{word-spacing:-0.533333pt;}
.ws36{word-spacing:-0.512000pt;}
.ws6{word-spacing:-0.422400pt;}
.ws2a{word-spacing:-0.106667pt;}
.ws1{word-spacing:-0.042667pt;}
.ws1e{word-spacing:-0.030933pt;}
.ws25{word-spacing:-0.024747pt;}
.ws5{word-spacing:0.000000pt;}
.ws41{word-spacing:0.469333pt;}
.ws14{word-spacing:0.533333pt;}
.ws2b{word-spacing:0.746667pt;}
.ws12{word-spacing:0.960000pt;}
.ws30{word-spacing:1.013333pt;}
.ws39{word-spacing:1.173333pt;}
.ws38{word-spacing:1.280000pt;}
.ws48{word-spacing:1.834667pt;}
.ws1a{word-spacing:2.026667pt;}
.ws16{word-spacing:2.133333pt;}
.wse{word-spacing:2.293333pt;}
.ws2d{word-spacing:2.880000pt;}
.ws26{word-spacing:2.933333pt;}
.ws11{word-spacing:3.466667pt;}
.ws3a{word-spacing:3.786667pt;}
.wsd{word-spacing:4.106667pt;}
.ws44{word-spacing:4.138667pt;}
.ws18{word-spacing:4.960000pt;}
.ws42{word-spacing:5.034667pt;}
.ws28{word-spacing:5.226667pt;}
.ws1d{word-spacing:5.290667pt;}
.ws9{word-spacing:5.328000pt;}
.ws47{word-spacing:5.802667pt;}
.ws40{word-spacing:5.930667pt;}
.ws46{word-spacing:6.058667pt;}
.ws8{word-spacing:6.192000pt;}
.ws7{word-spacing:6.480000pt;}
.ws29{word-spacing:7.573333pt;}
.ws10{word-spacing:7.893333pt;}
.ws33{word-spacing:8.106667pt;}
.ws35{word-spacing:8.533333pt;}
.ws2f{word-spacing:8.693333pt;}
.ws37{word-spacing:9.770667pt;}
.ws2e{word-spacing:11.840000pt;}
.ws3f{word-spacing:13.141333pt;}
.ws49{word-spacing:18.813333pt;}
.ws31{word-spacing:19.626667pt;}
.ws3e{word-spacing:25.514667pt;}
.ws21{word-spacing:545.347733pt;}
.ws22{word-spacing:570.604800pt;}
.ws20{word-spacing:579.118400pt;}
.ws24{word-spacing:592.344533pt;}
.ws23{word-spacing:593.710933pt;}
.ws1f{word-spacing:604.377600pt;}
._c{margin-left:-13.260117pt;}
._9{margin-left:-12.127680pt;}
._25{margin-left:-10.225259pt;}
._1{margin-left:-8.879467pt;}
._d{margin-left:-7.178560pt;}
._0{margin-left:-5.817600pt;}
._8{margin-left:-4.619840pt;}
._b{margin-left:-3.620053pt;}
._4{margin-left:-2.449920pt;}
._2{margin-left:-1.551467pt;}
._3{width:1.205099pt;}
._7{width:2.222400pt;}
._a{width:3.180267pt;}
._5{width:4.812053pt;}
._6{width:6.168000pt;}
._10{width:7.868800pt;}
._f{width:9.215467pt;}
._22{width:10.299733pt;}
._14{width:11.226667pt;}
._13{width:12.402133pt;}
._12{width:14.234667pt;}
._11{width:15.200000pt;}
._23{width:16.373333pt;}
._15{width:17.472000pt;}
._21{width:18.629333pt;}
._16{width:19.565333pt;}
._26{width:20.881067pt;}
._18{width:24.618667pt;}
._24{width:26.213867pt;}
._e{width:35.941333pt;}
._17{width:46.511787pt;}
._1f{width:432.522667pt;}
._20{width:577.387733pt;}
._1b{width:736.516800pt;}
._1c{width:739.867200pt;}
._1a{width:748.996800pt;}
._19{width:750.148800pt;}
._1e{width:758.853867pt;}
._1d{width:760.772800pt;}
.fs7{font-size:24.746667pt;}
.fs6{font-size:30.933333pt;}
.fs3{font-size:42.240000pt;}
.fs2{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:53.158133pt;}
.yae{bottom:91.794933pt;}
.y51{bottom:92.245067pt;}
.y22{bottom:92.893200pt;}
.y9a{bottom:102.688533pt;}
.yad{bottom:106.461600pt;}
.y50{bottom:108.565067pt;}
.y21{bottom:108.893333pt;}
.y99{bottom:115.488533pt;}
.y20{bottom:124.893333pt;}
.y78{bottom:126.854267pt;}
.y98{bottom:128.288400pt;}
.y1f{bottom:140.893333pt;}
.y97{bottom:141.088400pt;}
.y42{bottom:142.150400pt;}
.y77{bottom:143.520933pt;}
.y96{bottom:153.888533pt;}
.y1e{bottom:156.893333pt;}
.y41{bottom:158.150400pt;}
.y76{bottom:160.187600pt;}
.y95{bottom:166.688533pt;}
.y1d{bottom:172.893333pt;}
.y40{bottom:174.150400pt;}
.y75{bottom:176.854267pt;}
.y94{bottom:179.488400pt;}
.y1c{bottom:188.893333pt;}
.y3f{bottom:190.150400pt;}
.y93{bottom:192.288533pt;}
.y74{bottom:193.520933pt;}
.y1b{bottom:204.893333pt;}
.y92{bottom:205.088400pt;}
.y3e{bottom:206.150400pt;}
.y73{bottom:210.187600pt;}
.y91{bottom:217.888533pt;}
.y1a{bottom:220.893333pt;}
.y3d{bottom:222.150400pt;}
.y72{bottom:226.854267pt;}
.y90{bottom:230.688533pt;}
.y19{bottom:236.893333pt;}
.y3c{bottom:238.150400pt;}
.y8f{bottom:243.488400pt;}
.y71{bottom:243.520933pt;}
.y18{bottom:252.893333pt;}
.y3b{bottom:254.150400pt;}
.y8e{bottom:256.288533pt;}
.y70{bottom:260.187600pt;}
.y8d{bottom:269.088400pt;}
.y3a{bottom:270.150400pt;}
.y17{bottom:272.672800pt;}
.y8c{bottom:281.888533pt;}
.y39{bottom:286.150400pt;}
.y6f{bottom:288.192800pt;}
.y16{bottom:288.672800pt;}
.y7c{bottom:293.864133pt;}
.y8b{bottom:294.688533pt;}
.y38{bottom:302.150400pt;}
.y15{bottom:304.672800pt;}
.y8a{bottom:307.488400pt;}
.y7b{bottom:308.530800pt;}
.y6e{bottom:316.198133pt;}
.y37{bottom:318.150400pt;}
.y89{bottom:320.288533pt;}
.y14{bottom:320.672800pt;}
.y7a{bottom:323.197467pt;}
.y6d{bottom:332.864800pt;}
.y88{bottom:333.088400pt;}
.y36{bottom:334.150400pt;}
.y79{bottom:336.530800pt;}
.y13{bottom:340.452267pt;}
.y87{bottom:345.888533pt;}
.y35{bottom:350.150400pt;}
.y6c{bottom:353.310933pt;}
.y12{bottom:356.452267pt;}
.y86{bottom:358.688533pt;}
.y34{bottom:366.150400pt;}
.y6b{bottom:369.977600pt;}
.y85{bottom:371.488400pt;}
.y11{bottom:372.452267pt;}
.y84{bottom:384.288533pt;}
.y6a{bottom:386.644267pt;}
.y10{bottom:388.452267pt;}
.y83{bottom:397.088400pt;}
.y69{bottom:407.090533pt;}
.y82{bottom:409.888533pt;}
.y4d{bottom:412.511733pt;}
.yf{bottom:415.790933pt;}
.y81{bottom:422.688533pt;}
.y68{bottom:423.757200pt;}
.y4c{bottom:430.785200pt;}
.y80{bottom:435.488533pt;}
.y67{bottom:444.203333pt;}
.y7f{bottom:448.288400pt;}
.y4b{bottom:449.058800pt;}
.y7e{bottom:461.088400pt;}
.ye{bottom:462.027067pt;}
.y4a{bottom:467.332267pt;}
.y66{bottom:472.208533pt;}
.y7d{bottom:485.227067pt;}
.y49{bottom:485.605867pt;}
.y65{bottom:488.875200pt;}
.yd{bottom:491.360400pt;}
.y48{bottom:503.779067pt;}
.y64{bottom:505.541867pt;}
.yc{bottom:508.027067pt;}
.y47{bottom:521.952400pt;}
.yb{bottom:524.693733pt;}
.y63{bottom:525.988133pt;}
.y9d{bottom:529.633200pt;}
.y46{bottom:540.125600pt;}
.ya{bottom:541.360400pt;}
.y62{bottom:542.654800pt;}
.y9c{bottom:544.299867pt;}
.y44{bottom:552.925600pt;}
.y9b{bottom:557.633200pt;}
.y9{bottom:558.027067pt;}
.y61{bottom:563.100933pt;}
.y43{bottom:569.505067pt;}
.y45{bottom:582.305067pt;}
.y60{bottom:583.547200pt;}
.y4f{bottom:602.105600pt;}
.y5f{bottom:603.993333pt;}
.y8{bottom:615.817200pt;}
.y4e{bottom:618.105600pt;}
.y7{bottom:630.948533pt;}
.y5e{bottom:631.998667pt;}
.y33{bottom:640.694933pt;}
.y32{bottom:656.694933pt;}
.y6{bottom:658.520933pt;}
.y5d{bottom:660.003867pt;}
.y31{bottom:672.694933pt;}
.y5{bottom:675.100533pt;}
.y5c{bottom:676.670533pt;}
.yac{bottom:678.905600pt;}
.y30{bottom:688.694933pt;}
.yab{bottom:691.705600pt;}
.y5b{bottom:693.337200pt;}
.y4{bottom:699.100533pt;}
.yaa{bottom:704.505600pt;}
.y2f{bottom:708.474400pt;}
.y5a{bottom:710.003867pt;}
.ya9{bottom:717.305600pt;}
.y3{bottom:723.100533pt;}
.y2e{bottom:724.474400pt;}
.y59{bottom:726.670533pt;}
.ya8{bottom:730.105600pt;}
.y2d{bottom:740.474400pt;}
.ya7{bottom:742.905467pt;}
.y58{bottom:743.337200pt;}
.ya6{bottom:755.705600pt;}
.y57{bottom:760.003867pt;}
.y2c{bottom:760.254000pt;}
.y2{bottom:768.433867pt;}
.ya5{bottom:768.505600pt;}
.y2b{bottom:776.254000pt;}
.y56{bottom:776.670533pt;}
.ya4{bottom:781.305600pt;}
.y2a{bottom:792.254000pt;}
.y55{bottom:793.337200pt;}
.ya3{bottom:794.105600pt;}
.ya2{bottom:806.905467pt;}
.y29{bottom:808.254000pt;}
.y54{bottom:810.003867pt;}
.y25{bottom:817.815200pt;}
.ya1{bottom:819.705600pt;}
.y28{bottom:824.254000pt;}
.y53{bottom:826.670533pt;}
.ya0{bottom:832.505600pt;}
.y24{bottom:837.815200pt;}
.y27{bottom:840.254000pt;}
.y9f{bottom:845.305600pt;}
.y52{bottom:854.675867pt;}
.y26{bottom:856.254000pt;}
.y23{bottom:856.481867pt;}
.y9e{bottom:858.105600pt;}
.h12{height:23.357500pt;}
.he{height:28.916667pt;}
.h6{height:29.625000pt;}
.h10{height:29.645800pt;}
.h14{height:31.476562pt;}
.h13{height:37.031250pt;}
.h7{height:37.063125pt;}
.hd{height:37.437500pt;}
.h11{height:37.458300pt;}
.hf{height:37.895833pt;}
.h9{height:42.117188pt;}
.h8{height:42.632812pt;}
.h2{height:44.437500pt;}
.hb{height:46.796875pt;}
.hc{height:47.369792pt;}
.h5{height:54.218750pt;}
.h3{height:56.156250pt;}
.ha{height:56.843750pt;}
.h4{height:71.054688pt;}
.h0{height:925.984000pt;}
.h1{height:926.000000pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xd{left:60.472400pt;}
.x16{left:66.305867pt;}
.xe{left:83.149600pt;}
.x2{left:90.708667pt;}
.x3{left:109.443200pt;}
.xb{left:113.385867pt;}
.x4{left:122.064933pt;}
.xf{left:126.104400pt;}
.x7{left:127.072667pt;}
.x9{left:136.062933pt;}
.x5{left:171.916667pt;}
.x8{left:206.864933pt;}
.x10{left:229.752000pt;}
.x17{left:242.861467pt;}
.x6{left:248.034267pt;}
.x1a{left:264.549867pt;}
.x11{left:276.954267pt;}
.x12{left:279.318933pt;}
.xc{left:282.734533pt;}
.x19{left:290.778667pt;}
.x18{left:301.967733pt;}
.xa{left:306.445200pt;}
.x13{left:393.198267pt;}
.x14{left:440.400533pt;}
.x15{left:455.364000pt;}
.x1{left:574.047200pt;}
}




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