
    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_2e97a3ea82987c0f9a70f39b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_ef9ca24937b24600a9bd83e8.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_022ee7fd65d5a3148895fc6e.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_72714760209aa839250924d2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_e7ddd4f9b71ac0596e593fc9.woff')format("woff");}.ff5{font-family:ff5;line-height:1.058105;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_90c432e0d04a8e85a386e1ec.woff')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_da50cf306b82293df0d0f5f7.woff')format("woff");}.ff7{font-family:ff7;line-height:0.893555;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_493ae0939dd412d7681031e2.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6fc996c68ee789633d108d62.woff')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v1{vertical-align:-92.160000px;}
.v0{vertical-align:0.000000px;}
.ls31{letter-spacing:-1.872000px;}
.lsb{letter-spacing:-1.728000px;}
.lsd{letter-spacing:-0.792000px;}
.ls2e{letter-spacing:-0.576000px;}
.lsa{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.288000px;}
.ls2b{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.ls28{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.504000px;}
.ls2a{letter-spacing:0.720000px;}
.ls27{letter-spacing:1.440000px;}
.ls1e{letter-spacing:3.060000px;}
.ls1c{letter-spacing:4.320000px;}
.ls13{letter-spacing:5.040000px;}
.ls17{letter-spacing:5.760000px;}
.ls19{letter-spacing:6.480000px;}
.ls14{letter-spacing:7.200000px;}
.ls25{letter-spacing:7.920000px;}
.ls22{letter-spacing:9.360000px;}
.ls26{letter-spacing:10.080000px;}
.ls1b{letter-spacing:10.800000px;}
.ls10{letter-spacing:11.520000px;}
.ls29{letter-spacing:12.960000px;}
.ls30{letter-spacing:13.680000px;}
.ls2c{letter-spacing:15.120000px;}
.ls1a{letter-spacing:16.560000px;}
.ls11{letter-spacing:18.000000px;}
.ls1f{letter-spacing:19.440000px;}
.ls21{letter-spacing:20.160000px;}
.ls23{letter-spacing:20.880000px;}
.ls1d{letter-spacing:22.320000px;}
.lsf{letter-spacing:28.080000px;}
.ls18{letter-spacing:30.240000px;}
.ls15{letter-spacing:31.860000px;}
.ls4{letter-spacing:33.120000px;}
.ls2d{letter-spacing:38.880000px;}
.ls16{letter-spacing:40.320000px;}
.ls7{letter-spacing:42.480000px;}
.ls6{letter-spacing:43.200000px;}
.ls20{letter-spacing:43.920000px;}
.ls3{letter-spacing:56.880000px;}
.ls2f{letter-spacing:174.960000px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.wsf{word-spacing:-18.504000px;}
.wsd{word-spacing:-18.360000px;}
.ws11{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.wse{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.ws9{word-spacing:-17.208000px;}
.wsc{word-spacing:-16.560000px;}
.ws4{word-spacing:-16.272000px;}
.ws10{word-spacing:-16.128000px;}
.ws2{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.580000px;}
.ws5{word-spacing:-0.072000px;}
.wsb{word-spacing:0.000000px;}
._6{margin-left:-10.023840px;}
._23{margin-left:-8.965920px;}
._4{margin-left:-7.056000px;}
._7{margin-left:-5.160000px;}
._8{margin-left:-4.104000px;}
._5{margin-left:-2.609280px;}
._2{margin-left:-1.314720px;}
._0{width:1.208640px;}
._3{width:3.156000px;}
._12{width:5.086080px;}
._1e{width:6.577920px;}
._1f{width:8.280000px;}
._15{width:9.569280px;}
._16{width:10.890720px;}
._17{width:12.744000px;}
._29{width:14.185440px;}
._11{width:15.288000px;}
._10{width:16.608000px;}
._1c{width:19.378080px;}
._2c{width:21.052320px;}
._25{width:22.371360px;}
._13{width:23.760000px;}
._f{width:25.160640px;}
._22{width:26.214240px;}
._b{width:27.360000px;}
._c{width:28.386240px;}
._2a{width:29.431680px;}
._1a{width:30.462720px;}
._1d{width:31.817280px;}
._e{width:33.138720px;}
._d{width:34.488000px;}
._1b{width:35.589120px;}
._24{width:36.596640px;}
._28{width:37.953600px;}
._18{width:39.816000px;}
._19{width:41.088000px;}
._20{width:42.514080px;}
._14{width:43.658880px;}
._26{width:45.396000px;}
._2b{width:47.358720px;}
._2d{width:48.618720px;}
._2e{width:49.641120px;}
._32{width:52.238880px;}
._27{width:53.372640px;}
._21{width:54.587520px;}
._a{width:55.798080px;}
._9{width:56.943360px;}
._2f{width:68.904000px;}
._31{width:71.866080px;}
._30{width:112.104000px;}
._33{width:174.096000px;}
._34{width:175.143360px;}
._1{width:1083.154560px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ya{bottom:5.040000px;}
.y6e{bottom:6.300000px;}
.y6c{bottom:6.480000px;}
.y3{bottom:7.740000px;}
.y93{bottom:10.080000px;}
.y2{bottom:26.820000px;}
.y5{bottom:29.016000px;}
.y92{bottom:30.780000px;}
.y38{bottom:90.756000px;}
.y90{bottom:92.196000px;}
.y67{bottom:101.556000px;}
.y37{bottom:114.876000px;}
.y66{bottom:124.236000px;}
.y8f{bottom:137.736000px;}
.y36{bottom:139.176000px;}
.y65{bottom:147.096000px;}
.y8e{bottom:160.410000px;}
.y35{bottom:162.030000px;}
.y64{bottom:169.770000px;}
.y7e{bottom:177.330000px;}
.y8d{bottom:183.270000px;}
.y34{bottom:184.710000px;}
.y63{bottom:192.630000px;}
.y7d{bottom:200.190000px;}
.y8c{bottom:205.950000px;}
.y33{bottom:207.570000px;}
.y62{bottom:215.310000px;}
.y7c{bottom:222.870000px;}
.y8b{bottom:226.290000px;}
.y32{bottom:230.250000px;}
.y61{bottom:238.170000px;}
.y7b{bottom:245.730000px;}
.y8a{bottom:247.710000px;}
.y31{bottom:253.110000px;}
.y60{bottom:260.850000px;}
.y89{bottom:266.250000px;}
.y7a{bottom:268.410000px;}
.y30{bottom:275.835000px;}
.y5f{bottom:283.755000px;}
.y79{bottom:291.315000px;}
.y2f{bottom:298.695000px;}
.y5e{bottom:306.435000px;}
.y78{bottom:311.655000px;}
.y2e{bottom:321.375000px;}
.y5d{bottom:329.115000px;}
.y77{bottom:333.075000px;}
.y2d{bottom:345.495000px;}
.y76{bottom:351.435000px;}
.y5c{bottom:351.975000px;}
.y2c{bottom:369.795000px;}
.y5b{bottom:374.655000px;}
.y2b{bottom:392.655000px;}
.y5a{bottom:397.515000px;}
.y2a{bottom:415.335000px;}
.y59{bottom:420.195000px;}
.y29{bottom:438.195000px;}
.y58{bottom:443.055000px;}
.y28{bottom:460.875000px;}
.y57{bottom:465.735000px;}
.y9f{bottom:476.895000px;}
.y27{bottom:483.735000px;}
.y56{bottom:488.595000px;}
.y9e{bottom:499.575000px;}
.y26{bottom:506.415000px;}
.y55{bottom:511.275000px;}
.y9d{bottom:522.435000px;}
.y25{bottom:529.275000px;}
.y54{bottom:534.135000px;}
.y9c{bottom:543.315000px;}
.y24{bottom:553.215000px;}
.y53{bottom:556.845000px;}
.y9b{bottom:565.845000px;}
.y23{bottom:575.745000px;}
.y52{bottom:579.705000px;}
.y9a{bottom:586.725000px;}
.y22{bottom:596.445000px;}
.y51{bottom:602.385000px;}
.y99{bottom:607.425000px;}
.y21{bottom:617.145000px;}
.y50{bottom:625.245000px;}
.y98{bottom:628.125000px;}
.y20{bottom:637.845000px;}
.y4f{bottom:647.925000px;}
.y97{bottom:648.825000px;}
.y1f{bottom:658.545000px;}
.y4e{bottom:670.785000px;}
.y96{bottom:671.505000px;}
.y1e{bottom:679.245000px;}
.y88{bottom:684.825000px;}
.y4d{bottom:693.465000px;}
.y95{bottom:694.185000px;}
.y1d{bottom:699.945000px;}
.y87{bottom:707.685000px;}
.y94{bottom:715.065000px;}
.y4c{bottom:716.325000px;}
.y1c{bottom:720.645000px;}
.y86{bottom:730.365000px;}
.y91{bottom:731.265000px;}
.y4b{bottom:739.005000px;}
.y1b{bottom:741.345000px;}
.y85{bottom:753.225000px;}
.y1a{bottom:761.685000px;}
.y4a{bottom:761.865000px;}
.y84{bottom:775.905000px;}
.y19{bottom:782.385000px;}
.y49{bottom:784.545000px;}
.y83{bottom:798.765000px;}
.y18{bottom:803.445000px;}
.y48{bottom:807.405000px;}
.y82{bottom:821.445000px;}
.y17{bottom:824.145000px;}
.y47{bottom:830.085000px;}
.y75{bottom:830.265000px;}
.y81{bottom:842.010000px;}
.y16{bottom:844.890000px;}
.y46{bottom:852.990000px;}
.y80{bottom:863.250000px;}
.y15{bottom:865.590000px;}
.y45{bottom:875.670000px;}
.y74{bottom:875.850000px;}
.y7f{bottom:881.790000px;}
.y14{bottom:886.290000px;}
.y44{bottom:898.530000px;}
.y13{bottom:906.990000px;}
.y43{bottom:921.210000px;}
.y73{bottom:921.390000px;}
.y12{bottom:927.690000px;}
.y42{bottom:944.070000px;}
.y11{bottom:948.390000px;}
.y41{bottom:966.750000px;}
.y72{bottom:966.930000px;}
.y10{bottom:969.090000px;}
.y40{bottom:989.610000px;}
.yf{bottom:989.790000px;}
.y71{bottom:1006.710000px;}
.ye{bottom:1010.490000px;}
.y3f{bottom:1012.290000px;}
.y70{bottom:1028.850000px;}
.yd{bottom:1030.830000px;}
.y3e{bottom:1035.150000px;}
.y6f{bottom:1050.810000px;}
.yc{bottom:1051.530000px;}
.y3d{bottom:1057.830000px;}
.yb{bottom:1072.590000px;}
.y6d{bottom:1072.950000px;}
.y3c{bottom:1080.690000px;}
.y9{bottom:1088.790000px;}
.y6b{bottom:1094.910000px;}
.y3b{bottom:1103.370000px;}
.y8{bottom:1114.530000px;}
.y6a{bottom:1119.210000px;}
.y3a{bottom:1126.260000px;}
.y69{bottom:1131.480000px;}
.y7{bottom:1134.540000px;}
.y39{bottom:1148.940000px;}
.y68{bottom:1150.380000px;}
.y6{bottom:1151.820000px;}
.y4{bottom:1171.800000px;}
.y1{bottom:1191.420000px;}
.h6{height:21.225000px;}
.hc{height:21.405000px;}
.hb{height:35.332031px;}
.h2{height:42.660000px;}
.he{height:46.980000px;}
.h9{height:50.027344px;}
.h3{height:58.621992px;}
.h4{height:58.651172px;}
.hd{height:64.978594px;}
.ha{height:65.010937px;}
.h8{height:70.628906px;}
.h5{height:70.664062px;}
.h7{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:141.336000px;}
.w7{width:170.100000px;}
.w6{width:210.133500px;}
.w9{width:217.455000px;}
.wb{width:244.290000px;}
.wa{width:246.493500px;}
.wc{width:248.235000px;}
.w3{width:260.655000px;}
.w5{width:369.435000px;}
.w4{width:369.613500px;}
.w2{width:453.883500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:7.918500px;}
.x6{left:9.885000px;}
.x27{left:20.730000px;}
.x2{left:27.934500px;}
.x24{left:35.494500px;}
.x25{left:45.000000px;}
.xe{left:50.250000px;}
.x29{left:51.645000px;}
.x31{left:65.865000px;}
.xc{left:77.041500px;}
.x5{left:79.185000px;}
.x21{left:84.960000px;}
.xa{left:86.400000px;}
.x1{left:87.661500px;}
.x18{left:104.976000px;}
.x11{left:110.556000px;}
.x7{left:127.476000px;}
.x12{left:128.736000px;}
.x3{left:138.988500px;}
.x32{left:143.490000px;}
.x1e{left:151.410000px;}
.x8{left:153.570000px;}
.x1c{left:158.070000px;}
.x13{left:167.610000px;}
.xf{left:173.190000px;}
.x23{left:186.690000px;}
.x1f{left:192.450000px;}
.x14{left:206.310000px;}
.x1d{left:223.950000px;}
.x16{left:233.130000px;}
.x1a{left:234.210000px;}
.x19{left:245.550000px;}
.x20{left:261.210000px;}
.x9{left:286.635000px;}
.x17{left:289.875000px;}
.x15{left:307.515000px;}
.x10{left:315.615000px;}
.x2f{left:323.535000px;}
.x1b{left:338.655000px;}
.x2d{left:386.355000px;}
.x2e{left:425.595000px;}
.xb{left:446.475000px;}
.x26{left:457.275000px;}
.x4{left:544.800000px;}
.x30{left:567.840000px;}
.x28{left:598.620000px;}
.x22{left:748.770000px;}
.x2c{left:804.390000px;}
.x2b{left:815.550000px;}
.x2a{left:817.350000px;}
@media print{
.v1{vertical-align:-81.920000pt;}
.v0{vertical-align:0.000000pt;}
.ls31{letter-spacing:-1.664000pt;}
.lsb{letter-spacing:-1.536000pt;}
.lsd{letter-spacing:-0.704000pt;}
.ls2e{letter-spacing:-0.512000pt;}
.lsa{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.256000pt;}
.ls2b{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls28{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.448000pt;}
.ls2a{letter-spacing:0.640000pt;}
.ls27{letter-spacing:1.280000pt;}
.ls1e{letter-spacing:2.720000pt;}
.ls1c{letter-spacing:3.840000pt;}
.ls13{letter-spacing:4.480000pt;}
.ls17{letter-spacing:5.120000pt;}
.ls19{letter-spacing:5.760000pt;}
.ls14{letter-spacing:6.400000pt;}
.ls25{letter-spacing:7.040000pt;}
.ls22{letter-spacing:8.320000pt;}
.ls26{letter-spacing:8.960000pt;}
.ls1b{letter-spacing:9.600000pt;}
.ls10{letter-spacing:10.240000pt;}
.ls29{letter-spacing:11.520000pt;}
.ls30{letter-spacing:12.160000pt;}
.ls2c{letter-spacing:13.440000pt;}
.ls1a{letter-spacing:14.720000pt;}
.ls11{letter-spacing:16.000000pt;}
.ls1f{letter-spacing:17.280000pt;}
.ls21{letter-spacing:17.920000pt;}
.ls23{letter-spacing:18.560000pt;}
.ls1d{letter-spacing:19.840000pt;}
.lsf{letter-spacing:24.960000pt;}
.ls18{letter-spacing:26.880000pt;}
.ls15{letter-spacing:28.320000pt;}
.ls4{letter-spacing:29.440000pt;}
.ls2d{letter-spacing:34.560000pt;}
.ls16{letter-spacing:35.840000pt;}
.ls7{letter-spacing:37.760000pt;}
.ls6{letter-spacing:38.400000pt;}
.ls20{letter-spacing:39.040000pt;}
.ls3{letter-spacing:50.560000pt;}
.ls2f{letter-spacing:155.520000pt;}
.ws7{word-spacing:-64.000000pt;}
.wsf{word-spacing:-16.448000pt;}
.wsd{word-spacing:-16.320000pt;}
.ws11{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws9{word-spacing:-15.296000pt;}
.wsc{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.464000pt;}
.ws10{word-spacing:-14.336000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.960000pt;}
.ws5{word-spacing:-0.064000pt;}
.wsb{word-spacing:0.000000pt;}
._6{margin-left:-8.910080pt;}
._23{margin-left:-7.969707pt;}
._4{margin-left:-6.272000pt;}
._7{margin-left:-4.586667pt;}
._8{margin-left:-3.648000pt;}
._5{margin-left:-2.319360pt;}
._2{margin-left:-1.168640pt;}
._0{width:1.074347pt;}
._3{width:2.805333pt;}
._12{width:4.520960pt;}
._1e{width:5.847040pt;}
._1f{width:7.360000pt;}
._15{width:8.506027pt;}
._16{width:9.680640pt;}
._17{width:11.328000pt;}
._29{width:12.609280pt;}
._11{width:13.589333pt;}
._10{width:14.762667pt;}
._1c{width:17.224960pt;}
._2c{width:18.713173pt;}
._25{width:19.885653pt;}
._13{width:21.120000pt;}
._f{width:22.365013pt;}
._22{width:23.301547pt;}
._b{width:24.320000pt;}
._c{width:25.232213pt;}
._2a{width:26.161493pt;}
._1a{width:27.077973pt;}
._1d{width:28.282027pt;}
._e{width:29.456640pt;}
._d{width:30.656000pt;}
._1b{width:31.634773pt;}
._24{width:32.530347pt;}
._28{width:33.736533pt;}
._18{width:35.392000pt;}
._19{width:36.522667pt;}
._20{width:37.790293pt;}
._14{width:38.807893pt;}
._26{width:40.352000pt;}
._2b{width:42.096640pt;}
._2d{width:43.216640pt;}
._2e{width:44.125440pt;}
._32{width:46.434560pt;}
._27{width:47.442347pt;}
._21{width:48.522240pt;}
._a{width:49.598293pt;}
._9{width:50.616320pt;}
._2f{width:61.248000pt;}
._31{width:63.880960pt;}
._30{width:99.648000pt;}
._33{width:154.752000pt;}
._34{width:155.682987pt;}
._1{width:962.804053pt;}
.fs3{font-size:32.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:4.480000pt;}
.y6e{bottom:5.600000pt;}
.y6c{bottom:5.760000pt;}
.y3{bottom:6.880000pt;}
.y93{bottom:8.960000pt;}
.y2{bottom:23.840000pt;}
.y5{bottom:25.792000pt;}
.y92{bottom:27.360000pt;}
.y38{bottom:80.672000pt;}
.y90{bottom:81.952000pt;}
.y67{bottom:90.272000pt;}
.y37{bottom:102.112000pt;}
.y66{bottom:110.432000pt;}
.y8f{bottom:122.432000pt;}
.y36{bottom:123.712000pt;}
.y65{bottom:130.752000pt;}
.y8e{bottom:142.586667pt;}
.y35{bottom:144.026667pt;}
.y64{bottom:150.906667pt;}
.y7e{bottom:157.626667pt;}
.y8d{bottom:162.906667pt;}
.y34{bottom:164.186667pt;}
.y63{bottom:171.226667pt;}
.y7d{bottom:177.946667pt;}
.y8c{bottom:183.066667pt;}
.y33{bottom:184.506667pt;}
.y62{bottom:191.386667pt;}
.y7c{bottom:198.106667pt;}
.y8b{bottom:201.146667pt;}
.y32{bottom:204.666667pt;}
.y61{bottom:211.706667pt;}
.y7b{bottom:218.426667pt;}
.y8a{bottom:220.186667pt;}
.y31{bottom:224.986667pt;}
.y60{bottom:231.866667pt;}
.y89{bottom:236.666667pt;}
.y7a{bottom:238.586667pt;}
.y30{bottom:245.186667pt;}
.y5f{bottom:252.226667pt;}
.y79{bottom:258.946667pt;}
.y2f{bottom:265.506667pt;}
.y5e{bottom:272.386667pt;}
.y78{bottom:277.026667pt;}
.y2e{bottom:285.666667pt;}
.y5d{bottom:292.546667pt;}
.y77{bottom:296.066667pt;}
.y2d{bottom:307.106667pt;}
.y76{bottom:312.386667pt;}
.y5c{bottom:312.866667pt;}
.y2c{bottom:328.706667pt;}
.y5b{bottom:333.026667pt;}
.y2b{bottom:349.026667pt;}
.y5a{bottom:353.346667pt;}
.y2a{bottom:369.186667pt;}
.y59{bottom:373.506667pt;}
.y29{bottom:389.506667pt;}
.y58{bottom:393.826667pt;}
.y28{bottom:409.666667pt;}
.y57{bottom:413.986667pt;}
.y9f{bottom:423.906667pt;}
.y27{bottom:429.986667pt;}
.y56{bottom:434.306667pt;}
.y9e{bottom:444.066667pt;}
.y26{bottom:450.146667pt;}
.y55{bottom:454.466667pt;}
.y9d{bottom:464.386667pt;}
.y25{bottom:470.466667pt;}
.y54{bottom:474.786667pt;}
.y9c{bottom:482.946667pt;}
.y24{bottom:491.746667pt;}
.y53{bottom:494.973333pt;}
.y9b{bottom:502.973333pt;}
.y23{bottom:511.773333pt;}
.y52{bottom:515.293333pt;}
.y9a{bottom:521.533333pt;}
.y22{bottom:530.173333pt;}
.y51{bottom:535.453333pt;}
.y99{bottom:539.933333pt;}
.y21{bottom:548.573333pt;}
.y50{bottom:555.773333pt;}
.y98{bottom:558.333333pt;}
.y20{bottom:566.973333pt;}
.y4f{bottom:575.933333pt;}
.y97{bottom:576.733333pt;}
.y1f{bottom:585.373333pt;}
.y4e{bottom:596.253333pt;}
.y96{bottom:596.893333pt;}
.y1e{bottom:603.773333pt;}
.y88{bottom:608.733333pt;}
.y4d{bottom:616.413333pt;}
.y95{bottom:617.053333pt;}
.y1d{bottom:622.173333pt;}
.y87{bottom:629.053333pt;}
.y94{bottom:635.613333pt;}
.y4c{bottom:636.733333pt;}
.y1c{bottom:640.573333pt;}
.y86{bottom:649.213333pt;}
.y91{bottom:650.013333pt;}
.y4b{bottom:656.893333pt;}
.y1b{bottom:658.973333pt;}
.y85{bottom:669.533333pt;}
.y1a{bottom:677.053333pt;}
.y4a{bottom:677.213333pt;}
.y84{bottom:689.693333pt;}
.y19{bottom:695.453333pt;}
.y49{bottom:697.373333pt;}
.y83{bottom:710.013333pt;}
.y18{bottom:714.173333pt;}
.y48{bottom:717.693333pt;}
.y82{bottom:730.173333pt;}
.y17{bottom:732.573333pt;}
.y47{bottom:737.853333pt;}
.y75{bottom:738.013333pt;}
.y81{bottom:748.453333pt;}
.y16{bottom:751.013333pt;}
.y46{bottom:758.213333pt;}
.y80{bottom:767.333333pt;}
.y15{bottom:769.413333pt;}
.y45{bottom:778.373333pt;}
.y74{bottom:778.533333pt;}
.y7f{bottom:783.813333pt;}
.y14{bottom:787.813333pt;}
.y44{bottom:798.693333pt;}
.y13{bottom:806.213333pt;}
.y43{bottom:818.853333pt;}
.y73{bottom:819.013333pt;}
.y12{bottom:824.613333pt;}
.y42{bottom:839.173333pt;}
.y11{bottom:843.013333pt;}
.y41{bottom:859.333333pt;}
.y72{bottom:859.493333pt;}
.y10{bottom:861.413333pt;}
.y40{bottom:879.653333pt;}
.yf{bottom:879.813333pt;}
.y71{bottom:894.853333pt;}
.ye{bottom:898.213333pt;}
.y3f{bottom:899.813333pt;}
.y70{bottom:914.533333pt;}
.yd{bottom:916.293333pt;}
.y3e{bottom:920.133333pt;}
.y6f{bottom:934.053333pt;}
.yc{bottom:934.693333pt;}
.y3d{bottom:940.293333pt;}
.yb{bottom:953.413333pt;}
.y6d{bottom:953.733333pt;}
.y3c{bottom:960.613333pt;}
.y9{bottom:967.813333pt;}
.y6b{bottom:973.253333pt;}
.y3b{bottom:980.773333pt;}
.y8{bottom:990.693333pt;}
.y6a{bottom:994.853333pt;}
.y3a{bottom:1001.120000pt;}
.y69{bottom:1005.760000pt;}
.y7{bottom:1008.480000pt;}
.y39{bottom:1021.280000pt;}
.y68{bottom:1022.560000pt;}
.y6{bottom:1023.840000pt;}
.y4{bottom:1041.600000pt;}
.y1{bottom:1059.040000pt;}
.h6{height:18.866667pt;}
.hc{height:19.026667pt;}
.hb{height:31.406250pt;}
.h2{height:37.920000pt;}
.he{height:41.760000pt;}
.h9{height:44.468750pt;}
.h3{height:52.108438pt;}
.h4{height:52.134375pt;}
.hd{height:57.758750pt;}
.ha{height:57.787500pt;}
.h8{height:62.781250pt;}
.h5{height:62.812500pt;}
.h7{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:125.632000pt;}
.w7{width:151.200000pt;}
.w6{width:186.785333pt;}
.w9{width:193.293333pt;}
.wb{width:217.146667pt;}
.wa{width:219.105333pt;}
.wc{width:220.653333pt;}
.w3{width:231.693333pt;}
.w5{width:328.386667pt;}
.w4{width:328.545333pt;}
.w2{width:403.452000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:7.038667pt;}
.x6{left:8.786667pt;}
.x27{left:18.426667pt;}
.x2{left:24.830667pt;}
.x24{left:31.550667pt;}
.x25{left:40.000000pt;}
.xe{left:44.666667pt;}
.x29{left:45.906667pt;}
.x31{left:58.546667pt;}
.xc{left:68.481333pt;}
.x5{left:70.386667pt;}
.x21{left:75.520000pt;}
.xa{left:76.800000pt;}
.x1{left:77.921333pt;}
.x18{left:93.312000pt;}
.x11{left:98.272000pt;}
.x7{left:113.312000pt;}
.x12{left:114.432000pt;}
.x3{left:123.545333pt;}
.x32{left:127.546667pt;}
.x1e{left:134.586667pt;}
.x8{left:136.506667pt;}
.x1c{left:140.506667pt;}
.x13{left:148.986667pt;}
.xf{left:153.946667pt;}
.x23{left:165.946667pt;}
.x1f{left:171.066667pt;}
.x14{left:183.386667pt;}
.x1d{left:199.066667pt;}
.x16{left:207.226667pt;}
.x1a{left:208.186667pt;}
.x19{left:218.266667pt;}
.x20{left:232.186667pt;}
.x9{left:254.786667pt;}
.x17{left:257.666667pt;}
.x15{left:273.346667pt;}
.x10{left:280.546667pt;}
.x2f{left:287.586667pt;}
.x1b{left:301.026667pt;}
.x2d{left:343.426667pt;}
.x2e{left:378.306667pt;}
.xb{left:396.866667pt;}
.x26{left:406.466667pt;}
.x4{left:484.266667pt;}
.x30{left:504.746667pt;}
.x28{left:532.106667pt;}
.x22{left:665.573333pt;}
.x2c{left:715.013333pt;}
.x2b{left:724.933333pt;}
.x2a{left:726.533333pt;}
}




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