
    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_a3987d67a9e47b86d98e21a4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107422;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_d6fe7f2ca526cc30e71c0550.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.107422;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_a313c7a73b086fc5af5ed50a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.945312;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_0a6e6821e3096b8be7367d59.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.945312;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_3c84c9c8f60199cc5f203c16.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.769043;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_04b1498f07310f1f56a31b80.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9cd89d064e032cfbcba976a5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.079102;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls22{letter-spacing:-0.376200px;}
.ls1a{letter-spacing:-0.306600px;}
.lsa{letter-spacing:-0.288000px;}
.ls20{letter-spacing:-0.280200px;}
.lsc{letter-spacing:-0.252000px;}
.lsd{letter-spacing:-0.206400px;}
.ls7{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.106800px;}
.ls3{letter-spacing:-0.017280px;}
.ls2{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.026460px;}
.ls18{letter-spacing:0.036000px;}
.ls9{letter-spacing:0.037440px;}
.ls1e{letter-spacing:0.106800px;}
.ls11{letter-spacing:0.108000px;}
.ls1f{letter-spacing:0.162000px;}
.lsf{letter-spacing:0.178800px;}
.ls23{letter-spacing:0.181200px;}
.ls5{letter-spacing:0.216000px;}
.ls1c{letter-spacing:0.232128px;}
.ls1d{letter-spacing:0.250800px;}
.ls6{letter-spacing:0.270000px;}
.ls1{letter-spacing:0.279936px;}
.ls1b{letter-spacing:0.280080px;}
.ls16{letter-spacing:0.280200px;}
.ls17{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.365376px;}
.lse{letter-spacing:1.386000px;}
.lsb{letter-spacing:1.656000px;}
.ls24{letter-spacing:2.150688px;}
.ls8{letter-spacing:47.160000px;}
.ls10{letter-spacing:97.509600px;}
.ls4{letter-spacing:97.560000px;}
.ls12{letter-spacing:97.653600px;}
.ls13{letter-spacing:97.704000px;}
.ls19{letter-spacing:101.844000px;}
.ls15{letter-spacing:103.860000px;}
.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;}
}
.wsb{word-spacing:-40.032000px;}
.ws3{word-spacing:-39.888000px;}
.ws13{word-spacing:-33.677520px;}
.ws14{word-spacing:-33.533520px;}
.ws12{word-spacing:-33.426720px;}
.ws10{word-spacing:-33.120120px;}
.ws6{word-spacing:-30.064032px;}
.ws2{word-spacing:-30.024000px;}
.ws18{word-spacing:-26.802480px;}
.ws8{word-spacing:-26.661312px;}
.ws19{word-spacing:-26.658720px;}
.wsc{word-spacing:-26.621280px;}
.ws7{word-spacing:-25.290000px;}
.ws5{word-spacing:-25.060032px;}
.ws4{word-spacing:-25.020000px;}
.ws0{word-spacing:-21.600000px;}
.ws9{word-spacing:-20.016000px;}
.wsa{word-spacing:-16.613280px;}
.wsd{word-spacing:-16.506480px;}
.wse{word-spacing:-16.306680px;}
.ws15{word-spacing:-15.174000px;}
.ws16{word-spacing:-15.012000px;}
.ws17{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
.wsf{word-spacing:27.972720px;}
.ws11{word-spacing:28.053612px;}
._9{margin-left:-543.612000px;}
._3{margin-left:-9.234720px;}
._8{margin-left:-7.290000px;}
._5{margin-left:-5.310000px;}
._4{margin-left:-3.510000px;}
._6{margin-left:-2.508960px;}
._1{margin-left:-1.477440px;}
._2{width:1.321920px;}
._0{width:2.721600px;}
._b{width:3.731280px;}
._7{width:31.381440px;}
._c{width:101.844000px;}
._a{width:111.459840px;}
.fc9{color:rgb(255,0,0);}
.fc7{color:rgb(0,118,53);}
.fc3{color:rgb(127,77,0);}
.fc2{color:transparent;}
.fc6{color:rgb(192,0,0);}
.fc1{color:rgb(0,112,192);}
.fc8{color:rgb(127,127,127);}
.fc5{color:rgb(115,115,115);}
.fc4{color:rgb(77,77,77);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fsb{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs3{font-size:90.000000px;}
.fs4{font-size:90.144000px;}
.fs9{font-size:95.760000px;}
.fsa{font-size:95.904000px;}
.fs5{font-size:108.000000px;}
.fs6{font-size:108.144000px;}
.fsd{font-size:120.240000px;}
.fse{font-size:120.384000px;}
.fsc{font-size:138.240000px;}
.fs8{font-size:144.000000px;}
.fs2{font-size:167.760000px;}
.fs1{font-size:167.904000px;}
.y0{bottom:0.000000px;}
.y38{bottom:7.344000px;}
.y7f{bottom:8.208000px;}
.y42{bottom:10.260000px;}
.y5a{bottom:10.656000px;}
.y80{bottom:11.736000px;}
.y36{bottom:13.032000px;}
.y79{bottom:18.864000px;}
.y10{bottom:36.648000px;}
.y78{bottom:36.864000px;}
.y1{bottom:49.356000px;}
.y77{bottom:54.864000px;}
.y4a{bottom:95.112000px;}
.y7{bottom:100.872000px;}
.y41{bottom:101.052000px;}
.yf{bottom:102.492000px;}
.y76{bottom:102.852000px;}
.y29{bottom:103.140000px;}
.y32{bottom:104.292000px;}
.y89{bottom:110.304000px;}
.y6{bottom:127.908000px;}
.y26{bottom:131.220000px;}
.y19{bottom:131.616000px;}
.y28{bottom:131.976000px;}
.y49{bottom:132.552000px;}
.y51{bottom:134.316000px;}
.y67{bottom:135.288000px;}
.y40{bottom:138.528000px;}
.ye{bottom:140.148000px;}
.y75{bottom:140.292000px;}
.y31{bottom:141.732000px;}
.y16{bottom:153.285000px;}
.y8d{bottom:154.050000px;}
.y5{bottom:154.905000px;}
.y88{bottom:159.840000px;}
.y27{bottom:160.770000px;}
.y66{bottom:162.285000px;}
.y58{bottom:162.750000px;}
.y7e{bottom:163.980000px;}
.y25{bottom:164.160000px;}
.y48{bottom:170.025000px;}
.yd{bottom:177.585000px;}
.y74{bottom:180.825000px;}
.y15{bottom:185.730000px;}
.y6d{bottom:187.560000px;}
.y50{bottom:189.795000px;}
.y30{bottom:191.265000px;}
.y3f{bottom:194.145000px;}
.y24{bottom:197.310000px;}
.y65{bottom:198.285000px;}
.y57{bottom:200.370000px;}
.y47{bottom:207.645000px;}
.y87{bottom:209.340000px;}
.yc{bottom:215.025000px;}
.y8c{bottom:218.490000px;}
.y7d{bottom:219.630000px;}
.y73{bottom:221.325000px;}
.y6c{bottom:225.030000px;}
.y64{bottom:225.285000px;}
.y2f{bottom:228.885000px;}
.y23{bottom:230.250000px;}
.y3e{bottom:231.585000px;}
.y56{bottom:237.855000px;}
.y4f{bottom:245.415000px;}
.y86{bottom:246.780000px;}
.y63{bottom:252.330000px;}
.y8b{bottom:255.930000px;}
.y72{bottom:261.825000px;}
.y46{bottom:263.085000px;}
.y2e{bottom:266.325000px;}
.y1d{bottom:267.045000px;}
.y3d{bottom:269.070000px;}
.y6b{bottom:271.650000px;}
.y7c{bottom:275.070000px;}
.y55{bottom:275.295000px;}
.y62{bottom:279.330000px;}
.y4e{bottom:288.795000px;}
.y22{bottom:290.190000px;}
.y8a{bottom:293.580000px;}
.y85{bottom:296.310000px;}
.yb{bottom:297.690000px;}
.y45{bottom:306.690000px;}
.y54{bottom:312.915000px;}
.y61{bottom:315.330000px;}
.y2d{bottom:315.870000px;}
.y71{bottom:317.310000px;}
.y6a{bottom:318.090000px;}
.y21{bottom:323.355000px;}
.y3c{bottom:324.690000px;}
.y7b{bottom:330.555000px;}
.y4d{bottom:332.385000px;}
.y84{bottom:333.930000px;}
.y1c{bottom:336.165000px;}
.y34{bottom:336.240000px;}
.y60{bottom:342.330000px;}
.y14{bottom:344.055000px;}
.ya{bottom:344.130000px;}
.y18{bottom:344.490000px;}
.y44{bottom:350.070000px;}
.y53{bottom:350.385000px;}
.y2c{bottom:353.310000px;}
.y70{bottom:357.810000px;}
.y81{bottom:359.355000px;}
.y3b{bottom:362.130000px;}
.y1b{bottom:363.210000px;}
.y69{bottom:364.575000px;}
.y35{bottom:366.195000px;}
.y17{bottom:371.490000px;}
.y13{bottom:376.995000px;}
.y8e{bottom:377.430000px;}
.y5f{bottom:378.360000px;}
.y20{bottom:383.295000px;}
.y83{bottom:383.430000px;}
.y4{bottom:385.350000px;}
.y7a{bottom:386.175000px;}
.y1e{bottom:386.490000px;}
.y4c{bottom:387.825000px;}
.y1a{bottom:390.210000px;}
.y33{bottom:390.345000px;}
.y9{bottom:390.570000px;}
.y43{bottom:393.630000px;}
.y6f{bottom:398.310000px;}
.y3a{bottom:399.600000px;}
.y2b{bottom:402.810000px;}
.y5e{bottom:405.360000px;}
.y1f{bottom:416.235000px;}
.y68{bottom:420.195000px;}
.y52{bottom:425.445000px;}
.y4b{bottom:425.490000px;}
.y5d{bottom:432.360000px;}
.y82{bottom:432.975000px;}
.y6e{bottom:435.960000px;}
.y8{bottom:437.220000px;}
.y3{bottom:437.910000px;}
.y2a{bottom:440.460000px;}
.y37{bottom:441.570000px;}
.y5c{bottom:459.360000px;}
.y39{bottom:490.215000px;}
.y2{bottom:490.320000px;}
.y11{bottom:490.395000px;}
.y5b{bottom:495.360000px;}
.y12{bottom:495.540000px;}
.y59{bottom:560.595000px;}
.h15{height:48.436523px;}
.h10{height:53.121094px;}
.h8{height:53.603086px;}
.h16{height:59.835938px;}
.h11{height:64.582031px;}
.h4{height:66.401367px;}
.h5{height:66.507609px;}
.h1{height:69.748594px;}
.ha{height:80.727539px;}
.hb{height:80.856703px;}
.hd{height:81.210938px;}
.hc{height:81.319219px;}
.he{height:85.894102px;}
.hf{height:86.023266px;}
.h6{height:96.873047px;}
.h7{height:97.002211px;}
.h13{height:107.851992px;}
.h14{height:107.981156px;}
.h12{height:123.997500px;}
.h9{height:129.164062px;}
.h3{height:150.476133px;}
.h2{height:150.605297px;}
.h0{height:607.500000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x32{left:10.799984px;}
.x27{left:40.859984px;}
.x25{left:42.479984px;}
.x6{left:46.727984px;}
.x21{left:47.735984px;}
.x5{left:49.175984px;}
.x35{left:50.975984px;}
.x26{left:54.359984px;}
.x28{left:55.799984px;}
.x14{left:57.527984px;}
.x19{left:67.967984px;}
.x2c{left:69.875984px;}
.x20{left:72.251984px;}
.x15{left:78.767984px;}
.x7{left:80.567984px;}
.x22{left:81.611984px;}
.xb{left:89.351984px;}
.x2{left:93.635984px;}
.x2d{left:101.087984px;}
.x23{left:102.131984px;}
.x3{left:128.195984px;}
.x2e{left:141.587984px;}
.x29{left:236.159984px;}
.x13{left:265.649984px;}
.x34{left:276.449984px;}
.x1d{left:287.204984px;}
.x2f{left:310.964984px;}
.x4{left:336.854984px;}
.x31{left:365.684984px;}
.x36{left:377.564984px;}
.xa{left:383.324984px;}
.xe{left:392.579984px;}
.x9{left:394.664984px;}
.x30{left:413.204984px;}
.x12{left:545.009984px;}
.x16{left:547.409984px;}
.x1f{left:562.424984px;}
.x18{left:605.234984px;}
.x1{left:613.724984px;}
.x17{left:624.854984px;}
.xc{left:666.029984px;}
.xd{left:675.389984px;}
.x2a{left:713.954984px;}
.x2b{left:747.794984px;}
.x11{left:826.379984px;}
.xf{left:828.899984px;}
.x10{left:854.099984px;}
.x1a{left:910.769984px;}
.x1b{left:912.629984px;}
.x1c{left:962.924984px;}
.x24{left:970.304984px;}
.x8{left:978.584984px;}
.x33{left:1055.084984px;}
.x1e{left:1070.309984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls22{letter-spacing:-0.334400pt;}
.ls1a{letter-spacing:-0.272533pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls20{letter-spacing:-0.249067pt;}
.lsc{letter-spacing:-0.224000pt;}
.lsd{letter-spacing:-0.183467pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.094933pt;}
.ls3{letter-spacing:-0.015360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.023520pt;}
.ls18{letter-spacing:0.032000pt;}
.ls9{letter-spacing:0.033280pt;}
.ls1e{letter-spacing:0.094933pt;}
.ls11{letter-spacing:0.096000pt;}
.ls1f{letter-spacing:0.144000pt;}
.lsf{letter-spacing:0.158933pt;}
.ls23{letter-spacing:0.161067pt;}
.ls5{letter-spacing:0.192000pt;}
.ls1c{letter-spacing:0.206336pt;}
.ls1d{letter-spacing:0.222933pt;}
.ls6{letter-spacing:0.240000pt;}
.ls1{letter-spacing:0.248832pt;}
.ls1b{letter-spacing:0.248960pt;}
.ls16{letter-spacing:0.249067pt;}
.ls17{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.324779pt;}
.lse{letter-spacing:1.232000pt;}
.lsb{letter-spacing:1.472000pt;}
.ls24{letter-spacing:1.911723pt;}
.ls8{letter-spacing:41.920000pt;}
.ls10{letter-spacing:86.675200pt;}
.ls4{letter-spacing:86.720000pt;}
.ls12{letter-spacing:86.803200pt;}
.ls13{letter-spacing:86.848000pt;}
.ls19{letter-spacing:90.528000pt;}
.ls15{letter-spacing:92.320000pt;}
.wsb{word-spacing:-35.584000pt;}
.ws3{word-spacing:-35.456000pt;}
.ws13{word-spacing:-29.935573pt;}
.ws14{word-spacing:-29.807573pt;}
.ws12{word-spacing:-29.712640pt;}
.ws10{word-spacing:-29.440107pt;}
.ws6{word-spacing:-26.723584pt;}
.ws2{word-spacing:-26.688000pt;}
.ws18{word-spacing:-23.824427pt;}
.ws8{word-spacing:-23.698944pt;}
.ws19{word-spacing:-23.696640pt;}
.wsc{word-spacing:-23.663360pt;}
.ws7{word-spacing:-22.480000pt;}
.ws5{word-spacing:-22.275584pt;}
.ws4{word-spacing:-22.240000pt;}
.ws0{word-spacing:-19.200000pt;}
.ws9{word-spacing:-17.792000pt;}
.wsa{word-spacing:-14.767360pt;}
.wsd{word-spacing:-14.672427pt;}
.wse{word-spacing:-14.494827pt;}
.ws15{word-spacing:-13.488000pt;}
.ws16{word-spacing:-13.344000pt;}
.ws17{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
.wsf{word-spacing:24.864640pt;}
.ws11{word-spacing:24.936544pt;}
._9{margin-left:-483.210667pt;}
._3{margin-left:-8.208640pt;}
._8{margin-left:-6.480000pt;}
._5{margin-left:-4.720000pt;}
._4{margin-left:-3.120000pt;}
._6{margin-left:-2.230187pt;}
._1{margin-left:-1.313280pt;}
._2{width:1.175040pt;}
._0{width:2.419200pt;}
._b{width:3.316693pt;}
._7{width:27.894613pt;}
._c{width:90.528000pt;}
._a{width:99.075413pt;}
.fsf{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fsb{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:80.000000pt;}
.fs4{font-size:80.128000pt;}
.fs9{font-size:85.120000pt;}
.fsa{font-size:85.248000pt;}
.fs5{font-size:96.000000pt;}
.fs6{font-size:96.128000pt;}
.fsd{font-size:106.880000pt;}
.fse{font-size:107.008000pt;}
.fsc{font-size:122.880000pt;}
.fs8{font-size:128.000000pt;}
.fs2{font-size:149.120000pt;}
.fs1{font-size:149.248000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:6.528000pt;}
.y7f{bottom:7.296000pt;}
.y42{bottom:9.120000pt;}
.y5a{bottom:9.472000pt;}
.y80{bottom:10.432000pt;}
.y36{bottom:11.584000pt;}
.y79{bottom:16.768000pt;}
.y10{bottom:32.576000pt;}
.y78{bottom:32.768000pt;}
.y1{bottom:43.872000pt;}
.y77{bottom:48.768000pt;}
.y4a{bottom:84.544000pt;}
.y7{bottom:89.664000pt;}
.y41{bottom:89.824000pt;}
.yf{bottom:91.104000pt;}
.y76{bottom:91.424000pt;}
.y29{bottom:91.680000pt;}
.y32{bottom:92.704000pt;}
.y89{bottom:98.048000pt;}
.y6{bottom:113.696000pt;}
.y26{bottom:116.640000pt;}
.y19{bottom:116.992000pt;}
.y28{bottom:117.312000pt;}
.y49{bottom:117.824000pt;}
.y51{bottom:119.392000pt;}
.y67{bottom:120.256000pt;}
.y40{bottom:123.136000pt;}
.ye{bottom:124.576000pt;}
.y75{bottom:124.704000pt;}
.y31{bottom:125.984000pt;}
.y16{bottom:136.253333pt;}
.y8d{bottom:136.933333pt;}
.y5{bottom:137.693333pt;}
.y88{bottom:142.080000pt;}
.y27{bottom:142.906667pt;}
.y66{bottom:144.253333pt;}
.y58{bottom:144.666667pt;}
.y7e{bottom:145.760000pt;}
.y25{bottom:145.920000pt;}
.y48{bottom:151.133333pt;}
.yd{bottom:157.853333pt;}
.y74{bottom:160.733333pt;}
.y15{bottom:165.093333pt;}
.y6d{bottom:166.720000pt;}
.y50{bottom:168.706667pt;}
.y30{bottom:170.013333pt;}
.y3f{bottom:172.573333pt;}
.y24{bottom:175.386667pt;}
.y65{bottom:176.253333pt;}
.y57{bottom:178.106667pt;}
.y47{bottom:184.573333pt;}
.y87{bottom:186.080000pt;}
.yc{bottom:191.133333pt;}
.y8c{bottom:194.213333pt;}
.y7d{bottom:195.226667pt;}
.y73{bottom:196.733333pt;}
.y6c{bottom:200.026667pt;}
.y64{bottom:200.253333pt;}
.y2f{bottom:203.453333pt;}
.y23{bottom:204.666667pt;}
.y3e{bottom:205.853333pt;}
.y56{bottom:211.426667pt;}
.y4f{bottom:218.146667pt;}
.y86{bottom:219.360000pt;}
.y63{bottom:224.293333pt;}
.y8b{bottom:227.493333pt;}
.y72{bottom:232.733333pt;}
.y46{bottom:233.853333pt;}
.y2e{bottom:236.733333pt;}
.y1d{bottom:237.373333pt;}
.y3d{bottom:239.173333pt;}
.y6b{bottom:241.466667pt;}
.y7c{bottom:244.506667pt;}
.y55{bottom:244.706667pt;}
.y62{bottom:248.293333pt;}
.y4e{bottom:256.706667pt;}
.y22{bottom:257.946667pt;}
.y8a{bottom:260.960000pt;}
.y85{bottom:263.386667pt;}
.yb{bottom:264.613333pt;}
.y45{bottom:272.613333pt;}
.y54{bottom:278.146667pt;}
.y61{bottom:280.293333pt;}
.y2d{bottom:280.773333pt;}
.y71{bottom:282.053333pt;}
.y6a{bottom:282.746667pt;}
.y21{bottom:287.426667pt;}
.y3c{bottom:288.613333pt;}
.y7b{bottom:293.826667pt;}
.y4d{bottom:295.453333pt;}
.y84{bottom:296.826667pt;}
.y1c{bottom:298.813333pt;}
.y34{bottom:298.880000pt;}
.y60{bottom:304.293333pt;}
.y14{bottom:305.826667pt;}
.ya{bottom:305.893333pt;}
.y18{bottom:306.213333pt;}
.y44{bottom:311.173333pt;}
.y53{bottom:311.453333pt;}
.y2c{bottom:314.053333pt;}
.y70{bottom:318.053333pt;}
.y81{bottom:319.426667pt;}
.y3b{bottom:321.893333pt;}
.y1b{bottom:322.853333pt;}
.y69{bottom:324.066667pt;}
.y35{bottom:325.506667pt;}
.y17{bottom:330.213333pt;}
.y13{bottom:335.106667pt;}
.y8e{bottom:335.493333pt;}
.y5f{bottom:336.320000pt;}
.y20{bottom:340.706667pt;}
.y83{bottom:340.826667pt;}
.y4{bottom:342.533333pt;}
.y7a{bottom:343.266667pt;}
.y1e{bottom:343.546667pt;}
.y4c{bottom:344.733333pt;}
.y1a{bottom:346.853333pt;}
.y33{bottom:346.973333pt;}
.y9{bottom:347.173333pt;}
.y43{bottom:349.893333pt;}
.y6f{bottom:354.053333pt;}
.y3a{bottom:355.200000pt;}
.y2b{bottom:358.053333pt;}
.y5e{bottom:360.320000pt;}
.y1f{bottom:369.986667pt;}
.y68{bottom:373.506667pt;}
.y52{bottom:378.173333pt;}
.y4b{bottom:378.213333pt;}
.y5d{bottom:384.320000pt;}
.y82{bottom:384.866667pt;}
.y6e{bottom:387.520000pt;}
.y8{bottom:388.640000pt;}
.y3{bottom:389.253333pt;}
.y2a{bottom:391.520000pt;}
.y37{bottom:392.506667pt;}
.y5c{bottom:408.320000pt;}
.y39{bottom:435.746667pt;}
.y2{bottom:435.840000pt;}
.y11{bottom:435.906667pt;}
.y5b{bottom:440.320000pt;}
.y12{bottom:440.480000pt;}
.y59{bottom:498.306667pt;}
.h15{height:43.054688pt;}
.h10{height:47.218750pt;}
.h8{height:47.647188pt;}
.h16{height:53.187500pt;}
.h11{height:57.406250pt;}
.h4{height:59.023438pt;}
.h5{height:59.117875pt;}
.h1{height:61.998750pt;}
.ha{height:71.757812pt;}
.hb{height:71.872625pt;}
.hd{height:72.187500pt;}
.hc{height:72.283750pt;}
.he{height:76.350312pt;}
.hf{height:76.465125pt;}
.h6{height:86.109375pt;}
.h7{height:86.224187pt;}
.h13{height:95.868437pt;}
.h14{height:95.983250pt;}
.h12{height:110.220000pt;}
.h9{height:114.812500pt;}
.h3{height:133.756563pt;}
.h2{height:133.871375pt;}
.h0{height:540.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x32{left:9.599986pt;}
.x27{left:36.319986pt;}
.x25{left:37.759986pt;}
.x6{left:41.535986pt;}
.x21{left:42.431986pt;}
.x5{left:43.711986pt;}
.x35{left:45.311986pt;}
.x26{left:48.319986pt;}
.x28{left:49.599986pt;}
.x14{left:51.135986pt;}
.x19{left:60.415986pt;}
.x2c{left:62.111986pt;}
.x20{left:64.223986pt;}
.x15{left:70.015986pt;}
.x7{left:71.615986pt;}
.x22{left:72.543986pt;}
.xb{left:79.423986pt;}
.x2{left:83.231986pt;}
.x2d{left:89.855986pt;}
.x23{left:90.783986pt;}
.x3{left:113.951986pt;}
.x2e{left:125.855986pt;}
.x29{left:209.919986pt;}
.x13{left:236.133319pt;}
.x34{left:245.733319pt;}
.x1d{left:255.293319pt;}
.x2f{left:276.413319pt;}
.x4{left:299.426652pt;}
.x31{left:325.053319pt;}
.x36{left:335.613319pt;}
.xa{left:340.733319pt;}
.xe{left:348.959986pt;}
.x9{left:350.813319pt;}
.x30{left:367.293319pt;}
.x12{left:484.453319pt;}
.x16{left:486.586652pt;}
.x1f{left:499.933319pt;}
.x18{left:537.986652pt;}
.x1{left:545.533319pt;}
.x17{left:555.426652pt;}
.xc{left:592.026652pt;}
.xd{left:600.346652pt;}
.x2a{left:634.626652pt;}
.x2b{left:664.706652pt;}
.x11{left:734.559986pt;}
.xf{left:736.799986pt;}
.x10{left:759.199986pt;}
.x1a{left:809.573319pt;}
.x1b{left:811.226652pt;}
.x1c{left:855.933319pt;}
.x24{left:862.493319pt;}
.x8{left:869.853319pt;}
.x33{left:937.853319pt;}
.x1e{left:951.386652pt;}
}




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