
    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_15e7bc3aa9be99083eec240e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909180;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_26734fec9096f7812c9e16c4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_64d90eeb9299af857fa662b6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5ed1d8084b56784b754bd1ce.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_a8bb819cc90ffb4b15487b17.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.056152;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_347f543436688a17b2c765c7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_d550c32e48f20fda0eeccdf9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b770861ad1e8065efcc4286d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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_66741363eff65a0c67bdbbeb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064941;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls18{letter-spacing:-0.792000px;}
.ls1a{letter-spacing:-0.618000px;}
.ls10{letter-spacing:-0.363000px;}
.ls3{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.288000px;}
.ls14{letter-spacing:-0.282000px;}
.ls13{letter-spacing:-0.227400px;}
.lsa{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.103800px;}
.ls9{letter-spacing:-0.094800px;}
.ls17{letter-spacing:-0.069000px;}
.ls7{letter-spacing:-0.036000px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.012960px;}
.ls19{letter-spacing:0.023040px;}
.ls6{letter-spacing:0.082800px;}
.lsb{letter-spacing:0.100800px;}
.lse{letter-spacing:0.122400px;}
.ls1{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.187200px;}
.ls4{letter-spacing:0.246000px;}
.ls15{letter-spacing:0.305400px;}
.ls5{letter-spacing:0.348000px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.385800px;}
.ls11{letter-spacing:8.467200px;}
.lsc{letter-spacing:34.865280px;}
.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;}
}
.ws2{word-spacing:-17.107200px;}
.wsf{word-spacing:-15.624000px;}
.ws13{word-spacing:-15.552000px;}
.ws10{word-spacing:-14.958600px;}
.ws19{word-spacing:-14.595840px;}
.ws6{word-spacing:-14.572800px;}
.ws17{word-spacing:-14.503800px;}
.ws16{word-spacing:-14.469000px;}
.ws14{word-spacing:-14.345400px;}
.ws15{word-spacing:-14.290800px;}
.ws18{word-spacing:-13.780800px;}
.ws4{word-spacing:-13.393200px;}
.ws12{word-spacing:-13.160160px;}
.ws5{word-spacing:-13.147200px;}
.ws0{word-spacing:-13.140000px;}
.ws11{word-spacing:-12.784200px;}
.ws9{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.060000px;}
.ws8{word-spacing:-10.972800px;}
.ws7{word-spacing:-10.695600px;}
.wsa{word-spacing:-10.612800px;}
.ws3{word-spacing:-9.187200px;}
.wse{word-spacing:-9.092400px;}
.wsc{word-spacing:-7.920000px;}
.wsb{word-spacing:-7.884000px;}
.wsd{word-spacing:0.000000px;}
._1d{margin-left:-4.260000px;}
._10{margin-left:-3.017280px;}
._2{margin-left:-1.278000px;}
._1{width:1.128000px;}
._8{width:2.151360px;}
._11{width:3.686640px;}
._6{width:4.721040px;}
._7{width:5.867280px;}
._b{width:7.634160px;}
._a{width:8.784720px;}
._1a{width:9.840000px;}
._c{width:11.055600px;}
._19{width:12.374400px;}
._12{width:13.512960px;}
._15{width:16.222800px;}
._14{width:17.771760px;}
._1c{width:19.587600px;}
._1b{width:20.666880px;}
._16{width:21.792960px;}
._d{width:22.895520px;}
._13{width:24.314400px;}
._1f{width:25.699440px;}
._9{width:27.011520px;}
._22{width:28.218240px;}
._21{width:29.496240px;}
._24{width:30.564000px;}
._23{width:34.444800px;}
._20{width:36.498240px;}
._e{width:37.887840px;}
._f{width:39.144960px;}
._1e{width:40.773360px;}
._17{width:47.246880px;}
._0{width:75.000000px;}
._25{width:77.103360px;}
._26{width:176.529600px;}
._27{width:178.453440px;}
._3{width:181.620000px;}
._4{width:201.669840px;}
._5{width:202.852800px;}
._18{width:1056.007200px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(238,0,0);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs8{font-size:84.240000px;}
.y53{bottom:-1.080000px;}
.y0{bottom:0.000000px;}
.y52{bottom:19.620000px;}
.y51{bottom:38.340000px;}
.y50{bottom:48.960000px;}
.y9{bottom:56.520000px;}
.y4f{bottom:59.400000px;}
.y4e{bottom:70.020000px;}
.y8{bottom:70.596000px;}
.y7{bottom:84.636000px;}
.y4d{bottom:91.620000px;}
.y6{bottom:98.676000px;}
.y4c{bottom:108.180000px;}
.yc3{bottom:111.636000px;}
.ycd{bottom:113.616000px;}
.yae{bottom:115.596000px;}
.y3e{bottom:122.796000px;}
.y82{bottom:127.656000px;}
.yc2{bottom:133.776000px;}
.ycc{bottom:135.756000px;}
.yad{bottom:137.916000px;}
.y3d{bottom:145.116000px;}
.y81{bottom:149.976000px;}
.y4b{bottom:151.560000px;}
.yc1{bottom:156.090000px;}
.ycb{bottom:158.070000px;}
.yac{bottom:160.050000px;}
.y4a{bottom:165.420000px;}
.y3c{bottom:167.430000px;}
.y80{bottom:172.290000px;}
.yc0{bottom:178.230000px;}
.y49{bottom:179.100000px;}
.yca{bottom:180.390000px;}
.yab{bottom:182.370000px;}
.y3b{bottom:189.570000px;}
.y48{bottom:192.960000px;}
.y7f{bottom:194.430000px;}
.ybf{bottom:200.550000px;}
.yc9{bottom:202.530000px;}
.yaa{bottom:204.510000px;}
.y47{bottom:207.000000px;}
.y3a{bottom:211.890000px;}
.y7e{bottom:216.750000px;}
.y46{bottom:220.860000px;}
.ybe{bottom:222.870000px;}
.yc8{bottom:224.850000px;}
.ya9{bottom:226.830000px;}
.y39{bottom:234.030000px;}
.y45{bottom:234.900000px;}
.y7d{bottom:238.890000px;}
.ybd{bottom:245.010000px;}
.yc7{bottom:246.990000px;}
.y44{bottom:248.985000px;}
.ya8{bottom:249.150000px;}
.y38{bottom:256.350000px;}
.y7c{bottom:261.210000px;}
.y43{bottom:263.025000px;}
.ybc{bottom:267.330000px;}
.yc6{bottom:269.310000px;}
.ya7{bottom:271.290000px;}
.y42{bottom:277.065000px;}
.y37{bottom:278.490000px;}
.y7b{bottom:283.530000px;}
.ybb{bottom:289.470000px;}
.y41{bottom:291.105000px;}
.yc5{bottom:291.450000px;}
.ya6{bottom:293.610000px;}
.y36{bottom:300.810000px;}
.y40{bottom:305.505000px;}
.y7a{bottom:305.670000px;}
.yba{bottom:311.790000px;}
.yc4{bottom:314.490000px;}
.ya5{bottom:315.750000px;}
.y35{bottom:323.130000px;}
.y79{bottom:327.990000px;}
.yb9{bottom:333.930000px;}
.ya4{bottom:338.115000px;}
.y34{bottom:345.315000px;}
.y78{bottom:350.175000px;}
.yb8{bottom:357.015000px;}
.ya3{bottom:360.255000px;}
.y33{bottom:367.635000px;}
.y77{bottom:372.495000px;}
.yb7{bottom:380.595000px;}
.ya2{bottom:382.575000px;}
.y32{bottom:386.895000px;}
.y76{bottom:394.635000px;}
.yb6{bottom:402.735000px;}
.y31{bottom:404.355000px;}
.ya1{bottom:404.895000px;}
.y75{bottom:416.955000px;}
.y30{bottom:421.995000px;}
.yb5{bottom:425.055000px;}
.ya0{bottom:427.035000px;}
.y74{bottom:439.275000px;}
.y2f{bottom:439.635000px;}
.yb4{bottom:447.375000px;}
.y9f{bottom:449.355000px;}
.y2e{bottom:457.275000px;}
.y73{bottom:461.415000px;}
.yb3{bottom:469.515000px;}
.y9e{bottom:471.495000px;}
.y2d{bottom:474.735000px;}
.y72{bottom:483.735000px;}
.yb2{bottom:491.835000px;}
.y2c{bottom:492.375000px;}
.y9d{bottom:493.815000px;}
.y71{bottom:505.875000px;}
.y2b{bottom:510.015000px;}
.yb1{bottom:513.975000px;}
.y9c{bottom:516.135000px;}
.y2a{bottom:527.475000px;}
.y70{bottom:528.195000px;}
.yb0{bottom:536.295000px;}
.y9b{bottom:538.275000px;}
.y29{bottom:545.115000px;}
.y6f{bottom:550.515000px;}
.yaf{bottom:559.335000px;}
.y9a{bottom:560.595000px;}
.y28{bottom:562.755000px;}
.y6e{bottom:572.655000px;}
.y27{bottom:580.215000px;}
.y99{bottom:582.735000px;}
.y6d{bottom:594.975000px;}
.y26{bottom:597.855000px;}
.y98{bottom:605.085000px;}
.y6c{bottom:617.145000px;}
.y25{bottom:617.685000px;}
.y97{bottom:627.405000px;}
.y3f{bottom:628.485000px;}
.y24{bottom:635.325000px;}
.y6b{bottom:639.465000px;}
.y96{bottom:649.545000px;}
.y23{bottom:652.965000px;}
.y6a{bottom:661.785000px;}
.y22{bottom:670.425000px;}
.y95{bottom:671.865000px;}
.y69{bottom:683.925000px;}
.y21{bottom:688.065000px;}
.y94{bottom:694.005000px;}
.y20{bottom:705.705000px;}
.y68{bottom:706.245000px;}
.y93{bottom:716.325000px;}
.y1f{bottom:723.345000px;}
.y67{bottom:728.385000px;}
.y92{bottom:738.465000px;}
.y1e{bottom:740.805000px;}
.y66{bottom:750.705000px;}
.y1d{bottom:758.445000px;}
.y91{bottom:760.785000px;}
.y65{bottom:772.845000px;}
.y1c{bottom:776.085000px;}
.y90{bottom:783.105000px;}
.y1b{bottom:793.545000px;}
.y64{bottom:795.165000px;}
.y8f{bottom:805.245000px;}
.y1a{bottom:811.185000px;}
.y63{bottom:818.205000px;}
.y8e{bottom:827.565000px;}
.y19{bottom:828.825000px;}
.y62{bottom:841.605000px;}
.y18{bottom:846.285000px;}
.y8d{bottom:849.705000px;}
.y17{bottom:863.925000px;}
.y8c{bottom:872.070000px;}
.y16{bottom:881.610000px;}
.y61{bottom:886.290000px;}
.y8b{bottom:894.390000px;}
.y15{bottom:899.250000px;}
.y60{bottom:909.150000px;}
.y8a{bottom:916.530000px;}
.y14{bottom:916.710000px;}
.y5f{bottom:932.730000px;}
.y13{bottom:934.350000px;}
.y89{bottom:938.850000px;}
.y12{bottom:954.870000px;}
.y5e{bottom:955.770000px;}
.y88{bottom:960.990000px;}
.y11{bottom:974.130000px;}
.y5d{bottom:980.070000px;}
.y87{bottom:983.310000px;}
.y10{bottom:991.770000px;}
.y5c{bottom:1003.470000px;}
.y86{bottom:1005.450000px;}
.yf{bottom:1012.290000px;}
.y5b{bottom:1025.790000px;}
.y85{bottom:1027.770000px;}
.ye{bottom:1032.990000px;}
.y5a{bottom:1047.930000px;}
.y84{bottom:1050.090000px;}
.yd{bottom:1050.810000px;}
.y59{bottom:1070.970000px;}
.yc{bottom:1071.510000px;}
.y83{bottom:1072.230000px;}
.yb{bottom:1090.590000px;}
.y58{bottom:1094.550000px;}
.ya{bottom:1113.810000px;}
.y57{bottom:1116.690000px;}
.y5{bottom:1131.990000px;}
.y56{bottom:1139.040000px;}
.y4{bottom:1147.500000px;}
.y3{bottom:1162.980000px;}
.y55{bottom:1178.100000px;}
.y2{bottom:1178.460000px;}
.y1{bottom:1193.940000px;}
.y54{bottom:1197.540000px;}
.hd{height:30.480469px;}
.hc{height:33.494766px;}
.ha{height:34.036523px;}
.h3{height:38.100586px;}
.hb{height:40.655391px;}
.h4{height:40.843828px;}
.h2{height:45.720703px;}
.h9{height:50.273438px;}
.h7{height:50.597578px;}
.h6{height:56.084062px;}
.he{height:58.819922px;}
.hf{height:60.960938px;}
.h5{height:65.837812px;}
.h8{height:318.270000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:209.190000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:106.014000px;}
.x1{left:108.035987px;}
.xb{left:111.996000px;}
.x2{left:116.135987px;}
.x7{left:124.955987px;}
.xe{left:135.035987px;}
.xa{left:162.029987px;}
.x6{left:194.249987px;}
.x5{left:231.689987px;}
.x4{left:260.129987px;}
.x9{left:334.694987px;}
.x8{left:416.594987px;}
.x3{left:446.474987px;}
.xd{left:575.024987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls18{letter-spacing:-0.704000pt;}
.ls1a{letter-spacing:-0.549333pt;}
.ls10{letter-spacing:-0.322667pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls14{letter-spacing:-0.250667pt;}
.ls13{letter-spacing:-0.202133pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.092267pt;}
.ls9{letter-spacing:-0.084267pt;}
.ls17{letter-spacing:-0.061333pt;}
.ls7{letter-spacing:-0.032000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.011520pt;}
.ls19{letter-spacing:0.020480pt;}
.ls6{letter-spacing:0.073600pt;}
.lsb{letter-spacing:0.089600pt;}
.lse{letter-spacing:0.108800pt;}
.ls1{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.166400pt;}
.ls4{letter-spacing:0.218667pt;}
.ls15{letter-spacing:0.271467pt;}
.ls5{letter-spacing:0.309333pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.342933pt;}
.ls11{letter-spacing:7.526400pt;}
.lsc{letter-spacing:30.991360pt;}
.ws2{word-spacing:-15.206400pt;}
.wsf{word-spacing:-13.888000pt;}
.ws13{word-spacing:-13.824000pt;}
.ws10{word-spacing:-13.296533pt;}
.ws19{word-spacing:-12.974080pt;}
.ws6{word-spacing:-12.953600pt;}
.ws17{word-spacing:-12.892267pt;}
.ws16{word-spacing:-12.861333pt;}
.ws14{word-spacing:-12.751467pt;}
.ws15{word-spacing:-12.702933pt;}
.ws18{word-spacing:-12.249600pt;}
.ws4{word-spacing:-11.905067pt;}
.ws12{word-spacing:-11.697920pt;}
.ws5{word-spacing:-11.686400pt;}
.ws0{word-spacing:-11.680000pt;}
.ws11{word-spacing:-11.363733pt;}
.ws9{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws8{word-spacing:-9.753600pt;}
.ws7{word-spacing:-9.507200pt;}
.wsa{word-spacing:-9.433600pt;}
.ws3{word-spacing:-8.166400pt;}
.wse{word-spacing:-8.082133pt;}
.wsc{word-spacing:-7.040000pt;}
.wsb{word-spacing:-7.008000pt;}
.wsd{word-spacing:0.000000pt;}
._1d{margin-left:-3.786667pt;}
._10{margin-left:-2.682027pt;}
._2{margin-left:-1.136000pt;}
._1{width:1.002667pt;}
._8{width:1.912320pt;}
._11{width:3.277013pt;}
._6{width:4.196480pt;}
._7{width:5.215360pt;}
._b{width:6.785920pt;}
._a{width:7.808640pt;}
._1a{width:8.746667pt;}
._c{width:9.827200pt;}
._19{width:10.999467pt;}
._12{width:12.011520pt;}
._15{width:14.420267pt;}
._14{width:15.797120pt;}
._1c{width:17.411200pt;}
._1b{width:18.370560pt;}
._16{width:19.371520pt;}
._d{width:20.351573pt;}
._13{width:21.612800pt;}
._1f{width:22.843947pt;}
._9{width:24.010240pt;}
._22{width:25.082880pt;}
._21{width:26.218880pt;}
._24{width:27.168000pt;}
._23{width:30.617600pt;}
._20{width:32.442880pt;}
._e{width:33.678080pt;}
._f{width:34.795520pt;}
._1e{width:36.242987pt;}
._17{width:41.997227pt;}
._0{width:66.666667pt;}
._25{width:68.536320pt;}
._26{width:156.915200pt;}
._27{width:158.625280pt;}
._3{width:161.440000pt;}
._4{width:179.262080pt;}
._5{width:180.313600pt;}
._18{width:938.673067pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs8{font-size:74.880000pt;}
.y53{bottom:-0.960000pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:17.440000pt;}
.y51{bottom:34.080000pt;}
.y50{bottom:43.520000pt;}
.y9{bottom:50.240000pt;}
.y4f{bottom:52.800000pt;}
.y4e{bottom:62.240000pt;}
.y8{bottom:62.752000pt;}
.y7{bottom:75.232000pt;}
.y4d{bottom:81.440000pt;}
.y6{bottom:87.712000pt;}
.y4c{bottom:96.160000pt;}
.yc3{bottom:99.232000pt;}
.ycd{bottom:100.992000pt;}
.yae{bottom:102.752000pt;}
.y3e{bottom:109.152000pt;}
.y82{bottom:113.472000pt;}
.yc2{bottom:118.912000pt;}
.ycc{bottom:120.672000pt;}
.yad{bottom:122.592000pt;}
.y3d{bottom:128.992000pt;}
.y81{bottom:133.312000pt;}
.y4b{bottom:134.720000pt;}
.yc1{bottom:138.746667pt;}
.ycb{bottom:140.506667pt;}
.yac{bottom:142.266667pt;}
.y4a{bottom:147.040000pt;}
.y3c{bottom:148.826667pt;}
.y80{bottom:153.146667pt;}
.yc0{bottom:158.426667pt;}
.y49{bottom:159.200000pt;}
.yca{bottom:160.346667pt;}
.yab{bottom:162.106667pt;}
.y3b{bottom:168.506667pt;}
.y48{bottom:171.520000pt;}
.y7f{bottom:172.826667pt;}
.ybf{bottom:178.266667pt;}
.yc9{bottom:180.026667pt;}
.yaa{bottom:181.786667pt;}
.y47{bottom:184.000000pt;}
.y3a{bottom:188.346667pt;}
.y7e{bottom:192.666667pt;}
.y46{bottom:196.320000pt;}
.ybe{bottom:198.106667pt;}
.yc8{bottom:199.866667pt;}
.ya9{bottom:201.626667pt;}
.y39{bottom:208.026667pt;}
.y45{bottom:208.800000pt;}
.y7d{bottom:212.346667pt;}
.ybd{bottom:217.786667pt;}
.yc7{bottom:219.546667pt;}
.y44{bottom:221.320000pt;}
.ya8{bottom:221.466667pt;}
.y38{bottom:227.866667pt;}
.y7c{bottom:232.186667pt;}
.y43{bottom:233.800000pt;}
.ybc{bottom:237.626667pt;}
.yc6{bottom:239.386667pt;}
.ya7{bottom:241.146667pt;}
.y42{bottom:246.280000pt;}
.y37{bottom:247.546667pt;}
.y7b{bottom:252.026667pt;}
.ybb{bottom:257.306667pt;}
.y41{bottom:258.760000pt;}
.yc5{bottom:259.066667pt;}
.ya6{bottom:260.986667pt;}
.y36{bottom:267.386667pt;}
.y40{bottom:271.560000pt;}
.y7a{bottom:271.706667pt;}
.yba{bottom:277.146667pt;}
.yc4{bottom:279.546667pt;}
.ya5{bottom:280.666667pt;}
.y35{bottom:287.226667pt;}
.y79{bottom:291.546667pt;}
.yb9{bottom:296.826667pt;}
.ya4{bottom:300.546667pt;}
.y34{bottom:306.946667pt;}
.y78{bottom:311.266667pt;}
.yb8{bottom:317.346667pt;}
.ya3{bottom:320.226667pt;}
.y33{bottom:326.786667pt;}
.y77{bottom:331.106667pt;}
.yb7{bottom:338.306667pt;}
.ya2{bottom:340.066667pt;}
.y32{bottom:343.906667pt;}
.y76{bottom:350.786667pt;}
.yb6{bottom:357.986667pt;}
.y31{bottom:359.426667pt;}
.ya1{bottom:359.906667pt;}
.y75{bottom:370.626667pt;}
.y30{bottom:375.106667pt;}
.yb5{bottom:377.826667pt;}
.ya0{bottom:379.586667pt;}
.y74{bottom:390.466667pt;}
.y2f{bottom:390.786667pt;}
.yb4{bottom:397.666667pt;}
.y9f{bottom:399.426667pt;}
.y2e{bottom:406.466667pt;}
.y73{bottom:410.146667pt;}
.yb3{bottom:417.346667pt;}
.y9e{bottom:419.106667pt;}
.y2d{bottom:421.986667pt;}
.y72{bottom:429.986667pt;}
.yb2{bottom:437.186667pt;}
.y2c{bottom:437.666667pt;}
.y9d{bottom:438.946667pt;}
.y71{bottom:449.666667pt;}
.y2b{bottom:453.346667pt;}
.yb1{bottom:456.866667pt;}
.y9c{bottom:458.786667pt;}
.y2a{bottom:468.866667pt;}
.y70{bottom:469.506667pt;}
.yb0{bottom:476.706667pt;}
.y9b{bottom:478.466667pt;}
.y29{bottom:484.546667pt;}
.y6f{bottom:489.346667pt;}
.yaf{bottom:497.186667pt;}
.y9a{bottom:498.306667pt;}
.y28{bottom:500.226667pt;}
.y6e{bottom:509.026667pt;}
.y27{bottom:515.746667pt;}
.y99{bottom:517.986667pt;}
.y6d{bottom:528.866667pt;}
.y26{bottom:531.426667pt;}
.y98{bottom:537.853333pt;}
.y6c{bottom:548.573333pt;}
.y25{bottom:549.053333pt;}
.y97{bottom:557.693333pt;}
.y3f{bottom:558.653333pt;}
.y24{bottom:564.733333pt;}
.y6b{bottom:568.413333pt;}
.y96{bottom:577.373333pt;}
.y23{bottom:580.413333pt;}
.y6a{bottom:588.253333pt;}
.y22{bottom:595.933333pt;}
.y95{bottom:597.213333pt;}
.y69{bottom:607.933333pt;}
.y21{bottom:611.613333pt;}
.y94{bottom:616.893333pt;}
.y20{bottom:627.293333pt;}
.y68{bottom:627.773333pt;}
.y93{bottom:636.733333pt;}
.y1f{bottom:642.973333pt;}
.y67{bottom:647.453333pt;}
.y92{bottom:656.413333pt;}
.y1e{bottom:658.493333pt;}
.y66{bottom:667.293333pt;}
.y1d{bottom:674.173333pt;}
.y91{bottom:676.253333pt;}
.y65{bottom:686.973333pt;}
.y1c{bottom:689.853333pt;}
.y90{bottom:696.093333pt;}
.y1b{bottom:705.373333pt;}
.y64{bottom:706.813333pt;}
.y8f{bottom:715.773333pt;}
.y1a{bottom:721.053333pt;}
.y63{bottom:727.293333pt;}
.y8e{bottom:735.613333pt;}
.y19{bottom:736.733333pt;}
.y62{bottom:748.093333pt;}
.y18{bottom:752.253333pt;}
.y8d{bottom:755.293333pt;}
.y17{bottom:767.933333pt;}
.y8c{bottom:775.173333pt;}
.y16{bottom:783.653333pt;}
.y61{bottom:787.813333pt;}
.y8b{bottom:795.013333pt;}
.y15{bottom:799.333333pt;}
.y60{bottom:808.133333pt;}
.y8a{bottom:814.693333pt;}
.y14{bottom:814.853333pt;}
.y5f{bottom:829.093333pt;}
.y13{bottom:830.533333pt;}
.y89{bottom:834.533333pt;}
.y12{bottom:848.773333pt;}
.y5e{bottom:849.573333pt;}
.y88{bottom:854.213333pt;}
.y11{bottom:865.893333pt;}
.y5d{bottom:871.173333pt;}
.y87{bottom:874.053333pt;}
.y10{bottom:881.573333pt;}
.y5c{bottom:891.973333pt;}
.y86{bottom:893.733333pt;}
.yf{bottom:899.813333pt;}
.y5b{bottom:911.813333pt;}
.y85{bottom:913.573333pt;}
.ye{bottom:918.213333pt;}
.y5a{bottom:931.493333pt;}
.y84{bottom:933.413333pt;}
.yd{bottom:934.053333pt;}
.y59{bottom:951.973333pt;}
.yc{bottom:952.453333pt;}
.y83{bottom:953.093333pt;}
.yb{bottom:969.413333pt;}
.y58{bottom:972.933333pt;}
.ya{bottom:990.053333pt;}
.y57{bottom:992.613333pt;}
.y5{bottom:1006.213333pt;}
.y56{bottom:1012.480000pt;}
.y4{bottom:1020.000000pt;}
.y3{bottom:1033.760000pt;}
.y55{bottom:1047.200000pt;}
.y2{bottom:1047.520000pt;}
.y1{bottom:1061.280000pt;}
.y54{bottom:1064.480000pt;}
.hd{height:27.093750pt;}
.hc{height:29.773125pt;}
.ha{height:30.254687pt;}
.h3{height:33.867188pt;}
.hb{height:36.138125pt;}
.h4{height:36.305625pt;}
.h2{height:40.640625pt;}
.h9{height:44.687500pt;}
.h7{height:44.975625pt;}
.h6{height:49.852500pt;}
.he{height:52.284375pt;}
.hf{height:54.187500pt;}
.h5{height:58.522500pt;}
.h8{height:282.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:185.946667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:94.234667pt;}
.x1{left:96.031988pt;}
.xb{left:99.552000pt;}
.x2{left:103.231988pt;}
.x7{left:111.071988pt;}
.xe{left:120.031988pt;}
.xa{left:144.026655pt;}
.x6{left:172.666655pt;}
.x5{left:205.946655pt;}
.x4{left:231.226655pt;}
.x9{left:297.506655pt;}
.x8{left:370.306655pt;}
.x3{left:396.866655pt;}
.xd{left:511.133322pt;}
}




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