
    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_60246cf80b2b3cee69c8654d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_c9d53c7935b43a551a1af4e7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.040039;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_ac27d49a154a6f9dfd91ab88.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e78425954a44e37d0875b56b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_f719100d839189b2b3d89ffe.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_48cf444760ff9ab1771ab208.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.916016;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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.072000px;}
.ls1a{letter-spacing:-0.037440px;}
.ls2{letter-spacing:-0.018720px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.037440px;}
.ls12{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.216000px;}
.ls17{letter-spacing:0.288000px;}
.ls1b{letter-spacing:0.350400px;}
.lsf{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.378600px;}
.ls11{letter-spacing:0.432000px;}
.ls16{letter-spacing:0.504000px;}
.ls18{letter-spacing:0.576000px;}
.ls5{letter-spacing:0.648000px;}
.ls6{letter-spacing:0.720000px;}
.ls1c{letter-spacing:0.792000px;}
.ls1d{letter-spacing:0.840000px;}
.ls13{letter-spacing:0.936000px;}
.lsb{letter-spacing:1.440000px;}
.ls0{letter-spacing:10.800000px;}
.lse{letter-spacing:12.240000px;}
.ls15{letter-spacing:28.080000px;}
.ls7{letter-spacing:64.397280px;}
.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;}
}
.ws1{word-spacing:-72.000000px;}
.ws0{word-spacing:-23.977440px;}
.ws8{word-spacing:-21.438600px;}
.ws7{word-spacing:-21.420000px;}
.ws13{word-spacing:-21.410400px;}
.ws4{word-spacing:-21.060000px;}
.ws12{word-spacing:-21.022560px;}
.wsd{word-spacing:-18.936000px;}
.ws10{word-spacing:-18.576000px;}
.wsf{word-spacing:-18.288000px;}
.wse{word-spacing:-18.216000px;}
.ws9{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.wsb{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.ws11{word-spacing:-14.940000px;}
.ws3{word-spacing:0.000000px;}
._1a{margin-left:-5.010720px;}
._12{margin-left:-3.816000px;}
._9{margin-left:-2.808000px;}
._0{margin-left:-1.457280px;}
._1{width:1.125600px;}
._a{width:2.618400px;}
._b{width:3.708000px;}
._18{width:4.968000px;}
._11{width:6.192000px;}
._e{width:7.920000px;}
._f{width:9.000000px;}
._7{width:10.152000px;}
._8{width:11.844000px;}
._10{width:13.608000px;}
._13{width:15.048000px;}
._14{width:16.272000px;}
._17{width:19.368000px;}
._c{width:20.952000px;}
._d{width:22.320000px;}
._15{width:23.448000px;}
._16{width:24.578400px;}
._19{width:25.821600px;}
._1c{width:26.856000px;}
._1d{width:28.514400px;}
._1e{width:30.384000px;}
._1b{width:32.184000px;}
._21{width:33.192000px;}
._1f{width:34.272000px;}
._20{width:35.424000px;}
._2{width:65.334720px;}
._3{width:67.787280px;}
._25{width:76.032000px;}
._26{width:80.568000px;}
._24{width:82.872000px;}
._29{width:84.384000px;}
._22{width:92.232000px;}
._23{width:93.600000px;}
._4{width:107.029200px;}
._27{width:123.912000px;}
._28{width:125.352000px;}
._6{width:134.016960px;}
._5{width:135.260160px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(24,24,27);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:82.116000px;}
.y4{bottom:108.396000px;}
.y3{bottom:127.476000px;}
.y2{bottom:146.556000px;}
.y32{bottom:166.350000px;}
.y6e{bottom:171.750000px;}
.y51{bottom:173.730000px;}
.y31{bottom:187.050000px;}
.y96{bottom:192.810000px;}
.y8c{bottom:193.710000px;}
.yb8{bottom:194.430000px;}
.y7d{bottom:194.790000px;}
.y6d{bottom:202.710000px;}
.y50{bottom:204.870000px;}
.y30{bottom:207.750000px;}
.yb7{bottom:215.130000px;}
.y95{bottom:223.770000px;}
.y7c{bottom:225.930000px;}
.y2f{bottom:228.450000px;}
.y8b{bottom:230.790000px;}
.y6c{bottom:233.850000px;}
.y4f{bottom:235.830000px;}
.y2e{bottom:249.150000px;}
.y94{bottom:254.910000px;}
.yb6{bottom:256.530000px;}
.y7b{bottom:256.890000px;}
.y8a{bottom:261.750000px;}
.y6b{bottom:264.810000px;}
.y4e{bottom:266.970000px;}
.y2d{bottom:269.850000px;}
.yb5{bottom:277.230000px;}
.y93{bottom:285.870000px;}
.y7a{bottom:288.030000px;}
.y2c{bottom:290.550000px;}
.y89{bottom:292.890000px;}
.y6a{bottom:295.950000px;}
.y4d{bottom:297.930000px;}
.y2b{bottom:311.250000px;}
.y92{bottom:317.010000px;}
.yb4{bottom:318.630000px;}
.y79{bottom:318.990000px;}
.y88{bottom:323.850000px;}
.y69{bottom:326.910000px;}
.y4c{bottom:329.070000px;}
.y2a{bottom:331.950000px;}
.yb3{bottom:339.375000px;}
.y91{bottom:348.015000px;}
.y78{bottom:350.175000px;}
.y29{bottom:352.695000px;}
.y87{bottom:355.035000px;}
.y68{bottom:358.095000px;}
.y4b{bottom:359.355000px;}
.yb2{bottom:360.075000px;}
.y28{bottom:373.395000px;}
.y90{bottom:379.155000px;}
.yb1{bottom:380.775000px;}
.y77{bottom:381.135000px;}
.y86{bottom:385.995000px;}
.y67{bottom:389.055000px;}
.y27{bottom:394.095000px;}
.yb0{bottom:401.475000px;}
.y4a{bottom:402.195000px;}
.y8f{bottom:410.115000px;}
.y76{bottom:412.275000px;}
.y26{bottom:414.795000px;}
.y66{bottom:420.195000px;}
.yaf{bottom:422.175000px;}
.y85{bottom:423.075000px;}
.y49{bottom:433.335000px;}
.y25{bottom:435.495000px;}
.y8e{bottom:441.255000px;}
.yae{bottom:442.875000px;}
.y75{bottom:443.235000px;}
.y84{bottom:450.075000px;}
.y24{bottom:456.195000px;}
.y65{bottom:462.315000px;}
.yad{bottom:463.575000px;}
.y48{bottom:464.295000px;}
.y74{bottom:474.375000px;}
.y23{bottom:476.895000px;}
.y8d{bottom:483.555000px;}
.yac{bottom:484.275000px;}
.y47{bottom:495.435000px;}
.y22{bottom:497.595000px;}
.yab{bottom:504.975000px;}
.y64{bottom:505.335000px;}
.y21{bottom:518.295000px;}
.yaa{bottom:525.675000px;}
.y46{bottom:526.395000px;}
.y63{bottom:536.475000px;}
.y20{bottom:538.995000px;}
.ya9{bottom:546.375000px;}
.y45{bottom:557.535000px;}
.y1f{bottom:559.695000px;}
.ya8{bottom:567.075000px;}
.y62{bottom:567.435000px;}
.y1e{bottom:580.395000px;}
.ya7{bottom:587.775000px;}
.y44{bottom:588.495000px;}
.y61{bottom:598.575000px;}
.y1d{bottom:601.095000px;}
.ya6{bottom:608.505000px;}
.y43{bottom:619.665000px;}
.y1c{bottom:621.645000px;}
.ya5{bottom:629.205000px;}
.y60{bottom:629.565000px;}
.y1b{bottom:642.345000px;}
.ya4{bottom:649.905000px;}
.y42{bottom:650.625000px;}
.y5f{bottom:660.705000px;}
.y1a{bottom:663.045000px;}
.ya3{bottom:670.605000px;}
.y41{bottom:681.765000px;}
.y19{bottom:683.745000px;}
.ya2{bottom:691.305000px;}
.y5e{bottom:691.665000px;}
.y18{bottom:704.445000px;}
.ya1{bottom:712.005000px;}
.y40{bottom:712.725000px;}
.y5d{bottom:722.805000px;}
.y17{bottom:725.145000px;}
.ya0{bottom:732.705000px;}
.y3f{bottom:743.865000px;}
.y16{bottom:745.845000px;}
.y9f{bottom:753.405000px;}
.y5c{bottom:753.765000px;}
.y98{bottom:765.105000px;}
.y15{bottom:766.545000px;}
.y9e{bottom:774.105000px;}
.y3e{bottom:774.825000px;}
.y5b{bottom:784.905000px;}
.y14{bottom:787.245000px;}
.y9d{bottom:794.805000px;}
.y3d{bottom:805.965000px;}
.y13{bottom:807.945000px;}
.y9c{bottom:815.505000px;}
.y5a{bottom:815.865000px;}
.y12{bottom:828.645000px;}
.y9b{bottom:836.205000px;}
.y3c{bottom:836.925000px;}
.y97{bottom:839.085000px;}
.y59{bottom:847.005000px;}
.y11{bottom:849.345000px;}
.y9a{bottom:856.905000px;}
.y73{bottom:858.165000px;}
.y3b{bottom:868.065000px;}
.y10{bottom:870.045000px;}
.y58{bottom:878.010000px;}
.y99{bottom:887.190000px;}
.yf{bottom:890.790000px;}
.y3a{bottom:899.070000px;}
.y72{bottom:901.230000px;}
.y57{bottom:909.150000px;}
.ye{bottom:911.490000px;}
.y39{bottom:930.210000px;}
.yd{bottom:932.190000px;}
.y56{bottom:940.110000px;}
.ybe{bottom:952.890000px;}
.yc{bottom:954.330000px;}
.y38{bottom:961.170000px;}
.y71{bottom:963.330000px;}
.y55{bottom:971.250000px;}
.ybd{bottom:973.590000px;}
.yb{bottom:981.870000px;}
.y7e{bottom:982.410000px;}
.y83{bottom:984.210000px;}
.y37{bottom:992.310000px;}
.y70{bottom:994.290000px;}
.y82{bottom:1001.490000px;}
.ya{bottom:1009.410000px;}
.y54{bottom:1013.370000px;}
.ybc{bottom:1014.990000px;}
.y81{bottom:1018.590000px;}
.y36{bottom:1023.270000px;}
.y6f{bottom:1025.430000px;}
.ybb{bottom:1035.690000px;}
.y80{bottom:1035.870000px;}
.y9{bottom:1037.130000px;}
.y7f{bottom:1053.150000px;}
.y35{bottom:1054.410000px;}
.y53{bottom:1056.390000px;}
.y8{bottom:1064.670000px;}
.yba{bottom:1077.090000px;}
.y34{bottom:1085.370000px;}
.y52{bottom:1087.530000px;}
.y7{bottom:1092.210000px;}
.yb9{bottom:1097.790000px;}
.y33{bottom:1115.610000px;}
.y6{bottom:1118.490000px;}
.y1{bottom:1233.900000px;}
.h8{height:53.573906px;}
.h4{height:59.343750px;}
.h3{height:59.383125px;}
.h2{height:64.546875px;}
.h7{height:74.820586px;}
.h6{height:78.927188px;}
.h5{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.655987px;}
.x9{left:129.815987px;}
.xa{left:133.595987px;}
.xb{left:142.415987px;}
.x8{left:160.049987px;}
.x6{left:164.369987px;}
.x3{left:170.129987px;}
.x5{left:271.289987px;}
.x7{left:289.694987px;}
.x1{left:489.164987px;}
.xc{left:748.409987px;}
.x4{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls1a{letter-spacing:-0.033280pt;}
.ls2{letter-spacing:-0.016640pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.033280pt;}
.ls12{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.192000pt;}
.ls17{letter-spacing:0.256000pt;}
.ls1b{letter-spacing:0.311467pt;}
.lsf{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.336533pt;}
.ls11{letter-spacing:0.384000pt;}
.ls16{letter-spacing:0.448000pt;}
.ls18{letter-spacing:0.512000pt;}
.ls5{letter-spacing:0.576000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:0.704000pt;}
.ls1d{letter-spacing:0.746667pt;}
.ls13{letter-spacing:0.832000pt;}
.lsb{letter-spacing:1.280000pt;}
.ls0{letter-spacing:9.600000pt;}
.lse{letter-spacing:10.880000pt;}
.ls15{letter-spacing:24.960000pt;}
.ls7{letter-spacing:57.242027pt;}
.ws1{word-spacing:-64.000000pt;}
.ws0{word-spacing:-21.313280pt;}
.ws8{word-spacing:-19.056533pt;}
.ws7{word-spacing:-19.040000pt;}
.ws13{word-spacing:-19.031467pt;}
.ws4{word-spacing:-18.720000pt;}
.ws12{word-spacing:-18.686720pt;}
.wsd{word-spacing:-16.832000pt;}
.ws10{word-spacing:-16.512000pt;}
.wsf{word-spacing:-16.256000pt;}
.wse{word-spacing:-16.192000pt;}
.ws9{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.wsb{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws11{word-spacing:-13.280000pt;}
.ws3{word-spacing:0.000000pt;}
._1a{margin-left:-4.453973pt;}
._12{margin-left:-3.392000pt;}
._9{margin-left:-2.496000pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.000533pt;}
._a{width:2.327467pt;}
._b{width:3.296000pt;}
._18{width:4.416000pt;}
._11{width:5.504000pt;}
._e{width:7.040000pt;}
._f{width:8.000000pt;}
._7{width:9.024000pt;}
._8{width:10.528000pt;}
._10{width:12.096000pt;}
._13{width:13.376000pt;}
._14{width:14.464000pt;}
._17{width:17.216000pt;}
._c{width:18.624000pt;}
._d{width:19.840000pt;}
._15{width:20.842667pt;}
._16{width:21.847467pt;}
._19{width:22.952533pt;}
._1c{width:23.872000pt;}
._1d{width:25.346133pt;}
._1e{width:27.008000pt;}
._1b{width:28.608000pt;}
._21{width:29.504000pt;}
._1f{width:30.464000pt;}
._20{width:31.488000pt;}
._2{width:58.075307pt;}
._3{width:60.255360pt;}
._25{width:67.584000pt;}
._26{width:71.616000pt;}
._24{width:73.664000pt;}
._29{width:75.008000pt;}
._22{width:81.984000pt;}
._23{width:83.200000pt;}
._4{width:95.137067pt;}
._27{width:110.144000pt;}
._28{width:111.424000pt;}
._6{width:119.126187pt;}
._5{width:120.231253pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:72.992000pt;}
.y4{bottom:96.352000pt;}
.y3{bottom:113.312000pt;}
.y2{bottom:130.272000pt;}
.y32{bottom:147.866667pt;}
.y6e{bottom:152.666667pt;}
.y51{bottom:154.426667pt;}
.y31{bottom:166.266667pt;}
.y96{bottom:171.386667pt;}
.y8c{bottom:172.186667pt;}
.yb8{bottom:172.826667pt;}
.y7d{bottom:173.146667pt;}
.y6d{bottom:180.186667pt;}
.y50{bottom:182.106667pt;}
.y30{bottom:184.666667pt;}
.yb7{bottom:191.226667pt;}
.y95{bottom:198.906667pt;}
.y7c{bottom:200.826667pt;}
.y2f{bottom:203.066667pt;}
.y8b{bottom:205.146667pt;}
.y6c{bottom:207.866667pt;}
.y4f{bottom:209.626667pt;}
.y2e{bottom:221.466667pt;}
.y94{bottom:226.586667pt;}
.yb6{bottom:228.026667pt;}
.y7b{bottom:228.346667pt;}
.y8a{bottom:232.666667pt;}
.y6b{bottom:235.386667pt;}
.y4e{bottom:237.306667pt;}
.y2d{bottom:239.866667pt;}
.yb5{bottom:246.426667pt;}
.y93{bottom:254.106667pt;}
.y7a{bottom:256.026667pt;}
.y2c{bottom:258.266667pt;}
.y89{bottom:260.346667pt;}
.y6a{bottom:263.066667pt;}
.y4d{bottom:264.826667pt;}
.y2b{bottom:276.666667pt;}
.y92{bottom:281.786667pt;}
.yb4{bottom:283.226667pt;}
.y79{bottom:283.546667pt;}
.y88{bottom:287.866667pt;}
.y69{bottom:290.586667pt;}
.y4c{bottom:292.506667pt;}
.y2a{bottom:295.066667pt;}
.yb3{bottom:301.666667pt;}
.y91{bottom:309.346667pt;}
.y78{bottom:311.266667pt;}
.y29{bottom:313.506667pt;}
.y87{bottom:315.586667pt;}
.y68{bottom:318.306667pt;}
.y4b{bottom:319.426667pt;}
.yb2{bottom:320.066667pt;}
.y28{bottom:331.906667pt;}
.y90{bottom:337.026667pt;}
.yb1{bottom:338.466667pt;}
.y77{bottom:338.786667pt;}
.y86{bottom:343.106667pt;}
.y67{bottom:345.826667pt;}
.y27{bottom:350.306667pt;}
.yb0{bottom:356.866667pt;}
.y4a{bottom:357.506667pt;}
.y8f{bottom:364.546667pt;}
.y76{bottom:366.466667pt;}
.y26{bottom:368.706667pt;}
.y66{bottom:373.506667pt;}
.yaf{bottom:375.266667pt;}
.y85{bottom:376.066667pt;}
.y49{bottom:385.186667pt;}
.y25{bottom:387.106667pt;}
.y8e{bottom:392.226667pt;}
.yae{bottom:393.666667pt;}
.y75{bottom:393.986667pt;}
.y84{bottom:400.066667pt;}
.y24{bottom:405.506667pt;}
.y65{bottom:410.946667pt;}
.yad{bottom:412.066667pt;}
.y48{bottom:412.706667pt;}
.y74{bottom:421.666667pt;}
.y23{bottom:423.906667pt;}
.y8d{bottom:429.826667pt;}
.yac{bottom:430.466667pt;}
.y47{bottom:440.386667pt;}
.y22{bottom:442.306667pt;}
.yab{bottom:448.866667pt;}
.y64{bottom:449.186667pt;}
.y21{bottom:460.706667pt;}
.yaa{bottom:467.266667pt;}
.y46{bottom:467.906667pt;}
.y63{bottom:476.866667pt;}
.y20{bottom:479.106667pt;}
.ya9{bottom:485.666667pt;}
.y45{bottom:495.586667pt;}
.y1f{bottom:497.506667pt;}
.ya8{bottom:504.066667pt;}
.y62{bottom:504.386667pt;}
.y1e{bottom:515.906667pt;}
.ya7{bottom:522.466667pt;}
.y44{bottom:523.106667pt;}
.y61{bottom:532.066667pt;}
.y1d{bottom:534.306667pt;}
.ya6{bottom:540.893333pt;}
.y43{bottom:550.813333pt;}
.y1c{bottom:552.573333pt;}
.ya5{bottom:559.293333pt;}
.y60{bottom:559.613333pt;}
.y1b{bottom:570.973333pt;}
.ya4{bottom:577.693333pt;}
.y42{bottom:578.333333pt;}
.y5f{bottom:587.293333pt;}
.y1a{bottom:589.373333pt;}
.ya3{bottom:596.093333pt;}
.y41{bottom:606.013333pt;}
.y19{bottom:607.773333pt;}
.ya2{bottom:614.493333pt;}
.y5e{bottom:614.813333pt;}
.y18{bottom:626.173333pt;}
.ya1{bottom:632.893333pt;}
.y40{bottom:633.533333pt;}
.y5d{bottom:642.493333pt;}
.y17{bottom:644.573333pt;}
.ya0{bottom:651.293333pt;}
.y3f{bottom:661.213333pt;}
.y16{bottom:662.973333pt;}
.y9f{bottom:669.693333pt;}
.y5c{bottom:670.013333pt;}
.y98{bottom:680.093333pt;}
.y15{bottom:681.373333pt;}
.y9e{bottom:688.093333pt;}
.y3e{bottom:688.733333pt;}
.y5b{bottom:697.693333pt;}
.y14{bottom:699.773333pt;}
.y9d{bottom:706.493333pt;}
.y3d{bottom:716.413333pt;}
.y13{bottom:718.173333pt;}
.y9c{bottom:724.893333pt;}
.y5a{bottom:725.213333pt;}
.y12{bottom:736.573333pt;}
.y9b{bottom:743.293333pt;}
.y3c{bottom:743.933333pt;}
.y97{bottom:745.853333pt;}
.y59{bottom:752.893333pt;}
.y11{bottom:754.973333pt;}
.y9a{bottom:761.693333pt;}
.y73{bottom:762.813333pt;}
.y3b{bottom:771.613333pt;}
.y10{bottom:773.373333pt;}
.y58{bottom:780.453333pt;}
.y99{bottom:788.613333pt;}
.yf{bottom:791.813333pt;}
.y3a{bottom:799.173333pt;}
.y72{bottom:801.093333pt;}
.y57{bottom:808.133333pt;}
.ye{bottom:810.213333pt;}
.y39{bottom:826.853333pt;}
.yd{bottom:828.613333pt;}
.y56{bottom:835.653333pt;}
.ybe{bottom:847.013333pt;}
.yc{bottom:848.293333pt;}
.y38{bottom:854.373333pt;}
.y71{bottom:856.293333pt;}
.y55{bottom:863.333333pt;}
.ybd{bottom:865.413333pt;}
.yb{bottom:872.773333pt;}
.y7e{bottom:873.253333pt;}
.y83{bottom:874.853333pt;}
.y37{bottom:882.053333pt;}
.y70{bottom:883.813333pt;}
.y82{bottom:890.213333pt;}
.ya{bottom:897.253333pt;}
.y54{bottom:900.773333pt;}
.ybc{bottom:902.213333pt;}
.y81{bottom:905.413333pt;}
.y36{bottom:909.573333pt;}
.y6f{bottom:911.493333pt;}
.ybb{bottom:920.613333pt;}
.y80{bottom:920.773333pt;}
.y9{bottom:921.893333pt;}
.y7f{bottom:936.133333pt;}
.y35{bottom:937.253333pt;}
.y53{bottom:939.013333pt;}
.y8{bottom:946.373333pt;}
.yba{bottom:957.413333pt;}
.y34{bottom:964.773333pt;}
.y52{bottom:966.693333pt;}
.y7{bottom:970.853333pt;}
.yb9{bottom:975.813333pt;}
.y33{bottom:991.653333pt;}
.y6{bottom:994.213333pt;}
.y1{bottom:1096.800000pt;}
.h8{height:47.621250pt;}
.h4{height:52.750000pt;}
.h3{height:52.785000pt;}
.h2{height:57.375000pt;}
.h7{height:66.507188pt;}
.h6{height:70.157500pt;}
.h5{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.471988pt;}
.x9{left:115.391988pt;}
.xa{left:118.751988pt;}
.xb{left:126.591988pt;}
.x8{left:142.266655pt;}
.x6{left:146.106655pt;}
.x3{left:151.226655pt;}
.x5{left:241.146655pt;}
.x7{left:257.506655pt;}
.x1{left:434.813322pt;}
.xc{left:665.253322pt;}
.x4{left:718.373322pt;}
}




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