
    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_69830d580bd9db6389fbb148.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.171875;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_c4e20f68c974a0dbd497d23f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c0c1795b4634ae39479c2b7c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_44f7c31f8a1c0c423547bace.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_535146c04c009db6820126cd.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_de19a7b95e53e0b73041f724.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a773b7bc2fef60ef275ed1d4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6967bbc9b2226a07618fa623.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4ac29457de280745076ae135.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_4e3288402bf22047bdf028ed.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.372070;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);}
.v1{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.240000px;}
.ls9{letter-spacing:-0.648000px;}
.ls7{letter-spacing:-0.298200px;}
.ls26{letter-spacing:-0.288000px;}
.ls25{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.058320px;}
.ls6{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.014400px;}
.ls16{letter-spacing:0.048000px;}
.ls14{letter-spacing:0.072000px;}
.ls21{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.720000px;}
.lsc{letter-spacing:5.040000px;}
.ls1c{letter-spacing:5.760000px;}
.ls19{letter-spacing:6.480000px;}
.ls1f{letter-spacing:7.920000px;}
.lsd{letter-spacing:10.080000px;}
.lse{letter-spacing:11.520000px;}
.ls1e{letter-spacing:15.840000px;}
.ls13{letter-spacing:16.560000px;}
.ls3{letter-spacing:17.280000px;}
.ls24{letter-spacing:20.880000px;}
.ls22{letter-spacing:21.600000px;}
.ls11{letter-spacing:28.080000px;}
.ls12{letter-spacing:28.200000px;}
.ls1b{letter-spacing:35.400000px;}
.ls20{letter-spacing:36.000000px;}
.ls2{letter-spacing:40.320000px;}
.ls1{letter-spacing:41.040000px;}
.ls23{letter-spacing:102.384000px;}
.ls1a{letter-spacing:138.384000px;}
.ls1d{letter-spacing:166.320000px;}
.lsb{letter-spacing:172.026720px;}
.ls0{letter-spacing:201.000000px;}
.ls18{letter-spacing:257.160000px;}
.ls15{letter-spacing:321.984000px;}
.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;}
}
.ws5{word-spacing:-18.360000px;}
.ws7{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.712000px;}
.ws1{word-spacing:-17.352000px;}
.ws0{word-spacing:-13.447440px;}
.ws3{word-spacing:0.000000px;}
._4{margin-left:-9.720000px;}
._18{margin-left:-7.016400px;}
._5{margin-left:-5.464800px;}
._3{margin-left:-4.320000px;}
._2{margin-left:-2.376000px;}
._1{margin-left:-1.152000px;}
._0{width:1.544400px;}
._c{width:2.991600px;}
._e{width:4.496400px;}
._d{width:5.892000px;}
._21{width:7.106400px;}
._7{width:8.751600px;}
._6{width:10.128000px;}
._8{width:11.542800px;}
._2d{width:13.407600px;}
._28{width:14.432400px;}
._1c{width:15.597600px;}
._12{width:16.671600px;}
._13{width:19.512000px;}
._19{width:20.775600px;}
._23{width:22.359600px;}
._1b{width:24.544800px;}
._a{width:25.959600px;}
._b{width:27.136800px;}
._1d{width:28.351200px;}
._f{width:30.351600px;}
._10{width:31.635600px;}
._14{width:33.552000px;}
._15{width:35.307600px;}
._20{width:36.687600px;}
._1f{width:37.728000px;}
._17{width:38.847600px;}
._16{width:39.888000px;}
._27{width:43.652400px;}
._26{width:44.655600px;}
._1e{width:46.008000px;}
._22{width:48.560400px;}
._11{width:50.472000px;}
._2a{width:52.488000px;}
._29{width:53.496000px;}
._2e{width:55.760400px;}
._2c{width:57.816000px;}
._25{width:59.112000px;}
._2b{width:66.028800px;}
._9{width:67.143600px;}
._1a{width:70.704000px;}
._30{width:165.756000px;}
._2f{width:167.112000px;}
._24{width:239.160000px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y58{bottom:7.020000px;}
.y5f{bottom:8.100000px;}
.y5a{bottom:8.820000px;}
.y5d{bottom:9.720000px;}
.y66{bottom:11.880000px;}
.y56{bottom:12.060000px;}
.y54{bottom:15.654000px;}
.y61{bottom:18.900000px;}
.y62{bottom:30.780000px;}
.y4e{bottom:57.465000px;}
.y7{bottom:57.636000px;}
.y4d{bottom:81.225000px;}
.y47{bottom:90.396000px;}
.y4c{bottom:105.165000px;}
.y55{bottom:107.136000px;}
.y46{bottom:114.156000px;}
.y32{bottom:123.336000px;}
.y4b{bottom:128.925000px;}
.y45{bottom:137.916000px;}
.y53{bottom:141.696000px;}
.y31{bottom:147.096000px;}
.y4a{bottom:152.685000px;}
.y44{bottom:161.670000px;}
.y30{bottom:171.030000px;}
.y49{bottom:176.445000px;}
.y43{bottom:185.430000px;}
.y52{bottom:190.470000px;}
.y2f{bottom:194.790000px;}
.y42{bottom:209.370000px;}
.y51{bottom:214.230000px;}
.y2e{bottom:218.550000px;}
.y80{bottom:231.150000px;}
.y41{bottom:233.130000px;}
.y50{bottom:238.170000px;}
.y2d{bottom:242.310000px;}
.y7f{bottom:254.910000px;}
.y40{bottom:256.890000px;}
.y4f{bottom:261.930000px;}
.y2c{bottom:266.250000px;}
.y7e{bottom:278.850000px;}
.y48{bottom:279.390000px;}
.y3f{bottom:280.650000px;}
.y2b{bottom:290.055000px;}
.y7d{bottom:302.655000px;}
.y3e{bottom:304.635000px;}
.y2a{bottom:313.815000px;}
.y7c{bottom:326.415000px;}
.y3d{bottom:328.395000px;}
.y29{bottom:337.575000px;}
.y7b{bottom:350.175000px;}
.y3c{bottom:352.155000px;}
.y28{bottom:361.515000px;}
.y7a{bottom:373.935000px;}
.y3b{bottom:375.915000px;}
.y27{bottom:385.275000px;}
.y79{bottom:397.875000px;}
.y3a{bottom:399.855000px;}
.y26{bottom:409.035000px;}
.y78{bottom:421.635000px;}
.y39{bottom:423.615000px;}
.y25{bottom:432.795000px;}
.y77{bottom:445.395000px;}
.y38{bottom:447.375000px;}
.y24{bottom:456.735000px;}
.y76{bottom:469.155000px;}
.y37{bottom:471.135000px;}
.y23{bottom:480.495000px;}
.y75{bottom:493.095000px;}
.y36{bottom:495.075000px;}
.y22{bottom:504.255000px;}
.y74{bottom:516.855000px;}
.y35{bottom:518.835000px;}
.y21{bottom:528.015000px;}
.y73{bottom:540.615000px;}
.y34{bottom:542.595000px;}
.y20{bottom:551.775000px;}
.y33{bottom:562.395000px;}
.y72{bottom:564.375000px;}
.y1f{bottom:575.745000px;}
.y71{bottom:588.345000px;}
.y1e{bottom:599.505000px;}
.y70{bottom:612.105000px;}
.y1d{bottom:623.265000px;}
.y6f{bottom:635.865000px;}
.y1c{bottom:647.025000px;}
.y6e{bottom:659.625000px;}
.y1b{bottom:670.965000px;}
.y6d{bottom:683.565000px;}
.y1a{bottom:694.725000px;}
.y6c{bottom:707.325000px;}
.y19{bottom:718.485000px;}
.y6b{bottom:731.085000px;}
.y18{bottom:742.245000px;}
.y6a{bottom:754.845000px;}
.y17{bottom:766.185000px;}
.y69{bottom:778.785000px;}
.y16{bottom:789.945000px;}
.y68{bottom:802.545000px;}
.y15{bottom:813.705000px;}
.y67{bottom:820.005000px;}
.y14{bottom:837.465000px;}
.y65{bottom:854.610000px;}
.y13{bottom:861.450000px;}
.y12{bottom:885.210000px;}
.y64{bottom:888.990000px;}
.y11{bottom:908.970000px;}
.y63{bottom:923.550000px;}
.y10{bottom:932.730000px;}
.yf{bottom:956.670000px;}
.y60{bottom:958.110000px;}
.ye{bottom:980.430000px;}
.yd{bottom:1004.190000px;}
.y5e{bottom:1006.350000px;}
.yc{bottom:1027.950000px;}
.y5c{bottom:1032.990000px;}
.yb{bottom:1051.710000px;}
.y5b{bottom:1062.870000px;}
.ya{bottom:1075.650000px;}
.y59{bottom:1087.350000px;}
.y9{bottom:1099.410000px;}
.y57{bottom:1115.430000px;}
.y8{bottom:1123.170000px;}
.y6{bottom:1143.900000px;}
.y5{bottom:1164.600000px;}
.y4{bottom:1182.960000px;}
.y3{bottom:1201.320000px;}
.y2{bottom:1219.500000px;}
.y1{bottom:1237.860000px;}
.h10{height:23.760000px;}
.he{height:23.796000px;}
.h12{height:25.920000px;}
.hf{height:27.360000px;}
.h11{height:29.160000px;}
.h14{height:33.660000px;}
.h15{height:33.696000px;}
.hd{height:33.840000px;}
.hc{height:41.040000px;}
.h13{height:47.520000px;}
.h2{height:61.189805px;}
.h5{height:62.261719px;}
.h8{height:64.160156px;}
.h4{height:65.884219px;}
.h7{height:70.664062px;}
.h16{height:71.824219px;}
.h6{height:72.562500px;}
.hb{height:74.004654px;}
.h9{height:74.953125px;}
.h3{height:84.898125px;}
.ha{height:193.170000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:63.000000px;}
.w7{width:135.756000px;}
.w4{width:286.815000px;}
.w3{width:297.930000px;}
.w6{width:431.895000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:7.740000px;}
.x1e{left:18.000000px;}
.x17{left:22.500000px;}
.x1d{left:24.660000px;}
.x1b{left:27.900000px;}
.x1c{left:65.025000px;}
.x1f{left:74.025000px;}
.xc{left:84.959987px;}
.x20{left:87.525000px;}
.x22{left:91.835987px;}
.x5{left:105.515987px;}
.x16{left:117.396000px;}
.x6{left:125.495987px;}
.x14{left:129.275987px;}
.xb{left:141.515987px;}
.x11{left:153.750000px;}
.x19{left:155.925000px;}
.x21{left:179.129987px;}
.x18{left:181.110000px;}
.xa{left:183.449987px;}
.x7{left:192.809987px;}
.x10{left:207.209987px;}
.xd{left:214.769987px;}
.x15{left:276.689987px;}
.x23{left:284.834987px;}
.x24{left:292.934987px;}
.x9{left:322.094987px;}
.x3{left:350.534987px;}
.xe{left:364.214987px;}
.x4{left:433.874987px;}
.x8{left:446.474987px;}
.x13{left:452.595000px;}
.x2{left:457.094987px;}
.x1{left:510.404987px;}
.x1a{left:613.725000px;}
.xf{left:764.789987px;}
@media print{
.v1{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.880000pt;}
.ls9{letter-spacing:-0.576000pt;}
.ls7{letter-spacing:-0.265067pt;}
.ls26{letter-spacing:-0.256000pt;}
.ls25{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.051840pt;}
.ls6{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.012800pt;}
.ls16{letter-spacing:0.042667pt;}
.ls14{letter-spacing:0.064000pt;}
.ls21{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.640000pt;}
.lsc{letter-spacing:4.480000pt;}
.ls1c{letter-spacing:5.120000pt;}
.ls19{letter-spacing:5.760000pt;}
.ls1f{letter-spacing:7.040000pt;}
.lsd{letter-spacing:8.960000pt;}
.lse{letter-spacing:10.240000pt;}
.ls1e{letter-spacing:14.080000pt;}
.ls13{letter-spacing:14.720000pt;}
.ls3{letter-spacing:15.360000pt;}
.ls24{letter-spacing:18.560000pt;}
.ls22{letter-spacing:19.200000pt;}
.ls11{letter-spacing:24.960000pt;}
.ls12{letter-spacing:25.066667pt;}
.ls1b{letter-spacing:31.466667pt;}
.ls20{letter-spacing:32.000000pt;}
.ls2{letter-spacing:35.840000pt;}
.ls1{letter-spacing:36.480000pt;}
.ls23{letter-spacing:91.008000pt;}
.ls1a{letter-spacing:123.008000pt;}
.ls1d{letter-spacing:147.840000pt;}
.lsb{letter-spacing:152.912640pt;}
.ls0{letter-spacing:178.666667pt;}
.ls18{letter-spacing:228.586667pt;}
.ls15{letter-spacing:286.208000pt;}
.ws5{word-spacing:-16.320000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws1{word-spacing:-15.424000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws3{word-spacing:0.000000pt;}
._4{margin-left:-8.640000pt;}
._18{margin-left:-6.236800pt;}
._5{margin-left:-4.857600pt;}
._3{margin-left:-3.840000pt;}
._2{margin-left:-2.112000pt;}
._1{margin-left:-1.024000pt;}
._0{width:1.372800pt;}
._c{width:2.659200pt;}
._e{width:3.996800pt;}
._d{width:5.237333pt;}
._21{width:6.316800pt;}
._7{width:7.779200pt;}
._6{width:9.002667pt;}
._8{width:10.260267pt;}
._2d{width:11.917867pt;}
._28{width:12.828800pt;}
._1c{width:13.864533pt;}
._12{width:14.819200pt;}
._13{width:17.344000pt;}
._19{width:18.467200pt;}
._23{width:19.875200pt;}
._1b{width:21.817600pt;}
._a{width:23.075200pt;}
._b{width:24.121600pt;}
._1d{width:25.201067pt;}
._f{width:26.979200pt;}
._10{width:28.120533pt;}
._14{width:29.824000pt;}
._15{width:31.384533pt;}
._20{width:32.611200pt;}
._1f{width:33.536000pt;}
._17{width:34.531200pt;}
._16{width:35.456000pt;}
._27{width:38.802133pt;}
._26{width:39.693867pt;}
._1e{width:40.896000pt;}
._22{width:43.164800pt;}
._11{width:44.864000pt;}
._2a{width:46.656000pt;}
._29{width:47.552000pt;}
._2e{width:49.564800pt;}
._2c{width:51.392000pt;}
._25{width:52.544000pt;}
._2b{width:58.692267pt;}
._9{width:59.683200pt;}
._1a{width:62.848000pt;}
._30{width:147.338667pt;}
._2f{width:148.544000pt;}
._24{width:212.586667pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:6.240000pt;}
.y5f{bottom:7.200000pt;}
.y5a{bottom:7.840000pt;}
.y5d{bottom:8.640000pt;}
.y66{bottom:10.560000pt;}
.y56{bottom:10.720000pt;}
.y54{bottom:13.914667pt;}
.y61{bottom:16.800000pt;}
.y62{bottom:27.360000pt;}
.y4e{bottom:51.080000pt;}
.y7{bottom:51.232000pt;}
.y4d{bottom:72.200000pt;}
.y47{bottom:80.352000pt;}
.y4c{bottom:93.480000pt;}
.y55{bottom:95.232000pt;}
.y46{bottom:101.472000pt;}
.y32{bottom:109.632000pt;}
.y4b{bottom:114.600000pt;}
.y45{bottom:122.592000pt;}
.y53{bottom:125.952000pt;}
.y31{bottom:130.752000pt;}
.y4a{bottom:135.720000pt;}
.y44{bottom:143.706667pt;}
.y30{bottom:152.026667pt;}
.y49{bottom:156.840000pt;}
.y43{bottom:164.826667pt;}
.y52{bottom:169.306667pt;}
.y2f{bottom:173.146667pt;}
.y42{bottom:186.106667pt;}
.y51{bottom:190.426667pt;}
.y2e{bottom:194.266667pt;}
.y80{bottom:205.466667pt;}
.y41{bottom:207.226667pt;}
.y50{bottom:211.706667pt;}
.y2d{bottom:215.386667pt;}
.y7f{bottom:226.586667pt;}
.y40{bottom:228.346667pt;}
.y4f{bottom:232.826667pt;}
.y2c{bottom:236.666667pt;}
.y7e{bottom:247.866667pt;}
.y48{bottom:248.346667pt;}
.y3f{bottom:249.466667pt;}
.y2b{bottom:257.826667pt;}
.y7d{bottom:269.026667pt;}
.y3e{bottom:270.786667pt;}
.y2a{bottom:278.946667pt;}
.y7c{bottom:290.146667pt;}
.y3d{bottom:291.906667pt;}
.y29{bottom:300.066667pt;}
.y7b{bottom:311.266667pt;}
.y3c{bottom:313.026667pt;}
.y28{bottom:321.346667pt;}
.y7a{bottom:332.386667pt;}
.y3b{bottom:334.146667pt;}
.y27{bottom:342.466667pt;}
.y79{bottom:353.666667pt;}
.y3a{bottom:355.426667pt;}
.y26{bottom:363.586667pt;}
.y78{bottom:374.786667pt;}
.y39{bottom:376.546667pt;}
.y25{bottom:384.706667pt;}
.y77{bottom:395.906667pt;}
.y38{bottom:397.666667pt;}
.y24{bottom:405.986667pt;}
.y76{bottom:417.026667pt;}
.y37{bottom:418.786667pt;}
.y23{bottom:427.106667pt;}
.y75{bottom:438.306667pt;}
.y36{bottom:440.066667pt;}
.y22{bottom:448.226667pt;}
.y74{bottom:459.426667pt;}
.y35{bottom:461.186667pt;}
.y21{bottom:469.346667pt;}
.y73{bottom:480.546667pt;}
.y34{bottom:482.306667pt;}
.y20{bottom:490.466667pt;}
.y33{bottom:499.906667pt;}
.y72{bottom:501.666667pt;}
.y1f{bottom:511.773333pt;}
.y71{bottom:522.973333pt;}
.y1e{bottom:532.893333pt;}
.y70{bottom:544.093333pt;}
.y1d{bottom:554.013333pt;}
.y6f{bottom:565.213333pt;}
.y1c{bottom:575.133333pt;}
.y6e{bottom:586.333333pt;}
.y1b{bottom:596.413333pt;}
.y6d{bottom:607.613333pt;}
.y1a{bottom:617.533333pt;}
.y6c{bottom:628.733333pt;}
.y19{bottom:638.653333pt;}
.y6b{bottom:649.853333pt;}
.y18{bottom:659.773333pt;}
.y6a{bottom:670.973333pt;}
.y17{bottom:681.053333pt;}
.y69{bottom:692.253333pt;}
.y16{bottom:702.173333pt;}
.y68{bottom:713.373333pt;}
.y15{bottom:723.293333pt;}
.y67{bottom:728.893333pt;}
.y14{bottom:744.413333pt;}
.y65{bottom:759.653333pt;}
.y13{bottom:765.733333pt;}
.y12{bottom:786.853333pt;}
.y64{bottom:790.213333pt;}
.y11{bottom:807.973333pt;}
.y63{bottom:820.933333pt;}
.y10{bottom:829.093333pt;}
.yf{bottom:850.373333pt;}
.y60{bottom:851.653333pt;}
.ye{bottom:871.493333pt;}
.yd{bottom:892.613333pt;}
.y5e{bottom:894.533333pt;}
.yc{bottom:913.733333pt;}
.y5c{bottom:918.213333pt;}
.yb{bottom:934.853333pt;}
.y5b{bottom:944.773333pt;}
.ya{bottom:956.133333pt;}
.y59{bottom:966.533333pt;}
.y9{bottom:977.253333pt;}
.y57{bottom:991.493333pt;}
.y8{bottom:998.373333pt;}
.y6{bottom:1016.800000pt;}
.y5{bottom:1035.200000pt;}
.y4{bottom:1051.520000pt;}
.y3{bottom:1067.840000pt;}
.y2{bottom:1084.000000pt;}
.y1{bottom:1100.320000pt;}
.h10{height:21.120000pt;}
.he{height:21.152000pt;}
.h12{height:23.040000pt;}
.hf{height:24.320000pt;}
.h11{height:25.920000pt;}
.h14{height:29.920000pt;}
.h15{height:29.952000pt;}
.hd{height:30.080000pt;}
.hc{height:36.480000pt;}
.h13{height:42.240000pt;}
.h2{height:54.390938pt;}
.h5{height:55.343750pt;}
.h8{height:57.031250pt;}
.h4{height:58.563750pt;}
.h7{height:62.812500pt;}
.h16{height:63.843750pt;}
.h6{height:64.500000pt;}
.hb{height:65.781915pt;}
.h9{height:66.625000pt;}
.h3{height:75.465000pt;}
.ha{height:171.706667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:56.000000pt;}
.w7{width:120.672000pt;}
.w4{width:254.946667pt;}
.w3{width:264.826667pt;}
.w6{width:383.906667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:6.880000pt;}
.x1e{left:16.000000pt;}
.x17{left:20.000000pt;}
.x1d{left:21.920000pt;}
.x1b{left:24.800000pt;}
.x1c{left:57.800000pt;}
.x1f{left:65.800000pt;}
.xc{left:75.519988pt;}
.x20{left:77.800000pt;}
.x22{left:81.631988pt;}
.x5{left:93.791988pt;}
.x16{left:104.352000pt;}
.x6{left:111.551988pt;}
.x14{left:114.911988pt;}
.xb{left:125.791988pt;}
.x11{left:136.666667pt;}
.x19{left:138.600000pt;}
.x21{left:159.226655pt;}
.x18{left:160.986667pt;}
.xa{left:163.066655pt;}
.x7{left:171.386655pt;}
.x10{left:184.186655pt;}
.xd{left:190.906655pt;}
.x15{left:245.946655pt;}
.x23{left:253.186655pt;}
.x24{left:260.386655pt;}
.x9{left:286.306655pt;}
.x3{left:311.586655pt;}
.xe{left:323.746655pt;}
.x4{left:385.666655pt;}
.x8{left:396.866655pt;}
.x13{left:402.306667pt;}
.x2{left:406.306655pt;}
.x1{left:453.693322pt;}
.x1a{left:545.533333pt;}
.xf{left:679.813322pt;}
}




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