
    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_8d5893d424d4af04f1b26a3e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.884277;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_f0d49b39a458f9faea224cc3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_fa797353d1b10f432e4adac1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.851562;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_a647025e8695c36e2ba1eeeb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.123047;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_3733dc839e083fb78d5936ab.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.102051;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_0b0062c9598b29aa4ce61062.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.927734;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_d1db1fc52402a55f31cc66be.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.998047;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_e7de94fb04ca98d4f591b284.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.123047;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:ff9;src:url('chunks/assets/font_cc7e9abaafbc83873d2a0825.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.102051;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;}
.v1{vertical-align:33.000000px;}
.lsb{letter-spacing:-1.140000px;}
.ls18{letter-spacing:-1.032000px;}
.ls4{letter-spacing:-0.960000px;}
.ls14{letter-spacing:-0.492000px;}
.ls3{letter-spacing:-0.312000px;}
.ls15{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.024000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.024000px;}
.ls7{letter-spacing:0.228000px;}
.ls8{letter-spacing:0.300000px;}
.ls9{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.468000px;}
.lsa{letter-spacing:0.516000px;}
.ls1{letter-spacing:0.540000px;}
.ls0{letter-spacing:0.576000px;}
.ls11{letter-spacing:0.660000px;}
.ls13{letter-spacing:10.812000px;}
.lsd{letter-spacing:10.962000px;}
.ls17{letter-spacing:12.312000px;}
.lsf{letter-spacing:12.462000px;}
.ls16{letter-spacing:19.812000px;}
.lse{letter-spacing:19.962000px;}
.ls12{letter-spacing:21.312000px;}
.lsc{letter-spacing:21.462000px;}
.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;}
}
.ws2{word-spacing:-96.000000px;}
.ws1{word-spacing:-26.688000px;}
.ws0{word-spacing:-26.376000px;}
.ws5{word-spacing:-24.540000px;}
.ws7{word-spacing:-24.516000px;}
.wsa{word-spacing:-24.468000px;}
.ws9{word-spacing:-24.024000px;}
.ws3{word-spacing:-24.000000px;}
.wse{word-spacing:-23.976000px;}
.wsc{word-spacing:-23.508000px;}
.ws4{word-spacing:-23.040000px;}
.ws8{word-spacing:-15.360000px;}
.wsb{word-spacing:-15.000000px;}
.wsd{word-spacing:-14.106000px;}
.ws6{word-spacing:0.000000px;}
._26{margin-left:-7.224000px;}
._23{margin-left:-5.676000px;}
._3{margin-left:-4.596000px;}
._6{margin-left:-3.042000px;}
._1{margin-left:-1.524000px;}
._0{width:1.140000px;}
._2{width:2.310000px;}
._8{width:3.354000px;}
._9{width:4.896000px;}
._b{width:6.156000px;}
._4{width:7.296000px;}
._5{width:8.364000px;}
._7{width:9.906000px;}
._c{width:11.820000px;}
._d{width:13.344000px;}
._e{width:14.388000px;}
._20{width:15.390000px;}
._18{width:16.524000px;}
._21{width:17.850000px;}
._13{width:19.134000px;}
._a{width:21.036000px;}
._19{width:22.728000px;}
._f{width:26.028000px;}
._1f{width:27.978000px;}
._12{width:29.046000px;}
._2a{width:30.468000px;}
._27{width:32.070000px;}
._25{width:33.900000px;}
._11{width:35.556000px;}
._10{width:36.972000px;}
._1e{width:38.214000px;}
._17{width:39.450000px;}
._16{width:41.454000px;}
._29{width:46.452000px;}
._1c{width:47.700000px;}
._1d{width:48.852000px;}
._22{width:50.172000px;}
._15{width:51.834000px;}
._14{width:53.280000px;}
._1a{width:55.296000px;}
._1b{width:58.542000px;}
._2c{width:62.184000px;}
._2b{width:63.264000px;}
._24{width:64.362000px;}
._28{width:2175.870000px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(14,112,152);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:39.000000px;}
.fs5{font-size:48.000000px;}
.fs2{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:4.912500px;}
.y2{bottom:52.500000px;}
.y1{bottom:57.787500px;}
.y53{bottom:111.787500px;}
.y3b{bottom:117.037500px;}
.y6e{bottom:120.787500px;}
.y8e{bottom:126.037500px;}
.y52{bottom:128.662500px;}
.y7a{bottom:135.037500px;}
.y6d{bottom:137.662500px;}
.y51{bottom:145.537500px;}
.y50{bottom:149.287500px;}
.y7f{bottom:150.045000px;}
.y6c{bottom:154.545000px;}
.y21{bottom:156.795000px;}
.y3a{bottom:157.545000px;}
.y83{bottom:162.030000px;}
.y4f{bottom:162.405000px;}
.y4e{bottom:166.170000px;}
.y8d{bottom:166.545000px;}
.y7e{bottom:167.295000px;}
.y6b{bottom:171.420000px;}
.y6a{bottom:175.155000px;}
.y79{bottom:175.530000px;}
.y4d{bottom:181.575000px;}
.y69{bottom:189.075000px;}
.y20{bottom:197.325000px;}
.y39{bottom:198.075000px;}
.y82{bottom:202.575000px;}
.y8c{bottom:207.075000px;}
.y78{bottom:216.075000px;}
.y7d{bottom:234.075000px;}
.y1f{bottom:237.825000px;}
.y38{bottom:238.575000px;}
.y81{bottom:243.075000px;}
.y68{bottom:247.575000px;}
.y77{bottom:256.575000px;}
.y7c{bottom:274.575000px;}
.y1e{bottom:278.325000px;}
.y37{bottom:279.075000px;}
.y80{bottom:283.575000px;}
.y67{bottom:297.075000px;}
.y1d{bottom:318.870000px;}
.y36{bottom:324.105000px;}
.y66{bottom:337.605000px;}
.y4b{bottom:342.120000px;}
.y8b{bottom:346.620000px;}
.y4c{bottom:350.370000px;}
.y1c{bottom:359.370000px;}
.y35{bottom:364.605000px;}
.y65{bottom:378.105000px;}
.y4a{bottom:382.620000px;}
.y8a{bottom:387.120000px;}
.y1b{bottom:399.870000px;}
.y34{bottom:405.120000px;}
.y64{bottom:418.620000px;}
.y49{bottom:423.120000px;}
.y89{bottom:427.620000px;}
.y1a{bottom:440.400000px;}
.y33{bottom:445.650000px;}
.y63{bottom:459.150000px;}
.y47{bottom:463.650000px;}
.y88{bottom:468.150000px;}
.y48{bottom:471.900000px;}
.y19{bottom:480.900000px;}
.y32{bottom:486.150000px;}
.y62{bottom:499.650000px;}
.y46{bottom:504.150000px;}
.y87{bottom:508.650000px;}
.y18{bottom:521.400000px;}
.y31{bottom:526.650000px;}
.y61{bottom:540.150000px;}
.y45{bottom:544.650000px;}
.y76{bottom:549.150000px;}
.y86{bottom:558.150000px;}
.y17{bottom:561.900000px;}
.y30{bottom:567.195000px;}
.y60{bottom:580.695000px;}
.y75{bottom:589.695000px;}
.y44{bottom:594.195000px;}
.y85{bottom:598.695000px;}
.y16{bottom:602.445000px;}
.y2f{bottom:607.695000px;}
.y5f{bottom:621.195000px;}
.y74{bottom:630.195000px;}
.y43{bottom:634.695000px;}
.y84{bottom:639.195000px;}
.y15{bottom:642.945000px;}
.y2e{bottom:648.195000px;}
.y5e{bottom:661.695000px;}
.y73{bottom:670.695000px;}
.y42{bottom:675.195000px;}
.y14{bottom:683.445000px;}
.y2d{bottom:688.695000px;}
.y5d{bottom:702.225000px;}
.y13{bottom:710.475000px;}
.y72{bottom:711.225000px;}
.y41{bottom:724.725000px;}
.y2c{bottom:729.225000px;}
.y12{bottom:740.100000px;}
.y5c{bottom:742.725000px;}
.y71{bottom:751.725000px;}
.y40{bottom:765.225000px;}
.y11{bottom:769.350000px;}
.y2b{bottom:769.725000px;}
.y5b{bottom:792.225000px;}
.y10{bottom:796.350000px;}
.y3f{bottom:805.725000px;}
.y2a{bottom:810.225000px;}
.yf{bottom:823.380000px;}
.y5a{bottom:832.770000px;}
.y70{bottom:841.755000px;}
.y3e{bottom:846.270000px;}
.ye{bottom:850.380000px;}
.y29{bottom:850.755000px;}
.y59{bottom:873.270000px;}
.yd{bottom:877.380000px;}
.y8f{bottom:880.005000px;}
.y6f{bottom:882.255000px;}
.y3d{bottom:886.755000px;}
.y28{bottom:891.255000px;}
.yc{bottom:904.380000px;}
.y58{bottom:922.755000px;}
.y3c{bottom:927.255000px;}
.yb{bottom:931.380000px;}
.y27{bottom:931.755000px;}
.ya{bottom:958.425000px;}
.y57{bottom:963.300000px;}
.y26{bottom:972.300000px;}
.y9{bottom:985.425000px;}
.y56{bottom:1003.800000px;}
.y25{bottom:1012.800000px;}
.y8{bottom:1015.050000px;}
.y7b{bottom:1021.050000px;}
.y55{bottom:1044.300000px;}
.y7{bottom:1046.175000px;}
.y24{bottom:1053.300000px;}
.y6{bottom:1076.955000px;}
.y23{bottom:1093.830000px;}
.y54{bottom:1102.080000px;}
.y5{bottom:1105.080000px;}
.y4{bottom:1132.455000px;}
.y22{bottom:1134.330000px;}
.h2{height:22.162500px;}
.h9{height:32.868164px;}
.hb{height:33.534668px;}
.hc{height:40.453125px;}
.h8{height:49.012207px;}
.ha{height:51.591797px;}
.h1{height:54.597656px;}
.hd{height:60.679688px;}
.h7{height:65.015625px;}
.h4{height:72.796875px;}
.h6{height:81.187500px;}
.h5{height:82.546875px;}
.h3{height:100.125000px;}
.h0{height:1263.000000px;}
.w2{width:9.000000px;}
.w3{width:892.499973px;}
.w1{width:892.499987px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:81.037487px;}
.x8{left:86.287487px;}
.xe{left:87.787487px;}
.xb{left:108.037487px;}
.xc{left:135.074987px;}
.xf{left:162.074987px;}
.x5{left:192.449973px;}
.x6{left:199.199987px;}
.x7{left:297.119987px;}
.x3{left:491.444973px;}
.x4{left:498.224987px;}
.x9{left:799.079973px;}
.x2{left:802.845000px;}
.xa{left:805.829987px;}
.xd{left:811.844987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.333333pt;}
.lsb{letter-spacing:-1.013333pt;}
.ls18{letter-spacing:-0.917333pt;}
.ls4{letter-spacing:-0.853333pt;}
.ls14{letter-spacing:-0.437333pt;}
.ls3{letter-spacing:-0.277333pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.021333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.021333pt;}
.ls7{letter-spacing:0.202667pt;}
.ls8{letter-spacing:0.266667pt;}
.ls9{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.416000pt;}
.lsa{letter-spacing:0.458667pt;}
.ls1{letter-spacing:0.480000pt;}
.ls0{letter-spacing:0.512000pt;}
.ls11{letter-spacing:0.586667pt;}
.ls13{letter-spacing:9.610667pt;}
.lsd{letter-spacing:9.744000pt;}
.ls17{letter-spacing:10.944000pt;}
.lsf{letter-spacing:11.077333pt;}
.ls16{letter-spacing:17.610667pt;}
.lse{letter-spacing:17.744000pt;}
.ls12{letter-spacing:18.944000pt;}
.lsc{letter-spacing:19.077333pt;}
.ws2{word-spacing:-85.333333pt;}
.ws1{word-spacing:-23.722667pt;}
.ws0{word-spacing:-23.445333pt;}
.ws5{word-spacing:-21.813333pt;}
.ws7{word-spacing:-21.792000pt;}
.wsa{word-spacing:-21.749333pt;}
.ws9{word-spacing:-21.354667pt;}
.ws3{word-spacing:-21.333333pt;}
.wse{word-spacing:-21.312000pt;}
.wsc{word-spacing:-20.896000pt;}
.ws4{word-spacing:-20.480000pt;}
.ws8{word-spacing:-13.653333pt;}
.wsb{word-spacing:-13.333333pt;}
.wsd{word-spacing:-12.538667pt;}
.ws6{word-spacing:0.000000pt;}
._26{margin-left:-6.421333pt;}
._23{margin-left:-5.045333pt;}
._3{margin-left:-4.085333pt;}
._6{margin-left:-2.704000pt;}
._1{margin-left:-1.354667pt;}
._0{width:1.013333pt;}
._2{width:2.053333pt;}
._8{width:2.981333pt;}
._9{width:4.352000pt;}
._b{width:5.472000pt;}
._4{width:6.485333pt;}
._5{width:7.434667pt;}
._7{width:8.805333pt;}
._c{width:10.506667pt;}
._d{width:11.861333pt;}
._e{width:12.789333pt;}
._20{width:13.680000pt;}
._18{width:14.688000pt;}
._21{width:15.866667pt;}
._13{width:17.008000pt;}
._a{width:18.698667pt;}
._19{width:20.202667pt;}
._f{width:23.136000pt;}
._1f{width:24.869333pt;}
._12{width:25.818667pt;}
._2a{width:27.082667pt;}
._27{width:28.506667pt;}
._25{width:30.133333pt;}
._11{width:31.605333pt;}
._10{width:32.864000pt;}
._1e{width:33.968000pt;}
._17{width:35.066667pt;}
._16{width:36.848000pt;}
._29{width:41.290667pt;}
._1c{width:42.400000pt;}
._1d{width:43.424000pt;}
._22{width:44.597333pt;}
._15{width:46.074667pt;}
._14{width:47.360000pt;}
._1a{width:49.152000pt;}
._1b{width:52.037333pt;}
._2c{width:55.274667pt;}
._2b{width:56.234667pt;}
._24{width:57.210667pt;}
._28{width:1934.106667pt;}
.fs3{font-size:34.666667pt;}
.fs5{font-size:42.666667pt;}
.fs2{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:4.366667pt;}
.y2{bottom:46.666667pt;}
.y1{bottom:51.366667pt;}
.y53{bottom:99.366667pt;}
.y3b{bottom:104.033333pt;}
.y6e{bottom:107.366667pt;}
.y8e{bottom:112.033333pt;}
.y52{bottom:114.366667pt;}
.y7a{bottom:120.033333pt;}
.y6d{bottom:122.366667pt;}
.y51{bottom:129.366667pt;}
.y50{bottom:132.700000pt;}
.y7f{bottom:133.373333pt;}
.y6c{bottom:137.373333pt;}
.y21{bottom:139.373333pt;}
.y3a{bottom:140.040000pt;}
.y83{bottom:144.026667pt;}
.y4f{bottom:144.360000pt;}
.y4e{bottom:147.706667pt;}
.y8d{bottom:148.040000pt;}
.y7e{bottom:148.706667pt;}
.y6b{bottom:152.373333pt;}
.y6a{bottom:155.693333pt;}
.y79{bottom:156.026667pt;}
.y4d{bottom:161.400000pt;}
.y69{bottom:168.066667pt;}
.y20{bottom:175.400000pt;}
.y39{bottom:176.066667pt;}
.y82{bottom:180.066667pt;}
.y8c{bottom:184.066667pt;}
.y78{bottom:192.066667pt;}
.y7d{bottom:208.066667pt;}
.y1f{bottom:211.400000pt;}
.y38{bottom:212.066667pt;}
.y81{bottom:216.066667pt;}
.y68{bottom:220.066667pt;}
.y77{bottom:228.066667pt;}
.y7c{bottom:244.066667pt;}
.y1e{bottom:247.400000pt;}
.y37{bottom:248.066667pt;}
.y80{bottom:252.066667pt;}
.y67{bottom:264.066667pt;}
.y1d{bottom:283.440000pt;}
.y36{bottom:288.093333pt;}
.y66{bottom:300.093333pt;}
.y4b{bottom:304.106667pt;}
.y8b{bottom:308.106667pt;}
.y4c{bottom:311.440000pt;}
.y1c{bottom:319.440000pt;}
.y35{bottom:324.093333pt;}
.y65{bottom:336.093333pt;}
.y4a{bottom:340.106667pt;}
.y8a{bottom:344.106667pt;}
.y1b{bottom:355.440000pt;}
.y34{bottom:360.106667pt;}
.y64{bottom:372.106667pt;}
.y49{bottom:376.106667pt;}
.y89{bottom:380.106667pt;}
.y1a{bottom:391.466667pt;}
.y33{bottom:396.133333pt;}
.y63{bottom:408.133333pt;}
.y47{bottom:412.133333pt;}
.y88{bottom:416.133333pt;}
.y48{bottom:419.466667pt;}
.y19{bottom:427.466667pt;}
.y32{bottom:432.133333pt;}
.y62{bottom:444.133333pt;}
.y46{bottom:448.133333pt;}
.y87{bottom:452.133333pt;}
.y18{bottom:463.466667pt;}
.y31{bottom:468.133333pt;}
.y61{bottom:480.133333pt;}
.y45{bottom:484.133333pt;}
.y76{bottom:488.133333pt;}
.y86{bottom:496.133333pt;}
.y17{bottom:499.466667pt;}
.y30{bottom:504.173333pt;}
.y60{bottom:516.173333pt;}
.y75{bottom:524.173333pt;}
.y44{bottom:528.173333pt;}
.y85{bottom:532.173333pt;}
.y16{bottom:535.506667pt;}
.y2f{bottom:540.173333pt;}
.y5f{bottom:552.173333pt;}
.y74{bottom:560.173333pt;}
.y43{bottom:564.173333pt;}
.y84{bottom:568.173333pt;}
.y15{bottom:571.506667pt;}
.y2e{bottom:576.173333pt;}
.y5e{bottom:588.173333pt;}
.y73{bottom:596.173333pt;}
.y42{bottom:600.173333pt;}
.y14{bottom:607.506667pt;}
.y2d{bottom:612.173333pt;}
.y5d{bottom:624.200000pt;}
.y13{bottom:631.533333pt;}
.y72{bottom:632.200000pt;}
.y41{bottom:644.200000pt;}
.y2c{bottom:648.200000pt;}
.y12{bottom:657.866667pt;}
.y5c{bottom:660.200000pt;}
.y71{bottom:668.200000pt;}
.y40{bottom:680.200000pt;}
.y11{bottom:683.866667pt;}
.y2b{bottom:684.200000pt;}
.y5b{bottom:704.200000pt;}
.y10{bottom:707.866667pt;}
.y3f{bottom:716.200000pt;}
.y2a{bottom:720.200000pt;}
.yf{bottom:731.893333pt;}
.y5a{bottom:740.240000pt;}
.y70{bottom:748.226667pt;}
.y3e{bottom:752.240000pt;}
.ye{bottom:755.893333pt;}
.y29{bottom:756.226667pt;}
.y59{bottom:776.240000pt;}
.yd{bottom:779.893333pt;}
.y8f{bottom:782.226667pt;}
.y6f{bottom:784.226667pt;}
.y3d{bottom:788.226667pt;}
.y28{bottom:792.226667pt;}
.yc{bottom:803.893333pt;}
.y58{bottom:820.226667pt;}
.y3c{bottom:824.226667pt;}
.yb{bottom:827.893333pt;}
.y27{bottom:828.226667pt;}
.ya{bottom:851.933333pt;}
.y57{bottom:856.266667pt;}
.y26{bottom:864.266667pt;}
.y9{bottom:875.933333pt;}
.y56{bottom:892.266667pt;}
.y25{bottom:900.266667pt;}
.y8{bottom:902.266667pt;}
.y7b{bottom:907.600000pt;}
.y55{bottom:928.266667pt;}
.y7{bottom:929.933333pt;}
.y24{bottom:936.266667pt;}
.y6{bottom:957.293333pt;}
.y23{bottom:972.293333pt;}
.y54{bottom:979.626667pt;}
.y5{bottom:982.293333pt;}
.y4{bottom:1006.626667pt;}
.y22{bottom:1008.293333pt;}
.h2{height:19.700000pt;}
.h9{height:29.216146pt;}
.hb{height:29.808594pt;}
.hc{height:35.958333pt;}
.h8{height:43.566406pt;}
.ha{height:45.859375pt;}
.h1{height:48.531250pt;}
.hd{height:53.937500pt;}
.h7{height:57.791667pt;}
.h4{height:64.708333pt;}
.h6{height:72.166667pt;}
.h5{height:73.375000pt;}
.h3{height:89.000000pt;}
.h0{height:1122.666667pt;}
.w2{width:8.000000pt;}
.w3{width:793.333310pt;}
.w1{width:793.333322pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:72.033322pt;}
.x8{left:76.699988pt;}
.xe{left:78.033322pt;}
.xb{left:96.033322pt;}
.xc{left:120.066655pt;}
.xf{left:144.066655pt;}
.x5{left:171.066643pt;}
.x6{left:177.066655pt;}
.x7{left:264.106655pt;}
.x3{left:436.839976pt;}
.x4{left:442.866655pt;}
.x9{left:710.293310pt;}
.x2{left:713.640000pt;}
.xa{left:716.293322pt;}
.xd{left:721.639988pt;}
}




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