
    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_7808fd28e72f931d561b57d4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_efc0c7cd1dcfafee878bfb94.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a28475b32d5298e9c9c5049f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.084961;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_7e24847c64c9b0596a2d2aff.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_fe172b0f4f3567a68b9a6813.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_2ad11d827f6dfbe673dc9b50.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916992;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_8e2da7897d315ba86062bc2a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_51ca91255434377e742b448c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;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(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2{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;}
.ls1c{letter-spacing:-0.846000px;}
.ls15{letter-spacing:-0.756000px;}
.ls3{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.180000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.028080px;}
.ls16{letter-spacing:0.106800px;}
.ls21{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.378600px;}
.lse{letter-spacing:0.480000px;}
.lsd{letter-spacing:0.540000px;}
.ls14{letter-spacing:2.700000px;}
.ls1e{letter-spacing:6.480000px;}
.lsc{letter-spacing:8.460000px;}
.ls1b{letter-spacing:10.620000px;}
.ls4{letter-spacing:12.780000px;}
.ls5{letter-spacing:13.500000px;}
.ls7{letter-spacing:14.940000px;}
.ls18{letter-spacing:15.660000px;}
.ls19{letter-spacing:16.380000px;}
.ls6{letter-spacing:19.980000px;}
.lsf{letter-spacing:21.420000px;}
.ls9{letter-spacing:22.860000px;}
.ls23{letter-spacing:24.300000px;}
.ls24{letter-spacing:25.020000px;}
.ls22{letter-spacing:25.200000px;}
.lsb{letter-spacing:27.360000px;}
.ls8{letter-spacing:29.340000px;}
.ls12{letter-spacing:39.420000px;}
.ls25{letter-spacing:41.381280px;}
.ls1a{letter-spacing:44.460000px;}
.ls13{letter-spacing:50.220000px;}
.ls17{letter-spacing:53.280000px;}
.ls1f{letter-spacing:89.100000px;}
.ls20{letter-spacing:116.640000px;}
.ls11{letter-spacing:127.980000px;}
.ls10{letter-spacing:128.700000px;}
.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;}
}
.ws8{word-spacing:-21.438600px;}
.ws0{word-spacing:-21.420000px;}
.ws4{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.ws1{word-spacing:-20.700000px;}
.ws5{word-spacing:-20.304000px;}
.ws7{word-spacing:-20.214000px;}
.ws6{word-spacing:-15.046800px;}
.ws3{word-spacing:0.000000px;}
._43{margin-left:-9.454800px;}
._3e{margin-left:-7.745520px;}
._2e{margin-left:-6.288480px;}
._23{margin-left:-4.380480px;}
._24{margin-left:-3.114720px;}
._a{margin-left:-2.106000px;}
._2{margin-left:-1.010880px;}
._0{width:1.627920px;}
._1{width:3.064560px;}
._2d{width:4.208640px;}
._13{width:5.307120px;}
._12{width:6.907680px;}
._25{width:8.002800px;}
._1f{width:9.323280px;}
._1e{width:10.698480px;}
._f{width:12.214800px;}
._7{width:14.152320px;}
._8{width:15.190320px;}
._26{width:16.958880px;}
._27{width:18.674640px;}
._2c{width:19.707120px;}
._2a{width:22.939440px;}
._11{width:24.092640px;}
._2b{width:25.693200px;}
._6{width:27.041040px;}
._1d{width:28.698480px;}
._5{width:29.820960px;}
._29{width:31.449120px;}
._30{width:32.714640px;}
._21{width:33.948720px;}
._35{width:36.138960px;}
._36{width:37.488720px;}
._1c{width:38.497680px;}
._28{width:39.845520px;}
._b{width:41.698800px;}
._22{width:42.962400px;}
._10{width:44.057520px;}
._14{width:45.576000px;}
._3d{width:47.062800px;}
._3{width:48.101040px;}
._9{width:49.225680px;}
._2f{width:50.899680px;}
._37{width:52.005600px;}
._d{width:53.071200px;}
._31{width:54.166320px;}
._34{width:55.290960px;}
._46{width:61.457040px;}
._3b{width:62.843040px;}
._3c{width:64.612080px;}
._38{width:66.163440px;}
._39{width:74.636640px;}
._3a{width:76.148400px;}
._3f{width:89.125920px;}
._16{width:98.982000px;}
._40{width:101.761920px;}
._15{width:109.596240px;}
._44{width:112.762800px;}
._45{width:113.838240px;}
._1a{width:114.987600px;}
._1b{width:117.683280px;}
._17{width:127.680480px;}
._18{width:128.971440px;}
._19{width:136.384560px;}
._42{width:161.488080px;}
._41{width:162.892800px;}
._32{width:169.968960px;}
._33{width:171.120960px;}
._c{width:183.895920px;}
._e{width:236.630160px;}
._20{width:250.529760px;}
._4{width:364.532880px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:2.880000px;}
.y2a{bottom:8.094000px;}
.y1b{bottom:8.100000px;}
.ye{bottom:8.145000px;}
.y2c{bottom:8.280000px;}
.y29{bottom:35.814000px;}
.y1a{bottom:36.000000px;}
.y2{bottom:52.560000px;}
.y1{bottom:57.600000px;}
.y28{bottom:63.714000px;}
.y19{bottom:63.720000px;}
.y27{bottom:91.434000px;}
.y33{bottom:91.440000px;}
.y18{bottom:91.470000px;}
.y73{bottom:95.436000px;}
.y72{bottom:100.656000px;}
.y7b{bottom:112.716000px;}
.y71{bottom:113.976000px;}
.y2b{bottom:115.776000px;}
.y7a{bottom:117.936000px;}
.y26{bottom:119.154000px;}
.y4c{bottom:119.196000px;}
.y32{bottom:119.340000px;}
.y17{bottom:119.370000px;}
.y79{bottom:129.996000px;}
.y7e{bottom:131.256000px;}
.y85{bottom:135.216000px;}
.y1d{bottom:144.396000px;}
.y4b{bottom:146.916000px;}
.y25{bottom:147.054000px;}
.y31{bottom:147.060000px;}
.y16{bottom:147.090000px;}
.y78{bottom:147.276000px;}
.y70{bottom:147.636000px;}
.y77{bottom:152.490000px;}
.y84{bottom:164.370000px;}
.y76{bottom:165.810000px;}
.y83{bottom:169.590000px;}
.y4a{bottom:174.630000px;}
.y24{bottom:174.774000px;}
.y30{bottom:174.780000px;}
.y15{bottom:174.810000px;}
.y6f{bottom:175.530000px;}
.y82{bottom:182.910000px;}
.y14{bottom:202.530000px;}
.y23{bottom:202.539000px;}
.y2f{bottom:202.680000px;}
.y6e{bottom:203.250000px;}
.y49{bottom:230.250000px;}
.y22{bottom:230.259000px;}
.y2e{bottom:230.400000px;}
.y13{bottom:230.430000px;}
.y6d{bottom:230.970000px;}
.y48{bottom:257.970000px;}
.y12{bottom:258.150000px;}
.y21{bottom:258.159000px;}
.y6c{bottom:258.690000px;}
.y11{bottom:285.870000px;}
.y20{bottom:285.879000px;}
.y6b{bottom:286.590000px;}
.y10{bottom:313.590000px;}
.y1f{bottom:313.599000px;}
.y6a{bottom:314.310000px;}
.y47{bottom:341.355000px;}
.y1e{bottom:341.499000px;}
.y69{bottom:342.075000px;}
.y46{bottom:369.075000px;}
.y68{bottom:369.975000px;}
.y45{bottom:396.975000px;}
.y67{bottom:397.695000px;}
.y44{bottom:424.695000px;}
.y66{bottom:425.415000px;}
.y81{bottom:432.975000px;}
.y43{bottom:452.415000px;}
.y64{bottom:453.135000px;}
.y65{bottom:460.695000px;}
.y42{bottom:480.135000px;}
.y63{bottom:481.035000px;}
.y1c{bottom:506.235000px;}
.y41{bottom:508.035000px;}
.y62{bottom:508.755000px;}
.yf{bottom:534.675000px;}
.y40{bottom:535.755000px;}
.y61{bottom:536.475000px;}
.y7d{bottom:544.035000px;}
.y3f{bottom:563.475000px;}
.y60{bottom:564.195000px;}
.y3e{bottom:591.375000px;}
.y5f{bottom:592.095000px;}
.y3d{bottom:619.125000px;}
.y5e{bottom:619.845000px;}
.y3c{bottom:646.845000px;}
.y5d{bottom:647.565000px;}
.y75{bottom:655.125000px;}
.y3b{bottom:674.565000px;}
.y5c{bottom:675.465000px;}
.y3a{bottom:702.465000px;}
.y5b{bottom:703.185000px;}
.y39{bottom:730.185000px;}
.y5a{bottom:730.905000px;}
.y38{bottom:757.905000px;}
.y59{bottom:758.625000px;}
.y37{bottom:785.805000px;}
.y58{bottom:786.525000px;}
.y80{bottom:794.085000px;}
.y36{bottom:813.525000px;}
.y57{bottom:814.245000px;}
.y35{bottom:841.245000px;}
.y56{bottom:841.965000px;}
.yd{bottom:868.785000px;}
.y34{bottom:868.965000px;}
.y55{bottom:869.865000px;}
.y2d{bottom:888.630000px;}
.y54{bottom:897.630000px;}
.yc{bottom:905.370000px;}
.y53{bottom:925.350000px;}
.yb{bottom:933.270000px;}
.y52{bottom:953.070000px;}
.ya{bottom:960.990000px;}
.y51{bottom:980.970000px;}
.y74{bottom:988.530000px;}
.y9{bottom:988.710000px;}
.y50{bottom:1008.690000px;}
.y8{bottom:1016.430000px;}
.y4f{bottom:1036.410000px;}
.y7{bottom:1045.590000px;}
.y4e{bottom:1064.130000px;}
.y6{bottom:1077.270000px;}
.y4d{bottom:1092.030000px;}
.y5{bottom:1119.750000px;}
.y7f{bottom:1127.310000px;}
.y4{bottom:1147.500000px;}
.y7c{bottom:1155.060000px;}
.h3{height:22.536000px;}
.hf{height:27.261563px;}
.ha{height:27.720000px;}
.h8{height:27.756000px;}
.hc{height:27.900000px;}
.h11{height:37.863281px;}
.h10{height:41.902031px;}
.he{height:43.822266px;}
.h2{height:59.066719px;}
.h4{height:59.436914px;}
.h12{height:61.329023px;}
.h7{height:61.575820px;}
.h6{height:67.565039px;}
.h5{height:68.362734px;}
.hd{height:277.770000px;}
.h9{height:333.210000px;}
.hb{height:361.110000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:58.896000px;}
.w5{width:244.650000px;}
.w4{width:478.515000px;}
.w6{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.100000px;}
.x10{left:10.620000px;}
.x3{left:18.900000px;}
.xe{left:62.094000px;}
.xf{left:63.894000px;}
.x1{left:95.795987px;}
.x15{left:100.655987px;}
.x24{left:105.515987px;}
.x6{left:117.395987px;}
.x25{left:127.835987px;}
.x5{left:147.095987px;}
.x11{left:148.895987px;}
.x12{left:174.449973px;}
.x13{left:181.289987px;}
.x21{left:182.549973px;}
.x22{left:189.389987px;}
.x18{left:197.849973px;}
.x19{left:204.689987px;}
.x8{left:266.789987px;}
.xa{left:270.569987px;}
.x1f{left:301.214973px;}
.x20{left:308.054987px;}
.x14{left:311.834987px;}
.x1d{left:356.114973px;}
.x1e{left:362.954987px;}
.x2{left:421.815000px;}
.xb{left:446.474987px;}
.x4{left:451.874987px;}
.x7{left:477.104987px;}
.x1c{left:484.844987px;}
.x9{left:529.664987px;}
.xd{left:574.305000px;}
.x16{left:578.264973px;}
.x17{left:585.104987px;}
.x23{left:783.689973px;}
.x1a{left:790.529973px;}
.x1b{left:797.369987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1c{letter-spacing:-0.752000pt;}
.ls15{letter-spacing:-0.672000pt;}
.ls3{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.160000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024960pt;}
.ls16{letter-spacing:0.094933pt;}
.ls21{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.336533pt;}
.lse{letter-spacing:0.426667pt;}
.lsd{letter-spacing:0.480000pt;}
.ls14{letter-spacing:2.400000pt;}
.ls1e{letter-spacing:5.760000pt;}
.lsc{letter-spacing:7.520000pt;}
.ls1b{letter-spacing:9.440000pt;}
.ls4{letter-spacing:11.360000pt;}
.ls5{letter-spacing:12.000000pt;}
.ls7{letter-spacing:13.280000pt;}
.ls18{letter-spacing:13.920000pt;}
.ls19{letter-spacing:14.560000pt;}
.ls6{letter-spacing:17.760000pt;}
.lsf{letter-spacing:19.040000pt;}
.ls9{letter-spacing:20.320000pt;}
.ls23{letter-spacing:21.600000pt;}
.ls24{letter-spacing:22.240000pt;}
.ls22{letter-spacing:22.400000pt;}
.lsb{letter-spacing:24.320000pt;}
.ls8{letter-spacing:26.080000pt;}
.ls12{letter-spacing:35.040000pt;}
.ls25{letter-spacing:36.783360pt;}
.ls1a{letter-spacing:39.520000pt;}
.ls13{letter-spacing:44.640000pt;}
.ls17{letter-spacing:47.360000pt;}
.ls1f{letter-spacing:79.200000pt;}
.ls20{letter-spacing:103.680000pt;}
.ls11{letter-spacing:113.760000pt;}
.ls10{letter-spacing:114.400000pt;}
.ws8{word-spacing:-19.056533pt;}
.ws0{word-spacing:-19.040000pt;}
.ws4{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.ws1{word-spacing:-18.400000pt;}
.ws5{word-spacing:-18.048000pt;}
.ws7{word-spacing:-17.968000pt;}
.ws6{word-spacing:-13.374933pt;}
.ws3{word-spacing:0.000000pt;}
._43{margin-left:-8.404267pt;}
._3e{margin-left:-6.884907pt;}
._2e{margin-left:-5.589760pt;}
._23{margin-left:-3.893760pt;}
._24{margin-left:-2.768640pt;}
._a{margin-left:-1.872000pt;}
._2{margin-left:-0.898560pt;}
._0{width:1.447040pt;}
._1{width:2.724053pt;}
._2d{width:3.741013pt;}
._13{width:4.717440pt;}
._12{width:6.140160pt;}
._25{width:7.113600pt;}
._1f{width:8.287360pt;}
._1e{width:9.509760pt;}
._f{width:10.857600pt;}
._7{width:12.579840pt;}
._8{width:13.502507pt;}
._26{width:15.074560pt;}
._27{width:16.599680pt;}
._2c{width:17.517440pt;}
._2a{width:20.390613pt;}
._11{width:21.415680pt;}
._2b{width:22.838400pt;}
._6{width:24.036480pt;}
._1d{width:25.509760pt;}
._5{width:26.507520pt;}
._29{width:27.954773pt;}
._30{width:29.079680pt;}
._21{width:30.176640pt;}
._35{width:32.123520pt;}
._36{width:33.323307pt;}
._1c{width:34.220160pt;}
._28{width:35.418240pt;}
._b{width:37.065600pt;}
._22{width:38.188800pt;}
._10{width:39.162240pt;}
._14{width:40.512000pt;}
._3d{width:41.833600pt;}
._3{width:42.756480pt;}
._9{width:43.756160pt;}
._2f{width:45.244160pt;}
._37{width:46.227200pt;}
._d{width:47.174400pt;}
._31{width:48.147840pt;}
._34{width:49.147520pt;}
._46{width:54.628480pt;}
._3b{width:55.860480pt;}
._3c{width:57.432960pt;}
._38{width:58.811947pt;}
._39{width:66.343680pt;}
._3a{width:67.687467pt;}
._3f{width:79.223040pt;}
._16{width:87.984000pt;}
._40{width:90.455040pt;}
._15{width:97.418880pt;}
._44{width:100.233600pt;}
._45{width:101.189547pt;}
._1a{width:102.211200pt;}
._1b{width:104.607360pt;}
._17{width:113.493760pt;}
._18{width:114.641280pt;}
._19{width:121.230720pt;}
._42{width:143.544960pt;}
._41{width:144.793600pt;}
._32{width:151.083520pt;}
._33{width:152.107520pt;}
._c{width:163.463040pt;}
._e{width:210.337920pt;}
._20{width:222.693120pt;}
._4{width:324.029227pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.560000pt;}
.y2a{bottom:7.194667pt;}
.y1b{bottom:7.200000pt;}
.ye{bottom:7.240000pt;}
.y2c{bottom:7.360000pt;}
.y29{bottom:31.834667pt;}
.y1a{bottom:32.000000pt;}
.y2{bottom:46.720000pt;}
.y1{bottom:51.200000pt;}
.y28{bottom:56.634667pt;}
.y19{bottom:56.640000pt;}
.y27{bottom:81.274667pt;}
.y33{bottom:81.280000pt;}
.y18{bottom:81.306667pt;}
.y73{bottom:84.832000pt;}
.y72{bottom:89.472000pt;}
.y7b{bottom:100.192000pt;}
.y71{bottom:101.312000pt;}
.y2b{bottom:102.912000pt;}
.y7a{bottom:104.832000pt;}
.y26{bottom:105.914667pt;}
.y4c{bottom:105.952000pt;}
.y32{bottom:106.080000pt;}
.y17{bottom:106.106667pt;}
.y79{bottom:115.552000pt;}
.y7e{bottom:116.672000pt;}
.y85{bottom:120.192000pt;}
.y1d{bottom:128.352000pt;}
.y4b{bottom:130.592000pt;}
.y25{bottom:130.714667pt;}
.y31{bottom:130.720000pt;}
.y16{bottom:130.746667pt;}
.y78{bottom:130.912000pt;}
.y70{bottom:131.232000pt;}
.y77{bottom:135.546667pt;}
.y84{bottom:146.106667pt;}
.y76{bottom:147.386667pt;}
.y83{bottom:150.746667pt;}
.y4a{bottom:155.226667pt;}
.y24{bottom:155.354667pt;}
.y30{bottom:155.360000pt;}
.y15{bottom:155.386667pt;}
.y6f{bottom:156.026667pt;}
.y82{bottom:162.586667pt;}
.y14{bottom:180.026667pt;}
.y23{bottom:180.034667pt;}
.y2f{bottom:180.160000pt;}
.y6e{bottom:180.666667pt;}
.y49{bottom:204.666667pt;}
.y22{bottom:204.674667pt;}
.y2e{bottom:204.800000pt;}
.y13{bottom:204.826667pt;}
.y6d{bottom:205.306667pt;}
.y48{bottom:229.306667pt;}
.y12{bottom:229.466667pt;}
.y21{bottom:229.474667pt;}
.y6c{bottom:229.946667pt;}
.y11{bottom:254.106667pt;}
.y20{bottom:254.114667pt;}
.y6b{bottom:254.746667pt;}
.y10{bottom:278.746667pt;}
.y1f{bottom:278.754667pt;}
.y6a{bottom:279.386667pt;}
.y47{bottom:303.426667pt;}
.y1e{bottom:303.554667pt;}
.y69{bottom:304.066667pt;}
.y46{bottom:328.066667pt;}
.y68{bottom:328.866667pt;}
.y45{bottom:352.866667pt;}
.y67{bottom:353.506667pt;}
.y44{bottom:377.506667pt;}
.y66{bottom:378.146667pt;}
.y81{bottom:384.866667pt;}
.y43{bottom:402.146667pt;}
.y64{bottom:402.786667pt;}
.y65{bottom:409.506667pt;}
.y42{bottom:426.786667pt;}
.y63{bottom:427.586667pt;}
.y1c{bottom:449.986667pt;}
.y41{bottom:451.586667pt;}
.y62{bottom:452.226667pt;}
.yf{bottom:475.266667pt;}
.y40{bottom:476.226667pt;}
.y61{bottom:476.866667pt;}
.y7d{bottom:483.586667pt;}
.y3f{bottom:500.866667pt;}
.y60{bottom:501.506667pt;}
.y3e{bottom:525.666667pt;}
.y5f{bottom:526.306667pt;}
.y3d{bottom:550.333333pt;}
.y5e{bottom:550.973333pt;}
.y3c{bottom:574.973333pt;}
.y5d{bottom:575.613333pt;}
.y75{bottom:582.333333pt;}
.y3b{bottom:599.613333pt;}
.y5c{bottom:600.413333pt;}
.y3a{bottom:624.413333pt;}
.y5b{bottom:625.053333pt;}
.y39{bottom:649.053333pt;}
.y5a{bottom:649.693333pt;}
.y38{bottom:673.693333pt;}
.y59{bottom:674.333333pt;}
.y37{bottom:698.493333pt;}
.y58{bottom:699.133333pt;}
.y80{bottom:705.853333pt;}
.y36{bottom:723.133333pt;}
.y57{bottom:723.773333pt;}
.y35{bottom:747.773333pt;}
.y56{bottom:748.413333pt;}
.yd{bottom:772.253333pt;}
.y34{bottom:772.413333pt;}
.y55{bottom:773.213333pt;}
.y2d{bottom:789.893333pt;}
.y54{bottom:797.893333pt;}
.yc{bottom:804.773333pt;}
.y53{bottom:822.533333pt;}
.yb{bottom:829.573333pt;}
.y52{bottom:847.173333pt;}
.ya{bottom:854.213333pt;}
.y51{bottom:871.973333pt;}
.y74{bottom:878.693333pt;}
.y9{bottom:878.853333pt;}
.y50{bottom:896.613333pt;}
.y8{bottom:903.493333pt;}
.y4f{bottom:921.253333pt;}
.y7{bottom:929.413333pt;}
.y4e{bottom:945.893333pt;}
.y6{bottom:957.573333pt;}
.y4d{bottom:970.693333pt;}
.y5{bottom:995.333333pt;}
.y7f{bottom:1002.053333pt;}
.y4{bottom:1020.000000pt;}
.y7c{bottom:1026.720000pt;}
.h3{height:20.032000pt;}
.hf{height:24.232500pt;}
.ha{height:24.640000pt;}
.h8{height:24.672000pt;}
.hc{height:24.800000pt;}
.h11{height:33.656250pt;}
.h10{height:37.246250pt;}
.he{height:38.953125pt;}
.h2{height:52.503750pt;}
.h4{height:52.832812pt;}
.h12{height:54.514687pt;}
.h7{height:54.734062pt;}
.h6{height:60.057813pt;}
.h5{height:60.766875pt;}
.hd{height:246.906667pt;}
.h9{height:296.186667pt;}
.hb{height:320.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:52.352000pt;}
.w5{width:217.466667pt;}
.w4{width:425.346667pt;}
.w6{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.200000pt;}
.x10{left:9.440000pt;}
.x3{left:16.800000pt;}
.xe{left:55.194667pt;}
.xf{left:56.794667pt;}
.x1{left:85.151988pt;}
.x15{left:89.471988pt;}
.x24{left:93.791988pt;}
.x6{left:104.351988pt;}
.x25{left:113.631988pt;}
.x5{left:130.751988pt;}
.x11{left:132.351988pt;}
.x12{left:155.066643pt;}
.x13{left:161.146655pt;}
.x21{left:162.266643pt;}
.x22{left:168.346655pt;}
.x18{left:175.866643pt;}
.x19{left:181.946655pt;}
.x8{left:237.146655pt;}
.xa{left:240.506655pt;}
.x1f{left:267.746643pt;}
.x20{left:273.826655pt;}
.x14{left:277.186655pt;}
.x1d{left:316.546643pt;}
.x1e{left:322.626655pt;}
.x2{left:374.946667pt;}
.xb{left:396.866655pt;}
.x4{left:401.666655pt;}
.x7{left:424.093322pt;}
.x1c{left:430.973322pt;}
.x9{left:470.813322pt;}
.xd{left:510.493333pt;}
.x16{left:514.013310pt;}
.x17{left:520.093322pt;}
.x23{left:696.613310pt;}
.x1a{left:702.693310pt;}
.x1b{left:708.773322pt;}
}




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