
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_8dda70c2ba82a1499feca3e2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.934082;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_2cd78404944587f910e5d962.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_457eb08723e398745f60ea86.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_5d460f01d6be380409990eb4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_6627cba666402f389493a793.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f11276b6697c7cabe8768d3d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ab61d944cfbf5c25c015d790.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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_10909f8706766423f8ce3368.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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:ffa;src:url('chunks/assets/font_98d2d57e852fa46c22f0b2d3.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.lsa{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.180000px;}
.ls7{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.028080px;}
.lsc{letter-spacing:0.350400px;}
.ls9{letter-spacing:0.360000px;}
.ls2{letter-spacing:9.900000px;}
.lsb{letter-spacing:21.420000px;}
.lsd{letter-spacing:29.340000px;}
.lse{letter-spacing:41.381280px;}
.ls6{letter-spacing:68.220000px;}
.ls4{letter-spacing:78.300000px;}
.ls3{letter-spacing:79.200000px;}
.ls0{letter-spacing:197.429760px;}
.ls1{letter-spacing:1083.329760px;}
.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;}
}
.ws4{word-spacing:-21.420000px;}
.ws6{word-spacing:-21.410400px;}
.ws2{word-spacing:-21.060000px;}
.ws5{word-spacing:-20.700000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-0.066240px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-196.973760px;}
._26{margin-left:-9.687600px;}
._29{margin-left:-7.918560px;}
._27{margin-left:-6.149520px;}
._3{margin-left:-2.159280px;}
._1{margin-left:-1.126080px;}
._4{width:1.108560px;}
._14{width:2.262000px;}
._a{width:3.285120px;}
._2a{width:4.343280px;}
._17{width:5.353200px;}
._2c{width:6.419760px;}
._2b{width:7.466400px;}
._6{width:8.676720px;}
._5{width:9.909120px;}
._7{width:11.140560px;}
._1d{width:12.433920px;}
._1c{width:13.434000px;}
._32{width:15.310560px;}
._9{width:16.874400px;}
._8{width:17.996400px;}
._31{width:19.069200px;}
._13{width:22.815600px;}
._28{width:24.420960px;}
._23{width:26.566560px;}
._24{width:27.953760px;}
._20{width:29.355360px;}
._25{width:33.586560px;}
._f{width:36.644400px;}
._10{width:38.027520px;}
._16{width:39.730320px;}
._15{width:40.772160px;}
._d{width:42.150960px;}
._e{width:43.215120px;}
._1e{width:44.731440px;}
._1f{width:45.875280px;}
._22{width:46.877280px;}
._2d{width:50.501280px;}
._2e{width:51.595920px;}
._21{width:54.365760px;}
._19{width:57.269760px;}
._18{width:58.799520px;}
._b{width:60.737040px;}
._c{width:62.155680px;}
._1a{width:67.223520px;}
._1b{width:68.889360px;}
._12{width:77.664240px;}
._11{width:78.771360px;}
._30{width:86.501040px;}
._2f{width:87.747120px;}
._2{width:638.842080px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:5.760000px;}
.y3{bottom:6.120000px;}
.y60{bottom:24.300000px;}
.y2{bottom:26.100000px;}
.y37{bottom:27.900000px;}
.y4{bottom:28.980000px;}
.y3e{bottom:31.680000px;}
.y61{bottom:31.710000px;}
.y4a{bottom:31.716000px;}
.y30{bottom:31.860000px;}
.y32{bottom:32.040000px;}
.y4c{bottom:32.070000px;}
.y66{bottom:32.085000px;}
.y39{bottom:32.220000px;}
.y52{bottom:32.265000px;}
.y68{bottom:45.900000px;}
.y64{bottom:45.945000px;}
.y5c{bottom:46.080000px;}
.y59{bottom:49.860000px;}
.y3c{bottom:49.890000px;}
.y2e{bottom:50.040000px;}
.y35{bottom:50.220000px;}
.y53{bottom:50.265000px;}
.y2f{bottom:68.040000px;}
.y3d{bottom:68.070000px;}
.y34{bottom:68.220000px;}
.y65{bottom:68.265000px;}
.y41{bottom:68.400000px;}
.y51{bottom:68.445000px;}
.y2b{bottom:82.440000px;}
.y7d{bottom:85.860000px;}
.y5f{bottom:92.160000px;}
.y49{bottom:108.000000px;}
.y7b{bottom:111.600000px;}
.y23{bottom:118.620000px;}
.y7a{bottom:147.996000px;}
.y22{bottom:155.010000px;}
.y5e{bottom:160.950000px;}
.y48{bottom:176.790000px;}
.y5d{bottom:181.110000px;}
.y79{bottom:184.170000px;}
.y21{bottom:191.190000px;}
.y47{bottom:212.970000px;}
.y78{bottom:220.350000px;}
.y20{bottom:227.370000px;}
.y46{bottom:249.150000px;}
.y77{bottom:256.530000px;}
.y1f{bottom:263.550000px;}
.y5b{bottom:269.310000px;}
.y45{bottom:285.690000px;}
.y76{bottom:292.710000px;}
.y1e{bottom:299.910000px;}
.y44{bottom:321.870000px;}
.y75{bottom:329.070000px;}
.y1d{bottom:336.090000px;}
.y43{bottom:341.850000px;}
.y5a{bottom:357.510000px;}
.y74{bottom:365.250000px;}
.y2a{bottom:371.910000px;}
.y1c{bottom:372.270000px;}
.y42{bottom:393.735000px;}
.y73{bottom:401.475000px;}
.y1b{bottom:408.495000px;}
.y72{bottom:437.655000px;}
.y1a{bottom:444.855000px;}
.y40{bottom:445.755000px;}
.y71{bottom:474.015000px;}
.y19{bottom:481.035000px;}
.y70{bottom:510.195000px;}
.y18{bottom:517.215000px;}
.y3f{bottom:533.955000px;}
.y6f{bottom:546.375000px;}
.y17{bottom:553.395000px;}
.y6e{bottom:582.555000px;}
.y3b{bottom:585.975000px;}
.y16{bottom:589.755000px;}
.y6d{bottom:618.915000px;}
.y29{bottom:625.575000px;}
.y15{bottom:625.935000px;}
.y58{bottom:638.925000px;}
.y6c{bottom:654.765000px;}
.y14{bottom:662.145000px;}
.y57{bottom:675.285000px;}
.y3a{bottom:690.945000px;}
.y6b{bottom:691.305000px;}
.y13{bottom:698.325000px;}
.y38{bottom:711.105000px;}
.y56{bottom:711.465000px;}
.y6a{bottom:727.485000px;}
.y12{bottom:734.505000px;}
.y55{bottom:747.645000px;}
.y36{bottom:763.125000px;}
.y69{bottom:763.665000px;}
.y54{bottom:767.805000px;}
.y28{bottom:770.505000px;}
.y11{bottom:770.865000px;}
.y67{bottom:783.645000px;}
.y10{bottom:807.045000px;}
.y33{bottom:815.145000px;}
.yf{bottom:843.225000px;}
.y50{bottom:856.005000px;}
.y63{bottom:871.845000px;}
.ye{bottom:879.405000px;}
.y31{bottom:903.390000px;}
.yd{bottom:915.810000px;}
.y4f{bottom:944.250000px;}
.yc{bottom:951.990000px;}
.y2d{bottom:955.230000px;}
.y62{bottom:960.090000px;}
.yb{bottom:987.810000px;}
.y27{bottom:988.170000px;}
.y4e{bottom:996.270000px;}
.ya{bottom:1023.990000px;}
.y7c{bottom:1024.350000px;}
.y4d{bottom:1048.290000px;}
.y2c{bottom:1060.350000px;}
.y9{bottom:1060.710000px;}
.y8{bottom:1096.530000px;}
.y26{bottom:1096.890000px;}
.y7{bottom:1132.710000px;}
.y25{bottom:1133.070000px;}
.y4b{bottom:1136.490000px;}
.y6{bottom:1168.920000px;}
.y24{bottom:1169.280000px;}
.y1{bottom:1226.160000px;}
.h4{height:21.420000px;}
.ha{height:51.120000px;}
.he{height:51.156000px;}
.hc{height:51.300000px;}
.h10{height:51.336000px;}
.h7{height:59.066719px;}
.h8{height:59.436914px;}
.h2{height:65.884219px;}
.h3{height:70.628906px;}
.h6{height:82.676953px;}
.h5{height:84.898125px;}
.h11{height:86.585445px;}
.hf{height:87.300000px;}
.hb{height:87.336000px;}
.h9{height:87.480000px;}
.hd{height:87.516000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:49.536000px;}
.we{width:86.616000px;}
.w14{width:97.056000px;}
.wf{width:97.236000px;}
.w13{width:114.516000px;}
.w15{width:114.840000px;}
.w7{width:121.320000px;}
.w4{width:121.356000px;}
.w10{width:123.120000px;}
.w5{width:137.556000px;}
.w12{width:148.536000px;}
.wa{width:169.410000px;}
.w3{width:174.450000px;}
.wd{width:178.950000px;}
.w11{width:232.095000px;}
.wc{width:232.770000px;}
.w9{width:232.815000px;}
.w16{width:242.715000px;}
.w6{width:264.630000px;}
.w8{width:264.675000px;}
.wb{width:296.490000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:7.740000px;}
.x2d{left:8.820000px;}
.x2f{left:10.620000px;}
.x45{left:12.960000px;}
.x35{left:14.265000px;}
.x33{left:15.660000px;}
.x3e{left:17.145000px;}
.x38{left:18.360000px;}
.x4{left:20.550000px;}
.x29{left:22.140000px;}
.x3c{left:23.436000px;}
.x12{left:25.065000px;}
.x3f{left:26.280000px;}
.x15{left:27.720000px;}
.x28{left:29.340000px;}
.x13{left:33.165000px;}
.x2c{left:35.676000px;}
.x1b{left:36.936000px;}
.x1e{left:38.520000px;}
.x30{left:39.816000px;}
.x1f{left:41.256000px;}
.x16{left:42.480000px;}
.x39{left:44.100000px;}
.x41{left:46.620000px;}
.x18{left:48.465000px;}
.x1c{left:50.436000px;}
.x2e{left:52.200000px;}
.x2a{left:54.180000px;}
.x1d{left:55.620000px;}
.x19{left:58.140000px;}
.x20{left:63.210000px;}
.x24{left:65.910000px;}
.x49{left:68.085000px;}
.x40{left:70.065000px;}
.x32{left:71.130000px;}
.x48{left:73.665000px;}
.x31{left:74.910000px;}
.x10{left:88.020000px;}
.x3d{left:93.285000px;}
.x1{left:95.796000px;}
.x3b{left:97.605000px;}
.x47{left:98.685000px;}
.x2b{left:101.520000px;}
.x2{left:111.636000px;}
.x27{left:128.340000px;}
.x6{left:138.636000px;}
.x5{left:156.630000px;}
.xe{left:167.610000px;}
.x42{left:237.270000px;}
.xb{left:246.810000px;}
.x11{left:263.190000px;}
.x34{left:267.690000px;}
.x21{left:287.715000px;}
.xf{left:312.555000px;}
.x25{left:321.555000px;}
.xa{left:344.415000px;}
.x43{left:352.515000px;}
.x36{left:355.035000px;}
.xc{left:362.235000px;}
.x7{left:376.815000px;}
.x14{left:385.275000px;}
.x8{left:400.035000px;}
.x22{left:409.755000px;}
.x9{left:421.995000px;}
.x3{left:438.915000px;}
.x44{left:450.465000px;}
.x37{left:452.985000px;}
.x26{left:491.685000px;}
.x17{left:523.545000px;}
.x23{left:548.025000px;}
.x46{left:566.205000px;}
.x3a{left:576.825000px;}
.xd{left:755.970000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.024960pt;}
.lsc{letter-spacing:0.311467pt;}
.ls9{letter-spacing:0.320000pt;}
.ls2{letter-spacing:8.800000pt;}
.lsb{letter-spacing:19.040000pt;}
.lsd{letter-spacing:26.080000pt;}
.lse{letter-spacing:36.783360pt;}
.ls6{letter-spacing:60.640000pt;}
.ls4{letter-spacing:69.600000pt;}
.ls3{letter-spacing:70.400000pt;}
.ls0{letter-spacing:175.493120pt;}
.ls1{letter-spacing:962.959787pt;}
.ws4{word-spacing:-19.040000pt;}
.ws6{word-spacing:-19.031467pt;}
.ws2{word-spacing:-18.720000pt;}
.ws5{word-spacing:-18.400000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-0.058880pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-175.087787pt;}
._26{margin-left:-8.611200pt;}
._29{margin-left:-7.038720pt;}
._27{margin-left:-5.466240pt;}
._3{margin-left:-1.919360pt;}
._1{margin-left:-1.000960pt;}
._4{width:0.985387pt;}
._14{width:2.010667pt;}
._a{width:2.920107pt;}
._2a{width:3.860693pt;}
._17{width:4.758400pt;}
._2c{width:5.706453pt;}
._2b{width:6.636800pt;}
._6{width:7.712640pt;}
._5{width:8.808107pt;}
._7{width:9.902720pt;}
._1d{width:11.052373pt;}
._1c{width:11.941333pt;}
._32{width:13.609387pt;}
._9{width:14.999467pt;}
._8{width:15.996800pt;}
._31{width:16.950400pt;}
._13{width:20.280533pt;}
._28{width:21.707520pt;}
._23{width:23.614720pt;}
._24{width:24.847787pt;}
._20{width:26.093653pt;}
._25{width:29.854720pt;}
._f{width:32.572800pt;}
._10{width:33.802240pt;}
._16{width:35.315840pt;}
._15{width:36.241920pt;}
._d{width:37.467520pt;}
._e{width:38.413440pt;}
._1e{width:39.761280pt;}
._1f{width:40.778027pt;}
._22{width:41.668693pt;}
._2d{width:44.890027pt;}
._2e{width:45.863040pt;}
._21{width:48.325120pt;}
._19{width:50.906453pt;}
._18{width:52.266240pt;}
._b{width:53.988480pt;}
._c{width:55.249493pt;}
._1a{width:59.754240pt;}
._1b{width:61.234987pt;}
._12{width:69.034880pt;}
._11{width:70.018987pt;}
._30{width:76.889813pt;}
._2f{width:77.997440pt;}
._2{width:567.859627pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:5.120000pt;}
.y3{bottom:5.440000pt;}
.y60{bottom:21.600000pt;}
.y2{bottom:23.200000pt;}
.y37{bottom:24.800000pt;}
.y4{bottom:25.760000pt;}
.y3e{bottom:28.160000pt;}
.y61{bottom:28.186667pt;}
.y4a{bottom:28.192000pt;}
.y30{bottom:28.320000pt;}
.y32{bottom:28.480000pt;}
.y4c{bottom:28.506667pt;}
.y66{bottom:28.520000pt;}
.y39{bottom:28.640000pt;}
.y52{bottom:28.680000pt;}
.y68{bottom:40.800000pt;}
.y64{bottom:40.840000pt;}
.y5c{bottom:40.960000pt;}
.y59{bottom:44.320000pt;}
.y3c{bottom:44.346667pt;}
.y2e{bottom:44.480000pt;}
.y35{bottom:44.640000pt;}
.y53{bottom:44.680000pt;}
.y2f{bottom:60.480000pt;}
.y3d{bottom:60.506667pt;}
.y34{bottom:60.640000pt;}
.y65{bottom:60.680000pt;}
.y41{bottom:60.800000pt;}
.y51{bottom:60.840000pt;}
.y2b{bottom:73.280000pt;}
.y7d{bottom:76.320000pt;}
.y5f{bottom:81.920000pt;}
.y49{bottom:96.000000pt;}
.y7b{bottom:99.200000pt;}
.y23{bottom:105.440000pt;}
.y7a{bottom:131.552000pt;}
.y22{bottom:137.786667pt;}
.y5e{bottom:143.066667pt;}
.y48{bottom:157.146667pt;}
.y5d{bottom:160.986667pt;}
.y79{bottom:163.706667pt;}
.y21{bottom:169.946667pt;}
.y47{bottom:189.306667pt;}
.y78{bottom:195.866667pt;}
.y20{bottom:202.106667pt;}
.y46{bottom:221.466667pt;}
.y77{bottom:228.026667pt;}
.y1f{bottom:234.266667pt;}
.y5b{bottom:239.386667pt;}
.y45{bottom:253.946667pt;}
.y76{bottom:260.186667pt;}
.y1e{bottom:266.586667pt;}
.y44{bottom:286.106667pt;}
.y75{bottom:292.506667pt;}
.y1d{bottom:298.746667pt;}
.y43{bottom:303.866667pt;}
.y5a{bottom:317.786667pt;}
.y74{bottom:324.666667pt;}
.y2a{bottom:330.586667pt;}
.y1c{bottom:330.906667pt;}
.y42{bottom:349.986667pt;}
.y73{bottom:356.866667pt;}
.y1b{bottom:363.106667pt;}
.y72{bottom:389.026667pt;}
.y1a{bottom:395.426667pt;}
.y40{bottom:396.226667pt;}
.y71{bottom:421.346667pt;}
.y19{bottom:427.586667pt;}
.y70{bottom:453.506667pt;}
.y18{bottom:459.746667pt;}
.y3f{bottom:474.626667pt;}
.y6f{bottom:485.666667pt;}
.y17{bottom:491.906667pt;}
.y6e{bottom:517.826667pt;}
.y3b{bottom:520.866667pt;}
.y16{bottom:524.226667pt;}
.y6d{bottom:550.146667pt;}
.y29{bottom:556.066667pt;}
.y15{bottom:556.386667pt;}
.y58{bottom:567.933333pt;}
.y6c{bottom:582.013333pt;}
.y14{bottom:588.573333pt;}
.y57{bottom:600.253333pt;}
.y3a{bottom:614.173333pt;}
.y6b{bottom:614.493333pt;}
.y13{bottom:620.733333pt;}
.y38{bottom:632.093333pt;}
.y56{bottom:632.413333pt;}
.y6a{bottom:646.653333pt;}
.y12{bottom:652.893333pt;}
.y55{bottom:664.573333pt;}
.y36{bottom:678.333333pt;}
.y69{bottom:678.813333pt;}
.y54{bottom:682.493333pt;}
.y28{bottom:684.893333pt;}
.y11{bottom:685.213333pt;}
.y67{bottom:696.573333pt;}
.y10{bottom:717.373333pt;}
.y33{bottom:724.573333pt;}
.yf{bottom:749.533333pt;}
.y50{bottom:760.893333pt;}
.y63{bottom:774.973333pt;}
.ye{bottom:781.693333pt;}
.y31{bottom:803.013333pt;}
.yd{bottom:814.053333pt;}
.y4f{bottom:839.333333pt;}
.yc{bottom:846.213333pt;}
.y2d{bottom:849.093333pt;}
.y62{bottom:853.413333pt;}
.yb{bottom:878.053333pt;}
.y27{bottom:878.373333pt;}
.y4e{bottom:885.573333pt;}
.ya{bottom:910.213333pt;}
.y7c{bottom:910.533333pt;}
.y4d{bottom:931.813333pt;}
.y2c{bottom:942.533333pt;}
.y9{bottom:942.853333pt;}
.y8{bottom:974.693333pt;}
.y26{bottom:975.013333pt;}
.y7{bottom:1006.853333pt;}
.y25{bottom:1007.173333pt;}
.y4b{bottom:1010.213333pt;}
.y6{bottom:1039.040000pt;}
.y24{bottom:1039.360000pt;}
.y1{bottom:1089.920000pt;}
.h4{height:19.040000pt;}
.ha{height:45.440000pt;}
.he{height:45.472000pt;}
.hc{height:45.600000pt;}
.h10{height:45.632000pt;}
.h7{height:52.503750pt;}
.h8{height:52.832812pt;}
.h2{height:58.563750pt;}
.h3{height:62.781250pt;}
.h6{height:73.490625pt;}
.h5{height:75.465000pt;}
.h11{height:76.964840pt;}
.hf{height:77.600000pt;}
.hb{height:77.632000pt;}
.h9{height:77.760000pt;}
.hd{height:77.792000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.032000pt;}
.we{width:76.992000pt;}
.w14{width:86.272000pt;}
.wf{width:86.432000pt;}
.w13{width:101.792000pt;}
.w15{width:102.080000pt;}
.w7{width:107.840000pt;}
.w4{width:107.872000pt;}
.w10{width:109.440000pt;}
.w5{width:122.272000pt;}
.w12{width:132.032000pt;}
.wa{width:150.586667pt;}
.w3{width:155.066667pt;}
.wd{width:159.066667pt;}
.w11{width:206.306667pt;}
.wc{width:206.906667pt;}
.w9{width:206.946667pt;}
.w16{width:215.746667pt;}
.w6{width:235.226667pt;}
.w8{width:235.266667pt;}
.wb{width:263.546667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:6.880000pt;}
.x2d{left:7.840000pt;}
.x2f{left:9.440000pt;}
.x45{left:11.520000pt;}
.x35{left:12.680000pt;}
.x33{left:13.920000pt;}
.x3e{left:15.240000pt;}
.x38{left:16.320000pt;}
.x4{left:18.266667pt;}
.x29{left:19.680000pt;}
.x3c{left:20.832000pt;}
.x12{left:22.280000pt;}
.x3f{left:23.360000pt;}
.x15{left:24.640000pt;}
.x28{left:26.080000pt;}
.x13{left:29.480000pt;}
.x2c{left:31.712000pt;}
.x1b{left:32.832000pt;}
.x1e{left:34.240000pt;}
.x30{left:35.392000pt;}
.x1f{left:36.672000pt;}
.x16{left:37.760000pt;}
.x39{left:39.200000pt;}
.x41{left:41.440000pt;}
.x18{left:43.080000pt;}
.x1c{left:44.832000pt;}
.x2e{left:46.400000pt;}
.x2a{left:48.160000pt;}
.x1d{left:49.440000pt;}
.x19{left:51.680000pt;}
.x20{left:56.186667pt;}
.x24{left:58.586667pt;}
.x49{left:60.520000pt;}
.x40{left:62.280000pt;}
.x32{left:63.226667pt;}
.x48{left:65.480000pt;}
.x31{left:66.586667pt;}
.x10{left:78.240000pt;}
.x3d{left:82.920000pt;}
.x1{left:85.152000pt;}
.x3b{left:86.760000pt;}
.x47{left:87.720000pt;}
.x2b{left:90.240000pt;}
.x2{left:99.232000pt;}
.x27{left:114.080000pt;}
.x6{left:123.232000pt;}
.x5{left:139.226667pt;}
.xe{left:148.986667pt;}
.x42{left:210.906667pt;}
.xb{left:219.386667pt;}
.x11{left:233.946667pt;}
.x34{left:237.946667pt;}
.x21{left:255.746667pt;}
.xf{left:277.826667pt;}
.x25{left:285.826667pt;}
.xa{left:306.146667pt;}
.x43{left:313.346667pt;}
.x36{left:315.586667pt;}
.xc{left:321.986667pt;}
.x7{left:334.946667pt;}
.x14{left:342.466667pt;}
.x8{left:355.586667pt;}
.x22{left:364.226667pt;}
.x9{left:375.106667pt;}
.x3{left:390.146667pt;}
.x44{left:400.413333pt;}
.x37{left:402.653333pt;}
.x26{left:437.053333pt;}
.x17{left:465.373333pt;}
.x23{left:487.133333pt;}
.x46{left:503.293333pt;}
.x3a{left:512.733333pt;}
.xd{left:671.973333pt;}
}




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