
    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_84e4e23cd98bba53910b207a.woff')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_6b0e84a9f284c8da38306754.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_aea68fa0ae160eb5341ff4f2.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8ffd163152476c357548adb5.woff')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_fe266d73152a609fbcafa311.woff')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_2c33c8d7cc4682e20529098f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.932617;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_fb1f0818ed47e85c3eaebd97.woff')format("woff");}.ff8{font-family:ff8;line-height:0.932617;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_c497e26a6c3fdc18ecf494ba.woff')format("woff");}.ff9{font-family:ff9;line-height:0.942383;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_b4feb020e884746ba36338c3.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')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);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.144000px;}
.ls9{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.720000px;}
.ls18{letter-spacing:0.900000px;}
.ls14{letter-spacing:4.320000px;}
.ls15{letter-spacing:5.040000px;}
.lse{letter-spacing:6.480000px;}
.ls10{letter-spacing:7.200000px;}
.ls7{letter-spacing:11.520000px;}
.ls17{letter-spacing:15.960000px;}
.ls16{letter-spacing:16.536000px;}
.ls11{letter-spacing:17.280000px;}
.ls12{letter-spacing:17.460000px;}
.ls1b{letter-spacing:18.144000px;}
.ls13{letter-spacing:20.880000px;}
.ls5{letter-spacing:34.560000px;}
.ls8{letter-spacing:43.200000px;}
.lsf{letter-spacing:47.520000px;}
.ls19{letter-spacing:54.144000px;}
.ls2{letter-spacing:77.309760px;}
.ls3{letter-spacing:80.640000px;}
.ls1{letter-spacing:111.029760px;}
.ls4{letter-spacing:123.264000px;}
.ls6{letter-spacing:126.864000px;}
.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;}
}
.ws3{word-spacing:-18.216000px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.ws0{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-1.053360px;}
._0{width:1.819440px;}
._2{width:3.382080px;}
._19{width:5.160000px;}
._1a{width:6.480000px;}
._1b{width:7.848000px;}
._1f{width:8.857920px;}
._16{width:9.912000px;}
._17{width:11.277360px;}
._1c{width:12.429360px;}
._b{width:14.256000px;}
._12{width:16.128000px;}
._8{width:19.440000px;}
._18{width:21.312000px;}
._d{width:22.704000px;}
._e{width:23.958720px;}
._c{width:24.960000px;}
._13{width:26.109360px;}
._f{width:27.144000px;}
._9{width:28.152000px;}
._7{width:30.888000px;}
._5{width:31.896000px;}
._15{width:34.005360px;}
._14{width:35.076000px;}
._26{width:36.316560px;}
._21{width:37.773360px;}
._6{width:39.168000px;}
._4{width:40.293360px;}
._27{width:41.877840px;}
._28{width:43.802160px;}
._24{width:45.576000px;}
._1e{width:46.872000px;}
._25{width:48.252000px;}
._20{width:52.464000px;}
._a{width:53.712000px;}
._10{width:57.672000px;}
._11{width:58.896000px;}
._23{width:64.872000px;}
._3{width:80.760000px;}
._1d{width:101.677920px;}
._22{width:184.621920px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(48,88,236);}
.fs3{font-size:5.760000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4{bottom:10.260000px;}
.y5{bottom:11.340000px;}
.y81{bottom:19.080000px;}
.y85{bottom:25.020000px;}
.y8a{bottom:25.200000px;}
.y8e{bottom:25.245000px;}
.y82{bottom:30.960000px;}
.y80{bottom:42.840000px;}
.y94{bottom:48.774000px;}
.y91{bottom:48.780000px;}
.y84{bottom:48.960000px;}
.y8d{bottom:49.005000px;}
.y6{bottom:55.440000px;}
.y3{bottom:57.600000px;}
.y93{bottom:72.534000px;}
.y90{bottom:72.540000px;}
.y89{bottom:72.720000px;}
.y87{bottom:72.750000px;}
.y8c{bottom:72.765000px;}
.y95{bottom:94.716000px;}
.y7c{bottom:98.496000px;}
.y92{bottom:112.356000px;}
.ya8{bottom:114.696000px;}
.y7b{bottom:122.256000px;}
.y58{bottom:124.956000px;}
.ya7{bottom:138.636000px;}
.y7a{bottom:146.016000px;}
.y57{bottom:148.716000px;}
.y2f{bottom:150.330000px;}
.ya6{bottom:162.390000px;}
.y79{bottom:169.950000px;}
.y56{bottom:172.470000px;}
.y2e{bottom:174.090000px;}
.ya5{bottom:186.150000px;}
.y78{bottom:193.710000px;}
.y55{bottom:196.230000px;}
.y2d{bottom:197.850000px;}
.ya4{bottom:209.910000px;}
.y77{bottom:217.470000px;}
.y54{bottom:219.990000px;}
.y8f{bottom:220.530000px;}
.y2c{bottom:221.790000px;}
.ya3{bottom:233.850000px;}
.y76{bottom:241.230000px;}
.y53{bottom:243.930000px;}
.y2b{bottom:245.550000px;}
.ya2{bottom:257.610000px;}
.y75{bottom:264.990000px;}
.y2a{bottom:269.310000px;}
.y52{bottom:272.190000px;}
.ya1{bottom:281.370000px;}
.y74{bottom:288.930000px;}
.y29{bottom:293.070000px;}
.y51{bottom:295.950000px;}
.ya0{bottom:305.130000px;}
.y73{bottom:312.690000px;}
.y50{bottom:319.710000px;}
.y28{bottom:321.510000px;}
.y8b{bottom:328.530000px;}
.y9f{bottom:329.070000px;}
.y72{bottom:336.495000px;}
.y4f{bottom:343.695000px;}
.y27{bottom:349.815000px;}
.y9e{bottom:352.875000px;}
.y71{bottom:360.255000px;}
.y4e{bottom:367.455000px;}
.y26{bottom:373.575000px;}
.y9d{bottom:376.635000px;}
.y70{bottom:384.195000px;}
.y4d{bottom:395.715000px;}
.y25{bottom:397.335000px;}
.y9c{bottom:400.395000px;}
.y6f{bottom:407.955000px;}
.y4c{bottom:419.475000px;}
.y24{bottom:421.275000px;}
.y6e{bottom:431.715000px;}
.y9b{bottom:436.215000px;}
.y88{bottom:436.755000px;}
.y23{bottom:445.035000px;}
.y4b{bottom:447.915000px;}
.y6d{bottom:455.475000px;}
.y9a{bottom:459.975000px;}
.y22{bottom:468.795000px;}
.y4a{bottom:471.675000px;}
.y6c{bottom:479.415000px;}
.y99{bottom:483.915000px;}
.y21{bottom:492.555000px;}
.y49{bottom:495.435000px;}
.y6b{bottom:503.175000px;}
.y98{bottom:507.675000px;}
.y20{bottom:516.495000px;}
.y48{bottom:523.695000px;}
.y6a{bottom:526.935000px;}
.y97{bottom:531.435000px;}
.y86{bottom:544.935000px;}
.y47{bottom:547.635000px;}
.y1f{bottom:550.695000px;}
.y96{bottom:555.195000px;}
.y46{bottom:571.395000px;}
.y69{bottom:574.635000px;}
.y1e{bottom:579.135000px;}
.y45{bottom:595.155000px;}
.y68{bottom:598.395000px;}
.y1d{bottom:602.895000px;}
.y44{bottom:618.945000px;}
.y67{bottom:622.185000px;}
.y1c{bottom:626.685000px;}
.y66{bottom:645.945000px;}
.y43{bottom:647.385000px;}
.y1b{bottom:650.445000px;}
.y83{bottom:653.145000px;}
.y65{bottom:669.885000px;}
.y42{bottom:671.145000px;}
.y1a{bottom:674.385000px;}
.y64{bottom:693.645000px;}
.y41{bottom:694.905000px;}
.y19{bottom:698.145000px;}
.y63{bottom:717.405000px;}
.y40{bottom:718.665000px;}
.y18{bottom:721.905000px;}
.y7f{bottom:737.565000px;}
.y62{bottom:741.165000px;}
.y17{bottom:745.665000px;}
.y3f{bottom:747.105000px;}
.y61{bottom:765.105000px;}
.y16{bottom:769.605000px;}
.y3e{bottom:770.865000px;}
.y60{bottom:788.865000px;}
.y15{bottom:793.365000px;}
.y3d{bottom:794.625000px;}
.y5f{bottom:812.625000px;}
.y7e{bottom:813.885000px;}
.y14{bottom:817.125000px;}
.y3c{bottom:822.885000px;}
.y5e{bottom:836.385000px;}
.y13{bottom:840.885000px;}
.y3b{bottom:846.645000px;}
.y5d{bottom:860.145000px;}
.y12{bottom:864.645000px;}
.y3a{bottom:870.630000px;}
.y7d{bottom:879.630000px;}
.y5c{bottom:884.130000px;}
.y11{bottom:888.630000px;}
.y39{bottom:894.390000px;}
.y5b{bottom:907.890000px;}
.y10{bottom:912.390000px;}
.y38{bottom:918.150000px;}
.y5a{bottom:931.650000px;}
.yf{bottom:936.150000px;}
.y37{bottom:946.410000px;}
.y59{bottom:955.410000px;}
.ye{bottom:959.910000px;}
.y36{bottom:974.850000px;}
.yd{bottom:983.850000px;}
.y35{bottom:998.610000px;}
.yc{bottom:1007.610000px;}
.y34{bottom:1026.870000px;}
.yb{bottom:1031.370000px;}
.ya{bottom:1055.130000px;}
.y33{bottom:1079.070000px;}
.y9{bottom:1081.410000px;}
.y32{bottom:1102.830000px;}
.y8{bottom:1113.090000px;}
.y31{bottom:1126.590000px;}
.y7{bottom:1144.800000px;}
.y30{bottom:1150.380000px;}
.y2{bottom:1194.120000px;}
.y1{bottom:1211.940000px;}
.h6{height:4.021875px;}
.h3{height:27.036000px;}
.h2{height:38.100586px;}
.h4{height:50.273438px;}
.h8{height:50.800781px;}
.ha{height:51.609375px;}
.h9{height:51.996094px;}
.hb{height:52.417969px;}
.hc{height:59.580000px;}
.h5{height:65.884219px;}
.h7{height:67.565039px;}
.hd{height:83.700000px;}
.h10{height:107.280000px;}
.hf{height:107.460000px;}
.he{height:107.496000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:104.076000px;}
.w6{width:185.250000px;}
.w7{width:255.855000px;}
.w8{width:264.090000px;}
.w5{width:300.810000px;}
.w3{width:300.855000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.560000px;}
.x1c{left:9.936000px;}
.x17{left:35.856000px;}
.x16{left:77.970000px;}
.x3{left:87.660000px;}
.x8{left:95.795987px;}
.x1b{left:97.020000px;}
.xe{left:103.355987px;}
.xb{left:105.875987px;}
.xf{left:107.855987px;}
.xa{left:111.635987px;}
.x1d{left:117.035987px;}
.x19{left:126.225000px;}
.x1e{left:127.835987px;}
.x15{left:138.455987px;}
.x12{left:148.895987px;}
.x1{left:151.229987px;}
.x9{left:218.909987px;}
.x18{left:273.990000px;}
.x11{left:290.594987px;}
.x4{left:293.295000px;}
.x14{left:294.374987px;}
.xd{left:305.714987px;}
.x2{left:316.694987px;}
.x10{left:370.514987px;}
.x5{left:389.415000px;}
.xc{left:441.254987px;}
.x7{left:494.205000px;}
.x1a{left:530.565000px;}
.x13{left:747.869987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.800000pt;}
.ls14{letter-spacing:3.840000pt;}
.ls15{letter-spacing:4.480000pt;}
.lse{letter-spacing:5.760000pt;}
.ls10{letter-spacing:6.400000pt;}
.ls7{letter-spacing:10.240000pt;}
.ls17{letter-spacing:14.186667pt;}
.ls16{letter-spacing:14.698667pt;}
.ls11{letter-spacing:15.360000pt;}
.ls12{letter-spacing:15.520000pt;}
.ls1b{letter-spacing:16.128000pt;}
.ls13{letter-spacing:18.560000pt;}
.ls5{letter-spacing:30.720000pt;}
.ls8{letter-spacing:38.400000pt;}
.lsf{letter-spacing:42.240000pt;}
.ls19{letter-spacing:48.128000pt;}
.ls2{letter-spacing:68.719787pt;}
.ls3{letter-spacing:71.680000pt;}
.ls1{letter-spacing:98.693120pt;}
.ls4{letter-spacing:109.568000pt;}
.ls6{letter-spacing:112.768000pt;}
.ws3{word-spacing:-16.192000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-0.936320pt;}
._0{width:1.617280pt;}
._2{width:3.006293pt;}
._19{width:4.586667pt;}
._1a{width:5.760000pt;}
._1b{width:6.976000pt;}
._1f{width:7.873707pt;}
._16{width:8.810667pt;}
._17{width:10.024320pt;}
._1c{width:11.048320pt;}
._b{width:12.672000pt;}
._12{width:14.336000pt;}
._8{width:17.280000pt;}
._18{width:18.944000pt;}
._d{width:20.181333pt;}
._e{width:21.296640pt;}
._c{width:22.186667pt;}
._13{width:23.208320pt;}
._f{width:24.128000pt;}
._9{width:25.024000pt;}
._7{width:27.456000pt;}
._5{width:28.352000pt;}
._15{width:30.226987pt;}
._14{width:31.178667pt;}
._26{width:32.281387pt;}
._21{width:33.576320pt;}
._6{width:34.816000pt;}
._4{width:35.816320pt;}
._27{width:37.224747pt;}
._28{width:38.935253pt;}
._24{width:40.512000pt;}
._1e{width:41.664000pt;}
._25{width:42.890667pt;}
._20{width:46.634667pt;}
._a{width:47.744000pt;}
._10{width:51.264000pt;}
._11{width:52.352000pt;}
._23{width:57.664000pt;}
._3{width:71.786667pt;}
._1d{width:90.380373pt;}
._22{width:164.108373pt;}
.fs3{font-size:5.120000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:9.120000pt;}
.y5{bottom:10.080000pt;}
.y81{bottom:16.960000pt;}
.y85{bottom:22.240000pt;}
.y8a{bottom:22.400000pt;}
.y8e{bottom:22.440000pt;}
.y82{bottom:27.520000pt;}
.y80{bottom:38.080000pt;}
.y94{bottom:43.354667pt;}
.y91{bottom:43.360000pt;}
.y84{bottom:43.520000pt;}
.y8d{bottom:43.560000pt;}
.y6{bottom:49.280000pt;}
.y3{bottom:51.200000pt;}
.y93{bottom:64.474667pt;}
.y90{bottom:64.480000pt;}
.y89{bottom:64.640000pt;}
.y87{bottom:64.666667pt;}
.y8c{bottom:64.680000pt;}
.y95{bottom:84.192000pt;}
.y7c{bottom:87.552000pt;}
.y92{bottom:99.872000pt;}
.ya8{bottom:101.952000pt;}
.y7b{bottom:108.672000pt;}
.y58{bottom:111.072000pt;}
.ya7{bottom:123.232000pt;}
.y7a{bottom:129.792000pt;}
.y57{bottom:132.192000pt;}
.y2f{bottom:133.626667pt;}
.ya6{bottom:144.346667pt;}
.y79{bottom:151.066667pt;}
.y56{bottom:153.306667pt;}
.y2e{bottom:154.746667pt;}
.ya5{bottom:165.466667pt;}
.y78{bottom:172.186667pt;}
.y55{bottom:174.426667pt;}
.y2d{bottom:175.866667pt;}
.ya4{bottom:186.586667pt;}
.y77{bottom:193.306667pt;}
.y54{bottom:195.546667pt;}
.y8f{bottom:196.026667pt;}
.y2c{bottom:197.146667pt;}
.ya3{bottom:207.866667pt;}
.y76{bottom:214.426667pt;}
.y53{bottom:216.826667pt;}
.y2b{bottom:218.266667pt;}
.ya2{bottom:228.986667pt;}
.y75{bottom:235.546667pt;}
.y2a{bottom:239.386667pt;}
.y52{bottom:241.946667pt;}
.ya1{bottom:250.106667pt;}
.y74{bottom:256.826667pt;}
.y29{bottom:260.506667pt;}
.y51{bottom:263.066667pt;}
.ya0{bottom:271.226667pt;}
.y73{bottom:277.946667pt;}
.y50{bottom:284.186667pt;}
.y28{bottom:285.786667pt;}
.y8b{bottom:292.026667pt;}
.y9f{bottom:292.506667pt;}
.y72{bottom:299.106667pt;}
.y4f{bottom:305.506667pt;}
.y27{bottom:310.946667pt;}
.y9e{bottom:313.666667pt;}
.y71{bottom:320.226667pt;}
.y4e{bottom:326.626667pt;}
.y26{bottom:332.066667pt;}
.y9d{bottom:334.786667pt;}
.y70{bottom:341.506667pt;}
.y4d{bottom:351.746667pt;}
.y25{bottom:353.186667pt;}
.y9c{bottom:355.906667pt;}
.y6f{bottom:362.626667pt;}
.y4c{bottom:372.866667pt;}
.y24{bottom:374.466667pt;}
.y6e{bottom:383.746667pt;}
.y9b{bottom:387.746667pt;}
.y88{bottom:388.226667pt;}
.y23{bottom:395.586667pt;}
.y4b{bottom:398.146667pt;}
.y6d{bottom:404.866667pt;}
.y9a{bottom:408.866667pt;}
.y22{bottom:416.706667pt;}
.y4a{bottom:419.266667pt;}
.y6c{bottom:426.146667pt;}
.y99{bottom:430.146667pt;}
.y21{bottom:437.826667pt;}
.y49{bottom:440.386667pt;}
.y6b{bottom:447.266667pt;}
.y98{bottom:451.266667pt;}
.y20{bottom:459.106667pt;}
.y48{bottom:465.506667pt;}
.y6a{bottom:468.386667pt;}
.y97{bottom:472.386667pt;}
.y86{bottom:484.386667pt;}
.y47{bottom:486.786667pt;}
.y1f{bottom:489.506667pt;}
.y96{bottom:493.506667pt;}
.y46{bottom:507.906667pt;}
.y69{bottom:510.786667pt;}
.y1e{bottom:514.786667pt;}
.y45{bottom:529.026667pt;}
.y68{bottom:531.906667pt;}
.y1d{bottom:535.906667pt;}
.y44{bottom:550.173333pt;}
.y67{bottom:553.053333pt;}
.y1c{bottom:557.053333pt;}
.y66{bottom:574.173333pt;}
.y43{bottom:575.453333pt;}
.y1b{bottom:578.173333pt;}
.y83{bottom:580.573333pt;}
.y65{bottom:595.453333pt;}
.y42{bottom:596.573333pt;}
.y1a{bottom:599.453333pt;}
.y64{bottom:616.573333pt;}
.y41{bottom:617.693333pt;}
.y19{bottom:620.573333pt;}
.y63{bottom:637.693333pt;}
.y40{bottom:638.813333pt;}
.y18{bottom:641.693333pt;}
.y7f{bottom:655.613333pt;}
.y62{bottom:658.813333pt;}
.y17{bottom:662.813333pt;}
.y3f{bottom:664.093333pt;}
.y61{bottom:680.093333pt;}
.y16{bottom:684.093333pt;}
.y3e{bottom:685.213333pt;}
.y60{bottom:701.213333pt;}
.y15{bottom:705.213333pt;}
.y3d{bottom:706.333333pt;}
.y5f{bottom:722.333333pt;}
.y7e{bottom:723.453333pt;}
.y14{bottom:726.333333pt;}
.y3c{bottom:731.453333pt;}
.y5e{bottom:743.453333pt;}
.y13{bottom:747.453333pt;}
.y3b{bottom:752.573333pt;}
.y5d{bottom:764.573333pt;}
.y12{bottom:768.573333pt;}
.y3a{bottom:773.893333pt;}
.y7d{bottom:781.893333pt;}
.y5c{bottom:785.893333pt;}
.y11{bottom:789.893333pt;}
.y39{bottom:795.013333pt;}
.y5b{bottom:807.013333pt;}
.y10{bottom:811.013333pt;}
.y38{bottom:816.133333pt;}
.y5a{bottom:828.133333pt;}
.yf{bottom:832.133333pt;}
.y37{bottom:841.253333pt;}
.y59{bottom:849.253333pt;}
.ye{bottom:853.253333pt;}
.y36{bottom:866.533333pt;}
.yd{bottom:874.533333pt;}
.y35{bottom:887.653333pt;}
.yc{bottom:895.653333pt;}
.y34{bottom:912.773333pt;}
.yb{bottom:916.773333pt;}
.ya{bottom:937.893333pt;}
.y33{bottom:959.173333pt;}
.y9{bottom:961.253333pt;}
.y32{bottom:980.293333pt;}
.y8{bottom:989.413333pt;}
.y31{bottom:1001.413333pt;}
.y7{bottom:1017.600000pt;}
.y30{bottom:1022.560000pt;}
.y2{bottom:1061.440000pt;}
.y1{bottom:1077.280000pt;}
.h6{height:3.575000pt;}
.h3{height:24.032000pt;}
.h2{height:33.867188pt;}
.h4{height:44.687500pt;}
.h8{height:45.156250pt;}
.ha{height:45.875000pt;}
.h9{height:46.218750pt;}
.hb{height:46.593750pt;}
.hc{height:52.960000pt;}
.h5{height:58.563750pt;}
.h7{height:60.057813pt;}
.hd{height:74.400000pt;}
.h10{height:95.360000pt;}
.hf{height:95.520000pt;}
.he{height:95.552000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:92.512000pt;}
.w6{width:164.666667pt;}
.w7{width:227.426667pt;}
.w8{width:234.746667pt;}
.w5{width:267.386667pt;}
.w3{width:267.426667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.720000pt;}
.x1c{left:8.832000pt;}
.x17{left:31.872000pt;}
.x16{left:69.306667pt;}
.x3{left:77.920000pt;}
.x8{left:85.151988pt;}
.x1b{left:86.240000pt;}
.xe{left:91.871988pt;}
.xb{left:94.111988pt;}
.xf{left:95.871988pt;}
.xa{left:99.231988pt;}
.x1d{left:104.031988pt;}
.x19{left:112.200000pt;}
.x1e{left:113.631988pt;}
.x15{left:123.071988pt;}
.x12{left:132.351988pt;}
.x1{left:134.426655pt;}
.x9{left:194.586655pt;}
.x18{left:243.546667pt;}
.x11{left:258.306655pt;}
.x4{left:260.706667pt;}
.x14{left:261.666655pt;}
.xd{left:271.746655pt;}
.x2{left:281.506655pt;}
.x10{left:329.346655pt;}
.x5{left:346.146667pt;}
.xc{left:392.226655pt;}
.x7{left:439.293333pt;}
.x1a{left:471.613333pt;}
.x13{left:664.773322pt;}
}




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