
    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_a56aaad2c5f089ac1dc37cb2.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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f3168e12a132e3bb1b8fdd0d.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_c833a76d7ce70035071b5922.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2672cede3d9e3974be3bc979.woff')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_ef2d55e2bdf0c9cfb96bac34.woff')format("woff");}.ff6{font-family:ff6;line-height:0.708008;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_1ff09b4dfe1d5f881f67fba4.woff')format("woff");}.ff7{font-family:ff7;line-height:0.682617;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_9f0654c733b72c8578bc901c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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_962aa52cff12ad2d1a28e9ea.woff')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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_de195996069a029d02cca7a8.woff')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5af67645b115af5d549c606a.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_64f2e5fd8a0a65a96c4edd11.woff')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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:ffd;src:url('chunks/assets/font_474d2a9dbeb4e461c56ea2d5.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_3d5d5f20b36cf695b47e114c.woff')format("woff");}.ffe{font-family:ffe;line-height:0.682617;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m3{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);}
.v3{vertical-align:-18.000000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls7{letter-spacing:-33.120000px;}
.ls5{letter-spacing:-15.660000px;}
.ls4{letter-spacing:-0.360000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.259920px;}
.ls8{letter-spacing:0.315600px;}
.ls1{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.828000px;}
.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;}
}
.ws7{word-spacing:-54.000000px;}
.wsa{word-spacing:-15.300000px;}
.ws9{word-spacing:-14.940000px;}
.ws1{word-spacing:-13.860000px;}
.ws8{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.140000px;}
.ws3{word-spacing:-10.755600px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.000000px;}
.ws0{word-spacing:-6.840000px;}
.ws6{word-spacing:0.000000px;}
._21{margin-left:-4.216080px;}
._1e{margin-left:-2.892240px;}
._2{margin-left:-1.589760px;}
._0{width:1.179840px;}
._9{width:2.318880px;}
._1{width:3.457920px;}
._d{width:4.482000px;}
._c{width:5.617440px;}
._e{width:7.306080px;}
._1b{width:8.904240px;}
._1a{width:10.099440px;}
._14{width:11.195760px;}
._6{width:12.445440px;}
._17{width:13.521120px;}
._22{width:14.921760px;}
._1c{width:16.356480px;}
._27{width:17.542800px;}
._8{width:18.585360px;}
._7{width:19.601280px;}
._1f{width:20.871600px;}
._20{width:21.887520px;}
._23{width:23.928480px;}
._b{width:25.712160px;}
._2c{width:27.360000px;}
._15{width:29.043360px;}
._2a{width:31.075200px;}
._a{width:32.150880px;}
._1d{width:33.182160px;}
._2d{width:35.333520px;}
._19{width:38.202000px;}
._12{width:39.696000px;}
._13{width:41.652720px;}
._18{width:43.541280px;}
._10{width:45.596880px;}
._26{width:47.400960px;}
._25{width:48.609120px;}
._28{width:50.437440px;}
._16{width:53.365680px;}
._f{width:57.803280px;}
._4{width:65.496000px;}
._3{width:72.500160px;}
._11{width:86.293440px;}
._2b{width:88.699200px;}
._29{width:90.312720px;}
._5{width:199.620000px;}
._24{width:289.470000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:2.880000px;}
.fsd{font-size:5.760000px;}
.fs10{font-size:6.000000px;}
.fsc{font-size:9.360000px;}
.fs5{font-size:27.360000px;}
.fs9{font-size:30.240000px;}
.fsf{font-size:36.000000px;}
.fs0{font-size:41.760000px;}
.fs7{font-size:45.360000px;}
.fs6{font-size:48.240000px;}
.fsb{font-size:54.000000px;}
.fsa{font-size:56.920429px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fse{font-size:72.144000px;}
.fs4{font-size:95.760000px;}
.y75{bottom:-240.150000px;}
.y74{bottom:-206.490000px;}
.y73{bottom:-172.650000px;}
.y63{bottom:-147.810000px;}
.y80{bottom:-142.050000px;}
.y72{bottom:-138.990000px;}
.y62{bottom:-114.150000px;}
.y7f{bottom:-108.390000px;}
.y71{bottom:-105.300000px;}
.y61{bottom:-80.280000px;}
.y7e{bottom:-74.520000px;}
.y70{bottom:-71.460000px;}
.y60{bottom:-46.620000px;}
.y7d{bottom:-40.860000px;}
.y6f{bottom:-37.800000px;}
.y66{bottom:-23.580000px;}
.y82{bottom:-17.922750px;}
.y5f{bottom:-12.960000px;}
.y7c{bottom:-7.200000px;}
.y6e{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yc8{bottom:1.837500px;}
.y2{bottom:3.780000px;}
.y68{bottom:5.580000px;}
.y65{bottom:6.480000px;}
.y7b{bottom:10.980000px;}
.y5{bottom:12.600000px;}
.y6d{bottom:14.040000px;}
.y5e{bottom:17.100000px;}
.y4{bottom:24.660000px;}
.y7a{bottom:24.840000px;}
.y6{bottom:25.920000px;}
.y6c{bottom:26.100000px;}
.y5d{bottom:29.160000px;}
.y6b{bottom:38.160000px;}
.y79{bottom:38.700000px;}
.y5c{bottom:41.220000px;}
.y3{bottom:41.580000px;}
.y6a{bottom:50.400000px;}
.y78{bottom:52.560000px;}
.y5b{bottom:53.280000px;}
.y85{bottom:56.700000px;}
.y81{bottom:63.780000px;}
.y5a{bottom:65.520000px;}
.y77{bottom:69.660000px;}
.y1{bottom:75.960000px;}
.y59{bottom:77.760000px;}
.y3a{bottom:123.660000px;}
.y57{bottom:125.640000px;}
.yb4{bottom:140.760000px;}
.y39{bottom:143.460000px;}
.y56{bottom:145.440000px;}
.yb3{bottom:160.740000px;}
.y38{bottom:163.260000px;}
.y55{bottom:165.240000px;}
.yb2{bottom:180.570000px;}
.y37{bottom:183.090000px;}
.y54{bottom:185.070000px;}
.yb1{bottom:200.370000px;}
.y36{bottom:202.890000px;}
.y53{bottom:204.870000px;}
.yb0{bottom:220.170000px;}
.y35{bottom:222.870000px;}
.y52{bottom:224.850000px;}
.yaf{bottom:239.970000px;}
.y34{bottom:242.670000px;}
.y51{bottom:244.650000px;}
.yae{bottom:259.950000px;}
.y33{bottom:262.470000px;}
.y50{bottom:264.450000px;}
.yad{bottom:279.750000px;}
.y32{bottom:282.270000px;}
.y4f{bottom:284.250000px;}
.yac{bottom:299.550000px;}
.y31{bottom:302.070000px;}
.y4e{bottom:304.050000px;}
.yab{bottom:319.350000px;}
.y30{bottom:322.050000px;}
.y4d{bottom:324.030000px;}
.yaa{bottom:339.150000px;}
.y2f{bottom:341.850000px;}
.y4c{bottom:343.830000px;}
.ya9{bottom:358.950000px;}
.y2e{bottom:361.650000px;}
.y4b{bottom:363.630000px;}
.ya8{bottom:378.930000px;}
.y2d{bottom:381.450000px;}
.y4a{bottom:383.430000px;}
.ya7{bottom:398.775000px;}
.y2c{bottom:401.295000px;}
.y49{bottom:403.275000px;}
.ya6{bottom:418.575000px;}
.y2b{bottom:421.275000px;}
.y48{bottom:423.255000px;}
.ya5{bottom:438.375000px;}
.y2a{bottom:441.075000px;}
.y47{bottom:443.055000px;}
.ya4{bottom:458.175000px;}
.y29{bottom:460.875000px;}
.y46{bottom:462.855000px;}
.ya3{bottom:478.155000px;}
.y28{bottom:480.675000px;}
.y45{bottom:482.655000px;}
.ya2{bottom:497.955000px;}
.y27{bottom:500.475000px;}
.y44{bottom:502.455000px;}
.ya1{bottom:517.755000px;}
.y26{bottom:520.455000px;}
.y43{bottom:522.435000px;}
.ya0{bottom:537.555000px;}
.y25{bottom:540.255000px;}
.y42{bottom:542.235000px;}
.y9f{bottom:557.355000px;}
.yc7{bottom:559.515000px;}
.y24{bottom:560.055000px;}
.y41{bottom:562.035000px;}
.y9e{bottom:577.335000px;}
.yc6{bottom:579.495000px;}
.y23{bottom:579.855000px;}
.y40{bottom:581.835000px;}
.y9d{bottom:597.135000px;}
.yc5{bottom:599.295000px;}
.y22{bottom:599.655000px;}
.y3f{bottom:601.635000px;}
.y9c{bottom:616.935000px;}
.yc4{bottom:619.095000px;}
.y21{bottom:619.635000px;}
.y3e{bottom:621.615000px;}
.y9b{bottom:636.765000px;}
.yc3{bottom:638.925000px;}
.y20{bottom:639.465000px;}
.y3d{bottom:641.445000px;}
.y9a{bottom:656.565000px;}
.yc2{bottom:658.725000px;}
.y1f{bottom:659.265000px;}
.y3c{bottom:661.245000px;}
.y99{bottom:676.545000px;}
.yc1{bottom:678.705000px;}
.y1e{bottom:679.065000px;}
.y3b{bottom:681.045000px;}
.y1d{bottom:693.645000px;}
.y98{bottom:696.345000px;}
.y1c{bottom:696.525000px;}
.yc0{bottom:698.505000px;}
.y1b{bottom:710.565000px;}
.y97{bottom:716.145000px;}
.ybf{bottom:718.305000px;}
.y58{bottom:722.625000px;}
.y76{bottom:732.885000px;}
.y1a{bottom:734.865000px;}
.y96{bottom:735.945000px;}
.ybe{bottom:738.105000px;}
.y19{bottom:749.445000px;}
.y69{bottom:750.885000px;}
.y95{bottom:755.745000px;}
.ybd{bottom:757.905000px;}
.y18{bottom:763.125000px;}
.y94{bottom:775.725000px;}
.y17{bottom:776.985000px;}
.ybc{bottom:777.885000px;}
.y16{bottom:790.845000px;}
.y93{bottom:795.525000px;}
.ybb{bottom:797.685000px;}
.y15{bottom:804.525000px;}
.y92{bottom:815.325000px;}
.yba{bottom:817.485000px;}
.y14{bottom:817.665000px;}
.y13{bottom:824.145000px;}
.y91{bottom:835.125000px;}
.yb9{bottom:837.285000px;}
.y12{bottom:850.785000px;}
.y90{bottom:854.925000px;}
.yb8{bottom:857.130000px;}
.y11{bottom:861.990000px;}
.y8f{bottom:874.950000px;}
.yb7{bottom:877.110000px;}
.y10{bottom:881.250000px;}
.yf{bottom:894.030000px;}
.y8e{bottom:896.010000px;}
.yb6{bottom:896.910000px;}
.ye{bottom:909.870000px;}
.yb5{bottom:916.710000px;}
.yd{bottom:921.930000px;}
.y8d{bottom:936.510000px;}
.yc{bottom:937.590000px;}
.yb{bottom:950.550000px;}
.y8c{bottom:956.310000px;}
.ya{bottom:971.610000px;}
.y8b{bottom:976.290000px;}
.y9{bottom:991.050000px;}
.y8a{bottom:996.090000px;}
.y89{bottom:1015.890000px;}
.y8{bottom:1018.590000px;}
.y88{bottom:1035.690000px;}
.y87{bottom:1055.490000px;}
.y7{bottom:1060.350000px;}
.y86{bottom:1075.290000px;}
.y67{bottom:1085.940000px;}
.y84{bottom:1107.360000px;}
.y83{bottom:1124.100000px;}
.y64{bottom:1132.200000px;}
.h5{height:2.826563px;}
.h16{height:5.653125px;}
.h25{height:6.257812px;}
.h15{height:9.433125px;}
.h2{height:13.500000px;}
.h19{height:19.080000px;}
.h1a{height:22.320000px;}
.hc{height:26.852344px;}
.h10{height:30.963516px;}
.hd{height:32.224922px;}
.h4{height:34.380000px;}
.h1e{height:36.281250px;}
.h6{height:40.985156px;}
.h20{height:42.086250px;}
.h1f{height:42.922699px;}
.he{height:44.518359px;}
.h13{height:47.344922px;}
.h18{height:48.616875px;}
.h21{height:52.998047px;}
.h24{height:53.709961px;}
.h14{height:54.421875px;}
.h12{height:55.291992px;}
.h3{height:58.651172px;}
.h11{height:59.255056px;}
.ha{height:60.226875px;}
.h1c{height:61.740000px;}
.hb{height:65.010937px;}
.h7{height:65.884219px;}
.h23{height:70.664062px;}
.hf{height:72.562500px;}
.h1b{height:72.707625px;}
.h22{height:75.093750px;}
.h1d{height:77.760000px;}
.h17{height:88.920000px;}
.h9{height:96.508125px;}
.h8{height:99.687656px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w3{width:82.080000px;}
.w9{width:154.620000px;}
.w6{width:186.870000px;}
.wa{width:270.750000px;}
.w4{width:639.870000px;}
.w2{width:721.950000px;}
.w8{width:743.220000px;}
.w7{width:758.700000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:4.252500px;}
.x2{left:8.100000px;}
.x10{left:10.800000px;}
.x16{left:21.255000px;}
.x3{left:73.974000px;}
.x11{left:81.360000px;}
.x12{left:86.400000px;}
.x14{left:94.536000px;}
.x5{left:101.375987px;}
.x1{left:108.036000px;}
.x18{left:110.375987px;}
.xb{left:112.715987px;}
.xd{left:132.695987px;}
.x6{left:171.389987px;}
.x4{left:190.110000px;}
.xa{left:201.269987px;}
.x8{left:295.274987px;}
.x13{left:298.335000px;}
.xc{left:310.394987px;}
.x15{left:325.515000px;}
.x19{left:419.474987px;}
.x7{left:442.184987px;}
.x9{left:446.504987px;}
.xe{left:473.144987px;}
.x17{left:620.253000px;}
.xf{left:639.690000px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-29.440000pt;}
.ls5{letter-spacing:-13.920000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.231040pt;}
.ls8{letter-spacing:0.280533pt;}
.ls1{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.736000pt;}
.ws7{word-spacing:-48.000000pt;}
.wsa{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.320000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.680000pt;}
.ws3{word-spacing:-9.560533pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.000000pt;}
.ws0{word-spacing:-6.080000pt;}
.ws6{word-spacing:0.000000pt;}
._21{margin-left:-3.747627pt;}
._1e{margin-left:-2.570880pt;}
._2{margin-left:-1.413120pt;}
._0{width:1.048747pt;}
._9{width:2.061227pt;}
._1{width:3.073707pt;}
._d{width:3.984000pt;}
._c{width:4.993280pt;}
._e{width:6.494293pt;}
._1b{width:7.914880pt;}
._1a{width:8.977280pt;}
._14{width:9.951787pt;}
._6{width:11.062613pt;}
._17{width:12.018773pt;}
._22{width:13.263787pt;}
._1c{width:14.539093pt;}
._27{width:15.593600pt;}
._8{width:16.520320pt;}
._7{width:17.423360pt;}
._1f{width:18.552533pt;}
._20{width:19.455573pt;}
._23{width:21.269760pt;}
._b{width:22.855253pt;}
._2c{width:24.320000pt;}
._15{width:25.816320pt;}
._2a{width:27.622400pt;}
._a{width:28.578560pt;}
._1d{width:29.495253pt;}
._2d{width:31.407573pt;}
._19{width:33.957333pt;}
._12{width:35.285333pt;}
._13{width:37.024640pt;}
._18{width:38.703360pt;}
._10{width:40.530560pt;}
._26{width:42.134187pt;}
._25{width:43.208107pt;}
._28{width:44.833280pt;}
._16{width:47.436160pt;}
._f{width:51.380693pt;}
._4{width:58.218667pt;}
._3{width:64.444587pt;}
._11{width:76.705280pt;}
._2b{width:78.843733pt;}
._29{width:80.277973pt;}
._5{width:177.440000pt;}
._24{width:257.306667pt;}
.fs2{font-size:2.560000pt;}
.fsd{font-size:5.120000pt;}
.fs10{font-size:5.333333pt;}
.fsc{font-size:8.320000pt;}
.fs5{font-size:24.320000pt;}
.fs9{font-size:26.880000pt;}
.fsf{font-size:32.000000pt;}
.fs0{font-size:37.120000pt;}
.fs7{font-size:40.320000pt;}
.fs6{font-size:42.880000pt;}
.fsb{font-size:48.000000pt;}
.fsa{font-size:50.595937pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fse{font-size:64.128000pt;}
.fs4{font-size:85.120000pt;}
.y75{bottom:-213.466667pt;}
.y74{bottom:-183.546667pt;}
.y73{bottom:-153.466667pt;}
.y63{bottom:-131.386667pt;}
.y80{bottom:-126.266667pt;}
.y72{bottom:-123.546667pt;}
.y62{bottom:-101.466667pt;}
.y7f{bottom:-96.346667pt;}
.y71{bottom:-93.600000pt;}
.y61{bottom:-71.360000pt;}
.y7e{bottom:-66.240000pt;}
.y70{bottom:-63.520000pt;}
.y60{bottom:-41.440000pt;}
.y7d{bottom:-36.320000pt;}
.y6f{bottom:-33.600000pt;}
.y66{bottom:-20.960000pt;}
.y82{bottom:-15.931333pt;}
.y5f{bottom:-11.520000pt;}
.y7c{bottom:-6.400000pt;}
.y6e{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yc8{bottom:1.633333pt;}
.y2{bottom:3.360000pt;}
.y68{bottom:4.960000pt;}
.y65{bottom:5.760000pt;}
.y7b{bottom:9.760000pt;}
.y5{bottom:11.200000pt;}
.y6d{bottom:12.480000pt;}
.y5e{bottom:15.200000pt;}
.y4{bottom:21.920000pt;}
.y7a{bottom:22.080000pt;}
.y6{bottom:23.040000pt;}
.y6c{bottom:23.200000pt;}
.y5d{bottom:25.920000pt;}
.y6b{bottom:33.920000pt;}
.y79{bottom:34.400000pt;}
.y5c{bottom:36.640000pt;}
.y3{bottom:36.960000pt;}
.y6a{bottom:44.800000pt;}
.y78{bottom:46.720000pt;}
.y5b{bottom:47.360000pt;}
.y85{bottom:50.400000pt;}
.y81{bottom:56.693333pt;}
.y5a{bottom:58.240000pt;}
.y77{bottom:61.920000pt;}
.y1{bottom:67.520000pt;}
.y59{bottom:69.120000pt;}
.y3a{bottom:109.920000pt;}
.y57{bottom:111.680000pt;}
.yb4{bottom:125.120000pt;}
.y39{bottom:127.520000pt;}
.y56{bottom:129.280000pt;}
.yb3{bottom:142.880000pt;}
.y38{bottom:145.120000pt;}
.y55{bottom:146.880000pt;}
.yb2{bottom:160.506667pt;}
.y37{bottom:162.746667pt;}
.y54{bottom:164.506667pt;}
.yb1{bottom:178.106667pt;}
.y36{bottom:180.346667pt;}
.y53{bottom:182.106667pt;}
.yb0{bottom:195.706667pt;}
.y35{bottom:198.106667pt;}
.y52{bottom:199.866667pt;}
.yaf{bottom:213.306667pt;}
.y34{bottom:215.706667pt;}
.y51{bottom:217.466667pt;}
.yae{bottom:231.066667pt;}
.y33{bottom:233.306667pt;}
.y50{bottom:235.066667pt;}
.yad{bottom:248.666667pt;}
.y32{bottom:250.906667pt;}
.y4f{bottom:252.666667pt;}
.yac{bottom:266.266667pt;}
.y31{bottom:268.506667pt;}
.y4e{bottom:270.266667pt;}
.yab{bottom:283.866667pt;}
.y30{bottom:286.266667pt;}
.y4d{bottom:288.026667pt;}
.yaa{bottom:301.466667pt;}
.y2f{bottom:303.866667pt;}
.y4c{bottom:305.626667pt;}
.ya9{bottom:319.066667pt;}
.y2e{bottom:321.466667pt;}
.y4b{bottom:323.226667pt;}
.ya8{bottom:336.826667pt;}
.y2d{bottom:339.066667pt;}
.y4a{bottom:340.826667pt;}
.ya7{bottom:354.466667pt;}
.y2c{bottom:356.706667pt;}
.y49{bottom:358.466667pt;}
.ya6{bottom:372.066667pt;}
.y2b{bottom:374.466667pt;}
.y48{bottom:376.226667pt;}
.ya5{bottom:389.666667pt;}
.y2a{bottom:392.066667pt;}
.y47{bottom:393.826667pt;}
.ya4{bottom:407.266667pt;}
.y29{bottom:409.666667pt;}
.y46{bottom:411.426667pt;}
.ya3{bottom:425.026667pt;}
.y28{bottom:427.266667pt;}
.y45{bottom:429.026667pt;}
.ya2{bottom:442.626667pt;}
.y27{bottom:444.866667pt;}
.y44{bottom:446.626667pt;}
.ya1{bottom:460.226667pt;}
.y26{bottom:462.626667pt;}
.y43{bottom:464.386667pt;}
.ya0{bottom:477.826667pt;}
.y25{bottom:480.226667pt;}
.y42{bottom:481.986667pt;}
.y9f{bottom:495.426667pt;}
.yc7{bottom:497.346667pt;}
.y24{bottom:497.826667pt;}
.y41{bottom:499.586667pt;}
.y9e{bottom:513.186667pt;}
.yc6{bottom:515.106667pt;}
.y23{bottom:515.426667pt;}
.y40{bottom:517.186667pt;}
.y9d{bottom:530.786667pt;}
.yc5{bottom:532.706667pt;}
.y22{bottom:533.026667pt;}
.y3f{bottom:534.786667pt;}
.y9c{bottom:548.386667pt;}
.yc4{bottom:550.306667pt;}
.y21{bottom:550.786667pt;}
.y3e{bottom:552.546667pt;}
.y9b{bottom:566.013333pt;}
.yc3{bottom:567.933333pt;}
.y20{bottom:568.413333pt;}
.y3d{bottom:570.173333pt;}
.y9a{bottom:583.613333pt;}
.yc2{bottom:585.533333pt;}
.y1f{bottom:586.013333pt;}
.y3c{bottom:587.773333pt;}
.y99{bottom:601.373333pt;}
.yc1{bottom:603.293333pt;}
.y1e{bottom:603.613333pt;}
.y3b{bottom:605.373333pt;}
.y1d{bottom:616.573333pt;}
.y98{bottom:618.973333pt;}
.y1c{bottom:619.133333pt;}
.yc0{bottom:620.893333pt;}
.y1b{bottom:631.613333pt;}
.y97{bottom:636.573333pt;}
.ybf{bottom:638.493333pt;}
.y58{bottom:642.333333pt;}
.y76{bottom:651.453333pt;}
.y1a{bottom:653.213333pt;}
.y96{bottom:654.173333pt;}
.ybe{bottom:656.093333pt;}
.y19{bottom:666.173333pt;}
.y69{bottom:667.453333pt;}
.y95{bottom:671.773333pt;}
.ybd{bottom:673.693333pt;}
.y18{bottom:678.333333pt;}
.y94{bottom:689.533333pt;}
.y17{bottom:690.653333pt;}
.ybc{bottom:691.453333pt;}
.y16{bottom:702.973333pt;}
.y93{bottom:707.133333pt;}
.ybb{bottom:709.053333pt;}
.y15{bottom:715.133333pt;}
.y92{bottom:724.733333pt;}
.yba{bottom:726.653333pt;}
.y14{bottom:726.813333pt;}
.y13{bottom:732.573333pt;}
.y91{bottom:742.333333pt;}
.yb9{bottom:744.253333pt;}
.y12{bottom:756.253333pt;}
.y90{bottom:759.933333pt;}
.yb8{bottom:761.893333pt;}
.y11{bottom:766.213333pt;}
.y8f{bottom:777.733333pt;}
.yb7{bottom:779.653333pt;}
.y10{bottom:783.333333pt;}
.yf{bottom:794.693333pt;}
.y8e{bottom:796.453333pt;}
.yb6{bottom:797.253333pt;}
.ye{bottom:808.773333pt;}
.yb5{bottom:814.853333pt;}
.yd{bottom:819.493333pt;}
.y8d{bottom:832.453333pt;}
.yc{bottom:833.413333pt;}
.yb{bottom:844.933333pt;}
.y8c{bottom:850.053333pt;}
.ya{bottom:863.653333pt;}
.y8b{bottom:867.813333pt;}
.y9{bottom:880.933333pt;}
.y8a{bottom:885.413333pt;}
.y89{bottom:903.013333pt;}
.y8{bottom:905.413333pt;}
.y88{bottom:920.613333pt;}
.y87{bottom:938.213333pt;}
.y7{bottom:942.533333pt;}
.y86{bottom:955.813333pt;}
.y67{bottom:965.280000pt;}
.y84{bottom:984.320000pt;}
.y83{bottom:999.200000pt;}
.y64{bottom:1006.400000pt;}
.h5{height:2.512500pt;}
.h16{height:5.025000pt;}
.h25{height:5.562500pt;}
.h15{height:8.385000pt;}
.h2{height:12.000000pt;}
.h19{height:16.960000pt;}
.h1a{height:19.840000pt;}
.hc{height:23.868750pt;}
.h10{height:27.523125pt;}
.hd{height:28.644375pt;}
.h4{height:30.560000pt;}
.h1e{height:32.250000pt;}
.h6{height:36.431250pt;}
.h20{height:37.410000pt;}
.h1f{height:38.153511pt;}
.he{height:39.571875pt;}
.h13{height:42.084375pt;}
.h18{height:43.215000pt;}
.h21{height:47.109375pt;}
.h24{height:47.742188pt;}
.h14{height:48.375000pt;}
.h12{height:49.148438pt;}
.h3{height:52.134375pt;}
.h11{height:52.671161pt;}
.ha{height:53.535000pt;}
.h1c{height:54.880000pt;}
.hb{height:57.787500pt;}
.h7{height:58.563750pt;}
.h23{height:62.812500pt;}
.hf{height:64.500000pt;}
.h1b{height:64.629000pt;}
.h22{height:66.750000pt;}
.h1d{height:69.120000pt;}
.h17{height:79.040000pt;}
.h9{height:85.785000pt;}
.h8{height:88.611250pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w3{width:72.960000pt;}
.w9{width:137.440000pt;}
.w6{width:166.106667pt;}
.wa{width:240.666667pt;}
.w4{width:568.773333pt;}
.w2{width:641.733333pt;}
.w8{width:660.640000pt;}
.w7{width:674.400000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:3.780000pt;}
.x2{left:7.200000pt;}
.x10{left:9.600000pt;}
.x16{left:18.893333pt;}
.x3{left:65.754667pt;}
.x11{left:72.320000pt;}
.x12{left:76.800000pt;}
.x14{left:84.032000pt;}
.x5{left:90.111988pt;}
.x1{left:96.032000pt;}
.x18{left:98.111988pt;}
.xb{left:100.191988pt;}
.xd{left:117.951988pt;}
.x6{left:152.346655pt;}
.x4{left:168.986667pt;}
.xa{left:178.906655pt;}
.x8{left:262.466655pt;}
.x13{left:265.186667pt;}
.xc{left:275.906655pt;}
.x15{left:289.346667pt;}
.x19{left:372.866655pt;}
.x7{left:393.053322pt;}
.x9{left:396.893322pt;}
.xe{left:420.573322pt;}
.x17{left:551.336000pt;}
.xf{left:568.613333pt;}
}




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