
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1b8518def5e4b09357a12b76.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_f2d7b920030ed54610ac9d1c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_1ee279cbb78d2cff229a4ebb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_2e11fa48361a388e0a100042.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_dbb1d5eb994194d2a4e6e2b5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_9aa19c50ce63909bcc6bd575.woff2')format("woff");}.ff7{font-family:ff7;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls8{letter-spacing:-0.648000px;}
.ls9{letter-spacing:-0.370200px;}
.lsa{letter-spacing:-0.326400px;}
.lsc{letter-spacing:-0.094800px;}
.ls16{letter-spacing:-0.036000px;}
.lse{letter-spacing:-0.010800px;}
.ls6{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.012960px;}
.ls4{letter-spacing:0.013200px;}
.lsb{letter-spacing:0.100800px;}
.ls14{letter-spacing:0.120960px;}
.ls7{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.172800px;}
.ls11{letter-spacing:0.211680px;}
.ls18{letter-spacing:0.319680px;}
.ls1{letter-spacing:0.351360px;}
.lsd{letter-spacing:0.351600px;}
.ls13{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.364800px;}
.lsf{letter-spacing:0.385800px;}
.ls3{letter-spacing:0.498240px;}
.ls12{letter-spacing:0.666720px;}
.ls0{letter-spacing:0.720000px;}
.ls17{letter-spacing:47.466720px;}
.ls15{letter-spacing:81.306720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsb{word-spacing:-14.958600px;}
.ws8{word-spacing:-14.572800px;}
.ws6{word-spacing:-13.512000px;}
.ws4{word-spacing:-13.160400px;}
.wsa{word-spacing:-13.160160px;}
.ws5{word-spacing:-13.147200px;}
.wsc{word-spacing:-13.111200px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws3{word-spacing:-9.187200px;}
.ws9{word-spacing:0.000000px;}
.ws7{word-spacing:2.552040px;}
._d{margin-left:-3.720089px;}
._2{margin-left:-2.715587px;}
._0{margin-left:-1.159200px;}
._1{width:1.056000px;}
._7{width:2.111400px;}
._3{width:3.133920px;}
._5{width:4.143360px;}
._a{width:5.311560px;}
._4{width:6.737040px;}
._6{width:8.134680px;}
._9{width:9.287639px;}
._b{width:10.504327px;}
._8{width:11.533800px;}
._c{width:14.242560px;}
._11{width:15.299280px;}
._e{width:16.334160px;}
._12{width:17.827800px;}
._15{width:18.861476px;}
._13{width:21.573360px;}
._14{width:22.707360px;}
._f{width:24.800400px;}
._10{width:26.013840px;}
._18{width:27.438960px;}
._16{width:101.472480px;}
._17{width:102.667920px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.296000px;}
.y29{bottom:74.196000px;}
.y1{bottom:101.376000px;}
.ydf{bottom:115.596000px;}
.y83{bottom:125.316000px;}
.y49{bottom:128.376000px;}
.y91{bottom:132.156000px;}
.yde{bottom:133.236000px;}
.y79{bottom:134.676000px;}
.yb5{bottom:136.656000px;}
.y82{bottom:142.956000px;}
.y48{bottom:145.836000px;}
.y90{bottom:149.796000px;}
.ydd{bottom:150.870000px;}
.y78{bottom:152.310000px;}
.yb4{bottom:154.290000px;}
.y81{bottom:160.590000px;}
.y62{bottom:162.390000px;}
.y47{bottom:163.470000px;}
.y8f{bottom:167.250000px;}
.y77{bottom:169.950000px;}
.yb3{bottom:171.750000px;}
.y27{bottom:173.730000px;}
.ydc{bottom:177.330000px;}
.y80{bottom:178.230000px;}
.y61{bottom:180.030000px;}
.y8e{bottom:184.890000px;}
.y76{bottom:187.590000px;}
.y26{bottom:191.370000px;}
.ydb{bottom:194.970000px;}
.y60{bottom:197.670000px;}
.yb2{bottom:198.390000px;}
.y46{bottom:198.930000px;}
.y25{bottom:209.010000px;}
.yda{bottom:212.610000px;}
.y7f{bottom:213.690000px;}
.y75{bottom:214.050000px;}
.y5f{bottom:215.310000px;}
.yb1{bottom:216.030000px;}
.y8d{bottom:220.350000px;}
.y24{bottom:226.470000px;}
.y45{bottom:231.150000px;}
.y5e{bottom:232.770000px;}
.yd9{bottom:239.070000px;}
.yb0{bottom:242.490000px;}
.y23{bottom:244.110000px;}
.y7e{bottom:245.910000px;}
.y74{bottom:246.270000px;}
.y5d{bottom:250.410000px;}
.y8c{bottom:252.570000px;}
.yd8{bottom:256.710000px;}
.yaf{bottom:260.130000px;}
.y22{bottom:261.750000px;}
.y5c{bottom:268.050000px;}
.yd7{bottom:274.350000px;}
.y21{bottom:279.210000px;}
.y5b{bottom:285.510000px;}
.yae{bottom:286.770000px;}
.yd6{bottom:291.990000px;}
.y5a{bottom:303.150000px;}
.yad{bottom:304.410000px;}
.y20{bottom:306.030000px;}
.yd5{bottom:318.495000px;}
.y59{bottom:320.835000px;}
.yac{bottom:330.915000px;}
.y58{bottom:338.295000px;}
.yd4{bottom:345.135000px;}
.yab{bottom:348.555000px;}
.y1f{bottom:354.675000px;}
.yd3{bottom:362.775000px;}
.y57{bottom:364.935000px;}
.yaa{bottom:375.015000px;}
.yd2{bottom:389.235000px;}
.y1e{bottom:391.755000px;}
.ya9{bottom:392.655000px;}
.y56{bottom:396.975000px;}
.yd1{bottom:406.875000px;}
.y1d{bottom:409.395000px;}
.ya8{bottom:419.295000px;}
.y1c{bottom:427.035000px;}
.yd0{bottom:433.515000px;}
.y73{bottom:434.595000px;}
.ya7{bottom:436.935000px;}
.y1b{bottom:444.675000px;}
.ycf{bottom:451.155000px;}
.y1a{bottom:462.135000px;}
.ya6{bottom:463.395000px;}
.y72{bottom:470.235000px;}
.yce{bottom:477.615000px;}
.y19{bottom:479.775000px;}
.ya5{bottom:481.035000px;}
.y71{bottom:487.875000px;}
.ycd{bottom:495.255000px;}
.y18{bottom:497.415000px;}
.y70{bottom:505.335000px;}
.ya4{bottom:507.675000px;}
.y17{bottom:514.875000px;}
.ycc{bottom:521.715000px;}
.ya3{bottom:525.315000px;}
.y16{bottom:532.515000px;}
.y6f{bottom:537.555000px;}
.ycb{bottom:539.355000px;}
.ya2{bottom:542.775000px;}
.y15{bottom:550.155000px;}
.yca{bottom:565.995000px;}
.y14{bottom:567.615000px;}
.ya1{bottom:569.595000px;}
.yc9{bottom:583.665000px;}
.y13{bottom:585.285000px;}
.y12{bottom:602.925000px;}
.y55{bottom:609.765000px;}
.yc8{bottom:610.125000px;}
.ya0{bottom:618.045000px;}
.yc7{bottom:627.765000px;}
.y11{bottom:629.745000px;}
.y44{bottom:638.025000px;}
.y9f{bottom:644.865000px;}
.y54{bottom:645.405000px;}
.yc6{bottom:654.405000px;}
.y43{bottom:655.665000px;}
.y53{bottom:663.045000px;}
.yc5{bottom:672.045000px;}
.y42{bottom:673.305000px;}
.y10{bottom:677.985000px;}
.y52{bottom:680.505000px;}
.y9e{bottom:682.125000px;}
.yc4{bottom:689.505000px;}
.y41{bottom:690.765000px;}
.y8b{bottom:690.945000px;}
.y51{bottom:698.145000px;}
.y7d{bottom:703.905000px;}
.y40{bottom:708.405000px;}
.y8a{bottom:708.585000px;}
.yf{bottom:713.805000px;}
.y50{bottom:715.785000px;}
.yc3{bottom:716.145000px;}
.y7c{bottom:721.545000px;}
.y3f{bottom:726.045000px;}
.y9d{bottom:730.545000px;}
.y7b{bottom:739.005000px;}
.y89{bottom:740.625000px;}
.y4f{bottom:742.245000px;}
.yc2{bottom:742.605000px;}
.y3e{bottom:743.505000px;}
.y9c{bottom:748.185000px;}
.ye{bottom:749.805000px;}
.y9b{bottom:765.645000px;}
.yc1{bottom:769.245000px;}
.y3d{bottom:770.145000px;}
.y7a{bottom:771.225000px;}
.y4e{bottom:778.065000px;}
.y9a{bottom:783.285000px;}
.yc0{bottom:786.885000px;}
.yd{bottom:789.585000px;}
.y6e{bottom:800.385000px;}
.y99{bottom:800.925000px;}
.y3c{bottom:805.605000px;}
.yc{bottom:807.585000px;}
.ybf{bottom:813.525000px;}
.y98{bottom:818.565000px;}
.yb{bottom:821.805000px;}
.y3b{bottom:823.245000px;}
.y4d{bottom:826.485000px;}
.ybe{bottom:831.165000px;}
.y6d{bottom:836.025000px;}
.y3a{bottom:840.885000px;}
.ya{bottom:843.585000px;}
.y4c{bottom:844.125000px;}
.y97{bottom:845.205000px;}
.y6c{bottom:853.665000px;}
.ybd{bottom:857.625000px;}
.y39{bottom:858.570000px;}
.y9{bottom:861.630000px;}
.y6b{bottom:871.350000px;}
.y4b{bottom:876.390000px;}
.y8{bottom:879.630000px;}
.ybc{bottom:884.310000px;}
.y6a{bottom:888.810000px;}
.y96{bottom:893.670000px;}
.y38{bottom:894.030000px;}
.y7{bottom:897.630000px;}
.ybb{bottom:901.950000px;}
.y95{bottom:911.310000px;}
.y37{bottom:911.670000px;}
.y69{bottom:915.630000px;}
.yba{bottom:919.410000px;}
.y94{bottom:928.950000px;}
.y36{bottom:929.310000px;}
.y6{bottom:930.030000px;}
.yb9{bottom:946.050000px;}
.y93{bottom:946.410000px;}
.y35{bottom:946.950000px;}
.y5{bottom:949.290000px;}
.yb8{bottom:963.690000px;}
.y68{bottom:964.050000px;}
.y34{bottom:964.410000px;}
.y67{bottom:981.690000px;}
.y33{bottom:982.050000px;}
.y4{bottom:987.630000px;}
.yb7{bottom:990.150000px;}
.y66{bottom:999.150000px;}
.y32{bottom:999.690000px;}
.yb6{bottom:1007.790000px;}
.y3{bottom:1012.290000px;}
.y65{bottom:1016.790000px;}
.y31{bottom:1017.150000px;}
.y88{bottom:1025.430000px;}
.y64{bottom:1034.430000px;}
.y30{bottom:1034.790000px;}
.ye1{bottom:1043.430000px;}
.y63{bottom:1052.070000px;}
.y2f{bottom:1052.430000px;}
.y87{bottom:1060.890000px;}
.ye0{bottom:1061.070000px;}
.y92{bottom:1069.890000px;}
.y2e{bottom:1070.070000px;}
.y86{bottom:1078.530000px;}
.y2d{bottom:1087.530000px;}
.y85{bottom:1096.170000px;}
.y2c{bottom:1105.170000px;}
.y84{bottom:1113.810000px;}
.y4a{bottom:1122.630000px;}
.y2b{bottom:1122.810000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h2{height:29.717578px;}
.h7{height:36.698203px;}
.h6{height:36.878203px;}
.h3{height:39.468516px;}
.h9{height:42.516563px;}
.he{height:50.597578px;}
.h8{height:51.998203px;}
.ha{height:56.084062px;}
.h5{height:57.636562px;}
.hb{height:60.960938px;}
.hf{height:61.423863px;}
.hc{height:62.211094px;}
.hd{height:68.956875px;}
.h4{height:73.298672px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x6{left:84.095987px;}
.xf{left:111.275987px;}
.xc{left:201.269987px;}
.x2{left:210.989987px;}
.x7{left:420.194987px;}
.x5{left:699.809987px;}
.xe{left:715.469987px;}
.x4{left:724.829987px;}
.x9{left:746.969987px;}
.xa{left:762.089987px;}
.xd{left:773.969987px;}
.x8{left:781.169987px;}
.xb{left:786.929987px;}
.x3{left:800.429987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls8{letter-spacing:-0.576000pt;}
.ls9{letter-spacing:-0.329067pt;}
.lsa{letter-spacing:-0.290133pt;}
.lsc{letter-spacing:-0.084267pt;}
.ls16{letter-spacing:-0.032000pt;}
.lse{letter-spacing:-0.009600pt;}
.ls6{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.011520pt;}
.ls4{letter-spacing:0.011733pt;}
.lsb{letter-spacing:0.089600pt;}
.ls14{letter-spacing:0.107520pt;}
.ls7{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.153600pt;}
.ls11{letter-spacing:0.188160pt;}
.ls18{letter-spacing:0.284160pt;}
.ls1{letter-spacing:0.312320pt;}
.lsd{letter-spacing:0.312533pt;}
.ls13{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.324267pt;}
.lsf{letter-spacing:0.342933pt;}
.ls3{letter-spacing:0.442880pt;}
.ls12{letter-spacing:0.592640pt;}
.ls0{letter-spacing:0.640000pt;}
.ls17{letter-spacing:42.192640pt;}
.ls15{letter-spacing:72.272640pt;}
.wsb{word-spacing:-13.296533pt;}
.ws8{word-spacing:-12.953600pt;}
.ws6{word-spacing:-12.010667pt;}
.ws4{word-spacing:-11.698133pt;}
.wsa{word-spacing:-11.697920pt;}
.ws5{word-spacing:-11.686400pt;}
.wsc{word-spacing:-11.654400pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws3{word-spacing:-8.166400pt;}
.ws9{word-spacing:0.000000pt;}
.ws7{word-spacing:2.268480pt;}
._d{margin-left:-3.306746pt;}
._2{margin-left:-2.413855pt;}
._0{margin-left:-1.030400pt;}
._1{width:0.938667pt;}
._7{width:1.876800pt;}
._3{width:2.785707pt;}
._5{width:3.682987pt;}
._a{width:4.721386pt;}
._4{width:5.988480pt;}
._6{width:7.230827pt;}
._9{width:8.255679pt;}
._b{width:9.337179pt;}
._8{width:10.252266pt;}
._c{width:12.660053pt;}
._11{width:13.599360pt;}
._e{width:14.519253pt;}
._12{width:15.846934pt;}
._15{width:16.765756pt;}
._13{width:19.176320pt;}
._14{width:20.184320pt;}
._f{width:22.044800pt;}
._10{width:23.123413pt;}
._18{width:24.390187pt;}
._16{width:90.197760pt;}
._17{width:91.260373pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.152000pt;}
.y29{bottom:65.952000pt;}
.y1{bottom:90.112000pt;}
.ydf{bottom:102.752000pt;}
.y83{bottom:111.392000pt;}
.y49{bottom:114.112000pt;}
.y91{bottom:117.472000pt;}
.yde{bottom:118.432000pt;}
.y79{bottom:119.712000pt;}
.yb5{bottom:121.472000pt;}
.y82{bottom:127.072000pt;}
.y48{bottom:129.632000pt;}
.y90{bottom:133.152000pt;}
.ydd{bottom:134.106667pt;}
.y78{bottom:135.386667pt;}
.yb4{bottom:137.146667pt;}
.y81{bottom:142.746667pt;}
.y62{bottom:144.346667pt;}
.y47{bottom:145.306667pt;}
.y8f{bottom:148.666667pt;}
.y77{bottom:151.066667pt;}
.yb3{bottom:152.666667pt;}
.y27{bottom:154.426667pt;}
.ydc{bottom:157.626667pt;}
.y80{bottom:158.426667pt;}
.y61{bottom:160.026667pt;}
.y8e{bottom:164.346667pt;}
.y76{bottom:166.746667pt;}
.y26{bottom:170.106667pt;}
.ydb{bottom:173.306667pt;}
.y60{bottom:175.706667pt;}
.yb2{bottom:176.346667pt;}
.y46{bottom:176.826667pt;}
.y25{bottom:185.786667pt;}
.yda{bottom:188.986667pt;}
.y7f{bottom:189.946667pt;}
.y75{bottom:190.266667pt;}
.y5f{bottom:191.386667pt;}
.yb1{bottom:192.026667pt;}
.y8d{bottom:195.866667pt;}
.y24{bottom:201.306667pt;}
.y45{bottom:205.466667pt;}
.y5e{bottom:206.906667pt;}
.yd9{bottom:212.506667pt;}
.yb0{bottom:215.546667pt;}
.y23{bottom:216.986667pt;}
.y7e{bottom:218.586667pt;}
.y74{bottom:218.906667pt;}
.y5d{bottom:222.586667pt;}
.y8c{bottom:224.506667pt;}
.yd8{bottom:228.186667pt;}
.yaf{bottom:231.226667pt;}
.y22{bottom:232.666667pt;}
.y5c{bottom:238.266667pt;}
.yd7{bottom:243.866667pt;}
.y21{bottom:248.186667pt;}
.y5b{bottom:253.786667pt;}
.yae{bottom:254.906667pt;}
.yd6{bottom:259.546667pt;}
.y5a{bottom:269.466667pt;}
.yad{bottom:270.586667pt;}
.y20{bottom:272.026667pt;}
.yd5{bottom:283.106667pt;}
.y59{bottom:285.186667pt;}
.yac{bottom:294.146667pt;}
.y58{bottom:300.706667pt;}
.yd4{bottom:306.786667pt;}
.yab{bottom:309.826667pt;}
.y1f{bottom:315.266667pt;}
.yd3{bottom:322.466667pt;}
.y57{bottom:324.386667pt;}
.yaa{bottom:333.346667pt;}
.yd2{bottom:345.986667pt;}
.y1e{bottom:348.226667pt;}
.ya9{bottom:349.026667pt;}
.y56{bottom:352.866667pt;}
.yd1{bottom:361.666667pt;}
.y1d{bottom:363.906667pt;}
.ya8{bottom:372.706667pt;}
.y1c{bottom:379.586667pt;}
.yd0{bottom:385.346667pt;}
.y73{bottom:386.306667pt;}
.ya7{bottom:388.386667pt;}
.y1b{bottom:395.266667pt;}
.ycf{bottom:401.026667pt;}
.y1a{bottom:410.786667pt;}
.ya6{bottom:411.906667pt;}
.y72{bottom:417.986667pt;}
.yce{bottom:424.546667pt;}
.y19{bottom:426.466667pt;}
.ya5{bottom:427.586667pt;}
.y71{bottom:433.666667pt;}
.ycd{bottom:440.226667pt;}
.y18{bottom:442.146667pt;}
.y70{bottom:449.186667pt;}
.ya4{bottom:451.266667pt;}
.y17{bottom:457.666667pt;}
.ycc{bottom:463.746667pt;}
.ya3{bottom:466.946667pt;}
.y16{bottom:473.346667pt;}
.y6f{bottom:477.826667pt;}
.ycb{bottom:479.426667pt;}
.ya2{bottom:482.466667pt;}
.y15{bottom:489.026667pt;}
.yca{bottom:503.106667pt;}
.y14{bottom:504.546667pt;}
.ya1{bottom:506.306667pt;}
.yc9{bottom:518.813333pt;}
.y13{bottom:520.253333pt;}
.y12{bottom:535.933333pt;}
.y55{bottom:542.013333pt;}
.yc8{bottom:542.333333pt;}
.ya0{bottom:549.373333pt;}
.yc7{bottom:558.013333pt;}
.y11{bottom:559.773333pt;}
.y44{bottom:567.133333pt;}
.y9f{bottom:573.213333pt;}
.y54{bottom:573.693333pt;}
.yc6{bottom:581.693333pt;}
.y43{bottom:582.813333pt;}
.y53{bottom:589.373333pt;}
.yc5{bottom:597.373333pt;}
.y42{bottom:598.493333pt;}
.y10{bottom:602.653333pt;}
.y52{bottom:604.893333pt;}
.y9e{bottom:606.333333pt;}
.yc4{bottom:612.893333pt;}
.y41{bottom:614.013333pt;}
.y8b{bottom:614.173333pt;}
.y51{bottom:620.573333pt;}
.y7d{bottom:625.693333pt;}
.y40{bottom:629.693333pt;}
.y8a{bottom:629.853333pt;}
.yf{bottom:634.493333pt;}
.y50{bottom:636.253333pt;}
.yc3{bottom:636.573333pt;}
.y7c{bottom:641.373333pt;}
.y3f{bottom:645.373333pt;}
.y9d{bottom:649.373333pt;}
.y7b{bottom:656.893333pt;}
.y89{bottom:658.333333pt;}
.y4f{bottom:659.773333pt;}
.yc2{bottom:660.093333pt;}
.y3e{bottom:660.893333pt;}
.y9c{bottom:665.053333pt;}
.ye{bottom:666.493333pt;}
.y9b{bottom:680.573333pt;}
.yc1{bottom:683.773333pt;}
.y3d{bottom:684.573333pt;}
.y7a{bottom:685.533333pt;}
.y4e{bottom:691.613333pt;}
.y9a{bottom:696.253333pt;}
.yc0{bottom:699.453333pt;}
.yd{bottom:701.853333pt;}
.y6e{bottom:711.453333pt;}
.y99{bottom:711.933333pt;}
.y3c{bottom:716.093333pt;}
.yc{bottom:717.853333pt;}
.ybf{bottom:723.133333pt;}
.y98{bottom:727.613333pt;}
.yb{bottom:730.493333pt;}
.y3b{bottom:731.773333pt;}
.y4d{bottom:734.653333pt;}
.ybe{bottom:738.813333pt;}
.y6d{bottom:743.133333pt;}
.y3a{bottom:747.453333pt;}
.ya{bottom:749.853333pt;}
.y4c{bottom:750.333333pt;}
.y97{bottom:751.293333pt;}
.y6c{bottom:758.813333pt;}
.ybd{bottom:762.333333pt;}
.y39{bottom:763.173333pt;}
.y9{bottom:765.893333pt;}
.y6b{bottom:774.533333pt;}
.y4b{bottom:779.013333pt;}
.y8{bottom:781.893333pt;}
.ybc{bottom:786.053333pt;}
.y6a{bottom:790.053333pt;}
.y96{bottom:794.373333pt;}
.y38{bottom:794.693333pt;}
.y7{bottom:797.893333pt;}
.ybb{bottom:801.733333pt;}
.y95{bottom:810.053333pt;}
.y37{bottom:810.373333pt;}
.y69{bottom:813.893333pt;}
.yba{bottom:817.253333pt;}
.y94{bottom:825.733333pt;}
.y36{bottom:826.053333pt;}
.y6{bottom:826.693333pt;}
.yb9{bottom:840.933333pt;}
.y93{bottom:841.253333pt;}
.y35{bottom:841.733333pt;}
.y5{bottom:843.813333pt;}
.yb8{bottom:856.613333pt;}
.y68{bottom:856.933333pt;}
.y34{bottom:857.253333pt;}
.y67{bottom:872.613333pt;}
.y33{bottom:872.933333pt;}
.y4{bottom:877.893333pt;}
.yb7{bottom:880.133333pt;}
.y66{bottom:888.133333pt;}
.y32{bottom:888.613333pt;}
.yb6{bottom:895.813333pt;}
.y3{bottom:899.813333pt;}
.y65{bottom:903.813333pt;}
.y31{bottom:904.133333pt;}
.y88{bottom:911.493333pt;}
.y64{bottom:919.493333pt;}
.y30{bottom:919.813333pt;}
.ye1{bottom:927.493333pt;}
.y63{bottom:935.173333pt;}
.y2f{bottom:935.493333pt;}
.y87{bottom:943.013333pt;}
.ye0{bottom:943.173333pt;}
.y92{bottom:951.013333pt;}
.y2e{bottom:951.173333pt;}
.y86{bottom:958.693333pt;}
.y2d{bottom:966.693333pt;}
.y85{bottom:974.373333pt;}
.y2c{bottom:982.373333pt;}
.y84{bottom:990.053333pt;}
.y4a{bottom:997.893333pt;}
.y2b{bottom:998.053333pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h2{height:26.415625pt;}
.h7{height:32.620625pt;}
.h6{height:32.780625pt;}
.h3{height:35.083125pt;}
.h9{height:37.792500pt;}
.he{height:44.975625pt;}
.h8{height:46.220625pt;}
.ha{height:49.852500pt;}
.h5{height:51.232500pt;}
.hb{height:54.187500pt;}
.hf{height:54.598989pt;}
.hc{height:55.298750pt;}
.hd{height:61.295000pt;}
.h4{height:65.154375pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x6{left:74.751988pt;}
.xf{left:98.911988pt;}
.xc{left:178.906655pt;}
.x2{left:187.546655pt;}
.x7{left:373.506655pt;}
.x5{left:622.053322pt;}
.xe{left:635.973322pt;}
.x4{left:644.293322pt;}
.x9{left:663.973322pt;}
.xa{left:677.413322pt;}
.xd{left:687.973322pt;}
.x8{left:694.373322pt;}
.xb{left:699.493322pt;}
.x3{left:711.493322pt;}
}




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