
    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_66480bb03d1b2a9de377e4da.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_1c497a0b8d1f08fced42f7cc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_15f7b9fb5292b9c25ca70452.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_f2cc4ad9362d53ac7c36ffe3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_cde965455ad856546fd97d1b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_65a0516d0775e479ee90c937.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_74f5e16cf5a9b4dacf609dba.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.897461;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_345efa293da56a960b1dbfcc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976562;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_b03fdefd746173c9555dd77d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976562;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_6193fc93719873dbca485474.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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.v1{vertical-align:30.240000px;}
.ls7{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.230400px;}
.ls6{letter-spacing:-0.180000px;}
.ls2{letter-spacing:0.000000px;}
.lse{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.119520px;}
.ls0{letter-spacing:0.149760px;}
.ls9{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.256200px;}
.lsb{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.lsd{letter-spacing:7.380000px;}
.ls11{letter-spacing:16.506720px;}
.lsf{letter-spacing:46.026720px;}
.lsc{letter-spacing:201.036000px;}
.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:-66.240000px;}
.ws5{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.573760px;}
.ws6{word-spacing:-16.560000px;}
.wsc{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.ws0{word-spacing:-15.226440px;}
.wsa{word-spacing:-14.993280px;}
.ws9{word-spacing:-14.940000px;}
.wse{word-spacing:-14.580000px;}
.ws3{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.140000px;}
.ws4{word-spacing:-11.520000px;}
.ws8{word-spacing:0.000000px;}
.ws1{word-spacing:1.854720px;}
._16{margin-left:-6.946560px;}
._4{margin-left:-5.353920px;}
._1b{margin-left:-4.123440px;}
._3{margin-left:-3.082320px;}
._2{margin-left:-1.126080px;}
._1{width:1.796400px;}
._9{width:2.864880px;}
._12{width:4.003920px;}
._15{width:5.793120px;}
._18{width:6.809040px;}
._5{width:7.828560px;}
._b{width:9.016560px;}
._a{width:10.338480px;}
._13{width:11.466720px;}
._14{width:12.561120px;}
._10{width:13.702800px;}
._6{width:15.952320px;}
._c{width:17.170080px;}
._0{width:18.463920px;}
._20{width:19.569840px;}
._11{width:20.622960px;}
._e{width:21.853440px;}
._d{width:23.306400px;}
._f{width:25.454400px;}
._1f{width:27.366480px;}
._17{width:28.910880px;}
._1c{width:30.587760px;}
._1d{width:31.971600px;}
._19{width:185.916000px;}
._1a{width:201.060000px;}
._7{width:497.112960px;}
._8{width:499.326480px;}
._1e{width:2383.656000px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:23.760000px;}
.fs5{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4{bottom:57.456000px;}
.yc0{bottom:70.050000px;}
.y3{bottom:77.616000px;}
.y70{bottom:98.856000px;}
.y2b{bottom:106.596000px;}
.y50{bottom:113.796000px;}
.y92{bottom:116.856000px;}
.ybb{bottom:121.176000px;}
.y6f{bottom:124.596000px;}
.y2a{bottom:132.516000px;}
.y4f{bottom:139.716000px;}
.ybd{bottom:142.455000px;}
.y91{bottom:142.776000px;}
.ybf{bottom:143.715000px;}
.yba{bottom:147.096000px;}
.y6e{bottom:150.510000px;}
.y29{bottom:158.430000px;}
.y4e{bottom:165.450000px;}
.y90{bottom:168.690000px;}
.ycb{bottom:169.410000px;}
.yb9{bottom:173.010000px;}
.y6d{bottom:177.510000px;}
.yc1{bottom:180.570000px;}
.y28{bottom:184.170000px;}
.y4d{bottom:191.370000px;}
.y8f{bottom:194.430000px;}
.yca{bottom:195.150000px;}
.yb8{bottom:198.750000px;}
.y27{bottom:210.090000px;}
.y6c{bottom:216.930000px;}
.y4c{bottom:217.290000px;}
.ybe{bottom:217.410000px;}
.yc9{bottom:221.070000px;}
.y8e{bottom:221.430000px;}
.yb7{bottom:224.670000px;}
.y26{bottom:237.090000px;}
.y6b{bottom:242.670000px;}
.y4b{bottom:243.210000px;}
.yc8{bottom:246.990000px;}
.yb6{bottom:250.590000px;}
.y8d{bottom:260.850000px;}
.y25{bottom:268.050000px;}
.y6a{bottom:268.590000px;}
.y4a{bottom:268.950000px;}
.yc7{bottom:272.730000px;}
.ya4{bottom:275.430000px;}
.yb5{bottom:276.510000px;}
.y24{bottom:287.355000px;}
.y69{bottom:294.555000px;}
.y49{bottom:294.915000px;}
.y8c{bottom:298.695000px;}
.ya3{bottom:301.395000px;}
.yb4{bottom:302.295000px;}
.y68{bottom:320.475000px;}
.y48{bottom:320.835000px;}
.y8b{bottom:324.615000px;}
.y23{bottom:326.415000px;}
.ya2{bottom:327.135000px;}
.yb3{bottom:328.215000px;}
.y67{bottom:346.215000px;}
.y47{bottom:346.575000px;}
.y8a{bottom:350.535000px;}
.y22{bottom:352.335000px;}
.ya1{bottom:353.055000px;}
.yb2{bottom:354.135000px;}
.y66{bottom:372.135000px;}
.y46{bottom:372.495000px;}
.y89{bottom:376.275000px;}
.yc6{bottom:377.535000px;}
.y21{bottom:378.075000px;}
.ya0{bottom:378.975000px;}
.yb1{bottom:380.055000px;}
.y65{bottom:398.055000px;}
.y45{bottom:398.415000px;}
.y88{bottom:402.195000px;}
.y20{bottom:403.995000px;}
.yb0{bottom:405.795000px;}
.y9f{bottom:416.775000px;}
.y64{bottom:423.975000px;}
.y87{bottom:428.115000px;}
.y1f{bottom:429.915000px;}
.yaf{bottom:431.715000px;}
.y9e{bottom:442.695000px;}
.y44{bottom:445.215000px;}
.y86{bottom:454.035000px;}
.y1e{bottom:455.835000px;}
.yae{bottom:457.635000px;}
.y63{bottom:461.775000px;}
.y9d{bottom:468.615000px;}
.y43{bottom:471.135000px;}
.y85{bottom:479.775000px;}
.y1d{bottom:481.575000px;}
.yad{bottom:483.555000px;}
.y62{bottom:487.695000px;}
.y9c{bottom:494.355000px;}
.y42{bottom:497.055000px;}
.y84{bottom:506.955000px;}
.y1c{bottom:507.495000px;}
.y61{bottom:513.435000px;}
.y9b{bottom:520.275000px;}
.yac{bottom:521.355000px;}
.y41{bottom:522.975000px;}
.y1b{bottom:533.415000px;}
.y60{bottom:539.355000px;}
.y83{bottom:546.195000px;}
.yab{bottom:547.275000px;}
.y40{bottom:548.715000px;}
.y1a{bottom:559.335000px;}
.y5f{bottom:565.305000px;}
.y82{bottom:572.145000px;}
.y3f{bottom:574.665000px;}
.y19{bottom:585.105000px;}
.y5e{bottom:591.225000px;}
.y81{bottom:597.885000px;}
.y3e{bottom:600.585000px;}
.y18{bottom:611.025000px;}
.y5d{bottom:616.965000px;}
.y80{bottom:623.805000px;}
.yc5{bottom:624.885000px;}
.y3d{bottom:626.325000px;}
.y17{bottom:636.945000px;}
.y5c{bottom:642.885000px;}
.y7f{bottom:649.725000px;}
.y3c{bottom:652.245000px;}
.yaa{bottom:662.685000px;}
.y16{bottom:662.865000px;}
.yc4{bottom:664.305000px;}
.y5b{bottom:668.805000px;}
.y7e{bottom:675.645000px;}
.y9a{bottom:676.725000px;}
.y3b{bottom:678.165000px;}
.y15{bottom:688.605000px;}
.yc3{bottom:690.225000px;}
.y5a{bottom:695.805000px;}
.y7d{bottom:701.385000px;}
.y3a{bottom:704.085000px;}
.y14{bottom:714.525000px;}
.y99{bottom:715.965000px;}
.y59{bottom:726.405000px;}
.yd4{bottom:727.125000px;}
.y7c{bottom:727.305000px;}
.y39{bottom:729.825000px;}
.ya9{bottom:740.265000px;}
.y13{bottom:740.445000px;}
.y98{bottom:741.885000px;}
.y7b{bottom:753.225000px;}
.y38{bottom:755.745000px;}
.y58{bottom:764.745000px;}
.ya8{bottom:766.185000px;}
.y12{bottom:766.365000px;}
.y97{bottom:767.805000px;}
.y7a{bottom:780.225000px;}
.y37{bottom:781.665000px;}
.yd3{bottom:782.385000px;}
.y11{bottom:792.105000px;}
.y96{bottom:793.725000px;}
.y57{bottom:802.905000px;}
.yd2{bottom:808.305000px;}
.y36{bottom:808.665000px;}
.y10{bottom:818.025000px;}
.y79{bottom:819.465000px;}
.yd1{bottom:834.045000px;}
.y56{bottom:841.245000px;}
.ya7{bottom:843.765000px;}
.yf{bottom:843.945000px;}
.y78{bottom:845.385000px;}
.y35{bottom:847.950000px;}
.ybc{bottom:857.880000px;}
.yd0{bottom:860.010000px;}
.ye{bottom:870.990000px;}
.y77{bottom:871.350000px;}
.y34{bottom:873.870000px;}
.y55{bottom:879.450000px;}
.ya6{bottom:881.790000px;}
.ycf{bottom:885.930000px;}
.yd{bottom:892.050000px;}
.y76{bottom:897.270000px;}
.y33{bottom:899.790000px;}
.ya5{bottom:904.470000px;}
.yce{bottom:911.850000px;}
.yc{bottom:914.370000px;}
.y54{bottom:917.790000px;}
.y75{bottom:923.010000px;}
.y32{bottom:925.710000px;}
.yb{bottom:936.690000px;}
.ycd{bottom:937.590000px;}
.y74{bottom:948.930000px;}
.y95{bottom:950.010000px;}
.y31{bottom:951.450000px;}
.y53{bottom:955.950000px;}
.ya{bottom:959.010000px;}
.ycc{bottom:963.510000px;}
.y73{bottom:974.850000px;}
.yc2{bottom:975.930000px;}
.y30{bottom:977.370000px;}
.y9{bottom:988.170000px;}
.y94{bottom:989.430000px;}
.y52{bottom:994.290000px;}
.y72{bottom:1000.590000px;}
.y2f{bottom:1003.290000px;}
.y8{bottom:1003.830000px;}
.y93{bottom:1015.350000px;}
.y7{bottom:1015.710000px;}
.y71{bottom:1027.770000px;}
.y2e{bottom:1029.210000px;}
.y51{bottom:1041.090000px;}
.y6{bottom:1054.770000px;}
.y2d{bottom:1067.010000px;}
.y5{bottom:1084.650000px;}
.y2c{bottom:1092.930000px;}
.y2{bottom:1173.960000px;}
.y1{bottom:1194.120000px;}
.h5{height:16.590234px;}
.h6{height:33.683203px;}
.ha{height:41.726953px;}
.hb{height:42.164648px;}
.h10{height:43.506914px;}
.hf{height:45.461953px;}
.h9{height:46.736719px;}
.h8{height:50.273438px;}
.hc{height:50.391562px;}
.h7{height:50.800781px;}
.h2{height:65.884219px;}
.h11{height:66.863672px;}
.h3{height:67.565039px;}
.h4{height:68.340586px;}
.he{height:77.342344px;}
.hd{height:249.120000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:100.655987px;}
.x1{left:106.415987px;}
.x3{left:120.995987px;}
.x10{left:127.655987px;}
.x11{left:133.415987px;}
.x7{left:166.709987px;}
.xa{left:192.269987px;}
.x8{left:239.249987px;}
.x5{left:243.029987px;}
.x9{left:277.409987px;}
.x4{left:326.954987px;}
.xe{left:377.714987px;}
.x6{left:462.494987px;}
.xc{left:566.849987px;}
.xd{left:570.629987px;}
.xb{left:571.709987px;}
.x2{left:737.069987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.v1{vertical-align:26.880000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.204800pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls2{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.106240pt;}
.ls0{letter-spacing:0.133120pt;}
.ls9{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.227733pt;}
.lsb{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.lsd{letter-spacing:6.560000pt;}
.ls11{letter-spacing:14.672640pt;}
.lsf{letter-spacing:40.912640pt;}
.lsc{letter-spacing:178.698667pt;}
.ws7{word-spacing:-58.880000pt;}
.ws5{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.621120pt;}
.ws6{word-spacing:-14.720000pt;}
.wsc{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.ws0{word-spacing:-13.534613pt;}
.wsa{word-spacing:-13.327360pt;}
.ws9{word-spacing:-13.280000pt;}
.wse{word-spacing:-12.960000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.680000pt;}
.ws4{word-spacing:-10.240000pt;}
.ws8{word-spacing:0.000000pt;}
.ws1{word-spacing:1.648640pt;}
._16{margin-left:-6.174720pt;}
._4{margin-left:-4.759040pt;}
._1b{margin-left:-3.665280pt;}
._3{margin-left:-2.739840pt;}
._2{margin-left:-1.000960pt;}
._1{width:1.596800pt;}
._9{width:2.546560pt;}
._12{width:3.559040pt;}
._15{width:5.149440pt;}
._18{width:6.052480pt;}
._5{width:6.958720pt;}
._b{width:8.014720pt;}
._a{width:9.189760pt;}
._13{width:10.192640pt;}
._14{width:11.165440pt;}
._10{width:12.180267pt;}
._6{width:14.179840pt;}
._c{width:15.262293pt;}
._0{width:16.412373pt;}
._20{width:17.395413pt;}
._11{width:18.331520pt;}
._e{width:19.425280pt;}
._d{width:20.716800pt;}
._f{width:22.626133pt;}
._1f{width:24.325760pt;}
._17{width:25.698560pt;}
._1c{width:27.189120pt;}
._1d{width:28.419200pt;}
._19{width:165.258667pt;}
._1a{width:178.720000pt;}
._7{width:441.878187pt;}
._8{width:443.845760pt;}
._1e{width:2118.805333pt;}
.fs4{font-size:21.120000pt;}
.fs5{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:51.072000pt;}
.yc0{bottom:62.266667pt;}
.y3{bottom:68.992000pt;}
.y70{bottom:87.872000pt;}
.y2b{bottom:94.752000pt;}
.y50{bottom:101.152000pt;}
.y92{bottom:103.872000pt;}
.ybb{bottom:107.712000pt;}
.y6f{bottom:110.752000pt;}
.y2a{bottom:117.792000pt;}
.y4f{bottom:124.192000pt;}
.ybd{bottom:126.626667pt;}
.y91{bottom:126.912000pt;}
.ybf{bottom:127.746667pt;}
.yba{bottom:130.752000pt;}
.y6e{bottom:133.786667pt;}
.y29{bottom:140.826667pt;}
.y4e{bottom:147.066667pt;}
.y90{bottom:149.946667pt;}
.ycb{bottom:150.586667pt;}
.yb9{bottom:153.786667pt;}
.y6d{bottom:157.786667pt;}
.yc1{bottom:160.506667pt;}
.y28{bottom:163.706667pt;}
.y4d{bottom:170.106667pt;}
.y8f{bottom:172.826667pt;}
.yca{bottom:173.466667pt;}
.yb8{bottom:176.666667pt;}
.y27{bottom:186.746667pt;}
.y6c{bottom:192.826667pt;}
.y4c{bottom:193.146667pt;}
.ybe{bottom:193.253333pt;}
.yc9{bottom:196.506667pt;}
.y8e{bottom:196.826667pt;}
.yb7{bottom:199.706667pt;}
.y26{bottom:210.746667pt;}
.y6b{bottom:215.706667pt;}
.y4b{bottom:216.186667pt;}
.yc8{bottom:219.546667pt;}
.yb6{bottom:222.746667pt;}
.y8d{bottom:231.866667pt;}
.y25{bottom:238.266667pt;}
.y6a{bottom:238.746667pt;}
.y4a{bottom:239.066667pt;}
.yc7{bottom:242.426667pt;}
.ya4{bottom:244.826667pt;}
.yb5{bottom:245.786667pt;}
.y24{bottom:255.426667pt;}
.y69{bottom:261.826667pt;}
.y49{bottom:262.146667pt;}
.y8c{bottom:265.506667pt;}
.ya3{bottom:267.906667pt;}
.yb4{bottom:268.706667pt;}
.y68{bottom:284.866667pt;}
.y48{bottom:285.186667pt;}
.y8b{bottom:288.546667pt;}
.y23{bottom:290.146667pt;}
.ya2{bottom:290.786667pt;}
.yb3{bottom:291.746667pt;}
.y67{bottom:307.746667pt;}
.y47{bottom:308.066667pt;}
.y8a{bottom:311.586667pt;}
.y22{bottom:313.186667pt;}
.ya1{bottom:313.826667pt;}
.yb2{bottom:314.786667pt;}
.y66{bottom:330.786667pt;}
.y46{bottom:331.106667pt;}
.y89{bottom:334.466667pt;}
.yc6{bottom:335.586667pt;}
.y21{bottom:336.066667pt;}
.ya0{bottom:336.866667pt;}
.yb1{bottom:337.826667pt;}
.y65{bottom:353.826667pt;}
.y45{bottom:354.146667pt;}
.y88{bottom:357.506667pt;}
.y20{bottom:359.106667pt;}
.yb0{bottom:360.706667pt;}
.y9f{bottom:370.466667pt;}
.y64{bottom:376.866667pt;}
.y87{bottom:380.546667pt;}
.y1f{bottom:382.146667pt;}
.yaf{bottom:383.746667pt;}
.y9e{bottom:393.506667pt;}
.y44{bottom:395.746667pt;}
.y86{bottom:403.586667pt;}
.y1e{bottom:405.186667pt;}
.yae{bottom:406.786667pt;}
.y63{bottom:410.466667pt;}
.y9d{bottom:416.546667pt;}
.y43{bottom:418.786667pt;}
.y85{bottom:426.466667pt;}
.y1d{bottom:428.066667pt;}
.yad{bottom:429.826667pt;}
.y62{bottom:433.506667pt;}
.y9c{bottom:439.426667pt;}
.y42{bottom:441.826667pt;}
.y84{bottom:450.626667pt;}
.y1c{bottom:451.106667pt;}
.y61{bottom:456.386667pt;}
.y9b{bottom:462.466667pt;}
.yac{bottom:463.426667pt;}
.y41{bottom:464.866667pt;}
.y1b{bottom:474.146667pt;}
.y60{bottom:479.426667pt;}
.y83{bottom:485.506667pt;}
.yab{bottom:486.466667pt;}
.y40{bottom:487.746667pt;}
.y1a{bottom:497.186667pt;}
.y5f{bottom:502.493333pt;}
.y82{bottom:508.573333pt;}
.y3f{bottom:510.813333pt;}
.y19{bottom:520.093333pt;}
.y5e{bottom:525.533333pt;}
.y81{bottom:531.453333pt;}
.y3e{bottom:533.853333pt;}
.y18{bottom:543.133333pt;}
.y5d{bottom:548.413333pt;}
.y80{bottom:554.493333pt;}
.yc5{bottom:555.453333pt;}
.y3d{bottom:556.733333pt;}
.y17{bottom:566.173333pt;}
.y5c{bottom:571.453333pt;}
.y7f{bottom:577.533333pt;}
.y3c{bottom:579.773333pt;}
.yaa{bottom:589.053333pt;}
.y16{bottom:589.213333pt;}
.yc4{bottom:590.493333pt;}
.y5b{bottom:594.493333pt;}
.y7e{bottom:600.573333pt;}
.y9a{bottom:601.533333pt;}
.y3b{bottom:602.813333pt;}
.y15{bottom:612.093333pt;}
.yc3{bottom:613.533333pt;}
.y5a{bottom:618.493333pt;}
.y7d{bottom:623.453333pt;}
.y3a{bottom:625.853333pt;}
.y14{bottom:635.133333pt;}
.y99{bottom:636.413333pt;}
.y59{bottom:645.693333pt;}
.yd4{bottom:646.333333pt;}
.y7c{bottom:646.493333pt;}
.y39{bottom:648.733333pt;}
.ya9{bottom:658.013333pt;}
.y13{bottom:658.173333pt;}
.y98{bottom:659.453333pt;}
.y7b{bottom:669.533333pt;}
.y38{bottom:671.773333pt;}
.y58{bottom:679.773333pt;}
.ya8{bottom:681.053333pt;}
.y12{bottom:681.213333pt;}
.y97{bottom:682.493333pt;}
.y7a{bottom:693.533333pt;}
.y37{bottom:694.813333pt;}
.yd3{bottom:695.453333pt;}
.y11{bottom:704.093333pt;}
.y96{bottom:705.533333pt;}
.y57{bottom:713.693333pt;}
.yd2{bottom:718.493333pt;}
.y36{bottom:718.813333pt;}
.y10{bottom:727.133333pt;}
.y79{bottom:728.413333pt;}
.yd1{bottom:741.373333pt;}
.y56{bottom:747.773333pt;}
.ya7{bottom:750.013333pt;}
.yf{bottom:750.173333pt;}
.y78{bottom:751.453333pt;}
.y35{bottom:753.733333pt;}
.ybc{bottom:762.560000pt;}
.yd0{bottom:764.453333pt;}
.ye{bottom:774.213333pt;}
.y77{bottom:774.533333pt;}
.y34{bottom:776.773333pt;}
.y55{bottom:781.733333pt;}
.ya6{bottom:783.813333pt;}
.ycf{bottom:787.493333pt;}
.yd{bottom:792.933333pt;}
.y76{bottom:797.573333pt;}
.y33{bottom:799.813333pt;}
.ya5{bottom:803.973333pt;}
.yce{bottom:810.533333pt;}
.yc{bottom:812.773333pt;}
.y54{bottom:815.813333pt;}
.y75{bottom:820.453333pt;}
.y32{bottom:822.853333pt;}
.yb{bottom:832.613333pt;}
.ycd{bottom:833.413333pt;}
.y74{bottom:843.493333pt;}
.y95{bottom:844.453333pt;}
.y31{bottom:845.733333pt;}
.y53{bottom:849.733333pt;}
.ya{bottom:852.453333pt;}
.ycc{bottom:856.453333pt;}
.y73{bottom:866.533333pt;}
.yc2{bottom:867.493333pt;}
.y30{bottom:868.773333pt;}
.y9{bottom:878.373333pt;}
.y94{bottom:879.493333pt;}
.y52{bottom:883.813333pt;}
.y72{bottom:889.413333pt;}
.y2f{bottom:891.813333pt;}
.y8{bottom:892.293333pt;}
.y93{bottom:902.533333pt;}
.y7{bottom:902.853333pt;}
.y71{bottom:913.573333pt;}
.y2e{bottom:914.853333pt;}
.y51{bottom:925.413333pt;}
.y6{bottom:937.573333pt;}
.y2d{bottom:948.453333pt;}
.y5{bottom:964.133333pt;}
.y2c{bottom:971.493333pt;}
.y2{bottom:1043.520000pt;}
.y1{bottom:1061.440000pt;}
.h5{height:14.746875pt;}
.h6{height:29.940625pt;}
.ha{height:37.090625pt;}
.hb{height:37.479688pt;}
.h10{height:38.672812pt;}
.hf{height:40.410625pt;}
.h9{height:41.543750pt;}
.h8{height:44.687500pt;}
.hc{height:44.792500pt;}
.h7{height:45.156250pt;}
.h2{height:58.563750pt;}
.h11{height:59.434375pt;}
.h3{height:60.057813pt;}
.h4{height:60.747188pt;}
.he{height:68.748750pt;}
.hd{height:221.440000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:89.471988pt;}
.x1{left:94.591988pt;}
.x3{left:107.551988pt;}
.x10{left:113.471988pt;}
.x11{left:118.591988pt;}
.x7{left:148.186655pt;}
.xa{left:170.906655pt;}
.x8{left:212.666655pt;}
.x5{left:216.026655pt;}
.x9{left:246.586655pt;}
.x4{left:290.626655pt;}
.xe{left:335.746655pt;}
.x6{left:411.106655pt;}
.xc{left:503.866655pt;}
.xd{left:507.226655pt;}
.xb{left:508.186655pt;}
.x2{left:655.173322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  