
    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_f0fcd04301ec0acba5db0c50.woff')format("woff");}.ff1{font-family:ff1;line-height:0.957000;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_b48fe876d3cd03d1e0fe0047.woff')format("woff");}.ff2{font-family:ff2;line-height:1.007000;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_86557232de5deb7a9e098183.woff')format("woff");}.ff3{font-family:ff3;line-height:0.000000;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_743531ceca18b6fbc0633279.woff')format("woff");}.ff4{font-family:ff4;line-height:0.740000;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_cfa571ac23af6977b47aa80a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.962571;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_ad374f5debc5a70ceaacde02.woff')format("woff");}.ff6{font-family:ff6;line-height:0.980000;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_de581267aa2b5cc701842013.woff')format("woff");}.ff7{font-family:ff7;line-height:0.737000;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_4e3372cd5868c9c77d19b9df.woff')format("woff");}.ff8{font-family:ff8;line-height:1.005371;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_703d899279820e40afa891af.woff')format("woff");}.ff9{font-family:ff9;line-height:0.967000;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_ad0fd2d332c845078440f8bc.woff')format("woff");}.ffa{font-family:ffa;line-height:0.721000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3c2f5e3dca1c8dc465f33bc6.woff')format("woff");}.ffb{font-family:ffb;line-height:0.419000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_40b9b496adacd507892a8b83.woff')format("woff");}.ffc{font-family:ffc;line-height:0.724000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e4689977ecf17f43cf90935d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_eb7aad4a1c0f6c731c78bb1a.woff')format("woff");}.ffe{font-family:ffe;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_9f48ca7dd8320527cd0c3353.woff')format("woff");}.fff{font-family:fff;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_a1b1e54e9fe6d53d0bd2ca06.woff')format("woff");}.ff10{font-family:ff10;line-height:0.947000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.800000px;}
