
    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_66437aad3f0dbab22e2e00d7.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_bb07def1eb669a18fe422209.woff')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_88b49e3ac2cc0fbc6c08e115.woff')format("woff");}.ff3{font-family:ff3;line-height:1.401855;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_40cdf649e5b0be8e44f0d2a3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_eb5dbd79497da64457d134eb.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_8523b0960604632aef26d434.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b8994dcf4878d0e4c944d833.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f7c1e64500a7141ba00d3d36.woff')format("woff");}.ff9{font-family:ff9;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);}
.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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-1.176000px;}
.ls9{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.460200px;}
.ls6{letter-spacing:-0.206400px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.513600px;}
.lsb{letter-spacing:0.900000px;}
.lsa{letter-spacing:0.978000px;}
.lsd{letter-spacing:14.346720px;}
.ls8{letter-spacing:19.386720px;}
.lsc{letter-spacing:41.706720px;}
.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;}
}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.384000px;}
.ws5{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.733600px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1449.751680px;}
._5{margin-left:-1444.389120px;}
._4{margin-left:-939.110400px;}
._6{margin-left:-577.969920px;}
._e{margin-left:-3.891600px;}
._d{margin-left:-2.622240px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._b{width:3.116880px;}
._a{width:4.950720px;}
._c{width:6.155280px;}
._9{width:7.346160px;}
._7{width:8.493840px;}
._8{width:9.518640px;}
._13{width:10.620000px;}
._f{width:11.653200px;}
._10{width:13.018320px;}
._11{width:16.015680px;}
._12{width:17.151120px;}
._14{width:18.187200px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:2.880000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y41{bottom:5.760000px;}
.y3f{bottom:5.940000px;}
.y46{bottom:6.300000px;}
.y43{bottom:6.480000px;}
.y4c{bottom:6.525000px;}
.y4f{bottom:8.460000px;}
.yd1{bottom:10.440000px;}
.y40{bottom:25.560000px;}
.y3d{bottom:26.100000px;}
.yd0{bottom:30.240000px;}
.ycd{bottom:34.740000px;}
.y3c{bottom:46.080000px;}
.ycf{bottom:50.400000px;}
.y36{bottom:60.120000px;}
.y6{bottom:60.480000px;}
.yce{bottom:70.194000px;}
.ycc{bottom:85.716000px;}
.ya5{bottom:93.456000px;}
.y34{bottom:98.136000px;}
.ya4{bottom:113.256000px;}
.y73{bottom:115.956000px;}
.y33{bottom:118.116000px;}
.ya3{bottom:133.056000px;}
.y72{bottom:135.756000px;}
.y32{bottom:137.916000px;}
.ya2{bottom:152.850000px;}
.y71{bottom:155.730000px;}
.y31{bottom:157.710000px;}
.ya1{bottom:172.830000px;}
.y70{bottom:175.530000px;}
.y30{bottom:177.510000px;}
.ya0{bottom:192.630000px;}
.y6f{bottom:195.330000px;}
.y2f{bottom:197.310000px;}
.ycb{bottom:210.630000px;}
.y9f{bottom:212.430000px;}
.y6e{bottom:215.130000px;}
.y2e{bottom:217.290000px;}
.yca{bottom:230.430000px;}
.y9e{bottom:232.230000px;}
.y6d{bottom:234.930000px;}
.y2d{bottom:237.090000px;}
.yc9{bottom:250.230000px;}
.y9d{bottom:252.030000px;}
.y6c{bottom:254.910000px;}
.y2c{bottom:256.890000px;}
.yc8{bottom:270.030000px;}
.y9c{bottom:272.010000px;}
.y6b{bottom:274.710000px;}
.y2b{bottom:276.690000px;}
.yc7{bottom:290.010000px;}
.y9b{bottom:291.810000px;}
.y6a{bottom:294.510000px;}
.y2a{bottom:296.490000px;}
.yc6{bottom:309.810000px;}
.y9a{bottom:311.610000px;}
.y69{bottom:314.310000px;}
.y29{bottom:316.470000px;}
.yc5{bottom:329.610000px;}
.y99{bottom:331.410000px;}
.y68{bottom:334.110000px;}
.y28{bottom:336.270000px;}
.yc4{bottom:349.455000px;}
.y98{bottom:351.255000px;}
.y67{bottom:354.135000px;}
.y27{bottom:356.115000px;}
.yc3{bottom:369.255000px;}
.y97{bottom:371.235000px;}
.y66{bottom:373.935000px;}
.y26{bottom:375.915000px;}
.yc2{bottom:389.235000px;}
.y65{bottom:393.735000px;}
.y25{bottom:395.715000px;}
.y96{bottom:400.035000px;}
.yc1{bottom:409.035000px;}
.y64{bottom:413.535000px;}
.y24{bottom:415.695000px;}
.y95{bottom:419.835000px;}
.yc0{bottom:428.835000px;}
.y63{bottom:433.335000px;}
.y23{bottom:435.495000px;}
.y94{bottom:439.635000px;}
.ybf{bottom:448.635000px;}
.y62{bottom:453.315000px;}
.y22{bottom:455.295000px;}
.y93{bottom:459.435000px;}
.ybe{bottom:468.435000px;}
.y61{bottom:473.115000px;}
.y21{bottom:475.095000px;}
.y92{bottom:479.415000px;}
.ybd{bottom:488.415000px;}
.y60{bottom:492.915000px;}
.y20{bottom:494.895000px;}
.y91{bottom:499.215000px;}
.ybc{bottom:508.215000px;}
.y5f{bottom:512.715000px;}
.y1f{bottom:514.875000px;}
.y90{bottom:519.015000px;}
.ybb{bottom:528.015000px;}
.y5e{bottom:532.515000px;}
.y1e{bottom:534.675000px;}
.y8f{bottom:538.815000px;}
.yba{bottom:547.815000px;}
.y5d{bottom:552.495000px;}
.y1d{bottom:554.475000px;}
.y8e{bottom:558.615000px;}
.yb9{bottom:567.615000px;}
.y5c{bottom:572.295000px;}
.y1c{bottom:574.275000px;}
.y8d{bottom:578.595000px;}
.yb8{bottom:587.595000px;}
.y5b{bottom:592.095000px;}
.y1b{bottom:596.415000px;}
.y8c{bottom:598.395000px;}
.yb7{bottom:607.425000px;}
.y5a{bottom:611.925000px;}
.y8b{bottom:618.225000px;}
.y1a{bottom:625.245000px;}
.yb6{bottom:627.225000px;}
.y59{bottom:631.725000px;}
.y8a{bottom:638.025000px;}
.y19{bottom:645.045000px;}
.yb5{bottom:647.025000px;}
.y58{bottom:651.705000px;}
.y89{bottom:657.825000px;}
.y18{bottom:664.845000px;}
.yb4{bottom:666.825000px;}
.y57{bottom:671.505000px;}
.y88{bottom:677.805000px;}
.y17{bottom:684.825000px;}
.yb3{bottom:686.805000px;}
.y56{bottom:691.305000px;}
.y87{bottom:697.605000px;}
.y16{bottom:704.625000px;}
.yb2{bottom:706.605000px;}
.y55{bottom:711.105000px;}
.y86{bottom:717.405000px;}
.y15{bottom:724.425000px;}
.yb1{bottom:726.405000px;}
.y54{bottom:730.905000px;}
.y85{bottom:737.205000px;}
.y14{bottom:744.225000px;}
.yb0{bottom:746.205000px;}
.y53{bottom:750.885000px;}
.y84{bottom:757.005000px;}
.y13{bottom:764.025000px;}
.yaf{bottom:766.005000px;}
.y52{bottom:770.685000px;}
.y83{bottom:776.985000px;}
.y12{bottom:784.005000px;}
.yae{bottom:785.985000px;}
.y51{bottom:790.485000px;}
.y82{bottom:796.785000px;}
.y11{bottom:803.805000px;}
.yad{bottom:805.785000px;}
.y50{bottom:810.285000px;}
.y81{bottom:816.585000px;}
.y10{bottom:823.605000px;}
.y4e{bottom:824.865000px;}
.yac{bottom:825.585000px;}
.y80{bottom:836.385000px;}
.yf{bottom:843.405000px;}
.yab{bottom:845.385000px;}
.y4d{bottom:847.905000px;}
.y7f{bottom:856.185000px;}
.ye{bottom:863.205000px;}
.yaa{bottom:865.185000px;}
.y4b{bottom:868.785000px;}
.y7e{bottom:876.210000px;}
.yd{bottom:883.230000px;}
.ya9{bottom:885.210000px;}
.y4a{bottom:889.890000px;}
.y7d{bottom:896.010000px;}
.ya8{bottom:905.010000px;}
.yc{bottom:905.190000px;}
.y49{bottom:910.950000px;}
.y7c{bottom:915.810000px;}
.ya7{bottom:924.810000px;}
.yb{bottom:925.170000px;}
.y48{bottom:931.830000px;}
.y7b{bottom:935.610000px;}
.ya6{bottom:944.610000px;}
.ya{bottom:945.510000px;}
.y47{bottom:952.890000px;}
.y7a{bottom:964.410000px;}
.y9{bottom:966.750000px;}
.y45{bottom:973.950000px;}
.y79{bottom:984.390000px;}
.y8{bottom:990.150000px;}
.y44{bottom:994.830000px;}
.y78{bottom:1004.190000px;}
.y42{bottom:1015.890000px;}
.y7{bottom:1022.010000px;}
.y77{bottom:1023.990000px;}
.y3b{bottom:1036.950000px;}
.y76{bottom:1043.790000px;}
.y5{bottom:1060.350000px;}
.y75{bottom:1063.590000px;}
.y3e{bottom:1077.090000px;}
.y74{bottom:1083.570000px;}
.y4{bottom:1091.130000px;}
.y3a{bottom:1103.370000px;}
.y3{bottom:1121.910000px;}
.y39{bottom:1123.170000px;}
.y38{bottom:1143.000000px;}
.y2{bottom:1152.900000px;}
.y37{bottom:1162.800000px;}
.y1{bottom:1186.740000px;}
.y35{bottom:1193.400000px;}
.h12{height:2.826563px;}
.h9{height:19.980000px;}
.hc{height:20.340000px;}
.hb{height:20.520000px;}
.hd{height:20.556000px;}
.he{height:22.500000px;}
.ha{height:39.600000px;}
.h13{height:41.726953px;}
.h6{height:58.651172px;}
.h8{height:60.120000px;}
.h5{height:60.226875px;}
.h10{height:61.423863px;}
.hf{height:62.211094px;}
.h4{height:65.010937px;}
.h3{height:66.757500px;}
.h7{height:67.824844px;}
.h11{height:84.240000px;}
.h2{height:96.508125px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:34.020000px;}
.w6{width:80.820000px;}
.w9{width:83.160000px;}
.w7{width:107.856000px;}
.w8{width:138.816000px;}
.w4{width:194.970000px;}
.wa{width:210.855000px;}
.w5{width:411.375000px;}
.wb{width:580.965000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.xd{left:-1.080000px;}
.x0{left:0.000000px;}
.x4{left:5.040000px;}
.x1c{left:6.660000px;}
.xb{left:8.280000px;}
.x19{left:12.060000px;}
.x1a{left:13.140000px;}
.xa{left:15.660000px;}
.x12{left:18.540000px;}
.x6{left:19.980000px;}
.x1b{left:21.780000px;}
.x14{left:25.920000px;}
.x16{left:31.500000px;}
.x13{left:33.660000px;}
.x10{left:35.640000px;}
.x17{left:36.720000px;}
.x15{left:39.420000px;}
.x18{left:42.120000px;}
.xf{left:52.380000px;}
.x1{left:54.179987px;}
.x2{left:74.519987px;}
.x1d{left:75.599987px;}
.x1e{left:80.279987px;}
.x7{left:82.620000px;}
.x20{left:94.535987px;}
.x1f{left:101.375987px;}
.x9{left:111.450000px;}
.x3{left:126.396000px;}
.x5{left:160.590000px;}
.x21{left:191.370000px;}
.x22{left:264.855000px;}
.x8{left:355.755000px;}
.xc{left:436.755000px;}
.xe{left:544.785000px;}
.x11{left:683.970000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-1.045333pt;}
.ls9{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.409067pt;}
.ls6{letter-spacing:-0.183467pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.456533pt;}
.lsb{letter-spacing:0.800000pt;}
.lsa{letter-spacing:0.869333pt;}
.lsd{letter-spacing:12.752640pt;}
.ls8{letter-spacing:17.232640pt;}
.lsc{letter-spacing:37.072640pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.674667pt;}
.ws5{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.096533pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1288.668160pt;}
._5{margin-left:-1283.901440pt;}
._4{margin-left:-834.764800pt;}
._6{margin-left:-513.751040pt;}
._e{margin-left:-3.459200pt;}
._d{margin-left:-2.330880pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._b{width:2.770560pt;}
._a{width:4.400640pt;}
._c{width:5.471360pt;}
._9{width:6.529920pt;}
._7{width:7.550080pt;}
._8{width:8.461013pt;}
._13{width:9.440000pt;}
._f{width:10.358400pt;}
._10{width:11.571840pt;}
._11{width:14.236160pt;}
._12{width:15.245440pt;}
._14{width:16.166400pt;}
.fs3{font-size:2.560000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:5.120000pt;}
.y3f{bottom:5.280000pt;}
.y46{bottom:5.600000pt;}
.y43{bottom:5.760000pt;}
.y4c{bottom:5.800000pt;}
.y4f{bottom:7.520000pt;}
.yd1{bottom:9.280000pt;}
.y40{bottom:22.720000pt;}
.y3d{bottom:23.200000pt;}
.yd0{bottom:26.880000pt;}
.ycd{bottom:30.880000pt;}
.y3c{bottom:40.960000pt;}
.ycf{bottom:44.800000pt;}
.y36{bottom:53.440000pt;}
.y6{bottom:53.760000pt;}
.yce{bottom:62.394667pt;}
.ycc{bottom:76.192000pt;}
.ya5{bottom:83.072000pt;}
.y34{bottom:87.232000pt;}
.ya4{bottom:100.672000pt;}
.y73{bottom:103.072000pt;}
.y33{bottom:104.992000pt;}
.ya3{bottom:118.272000pt;}
.y72{bottom:120.672000pt;}
.y32{bottom:122.592000pt;}
.ya2{bottom:135.866667pt;}
.y71{bottom:138.426667pt;}
.y31{bottom:140.186667pt;}
.ya1{bottom:153.626667pt;}
.y70{bottom:156.026667pt;}
.y30{bottom:157.786667pt;}
.ya0{bottom:171.226667pt;}
.y6f{bottom:173.626667pt;}
.y2f{bottom:175.386667pt;}
.ycb{bottom:187.226667pt;}
.y9f{bottom:188.826667pt;}
.y6e{bottom:191.226667pt;}
.y2e{bottom:193.146667pt;}
.yca{bottom:204.826667pt;}
.y9e{bottom:206.426667pt;}
.y6d{bottom:208.826667pt;}
.y2d{bottom:210.746667pt;}
.yc9{bottom:222.426667pt;}
.y9d{bottom:224.026667pt;}
.y6c{bottom:226.586667pt;}
.y2c{bottom:228.346667pt;}
.yc8{bottom:240.026667pt;}
.y9c{bottom:241.786667pt;}
.y6b{bottom:244.186667pt;}
.y2b{bottom:245.946667pt;}
.yc7{bottom:257.786667pt;}
.y9b{bottom:259.386667pt;}
.y6a{bottom:261.786667pt;}
.y2a{bottom:263.546667pt;}
.yc6{bottom:275.386667pt;}
.y9a{bottom:276.986667pt;}
.y69{bottom:279.386667pt;}
.y29{bottom:281.306667pt;}
.yc5{bottom:292.986667pt;}
.y99{bottom:294.586667pt;}
.y68{bottom:296.986667pt;}
.y28{bottom:298.906667pt;}
.yc4{bottom:310.626667pt;}
.y98{bottom:312.226667pt;}
.y67{bottom:314.786667pt;}
.y27{bottom:316.546667pt;}
.yc3{bottom:328.226667pt;}
.y97{bottom:329.986667pt;}
.y66{bottom:332.386667pt;}
.y26{bottom:334.146667pt;}
.yc2{bottom:345.986667pt;}
.y65{bottom:349.986667pt;}
.y25{bottom:351.746667pt;}
.y96{bottom:355.586667pt;}
.yc1{bottom:363.586667pt;}
.y64{bottom:367.586667pt;}
.y24{bottom:369.506667pt;}
.y95{bottom:373.186667pt;}
.yc0{bottom:381.186667pt;}
.y63{bottom:385.186667pt;}
.y23{bottom:387.106667pt;}
.y94{bottom:390.786667pt;}
.ybf{bottom:398.786667pt;}
.y62{bottom:402.946667pt;}
.y22{bottom:404.706667pt;}
.y93{bottom:408.386667pt;}
.ybe{bottom:416.386667pt;}
.y61{bottom:420.546667pt;}
.y21{bottom:422.306667pt;}
.y92{bottom:426.146667pt;}
.ybd{bottom:434.146667pt;}
.y60{bottom:438.146667pt;}
.y20{bottom:439.906667pt;}
.y91{bottom:443.746667pt;}
.ybc{bottom:451.746667pt;}
.y5f{bottom:455.746667pt;}
.y1f{bottom:457.666667pt;}
.y90{bottom:461.346667pt;}
.ybb{bottom:469.346667pt;}
.y5e{bottom:473.346667pt;}
.y1e{bottom:475.266667pt;}
.y8f{bottom:478.946667pt;}
.yba{bottom:486.946667pt;}
.y5d{bottom:491.106667pt;}
.y1d{bottom:492.866667pt;}
.y8e{bottom:496.546667pt;}
.yb9{bottom:504.546667pt;}
.y5c{bottom:508.706667pt;}
.y1c{bottom:510.466667pt;}
.y8d{bottom:514.306667pt;}
.yb8{bottom:522.306667pt;}
.y5b{bottom:526.306667pt;}
.y1b{bottom:530.146667pt;}
.y8c{bottom:531.906667pt;}
.yb7{bottom:539.933333pt;}
.y5a{bottom:543.933333pt;}
.y8b{bottom:549.533333pt;}
.y1a{bottom:555.773333pt;}
.yb6{bottom:557.533333pt;}
.y59{bottom:561.533333pt;}
.y8a{bottom:567.133333pt;}
.y19{bottom:573.373333pt;}
.yb5{bottom:575.133333pt;}
.y58{bottom:579.293333pt;}
.y89{bottom:584.733333pt;}
.y18{bottom:590.973333pt;}
.yb4{bottom:592.733333pt;}
.y57{bottom:596.893333pt;}
.y88{bottom:602.493333pt;}
.y17{bottom:608.733333pt;}
.yb3{bottom:610.493333pt;}
.y56{bottom:614.493333pt;}
.y87{bottom:620.093333pt;}
.y16{bottom:626.333333pt;}
.yb2{bottom:628.093333pt;}
.y55{bottom:632.093333pt;}
.y86{bottom:637.693333pt;}
.y15{bottom:643.933333pt;}
.yb1{bottom:645.693333pt;}
.y54{bottom:649.693333pt;}
.y85{bottom:655.293333pt;}
.y14{bottom:661.533333pt;}
.yb0{bottom:663.293333pt;}
.y53{bottom:667.453333pt;}
.y84{bottom:672.893333pt;}
.y13{bottom:679.133333pt;}
.yaf{bottom:680.893333pt;}
.y52{bottom:685.053333pt;}
.y83{bottom:690.653333pt;}
.y12{bottom:696.893333pt;}
.yae{bottom:698.653333pt;}
.y51{bottom:702.653333pt;}
.y82{bottom:708.253333pt;}
.y11{bottom:714.493333pt;}
.yad{bottom:716.253333pt;}
.y50{bottom:720.253333pt;}
.y81{bottom:725.853333pt;}
.y10{bottom:732.093333pt;}
.y4e{bottom:733.213333pt;}
.yac{bottom:733.853333pt;}
.y80{bottom:743.453333pt;}
.yf{bottom:749.693333pt;}
.yab{bottom:751.453333pt;}
.y4d{bottom:753.693333pt;}
.y7f{bottom:761.053333pt;}
.ye{bottom:767.293333pt;}
.yaa{bottom:769.053333pt;}
.y4b{bottom:772.253333pt;}
.y7e{bottom:778.853333pt;}
.yd{bottom:785.093333pt;}
.ya9{bottom:786.853333pt;}
.y4a{bottom:791.013333pt;}
.y7d{bottom:796.453333pt;}
.ya8{bottom:804.453333pt;}
.yc{bottom:804.613333pt;}
.y49{bottom:809.733333pt;}
.y7c{bottom:814.053333pt;}
.ya7{bottom:822.053333pt;}
.yb{bottom:822.373333pt;}
.y48{bottom:828.293333pt;}
.y7b{bottom:831.653333pt;}
.ya6{bottom:839.653333pt;}
.ya{bottom:840.453333pt;}
.y47{bottom:847.013333pt;}
.y7a{bottom:857.253333pt;}
.y9{bottom:859.333333pt;}
.y45{bottom:865.733333pt;}
.y79{bottom:875.013333pt;}
.y8{bottom:880.133333pt;}
.y44{bottom:884.293333pt;}
.y78{bottom:892.613333pt;}
.y42{bottom:903.013333pt;}
.y7{bottom:908.453333pt;}
.y77{bottom:910.213333pt;}
.y3b{bottom:921.733333pt;}
.y76{bottom:927.813333pt;}
.y5{bottom:942.533333pt;}
.y75{bottom:945.413333pt;}
.y3e{bottom:957.413333pt;}
.y74{bottom:963.173333pt;}
.y4{bottom:969.893333pt;}
.y3a{bottom:980.773333pt;}
.y3{bottom:997.253333pt;}
.y39{bottom:998.373333pt;}
.y38{bottom:1016.000000pt;}
.y2{bottom:1024.800000pt;}
.y37{bottom:1033.600000pt;}
.y1{bottom:1054.880000pt;}
.y35{bottom:1060.800000pt;}
.h12{height:2.512500pt;}
.h9{height:17.760000pt;}
.hc{height:18.080000pt;}
.hb{height:18.240000pt;}
.hd{height:18.272000pt;}
.he{height:20.000000pt;}
.ha{height:35.200000pt;}
.h13{height:37.090625pt;}
.h6{height:52.134375pt;}
.h8{height:53.440000pt;}
.h5{height:53.535000pt;}
.h10{height:54.598989pt;}
.hf{height:55.298750pt;}
.h4{height:57.787500pt;}
.h3{height:59.340000pt;}
.h7{height:60.288750pt;}
.h11{height:74.880000pt;}
.h2{height:85.785000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:30.240000pt;}
.w6{width:71.840000pt;}
.w9{width:73.920000pt;}
.w7{width:95.872000pt;}
.w8{width:123.392000pt;}
.w4{width:173.306667pt;}
.wa{width:187.426667pt;}
.w5{width:365.666667pt;}
.wb{width:516.413333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.xd{left:-0.960000pt;}
.x0{left:0.000000pt;}
.x4{left:4.480000pt;}
.x1c{left:5.920000pt;}
.xb{left:7.360000pt;}
.x19{left:10.720000pt;}
.x1a{left:11.680000pt;}
.xa{left:13.920000pt;}
.x12{left:16.480000pt;}
.x6{left:17.760000pt;}
.x1b{left:19.360000pt;}
.x14{left:23.040000pt;}
.x16{left:28.000000pt;}
.x13{left:29.920000pt;}
.x10{left:31.680000pt;}
.x17{left:32.640000pt;}
.x15{left:35.040000pt;}
.x18{left:37.440000pt;}
.xf{left:46.560000pt;}
.x1{left:48.159988pt;}
.x2{left:66.239988pt;}
.x1d{left:67.199988pt;}
.x1e{left:71.359988pt;}
.x7{left:73.440000pt;}
.x20{left:84.031988pt;}
.x1f{left:90.111988pt;}
.x9{left:99.066667pt;}
.x3{left:112.352000pt;}
.x5{left:142.746667pt;}
.x21{left:170.106667pt;}
.x22{left:235.426667pt;}
.x8{left:316.226667pt;}
.xc{left:388.226667pt;}
.xe{left:484.253333pt;}
.x11{left:607.973333pt;}
}




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