
    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_4ba774a68df16d7c365309a9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_8efb863525a1c7b3e9ec6df4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.971191;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_98004b14e16136c02880fb87.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_b9eba50fd786b7917c307e02.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.676270;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_61841846264abf25079fffa1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.861816;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_3753ab60448f36b985366772.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_ebf27822bba3c1ae68206c83.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.871094;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_c58cb1145387420a63ecf6bc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.692383;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;}
.m5{transform:matrix(-0.000492,-0.249995,0.250000,-0.000492,0,0);-ms-transform:matrix(-0.000492,-0.249995,0.250000,-0.000492,0,0);-webkit-transform:matrix(-0.000492,-0.249995,0.250000,-0.000492,0,0);}
.m2{transform:matrix(0.000701,-0.249999,0.249999,0.000701,0,0);-ms-transform:matrix(0.000701,-0.249999,0.249999,0.000701,0,0);-webkit-transform:matrix(0.000701,-0.249999,0.249999,0.000701,0,0);}
.m6{transform:matrix(0.001716,-0.249994,0.249994,0.001716,0,0);-ms-transform:matrix(0.001716,-0.249994,0.249994,0.001716,0,0);-webkit-transform:matrix(0.001716,-0.249994,0.249994,0.001716,0,0);}
.m4{transform:matrix(0.004021,-0.249968,0.249968,0.004021,0,0);-ms-transform:matrix(0.004021,-0.249968,0.249968,0.004021,0,0);-webkit-transform:matrix(0.004021,-0.249968,0.249968,0.004021,0,0);}
.m7{transform:matrix(0.004058,-0.249967,0.249967,0.004058,0,0);-ms-transform:matrix(0.004058,-0.249967,0.249967,0.004058,0,0);-webkit-transform:matrix(0.004058,-0.249967,0.249967,0.004058,0,0);}
.m0{transform:matrix(0.248765,0.021789,-0.021764,0.249051,0,0);-ms-transform:matrix(0.248765,0.021789,-0.021764,0.249051,0,0);-webkit-transform:matrix(0.248765,0.021789,-0.021764,0.249051,0,0);}
.m1{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);}
.m3{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);}
.m9{transform:matrix(0.257092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257092,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.271599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271599,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:2.880000px;}
.ls0{letter-spacing:4.464000px;}
.ls5{letter-spacing:5.328000px;}
.ls1{letter-spacing:8.928000px;}
.ls4{letter-spacing:8.988016px;}
.ls2{letter-spacing:9.072000px;}
.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:-119.524040px;}
.ws0{word-spacing:-116.203928px;}
.ws3{word-spacing:-42.187489px;}
.ws5{word-spacing:-37.018688px;}
.ws4{word-spacing:-32.554688px;}
.ws2{word-spacing:-32.554667px;}
.ws6{word-spacing:0.000000px;}
._7{margin-left:-5894.802659px;}
._9{margin-left:-22.518308px;}
._8{margin-left:-7.615827px;}
._5{margin-left:-4.608000px;}
._1{margin-left:-3.383965px;}
._0{margin-left:-1.727999px;}
._2{width:1.152000px;}
._3{width:2.448000px;}
._4{width:4.464000px;}
._6{width:5.508298px;}
.fc9{color:transparent;}
.fc6{color:rgb(144,144,133);}
.fc5{color:rgb(112,112,120);}
.fc4{color:rgb(0,100,59);}
.fc2{color:rgb(7,82,154);}
.fc1{color:rgb(252,186,0);}
.fc8{color:rgb(254,254,254);}
.fc7{color:rgb(92,92,92);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:42.750054px;}
.fsc{font-size:66.000150px;}
.fsd{font-size:66.000152px;}
.fs9{font-size:73.958466px;}
.fs12{font-size:81.012060px;}
.fse{font-size:84.000150px;}
.fsb{font-size:102.000150px;}
.fs7{font-size:119.999970px;}
.fs4{font-size:131.999490px;}
.fs3{font-size:143.999910px;}
.fsf{font-size:144.000000px;}
.fs6{font-size:149.999934px;}
.fs10{font-size:155.425044px;}
.fs1{font-size:168.000240px;}
.fsa{font-size:192.000204px;}
.fs5{font-size:192.000210px;}
.fs11{font-size:306.141870px;}
.fs0{font-size:339.979491px;}
.fs2{font-size:432.000020px;}
.y0{bottom:0.000000px;}
.y26{bottom:20.680727px;}
.y23{bottom:32.434407px;}
.y25{bottom:38.448286px;}
.y15{bottom:71.506337px;}
.y14{bottom:103.906305px;}
.y13{bottom:136.306284px;}
.y2{bottom:150.328006px;}
.yc{bottom:190.547060px;}
.yb{bottom:219.347039px;}
.ya{bottom:248.147022px;}
.y1{bottom:276.149181px;}
.y4{bottom:283.463830px;}
.ye{bottom:304.789403px;}
.yd{bottom:337.189382px;}
.y3{bottom:345.745509px;}
.y11{bottom:397.189100px;}
.y10{bottom:425.989079px;}
.y7{bottom:447.526512px;}
.yf{bottom:454.789062px;}
.y9{bottom:510.471725px;}
.y8{bottom:539.271708px;}
.y17{bottom:539.956130px;}
.y20{bottom:556.478187px;}
.y1f{bottom:604.132166px;}
.y6{bottom:609.972313px;}
.y21{bottom:614.770452px;}
.y1e{bottom:679.132147px;}
.y18{bottom:747.324926px;}
.y12{bottom:795.847224px;}
.y1d{bottom:827.831280px;}
.y24{bottom:849.655512px;}
.y16{bottom:963.779556px;}
.y22{bottom:1011.883512px;}
.y1c{bottom:1052.672314px;}
.y1b{bottom:1127.672295px;}
.y1a{bottom:1183.373718px;}
.y19{bottom:1243.373736px;}
.y3c{bottom:1508.553554px;}
.y3b{bottom:1541.963424px;}
.y3a{bottom:1556.813491px;}
.y39{bottom:1582.838604px;}
.y38{bottom:1597.688670px;}
.y37{bottom:1623.754060px;}
.y36{bottom:1638.604127px;}
.y35{bottom:1672.054241px;}
.y34{bottom:1708.906917px;}
.y33{bottom:1734.155421px;}
.y2d{bottom:1790.658392px;}
.y2e{bottom:1791.751079px;}
.y2a{bottom:1803.672872px;}
.y2c{bottom:1807.193345px;}
.y2b{bottom:1819.508991px;}
.y31{bottom:1819.602203px;}
.y2f{bottom:1820.071647px;}
.y30{bottom:1821.939545px;}
.y32{bottom:1823.622584px;}
.y46{bottom:1872.673759px;}
.y5{bottom:1880.531756px;}
.y45{bottom:1898.923806px;}
.y40{bottom:1909.161075px;}
.y44{bottom:1925.173831px;}
.y3f{bottom:1954.161075px;}
.y43{bottom:1990.387977px;}
.y3e{bottom:1999.161075px;}
.y29{bottom:2028.051718px;}
.y42{bottom:2035.387977px;}
.y3d{bottom:2044.161075px;}
.y28{bottom:2059.926714px;}
.y27{bottom:2094.013532px;}
.y41{bottom:2094.246126px;}
.y4a{bottom:2679.852743px;}
.y49{bottom:2724.852743px;}
.y48{bottom:2769.852743px;}
.y47{bottom:2837.627546px;}
.y4f{bottom:3035.520069px;}
.y4e{bottom:3084.090395px;}
.y4d{bottom:3132.660722px;}
.y4c{bottom:3181.231048px;}
.y4b{bottom:3229.801374px;}
.y52{bottom:3286.194619px;}
.y51{bottom:3381.863954px;}
.y54{bottom:3414.832938px;}
.y53{bottom:3434.294931px;}
.y50{bottom:3477.533289px;}
.hc{height:32.688762px;}
.h11{height:50.466912px;}
.h12{height:50.466913px;}
.he{height:56.552225px;}
.h15{height:58.201276px;}
.h18{height:61.945745px;}
.h13{height:64.230583px;}
.h10{height:77.994255px;}
.h7{height:90.234026px;}
.ha{height:91.757790px;}
.h6{height:97.874939px;}
.h14{height:99.773438px;}
.h9{height:114.697215px;}
.h16{height:118.845517px;}
.h3{height:128.461121px;}
.hb{height:141.897000px;}
.hf{height:146.812656px;}
.h8{height:146.812661px;}
.hd{height:188.250000px;}
.h17{height:234.090903px;}
.h2{height:259.964787px;}
.h4{height:330.328140px;}
.h5{height:898.629000px;}
.h0{height:3575.905512px;}
.h1{height:3576.000000px;}
.w3{width:277.939500px;}
.w2{width:686.929500px;}
.w0{width:2525.669292px;}
.w1{width:2526.000000px;}
.x0{left:0.000000px;}
.x24{left:33.905543px;}
.x12{left:63.822900px;}
.x13{left:72.507939px;}
.x11{left:93.196494px;}
.xa{left:102.881472px;}
.x3e{left:117.628832px;}
.x8{left:135.534882px;}
.xd{left:145.162616px;}
.x7{left:152.024679px;}
.xe{left:173.809008px;}
.x22{left:178.201178px;}
.x4{left:184.792306px;}
.x5{left:186.984593px;}
.xb{left:195.395530px;}
.x10{left:207.459360px;}
.x9{left:219.891606px;}
.xc{left:225.516666px;}
.xf{left:267.430298px;}
.x3b{left:282.785054px;}
.x21{left:286.875000px;}
.x1d{left:369.330662px;}
.x1e{left:419.979162px;}
.x1{left:444.600408px;}
.x23{left:456.750000px;}
.x1f{left:462.949705px;}
.x20{left:465.400042px;}
.x3a{left:467.828408px;}
.x39{left:556.806728px;}
.x3d{left:561.259842px;}
.x42{left:567.008436px;}
.x2{left:663.472274px;}
.x14{left:1032.019965px;}
.x3f{left:1046.712852px;}
.x16{left:1111.162418px;}
.x1a{left:1121.936788px;}
.x40{left:1163.870421px;}
.x18{left:1188.529515px;}
.x17{left:1191.717205px;}
.x19{left:1229.266807px;}
.x1c{left:1245.223894px;}
.x1b{left:1265.614530px;}
.x15{left:1280.401652px;}
.x30{left:1364.532177px;}
.x41{left:1370.792714px;}
.x38{left:1378.848974px;}
.x32{left:1388.263879px;}
.x35{left:1399.352481px;}
.x34{left:1403.203557px;}
.x36{left:1405.009222px;}
.x37{left:1444.059844px;}
.x31{left:1469.153332px;}
.x3c{left:1598.788149px;}
.x25{left:1600.335699px;}
.x33{left:1617.153554px;}
.x6{left:1722.375000px;}
.x3{left:1977.601031px;}
.x26{left:1993.326967px;}
.x29{left:2036.999310px;}
.x2a{left:2051.881951px;}
.x2b{left:2066.729913px;}
.x27{left:2132.974947px;}
.x28{left:2148.081689px;}
.x2c{left:2220.759975px;}
.x2d{left:2235.623211px;}
.x2e{left:2309.756167px;}
.x2f{left:2324.673455px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:2.560000pt;}
.ls0{letter-spacing:3.968000pt;}
.ls5{letter-spacing:4.736000pt;}
.ls1{letter-spacing:7.936000pt;}
.ls4{letter-spacing:7.989348pt;}
.ls2{letter-spacing:8.064000pt;}
.ws1{word-spacing:-106.243591pt;}
.ws0{word-spacing:-103.292380pt;}
.ws3{word-spacing:-37.499991pt;}
.ws5{word-spacing:-32.905500pt;}
.ws4{word-spacing:-28.937500pt;}
.ws2{word-spacing:-28.937482pt;}
.ws6{word-spacing:0.000000pt;}
._7{margin-left:-5239.824586pt;}
._9{margin-left:-20.016274pt;}
._8{margin-left:-6.769624pt;}
._5{margin-left:-4.096000pt;}
._1{margin-left:-3.007968pt;}
._0{margin-left:-1.535999pt;}
._2{width:1.024000pt;}
._3{width:2.176000pt;}
._4{width:3.968000pt;}
._6{width:4.896265pt;}
.fs8{font-size:38.000048pt;}
.fsc{font-size:58.666800pt;}
.fsd{font-size:58.666802pt;}
.fs9{font-size:65.740859pt;}
.fs12{font-size:72.010720pt;}
.fse{font-size:74.666800pt;}
.fsb{font-size:90.666800pt;}
.fs7{font-size:106.666640pt;}
.fs4{font-size:117.332880pt;}
.fs3{font-size:127.999920pt;}
.fsf{font-size:128.000000pt;}
.fs6{font-size:133.333275pt;}
.fs10{font-size:138.155595pt;}
.fs1{font-size:149.333547pt;}
.fsa{font-size:170.666848pt;}
.fs5{font-size:170.666853pt;}
.fs11{font-size:272.126107pt;}
.fs0{font-size:302.203992pt;}
.fs2{font-size:384.000018pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:18.382868pt;}
.y23{bottom:28.830584pt;}
.y25{bottom:34.176255pt;}
.y15{bottom:63.561189pt;}
.y14{bottom:92.361160pt;}
.y13{bottom:121.161141pt;}
.y2{bottom:133.624895pt;}
.yc{bottom:169.375164pt;}
.yb{bottom:194.975145pt;}
.ya{bottom:220.575131pt;}
.y1{bottom:245.465939pt;}
.y4{bottom:251.967849pt;}
.ye{bottom:270.923913pt;}
.yd{bottom:299.723895pt;}
.y3{bottom:307.329341pt;}
.y11{bottom:353.056978pt;}
.y10{bottom:378.656959pt;}
.y7{bottom:397.801344pt;}
.yf{bottom:404.256944pt;}
.y9{bottom:453.752644pt;}
.y8{bottom:479.352629pt;}
.y17{bottom:479.961004pt;}
.y20{bottom:494.647277pt;}
.y1f{bottom:537.006370pt;}
.y6{bottom:542.197612pt;}
.y21{bottom:546.462624pt;}
.y1e{bottom:603.673020pt;}
.y18{bottom:664.288823pt;}
.y12{bottom:707.419755pt;}
.y1d{bottom:735.850027pt;}
.y24{bottom:755.249344pt;}
.y16{bottom:856.692939pt;}
.y22{bottom:899.452011pt;}
.y1c{bottom:935.708723pt;}
.y1b{bottom:1002.375373pt;}
.y1a{bottom:1051.887750pt;}
.y19{bottom:1105.221099pt;}
.y3c{bottom:1340.936492pt;}
.y3b{bottom:1370.634155pt;}
.y3a{bottom:1383.834214pt;}
.y39{bottom:1406.967648pt;}
.y38{bottom:1420.167707pt;}
.y37{bottom:1443.336942pt;}
.y36{bottom:1456.537002pt;}
.y35{bottom:1486.270436pt;}
.y34{bottom:1519.028371pt;}
.y33{bottom:1541.471485pt;}
.y2d{bottom:1591.696348pt;}
.y2e{bottom:1592.667626pt;}
.y2a{bottom:1603.264775pt;}
.y2c{bottom:1606.394084pt;}
.y2b{bottom:1617.341325pt;}
.y31{bottom:1617.424180pt;}
.y2f{bottom:1617.841464pt;}
.y30{bottom:1619.501818pt;}
.y32{bottom:1620.997852pt;}
.y46{bottom:1664.598897pt;}
.y5{bottom:1671.583783pt;}
.y45{bottom:1687.932272pt;}
.y40{bottom:1697.032067pt;}
.y44{bottom:1711.265628pt;}
.y3f{bottom:1737.032067pt;}
.y43{bottom:1769.233757pt;}
.y3e{bottom:1777.032067pt;}
.y29{bottom:1802.712638pt;}
.y42{bottom:1809.233757pt;}
.y3d{bottom:1817.032067pt;}
.y28{bottom:1831.045968pt;}
.y27{bottom:1861.345361pt;}
.y41{bottom:1861.552112pt;}
.y4a{bottom:2382.091327pt;}
.y49{bottom:2422.091327pt;}
.y48{bottom:2462.091327pt;}
.y47{bottom:2522.335596pt;}
.y4f{bottom:2698.240061pt;}
.y4e{bottom:2741.413685pt;}
.y4d{bottom:2784.587308pt;}
.y4c{bottom:2827.760931pt;}
.y4b{bottom:2870.934555pt;}
.y52{bottom:2921.061884pt;}
.y51{bottom:3006.101292pt;}
.y54{bottom:3035.407056pt;}
.y53{bottom:3052.706605pt;}
.y50{bottom:3091.140701pt;}
.hc{height:29.056677pt;}
.h11{height:44.859477pt;}
.h12{height:44.859478pt;}
.he{height:50.268645pt;}
.h15{height:51.734467pt;}
.h18{height:55.062885pt;}
.h13{height:57.093852pt;}
.h10{height:69.328227pt;}
.h7{height:80.208023pt;}
.ha{height:81.562480pt;}
.h6{height:86.999946pt;}
.h14{height:88.687500pt;}
.h9{height:101.953080pt;}
.h16{height:105.640460pt;}
.h3{height:114.187663pt;}
.hb{height:126.130667pt;}
.hf{height:130.500139pt;}
.h8{height:130.500143pt;}
.hd{height:167.333333pt;}
.h17{height:208.080802pt;}
.h2{height:231.079810pt;}
.h4{height:293.625013pt;}
.h5{height:798.781333pt;}
.h0{height:3178.582677pt;}
.h1{height:3178.666667pt;}
.w3{width:247.057333pt;}
.w2{width:610.604000pt;}
.w0{width:2245.039371pt;}
.w1{width:2245.333333pt;}
.x0{left:0.000000pt;}
.x24{left:30.138260pt;}
.x12{left:56.731467pt;}
.x13{left:64.451501pt;}
.x11{left:82.841328pt;}
.xa{left:91.450197pt;}
.x3e{left:104.558961pt;}
.x8{left:120.475451pt;}
.xd{left:129.033436pt;}
.x7{left:135.133048pt;}
.xe{left:154.496896pt;}
.x22{left:158.401047pt;}
.x4{left:164.259828pt;}
.x5{left:166.208527pt;}
.xb{left:173.684915pt;}
.x10{left:184.408320pt;}
.x9{left:195.459205pt;}
.xc{left:200.459259pt;}
.xf{left:237.715820pt;}
.x3b{left:251.364492pt;}
.x21{left:255.000000pt;}
.x1d{left:328.293921pt;}
.x1e{left:373.314810pt;}
.x1{left:395.200363pt;}
.x23{left:406.000000pt;}
.x1f{left:411.510849pt;}
.x20{left:413.688926pt;}
.x3a{left:415.847473pt;}
.x39{left:494.939313pt;}
.x3d{left:498.897637pt;}
.x42{left:504.007499pt;}
.x2{left:589.753132pt;}
.x14{left:917.351080pt;}
.x3f{left:930.411424pt;}
.x16{left:987.699927pt;}
.x1a{left:997.277145pt;}
.x40{left:1034.551485pt;}
.x18{left:1056.470680pt;}
.x17{left:1059.304182pt;}
.x19{left:1092.681606pt;}
.x1c{left:1106.865683pt;}
.x1b{left:1124.990693pt;}
.x15{left:1138.134802pt;}
.x30{left:1212.917491pt;}
.x41{left:1218.482412pt;}
.x38{left:1225.643532pt;}
.x32{left:1234.012337pt;}
.x35{left:1243.868872pt;}
.x34{left:1247.292051pt;}
.x36{left:1248.897086pt;}
.x37{left:1283.608751pt;}
.x31{left:1305.914073pt;}
.x3c{left:1421.145021pt;}
.x25{left:1422.520621pt;}
.x33{left:1437.469826pt;}
.x6{left:1531.000000pt;}
.x3{left:1757.867583pt;}
.x26{left:1771.846193pt;}
.x29{left:1810.666053pt;}
.x2a{left:1823.895068pt;}
.x2b{left:1837.093256pt;}
.x27{left:1895.977731pt;}
.x28{left:1909.405945pt;}
.x2c{left:1974.008867pt;}
.x2d{left:1987.220632pt;}
.x2e{left:2053.116593pt;}
.x2f{left:2066.376404pt;}
}




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