
    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_df4b99df80185ff8011cef77.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_7de54453716e976fad00b0a2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.971191;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_3445f504a82fd6a649fac629.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971191;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_5573e87b3bb3ff3ee683d0ce.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_eccd224dd6bd7acc6f1f97d6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.978027;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_774518fdb000b6cdcf24ae32.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_e446d3fd204ad973d1ca9b25.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.892578;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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;}
.ls11{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.355200px;}
.ls6{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.259800px;}
.lsa{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.360000px;}
.lse{letter-spacing:0.468000px;}
.ls12{letter-spacing:2.340000px;}
.ls4{letter-spacing:5.412000px;}
.ls0{letter-spacing:5.911680px;}
.ls10{letter-spacing:8.856000px;}
.lsf{letter-spacing:30.456000px;}
.lsd{letter-spacing:83.664000px;}
.ls1{letter-spacing:846.300000px;}
.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;}
}
.ws0{word-spacing:-45.423120px;}
.ws2{word-spacing:-30.094320px;}
.ws1{word-spacing:-24.682320px;}
.ws4{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.712000px;}
.ws8{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.120000px;}
.wsa{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.680200px;}
.ws7{word-spacing:-11.700000px;}
.ws6{word-spacing:0.000000px;}
._c{margin-left:-14.283360px;}
._d{margin-left:-10.140000px;}
._e{margin-left:-5.562960px;}
._16{margin-left:-3.991680px;}
._9{margin-left:-2.616000px;}
._5{margin-left:-1.406160px;}
._6{width:1.099680px;}
._7{width:2.188320px;}
._f{width:3.414240px;}
._2{width:4.520880px;}
._0{width:5.574960px;}
._1{width:7.547520px;}
._4{width:8.770080px;}
._3{width:10.794240px;}
._10{width:12.035520px;}
._12{width:13.401840px;}
._11{width:15.230160px;}
._15{width:16.320000px;}
._8{width:19.704000px;}
._a{width:24.624000px;}
._b{width:25.632000px;}
._13{width:846.300000px;}
._17{width:1412.940000px;}
._14{width:1430.940000px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(0,0,153);}
.fc4{color:rgb(1,37,69);}
.fc3{color:rgb(3,95,177);}
.fc1{color:rgb(0,88,164);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs9{font-size:88.795869px;}
.fsa{font-size:108.000000px;}
.fs5{font-size:156.240000px;}
.fs4{font-size:167.760000px;}
.fs2{font-size:192.240000px;}
.y0{bottom:0.000000px;}
.y22{bottom:11.340000px;}
.y8{bottom:11.700000px;}
.y29{bottom:12.600000px;}
.y26{bottom:13.500000px;}
.yf{bottom:14.400000px;}
.y14{bottom:14.580000px;}
.y2d{bottom:16.560000px;}
.y11{bottom:17.130000px;}
.y41{bottom:17.460000px;}
.y3c{bottom:17.640000px;}
.y2a{bottom:19.080000px;}
.y16{bottom:20.520000px;}
.y6{bottom:20.700000px;}
.y12{bottom:23.250000px;}
.y3f{bottom:28.620000px;}
.y27{bottom:31.140000px;}
.y21{bottom:33.840000px;}
.y42{bottom:34.740000px;}
.y5{bottom:42.840000px;}
.y40{bottom:51.840000px;}
.y3b{bottom:52.020000px;}
.y20{bottom:56.160000px;}
.y38{bottom:63.000000px;}
.y3d{bottom:69.120000px;}
.y2e{bottom:71.496000px;}
.y4{bottom:73.620000px;}
.y1f{bottom:78.480000px;}
.y3a{bottom:86.400000px;}
.y2c{bottom:88.236000px;}
.y1e{bottom:100.800000px;}
.y39{bottom:120.600000px;}
.y1d{bottom:123.165000px;}
.y24{bottom:124.956000px;}
.y3{bottom:127.440000px;}
.y9c{bottom:135.216000px;}
.y6a{bottom:138.636000px;}
.y1c{bottom:145.485000px;}
.y23{bottom:155.550000px;}
.y69{bottom:165.090000px;}
.y1b{bottom:169.590000px;}
.y81{bottom:216.750000px;}
.y9f{bottom:228.270000px;}
.y80{bottom:251.130000px;}
.y7f{bottom:266.790000px;}
.y8c{bottom:291.135000px;}
.y7e{bottom:293.115000px;}
.y8b{bottom:325.695000px;}
.y1a{bottom:337.035000px;}
.y8a{bottom:352.155000px;}
.y19{bottom:383.295000px;}
.y7a{bottom:384.195000px;}
.y18{bottom:401.295000px;}
.y65{bottom:417.495000px;}
.y79{bottom:418.575000px;}
.y64{bottom:439.815000px;}
.y78{bottom:440.895000px;}
.y17{bottom:441.615000px;}
.y63{bottom:462.135000px;}
.y77{bottom:463.215000px;}
.y9e{bottom:478.155000px;}
.y15{bottom:481.935000px;}
.y62{bottom:484.455000px;}
.y76{bottom:497.595000px;}
.y75{bottom:519.915000px;}
.y13{bottom:522.255000px;}
.y61{bottom:523.515000px;}
.y74{bottom:542.235000px;}
.y10{bottom:562.575000px;}
.y73{bottom:564.585000px;}
.y44{bottom:581.145000px;}
.y60{bottom:583.305000px;}
.y72{bottom:586.905000px;}
.y43{bottom:598.425000px;}
.y7d{bottom:603.285000px;}
.y5f{bottom:605.625000px;}
.ye{bottom:608.145000px;}
.y71{bottom:609.225000px;}
.y5e{bottom:627.945000px;}
.y68{bottom:628.305000px;}
.y7c{bottom:633.705000px;}
.y3e{bottom:639.105000px;}
.y70{bottom:643.605000px;}
.y5d{bottom:650.265000px;}
.y67{bottom:662.685000px;}
.y6f{bottom:665.925000px;}
.y5c{bottom:672.585000px;}
.yd{bottom:673.125000px;}
.y6e{bottom:688.245000px;}
.y66{bottom:690.405000px;}
.y5b{bottom:694.905000px;}
.y37{bottom:708.045000px;}
.y6d{bottom:710.565000px;}
.yc{bottom:716.505000px;}
.y5a{bottom:717.225000px;}
.y59{bottom:739.545000px;}
.y6c{bottom:745.125000px;}
.y58{bottom:761.865000px;}
.y98{bottom:762.405000px;}
.yb{bottom:763.485000px;}
.y6b{bottom:771.405000px;}
.y57{bottom:784.365000px;}
.y97{bottom:796.785000px;}
.y56{bottom:806.685000px;}
.ya{bottom:828.645000px;}
.y55{bottom:829.005000px;}
.y96{bottom:831.165000px;}
.y36{bottom:847.770000px;}
.y95{bottom:853.530000px;}
.y4c{bottom:866.130000px;}
.y54{bottom:868.110000px;}
.y94{bottom:875.850000px;}
.y89{bottom:880.530000px;}
.y9{bottom:893.670000px;}
.y4b{bottom:900.510000px;}
.y35{bottom:903.930000px;}
.y93{bottom:910.230000px;}
.y88{bottom:914.910000px;}
.y9b{bottom:925.890000px;}
.y53{bottom:930.030000px;}
.y92{bottom:932.550000px;}
.y7{bottom:932.730000px;}
.y4a{bottom:934.710000px;}
.y87{bottom:937.230000px;}
.y34{bottom:938.490000px;}
.y52{bottom:952.350000px;}
.y91{bottom:954.870000px;}
.y9a{bottom:956.490000px;}
.y86{bottom:959.550000px;}
.y49{bottom:969.090000px;}
.y33{bottom:972.870000px;}
.y51{bottom:974.670000px;}
.y85{bottom:981.870000px;}
.y90{bottom:989.250000px;}
.y2{bottom:989.430000px;}
.y50{bottom:996.990000px;}
.y48{bottom:999.510000px;}
.y84{bottom:1004.370000px;}
.y32{bottom:1006.170000px;}
.y8f{bottom:1011.570000px;}
.y4f{bottom:1019.310000px;}
.y31{bottom:1024.710000px;}
.y83{bottom:1026.690000px;}
.y47{bottom:1027.050000px;}
.y8e{bottom:1033.890000px;}
.y99{bottom:1037.670000px;}
.y9d{bottom:1040.910000px;}
.y4e{bottom:1041.630000px;}
.y46{bottom:1054.590000px;}
.y30{bottom:1055.310000px;}
.y82{bottom:1060.890000px;}
.y8d{bottom:1072.950000px;}
.y4d{bottom:1078.890000px;}
.y45{bottom:1083.030000px;}
.y7b{bottom:1083.210000px;}
.y2f{bottom:1085.910000px;}
.y2b{bottom:1117.590000px;}
.y25{bottom:1135.080000px;}
.y1{bottom:1148.580000px;}
.y28{bottom:1175.940000px;}
.h18{height:30.600000px;}
.h14{height:32.940000px;}
.h15{height:33.683203px;}
.h17{height:36.768867px;}
.h16{height:39.420000px;}
.ha{height:40.320000px;}
.h1e{height:41.159180px;}
.h4{height:41.291016px;}
.hf{height:41.400000px;}
.h11{height:41.726953px;}
.hd{height:45.576000px;}
.h2{height:46.251562px;}
.he{height:49.809375px;}
.hc{height:50.273438px;}
.h13{height:50.650312px;}
.hb{height:54.140625px;}
.h1b{height:54.878906px;}
.h6{height:55.054688px;}
.h7{height:56.700000px;}
.h9{height:64.413984px;}
.h1c{height:67.897622px;}
.h1a{height:68.580000px;}
.h12{height:73.800000px;}
.h1d{height:82.582031px;}
.h8{height:119.468672px;}
.h19{height:137.340000px;}
.h3{height:145.656000px;}
.h5{height:146.996016px;}
.h10{height:165.270000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:108.180000px;}
.wc{width:129.636000px;}
.wf{width:139.176000px;}
.w9{width:146.736000px;}
.w7{width:169.230000px;}
.wb{width:240.870000px;}
.wa{width:241.275000px;}
.w4{width:301.395000px;}
.wd{width:359.715000px;}
.w8{width:417.315000px;}
.w5{width:421.635000px;}
.w6{width:722.310000px;}
.w3{width:723.030000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:5.400000px;}
.x3{left:8.100000px;}
.x13{left:56.385000px;}
.x12{left:57.825000px;}
.x10{left:75.645000px;}
.x5{left:80.490000px;}
.x2{left:84.960000px;}
.x15{left:93.780000px;}
.x8{left:95.255987px;}
.x26{left:117.395987px;}
.x7{left:131.790000px;}
.xe{left:137.370000px;}
.x1b{left:138.995987px;}
.x21{left:140.975987px;}
.x6{left:151.770000px;}
.x9{left:184.529987px;}
.x1{left:190.469987px;}
.x25{left:193.905000px;}
.x17{left:201.465000px;}
.x24{left:208.289987px;}
.x18{left:215.490000px;}
.xf{left:249.150000px;}
.x4{left:277.635000px;}
.x1f{left:292.934987px;}
.x1d{left:303.374987px;}
.x14{left:326.235000px;}
.xb{left:337.034987px;}
.xd{left:386.355000px;}
.x22{left:444.494987px;}
.xa{left:446.474987px;}
.x16{left:567.105000px;}
.x19{left:575.565000px;}
.x20{left:619.844987px;}
.x1e{left:646.664987px;}
.x11{left:666.465000px;}
.x1a{left:683.925000px;}
.x23{left:715.289987px;}
.x29{left:754.169987px;}
.x1c{left:765.329987px;}
.x2a{left:798.269987px;}
.x28{left:807.989987px;}
.x27{left:820.769987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.315733pt;}
.ls6{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.230933pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.416000pt;}
.ls12{letter-spacing:2.080000pt;}
.ls4{letter-spacing:4.810667pt;}
.ls0{letter-spacing:5.254827pt;}
.ls10{letter-spacing:7.872000pt;}
.lsf{letter-spacing:27.072000pt;}
.lsd{letter-spacing:74.368000pt;}
.ls1{letter-spacing:752.266667pt;}
.ws0{word-spacing:-40.376107pt;}
.ws2{word-spacing:-26.750507pt;}
.ws1{word-spacing:-21.939840pt;}
.ws4{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws8{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.440000pt;}
.wsa{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.049067pt;}
.ws7{word-spacing:-10.400000pt;}
.ws6{word-spacing:0.000000pt;}
._c{margin-left:-12.696320pt;}
._d{margin-left:-9.013333pt;}
._e{margin-left:-4.944853pt;}
._16{margin-left:-3.548160pt;}
._9{margin-left:-2.325333pt;}
._5{margin-left:-1.249920pt;}
._6{width:0.977493pt;}
._7{width:1.945173pt;}
._f{width:3.034880pt;}
._2{width:4.018560pt;}
._0{width:4.955520pt;}
._1{width:6.708907pt;}
._4{width:7.795627pt;}
._3{width:9.594880pt;}
._10{width:10.698240pt;}
._12{width:11.912747pt;}
._11{width:13.537920pt;}
._15{width:14.506667pt;}
._8{width:17.514667pt;}
._a{width:21.888000pt;}
._b{width:22.784000pt;}
._13{width:752.266667pt;}
._17{width:1255.946667pt;}
._14{width:1271.946667pt;}
.fsb{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs9{font-size:78.929661pt;}
.fsa{font-size:96.000000pt;}
.fs5{font-size:138.880000pt;}
.fs4{font-size:149.120000pt;}
.fs2{font-size:170.880000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:10.080000pt;}
.y8{bottom:10.400000pt;}
.y29{bottom:11.200000pt;}
.y26{bottom:12.000000pt;}
.yf{bottom:12.800000pt;}
.y14{bottom:12.960000pt;}
.y2d{bottom:14.720000pt;}
.y11{bottom:15.226667pt;}
.y41{bottom:15.520000pt;}
.y3c{bottom:15.680000pt;}
.y2a{bottom:16.960000pt;}
.y16{bottom:18.240000pt;}
.y6{bottom:18.400000pt;}
.y12{bottom:20.666667pt;}
.y3f{bottom:25.440000pt;}
.y27{bottom:27.680000pt;}
.y21{bottom:30.080000pt;}
.y42{bottom:30.880000pt;}
.y5{bottom:38.080000pt;}
.y40{bottom:46.080000pt;}
.y3b{bottom:46.240000pt;}
.y20{bottom:49.920000pt;}
.y38{bottom:56.000000pt;}
.y3d{bottom:61.440000pt;}
.y2e{bottom:63.552000pt;}
.y4{bottom:65.440000pt;}
.y1f{bottom:69.760000pt;}
.y3a{bottom:76.800000pt;}
.y2c{bottom:78.432000pt;}
.y1e{bottom:89.600000pt;}
.y39{bottom:107.200000pt;}
.y1d{bottom:109.480000pt;}
.y24{bottom:111.072000pt;}
.y3{bottom:113.280000pt;}
.y9c{bottom:120.192000pt;}
.y6a{bottom:123.232000pt;}
.y1c{bottom:129.320000pt;}
.y23{bottom:138.266667pt;}
.y69{bottom:146.746667pt;}
.y1b{bottom:150.746667pt;}
.y81{bottom:192.666667pt;}
.y9f{bottom:202.906667pt;}
.y80{bottom:223.226667pt;}
.y7f{bottom:237.146667pt;}
.y8c{bottom:258.786667pt;}
.y7e{bottom:260.546667pt;}
.y8b{bottom:289.506667pt;}
.y1a{bottom:299.586667pt;}
.y8a{bottom:313.026667pt;}
.y19{bottom:340.706667pt;}
.y7a{bottom:341.506667pt;}
.y18{bottom:356.706667pt;}
.y65{bottom:371.106667pt;}
.y79{bottom:372.066667pt;}
.y64{bottom:390.946667pt;}
.y78{bottom:391.906667pt;}
.y17{bottom:392.546667pt;}
.y63{bottom:410.786667pt;}
.y77{bottom:411.746667pt;}
.y9e{bottom:425.026667pt;}
.y15{bottom:428.386667pt;}
.y62{bottom:430.626667pt;}
.y76{bottom:442.306667pt;}
.y75{bottom:462.146667pt;}
.y13{bottom:464.226667pt;}
.y61{bottom:465.346667pt;}
.y74{bottom:481.986667pt;}
.y10{bottom:500.066667pt;}
.y73{bottom:501.853333pt;}
.y44{bottom:516.573333pt;}
.y60{bottom:518.493333pt;}
.y72{bottom:521.693333pt;}
.y43{bottom:531.933333pt;}
.y7d{bottom:536.253333pt;}
.y5f{bottom:538.333333pt;}
.ye{bottom:540.573333pt;}
.y71{bottom:541.533333pt;}
.y5e{bottom:558.173333pt;}
.y68{bottom:558.493333pt;}
.y7c{bottom:563.293333pt;}
.y3e{bottom:568.093333pt;}
.y70{bottom:572.093333pt;}
.y5d{bottom:578.013333pt;}
.y67{bottom:589.053333pt;}
.y6f{bottom:591.933333pt;}
.y5c{bottom:597.853333pt;}
.yd{bottom:598.333333pt;}
.y6e{bottom:611.773333pt;}
.y66{bottom:613.693333pt;}
.y5b{bottom:617.693333pt;}
.y37{bottom:629.373333pt;}
.y6d{bottom:631.613333pt;}
.yc{bottom:636.893333pt;}
.y5a{bottom:637.533333pt;}
.y59{bottom:657.373333pt;}
.y6c{bottom:662.333333pt;}
.y58{bottom:677.213333pt;}
.y98{bottom:677.693333pt;}
.yb{bottom:678.653333pt;}
.y6b{bottom:685.693333pt;}
.y57{bottom:697.213333pt;}
.y97{bottom:708.253333pt;}
.y56{bottom:717.053333pt;}
.ya{bottom:736.573333pt;}
.y55{bottom:736.893333pt;}
.y96{bottom:738.813333pt;}
.y36{bottom:753.573333pt;}
.y95{bottom:758.693333pt;}
.y4c{bottom:769.893333pt;}
.y54{bottom:771.653333pt;}
.y94{bottom:778.533333pt;}
.y89{bottom:782.693333pt;}
.y9{bottom:794.373333pt;}
.y4b{bottom:800.453333pt;}
.y35{bottom:803.493333pt;}
.y93{bottom:809.093333pt;}
.y88{bottom:813.253333pt;}
.y9b{bottom:823.013333pt;}
.y53{bottom:826.693333pt;}
.y92{bottom:828.933333pt;}
.y7{bottom:829.093333pt;}
.y4a{bottom:830.853333pt;}
.y87{bottom:833.093333pt;}
.y34{bottom:834.213333pt;}
.y52{bottom:846.533333pt;}
.y91{bottom:848.773333pt;}
.y9a{bottom:850.213333pt;}
.y86{bottom:852.933333pt;}
.y49{bottom:861.413333pt;}
.y33{bottom:864.773333pt;}
.y51{bottom:866.373333pt;}
.y85{bottom:872.773333pt;}
.y90{bottom:879.333333pt;}
.y2{bottom:879.493333pt;}
.y50{bottom:886.213333pt;}
.y48{bottom:888.453333pt;}
.y84{bottom:892.773333pt;}
.y32{bottom:894.373333pt;}
.y8f{bottom:899.173333pt;}
.y4f{bottom:906.053333pt;}
.y31{bottom:910.853333pt;}
.y83{bottom:912.613333pt;}
.y47{bottom:912.933333pt;}
.y8e{bottom:919.013333pt;}
.y99{bottom:922.373333pt;}
.y9d{bottom:925.253333pt;}
.y4e{bottom:925.893333pt;}
.y46{bottom:937.413333pt;}
.y30{bottom:938.053333pt;}
.y82{bottom:943.013333pt;}
.y8d{bottom:953.733333pt;}
.y4d{bottom:959.013333pt;}
.y45{bottom:962.693333pt;}
.y7b{bottom:962.853333pt;}
.y2f{bottom:965.253333pt;}
.y2b{bottom:993.413333pt;}
.y25{bottom:1008.960000pt;}
.y1{bottom:1020.960000pt;}
.y28{bottom:1045.280000pt;}
.h18{height:27.200000pt;}
.h14{height:29.280000pt;}
.h15{height:29.940625pt;}
.h17{height:32.683437pt;}
.h16{height:35.040000pt;}
.ha{height:35.840000pt;}
.h1e{height:36.585938pt;}
.h4{height:36.703125pt;}
.hf{height:36.800000pt;}
.h11{height:37.090625pt;}
.hd{height:40.512000pt;}
.h2{height:41.112500pt;}
.he{height:44.275000pt;}
.hc{height:44.687500pt;}
.h13{height:45.022500pt;}
.hb{height:48.125000pt;}
.h1b{height:48.781250pt;}
.h6{height:48.937500pt;}
.h7{height:50.400000pt;}
.h9{height:57.256875pt;}
.h1c{height:60.353442pt;}
.h1a{height:60.960000pt;}
.h12{height:65.600000pt;}
.h1d{height:73.406250pt;}
.h8{height:106.194375pt;}
.h19{height:122.080000pt;}
.h3{height:129.472000pt;}
.h5{height:130.663125pt;}
.h10{height:146.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:96.160000pt;}
.wc{width:115.232000pt;}
.wf{width:123.712000pt;}
.w9{width:130.432000pt;}
.w7{width:150.426667pt;}
.wb{width:214.106667pt;}
.wa{width:214.466667pt;}
.w4{width:267.906667pt;}
.wd{width:319.746667pt;}
.w8{width:370.946667pt;}
.w5{width:374.786667pt;}
.w6{width:642.053333pt;}
.w3{width:642.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:4.800000pt;}
.x3{left:7.200000pt;}
.x13{left:50.120000pt;}
.x12{left:51.400000pt;}
.x10{left:67.240000pt;}
.x5{left:71.546667pt;}
.x2{left:75.520000pt;}
.x15{left:83.360000pt;}
.x8{left:84.671988pt;}
.x26{left:104.351988pt;}
.x7{left:117.146667pt;}
.xe{left:122.106667pt;}
.x1b{left:123.551988pt;}
.x21{left:125.311988pt;}
.x6{left:134.906667pt;}
.x9{left:164.026655pt;}
.x1{left:169.306655pt;}
.x25{left:172.360000pt;}
.x17{left:179.080000pt;}
.x24{left:185.146655pt;}
.x18{left:191.546667pt;}
.xf{left:221.466667pt;}
.x4{left:246.786667pt;}
.x1f{left:260.386655pt;}
.x1d{left:269.666655pt;}
.x14{left:289.986667pt;}
.xb{left:299.586655pt;}
.xd{left:343.426667pt;}
.x22{left:395.106655pt;}
.xa{left:396.866655pt;}
.x16{left:504.093333pt;}
.x19{left:511.613333pt;}
.x20{left:550.973322pt;}
.x1e{left:574.813322pt;}
.x11{left:592.413333pt;}
.x1a{left:607.933333pt;}
.x23{left:635.813322pt;}
.x29{left:670.373322pt;}
.x1c{left:680.293322pt;}
.x2a{left:709.573322pt;}
.x28{left:718.213322pt;}
.x27{left:729.573322pt;}
}




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