
    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_078c47b5c87d4f265ba2a4e2.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_92fc94cebbb991fbe50762e9.woff')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_bf665427833dc9d9857c3873.woff')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_f08079e83186a8d6a45c60a8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_cff535fe254895b43711a588.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_ae667c8d98ccb648446e019d.woff')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v1{vertical-align:-71.280000px;}
.v2{vertical-align:-60.480000px;}
.v0{vertical-align:0.000000px;}
.ls2e{letter-spacing:-1.440000px;}
.ls2f{letter-spacing:-1.290000px;}
.ls17{letter-spacing:-1.134000px;}
.ls1a{letter-spacing:-0.948000px;}
.ls26{letter-spacing:-0.876000px;}
.ls21{letter-spacing:-0.720000px;}
.ls41{letter-spacing:-0.612000px;}
.ls40{letter-spacing:-0.540000px;}
.ls31{letter-spacing:-0.521400px;}
.ls43{letter-spacing:-0.460200px;}
.lsc{letter-spacing:-0.360000px;}
.ls2d{letter-spacing:-0.305400px;}
.lsf{letter-spacing:-0.252000px;}
.ls3f{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.169800px;}
.ls19{letter-spacing:-0.158400px;}
.ls36{letter-spacing:-0.152400px;}
.ls3d{letter-spacing:-0.147000px;}
.ls10{letter-spacing:-0.126000px;}
.ls11{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.053280px;}
.ls9{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.106800px;}
.ls20{letter-spacing:0.109200px;}
.ls3e{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.180000px;}
.ls42{letter-spacing:0.206400px;}
.ls13{letter-spacing:0.262080px;}
.lsd{letter-spacing:0.269400px;}
.ls37{letter-spacing:0.276600px;}
.lse{letter-spacing:0.306000px;}
.ls0{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.720000px;}
.ls6{letter-spacing:1.080000px;}
.ls1b{letter-spacing:1.440000px;}
.ls2c{letter-spacing:2.160000px;}
.ls3b{letter-spacing:3.060000px;}
.ls23{letter-spacing:4.320000px;}
.ls29{letter-spacing:7.920000px;}
.ls3c{letter-spacing:8.820000px;}
.ls35{letter-spacing:11.520000px;}
.ls24{letter-spacing:15.120000px;}
.ls32{letter-spacing:17.280000px;}
.ls7{letter-spacing:17.460000px;}
.ls1f{letter-spacing:18.720000px;}
.ls1c{letter-spacing:19.560000px;}
.ls30{letter-spacing:20.160000px;}
.ls2b{letter-spacing:23.040000px;}
.ls28{letter-spacing:25.200000px;}
.ls5{letter-spacing:26.280000px;}
.ls3{letter-spacing:26.796000px;}
.ls38{letter-spacing:28.080000px;}
.ls2a{letter-spacing:29.520000px;}
.ls1e{letter-spacing:30.240000px;}
.ls34{letter-spacing:30.960000px;}
.ls15{letter-spacing:33.120000px;}
.ls12{letter-spacing:35.280000px;}
.ls16{letter-spacing:38.880000px;}
.ls1d{letter-spacing:41.040000px;}
.ls14{letter-spacing:43.200000px;}
.ls39{letter-spacing:53.256000px;}
.ls25{letter-spacing:60.480000px;}
.ls33{letter-spacing:77.760000px;}
.ls27{letter-spacing:86.400000px;}
.ls8{letter-spacing:175.140000px;}
.ls3a{letter-spacing:719.616000px;}
.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;}
}
.ws18{word-spacing:-16.836600px;}
.ws14{word-spacing:-16.669200px;}
.ws7{word-spacing:-16.560000px;}
.ws19{word-spacing:-16.413000px;}
.ws17{word-spacing:-16.407600px;}
.ws12{word-spacing:-16.401600px;}
.ws11{word-spacing:-16.390200px;}
.ws13{word-spacing:-15.840000px;}
.ws4{word-spacing:-15.300000px;}
.ws16{word-spacing:-15.270000px;}
.ws1d{word-spacing:-15.146400px;}
.ws15{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.886720px;}
.wsf{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.806000px;}
.wsc{word-spacing:-13.680000px;}
.ws1a{word-spacing:-13.626000px;}
.ws1c{word-spacing:-13.518000px;}
.ws8{word-spacing:-13.500000px;}
.wse{word-spacing:-13.392000px;}
.wsb{word-spacing:-13.374000px;}
.ws1b{word-spacing:-13.284000px;}
.wsa{word-spacing:-13.248000px;}
.wsd{word-spacing:-13.140000px;}
.ws6{word-spacing:-12.060000px;}
.ws5{word-spacing:-11.700000px;}
.ws10{word-spacing:0.000000px;}
._2{margin-left:-2.097600px;}
._1{margin-left:-1.004640px;}
._0{width:1.180080px;}
._1d{width:2.288880px;}
._14{width:3.294000px;}
._12{width:4.644000px;}
._13{width:5.724000px;}
._16{width:7.551360px;}
._17{width:9.008640px;}
._8{width:10.908000px;}
._9{width:11.988000px;}
._2b{width:13.071360px;}
._1b{width:14.109120px;}
._34{width:15.232800px;}
._5{width:16.254000px;}
._6{width:17.353920px;}
._7{width:18.384960px;}
._a{width:19.494000px;}
._26{width:21.263040px;}
._1c{width:22.521600px;}
._35{width:24.861840px;}
._3{width:26.142960px;}
._4{width:27.156000px;}
._d{width:28.998000px;}
._b{width:30.348000px;}
._c{width:31.703520px;}
._21{width:32.788800px;}
._1a{width:34.444800px;}
._24{width:36.422160px;}
._27{width:37.602240px;}
._1e{width:39.471120px;}
._1f{width:40.555920px;}
._18{width:42.261120px;}
._20{width:43.323600px;}
._f{width:44.442000px;}
._e{width:46.008000px;}
._3a{width:47.491200px;}
._45{width:48.664320px;}
._37{width:49.680000px;}
._38{width:51.115200px;}
._41{width:52.606320px;}
._49{width:53.892000px;}
._15{width:55.111680px;}
._36{width:56.486400px;}
._2e{width:57.562560px;}
._2f{width:58.968000px;}
._31{width:60.063360px;}
._3b{width:61.409280px;}
._30{width:63.112320px;}
._3c{width:64.186560px;}
._25{width:66.173760px;}
._11{width:67.608000px;}
._10{width:68.958000px;}
._43{width:72.797760px;}
._46{width:76.870080px;}
._44{width:77.938560px;}
._2a{width:79.267200px;}
._29{width:80.587200px;}
._47{width:82.009920px;}
._3f{width:85.814400px;}
._40{width:86.885280px;}
._19{width:88.894080px;}
._3e{width:89.966160px;}
._3d{width:91.455360px;}
._4a{width:94.060800px;}
._39{width:95.849280px;}
._28{width:97.416960px;}
._2d{width:100.221120px;}
._2c{width:101.747520px;}
._22{width:112.158480px;}
._23{width:113.314560px;}
._42{width:122.808960px;}
._48{width:146.390400px;}
._32{width:167.719680px;}
._33{width:168.823680px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:12.240000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:56.880000px;}
.y55{bottom:90.360000px;}
.y65{bottom:93.060000px;}
.y2e{bottom:102.456000px;}
.y64{bottom:108.756000px;}
.y54{bottom:109.476000px;}
.y2d{bottom:121.536000px;}
.y63{bottom:124.236000px;}
.y53{bottom:128.376000px;}
.y62{bottom:139.716000px;}
.y2c{bottom:140.436000px;}
.y52{bottom:147.456000px;}
.y61{bottom:155.190000px;}
.y2b{bottom:159.510000px;}
.y51{bottom:166.350000px;}
.y60{bottom:170.850000px;}
.y50{bottom:185.250000px;}
.y5f{bottom:186.330000px;}
.y2a{bottom:196.230000px;}
.y5e{bottom:201.810000px;}
.y4f{bottom:204.330000px;}
.y29{bottom:210.450000px;}
.y5d{bottom:217.290000px;}
.y4e{bottom:223.230000px;}
.y28{bottom:225.930000px;}
.y5c{bottom:232.950000px;}
.y27{bottom:241.590000px;}
.y4d{bottom:242.310000px;}
.y5b{bottom:248.430000px;}
.y26{bottom:257.070000px;}
.y4c{bottom:261.210000px;}
.y5a{bottom:263.910000px;}
.y25{bottom:272.550000px;}
.y59{bottom:279.435000px;}
.y4b{bottom:280.155000px;}
.y24{bottom:288.075000px;}
.y58{bottom:295.095000px;}
.y4a{bottom:299.235000px;}
.y23{bottom:303.555000px;}
.y57{bottom:310.575000px;}
.y49{bottom:318.135000px;}
.y22{bottom:319.215000px;}
.y21{bottom:334.695000px;}
.y48{bottom:337.215000px;}
.y56{bottom:341.175000px;}
.y20{bottom:350.175000px;}
.y47{bottom:356.115000px;}
.y1f{bottom:365.655000px;}
.y46{bottom:375.195000px;}
.y1e{bottom:381.315000px;}
.y45{bottom:394.095000px;}
.y1d{bottom:396.795000px;}
.y1c{bottom:412.275000px;}
.y44{bottom:412.995000px;}
.y1b{bottom:427.755000px;}
.y43{bottom:432.075000px;}
.y1a{bottom:443.415000px;}
.y42{bottom:450.975000px;}
.y19{bottom:458.925000px;}
.y41{bottom:470.085000px;}
.y18{bottom:474.405000px;}
.y40{bottom:488.985000px;}
.y17{bottom:489.885000px;}
.y16{bottom:505.545000px;}
.y3f{bottom:507.885000px;}
.y15{bottom:521.025000px;}
.y3e{bottom:526.965000px;}
.y14{bottom:536.505000px;}
.y3d{bottom:545.865000px;}
.y13{bottom:551.985000px;}
.y3c{bottom:564.945000px;}
.y12{bottom:567.645000px;}
.y11{bottom:583.125000px;}
.y3b{bottom:583.845000px;}
.y10{bottom:598.245000px;}
.y3a{bottom:602.745000px;}
.yf{bottom:612.465000px;}
.y39{bottom:621.825000px;}
.ye{bottom:627.945000px;}
.y38{bottom:640.770000px;}
.yd{bottom:643.470000px;}
.yc{bottom:658.950000px;}
.y37{bottom:659.850000px;}
.yb{bottom:674.610000px;}
.y36{bottom:678.750000px;}
.ya{bottom:689.730000px;}
.y35{bottom:697.650000px;}
.y9{bottom:704.670000px;}
.y34{bottom:716.730000px;}
.y8{bottom:723.570000px;}
.y6a{bottom:730.050000px;}
.y33{bottom:735.630000px;}
.y7{bottom:742.650000px;}
.y69{bottom:747.330000px;}
.y32{bottom:754.710000px;}
.y6{bottom:761.550000px;}
.y68{bottom:764.250000px;}
.y31{bottom:773.610000px;}
.y5{bottom:777.570000px;}
.y67{bottom:779.730000px;}
.y4{bottom:782.790000px;}
.y30{bottom:792.690000px;}
.y66{bottom:795.390000px;}
.y3{bottom:796.650000px;}
.y2f{bottom:824.580000px;}
.y1{bottom:825.840000px;}
.h5{height:12.335625px;}
.ha{height:39.049805px;}
.h4{height:47.344922px;}
.hb{height:47.901094px;}
.h8{height:52.998047px;}
.h9{height:54.421875px;}
.hd{height:58.621992px;}
.h6{height:58.833281px;}
.h2{height:60.226875px;}
.hc{height:65.010937px;}
.h7{height:66.757500px;}
.h3{height:70.664062px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w2{width:629.459991px;}
.w0{width:629.460000px;}
.x0{left:0.000000px;}
.x3{left:84.995991px;}
.x1{left:98.855991px;}
.x8{left:131.795991px;}
.x4{left:149.435991px;}
.x5{left:219.134991px;}
.x9{left:226.154991px;}
.x7{left:273.314991px;}
.x2{left:301.214991px;}
.x6{left:314.714991px;}
.xa{left:329.474991px;}
@media print{
.v1{vertical-align:-63.360000pt;}
.v2{vertical-align:-53.760000pt;}
.v0{vertical-align:0.000000pt;}
.ls2e{letter-spacing:-1.280000pt;}
.ls2f{letter-spacing:-1.146667pt;}
.ls17{letter-spacing:-1.008000pt;}
.ls1a{letter-spacing:-0.842667pt;}
.ls26{letter-spacing:-0.778667pt;}
.ls21{letter-spacing:-0.640000pt;}
.ls41{letter-spacing:-0.544000pt;}
.ls40{letter-spacing:-0.480000pt;}
.ls31{letter-spacing:-0.463467pt;}
.ls43{letter-spacing:-0.409067pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls2d{letter-spacing:-0.271467pt;}
.lsf{letter-spacing:-0.224000pt;}
.ls3f{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.150933pt;}
.ls19{letter-spacing:-0.140800pt;}
.ls36{letter-spacing:-0.135467pt;}
.ls3d{letter-spacing:-0.130667pt;}
.ls10{letter-spacing:-0.112000pt;}
.ls11{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.094933pt;}
.ls20{letter-spacing:0.097067pt;}
.ls3e{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls42{letter-spacing:0.183467pt;}
.ls13{letter-spacing:0.232960pt;}
.lsd{letter-spacing:0.239467pt;}
.ls37{letter-spacing:0.245867pt;}
.lse{letter-spacing:0.272000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.960000pt;}
.ls1b{letter-spacing:1.280000pt;}
.ls2c{letter-spacing:1.920000pt;}
.ls3b{letter-spacing:2.720000pt;}
.ls23{letter-spacing:3.840000pt;}
.ls29{letter-spacing:7.040000pt;}
.ls3c{letter-spacing:7.840000pt;}
.ls35{letter-spacing:10.240000pt;}
.ls24{letter-spacing:13.440000pt;}
.ls32{letter-spacing:15.360000pt;}
.ls7{letter-spacing:15.520000pt;}
.ls1f{letter-spacing:16.640000pt;}
.ls1c{letter-spacing:17.386667pt;}
.ls30{letter-spacing:17.920000pt;}
.ls2b{letter-spacing:20.480000pt;}
.ls28{letter-spacing:22.400000pt;}
.ls5{letter-spacing:23.360000pt;}
.ls3{letter-spacing:23.818667pt;}
.ls38{letter-spacing:24.960000pt;}
.ls2a{letter-spacing:26.240000pt;}
.ls1e{letter-spacing:26.880000pt;}
.ls34{letter-spacing:27.520000pt;}
.ls15{letter-spacing:29.440000pt;}
.ls12{letter-spacing:31.360000pt;}
.ls16{letter-spacing:34.560000pt;}
.ls1d{letter-spacing:36.480000pt;}
.ls14{letter-spacing:38.400000pt;}
.ls39{letter-spacing:47.338667pt;}
.ls25{letter-spacing:53.760000pt;}
.ls33{letter-spacing:69.120000pt;}
.ls27{letter-spacing:76.800000pt;}
.ls8{letter-spacing:155.680000pt;}
.ls3a{letter-spacing:639.658667pt;}
.ws18{word-spacing:-14.965867pt;}
.ws14{word-spacing:-14.817067pt;}
.ws7{word-spacing:-14.720000pt;}
.ws19{word-spacing:-14.589333pt;}
.ws17{word-spacing:-14.584533pt;}
.ws12{word-spacing:-14.579200pt;}
.ws11{word-spacing:-14.569067pt;}
.ws13{word-spacing:-14.080000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws16{word-spacing:-13.573333pt;}
.ws1d{word-spacing:-13.463467pt;}
.ws15{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws2{word-spacing:-13.232640pt;}
.wsf{word-spacing:-12.320000pt;}
.ws9{word-spacing:-12.272000pt;}
.wsc{word-spacing:-12.160000pt;}
.ws1a{word-spacing:-12.112000pt;}
.ws1c{word-spacing:-12.016000pt;}
.ws8{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.904000pt;}
.wsb{word-spacing:-11.888000pt;}
.ws1b{word-spacing:-11.808000pt;}
.wsa{word-spacing:-11.776000pt;}
.wsd{word-spacing:-11.680000pt;}
.ws6{word-spacing:-10.720000pt;}
.ws5{word-spacing:-10.400000pt;}
.ws10{word-spacing:0.000000pt;}
._2{margin-left:-1.864533pt;}
._1{margin-left:-0.893013pt;}
._0{width:1.048960pt;}
._1d{width:2.034560pt;}
._14{width:2.928000pt;}
._12{width:4.128000pt;}
._13{width:5.088000pt;}
._16{width:6.712320pt;}
._17{width:8.007680pt;}
._8{width:9.696000pt;}
._9{width:10.656000pt;}
._2b{width:11.618987pt;}
._1b{width:12.541440pt;}
._34{width:13.540267pt;}
._5{width:14.448000pt;}
._6{width:15.425707pt;}
._7{width:16.342187pt;}
._a{width:17.328000pt;}
._26{width:18.900480pt;}
._1c{width:20.019200pt;}
._35{width:22.099413pt;}
._3{width:23.238187pt;}
._4{width:24.138667pt;}
._d{width:25.776000pt;}
._b{width:26.976000pt;}
._c{width:28.180907pt;}
._21{width:29.145600pt;}
._1a{width:30.617600pt;}
._24{width:32.375253pt;}
._27{width:33.424213pt;}
._1e{width:35.085440pt;}
._1f{width:36.049707pt;}
._18{width:37.565440pt;}
._20{width:38.509867pt;}
._f{width:39.504000pt;}
._e{width:40.896000pt;}
._3a{width:42.214400pt;}
._45{width:43.257173pt;}
._37{width:44.160000pt;}
._38{width:45.435733pt;}
._41{width:46.761173pt;}
._49{width:47.904000pt;}
._15{width:48.988160pt;}
._36{width:50.210133pt;}
._2e{width:51.166720pt;}
._2f{width:52.416000pt;}
._31{width:53.389653pt;}
._3b{width:54.586027pt;}
._30{width:56.099840pt;}
._3c{width:57.054720pt;}
._25{width:58.821120pt;}
._11{width:60.096000pt;}
._10{width:61.296000pt;}
._43{width:64.709120pt;}
._46{width:68.328960pt;}
._44{width:69.278720pt;}
._2a{width:70.459733pt;}
._29{width:71.633067pt;}
._47{width:72.897707pt;}
._3f{width:76.279467pt;}
._40{width:77.231360pt;}
._19{width:79.016960pt;}
._3e{width:79.969920pt;}
._3d{width:81.293653pt;}
._4a{width:83.609600pt;}
._39{width:85.199360pt;}
._28{width:86.592853pt;}
._2d{width:89.085440pt;}
._2c{width:90.442240pt;}
._22{width:99.696427pt;}
._23{width:100.724053pt;}
._42{width:109.163520pt;}
._48{width:130.124800pt;}
._32{width:149.084160pt;}
._33{width:150.065493pt;}
.fs3{font-size:10.880000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:50.560000pt;}
.y55{bottom:80.320000pt;}
.y65{bottom:82.720000pt;}
.y2e{bottom:91.072000pt;}
.y64{bottom:96.672000pt;}
.y54{bottom:97.312000pt;}
.y2d{bottom:108.032000pt;}
.y63{bottom:110.432000pt;}
.y53{bottom:114.112000pt;}
.y62{bottom:124.192000pt;}
.y2c{bottom:124.832000pt;}
.y52{bottom:131.072000pt;}
.y61{bottom:137.946667pt;}
.y2b{bottom:141.786667pt;}
.y51{bottom:147.866667pt;}
.y60{bottom:151.866667pt;}
.y50{bottom:164.666667pt;}
.y5f{bottom:165.626667pt;}
.y2a{bottom:174.426667pt;}
.y5e{bottom:179.386667pt;}
.y4f{bottom:181.626667pt;}
.y29{bottom:187.066667pt;}
.y5d{bottom:193.146667pt;}
.y4e{bottom:198.426667pt;}
.y28{bottom:200.826667pt;}
.y5c{bottom:207.066667pt;}
.y27{bottom:214.746667pt;}
.y4d{bottom:215.386667pt;}
.y5b{bottom:220.826667pt;}
.y26{bottom:228.506667pt;}
.y4c{bottom:232.186667pt;}
.y5a{bottom:234.586667pt;}
.y25{bottom:242.266667pt;}
.y59{bottom:248.386667pt;}
.y4b{bottom:249.026667pt;}
.y24{bottom:256.066667pt;}
.y58{bottom:262.306667pt;}
.y4a{bottom:265.986667pt;}
.y23{bottom:269.826667pt;}
.y57{bottom:276.066667pt;}
.y49{bottom:282.786667pt;}
.y22{bottom:283.746667pt;}
.y21{bottom:297.506667pt;}
.y48{bottom:299.746667pt;}
.y56{bottom:303.266667pt;}
.y20{bottom:311.266667pt;}
.y47{bottom:316.546667pt;}
.y1f{bottom:325.026667pt;}
.y46{bottom:333.506667pt;}
.y1e{bottom:338.946667pt;}
.y45{bottom:350.306667pt;}
.y1d{bottom:352.706667pt;}
.y1c{bottom:366.466667pt;}
.y44{bottom:367.106667pt;}
.y1b{bottom:380.226667pt;}
.y43{bottom:384.066667pt;}
.y1a{bottom:394.146667pt;}
.y42{bottom:400.866667pt;}
.y19{bottom:407.933333pt;}
.y41{bottom:417.853333pt;}
.y18{bottom:421.693333pt;}
.y40{bottom:434.653333pt;}
.y17{bottom:435.453333pt;}
.y16{bottom:449.373333pt;}
.y3f{bottom:451.453333pt;}
.y15{bottom:463.133333pt;}
.y3e{bottom:468.413333pt;}
.y14{bottom:476.893333pt;}
.y3d{bottom:485.213333pt;}
.y13{bottom:490.653333pt;}
.y3c{bottom:502.173333pt;}
.y12{bottom:504.573333pt;}
.y11{bottom:518.333333pt;}
.y3b{bottom:518.973333pt;}
.y10{bottom:531.773333pt;}
.y3a{bottom:535.773333pt;}
.yf{bottom:544.413333pt;}
.y39{bottom:552.733333pt;}
.ye{bottom:558.173333pt;}
.y38{bottom:569.573333pt;}
.yd{bottom:571.973333pt;}
.yc{bottom:585.733333pt;}
.y37{bottom:586.533333pt;}
.yb{bottom:599.653333pt;}
.y36{bottom:603.333333pt;}
.ya{bottom:613.093333pt;}
.y35{bottom:620.133333pt;}
.y9{bottom:626.373333pt;}
.y34{bottom:637.093333pt;}
.y8{bottom:643.173333pt;}
.y6a{bottom:648.933333pt;}
.y33{bottom:653.893333pt;}
.y7{bottom:660.133333pt;}
.y69{bottom:664.293333pt;}
.y32{bottom:670.853333pt;}
.y6{bottom:676.933333pt;}
.y68{bottom:679.333333pt;}
.y31{bottom:687.653333pt;}
.y5{bottom:691.173333pt;}
.y67{bottom:693.093333pt;}
.y4{bottom:695.813333pt;}
.y30{bottom:704.613333pt;}
.y66{bottom:707.013333pt;}
.y3{bottom:708.133333pt;}
.y2f{bottom:732.960000pt;}
.y1{bottom:734.080000pt;}
.h5{height:10.965000pt;}
.ha{height:34.710938pt;}
.h4{height:42.084375pt;}
.hb{height:42.578750pt;}
.h8{height:47.109375pt;}
.h9{height:48.375000pt;}
.hd{height:52.108438pt;}
.h6{height:52.296250pt;}
.h2{height:53.535000pt;}
.hc{height:57.787500pt;}
.h7{height:59.340000pt;}
.h3{height:62.812500pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w2{width:559.519992pt;}
.w0{width:559.520000pt;}
.x0{left:0.000000pt;}
.x3{left:75.551992pt;}
.x1{left:87.871992pt;}
.x8{left:117.151992pt;}
.x4{left:132.831992pt;}
.x5{left:194.786658pt;}
.x9{left:201.026658pt;}
.x7{left:242.946658pt;}
.x2{left:267.746658pt;}
.x6{left:279.746658pt;}
.xa{left:292.866658pt;}
}




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