
    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_6f8255d51739812a746ec695.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_103a86c79747f14d91ef99d5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962402;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_462b3de91db2b7c67f95ca3d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_9d9550734aa5d127fdc855c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.948242;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_268d81182a4112d50dfdbcab.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_9e0a89ea05621f59a5fe4267.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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);}
.v4{vertical-align:-20.160000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:11.340000px;}
.v1{vertical-align:21.600000px;}
.v3{vertical-align:25.200000px;}
.v5{vertical-align:30.960000px;}
.v2{vertical-align:92.880000px;}
.lsc{letter-spacing:-4.440000px;}
.ls5{letter-spacing:-0.828000px;}
.ls7{letter-spacing:-0.414600px;}
.lsd{letter-spacing:-0.378600px;}
.ls2{letter-spacing:-0.320400px;}
.ls11{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.262200px;}
.ls8{letter-spacing:-0.152400px;}
.lsb{letter-spacing:-0.117600px;}
.ls4{letter-spacing:-0.109200px;}
.ls10{letter-spacing:-0.042600px;}
.ls3{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.037440px;}
.lsa{letter-spacing:0.162000px;}
.ls0{letter-spacing:0.216000px;}
.ls1{letter-spacing:15.425280px;}
.ls9{letter-spacing:401.976000px;}
.lse{letter-spacing:405.366720px;}
.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;}
}
.ws13{word-spacing:-33.426720px;}
.ws16{word-spacing:-30.064032px;}
.wsc{word-spacing:-30.024000px;}
.wsf{word-spacing:-26.621280px;}
.ws15{word-spacing:-24.408000px;}
.wsd{word-spacing:-23.418720px;}
.ws9{word-spacing:-20.056032px;}
.ws8{word-spacing:-20.016000px;}
.ws3{word-spacing:-18.305520px;}
.ws6{word-spacing:-18.262320px;}
.ws5{word-spacing:-18.152520px;}
.ws4{word-spacing:-17.586720px;}
.ws1{word-spacing:-16.272000px;}
.ws2{word-spacing:-15.612480px;}
.wsb{word-spacing:-15.228000px;}
.wsa{word-spacing:-15.012000px;}
.ws7{word-spacing:0.000000px;}
.ws0{word-spacing:6.172560px;}
.ws14{word-spacing:42.768000px;}
.wse{word-spacing:55.390560px;}
.ws10{word-spacing:55.402560px;}
.ws11{word-spacing:55.582560px;}
.ws12{word-spacing:55.662552px;}
._10{margin-left:-14.486400px;}
._d{margin-left:-12.305664px;}
._14{margin-left:-11.088000px;}
._13{margin-left:-10.039200px;}
._4{margin-left:-8.074080px;}
._f{margin-left:-6.733440px;}
._7{margin-left:-5.590800px;}
._12{margin-left:-3.941520px;}
._1{margin-left:-2.376000px;}
._0{margin-left:-1.080000px;}
._2{width:1.152000px;}
._11{width:2.162160px;}
._8{width:3.278640px;}
._5{width:10.170720px;}
._6{width:15.347520px;}
._9{width:321.352320px;}
._c{width:401.935968px;}
._e{width:436.572000px;}
._a{width:1035.179280px;}
._b{width:1116.698160px;}
._3{width:1678.668000px;}
.fcc{color:rgb(120,142,254);}
.fcb{color:rgb(16,176,88);}
.fc9{color:rgb(5,127,152);}
.fc7{color:rgb(231,44,67);}
.fc8{color:rgb(255,0,0);}
.fc6{color:rgb(21,234,117);}
.fc5{color:rgb(65,217,249);}
.fc3{color:rgb(0,46,86);}
.fc2{color:transparent;}
.fca{color:rgb(255,255,255);}
.fc4{color:rgb(137,137,137);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(89,89,89);}
.fs7{font-size:43.920000px;}
.fs1{font-size:48.240000px;}
.fs10{font-size:54.000000px;}
.fs5{font-size:56.160000px;}
.fs8{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:72.144000px;}
.fs4{font-size:84.240000px;}
.fs6{font-size:84.384000px;}
.fsc{font-size:95.760000px;}
.fs12{font-size:95.904000px;}
.fsd{font-size:108.000000px;}
.fse{font-size:108.144000px;}
.fsa{font-size:120.240000px;}
.fs11{font-size:120.384000px;}
.fs9{font-size:167.760000px;}
.fsf{font-size:167.904000px;}
.fs2{font-size:192.240000px;}
.fs3{font-size:192.384000px;}
.fs13{font-size:216.144000px;}
.y0{bottom:0.000000px;}
.y38{bottom:9.036000px;}
.y52{bottom:13.392000px;}
.y82{bottom:13.500000px;}
.y12{bottom:13.680000px;}
.y35{bottom:14.472000px;}
.y33{bottom:20.124000px;}
.y37{bottom:25.236000px;}
.y51{bottom:29.772000px;}
.y2c{bottom:31.896000px;}
.y81{bottom:45.900000px;}
.y2e{bottom:47.628000px;}
.y2b{bottom:73.332000px;}
.y80{bottom:78.300000px;}
.y2d{bottom:89.064000px;}
.y5c{bottom:102.924000px;}
.y1c{bottom:104.472000px;}
.y2a{bottom:114.732000px;}
.y50{bottom:119.628000px;}
.y45{bottom:122.292000px;}
.y1e{bottom:129.744000px;}
.y1b{bottom:133.272000px;}
.y10{bottom:135.324000px;}
.y34{bottom:141.084000px;}
.y84{bottom:154.650000px;}
.y44{bottom:157.170000px;}
.yf{bottom:163.590000px;}
.y1a{bottom:172.725000px;}
.y88{bottom:179.430000px;}
.ye{bottom:189.690000px;}
.y5a{bottom:192.600000px;}
.y3d{bottom:195.300000px;}
.y29{bottom:195.810000px;}
.y83{bottom:196.050000px;}
.y68{bottom:198.900000px;}
.y26{bottom:199.950000px;}
.y19{bottom:206.925000px;}
.y59{bottom:208.950000px;}
.y87{bottom:209.310000px;}
.y1d{bottom:214.530000px;}
.y72{bottom:221.685000px;}
.yd{bottom:222.990000px;}
.y43{bottom:232.815000px;}
.y71{bottom:237.885000px;}
.y77{bottom:239.040000px;}
.y67{bottom:239.760000px;}
.y4f{bottom:243.390000px;}
.y86{bottom:269.430000px;}
.y17{bottom:276.150000px;}
.y24{bottom:285.480000px;}
.yc{bottom:291.525000px;}
.y16{bottom:292.500000px;}
.y85{bottom:299.340000px;}
.y23{bottom:301.830000px;}
.y58{bottom:305.850000px;}
.y42{bottom:308.415000px;}
.y4b{bottom:312.555000px;}
.y53{bottom:319.710000px;}
.yb{bottom:324.105000px;}
.y4a{bottom:346.755000px;}
.y6f{bottom:346.785000px;}
.ya{bottom:356.865000px;}
.y3e{bottom:362.490000px;}
.y66{bottom:362.550000px;}
.y41{bottom:384.045000px;}
.y65{bottom:388.470000px;}
.y9{bottom:389.490000px;}
.y15{bottom:390.165000px;}
.y57{bottom:396.795000px;}
.y22{bottom:398.730000px;}
.y6e{bottom:413.565000px;}
.y49{bottom:415.980000px;}
.y8{bottom:422.070000px;}
.y48{bottom:432.360000px;}
.y27{bottom:442.875000px;}
.y64{bottom:447.225000px;}
.y40{bottom:449.745000px;}
.y6d{bottom:454.605000px;}
.y5b{bottom:465.765000px;}
.y7{bottom:466.410000px;}
.y6c{bottom:480.525000px;}
.y21{bottom:489.630000px;}
.y7f{bottom:491.325000px;}
.y3f{bottom:492.945000px;}
.y14{bottom:506.160000px;}
.y6{bottom:518.295000px;}
.y3c{bottom:525.345000px;}
.y7e{bottom:529.125000px;}
.y6b{bottom:547.350000px;}
.y76{bottom:547.590000px;}
.y3b{bottom:557.790000px;}
.y7d{bottom:557.970000px;}
.y25{bottom:558.645000px;}
.y47{bottom:561.060000px;}
.y61{bottom:565.845000px;}
.y5{bottom:570.135000px;}
.y6a{bottom:573.270000px;}
.y31{bottom:578.490000px;}
.y75{bottom:579.990000px;}
.y60{bottom:591.045000px;}
.y7c{bottom:595.770000px;}
.y4{bottom:598.755000px;}
.y5d{bottom:610.125000px;}
.y74{bottom:612.390000px;}
.y5f{bottom:616.245000px;}
.y30{bottom:619.890000px;}
.y7b{bottom:624.570000px;}
.y18{bottom:628.560000px;}
.y69{bottom:640.050000px;}
.y5e{bottom:641.445000px;}
.y13{bottom:644.550000px;}
.y46{bottom:645.990000px;}
.y62{bottom:646.920000px;}
.y7a{bottom:662.370000px;}
.y3a{bottom:667.005000px;}
.y36{bottom:667.410000px;}
.y73{bottom:676.905000px;}
.y79{bottom:691.170000px;}
.y11{bottom:693.075000px;}
.y70{bottom:698.655000px;}
.y20{bottom:698.730000px;}
.y4e{bottom:709.455000px;}
.y56{bottom:711.285000px;}
.y28{bottom:716.940000px;}
.y78{bottom:719.970000px;}
.y3{bottom:720.870000px;}
.y39{bottom:728.430000px;}
.y1f{bottom:734.865000px;}
.y2{bottom:742.470000px;}
.y63{bottom:745.590000px;}
.y55{bottom:750.885000px;}
.y2f{bottom:754.890000px;}
.y4d{bottom:755.355000px;}
.y4c{bottom:756.105000px;}
.y54{bottom:757.080000px;}
.y32{bottom:758.055000px;}
.y1{bottom:764.070000px;}
.h6{height:32.403867px;}
.h14{height:39.471680px;}
.h15{height:39.840820px;}
.h7{height:48.871406px;}
.hb{height:52.628906px;}
.hc{height:52.734164px;}
.hd{height:61.575820px;}
.h13{height:63.344531px;}
.h9{height:63.452813px;}
.h5{height:66.250547px;}
.he{height:69.996445px;}
.h18{height:70.101703px;}
.h1{height:71.613281px;}
.hf{height:78.943359px;}
.h11{height:79.048617px;}
.ha{height:87.890273px;}
.h17{height:87.995531px;}
.h10{height:103.981078px;}
.h1a{height:107.419922px;}
.h8{height:126.147656px;}
.h12{height:126.255938px;}
.h3{height:144.555469px;}
.h4{height:144.663750px;}
.h19{height:157.991977px;}
.h2{height:237.435469px;}
.h16{height:614.700000px;}
.h0{height:810.000000px;}
.w2{width:208.620000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x36{left:10.799979px;}
.x1a{left:26.639979px;}
.x3a{left:31.427979px;}
.x21{left:34.019979px;}
.x43{left:56.195979px;}
.x4a{left:63.647979px;}
.x56{left:65.483979px;}
.x19{left:72.179979px;}
.x54{left:89.135979px;}
.x53{left:97.055979px;}
.x15{left:99.251979px;}
.x42{left:101.771979px;}
.x48{left:103.247979px;}
.x46{left:113.939979px;}
.x3c{left:116.423979px;}
.x1d{left:118.331979px;}
.x3e{left:121.823979px;}
.x26{left:126.287979px;}
.xa{left:132.839979px;}
.x1e{left:137.195979px;}
.x4{left:144.287979px;}
.x1b{left:148.391979px;}
.x12{left:151.019979px;}
.x22{left:154.694979px;}
.x2e{left:163.949979px;}
.x44{left:166.754979px;}
.x28{left:175.289979px;}
.x27{left:180.689979px;}
.x2b{left:186.225000px;}
.x1f{left:201.959979px;}
.x25{left:249.089979px;}
.x18{left:259.409979px;}
.x41{left:288.974979px;}
.x16{left:300.344979px;}
.x17{left:306.389979px;}
.x3f{left:329.909979px;}
.x40{left:335.954979px;}
.x2a{left:341.640000px;}
.x29{left:364.034979px;}
.x49{left:368.969979px;}
.x2d{left:374.114979px;}
.x23{left:393.659979px;}
.x2c{left:418.964979px;}
.x47{left:448.019979px;}
.x14{left:474.989979px;}
.x57{left:506.189979px;}
.x1{left:518.729979px;}
.x45{left:523.979979px;}
.x2f{left:562.964979px;}
.x9{left:567.179979px;}
.x2{left:636.269979px;}
.x8{left:641.054979px;}
.x7{left:649.004979px;}
.x3{left:668.699979px;}
.x35{left:675.899979px;}
.x32{left:693.389979px;}
.x5{left:697.064979px;}
.x34{left:716.909979px;}
.x6{left:730.184979px;}
.x33{left:786.779979px;}
.x4b{left:815.609979px;}
.x4c{left:820.289979px;}
.x4f{left:831.809979px;}
.x13{left:841.169979px;}
.x4e{left:844.949979px;}
.x51{left:861.374979px;}
.x52{left:869.114979px;}
.x30{left:898.124979px;}
.x4d{left:908.174979px;}
.x58{left:960.689979px;}
.x24{left:964.874979px;}
.x50{left:972.149979px;}
.x55{left:976.649979px;}
.x31{left:998.924979px;}
.x38{left:1036.874979px;}
.xe{left:1049.969979px;}
.x11{left:1073.489979px;}
.xf{left:1081.229979px;}
.x39{left:1128.344979px;}
.x20{left:1135.289979px;}
.x10{left:1143.359979px;}
.x1c{left:1202.864979px;}
.x37{left:1241.609979px;}
.xc{left:1254.704979px;}
.xd{left:1278.149979px;}
.x3b{left:1405.799979px;}
.x3d{left:1406.879979px;}
.xb{left:1417.499979px;}
@media print{
.v4{vertical-align:-17.920000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:10.080000pt;}
.v1{vertical-align:19.200000pt;}
.v3{vertical-align:22.400000pt;}
.v5{vertical-align:27.520000pt;}
.v2{vertical-align:82.560000pt;}
.lsc{letter-spacing:-3.946667pt;}
.ls5{letter-spacing:-0.736000pt;}
.ls7{letter-spacing:-0.368533pt;}
.lsd{letter-spacing:-0.336533pt;}
.ls2{letter-spacing:-0.284800pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.233067pt;}
.ls8{letter-spacing:-0.135467pt;}
.lsb{letter-spacing:-0.104533pt;}
.ls4{letter-spacing:-0.097067pt;}
.ls10{letter-spacing:-0.037867pt;}
.ls3{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.033280pt;}
.lsa{letter-spacing:0.144000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls1{letter-spacing:13.711360pt;}
.ls9{letter-spacing:357.312000pt;}
.lse{letter-spacing:360.325973pt;}
.ws13{word-spacing:-29.712640pt;}
.ws16{word-spacing:-26.723584pt;}
.wsc{word-spacing:-26.688000pt;}
.wsf{word-spacing:-23.663360pt;}
.ws15{word-spacing:-21.696000pt;}
.wsd{word-spacing:-20.816640pt;}
.ws9{word-spacing:-17.827584pt;}
.ws8{word-spacing:-17.792000pt;}
.ws3{word-spacing:-16.271573pt;}
.ws6{word-spacing:-16.233173pt;}
.ws5{word-spacing:-16.135573pt;}
.ws4{word-spacing:-15.632640pt;}
.ws1{word-spacing:-14.464000pt;}
.ws2{word-spacing:-13.877760pt;}
.wsb{word-spacing:-13.536000pt;}
.wsa{word-spacing:-13.344000pt;}
.ws7{word-spacing:0.000000pt;}
.ws0{word-spacing:5.486720pt;}
.ws14{word-spacing:38.016000pt;}
.wse{word-spacing:49.236053pt;}
.ws10{word-spacing:49.246720pt;}
.ws11{word-spacing:49.406720pt;}
.ws12{word-spacing:49.477824pt;}
._10{margin-left:-12.876800pt;}
._d{margin-left:-10.938368pt;}
._14{margin-left:-9.856000pt;}
._13{margin-left:-8.923733pt;}
._4{margin-left:-7.176960pt;}
._f{margin-left:-5.985280pt;}
._7{margin-left:-4.969600pt;}
._12{margin-left:-3.503573pt;}
._1{margin-left:-2.112000pt;}
._0{margin-left:-0.960000pt;}
._2{width:1.024000pt;}
._11{width:1.921920pt;}
._8{width:2.914347pt;}
._5{width:9.040640pt;}
._6{width:13.642240pt;}
._9{width:285.646507pt;}
._c{width:357.276416pt;}
._e{width:388.064000pt;}
._a{width:920.159360pt;}
._b{width:992.620587pt;}
._3{width:1492.149333pt;}
.fs7{font-size:39.040000pt;}
.fs1{font-size:42.880000pt;}
.fs10{font-size:48.000000pt;}
.fs5{font-size:49.920000pt;}
.fs8{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:64.128000pt;}
.fs4{font-size:74.880000pt;}
.fs6{font-size:75.008000pt;}
.fsc{font-size:85.120000pt;}
.fs12{font-size:85.248000pt;}
.fsd{font-size:96.000000pt;}
.fse{font-size:96.128000pt;}
.fsa{font-size:106.880000pt;}
.fs11{font-size:107.008000pt;}
.fs9{font-size:149.120000pt;}
.fsf{font-size:149.248000pt;}
.fs2{font-size:170.880000pt;}
.fs3{font-size:171.008000pt;}
.fs13{font-size:192.128000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:8.032000pt;}
.y52{bottom:11.904000pt;}
.y82{bottom:12.000000pt;}
.y12{bottom:12.160000pt;}
.y35{bottom:12.864000pt;}
.y33{bottom:17.888000pt;}
.y37{bottom:22.432000pt;}
.y51{bottom:26.464000pt;}
.y2c{bottom:28.352000pt;}
.y81{bottom:40.800000pt;}
.y2e{bottom:42.336000pt;}
.y2b{bottom:65.184000pt;}
.y80{bottom:69.600000pt;}
.y2d{bottom:79.168000pt;}
.y5c{bottom:91.488000pt;}
.y1c{bottom:92.864000pt;}
.y2a{bottom:101.984000pt;}
.y50{bottom:106.336000pt;}
.y45{bottom:108.704000pt;}
.y1e{bottom:115.328000pt;}
.y1b{bottom:118.464000pt;}
.y10{bottom:120.288000pt;}
.y34{bottom:125.408000pt;}
.y84{bottom:137.466667pt;}
.y44{bottom:139.706667pt;}
.yf{bottom:145.413333pt;}
.y1a{bottom:153.533333pt;}
.y88{bottom:159.493333pt;}
.ye{bottom:168.613333pt;}
.y5a{bottom:171.200000pt;}
.y3d{bottom:173.600000pt;}
.y29{bottom:174.053333pt;}
.y83{bottom:174.266667pt;}
.y68{bottom:176.800000pt;}
.y26{bottom:177.733333pt;}
.y19{bottom:183.933333pt;}
.y59{bottom:185.733333pt;}
.y87{bottom:186.053333pt;}
.y1d{bottom:190.693333pt;}
.y72{bottom:197.053333pt;}
.yd{bottom:198.213333pt;}
.y43{bottom:206.946667pt;}
.y71{bottom:211.453333pt;}
.y77{bottom:212.480000pt;}
.y67{bottom:213.120000pt;}
.y4f{bottom:216.346667pt;}
.y86{bottom:239.493333pt;}
.y17{bottom:245.466667pt;}
.y24{bottom:253.760000pt;}
.yc{bottom:259.133333pt;}
.y16{bottom:260.000000pt;}
.y85{bottom:266.080000pt;}
.y23{bottom:268.293333pt;}
.y58{bottom:271.866667pt;}
.y42{bottom:274.146667pt;}
.y4b{bottom:277.826667pt;}
.y53{bottom:284.186667pt;}
.yb{bottom:288.093333pt;}
.y4a{bottom:308.226667pt;}
.y6f{bottom:308.253333pt;}
.ya{bottom:317.213333pt;}
.y3e{bottom:322.213333pt;}
.y66{bottom:322.266667pt;}
.y41{bottom:341.373333pt;}
.y65{bottom:345.306667pt;}
.y9{bottom:346.213333pt;}
.y15{bottom:346.813333pt;}
.y57{bottom:352.706667pt;}
.y22{bottom:354.426667pt;}
.y6e{bottom:367.613333pt;}
.y49{bottom:369.760000pt;}
.y8{bottom:375.173333pt;}
.y48{bottom:384.320000pt;}
.y27{bottom:393.666667pt;}
.y64{bottom:397.533333pt;}
.y40{bottom:399.773333pt;}
.y6d{bottom:404.093333pt;}
.y5b{bottom:414.013333pt;}
.y7{bottom:414.586667pt;}
.y6c{bottom:427.133333pt;}
.y21{bottom:435.226667pt;}
.y7f{bottom:436.733333pt;}
.y3f{bottom:438.173333pt;}
.y14{bottom:449.920000pt;}
.y6{bottom:460.706667pt;}
.y3c{bottom:466.973333pt;}
.y7e{bottom:470.333333pt;}
.y6b{bottom:486.533333pt;}
.y76{bottom:486.746667pt;}
.y3b{bottom:495.813333pt;}
.y7d{bottom:495.973333pt;}
.y25{bottom:496.573333pt;}
.y47{bottom:498.720000pt;}
.y61{bottom:502.973333pt;}
.y5{bottom:506.786667pt;}
.y6a{bottom:509.573333pt;}
.y31{bottom:514.213333pt;}
.y75{bottom:515.546667pt;}
.y60{bottom:525.373333pt;}
.y7c{bottom:529.573333pt;}
.y4{bottom:532.226667pt;}
.y5d{bottom:542.333333pt;}
.y74{bottom:544.346667pt;}
.y5f{bottom:547.773333pt;}
.y30{bottom:551.013333pt;}
.y7b{bottom:555.173333pt;}
.y18{bottom:558.720000pt;}
.y69{bottom:568.933333pt;}
.y5e{bottom:570.173333pt;}
.y13{bottom:572.933333pt;}
.y46{bottom:574.213333pt;}
.y62{bottom:575.040000pt;}
.y7a{bottom:588.773333pt;}
.y3a{bottom:592.893333pt;}
.y36{bottom:593.253333pt;}
.y73{bottom:601.693333pt;}
.y79{bottom:614.373333pt;}
.y11{bottom:616.066667pt;}
.y70{bottom:621.026667pt;}
.y20{bottom:621.093333pt;}
.y4e{bottom:630.626667pt;}
.y56{bottom:632.253333pt;}
.y28{bottom:637.280000pt;}
.y78{bottom:639.973333pt;}
.y3{bottom:640.773333pt;}
.y39{bottom:647.493333pt;}
.y1f{bottom:653.213333pt;}
.y2{bottom:659.973333pt;}
.y63{bottom:662.746667pt;}
.y55{bottom:667.453333pt;}
.y2f{bottom:671.013333pt;}
.y4d{bottom:671.426667pt;}
.y4c{bottom:672.093333pt;}
.y54{bottom:672.960000pt;}
.y32{bottom:673.826667pt;}
.y1{bottom:679.173333pt;}
.h6{height:28.803437pt;}
.h14{height:35.085938pt;}
.h15{height:35.414062pt;}
.h7{height:43.441250pt;}
.hb{height:46.781250pt;}
.hc{height:46.874812pt;}
.hd{height:54.734062pt;}
.h13{height:56.306250pt;}
.h9{height:56.402500pt;}
.h5{height:58.889375pt;}
.he{height:62.219062pt;}
.h18{height:62.312625pt;}
.h1{height:63.656250pt;}
.hf{height:70.171875pt;}
.h11{height:70.265437pt;}
.ha{height:78.124687pt;}
.h17{height:78.218250pt;}
.h10{height:92.427625pt;}
.h1a{height:95.484375pt;}
.h8{height:112.131250pt;}
.h12{height:112.227500pt;}
.h3{height:128.493750pt;}
.h4{height:128.590000pt;}
.h19{height:140.437313pt;}
.h2{height:211.053750pt;}
.h16{height:546.400000pt;}
.h0{height:720.000000pt;}
.w2{width:185.440000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x36{left:9.599981pt;}
.x1a{left:23.679981pt;}
.x3a{left:27.935981pt;}
.x21{left:30.239981pt;}
.x43{left:49.951981pt;}
.x4a{left:56.575981pt;}
.x56{left:58.207981pt;}
.x19{left:64.159981pt;}
.x54{left:79.231981pt;}
.x53{left:86.271981pt;}
.x15{left:88.223981pt;}
.x42{left:90.463981pt;}
.x48{left:91.775981pt;}
.x46{left:101.279981pt;}
.x3c{left:103.487981pt;}
.x1d{left:105.183981pt;}
.x3e{left:108.287981pt;}
.x26{left:112.255981pt;}
.xa{left:118.079981pt;}
.x1e{left:121.951981pt;}
.x4{left:128.255981pt;}
.x1b{left:131.903981pt;}
.x12{left:134.239981pt;}
.x22{left:137.506648pt;}
.x2e{left:145.733314pt;}
.x44{left:148.226648pt;}
.x28{left:155.813314pt;}
.x27{left:160.613314pt;}
.x2b{left:165.533333pt;}
.x1f{left:179.519981pt;}
.x25{left:221.413314pt;}
.x18{left:230.586648pt;}
.x41{left:256.866648pt;}
.x16{left:266.973314pt;}
.x17{left:272.346648pt;}
.x3f{left:293.253314pt;}
.x40{left:298.626648pt;}
.x2a{left:303.680000pt;}
.x29{left:323.586648pt;}
.x49{left:327.973314pt;}
.x2d{left:332.546648pt;}
.x23{left:349.919981pt;}
.x2c{left:372.413314pt;}
.x47{left:398.239981pt;}
.x14{left:422.213314pt;}
.x57{left:449.946648pt;}
.x1{left:461.093314pt;}
.x45{left:465.759981pt;}
.x2f{left:500.413314pt;}
.x9{left:504.159981pt;}
.x2{left:565.573314pt;}
.x8{left:569.826648pt;}
.x7{left:576.893314pt;}
.x3{left:594.399981pt;}
.x35{left:600.799981pt;}
.x32{left:616.346648pt;}
.x5{left:619.613314pt;}
.x34{left:637.253314pt;}
.x6{left:649.053314pt;}
.x33{left:699.359981pt;}
.x4b{left:724.986648pt;}
.x4c{left:729.146648pt;}
.x4f{left:739.386648pt;}
.x13{left:747.706648pt;}
.x4e{left:751.066648pt;}
.x51{left:765.666648pt;}
.x52{left:772.546648pt;}
.x30{left:798.333314pt;}
.x4d{left:807.266648pt;}
.x58{left:853.946648pt;}
.x24{left:857.666648pt;}
.x50{left:864.133314pt;}
.x55{left:868.133314pt;}
.x31{left:887.933314pt;}
.x38{left:921.666648pt;}
.xe{left:933.306648pt;}
.x11{left:954.213314pt;}
.xf{left:961.093314pt;}
.x39{left:1002.973314pt;}
.x20{left:1009.146648pt;}
.x10{left:1016.319981pt;}
.x1c{left:1069.213314pt;}
.x37{left:1103.653314pt;}
.xc{left:1115.293314pt;}
.xd{left:1136.133314pt;}
.x3b{left:1249.599981pt;}
.x3d{left:1250.559981pt;}
.xb{left:1259.999981pt;}
}




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