
    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_021c9336c7d13725e640ae2a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_f127a5abf522e5a512a9ecaa.woff2')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_b00466d1b29dabdb119b41a6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f7928a7656fb594acb1f7814.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_0a0c18e497577af5d39c60f2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6894fe4e8ea697b18c2df689.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d4b70cee9c7216d647bacd43.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f72b1e2acae68d51ad10ab60.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.035156;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_a804567de288559465fb808c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_b343ab10864e38e862124620.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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_4900e518b92ba5511df8167e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-74.160000px;}
.v2{vertical-align:-61.200000px;}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-1.176000px;}
.lsc{letter-spacing:-1.008000px;}
.lsd{letter-spacing:-0.810000px;}
.ls13{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.226200px;}
.ls10{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.108000px;}
.lsa{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.018000px;}
.ls6{letter-spacing:0.089400px;}
.ls8{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.262080px;}
.ls1{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.738000px;}
.ls9{letter-spacing:0.900000px;}
.ls12{letter-spacing:59.228640px;}
.ls5{letter-spacing:202.680000px;}
.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;}
.ws1{word-spacing:-15.384000px;}
.ws2{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.ws6{word-spacing:-13.860000px;}
.ws8{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.392000px;}
.ws9{word-spacing:-13.284000px;}
.wse{word-spacing:-13.140000px;}
.wsd{word-spacing:-12.780000px;}
.wsf{word-spacing:-12.420000px;}
.ws7{word-spacing:-12.204000px;}
.wsa{word-spacing:-10.529400px;}
.ws5{word-spacing:-10.440000px;}
.ws4{word-spacing:-10.213800px;}
.wsc{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.007760px;}
._2{width:2.539200px;}
._7{width:4.239360px;}
._6{width:5.670000px;}
._8{width:7.022880px;}
._c{width:8.259120px;}
._e{width:10.212720px;}
._9{width:12.163680px;}
._10{width:13.944240px;}
._5{width:15.120000px;}
._4{width:16.235040px;}
._d{width:17.820000px;}
._f{width:18.863280px;}
._a{width:20.466000px;}
._b{width:21.978000px;}
._11{width:35.629680px;}
._12{width:37.140960px;}
._3{width:514.396320px;}
.fc5{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(10,10,10);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs8{font-size:12.240000px;}
.fs2{font-size:30.240000px;}
.fs7{font-size:41.760000px;}
.fsa{font-size:51.120000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y51{bottom:4.135500px;}
.y5{bottom:4.140000px;}
.y47{bottom:4.845000px;}
.y60{bottom:5.010000px;}
.y5c{bottom:8.635500px;}
.y2{bottom:9.930000px;}
.y46{bottom:20.505000px;}
.y4{bottom:23.070000px;}
.y5b{bottom:24.289500px;}
.y50{bottom:34.369500px;}
.y45{bottom:36.030000px;}
.y5a{bottom:41.929500px;}
.y4f{bottom:47.329500px;}
.y3{bottom:48.090000px;}
.y44{bottom:51.510000px;}
.y59{bottom:57.409500px;}
.y4e{bottom:60.469500px;}
.y43{bottom:66.990000px;}
.y8{bottom:72.000000px;}
.y58{bottom:72.889500px;}
.y4d{bottom:73.429500px;}
.y42{bottom:82.650000px;}
.y4c{bottom:86.209500px;}
.y57{bottom:90.349500px;}
.y7{bottom:91.296000px;}
.y41{bottom:98.130000px;}
.y56{bottom:106.189500px;}
.y40{bottom:113.610000px;}
.y5e{bottom:117.396000px;}
.ya4{bottom:120.456000px;}
.y55{bottom:121.849500px;}
.y3f{bottom:129.090000px;}
.y49{bottom:133.600500px;}
.ya3{bottom:135.216000px;}
.y54{bottom:137.329500px;}
.y3e{bottom:144.750000px;}
.y4b{bottom:148.489500px;}
.ya2{bottom:149.796000px;}
.y53{bottom:152.809500px;}
.y4a{bottom:159.109500px;}
.y3d{bottom:159.870000px;}
.ya1{bottom:164.550000px;}
.y52{bottom:168.109500px;}
.y5d{bottom:175.669500px;}
.y3c{bottom:175.710000px;}
.ya0{bottom:179.130000px;}
.y3b{bottom:191.190000px;}
.y9f{bottom:193.710000px;}
.y3a{bottom:206.850000px;}
.y9e{bottom:208.470000px;}
.y39{bottom:222.330000px;}
.y9d{bottom:222.870000px;}
.y38{bottom:237.450000px;}
.y9c{bottom:237.810000px;}
.y9b{bottom:252.390000px;}
.y37{bottom:253.290000px;}
.y9a{bottom:267.150000px;}
.y36{bottom:268.950000px;}
.y99{bottom:281.730000px;}
.y35{bottom:284.430000px;}
.y98{bottom:296.490000px;}
.y34{bottom:300.300000px;}
.y97{bottom:311.070000px;}
.y33{bottom:316.500000px;}
.y10{bottom:321.885000px;}
.y96{bottom:325.830000px;}
.y32{bottom:331.980000px;}
.y1e{bottom:338.280000px;}
.y95{bottom:340.410000px;}
.y31{bottom:347.460000px;}
.y94{bottom:355.035000px;}
.y1d{bottom:355.380000px;}
.y30{bottom:362.940000px;}
.y93{bottom:369.795000px;}
.y2f{bottom:378.600000px;}
.y1c{bottom:379.500000px;}
.y92{bottom:384.375000px;}
.y2e{bottom:394.080000px;}
.y91{bottom:399.135000px;}
.y1b{bottom:403.620000px;}
.y2d{bottom:409.200000px;}
.y90{bottom:413.715000px;}
.y2c{bottom:424.680000px;}
.y1a{bottom:427.740000px;}
.y8f{bottom:428.475000px;}
.y2b{bottom:440.520000px;}
.y8e{bottom:443.055000px;}
.y19{bottom:451.860000px;}
.y2a{bottom:456.180000px;}
.y8d{bottom:457.635000px;}
.y29{bottom:471.660000px;}
.y8c{bottom:472.395000px;}
.y18{bottom:476.160000px;}
.y8b{bottom:486.975000px;}
.y28{bottom:487.140000px;}
.y17{bottom:500.280000px;}
.y8a{bottom:501.735000px;}
.y27{bottom:502.260000px;}
.y89{bottom:516.315000px;}
.y26{bottom:518.280000px;}
.y16{bottom:524.400000px;}
.y88{bottom:531.075000px;}
.y25{bottom:533.760000px;}
.y87{bottom:545.655000px;}
.y15{bottom:548.520000px;}
.y24{bottom:549.240000px;}
.y86{bottom:560.415000px;}
.y23{bottom:564.765000px;}
.y14{bottom:572.685000px;}
.y85{bottom:574.995000px;}
.y22{bottom:580.425000px;}
.y84{bottom:589.755000px;}
.y21{bottom:595.905000px;}
.y13{bottom:596.805000px;}
.y83{bottom:604.155000px;}
.y20{bottom:611.385000px;}
.y82{bottom:619.125000px;}
.y12{bottom:620.925000px;}
.y81{bottom:633.705000px;}
.y1f{bottom:642.165000px;}
.y48{bottom:642.345000px;}
.y11{bottom:645.225000px;}
.y80{bottom:648.285000px;}
.y7f{bottom:663.045000px;}
.y7e{bottom:677.625000px;}
.y7d{bottom:692.385000px;}
.y7c{bottom:706.785000px;}
.y7b{bottom:721.725000px;}
.y7a{bottom:736.305000px;}
.y79{bottom:751.065000px;}
.y78{bottom:765.645000px;}
.y77{bottom:780.225000px;}
.y76{bottom:794.985000px;}
.y75{bottom:809.565000px;}
.y74{bottom:824.325000px;}
.y73{bottom:838.725000px;}
.y72{bottom:853.665000px;}
.y71{bottom:868.245000px;}
.y70{bottom:883.050000px;}
.y6f{bottom:897.630000px;}
.y6e{bottom:912.390000px;}
.y6d{bottom:926.970000px;}
.y6c{bottom:941.550000px;}
.y6b{bottom:956.130000px;}
.y6a{bottom:970.890000px;}
.yf{bottom:977.730000px;}
.ye{bottom:979.530000px;}
.yd{bottom:984.570000px;}
.y69{bottom:985.650000px;}
.y68{bottom:1000.230000px;}
.yc{bottom:1001.850000px;}
.y67{bottom:1014.990000px;}
.yb{bottom:1018.950000px;}
.y66{bottom:1029.570000px;}
.y65{bottom:1044.330000px;}
.ya{bottom:1054.410000px;}
.y64{bottom:1058.910000px;}
.y63{bottom:1073.490000px;}
.y9{bottom:1082.850000px;}
.y5f{bottom:1086.480000px;}
.y62{bottom:1088.250000px;}
.y61{bottom:1102.830000px;}
.y6{bottom:1116.510000px;}
.y1{bottom:1123.530000px;}
.hb{height:5.653125px;}
.hf{height:12.012891px;}
.h16{height:27.540000px;}
.h15{height:29.678906px;}
.h6{height:30.077578px;}
.he{height:40.985156px;}
.hd{height:42.086250px;}
.h19{height:50.171484px;}
.h18{height:51.519375px;}
.h1a{height:52.543305px;}
.h10{height:52.971680px;}
.h12{height:52.998047px;}
.h11{height:54.421875px;}
.h13{height:55.291992px;}
.h8{height:57.324375px;}
.h7{height:58.651172px;}
.ha{height:60.226875px;}
.h17{height:64.002656px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h9{height:84.898125px;}
.h2{height:84.982500px;}
.h4{height:117.180000px;}
.h14{height:188.275500px;}
.hc{height:654.750000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:-518.880000px;}
.w6{width:77.580000px;}
.w2{width:104.040000px;}
.w4{width:132.651000px;}
.w8{width:173.520000px;}
.w5{width:596.490000px;}
.w3{width:622.410000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:6.876000px;}
.x1a{left:8.100000px;}
.x21{left:10.260000px;}
.x4{left:12.780000px;}
.x6{left:16.020000px;}
.x15{left:17.280000px;}
.x18{left:19.620000px;}
.x17{left:22.680000px;}
.x16{left:28.980000px;}
.xf{left:43.740000px;}
.x1f{left:47.700000px;}
.x10{left:50.760000px;}
.xe{left:55.080000px;}
.x20{left:56.880000px;}
.x1b{left:62.145000px;}
.x14{left:67.134000px;}
.x12{left:71.814000px;}
.x13{left:73.254000px;}
.x1{left:78.327000px;}
.x8{left:86.436000px;}
.x2{left:95.763000px;}
.x22{left:102.774000px;}
.x1e{left:106.734000px;}
.x24{left:113.436000px;}
.x11{left:124.554000px;}
.x5{left:141.345000px;}
.xb{left:154.650000px;}
.x3{left:182.370000px;}
.x19{left:219.090000px;}
.xa{left:522.105000px;}
.xc{left:580.965000px;}
.x7{left:784.440000px;}
.xd{left:806.940000px;}
.x9{left:808.740000px;}
.x1c{left:815.580000px;}
.x1d{left:1412.040000px;}
@media print{
.v1{vertical-align:-65.920000pt;}
.v2{vertical-align:-54.400000pt;}
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-1.045333pt;}
.lsc{letter-spacing:-0.896000pt;}
.lsd{letter-spacing:-0.720000pt;}
.ls13{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.201067pt;}
.ls10{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.096000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.016000pt;}
.ls6{letter-spacing:0.079467pt;}
.ls8{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.232960pt;}
.ls1{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.656000pt;}
.ls9{letter-spacing:0.800000pt;}
.ls12{letter-spacing:52.647680pt;}
.ls5{letter-spacing:180.160000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.674667pt;}
.ws2{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.320000pt;}
.ws8{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.904000pt;}
.ws9{word-spacing:-11.808000pt;}
.wse{word-spacing:-11.680000pt;}
.wsd{word-spacing:-11.360000pt;}
.wsf{word-spacing:-11.040000pt;}
.ws7{word-spacing:-10.848000pt;}
.wsa{word-spacing:-9.359467pt;}
.ws5{word-spacing:-9.280000pt;}
.ws4{word-spacing:-9.078933pt;}
.wsc{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.895787pt;}
._2{width:2.257067pt;}
._7{width:3.768320pt;}
._6{width:5.040000pt;}
._8{width:6.242560pt;}
._c{width:7.341440pt;}
._e{width:9.077973pt;}
._9{width:10.812160pt;}
._10{width:12.394880pt;}
._5{width:13.440000pt;}
._4{width:14.431147pt;}
._d{width:15.840000pt;}
._f{width:16.767360pt;}
._a{width:18.192000pt;}
._b{width:19.536000pt;}
._11{width:31.670827pt;}
._12{width:33.014187pt;}
._3{width:457.241173pt;}
.fs6{font-size:5.120000pt;}
.fs8{font-size:10.880000pt;}
.fs2{font-size:26.880000pt;}
.fs7{font-size:37.120000pt;}
.fsa{font-size:45.440000pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:3.676000pt;}
.y5{bottom:3.680000pt;}
.y47{bottom:4.306667pt;}
.y60{bottom:4.453333pt;}
.y5c{bottom:7.676000pt;}
.y2{bottom:8.826667pt;}
.y46{bottom:18.226667pt;}
.y4{bottom:20.506667pt;}
.y5b{bottom:21.590667pt;}
.y50{bottom:30.550667pt;}
.y45{bottom:32.026667pt;}
.y5a{bottom:37.270667pt;}
.y4f{bottom:42.070667pt;}
.y3{bottom:42.746667pt;}
.y44{bottom:45.786667pt;}
.y59{bottom:51.030667pt;}
.y4e{bottom:53.750667pt;}
.y43{bottom:59.546667pt;}
.y8{bottom:64.000000pt;}
.y58{bottom:64.790667pt;}
.y4d{bottom:65.270667pt;}
.y42{bottom:73.466667pt;}
.y4c{bottom:76.630667pt;}
.y57{bottom:80.310667pt;}
.y7{bottom:81.152000pt;}
.y41{bottom:87.226667pt;}
.y56{bottom:94.390667pt;}
.y40{bottom:100.986667pt;}
.y5e{bottom:104.352000pt;}
.ya4{bottom:107.072000pt;}
.y55{bottom:108.310667pt;}
.y3f{bottom:114.746667pt;}
.y49{bottom:118.756000pt;}
.ya3{bottom:120.192000pt;}
.y54{bottom:122.070667pt;}
.y3e{bottom:128.666667pt;}
.y4b{bottom:131.990667pt;}
.ya2{bottom:133.152000pt;}
.y53{bottom:135.830667pt;}
.y4a{bottom:141.430667pt;}
.y3d{bottom:142.106667pt;}
.ya1{bottom:146.266667pt;}
.y52{bottom:149.430667pt;}
.y5d{bottom:156.150667pt;}
.y3c{bottom:156.186667pt;}
.ya0{bottom:159.226667pt;}
.y3b{bottom:169.946667pt;}
.y9f{bottom:172.186667pt;}
.y3a{bottom:183.866667pt;}
.y9e{bottom:185.306667pt;}
.y39{bottom:197.626667pt;}
.y9d{bottom:198.106667pt;}
.y38{bottom:211.066667pt;}
.y9c{bottom:211.386667pt;}
.y9b{bottom:224.346667pt;}
.y37{bottom:225.146667pt;}
.y9a{bottom:237.466667pt;}
.y36{bottom:239.066667pt;}
.y99{bottom:250.426667pt;}
.y35{bottom:252.826667pt;}
.y98{bottom:263.546667pt;}
.y34{bottom:266.933333pt;}
.y97{bottom:276.506667pt;}
.y33{bottom:281.333333pt;}
.y10{bottom:286.120000pt;}
.y96{bottom:289.626667pt;}
.y32{bottom:295.093333pt;}
.y1e{bottom:300.693333pt;}
.y95{bottom:302.586667pt;}
.y31{bottom:308.853333pt;}
.y94{bottom:315.586667pt;}
.y1d{bottom:315.893333pt;}
.y30{bottom:322.613333pt;}
.y93{bottom:328.706667pt;}
.y2f{bottom:336.533333pt;}
.y1c{bottom:337.333333pt;}
.y92{bottom:341.666667pt;}
.y2e{bottom:350.293333pt;}
.y91{bottom:354.786667pt;}
.y1b{bottom:358.773333pt;}
.y2d{bottom:363.733333pt;}
.y90{bottom:367.746667pt;}
.y2c{bottom:377.493333pt;}
.y1a{bottom:380.213333pt;}
.y8f{bottom:380.866667pt;}
.y2b{bottom:391.573333pt;}
.y8e{bottom:393.826667pt;}
.y19{bottom:401.653333pt;}
.y2a{bottom:405.493333pt;}
.y8d{bottom:406.786667pt;}
.y29{bottom:419.253333pt;}
.y8c{bottom:419.906667pt;}
.y18{bottom:423.253333pt;}
.y8b{bottom:432.866667pt;}
.y28{bottom:433.013333pt;}
.y17{bottom:444.693333pt;}
.y8a{bottom:445.986667pt;}
.y27{bottom:446.453333pt;}
.y89{bottom:458.946667pt;}
.y26{bottom:460.693333pt;}
.y16{bottom:466.133333pt;}
.y88{bottom:472.066667pt;}
.y25{bottom:474.453333pt;}
.y87{bottom:485.026667pt;}
.y15{bottom:487.573333pt;}
.y24{bottom:488.213333pt;}
.y86{bottom:498.146667pt;}
.y23{bottom:502.013333pt;}
.y14{bottom:509.053333pt;}
.y85{bottom:511.106667pt;}
.y22{bottom:515.933333pt;}
.y84{bottom:524.226667pt;}
.y21{bottom:529.693333pt;}
.y13{bottom:530.493333pt;}
.y83{bottom:537.026667pt;}
.y20{bottom:543.453333pt;}
.y82{bottom:550.333333pt;}
.y12{bottom:551.933333pt;}
.y81{bottom:563.293333pt;}
.y1f{bottom:570.813333pt;}
.y48{bottom:570.973333pt;}
.y11{bottom:573.533333pt;}
.y80{bottom:576.253333pt;}
.y7f{bottom:589.373333pt;}
.y7e{bottom:602.333333pt;}
.y7d{bottom:615.453333pt;}
.y7c{bottom:628.253333pt;}
.y7b{bottom:641.533333pt;}
.y7a{bottom:654.493333pt;}
.y79{bottom:667.613333pt;}
.y78{bottom:680.573333pt;}
.y77{bottom:693.533333pt;}
.y76{bottom:706.653333pt;}
.y75{bottom:719.613333pt;}
.y74{bottom:732.733333pt;}
.y73{bottom:745.533333pt;}
.y72{bottom:758.813333pt;}
.y71{bottom:771.773333pt;}
.y70{bottom:784.933333pt;}
.y6f{bottom:797.893333pt;}
.y6e{bottom:811.013333pt;}
.y6d{bottom:823.973333pt;}
.y6c{bottom:836.933333pt;}
.y6b{bottom:849.893333pt;}
.y6a{bottom:863.013333pt;}
.yf{bottom:869.093333pt;}
.ye{bottom:870.693333pt;}
.yd{bottom:875.173333pt;}
.y69{bottom:876.133333pt;}
.y68{bottom:889.093333pt;}
.yc{bottom:890.533333pt;}
.y67{bottom:902.213333pt;}
.yb{bottom:905.733333pt;}
.y66{bottom:915.173333pt;}
.y65{bottom:928.293333pt;}
.ya{bottom:937.253333pt;}
.y64{bottom:941.253333pt;}
.y63{bottom:954.213333pt;}
.y9{bottom:962.533333pt;}
.y5f{bottom:965.760000pt;}
.y62{bottom:967.333333pt;}
.y61{bottom:980.293333pt;}
.y6{bottom:992.453333pt;}
.y1{bottom:998.693333pt;}
.hb{height:5.025000pt;}
.hf{height:10.678125pt;}
.h16{height:24.480000pt;}
.h15{height:26.381250pt;}
.h6{height:26.735625pt;}
.he{height:36.431250pt;}
.hd{height:37.410000pt;}
.h19{height:44.596875pt;}
.h18{height:45.795000pt;}
.h1a{height:46.705160pt;}
.h10{height:47.085938pt;}
.h12{height:47.109375pt;}
.h11{height:48.375000pt;}
.h13{height:49.148438pt;}
.h8{height:50.955000pt;}
.h7{height:52.134375pt;}
.ha{height:53.535000pt;}
.h17{height:56.891250pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h9{height:75.465000pt;}
.h2{height:75.540000pt;}
.h4{height:104.160000pt;}
.h14{height:167.356000pt;}
.hc{height:582.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:-461.226667pt;}
.w6{width:68.960000pt;}
.w2{width:92.480000pt;}
.w4{width:117.912000pt;}
.w8{width:154.240000pt;}
.w5{width:530.213333pt;}
.w3{width:553.253333pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:6.112000pt;}
.x1a{left:7.200000pt;}
.x21{left:9.120000pt;}
.x4{left:11.360000pt;}
.x6{left:14.240000pt;}
.x15{left:15.360000pt;}
.x18{left:17.440000pt;}
.x17{left:20.160000pt;}
.x16{left:25.760000pt;}
.xf{left:38.880000pt;}
.x1f{left:42.400000pt;}
.x10{left:45.120000pt;}
.xe{left:48.960000pt;}
.x20{left:50.560000pt;}
.x1b{left:55.240000pt;}
.x14{left:59.674667pt;}
.x12{left:63.834667pt;}
.x13{left:65.114667pt;}
.x1{left:69.624000pt;}
.x8{left:76.832000pt;}
.x2{left:85.122667pt;}
.x22{left:91.354667pt;}
.x1e{left:94.874667pt;}
.x24{left:100.832000pt;}
.x11{left:110.714667pt;}
.x5{left:125.640000pt;}
.xb{left:137.466667pt;}
.x3{left:162.106667pt;}
.x19{left:194.746667pt;}
.xa{left:464.093333pt;}
.xc{left:516.413333pt;}
.x7{left:697.280000pt;}
.xd{left:717.280000pt;}
.x9{left:718.880000pt;}
.x1c{left:724.960000pt;}
.x1d{left:1255.146667pt;}
}




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