
    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_81e20ebaba0f219c51a894d0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9fff49fdbe12157c98766533.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a80cf2bd84358ecb94da9714.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_a56f682bba0b8407f4bcf58f.woff2')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_7b50e1700e7996d6ae7f76f2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_00f0b033546ddf25bec18a5c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5dd06fb3769f46ad171bc37e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_67376d795f8c429e7ce549cb.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2af05e55b5809cf903211957.woff2')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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls7{letter-spacing:-1.440000px;}
.ls8{letter-spacing:-1.152000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.720000px;}
.ls1{letter-spacing:2.340000px;}
.ls3{letter-spacing:3.024000px;}
.ls4{letter-spacing:53.424000px;}
.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;}
}
.ws3{word-spacing:-18.288000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-16.848000px;}
.ws4{word-spacing:-16.560000px;}
.ws1{word-spacing:-11.880000px;}
.ws2{word-spacing:0.000000px;}
._1b{margin-left:-4.940160px;}
._7{margin-left:-3.514560px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._4{width:2.369280px;}
._3{width:3.415680px;}
._e{width:5.002560px;}
._13{width:6.952320px;}
._5{width:8.110560px;}
._6{width:9.648000px;}
._9{width:11.164800px;}
._8{width:12.240000px;}
._b{width:13.777920px;}
._a{width:14.976000px;}
._14{width:15.999360px;}
._15{width:19.474560px;}
._16{width:21.369600px;}
._f{width:22.896000px;}
._10{width:24.227040px;}
._20{width:25.691040px;}
._1a{width:28.371840px;}
._d{width:29.466240px;}
._c{width:30.744000px;}
._12{width:32.982720px;}
._11{width:34.085280px;}
._19{width:37.556160px;}
._17{width:38.997120px;}
._18{width:39.997440px;}
._1f{width:104.948160px;}
._1d{width:106.227840px;}
._1e{width:107.554560px;}
._1c{width:1992.972000px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:90.720000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y64{bottom:7.560000px;}
.y97{bottom:7.590000px;}
.y90{bottom:7.605000px;}
.y92{bottom:7.920000px;}
.y67{bottom:7.965000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.y6e{bottom:12.600000px;}
.y76{bottom:12.630000px;}
.y83{bottom:12.960000px;}
.y88{bottom:13.674000px;}
.y6b{bottom:13.680000px;}
.y7e{bottom:13.725000px;}
.y70{bottom:14.040000px;}
.y8{bottom:57.240000px;}
.y5{bottom:73.476000px;}
.y61{bottom:107.676000px;}
.y8c{bottom:108.756000px;}
.yb9{bottom:112.716000px;}
.y89{bottom:114.156000px;}
.y34{bottom:115.236000px;}
.y8b{bottom:128.556000px;}
.y60{bottom:131.436000px;}
.yb8{bottom:132.516000px;}
.y33{bottom:138.996000px;}
.y87{bottom:149.436000px;}
.y5f{bottom:155.190000px;}
.ycf{bottom:156.270000px;}
.y32{bottom:162.750000px;}
.y5e{bottom:179.310000px;}
.yce{bottom:180.030000px;}
.y86{bottom:186.150000px;}
.y31{bottom:186.510000px;}
.y5d{bottom:203.115000px;}
.ycd{bottom:203.835000px;}
.y30{bottom:210.315000px;}
.y85{bottom:222.915000px;}
.y5c{bottom:226.875000px;}
.ycc{bottom:227.595000px;}
.y2f{bottom:234.075000px;}
.y5b{bottom:250.635000px;}
.ycb{bottom:251.355000px;}
.y2e{bottom:257.835000px;}
.y84{bottom:259.635000px;}
.y5a{bottom:274.395000px;}
.yca{bottom:275.475000px;}
.y2d{bottom:281.595000px;}
.y82{bottom:296.355000px;}
.y59{bottom:298.155000px;}
.yc9{bottom:298.875000px;}
.y2c{bottom:305.715000px;}
.y58{bottom:321.945000px;}
.yc8{bottom:322.665000px;}
.y2b{bottom:329.505000px;}
.y81{bottom:331.305000px;}
.y57{bottom:345.705000px;}
.yc7{bottom:346.785000px;}
.y2a{bottom:353.265000px;}
.y80{bottom:368.025000px;}
.y56{bottom:369.825000px;}
.yc6{bottom:370.545000px;}
.y29{bottom:377.025000px;}
.y55{bottom:393.585000px;}
.yc5{bottom:394.305000px;}
.y28{bottom:400.785000px;}
.y7f{bottom:405.105000px;}
.yb7{bottom:410.145000px;}
.y54{bottom:417.345000px;}
.yc4{bottom:418.065000px;}
.y27{bottom:424.545000px;}
.yb6{bottom:433.905000px;}
.yab{bottom:434.625000px;}
.y53{bottom:441.105000px;}
.y7d{bottom:441.825000px;}
.y26{bottom:448.350000px;}
.yb5{bottom:457.710000px;}
.yaa{bottom:459.510000px;}
.y52{bottom:464.910000px;}
.yc3{bottom:465.990000px;}
.y25{bottom:472.110000px;}
.y7c{bottom:478.590000px;}
.yb4{bottom:481.110000px;}
.ya9{bottom:483.990000px;}
.y51{bottom:488.670000px;}
.yc2{bottom:489.750000px;}
.y24{bottom:495.510000px;}
.yb3{bottom:500.910000px;}
.ya8{bottom:508.470000px;}
.y50{bottom:512.430000px;}
.y7b{bottom:513.510000px;}
.y23{bottom:519.630000px;}
.ya7{bottom:532.950000px;}
.y4f{bottom:536.190000px;}
.yc1{bottom:537.270000px;}
.y22{bottom:543.750000px;}
.y7a{bottom:550.230000px;}
.ya6{bottom:557.430000px;}
.y4e{bottom:559.950000px;}
.yc0{bottom:561.030000px;}
.y21{bottom:567.510000px;}
.ya5{bottom:582.300000px;}
.y4d{bottom:584.100000px;}
.ybf{bottom:584.820000px;}
.y79{bottom:586.980000px;}
.y20{bottom:591.300000px;}
.ya4{bottom:606.780000px;}
.y4c{bottom:607.860000px;}
.ybe{bottom:608.580000px;}
.y1f{bottom:615.060000px;}
.y78{bottom:623.700000px;}
.ya3{bottom:631.260000px;}
.y4b{bottom:631.620000px;}
.ybd{bottom:632.340000px;}
.y1e{bottom:638.820000px;}
.y4a{bottom:655.380000px;}
.ya2{bottom:655.740000px;}
.ybc{bottom:656.460000px;}
.y77{bottom:660.780000px;}
.y1d{bottom:662.580000px;}
.y49{bottom:679.140000px;}
.ybb{bottom:679.860000px;}
.ya1{bottom:680.220000px;}
.y1c{bottom:686.340000px;}
.y75{bottom:697.500000px;}
.yba{bottom:699.330000px;}
.y48{bottom:702.930000px;}
.ya0{bottom:705.090000px;}
.y1b{bottom:710.490000px;}
.y47{bottom:726.690000px;}
.y9f{bottom:729.570000px;}
.y74{bottom:732.450000px;}
.y1a{bottom:734.250000px;}
.yb2{bottom:744.690000px;}
.y46{bottom:750.450000px;}
.y9e{bottom:754.050000px;}
.y19{bottom:758.010000px;}
.yb1{bottom:768.450000px;}
.y73{bottom:769.170000px;}
.y45{bottom:774.570000px;}
.y9d{bottom:778.530000px;}
.y18{bottom:781.770000px;}
.yb0{bottom:792.210000px;}
.y44{bottom:798.330000px;}
.y9c{bottom:803.010000px;}
.y17{bottom:805.530000px;}
.y72{bottom:805.890000px;}
.yaf{bottom:815.970000px;}
.y43{bottom:822.090000px;}
.y9b{bottom:827.895000px;}
.y16{bottom:829.335000px;}
.yae{bottom:839.775000px;}
.y71{bottom:842.655000px;}
.y42{bottom:845.895000px;}
.y9a{bottom:852.375000px;}
.y15{bottom:853.095000px;}
.yad{bottom:863.535000px;}
.y41{bottom:869.655000px;}
.y14{bottom:876.855000px;}
.y6f{bottom:879.375000px;}
.yac{bottom:882.975000px;}
.y8a{bottom:893.055000px;}
.y40{bottom:893.415000px;}
.y13{bottom:900.975000px;}
.y99{bottom:901.335000px;}
.y6d{bottom:916.455000px;}
.y3f{bottom:917.175000px;}
.y12{bottom:924.375000px;}
.y98{bottom:925.815000px;}
.y3e{bottom:940.935000px;}
.y11{bottom:948.495000px;}
.y96{bottom:950.655000px;}
.y6c{bottom:951.405000px;}
.y3d{bottom:965.085000px;}
.y10{bottom:972.285000px;}
.y95{bottom:975.165000px;}
.y6a{bottom:988.125000px;}
.y3c{bottom:988.845000px;}
.yf{bottom:996.045000px;}
.y94{bottom:999.645000px;}
.y3b{bottom:1012.605000px;}
.ye{bottom:1019.445000px;}
.y93{bottom:1024.125000px;}
.y69{bottom:1032.045000px;}
.y3a{bottom:1036.365000px;}
.yd{bottom:1043.205000px;}
.y91{bottom:1048.605000px;}
.y68{bottom:1055.805000px;}
.y39{bottom:1060.125000px;}
.yc{bottom:1066.965000px;}
.y66{bottom:1073.445000px;}
.y38{bottom:1083.930000px;}
.yb{bottom:1094.730000px;}
.y8f{bottom:1097.970000px;}
.y65{bottom:1098.690000px;}
.y37{bottom:1107.690000px;}
.y8e{bottom:1122.450000px;}
.ya{bottom:1122.810000px;}
.y63{bottom:1123.170000px;}
.y36{bottom:1131.450000px;}
.y8d{bottom:1146.930000px;}
.y9{bottom:1150.530000px;}
.y62{bottom:1154.850000px;}
.y35{bottom:1155.210000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.hf{height:23.760000px;}
.h15{height:23.796000px;}
.h16{height:24.120000px;}
.h17{height:24.156000px;}
.h10{height:24.516000px;}
.h5{height:27.000000px;}
.h12{height:34.200000px;}
.h14{height:34.236000px;}
.h11{height:36.000000px;}
.h13{height:36.036000px;}
.h7{height:50.229844px;}
.he{height:54.878906px;}
.h4{height:55.147500px;}
.h3{height:66.757500px;}
.ha{height:70.628906px;}
.h6{height:70.664062px;}
.h2{height:72.562500px;}
.hc{height:73.998281px;}
.h18{height:74.004654px;}
.hd{height:74.118281px;}
.hb{height:75.251250px;}
.h8{height:91.428750px;}
.h9{height:105.943359px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:73.440000px;}
.wd{width:83.916000px;}
.wa{width:90.036000px;}
.w6{width:94.716000px;}
.w4{width:104.076000px;}
.w7{width:105.156000px;}
.w8{width:105.192000px;}
.wf{width:105.516000px;}
.w9{width:126.396000px;}
.wc{width:142.632000px;}
.wb{width:143.316000px;}
.we{width:159.195000px;}
.w3{width:298.905000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1e{left:7.560000px;}
.x15{left:10.080000px;}
.x8{left:38.550000px;}
.x5{left:95.796000px;}
.x13{left:104.075987px;}
.xb{left:123.515987px;}
.x2d{left:127.835987px;}
.x10{left:137.915987px;}
.x14{left:139.752000px;}
.xe{left:149.111987px;}
.xc{left:151.634987px;}
.x29{left:153.434987px;}
.xa{left:156.674987px;}
.x1b{left:158.114987px;}
.x22{left:163.154987px;}
.x3{left:190.154987px;}
.x2b{left:191.234987px;}
.x16{left:213.915000px;}
.x27{left:231.554987px;}
.x1c{left:236.264987px;}
.x1d{left:257.865000px;}
.x11{left:278.024987px;}
.x23{left:287.385000px;}
.x6{left:290.634000px;}
.x12{left:296.024987px;}
.x17{left:309.345000px;}
.xf{left:313.304987px;}
.x2{left:333.509987px;}
.xd{left:337.109987px;}
.x4{left:342.869987px;}
.x1f{left:348.990000px;}
.x24{left:372.030000px;}
.x7{left:394.710000px;}
.x18{left:415.230000px;}
.x20{left:493.020000px;}
.x9{left:498.780000px;}
.x19{left:521.130000px;}
.x25{left:531.930000px;}
.x21{left:597.809987px;}
.x1a{left:627.015000px;}
.x2a{left:661.934987px;}
.x2c{left:679.934987px;}
.x26{left:683.174987px;}
.x28{left:717.764987px;}
.x1{left:797.684987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls7{letter-spacing:-1.280000pt;}
.ls8{letter-spacing:-1.024000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1{letter-spacing:2.080000pt;}
.ls3{letter-spacing:2.688000pt;}
.ls4{letter-spacing:47.488000pt;}
.ws3{word-spacing:-16.256000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-14.976000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws1{word-spacing:-10.560000pt;}
.ws2{word-spacing:0.000000pt;}
._1b{margin-left:-4.391253pt;}
._7{margin-left:-3.124053pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._4{width:2.106027pt;}
._3{width:3.036160pt;}
._e{width:4.446720pt;}
._13{width:6.179840pt;}
._5{width:7.209387pt;}
._6{width:8.576000pt;}
._9{width:9.924267pt;}
._8{width:10.880000pt;}
._b{width:12.247040pt;}
._a{width:13.312000pt;}
._14{width:14.221653pt;}
._15{width:17.310720pt;}
._16{width:18.995200pt;}
._f{width:20.352000pt;}
._10{width:21.535147pt;}
._20{width:22.836480pt;}
._1a{width:25.219413pt;}
._d{width:26.192213pt;}
._c{width:27.328000pt;}
._12{width:29.317973pt;}
._11{width:30.298027pt;}
._19{width:33.383253pt;}
._17{width:34.664107pt;}
._18{width:35.553280pt;}
._1f{width:93.287253pt;}
._1d{width:94.424747pt;}
._1e{width:95.604053pt;}
._1c{width:1771.530667pt;}
.fs5{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:80.640000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:6.720000pt;}
.y97{bottom:6.746667pt;}
.y90{bottom:6.760000pt;}
.y92{bottom:7.040000pt;}
.y67{bottom:7.080000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.y6e{bottom:11.200000pt;}
.y76{bottom:11.226667pt;}
.y83{bottom:11.520000pt;}
.y88{bottom:12.154667pt;}
.y6b{bottom:12.160000pt;}
.y7e{bottom:12.200000pt;}
.y70{bottom:12.480000pt;}
.y8{bottom:50.880000pt;}
.y5{bottom:65.312000pt;}
.y61{bottom:95.712000pt;}
.y8c{bottom:96.672000pt;}
.yb9{bottom:100.192000pt;}
.y89{bottom:101.472000pt;}
.y34{bottom:102.432000pt;}
.y8b{bottom:114.272000pt;}
.y60{bottom:116.832000pt;}
.yb8{bottom:117.792000pt;}
.y33{bottom:123.552000pt;}
.y87{bottom:132.832000pt;}
.y5f{bottom:137.946667pt;}
.ycf{bottom:138.906667pt;}
.y32{bottom:144.666667pt;}
.y5e{bottom:159.386667pt;}
.yce{bottom:160.026667pt;}
.y86{bottom:165.466667pt;}
.y31{bottom:165.786667pt;}
.y5d{bottom:180.546667pt;}
.ycd{bottom:181.186667pt;}
.y30{bottom:186.946667pt;}
.y85{bottom:198.146667pt;}
.y5c{bottom:201.666667pt;}
.ycc{bottom:202.306667pt;}
.y2f{bottom:208.066667pt;}
.y5b{bottom:222.786667pt;}
.ycb{bottom:223.426667pt;}
.y2e{bottom:229.186667pt;}
.y84{bottom:230.786667pt;}
.y5a{bottom:243.906667pt;}
.yca{bottom:244.866667pt;}
.y2d{bottom:250.306667pt;}
.y82{bottom:263.426667pt;}
.y59{bottom:265.026667pt;}
.yc9{bottom:265.666667pt;}
.y2c{bottom:271.746667pt;}
.y58{bottom:286.173333pt;}
.yc8{bottom:286.813333pt;}
.y2b{bottom:292.893333pt;}
.y81{bottom:294.493333pt;}
.y57{bottom:307.293333pt;}
.yc7{bottom:308.253333pt;}
.y2a{bottom:314.013333pt;}
.y80{bottom:327.133333pt;}
.y56{bottom:328.733333pt;}
.yc6{bottom:329.373333pt;}
.y29{bottom:335.133333pt;}
.y55{bottom:349.853333pt;}
.yc5{bottom:350.493333pt;}
.y28{bottom:356.253333pt;}
.y7f{bottom:360.093333pt;}
.yb7{bottom:364.573333pt;}
.y54{bottom:370.973333pt;}
.yc4{bottom:371.613333pt;}
.y27{bottom:377.373333pt;}
.yb6{bottom:385.693333pt;}
.yab{bottom:386.333333pt;}
.y53{bottom:392.093333pt;}
.y7d{bottom:392.733333pt;}
.y26{bottom:398.533333pt;}
.yb5{bottom:406.853333pt;}
.yaa{bottom:408.453333pt;}
.y52{bottom:413.253333pt;}
.yc3{bottom:414.213333pt;}
.y25{bottom:419.653333pt;}
.y7c{bottom:425.413333pt;}
.yb4{bottom:427.653333pt;}
.ya9{bottom:430.213333pt;}
.y51{bottom:434.373333pt;}
.yc2{bottom:435.333333pt;}
.y24{bottom:440.453333pt;}
.yb3{bottom:445.253333pt;}
.ya8{bottom:451.973333pt;}
.y50{bottom:455.493333pt;}
.y7b{bottom:456.453333pt;}
.y23{bottom:461.893333pt;}
.ya7{bottom:473.733333pt;}
.y4f{bottom:476.613333pt;}
.yc1{bottom:477.573333pt;}
.y22{bottom:483.333333pt;}
.y7a{bottom:489.093333pt;}
.ya6{bottom:495.493333pt;}
.y4e{bottom:497.733333pt;}
.yc0{bottom:498.693333pt;}
.y21{bottom:504.453333pt;}
.ya5{bottom:517.600000pt;}
.y4d{bottom:519.200000pt;}
.ybf{bottom:519.840000pt;}
.y79{bottom:521.760000pt;}
.y20{bottom:525.600000pt;}
.ya4{bottom:539.360000pt;}
.y4c{bottom:540.320000pt;}
.ybe{bottom:540.960000pt;}
.y1f{bottom:546.720000pt;}
.y78{bottom:554.400000pt;}
.ya3{bottom:561.120000pt;}
.y4b{bottom:561.440000pt;}
.ybd{bottom:562.080000pt;}
.y1e{bottom:567.840000pt;}
.y4a{bottom:582.560000pt;}
.ya2{bottom:582.880000pt;}
.ybc{bottom:583.520000pt;}
.y77{bottom:587.360000pt;}
.y1d{bottom:588.960000pt;}
.y49{bottom:603.680000pt;}
.ybb{bottom:604.320000pt;}
.ya1{bottom:604.640000pt;}
.y1c{bottom:610.080000pt;}
.y75{bottom:620.000000pt;}
.yba{bottom:621.626667pt;}
.y48{bottom:624.826667pt;}
.ya0{bottom:626.746667pt;}
.y1b{bottom:631.546667pt;}
.y47{bottom:645.946667pt;}
.y9f{bottom:648.506667pt;}
.y74{bottom:651.066667pt;}
.y1a{bottom:652.666667pt;}
.yb2{bottom:661.946667pt;}
.y46{bottom:667.066667pt;}
.y9e{bottom:670.266667pt;}
.y19{bottom:673.786667pt;}
.yb1{bottom:683.066667pt;}
.y73{bottom:683.706667pt;}
.y45{bottom:688.506667pt;}
.y9d{bottom:692.026667pt;}
.y18{bottom:694.906667pt;}
.yb0{bottom:704.186667pt;}
.y44{bottom:709.626667pt;}
.y9c{bottom:713.786667pt;}
.y17{bottom:716.026667pt;}
.y72{bottom:716.346667pt;}
.yaf{bottom:725.306667pt;}
.y43{bottom:730.746667pt;}
.y9b{bottom:735.906667pt;}
.y16{bottom:737.186667pt;}
.yae{bottom:746.466667pt;}
.y71{bottom:749.026667pt;}
.y42{bottom:751.906667pt;}
.y9a{bottom:757.666667pt;}
.y15{bottom:758.306667pt;}
.yad{bottom:767.586667pt;}
.y41{bottom:773.026667pt;}
.y14{bottom:779.426667pt;}
.y6f{bottom:781.666667pt;}
.yac{bottom:784.866667pt;}
.y8a{bottom:793.826667pt;}
.y40{bottom:794.146667pt;}
.y13{bottom:800.866667pt;}
.y99{bottom:801.186667pt;}
.y6d{bottom:814.626667pt;}
.y3f{bottom:815.266667pt;}
.y12{bottom:821.666667pt;}
.y98{bottom:822.946667pt;}
.y3e{bottom:836.386667pt;}
.y11{bottom:843.106667pt;}
.y96{bottom:845.026667pt;}
.y6c{bottom:845.693333pt;}
.y3d{bottom:857.853333pt;}
.y10{bottom:864.253333pt;}
.y95{bottom:866.813333pt;}
.y6a{bottom:878.333333pt;}
.y3c{bottom:878.973333pt;}
.yf{bottom:885.373333pt;}
.y94{bottom:888.573333pt;}
.y3b{bottom:900.093333pt;}
.ye{bottom:906.173333pt;}
.y93{bottom:910.333333pt;}
.y69{bottom:917.373333pt;}
.y3a{bottom:921.213333pt;}
.yd{bottom:927.293333pt;}
.y91{bottom:932.093333pt;}
.y68{bottom:938.493333pt;}
.y39{bottom:942.333333pt;}
.yc{bottom:948.413333pt;}
.y66{bottom:954.173333pt;}
.y38{bottom:963.493333pt;}
.yb{bottom:973.093333pt;}
.y8f{bottom:975.973333pt;}
.y65{bottom:976.613333pt;}
.y37{bottom:984.613333pt;}
.y8e{bottom:997.733333pt;}
.ya{bottom:998.053333pt;}
.y63{bottom:998.373333pt;}
.y36{bottom:1005.733333pt;}
.y8d{bottom:1019.493333pt;}
.y9{bottom:1022.693333pt;}
.y62{bottom:1026.533333pt;}
.y35{bottom:1026.853333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.hf{height:21.120000pt;}
.h15{height:21.152000pt;}
.h16{height:21.440000pt;}
.h17{height:21.472000pt;}
.h10{height:21.792000pt;}
.h5{height:24.000000pt;}
.h12{height:30.400000pt;}
.h14{height:30.432000pt;}
.h11{height:32.000000pt;}
.h13{height:32.032000pt;}
.h7{height:44.648750pt;}
.he{height:48.781250pt;}
.h4{height:49.020000pt;}
.h3{height:59.340000pt;}
.ha{height:62.781250pt;}
.h6{height:62.812500pt;}
.h2{height:64.500000pt;}
.hc{height:65.776250pt;}
.h18{height:65.781915pt;}
.hd{height:65.882917pt;}
.hb{height:66.890000pt;}
.h8{height:81.270000pt;}
.h9{height:94.171875pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:65.280000pt;}
.wd{width:74.592000pt;}
.wa{width:80.032000pt;}
.w6{width:84.192000pt;}
.w4{width:92.512000pt;}
.w7{width:93.472000pt;}
.w8{width:93.504000pt;}
.wf{width:93.792000pt;}
.w9{width:112.352000pt;}
.wc{width:126.784000pt;}
.wb{width:127.392000pt;}
.we{width:141.506667pt;}
.w3{width:265.693333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.720000pt;}
.x15{left:8.960000pt;}
.x8{left:34.266667pt;}
.x5{left:85.152000pt;}
.x13{left:92.511988pt;}
.xb{left:109.791988pt;}
.x2d{left:113.631988pt;}
.x10{left:122.591988pt;}
.x14{left:124.224000pt;}
.xe{left:132.543988pt;}
.xc{left:134.786655pt;}
.x29{left:136.386655pt;}
.xa{left:139.266655pt;}
.x1b{left:140.546655pt;}
.x22{left:145.026655pt;}
.x3{left:169.026655pt;}
.x2b{left:169.986655pt;}
.x16{left:190.146667pt;}
.x27{left:205.826655pt;}
.x1c{left:210.013322pt;}
.x1d{left:229.213333pt;}
.x11{left:247.133322pt;}
.x23{left:255.453333pt;}
.x6{left:258.341333pt;}
.x12{left:263.133322pt;}
.x17{left:274.973333pt;}
.xf{left:278.493322pt;}
.x2{left:296.453322pt;}
.xd{left:299.653322pt;}
.x4{left:304.773322pt;}
.x1f{left:310.213333pt;}
.x24{left:330.693333pt;}
.x7{left:350.853333pt;}
.x18{left:369.093333pt;}
.x20{left:438.240000pt;}
.x9{left:443.360000pt;}
.x19{left:463.226667pt;}
.x25{left:472.826667pt;}
.x21{left:531.386655pt;}
.x1a{left:557.346667pt;}
.x2a{left:588.386655pt;}
.x2c{left:604.386655pt;}
.x26{left:607.266655pt;}
.x28{left:638.013322pt;}
.x1{left:709.053322pt;}
}




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