
    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_058efdb7de41bc2b87655979.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.180000;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_8d0496ad115bf5ec8774201a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.180000;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_bbdea7d3fa5632f7eb4eb358.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.051758;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_dad54e479650fb818809714a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_da64d94272e68f7b1ad0e9cb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.095703;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_4cdf87206f3af55f4d20061f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_7ec3aac09cfe39ed73aadbf9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.912500;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_482c0505974ae16e568b93fe.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.913000;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_093a1057070e428274340a04.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.820801;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_1726df3ebb51de028d1a39c1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.900391;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_c24d004a9a0c7008c3dcb029.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.900391;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.976000px;}
.ls5{letter-spacing:-29.520000px;}
.ls3{letter-spacing:-0.360000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.360000px;}
.ls1{letter-spacing:1.320000px;}
.ls4{letter-spacing:5.616000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-121.320000px;}
.ws0{word-spacing:-120.000000px;}
.ws9{word-spacing:-77.616000px;}
.wsa{word-spacing:-72.360000px;}
.ws3{word-spacing:-72.000000px;}
.ws6{word-spacing:-59.688000px;}
.ws8{word-spacing:-57.024000px;}
.ws2{word-spacing:-18.000000px;}
.ws4{word-spacing:-12.738000px;}
.ws7{word-spacing:-10.494000px;}
.ws5{word-spacing:0.000000px;}
._18{margin-left:-10.663200px;}
._b{margin-left:-9.597600px;}
._4{margin-left:-8.270400px;}
._5{margin-left:-6.556800px;}
._2{margin-left:-4.824000px;}
._3{margin-left:-3.816000px;}
._7{margin-left:-2.743200px;}
._1{margin-left:-1.735200px;}
._6{width:1.670400px;}
._f{width:2.952000px;}
._d{width:4.665600px;}
._8{width:5.832000px;}
._c{width:7.293600px;}
._a{width:8.352000px;}
._9{width:9.604800px;}
._10{width:10.660800px;}
._e{width:11.664000px;}
._15{width:12.816000px;}
._14{width:14.198400px;}
._13{width:15.292800px;}
._19{width:16.668000px;}
._16{width:19.159200px;}
._12{width:20.404800px;}
._11{width:21.816000px;}
._17{width:36.955200px;}
._0{width:759.744000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.976000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y12{bottom:138.102600px;}
.ya7{bottom:138.535350px;}
.ycf{bottom:143.035200px;}
.y85{bottom:143.325300px;}
.y69{bottom:147.535350px;}
.y40{bottom:147.825300px;}
.y11{bottom:160.602600px;}
.ya6{bottom:161.035350px;}
.yce{bottom:165.535200px;}
.y84{bottom:165.825300px;}
.y68{bottom:170.035350px;}
.y3f{bottom:170.325300px;}
.y10{bottom:183.102600px;}
.ye1{bottom:183.535350px;}
.ycd{bottom:188.035200px;}
.y83{bottom:188.325300px;}
.y67{bottom:192.535350px;}
.y3e{bottom:192.825300px;}
.yf{bottom:205.602600px;}
.ya5{bottom:206.035350px;}
.ycc{bottom:210.535200px;}
.y82{bottom:210.825300px;}
.y66{bottom:215.035350px;}
.y3d{bottom:215.325300px;}
.ya4{bottom:228.535350px;}
.y65{bottom:237.535350px;}
.y3c{bottom:237.825300px;}
.y81{bottom:242.325300px;}
.ye{bottom:250.602600px;}
.ya3{bottom:251.035350px;}
.y64{bottom:260.035350px;}
.ycb{bottom:264.535200px;}
.y80{bottom:264.825300px;}
.yd{bottom:273.102600px;}
.ya2{bottom:273.535350px;}
.y63{bottom:282.535350px;}
.y3b{bottom:282.825300px;}
.yca{bottom:287.035200px;}
.y7f{bottom:287.325300px;}
.yc{bottom:295.602600px;}
.ya1{bottom:296.035350px;}
.y62{bottom:305.035350px;}
.y3a{bottom:305.325300px;}
.yc9{bottom:309.535200px;}
.y7e{bottom:309.825300px;}
.yb{bottom:318.102600px;}
.ya0{bottom:318.535350px;}
.y61{bottom:327.535350px;}
.y39{bottom:327.825300px;}
.yc8{bottom:332.035200px;}
.y7d{bottom:332.325300px;}
.ya{bottom:340.602600px;}
.y9f{bottom:341.035350px;}
.ye0{bottom:350.035350px;}
.y38{bottom:350.325300px;}
.yc7{bottom:354.535200px;}
.y7c{bottom:354.825300px;}
.y60{bottom:359.035350px;}
.y9{bottom:363.102600px;}
.y9e{bottom:363.535350px;}
.ydf{bottom:372.535350px;}
.y37{bottom:372.825300px;}
.yc6{bottom:377.035200px;}
.y7b{bottom:377.325300px;}
.y5f{bottom:381.535350px;}
.y8{bottom:385.602600px;}
.y9d{bottom:395.035350px;}
.y36{bottom:395.325300px;}
.yc5{bottom:399.535200px;}
.y7a{bottom:399.825300px;}
.y5e{bottom:404.035350px;}
.y7{bottom:408.102600px;}
.y9c{bottom:417.535350px;}
.y35{bottom:417.825300px;}
.yc4{bottom:422.035200px;}
.y79{bottom:422.325300px;}
.y5d{bottom:426.535350px;}
.y6{bottom:430.602600px;}
.yea{bottom:431.325300px;}
.y9b{bottom:440.035350px;}
.y34{bottom:440.325300px;}
.yc3{bottom:444.535200px;}
.y78{bottom:444.825300px;}
.y5c{bottom:449.035350px;}
.y5{bottom:453.102600px;}
.ye9{bottom:453.825300px;}
.y9a{bottom:462.535350px;}
.y33{bottom:462.825300px;}
.yc2{bottom:467.035200px;}
.y5b{bottom:471.535350px;}
.ye8{bottom:476.325300px;}
.y99{bottom:485.035350px;}
.y32{bottom:485.325300px;}
.y77{bottom:489.825300px;}
.yc1{bottom:498.535200px;}
.ye7{bottom:498.825300px;}
.y5a{bottom:503.035350px;}
.y98{bottom:507.535350px;}
.y76{bottom:512.325300px;}
.yc0{bottom:521.035200px;}
.ye6{bottom:521.325300px;}
.y59{bottom:525.535350px;}
.y97{bottom:530.035350px;}
.y31{bottom:530.325300px;}
.y75{bottom:534.825300px;}
.ybf{bottom:543.535200px;}
.y58{bottom:548.035350px;}
.y96{bottom:552.535350px;}
.y30{bottom:552.825300px;}
.ybe{bottom:566.035200px;}
.y74{bottom:566.325300px;}
.y57{bottom:570.535350px;}
.y2f{bottom:575.325300px;}
.yde{bottom:584.035350px;}
.ybd{bottom:588.535200px;}
.y73{bottom:588.825300px;}
.y56{bottom:593.035350px;}
.y95{bottom:597.535350px;}
.y2e{bottom:597.825300px;}
.ydd{bottom:606.535350px;}
.ybc{bottom:611.035200px;}
.y72{bottom:611.325300px;}
.y94{bottom:620.035350px;}
.y2d{bottom:620.325300px;}
.y55{bottom:624.535350px;}
.ydc{bottom:629.035350px;}
.ybb{bottom:633.535200px;}
.y71{bottom:633.825300px;}
.y93{bottom:642.535350px;}
.y2c{bottom:642.825300px;}
.y54{bottom:647.035350px;}
.ydb{bottom:651.535350px;}
.yba{bottom:656.035200px;}
.y70{bottom:656.325300px;}
.y92{bottom:665.035350px;}
.y2b{bottom:665.325300px;}
.y53{bottom:669.535350px;}
.yda{bottom:674.035350px;}
.yb9{bottom:678.535200px;}
.y6f{bottom:678.825300px;}
.y91{bottom:687.535350px;}
.y2a{bottom:687.825300px;}
.y52{bottom:692.035350px;}
.yd9{bottom:696.535350px;}
.yb8{bottom:701.035200px;}
.y6e{bottom:701.325300px;}
.y90{bottom:710.035350px;}
.y29{bottom:710.325300px;}
.y51{bottom:714.535350px;}
.yd8{bottom:719.035350px;}
.ye5{bottom:719.325300px;}
.yb7{bottom:723.535200px;}
.y8f{bottom:732.535350px;}
.y28{bottom:732.825300px;}
.yd7{bottom:741.535350px;}
.ye4{bottom:741.825300px;}
.y50{bottom:746.035350px;}
.y8e{bottom:755.035350px;}
.y27{bottom:755.325300px;}
.yd6{bottom:764.035350px;}
.ye3{bottom:764.325300px;}
.y4f{bottom:768.535350px;}
.yb6{bottom:777.535200px;}
.y8d{bottom:777.535350px;}
.y26{bottom:777.825300px;}
.yd5{bottom:786.535350px;}
.ye2{bottom:786.825300px;}
.y4e{bottom:791.035350px;}
.yb5{bottom:800.035200px;}
.y8c{bottom:800.035350px;}
.y6d{bottom:800.325300px;}
.yd4{bottom:809.035350px;}
.y25{bottom:809.325300px;}
.y4d{bottom:813.535350px;}
.yb4{bottom:822.535200px;}
.y6c{bottom:822.825300px;}
.yd3{bottom:831.535350px;}
.y24{bottom:831.825300px;}
.y4c{bottom:836.035350px;}
.yb3{bottom:845.035200px;}
.y8b{bottom:845.035350px;}
.y6b{bottom:845.325300px;}
.yd2{bottom:854.035350px;}
.y23{bottom:854.325300px;}
.y4b{bottom:858.535350px;}
.yb2{bottom:867.535200px;}
.y8a{bottom:867.535350px;}
.y6a{bottom:867.825300px;}
.yd1{bottom:876.535350px;}
.y22{bottom:876.825300px;}
.yb1{bottom:890.035200px;}
.y4a{bottom:890.035350px;}
.y4{bottom:893.358600px;}
.yd0{bottom:899.035350px;}
.y21{bottom:899.325300px;}
.yb0{bottom:912.535200px;}
.y49{bottom:912.535350px;}
.y89{bottom:921.535350px;}
.y20{bottom:921.825300px;}
.y3{bottom:923.358600px;}
.yf1{bottom:926.035350px;}
.yaf{bottom:935.035200px;}
.y48{bottom:935.035350px;}
.y88{bottom:944.035350px;}
.y1f{bottom:944.325300px;}
.yf0{bottom:948.535350px;}
.y2{bottom:953.358600px;}
.yae{bottom:957.535200px;}
.y47{bottom:957.535350px;}
.y87{bottom:966.535350px;}
.y1e{bottom:966.825300px;}
.yef{bottom:971.035350px;}
.y46{bottom:980.035350px;}
.yad{bottom:989.035200px;}
.y86{bottom:989.035350px;}
.y1d{bottom:989.325300px;}
.yee{bottom:993.535350px;}
.yac{bottom:1011.535200px;}
.y45{bottom:1011.535350px;}
.y1c{bottom:1011.825300px;}
.y1{bottom:1018.614600px;}
.yed{bottom:1025.035350px;}
.yab{bottom:1034.035200px;}
.y44{bottom:1034.035350px;}
.y1b{bottom:1034.325300px;}
.yec{bottom:1047.535350px;}
.yaa{bottom:1056.535200px;}
.y43{bottom:1056.535350px;}
.y1a{bottom:1056.825300px;}
.yeb{bottom:1070.035350px;}
.ya9{bottom:1079.035200px;}
.y42{bottom:1079.035350px;}
.y19{bottom:1079.325300px;}
.ya8{bottom:1101.535200px;}
.y41{bottom:1101.535350px;}
.y18{bottom:1101.825300px;}
.y16{bottom:1136.152350px;}
.y15{bottom:1155.952350px;}
.y17{bottom:1166.275950px;}
.y14{bottom:1175.752350px;}
.y13{bottom:1195.552350px;}
.h7{height:48.015000px;}
.h9{height:49.289062px;}
.h4{height:60.187500px;}
.h5{height:63.175781px;}
.h6{height:63.351562px;}
.h2{height:69.984000px;}
.h8{height:111.164062px;}
.h3{height:116.640000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.559100px;}
.x2{left:156.976350px;}
.x9{left:217.098450px;}
.x3{left:243.166350px;}
.x4{left:275.986350px;}
.x5{left:485.675850px;}
.x6{left:611.455350px;}
.x8{left:641.551350px;}
.x7{left:697.667850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.312000pt;}
.ls5{letter-spacing:-26.240000pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1{letter-spacing:1.173333pt;}
.ls4{letter-spacing:4.992000pt;}
.ws1{word-spacing:-107.840000pt;}
.ws0{word-spacing:-106.666667pt;}
.ws9{word-spacing:-68.992000pt;}
.wsa{word-spacing:-64.320000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws6{word-spacing:-53.056000pt;}
.ws8{word-spacing:-50.688000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws4{word-spacing:-11.322667pt;}
.ws7{word-spacing:-9.328000pt;}
.ws5{word-spacing:0.000000pt;}
._18{margin-left:-9.478400pt;}
._b{margin-left:-8.531200pt;}
._4{margin-left:-7.351467pt;}
._5{margin-left:-5.828267pt;}
._2{margin-left:-4.288000pt;}
._3{margin-left:-3.392000pt;}
._7{margin-left:-2.438400pt;}
._1{margin-left:-1.542400pt;}
._6{width:1.484800pt;}
._f{width:2.624000pt;}
._d{width:4.147200pt;}
._8{width:5.184000pt;}
._c{width:6.483200pt;}
._a{width:7.424000pt;}
._9{width:8.537600pt;}
._10{width:9.476267pt;}
._e{width:10.368000pt;}
._15{width:11.392000pt;}
._14{width:12.620800pt;}
._13{width:13.593600pt;}
._19{width:14.816000pt;}
._16{width:17.030400pt;}
._12{width:18.137600pt;}
._11{width:19.392000pt;}
._17{width:32.849067pt;}
._0{width:675.328000pt;}
.fs4{font-size:37.312000pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:122.757867pt;}
.ya7{bottom:123.142533pt;}
.ycf{bottom:127.142400pt;}
.y85{bottom:127.400267pt;}
.y69{bottom:131.142533pt;}
.y40{bottom:131.400267pt;}
.y11{bottom:142.757867pt;}
.ya6{bottom:143.142533pt;}
.yce{bottom:147.142400pt;}
.y84{bottom:147.400267pt;}
.y68{bottom:151.142533pt;}
.y3f{bottom:151.400267pt;}
.y10{bottom:162.757867pt;}
.ye1{bottom:163.142533pt;}
.ycd{bottom:167.142400pt;}
.y83{bottom:167.400267pt;}
.y67{bottom:171.142533pt;}
.y3e{bottom:171.400267pt;}
.yf{bottom:182.757867pt;}
.ya5{bottom:183.142533pt;}
.ycc{bottom:187.142400pt;}
.y82{bottom:187.400267pt;}
.y66{bottom:191.142533pt;}
.y3d{bottom:191.400267pt;}
.ya4{bottom:203.142533pt;}
.y65{bottom:211.142533pt;}
.y3c{bottom:211.400267pt;}
.y81{bottom:215.400267pt;}
.ye{bottom:222.757867pt;}
.ya3{bottom:223.142533pt;}
.y64{bottom:231.142533pt;}
.ycb{bottom:235.142400pt;}
.y80{bottom:235.400267pt;}
.yd{bottom:242.757867pt;}
.ya2{bottom:243.142533pt;}
.y63{bottom:251.142533pt;}
.y3b{bottom:251.400267pt;}
.yca{bottom:255.142400pt;}
.y7f{bottom:255.400267pt;}
.yc{bottom:262.757867pt;}
.ya1{bottom:263.142533pt;}
.y62{bottom:271.142533pt;}
.y3a{bottom:271.400267pt;}
.yc9{bottom:275.142400pt;}
.y7e{bottom:275.400267pt;}
.yb{bottom:282.757867pt;}
.ya0{bottom:283.142533pt;}
.y61{bottom:291.142533pt;}
.y39{bottom:291.400267pt;}
.yc8{bottom:295.142400pt;}
.y7d{bottom:295.400267pt;}
.ya{bottom:302.757867pt;}
.y9f{bottom:303.142533pt;}
.ye0{bottom:311.142533pt;}
.y38{bottom:311.400267pt;}
.yc7{bottom:315.142400pt;}
.y7c{bottom:315.400267pt;}
.y60{bottom:319.142533pt;}
.y9{bottom:322.757867pt;}
.y9e{bottom:323.142533pt;}
.ydf{bottom:331.142533pt;}
.y37{bottom:331.400267pt;}
.yc6{bottom:335.142400pt;}
.y7b{bottom:335.400267pt;}
.y5f{bottom:339.142533pt;}
.y8{bottom:342.757867pt;}
.y9d{bottom:351.142533pt;}
.y36{bottom:351.400267pt;}
.yc5{bottom:355.142400pt;}
.y7a{bottom:355.400267pt;}
.y5e{bottom:359.142533pt;}
.y7{bottom:362.757867pt;}
.y9c{bottom:371.142533pt;}
.y35{bottom:371.400267pt;}
.yc4{bottom:375.142400pt;}
.y79{bottom:375.400267pt;}
.y5d{bottom:379.142533pt;}
.y6{bottom:382.757867pt;}
.yea{bottom:383.400267pt;}
.y9b{bottom:391.142533pt;}
.y34{bottom:391.400267pt;}
.yc3{bottom:395.142400pt;}
.y78{bottom:395.400267pt;}
.y5c{bottom:399.142533pt;}
.y5{bottom:402.757867pt;}
.ye9{bottom:403.400267pt;}
.y9a{bottom:411.142533pt;}
.y33{bottom:411.400267pt;}
.yc2{bottom:415.142400pt;}
.y5b{bottom:419.142533pt;}
.ye8{bottom:423.400267pt;}
.y99{bottom:431.142533pt;}
.y32{bottom:431.400267pt;}
.y77{bottom:435.400267pt;}
.yc1{bottom:443.142400pt;}
.ye7{bottom:443.400267pt;}
.y5a{bottom:447.142533pt;}
.y98{bottom:451.142533pt;}
.y76{bottom:455.400267pt;}
.yc0{bottom:463.142400pt;}
.ye6{bottom:463.400267pt;}
.y59{bottom:467.142533pt;}
.y97{bottom:471.142533pt;}
.y31{bottom:471.400267pt;}
.y75{bottom:475.400267pt;}
.ybf{bottom:483.142400pt;}
.y58{bottom:487.142533pt;}
.y96{bottom:491.142533pt;}
.y30{bottom:491.400267pt;}
.ybe{bottom:503.142400pt;}
.y74{bottom:503.400267pt;}
.y57{bottom:507.142533pt;}
.y2f{bottom:511.400267pt;}
.yde{bottom:519.142533pt;}
.ybd{bottom:523.142400pt;}
.y73{bottom:523.400267pt;}
.y56{bottom:527.142533pt;}
.y95{bottom:531.142533pt;}
.y2e{bottom:531.400267pt;}
.ydd{bottom:539.142533pt;}
.ybc{bottom:543.142400pt;}
.y72{bottom:543.400267pt;}
.y94{bottom:551.142533pt;}
.y2d{bottom:551.400267pt;}
.y55{bottom:555.142533pt;}
.ydc{bottom:559.142533pt;}
.ybb{bottom:563.142400pt;}
.y71{bottom:563.400267pt;}
.y93{bottom:571.142533pt;}
.y2c{bottom:571.400267pt;}
.y54{bottom:575.142533pt;}
.ydb{bottom:579.142533pt;}
.yba{bottom:583.142400pt;}
.y70{bottom:583.400267pt;}
.y92{bottom:591.142533pt;}
.y2b{bottom:591.400267pt;}
.y53{bottom:595.142533pt;}
.yda{bottom:599.142533pt;}
.yb9{bottom:603.142400pt;}
.y6f{bottom:603.400267pt;}
.y91{bottom:611.142533pt;}
.y2a{bottom:611.400267pt;}
.y52{bottom:615.142533pt;}
.yd9{bottom:619.142533pt;}
.yb8{bottom:623.142400pt;}
.y6e{bottom:623.400267pt;}
.y90{bottom:631.142533pt;}
.y29{bottom:631.400267pt;}
.y51{bottom:635.142533pt;}
.yd8{bottom:639.142533pt;}
.ye5{bottom:639.400267pt;}
.yb7{bottom:643.142400pt;}
.y8f{bottom:651.142533pt;}
.y28{bottom:651.400267pt;}
.yd7{bottom:659.142533pt;}
.ye4{bottom:659.400267pt;}
.y50{bottom:663.142533pt;}
.y8e{bottom:671.142533pt;}
.y27{bottom:671.400267pt;}
.yd6{bottom:679.142533pt;}
.ye3{bottom:679.400267pt;}
.y4f{bottom:683.142533pt;}
.yb6{bottom:691.142400pt;}
.y8d{bottom:691.142533pt;}
.y26{bottom:691.400267pt;}
.yd5{bottom:699.142533pt;}
.ye2{bottom:699.400267pt;}
.y4e{bottom:703.142533pt;}
.yb5{bottom:711.142400pt;}
.y8c{bottom:711.142533pt;}
.y6d{bottom:711.400267pt;}
.yd4{bottom:719.142533pt;}
.y25{bottom:719.400267pt;}
.y4d{bottom:723.142533pt;}
.yb4{bottom:731.142400pt;}
.y6c{bottom:731.400267pt;}
.yd3{bottom:739.142533pt;}
.y24{bottom:739.400267pt;}
.y4c{bottom:743.142533pt;}
.yb3{bottom:751.142400pt;}
.y8b{bottom:751.142533pt;}
.y6b{bottom:751.400267pt;}
.yd2{bottom:759.142533pt;}
.y23{bottom:759.400267pt;}
.y4b{bottom:763.142533pt;}
.yb2{bottom:771.142400pt;}
.y8a{bottom:771.142533pt;}
.y6a{bottom:771.400267pt;}
.yd1{bottom:779.142533pt;}
.y22{bottom:779.400267pt;}
.yb1{bottom:791.142400pt;}
.y4a{bottom:791.142533pt;}
.y4{bottom:794.096533pt;}
.yd0{bottom:799.142533pt;}
.y21{bottom:799.400267pt;}
.yb0{bottom:811.142400pt;}
.y49{bottom:811.142533pt;}
.y89{bottom:819.142533pt;}
.y20{bottom:819.400267pt;}
.y3{bottom:820.763200pt;}
.yf1{bottom:823.142533pt;}
.yaf{bottom:831.142400pt;}
.y48{bottom:831.142533pt;}
.y88{bottom:839.142533pt;}
.y1f{bottom:839.400267pt;}
.yf0{bottom:843.142533pt;}
.y2{bottom:847.429867pt;}
.yae{bottom:851.142400pt;}
.y47{bottom:851.142533pt;}
.y87{bottom:859.142533pt;}
.y1e{bottom:859.400267pt;}
.yef{bottom:863.142533pt;}
.y46{bottom:871.142533pt;}
.yad{bottom:879.142400pt;}
.y86{bottom:879.142533pt;}
.y1d{bottom:879.400267pt;}
.yee{bottom:883.142533pt;}
.yac{bottom:899.142400pt;}
.y45{bottom:899.142533pt;}
.y1c{bottom:899.400267pt;}
.y1{bottom:905.435200pt;}
.yed{bottom:911.142533pt;}
.yab{bottom:919.142400pt;}
.y44{bottom:919.142533pt;}
.y1b{bottom:919.400267pt;}
.yec{bottom:931.142533pt;}
.yaa{bottom:939.142400pt;}
.y43{bottom:939.142533pt;}
.y1a{bottom:939.400267pt;}
.yeb{bottom:951.142533pt;}
.ya9{bottom:959.142400pt;}
.y42{bottom:959.142533pt;}
.y19{bottom:959.400267pt;}
.ya8{bottom:979.142400pt;}
.y41{bottom:979.142533pt;}
.y18{bottom:979.400267pt;}
.y16{bottom:1009.913200pt;}
.y15{bottom:1027.513200pt;}
.y17{bottom:1036.689733pt;}
.y14{bottom:1045.113200pt;}
.y13{bottom:1062.713200pt;}
.h7{height:42.680000pt;}
.h9{height:43.812500pt;}
.h4{height:53.500000pt;}
.h5{height:56.156250pt;}
.h6{height:56.312500pt;}
.h2{height:62.208000pt;}
.h8{height:98.812500pt;}
.h3{height:103.680000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.385867pt;}
.x2{left:139.534533pt;}
.x9{left:192.976400pt;}
.x3{left:216.147867pt;}
.x4{left:245.321200pt;}
.x5{left:431.711867pt;}
.x6{left:543.515867pt;}
.x8{left:570.267867pt;}
.x7{left:620.149200pt;}
}




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