
    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_be17bbffd0f1f8e81d96b02c.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_d1dc7234b7d51da16ca6a011.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5a2959522939c6da03e81a45.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fd2f70a8e0dfa9147b59c706.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_625a5b5fc23a9b0ec93cb4f5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_dcf07ee516b6304f2b25393f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;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:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls7{letter-spacing:-0.600000px;}
.ls9{letter-spacing:-0.480000px;}
.ls8{letter-spacing:-0.048000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.018000px;}
.ls5{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.138000px;}
.ls4{letter-spacing:0.240000px;}
.lsa{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.384000px;}
.ls1{letter-spacing:0.600000px;}
.lsc{letter-spacing:15.720000px;}
.lsb{letter-spacing:45.720000px;}
.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:-18.384000px;}
.ws3{word-spacing:-18.000000px;}
.ws5{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.054000px;}
.ws4{word-spacing:-15.000000px;}
.ws7{word-spacing:-14.100000px;}
.ws8{word-spacing:-13.500000px;}
.ws9{word-spacing:-12.900000px;}
.wsa{word-spacing:-11.136000px;}
.ws2{word-spacing:-9.900000px;}
.ws6{word-spacing:0.000000px;}
._d{margin-left:-2.424000px;}
._0{margin-left:-1.056000px;}
._1{width:1.122000px;}
._6{width:2.892000px;}
._11{width:3.918000px;}
._a{width:4.920000px;}
._b{width:6.114000px;}
._14{width:7.422000px;}
._9{width:8.700000px;}
._e{width:9.894000px;}
._10{width:11.616000px;}
._f{width:12.720000px;}
._15{width:13.896000px;}
._2d{width:16.122000px;}
._c{width:17.244000px;}
._8{width:18.492000px;}
._7{width:19.620000px;}
._30{width:20.766000px;}
._13{width:22.476000px;}
._12{width:23.580000px;}
._27{width:27.510000px;}
._2e{width:28.740000px;}
._2f{width:29.874000px;}
._2{width:43.800000px;}
._1d{width:74.340000px;}
._20{width:75.756000px;}
._23{width:77.700000px;}
._2c{width:89.364000px;}
._2b{width:90.450000px;}
._25{width:101.040000px;}
._1f{width:104.364000px;}
._1e{width:111.090000px;}
._24{width:119.364000px;}
._28{width:127.164000px;}
._1a{width:136.050000px;}
._18{width:140.022000px;}
._1b{width:141.858000px;}
._2a{width:143.850000px;}
._1c{width:146.406000px;}
._17{width:155.964000px;}
._26{width:163.764000px;}
._29{width:171.060000px;}
._22{width:178.134000px;}
._19{width:200.142000px;}
._16{width:201.978000px;}
._4{width:336.180000px;}
._21{width:862.920000px;}
._3{width:1162.530000px;}
._5{width:1184.820000px;}
.fc5{color:transparent;}
.fc3{color:rgb(34,122,203);}
.fc4{color:rgb(31,73,125);}
.fc1{color:rgb(192,0,0);}
.fc6{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs7{font-size:39.600000px;}
.fs1{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yf{bottom:3.915000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y3f{bottom:6.000000px;}
.y5{bottom:12.337500px;}
.y3e{bottom:25.500000px;}
.y3d{bottom:39.900000px;}
.y4{bottom:46.800000px;}
.y1{bottom:57.037500px;}
.y3c{bottom:57.300000px;}
.y78{bottom:74.137500px;}
.y3b{bottom:74.400000px;}
.y3{bottom:81.337500px;}
.y3a{bottom:91.800000px;}
.y39{bottom:108.900000px;}
.yab{bottom:111.637500px;}
.y77{bottom:114.037500px;}
.y38{bottom:126.345000px;}
.y2d{bottom:128.137500px;}
.yaa{bottom:129.037500px;}
.ye1{bottom:129.637500px;}
.y76{bottom:134.137500px;}
.y37{bottom:143.445000px;}
.y2c{bottom:145.237500px;}
.ya9{bottom:146.137500px;}
.ye0{bottom:146.737500px;}
.y75{bottom:154.245000px;}
.y36{bottom:160.830000px;}
.y2b{bottom:162.645000px;}
.ya8{bottom:163.545000px;}
.ydf{bottom:164.130000px;}
.y74{bottom:173.430000px;}
.y35{bottom:177.930000px;}
.y2a{bottom:179.775000px;}
.ya7{bottom:180.675000px;}
.yde{bottom:181.275000px;}
.y73{bottom:190.575000px;}
.y34{bottom:195.330000px;}
.y29{bottom:197.175000px;}
.ya6{bottom:198.075000px;}
.ydd{bottom:198.675000px;}
.y72{bottom:207.975000px;}
.y33{bottom:212.430000px;}
.y28{bottom:214.275000px;}
.ya5{bottom:215.175000px;}
.ydc{bottom:215.775000px;}
.y71{bottom:225.075000px;}
.y32{bottom:229.845000px;}
.y27{bottom:231.675000px;}
.ya4{bottom:232.575000px;}
.ydb{bottom:233.175000px;}
.y70{bottom:242.475000px;}
.y31{bottom:246.930000px;}
.y26{bottom:248.775000px;}
.ya3{bottom:249.675000px;}
.yda{bottom:250.275000px;}
.y30{bottom:264.345000px;}
.y25{bottom:266.175000px;}
.ya2{bottom:267.075000px;}
.yd9{bottom:267.675000px;}
.y6f{bottom:267.975000px;}
.y2f{bottom:282.045000px;}
.y24{bottom:283.275000px;}
.ya1{bottom:284.175000px;}
.yd8{bottom:284.775000px;}
.y6e{bottom:293.775000px;}
.y23{bottom:300.675000px;}
.ya0{bottom:301.575000px;}
.yd7{bottom:302.175000px;}
.y22{bottom:317.775000px;}
.y9f{bottom:318.675000px;}
.yd6{bottom:319.275000px;}
.y6d{bottom:319.575000px;}
.y21{bottom:335.175000px;}
.y9e{bottom:336.075000px;}
.yd5{bottom:336.675000px;}
.y6c{bottom:345.375000px;}
.y20{bottom:352.320000px;}
.y9d{bottom:353.205000px;}
.yd4{bottom:353.820000px;}
.y1f{bottom:369.720000px;}
.y9c{bottom:370.620000px;}
.yd3{bottom:371.205000px;}
.y6b{bottom:371.505000px;}
.y1e{bottom:386.820000px;}
.y9b{bottom:387.705000px;}
.yd2{bottom:388.320000px;}
.y6a{bottom:397.320000px;}
.y1d{bottom:404.220000px;}
.y9a{bottom:405.405000px;}
.yd1{bottom:405.705000px;}
.y1c{bottom:421.320000px;}
.yd0{bottom:422.820000px;}
.y69{bottom:423.120000px;}
.y99{bottom:425.820000px;}
.y1b{bottom:438.705000px;}
.ycf{bottom:440.205000px;}
.y68{bottom:440.820000px;}
.y98{bottom:442.920000px;}
.y1a{bottom:456.420000px;}
.yce{bottom:457.320000px;}
.y67{bottom:457.905000px;}
.y97{bottom:460.320000px;}
.ycd{bottom:474.705000px;}
.y66{bottom:475.620000px;}
.y19{bottom:477.120000px;}
.y96{bottom:477.420000px;}
.ycc{bottom:491.820000px;}
.y95{bottom:494.820000px;}
.y65{bottom:496.005000px;}
.ycb{bottom:509.205000px;}
.y64{bottom:513.120000px;}
.y94{bottom:520.350000px;}
.yca{bottom:526.350000px;}
.y63{bottom:530.550000px;}
.yc9{bottom:543.750000px;}
.y93{bottom:546.150000px;}
.y62{bottom:548.250000px;}
.y2e{bottom:556.950000px;}
.yc8{bottom:560.850000px;}
.y61{bottom:567.750000px;}
.y92{bottom:571.950000px;}
.yc7{bottom:578.250000px;}
.y60{bottom:582.150000px;}
.yc6{bottom:595.350000px;}
.y91{bottom:598.050000px;}
.y5f{bottom:599.550000px;}
.yc5{bottom:613.050000px;}
.y5e{bottom:616.650000px;}
.y90{bottom:623.850000px;}
.yc4{bottom:633.450000px;}
.y5d{bottom:634.050000px;}
.y8f{bottom:649.650000px;}
.yc3{bottom:650.550000px;}
.y5c{bottom:651.750000px;}
.y8e{bottom:667.650000px;}
.y5b{bottom:671.250000px;}
.yc2{bottom:675.150000px;}
.y5a{bottom:685.695000px;}
.y8d{bottom:688.080000px;}
.yc1{bottom:692.595000px;}
.y59{bottom:703.095000px;}
.y8c{bottom:705.195000px;}
.yc0{bottom:709.980000px;}
.y58{bottom:720.195000px;}
.y8b{bottom:722.595000px;}
.ybf{bottom:727.695000px;}
.y57{bottom:737.895000px;}
.y8a{bottom:739.695000px;}
.ybe{bottom:747.195000px;}
.y89{bottom:757.095000px;}
.y56{bottom:757.380000px;}
.ybd{bottom:761.595000px;}
.ye3{bottom:767.895000px;}
.y55{bottom:772.080000px;}
.ybc{bottom:778.980000px;}
.y88{bottom:782.580000px;}
.y54{bottom:789.195000px;}
.ye2{bottom:793.080000px;}
.ybb{bottom:796.080000px;}
.y53{bottom:806.895000px;}
.y87{bottom:808.395000px;}
.yba{bottom:813.495000px;}
.y52{bottom:826.380000px;}
.yb9{bottom:830.580000px;}
.y86{bottom:834.195000px;}
.y51{bottom:841.080000px;}
.yb8{bottom:847.995000px;}
.y50{bottom:858.225000px;}
.y85{bottom:860.325000px;}
.yb7{bottom:865.125000px;}
.y4f{bottom:875.925000px;}
.yb6{bottom:882.525000px;}
.y84{bottom:886.125000px;}
.y18{bottom:887.325000px;}
.y4e{bottom:895.425000px;}
.yb5{bottom:899.625000px;}
.y17{bottom:907.725000px;}
.y4d{bottom:910.125000px;}
.y83{bottom:911.925000px;}
.yb4{bottom:917.025000px;}
.y4c{bottom:927.225000px;}
.y16{bottom:927.525000px;}
.yb3{bottom:934.125000px;}
.y82{bottom:937.425000px;}
.y4b{bottom:943.725000px;}
.y15{bottom:946.125000px;}
.yb2{bottom:951.525000px;}
.y81{bottom:957.825000px;}
.y4a{bottom:958.425000px;}
.yb1{bottom:968.625000px;}
.y14{bottom:970.125000px;}
.y80{bottom:974.925000px;}
.y49{bottom:975.525000px;}
.y13{bottom:982.725000px;}
.yb0{bottom:986.025000px;}
.y7f{bottom:992.325000px;}
.y48{bottom:992.925000px;}
.y12{bottom:1002.825000px;}
.yaf{bottom:1003.125000px;}
.y7e{bottom:1009.425000px;}
.y47{bottom:1010.025000px;}
.y11{bottom:1020.570000px;}
.y46{bottom:1027.755000px;}
.y7d{bottom:1034.955000px;}
.yae{bottom:1037.670000px;}
.y10{bottom:1038.255000px;}
.yd{bottom:1040.955000px;}
.y45{bottom:1048.455000px;}
.yad{bottom:1055.070000px;}
.y7c{bottom:1061.070000px;}
.yc{bottom:1062.570000px;}
.yb{bottom:1068.255000px;}
.y44{bottom:1069.170000px;}
.yac{bottom:1072.170000px;}
.ya{bottom:1083.570000px;}
.y7b{bottom:1086.870000px;}
.y43{bottom:1089.570000px;}
.y9{bottom:1097.955000px;}
.y42{bottom:1106.670000px;}
.y7a{bottom:1112.670000px;}
.y8{bottom:1115.670000px;}
.y41{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.y79{bottom:1138.170000px;}
.y6{bottom:1141.170000px;}
.y40{bottom:1196.400000px;}
.h9{height:8.378906px;}
.h5{height:12.700195px;}
.ha{height:21.000000px;}
.hc{height:27.650391px;}
.h15{height:33.515625px;}
.h7{height:33.867188px;}
.h13{height:34.664062px;}
.h3{height:36.000000px;}
.h8{height:37.705078px;}
.hd{height:38.100586px;}
.hf{height:41.894531px;}
.h4{height:42.333984px;}
.h16{height:43.681641px;}
.h14{height:44.507812px;}
.h12{height:49.453125px;}
.hb{height:49.540430px;}
.he{height:50.273438px;}
.h6{height:50.800781px;}
.h11{height:51.996094px;}
.h1{height:65.645508px;}
.h2{height:97.200000px;}
.h10{height:298.875000px;}
.h0{height:1263.000000px;}
.w4{width:72.300000px;}
.w3{width:108.000000px;}
.w6{width:247.875000px;}
.w5{width:483.450000px;}
.w7{width:728.925000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:10.799998px;}
.xf{left:16.200000px;}
.x3{left:22.200000px;}
.x4{left:23.400000px;}
.xd{left:41.700000px;}
.x1{left:81.037487px;}
.xe{left:83.137500px;}
.x11{left:108.037487px;}
.x9{left:153.629987px;}
.xb{left:241.582500px;}
.x6{left:446.249987px;}
.xc{left:564.495000px;}
.x10{left:579.479987px;}
.x8{left:616.379987px;}
.x7{left:648.194987px;}
.x5{left:697.124987px;}
.xa{left:812.369987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls7{letter-spacing:-0.533333pt;}
.ls9{letter-spacing:-0.426667pt;}
.ls8{letter-spacing:-0.042667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.016000pt;}
.ls5{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.122667pt;}
.ls4{letter-spacing:0.213333pt;}
.lsa{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.341333pt;}
.ls1{letter-spacing:0.533333pt;}
.lsc{letter-spacing:13.973333pt;}
.lsb{letter-spacing:40.640000pt;}
.ws1{word-spacing:-16.341333pt;}
.ws3{word-spacing:-16.000000pt;}
.ws5{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.381333pt;}
.ws4{word-spacing:-13.333333pt;}
.ws7{word-spacing:-12.533333pt;}
.ws8{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.466667pt;}
.wsa{word-spacing:-9.898667pt;}
.ws2{word-spacing:-8.800000pt;}
.ws6{word-spacing:0.000000pt;}
._d{margin-left:-2.154667pt;}
._0{margin-left:-0.938667pt;}
._1{width:0.997333pt;}
._6{width:2.570667pt;}
._11{width:3.482667pt;}
._a{width:4.373333pt;}
._b{width:5.434667pt;}
._14{width:6.597333pt;}
._9{width:7.733333pt;}
._e{width:8.794667pt;}
._10{width:10.325333pt;}
._f{width:11.306667pt;}
._15{width:12.352000pt;}
._2d{width:14.330667pt;}
._c{width:15.328000pt;}
._8{width:16.437333pt;}
._7{width:17.440000pt;}
._30{width:18.458667pt;}
._13{width:19.978667pt;}
._12{width:20.960000pt;}
._27{width:24.453333pt;}
._2e{width:25.546667pt;}
._2f{width:26.554667pt;}
._2{width:38.933333pt;}
._1d{width:66.080000pt;}
._20{width:67.338667pt;}
._23{width:69.066667pt;}
._2c{width:79.434667pt;}
._2b{width:80.400000pt;}
._25{width:89.813333pt;}
._1f{width:92.768000pt;}
._1e{width:98.746667pt;}
._24{width:106.101333pt;}
._28{width:113.034667pt;}
._1a{width:120.933333pt;}
._18{width:124.464000pt;}
._1b{width:126.096000pt;}
._2a{width:127.866667pt;}
._1c{width:130.138667pt;}
._17{width:138.634667pt;}
._26{width:145.568000pt;}
._29{width:152.053333pt;}
._22{width:158.341333pt;}
._19{width:177.904000pt;}
._16{width:179.536000pt;}
._4{width:298.826667pt;}
._21{width:767.040000pt;}
._3{width:1033.360000pt;}
._5{width:1053.173333pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs7{font-size:35.200000pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:3.480000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y3f{bottom:5.333333pt;}
.y5{bottom:10.966667pt;}
.y3e{bottom:22.666667pt;}
.y3d{bottom:35.466667pt;}
.y4{bottom:41.600000pt;}
.y1{bottom:50.700000pt;}
.y3c{bottom:50.933333pt;}
.y78{bottom:65.900000pt;}
.y3b{bottom:66.133333pt;}
.y3{bottom:72.300000pt;}
.y3a{bottom:81.600000pt;}
.y39{bottom:96.800000pt;}
.yab{bottom:99.233333pt;}
.y77{bottom:101.366667pt;}
.y38{bottom:112.306667pt;}
.y2d{bottom:113.900000pt;}
.yaa{bottom:114.700000pt;}
.ye1{bottom:115.233333pt;}
.y76{bottom:119.233333pt;}
.y37{bottom:127.506667pt;}
.y2c{bottom:129.100000pt;}
.ya9{bottom:129.900000pt;}
.ye0{bottom:130.433333pt;}
.y75{bottom:137.106667pt;}
.y36{bottom:142.960000pt;}
.y2b{bottom:144.573333pt;}
.ya8{bottom:145.373333pt;}
.ydf{bottom:145.893333pt;}
.y74{bottom:154.160000pt;}
.y35{bottom:158.160000pt;}
.y2a{bottom:159.800000pt;}
.ya7{bottom:160.600000pt;}
.yde{bottom:161.133333pt;}
.y73{bottom:169.400000pt;}
.y34{bottom:173.626667pt;}
.y29{bottom:175.266667pt;}
.ya6{bottom:176.066667pt;}
.ydd{bottom:176.600000pt;}
.y72{bottom:184.866667pt;}
.y33{bottom:188.826667pt;}
.y28{bottom:190.466667pt;}
.ya5{bottom:191.266667pt;}
.ydc{bottom:191.800000pt;}
.y71{bottom:200.066667pt;}
.y32{bottom:204.306667pt;}
.y27{bottom:205.933333pt;}
.ya4{bottom:206.733333pt;}
.ydb{bottom:207.266667pt;}
.y70{bottom:215.533333pt;}
.y31{bottom:219.493333pt;}
.y26{bottom:221.133333pt;}
.ya3{bottom:221.933333pt;}
.yda{bottom:222.466667pt;}
.y30{bottom:234.973333pt;}
.y25{bottom:236.600000pt;}
.ya2{bottom:237.400000pt;}
.yd9{bottom:237.933333pt;}
.y6f{bottom:238.200000pt;}
.y2f{bottom:250.706667pt;}
.y24{bottom:251.800000pt;}
.ya1{bottom:252.600000pt;}
.yd8{bottom:253.133333pt;}
.y6e{bottom:261.133333pt;}
.y23{bottom:267.266667pt;}
.ya0{bottom:268.066667pt;}
.yd7{bottom:268.600000pt;}
.y22{bottom:282.466667pt;}
.y9f{bottom:283.266667pt;}
.yd6{bottom:283.800000pt;}
.y6d{bottom:284.066667pt;}
.y21{bottom:297.933333pt;}
.y9e{bottom:298.733333pt;}
.yd5{bottom:299.266667pt;}
.y6c{bottom:307.000000pt;}
.y20{bottom:313.173333pt;}
.y9d{bottom:313.960000pt;}
.yd4{bottom:314.506667pt;}
.y1f{bottom:328.640000pt;}
.y9c{bottom:329.440000pt;}
.yd3{bottom:329.960000pt;}
.y6b{bottom:330.226667pt;}
.y1e{bottom:343.840000pt;}
.y9b{bottom:344.626667pt;}
.yd2{bottom:345.173333pt;}
.y6a{bottom:353.173333pt;}
.y1d{bottom:359.306667pt;}
.y9a{bottom:360.360000pt;}
.yd1{bottom:360.626667pt;}
.y1c{bottom:374.506667pt;}
.yd0{bottom:375.840000pt;}
.y69{bottom:376.106667pt;}
.y99{bottom:378.506667pt;}
.y1b{bottom:389.960000pt;}
.ycf{bottom:391.293333pt;}
.y68{bottom:391.840000pt;}
.y98{bottom:393.706667pt;}
.y1a{bottom:405.706667pt;}
.yce{bottom:406.506667pt;}
.y67{bottom:407.026667pt;}
.y97{bottom:409.173333pt;}
.ycd{bottom:421.960000pt;}
.y66{bottom:422.773333pt;}
.y19{bottom:424.106667pt;}
.y96{bottom:424.373333pt;}
.ycc{bottom:437.173333pt;}
.y95{bottom:439.840000pt;}
.y65{bottom:440.893333pt;}
.ycb{bottom:452.626667pt;}
.y64{bottom:456.106667pt;}
.y94{bottom:462.533333pt;}
.yca{bottom:467.866667pt;}
.y63{bottom:471.600000pt;}
.yc9{bottom:483.333333pt;}
.y93{bottom:485.466667pt;}
.y62{bottom:487.333333pt;}
.y2e{bottom:495.066667pt;}
.yc8{bottom:498.533333pt;}
.y61{bottom:504.666667pt;}
.y92{bottom:508.400000pt;}
.yc7{bottom:514.000000pt;}
.y60{bottom:517.466667pt;}
.yc6{bottom:529.200000pt;}
.y91{bottom:531.600000pt;}
.y5f{bottom:532.933333pt;}
.yc5{bottom:544.933333pt;}
.y5e{bottom:548.133333pt;}
.y90{bottom:554.533333pt;}
.yc4{bottom:563.066667pt;}
.y5d{bottom:563.600000pt;}
.y8f{bottom:577.466667pt;}
.yc3{bottom:578.266667pt;}
.y5c{bottom:579.333333pt;}
.y8e{bottom:593.466667pt;}
.y5b{bottom:596.666667pt;}
.yc2{bottom:600.133333pt;}
.y5a{bottom:609.506667pt;}
.y8d{bottom:611.626667pt;}
.yc1{bottom:615.640000pt;}
.y59{bottom:624.973333pt;}
.y8c{bottom:626.840000pt;}
.yc0{bottom:631.093333pt;}
.y58{bottom:640.173333pt;}
.y8b{bottom:642.306667pt;}
.ybf{bottom:646.840000pt;}
.y57{bottom:655.906667pt;}
.y8a{bottom:657.506667pt;}
.ybe{bottom:664.173333pt;}
.y89{bottom:672.973333pt;}
.y56{bottom:673.226667pt;}
.ybd{bottom:676.973333pt;}
.ye3{bottom:682.573333pt;}
.y55{bottom:686.293333pt;}
.ybc{bottom:692.426667pt;}
.y88{bottom:695.626667pt;}
.y54{bottom:701.506667pt;}
.ye2{bottom:704.960000pt;}
.ybb{bottom:707.626667pt;}
.y53{bottom:717.240000pt;}
.y87{bottom:718.573333pt;}
.yba{bottom:723.106667pt;}
.y52{bottom:734.560000pt;}
.yb9{bottom:738.293333pt;}
.y86{bottom:741.506667pt;}
.y51{bottom:747.626667pt;}
.yb8{bottom:753.773333pt;}
.y50{bottom:762.866667pt;}
.y85{bottom:764.733333pt;}
.yb7{bottom:769.000000pt;}
.y4f{bottom:778.600000pt;}
.yb6{bottom:784.466667pt;}
.y84{bottom:787.666667pt;}
.y18{bottom:788.733333pt;}
.y4e{bottom:795.933333pt;}
.yb5{bottom:799.666667pt;}
.y17{bottom:806.866667pt;}
.y4d{bottom:809.000000pt;}
.y83{bottom:810.600000pt;}
.yb4{bottom:815.133333pt;}
.y4c{bottom:824.200000pt;}
.y16{bottom:824.466667pt;}
.yb3{bottom:830.333333pt;}
.y82{bottom:833.266667pt;}
.y4b{bottom:838.866667pt;}
.y15{bottom:841.000000pt;}
.yb2{bottom:845.800000pt;}
.y81{bottom:851.400000pt;}
.y4a{bottom:851.933333pt;}
.yb1{bottom:861.000000pt;}
.y14{bottom:862.333333pt;}
.y80{bottom:866.600000pt;}
.y49{bottom:867.133333pt;}
.y13{bottom:873.533333pt;}
.yb0{bottom:876.466667pt;}
.y7f{bottom:882.066667pt;}
.y48{bottom:882.600000pt;}
.y12{bottom:891.400000pt;}
.yaf{bottom:891.666667pt;}
.y7e{bottom:897.266667pt;}
.y47{bottom:897.800000pt;}
.y11{bottom:907.173333pt;}
.y46{bottom:913.560000pt;}
.y7d{bottom:919.960000pt;}
.yae{bottom:922.373333pt;}
.y10{bottom:922.893333pt;}
.yd{bottom:925.293333pt;}
.y45{bottom:931.960000pt;}
.yad{bottom:937.840000pt;}
.y7c{bottom:943.173333pt;}
.yc{bottom:944.506667pt;}
.yb{bottom:949.560000pt;}
.y44{bottom:950.373333pt;}
.yac{bottom:953.040000pt;}
.ya{bottom:963.173333pt;}
.y7b{bottom:966.106667pt;}
.y43{bottom:968.506667pt;}
.y9{bottom:975.960000pt;}
.y42{bottom:983.706667pt;}
.y7a{bottom:989.040000pt;}
.y8{bottom:991.706667pt;}
.y41{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.y79{bottom:1011.706667pt;}
.y6{bottom:1014.373333pt;}
.y40{bottom:1063.466667pt;}
.h9{height:7.447917pt;}
.h5{height:11.289062pt;}
.ha{height:18.666667pt;}
.hc{height:24.578125pt;}
.h15{height:29.791667pt;}
.h7{height:30.104167pt;}
.h13{height:30.812500pt;}
.h3{height:32.000000pt;}
.h8{height:33.515625pt;}
.hd{height:33.867188pt;}
.hf{height:37.239583pt;}
.h4{height:37.630208pt;}
.h16{height:38.828125pt;}
.h14{height:39.562500pt;}
.h12{height:43.958333pt;}
.hb{height:44.035937pt;}
.he{height:44.687500pt;}
.h6{height:45.156250pt;}
.h11{height:46.218750pt;}
.h1{height:58.351562pt;}
.h2{height:86.400000pt;}
.h10{height:265.666667pt;}
.h0{height:1122.666667pt;}
.w4{width:64.266667pt;}
.w3{width:96.000000pt;}
.w6{width:220.333333pt;}
.w5{width:429.733333pt;}
.w7{width:647.933333pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:9.599999pt;}
.xf{left:14.400000pt;}
.x3{left:19.733333pt;}
.x4{left:20.800000pt;}
.xd{left:37.066667pt;}
.x1{left:72.033322pt;}
.xe{left:73.900000pt;}
.x11{left:96.033322pt;}
.x9{left:136.559988pt;}
.xb{left:214.740000pt;}
.x6{left:396.666655pt;}
.xc{left:501.773333pt;}
.x10{left:515.093322pt;}
.x8{left:547.893322pt;}
.x7{left:576.173322pt;}
.x5{left:619.666655pt;}
.xa{left:722.106655pt;}
}




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