
    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_e3bb93222189217504694a85.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_bb85a86463c9da6e25aecc43.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2f814499f1148a8f3648ccde.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_329372c02957bf1522766bd6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_7f6b4631896bdc5571deb5be.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b687f14b6d6a7828006fabc6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064453;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_262b61f2a66a6546dd3ee61d.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_3eebbbc9c8757cce605fe2a4.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;}
.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);}
.v3{vertical-align:-69.840000px;}
.v4{vertical-align:-67.860000px;}
.v2{vertical-align:-65.520000px;}
.v1{vertical-align:-64.080000px;}
.v5{vertical-align:-57.600000px;}
.v0{vertical-align:0.000000px;}
.ls19{letter-spacing:-2.616000px;}
.ls17{letter-spacing:-2.160000px;}
.ls1a{letter-spacing:-1.854000px;}
.ls1d{letter-spacing:-1.746000px;}
.lsc{letter-spacing:-1.440000px;}
.ls1b{letter-spacing:-1.176000px;}
.ls18{letter-spacing:-1.134000px;}
.ls28{letter-spacing:-1.080000px;}
.ls12{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.612000px;}
.ls2a{letter-spacing:-0.540000px;}
.ls15{letter-spacing:-0.414600px;}
.ls27{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.305400px;}
.lse{letter-spacing:-0.144000px;}
.lsa{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.053280px;}
.ls16{letter-spacing:0.109200px;}
.ls3{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.259920px;}
.ls13{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.466800px;}
.ls29{letter-spacing:0.612000px;}
.ls22{letter-spacing:0.613440px;}
.ls1f{letter-spacing:0.666720px;}
.ls8{letter-spacing:0.900000px;}
.ls10{letter-spacing:2.160000px;}
.lsf{letter-spacing:2.880000px;}
.ls20{letter-spacing:3.546720px;}
.ls21{letter-spacing:6.660000px;}
.lsd{letter-spacing:7.200000px;}
.ls11{letter-spacing:11.520000px;}
.ls25{letter-spacing:23.220000px;}
.ls4{letter-spacing:51.300000px;}
.ls23{letter-spacing:75.060000px;}
.ls7{letter-spacing:92.460000px;}
.ls2{letter-spacing:110.496000px;}
.ls24{letter-spacing:118.980000px;}
.ls9{letter-spacing:159.480000px;}
.ls1e{letter-spacing:1293.456000px;}
.ls5{letter-spacing:2151.276000px;}
.ls26{letter-spacing:2179.176000px;}
.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;}
}
.ws6{word-spacing:-16.865400px;}
.ws9{word-spacing:-16.669200px;}
.ws4{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.254600px;}
.ws8{word-spacing:-16.145400px;}
.ws7{word-spacing:-15.948000px;}
.ws13{word-spacing:-15.552000px;}
.wsb{word-spacing:-15.426000px;}
.ws3{word-spacing:-15.406800px;}
.wse{word-spacing:-15.384000px;}
.ws0{word-spacing:-15.300000px;}
.ws2{word-spacing:-15.120000px;}
.ws1{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.814000px;}
.wsd{word-spacing:-14.706000px;}
.ws11{word-spacing:-14.580000px;}
.wsa{word-spacing:-14.400000px;}
.wsc{word-spacing:-13.944000px;}
.ws12{word-spacing:-13.860000px;}
.ws5{word-spacing:0.000000px;}
._11{margin-left:-4.362480px;}
._10{margin-left:-3.346560px;}
._2{margin-left:-1.912320px;}
._0{width:1.015920px;}
._1{width:2.850240px;}
._3{width:4.780800px;}
._4{width:5.840400px;}
._a{width:7.162560px;}
._8{width:8.277600px;}
._9{width:9.438720px;}
._12{width:10.816560px;}
._7{width:12.191040px;}
._15{width:13.561920px;}
._16{width:14.776560px;}
._d{width:16.058640px;}
._e{width:17.124960px;}
._1c{width:18.198720px;}
._14{width:19.298880px;}
._13{width:20.327040px;}
._18{width:21.519120px;}
._17{width:22.654080px;}
._1b{width:24.117120px;}
._b{width:25.457760px;}
._c{width:26.951760px;}
._19{width:28.136160px;}
._1a{width:29.476800px;}
._6{width:31.160640px;}
._5{width:32.389920px;}
._f{width:51.752160px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.600000px;}
.y4{bottom:56.700000px;}
.y41{bottom:93.456000px;}
.y7a{bottom:102.816000px;}
.ya4{bottom:104.256000px;}
.y40{bottom:108.936000px;}
.ya3{bottom:121.536000px;}
.y79{bottom:121.716000px;}
.y3f{bottom:124.236000px;}
.y3e{bottom:138.996000px;}
.y78{bottom:140.796000px;}
.ya2{bottom:155.190000px;}
.y3d{bottom:157.890000px;}
.y77{bottom:159.690000px;}
.ya1{bottom:169.770000px;}
.y3c{bottom:176.970000px;}
.y76{bottom:178.590000px;}
.ya0{bottom:187.050000px;}
.y3b{bottom:195.870000px;}
.y75{bottom:197.670000px;}
.y9f{bottom:204.330000px;}
.y3a{bottom:214.950000px;}
.y74{bottom:216.570000px;}
.y9e{bottom:221.430000px;}
.y39{bottom:233.850000px;}
.y73{bottom:235.650000px;}
.y9d{bottom:238.710000px;}
.y38{bottom:252.930000px;}
.y72{bottom:254.550000px;}
.y9c{bottom:255.990000px;}
.y37{bottom:271.830000px;}
.y9b{bottom:273.270000px;}
.y71{bottom:273.630000px;}
.y9a{bottom:290.550000px;}
.y36{bottom:290.730000px;}
.y70{bottom:292.530000px;}
.y99{bottom:307.830000px;}
.y35{bottom:309.810000px;}
.y6f{bottom:311.430000px;}
.y98{bottom:324.930000px;}
.y34{bottom:328.755000px;}
.y6e{bottom:330.555000px;}
.y97{bottom:342.255000px;}
.y33{bottom:347.835000px;}
.y6d{bottom:349.455000px;}
.y96{bottom:359.535000px;}
.y32{bottom:366.735000px;}
.y6c{bottom:368.535000px;}
.y95{bottom:376.815000px;}
.y31{bottom:385.635000px;}
.y6b{bottom:387.435000px;}
.y94{bottom:393.195000px;}
.y30{bottom:404.715000px;}
.y6a{bottom:406.335000px;}
.y93{bottom:407.415000px;}
.y92{bottom:424.695000px;}
.y69{bottom:425.415000px;}
.y2f{bottom:441.075000px;}
.y68{bottom:444.315000px;}
.y2e{bottom:454.395000px;}
.y91{bottom:455.835000px;}
.y67{bottom:463.395000px;}
.y2d{bottom:471.675000px;}
.y66{bottom:482.295000px;}
.y2c{bottom:488.955000px;}
.y90{bottom:490.215000px;}
.y65{bottom:501.195000px;}
.y2b{bottom:506.235000px;}
.y8f{bottom:507.135000px;}
.y64{bottom:520.275000px;}
.y8e{bottom:521.715000px;}
.y2a{bottom:523.335000px;}
.y8d{bottom:538.995000px;}
.y63{bottom:539.175000px;}
.y29{bottom:540.615000px;}
.y8c{bottom:556.095000px;}
.y28{bottom:557.895000px;}
.y62{bottom:558.255000px;}
.y8b{bottom:573.375000px;}
.y27{bottom:575.175000px;}
.y61{bottom:577.155000px;}
.y8a{bottom:590.655000px;}
.y26{bottom:592.455000px;}
.y60{bottom:596.085000px;}
.y89{bottom:607.965000px;}
.y25{bottom:609.765000px;}
.y5f{bottom:615.165000px;}
.y88{bottom:625.245000px;}
.y24{bottom:626.865000px;}
.y5e{bottom:634.065000px;}
.y87{bottom:642.525000px;}
.y23{bottom:643.425000px;}
.y5d{bottom:653.145000px;}
.y22{bottom:658.005000px;}
.y86{bottom:659.625000px;}
.y5c{bottom:672.045000px;}
.y21{bottom:674.385000px;}
.y85{bottom:676.905000px;}
.y20{bottom:688.965000px;}
.y5b{bottom:690.945000px;}
.y84{bottom:694.185000px;}
.y1f{bottom:706.245000px;}
.y5a{bottom:710.025000px;}
.y83{bottom:711.465000px;}
.y82{bottom:728.745000px;}
.y59{bottom:728.925000px;}
.y1e{bottom:739.905000px;}
.y81{bottom:746.025000px;}
.y58{bottom:748.005000px;}
.y1d{bottom:754.125000px;}
.y80{bottom:763.125000px;}
.y57{bottom:766.905000px;}
.y1c{bottom:771.405000px;}
.y7f{bottom:780.405000px;}
.y56{bottom:785.985000px;}
.y1b{bottom:788.685000px;}
.y7e{bottom:797.685000px;}
.y55{bottom:804.885000px;}
.y1a{bottom:805.065000px;}
.y7d{bottom:814.965000px;}
.y19{bottom:818.385000px;}
.y54{bottom:823.785000px;}
.y7c{bottom:832.245000px;}
.y18{bottom:835.665000px;}
.y53{bottom:842.865000px;}
.y52{bottom:861.765000px;}
.y7b{bottom:865.950000px;}
.y17{bottom:869.010000px;}
.y51{bottom:880.890000px;}
.y16{bottom:882.330000px;}
.y15{bottom:899.430000px;}
.y50{bottom:899.790000px;}
.y14{bottom:916.710000px;}
.y4f{bottom:918.690000px;}
.y13{bottom:933.990000px;}
.y4e{bottom:937.770000px;}
.y12{bottom:951.270000px;}
.y4d{bottom:956.670000px;}
.y11{bottom:968.550000px;}
.y4c{bottom:975.750000px;}
.y10{bottom:985.830000px;}
.y4b{bottom:994.650000px;}
.yf{bottom:1002.930000px;}
.y4a{bottom:1013.550000px;}
.ye{bottom:1020.210000px;}
.y49{bottom:1032.630000px;}
.yd{bottom:1037.490000px;}
.y48{bottom:1051.530000px;}
.yc{bottom:1054.770000px;}
.y47{bottom:1070.610000px;}
.yb{bottom:1070.790000px;}
.y46{bottom:1089.510000px;}
.ya{bottom:1100.130000px;}
.y45{bottom:1108.410000px;}
.y9{bottom:1113.090000px;}
.y44{bottom:1127.490000px;}
.y8{bottom:1130.220000px;}
.y43{bottom:1146.420000px;}
.y7{bottom:1147.500000px;}
.y3{bottom:1164.240000px;}
.y2{bottom:1179.000000px;}
.y5{bottom:1189.260000px;}
.y42{bottom:1192.320000px;}
.y1{bottom:1196.280000px;}
.h4{height:17.280000px;}
.h6{height:40.985156px;}
.h9{height:47.344922px;}
.h8{height:48.616875px;}
.h3{height:49.583118px;}
.hb{height:52.998047px;}
.h7{height:53.252930px;}
.h2{height:58.651172px;}
.he{height:59.027344px;}
.h5{height:60.226875px;}
.hc{height:61.423863px;}
.ha{height:65.010937px;}
.hd{height:66.757500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:22.500000px;}
.w3{width:24.300000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:63.900000px;}
.x1{left:106.415987px;}
.x9{left:116.315987px;}
.x14{left:133.235987px;}
.x3{left:148.895987px;}
.x16{left:158.249987px;}
.x15{left:182.189987px;}
.x4{left:212.789987px;}
.x10{left:262.109987px;}
.x5{left:279.749987px;}
.xa{left:311.834987px;}
.x11{left:441.254987px;}
.xb{left:467.714987px;}
.x18{left:488.984987px;}
.x17{left:585.464987px;}
.xd{left:593.924987px;}
.x7{left:647.384987px;}
.xc{left:659.264987px;}
.x8{left:665.429987px;}
.xf{left:690.989987px;}
.x12{left:786.749987px;}
.xe{left:813.929987px;}
.x2{left:819.150000px;}
.x6{left:829.229987px;}
@media print{
.v3{vertical-align:-62.080000pt;}
.v4{vertical-align:-60.320000pt;}
.v2{vertical-align:-58.240000pt;}
.v1{vertical-align:-56.960000pt;}
.v5{vertical-align:-51.200000pt;}
.v0{vertical-align:0.000000pt;}
.ls19{letter-spacing:-2.325333pt;}
.ls17{letter-spacing:-1.920000pt;}
.ls1a{letter-spacing:-1.648000pt;}
.ls1d{letter-spacing:-1.552000pt;}
.lsc{letter-spacing:-1.280000pt;}
.ls1b{letter-spacing:-1.045333pt;}
.ls18{letter-spacing:-1.008000pt;}
.ls28{letter-spacing:-0.960000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.544000pt;}
.ls2a{letter-spacing:-0.480000pt;}
.ls15{letter-spacing:-0.368533pt;}
.ls27{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.271467pt;}
.lse{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.047360pt;}
.ls16{letter-spacing:0.097067pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.231040pt;}
.ls13{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.414933pt;}
.ls29{letter-spacing:0.544000pt;}
.ls22{letter-spacing:0.545280pt;}
.ls1f{letter-spacing:0.592640pt;}
.ls8{letter-spacing:0.800000pt;}
.ls10{letter-spacing:1.920000pt;}
.lsf{letter-spacing:2.560000pt;}
.ls20{letter-spacing:3.152640pt;}
.ls21{letter-spacing:5.920000pt;}
.lsd{letter-spacing:6.400000pt;}
.ls11{letter-spacing:10.240000pt;}
.ls25{letter-spacing:20.640000pt;}
.ls4{letter-spacing:45.600000pt;}
.ls23{letter-spacing:66.720000pt;}
.ls7{letter-spacing:82.186667pt;}
.ls2{letter-spacing:98.218667pt;}
.ls24{letter-spacing:105.760000pt;}
.ls9{letter-spacing:141.760000pt;}
.ls1e{letter-spacing:1149.738667pt;}
.ls5{letter-spacing:1912.245333pt;}
.ls26{letter-spacing:1937.045333pt;}
.ws6{word-spacing:-14.991467pt;}
.ws9{word-spacing:-14.817067pt;}
.ws4{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.448533pt;}
.ws8{word-spacing:-14.351467pt;}
.ws7{word-spacing:-14.176000pt;}
.ws13{word-spacing:-13.824000pt;}
.wsb{word-spacing:-13.712000pt;}
.ws3{word-spacing:-13.694933pt;}
.wse{word-spacing:-13.674667pt;}
.ws0{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.440000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.168000pt;}
.wsd{word-spacing:-13.072000pt;}
.ws11{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.800000pt;}
.wsc{word-spacing:-12.394667pt;}
.ws12{word-spacing:-12.320000pt;}
.ws5{word-spacing:0.000000pt;}
._11{margin-left:-3.877760pt;}
._10{margin-left:-2.974720pt;}
._2{margin-left:-1.699840pt;}
._0{width:0.903040pt;}
._1{width:2.533547pt;}
._3{width:4.249600pt;}
._4{width:5.191467pt;}
._a{width:6.366720pt;}
._8{width:7.357867pt;}
._9{width:8.389973pt;}
._12{width:9.614720pt;}
._7{width:10.836480pt;}
._15{width:12.055040pt;}
._16{width:13.134720pt;}
._d{width:14.274347pt;}
._e{width:15.222187pt;}
._1c{width:16.176640pt;}
._14{width:17.154560pt;}
._13{width:18.068480pt;}
._18{width:19.128107pt;}
._17{width:20.136960pt;}
._1b{width:21.437440pt;}
._b{width:22.629120pt;}
._c{width:23.957120pt;}
._19{width:25.009920pt;}
._1a{width:26.201600pt;}
._6{width:27.698347pt;}
._5{width:28.791040pt;}
._f{width:46.001920pt;}
.fs2{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.200000pt;}
.y4{bottom:50.400000pt;}
.y41{bottom:83.072000pt;}
.y7a{bottom:91.392000pt;}
.ya4{bottom:92.672000pt;}
.y40{bottom:96.832000pt;}
.ya3{bottom:108.032000pt;}
.y79{bottom:108.192000pt;}
.y3f{bottom:110.432000pt;}
.y3e{bottom:123.552000pt;}
.y78{bottom:125.152000pt;}
.ya2{bottom:137.946667pt;}
.y3d{bottom:140.346667pt;}
.y77{bottom:141.946667pt;}
.ya1{bottom:150.906667pt;}
.y3c{bottom:157.306667pt;}
.y76{bottom:158.746667pt;}
.ya0{bottom:166.266667pt;}
.y3b{bottom:174.106667pt;}
.y75{bottom:175.706667pt;}
.y9f{bottom:181.626667pt;}
.y3a{bottom:191.066667pt;}
.y74{bottom:192.506667pt;}
.y9e{bottom:196.826667pt;}
.y39{bottom:207.866667pt;}
.y73{bottom:209.466667pt;}
.y9d{bottom:212.186667pt;}
.y38{bottom:224.826667pt;}
.y72{bottom:226.266667pt;}
.y9c{bottom:227.546667pt;}
.y37{bottom:241.626667pt;}
.y9b{bottom:242.906667pt;}
.y71{bottom:243.226667pt;}
.y9a{bottom:258.266667pt;}
.y36{bottom:258.426667pt;}
.y70{bottom:260.026667pt;}
.y99{bottom:273.626667pt;}
.y35{bottom:275.386667pt;}
.y6f{bottom:276.826667pt;}
.y98{bottom:288.826667pt;}
.y34{bottom:292.226667pt;}
.y6e{bottom:293.826667pt;}
.y97{bottom:304.226667pt;}
.y33{bottom:309.186667pt;}
.y6d{bottom:310.626667pt;}
.y96{bottom:319.586667pt;}
.y32{bottom:325.986667pt;}
.y6c{bottom:327.586667pt;}
.y95{bottom:334.946667pt;}
.y31{bottom:342.786667pt;}
.y6b{bottom:344.386667pt;}
.y94{bottom:349.506667pt;}
.y30{bottom:359.746667pt;}
.y6a{bottom:361.186667pt;}
.y93{bottom:362.146667pt;}
.y92{bottom:377.506667pt;}
.y69{bottom:378.146667pt;}
.y2f{bottom:392.066667pt;}
.y68{bottom:394.946667pt;}
.y2e{bottom:403.906667pt;}
.y91{bottom:405.186667pt;}
.y67{bottom:411.906667pt;}
.y2d{bottom:419.266667pt;}
.y66{bottom:428.706667pt;}
.y2c{bottom:434.626667pt;}
.y90{bottom:435.746667pt;}
.y65{bottom:445.506667pt;}
.y2b{bottom:449.986667pt;}
.y8f{bottom:450.786667pt;}
.y64{bottom:462.466667pt;}
.y8e{bottom:463.746667pt;}
.y2a{bottom:465.186667pt;}
.y8d{bottom:479.106667pt;}
.y63{bottom:479.266667pt;}
.y29{bottom:480.546667pt;}
.y8c{bottom:494.306667pt;}
.y28{bottom:495.906667pt;}
.y62{bottom:496.226667pt;}
.y8b{bottom:509.666667pt;}
.y27{bottom:511.266667pt;}
.y61{bottom:513.026667pt;}
.y8a{bottom:525.026667pt;}
.y26{bottom:526.626667pt;}
.y60{bottom:529.853333pt;}
.y89{bottom:540.413333pt;}
.y25{bottom:542.013333pt;}
.y5f{bottom:546.813333pt;}
.y88{bottom:555.773333pt;}
.y24{bottom:557.213333pt;}
.y5e{bottom:563.613333pt;}
.y87{bottom:571.133333pt;}
.y23{bottom:571.933333pt;}
.y5d{bottom:580.573333pt;}
.y22{bottom:584.893333pt;}
.y86{bottom:586.333333pt;}
.y5c{bottom:597.373333pt;}
.y21{bottom:599.453333pt;}
.y85{bottom:601.693333pt;}
.y20{bottom:612.413333pt;}
.y5b{bottom:614.173333pt;}
.y84{bottom:617.053333pt;}
.y1f{bottom:627.773333pt;}
.y5a{bottom:631.133333pt;}
.y83{bottom:632.413333pt;}
.y82{bottom:647.773333pt;}
.y59{bottom:647.933333pt;}
.y1e{bottom:657.693333pt;}
.y81{bottom:663.133333pt;}
.y58{bottom:664.893333pt;}
.y1d{bottom:670.333333pt;}
.y80{bottom:678.333333pt;}
.y57{bottom:681.693333pt;}
.y1c{bottom:685.693333pt;}
.y7f{bottom:693.693333pt;}
.y56{bottom:698.653333pt;}
.y1b{bottom:701.053333pt;}
.y7e{bottom:709.053333pt;}
.y55{bottom:715.453333pt;}
.y1a{bottom:715.613333pt;}
.y7d{bottom:724.413333pt;}
.y19{bottom:727.453333pt;}
.y54{bottom:732.253333pt;}
.y7c{bottom:739.773333pt;}
.y18{bottom:742.813333pt;}
.y53{bottom:749.213333pt;}
.y52{bottom:766.013333pt;}
.y7b{bottom:769.733333pt;}
.y17{bottom:772.453333pt;}
.y51{bottom:783.013333pt;}
.y16{bottom:784.293333pt;}
.y15{bottom:799.493333pt;}
.y50{bottom:799.813333pt;}
.y14{bottom:814.853333pt;}
.y4f{bottom:816.613333pt;}
.y13{bottom:830.213333pt;}
.y4e{bottom:833.573333pt;}
.y12{bottom:845.573333pt;}
.y4d{bottom:850.373333pt;}
.y11{bottom:860.933333pt;}
.y4c{bottom:867.333333pt;}
.y10{bottom:876.293333pt;}
.y4b{bottom:884.133333pt;}
.yf{bottom:891.493333pt;}
.y4a{bottom:900.933333pt;}
.ye{bottom:906.853333pt;}
.y49{bottom:917.893333pt;}
.yd{bottom:922.213333pt;}
.y48{bottom:934.693333pt;}
.yc{bottom:937.573333pt;}
.y47{bottom:951.653333pt;}
.yb{bottom:951.813333pt;}
.y46{bottom:968.453333pt;}
.ya{bottom:977.893333pt;}
.y45{bottom:985.253333pt;}
.y9{bottom:989.413333pt;}
.y44{bottom:1002.213333pt;}
.y8{bottom:1004.640000pt;}
.y43{bottom:1019.040000pt;}
.y7{bottom:1020.000000pt;}
.y3{bottom:1034.880000pt;}
.y2{bottom:1048.000000pt;}
.y5{bottom:1057.120000pt;}
.y42{bottom:1059.840000pt;}
.y1{bottom:1063.360000pt;}
.h4{height:15.360000pt;}
.h6{height:36.431250pt;}
.h9{height:42.084375pt;}
.h8{height:43.215000pt;}
.h3{height:44.073883pt;}
.hb{height:47.109375pt;}
.h7{height:47.335938pt;}
.h2{height:52.134375pt;}
.he{height:52.468750pt;}
.h5{height:53.535000pt;}
.hc{height:54.598989pt;}
.ha{height:57.787500pt;}
.hd{height:59.340000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:20.000000pt;}
.w3{width:21.600000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:56.800000pt;}
.x1{left:94.591988pt;}
.x9{left:103.391988pt;}
.x14{left:118.431988pt;}
.x3{left:132.351988pt;}
.x16{left:140.666655pt;}
.x15{left:161.946655pt;}
.x4{left:189.146655pt;}
.x10{left:232.986655pt;}
.x5{left:248.666655pt;}
.xa{left:277.186655pt;}
.x11{left:392.226655pt;}
.xb{left:415.746655pt;}
.x18{left:434.653322pt;}
.x17{left:520.413322pt;}
.xd{left:527.933322pt;}
.x7{left:575.453322pt;}
.xc{left:586.013322pt;}
.x8{left:591.493322pt;}
.xf{left:614.213322pt;}
.x12{left:699.333322pt;}
.xe{left:723.493322pt;}
.x2{left:728.133333pt;}
.x6{left:737.093322pt;}
}




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