
    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_cac63d9628dbc87d39eb7cf5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_7ed5e0a8536982748a04be08.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933105;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_251f593245cb20a81aa1792d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.747000;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_bd7350684d174e5369a70a93.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.885254;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_cbf20bcc7c97e945f250b477.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.935059;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_d3774873a891f35e5db9d42b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_20ad7616ebc8417a49cbe4b6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940000;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_1bb1bcc3afd02e9c82c99472.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.687500;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_2486bb7f98da7d910e1d124c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_1e63cfe78ee4c573af37338d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_48b0ca3b6fa24792ba6a9634.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_7281dd302f66bbe465e6af4b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_144d6d5b864f041322e6250b.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_04e31c011f3830873d26e076.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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:fff;src:url('chunks/assets/font_e09f99ee02a5e74246c6fd3c.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;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:ff10;src:url('chunks/assets/font_abae78f833464a299a5d48cb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.935059;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:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls1a{letter-spacing:-0.361152px;}
.ls8{letter-spacing:-0.320544px;}
.ls22{letter-spacing:-0.302400px;}
.ls6{letter-spacing:-0.241920px;}
.lsd{letter-spacing:-0.198720px;}
.lsb{letter-spacing:-0.158976px;}
.lsc{letter-spacing:-0.079488px;}
.ls19{letter-spacing:-0.014400px;}
.ls3{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.000288px;}
.ls0{letter-spacing:0.042768px;}
.ls1c{letter-spacing:0.057024px;}
.ls1d{letter-spacing:0.061776px;}
.ls1{letter-spacing:0.072576px;}
.ls5{letter-spacing:0.073872px;}
.ls4{letter-spacing:0.097200px;}
.ls16{letter-spacing:0.125280px;}
.lsf{letter-spacing:0.133056px;}
.ls2{letter-spacing:0.159840px;}
.ls1b{letter-spacing:0.185616px;}
.ls1e{letter-spacing:0.239040px;}
.lse{letter-spacing:0.240048px;}
.ls18{letter-spacing:0.266112px;}
.ls10{letter-spacing:0.275616px;}
.ls9{letter-spacing:0.318384px;}
.ls17{letter-spacing:0.346896px;}
.lsa{letter-spacing:0.356400px;}
.ls7{letter-spacing:0.365904px;}
.ls21{letter-spacing:0.418176px;}
.ls12{letter-spacing:0.502560px;}
.ls15{letter-spacing:0.720576px;}
.ls11{letter-spacing:0.731520px;}
.ls13{letter-spacing:0.900000px;}
.ls20{letter-spacing:44.495712px;}
.ls14{letter-spacing:54.946368px;}
.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:-18.335232px;}
.ws1{word-spacing:-18.255744px;}
.ws8{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.985600px;}
.ws9{word-spacing:-16.511040px;}
.ws7{word-spacing:-13.680000px;}
.ws0{word-spacing:-13.566960px;}
.ws6{word-spacing:-13.318848px;}
.ws5{word-spacing:-0.060480px;}
.ws3{word-spacing:0.000000px;}
._c{margin-left:-3.967200px;}
._7{margin-left:-2.232000px;}
._1{margin-left:-1.033200px;}
._0{width:1.010880px;}
._3{width:2.329920px;}
._8{width:4.207680px;}
._f{width:5.536800px;}
._6{width:7.531200px;}
._9{width:8.798400px;}
._a{width:10.476000px;}
._5{width:12.002400px;}
._b{width:13.269600px;}
._d{width:14.601600px;}
._10{width:16.997472px;}
._e{width:19.015200px;}
._4{width:22.147200px;}
._15{width:23.169600px;}
._12{width:35.654400px;}
._2{width:52.755984px;}
._14{width:90.048096px;}
._13{width:114.048000px;}
._11{width:1390.789440px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:38.880000px;}
.fs3{font-size:47.520000px;}
.fs5{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y25{bottom:112.320000px;}
.y4{bottom:113.040000px;}
.y3{bottom:127.800000px;}
.y53{bottom:131.400000px;}
.y24{bottom:132.840000px;}
.y2{bottom:142.560000px;}
.y23{bottom:152.280000px;}
.y7e{bottom:158.760000px;}
.y51{bottom:173.520000px;}
.y7d{bottom:179.640000px;}
.y20{bottom:191.520000px;}
.y50{bottom:194.400000px;}
.y7c{bottom:200.160000px;}
.y1f{bottom:212.400000px;}
.y4f{bottom:214.920000px;}
.y7b{bottom:221.040000px;}
.y4e{bottom:229.680000px;}
.y1e{bottom:236.880000px;}
.y7a{bottom:241.560000px;}
.y4d{bottom:259.560000px;}
.y79{bottom:262.440000px;}
.y1d{bottom:274.320000px;}
.y4c{bottom:280.080000px;}
.y78{bottom:282.960000px;}
.y1c{bottom:295.200000px;}
.y4b{bottom:300.960000px;}
.y77{bottom:303.840000px;}
.y1b{bottom:315.720000px;}
.y4a{bottom:321.480000px;}
.y76{bottom:324.360000px;}
.y1a{bottom:336.600000px;}
.y49{bottom:342.360000px;}
.y75{bottom:345.240000px;}
.y19{bottom:357.120000px;}
.y48{bottom:362.880000px;}
.y74{bottom:365.760000px;}
.y18{bottom:378.000000px;}
.y47{bottom:383.760000px;}
.y73{bottom:390.600000px;}
.y17{bottom:398.520000px;}
.y46{bottom:404.280000px;}
.y16{bottom:419.400000px;}
.y72{bottom:428.040000px;}
.y45{bottom:428.760000px;}
.y15{bottom:439.920000px;}
.y71{bottom:452.520000px;}
.y14{bottom:460.800000px;}
.y44{bottom:466.560000px;}
.y13{bottom:481.320000px;}
.y43{bottom:487.080000px;}
.y70{bottom:490.320000px;}
.y12{bottom:502.200000px;}
.y42{bottom:507.960000px;}
.y6f{bottom:511.200000px;}
.y11{bottom:522.720000px;}
.y41{bottom:528.480000px;}
.y6e{bottom:532.440000px;}
.y10{bottom:543.600000px;}
.y40{bottom:549.360000px;}
.y91{bottom:552.240000px;}
.y6d{bottom:552.960000px;}
.yf{bottom:564.120000px;}
.y3f{bottom:569.880000px;}
.y90{bottom:572.760000px;}
.y6c{bottom:574.200000px;}
.ye{bottom:585.000000px;}
.y3e{bottom:590.760000px;}
.y8f{bottom:593.640000px;}
.y6b{bottom:594.720000px;}
.yd{bottom:605.520000px;}
.y3d{bottom:611.280000px;}
.y8e{bottom:614.160000px;}
.y6a{bottom:615.600000px;}
.yc{bottom:626.400000px;}
.y3c{bottom:632.160000px;}
.y8d{bottom:635.040000px;}
.y69{bottom:636.480000px;}
.yb{bottom:650.880000px;}
.y3b{bottom:652.680000px;}
.y8c{bottom:655.560000px;}
.y68{bottom:657.360000px;}
.y3a{bottom:673.560000px;}
.y8b{bottom:676.440000px;}
.y67{bottom:678.600000px;}
.ya{bottom:686.880000px;}
.y39{bottom:694.080000px;}
.y8a{bottom:696.960000px;}
.y9{bottom:698.760000px;}
.y66{bottom:699.480000px;}
.y38{bottom:714.960000px;}
.y89{bottom:717.840000px;}
.y65{bottom:720.360000px;}
.y37{bottom:735.480000px;}
.y88{bottom:738.360000px;}
.y64{bottom:740.880000px;}
.y36{bottom:756.360000px;}
.y87{bottom:759.240000px;}
.y63{bottom:762.120000px;}
.y35{bottom:776.880000px;}
.y86{bottom:779.760000px;}
.y62{bottom:782.640000px;}
.y34{bottom:797.760000px;}
.y85{bottom:800.640000px;}
.y61{bottom:803.880000px;}
.y84{bottom:821.160000px;}
.y33{bottom:822.240000px;}
.y60{bottom:824.760000px;}
.y83{bottom:842.040000px;}
.y5f{bottom:845.640000px;}
.y32{bottom:860.040000px;}
.y82{bottom:862.560000px;}
.y5e{bottom:870.120000px;}
.y31{bottom:880.560000px;}
.y81{bottom:887.040000px;}
.y30{bottom:901.440000px;}
.y5d{bottom:907.560000px;}
.y2f{bottom:921.960000px;}
.y5c{bottom:928.440000px;}
.y2e{bottom:942.840000px;}
.y80{bottom:946.440000px;}
.y5b{bottom:948.960000px;}
.y2d{bottom:963.360000px;}
.y5a{bottom:969.840000px;}
.y2c{bottom:983.880000px;}
.y59{bottom:990.360000px;}
.y2b{bottom:1004.760000px;}
.y58{bottom:1011.240000px;}
.y2a{bottom:1025.280000px;}
.y57{bottom:1031.760000px;}
.y8{bottom:1044.720000px;}
.y29{bottom:1046.160000px;}
.y7f{bottom:1049.760000px;}
.y56{bottom:1052.640000px;}
.y7{bottom:1060.200000px;}
.y28{bottom:1066.680000px;}
.y55{bottom:1073.160000px;}
.y6{bottom:1078.200000px;}
.y27{bottom:1087.560000px;}
.y54{bottom:1094.040000px;}
.y26{bottom:1108.080000px;}
.y52{bottom:1113.120000px;}
.y5{bottom:1114.920000px;}
.y22{bottom:1127.160000px;}
.y1{bottom:1136.880000px;}
.y21{bottom:1141.560000px;}
.h3{height:28.704375px;}
.h9{height:32.113125px;}
.h8{height:34.737120px;}
.h6{height:35.175938px;}
.h5{height:44.562656px;}
.h7{height:48.224531px;}
.h2{height:50.027344px;}
.h4{height:52.632000px;}
.ha{height:56.593125px;}
.h0{height:1261.440000px;}
.h1{height:1261.500000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:80.640000px;}
.x5{left:107.640036px;}
.x8{left:128.640024px;}
.x6{left:134.640036px;}
.x3{left:285.251220px;}
.x7{left:296.640036px;}
.x2{left:720.832320px;}
.x4{left:811.664640px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls1a{letter-spacing:-0.321024pt;}
.ls8{letter-spacing:-0.284928pt;}
.ls22{letter-spacing:-0.268800pt;}
.ls6{letter-spacing:-0.215040pt;}
.lsd{letter-spacing:-0.176640pt;}
.lsb{letter-spacing:-0.141312pt;}
.lsc{letter-spacing:-0.070656pt;}
.ls19{letter-spacing:-0.012800pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.000256pt;}
.ls0{letter-spacing:0.038016pt;}
.ls1c{letter-spacing:0.050688pt;}
.ls1d{letter-spacing:0.054912pt;}
.ls1{letter-spacing:0.064512pt;}
.ls5{letter-spacing:0.065664pt;}
.ls4{letter-spacing:0.086400pt;}
.ls16{letter-spacing:0.111360pt;}
.lsf{letter-spacing:0.118272pt;}
.ls2{letter-spacing:0.142080pt;}
.ls1b{letter-spacing:0.164992pt;}
.ls1e{letter-spacing:0.212480pt;}
.lse{letter-spacing:0.213376pt;}
.ls18{letter-spacing:0.236544pt;}
.ls10{letter-spacing:0.244992pt;}
.ls9{letter-spacing:0.283008pt;}
.ls17{letter-spacing:0.308352pt;}
.lsa{letter-spacing:0.316800pt;}
.ls7{letter-spacing:0.325248pt;}
.ls21{letter-spacing:0.371712pt;}
.ls12{letter-spacing:0.446720pt;}
.ls15{letter-spacing:0.640512pt;}
.ls11{letter-spacing:0.650240pt;}
.ls13{letter-spacing:0.800000pt;}
.ls20{letter-spacing:39.551744pt;}
.ls14{letter-spacing:48.841216pt;}
.ws2{word-spacing:-16.297984pt;}
.ws1{word-spacing:-16.227328pt;}
.ws8{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.987200pt;}
.ws9{word-spacing:-14.676480pt;}
.ws7{word-spacing:-12.160000pt;}
.ws0{word-spacing:-12.059520pt;}
.ws6{word-spacing:-11.838976pt;}
.ws5{word-spacing:-0.053760pt;}
.ws3{word-spacing:0.000000pt;}
._c{margin-left:-3.526400pt;}
._7{margin-left:-1.984000pt;}
._1{margin-left:-0.918400pt;}
._0{width:0.898560pt;}
._3{width:2.071040pt;}
._8{width:3.740160pt;}
._f{width:4.921600pt;}
._6{width:6.694400pt;}
._9{width:7.820800pt;}
._a{width:9.312000pt;}
._5{width:10.668800pt;}
._b{width:11.795200pt;}
._d{width:12.979200pt;}
._10{width:15.108864pt;}
._e{width:16.902400pt;}
._4{width:19.686400pt;}
._15{width:20.595200pt;}
._12{width:31.692800pt;}
._2{width:46.894208pt;}
._14{width:80.042752pt;}
._13{width:101.376000pt;}
._11{width:1236.257280pt;}
.fs1{font-size:34.560000pt;}
.fs3{font-size:42.240000pt;}
.fs5{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:99.840000pt;}
.y4{bottom:100.480000pt;}
.y3{bottom:113.600000pt;}
.y53{bottom:116.800000pt;}
.y24{bottom:118.080000pt;}
.y2{bottom:126.720000pt;}
.y23{bottom:135.360000pt;}
.y7e{bottom:141.120000pt;}
.y51{bottom:154.240000pt;}
.y7d{bottom:159.680000pt;}
.y20{bottom:170.240000pt;}
.y50{bottom:172.800000pt;}
.y7c{bottom:177.920000pt;}
.y1f{bottom:188.800000pt;}
.y4f{bottom:191.040000pt;}
.y7b{bottom:196.480000pt;}
.y4e{bottom:204.160000pt;}
.y1e{bottom:210.560000pt;}
.y7a{bottom:214.720000pt;}
.y4d{bottom:230.720000pt;}
.y79{bottom:233.280000pt;}
.y1d{bottom:243.840000pt;}
.y4c{bottom:248.960000pt;}
.y78{bottom:251.520000pt;}
.y1c{bottom:262.400000pt;}
.y4b{bottom:267.520000pt;}
.y77{bottom:270.080000pt;}
.y1b{bottom:280.640000pt;}
.y4a{bottom:285.760000pt;}
.y76{bottom:288.320000pt;}
.y1a{bottom:299.200000pt;}
.y49{bottom:304.320000pt;}
.y75{bottom:306.880000pt;}
.y19{bottom:317.440000pt;}
.y48{bottom:322.560000pt;}
.y74{bottom:325.120000pt;}
.y18{bottom:336.000000pt;}
.y47{bottom:341.120000pt;}
.y73{bottom:347.200000pt;}
.y17{bottom:354.240000pt;}
.y46{bottom:359.360000pt;}
.y16{bottom:372.800000pt;}
.y72{bottom:380.480000pt;}
.y45{bottom:381.120000pt;}
.y15{bottom:391.040000pt;}
.y71{bottom:402.240000pt;}
.y14{bottom:409.600000pt;}
.y44{bottom:414.720000pt;}
.y13{bottom:427.840000pt;}
.y43{bottom:432.960000pt;}
.y70{bottom:435.840000pt;}
.y12{bottom:446.400000pt;}
.y42{bottom:451.520000pt;}
.y6f{bottom:454.400000pt;}
.y11{bottom:464.640000pt;}
.y41{bottom:469.760000pt;}
.y6e{bottom:473.280000pt;}
.y10{bottom:483.200000pt;}
.y40{bottom:488.320000pt;}
.y91{bottom:490.880000pt;}
.y6d{bottom:491.520000pt;}
.yf{bottom:501.440000pt;}
.y3f{bottom:506.560000pt;}
.y90{bottom:509.120000pt;}
.y6c{bottom:510.400000pt;}
.ye{bottom:520.000000pt;}
.y3e{bottom:525.120000pt;}
.y8f{bottom:527.680000pt;}
.y6b{bottom:528.640000pt;}
.yd{bottom:538.240000pt;}
.y3d{bottom:543.360000pt;}
.y8e{bottom:545.920000pt;}
.y6a{bottom:547.200000pt;}
.yc{bottom:556.800000pt;}
.y3c{bottom:561.920000pt;}
.y8d{bottom:564.480000pt;}
.y69{bottom:565.760000pt;}
.yb{bottom:578.560000pt;}
.y3b{bottom:580.160000pt;}
.y8c{bottom:582.720000pt;}
.y68{bottom:584.320000pt;}
.y3a{bottom:598.720000pt;}
.y8b{bottom:601.280000pt;}
.y67{bottom:603.200000pt;}
.ya{bottom:610.560000pt;}
.y39{bottom:616.960000pt;}
.y8a{bottom:619.520000pt;}
.y9{bottom:621.120000pt;}
.y66{bottom:621.760000pt;}
.y38{bottom:635.520000pt;}
.y89{bottom:638.080000pt;}
.y65{bottom:640.320000pt;}
.y37{bottom:653.760000pt;}
.y88{bottom:656.320000pt;}
.y64{bottom:658.560000pt;}
.y36{bottom:672.320000pt;}
.y87{bottom:674.880000pt;}
.y63{bottom:677.440000pt;}
.y35{bottom:690.560000pt;}
.y86{bottom:693.120000pt;}
.y62{bottom:695.680000pt;}
.y34{bottom:709.120000pt;}
.y85{bottom:711.680000pt;}
.y61{bottom:714.560000pt;}
.y84{bottom:729.920000pt;}
.y33{bottom:730.880000pt;}
.y60{bottom:733.120000pt;}
.y83{bottom:748.480000pt;}
.y5f{bottom:751.680000pt;}
.y32{bottom:764.480000pt;}
.y82{bottom:766.720000pt;}
.y5e{bottom:773.440000pt;}
.y31{bottom:782.720000pt;}
.y81{bottom:788.480000pt;}
.y30{bottom:801.280000pt;}
.y5d{bottom:806.720000pt;}
.y2f{bottom:819.520000pt;}
.y5c{bottom:825.280000pt;}
.y2e{bottom:838.080000pt;}
.y80{bottom:841.280000pt;}
.y5b{bottom:843.520000pt;}
.y2d{bottom:856.320000pt;}
.y5a{bottom:862.080000pt;}
.y2c{bottom:874.560000pt;}
.y59{bottom:880.320000pt;}
.y2b{bottom:893.120000pt;}
.y58{bottom:898.880000pt;}
.y2a{bottom:911.360000pt;}
.y57{bottom:917.120000pt;}
.y8{bottom:928.640000pt;}
.y29{bottom:929.920000pt;}
.y7f{bottom:933.120000pt;}
.y56{bottom:935.680000pt;}
.y7{bottom:942.400000pt;}
.y28{bottom:948.160000pt;}
.y55{bottom:953.920000pt;}
.y6{bottom:958.400000pt;}
.y27{bottom:966.720000pt;}
.y54{bottom:972.480000pt;}
.y26{bottom:984.960000pt;}
.y52{bottom:989.440000pt;}
.y5{bottom:991.040000pt;}
.y22{bottom:1001.920000pt;}
.y1{bottom:1010.560000pt;}
.y21{bottom:1014.720000pt;}
.h3{height:25.515000pt;}
.h9{height:28.545000pt;}
.h8{height:30.877440pt;}
.h6{height:31.267500pt;}
.h5{height:39.611250pt;}
.h7{height:42.866250pt;}
.h2{height:44.468750pt;}
.h4{height:46.784000pt;}
.ha{height:50.305000pt;}
.h0{height:1121.280000pt;}
.h1{height:1121.333333pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:71.680000pt;}
.x5{left:95.680032pt;}
.x8{left:114.346688pt;}
.x6{left:119.680032pt;}
.x3{left:253.556640pt;}
.x7{left:263.680032pt;}
.x2{left:640.739840pt;}
.x4{left:721.479680pt;}
}




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