
    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_4ccb88cfdc20b4f3d878d65e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a0f9ba89112ac9b1e24bb48f.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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_44f411e3705df34f6f5d2cd6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.973633;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_565dc28666b2a807b3e80153.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d1c6e44ee8d3e60c01abb3a5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1{vertical-align:23.760000px;}
.ls7{letter-spacing:-0.259800px;}
.lsb{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.540000px;}
.ls4{letter-spacing:33.042720px;}
.ls5{letter-spacing:36.642720px;}
.ls9{letter-spacing:46.002720px;}
.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;}
}
.ws4{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.680200px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.ws9{word-spacing:-0.059760px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-1.321920px;}
._0{width:1.322400px;}
._b{width:2.393520px;}
._2{width:4.245600px;}
._f{width:5.248560px;}
._11{width:6.293520px;}
._c{width:7.299600px;}
._7{width:8.493120px;}
._6{width:10.159200px;}
._12{width:11.226720px;}
._9{width:12.362640px;}
._8{width:13.804560px;}
._a{width:16.179600px;}
._10{width:17.495520px;}
._1c{width:18.585360px;}
._13{width:20.026800px;}
._e{width:21.035520px;}
._d{width:22.410000px;}
._24{width:23.605200px;}
._23{width:24.621120px;}
._2b{width:26.878320px;}
._2a{width:28.199040px;}
._15{width:30.768720px;}
._14{width:31.792320px;}
._16{width:33.790560px;}
._29{width:35.265120px;}
._28{width:36.386160px;}
._1b{width:47.031120px;}
._17{width:55.218240px;}
._25{width:57.361920px;}
._1e{width:58.385520px;}
._1f{width:61.791840px;}
._18{width:64.779840px;}
._2c{width:67.819920px;}
._22{width:80.548800px;}
._1d{width:114.320880px;}
._27{width:133.914480px;}
._5{width:136.056000px;}
._20{width:170.607120px;}
._19{width:183.694560px;}
._26{width:185.547120px;}
._1a{width:220.984800px;}
._21{width:252.486000px;}
._4{width:636.906000px;}
._3{width:748.236000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7e{bottom:3.240000px;}
.y82{bottom:20.340000px;}
.y85{bottom:20.520000px;}
.yb{bottom:36.720000px;}
.y81{bottom:37.620000px;}
.y84{bottom:37.800000px;}
.y80{bottom:54.900000px;}
.y87{bottom:55.080000px;}
.ya{bottom:55.260000px;}
.y9{bottom:70.776000px;}
.y7c{bottom:115.776000px;}
.y69{bottom:117.216000px;}
.y40{bottom:125.496000px;}
.yb9{bottom:129.276000px;}
.y7b{bottom:129.816000px;}
.y68{bottom:134.496000px;}
.ycd{bottom:136.836000px;}
.y3f{bottom:142.596000px;}
.yb8{bottom:146.556000px;}
.y67{bottom:151.770000px;}
.ycc{bottom:154.110000px;}
.y3e{bottom:159.870000px;}
.yb7{bottom:163.830000px;}
.y66{bottom:169.050000px;}
.ycb{bottom:171.390000px;}
.y3d{bottom:177.150000px;}
.yb6{bottom:181.110000px;}
.y65{bottom:186.330000px;}
.yca{bottom:188.490000px;}
.y3c{bottom:194.430000px;}
.yb5{bottom:198.210000px;}
.y64{bottom:203.610000px;}
.yc9{bottom:205.770000px;}
.y3b{bottom:211.710000px;}
.yb4{bottom:215.490000px;}
.y63{bottom:220.710000px;}
.yc8{bottom:223.050000px;}
.y3a{bottom:228.990000px;}
.yb3{bottom:232.770000px;}
.y62{bottom:237.990000px;}
.yc7{bottom:240.330000px;}
.y39{bottom:246.090000px;}
.yb2{bottom:250.050000px;}
.y61{bottom:255.270000px;}
.yc6{bottom:257.610000px;}
.y38{bottom:263.370000px;}
.yb1{bottom:267.330000px;}
.y60{bottom:272.550000px;}
.yc5{bottom:274.890000px;}
.y37{bottom:280.650000px;}
.yb0{bottom:284.610000px;}
.y5f{bottom:289.830000px;}
.yc4{bottom:291.990000px;}
.y36{bottom:297.930000px;}
.yaf{bottom:301.710000px;}
.y5e{bottom:307.110000px;}
.yc3{bottom:309.270000px;}
.y35{bottom:315.210000px;}
.yae{bottom:318.990000px;}
.y5d{bottom:324.210000px;}
.yc2{bottom:326.550000px;}
.y34{bottom:332.310000px;}
.yad{bottom:336.270000px;}
.y5c{bottom:341.535000px;}
.yc1{bottom:343.875000px;}
.y33{bottom:349.635000px;}
.yac{bottom:353.595000px;}
.y5b{bottom:358.815000px;}
.yc0{bottom:361.155000px;}
.y32{bottom:366.915000px;}
.yab{bottom:370.875000px;}
.y98{bottom:372.315000px;}
.y5a{bottom:376.095000px;}
.ybf{bottom:378.255000px;}
.y31{bottom:384.195000px;}
.yaa{bottom:387.975000px;}
.y97{bottom:389.595000px;}
.y59{bottom:393.375000px;}
.ybe{bottom:395.535000px;}
.y30{bottom:401.475000px;}
.ya9{bottom:405.255000px;}
.y96{bottom:406.875000px;}
.y58{bottom:410.655000px;}
.ybd{bottom:412.815000px;}
.y2f{bottom:418.755000px;}
.ya8{bottom:422.535000px;}
.y95{bottom:424.155000px;}
.y57{bottom:427.755000px;}
.ybc{bottom:430.095000px;}
.y2e{bottom:435.855000px;}
.ya7{bottom:439.815000px;}
.y94{bottom:441.255000px;}
.y56{bottom:445.035000px;}
.ybb{bottom:447.375000px;}
.y2d{bottom:453.135000px;}
.ya6{bottom:457.095000px;}
.y93{bottom:458.535000px;}
.y55{bottom:462.315000px;}
.yba{bottom:464.655000px;}
.y2c{bottom:470.415000px;}
.ya5{bottom:474.375000px;}
.y92{bottom:475.815000px;}
.y54{bottom:479.595000px;}
.y7a{bottom:481.755000px;}
.y2b{bottom:487.695000px;}
.ya4{bottom:491.475000px;}
.y91{bottom:493.095000px;}
.y53{bottom:496.875000px;}
.y79{bottom:499.035000px;}
.y2a{bottom:504.975000px;}
.ya3{bottom:508.755000px;}
.y90{bottom:510.375000px;}
.y52{bottom:510.735000px;}
.y78{bottom:516.315000px;}
.y29{bottom:522.255000px;}
.ya2{bottom:526.035000px;}
.y8f{bottom:527.655000px;}
.y77{bottom:533.595000px;}
.y28{bottom:539.355000px;}
.ya1{bottom:543.315000px;}
.y8e{bottom:544.755000px;}
.y76{bottom:550.875000px;}
.y27{bottom:556.635000px;}
.ya0{bottom:560.595000px;}
.y8d{bottom:562.035000px;}
.y75{bottom:568.155000px;}
.y26{bottom:573.915000px;}
.y9f{bottom:577.875000px;}
.y8c{bottom:579.315000px;}
.y74{bottom:585.255000px;}
.y25{bottom:591.195000px;}
.y9e{bottom:594.975000px;}
.y8b{bottom:596.595000px;}
.y73{bottom:602.535000px;}
.y24{bottom:610.665000px;}
.y8a{bottom:611.385000px;}
.y9d{bottom:612.285000px;}
.y72{bottom:619.845000px;}
.y23{bottom:627.945000px;}
.y9c{bottom:629.565000px;}
.y71{bottom:637.125000px;}
.y22{bottom:645.225000px;}
.y9b{bottom:646.845000px;}
.y70{bottom:654.405000px;}
.y21{bottom:662.505000px;}
.y9a{bottom:664.125000px;}
.y6f{bottom:671.685000px;}
.y99{bottom:677.985000px;}
.y20{bottom:679.785000px;}
.y89{bottom:681.045000px;}
.y6e{bottom:688.785000px;}
.y1f{bottom:696.885000px;}
.y6d{bottom:706.065000px;}
.y1e{bottom:714.165000px;}
.y6c{bottom:723.345000px;}
.y1d{bottom:731.445000px;}
.y6b{bottom:740.625000px;}
.y1c{bottom:748.725000px;}
.y88{bottom:750.885000px;}
.y6a{bottom:757.905000px;}
.y1b{bottom:766.005000px;}
.y51{bottom:775.005000px;}
.y1a{bottom:783.105000px;}
.y50{bottom:792.285000px;}
.y19{bottom:800.385000px;}
.y86{bottom:803.265000px;}
.y4f{bottom:809.565000px;}
.y18{bottom:817.665000px;}
.y4e{bottom:826.845000px;}
.y17{bottom:837.105000px;}
.y4d{bottom:844.125000px;}
.y16{bottom:854.925000px;}
.y4c{bottom:861.405000px;}
.y83{bottom:873.150000px;}
.y15{bottom:873.870000px;}
.y4b{bottom:878.550000px;}
.y14{bottom:892.770000px;}
.y4a{bottom:895.830000px;}
.y13{bottom:911.850000px;}
.y49{bottom:913.110000px;}
.y7f{bottom:925.710000px;}
.y48{bottom:930.390000px;}
.y12{bottom:930.750000px;}
.y47{bottom:947.670000px;}
.y11{bottom:949.830000px;}
.y46{bottom:964.950000px;}
.y10{bottom:968.730000px;}
.y45{bottom:982.050000px;}
.yf{bottom:987.810000px;}
.y7d{bottom:995.370000px;}
.y44{bottom:999.330000px;}
.ye{bottom:1007.070000px;}
.y43{bottom:1016.610000px;}
.yd{bottom:1027.770000px;}
.y42{bottom:1033.890000px;}
.yc{bottom:1048.290000px;}
.y41{bottom:1051.170000px;}
.y8{bottom:1069.530000px;}
.y7{bottom:1088.250000px;}
.y6{bottom:1104.090000px;}
.y5{bottom:1121.910000px;}
.y4{bottom:1138.680000px;}
.y3{bottom:1180.620000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.hc{height:17.280000px;}
.h6{height:37.705078px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.hb{height:43.506914px;}
.ha{height:45.024258px;}
.h3{height:46.251562px;}
.h9{height:46.736719px;}
.h4{height:50.800781px;}
.he{height:51.660000px;}
.h8{height:53.224453px;}
.h7{height:65.884219px;}
.hd{height:68.940000px;}
.h10{height:69.120000px;}
.hf{height:69.156000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:116.136000px;}
.w3{width:124.380000px;}
.w5{width:148.176000px;}
.w7{width:158.790000px;}
.w4{width:211.890000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:7.740000px;}
.x2c{left:9.360000px;}
.x2d{left:10.980000px;}
.x25{left:13.320000px;}
.x22{left:15.480000px;}
.x27{left:16.740000px;}
.x1d{left:22.140000px;}
.x29{left:26.100000px;}
.x32{left:27.180000px;}
.x2e{left:30.240000px;}
.x28{left:31.320000px;}
.x2f{left:32.580000px;}
.x30{left:34.200000px;}
.x31{left:36.720000px;}
.x2a{left:44.280000px;}
.x24{left:46.620000px;}
.x1f{left:52.020000px;}
.x2b{left:53.280000px;}
.x1c{left:100.296000px;}
.x1{left:108.035987px;}
.x16{left:111.275987px;}
.x2{left:123.155987px;}
.x12{left:133.415987px;}
.x18{left:135.035987px;}
.x7{left:142.415987px;}
.x4{left:157.169987px;}
.x37{left:162.029987px;}
.x8{left:189.929987px;}
.x1a{left:223.229987px;}
.x1e{left:225.390000px;}
.xf{left:238.889987px;}
.x17{left:240.689987px;}
.x36{left:254.549987px;}
.x35{left:255.989987px;}
.x33{left:258.869987px;}
.x38{left:268.049987px;}
.xb{left:273.449987px;}
.xc{left:312.194987px;}
.x10{left:321.194987px;}
.xd{left:330.734987px;}
.x1b{left:346.394987px;}
.x11{left:363.494987px;}
.xe{left:385.994987px;}
.x13{left:390.314987px;}
.x6{left:396.434987px;}
.xa{left:407.054987px;}
.x14{left:408.134987px;}
.x5{left:412.274987px;}
.x20{left:438.015000px;}
.x9{left:446.474987px;}
.x3{left:518.504987px;}
.x21{left:586.905000px;}
.x19{left:601.844987px;}
.x23{left:703.950000px;}
.x34{left:785.309987px;}
.x15{left:856.799987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-0.230933pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.480000pt;}
.ls4{letter-spacing:29.371307pt;}
.ls5{letter-spacing:32.571307pt;}
.ls9{letter-spacing:40.891307pt;}
.ws4{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws7{word-spacing:-13.049067pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws9{word-spacing:-0.053120pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-1.175040pt;}
._0{width:1.175467pt;}
._b{width:2.127573pt;}
._2{width:3.773867pt;}
._f{width:4.665387pt;}
._11{width:5.594240pt;}
._c{width:6.488533pt;}
._7{width:7.549440pt;}
._6{width:9.030400pt;}
._12{width:9.979307pt;}
._9{width:10.989013pt;}
._8{width:12.270720pt;}
._a{width:14.381867pt;}
._10{width:15.551573pt;}
._1c{width:16.520320pt;}
._13{width:17.801600pt;}
._e{width:18.698240pt;}
._d{width:19.920000pt;}
._24{width:20.982400pt;}
._23{width:21.885440pt;}
._2b{width:23.891840pt;}
._2a{width:25.065813pt;}
._15{width:27.349973pt;}
._14{width:28.259840pt;}
._16{width:30.036053pt;}
._29{width:31.346773pt;}
._28{width:32.343253pt;}
._1b{width:41.805440pt;}
._17{width:49.082880pt;}
._25{width:50.988373pt;}
._1e{width:51.898240pt;}
._1f{width:54.926080pt;}
._18{width:57.582080pt;}
._2c{width:60.284373pt;}
._22{width:71.598933pt;}
._1d{width:101.618560pt;}
._27{width:119.035093pt;}
._5{width:120.938667pt;}
._20{width:151.650773pt;}
._19{width:163.284053pt;}
._26{width:164.930773pt;}
._1a{width:196.430933pt;}
._21{width:224.432000pt;}
._4{width:566.138667pt;}
._3{width:665.098667pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:2.880000pt;}
.y82{bottom:18.080000pt;}
.y85{bottom:18.240000pt;}
.yb{bottom:32.640000pt;}
.y81{bottom:33.440000pt;}
.y84{bottom:33.600000pt;}
.y80{bottom:48.800000pt;}
.y87{bottom:48.960000pt;}
.ya{bottom:49.120000pt;}
.y9{bottom:62.912000pt;}
.y7c{bottom:102.912000pt;}
.y69{bottom:104.192000pt;}
.y40{bottom:111.552000pt;}
.yb9{bottom:114.912000pt;}
.y7b{bottom:115.392000pt;}
.y68{bottom:119.552000pt;}
.ycd{bottom:121.632000pt;}
.y3f{bottom:126.752000pt;}
.yb8{bottom:130.272000pt;}
.y67{bottom:134.906667pt;}
.ycc{bottom:136.986667pt;}
.y3e{bottom:142.106667pt;}
.yb7{bottom:145.626667pt;}
.y66{bottom:150.266667pt;}
.ycb{bottom:152.346667pt;}
.y3d{bottom:157.466667pt;}
.yb6{bottom:160.986667pt;}
.y65{bottom:165.626667pt;}
.yca{bottom:167.546667pt;}
.y3c{bottom:172.826667pt;}
.yb5{bottom:176.186667pt;}
.y64{bottom:180.986667pt;}
.yc9{bottom:182.906667pt;}
.y3b{bottom:188.186667pt;}
.yb4{bottom:191.546667pt;}
.y63{bottom:196.186667pt;}
.yc8{bottom:198.266667pt;}
.y3a{bottom:203.546667pt;}
.yb3{bottom:206.906667pt;}
.y62{bottom:211.546667pt;}
.yc7{bottom:213.626667pt;}
.y39{bottom:218.746667pt;}
.yb2{bottom:222.266667pt;}
.y61{bottom:226.906667pt;}
.yc6{bottom:228.986667pt;}
.y38{bottom:234.106667pt;}
.yb1{bottom:237.626667pt;}
.y60{bottom:242.266667pt;}
.yc5{bottom:244.346667pt;}
.y37{bottom:249.466667pt;}
.yb0{bottom:252.986667pt;}
.y5f{bottom:257.626667pt;}
.yc4{bottom:259.546667pt;}
.y36{bottom:264.826667pt;}
.yaf{bottom:268.186667pt;}
.y5e{bottom:272.986667pt;}
.yc3{bottom:274.906667pt;}
.y35{bottom:280.186667pt;}
.yae{bottom:283.546667pt;}
.y5d{bottom:288.186667pt;}
.yc2{bottom:290.266667pt;}
.y34{bottom:295.386667pt;}
.yad{bottom:298.906667pt;}
.y5c{bottom:303.586667pt;}
.yc1{bottom:305.666667pt;}
.y33{bottom:310.786667pt;}
.yac{bottom:314.306667pt;}
.y5b{bottom:318.946667pt;}
.yc0{bottom:321.026667pt;}
.y32{bottom:326.146667pt;}
.yab{bottom:329.666667pt;}
.y98{bottom:330.946667pt;}
.y5a{bottom:334.306667pt;}
.ybf{bottom:336.226667pt;}
.y31{bottom:341.506667pt;}
.yaa{bottom:344.866667pt;}
.y97{bottom:346.306667pt;}
.y59{bottom:349.666667pt;}
.ybe{bottom:351.586667pt;}
.y30{bottom:356.866667pt;}
.ya9{bottom:360.226667pt;}
.y96{bottom:361.666667pt;}
.y58{bottom:365.026667pt;}
.ybd{bottom:366.946667pt;}
.y2f{bottom:372.226667pt;}
.ya8{bottom:375.586667pt;}
.y95{bottom:377.026667pt;}
.y57{bottom:380.226667pt;}
.ybc{bottom:382.306667pt;}
.y2e{bottom:387.426667pt;}
.ya7{bottom:390.946667pt;}
.y94{bottom:392.226667pt;}
.y56{bottom:395.586667pt;}
.ybb{bottom:397.666667pt;}
.y2d{bottom:402.786667pt;}
.ya6{bottom:406.306667pt;}
.y93{bottom:407.586667pt;}
.y55{bottom:410.946667pt;}
.yba{bottom:413.026667pt;}
.y2c{bottom:418.146667pt;}
.ya5{bottom:421.666667pt;}
.y92{bottom:422.946667pt;}
.y54{bottom:426.306667pt;}
.y7a{bottom:428.226667pt;}
.y2b{bottom:433.506667pt;}
.ya4{bottom:436.866667pt;}
.y91{bottom:438.306667pt;}
.y53{bottom:441.666667pt;}
.y79{bottom:443.586667pt;}
.y2a{bottom:448.866667pt;}
.ya3{bottom:452.226667pt;}
.y90{bottom:453.666667pt;}
.y52{bottom:453.986667pt;}
.y78{bottom:458.946667pt;}
.y29{bottom:464.226667pt;}
.ya2{bottom:467.586667pt;}
.y8f{bottom:469.026667pt;}
.y77{bottom:474.306667pt;}
.y28{bottom:479.426667pt;}
.ya1{bottom:482.946667pt;}
.y8e{bottom:484.226667pt;}
.y76{bottom:489.666667pt;}
.y27{bottom:494.786667pt;}
.ya0{bottom:498.306667pt;}
.y8d{bottom:499.586667pt;}
.y75{bottom:505.026667pt;}
.y26{bottom:510.146667pt;}
.y9f{bottom:513.666667pt;}
.y8c{bottom:514.946667pt;}
.y74{bottom:520.226667pt;}
.y25{bottom:525.506667pt;}
.y9e{bottom:528.866667pt;}
.y8b{bottom:530.306667pt;}
.y73{bottom:535.586667pt;}
.y24{bottom:542.813333pt;}
.y8a{bottom:543.453333pt;}
.y9d{bottom:544.253333pt;}
.y72{bottom:550.973333pt;}
.y23{bottom:558.173333pt;}
.y9c{bottom:559.613333pt;}
.y71{bottom:566.333333pt;}
.y22{bottom:573.533333pt;}
.y9b{bottom:574.973333pt;}
.y70{bottom:581.693333pt;}
.y21{bottom:588.893333pt;}
.y9a{bottom:590.333333pt;}
.y6f{bottom:597.053333pt;}
.y99{bottom:602.653333pt;}
.y20{bottom:604.253333pt;}
.y89{bottom:605.373333pt;}
.y6e{bottom:612.253333pt;}
.y1f{bottom:619.453333pt;}
.y6d{bottom:627.613333pt;}
.y1e{bottom:634.813333pt;}
.y6c{bottom:642.973333pt;}
.y1d{bottom:650.173333pt;}
.y6b{bottom:658.333333pt;}
.y1c{bottom:665.533333pt;}
.y88{bottom:667.453333pt;}
.y6a{bottom:673.693333pt;}
.y1b{bottom:680.893333pt;}
.y51{bottom:688.893333pt;}
.y1a{bottom:696.093333pt;}
.y50{bottom:704.253333pt;}
.y19{bottom:711.453333pt;}
.y86{bottom:714.013333pt;}
.y4f{bottom:719.613333pt;}
.y18{bottom:726.813333pt;}
.y4e{bottom:734.973333pt;}
.y17{bottom:744.093333pt;}
.y4d{bottom:750.333333pt;}
.y16{bottom:759.933333pt;}
.y4c{bottom:765.693333pt;}
.y83{bottom:776.133333pt;}
.y15{bottom:776.773333pt;}
.y4b{bottom:780.933333pt;}
.y14{bottom:793.573333pt;}
.y4a{bottom:796.293333pt;}
.y13{bottom:810.533333pt;}
.y49{bottom:811.653333pt;}
.y7f{bottom:822.853333pt;}
.y48{bottom:827.013333pt;}
.y12{bottom:827.333333pt;}
.y47{bottom:842.373333pt;}
.y11{bottom:844.293333pt;}
.y46{bottom:857.733333pt;}
.y10{bottom:861.093333pt;}
.y45{bottom:872.933333pt;}
.yf{bottom:878.053333pt;}
.y7d{bottom:884.773333pt;}
.y44{bottom:888.293333pt;}
.ye{bottom:895.173333pt;}
.y43{bottom:903.653333pt;}
.yd{bottom:913.573333pt;}
.y42{bottom:919.013333pt;}
.yc{bottom:931.813333pt;}
.y41{bottom:934.373333pt;}
.y8{bottom:950.693333pt;}
.y7{bottom:967.333333pt;}
.y6{bottom:981.413333pt;}
.y5{bottom:997.253333pt;}
.y4{bottom:1012.160000pt;}
.y3{bottom:1049.440000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.hc{height:15.360000pt;}
.h6{height:33.515625pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.hb{height:38.672812pt;}
.ha{height:40.021563pt;}
.h3{height:41.112500pt;}
.h9{height:41.543750pt;}
.h4{height:45.156250pt;}
.he{height:45.920000pt;}
.h8{height:47.310625pt;}
.h7{height:58.563750pt;}
.hd{height:61.280000pt;}
.h10{height:61.440000pt;}
.hf{height:61.472000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:103.232000pt;}
.w3{width:110.560000pt;}
.w5{width:131.712000pt;}
.w7{width:141.146667pt;}
.w4{width:188.346667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:6.880000pt;}
.x2c{left:8.320000pt;}
.x2d{left:9.760000pt;}
.x25{left:11.840000pt;}
.x22{left:13.760000pt;}
.x27{left:14.880000pt;}
.x1d{left:19.680000pt;}
.x29{left:23.200000pt;}
.x32{left:24.160000pt;}
.x2e{left:26.880000pt;}
.x28{left:27.840000pt;}
.x2f{left:28.960000pt;}
.x30{left:30.400000pt;}
.x31{left:32.640000pt;}
.x2a{left:39.360000pt;}
.x24{left:41.440000pt;}
.x1f{left:46.240000pt;}
.x2b{left:47.360000pt;}
.x1c{left:89.152000pt;}
.x1{left:96.031988pt;}
.x16{left:98.911988pt;}
.x2{left:109.471988pt;}
.x12{left:118.591988pt;}
.x18{left:120.031988pt;}
.x7{left:126.591988pt;}
.x4{left:139.706655pt;}
.x37{left:144.026655pt;}
.x8{left:168.826655pt;}
.x1a{left:198.426655pt;}
.x1e{left:200.346667pt;}
.xf{left:212.346655pt;}
.x17{left:213.946655pt;}
.x36{left:226.266655pt;}
.x35{left:227.546655pt;}
.x33{left:230.106655pt;}
.x38{left:238.266655pt;}
.xb{left:243.066655pt;}
.xc{left:277.506655pt;}
.x10{left:285.506655pt;}
.xd{left:293.986655pt;}
.x1b{left:307.906655pt;}
.x11{left:323.106655pt;}
.xe{left:343.106655pt;}
.x13{left:346.946655pt;}
.x6{left:352.386655pt;}
.xa{left:361.826655pt;}
.x14{left:362.786655pt;}
.x5{left:366.466655pt;}
.x20{left:389.346667pt;}
.x9{left:396.866655pt;}
.x3{left:460.893322pt;}
.x21{left:521.693333pt;}
.x19{left:534.973322pt;}
.x23{left:625.733333pt;}
.x34{left:698.053322pt;}
.x15{left:761.599988pt;}
}




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