
    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_27ecb649bf9beb584b25b551.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_cb4671f686bde3d9a49f3d98.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_5ea74b1ccc840ff1feecbe96.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.899902;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_30d01897a1feb7f809f27277.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_9f22805bafb5fee336e13ff1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.915527;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_8374fb599749a57badac9410.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a55161879cd093feda8394a4.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_1f82fc9b560e0e5063048ea2.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cefca0afe2bb71c45d2941fb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.934082;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_c94a5a4515d90b6aa5c7c348.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f76a0f7c6b0a6532023ff28c.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c2437f68007450f08af7e283.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_fd531f044852872e738c0062.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_d3a0a2590e778c39aa36ecc1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-84.240000px;}
.v0{vertical-align:0.000000px;}
.ls1e{letter-spacing:-0.690000px;}
.ls17{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.180000px;}
.ls9{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.028080px;}
.lsd{letter-spacing:0.037440px;}
.ls14{letter-spacing:0.252720px;}
.ls20{letter-spacing:0.336000px;}
.ls15{letter-spacing:0.341400px;}
.ls5{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.504000px;}
.ls1f{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.720000px;}
.lse{letter-spacing:2.700000px;}
.ls7{letter-spacing:4.860000px;}
.lsc{letter-spacing:7.020000px;}
.ls11{letter-spacing:10.620000px;}
.ls10{letter-spacing:11.340000px;}
.ls1d{letter-spacing:12.780000px;}
.ls1b{letter-spacing:13.500000px;}
.ls13{letter-spacing:14.220000px;}
.ls21{letter-spacing:15.660000px;}
.ls6{letter-spacing:16.380000px;}
.ls8{letter-spacing:17.100000px;}
.ls19{letter-spacing:18.540000px;}
.ls1a{letter-spacing:19.980000px;}
.ls18{letter-spacing:22.860000px;}
.ls12{letter-spacing:25.740000px;}
.ls1{letter-spacing:29.520000px;}
.ls22{letter-spacing:30.384000px;}
.lsf{letter-spacing:31.500000px;}
.ls3{letter-spacing:33.120000px;}
.ls1c{letter-spacing:42.300000px;}
.lsb{letter-spacing:51.660000px;}
.ls0{letter-spacing:77.880000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-21.401400px;}
.ws7{word-spacing:-21.312720px;}
.ws6{word-spacing:-21.097440px;}
.ws8{word-spacing:-21.088080px;}
.ws3{word-spacing:-21.060000px;}
.ws5{word-spacing:-20.700000px;}
.ws9{word-spacing:-20.370000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-0.120240px;}
.ws2{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
._22{margin-left:-5.616000px;}
._0{margin-left:-1.126080px;}
._1{width:1.233840px;}
._7{width:2.466480px;}
._17{width:3.698400px;}
._c{width:4.824000px;}
._19{width:5.875920px;}
._6{width:7.320000px;}
._1b{width:8.400960px;}
._2{width:9.408000px;}
._b{width:11.086080px;}
._a{width:12.576000px;}
._1c{width:14.243280px;}
._11{width:15.497760px;}
._3{width:16.704000px;}
._14{width:17.750160px;}
._16{width:19.743120px;}
._12{width:22.092240px;}
._5{width:23.304000px;}
._4{width:24.912000px;}
._15{width:25.984800px;}
._1d{width:27.538320px;}
._8{width:29.136000px;}
._9{width:30.960000px;}
._d{width:32.472000px;}
._e{width:33.528000px;}
._1e{width:34.706880px;}
._1f{width:36.062640px;}
._21{width:41.783040px;}
._1a{width:43.467840px;}
._13{width:45.995040px;}
._f{width:47.568000px;}
._10{width:48.768000px;}
._18{width:51.386400px;}
._20{width:70.340400px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:7.416000px;}
.y4{bottom:7.740000px;}
.y7{bottom:8.640000px;}
.y5{bottom:15.516000px;}
.y2{bottom:57.456000px;}
.y5e{bottom:82.656000px;}
.y57{bottom:88.056000px;}
.y5d{bottom:103.356000px;}
.y33{bottom:104.616000px;}
.y56{bottom:115.776000px;}
.y5c{bottom:124.056000px;}
.y32{bottom:132.336000px;}
.y55{bottom:143.496000px;}
.y5b{bottom:144.756000px;}
.y31{bottom:160.050000px;}
.y5a{bottom:165.450000px;}
.y54{bottom:171.390000px;}
.y59{bottom:186.150000px;}
.y30{bottom:187.770000px;}
.y53{bottom:199.110000px;}
.y58{bottom:207.390000px;}
.y2f{bottom:215.670000px;}
.y52{bottom:226.830000px;}
.y2e{bottom:243.390000px;}
.y51{bottom:254.730000px;}
.y2d{bottom:271.110000px;}
.y50{bottom:282.495000px;}
.y2c{bottom:299.055000px;}
.y4f{bottom:310.215000px;}
.y2b{bottom:326.775000px;}
.y4e{bottom:337.935000px;}
.y2a{bottom:354.495000px;}
.y4d{bottom:365.835000px;}
.y29{bottom:382.215000px;}
.y4c{bottom:393.555000px;}
.y28{bottom:410.115000px;}
.y4b{bottom:421.275000px;}
.y27{bottom:437.835000px;}
.y4a{bottom:449.175000px;}
.y26{bottom:465.555000px;}
.y49{bottom:476.895000px;}
.y25{bottom:493.275000px;}
.y48{bottom:504.615000px;}
.y24{bottom:516.855000px;}
.y47{bottom:532.335000px;}
.y23{bottom:537.555000px;}
.y22{bottom:558.255000px;}
.y46{bottom:560.235000px;}
.y21{bottom:578.985000px;}
.y45{bottom:587.985000px;}
.y20{bottom:599.685000px;}
.y44{bottom:615.705000px;}
.y1f{bottom:620.385000px;}
.y1e{bottom:641.085000px;}
.y43{bottom:643.605000px;}
.y1d{bottom:661.785000px;}
.y42{bottom:671.325000px;}
.y1c{bottom:682.305000px;}
.y41{bottom:699.045000px;}
.y1b{bottom:701.565000px;}
.y1a{bottom:722.265000px;}
.y40{bottom:726.765000px;}
.y19{bottom:742.965000px;}
.y3f{bottom:754.665000px;}
.y18{bottom:763.665000px;}
.y3e{bottom:782.385000px;}
.y17{bottom:784.365000px;}
.y16{bottom:805.065000px;}
.y3d{bottom:810.105000px;}
.y15{bottom:825.405000px;}
.y3c{bottom:837.825000px;}
.y14{bottom:844.665000px;}
.y13{bottom:865.410000px;}
.y3b{bottom:865.770000px;}
.y12{bottom:886.110000px;}
.y3a{bottom:893.490000px;}
.y11{bottom:906.810000px;}
.y69{bottom:914.010000px;}
.y39{bottom:921.210000px;}
.y10{bottom:927.510000px;}
.y68{bottom:932.190000px;}
.yf{bottom:948.210000px;}
.y38{bottom:949.110000px;}
.y67{bottom:952.890000px;}
.y66{bottom:973.590000px;}
.y37{bottom:976.830000px;}
.ye{bottom:990.870000px;}
.y65{bottom:994.290000px;}
.y36{bottom:1004.550000px;}
.yd{bottom:1011.570000px;}
.y64{bottom:1014.990000px;}
.yc{bottom:1032.270000px;}
.y63{bottom:1035.690000px;}
.yb{bottom:1052.970000px;}
.y62{bottom:1056.390000px;}
.y35{bottom:1060.170000px;}
.ya{bottom:1073.670000px;}
.y61{bottom:1077.090000px;}
.y34{bottom:1087.890000px;}
.y9{bottom:1094.370000px;}
.y60{bottom:1097.790000px;}
.y8{bottom:1115.610000px;}
.y5f{bottom:1118.490000px;}
.y3{bottom:1173.960000px;}
.y1{bottom:1194.120000px;}
.h3{height:33.120000px;}
.h7{height:38.520000px;}
.h5{height:44.136000px;}
.h13{height:48.616875px;}
.he{height:58.819922px;}
.hd{height:59.343750px;}
.h12{height:59.436914px;}
.h17{height:59.439023px;}
.hc{height:64.978594px;}
.h2{height:65.884219px;}
.h11{height:69.432187px;}
.hb{height:70.628906px;}
.h16{height:70.664062px;}
.h15{height:71.613281px;}
.ha{height:72.562500px;}
.h14{height:74.004654px;}
.h8{height:78.626953px;}
.h10{height:82.635820px;}
.hf{height:82.676953px;}
.h9{height:84.898125px;}
.h6{height:102.832031px;}
.h4{height:108.843750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:66.240000px;}
.w5{width:66.276000px;}
.w4{width:77.436000px;}
.w6{width:95.580000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:10.800000px;}
.x8{left:25.200000px;}
.x3{left:26.460000px;}
.x1{left:63.899987px;}
.x13{left:90.935987px;}
.xf{left:106.415987px;}
.x10{left:117.035987px;}
.xd{left:161.849987px;}
.x7{left:175.170000px;}
.x9{left:198.029987px;}
.xc{left:217.469987px;}
.xb{left:285.734987px;}
.xe{left:319.574987px;}
.x12{left:335.774987px;}
.x4{left:427.755000px;}
.xa{left:452.054987px;}
.x11{left:473.324987px;}
.x2{left:714.390000px;}
.x6{left:821.850000px;}
@media print{
.v1{vertical-align:-74.880000pt;}
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-0.613333pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.024960pt;}
.lsd{letter-spacing:0.033280pt;}
.ls14{letter-spacing:0.224640pt;}
.ls20{letter-spacing:0.298667pt;}
.ls15{letter-spacing:0.303467pt;}
.ls5{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.448000pt;}
.ls1f{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.640000pt;}
.lse{letter-spacing:2.400000pt;}
.ls7{letter-spacing:4.320000pt;}
.lsc{letter-spacing:6.240000pt;}
.ls11{letter-spacing:9.440000pt;}
.ls10{letter-spacing:10.080000pt;}
.ls1d{letter-spacing:11.360000pt;}
.ls1b{letter-spacing:12.000000pt;}
.ls13{letter-spacing:12.640000pt;}
.ls21{letter-spacing:13.920000pt;}
.ls6{letter-spacing:14.560000pt;}
.ls8{letter-spacing:15.200000pt;}
.ls19{letter-spacing:16.480000pt;}
.ls1a{letter-spacing:17.760000pt;}
.ls18{letter-spacing:20.320000pt;}
.ls12{letter-spacing:22.880000pt;}
.ls1{letter-spacing:26.240000pt;}
.ls22{letter-spacing:27.008000pt;}
.lsf{letter-spacing:28.000000pt;}
.ls3{letter-spacing:29.440000pt;}
.ls1c{letter-spacing:37.600000pt;}
.lsb{letter-spacing:45.920000pt;}
.ls0{letter-spacing:69.226667pt;}
.wsa{word-spacing:-19.023467pt;}
.ws7{word-spacing:-18.944640pt;}
.ws6{word-spacing:-18.753280pt;}
.ws8{word-spacing:-18.744960pt;}
.ws3{word-spacing:-18.720000pt;}
.ws5{word-spacing:-18.400000pt;}
.ws9{word-spacing:-18.106667pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-0.106880pt;}
.ws2{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
._22{margin-left:-4.992000pt;}
._0{margin-left:-1.000960pt;}
._1{width:1.096747pt;}
._7{width:2.192427pt;}
._17{width:3.287467pt;}
._c{width:4.288000pt;}
._19{width:5.223040pt;}
._6{width:6.506667pt;}
._1b{width:7.467520pt;}
._2{width:8.362667pt;}
._b{width:9.854293pt;}
._a{width:11.178667pt;}
._1c{width:12.660693pt;}
._11{width:13.775787pt;}
._3{width:14.848000pt;}
._14{width:15.777920pt;}
._16{width:17.549440pt;}
._12{width:19.637547pt;}
._5{width:20.714667pt;}
._4{width:22.144000pt;}
._15{width:23.097600pt;}
._1d{width:24.478507pt;}
._8{width:25.898667pt;}
._9{width:27.520000pt;}
._d{width:28.864000pt;}
._e{width:29.802667pt;}
._1e{width:30.850560pt;}
._1f{width:32.055680pt;}
._21{width:37.140480pt;}
._1a{width:38.638080pt;}
._13{width:40.884480pt;}
._f{width:42.282667pt;}
._10{width:43.349333pt;}
._18{width:45.676800pt;}
._20{width:62.524800pt;}
.fs5{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:6.592000pt;}
.y4{bottom:6.880000pt;}
.y7{bottom:7.680000pt;}
.y5{bottom:13.792000pt;}
.y2{bottom:51.072000pt;}
.y5e{bottom:73.472000pt;}
.y57{bottom:78.272000pt;}
.y5d{bottom:91.872000pt;}
.y33{bottom:92.992000pt;}
.y56{bottom:102.912000pt;}
.y5c{bottom:110.272000pt;}
.y32{bottom:117.632000pt;}
.y55{bottom:127.552000pt;}
.y5b{bottom:128.672000pt;}
.y31{bottom:142.266667pt;}
.y5a{bottom:147.066667pt;}
.y54{bottom:152.346667pt;}
.y59{bottom:165.466667pt;}
.y30{bottom:166.906667pt;}
.y53{bottom:176.986667pt;}
.y58{bottom:184.346667pt;}
.y2f{bottom:191.706667pt;}
.y52{bottom:201.626667pt;}
.y2e{bottom:216.346667pt;}
.y51{bottom:226.426667pt;}
.y2d{bottom:240.986667pt;}
.y50{bottom:251.106667pt;}
.y2c{bottom:265.826667pt;}
.y4f{bottom:275.746667pt;}
.y2b{bottom:290.466667pt;}
.y4e{bottom:300.386667pt;}
.y2a{bottom:315.106667pt;}
.y4d{bottom:325.186667pt;}
.y29{bottom:339.746667pt;}
.y4c{bottom:349.826667pt;}
.y28{bottom:364.546667pt;}
.y4b{bottom:374.466667pt;}
.y27{bottom:389.186667pt;}
.y4a{bottom:399.266667pt;}
.y26{bottom:413.826667pt;}
.y49{bottom:423.906667pt;}
.y25{bottom:438.466667pt;}
.y48{bottom:448.546667pt;}
.y24{bottom:459.426667pt;}
.y47{bottom:473.186667pt;}
.y23{bottom:477.826667pt;}
.y22{bottom:496.226667pt;}
.y46{bottom:497.986667pt;}
.y21{bottom:514.653333pt;}
.y45{bottom:522.653333pt;}
.y20{bottom:533.053333pt;}
.y44{bottom:547.293333pt;}
.y1f{bottom:551.453333pt;}
.y1e{bottom:569.853333pt;}
.y43{bottom:572.093333pt;}
.y1d{bottom:588.253333pt;}
.y42{bottom:596.733333pt;}
.y1c{bottom:606.493333pt;}
.y41{bottom:621.373333pt;}
.y1b{bottom:623.613333pt;}
.y1a{bottom:642.013333pt;}
.y40{bottom:646.013333pt;}
.y19{bottom:660.413333pt;}
.y3f{bottom:670.813333pt;}
.y18{bottom:678.813333pt;}
.y3e{bottom:695.453333pt;}
.y17{bottom:697.213333pt;}
.y16{bottom:715.613333pt;}
.y3d{bottom:720.093333pt;}
.y15{bottom:733.693333pt;}
.y3c{bottom:744.733333pt;}
.y14{bottom:750.813333pt;}
.y13{bottom:769.253333pt;}
.y3b{bottom:769.573333pt;}
.y12{bottom:787.653333pt;}
.y3a{bottom:794.213333pt;}
.y11{bottom:806.053333pt;}
.y69{bottom:812.453333pt;}
.y39{bottom:818.853333pt;}
.y10{bottom:824.453333pt;}
.y68{bottom:828.613333pt;}
.yf{bottom:842.853333pt;}
.y38{bottom:843.653333pt;}
.y67{bottom:847.013333pt;}
.y66{bottom:865.413333pt;}
.y37{bottom:868.293333pt;}
.ye{bottom:880.773333pt;}
.y65{bottom:883.813333pt;}
.y36{bottom:892.933333pt;}
.yd{bottom:899.173333pt;}
.y64{bottom:902.213333pt;}
.yc{bottom:917.573333pt;}
.y63{bottom:920.613333pt;}
.yb{bottom:935.973333pt;}
.y62{bottom:939.013333pt;}
.y35{bottom:942.373333pt;}
.ya{bottom:954.373333pt;}
.y61{bottom:957.413333pt;}
.y34{bottom:967.013333pt;}
.y9{bottom:972.773333pt;}
.y60{bottom:975.813333pt;}
.y8{bottom:991.653333pt;}
.y5f{bottom:994.213333pt;}
.y3{bottom:1043.520000pt;}
.y1{bottom:1061.440000pt;}
.h3{height:29.440000pt;}
.h7{height:34.240000pt;}
.h5{height:39.232000pt;}
.h13{height:43.215000pt;}
.he{height:52.284375pt;}
.hd{height:52.750000pt;}
.h12{height:52.832812pt;}
.h17{height:52.834688pt;}
.hc{height:57.758750pt;}
.h2{height:58.563750pt;}
.h11{height:61.717500pt;}
.hb{height:62.781250pt;}
.h16{height:62.812500pt;}
.h15{height:63.656250pt;}
.ha{height:64.500000pt;}
.h14{height:65.781915pt;}
.h8{height:69.890625pt;}
.h10{height:73.454062pt;}
.hf{height:73.490625pt;}
.h9{height:75.465000pt;}
.h6{height:91.406250pt;}
.h4{height:96.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:58.880000pt;}
.w5{width:58.912000pt;}
.w4{width:68.832000pt;}
.w6{width:84.960000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:9.600000pt;}
.x8{left:22.400000pt;}
.x3{left:23.520000pt;}
.x1{left:56.799988pt;}
.x13{left:80.831988pt;}
.xf{left:94.591988pt;}
.x10{left:104.031988pt;}
.xd{left:143.866655pt;}
.x7{left:155.706667pt;}
.x9{left:176.026655pt;}
.xc{left:193.306655pt;}
.xb{left:253.986655pt;}
.xe{left:284.066655pt;}
.x12{left:298.466655pt;}
.x4{left:380.226667pt;}
.xa{left:401.826655pt;}
.x11{left:420.733322pt;}
.x2{left:635.013333pt;}
.x6{left:730.533333pt;}
}




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