.v2{vertical-align:17.982000px;}
.lsf{letter-spacing:-9.120000px;}
.lsd{letter-spacing:-6.000000px;}
.ls9{letter-spacing:-4.560000px;}
.ls6{letter-spacing:-2.990790px;}
.ls8{letter-spacing:-2.640000px;}
.ls4{letter-spacing:-2.160000px;}
.lse{letter-spacing:-1.920000px;}
.ls5{letter-spacing:-1.731510px;}
.lsa{letter-spacing:-1.680000px;}
.lsc{letter-spacing:-1.452000px;}
.ls7{letter-spacing:-1.101870px;}
.ls2{letter-spacing:-0.480000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000204px;}
.ls0{letter-spacing:0.000408px;}
.lsb{letter-spacing:0.300000px;}
.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;}
}
.ws17{word-spacing:-20.016000px;}
.ws15{word-spacing:-13.620000px;}
.ws9{word-spacing:-13.344000px;}
.ws1{word-spacing:-12.864000px;}
.ws2{word-spacing:-12.000000px;}
.ws0{word-spacing:-10.896000px;}
.ws19{word-spacing:-10.800000px;}
.ws4{word-spacing:-8.751996px;}
.ws8{word-spacing:-7.650126px;}
.ws6{word-spacing:-7.020486px;}
.ws18{word-spacing:-6.720000px;}
.ws7{word-spacing:-5.761206px;}
.wsf{word-spacing:-5.400000px;}
.wse{word-spacing:-4.320000px;}
.ws1a{word-spacing:-3.600000px;}
.wsc{word-spacing:-2.700000px;}
.wsb{word-spacing:-2.640000px;}
.ws14{word-spacing:-2.400000px;}
.ws10{word-spacing:-1.920000px;}
.ws16{word-spacing:-0.360000px;}
.ws5{word-spacing:-0.054000px;}
.ws3{word-spacing:-0.048000px;}
.wsa{word-spacing:0.000000px;}
.ws13{word-spacing:1.680000px;}
.wsd{word-spacing:2.160000px;}
.ws11{word-spacing:2.640000px;}
.ws12{word-spacing:4.560000px;}
._12{margin-left:-9.600000px;}
._d{margin-left:-6.879696px;}
._c{margin-left:-5.119104px;}
._9{margin-left:-4.040748px;}
._1{margin-left:-2.885400px;}
._0{margin-left:-1.440000px;}
._2{width:1.450800px;}
._5{width:2.640000px;}
._8{width:3.815832px;}
._a{width:6.215400px;}
._b{width:10.656000px;}
._f{width:13.582200px;}
._3{width:32.253600px;}
._6{width:45.870000px;}
._7{width:47.591208px;}
._11{width:52.285200px;}
._10{width:58.080168px;}
._13{width:61.920600px;}
._4{width:1315.728000px;}
._e{width:2203.753296px;}
.fc1{color:rgb(66,93,177);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:31.482000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:54.139800px;}
.y16{bottom:122.170500px;}
.y78{bottom:123.570150px;}
.ya0{bottom:125.070150px;}
.y7f{bottom:125.183850px;}
.y15{bottom:138.670500px;}
.y9f{bottom:140.070150px;}
.y77{bottom:143.070150px;}
.y7e{bottom:144.683850px;}
.y9e{bottom:159.570150px;}
.y76{bottom:162.570150px;}
.y14{bottom:164.170500px;}
.y7d{bottom:164.183850px;}
.y4a{bottom:171.955650px;}
.y9d{bottom:174.570150px;}
.y13{bottom:180.670500px;}
.y7c{bottom:183.683850px;}
.y75{bottom:188.070150px;}
.y9c{bottom:194.070150px;}
.y49{bottom:201.955650px;}
.y7b{bottom:203.183850px;}
.y12{bottom:206.170500px;}
.y9b{bottom:209.070150px;}
.y48{bottom:216.955650px;}
.y11{bottom:222.670500px;}
.y7a{bottom:222.683850px;}
.y9a{bottom:228.570150px;}
.y74{bottom:230.070150px;}
.y47{bottom:231.955650px;}
.y10{bottom:239.170500px;}
.y46{bottom:246.955650px;}
.y99{bottom:248.070150px;}
.y73{bottom:249.570150px;}
.yf{bottom:255.670500px;}
.y45{bottom:261.955650px;}
.y98{bottom:263.070150px;}
.y81{bottom:266.675700px;}
.y72{bottom:269.070150px;}
.ye{bottom:272.170500px;}
.y44{bottom:276.955650px;}
.y97{bottom:282.570150px;}
.y71{bottom:288.570150px;}
.yd{bottom:288.670500px;}
.y80{bottom:290.675700px;}
.y43{bottom:291.955650px;}
.y42{bottom:306.955650px;}
.y70{bottom:308.070150px;}
.yc{bottom:314.170500px;}
.y41{bottom:321.955650px;}
.y6f{bottom:327.570150px;}
.y40{bottom:336.955650px;}
.yb{bottom:339.670500px;}
.y6e{bottom:347.070150px;}
.y3f{bottom:351.955650px;}
.ya{bottom:356.170500px;}
.y6d{bottom:366.570150px;}
.y3e{bottom:366.955650px;}
.y9{bottom:381.670500px;}
.y3d{bottom:381.955650px;}
.y6c{bottom:386.070150px;}
.y3c{bottom:396.955650px;}
.y8{bottom:398.170500px;}
.y6b{bottom:405.570150px;}
.y3b{bottom:411.955650px;}
.y7{bottom:414.670500px;}
.y6a{bottom:425.070150px;}
.y3a{bottom:426.955650px;}
.y6{bottom:431.170500px;}
.y39{bottom:441.955650px;}
.y69{bottom:444.570150px;}
.y5{bottom:447.670500px;}
.y38{bottom:456.955650px;}
.y96{bottom:464.070150px;}
.y4{bottom:464.170500px;}
.y68{bottom:470.070150px;}
.y37{bottom:471.955650px;}
.y95{bottom:483.570150px;}
.y36{bottom:486.955650px;}
.y3{bottom:488.920500px;}
.y35{bottom:501.955650px;}
.y94{bottom:503.070150px;}
.y67{bottom:509.070150px;}
.y34{bottom:516.955650px;}
.y93{bottom:522.570150px;}
.y66{bottom:528.570150px;}
.y33{bottom:531.955650px;}
.y92{bottom:542.070150px;}
.y32{bottom:546.955650px;}
.y65{bottom:548.070150px;}
.y31{bottom:561.955650px;}
.y64{bottom:567.570150px;}
.y2{bottom:576.670500px;}
.y30{bottom:576.955650px;}
.y63{bottom:587.070150px;}
.y2f{bottom:591.955650px;}
.y62{bottom:606.570150px;}
.y2e{bottom:606.955650px;}
.y2d{bottom:621.955650px;}
.y61{bottom:626.070150px;}
.y2c{bottom:636.955650px;}
.y91{bottom:645.570150px;}
.y60{bottom:651.570150px;}
.y2b{bottom:651.955650px;}
.y90{bottom:665.070150px;}
.y2a{bottom:666.955650px;}
.y29{bottom:681.955650px;}
.y8f{bottom:684.570150px;}
.y5f{bottom:690.570150px;}
.y28{bottom:696.955650px;}
.y8e{bottom:704.070150px;}
.y5e{bottom:710.070150px;}
.y27{bottom:711.955650px;}
.y8d{bottom:723.570150px;}
.y26{bottom:726.955650px;}
.y5d{bottom:729.570150px;}
.y25{bottom:741.955650px;}
.y8c{bottom:743.070150px;}
.y5c{bottom:749.070150px;}
.y24{bottom:756.955650px;}
.y8b{bottom:762.570150px;}
.y5b{bottom:768.570150px;}
.y23{bottom:771.955650px;}
.y8a{bottom:782.070150px;}
.y5a{bottom:788.070150px;}
.y22{bottom:798.955650px;}
.y89{bottom:801.570150px;}
.y59{bottom:807.570150px;}
.y21{bottom:815.455650px;}
.y88{bottom:821.070150px;}
.y58{bottom:827.070150px;}
.y20{bottom:831.955650px;}
.y87{bottom:840.570150px;}
.y57{bottom:846.570150px;}
.y1f{bottom:848.455650px;}
.y86{bottom:860.070150px;}
.y1e{bottom:864.955650px;}
.y56{bottom:866.070150px;}
.y85{bottom:879.570150px;}
.y1d{bottom:881.455650px;}
.y55{bottom:885.570150px;}
.y1c{bottom:897.955650px;}
.y84{bottom:899.070150px;}
.y54{bottom:905.070150px;}
.y1b{bottom:914.455650px;}
.y83{bottom:918.570150px;}
.y53{bottom:924.570150px;}
.y1a{bottom:930.955650px;}
.y82{bottom:938.070150px;}
.y52{bottom:944.070150px;}
.y51{bottom:963.570150px;}
.y19{bottom:968.455650px;}
.y50{bottom:983.070150px;}
.ya5{bottom:994.446150px;}
.y18{bottom:1002.205650px;}
.y4f{bottom:1002.570150px;}
.ya4{bottom:1013.946150px;}
.y4e{bottom:1022.070150px;}
.ya3{bottom:1028.946150px;}
.y17{bottom:1035.955650px;}
.y4d{bottom:1041.570150px;}
.ya2{bottom:1048.446150px;}
.y4c{bottom:1061.070150px;}
.ya1{bottom:1063.446150px;}
.y4b{bottom:1118.595300px;}
.y79{bottom:1118.639250px;}
.hc{height:33.744000px;}
.h3{height:34.944000px;}
.h6{height:35.376000px;}
.h2{height:36.000000px;}
.h5{height:36.720000px;}
.h4{height:36.864000px;}
.h1{height:37.800000px;}
.h8{height:41.593500px;}
.ha{height:45.000000px;}
.h9{height:46.992000px;}
.hb{height:54.000000px;}
.h7{height:82.634766px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:52.498800px;}
.x1{left:53.832750px;}
.x3{left:67.705800px;}
.x2{left:137.951250px;}
.x4{left:297.000000px;}
.x6{left:315.000000px;}
.x7{left:319.794000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.600000pt;}
.v2{vertical-align:15.984000pt;}
.lsf{letter-spacing:-8.106667pt;}
.lsd{letter-spacing:-5.333333pt;}
.ls9{letter-spacing:-4.053333pt;}
.ls6{letter-spacing:-2.658480pt;}
.ls8{letter-spacing:-2.346667pt;}
.ls4{letter-spacing:-1.920000pt;}
.lse{letter-spacing:-1.706667pt;}
.ls5{letter-spacing:-1.539120pt;}
.lsa{letter-spacing:-1.493333pt;}
.lsc{letter-spacing:-1.290667pt;}
.ls7{letter-spacing:-0.979440pt;}
.ls2{letter-spacing:-0.426667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000181pt;}
.ls0{letter-spacing:0.000363pt;}
.lsb{letter-spacing:0.266667pt;}
.ws17{word-spacing:-17.792000pt;}
.ws15{word-spacing:-12.106667pt;}
.ws9{word-spacing:-11.861333pt;}
.ws1{word-spacing:-11.434667pt;}
.ws2{word-spacing:-10.666667pt;}
.ws0{word-spacing:-9.685333pt;}
.ws19{word-spacing:-9.600000pt;}
.ws4{word-spacing:-7.779552pt;}
.ws8{word-spacing:-6.800112pt;}
.ws6{word-spacing:-6.240432pt;}
.ws18{word-spacing:-5.973333pt;}
.ws7{word-spacing:-5.121072pt;}
.wsf{word-spacing:-4.800000pt;}
.wse{word-spacing:-3.840000pt;}
.ws1a{word-spacing:-3.200000pt;}
.wsc{word-spacing:-2.400000pt;}
.wsb{word-spacing:-2.346667pt;}
.ws14{word-spacing:-2.133333pt;}
.ws10{word-spacing:-1.706667pt;}
.ws16{word-spacing:-0.320000pt;}
.ws5{word-spacing:-0.048000pt;}
.ws3{word-spacing:-0.042667pt;}
.wsa{word-spacing:0.000000pt;}
.ws13{word-spacing:1.493333pt;}
.wsd{word-spacing:1.920000pt;}
.ws11{word-spacing:2.346667pt;}
.ws12{word-spacing:4.053333pt;}
._12{margin-left:-8.533333pt;}
._d{margin-left:-6.115285pt;}
._c{margin-left:-4.550315pt;}
._9{margin-left:-3.591776pt;}
._1{margin-left:-2.564800pt;}
._0{margin-left:-1.280000pt;}
._2{width:1.289600pt;}
._5{width:2.346667pt;}
._8{width:3.391851pt;}
._a{width:5.524800pt;}
._b{width:9.472000pt;}
._f{width:12.073067pt;}
._3{width:28.669867pt;}
._6{width:40.773333pt;}
._7{width:42.303296pt;}
._11{width:46.475733pt;}
._10{width:51.626816pt;}
._13{width:55.040533pt;}
._4{width:1169.536000pt;}
._e{width:1958.891819pt;}
.fs3{font-size:27.984000pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:48.124267pt;}
.y16{bottom:108.596000pt;}
.y78{bottom:109.840133pt;}
.ya0{bottom:111.173467pt;}
.y7f{bottom:111.274533pt;}
.y15{bottom:123.262667pt;}
.y9f{bottom:124.506800pt;}
.y77{bottom:127.173467pt;}
.y7e{bottom:128.607867pt;}
.y9e{bottom:141.840133pt;}
.y76{bottom:144.506800pt;}
.y14{bottom:145.929333pt;}
.y7d{bottom:145.941200pt;}
.y4a{bottom:152.849467pt;}
.y9d{bottom:155.173467pt;}
.y13{bottom:160.596000pt;}
.y7c{bottom:163.274533pt;}
.y75{bottom:167.173467pt;}
.y9c{bottom:172.506800pt;}
.y49{bottom:179.516133pt;}
.y7b{bottom:180.607867pt;}
.y12{bottom:183.262667pt;}
.y9b{bottom:185.840133pt;}
.y48{bottom:192.849467pt;}
.y11{bottom:197.929333pt;}
.y7a{bottom:197.941200pt;}
.y9a{bottom:203.173467pt;}
.y74{bottom:204.506800pt;}
.y47{bottom:206.182800pt;}
.y10{bottom:212.596000pt;}
.y46{bottom:219.516133pt;}
.y99{bottom:220.506800pt;}
.y73{bottom:221.840133pt;}
.yf{bottom:227.262667pt;}
.y45{bottom:232.849467pt;}
.y98{bottom:233.840133pt;}
.y81{bottom:237.045067pt;}
.y72{bottom:239.173467pt;}
.ye{bottom:241.929333pt;}
.y44{bottom:246.182800pt;}
.y97{bottom:251.173467pt;}
.y71{bottom:256.506800pt;}
.yd{bottom:256.596000pt;}
.y80{bottom:258.378400pt;}
.y43{bottom:259.516133pt;}
.y42{bottom:272.849467pt;}
.y70{bottom:273.840133pt;}
.yc{bottom:279.262667pt;}
.y41{bottom:286.182800pt;}
.y6f{bottom:291.173467pt;}
.y40{bottom:299.516133pt;}
.yb{bottom:301.929333pt;}
.y6e{bottom:308.506800pt;}
.y3f{bottom:312.849467pt;}
.ya{bottom:316.596000pt;}
.y6d{bottom:325.840133pt;}
.y3e{bottom:326.182800pt;}
.y9{bottom:339.262667pt;}
.y3d{bottom:339.516133pt;}
.y6c{bottom:343.173467pt;}
.y3c{bottom:352.849467pt;}
.y8{bottom:353.929333pt;}
.y6b{bottom:360.506800pt;}
.y3b{bottom:366.182800pt;}
.y7{bottom:368.596000pt;}
.y6a{bottom:377.840133pt;}
.y3a{bottom:379.516133pt;}
.y6{bottom:383.262667pt;}
.y39{bottom:392.849467pt;}
.y69{bottom:395.173467pt;}
.y5{bottom:397.929333pt;}
.y38{bottom:406.182800pt;}
.y96{bottom:412.506800pt;}
.y4{bottom:412.596000pt;}
.y68{bottom:417.840133pt;}
.y37{bottom:419.516133pt;}
.y95{bottom:429.840133pt;}
.y36{bottom:432.849467pt;}
.y3{bottom:434.596000pt;}
.y35{bottom:446.182800pt;}
.y94{bottom:447.173467pt;}
.y67{bottom:452.506800pt;}
.y34{bottom:459.516133pt;}
.y93{bottom:464.506800pt;}
.y66{bottom:469.840133pt;}
.y33{bottom:472.849467pt;}
.y92{bottom:481.840133pt;}
.y32{bottom:486.182800pt;}
.y65{bottom:487.173467pt;}
.y31{bottom:499.516133pt;}
.y64{bottom:504.506800pt;}
.y2{bottom:512.596000pt;}
.y30{bottom:512.849467pt;}
.y63{bottom:521.840133pt;}
.y2f{bottom:526.182800pt;}
.y62{bottom:539.173467pt;}
.y2e{bottom:539.516133pt;}
.y2d{bottom:552.849467pt;}
.y61{bottom:556.506800pt;}
.y2c{bottom:566.182800pt;}
.y91{bottom:573.840133pt;}
.y60{bottom:579.173467pt;}
.y2b{bottom:579.516133pt;}
.y90{bottom:591.173467pt;}
.y2a{bottom:592.849467pt;}
.y29{bottom:606.182800pt;}
.y8f{bottom:608.506800pt;}
.y5f{bottom:613.840133pt;}
.y28{bottom:619.516133pt;}
.y8e{bottom:625.840133pt;}
.y5e{bottom:631.173467pt;}
.y27{bottom:632.849467pt;}
.y8d{bottom:643.173467pt;}
.y26{bottom:646.182800pt;}
.y5d{bottom:648.506800pt;}
.y25{bottom:659.516133pt;}
.y8c{bottom:660.506800pt;}
.y5c{bottom:665.840133pt;}
.y24{bottom:672.849467pt;}
.y8b{bottom:677.840133pt;}
.y5b{bottom:683.173467pt;}
.y23{bottom:686.182800pt;}
.y8a{bottom:695.173467pt;}
.y5a{bottom:700.506800pt;}
.y22{bottom:710.182800pt;}
.y89{bottom:712.506800pt;}
.y59{bottom:717.840133pt;}
.y21{bottom:724.849467pt;}
.y88{bottom:729.840133pt;}
.y58{bottom:735.173467pt;}
.y20{bottom:739.516133pt;}
.y87{bottom:747.173467pt;}
.y57{bottom:752.506800pt;}
.y1f{bottom:754.182800pt;}
.y86{bottom:764.506800pt;}
.y1e{bottom:768.849467pt;}
.y56{bottom:769.840133pt;}
.y85{bottom:781.840133pt;}
.y1d{bottom:783.516133pt;}
.y55{bottom:787.173467pt;}
.y1c{bottom:798.182800pt;}
.y84{bottom:799.173467pt;}
.y54{bottom:804.506800pt;}
.y1b{bottom:812.849467pt;}
.y83{bottom:816.506800pt;}
.y53{bottom:821.840133pt;}
.y1a{bottom:827.516133pt;}
.y82{bottom:833.840133pt;}
.y52{bottom:839.173467pt;}
.y51{bottom:856.506800pt;}
.y19{bottom:860.849467pt;}
.y50{bottom:873.840133pt;}
.ya5{bottom:883.952133pt;}
.y18{bottom:890.849467pt;}
.y4f{bottom:891.173467pt;}
.ya4{bottom:901.285467pt;}
.y4e{bottom:908.506800pt;}
.ya3{bottom:914.618800pt;}
.y17{bottom:920.849467pt;}
.y4d{bottom:925.840133pt;}
.ya2{bottom:931.952133pt;}
.y4c{bottom:943.173467pt;}
.ya1{bottom:945.285467pt;}
.y4b{bottom:994.306933pt;}
.y79{bottom:994.346000pt;}
.hc{height:29.994667pt;}
.h3{height:31.061333pt;}
.h6{height:31.445333pt;}
.h2{height:32.000000pt;}
.h5{height:32.640000pt;}
.h4{height:32.768000pt;}
.h1{height:33.600000pt;}
.h8{height:36.972000pt;}
.ha{height:40.000000pt;}
.h9{height:41.770667pt;}
.hb{height:48.000000pt;}
.h7{height:73.453125pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:46.665600pt;}
.x1{left:47.851333pt;}
.x3{left:60.182933pt;}
.x2{left:122.623333pt;}
.x4{left:264.000000pt;}
.x6{left:280.000000pt;}
.x7{left:284.261333pt;}
}




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