
    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_c798b6bd7f97c1f3d551528f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_63c650688a5a9879568c1d87.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_645051fc7f9035c6e7f27ff2.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a2acba54ec4d050379a57f98.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d95a2418cc04b785ac597c93.woff2')format("woff");}.ff6{font-family:ff6;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);}
.v2{vertical-align:-68.400000px;}
.v5{vertical-align:-65.520000px;}
.v9{vertical-align:-64.080000px;}
.v1{vertical-align:-62.640000px;}
.v6{vertical-align:-61.200000px;}
.v4{vertical-align:-23.760000px;}
.v7{vertical-align:-9.600000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:23.760000px;}
.v3{vertical-align:30.240000px;}
.ls11{letter-spacing:-0.612000px;}
.ls15{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.220800px;}
.ls1a{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.027360px;}
.lsc{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.018000px;}
.lsa{letter-spacing:0.108000px;}
.ls13{letter-spacing:0.162000px;}
.ls1{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.234000px;}
.ls14{letter-spacing:0.262200px;}
.ls2{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.936000px;}
.ls4{letter-spacing:6.660000px;}
.ls5{letter-spacing:16.740000px;}
.ls1b{letter-spacing:30.348000px;}
.ls7{letter-spacing:52.560000px;}
.ls9{letter-spacing:55.620000px;}
.ls3{letter-spacing:66.420000px;}
.ls12{letter-spacing:87.948000px;}
.ls0{letter-spacing:154.980000px;}
.ls1c{letter-spacing:271.740000px;}
.ls17{letter-spacing:1277.700000px;}
.lsb{letter-spacing:1302.300000px;}
.ls8{letter-spacing:1367.340000px;}
.ls18{letter-spacing:1410.900000px;}
.ls19{letter-spacing:1418.100000px;}
.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;}
}
.wsf{word-spacing:-54.000000px;}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.wse{word-spacing:-16.822200px;}
.ws3{word-spacing:-14.580000px;}
.ws10{word-spacing:-14.436000px;}
.ws6{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws4{word-spacing:-13.999200px;}
.ws5{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.734000px;}
.wsc{word-spacing:-13.608000px;}
.ws9{word-spacing:-13.500000px;}
.ws11{word-spacing:-13.284000px;}
.wsb{word-spacing:-13.140000px;}
.ws7{word-spacing:-10.440000px;}
.ws8{word-spacing:-9.000000px;}
.wsd{word-spacing:0.000000px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._2{width:1.524240px;}
._5{width:3.323040px;}
._9{width:4.505760px;}
._b{width:5.523120px;}
._6{width:6.533760px;}
._7{width:8.208240px;}
._a{width:9.337920px;}
._f{width:10.338480px;}
._c{width:11.381520px;}
._d{width:12.492720px;}
._8{width:17.058000px;}
._e{width:1041.240000px;}
._4{width:1441.260000px;}
._3{width:1574.460000px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:2.850000px;}
.y47{bottom:3.150000px;}
.y44{bottom:3.300000px;}
.y41{bottom:3.450000px;}
.ya8{bottom:35.340000px;}
.y77{bottom:51.075000px;}
.y3c{bottom:54.060000px;}
.yb5{bottom:55.440000px;}
.y2{bottom:57.960000px;}
.ya7{bottom:68.415000px;}
.y1{bottom:76.890000px;}
.ya6{bottom:84.105000px;}
.ya5{bottom:99.585000px;}
.y39{bottom:99.750000px;}
.ya4{bottom:114.885000px;}
.y38{bottom:115.410000px;}
.y76{bottom:117.735000px;}
.y37{bottom:130.890000px;}
.y75{bottom:133.575000px;}
.y36{bottom:146.370000px;}
.ya3{bottom:146.385000px;}
.y74{bottom:149.235000px;}
.y35{bottom:161.850000px;}
.ya2{bottom:162.045000px;}
.y73{bottom:164.895000px;}
.y34{bottom:177.510000px;}
.ya1{bottom:177.525000px;}
.y72{bottom:180.375000px;}
.y33{bottom:192.990000px;}
.ya0{bottom:193.005000px;}
.y71{bottom:196.035000px;}
.y32{bottom:208.290000px;}
.y9f{bottom:208.665000px;}
.y70{bottom:211.695000px;}
.y9e{bottom:223.785000px;}
.y6f{bottom:227.175000px;}
.y31{bottom:239.790000px;}
.y6e{bottom:242.655000px;}
.y30{bottom:255.450000px;}
.y9d{bottom:255.465000px;}
.y6d{bottom:258.315000px;}
.y2f{bottom:270.930000px;}
.y9c{bottom:270.945000px;}
.y6c{bottom:273.975000px;}
.y2e{bottom:286.410000px;}
.y9b{bottom:286.425000px;}
.y6b{bottom:289.455000px;}
.y2d{bottom:301.890000px;}
.y9a{bottom:301.905000px;}
.y6a{bottom:305.115000px;}
.y2c{bottom:317.550000px;}
.y99{bottom:317.565000px;}
.y69{bottom:320.595000px;}
.y2b{bottom:333.030000px;}
.y98{bottom:333.045000px;}
.y68{bottom:336.255000px;}
.y2a{bottom:348.555000px;}
.y97{bottom:348.570000px;}
.y67{bottom:351.780000px;}
.y29{bottom:364.215000px;}
.y96{bottom:364.230000px;}
.y66{bottom:367.260000px;}
.y28{bottom:379.695000px;}
.y65{bottom:382.920000px;}
.y27{bottom:395.355000px;}
.y64{bottom:398.220000px;}
.y95{bottom:403.110000px;}
.y26{bottom:410.835000px;}
.y63{bottom:413.700000px;}
.y94{bottom:418.590000px;}
.y25{bottom:426.315000px;}
.y62{bottom:429.360000px;}
.y93{bottom:434.070000px;}
.y24{bottom:441.795000px;}
.y61{bottom:445.200000px;}
.y92{bottom:449.730000px;}
.y23{bottom:457.455000px;}
.y60{bottom:461.760000px;}
.y91{bottom:465.210000px;}
.y22{bottom:472.935000px;}
.y5f{bottom:478.320000px;}
.y90{bottom:480.690000px;}
.y21{bottom:488.415000px;}
.y5e{bottom:494.880000px;}
.y8f{bottom:496.170000px;}
.y20{bottom:503.895000px;}
.y5d{bottom:511.440000px;}
.y8e{bottom:511.830000px;}
.y1f{bottom:519.555000px;}
.y8d{bottom:527.310000px;}
.y5c{bottom:527.820000px;}
.y1e{bottom:535.035000px;}
.y8c{bottom:542.790000px;}
.y5b{bottom:543.480000px;}
.y8b{bottom:558.270000px;}
.y5a{bottom:559.320000px;}
.y1d{bottom:565.815000px;}
.y8a{bottom:573.930000px;}
.y59{bottom:574.980000px;}
.y89{bottom:589.410000px;}
.y58{bottom:590.460000px;}
.y1c{bottom:596.955000px;}
.y88{bottom:605.100000px;}
.y57{bottom:605.970000px;}
.y1b{bottom:615.165000px;}
.y87{bottom:620.400000px;}
.y56{bottom:621.450000px;}
.y86{bottom:636.240000px;}
.y55{bottom:637.110000px;}
.y1a{bottom:644.145000px;}
.y85{bottom:651.900000px;}
.y54{bottom:652.590000px;}
.y19{bottom:662.325000px;}
.y84{bottom:667.200000px;}
.y53{bottom:668.070000px;}
.y18{bottom:677.805000px;}
.y83{bottom:682.680000px;}
.y52{bottom:683.550000px;}
.y17{bottom:693.285000px;}
.y82{bottom:698.700000px;}
.y51{bottom:699.210000px;}
.y16{bottom:708.945000px;}
.y81{bottom:714.180000px;}
.y50{bottom:714.690000px;}
.y80{bottom:729.660000px;}
.y4f{bottom:730.170000px;}
.y15{bottom:731.085000px;}
.y7f{bottom:745.320000px;}
.y4e{bottom:745.830000px;}
.y14{bottom:757.905000px;}
.y7e{bottom:760.800000px;}
.y4d{bottom:761.310000px;}
.y13{bottom:773.385000px;}
.y7d{bottom:776.280000px;}
.y4c{bottom:776.790000px;}
.y12{bottom:789.045000px;}
.y7c{bottom:791.940000px;}
.y4b{bottom:792.450000px;}
.y7b{bottom:807.060000px;}
.y4a{bottom:807.570000px;}
.y7a{bottom:822.720000px;}
.y49{bottom:823.230000px;}
.y11{bottom:829.545000px;}
.y79{bottom:838.740000px;}
.y48{bottom:839.250000px;}
.y78{bottom:851.160000px;}
.y46{bottom:852.300000px;}
.y10{bottom:858.345000px;}
.yf{bottom:893.310000px;}
.y45{bottom:902.850000px;}
.ye{bottom:932.370000px;}
.y43{bottom:953.400000px;}
.yd{bottom:956.670000px;}
.yb4{bottom:987.120000px;}
.yb3{bottom:1002.780000px;}
.y42{bottom:1003.800000px;}
.yc{bottom:1016.070000px;}
.yb2{bottom:1018.440000px;}
.yb1{bottom:1033.920000px;}
.y9{bottom:1034.070000px;}
.yb{bottom:1039.290000px;}
.yb0{bottom:1049.580000px;}
.y40{bottom:1054.350000px;}
.y8{bottom:1057.290000px;}
.yaf{bottom:1065.240000px;}
.ya{bottom:1071.330000px;}
.yae{bottom:1080.720000px;}
.y7{bottom:1086.630000px;}
.yad{bottom:1096.380000px;}
.y3e{bottom:1105.050000px;}
.y6{bottom:1105.710000px;}
.yac{bottom:1112.040000px;}
.y5{bottom:1122.990000px;}
.yab{bottom:1127.520000px;}
.y4{bottom:1140.300000px;}
.yaa{bottom:1142.850000px;}
.y3{bottom:1158.300000px;}
.ya9{bottom:1158.510000px;}
.y3d{bottom:1158.960000px;}
.y3b{bottom:1175.160000px;}
.y3a{bottom:1193.700000px;}
.hb{height:35.314453px;}
.hf{height:38.158594px;}
.h10{height:47.344922px;}
.h6{height:48.616875px;}
.h15{height:49.680000px;}
.h14{height:49.860000px;}
.h13{height:49.890000px;}
.he{height:52.971680px;}
.h11{height:52.998047px;}
.hc{height:54.421875px;}
.h16{height:55.503491px;}
.h7{height:55.796836px;}
.h12{height:55.824609px;}
.h8{height:58.621992px;}
.h17{height:59.092031px;}
.h3{height:60.226875px;}
.hd{height:62.153438px;}
.h1{height:65.010937px;}
.h4{height:66.757500px;}
.ha{height:72.326250px;}
.h2{height:72.562500px;}
.h5{height:81.995625px;}
.h9{height:84.898125px;}
.h0{height:1263.000000px;}
.w2{width:109.260000px;}
.w1{width:161.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x2{left:29.970000px;}
.x18{left:36.150000px;}
.x14{left:37.350000px;}
.x11{left:38.700000px;}
.x17{left:40.050000px;}
.x16{left:42.450000px;}
.x1a{left:44.700000px;}
.xb{left:46.800000px;}
.x13{left:48.150000px;}
.xd{left:50.265000px;}
.x1b{left:51.315000px;}
.x12{left:53.850000px;}
.x19{left:63.000000px;}
.x15{left:66.000000px;}
.x8{left:75.120000px;}
.x21{left:101.370000px;}
.x5{left:244.170000px;}
.x9{left:259.470000px;}
.x3{left:270.300000px;}
.x1e{left:282.060000px;}
.x4{left:290.610000px;}
.x10{left:317.550000px;}
.xf{left:340.110000px;}
.x20{left:403.770000px;}
.xa{left:408.660000px;}
.x1c{left:410.772000px;}
.xc{left:412.530000px;}
.x1f{left:418.200000px;}
.x22{left:438.435000px;}
.x1{left:440.700000px;}
.xe{left:448.875000px;}
.x6{left:478.965000px;}
.x7{left:506.580000px;}
.x1d{left:687.810000px;}
@media print{
.v2{vertical-align:-60.800000pt;}
.v5{vertical-align:-58.240000pt;}
.v9{vertical-align:-56.960000pt;}
.v1{vertical-align:-55.680000pt;}
.v6{vertical-align:-54.400000pt;}
.v4{vertical-align:-21.120000pt;}
.v7{vertical-align:-8.533333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:21.120000pt;}
.v3{vertical-align:26.880000pt;}
.ls11{letter-spacing:-0.544000pt;}
.ls15{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.196267pt;}
.ls1a{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.024320pt;}
.lsc{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.016000pt;}
.lsa{letter-spacing:0.096000pt;}
.ls13{letter-spacing:0.144000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.208000pt;}
.ls14{letter-spacing:0.233067pt;}
.ls2{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.832000pt;}
.ls4{letter-spacing:5.920000pt;}
.ls5{letter-spacing:14.880000pt;}
.ls1b{letter-spacing:26.976000pt;}
.ls7{letter-spacing:46.720000pt;}
.ls9{letter-spacing:49.440000pt;}
.ls3{letter-spacing:59.040000pt;}
.ls12{letter-spacing:78.176000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls1c{letter-spacing:241.546667pt;}
.ls17{letter-spacing:1135.733333pt;}
.lsb{letter-spacing:1157.600000pt;}
.ls8{letter-spacing:1215.413333pt;}
.ls18{letter-spacing:1254.133333pt;}
.ls19{letter-spacing:1260.533333pt;}
.wsf{word-spacing:-48.000000pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.wse{word-spacing:-14.953067pt;}
.ws3{word-spacing:-12.960000pt;}
.ws10{word-spacing:-12.832000pt;}
.ws6{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws4{word-spacing:-12.443733pt;}
.ws5{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.208000pt;}
.wsc{word-spacing:-12.096000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws11{word-spacing:-11.808000pt;}
.wsb{word-spacing:-11.680000pt;}
.ws7{word-spacing:-9.280000pt;}
.ws8{word-spacing:-8.000000pt;}
.wsd{word-spacing:0.000000pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._2{width:1.354880pt;}
._5{width:2.953813pt;}
._9{width:4.005120pt;}
._b{width:4.909440pt;}
._6{width:5.807787pt;}
._7{width:7.296213pt;}
._a{width:8.300373pt;}
._f{width:9.189760pt;}
._c{width:10.116907pt;}
._d{width:11.104640pt;}
._8{width:15.162667pt;}
._e{width:925.546667pt;}
._4{width:1281.120000pt;}
._3{width:1399.520000pt;}
.fs9{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:2.533333pt;}
.y47{bottom:2.800000pt;}
.y44{bottom:2.933333pt;}
.y41{bottom:3.066667pt;}
.ya8{bottom:31.413333pt;}
.y77{bottom:45.400000pt;}
.y3c{bottom:48.053333pt;}
.yb5{bottom:49.280000pt;}
.y2{bottom:51.520000pt;}
.ya7{bottom:60.813333pt;}
.y1{bottom:68.346667pt;}
.ya6{bottom:74.760000pt;}
.ya5{bottom:88.520000pt;}
.y39{bottom:88.666667pt;}
.ya4{bottom:102.120000pt;}
.y38{bottom:102.586667pt;}
.y76{bottom:104.653333pt;}
.y37{bottom:116.346667pt;}
.y75{bottom:118.733333pt;}
.y36{bottom:130.106667pt;}
.ya3{bottom:130.120000pt;}
.y74{bottom:132.653333pt;}
.y35{bottom:143.866667pt;}
.ya2{bottom:144.040000pt;}
.y73{bottom:146.573333pt;}
.y34{bottom:157.786667pt;}
.ya1{bottom:157.800000pt;}
.y72{bottom:160.333333pt;}
.y33{bottom:171.546667pt;}
.ya0{bottom:171.560000pt;}
.y71{bottom:174.253333pt;}
.y32{bottom:185.146667pt;}
.y9f{bottom:185.480000pt;}
.y70{bottom:188.173333pt;}
.y9e{bottom:198.920000pt;}
.y6f{bottom:201.933333pt;}
.y31{bottom:213.146667pt;}
.y6e{bottom:215.693333pt;}
.y30{bottom:227.066667pt;}
.y9d{bottom:227.080000pt;}
.y6d{bottom:229.613333pt;}
.y2f{bottom:240.826667pt;}
.y9c{bottom:240.840000pt;}
.y6c{bottom:243.533333pt;}
.y2e{bottom:254.586667pt;}
.y9b{bottom:254.600000pt;}
.y6b{bottom:257.293333pt;}
.y2d{bottom:268.346667pt;}
.y9a{bottom:268.360000pt;}
.y6a{bottom:271.213333pt;}
.y2c{bottom:282.266667pt;}
.y99{bottom:282.280000pt;}
.y69{bottom:284.973333pt;}
.y2b{bottom:296.026667pt;}
.y98{bottom:296.040000pt;}
.y68{bottom:298.893333pt;}
.y2a{bottom:309.826667pt;}
.y97{bottom:309.840000pt;}
.y67{bottom:312.693333pt;}
.y29{bottom:323.746667pt;}
.y96{bottom:323.760000pt;}
.y66{bottom:326.453333pt;}
.y28{bottom:337.506667pt;}
.y65{bottom:340.373333pt;}
.y27{bottom:351.426667pt;}
.y64{bottom:353.973333pt;}
.y95{bottom:358.320000pt;}
.y26{bottom:365.186667pt;}
.y63{bottom:367.733333pt;}
.y94{bottom:372.080000pt;}
.y25{bottom:378.946667pt;}
.y62{bottom:381.653333pt;}
.y93{bottom:385.840000pt;}
.y24{bottom:392.706667pt;}
.y61{bottom:395.733333pt;}
.y92{bottom:399.760000pt;}
.y23{bottom:406.626667pt;}
.y60{bottom:410.453333pt;}
.y91{bottom:413.520000pt;}
.y22{bottom:420.386667pt;}
.y5f{bottom:425.173333pt;}
.y90{bottom:427.280000pt;}
.y21{bottom:434.146667pt;}
.y5e{bottom:439.893333pt;}
.y8f{bottom:441.040000pt;}
.y20{bottom:447.906667pt;}
.y5d{bottom:454.613333pt;}
.y8e{bottom:454.960000pt;}
.y1f{bottom:461.826667pt;}
.y8d{bottom:468.720000pt;}
.y5c{bottom:469.173333pt;}
.y1e{bottom:475.586667pt;}
.y8c{bottom:482.480000pt;}
.y5b{bottom:483.093333pt;}
.y8b{bottom:496.240000pt;}
.y5a{bottom:497.173333pt;}
.y1d{bottom:502.946667pt;}
.y8a{bottom:510.160000pt;}
.y59{bottom:511.093333pt;}
.y89{bottom:523.920000pt;}
.y58{bottom:524.853333pt;}
.y1c{bottom:530.626667pt;}
.y88{bottom:537.866667pt;}
.y57{bottom:538.640000pt;}
.y1b{bottom:546.813333pt;}
.y87{bottom:551.466667pt;}
.y56{bottom:552.400000pt;}
.y86{bottom:565.546667pt;}
.y55{bottom:566.320000pt;}
.y1a{bottom:572.573333pt;}
.y85{bottom:579.466667pt;}
.y54{bottom:580.080000pt;}
.y19{bottom:588.733333pt;}
.y84{bottom:593.066667pt;}
.y53{bottom:593.840000pt;}
.y18{bottom:602.493333pt;}
.y83{bottom:606.826667pt;}
.y52{bottom:607.600000pt;}
.y17{bottom:616.253333pt;}
.y82{bottom:621.066667pt;}
.y51{bottom:621.520000pt;}
.y16{bottom:630.173333pt;}
.y81{bottom:634.826667pt;}
.y50{bottom:635.280000pt;}
.y80{bottom:648.586667pt;}
.y4f{bottom:649.040000pt;}
.y15{bottom:649.853333pt;}
.y7f{bottom:662.506667pt;}
.y4e{bottom:662.960000pt;}
.y14{bottom:673.693333pt;}
.y7e{bottom:676.266667pt;}
.y4d{bottom:676.720000pt;}
.y13{bottom:687.453333pt;}
.y7d{bottom:690.026667pt;}
.y4c{bottom:690.480000pt;}
.y12{bottom:701.373333pt;}
.y7c{bottom:703.946667pt;}
.y4b{bottom:704.400000pt;}
.y7b{bottom:717.386667pt;}
.y4a{bottom:717.840000pt;}
.y7a{bottom:731.306667pt;}
.y49{bottom:731.760000pt;}
.y11{bottom:737.373333pt;}
.y79{bottom:745.546667pt;}
.y48{bottom:746.000000pt;}
.y78{bottom:756.586667pt;}
.y46{bottom:757.600000pt;}
.y10{bottom:762.973333pt;}
.yf{bottom:794.053333pt;}
.y45{bottom:802.533333pt;}
.ye{bottom:828.773333pt;}
.y43{bottom:847.466667pt;}
.yd{bottom:850.373333pt;}
.yb4{bottom:877.440000pt;}
.yb3{bottom:891.360000pt;}
.y42{bottom:892.266667pt;}
.yc{bottom:903.173333pt;}
.yb2{bottom:905.280000pt;}
.yb1{bottom:919.040000pt;}
.y9{bottom:919.173333pt;}
.yb{bottom:923.813333pt;}
.yb0{bottom:932.960000pt;}
.y40{bottom:937.200000pt;}
.y8{bottom:939.813333pt;}
.yaf{bottom:946.880000pt;}
.ya{bottom:952.293333pt;}
.yae{bottom:960.640000pt;}
.y7{bottom:965.893333pt;}
.yad{bottom:974.560000pt;}
.y3e{bottom:982.266667pt;}
.y6{bottom:982.853333pt;}
.yac{bottom:988.480000pt;}
.y5{bottom:998.213333pt;}
.yab{bottom:1002.240000pt;}
.y4{bottom:1013.600000pt;}
.yaa{bottom:1015.866667pt;}
.y3{bottom:1029.600000pt;}
.ya9{bottom:1029.786667pt;}
.y3d{bottom:1030.186667pt;}
.y3b{bottom:1044.586667pt;}
.y3a{bottom:1061.066667pt;}
.hb{height:31.390625pt;}
.hf{height:33.918750pt;}
.h10{height:42.084375pt;}
.h6{height:43.215000pt;}
.h15{height:44.160000pt;}
.h14{height:44.320000pt;}
.h13{height:44.346667pt;}
.he{height:47.085938pt;}
.h11{height:47.109375pt;}
.hc{height:48.375000pt;}
.h16{height:49.336436pt;}
.h7{height:49.597187pt;}
.h12{height:49.621875pt;}
.h8{height:52.108438pt;}
.h17{height:52.526250pt;}
.h3{height:53.535000pt;}
.hd{height:55.247500pt;}
.h1{height:57.787500pt;}
.h4{height:59.340000pt;}
.ha{height:64.290000pt;}
.h2{height:64.500000pt;}
.h5{height:72.885000pt;}
.h9{height:75.465000pt;}
.h0{height:1122.666667pt;}
.w2{width:97.120000pt;}
.w1{width:143.333333pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x2{left:26.640000pt;}
.x18{left:32.133333pt;}
.x14{left:33.200000pt;}
.x11{left:34.400000pt;}
.x17{left:35.600000pt;}
.x16{left:37.733333pt;}
.x1a{left:39.733333pt;}
.xb{left:41.600000pt;}
.x13{left:42.800000pt;}
.xd{left:44.680000pt;}
.x1b{left:45.613333pt;}
.x12{left:47.866667pt;}
.x19{left:56.000000pt;}
.x15{left:58.666667pt;}
.x8{left:66.773333pt;}
.x21{left:90.106667pt;}
.x5{left:217.040000pt;}
.x9{left:230.640000pt;}
.x3{left:240.266667pt;}
.x1e{left:250.720000pt;}
.x4{left:258.320000pt;}
.x10{left:282.266667pt;}
.xf{left:302.320000pt;}
.x20{left:358.906667pt;}
.xa{left:363.253333pt;}
.x1c{left:365.130667pt;}
.xc{left:366.693333pt;}
.x1f{left:371.733333pt;}
.x22{left:389.720000pt;}
.x1{left:391.733333pt;}
.xe{left:399.000000pt;}
.x6{left:425.746667pt;}
.x7{left:450.293333pt;}
.x1d{left:611.386667pt;}
}




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