
    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_63be7f7d8beb56551933c6e2.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_56e899d3800c96fa40850058.woff')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_c52b6004713601cdf7bdf31b.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0bcc0c7f060d7b2a49b93d1c.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_64868716c7942130363da46f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.976562;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_4ad115b2ef88c3d5297aca8c.woff')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_d1cda5a3d53d445ef1580771.woff')format("woff");}.ff7{font-family:ff7;line-height:1.097168;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_6782efedd3f2a8fb90f442f7.woff')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_5b0cd69868be26a7c7bc896c.woff')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;}
.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);}
.v2{vertical-align:-97.200000px;}
.v1{vertical-align:-82.800000px;}
.v3{vertical-align:-79.920000px;}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-0.900000px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.125280px;}
.ls10{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.540000px;}
.ls1{letter-spacing:8.640000px;}
.lsc{letter-spacing:30.384000px;}
.lsa{letter-spacing:33.120000px;}
.lsf{letter-spacing:37.440000px;}
.ls0{letter-spacing:43.200000px;}
.ls2{letter-spacing:48.900000px;}
.ls6{letter-spacing:191.484000px;}
.ls8{letter-spacing:919.056000px;}
.lse{letter-spacing:920.460000px;}
.ls9{letter-spacing:956.460000px;}
.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;}
}
.ws0{word-spacing:-21.420000px;}
.ws2{word-spacing:-21.060000px;}
.ws4{word-spacing:-18.360000px;}
.ws5{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:0.000000px;}
._38{margin-left:-5.616000px;}
._0{margin-left:-1.263600px;}
._1{width:1.062240px;}
._a{width:2.184000px;}
._4{width:3.456000px;}
._8{width:4.896000px;}
._10{width:6.480000px;}
._c{width:7.896000px;}
._b{width:9.072000px;}
._9{width:10.152000px;}
._17{width:11.208720px;}
._14{width:12.312000px;}
._13{width:13.320000px;}
._1d{width:14.387280px;}
._20{width:15.752880px;}
._1a{width:17.406240px;}
._1b{width:18.480000px;}
._e{width:19.743600px;}
._6{width:20.808000px;}
._25{width:22.038720px;}
._1c{width:23.252640px;}
._f{width:24.336000px;}
._1f{width:26.198640px;}
._1e{width:27.293760px;}
._29{width:29.088000px;}
._11{width:30.600000px;}
._12{width:31.608000px;}
._5{width:32.904000px;}
._2f{width:34.681440px;}
._7{width:36.504000px;}
._35{width:37.795680px;}
._34{width:39.845520px;}
._3{width:41.448000px;}
._2{width:42.744000px;}
._2e{width:44.226000px;}
._2d{width:45.405360px;}
._16{width:47.679840px;}
._15{width:48.870480px;}
._30{width:50.628240px;}
._31{width:52.060320px;}
._32{width:53.609520px;}
._33{width:55.228560px;}
._18{width:68.655600px;}
._19{width:70.362240px;}
._36{width:79.824000px;}
._37{width:81.441360px;}
._26{width:83.520000px;}
._2b{width:84.864000px;}
._2c{width:85.968000px;}
._27{width:91.008000px;}
._28{width:92.232000px;}
._22{width:107.136000px;}
._39{width:141.624000px;}
._23{width:158.616000px;}
._24{width:159.696000px;}
._2a{width:248.904000px;}
._d{width:365.892000px;}
._21{width:1828.371840px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,0,0);}
.fc4{color:rgb(34,34,34);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y45{bottom:3.960000px;}
.y48{bottom:6.300000px;}
.y4b{bottom:6.660000px;}
.y53{bottom:10.080000px;}
.y4{bottom:12.240000px;}
.y3{bottom:23.976000px;}
.y50{bottom:24.660000px;}
.y44{bottom:24.690000px;}
.y47{bottom:27.000000px;}
.y4a{bottom:27.360000px;}
.y52{bottom:30.780000px;}
.y2{bottom:31.176000px;}
.y4f{bottom:45.360000px;}
.y43{bottom:45.390000px;}
.y5b{bottom:66.054000px;}
.y4e{bottom:66.060000px;}
.y5a{bottom:86.754000px;}
.y4d{bottom:86.760000px;}
.y81{bottom:87.516000px;}
.y30{bottom:96.696000px;}
.y54{bottom:97.416000px;}
.y59{bottom:107.454000px;}
.y5f{bottom:107.460000px;}
.y80{bottom:111.816000px;}
.y97{bottom:120.276000px;}
.y2f{bottom:120.816000px;}
.y58{bottom:128.154000px;}
.y5e{bottom:128.160000px;}
.y7f{bottom:135.936000px;}
.y96{bottom:140.976000px;}
.y2e{bottom:145.116000px;}
.y57{bottom:148.854000px;}
.y5d{bottom:148.860000px;}
.y7e{bottom:160.050000px;}
.y95{bottom:161.670000px;}
.y2d{bottom:169.230000px;}
.y56{bottom:169.554000px;}
.y94{bottom:182.370000px;}
.y7d{bottom:184.170000px;}
.y55{bottom:190.299000px;}
.y2c{bottom:193.350000px;}
.y93{bottom:203.070000px;}
.y7c{bottom:208.290000px;}
.y2b{bottom:217.470000px;}
.y92{bottom:223.770000px;}
.y7b{bottom:232.410000px;}
.y2a{bottom:241.590000px;}
.y91{bottom:244.470000px;}
.y7a{bottom:256.710000px;}
.y90{bottom:265.170000px;}
.y29{bottom:265.710000px;}
.y79{bottom:280.830000px;}
.y8f{bottom:285.915000px;}
.y28{bottom:290.055000px;}
.y78{bottom:304.995000px;}
.y51{bottom:305.175000px;}
.y8e{bottom:306.615000px;}
.y27{bottom:314.175000px;}
.y8d{bottom:327.315000px;}
.y77{bottom:329.115000px;}
.y26{bottom:338.295000px;}
.y8c{bottom:348.015000px;}
.y76{bottom:353.235000px;}
.y4c{bottom:353.415000px;}
.y25{bottom:362.415000px;}
.y8b{bottom:368.715000px;}
.y75{bottom:377.355000px;}
.y24{bottom:386.535000px;}
.y8a{bottom:389.415000px;}
.y74{bottom:401.475000px;}
.y23{bottom:410.115000px;}
.y73{bottom:425.775000px;}
.y22{bottom:430.815000px;}
.y72{bottom:449.895000px;}
.y89{bottom:450.795000px;}
.y21{bottom:451.515000px;}
.y49{bottom:457.635000px;}
.y88{bottom:469.335000px;}
.y20{bottom:472.215000px;}
.y71{bottom:474.015000px;}
.y1f{bottom:492.915000px;}
.y87{bottom:493.455000px;}
.y70{bottom:498.135000px;}
.y46{bottom:502.455000px;}
.y1e{bottom:513.615000px;}
.y86{bottom:517.575000px;}
.y6f{bottom:522.255000px;}
.y1d{bottom:534.315000px;}
.y85{bottom:541.875000px;}
.y6e{bottom:546.375000px;}
.y42{bottom:546.915000px;}
.y1c{bottom:555.015000px;}
.y84{bottom:566.025000px;}
.y6d{bottom:570.705000px;}
.y1b{bottom:575.745000px;}
.y83{bottom:590.145000px;}
.y6c{bottom:594.825000px;}
.y1a{bottom:596.445000px;}
.y41{bottom:614.265000px;}
.y19{bottom:617.145000px;}
.y6b{bottom:618.945000px;}
.y18{bottom:637.845000px;}
.y40{bottom:638.385000px;}
.y6a{bottom:643.065000px;}
.y82{bottom:662.505000px;}
.y69{bottom:667.185000px;}
.y17{bottom:679.245000px;}
.y3f{bottom:686.805000px;}
.y68{bottom:691.305000px;}
.y16{bottom:699.945000px;}
.y3e{bottom:710.925000px;}
.y67{bottom:715.605000px;}
.y15{bottom:720.645000px;}
.y3d{bottom:735.045000px;}
.y66{bottom:739.725000px;}
.y14{bottom:741.345000px;}
.ya7{bottom:741.525000px;}
.y3c{bottom:759.165000px;}
.y13{bottom:762.045000px;}
.y65{bottom:763.845000px;}
.y12{bottom:782.745000px;}
.y3b{bottom:783.285000px;}
.ya6{bottom:786.165000px;}
.y64{bottom:787.965000px;}
.y11{bottom:803.445000px;}
.ya5{bottom:806.865000px;}
.y3a{bottom:807.405000px;}
.y63{bottom:812.085000px;}
.y10{bottom:824.145000px;}
.ya4{bottom:827.565000px;}
.y39{bottom:831.525000px;}
.yf{bottom:844.845000px;}
.ya3{bottom:848.310000px;}
.y38{bottom:855.870000px;}
.y62{bottom:860.370000px;}
.ye{bottom:865.590000px;}
.ya2{bottom:869.010000px;}
.y37{bottom:879.990000px;}
.y61{bottom:884.670000px;}
.yd{bottom:886.290000px;}
.ya1{bottom:889.710000px;}
.y36{bottom:904.110000px;}
.y60{bottom:905.010000px;}
.yc{bottom:906.990000px;}
.ya0{bottom:910.410000px;}
.y5c{bottom:926.430000px;}
.yb{bottom:927.690000px;}
.y35{bottom:928.230000px;}
.y9f{bottom:931.110000px;}
.y9e{bottom:951.810000px;}
.y34{bottom:952.350000px;}
.ya{bottom:969.090000px;}
.y9d{bottom:972.510000px;}
.y33{bottom:976.470000px;}
.y9{bottom:989.790000px;}
.y9c{bottom:993.210000px;}
.y32{bottom:1000.770000px;}
.y8{bottom:1010.490000px;}
.y9b{bottom:1013.910000px;}
.y31{bottom:1024.890000px;}
.y7{bottom:1030.470000px;}
.y9a{bottom:1034.610000px;}
.y6{bottom:1049.010000px;}
.y99{bottom:1055.310000px;}
.y5{bottom:1073.130000px;}
.y98{bottom:1076.010000px;}
.y1{bottom:1190.160000px;}
.h15{height:20.700000px;}
.h3{height:31.860000px;}
.he{height:43.740000px;}
.hf{height:44.100000px;}
.h12{height:47.520000px;}
.h9{height:54.773438px;}
.h16{height:58.651172px;}
.hc{height:59.436914px;}
.h5{height:60.226875px;}
.hd{height:62.136000px;}
.h10{height:63.457031px;}
.h7{height:70.628906px;}
.h8{height:70.664062px;}
.h6{height:72.562500px;}
.h17{height:74.004654px;}
.hb{height:74.244727px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.ha{height:93.983203px;}
.h11{height:103.500000px;}
.h14{height:165.600000px;}
.h13{height:207.030000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:41.400000px;}
.w3{width:75.816000px;}
.w6{width:126.720000px;}
.w5{width:169.410000px;}
.w7{width:369.795000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:7.740000px;}
.x19{left:9.180000px;}
.xc{left:11.520000px;}
.x14{left:16.020000px;}
.x1c{left:17.094000px;}
.x20{left:20.520000px;}
.x10{left:24.120000px;}
.x3{left:27.360000px;}
.x21{left:29.694000px;}
.x16{left:33.114000px;}
.x15{left:34.914000px;}
.x1f{left:39.594000px;}
.x1d{left:40.854000px;}
.x1e{left:44.454000px;}
.x11{left:47.880000px;}
.xe{left:54.174000px;}
.x17{left:58.860000px;}
.x1b{left:64.074000px;}
.x22{left:66.234000px;}
.x13{left:70.590000px;}
.x1{left:84.959987px;}
.xb{left:91.836000px;}
.x4{left:96.875987px;}
.x25{left:111.995987px;}
.x18{left:120.090000px;}
.xd{left:133.956000px;}
.x9{left:138.095987px;}
.x8{left:168.509987px;}
.x23{left:184.890000px;}
.x5{left:202.709987px;}
.x24{left:219.089987px;}
.xf{left:304.095000px;}
.xa{left:389.234987px;}
.x7{left:399.494987px;}
.x2{left:409.035000px;}
.x12{left:431.535000px;}
.x6{left:446.474987px;}
@media print{
.v2{vertical-align:-86.400000pt;}
.v1{vertical-align:-73.600000pt;}
.v3{vertical-align:-71.040000pt;}
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.800000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.111360pt;}
.ls10{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.480000pt;}
.ls1{letter-spacing:7.680000pt;}
.lsc{letter-spacing:27.008000pt;}
.lsa{letter-spacing:29.440000pt;}
.lsf{letter-spacing:33.280000pt;}
.ls0{letter-spacing:38.400000pt;}
.ls2{letter-spacing:43.466667pt;}
.ls6{letter-spacing:170.208000pt;}
.ls8{letter-spacing:816.938667pt;}
.lse{letter-spacing:818.186667pt;}
.ls9{letter-spacing:850.186667pt;}
.ws0{word-spacing:-19.040000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws4{word-spacing:-16.320000pt;}
.ws5{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:0.000000pt;}
._38{margin-left:-4.992000pt;}
._0{margin-left:-1.123200pt;}
._1{width:0.944213pt;}
._a{width:1.941333pt;}
._4{width:3.072000pt;}
._8{width:4.352000pt;}
._10{width:5.760000pt;}
._c{width:7.018667pt;}
._b{width:8.064000pt;}
._9{width:9.024000pt;}
._17{width:9.963307pt;}
._14{width:10.944000pt;}
._13{width:11.840000pt;}
._1d{width:12.788693pt;}
._20{width:14.002560pt;}
._1a{width:15.472213pt;}
._1b{width:16.426667pt;}
._e{width:17.549867pt;}
._6{width:18.496000pt;}
._25{width:19.589973pt;}
._1c{width:20.669013pt;}
._f{width:21.632000pt;}
._1f{width:23.287680pt;}
._1e{width:24.261120pt;}
._29{width:25.856000pt;}
._11{width:27.200000pt;}
._12{width:28.096000pt;}
._5{width:29.248000pt;}
._2f{width:30.827947pt;}
._7{width:32.448000pt;}
._35{width:33.596160pt;}
._34{width:35.418240pt;}
._3{width:36.842667pt;}
._2{width:37.994667pt;}
._2e{width:39.312000pt;}
._2d{width:40.360320pt;}
._16{width:42.382080pt;}
._15{width:43.440427pt;}
._30{width:45.002880pt;}
._31{width:46.275840pt;}
._32{width:47.652907pt;}
._33{width:49.092053pt;}
._18{width:61.027200pt;}
._19{width:62.544213pt;}
._36{width:70.954667pt;}
._37{width:72.392320pt;}
._26{width:74.240000pt;}
._2b{width:75.434667pt;}
._2c{width:76.416000pt;}
._27{width:80.896000pt;}
._28{width:81.984000pt;}
._22{width:95.232000pt;}
._39{width:125.888000pt;}
._23{width:140.992000pt;}
._24{width:141.952000pt;}
._2a{width:221.248000pt;}
._d{width:325.237333pt;}
._21{width:1625.219413pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:3.520000pt;}
.y48{bottom:5.600000pt;}
.y4b{bottom:5.920000pt;}
.y53{bottom:8.960000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:21.312000pt;}
.y50{bottom:21.920000pt;}
.y44{bottom:21.946667pt;}
.y47{bottom:24.000000pt;}
.y4a{bottom:24.320000pt;}
.y52{bottom:27.360000pt;}
.y2{bottom:27.712000pt;}
.y4f{bottom:40.320000pt;}
.y43{bottom:40.346667pt;}
.y5b{bottom:58.714667pt;}
.y4e{bottom:58.720000pt;}
.y5a{bottom:77.114667pt;}
.y4d{bottom:77.120000pt;}
.y81{bottom:77.792000pt;}
.y30{bottom:85.952000pt;}
.y54{bottom:86.592000pt;}
.y59{bottom:95.514667pt;}
.y5f{bottom:95.520000pt;}
.y80{bottom:99.392000pt;}
.y97{bottom:106.912000pt;}
.y2f{bottom:107.392000pt;}
.y58{bottom:113.914667pt;}
.y5e{bottom:113.920000pt;}
.y7f{bottom:120.832000pt;}
.y96{bottom:125.312000pt;}
.y2e{bottom:128.992000pt;}
.y57{bottom:132.314667pt;}
.y5d{bottom:132.320000pt;}
.y7e{bottom:142.266667pt;}
.y95{bottom:143.706667pt;}
.y2d{bottom:150.426667pt;}
.y56{bottom:150.714667pt;}
.y94{bottom:162.106667pt;}
.y7d{bottom:163.706667pt;}
.y55{bottom:169.154667pt;}
.y2c{bottom:171.866667pt;}
.y93{bottom:180.506667pt;}
.y7c{bottom:185.146667pt;}
.y2b{bottom:193.306667pt;}
.y92{bottom:198.906667pt;}
.y7b{bottom:206.586667pt;}
.y2a{bottom:214.746667pt;}
.y91{bottom:217.306667pt;}
.y7a{bottom:228.186667pt;}
.y90{bottom:235.706667pt;}
.y29{bottom:236.186667pt;}
.y79{bottom:249.626667pt;}
.y8f{bottom:254.146667pt;}
.y28{bottom:257.826667pt;}
.y78{bottom:271.106667pt;}
.y51{bottom:271.266667pt;}
.y8e{bottom:272.546667pt;}
.y27{bottom:279.266667pt;}
.y8d{bottom:290.946667pt;}
.y77{bottom:292.546667pt;}
.y26{bottom:300.706667pt;}
.y8c{bottom:309.346667pt;}
.y76{bottom:313.986667pt;}
.y4c{bottom:314.146667pt;}
.y25{bottom:322.146667pt;}
.y8b{bottom:327.746667pt;}
.y75{bottom:335.426667pt;}
.y24{bottom:343.586667pt;}
.y8a{bottom:346.146667pt;}
.y74{bottom:356.866667pt;}
.y23{bottom:364.546667pt;}
.y73{bottom:378.466667pt;}
.y22{bottom:382.946667pt;}
.y72{bottom:399.906667pt;}
.y89{bottom:400.706667pt;}
.y21{bottom:401.346667pt;}
.y49{bottom:406.786667pt;}
.y88{bottom:417.186667pt;}
.y20{bottom:419.746667pt;}
.y71{bottom:421.346667pt;}
.y1f{bottom:438.146667pt;}
.y87{bottom:438.626667pt;}
.y70{bottom:442.786667pt;}
.y46{bottom:446.626667pt;}
.y1e{bottom:456.546667pt;}
.y86{bottom:460.066667pt;}
.y6f{bottom:464.226667pt;}
.y1d{bottom:474.946667pt;}
.y85{bottom:481.666667pt;}
.y6e{bottom:485.666667pt;}
.y42{bottom:486.146667pt;}
.y1c{bottom:493.346667pt;}
.y84{bottom:503.133333pt;}
.y6d{bottom:507.293333pt;}
.y1b{bottom:511.773333pt;}
.y83{bottom:524.573333pt;}
.y6c{bottom:528.733333pt;}
.y1a{bottom:530.173333pt;}
.y41{bottom:546.013333pt;}
.y19{bottom:548.573333pt;}
.y6b{bottom:550.173333pt;}
.y18{bottom:566.973333pt;}
.y40{bottom:567.453333pt;}
.y6a{bottom:571.613333pt;}
.y82{bottom:588.893333pt;}
.y69{bottom:593.053333pt;}
.y17{bottom:603.773333pt;}
.y3f{bottom:610.493333pt;}
.y68{bottom:614.493333pt;}
.y16{bottom:622.173333pt;}
.y3e{bottom:631.933333pt;}
.y67{bottom:636.093333pt;}
.y15{bottom:640.573333pt;}
.y3d{bottom:653.373333pt;}
.y66{bottom:657.533333pt;}
.y14{bottom:658.973333pt;}
.ya7{bottom:659.133333pt;}
.y3c{bottom:674.813333pt;}
.y13{bottom:677.373333pt;}
.y65{bottom:678.973333pt;}
.y12{bottom:695.773333pt;}
.y3b{bottom:696.253333pt;}
.ya6{bottom:698.813333pt;}
.y64{bottom:700.413333pt;}
.y11{bottom:714.173333pt;}
.ya5{bottom:717.213333pt;}
.y3a{bottom:717.693333pt;}
.y63{bottom:721.853333pt;}
.y10{bottom:732.573333pt;}
.ya4{bottom:735.613333pt;}
.y39{bottom:739.133333pt;}
.yf{bottom:750.973333pt;}
.ya3{bottom:754.053333pt;}
.y38{bottom:760.773333pt;}
.y62{bottom:764.773333pt;}
.ye{bottom:769.413333pt;}
.ya2{bottom:772.453333pt;}
.y37{bottom:782.213333pt;}
.y61{bottom:786.373333pt;}
.yd{bottom:787.813333pt;}
.ya1{bottom:790.853333pt;}
.y36{bottom:803.653333pt;}
.y60{bottom:804.453333pt;}
.yc{bottom:806.213333pt;}
.ya0{bottom:809.253333pt;}
.y5c{bottom:823.493333pt;}
.yb{bottom:824.613333pt;}
.y35{bottom:825.093333pt;}
.y9f{bottom:827.653333pt;}
.y9e{bottom:846.053333pt;}
.y34{bottom:846.533333pt;}
.ya{bottom:861.413333pt;}
.y9d{bottom:864.453333pt;}
.y33{bottom:867.973333pt;}
.y9{bottom:879.813333pt;}
.y9c{bottom:882.853333pt;}
.y32{bottom:889.573333pt;}
.y8{bottom:898.213333pt;}
.y9b{bottom:901.253333pt;}
.y31{bottom:911.013333pt;}
.y7{bottom:915.973333pt;}
.y9a{bottom:919.653333pt;}
.y6{bottom:932.453333pt;}
.y99{bottom:938.053333pt;}
.y5{bottom:953.893333pt;}
.y98{bottom:956.453333pt;}
.y1{bottom:1057.920000pt;}
.h15{height:18.400000pt;}
.h3{height:28.320000pt;}
.he{height:38.880000pt;}
.hf{height:39.200000pt;}
.h12{height:42.240000pt;}
.h9{height:48.687500pt;}
.h16{height:52.134375pt;}
.hc{height:52.832812pt;}
.h5{height:53.535000pt;}
.hd{height:55.232000pt;}
.h10{height:56.406250pt;}
.h7{height:62.781250pt;}
.h8{height:62.812500pt;}
.h6{height:64.500000pt;}
.h17{height:65.781915pt;}
.hb{height:65.995312pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.ha{height:83.540625pt;}
.h11{height:92.000000pt;}
.h14{height:147.200000pt;}
.h13{height:184.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:36.800000pt;}
.w3{width:67.392000pt;}
.w6{width:112.640000pt;}
.w5{width:150.586667pt;}
.w7{width:328.706667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:6.880000pt;}
.x19{left:8.160000pt;}
.xc{left:10.240000pt;}
.x14{left:14.240000pt;}
.x1c{left:15.194667pt;}
.x20{left:18.240000pt;}
.x10{left:21.440000pt;}
.x3{left:24.320000pt;}
.x21{left:26.394667pt;}
.x16{left:29.434667pt;}
.x15{left:31.034667pt;}
.x1f{left:35.194667pt;}
.x1d{left:36.314667pt;}
.x1e{left:39.514667pt;}
.x11{left:42.560000pt;}
.xe{left:48.154667pt;}
.x17{left:52.320000pt;}
.x1b{left:56.954667pt;}
.x22{left:58.874667pt;}
.x13{left:62.746667pt;}
.x1{left:75.519988pt;}
.xb{left:81.632000pt;}
.x4{left:86.111988pt;}
.x25{left:99.551988pt;}
.x18{left:106.746667pt;}
.xd{left:119.072000pt;}
.x9{left:122.751988pt;}
.x8{left:149.786655pt;}
.x23{left:164.346667pt;}
.x5{left:180.186655pt;}
.x24{left:194.746655pt;}
.xf{left:270.306667pt;}
.xa{left:345.986655pt;}
.x7{left:355.106655pt;}
.x2{left:363.586667pt;}
.x12{left:383.586667pt;}
.x6{left:396.866655pt;}
}




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