
    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_91682c106fb01ece5f77a5eb.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cd1327580f324b3d2d5c624b.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_43da3d7e0deef418c48bf441.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a8b0c26c06cd7329e69263df.woff')format("woff");}.ff4{font-family:ff4;line-height:1.114746;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_a89037249a2a9189ee276c32.woff')format("woff");}.ff5{font-family:ff5;line-height:1.213379;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_775ea8cc5063de7caf92361d.woff')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_c3cf2d5344753fa3030b624a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.117188;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_37b6bb42aeb1242d0ad44955.woff')format("woff");}.ff8{font-family:ff8;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-68.400000px;}
.v2{vertical-align:-63.360000px;}
.v0{vertical-align:0.000000px;}
.ls20{letter-spacing:-0.924000px;}
.lse{letter-spacing:-0.540000px;}
.ls17{letter-spacing:-0.460200px;}
.ls1c{letter-spacing:-0.445800px;}
.lsd{letter-spacing:-0.360000px;}
.ls2a{letter-spacing:-0.315600px;}
.ls29{letter-spacing:-0.226200px;}
.ls26{letter-spacing:-0.216000px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.053280px;}
.ls25{letter-spacing:0.089280px;}
.ls28{letter-spacing:0.089400px;}
.ls14{letter-spacing:0.106800px;}
.ls27{letter-spacing:0.108000px;}
.ls22{letter-spacing:0.126000px;}
.ls4{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.206400px;}
.ls23{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.259920px;}
.ls1e{letter-spacing:0.274200px;}
.ls16{letter-spacing:0.298800px;}
.ls18{letter-spacing:0.300000px;}
.ls1d{letter-spacing:0.342600px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.460080px;}
.ls24{letter-spacing:0.612000px;}
.ls19{letter-spacing:0.900000px;}
.ls8{letter-spacing:1.260000px;}
.ls9{letter-spacing:1.620000px;}
.ls13{letter-spacing:2.340000px;}
.ls7{letter-spacing:2.700000px;}
.lsa{letter-spacing:3.060000px;}
.lsb{letter-spacing:3.780000px;}
.ls12{letter-spacing:4.500000px;}
.ls11{letter-spacing:5.220000px;}
.ls10{letter-spacing:5.940000px;}
.lsf{letter-spacing:6.660000px;}
.lsc{letter-spacing:8.100000px;}
.ls1f{letter-spacing:8.820000px;}
.ls1a{letter-spacing:9.540000px;}
.ls21{letter-spacing:606.600000px;}
.ls1{letter-spacing:915.480000px;}
.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;}
}
.ws6{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.wsd{word-spacing:-15.146400px;}
.ws9{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.479800px;}
.ws1{word-spacing:-13.860000px;}
.ws12{word-spacing:-13.680000px;}
.ws3{word-spacing:-13.518000px;}
.ws0{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.140000px;}
.wsf{word-spacing:-13.122600px;}
.ws10{word-spacing:-13.054200px;}
.wsb{word-spacing:-12.960000px;}
.ws7{word-spacing:-12.780000px;}
.wse{word-spacing:-12.334200px;}
.ws2{word-spacing:-12.060000px;}
.ws13{word-spacing:-10.529400px;}
.ws11{word-spacing:-10.440000px;}
.ws14{word-spacing:-10.213800px;}
.ws15{word-spacing:-10.124400px;}
.ws5{word-spacing:0.000000px;}
._9{margin-left:-3.700080px;}
._7{margin-left:-2.681040px;}
._0{margin-left:-1.476000px;}
._1{width:1.164000px;}
._5{width:2.302080px;}
._3{width:3.406320px;}
._2{width:4.900320px;}
._4{width:6.513840px;}
._8{width:7.529760px;}
._6{width:9.017040px;}
._d{width:10.306560px;}
._c{width:12.256080px;}
._b{width:13.320000px;}
._a{width:17.142720px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:30.240000px;}
.fs8{font-size:33.120000px;}
.fs5{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs9{font-size:51.120000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:172.980000px;}
.y33{bottom:173.160000px;}
.ya8{bottom:214.200000px;}
.y62{bottom:215.280000px;}
.y2f{bottom:216.900000px;}
.y7a{bottom:219.780000px;}
.ya7{bottom:224.280000px;}
.y61{bottom:229.890000px;}
.y79{bottom:231.690000px;}
.y2e{bottom:234.210000px;}
.ya6{bottom:239.790000px;}
.y60{bottom:244.650000px;}
.y5f{bottom:249.150000px;}
.y2d{bottom:251.490000px;}
.ya5{bottom:255.270000px;}
.y5e{bottom:259.230000px;}
.y81{bottom:261.030000px;}
.y7f{bottom:263.730000px;}
.y2c{bottom:268.770000px;}
.ya4{bottom:270.750000px;}
.y5d{bottom:273.990000px;}
.y68{bottom:278.490000px;}
.y78{bottom:282.450000px;}
.y2b{bottom:285.870000px;}
.ya3{bottom:286.230000px;}
.y5c{bottom:288.570000px;}
.y7e{bottom:293.070000px;}
.y77{bottom:299.730000px;}
.ya2{bottom:301.890000px;}
.y2a{bottom:303.150000px;}
.y5b{bottom:303.330000px;}
.y72{bottom:307.830000px;}
.y76{bottom:317.010000px;}
.ya1{bottom:317.370000px;}
.y5a{bottom:317.910000px;}
.y29{bottom:320.430000px;}
.y59{bottom:322.410000px;}
.y58{bottom:332.670000px;}
.ya0{bottom:332.850000px;}
.y75{bottom:334.290000px;}
.y71{bottom:337.170000px;}
.y28{bottom:337.710000px;}
.y57{bottom:347.250000px;}
.y9f{bottom:348.330000px;}
.y70{bottom:349.050000px;}
.y74{bottom:351.570000px;}
.y7d{bottom:351.750000px;}
.y27{bottom:354.990000px;}
.y56{bottom:362.010000px;}
.y7c{bottom:363.630000px;}
.y9e{bottom:363.990000px;}
.y6f{bottom:368.670000px;}
.y26{bottom:372.270000px;}
.y80{bottom:373.890000px;}
.y55{bottom:376.590000px;}
.y9d{bottom:379.470000px;}
.y6e{bottom:385.950000px;}
.y25{bottom:389.370000px;}
.y54{bottom:391.170000px;}
.y9c{bottom:394.950000px;}
.y6d{bottom:403.230000px;}
.y24{bottom:405.030000px;}
.y53{bottom:405.930000px;}
.y9b{bottom:410.430000px;}
.y23{bottom:414.930000px;}
.y52{bottom:420.510000px;}
.y9a{bottom:426.090000px;}
.y22{bottom:430.590000px;}
.y51{bottom:435.270000px;}
.y67{bottom:436.890000px;}
.y6c{bottom:437.790000px;}
.y99{bottom:441.570000px;}
.y21{bottom:446.070000px;}
.y50{bottom:449.850000px;}
.y6b{bottom:455.070000px;}
.y98{bottom:457.050000px;}
.y20{bottom:461.595000px;}
.y4f{bottom:464.655000px;}
.y66{bottom:472.215000px;}
.y97{bottom:472.575000px;}
.y1f{bottom:477.075000px;}
.y4e{bottom:479.235000px;}
.y4d{bottom:483.735000px;}
.y96{bottom:488.235000px;}
.y65{bottom:489.495000px;}
.y1e{bottom:491.295000px;}
.y4c{bottom:495.615000px;}
.y1d{bottom:501.555000px;}
.y95{bottom:503.715000px;}
.y64{bottom:506.775000px;}
.y1c{bottom:518.835000px;}
.y94{bottom:519.195000px;}
.y4a{bottom:524.055000px;}
.y4b{bottom:529.275000px;}
.y93{bottom:534.675000px;}
.y1b{bottom:536.115000px;}
.y49{bottom:541.335000px;}
.y92{bottom:550.335000px;}
.y1a{bottom:553.395000px;}
.y48{bottom:558.615000px;}
.y91{bottom:565.815000px;}
.y19{bottom:570.675000px;}
.y47{bottom:575.715000px;}
.y90{bottom:581.295000px;}
.y18{bottom:587.775000px;}
.y46{bottom:592.995000px;}
.y8f{bottom:596.775000px;}
.y17{bottom:605.055000px;}
.y45{bottom:610.275000px;}
.y8e{bottom:612.435000px;}
.y7b{bottom:615.495000px;}
.y16{bottom:622.335000px;}
.y44{bottom:627.555000px;}
.y8d{bottom:627.915000px;}
.y15{bottom:639.615000px;}
.y8c{bottom:643.395000px;}
.y43{bottom:644.835000px;}
.y14{bottom:656.895000px;}
.y8b{bottom:658.875000px;}
.y42{bottom:661.935000px;}
.y13{bottom:674.175000px;}
.y8a{bottom:674.535000px;}
.y41{bottom:679.215000px;}
.y89{bottom:690.015000px;}
.y12{bottom:691.305000px;}
.y40{bottom:696.525000px;}
.y63{bottom:701.745000px;}
.y88{bottom:705.525000px;}
.y11{bottom:708.585000px;}
.y3f{bottom:713.805000px;}
.y87{bottom:721.005000px;}
.y10{bottom:725.865000px;}
.y3e{bottom:731.085000px;}
.y86{bottom:736.665000px;}
.yf{bottom:742.785000px;}
.y3c{bottom:748.365000px;}
.y85{bottom:752.145000px;}
.y3d{bottom:753.585000px;}
.ye{bottom:758.625000px;}
.y3b{bottom:765.465000px;}
.y84{bottom:767.625000px;}
.yd{bottom:775.905000px;}
.y3a{bottom:782.745000px;}
.y83{bottom:783.105000px;}
.yc{bottom:793.185000px;}
.y82{bottom:798.585000px;}
.y39{bottom:800.025000px;}
.y6a{bottom:805.245000px;}
.y37{bottom:817.305000px;}
.y38{bottom:822.525000px;}
.yb{bottom:827.565000px;}
.y36{bottom:834.585000px;}
.ya{bottom:845.565000px;}
.y35{bottom:851.865000px;}
.y9{bottom:866.265000px;}
.y34{bottom:868.965000px;}
.y73{bottom:874.185000px;}
.y8{bottom:886.245000px;}
.y7{bottom:903.525000px;}
.y6{bottom:920.805000px;}
.y5{bottom:938.130000px;}
.y69{bottom:943.350000px;}
.y4{bottom:955.410000px;}
.y3{bottom:972.510000px;}
.y32{bottom:1006.710000px;}
.y31{bottom:1022.370000px;}
.y1{bottom:1037.670000px;}
.y30{bottom:1037.850000px;}
.h13{height:29.664141px;}
.h7{height:29.678906px;}
.hc{height:32.505469px;}
.h9{height:38.158594px;}
.hf{height:46.527187px;}
.hd{height:50.171484px;}
.he{height:51.519375px;}
.h8{height:52.971680px;}
.h2{height:52.998047px;}
.h11{height:54.390938px;}
.h3{height:58.621992px;}
.h6{height:58.651172px;}
.h5{height:60.226875px;}
.hb{height:65.884219px;}
.h10{height:70.664062px;}
.h4{height:72.562500px;}
.ha{height:82.676953px;}
.h12{height:84.898125px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:892.439973px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:187.229987px;}
.x12{left:191.369987px;}
.x23{left:195.509987px;}
.x3{left:233.669987px;}
.xa{left:238.169987px;}
.x2{left:240.329987px;}
.x13{left:272.954987px;}
.x1f{left:287.354973px;}
.x20{left:292.214987px;}
.x4{left:358.634987px;}
.xb{left:401.294973px;}
.x11{left:403.274987px;}
.xc{left:406.154987px;}
.x16{left:409.034987px;}
.x21{left:424.514973px;}
.x22{left:434.234987px;}
.x5{left:472.964987px;}
.x24{left:483.944973px;}
.x25{left:493.664987px;}
.x9{left:499.604987px;}
.x7{left:523.004987px;}
.x6{left:557.024987px;}
.x19{left:561.344973px;}
.xd{left:562.964973px;}
.x1a{left:566.204987px;}
.xe{left:567.824987px;}
.x8{left:568.904987px;}
.x17{left:594.824973px;}
.x18{left:599.684987px;}
.x1d{left:605.084973px;}
.x1e{left:609.944987px;}
.xf{left:617.324973px;}
.x10{left:622.229987px;}
.x15{left:683.069987px;}
.x1b{left:696.929973px;}
.x1c{left:701.789987px;}
.x14{left:705.569987px;}
@media print{
.v1{vertical-align:-60.800000pt;}
.v2{vertical-align:-56.320000pt;}
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-0.821333pt;}
.lse{letter-spacing:-0.480000pt;}
.ls17{letter-spacing:-0.409067pt;}
.ls1c{letter-spacing:-0.396267pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls2a{letter-spacing:-0.280533pt;}
.ls29{letter-spacing:-0.201067pt;}
.ls26{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.047360pt;}
.ls25{letter-spacing:0.079360pt;}
.ls28{letter-spacing:0.079467pt;}
.ls14{letter-spacing:0.094933pt;}
.ls27{letter-spacing:0.096000pt;}
.ls22{letter-spacing:0.112000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.183467pt;}
.ls23{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.231040pt;}
.ls1e{letter-spacing:0.243733pt;}
.ls16{letter-spacing:0.265600pt;}
.ls18{letter-spacing:0.266667pt;}
.ls1d{letter-spacing:0.304533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.408960pt;}
.ls24{letter-spacing:0.544000pt;}
.ls19{letter-spacing:0.800000pt;}
.ls8{letter-spacing:1.120000pt;}
.ls9{letter-spacing:1.440000pt;}
.ls13{letter-spacing:2.080000pt;}
.ls7{letter-spacing:2.400000pt;}
.lsa{letter-spacing:2.720000pt;}
.lsb{letter-spacing:3.360000pt;}
.ls12{letter-spacing:4.000000pt;}
.ls11{letter-spacing:4.640000pt;}
.ls10{letter-spacing:5.280000pt;}
.lsf{letter-spacing:5.920000pt;}
.lsc{letter-spacing:7.200000pt;}
.ls1f{letter-spacing:7.840000pt;}
.ls1a{letter-spacing:8.480000pt;}
.ls21{letter-spacing:539.200000pt;}
.ls1{letter-spacing:813.760000pt;}
.ws6{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.463467pt;}
.ws9{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.280000pt;}
.wsa{word-spacing:-12.870933pt;}
.ws1{word-spacing:-12.320000pt;}
.ws12{word-spacing:-12.160000pt;}
.ws3{word-spacing:-12.016000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.680000pt;}
.wsf{word-spacing:-11.664533pt;}
.ws10{word-spacing:-11.603733pt;}
.wsb{word-spacing:-11.520000pt;}
.ws7{word-spacing:-11.360000pt;}
.wse{word-spacing:-10.963733pt;}
.ws2{word-spacing:-10.720000pt;}
.ws13{word-spacing:-9.359467pt;}
.ws11{word-spacing:-9.280000pt;}
.ws14{word-spacing:-9.078933pt;}
.ws15{word-spacing:-8.999467pt;}
.ws5{word-spacing:0.000000pt;}
._9{margin-left:-3.288960pt;}
._7{margin-left:-2.383147pt;}
._0{margin-left:-1.312000pt;}
._1{width:1.034667pt;}
._5{width:2.046293pt;}
._3{width:3.027840pt;}
._2{width:4.355840pt;}
._4{width:5.790080pt;}
._8{width:6.693120pt;}
._6{width:8.015147pt;}
._d{width:9.161387pt;}
._c{width:10.894293pt;}
._b{width:11.840000pt;}
._a{width:15.237973pt;}
.fs4{font-size:26.880000pt;}
.fs8{font-size:29.440000pt;}
.fs5{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs9{font-size:45.440000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:153.760000pt;}
.y33{bottom:153.920000pt;}
.ya8{bottom:190.400000pt;}
.y62{bottom:191.360000pt;}
.y2f{bottom:192.800000pt;}
.y7a{bottom:195.360000pt;}
.ya7{bottom:199.360000pt;}
.y61{bottom:204.346667pt;}
.y79{bottom:205.946667pt;}
.y2e{bottom:208.186667pt;}
.ya6{bottom:213.146667pt;}
.y60{bottom:217.466667pt;}
.y5f{bottom:221.466667pt;}
.y2d{bottom:223.546667pt;}
.ya5{bottom:226.906667pt;}
.y5e{bottom:230.426667pt;}
.y81{bottom:232.026667pt;}
.y7f{bottom:234.426667pt;}
.y2c{bottom:238.906667pt;}
.ya4{bottom:240.666667pt;}
.y5d{bottom:243.546667pt;}
.y68{bottom:247.546667pt;}
.y78{bottom:251.066667pt;}
.y2b{bottom:254.106667pt;}
.ya3{bottom:254.426667pt;}
.y5c{bottom:256.506667pt;}
.y7e{bottom:260.506667pt;}
.y77{bottom:266.426667pt;}
.ya2{bottom:268.346667pt;}
.y2a{bottom:269.466667pt;}
.y5b{bottom:269.626667pt;}
.y72{bottom:273.626667pt;}
.y76{bottom:281.786667pt;}
.ya1{bottom:282.106667pt;}
.y5a{bottom:282.586667pt;}
.y29{bottom:284.826667pt;}
.y59{bottom:286.586667pt;}
.y58{bottom:295.706667pt;}
.ya0{bottom:295.866667pt;}
.y75{bottom:297.146667pt;}
.y71{bottom:299.706667pt;}
.y28{bottom:300.186667pt;}
.y57{bottom:308.666667pt;}
.y9f{bottom:309.626667pt;}
.y70{bottom:310.266667pt;}
.y74{bottom:312.506667pt;}
.y7d{bottom:312.666667pt;}
.y27{bottom:315.546667pt;}
.y56{bottom:321.786667pt;}
.y7c{bottom:323.226667pt;}
.y9e{bottom:323.546667pt;}
.y6f{bottom:327.706667pt;}
.y26{bottom:330.906667pt;}
.y80{bottom:332.346667pt;}
.y55{bottom:334.746667pt;}
.y9d{bottom:337.306667pt;}
.y6e{bottom:343.066667pt;}
.y25{bottom:346.106667pt;}
.y54{bottom:347.706667pt;}
.y9c{bottom:351.066667pt;}
.y6d{bottom:358.426667pt;}
.y24{bottom:360.026667pt;}
.y53{bottom:360.826667pt;}
.y9b{bottom:364.826667pt;}
.y23{bottom:368.826667pt;}
.y52{bottom:373.786667pt;}
.y9a{bottom:378.746667pt;}
.y22{bottom:382.746667pt;}
.y51{bottom:386.906667pt;}
.y67{bottom:388.346667pt;}
.y6c{bottom:389.146667pt;}
.y99{bottom:392.506667pt;}
.y21{bottom:396.506667pt;}
.y50{bottom:399.866667pt;}
.y6b{bottom:404.506667pt;}
.y98{bottom:406.266667pt;}
.y20{bottom:410.306667pt;}
.y4f{bottom:413.026667pt;}
.y66{bottom:419.746667pt;}
.y97{bottom:420.066667pt;}
.y1f{bottom:424.066667pt;}
.y4e{bottom:425.986667pt;}
.y4d{bottom:429.986667pt;}
.y96{bottom:433.986667pt;}
.y65{bottom:435.106667pt;}
.y1e{bottom:436.706667pt;}
.y4c{bottom:440.546667pt;}
.y1d{bottom:445.826667pt;}
.y95{bottom:447.746667pt;}
.y64{bottom:450.466667pt;}
.y1c{bottom:461.186667pt;}
.y94{bottom:461.506667pt;}
.y4a{bottom:465.826667pt;}
.y4b{bottom:470.466667pt;}
.y93{bottom:475.266667pt;}
.y1b{bottom:476.546667pt;}
.y49{bottom:481.186667pt;}
.y92{bottom:489.186667pt;}
.y1a{bottom:491.906667pt;}
.y48{bottom:496.546667pt;}
.y91{bottom:502.946667pt;}
.y19{bottom:507.266667pt;}
.y47{bottom:511.746667pt;}
.y90{bottom:516.706667pt;}
.y18{bottom:522.466667pt;}
.y46{bottom:527.106667pt;}
.y8f{bottom:530.466667pt;}
.y17{bottom:537.826667pt;}
.y45{bottom:542.466667pt;}
.y8e{bottom:544.386667pt;}
.y7b{bottom:547.106667pt;}
.y16{bottom:553.186667pt;}
.y44{bottom:557.826667pt;}
.y8d{bottom:558.146667pt;}
.y15{bottom:568.546667pt;}
.y8c{bottom:571.906667pt;}
.y43{bottom:573.186667pt;}
.y14{bottom:583.906667pt;}
.y8b{bottom:585.666667pt;}
.y42{bottom:588.386667pt;}
.y13{bottom:599.266667pt;}
.y8a{bottom:599.586667pt;}
.y41{bottom:603.746667pt;}
.y89{bottom:613.346667pt;}
.y12{bottom:614.493333pt;}
.y40{bottom:619.133333pt;}
.y63{bottom:623.773333pt;}
.y88{bottom:627.133333pt;}
.y11{bottom:629.853333pt;}
.y3f{bottom:634.493333pt;}
.y87{bottom:640.893333pt;}
.y10{bottom:645.213333pt;}
.y3e{bottom:649.853333pt;}
.y86{bottom:654.813333pt;}
.yf{bottom:660.253333pt;}
.y3c{bottom:665.213333pt;}
.y85{bottom:668.573333pt;}
.y3d{bottom:669.853333pt;}
.ye{bottom:674.333333pt;}
.y3b{bottom:680.413333pt;}
.y84{bottom:682.333333pt;}
.yd{bottom:689.693333pt;}
.y3a{bottom:695.773333pt;}
.y83{bottom:696.093333pt;}
.yc{bottom:705.053333pt;}
.y82{bottom:709.853333pt;}
.y39{bottom:711.133333pt;}
.y6a{bottom:715.773333pt;}
.y37{bottom:726.493333pt;}
.y38{bottom:731.133333pt;}
.yb{bottom:735.613333pt;}
.y36{bottom:741.853333pt;}
.ya{bottom:751.613333pt;}
.y35{bottom:757.213333pt;}
.y9{bottom:770.013333pt;}
.y34{bottom:772.413333pt;}
.y73{bottom:777.053333pt;}
.y8{bottom:787.773333pt;}
.y7{bottom:803.133333pt;}
.y6{bottom:818.493333pt;}
.y5{bottom:833.893333pt;}
.y69{bottom:838.533333pt;}
.y4{bottom:849.253333pt;}
.y3{bottom:864.453333pt;}
.y32{bottom:894.853333pt;}
.y31{bottom:908.773333pt;}
.y1{bottom:922.373333pt;}
.y30{bottom:922.533333pt;}
.h13{height:26.368125pt;}
.h7{height:26.381250pt;}
.hc{height:28.893750pt;}
.h9{height:33.918750pt;}
.hf{height:41.357500pt;}
.hd{height:44.596875pt;}
.he{height:45.795000pt;}
.h8{height:47.085938pt;}
.h2{height:47.109375pt;}
.h11{height:48.347500pt;}
.h3{height:52.108438pt;}
.h6{height:52.134375pt;}
.h5{height:53.535000pt;}
.hb{height:58.563750pt;}
.h10{height:62.812500pt;}
.h4{height:64.500000pt;}
.ha{height:73.490625pt;}
.h12{height:75.465000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:793.279976pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:166.426655pt;}
.x12{left:170.106655pt;}
.x23{left:173.786655pt;}
.x3{left:207.706655pt;}
.xa{left:211.706655pt;}
.x2{left:213.626655pt;}
.x13{left:242.626655pt;}
.x1f{left:255.426643pt;}
.x20{left:259.746655pt;}
.x4{left:318.786655pt;}
.xb{left:356.706643pt;}
.x11{left:358.466655pt;}
.xc{left:361.026655pt;}
.x16{left:363.586655pt;}
.x21{left:377.346643pt;}
.x22{left:385.986655pt;}
.x5{left:420.413322pt;}
.x24{left:430.173310pt;}
.x25{left:438.813322pt;}
.x9{left:444.093322pt;}
.x7{left:464.893322pt;}
.x6{left:495.133322pt;}
.x19{left:498.973310pt;}
.xd{left:500.413310pt;}
.x1a{left:503.293322pt;}
.xe{left:504.733322pt;}
.x8{left:505.693322pt;}
.x17{left:528.733310pt;}
.x18{left:533.053322pt;}
.x1d{left:537.853310pt;}
.x1e{left:542.173322pt;}
.xf{left:548.733310pt;}
.x10{left:553.093322pt;}
.x15{left:607.173322pt;}
.x1b{left:619.493310pt;}
.x1c{left:623.813322pt;}
.x14{left:627.173322pt;}
}




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