
    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_e40778f0f6a44aec6e5e0900.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_05e0bdf69d95eb1d573f3b71.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_772d5b89003893401fe7741e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_ab34e5d18e3f650d039577e1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.957031;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_cd52a9c8c6f4d2cc630b0506.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_dc626e6b89f0f3a94abc3a5e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_042d13f52bf79e398a5a3c0f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f6e80b8a22919f7c3e4ef5d1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916016;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_4015d2e62f1636d8947bc12c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3b0df0b8603cbec7d50729fe.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls5{letter-spacing:-1.176000px;}
.lse{letter-spacing:-1.080000px;}
.ls7{letter-spacing:-0.460200px;}
.ls12{letter-spacing:-0.413400px;}
.ls9{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.206400px;}
.ls8{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.305400px;}
.lsb{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.513360px;}
.lsf{letter-spacing:0.513600px;}
.ls6{letter-spacing:0.567600px;}
.lsa{letter-spacing:0.666000px;}
.ls11{letter-spacing:0.828000px;}
.lsd{letter-spacing:0.900000px;}
.ls13{letter-spacing:15.210720px;}
.ls14{letter-spacing:17.370720px;}
.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;}
}
.ws3{word-spacing:-17.127600px;}
.ws4{word-spacing:-16.865400px;}
.ws0{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.453600px;}
.ws1{word-spacing:-15.384000px;}
.wsa{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.199800px;}
.ws6{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.733600px;}
.wsc{word-spacing:-14.580000px;}
.wse{word-spacing:-14.526600px;}
.wsf{word-spacing:-13.860000px;}
.ws2{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._2{margin-left:-2539.120320px;}
._3{margin-left:-1446.671520px;}
._5{margin-left:-1441.504320px;}
._4{margin-left:-994.312800px;}
._6{margin-left:-591.280560px;}
._7{margin-left:-8.036160px;}
._17{margin-left:-5.753040px;}
._8{margin-left:-4.364400px;}
._e{margin-left:-2.973600px;}
._1{margin-left:-1.627920px;}
._0{width:1.244880px;}
._a{width:2.297760px;}
._d{width:3.658560px;}
._11{width:4.668240px;}
._c{width:5.736960px;}
._b{width:7.350480px;}
._15{width:8.357040px;}
._12{width:9.488640px;}
._f{width:10.995840px;}
._10{width:12.510960px;}
._16{width:13.878720px;}
._13{width:16.095360px;}
._14{width:17.289840px;}
._19{width:20.665440px;}
._18{width:21.988560px;}
._9{width:50.944320px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y67{bottom:3.240000px;}
.y69{bottom:3.600000px;}
.y6c{bottom:3.636000px;}
.y71{bottom:3.780000px;}
.y65{bottom:5.760000px;}
.y6f{bottom:5.940000px;}
.ye8{bottom:12.060000px;}
.ye7{bottom:31.860000px;}
.ye4{bottom:35.820000px;}
.ye6{bottom:51.876000px;}
.y6{bottom:61.020000px;}
.ye5{bottom:71.670000px;}
.ye3{bottom:85.500000px;}
.y6e{bottom:86.580000px;}
.ya6{bottom:91.260000px;}
.ye2{bottom:91.980000px;}
.y33{bottom:106.380000px;}
.y6d{bottom:107.100000px;}
.ya5{bottom:111.240000px;}
.ye1{bottom:111.780000px;}
.y6b{bottom:125.100000px;}
.y32{bottom:126.180000px;}
.ya4{bottom:131.076000px;}
.yd5{bottom:131.616000px;}
.y6a{bottom:143.136000px;}
.y31{bottom:146.016000px;}
.ya3{bottom:150.870000px;}
.yd4{bottom:151.410000px;}
.y68{bottom:161.130000px;}
.y30{bottom:165.990000px;}
.ya2{bottom:170.670000px;}
.yd3{bottom:171.210000px;}
.y66{bottom:179.130000px;}
.y2f{bottom:185.430000px;}
.ya1{bottom:190.470000px;}
.yd2{bottom:190.830000px;}
.ye0{bottom:191.190000px;}
.y64{bottom:197.130000px;}
.y2e{bottom:205.590000px;}
.ya0{bottom:210.450000px;}
.yd1{bottom:210.990000px;}
.y63{bottom:223.590000px;}
.y2d{bottom:225.390000px;}
.y9f{bottom:230.250000px;}
.yd0{bottom:230.790000px;}
.y62{bottom:243.390000px;}
.y2c{bottom:245.190000px;}
.y9e{bottom:250.050000px;}
.ycf{bottom:250.590000px;}
.y61{bottom:263.370000px;}
.y2b{bottom:265.170000px;}
.y9d{bottom:269.850000px;}
.yce{bottom:270.390000px;}
.y60{bottom:283.170000px;}
.y2a{bottom:284.970000px;}
.y9c{bottom:289.290000px;}
.ycd{bottom:290.370000px;}
.y5f{bottom:302.970000px;}
.y29{bottom:304.770000px;}
.y9b{bottom:309.270000px;}
.ycc{bottom:309.810000px;}
.ydf{bottom:310.170000px;}
.y5e{bottom:322.770000px;}
.y28{bottom:324.570000px;}
.y9a{bottom:329.070000px;}
.ycb{bottom:329.970000px;}
.y5d{bottom:342.570000px;}
.y27{bottom:344.370000px;}
.yca{bottom:349.770000px;}
.y99{bottom:358.230000px;}
.y5c{bottom:362.190000px;}
.y26{bottom:364.350000px;}
.yde{bottom:369.210000px;}
.yc9{bottom:369.570000px;}
.y98{bottom:378.030000px;}
.y25{bottom:384.195000px;}
.yc8{bottom:389.595000px;}
.y5b{bottom:391.395000px;}
.y97{bottom:397.875000px;}
.y24{bottom:403.995000px;}
.yc7{bottom:409.395000px;}
.y5a{bottom:411.195000px;}
.y96{bottom:417.855000px;}
.y23{bottom:423.795000px;}
.yc6{bottom:428.835000px;}
.ydd{bottom:429.195000px;}
.y59{bottom:430.995000px;}
.y95{bottom:437.655000px;}
.y22{bottom:443.595000px;}
.yc5{bottom:448.995000px;}
.y58{bottom:450.795000px;}
.y94{bottom:457.455000px;}
.y21{bottom:463.575000px;}
.yc4{bottom:468.795000px;}
.y57{bottom:470.775000px;}
.y93{bottom:477.255000px;}
.y20{bottom:483.375000px;}
.ydc{bottom:488.415000px;}
.yc3{bottom:488.775000px;}
.y56{bottom:490.575000px;}
.y92{bottom:497.055000px;}
.y1f{bottom:503.175000px;}
.yc2{bottom:508.575000px;}
.y55{bottom:510.375000px;}
.y91{bottom:517.035000px;}
.y1e{bottom:522.975000px;}
.yc1{bottom:528.375000px;}
.y54{bottom:530.175000px;}
.y90{bottom:536.835000px;}
.y1d{bottom:542.775000px;}
.yc0{bottom:548.175000px;}
.y53{bottom:549.975000px;}
.y8f{bottom:556.635000px;}
.y1c{bottom:562.755000px;}
.ybf{bottom:567.975000px;}
.y52{bottom:569.955000px;}
.y8e{bottom:576.435000px;}
.y1b{bottom:582.555000px;}
.ybe{bottom:587.955000px;}
.y51{bottom:589.395000px;}
.y8d{bottom:596.235000px;}
.y1a{bottom:602.355000px;}
.ybd{bottom:607.755000px;}
.y8c{bottom:616.215000px;}
.y50{bottom:618.555000px;}
.y19{bottom:621.795000px;}
.ybc{bottom:627.555000px;}
.y8b{bottom:636.045000px;}
.y4f{bottom:638.385000px;}
.y18{bottom:641.625000px;}
.ybb{bottom:647.385000px;}
.y8a{bottom:655.845000px;}
.y4e{bottom:658.185000px;}
.y17{bottom:664.125000px;}
.yba{bottom:667.185000px;}
.y89{bottom:675.645000px;}
.y4d{bottom:678.165000px;}
.y16{bottom:683.925000px;}
.ydb{bottom:686.805000px;}
.yb9{bottom:687.165000px;}
.y88{bottom:695.445000px;}
.y4c{bottom:697.965000px;}
.yb8{bottom:706.965000px;}
.y15{bottom:712.725000px;}
.y87{bottom:715.425000px;}
.y4b{bottom:717.765000px;}
.yb7{bottom:726.765000px;}
.y14{bottom:732.705000px;}
.y86{bottom:734.865000px;}
.y4a{bottom:737.565000px;}
.yb6{bottom:746.565000px;}
.y13{bottom:752.505000px;}
.y49{bottom:757.365000px;}
.y85{bottom:763.665000px;}
.yb5{bottom:766.365000px;}
.y12{bottom:772.305000px;}
.y48{bottom:777.345000px;}
.yb4{bottom:786.345000px;}
.y11{bottom:792.105000px;}
.y84{bottom:792.825000px;}
.y47{bottom:797.145000px;}
.yb3{bottom:806.145000px;}
.y10{bottom:811.905000px;}
.y83{bottom:812.625000px;}
.y46{bottom:816.945000px;}
.yb2{bottom:825.585000px;}
.yda{bottom:825.945000px;}
.yf{bottom:831.885000px;}
.y82{bottom:832.605000px;}
.y45{bottom:836.745000px;}
.yb1{bottom:845.745000px;}
.ye{bottom:851.685000px;}
.y81{bottom:852.405000px;}
.y44{bottom:856.545000px;}
.yd9{bottom:865.185000px;}
.yb0{bottom:865.545000px;}
.yd{bottom:871.485000px;}
.y80{bottom:872.205000px;}
.y43{bottom:876.525000px;}
.yd8{bottom:885.210000px;}
.yaf{bottom:885.570000px;}
.y7f{bottom:892.050000px;}
.yc{bottom:893.670000px;}
.y42{bottom:896.370000px;}
.yd7{bottom:905.010000px;}
.yae{bottom:905.370000px;}
.y7e{bottom:911.850000px;}
.y41{bottom:916.170000px;}
.yb{bottom:918.690000px;}
.yad{bottom:924.810000px;}
.yd6{bottom:925.170000px;}
.y7d{bottom:931.830000px;}
.ya{bottom:933.990000px;}
.y40{bottom:935.970000px;}
.yac{bottom:944.970000px;}
.y7c{bottom:951.630000px;}
.y9{bottom:954.690000px;}
.y3f{bottom:955.770000px;}
.yab{bottom:964.770000px;}
.y7b{bottom:971.430000px;}
.y3e{bottom:975.750000px;}
.y8{bottom:978.270000px;}
.yaa{bottom:984.750000px;}
.y7a{bottom:991.230000px;}
.y3d{bottom:995.190000px;}
.ya9{bottom:1004.550000px;}
.y7{bottom:1009.950000px;}
.y79{bottom:1011.030000px;}
.y3c{bottom:1023.990000px;}
.ya8{bottom:1024.350000px;}
.y78{bottom:1031.010000px;}
.y3b{bottom:1044.150000px;}
.y77{bottom:1050.810000px;}
.y5{bottom:1051.890000px;}
.y3a{bottom:1063.950000px;}
.y76{bottom:1070.250000px;}
.y4{bottom:1082.670000px;}
.y39{bottom:1083.930000px;}
.y75{bottom:1090.050000px;}
.y38{bottom:1103.730000px;}
.y74{bottom:1104.810000px;}
.y3{bottom:1113.450000px;}
.y73{bottom:1122.810000px;}
.y37{bottom:1123.530000px;}
.y72{bottom:1140.840000px;}
.y36{bottom:1143.360000px;}
.y2{bottom:1144.080000px;}
.y70{bottom:1158.840000px;}
.ya7{bottom:1162.800000px;}
.y35{bottom:1163.160000px;}
.y1{bottom:1177.740000px;}
.y34{bottom:1193.580000px;}
.h15{height:2.826563px;}
.hc{height:17.100000px;}
.hd{height:17.136000px;}
.hf{height:17.280000px;}
.h10{height:17.316000px;}
.hb{height:19.620000px;}
.he{height:19.800000px;}
.h7{height:37.771172px;}
.h12{height:44.294766px;}
.h9{height:53.252930px;}
.h11{height:58.621992px;}
.h8{height:58.651172px;}
.h5{height:60.226875px;}
.h13{height:61.423863px;}
.h4{height:65.010937px;}
.h6{height:65.846250px;}
.h3{height:66.757500px;}
.ha{height:67.824844px;}
.h14{height:85.356000px;}
.h2{height:96.508125px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w5{width:194.430000px;}
.w6{width:209.010000px;}
.w4{width:228.990000px;}
.w3{width:309.495000px;}
.w7{width:575.925000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:7.740000px;}
.x1{left:54.179987px;}
.x2{left:79.380000px;}
.x6{left:80.999987px;}
.x7{left:101.375987px;}
.x8{left:191.370000px;}
.x9{left:263.010000px;}
.x4{left:389.595000px;}
.x5{left:619.305000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls5{letter-spacing:-1.045333pt;}
.lse{letter-spacing:-0.960000pt;}
.ls7{letter-spacing:-0.409067pt;}
.ls12{letter-spacing:-0.367467pt;}
.ls9{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.183467pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.271467pt;}
.lsb{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.456320pt;}
.lsf{letter-spacing:0.456533pt;}
.ls6{letter-spacing:0.504533pt;}
.lsa{letter-spacing:0.592000pt;}
.ls11{letter-spacing:0.736000pt;}
.lsd{letter-spacing:0.800000pt;}
.ls13{letter-spacing:13.520640pt;}
.ls14{letter-spacing:15.440640pt;}
.ws3{word-spacing:-15.224533pt;}
.ws4{word-spacing:-14.991467pt;}
.ws0{word-spacing:-14.720000pt;}
.wsb{word-spacing:-13.736533pt;}
.ws1{word-spacing:-13.674667pt;}
.wsa{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws9{word-spacing:-13.096533pt;}
.wsc{word-spacing:-12.960000pt;}
.wse{word-spacing:-12.912533pt;}
.wsf{word-spacing:-12.320000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._2{margin-left:-2256.995840pt;}
._3{margin-left:-1285.930240pt;}
._5{margin-left:-1281.337173pt;}
._4{margin-left:-883.833600pt;}
._6{margin-left:-525.582720pt;}
._7{margin-left:-7.143253pt;}
._17{margin-left:-5.113813pt;}
._8{margin-left:-3.879467pt;}
._e{margin-left:-2.643200pt;}
._1{margin-left:-1.447040pt;}
._0{width:1.106560pt;}
._a{width:2.042453pt;}
._d{width:3.252053pt;}
._11{width:4.149547pt;}
._c{width:5.099520pt;}
._b{width:6.533760pt;}
._15{width:7.428480pt;}
._12{width:8.434347pt;}
._f{width:9.774080pt;}
._10{width:11.120853pt;}
._16{width:12.336640pt;}
._13{width:14.306987pt;}
._14{width:15.368747pt;}
._19{width:18.369280pt;}
._18{width:19.545387pt;}
._9{width:45.283840pt;}
.fs5{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:2.880000pt;}
.y69{bottom:3.200000pt;}
.y6c{bottom:3.232000pt;}
.y71{bottom:3.360000pt;}
.y65{bottom:5.120000pt;}
.y6f{bottom:5.280000pt;}
.ye8{bottom:10.720000pt;}
.ye7{bottom:28.320000pt;}
.ye4{bottom:31.840000pt;}
.ye6{bottom:46.112000pt;}
.y6{bottom:54.240000pt;}
.ye5{bottom:63.706667pt;}
.ye3{bottom:76.000000pt;}
.y6e{bottom:76.960000pt;}
.ya6{bottom:81.120000pt;}
.ye2{bottom:81.760000pt;}
.y33{bottom:94.560000pt;}
.y6d{bottom:95.200000pt;}
.ya5{bottom:98.880000pt;}
.ye1{bottom:99.360000pt;}
.y6b{bottom:111.200000pt;}
.y32{bottom:112.160000pt;}
.ya4{bottom:116.512000pt;}
.yd5{bottom:116.992000pt;}
.y6a{bottom:127.232000pt;}
.y31{bottom:129.792000pt;}
.ya3{bottom:134.106667pt;}
.yd4{bottom:134.586667pt;}
.y68{bottom:143.226667pt;}
.y30{bottom:147.546667pt;}
.ya2{bottom:151.706667pt;}
.yd3{bottom:152.186667pt;}
.y66{bottom:159.226667pt;}
.y2f{bottom:164.826667pt;}
.ya1{bottom:169.306667pt;}
.yd2{bottom:169.626667pt;}
.ye0{bottom:169.946667pt;}
.y64{bottom:175.226667pt;}
.y2e{bottom:182.746667pt;}
.ya0{bottom:187.066667pt;}
.yd1{bottom:187.546667pt;}
.y63{bottom:198.746667pt;}
.y2d{bottom:200.346667pt;}
.y9f{bottom:204.666667pt;}
.yd0{bottom:205.146667pt;}
.y62{bottom:216.346667pt;}
.y2c{bottom:217.946667pt;}
.y9e{bottom:222.266667pt;}
.ycf{bottom:222.746667pt;}
.y61{bottom:234.106667pt;}
.y2b{bottom:235.706667pt;}
.y9d{bottom:239.866667pt;}
.yce{bottom:240.346667pt;}
.y60{bottom:251.706667pt;}
.y2a{bottom:253.306667pt;}
.y9c{bottom:257.146667pt;}
.ycd{bottom:258.106667pt;}
.y5f{bottom:269.306667pt;}
.y29{bottom:270.906667pt;}
.y9b{bottom:274.906667pt;}
.ycc{bottom:275.386667pt;}
.ydf{bottom:275.706667pt;}
.y5e{bottom:286.906667pt;}
.y28{bottom:288.506667pt;}
.y9a{bottom:292.506667pt;}
.ycb{bottom:293.306667pt;}
.y5d{bottom:304.506667pt;}
.y27{bottom:306.106667pt;}
.yca{bottom:310.906667pt;}
.y99{bottom:318.426667pt;}
.y5c{bottom:321.946667pt;}
.y26{bottom:323.866667pt;}
.yde{bottom:328.186667pt;}
.yc9{bottom:328.506667pt;}
.y98{bottom:336.026667pt;}
.y25{bottom:341.506667pt;}
.yc8{bottom:346.306667pt;}
.y5b{bottom:347.906667pt;}
.y97{bottom:353.666667pt;}
.y24{bottom:359.106667pt;}
.yc7{bottom:363.906667pt;}
.y5a{bottom:365.506667pt;}
.y96{bottom:371.426667pt;}
.y23{bottom:376.706667pt;}
.yc6{bottom:381.186667pt;}
.ydd{bottom:381.506667pt;}
.y59{bottom:383.106667pt;}
.y95{bottom:389.026667pt;}
.y22{bottom:394.306667pt;}
.yc5{bottom:399.106667pt;}
.y58{bottom:400.706667pt;}
.y94{bottom:406.626667pt;}
.y21{bottom:412.066667pt;}
.yc4{bottom:416.706667pt;}
.y57{bottom:418.466667pt;}
.y93{bottom:424.226667pt;}
.y20{bottom:429.666667pt;}
.ydc{bottom:434.146667pt;}
.yc3{bottom:434.466667pt;}
.y56{bottom:436.066667pt;}
.y92{bottom:441.826667pt;}
.y1f{bottom:447.266667pt;}
.yc2{bottom:452.066667pt;}
.y55{bottom:453.666667pt;}
.y91{bottom:459.586667pt;}
.y1e{bottom:464.866667pt;}
.yc1{bottom:469.666667pt;}
.y54{bottom:471.266667pt;}
.y90{bottom:477.186667pt;}
.y1d{bottom:482.466667pt;}
.yc0{bottom:487.266667pt;}
.y53{bottom:488.866667pt;}
.y8f{bottom:494.786667pt;}
.y1c{bottom:500.226667pt;}
.ybf{bottom:504.866667pt;}
.y52{bottom:506.626667pt;}
.y8e{bottom:512.386667pt;}
.y1b{bottom:517.826667pt;}
.ybe{bottom:522.626667pt;}
.y51{bottom:523.906667pt;}
.y8d{bottom:529.986667pt;}
.y1a{bottom:535.426667pt;}
.ybd{bottom:540.226667pt;}
.y8c{bottom:547.746667pt;}
.y50{bottom:549.826667pt;}
.y19{bottom:552.706667pt;}
.ybc{bottom:557.826667pt;}
.y8b{bottom:565.373333pt;}
.y4f{bottom:567.453333pt;}
.y18{bottom:570.333333pt;}
.ybb{bottom:575.453333pt;}
.y8a{bottom:582.973333pt;}
.y4e{bottom:585.053333pt;}
.y17{bottom:590.333333pt;}
.yba{bottom:593.053333pt;}
.y89{bottom:600.573333pt;}
.y4d{bottom:602.813333pt;}
.y16{bottom:607.933333pt;}
.ydb{bottom:610.493333pt;}
.yb9{bottom:610.813333pt;}
.y88{bottom:618.173333pt;}
.y4c{bottom:620.413333pt;}
.yb8{bottom:628.413333pt;}
.y15{bottom:633.533333pt;}
.y87{bottom:635.933333pt;}
.y4b{bottom:638.013333pt;}
.yb7{bottom:646.013333pt;}
.y14{bottom:651.293333pt;}
.y86{bottom:653.213333pt;}
.y4a{bottom:655.613333pt;}
.yb6{bottom:663.613333pt;}
.y13{bottom:668.893333pt;}
.y49{bottom:673.213333pt;}
.y85{bottom:678.813333pt;}
.yb5{bottom:681.213333pt;}
.y12{bottom:686.493333pt;}
.y48{bottom:690.973333pt;}
.yb4{bottom:698.973333pt;}
.y11{bottom:704.093333pt;}
.y84{bottom:704.733333pt;}
.y47{bottom:708.573333pt;}
.yb3{bottom:716.573333pt;}
.y10{bottom:721.693333pt;}
.y83{bottom:722.333333pt;}
.y46{bottom:726.173333pt;}
.yb2{bottom:733.853333pt;}
.yda{bottom:734.173333pt;}
.yf{bottom:739.453333pt;}
.y82{bottom:740.093333pt;}
.y45{bottom:743.773333pt;}
.yb1{bottom:751.773333pt;}
.ye{bottom:757.053333pt;}
.y81{bottom:757.693333pt;}
.y44{bottom:761.373333pt;}
.yd9{bottom:769.053333pt;}
.yb0{bottom:769.373333pt;}
.yd{bottom:774.653333pt;}
.y80{bottom:775.293333pt;}
.y43{bottom:779.133333pt;}
.yd8{bottom:786.853333pt;}
.yaf{bottom:787.173333pt;}
.y7f{bottom:792.933333pt;}
.yc{bottom:794.373333pt;}
.y42{bottom:796.773333pt;}
.yd7{bottom:804.453333pt;}
.yae{bottom:804.773333pt;}
.y7e{bottom:810.533333pt;}
.y41{bottom:814.373333pt;}
.yb{bottom:816.613333pt;}
.yad{bottom:822.053333pt;}
.yd6{bottom:822.373333pt;}
.y7d{bottom:828.293333pt;}
.ya{bottom:830.213333pt;}
.y40{bottom:831.973333pt;}
.yac{bottom:839.973333pt;}
.y7c{bottom:845.893333pt;}
.y9{bottom:848.613333pt;}
.y3f{bottom:849.573333pt;}
.yab{bottom:857.573333pt;}
.y7b{bottom:863.493333pt;}
.y3e{bottom:867.333333pt;}
.y8{bottom:869.573333pt;}
.yaa{bottom:875.333333pt;}
.y7a{bottom:881.093333pt;}
.y3d{bottom:884.613333pt;}
.ya9{bottom:892.933333pt;}
.y7{bottom:897.733333pt;}
.y79{bottom:898.693333pt;}
.y3c{bottom:910.213333pt;}
.ya8{bottom:910.533333pt;}
.y78{bottom:916.453333pt;}
.y3b{bottom:928.133333pt;}
.y77{bottom:934.053333pt;}
.y5{bottom:935.013333pt;}
.y3a{bottom:945.733333pt;}
.y76{bottom:951.333333pt;}
.y4{bottom:962.373333pt;}
.y39{bottom:963.493333pt;}
.y75{bottom:968.933333pt;}
.y38{bottom:981.093333pt;}
.y74{bottom:982.053333pt;}
.y3{bottom:989.733333pt;}
.y73{bottom:998.053333pt;}
.y37{bottom:998.693333pt;}
.y72{bottom:1014.080000pt;}
.y36{bottom:1016.320000pt;}
.y2{bottom:1016.960000pt;}
.y70{bottom:1030.080000pt;}
.ya7{bottom:1033.600000pt;}
.y35{bottom:1033.920000pt;}
.y1{bottom:1046.880000pt;}
.y34{bottom:1060.960000pt;}
.h15{height:2.512500pt;}
.hc{height:15.200000pt;}
.hd{height:15.232000pt;}
.hf{height:15.360000pt;}
.h10{height:15.392000pt;}
.hb{height:17.440000pt;}
.he{height:17.600000pt;}
.h7{height:33.574375pt;}
.h12{height:39.373125pt;}
.h9{height:47.335938pt;}
.h11{height:52.108438pt;}
.h8{height:52.134375pt;}
.h5{height:53.535000pt;}
.h13{height:54.598989pt;}
.h4{height:57.787500pt;}
.h6{height:58.530000pt;}
.h3{height:59.340000pt;}
.ha{height:60.288750pt;}
.h14{height:75.872000pt;}
.h2{height:85.785000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w5{width:172.826667pt;}
.w6{width:185.786667pt;}
.w4{width:203.546667pt;}
.w3{width:275.106667pt;}
.w7{width:511.933333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:6.880000pt;}
.x1{left:48.159988pt;}
.x2{left:70.560000pt;}
.x6{left:71.999988pt;}
.x7{left:90.111988pt;}
.x8{left:170.106667pt;}
.x9{left:233.786667pt;}
.x4{left:346.306667pt;}
.x5{left:550.493333pt;}
}




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