
    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_6ee3edf6b4d754f147236040.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;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_489953585e5a58305ac01ca9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.024902;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_431acab1e64e0d0e08414783.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.024902;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_51cd627d96354841383a366c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_4fd8e8f65ad73a9fde2caa85.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.024902;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_05740a770cf536c2e0be45b2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_0df9eb9873cf3b8468817fb3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.024902;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_765b2ad23007b65620b6c1b4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.057617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.271800px;}
.ls3{letter-spacing:-0.193200px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.124200px;}
.ls1{letter-spacing:0.287280px;}
.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;}
}
.wsa{word-spacing:-60.171120px;}
.wsb{word-spacing:-52.553952px;}
.wsc{word-spacing:-52.508880px;}
.ws1{word-spacing:-45.072000px;}
.ws10{word-spacing:-41.240880px;}
.ws9{word-spacing:-37.680192px;}
.ws8{word-spacing:-37.635120px;}
.ws2{word-spacing:-35.606880px;}
.wse{word-spacing:-27.000000px;}
.wsd{word-spacing:-0.388080px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:0.917040px;}
.ws7{word-spacing:1.388640px;}
.ws6{word-spacing:1.513920px;}
.ws3{word-spacing:1.535520px;}
.ws4{word-spacing:1.713360px;}
.wsf{word-spacing:89.834952px;}
.ws11{word-spacing:111.750480px;}
.ws12{word-spacing:111.818952px;}
._9{margin-left:-12.271680px;}
._3{margin-left:-8.640000px;}
._8{margin-left:-7.171200px;}
._2{margin-left:-5.361120px;}
._4{margin-left:-3.427200px;}
._0{margin-left:-1.585440px;}
._1{width:1.056960px;}
._7{width:2.161440px;}
._5{width:3.346560px;}
._6{width:4.550400px;}
.fc2{color:rgb(255,255,204);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,153);}
.fsb{font-size:95.760000px;}
.fs13{font-size:99.360000px;}
.fs5{font-size:108.000000px;}
.fsc{font-size:113.760000px;}
.fs16{font-size:113.904000px;}
.fsd{font-size:120.240000px;}
.fse{font-size:120.384000px;}
.fs15{font-size:131.760000px;}
.fs14{font-size:131.904000px;}
.fs9{font-size:138.240000px;}
.fsa{font-size:138.384000px;}
.fs7{font-size:144.000000px;}
.fs8{font-size:144.144000px;}
.fs3{font-size:156.240000px;}
.fs4{font-size:156.384000px;}
.fsf{font-size:167.760000px;}
.fs11{font-size:167.904000px;}
.fs2{font-size:192.240000px;}
.fs12{font-size:192.384000px;}
.fs6{font-size:216.000000px;}
.fs10{font-size:239.760000px;}
.fs0{font-size:264.240000px;}
.fs1{font-size:264.384000px;}
.y0{bottom:0.000000px;}
.y33{bottom:10.908000px;}
.y43{bottom:30.744000px;}
.y32{bottom:62.748000px;}
.y24{bottom:70.416000px;}
.y42{bottom:72.180000px;}
.yb7{bottom:73.728000px;}
.y6{bottom:78.480000px;}
.y15{bottom:82.152000px;}
.y5f{bottom:98.316000px;}
.y23{bottom:102.816000px;}
.yba{bottom:106.488000px;}
.yb6{bottom:107.928000px;}
.y31{bottom:114.624000px;}
.y41{bottom:121.860000px;}
.y7e{bottom:131.868000px;}
.y5e{bottom:134.316000px;}
.y22{bottom:135.216000px;}
.y14{bottom:138.312000px;}
.y21{bottom:140.400000px;}
.yb5{bottom:142.128000px;}
.y5{bottom:147.636000px;}
.y40{bottom:163.260000px;}
.y30{bottom:166.470000px;}
.y7d{bottom:167.865000px;}
.y5d{bottom:170.355000px;}
.y8e{bottom:175.755000px;}
.yb4{bottom:176.325000px;}
.y71{bottom:176.730000px;}
.y85{bottom:181.725000px;}
.y20{bottom:182.520000px;}
.ya8{bottom:191.625000px;}
.y13{bottom:194.505000px;}
.y5c{bottom:206.355000px;}
.y7c{bottom:211.065000px;}
.y3f{bottom:212.970000px;}
.y9d{bottom:215.310000px;}
.y4{bottom:216.750000px;}
.yb3{bottom:217.410000px;}
.y2f{bottom:218.310000px;}
.y70{bottom:219.930000px;}
.y50{bottom:222.195000px;}
.ya3{bottom:222.690000px;}
.y8d{bottom:226.155000px;}
.y1f{bottom:234.030000px;}
.y5b{bottom:242.355000px;}
.y7b{bottom:247.065000px;}
.y12{bottom:250.665000px;}
.y84{bottom:250.845000px;}
.yb2{bottom:251.610000px;}
.y3e{bottom:254.370000px;}
.y4f{bottom:263.235000px;}
.y2e{bottom:270.180000px;}
.y6f{bottom:271.800000px;}
.y8c{bottom:276.555000px;}
.y1e{bottom:285.510000px;}
.y5a{bottom:285.555000px;}
.yb1{bottom:285.810000px;}
.ya7{bottom:286.710000px;}
.y7a{bottom:290.310000px;}
.y3d{bottom:295.770000px;}
.y11{bottom:297.465000px;}
.y4e{bottom:304.275000px;}
.y6e{bottom:315.000000px;}
.y83{bottom:320.010000px;}
.ya2{bottom:321.555000px;}
.y2d{bottom:322.020000px;}
.y79{bottom:326.310000px;}
.y59{bottom:328.785000px;}
.y1d{bottom:336.990000px;}
.y8b{bottom:337.065000px;}
.y65{bottom:342.435000px;}
.y10{bottom:344.310000px;}
.y4d{bottom:345.345000px;}
.y3c{bottom:345.450000px;}
.y3{bottom:351.075000px;}
.yb0{bottom:354.240000px;}
.y58{bottom:364.785000px;}
.y6d{bottom:366.840000px;}
.y78{bottom:369.510000px;}
.y2c{bottom:373.860000px;}
.y1c{bottom:379.110000px;}
.ya1{bottom:379.155000px;}
.ya6{bottom:381.750000px;}
.y4c{bottom:386.385000px;}
.y3b{bottom:386.895000px;}
.y8a{bottom:387.465000px;}
.y82{bottom:389.130000px;}
.yaf{bottom:395.280000px;}
.yf{bottom:400.470000px;}
.y57{bottom:400.785000px;}
.y8{bottom:408.675000px;}
.y6c{bottom:410.070000px;}
.y77{bottom:412.710000px;}
.y64{bottom:414.435000px;}
.y44{bottom:416.055000px;}
.y2b{bottom:417.090000px;}
.y1b{bottom:421.275000px;}
.ya5{bottom:421.350000px;}
.y94{bottom:424.410000px;}
.y4b{bottom:427.425000px;}
.y3a{bottom:428.295000px;}
.yae{bottom:429.480000px;}
.y2{bottom:430.305000px;}
.y9a{bottom:435.810000px;}
.ya0{bottom:436.785000px;}
.y9c{bottom:440.310000px;}
.y56{bottom:443.985000px;}
.ye{bottom:447.270000px;}
.y89{bottom:447.945000px;}
.y76{bottom:448.740000px;}
.y81{bottom:458.280000px;}
.y6b{bottom:461.910000px;}
.y1a{bottom:463.395000px;}
.yad{bottom:463.680000px;}
.y99{bottom:465.555000px;}
.y4a{bottom:468.465000px;}
.y2a{bottom:468.930000px;}
.y39{bottom:469.695000px;}
.y93{bottom:469.770000px;}
.y9b{bottom:472.710000px;}
.y55{bottom:480.030000px;}
.y63{bottom:486.465000px;}
.y7{bottom:487.905000px;}
.y75{bottom:491.940000px;}
.y9f{bottom:494.385000px;}
.y98{bottom:495.255000px;}
.yac{bottom:497.910000px;}
.yd{bottom:503.460000px;}
.y6a{bottom:505.110000px;}
.y96{bottom:507.600000px;}
.y88{bottom:508.470000px;}
.y1{bottom:509.505000px;}
.y49{bottom:509.550000px;}
.y38{bottom:511.095000px;}
.y29{bottom:512.130000px;}
.y19{bottom:514.875000px;}
.y54{bottom:516.030000px;}
.y92{bottom:525.210000px;}
.y80{bottom:527.400000px;}
.y74{bottom:535.140000px;}
.yab{bottom:538.950000px;}
.y69{bottom:548.310000px;}
.yc{bottom:550.260000px;}
.y48{bottom:550.590000px;}
.y95{bottom:550.800000px;}
.y9e{bottom:551.985000px;}
.y18{bottom:557.025000px;}
.y62{bottom:558.465000px;}
.y87{bottom:558.870000px;}
.y53{bottom:559.230000px;}
.y37{bottom:560.805000px;}
.y28{bottom:564.015000px;}
.y91{bottom:570.600000px;}
.yaa{bottom:573.150000px;}
.y73{bottom:578.340000px;}
.y68{bottom:591.555000px;}
.y47{bottom:591.630000px;}
.y52{bottom:595.230000px;}
.y7f{bottom:596.520000px;}
.yb{bottom:597.060000px;}
.y36{bottom:602.205000px;}
.ya9{bottom:607.350000px;}
.y17{bottom:608.505000px;}
.ya4{bottom:611.490000px;}
.yb9{bottom:612.105000px;}
.y72{bottom:614.370000px;}
.y27{bottom:615.855000px;}
.y90{bottom:615.960000px;}
.y86{bottom:619.350000px;}
.y51{bottom:631.230000px;}
.y46{bottom:632.670000px;}
.y35{bottom:643.605000px;}
.yb8{bottom:648.105000px;}
.y26{bottom:659.055000px;}
.ya{bottom:670.710000px;}
.y97{bottom:671.655000px;}
.y67{bottom:697.350000px;}
.y8f{bottom:709.920000px;}
.y45{bottom:714.135000px;}
.y34{bottom:718.350000px;}
.y25{bottom:722.670000px;}
.y16{bottom:724.035000px;}
.y60{bottom:724.830000px;}
.y9{bottom:728.310000px;}
.y61{bottom:730.335000px;}
.y66{bottom:736.845000px;}
.hf{height:93.096562px;}
.h1e{height:93.214406px;}
.he{height:93.983203px;}
.h10{height:98.399531px;}
.h11{height:98.517375px;}
.h18{height:100.136250px;}
.h1d{height:107.827031px;}
.h1c{height:107.944875px;}
.h8{height:108.843750px;}
.hc{height:113.130000px;}
.hd{height:113.247844px;}
.ha{height:117.843750px;}
.hb{height:117.961594px;}
.h19{height:121.324500px;}
.h5{height:127.860469px;}
.h7{height:127.978313px;}
.h16{height:137.287969px;}
.h17{height:137.405812px;}
.h6{height:153.264727px;}
.h3{height:157.321406px;}
.h15{height:157.439250px;}
.h1b{height:161.827031px;}
.h12{height:164.565352px;}
.h14{height:164.706609px;}
.h1f{height:169.070625px;}
.h4{height:188.579180px;}
.h1a{height:188.720438px;}
.h9{height:211.886719px;}
.h13{height:235.194258px;}
.h1{height:259.208086px;}
.h2{height:259.349344px;}
.h0{height:810.000000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x5{left:51.191984px;}
.xd{left:55.799984px;}
.x6{left:67.823984px;}
.x20{left:78.299984px;}
.x13{left:82.079984px;}
.xa{left:85.067984px;}
.x1c{left:91.799984px;}
.x14{left:93.491984px;}
.x8{left:118.835984px;}
.xf{left:120.383984px;}
.xe{left:127.259984px;}
.x7{left:128.951984px;}
.x4{left:135.575984px;}
.x3{left:137.267984px;}
.xc{left:145.835984px;}
.x1d{left:152.669984px;}
.x9{left:154.259984px;}
.x16{left:162.719984px;}
.x15{left:171.149984px;}
.x12{left:172.829984px;}
.x10{left:175.064984px;}
.x18{left:191.774984px;}
.x11{left:196.454984px;}
.x2{left:213.329984px;}
.x1b{left:221.759984px;}
.x1{left:226.829984px;}
.x17{left:255.524984px;}
.xb{left:290.414984px;}
.x1a{left:443.699984px;}
.x1e{left:559.334984px;}
.x1f{left:620.174984px;}
.x19{left:637.814984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.241600pt;}
.ls3{letter-spacing:-0.171733pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.110400pt;}
.ls1{letter-spacing:0.255360pt;}
.wsa{word-spacing:-53.485440pt;}
.wsb{word-spacing:-46.714624pt;}
.wsc{word-spacing:-46.674560pt;}
.ws1{word-spacing:-40.064000pt;}
.ws10{word-spacing:-36.658560pt;}
.ws9{word-spacing:-33.493504pt;}
.ws8{word-spacing:-33.453440pt;}
.ws2{word-spacing:-31.650560pt;}
.wse{word-spacing:-24.000000pt;}
.wsd{word-spacing:-0.344960pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:0.815147pt;}
.ws7{word-spacing:1.234347pt;}
.ws6{word-spacing:1.345707pt;}
.ws3{word-spacing:1.364907pt;}
.ws4{word-spacing:1.522987pt;}
.wsf{word-spacing:79.853291pt;}
.ws11{word-spacing:99.333760pt;}
.ws12{word-spacing:99.394624pt;}
._9{margin-left:-10.908160pt;}
._3{margin-left:-7.680000pt;}
._8{margin-left:-6.374400pt;}
._2{margin-left:-4.765440pt;}
._4{margin-left:-3.046400pt;}
._0{margin-left:-1.409280pt;}
._1{width:0.939520pt;}
._7{width:1.921280pt;}
._5{width:2.974720pt;}
._6{width:4.044800pt;}
.fsb{font-size:85.120000pt;}
.fs13{font-size:88.320000pt;}
.fs5{font-size:96.000000pt;}
.fsc{font-size:101.120000pt;}
.fs16{font-size:101.248000pt;}
.fsd{font-size:106.880000pt;}
.fse{font-size:107.008000pt;}
.fs15{font-size:117.120000pt;}
.fs14{font-size:117.248000pt;}
.fs9{font-size:122.880000pt;}
.fsa{font-size:123.008000pt;}
.fs7{font-size:128.000000pt;}
.fs8{font-size:128.128000pt;}
.fs3{font-size:138.880000pt;}
.fs4{font-size:139.008000pt;}
.fsf{font-size:149.120000pt;}
.fs11{font-size:149.248000pt;}
.fs2{font-size:170.880000pt;}
.fs12{font-size:171.008000pt;}
.fs6{font-size:192.000000pt;}
.fs10{font-size:213.120000pt;}
.fs0{font-size:234.880000pt;}
.fs1{font-size:235.008000pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:9.696000pt;}
.y43{bottom:27.328000pt;}
.y32{bottom:55.776000pt;}
.y24{bottom:62.592000pt;}
.y42{bottom:64.160000pt;}
.yb7{bottom:65.536000pt;}
.y6{bottom:69.760000pt;}
.y15{bottom:73.024000pt;}
.y5f{bottom:87.392000pt;}
.y23{bottom:91.392000pt;}
.yba{bottom:94.656000pt;}
.yb6{bottom:95.936000pt;}
.y31{bottom:101.888000pt;}
.y41{bottom:108.320000pt;}
.y7e{bottom:117.216000pt;}
.y5e{bottom:119.392000pt;}
.y22{bottom:120.192000pt;}
.y14{bottom:122.944000pt;}
.y21{bottom:124.800000pt;}
.yb5{bottom:126.336000pt;}
.y5{bottom:131.232000pt;}
.y40{bottom:145.120000pt;}
.y30{bottom:147.973333pt;}
.y7d{bottom:149.213333pt;}
.y5d{bottom:151.426667pt;}
.y8e{bottom:156.226667pt;}
.yb4{bottom:156.733333pt;}
.y71{bottom:157.093333pt;}
.y85{bottom:161.533333pt;}
.y20{bottom:162.240000pt;}
.ya8{bottom:170.333333pt;}
.y13{bottom:172.893333pt;}
.y5c{bottom:183.426667pt;}
.y7c{bottom:187.613333pt;}
.y3f{bottom:189.306667pt;}
.y9d{bottom:191.386667pt;}
.y4{bottom:192.666667pt;}
.yb3{bottom:193.253333pt;}
.y2f{bottom:194.053333pt;}
.y70{bottom:195.493333pt;}
.y50{bottom:197.506667pt;}
.ya3{bottom:197.946667pt;}
.y8d{bottom:201.026667pt;}
.y1f{bottom:208.026667pt;}
.y5b{bottom:215.426667pt;}
.y7b{bottom:219.613333pt;}
.y12{bottom:222.813333pt;}
.y84{bottom:222.973333pt;}
.yb2{bottom:223.653333pt;}
.y3e{bottom:226.106667pt;}
.y4f{bottom:233.986667pt;}
.y2e{bottom:240.160000pt;}
.y6f{bottom:241.600000pt;}
.y8c{bottom:245.826667pt;}
.y1e{bottom:253.786667pt;}
.y5a{bottom:253.826667pt;}
.yb1{bottom:254.053333pt;}
.ya7{bottom:254.853333pt;}
.y7a{bottom:258.053333pt;}
.y3d{bottom:262.906667pt;}
.y11{bottom:264.413333pt;}
.y4e{bottom:270.466667pt;}
.y6e{bottom:280.000000pt;}
.y83{bottom:284.453333pt;}
.ya2{bottom:285.826667pt;}
.y2d{bottom:286.240000pt;}
.y79{bottom:290.053333pt;}
.y59{bottom:292.253333pt;}
.y1d{bottom:299.546667pt;}
.y8b{bottom:299.613333pt;}
.y65{bottom:304.386667pt;}
.y10{bottom:306.053333pt;}
.y4d{bottom:306.973333pt;}
.y3c{bottom:307.066667pt;}
.y3{bottom:312.066667pt;}
.yb0{bottom:314.880000pt;}
.y58{bottom:324.253333pt;}
.y6d{bottom:326.080000pt;}
.y78{bottom:328.453333pt;}
.y2c{bottom:332.320000pt;}
.y1c{bottom:336.986667pt;}
.ya1{bottom:337.026667pt;}
.ya6{bottom:339.333333pt;}
.y4c{bottom:343.453333pt;}
.y3b{bottom:343.906667pt;}
.y8a{bottom:344.413333pt;}
.y82{bottom:345.893333pt;}
.yaf{bottom:351.360000pt;}
.yf{bottom:355.973333pt;}
.y57{bottom:356.253333pt;}
.y8{bottom:363.266667pt;}
.y6c{bottom:364.506667pt;}
.y77{bottom:366.853333pt;}
.y64{bottom:368.386667pt;}
.y44{bottom:369.826667pt;}
.y2b{bottom:370.746667pt;}
.y1b{bottom:374.466667pt;}
.ya5{bottom:374.533333pt;}
.y94{bottom:377.253333pt;}
.y4b{bottom:379.933333pt;}
.y3a{bottom:380.706667pt;}
.yae{bottom:381.760000pt;}
.y2{bottom:382.493333pt;}
.y9a{bottom:387.386667pt;}
.ya0{bottom:388.253333pt;}
.y9c{bottom:391.386667pt;}
.y56{bottom:394.653333pt;}
.ye{bottom:397.573333pt;}
.y89{bottom:398.173333pt;}
.y76{bottom:398.880000pt;}
.y81{bottom:407.360000pt;}
.y6b{bottom:410.586667pt;}
.y1a{bottom:411.906667pt;}
.yad{bottom:412.160000pt;}
.y99{bottom:413.826667pt;}
.y4a{bottom:416.413333pt;}
.y2a{bottom:416.826667pt;}
.y39{bottom:417.506667pt;}
.y93{bottom:417.573333pt;}
.y9b{bottom:420.186667pt;}
.y55{bottom:426.693333pt;}
.y63{bottom:432.413333pt;}
.y7{bottom:433.693333pt;}
.y75{bottom:437.280000pt;}
.y9f{bottom:439.453333pt;}
.y98{bottom:440.226667pt;}
.yac{bottom:442.586667pt;}
.yd{bottom:447.520000pt;}
.y6a{bottom:448.986667pt;}
.y96{bottom:451.200000pt;}
.y88{bottom:451.973333pt;}
.y1{bottom:452.893333pt;}
.y49{bottom:452.933333pt;}
.y38{bottom:454.306667pt;}
.y29{bottom:455.226667pt;}
.y19{bottom:457.666667pt;}
.y54{bottom:458.693333pt;}
.y92{bottom:466.853333pt;}
.y80{bottom:468.800000pt;}
.y74{bottom:475.680000pt;}
.yab{bottom:479.066667pt;}
.y69{bottom:487.386667pt;}
.yc{bottom:489.120000pt;}
.y48{bottom:489.413333pt;}
.y95{bottom:489.600000pt;}
.y9e{bottom:490.653333pt;}
.y18{bottom:495.133333pt;}
.y62{bottom:496.413333pt;}
.y87{bottom:496.773333pt;}
.y53{bottom:497.093333pt;}
.y37{bottom:498.493333pt;}
.y28{bottom:501.346667pt;}
.y91{bottom:507.200000pt;}
.yaa{bottom:509.466667pt;}
.y73{bottom:514.080000pt;}
.y68{bottom:525.826667pt;}
.y47{bottom:525.893333pt;}
.y52{bottom:529.093333pt;}
.y7f{bottom:530.240000pt;}
.yb{bottom:530.720000pt;}
.y36{bottom:535.293333pt;}
.ya9{bottom:539.866667pt;}
.y17{bottom:540.893333pt;}
.ya4{bottom:543.546667pt;}
.yb9{bottom:544.093333pt;}
.y72{bottom:546.106667pt;}
.y27{bottom:547.426667pt;}
.y90{bottom:547.520000pt;}
.y86{bottom:550.533333pt;}
.y51{bottom:561.093333pt;}
.y46{bottom:562.373333pt;}
.y35{bottom:572.093333pt;}
.yb8{bottom:576.093333pt;}
.y26{bottom:585.826667pt;}
.ya{bottom:596.186667pt;}
.y97{bottom:597.026667pt;}
.y67{bottom:619.866667pt;}
.y8f{bottom:631.040000pt;}
.y45{bottom:634.786667pt;}
.y34{bottom:638.533333pt;}
.y25{bottom:642.373333pt;}
.y16{bottom:643.586667pt;}
.y60{bottom:644.293333pt;}
.y9{bottom:647.386667pt;}
.y61{bottom:649.186667pt;}
.y66{bottom:654.973333pt;}
.hf{height:82.752500pt;}
.h1e{height:82.857250pt;}
.he{height:83.540625pt;}
.h10{height:87.466250pt;}
.h11{height:87.571000pt;}
.h18{height:89.010000pt;}
.h1d{height:95.846250pt;}
.h1c{height:95.951000pt;}
.h8{height:96.750000pt;}
.hc{height:100.560000pt;}
.hd{height:100.664750pt;}
.ha{height:104.750000pt;}
.hb{height:104.854750pt;}
.h19{height:107.844000pt;}
.h5{height:113.653750pt;}
.h7{height:113.758500pt;}
.h16{height:122.033750pt;}
.h17{height:122.138500pt;}
.h6{height:136.235313pt;}
.h3{height:139.841250pt;}
.h15{height:139.946000pt;}
.h1b{height:143.846250pt;}
.h12{height:146.280312pt;}
.h14{height:146.405875pt;}
.h1f{height:150.285000pt;}
.h4{height:167.625937pt;}
.h1a{height:167.751500pt;}
.h9{height:188.343750pt;}
.h13{height:209.061562pt;}
.h1{height:230.407187pt;}
.h2{height:230.532750pt;}
.h0{height:720.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x5{left:45.503986pt;}
.xd{left:49.599986pt;}
.x6{left:60.287986pt;}
.x20{left:69.599986pt;}
.x13{left:72.959986pt;}
.xa{left:75.615986pt;}
.x1c{left:81.599986pt;}
.x14{left:83.103986pt;}
.x8{left:105.631986pt;}
.xf{left:107.007986pt;}
.xe{left:113.119986pt;}
.x7{left:114.623986pt;}
.x4{left:120.511986pt;}
.x3{left:122.015986pt;}
.xc{left:129.631986pt;}
.x1d{left:135.706652pt;}
.x9{left:137.119986pt;}
.x16{left:144.639986pt;}
.x15{left:152.133319pt;}
.x12{left:153.626652pt;}
.x10{left:155.613319pt;}
.x18{left:170.466652pt;}
.x11{left:174.626652pt;}
.x2{left:189.626652pt;}
.x1b{left:197.119986pt;}
.x1{left:201.626652pt;}
.x17{left:227.133319pt;}
.xb{left:258.146652pt;}
.x1a{left:394.399986pt;}
.x1e{left:497.186652pt;}
.x1f{left:551.266652pt;}
.x19{left:566.946652pt;}
}




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