
    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_064362268e4cddbdd93daa47.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_ade8923a43e294342b78beec.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0d0ec5dcbea2f5f3e0da1732.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_b195220aa75bda9ff5af96f0.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_57c659558db0ccd4f2e7e099.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_25813af8eb4c5dd604548d1d.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cc7c9d4c9b86d2931d997086.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.035156;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_e67b43350427bf26a0c40793.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c59dedd5719d3c78f195c576.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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:ffc;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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;}
.ls9{letter-spacing:-1.008000px;}
.ls8{letter-spacing:-0.457800px;}
.lse{letter-spacing:-0.252000px;}
.lsb{letter-spacing:-0.226200px;}
.lsd{letter-spacing:-0.108000px;}
.lsa{letter-spacing:-0.089400px;}
.ls11{letter-spacing:-0.053280px;}
.ls10{letter-spacing:-0.036000px;}
.ls7{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.108000px;}
.lsc{letter-spacing:0.126000px;}
.ls5{letter-spacing:0.149760px;}
.ls3{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.262080px;}
.ls1{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.540000px;}
.lsf{letter-spacing:1.620000px;}
.ls12{letter-spacing:37.584000px;}
.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;}
}
.wsc{word-spacing:-18.000000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.102200px;}
.ws2{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.ws7{word-spacing:-13.860000px;}
.ws6{word-spacing:-13.626000px;}
.ws8{word-spacing:-13.505760px;}
.wsa{word-spacing:-13.392000px;}
.ws5{word-spacing:-10.440000px;}
.ws4{word-spacing:-10.213800px;}
.ws9{word-spacing:-9.000000px;}
.wsb{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.651200px;}
._8{width:3.009600px;}
._5{width:4.239360px;}
._4{width:5.670000px;}
._6{width:7.252560px;}
._d{width:8.605440px;}
._c{width:9.979920px;}
._e{width:11.167200px;}
._7{width:12.204000px;}
._3{width:15.120000px;}
._2{width:16.632000px;}
._f{width:17.830560px;}
._b{width:19.182960px;}
._9{width:20.466000px;}
._a{width:21.978000px;}
._10{width:23.985840px;}
._11{width:25.196640px;}
._12{width:186.264000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(10,10,10);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs8{font-size:12.240000px;}
.fs2{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fsb{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y48{bottom:0.360000px;}
.y50{bottom:0.900000px;}
.y5{bottom:3.780000px;}
.y5e{bottom:5.010000px;}
.y47{bottom:5.040000px;}
.y5b{bottom:8.460000px;}
.y2{bottom:9.900000px;}
.y46{bottom:22.320000px;}
.y4{bottom:22.710000px;}
.y5a{bottom:23.940000px;}
.y4f{bottom:30.600000px;}
.y45{bottom:39.600000px;}
.y59{bottom:41.760000px;}
.y3{bottom:47.910000px;}
.y4e{bottom:51.480000px;}
.y44{bottom:56.700000px;}
.y58{bottom:57.240000px;}
.y4d{bottom:64.440000px;}
.y8{bottom:71.820000px;}
.y57{bottom:72.720000px;}
.y43{bottom:73.980000px;}
.y4c{bottom:86.430000px;}
.y56{bottom:90.570000px;}
.y7{bottom:90.720000px;}
.y42{bottom:91.260000px;}
.y55{bottom:106.050000px;}
.y41{bottom:108.540000px;}
.y49{bottom:119.520000px;}
.y54{bottom:121.530000px;}
.y40{bottom:125.820000px;}
.y97{bottom:134.280000px;}
.y53{bottom:137.010000px;}
.y3f{bottom:142.965000px;}
.y4b{bottom:148.530000px;}
.y96{bottom:151.560000px;}
.y52{bottom:152.670000px;}
.y4a{bottom:158.970000px;}
.y3e{bottom:160.245000px;}
.y51{bottom:168.150000px;}
.y95{bottom:168.840000px;}
.y5c{bottom:175.710000px;}
.y3d{bottom:178.245000px;}
.y94{bottom:186.120000px;}
.y3c{bottom:195.885000px;}
.y93{bottom:203.430000px;}
.y3b{bottom:213.165000px;}
.y92{bottom:220.710000px;}
.y3a{bottom:230.445000px;}
.y91{bottom:237.810000px;}
.y39{bottom:247.545000px;}
.y90{bottom:255.090000px;}
.ya7{bottom:261.210000px;}
.y38{bottom:264.825000px;}
.y8f{bottom:272.370000px;}
.ya6{bottom:278.490000px;}
.y37{bottom:282.105000px;}
.y8e{bottom:289.650000px;}
.y22{bottom:293.265000px;}
.ya5{bottom:295.590000px;}
.y36{bottom:299.385000px;}
.y8d{bottom:306.930000px;}
.y14{bottom:307.830000px;}
.y21{bottom:310.545000px;}
.ya4{bottom:312.870000px;}
.y35{bottom:316.665000px;}
.y8c{bottom:324.030000px;}
.ya3{bottom:330.150000px;}
.y34{bottom:333.765000px;}
.y20{bottom:334.665000px;}
.y8b{bottom:341.310000px;}
.ya2{bottom:347.430000px;}
.y33{bottom:351.045000px;}
.y8a{bottom:358.590000px;}
.y1f{bottom:358.785000px;}
.ya1{bottom:364.710000px;}
.y32{bottom:368.355000px;}
.y89{bottom:375.870000px;}
.ya0{bottom:381.990000px;}
.y1e{bottom:382.935000px;}
.y31{bottom:385.635000px;}
.y88{bottom:393.150000px;}
.y9f{bottom:399.090000px;}
.y30{bottom:402.915000px;}
.y1d{bottom:407.235000px;}
.y87{bottom:410.430000px;}
.y9e{bottom:416.550000px;}
.y2f{bottom:420.195000px;}
.y86{bottom:427.530000px;}
.y1c{bottom:431.355000px;}
.y9d{bottom:436.530000px;}
.y2e{bottom:437.295000px;}
.y85{bottom:444.855000px;}
.y9c{bottom:453.855000px;}
.y2d{bottom:454.575000px;}
.y1b{bottom:455.475000px;}
.y84{bottom:462.135000px;}
.y2c{bottom:468.975000px;}
.y2b{bottom:473.295000px;}
.y9b{bottom:473.835000px;}
.y83{bottom:479.415000px;}
.y1a{bottom:479.595000px;}
.y2a{bottom:488.775000px;}
.y9a{bottom:491.115000px;}
.y82{bottom:496.695000px;}
.y19{bottom:503.715000px;}
.y29{bottom:504.255000px;}
.y99{bottom:511.095000px;}
.y81{bottom:513.975000px;}
.y28{bottom:519.915000px;}
.y18{bottom:527.835000px;}
.y98{bottom:528.375000px;}
.y80{bottom:531.075000px;}
.y27{bottom:535.395000px;}
.y7f{bottom:548.355000px;}
.y26{bottom:550.875000px;}
.y17{bottom:552.135000px;}
.y7e{bottom:565.635000px;}
.y25{bottom:566.355000px;}
.y16{bottom:576.255000px;}
.y24{bottom:582.015000px;}
.y7d{bottom:582.915000px;}
.y23{bottom:597.495000px;}
.y7c{bottom:600.195000px;}
.y15{bottom:600.375000px;}
.y7b{bottom:617.475000px;}
.y7a{bottom:634.575000px;}
.y79{bottom:651.855000px;}
.y78{bottom:669.135000px;}
.y77{bottom:686.445000px;}
.y76{bottom:703.725000px;}
.y75{bottom:720.825000px;}
.y74{bottom:738.105000px;}
.y73{bottom:755.385000px;}
.y72{bottom:772.665000px;}
.y71{bottom:789.945000px;}
.y70{bottom:807.225000px;}
.y6f{bottom:824.325000px;}
.y6e{bottom:841.605000px;}
.y6d{bottom:858.885000px;}
.y6c{bottom:876.165000px;}
.y6b{bottom:893.445000px;}
.y6a{bottom:910.770000px;}
.y13{bottom:919.050000px;}
.y12{bottom:920.850000px;}
.y11{bottom:925.350000px;}
.y69{bottom:927.870000px;}
.y10{bottom:942.630000px;}
.y68{bottom:945.150000px;}
.yf{bottom:959.910000px;}
.y67{bottom:962.430000px;}
.ye{bottom:977.190000px;}
.y66{bottom:979.710000px;}
.yd{bottom:994.290000px;}
.y65{bottom:996.990000px;}
.yc{bottom:1011.570000px;}
.y64{bottom:1014.090000px;}
.yb{bottom:1030.110000px;}
.y63{bottom:1031.370000px;}
.y62{bottom:1048.650000px;}
.ya{bottom:1054.230000px;}
.y61{bottom:1065.930000px;}
.y9{bottom:1082.850000px;}
.y60{bottom:1083.210000px;}
.y5d{bottom:1086.300000px;}
.y5f{bottom:1100.490000px;}
.y6{bottom:1116.330000px;}
.y1{bottom:1123.530000px;}
.hb{height:4.021875px;}
.hf{height:8.546484px;}
.h15{height:21.114844px;}
.h17{height:27.720000px;}
.he{height:29.158594px;}
.hd{height:29.464453px;}
.h6{height:30.077578px;}
.h16{height:38.100586px;}
.h10{height:38.997070px;}
.h8{height:40.132617px;}
.h7{height:41.726953px;}
.ha{height:42.164648px;}
.h11{height:44.507812px;}
.h5{height:46.251562px;}
.h19{height:52.417969px;}
.h9{height:59.436914px;}
.h12{height:59.439023px;}
.h13{height:61.189805px;}
.h18{height:64.002656px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h14{height:188.310000px;}
.hc{height:610.125000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:77.580000px;}
.w2{width:104.076000px;}
.w5{width:132.696000px;}
.w8{width:162.900000px;}
.w6{width:596.490000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:7.056000px;}
.x1d{left:8.100000px;}
.x4{left:12.780000px;}
.x6{left:16.020000px;}
.x18{left:17.316000px;}
.x1b{left:19.656000px;}
.x1a{left:22.716000px;}
.x19{left:29.016000px;}
.x12{left:43.776000px;}
.x21{left:47.736000px;}
.x13{left:50.796000px;}
.x11{left:54.936000px;}
.x22{left:57.096000px;}
.x1e{left:62.145000px;}
.x17{left:67.170000px;}
.x15{left:71.850000px;}
.x16{left:73.290000px;}
.x1{left:78.300000px;}
.x8{left:86.399987px;}
.x2{left:95.790000px;}
.x23{left:102.810000px;}
.x20{left:106.770000px;}
.x25{left:113.435987px;}
.x14{left:124.590000px;}
.x5{left:141.345000px;}
.x3{left:182.370000px;}
.x1c{left:219.090000px;}
.xe{left:433.874987px;}
.xd{left:527.684987px;}
.xf{left:567.284987px;}
.xc{left:644.729987px;}
.xa{left:658.949987px;}
.xb{left:687.749987px;}
.x9{left:766.049987px;}
.x7{left:784.409987px;}
.x10{left:806.939987px;}
.x1f{left:815.580000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.896000pt;}
.ls8{letter-spacing:-0.406933pt;}
.lse{letter-spacing:-0.224000pt;}
.lsb{letter-spacing:-0.201067pt;}
.lsd{letter-spacing:-0.096000pt;}
.lsa{letter-spacing:-0.079467pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls10{letter-spacing:-0.032000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.096000pt;}
.lsc{letter-spacing:0.112000pt;}
.ls5{letter-spacing:0.133120pt;}
.ls3{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.232960pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.480000pt;}
.lsf{letter-spacing:1.440000pt;}
.ls12{letter-spacing:33.408000pt;}
.wsc{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.313067pt;}
.ws2{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.320000pt;}
.ws6{word-spacing:-12.112000pt;}
.ws8{word-spacing:-12.005120pt;}
.wsa{word-spacing:-11.904000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws4{word-spacing:-9.078933pt;}
.ws9{word-spacing:-8.000000pt;}
.wsb{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.467733pt;}
._8{width:2.675200pt;}
._5{width:3.768320pt;}
._4{width:5.040000pt;}
._6{width:6.446720pt;}
._d{width:7.649280pt;}
._c{width:8.871040pt;}
._e{width:9.926400pt;}
._7{width:10.848000pt;}
._3{width:13.440000pt;}
._2{width:14.784000pt;}
._f{width:15.849387pt;}
._b{width:17.051520pt;}
._9{width:18.192000pt;}
._a{width:19.536000pt;}
._10{width:21.320747pt;}
._11{width:22.397013pt;}
._12{width:165.568000pt;}
.fs6{font-size:5.120000pt;}
.fs8{font-size:10.880000pt;}
.fs2{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fsb{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:0.320000pt;}
.y50{bottom:0.800000pt;}
.y5{bottom:3.360000pt;}
.y5e{bottom:4.453333pt;}
.y47{bottom:4.480000pt;}
.y5b{bottom:7.520000pt;}
.y2{bottom:8.800000pt;}
.y46{bottom:19.840000pt;}
.y4{bottom:20.186667pt;}
.y5a{bottom:21.280000pt;}
.y4f{bottom:27.200000pt;}
.y45{bottom:35.200000pt;}
.y59{bottom:37.120000pt;}
.y3{bottom:42.586667pt;}
.y4e{bottom:45.760000pt;}
.y44{bottom:50.400000pt;}
.y58{bottom:50.880000pt;}
.y4d{bottom:57.280000pt;}
.y8{bottom:63.840000pt;}
.y57{bottom:64.640000pt;}
.y43{bottom:65.760000pt;}
.y4c{bottom:76.826667pt;}
.y56{bottom:80.506667pt;}
.y7{bottom:80.640000pt;}
.y42{bottom:81.120000pt;}
.y55{bottom:94.266667pt;}
.y41{bottom:96.480000pt;}
.y49{bottom:106.240000pt;}
.y54{bottom:108.026667pt;}
.y40{bottom:111.840000pt;}
.y97{bottom:119.360000pt;}
.y53{bottom:121.786667pt;}
.y3f{bottom:127.080000pt;}
.y4b{bottom:132.026667pt;}
.y96{bottom:134.720000pt;}
.y52{bottom:135.706667pt;}
.y4a{bottom:141.306667pt;}
.y3e{bottom:142.440000pt;}
.y51{bottom:149.466667pt;}
.y95{bottom:150.080000pt;}
.y5c{bottom:156.186667pt;}
.y3d{bottom:158.440000pt;}
.y94{bottom:165.440000pt;}
.y3c{bottom:174.120000pt;}
.y93{bottom:180.826667pt;}
.y3b{bottom:189.480000pt;}
.y92{bottom:196.186667pt;}
.y3a{bottom:204.840000pt;}
.y91{bottom:211.386667pt;}
.y39{bottom:220.040000pt;}
.y90{bottom:226.746667pt;}
.ya7{bottom:232.186667pt;}
.y38{bottom:235.400000pt;}
.y8f{bottom:242.106667pt;}
.ya6{bottom:247.546667pt;}
.y37{bottom:250.760000pt;}
.y8e{bottom:257.466667pt;}
.y22{bottom:260.680000pt;}
.ya5{bottom:262.746667pt;}
.y36{bottom:266.120000pt;}
.y8d{bottom:272.826667pt;}
.y14{bottom:273.626667pt;}
.y21{bottom:276.040000pt;}
.ya4{bottom:278.106667pt;}
.y35{bottom:281.480000pt;}
.y8c{bottom:288.026667pt;}
.ya3{bottom:293.466667pt;}
.y34{bottom:296.680000pt;}
.y20{bottom:297.480000pt;}
.y8b{bottom:303.386667pt;}
.ya2{bottom:308.826667pt;}
.y33{bottom:312.040000pt;}
.y8a{bottom:318.746667pt;}
.y1f{bottom:318.920000pt;}
.ya1{bottom:324.186667pt;}
.y32{bottom:327.426667pt;}
.y89{bottom:334.106667pt;}
.ya0{bottom:339.546667pt;}
.y1e{bottom:340.386667pt;}
.y31{bottom:342.786667pt;}
.y88{bottom:349.466667pt;}
.y9f{bottom:354.746667pt;}
.y30{bottom:358.146667pt;}
.y1d{bottom:361.986667pt;}
.y87{bottom:364.826667pt;}
.y9e{bottom:370.266667pt;}
.y2f{bottom:373.506667pt;}
.y86{bottom:380.026667pt;}
.y1c{bottom:383.426667pt;}
.y9d{bottom:388.026667pt;}
.y2e{bottom:388.706667pt;}
.y85{bottom:395.426667pt;}
.y9c{bottom:403.426667pt;}
.y2d{bottom:404.066667pt;}
.y1b{bottom:404.866667pt;}
.y84{bottom:410.786667pt;}
.y2c{bottom:416.866667pt;}
.y2b{bottom:420.706667pt;}
.y9b{bottom:421.186667pt;}
.y83{bottom:426.146667pt;}
.y1a{bottom:426.306667pt;}
.y2a{bottom:434.466667pt;}
.y9a{bottom:436.546667pt;}
.y82{bottom:441.506667pt;}
.y19{bottom:447.746667pt;}
.y29{bottom:448.226667pt;}
.y99{bottom:454.306667pt;}
.y81{bottom:456.866667pt;}
.y28{bottom:462.146667pt;}
.y18{bottom:469.186667pt;}
.y98{bottom:469.666667pt;}
.y80{bottom:472.066667pt;}
.y27{bottom:475.906667pt;}
.y7f{bottom:487.426667pt;}
.y26{bottom:489.666667pt;}
.y17{bottom:490.786667pt;}
.y7e{bottom:502.786667pt;}
.y25{bottom:503.426667pt;}
.y16{bottom:512.226667pt;}
.y24{bottom:517.346667pt;}
.y7d{bottom:518.146667pt;}
.y23{bottom:531.106667pt;}
.y7c{bottom:533.506667pt;}
.y15{bottom:533.666667pt;}
.y7b{bottom:548.866667pt;}
.y7a{bottom:564.066667pt;}
.y79{bottom:579.426667pt;}
.y78{bottom:594.786667pt;}
.y77{bottom:610.173333pt;}
.y76{bottom:625.533333pt;}
.y75{bottom:640.733333pt;}
.y74{bottom:656.093333pt;}
.y73{bottom:671.453333pt;}
.y72{bottom:686.813333pt;}
.y71{bottom:702.173333pt;}
.y70{bottom:717.533333pt;}
.y6f{bottom:732.733333pt;}
.y6e{bottom:748.093333pt;}
.y6d{bottom:763.453333pt;}
.y6c{bottom:778.813333pt;}
.y6b{bottom:794.173333pt;}
.y6a{bottom:809.573333pt;}
.y13{bottom:816.933333pt;}
.y12{bottom:818.533333pt;}
.y11{bottom:822.533333pt;}
.y69{bottom:824.773333pt;}
.y10{bottom:837.893333pt;}
.y68{bottom:840.133333pt;}
.yf{bottom:853.253333pt;}
.y67{bottom:855.493333pt;}
.ye{bottom:868.613333pt;}
.y66{bottom:870.853333pt;}
.yd{bottom:883.813333pt;}
.y65{bottom:886.213333pt;}
.yc{bottom:899.173333pt;}
.y64{bottom:901.413333pt;}
.yb{bottom:915.653333pt;}
.y63{bottom:916.773333pt;}
.y62{bottom:932.133333pt;}
.ya{bottom:937.093333pt;}
.y61{bottom:947.493333pt;}
.y9{bottom:962.533333pt;}
.y60{bottom:962.853333pt;}
.y5d{bottom:965.600000pt;}
.y5f{bottom:978.213333pt;}
.y6{bottom:992.293333pt;}
.y1{bottom:998.693333pt;}
.hb{height:3.575000pt;}
.hf{height:7.596875pt;}
.h15{height:18.768750pt;}
.h17{height:24.640000pt;}
.he{height:25.918750pt;}
.hd{height:26.190625pt;}
.h6{height:26.735625pt;}
.h16{height:33.867188pt;}
.h10{height:34.664062pt;}
.h8{height:35.673437pt;}
.h7{height:37.090625pt;}
.ha{height:37.479688pt;}
.h11{height:39.562500pt;}
.h5{height:41.112500pt;}
.h19{height:46.593750pt;}
.h9{height:52.832812pt;}
.h12{height:52.834688pt;}
.h13{height:54.390938pt;}
.h18{height:56.891250pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h14{height:167.386667pt;}
.hc{height:542.333333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:68.960000pt;}
.w2{width:92.512000pt;}
.w5{width:117.952000pt;}
.w8{width:144.800000pt;}
.w6{width:530.213333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:6.272000pt;}
.x1d{left:7.200000pt;}
.x4{left:11.360000pt;}
.x6{left:14.240000pt;}
.x18{left:15.392000pt;}
.x1b{left:17.472000pt;}
.x1a{left:20.192000pt;}
.x19{left:25.792000pt;}
.x12{left:38.912000pt;}
.x21{left:42.432000pt;}
.x13{left:45.152000pt;}
.x11{left:48.832000pt;}
.x22{left:50.752000pt;}
.x1e{left:55.240000pt;}
.x17{left:59.706667pt;}
.x15{left:63.866667pt;}
.x16{left:65.146667pt;}
.x1{left:69.600000pt;}
.x8{left:76.799988pt;}
.x2{left:85.146667pt;}
.x23{left:91.386667pt;}
.x20{left:94.906667pt;}
.x25{left:100.831988pt;}
.x14{left:110.746667pt;}
.x5{left:125.640000pt;}
.x3{left:162.106667pt;}
.x1c{left:194.746667pt;}
.xe{left:385.666655pt;}
.xd{left:469.053322pt;}
.xf{left:504.253322pt;}
.xc{left:573.093322pt;}
.xa{left:585.733322pt;}
.xb{left:611.333322pt;}
.x9{left:680.933322pt;}
.x7{left:697.253322pt;}
.x10{left:717.279988pt;}
.x1f{left:724.960000pt;}
}




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