
    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_eb8d19d03747e4dab1f7551f.woff')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_3aad96622d297278afeb0768.woff')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_ad21183738e9fb9d1eee81c2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.435059;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_67980780f6db822f4499bb84.woff')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_b9ac66e6f4436e3ae3d469b9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_bb18bb8bc42686152b495eff.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-1.176000px;}
.ls1a{letter-spacing:-0.924000px;}
.ls16{letter-spacing:-0.612000px;}
.lse{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.206400px;}
.ls7{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.053280px;}
.ls15{letter-spacing:0.106800px;}
.ls5{letter-spacing:0.150000px;}
.ls1{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.259800px;}
.ls12{letter-spacing:0.298800px;}
.lsb{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.460200px;}
.ls13{letter-spacing:0.900000px;}
.lsa{letter-spacing:1.080000px;}
.ls6{letter-spacing:1.620000px;}
.ls14{letter-spacing:2.340000px;}
.ls4{letter-spacing:3.060000px;}
.ls3{letter-spacing:3.780000px;}
.ls11{letter-spacing:4.500000px;}
.lsd{letter-spacing:5.940000px;}
.lsc{letter-spacing:7.866720px;}
.ls2{letter-spacing:9.540000px;}
.ls10{letter-spacing:11.466720px;}
.ls18{letter-spacing:12.420000px;}
.ls17{letter-spacing:15.066720px;}
.ls0{letter-spacing:31.626720px;}
.ls1c{letter-spacing:41.850720px;}
.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;}
}
.ws1{word-spacing:-16.560000px;}
.wsa{word-spacing:-15.400200px;}
.ws0{word-spacing:-15.384000px;}
.ws7{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.733600px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1449.751680px;}
._4{margin-left:-939.110400px;}
._f{margin-left:-698.209920px;}
._d{margin-left:-646.626240px;}
._c{margin-left:-551.377920px;}
._8{margin-left:-454.340160px;}
._7{margin-left:-410.317920px;}
._5{margin-left:-165.600000px;}
._e{margin-left:-148.668480px;}
._a{margin-left:-107.017920px;}
._b{margin-left:-105.534720px;}
._9{margin-left:-87.120000px;}
._6{margin-left:-37.440000px;}
._21{margin-left:-15.312480px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._16{width:2.299680px;}
._15{width:3.420000px;}
._18{width:4.840560px;}
._17{width:6.167040px;}
._13{width:8.025840px;}
._14{width:9.030480px;}
._1b{width:10.393680px;}
._19{width:12.011760px;}
._1a{width:13.087440px;}
._20{width:16.053600px;}
._1c{width:17.089200px;}
._23{width:18.239520px;}
._22{width:19.504080px;}
._1f{width:20.557440px;}
._1e{width:22.111200px;}
._1d{width:23.425920px;}
._11{width:30.944160px;}
._10{width:32.175360px;}
._25{width:36.258240px;}
._24{width:37.359840px;}
._12{width:93.554880px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.ybb{bottom:6.120000px;}
.yba{bottom:25.920000px;}
.yb7{bottom:30.600000px;}
.yb9{bottom:46.260000px;}
.y6{bottom:60.156000px;}
.yb8{bottom:66.054000px;}
.y39{bottom:87.156000px;}
.yb5{bottom:91.476000px;}
.y38{bottom:92.376000px;}
.yb6{bottom:95.796000px;}
.y37{bottom:104.436000px;}
.y72{bottom:109.656000px;}
.yb4{bottom:111.276000px;}
.y36{bottom:121.536000px;}
.y85{bottom:122.796000px;}
.y35{bottom:126.756000px;}
.yb3{bottom:131.076000px;}
.y34{bottom:138.816000px;}
.y71{bottom:140.076000px;}
.y33{bottom:144.036000px;}
.y84{bottom:150.870000px;}
.y32{bottom:156.090000px;}
.y31{bottom:161.310000px;}
.y70{bottom:170.670000px;}
.y7b{bottom:173.370000px;}
.y30{bottom:174.630000px;}
.y82{bottom:175.890000px;}
.y7a{bottom:178.590000px;}
.y6e{bottom:190.650000px;}
.y81{bottom:195.690000px;}
.y6f{bottom:195.870000px;}
.y80{bottom:200.910000px;}
.y79{bottom:207.930000px;}
.y6d{bottom:210.450000px;}
.y78{bottom:213.150000px;}
.y7f{bottom:214.230000px;}
.yb0{bottom:221.250000px;}
.y77{bottom:226.290000px;}
.y2f{bottom:228.270000px;}
.y6c{bottom:230.250000px;}
.yaf{bottom:241.050000px;}
.y2d{bottom:248.070000px;}
.y6b{bottom:250.050000px;}
.y2e{bottom:253.290000px;}
.yae{bottom:260.850000px;}
.y2c{bottom:267.870000px;}
.y69{bottom:269.850000px;}
.y6a{bottom:275.070000px;}
.yad{bottom:280.830000px;}
.y2b{bottom:287.715000px;}
.y68{bottom:289.875000px;}
.yac{bottom:300.675000px;}
.y2a{bottom:307.515000px;}
.y67{bottom:309.675000px;}
.yab{bottom:320.475000px;}
.y29{bottom:327.495000px;}
.y66{bottom:329.475000px;}
.yaa{bottom:340.275000px;}
.y28{bottom:347.295000px;}
.y65{bottom:349.275000px;}
.ya9{bottom:360.075000px;}
.y27{bottom:367.095000px;}
.y64{bottom:369.075000px;}
.ya8{bottom:380.055000px;}
.y26{bottom:386.895000px;}
.y63{bottom:389.055000px;}
.ya7{bottom:399.855000px;}
.y25{bottom:406.695000px;}
.y62{bottom:408.855000px;}
.ya6{bottom:419.655000px;}
.y23{bottom:426.675000px;}
.y61{bottom:428.655000px;}
.y24{bottom:431.895000px;}
.ya5{bottom:439.455000px;}
.y22{bottom:446.475000px;}
.y60{bottom:448.455000px;}
.ya4{bottom:459.255000px;}
.y20{bottom:466.275000px;}
.y5f{bottom:468.255000px;}
.y21{bottom:471.495000px;}
.ya3{bottom:479.235000px;}
.y1e{bottom:486.075000px;}
.y5e{bottom:488.235000px;}
.y1f{bottom:491.295000px;}
.ya2{bottom:499.035000px;}
.y1d{bottom:505.875000px;}
.y5d{bottom:508.035000px;}
.ya1{bottom:518.835000px;}
.y1c{bottom:525.855000px;}
.y5c{bottom:527.835000px;}
.y76{bottom:533.055000px;}
.ya0{bottom:538.635000px;}
.y5b{bottom:547.635000px;}
.y9f{bottom:558.435000px;}
.y1b{bottom:565.845000px;}
.y5a{bottom:567.465000px;}
.y9e{bottom:578.445000px;}
.y59{bottom:587.445000px;}
.y1a{bottom:594.825000px;}
.y9d{bottom:598.245000px;}
.y58{bottom:607.245000px;}
.y19{bottom:614.625000px;}
.y9c{bottom:618.045000px;}
.y57{bottom:627.045000px;}
.y18{bottom:634.425000px;}
.y9b{bottom:637.845000px;}
.y56{bottom:646.845000px;}
.y7e{bottom:652.065000px;}
.y17{bottom:654.225000px;}
.y99{bottom:657.645000px;}
.y9a{bottom:662.865000px;}
.y55{bottom:666.645000px;}
.yb2{bottom:671.865000px;}
.y16{bottom:674.025000px;}
.y98{bottom:677.625000px;}
.y54{bottom:686.625000px;}
.y15{bottom:694.005000px;}
.y97{bottom:697.425000px;}
.y53{bottom:706.425000px;}
.y14{bottom:713.805000px;}
.y96{bottom:717.225000px;}
.y52{bottom:726.225000px;}
.y13{bottom:733.605000px;}
.y95{bottom:737.025000px;}
.y51{bottom:746.025000px;}
.y12{bottom:753.405000px;}
.y94{bottom:756.825000px;}
.y50{bottom:765.825000px;}
.y75{bottom:771.045000px;}
.y11{bottom:773.205000px;}
.y92{bottom:776.805000px;}
.y93{bottom:782.025000px;}
.y4f{bottom:785.805000px;}
.y74{bottom:791.025000px;}
.y10{bottom:793.185000px;}
.y91{bottom:796.605000px;}
.y4e{bottom:805.605000px;}
.yf{bottom:812.985000px;}
.y90{bottom:816.405000px;}
.y4d{bottom:825.405000px;}
.ye{bottom:832.785000px;}
.y8f{bottom:836.205000px;}
.y4c{bottom:845.205000px;}
.yd{bottom:852.630000px;}
.y8e{bottom:856.050000px;}
.y4b{bottom:865.050000px;}
.yc{bottom:872.430000px;}
.y8d{bottom:876.030000px;}
.y4a{bottom:885.030000px;}
.y8b{bottom:895.830000px;}
.y8c{bottom:901.050000px;}
.y49{bottom:904.830000px;}
.y8a{bottom:915.630000px;}
.yb{bottom:919.590000px;}
.y48{bottom:924.630000px;}
.y83{bottom:929.850000px;}
.ya{bottom:934.710000px;}
.y89{bottom:935.430000px;}
.y47{bottom:944.430000px;}
.y88{bottom:955.230000px;}
.y9{bottom:956.130000px;}
.y46{bottom:964.230000px;}
.y73{bottom:969.450000px;}
.y87{bottom:975.210000px;}
.y8{bottom:979.530000px;}
.y45{bottom:984.210000px;}
.y86{bottom:995.010000px;}
.y44{bottom:1004.010000px;}
.y7{bottom:1011.210000px;}
.y43{bottom:1023.810000px;}
.y42{bottom:1043.610000px;}
.y7d{bottom:1048.830000px;}
.y5{bottom:1051.170000px;}
.y41{bottom:1063.410000px;}
.y4{bottom:1081.950000px;}
.y40{bottom:1083.390000px;}
.y7c{bottom:1088.610000px;}
.y3f{bottom:1103.190000px;}
.yb1{bottom:1108.410000px;}
.y3{bottom:1112.730000px;}
.y3e{bottom:1122.990000px;}
.y3c{bottom:1142.820000px;}
.y2{bottom:1143.720000px;}
.y3d{bottom:1148.040000px;}
.y3b{bottom:1162.620000px;}
.y1{bottom:1177.560000px;}
.y3a{bottom:1193.220000px;}
.hf{height:2.864531px;}
.h7{height:38.158594px;}
.hc{height:41.726953px;}
.h8{height:58.651172px;}
.h6{height:60.226875px;}
.hd{height:61.423863px;}
.h9{height:62.211094px;}
.h4{height:65.010937px;}
.ha{height:65.884219px;}
.h3{height:66.757500px;}
.hb{height:67.824844px;}
.he{height:80.100000px;}
.h2{height:96.508125px;}
.h5{height:118.008984px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:199.110000px;}
.w5{width:595.545000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3a{left:7.740000px;}
.x37{left:45.900000px;}
.x1{left:54.179987px;}
.xd{left:58.859987px;}
.x1e{left:63.719987px;}
.x16{left:70.199987px;}
.x35{left:74.339987px;}
.x7{left:75.599987px;}
.x36{left:101.375987px;}
.x21{left:120.275973px;}
.x22{left:129.995987px;}
.x38{left:190.290000px;}
.x31{left:209.369973px;}
.x32{left:219.089987px;}
.x39{left:245.010000px;}
.x3{left:255.449973px;}
.x4{left:260.309987px;}
.xc{left:270.029987px;}
.x19{left:286.994973px;}
.xa{left:296.174973px;}
.xb{left:301.034987px;}
.x17{left:342.254973px;}
.x18{left:347.114987px;}
.x12{left:348.914973px;}
.x13{left:353.774987px;}
.x25{left:367.634973px;}
.x2{left:370.334987px;}
.x26{left:377.354987px;}
.x2b{left:379.154987px;}
.x2e{left:387.254987px;}
.x29{left:462.314973px;}
.x10{left:464.654973px;}
.x27{left:468.254973px;}
.x11{left:469.544987px;}
.x2a{left:472.064987px;}
.x28{left:478.004987px;}
.x1a{left:491.144973px;}
.x1b{left:500.864987px;}
.xe{left:573.764973px;}
.xf{left:578.624987px;}
.x2c{left:603.644973px;}
.x2f{left:610.124973px;}
.x2d{left:613.364987px;}
.x30{left:619.844987px;}
.x14{left:707.909973px;}
.x15{left:712.769987px;}
.x1c{left:729.149973px;}
.x1d{left:738.869987px;}
.x23{left:760.469973px;}
.x5{left:762.089973px;}
.x6{left:766.949987px;}
.x24{left:770.189987px;}
.x8{left:793.589973px;}
.x9{left:798.449987px;}
.x33{left:816.089973px;}
.x1f{left:821.489973px;}
.x34{left:825.809987px;}
.x20{left:831.209987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-1.045333pt;}
.ls1a{letter-spacing:-0.821333pt;}
.ls16{letter-spacing:-0.544000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.183467pt;}
.ls7{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.047360pt;}
.ls15{letter-spacing:0.094933pt;}
.ls5{letter-spacing:0.133333pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.230933pt;}
.ls12{letter-spacing:0.265600pt;}
.lsb{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.409067pt;}
.ls13{letter-spacing:0.800000pt;}
.lsa{letter-spacing:0.960000pt;}
.ls6{letter-spacing:1.440000pt;}
.ls14{letter-spacing:2.080000pt;}
.ls4{letter-spacing:2.720000pt;}
.ls3{letter-spacing:3.360000pt;}
.ls11{letter-spacing:4.000000pt;}
.lsd{letter-spacing:5.280000pt;}
.lsc{letter-spacing:6.992640pt;}
.ls2{letter-spacing:8.480000pt;}
.ls10{letter-spacing:10.192640pt;}
.ls18{letter-spacing:11.040000pt;}
.ls17{letter-spacing:13.392640pt;}
.ls0{letter-spacing:28.112640pt;}
.ls1c{letter-spacing:37.200640pt;}
.ws1{word-spacing:-14.720000pt;}
.wsa{word-spacing:-13.689067pt;}
.ws0{word-spacing:-13.674667pt;}
.ws7{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.096533pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1288.668160pt;}
._4{margin-left:-834.764800pt;}
._f{margin-left:-620.631040pt;}
._d{margin-left:-574.778880pt;}
._c{margin-left:-490.113707pt;}
._8{margin-left:-403.857920pt;}
._7{margin-left:-364.727040pt;}
._5{margin-left:-147.200000pt;}
._e{margin-left:-132.149760pt;}
._a{margin-left:-95.127040pt;}
._b{margin-left:-93.808640pt;}
._9{margin-left:-77.440000pt;}
._6{margin-left:-33.280000pt;}
._21{margin-left:-13.611093pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._16{width:2.044160pt;}
._15{width:3.040000pt;}
._18{width:4.302720pt;}
._17{width:5.481813pt;}
._13{width:7.134080pt;}
._14{width:8.027093pt;}
._1b{width:9.238827pt;}
._19{width:10.677120pt;}
._1a{width:11.633280pt;}
._20{width:14.269867pt;}
._1c{width:15.190400pt;}
._23{width:16.212907pt;}
._22{width:17.336960pt;}
._1f{width:18.273280pt;}
._1e{width:19.654400pt;}
._1d{width:20.823040pt;}
._11{width:27.505920pt;}
._10{width:28.600320pt;}
._25{width:32.229547pt;}
._24{width:33.208747pt;}
._12{width:83.159893pt;}
.fs7{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.ybb{bottom:5.440000pt;}
.yba{bottom:23.040000pt;}
.yb7{bottom:27.200000pt;}
.yb9{bottom:41.120000pt;}
.y6{bottom:53.472000pt;}
.yb8{bottom:58.714667pt;}
.y39{bottom:77.472000pt;}
.yb5{bottom:81.312000pt;}
.y38{bottom:82.112000pt;}
.yb6{bottom:85.152000pt;}
.y37{bottom:92.832000pt;}
.y72{bottom:97.472000pt;}
.yb4{bottom:98.912000pt;}
.y36{bottom:108.032000pt;}
.y85{bottom:109.152000pt;}
.y35{bottom:112.672000pt;}
.yb3{bottom:116.512000pt;}
.y34{bottom:123.392000pt;}
.y71{bottom:124.512000pt;}
.y33{bottom:128.032000pt;}
.y84{bottom:134.106667pt;}
.y32{bottom:138.746667pt;}
.y31{bottom:143.386667pt;}
.y70{bottom:151.706667pt;}
.y7b{bottom:154.106667pt;}
.y30{bottom:155.226667pt;}
.y82{bottom:156.346667pt;}
.y7a{bottom:158.746667pt;}
.y6e{bottom:169.466667pt;}
.y81{bottom:173.946667pt;}
.y6f{bottom:174.106667pt;}
.y80{bottom:178.586667pt;}
.y79{bottom:184.826667pt;}
.y6d{bottom:187.066667pt;}
.y78{bottom:189.466667pt;}
.y7f{bottom:190.426667pt;}
.yb0{bottom:196.666667pt;}
.y77{bottom:201.146667pt;}
.y2f{bottom:202.906667pt;}
.y6c{bottom:204.666667pt;}
.yaf{bottom:214.266667pt;}
.y2d{bottom:220.506667pt;}
.y6b{bottom:222.266667pt;}
.y2e{bottom:225.146667pt;}
.yae{bottom:231.866667pt;}
.y2c{bottom:238.106667pt;}
.y69{bottom:239.866667pt;}
.y6a{bottom:244.506667pt;}
.yad{bottom:249.626667pt;}
.y2b{bottom:255.746667pt;}
.y68{bottom:257.666667pt;}
.yac{bottom:267.266667pt;}
.y2a{bottom:273.346667pt;}
.y67{bottom:275.266667pt;}
.yab{bottom:284.866667pt;}
.y29{bottom:291.106667pt;}
.y66{bottom:292.866667pt;}
.yaa{bottom:302.466667pt;}
.y28{bottom:308.706667pt;}
.y65{bottom:310.466667pt;}
.ya9{bottom:320.066667pt;}
.y27{bottom:326.306667pt;}
.y64{bottom:328.066667pt;}
.ya8{bottom:337.826667pt;}
.y26{bottom:343.906667pt;}
.y63{bottom:345.826667pt;}
.ya7{bottom:355.426667pt;}
.y25{bottom:361.506667pt;}
.y62{bottom:363.426667pt;}
.ya6{bottom:373.026667pt;}
.y23{bottom:379.266667pt;}
.y61{bottom:381.026667pt;}
.y24{bottom:383.906667pt;}
.ya5{bottom:390.626667pt;}
.y22{bottom:396.866667pt;}
.y60{bottom:398.626667pt;}
.ya4{bottom:408.226667pt;}
.y20{bottom:414.466667pt;}
.y5f{bottom:416.226667pt;}
.y21{bottom:419.106667pt;}
.ya3{bottom:425.986667pt;}
.y1e{bottom:432.066667pt;}
.y5e{bottom:433.986667pt;}
.y1f{bottom:436.706667pt;}
.ya2{bottom:443.586667pt;}
.y1d{bottom:449.666667pt;}
.y5d{bottom:451.586667pt;}
.ya1{bottom:461.186667pt;}
.y1c{bottom:467.426667pt;}
.y5c{bottom:469.186667pt;}
.y76{bottom:473.826667pt;}
.ya0{bottom:478.786667pt;}
.y5b{bottom:486.786667pt;}
.y9f{bottom:496.386667pt;}
.y1b{bottom:502.973333pt;}
.y5a{bottom:504.413333pt;}
.y9e{bottom:514.173333pt;}
.y59{bottom:522.173333pt;}
.y1a{bottom:528.733333pt;}
.y9d{bottom:531.773333pt;}
.y58{bottom:539.773333pt;}
.y19{bottom:546.333333pt;}
.y9c{bottom:549.373333pt;}
.y57{bottom:557.373333pt;}
.y18{bottom:563.933333pt;}
.y9b{bottom:566.973333pt;}
.y56{bottom:574.973333pt;}
.y7e{bottom:579.613333pt;}
.y17{bottom:581.533333pt;}
.y99{bottom:584.573333pt;}
.y9a{bottom:589.213333pt;}
.y55{bottom:592.573333pt;}
.yb2{bottom:597.213333pt;}
.y16{bottom:599.133333pt;}
.y98{bottom:602.333333pt;}
.y54{bottom:610.333333pt;}
.y15{bottom:616.893333pt;}
.y97{bottom:619.933333pt;}
.y53{bottom:627.933333pt;}
.y14{bottom:634.493333pt;}
.y96{bottom:637.533333pt;}
.y52{bottom:645.533333pt;}
.y13{bottom:652.093333pt;}
.y95{bottom:655.133333pt;}
.y51{bottom:663.133333pt;}
.y12{bottom:669.693333pt;}
.y94{bottom:672.733333pt;}
.y50{bottom:680.733333pt;}
.y75{bottom:685.373333pt;}
.y11{bottom:687.293333pt;}
.y92{bottom:690.493333pt;}
.y93{bottom:695.133333pt;}
.y4f{bottom:698.493333pt;}
.y74{bottom:703.133333pt;}
.y10{bottom:705.053333pt;}
.y91{bottom:708.093333pt;}
.y4e{bottom:716.093333pt;}
.yf{bottom:722.653333pt;}
.y90{bottom:725.693333pt;}
.y4d{bottom:733.693333pt;}
.ye{bottom:740.253333pt;}
.y8f{bottom:743.293333pt;}
.y4c{bottom:751.293333pt;}
.yd{bottom:757.893333pt;}
.y8e{bottom:760.933333pt;}
.y4b{bottom:768.933333pt;}
.yc{bottom:775.493333pt;}
.y8d{bottom:778.693333pt;}
.y4a{bottom:786.693333pt;}
.y8b{bottom:796.293333pt;}
.y8c{bottom:800.933333pt;}
.y49{bottom:804.293333pt;}
.y8a{bottom:813.893333pt;}
.yb{bottom:817.413333pt;}
.y48{bottom:821.893333pt;}
.y83{bottom:826.533333pt;}
.ya{bottom:830.853333pt;}
.y89{bottom:831.493333pt;}
.y47{bottom:839.493333pt;}
.y88{bottom:849.093333pt;}
.y9{bottom:849.893333pt;}
.y46{bottom:857.093333pt;}
.y73{bottom:861.733333pt;}
.y87{bottom:866.853333pt;}
.y8{bottom:870.693333pt;}
.y45{bottom:874.853333pt;}
.y86{bottom:884.453333pt;}
.y44{bottom:892.453333pt;}
.y7{bottom:898.853333pt;}
.y43{bottom:910.053333pt;}
.y42{bottom:927.653333pt;}
.y7d{bottom:932.293333pt;}
.y5{bottom:934.373333pt;}
.y41{bottom:945.253333pt;}
.y4{bottom:961.733333pt;}
.y40{bottom:963.013333pt;}
.y7c{bottom:967.653333pt;}
.y3f{bottom:980.613333pt;}
.yb1{bottom:985.253333pt;}
.y3{bottom:989.093333pt;}
.y3e{bottom:998.213333pt;}
.y3c{bottom:1015.840000pt;}
.y2{bottom:1016.640000pt;}
.y3d{bottom:1020.480000pt;}
.y3b{bottom:1033.440000pt;}
.y1{bottom:1046.720000pt;}
.y3a{bottom:1060.640000pt;}
.hf{height:2.546250pt;}
.h7{height:33.918750pt;}
.hc{height:37.090625pt;}
.h8{height:52.134375pt;}
.h6{height:53.535000pt;}
.hd{height:54.598989pt;}
.h9{height:55.298750pt;}
.h4{height:57.787500pt;}
.ha{height:58.563750pt;}
.h3{height:59.340000pt;}
.hb{height:60.288750pt;}
.he{height:71.200000pt;}
.h2{height:85.785000pt;}
.h5{height:104.896875pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:176.986667pt;}
.w5{width:529.373333pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3a{left:6.880000pt;}
.x37{left:40.800000pt;}
.x1{left:48.159988pt;}
.xd{left:52.319988pt;}
.x1e{left:56.639988pt;}
.x16{left:62.399988pt;}
.x35{left:66.079988pt;}
.x7{left:67.199988pt;}
.x36{left:90.111988pt;}
.x21{left:106.911976pt;}
.x22{left:115.551988pt;}
.x38{left:169.146667pt;}
.x31{left:186.106643pt;}
.x32{left:194.746655pt;}
.x39{left:217.786667pt;}
.x3{left:227.066643pt;}
.x4{left:231.386655pt;}
.xc{left:240.026655pt;}
.x19{left:255.106643pt;}
.xa{left:263.266643pt;}
.xb{left:267.586655pt;}
.x17{left:304.226643pt;}
.x18{left:308.546655pt;}
.x12{left:310.146643pt;}
.x13{left:314.466655pt;}
.x25{left:326.786643pt;}
.x2{left:329.186655pt;}
.x26{left:335.426655pt;}
.x2b{left:337.026655pt;}
.x2e{left:344.226655pt;}
.x29{left:410.946643pt;}
.x10{left:413.026643pt;}
.x27{left:416.226643pt;}
.x11{left:417.373322pt;}
.x2a{left:419.613322pt;}
.x28{left:424.893322pt;}
.x1a{left:436.573310pt;}
.x1b{left:445.213322pt;}
.xe{left:510.013310pt;}
.xf{left:514.333322pt;}
.x2c{left:536.573310pt;}
.x2f{left:542.333310pt;}
.x2d{left:545.213322pt;}
.x30{left:550.973322pt;}
.x14{left:629.253310pt;}
.x15{left:633.573322pt;}
.x1c{left:648.133310pt;}
.x1d{left:656.773322pt;}
.x23{left:675.973310pt;}
.x5{left:677.413310pt;}
.x6{left:681.733322pt;}
.x24{left:684.613322pt;}
.x8{left:705.413310pt;}
.x9{left:709.733322pt;}
.x33{left:725.413310pt;}
.x1f{left:730.213310pt;}
.x34{left:734.053322pt;}
.x20{left:738.853322pt;}
}




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