
    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_04f99bfdbc98a3f28f211bd5.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7f5c17d95479cb198d54b673.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4d094b9574b74de9b746ad46.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_84d4e962fa2a925fdd9207d9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_e0bd9ac27299c1e9bdc5c492.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_b32b5777c096a5107031df02.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.106934;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3a3152a968788bc6fc241bb2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.986328;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_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.740234;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_6193fc93719873dbca485474.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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6c4b85e988df642b082c0b16.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.986328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls18{letter-spacing:-1.080000px;}
.lse{letter-spacing:-0.774000px;}
.ls6{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.259800px;}
.ls10{letter-spacing:-0.206400px;}
.ls17{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.066960px;}
.ls20{letter-spacing:0.106560px;}
.lsb{letter-spacing:0.106800px;}
.ls1c{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.206400px;}
.ls7{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.298800px;}
.lsf{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.480000px;}
.ls1d{letter-spacing:0.513600px;}
.ls28{letter-spacing:0.540000px;}
.ls9{letter-spacing:0.900000px;}
.ls26{letter-spacing:0.979920px;}
.ls27{letter-spacing:1.015920px;}
.ls22{letter-spacing:1.080000px;}
.ls1e{letter-spacing:1.620000px;}
.ls1b{letter-spacing:2.340000px;}
.ls29{letter-spacing:3.060000px;}
.ls1{letter-spacing:3.780000px;}
.ls15{letter-spacing:4.500000px;}
.ls1f{letter-spacing:5.220000px;}
.ls14{letter-spacing:5.940000px;}
.ls2a{letter-spacing:8.820000px;}
.ls23{letter-spacing:13.626720px;}
.ls13{letter-spacing:16.020000px;}
.ls21{letter-spacing:16.506720px;}
.ls25{letter-spacing:37.620000px;}
.ls16{letter-spacing:46.026720px;}
.lsa{letter-spacing:63.450720px;}
.ls24{letter-spacing:70.020000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.020000px;}
.ws12{word-spacing:-15.955920px;}
.ws2{word-spacing:-15.840000px;}
.ws4{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.246600px;}
.wsa{word-spacing:-15.238800px;}
.ws7{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.146400px;}
.ws6{word-spacing:-15.046800px;}
.wsd{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.733600px;}
.ws9{word-spacing:-14.680200px;}
.ws11{word-spacing:-14.580000px;}
.ws13{word-spacing:-14.220000px;}
.wse{word-spacing:-14.166000px;}
.ws1{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._1b{margin-left:-4.256640px;}
._14{margin-left:-2.295840px;}
._0{margin-left:-1.080000px;}
._11{width:1.113600px;}
._1{width:2.220000px;}
._12{width:3.444720px;}
._13{width:4.541760px;}
._1a{width:5.840400px;}
._16{width:6.954000px;}
._17{width:7.964160px;}
._18{width:9.016800px;}
._6{width:10.800000px;}
._1c{width:11.835360px;}
._19{width:13.004400px;}
._1e{width:16.136880px;}
._1d{width:17.178000px;}
._f{width:18.948000px;}
._15{width:20.097120px;}
._1f{width:21.477840px;}
._21{width:23.284560px;}
._20{width:24.702720px;}
._28{width:25.905120px;}
._22{width:26.913840px;}
._23{width:28.266480px;}
._2e{width:31.418640px;}
._25{width:32.520240px;}
._24{width:34.182720px;}
._26{width:35.597280px;}
._2d{width:37.230480px;}
._2c{width:38.306160px;}
._27{width:52.095600px;}
._29{width:54.164400px;}
._2b{width:69.533040px;}
._2a{width:70.936560px;}
._7{width:76.284960px;}
._2f{width:84.620160px;}
._10{width:99.660000px;}
._8{width:154.080000px;}
._c{width:195.120000px;}
._e{width:199.584000px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._4{width:388.054560px;}
._5{width:436.440000px;}
._9{width:604.364160px;}
._d{width:637.320000px;}
._a{width:1096.860000px;}
._b{width:1176.060000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(238,0,0);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs7{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yf{bottom:5.760000px;}
.y6{bottom:12.420000px;}
.y8{bottom:18.180000px;}
.yd{bottom:37.260000px;}
.y5{bottom:40.320000px;}
.yc{bottom:57.600000px;}
.y4{bottom:68.400000px;}
.ye{bottom:74.520000px;}
.yb{bottom:78.120000px;}
.y3{bottom:96.330000px;}
.y3d{bottom:99.900000px;}
.y86{bottom:104.580000px;}
.y8d{bottom:111.060000px;}
.y6c{bottom:113.580000px;}
.y3c{bottom:119.700000px;}
.y85{bottom:124.380000px;}
.y2{bottom:125.670000px;}
.y8c{bottom:131.040000px;}
.y6b{bottom:133.380000px;}
.y3b{bottom:139.680000px;}
.y84{bottom:144.180000px;}
.y8b{bottom:150.840000px;}
.y6a{bottom:153.210000px;}
.y3a{bottom:159.510000px;}
.y83{bottom:164.010000px;}
.y69{bottom:173.010000px;}
.y39{bottom:179.310000px;}
.y82{bottom:183.990000px;}
.y68{bottom:192.990000px;}
.y38{bottom:199.110000px;}
.y81{bottom:203.790000px;}
.y67{bottom:212.790000px;}
.y37{bottom:218.910000px;}
.y80{bottom:223.590000px;}
.y66{bottom:232.590000px;}
.y36{bottom:238.890000px;}
.y7f{bottom:243.390000px;}
.y65{bottom:252.390000px;}
.y35{bottom:258.690000px;}
.y7e{bottom:263.190000px;}
.y64{bottom:272.190000px;}
.y34{bottom:278.490000px;}
.y7d{bottom:283.170000px;}
.y63{bottom:292.170000px;}
.y33{bottom:298.290000px;}
.y7c{bottom:302.970000px;}
.y62{bottom:311.970000px;}
.y32{bottom:318.090000px;}
.y7b{bottom:322.770000px;}
.y61{bottom:331.770000px;}
.y31{bottom:338.070000px;}
.y7a{bottom:342.570000px;}
.y60{bottom:351.570000px;}
.y30{bottom:357.870000px;}
.y79{bottom:362.370000px;}
.y5f{bottom:371.370000px;}
.y2f{bottom:377.670000px;}
.y78{bottom:382.350000px;}
.y5e{bottom:391.350000px;}
.y2e{bottom:397.470000px;}
.y77{bottom:402.195000px;}
.y5d{bottom:411.195000px;}
.y2d{bottom:417.315000px;}
.y76{bottom:421.995000px;}
.y5c{bottom:430.995000px;}
.y2c{bottom:437.295000px;}
.y75{bottom:441.795000px;}
.y5b{bottom:450.795000px;}
.y2b{bottom:457.095000px;}
.y74{bottom:461.595000px;}
.y5a{bottom:470.595000px;}
.y2a{bottom:476.895000px;}
.y73{bottom:481.575000px;}
.y59{bottom:490.575000px;}
.y29{bottom:494.175000px;}
.y72{bottom:501.375000px;}
.y58{bottom:510.375000px;}
.y28{bottom:513.975000px;}
.y71{bottom:521.175000px;}
.y57{bottom:530.175000px;}
.y27{bottom:533.775000px;}
.y70{bottom:540.975000px;}
.y56{bottom:549.975000px;}
.y26{bottom:551.055000px;}
.y6f{bottom:560.775000px;}
.y55{bottom:569.775000px;}
.y25{bottom:570.855000px;}
.y6e{bottom:580.755000px;}
.y54{bottom:589.755000px;}
.y24{bottom:590.655000px;}
.y6d{bottom:600.555000px;}
.y53{bottom:609.555000px;}
.y23{bottom:610.635000px;}
.y8a{bottom:620.355000px;}
.y52{bottom:629.355000px;}
.y22{bottom:630.435000px;}
.y89{bottom:640.155000px;}
.y51{bottom:649.185000px;}
.y21{bottom:650.265000px;}
.y88{bottom:659.985000px;}
.y50{bottom:668.985000px;}
.y20{bottom:670.065000px;}
.y87{bottom:679.965000px;}
.y4f{bottom:688.965000px;}
.y1f{bottom:689.865000px;}
.y4e{bottom:708.765000px;}
.y1e{bottom:709.845000px;}
.y4d{bottom:728.565000px;}
.y1d{bottom:729.645000px;}
.y4c{bottom:748.365000px;}
.y1c{bottom:749.445000px;}
.y4b{bottom:768.165000px;}
.y1b{bottom:769.245000px;}
.y4a{bottom:788.145000px;}
.y1a{bottom:789.045000px;}
.y49{bottom:807.945000px;}
.y19{bottom:809.025000px;}
.y48{bottom:827.745000px;}
.y18{bottom:828.825000px;}
.y47{bottom:847.545000px;}
.y17{bottom:848.625000px;}
.y46{bottom:867.345000px;}
.y16{bottom:868.425000px;}
.y15{bottom:885.705000px;}
.y45{bottom:887.325000px;}
.y14{bottom:905.550000px;}
.y44{bottom:907.170000px;}
.y13{bottom:926.070000px;}
.y43{bottom:926.970000px;}
.y12{bottom:944.790000px;}
.y42{bottom:946.770000px;}
.y41{bottom:966.570000px;}
.y11{bottom:968.190000px;}
.y40{bottom:986.550000px;}
.y10{bottom:999.870000px;}
.y3f{bottom:1006.350000px;}
.y3e{bottom:1026.150000px;}
.ya{bottom:1044.690000px;}
.y9{bottom:1060.530000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h7{height:2.566406px;}
.hb{height:21.240000px;}
.h8{height:33.480000px;}
.hd{height:42.164648px;}
.he{height:43.506914px;}
.hf{height:45.024258px;}
.h4{height:46.736719px;}
.h5{height:53.252930px;}
.ha{height:59.027344px;}
.h3{height:63.500977px;}
.h9{height:65.884219px;}
.hc{height:67.565039px;}
.h6{height:112.536000px;}
.h2{height:146.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.720000px;}
.w3{width:137.556000px;}
.w2{width:649.410000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:53.100000px;}
.x6{left:57.059987px;}
.xc{left:80.999987px;}
.xb{left:96.515987px;}
.xd{left:108.035987px;}
.x4{left:118.470000px;}
.xa{left:174.269987px;}
.x7{left:315.074987px;}
.x9{left:365.654987px;}
.x8{left:446.504987px;}
.x3{left:702.510000px;}
.x5{left:829.440000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls18{letter-spacing:-0.960000pt;}
.lse{letter-spacing:-0.688000pt;}
.ls6{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.230933pt;}
.ls10{letter-spacing:-0.183467pt;}
.ls17{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.059520pt;}
.ls20{letter-spacing:0.094720pt;}
.lsb{letter-spacing:0.094933pt;}
.ls1c{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.183467pt;}
.ls7{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.265600pt;}
.lsf{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.426667pt;}
.ls1d{letter-spacing:0.456533pt;}
.ls28{letter-spacing:0.480000pt;}
.ls9{letter-spacing:0.800000pt;}
.ls26{letter-spacing:0.871040pt;}
.ls27{letter-spacing:0.903040pt;}
.ls22{letter-spacing:0.960000pt;}
.ls1e{letter-spacing:1.440000pt;}
.ls1b{letter-spacing:2.080000pt;}
.ls29{letter-spacing:2.720000pt;}
.ls1{letter-spacing:3.360000pt;}
.ls15{letter-spacing:4.000000pt;}
.ls1f{letter-spacing:4.640000pt;}
.ls14{letter-spacing:5.280000pt;}
.ls2a{letter-spacing:7.840000pt;}
.ls23{letter-spacing:12.112640pt;}
.ls13{letter-spacing:14.240000pt;}
.ls21{letter-spacing:14.672640pt;}
.ls25{letter-spacing:33.440000pt;}
.ls16{letter-spacing:40.912640pt;}
.lsa{letter-spacing:56.400640pt;}
.ls24{letter-spacing:62.240000pt;}
.ws0{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.240000pt;}
.ws12{word-spacing:-14.183040pt;}
.ws2{word-spacing:-14.080000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.552533pt;}
.wsa{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.463467pt;}
.ws6{word-spacing:-13.374933pt;}
.wsd{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.096533pt;}
.ws9{word-spacing:-13.049067pt;}
.ws11{word-spacing:-12.960000pt;}
.ws13{word-spacing:-12.640000pt;}
.wse{word-spacing:-12.592000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._1b{margin-left:-3.783680pt;}
._14{margin-left:-2.040747pt;}
._0{margin-left:-0.960000pt;}
._11{width:0.989867pt;}
._1{width:1.973333pt;}
._12{width:3.061973pt;}
._13{width:4.037120pt;}
._1a{width:5.191467pt;}
._16{width:6.181333pt;}
._17{width:7.079253pt;}
._18{width:8.014933pt;}
._6{width:9.600000pt;}
._1c{width:10.520320pt;}
._19{width:11.559467pt;}
._1e{width:14.343893pt;}
._1d{width:15.269333pt;}
._f{width:16.842667pt;}
._15{width:17.864107pt;}
._1f{width:19.091413pt;}
._21{width:20.697387pt;}
._20{width:21.957973pt;}
._28{width:23.026773pt;}
._22{width:23.923413pt;}
._23{width:25.125760pt;}
._2e{width:27.927680pt;}
._25{width:28.906880pt;}
._24{width:30.384640pt;}
._26{width:31.642027pt;}
._2d{width:33.093760pt;}
._2c{width:34.049920pt;}
._27{width:46.307200pt;}
._29{width:48.146133pt;}
._2b{width:61.807147pt;}
._2a{width:63.054720pt;}
._7{width:67.808853pt;}
._2f{width:75.217920pt;}
._10{width:88.586667pt;}
._8{width:136.960000pt;}
._c{width:173.440000pt;}
._e{width:177.408000pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._4{width:344.937387pt;}
._5{width:387.946667pt;}
._9{width:537.212587pt;}
._d{width:566.506667pt;}
._a{width:974.986667pt;}
._b{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:5.120000pt;}
.y6{bottom:11.040000pt;}
.y8{bottom:16.160000pt;}
.yd{bottom:33.120000pt;}
.y5{bottom:35.840000pt;}
.yc{bottom:51.200000pt;}
.y4{bottom:60.800000pt;}
.ye{bottom:66.240000pt;}
.yb{bottom:69.440000pt;}
.y3{bottom:85.626667pt;}
.y3d{bottom:88.800000pt;}
.y86{bottom:92.960000pt;}
.y8d{bottom:98.720000pt;}
.y6c{bottom:100.960000pt;}
.y3c{bottom:106.400000pt;}
.y85{bottom:110.560000pt;}
.y2{bottom:111.706667pt;}
.y8c{bottom:116.480000pt;}
.y6b{bottom:118.560000pt;}
.y3b{bottom:124.160000pt;}
.y84{bottom:128.160000pt;}
.y8b{bottom:134.080000pt;}
.y6a{bottom:136.186667pt;}
.y3a{bottom:141.786667pt;}
.y83{bottom:145.786667pt;}
.y69{bottom:153.786667pt;}
.y39{bottom:159.386667pt;}
.y82{bottom:163.546667pt;}
.y68{bottom:171.546667pt;}
.y38{bottom:176.986667pt;}
.y81{bottom:181.146667pt;}
.y67{bottom:189.146667pt;}
.y37{bottom:194.586667pt;}
.y80{bottom:198.746667pt;}
.y66{bottom:206.746667pt;}
.y36{bottom:212.346667pt;}
.y7f{bottom:216.346667pt;}
.y65{bottom:224.346667pt;}
.y35{bottom:229.946667pt;}
.y7e{bottom:233.946667pt;}
.y64{bottom:241.946667pt;}
.y34{bottom:247.546667pt;}
.y7d{bottom:251.706667pt;}
.y63{bottom:259.706667pt;}
.y33{bottom:265.146667pt;}
.y7c{bottom:269.306667pt;}
.y62{bottom:277.306667pt;}
.y32{bottom:282.746667pt;}
.y7b{bottom:286.906667pt;}
.y61{bottom:294.906667pt;}
.y31{bottom:300.506667pt;}
.y7a{bottom:304.506667pt;}
.y60{bottom:312.506667pt;}
.y30{bottom:318.106667pt;}
.y79{bottom:322.106667pt;}
.y5f{bottom:330.106667pt;}
.y2f{bottom:335.706667pt;}
.y78{bottom:339.866667pt;}
.y5e{bottom:347.866667pt;}
.y2e{bottom:353.306667pt;}
.y77{bottom:357.506667pt;}
.y5d{bottom:365.506667pt;}
.y2d{bottom:370.946667pt;}
.y76{bottom:375.106667pt;}
.y5c{bottom:383.106667pt;}
.y2c{bottom:388.706667pt;}
.y75{bottom:392.706667pt;}
.y5b{bottom:400.706667pt;}
.y2b{bottom:406.306667pt;}
.y74{bottom:410.306667pt;}
.y5a{bottom:418.306667pt;}
.y2a{bottom:423.906667pt;}
.y73{bottom:428.066667pt;}
.y59{bottom:436.066667pt;}
.y29{bottom:439.266667pt;}
.y72{bottom:445.666667pt;}
.y58{bottom:453.666667pt;}
.y28{bottom:456.866667pt;}
.y71{bottom:463.266667pt;}
.y57{bottom:471.266667pt;}
.y27{bottom:474.466667pt;}
.y70{bottom:480.866667pt;}
.y56{bottom:488.866667pt;}
.y26{bottom:489.826667pt;}
.y6f{bottom:498.466667pt;}
.y55{bottom:506.466667pt;}
.y25{bottom:507.426667pt;}
.y6e{bottom:516.226667pt;}
.y54{bottom:524.226667pt;}
.y24{bottom:525.026667pt;}
.y6d{bottom:533.826667pt;}
.y53{bottom:541.826667pt;}
.y23{bottom:542.786667pt;}
.y8a{bottom:551.426667pt;}
.y52{bottom:559.426667pt;}
.y22{bottom:560.386667pt;}
.y89{bottom:569.026667pt;}
.y51{bottom:577.053333pt;}
.y21{bottom:578.013333pt;}
.y88{bottom:586.653333pt;}
.y50{bottom:594.653333pt;}
.y20{bottom:595.613333pt;}
.y87{bottom:604.413333pt;}
.y4f{bottom:612.413333pt;}
.y1f{bottom:613.213333pt;}
.y4e{bottom:630.013333pt;}
.y1e{bottom:630.973333pt;}
.y4d{bottom:647.613333pt;}
.y1d{bottom:648.573333pt;}
.y4c{bottom:665.213333pt;}
.y1c{bottom:666.173333pt;}
.y4b{bottom:682.813333pt;}
.y1b{bottom:683.773333pt;}
.y4a{bottom:700.573333pt;}
.y1a{bottom:701.373333pt;}
.y49{bottom:718.173333pt;}
.y19{bottom:719.133333pt;}
.y48{bottom:735.773333pt;}
.y18{bottom:736.733333pt;}
.y47{bottom:753.373333pt;}
.y17{bottom:754.333333pt;}
.y46{bottom:770.973333pt;}
.y16{bottom:771.933333pt;}
.y15{bottom:787.293333pt;}
.y45{bottom:788.733333pt;}
.y14{bottom:804.933333pt;}
.y44{bottom:806.373333pt;}
.y13{bottom:823.173333pt;}
.y43{bottom:823.973333pt;}
.y12{bottom:839.813333pt;}
.y42{bottom:841.573333pt;}
.y41{bottom:859.173333pt;}
.y11{bottom:860.613333pt;}
.y40{bottom:876.933333pt;}
.y10{bottom:888.773333pt;}
.y3f{bottom:894.533333pt;}
.y3e{bottom:912.133333pt;}
.ya{bottom:928.613333pt;}
.y9{bottom:942.693333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h7{height:2.281250pt;}
.hb{height:18.880000pt;}
.h8{height:29.760000pt;}
.hd{height:37.479688pt;}
.he{height:38.672812pt;}
.hf{height:40.021563pt;}
.h4{height:41.543750pt;}
.h5{height:47.335938pt;}
.ha{height:52.468750pt;}
.h3{height:56.445312pt;}
.h9{height:58.563750pt;}
.hc{height:60.057813pt;}
.h6{height:100.032000pt;}
.h2{height:130.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.640000pt;}
.w3{width:122.272000pt;}
.w2{width:577.253333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:47.200000pt;}
.x6{left:50.719988pt;}
.xc{left:71.999988pt;}
.xb{left:85.791988pt;}
.xd{left:96.031988pt;}
.x4{left:105.306667pt;}
.xa{left:154.906655pt;}
.x7{left:280.066655pt;}
.x9{left:325.026655pt;}
.x8{left:396.893322pt;}
.x3{left:624.453333pt;}
.x5{left:737.280000pt;}
}




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