
    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_9dd5071883f820f033f43142.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.136230;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_42ecc516c9516292d5940b88.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.149414;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_28b2dccd02c998e10b108395.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.133000;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_929f7905dc827eee245c7541.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.050293;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_6c8db59d913cd39a23af8f4c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;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_aecc55ccaa693872f1c4e9e4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.073242;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_699b2b9df36779e8b684ddb8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.050293;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_898d7d248164d59c2b132bd4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.065430;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_e1a81ab20cbbc68a0d7dc45b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065430;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v1{vertical-align:-63.360600px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.198000px;}
.ls1{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.206400px;}
.ls2{letter-spacing:0.234000px;}
.ls3{letter-spacing:0.306000px;}
.lse{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.504000px;}
.ls8{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.840000px;}
.ls6{letter-spacing:2.160000px;}
.lsd{letter-spacing:5.760000px;}
.ls14{letter-spacing:8.640000px;}
.ls12{letter-spacing:10.080000px;}
.ls7{letter-spacing:12.960000px;}
.lsb{letter-spacing:17.256000px;}
.lsc{letter-spacing:17.280000px;}
.ls13{letter-spacing:164.826720px;}
.ls0{letter-spacing:410.004000px;}
.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;}
}
.ws9{word-spacing:-59.760000px;}
.ws5{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws1{word-spacing:-15.588000px;}
.ws7{word-spacing:-15.300000px;}
.ws0{word-spacing:-15.282000px;}
.ws8{word-spacing:-15.146400px;}
.ws2{word-spacing:-15.084000px;}
.ws6{word-spacing:-14.940000px;}
.ws4{word-spacing:0.000000px;}
._f{margin-left:-4.408560px;}
._1{margin-left:-2.791440px;}
._0{margin-left:-1.258560px;}
._2{width:1.278000px;}
._6{width:2.410560px;}
._4{width:4.392000px;}
._5{width:5.472000px;}
._10{width:6.690000px;}
._9{width:7.992000px;}
._a{width:9.450000px;}
._19{width:10.801440px;}
._c{width:11.986560px;}
._b{width:13.104000px;}
._d{width:14.166000px;}
._12{width:15.658560px;}
._11{width:16.704000px;}
._7{width:19.314000px;}
._17{width:20.424000px;}
._14{width:21.888000px;}
._13{width:22.930560px;}
._1c{width:24.624000px;}
._8{width:25.848000px;}
._16{width:27.541440px;}
._15{width:28.762560px;}
._1a{width:30.168000px;}
._1b{width:31.206000px;}
._1f{width:32.866560px;}
._1e{width:33.984000px;}
._24{width:35.136000px;}
._e{width:36.192000px;}
._21{width:37.446480px;}
._1d{width:43.848000px;}
._20{width:45.000000px;}
._23{width:48.106800px;}
._3{width:82.776000px;}
._18{width:98.040000px;}
._22{width:144.320400px;}
.fc6{color:rgb(5,99,193);}
.fc5{color:transparent;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,0);}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.y6{bottom:-27.180000px;}
.y0{bottom:0.000000px;}
.y7e{bottom:3.240000px;}
.y7a{bottom:3.285000px;}
.y8{bottom:4.500000px;}
.y5{bottom:6.480000px;}
.yc{bottom:7.020000px;}
.ya{bottom:9.540000px;}
.y7c{bottom:11.880000px;}
.y85{bottom:11.910000px;}
.y78{bottom:11.925000px;}
.y12{bottom:12.600000px;}
.y7{bottom:19.080000px;}
.y10{bottom:20.160000px;}
.y7d{bottom:20.520000px;}
.y84{bottom:20.550000px;}
.y79{bottom:20.565000px;}
.y2{bottom:37.620000px;}
.y4{bottom:40.320000px;}
.y9{bottom:63.540000px;}
.yb{bottom:64.620000px;}
.yd{bottom:68.040000px;}
.y44{bottom:116.460000px;}
.y76{bottom:125.460000px;}
.y9f{bottom:129.600000px;}
.y43{bottom:137.160000px;}
.y75{bottom:146.160000px;}
.y9e{bottom:150.300000px;}
.y42{bottom:157.860000px;}
.y74{bottom:166.860000px;}
.y9d{bottom:171.000000px;}
.y41{bottom:178.560000px;}
.y73{bottom:187.560000px;}
.y9c{bottom:191.700000px;}
.y40{bottom:199.290000px;}
.y72{bottom:208.290000px;}
.y9b{bottom:212.430000px;}
.y3f{bottom:219.990000px;}
.y71{bottom:228.990000px;}
.y9a{bottom:232.950000px;}
.y3e{bottom:240.690000px;}
.y70{bottom:249.690000px;}
.y99{bottom:253.650000px;}
.y3d{bottom:261.390000px;}
.y6f{bottom:270.390000px;}
.y98{bottom:274.350000px;}
.y3c{bottom:282.090000px;}
.y6e{bottom:291.090000px;}
.y97{bottom:295.050000px;}
.y3b{bottom:302.790000px;}
.y6d{bottom:311.790000px;}
.y96{bottom:315.750000px;}
.y3a{bottom:323.490000px;}
.y6c{bottom:332.490000px;}
.y95{bottom:336.450000px;}
.y39{bottom:344.190000px;}
.y6b{bottom:353.190000px;}
.y94{bottom:357.150000px;}
.y38{bottom:364.890000px;}
.y6a{bottom:373.890000px;}
.y93{bottom:377.850000px;}
.y37{bottom:385.590000px;}
.y69{bottom:394.590000px;}
.y92{bottom:398.550000px;}
.y36{bottom:406.290000px;}
.y68{bottom:415.290000px;}
.y91{bottom:419.250000px;}
.y35{bottom:426.990000px;}
.y67{bottom:436.035000px;}
.y90{bottom:439.995000px;}
.y34{bottom:447.735000px;}
.y66{bottom:456.735000px;}
.y8f{bottom:460.695000px;}
.y33{bottom:468.435000px;}
.y65{bottom:477.435000px;}
.y8e{bottom:481.395000px;}
.y32{bottom:489.135000px;}
.y64{bottom:498.135000px;}
.y8d{bottom:502.095000px;}
.y31{bottom:509.835000px;}
.y63{bottom:518.835000px;}
.y8c{bottom:522.795000px;}
.y30{bottom:530.535000px;}
.y62{bottom:539.535000px;}
.y8b{bottom:543.495000px;}
.y2f{bottom:551.235000px;}
.y61{bottom:560.235000px;}
.y8a{bottom:564.195000px;}
.y2e{bottom:571.935000px;}
.y60{bottom:580.935000px;}
.y89{bottom:584.895000px;}
.y2d{bottom:592.635000px;}
.y5f{bottom:601.635000px;}
.y88{bottom:605.595000px;}
.y2c{bottom:613.335000px;}
.y11{bottom:617.475000px;}
.y5e{bottom:622.335000px;}
.y87{bottom:626.295000px;}
.y2b{bottom:634.035000px;}
.y5d{bottom:643.035000px;}
.y86{bottom:646.995000px;}
.y2a{bottom:654.735000px;}
.y5c{bottom:663.735000px;}
.y83{bottom:667.875000px;}
.y29{bottom:675.465000px;}
.y5b{bottom:684.465000px;}
.y28{bottom:696.165000px;}
.y5a{bottom:705.165000px;}
.y82{bottom:708.405000px;}
.y27{bottom:716.865000px;}
.y59{bottom:725.865000px;}
.y26{bottom:737.565000px;}
.y58{bottom:746.565000px;}
.y81{bottom:748.905000px;}
.y25{bottom:758.265000px;}
.y57{bottom:767.265000px;}
.y24{bottom:778.965000px;}
.y56{bottom:787.965000px;}
.y80{bottom:789.405000px;}
.y23{bottom:799.665000px;}
.y55{bottom:808.665000px;}
.y22{bottom:820.365000px;}
.y54{bottom:829.365000px;}
.y7f{bottom:829.905000px;}
.y21{bottom:841.065000px;}
.y53{bottom:850.065000px;}
.y20{bottom:861.765000px;}
.y7b{bottom:870.405000px;}
.y52{bottom:870.765000px;}
.y1f{bottom:882.465000px;}
.y51{bottom:891.465000px;}
.y1e{bottom:903.165000px;}
.y77{bottom:910.905000px;}
.y50{bottom:912.165000px;}
.y1d{bottom:923.910000px;}
.y4f{bottom:932.910000px;}
.y1c{bottom:944.610000px;}
.y4e{bottom:953.610000px;}
.y1b{bottom:965.310000px;}
.y4d{bottom:974.310000px;}
.y1a{bottom:986.010000px;}
.y4c{bottom:995.010000px;}
.y19{bottom:1006.710000px;}
.y4b{bottom:1015.710000px;}
.y18{bottom:1027.410000px;}
.y4a{bottom:1036.410000px;}
.y17{bottom:1048.110000px;}
.y49{bottom:1057.110000px;}
.y16{bottom:1068.810000px;}
.y48{bottom:1077.810000px;}
.y15{bottom:1089.510000px;}
.y47{bottom:1098.510000px;}
.y14{bottom:1110.210000px;}
.y46{bottom:1119.210000px;}
.y13{bottom:1130.910000px;}
.y45{bottom:1139.910000px;}
.y1{bottom:1193.040000px;}
.y3{bottom:1206.180000px;}
.yf{bottom:1246.320000px;}
.ye{bottom:1261.980000px;}
.h6{height:19.620000px;}
.ha{height:21.240000px;}
.h8{height:23.760000px;}
.hc{height:28.260000px;}
.h12{height:34.560000px;}
.h10{height:34.596000px;}
.hb{height:49.868086px;}
.h9{height:50.274000px;}
.h11{height:51.239531px;}
.h2{height:52.740000px;}
.h4{height:56.700000px;}
.he{height:60.082031px;}
.hf{height:61.171875px;}
.h7{height:61.189805px;}
.hd{height:61.734375px;}
.h3{height:65.884219px;}
.h5{height:67.824844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:49.860000px;}
.wf{width:62.856000px;}
.w10{width:69.660000px;}
.wb{width:84.990000px;}
.wd{width:97.740000px;}
.w6{width:108.756000px;}
.w9{width:121.680000px;}
.w3{width:135.036000px;}
.w8{width:187.590000px;}
.w5{width:188.130000px;}
.w4{width:192.090000px;}
.w7{width:204.330000px;}
.we{width:378.795000px;}
.w2{width:552.705000px;}
.wa{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:1.440000px;}
.x11{left:10.800000px;}
.x5{left:40.140000px;}
.x7{left:47.340000px;}
.x2{left:48.816000px;}
.x4{left:60.840000px;}
.x6{left:76.140000px;}
.x1{left:87.480000px;}
.xc{left:92.874000px;}
.xd{left:104.034000px;}
.xb{left:106.236000px;}
.x12{left:110.015987px;}
.x14{left:115.235987px;}
.x18{left:123.155987px;}
.x1e{left:160.229987px;}
.x1a{left:163.290000px;}
.x1b{left:264.810000px;}
.x19{left:340.274987px;}
.x17{left:387.254987px;}
.xe{left:391.035000px;}
.x15{left:393.734987px;}
.x13{left:406.694987px;}
.x9{left:420.375000px;}
.x16{left:446.474987px;}
.x1c{left:647.385000px;}
.xf{left:665.070000px;}
.x1d{left:713.850000px;}
.x3{left:733.650000px;}
.xa{left:748.050000px;}
.x10{left:807.990000px;}
@media print{
.v1{vertical-align:-56.320533pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.176000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.183467pt;}
.ls2{letter-spacing:0.208000pt;}
.ls3{letter-spacing:0.272000pt;}
.lse{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.448000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.746667pt;}
.ls6{letter-spacing:1.920000pt;}
.lsd{letter-spacing:5.120000pt;}
.ls14{letter-spacing:7.680000pt;}
.ls12{letter-spacing:8.960000pt;}
.ls7{letter-spacing:11.520000pt;}
.lsb{letter-spacing:15.338667pt;}
.lsc{letter-spacing:15.360000pt;}
.ls13{letter-spacing:146.512640pt;}
.ls0{letter-spacing:364.448000pt;}
.ws9{word-spacing:-53.120000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws1{word-spacing:-13.856000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.584000pt;}
.ws8{word-spacing:-13.463467pt;}
.ws2{word-spacing:-13.408000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws4{word-spacing:0.000000pt;}
._f{margin-left:-3.918720pt;}
._1{margin-left:-2.481280pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.136000pt;}
._6{width:2.142720pt;}
._4{width:3.904000pt;}
._5{width:4.864000pt;}
._10{width:5.946667pt;}
._9{width:7.104000pt;}
._a{width:8.400000pt;}
._19{width:9.601280pt;}
._c{width:10.654720pt;}
._b{width:11.648000pt;}
._d{width:12.592000pt;}
._12{width:13.918720pt;}
._11{width:14.848000pt;}
._7{width:17.168000pt;}
._17{width:18.154667pt;}
._14{width:19.456000pt;}
._13{width:20.382720pt;}
._1c{width:21.888000pt;}
._8{width:22.976000pt;}
._16{width:24.481280pt;}
._15{width:25.566720pt;}
._1a{width:26.816000pt;}
._1b{width:27.738667pt;}
._1f{width:29.214720pt;}
._1e{width:30.208000pt;}
._24{width:31.232000pt;}
._e{width:32.170667pt;}
._21{width:33.285760pt;}
._1d{width:38.976000pt;}
._20{width:40.000000pt;}
._23{width:42.761600pt;}
._3{width:73.578667pt;}
._18{width:87.146667pt;}
._22{width:128.284800pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.y6{bottom:-24.160000pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:2.880000pt;}
.y7a{bottom:2.920000pt;}
.y8{bottom:4.000000pt;}
.y5{bottom:5.760000pt;}
.yc{bottom:6.240000pt;}
.ya{bottom:8.480000pt;}
.y7c{bottom:10.560000pt;}
.y85{bottom:10.586667pt;}
.y78{bottom:10.600000pt;}
.y12{bottom:11.200000pt;}
.y7{bottom:16.960000pt;}
.y10{bottom:17.920000pt;}
.y7d{bottom:18.240000pt;}
.y84{bottom:18.266667pt;}
.y79{bottom:18.280000pt;}
.y2{bottom:33.440000pt;}
.y4{bottom:35.840000pt;}
.y9{bottom:56.480000pt;}
.yb{bottom:57.440000pt;}
.yd{bottom:60.480000pt;}
.y44{bottom:103.520000pt;}
.y76{bottom:111.520000pt;}
.y9f{bottom:115.200000pt;}
.y43{bottom:121.920000pt;}
.y75{bottom:129.920000pt;}
.y9e{bottom:133.600000pt;}
.y42{bottom:140.320000pt;}
.y74{bottom:148.320000pt;}
.y9d{bottom:152.000000pt;}
.y41{bottom:158.720000pt;}
.y73{bottom:166.720000pt;}
.y9c{bottom:170.400000pt;}
.y40{bottom:177.146667pt;}
.y72{bottom:185.146667pt;}
.y9b{bottom:188.826667pt;}
.y3f{bottom:195.546667pt;}
.y71{bottom:203.546667pt;}
.y9a{bottom:207.066667pt;}
.y3e{bottom:213.946667pt;}
.y70{bottom:221.946667pt;}
.y99{bottom:225.466667pt;}
.y3d{bottom:232.346667pt;}
.y6f{bottom:240.346667pt;}
.y98{bottom:243.866667pt;}
.y3c{bottom:250.746667pt;}
.y6e{bottom:258.746667pt;}
.y97{bottom:262.266667pt;}
.y3b{bottom:269.146667pt;}
.y6d{bottom:277.146667pt;}
.y96{bottom:280.666667pt;}
.y3a{bottom:287.546667pt;}
.y6c{bottom:295.546667pt;}
.y95{bottom:299.066667pt;}
.y39{bottom:305.946667pt;}
.y6b{bottom:313.946667pt;}
.y94{bottom:317.466667pt;}
.y38{bottom:324.346667pt;}
.y6a{bottom:332.346667pt;}
.y93{bottom:335.866667pt;}
.y37{bottom:342.746667pt;}
.y69{bottom:350.746667pt;}
.y92{bottom:354.266667pt;}
.y36{bottom:361.146667pt;}
.y68{bottom:369.146667pt;}
.y91{bottom:372.666667pt;}
.y35{bottom:379.546667pt;}
.y67{bottom:387.586667pt;}
.y90{bottom:391.106667pt;}
.y34{bottom:397.986667pt;}
.y66{bottom:405.986667pt;}
.y8f{bottom:409.506667pt;}
.y33{bottom:416.386667pt;}
.y65{bottom:424.386667pt;}
.y8e{bottom:427.906667pt;}
.y32{bottom:434.786667pt;}
.y64{bottom:442.786667pt;}
.y8d{bottom:446.306667pt;}
.y31{bottom:453.186667pt;}
.y63{bottom:461.186667pt;}
.y8c{bottom:464.706667pt;}
.y30{bottom:471.586667pt;}
.y62{bottom:479.586667pt;}
.y8b{bottom:483.106667pt;}
.y2f{bottom:489.986667pt;}
.y61{bottom:497.986667pt;}
.y8a{bottom:501.506667pt;}
.y2e{bottom:508.386667pt;}
.y60{bottom:516.386667pt;}
.y89{bottom:519.906667pt;}
.y2d{bottom:526.786667pt;}
.y5f{bottom:534.786667pt;}
.y88{bottom:538.306667pt;}
.y2c{bottom:545.186667pt;}
.y11{bottom:548.866667pt;}
.y5e{bottom:553.186667pt;}
.y87{bottom:556.706667pt;}
.y2b{bottom:563.586667pt;}
.y5d{bottom:571.586667pt;}
.y86{bottom:575.106667pt;}
.y2a{bottom:581.986667pt;}
.y5c{bottom:589.986667pt;}
.y83{bottom:593.666667pt;}
.y29{bottom:600.413333pt;}
.y5b{bottom:608.413333pt;}
.y28{bottom:618.813333pt;}
.y5a{bottom:626.813333pt;}
.y82{bottom:629.693333pt;}
.y27{bottom:637.213333pt;}
.y59{bottom:645.213333pt;}
.y26{bottom:655.613333pt;}
.y58{bottom:663.613333pt;}
.y81{bottom:665.693333pt;}
.y25{bottom:674.013333pt;}
.y57{bottom:682.013333pt;}
.y24{bottom:692.413333pt;}
.y56{bottom:700.413333pt;}
.y80{bottom:701.693333pt;}
.y23{bottom:710.813333pt;}
.y55{bottom:718.813333pt;}
.y22{bottom:729.213333pt;}
.y54{bottom:737.213333pt;}
.y7f{bottom:737.693333pt;}
.y21{bottom:747.613333pt;}
.y53{bottom:755.613333pt;}
.y20{bottom:766.013333pt;}
.y7b{bottom:773.693333pt;}
.y52{bottom:774.013333pt;}
.y1f{bottom:784.413333pt;}
.y51{bottom:792.413333pt;}
.y1e{bottom:802.813333pt;}
.y77{bottom:809.693333pt;}
.y50{bottom:810.813333pt;}
.y1d{bottom:821.253333pt;}
.y4f{bottom:829.253333pt;}
.y1c{bottom:839.653333pt;}
.y4e{bottom:847.653333pt;}
.y1b{bottom:858.053333pt;}
.y4d{bottom:866.053333pt;}
.y1a{bottom:876.453333pt;}
.y4c{bottom:884.453333pt;}
.y19{bottom:894.853333pt;}
.y4b{bottom:902.853333pt;}
.y18{bottom:913.253333pt;}
.y4a{bottom:921.253333pt;}
.y17{bottom:931.653333pt;}
.y49{bottom:939.653333pt;}
.y16{bottom:950.053333pt;}
.y48{bottom:958.053333pt;}
.y15{bottom:968.453333pt;}
.y47{bottom:976.453333pt;}
.y14{bottom:986.853333pt;}
.y46{bottom:994.853333pt;}
.y13{bottom:1005.253333pt;}
.y45{bottom:1013.253333pt;}
.y1{bottom:1060.480000pt;}
.y3{bottom:1072.160000pt;}
.yf{bottom:1107.840000pt;}
.ye{bottom:1121.760000pt;}
.h6{height:17.440000pt;}
.ha{height:18.880000pt;}
.h8{height:21.120000pt;}
.hc{height:25.120000pt;}
.h12{height:30.720000pt;}
.h10{height:30.752000pt;}
.hb{height:44.327188pt;}
.h9{height:44.688000pt;}
.h11{height:45.546250pt;}
.h2{height:46.880000pt;}
.h4{height:50.400000pt;}
.he{height:53.406250pt;}
.hf{height:54.375000pt;}
.h7{height:54.390938pt;}
.hd{height:54.875000pt;}
.h3{height:58.563750pt;}
.h5{height:60.288750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:44.320000pt;}
.wf{width:55.872000pt;}
.w10{width:61.920000pt;}
.wb{width:75.546667pt;}
.wd{width:86.880000pt;}
.w6{width:96.672000pt;}
.w9{width:108.160000pt;}
.w3{width:120.032000pt;}
.w8{width:166.746667pt;}
.w5{width:167.226667pt;}
.w4{width:170.746667pt;}
.w7{width:181.626667pt;}
.we{width:336.706667pt;}
.w2{width:491.293333pt;}
.wa{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:1.280000pt;}
.x11{left:9.600000pt;}
.x5{left:35.680000pt;}
.x7{left:42.080000pt;}
.x2{left:43.392000pt;}
.x4{left:54.080000pt;}
.x6{left:67.680000pt;}
.x1{left:77.760000pt;}
.xc{left:82.554667pt;}
.xd{left:92.474667pt;}
.xb{left:94.432000pt;}
.x12{left:97.791988pt;}
.x14{left:102.431988pt;}
.x18{left:109.471988pt;}
.x1e{left:142.426655pt;}
.x1a{left:145.146667pt;}
.x1b{left:235.386667pt;}
.x19{left:302.466655pt;}
.x17{left:344.226655pt;}
.xe{left:347.586667pt;}
.x15{left:349.986655pt;}
.x13{left:361.506655pt;}
.x9{left:373.666667pt;}
.x16{left:396.866655pt;}
.x1c{left:575.453333pt;}
.xf{left:591.173333pt;}
.x1d{left:634.533333pt;}
.x3{left:652.133333pt;}
.xa{left:664.933333pt;}
.x10{left:718.213333pt;}
}




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