
    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_1d3d1446362b8fb90cacd20c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.943848;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_f5850fbcebea9799d8389529.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900391;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_e742a19489c7de15a1a72088.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_34f90de380a45080b85890ec.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a4e77ffaf9ed021e8362d68d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2b31d778ee57ed13d9c6a54b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.953125;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_6c3ab984b338c848967ae7bb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.759033;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_2ed36003ee91fa8bfacce6f9.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_82038e2544196b32f4df9421.woff2')format("woff");}.ff9{font-family:ff9;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(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);}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.ls12{letter-spacing:-7.740000px;}
.lsc{letter-spacing:-1.392000px;}
.ls13{letter-spacing:-1.200000px;}
.lsa{letter-spacing:-0.960000px;}
.lsb{letter-spacing:-0.048000px;}
.ls9{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008400px;}
.ls8{letter-spacing:0.011400px;}
.ls11{letter-spacing:0.021000px;}
.lsd{letter-spacing:2.100000px;}
.ls1{letter-spacing:2.160000px;}
.ls0{letter-spacing:3.600000px;}
.ls10{letter-spacing:6.360000px;}
.ls6{letter-spacing:6.385200px;}
.ls14{letter-spacing:10.320600px;}
.lse{letter-spacing:12.420000px;}
.ls3{letter-spacing:12.441600px;}
.ls4{letter-spacing:19.417800px;}
.ls5{letter-spacing:19.418400px;}
.lsf{letter-spacing:19.440000px;}
.ls7{letter-spacing:20.460000px;}
.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;}
}
.ws10{word-spacing:-19.440000px;}
.ws3{word-spacing:-15.000000px;}
.wse{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.000000px;}
.ws14{word-spacing:-7.260000px;}
.ws11{word-spacing:-6.360000px;}
.ws5{word-spacing:-3.600000px;}
.ws6{word-spacing:-2.160000px;}
.ws13{word-spacing:-2.112000px;}
.wsc{word-spacing:-2.100000px;}
.wsa{word-spacing:-2.064000px;}
.ws1a{word-spacing:-1.728000px;}
.ws1c{word-spacing:-1.560000px;}
.ws18{word-spacing:-0.864000px;}
.ws17{word-spacing:-0.816000px;}
.ws16{word-spacing:-0.360000px;}
.ws0{word-spacing:-0.048000px;}
.ws1{word-spacing:-0.027984px;}
.ws4{word-spacing:0.000000px;}
.ws8{word-spacing:0.048000px;}
.ws1b{word-spacing:0.600000px;}
.ws7{word-spacing:0.960000px;}
.wsb{word-spacing:1.152000px;}
.ws19{word-spacing:1.200000px;}
.ws9{word-spacing:1.392000px;}
.ws12{word-spacing:2.160000px;}
.ws15{word-spacing:3.360000px;}
.ws1d{word-spacing:6.579000px;}
.wsf{word-spacing:12.720000px;}
.wsd{word-spacing:20.820000px;}
._12{margin-left:-19.461600px;}
._e{margin-left:-14.326200px;}
._f{margin-left:-11.736600px;}
._14{margin-left:-6.961200px;}
._4{margin-left:-5.745600px;}
._19{margin-left:-4.718400px;}
._1{margin-left:-3.607200px;}
._6{margin-left:-2.593200px;}
._3{margin-left:-1.310400px;}
._7{width:1.002000px;}
._2{width:2.160000px;}
._0{width:3.600000px;}
._18{width:4.658400px;}
._9{width:5.668800px;}
._a{width:7.417200px;}
._c{width:8.673600px;}
._8{width:10.041600px;}
._b{width:12.048000px;}
._10{width:13.159800px;}
._13{width:16.221600px;}
._17{width:18.162000px;}
._11{width:19.382400px;}
._d{width:20.742000px;}
._1a{width:22.362000px;}
._1b{width:23.386200px;}
._15{width:24.954000px;}
._5{width:51.094800px;}
._16{width:53.940000px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:27.984000px;}
.fs4{font-size:38.478000px;}
.fs2{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:55.955700px;}
.y1{bottom:56.664300px;}
.ya3{bottom:103.158300px;}
.y6c{bottom:104.260950px;}
.y83{bottom:106.670550px;}
.y5a{bottom:109.009050px;}
.y53{bottom:110.119200px;}
.y27{bottom:114.132000px;}
.ya2{bottom:122.958300px;}
.y82{bottom:124.670550px;}
.y6b{bottom:126.513000px;}
.y59{bottom:127.009050px;}
.y52{bottom:128.419350px;}
.y26{bottom:132.132000px;}
.y81{bottom:142.670550px;}
.y58{bottom:145.009050px;}
.y51{bottom:146.719350px;}
.y6a{bottom:148.764900px;}
.y25{bottom:150.132000px;}
.y57{bottom:167.260950px;}
.y24{bottom:168.132000px;}
.y50{bottom:169.271250px;}
.y69{bottom:179.520900px;}
.y56{bottom:185.260950px;}
.y23{bottom:186.132000px;}
.y4f{bottom:187.571250px;}
.y68{bottom:197.520900px;}
.y55{bottom:203.260950px;}
.y80{bottom:203.805750px;}
.y22{bottom:208.384050px;}
.y4e{bottom:210.123300px;}
.y67{bottom:219.772800px;}
.y7f{bottom:221.805750px;}
.y21{bottom:226.384050px;}
.y4d{bottom:228.423300px;}
.y66{bottom:242.024850px;}
.y20{bottom:244.384050px;}
.y5e{bottom:244.506450px;}
.y4c{bottom:250.975200px;}
.y5d{bottom:259.506450px;}
.y1f{bottom:262.384050px;}
.y4b{bottom:269.275200px;}
.y65{bottom:272.780700px;}
.y5c{bottom:277.506450px;}
.y1e{bottom:280.384050px;}
.y64{bottom:290.780700px;}
.y4a{bottom:291.827250px;}
.y5b{bottom:292.506450px;}
.y1d{bottom:298.384050px;}
.y49{bottom:310.127100px;}
.y1c{bottom:316.384050px;}
.y63{bottom:321.536550px;}
.y48{bottom:328.427100px;}
.y1b{bottom:334.384050px;}
.y47{bottom:346.727250px;}
.y62{bottom:352.292550px;}
.y1a{bottom:352.384050px;}
.y46{bottom:369.279150px;}
.y19{bottom:370.384050px;}
.y61{bottom:374.544450px;}
.y45{bottom:387.579150px;}
.y18{bottom:388.384050px;}
.y60{bottom:392.544450px;}
.ya1{bottom:400.733100px;}
.y44{bottom:410.131050px;}
.y5f{bottom:410.544450px;}
.ya0{bottom:415.133100px;}
.y17{bottom:419.139900px;}
.y43{bottom:428.431050px;}
.y9f{bottom:429.533100px;}
.y9e{bottom:443.933100px;}
.y42{bottom:446.731050px;}
.y70{bottom:449.664000px;}
.y9d{bottom:458.333100px;}
.y6f{bottom:464.664000px;}
.y41{bottom:469.283100px;}
.y9c{bottom:472.733100px;}
.y16{bottom:474.957600px;}
.y6e{bottom:482.664000px;}
.y9b{bottom:487.133100px;}
.y40{bottom:487.583100px;}
.y6d{bottom:497.664000px;}
.y15{bottom:498.461550px;}
.y9a{bottom:501.533100px;}
.y3f{bottom:505.883100px;}
.y14{bottom:512.861550px;}
.y99{bottom:515.933100px;}
.y3e{bottom:524.183100px;}
.y13{bottom:527.261550px;}
.y98{bottom:530.333100px;}
.y12{bottom:541.661550px;}
.y3d{bottom:542.483100px;}
.y97{bottom:544.733100px;}
.y11{bottom:556.061550px;}
.y96{bottom:559.133100px;}
.y3c{bottom:560.783100px;}
.y10{bottom:570.461550px;}
.y95{bottom:573.533100px;}
.y3b{bottom:579.083100px;}
.yf{bottom:584.861550px;}
.y94{bottom:587.933100px;}
.y3a{bottom:597.383100px;}
.ye{bottom:599.261550px;}
.y93{bottom:602.333100px;}
.y7e{bottom:602.875200px;}
.yd{bottom:613.661550px;}
.y39{bottom:615.683100px;}
.y92{bottom:616.733100px;}
.y7d{bottom:625.127250px;}
.yc{bottom:628.061550px;}
.y91{bottom:631.133100px;}
.y38{bottom:633.983100px;}
.yb{bottom:642.461550px;}
.y90{bottom:645.533100px;}
.y7c{bottom:647.379150px;}
.y8f{bottom:659.933100px;}
.y37{bottom:665.038950px;}
.y7b{bottom:669.631050px;}
.ya{bottom:681.121350px;}
.y8e{bottom:687.088950px;}
.y7a{bottom:691.883100px;}
.y36{bottom:696.094800px;}
.y9{bottom:700.117350px;}
.y79{bottom:709.883100px;}
.y35{bottom:714.394800px;}
.y8{bottom:715.373400px;}
.y8d{bottom:717.394800px;}
.y78{bottom:732.135000px;}
.y34{bottom:732.694950px;}
.y7{bottom:734.369400px;}
.y8c{bottom:735.394800px;}
.y77{bottom:750.135000px;}
.y33{bottom:750.994950px;}
.y8b{bottom:753.394800px;}
.y6{bottom:761.377350px;}
.y76{bottom:768.135000px;}
.y8a{bottom:771.394800px;}
.y32{bottom:773.546850px;}
.y75{bottom:790.387050px;}
.y31{bottom:791.846850px;}
.y89{bottom:793.646850px;}
.y5{bottom:796.385250px;}
.y30{bottom:810.146850px;}
.y88{bottom:811.646850px;}
.y4{bottom:814.137150px;}
.y74{bottom:821.142900px;}
.y2f{bottom:828.446850px;}
.y87{bottom:829.646850px;}
.y3{bottom:835.737150px;}
.y73{bottom:839.142900px;}
.y2e{bottom:846.746850px;}
.y86{bottom:847.646850px;}
.y72{bottom:857.142900px;}
.y2{bottom:857.337150px;}
.y2d{bottom:865.046850px;}
.y85{bottom:865.646850px;}
.y71{bottom:879.394800px;}
.y2c{bottom:883.346850px;}
.y84{bottom:883.646850px;}
.y2b{bottom:901.646850px;}
.y29{bottom:927.827700px;}
.y28{bottom:948.827700px;}
.y54{bottom:951.848250px;}
.h6{height:26.133187px;}
.h8{height:32.859375px;}
.h4{height:33.328125px;}
.hc{height:35.411133px;}
.hb{height:36.375000px;}
.h7{height:42.117188px;}
.h2{height:45.468750px;}
.ha{height:48.468750px;}
.h3{height:49.289062px;}
.h9{height:52.646484px;}
.h5{height:57.911133px;}
.h1{height:1011.750000px;}
.h0{height:1011.969000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.xf{left:76.535400px;}
.xa{left:93.543300px;}
.x14{left:97.795200px;}
.x6{left:99.110100px;}
.x10{left:102.047250px;}
.x8{left:103.549650px;}
.xb{left:110.551200px;}
.xd{left:119.055150px;}
.x11{left:127.559100px;}
.x2{left:136.551900px;}
.x7{left:141.215100px;}
.x3{left:175.870800px;}
.xe{left:192.121500px;}
.x5{left:193.291200px;}
.x9{left:210.669300px;}
.x4{left:260.113650px;}
.x13{left:276.997050px;}
.x12{left:310.516350px;}
.xc{left:331.805250px;}
.x1{left:613.053000px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls12{letter-spacing:-6.880000pt;}
.lsc{letter-spacing:-1.237333pt;}
.ls13{letter-spacing:-1.066667pt;}
.lsa{letter-spacing:-0.853333pt;}
.lsb{letter-spacing:-0.042667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007467pt;}
.ls8{letter-spacing:0.010133pt;}
.ls11{letter-spacing:0.018667pt;}
.lsd{letter-spacing:1.866667pt;}
.ls1{letter-spacing:1.920000pt;}
.ls0{letter-spacing:3.200000pt;}
.ls10{letter-spacing:5.653333pt;}
.ls6{letter-spacing:5.675733pt;}
.ls14{letter-spacing:9.173867pt;}
.lse{letter-spacing:11.040000pt;}
.ls3{letter-spacing:11.059200pt;}
.ls4{letter-spacing:17.260267pt;}
.ls5{letter-spacing:17.260800pt;}
.lsf{letter-spacing:17.280000pt;}
.ls7{letter-spacing:18.186667pt;}
.ws10{word-spacing:-17.280000pt;}
.ws3{word-spacing:-13.333333pt;}
.wse{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.666667pt;}
.ws14{word-spacing:-6.453333pt;}
.ws11{word-spacing:-5.653333pt;}
.ws5{word-spacing:-3.200000pt;}
.ws6{word-spacing:-1.920000pt;}
.ws13{word-spacing:-1.877333pt;}
.wsc{word-spacing:-1.866667pt;}
.wsa{word-spacing:-1.834667pt;}
.ws1a{word-spacing:-1.536000pt;}
.ws1c{word-spacing:-1.386667pt;}
.ws18{word-spacing:-0.768000pt;}
.ws17{word-spacing:-0.725333pt;}
.ws16{word-spacing:-0.320000pt;}
.ws0{word-spacing:-0.042667pt;}
.ws1{word-spacing:-0.024875pt;}
.ws4{word-spacing:0.000000pt;}
.ws8{word-spacing:0.042667pt;}
.ws1b{word-spacing:0.533333pt;}
.ws7{word-spacing:0.853333pt;}
.wsb{word-spacing:1.024000pt;}
.ws19{word-spacing:1.066667pt;}
.ws9{word-spacing:1.237333pt;}
.ws12{word-spacing:1.920000pt;}
.ws15{word-spacing:2.986667pt;}
.ws1d{word-spacing:5.848000pt;}
.wsf{word-spacing:11.306667pt;}
.wsd{word-spacing:18.506667pt;}
._12{margin-left:-17.299200pt;}
._e{margin-left:-12.734400pt;}
._f{margin-left:-10.432533pt;}
._14{margin-left:-6.187733pt;}
._4{margin-left:-5.107200pt;}
._19{margin-left:-4.194133pt;}
._1{margin-left:-3.206400pt;}
._6{margin-left:-2.305067pt;}
._3{margin-left:-1.164800pt;}
._7{width:0.890667pt;}
._2{width:1.920000pt;}
._0{width:3.200000pt;}
._18{width:4.140800pt;}
._9{width:5.038933pt;}
._a{width:6.593067pt;}
._c{width:7.709867pt;}
._8{width:8.925867pt;}
._b{width:10.709333pt;}
._10{width:11.697600pt;}
._13{width:14.419200pt;}
._17{width:16.144000pt;}
._11{width:17.228800pt;}
._d{width:18.437333pt;}
._1a{width:19.877333pt;}
._1b{width:20.787733pt;}
._15{width:22.181333pt;}
._5{width:45.417600pt;}
._16{width:47.946667pt;}
.fs5{font-size:24.874667pt;}
.fs4{font-size:34.202667pt;}
.fs2{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:49.738400pt;}
.y1{bottom:50.368267pt;}
.ya3{bottom:91.696267pt;}
.y6c{bottom:92.676400pt;}
.y83{bottom:94.818267pt;}
.y5a{bottom:96.896933pt;}
.y53{bottom:97.883733pt;}
.y27{bottom:101.450667pt;}
.ya2{bottom:109.296267pt;}
.y82{bottom:110.818267pt;}
.y6b{bottom:112.456000pt;}
.y59{bottom:112.896933pt;}
.y52{bottom:114.150533pt;}
.y26{bottom:117.450667pt;}
.y81{bottom:126.818267pt;}
.y58{bottom:128.896933pt;}
.y51{bottom:130.417200pt;}
.y6a{bottom:132.235467pt;}
.y25{bottom:133.450667pt;}
.y57{bottom:148.676400pt;}
.y24{bottom:149.450667pt;}
.y50{bottom:150.463333pt;}
.y69{bottom:159.574133pt;}
.y56{bottom:164.676400pt;}
.y23{bottom:165.450667pt;}
.y4f{bottom:166.730000pt;}
.y68{bottom:175.574133pt;}
.y55{bottom:180.676400pt;}
.y80{bottom:181.160667pt;}
.y22{bottom:185.230267pt;}
.y4e{bottom:186.776267pt;}
.y67{bottom:195.353600pt;}
.y7f{bottom:197.160667pt;}
.y21{bottom:201.230267pt;}
.y4d{bottom:203.042933pt;}
.y66{bottom:215.133200pt;}
.y20{bottom:217.230267pt;}
.y5e{bottom:217.339067pt;}
.y4c{bottom:223.089067pt;}
.y5d{bottom:230.672400pt;}
.y1f{bottom:233.230267pt;}
.y4b{bottom:239.355733pt;}
.y65{bottom:242.471733pt;}
.y5c{bottom:246.672400pt;}
.y1e{bottom:249.230267pt;}
.y64{bottom:258.471733pt;}
.y4a{bottom:259.402000pt;}
.y5b{bottom:260.005733pt;}
.y1d{bottom:265.230267pt;}
.y49{bottom:275.668533pt;}
.y1c{bottom:281.230267pt;}
.y63{bottom:285.810267pt;}
.y48{bottom:291.935200pt;}
.y1b{bottom:297.230267pt;}
.y47{bottom:308.202000pt;}
.y62{bottom:313.148933pt;}
.y1a{bottom:313.230267pt;}
.y46{bottom:328.248133pt;}
.y19{bottom:329.230267pt;}
.y61{bottom:332.928400pt;}
.y45{bottom:344.514800pt;}
.y18{bottom:345.230267pt;}
.y60{bottom:348.928400pt;}
.ya1{bottom:356.207200pt;}
.y44{bottom:364.560933pt;}
.y5f{bottom:364.928400pt;}
.ya0{bottom:369.007200pt;}
.y17{bottom:372.568800pt;}
.y43{bottom:380.827600pt;}
.y9f{bottom:381.807200pt;}
.y9e{bottom:394.607200pt;}
.y42{bottom:397.094267pt;}
.y70{bottom:399.701333pt;}
.y9d{bottom:407.407200pt;}
.y6f{bottom:413.034667pt;}
.y41{bottom:417.140533pt;}
.y9c{bottom:420.207200pt;}
.y16{bottom:422.184533pt;}
.y6e{bottom:429.034667pt;}
.y9b{bottom:433.007200pt;}
.y40{bottom:433.407200pt;}
.y6d{bottom:442.368000pt;}
.y15{bottom:443.076933pt;}
.y9a{bottom:445.807200pt;}
.y3f{bottom:449.673867pt;}
.y14{bottom:455.876933pt;}
.y99{bottom:458.607200pt;}
.y3e{bottom:465.940533pt;}
.y13{bottom:468.676933pt;}
.y98{bottom:471.407200pt;}
.y12{bottom:481.476933pt;}
.y3d{bottom:482.207200pt;}
.y97{bottom:484.207200pt;}
.y11{bottom:494.276933pt;}
.y96{bottom:497.007200pt;}
.y3c{bottom:498.473867pt;}
.y10{bottom:507.076933pt;}
.y95{bottom:509.807200pt;}
.y3b{bottom:514.740533pt;}
.yf{bottom:519.876933pt;}
.y94{bottom:522.607200pt;}
.y3a{bottom:531.007200pt;}
.ye{bottom:532.676933pt;}
.y93{bottom:535.407200pt;}
.y7e{bottom:535.889067pt;}
.yd{bottom:545.476933pt;}
.y39{bottom:547.273867pt;}
.y92{bottom:548.207200pt;}
.y7d{bottom:555.668667pt;}
.yc{bottom:558.276933pt;}
.y91{bottom:561.007200pt;}
.y38{bottom:563.540533pt;}
.yb{bottom:571.076933pt;}
.y90{bottom:573.807200pt;}
.y7c{bottom:575.448133pt;}
.y8f{bottom:586.607200pt;}
.y37{bottom:591.145733pt;}
.y7b{bottom:595.227600pt;}
.ya{bottom:605.441200pt;}
.y8e{bottom:610.745733pt;}
.y7a{bottom:615.007200pt;}
.y36{bottom:618.750933pt;}
.y9{bottom:622.326533pt;}
.y79{bottom:631.007200pt;}
.y35{bottom:635.017600pt;}
.y8{bottom:635.887467pt;}
.y8d{bottom:637.684267pt;}
.y78{bottom:650.786667pt;}
.y34{bottom:651.284400pt;}
.y7{bottom:652.772800pt;}
.y8c{bottom:653.684267pt;}
.y77{bottom:666.786667pt;}
.y33{bottom:667.551067pt;}
.y8b{bottom:669.684267pt;}
.y6{bottom:676.779867pt;}
.y76{bottom:682.786667pt;}
.y8a{bottom:685.684267pt;}
.y32{bottom:687.597200pt;}
.y75{bottom:702.566267pt;}
.y31{bottom:703.863867pt;}
.y89{bottom:705.463867pt;}
.y5{bottom:707.898000pt;}
.y30{bottom:720.130533pt;}
.y88{bottom:721.463867pt;}
.y4{bottom:723.677467pt;}
.y74{bottom:729.904800pt;}
.y2f{bottom:736.397200pt;}
.y87{bottom:737.463867pt;}
.y3{bottom:742.877467pt;}
.y73{bottom:745.904800pt;}
.y2e{bottom:752.663867pt;}
.y86{bottom:753.463867pt;}
.y72{bottom:761.904800pt;}
.y2{bottom:762.077467pt;}
.y2d{bottom:768.930533pt;}
.y85{bottom:769.463867pt;}
.y71{bottom:781.684267pt;}
.y2c{bottom:785.197200pt;}
.y84{bottom:785.463867pt;}
.y2b{bottom:801.463867pt;}
.y29{bottom:824.735733pt;}
.y28{bottom:843.402400pt;}
.y54{bottom:846.087333pt;}
.h6{height:23.229500pt;}
.h8{height:29.208333pt;}
.h4{height:29.625000pt;}
.hc{height:31.476562pt;}
.hb{height:32.333333pt;}
.h7{height:37.437500pt;}
.h2{height:40.416667pt;}
.ha{height:43.083333pt;}
.h3{height:43.812500pt;}
.h9{height:46.796875pt;}
.h5{height:51.476562pt;}
.h1{height:899.333333pt;}
.h0{height:899.528000pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.xf{left:68.031467pt;}
.xa{left:83.149600pt;}
.x14{left:86.929067pt;}
.x6{left:88.097867pt;}
.x10{left:90.708667pt;}
.x8{left:92.044133pt;}
.xb{left:98.267733pt;}
.xd{left:105.826800pt;}
.x11{left:113.385867pt;}
.x2{left:121.379467pt;}
.x7{left:125.524533pt;}
.x3{left:156.329600pt;}
.xe{left:170.774667pt;}
.x5{left:171.814400pt;}
.x9{left:187.261600pt;}
.x4{left:231.212133pt;}
.x13{left:246.219600pt;}
.x12{left:276.014533pt;}
.xc{left:294.938000pt;}
.x1{left:544.936000pt;}
}




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