
    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_7bda817a012eacfc0ac291c3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.966797;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_08944168564876f5b4727563.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104492;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_1940758138e32e3c4af44a7f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.107422;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_0e130aa020af6cb3403370b8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107422;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_941aa70d873e3fe0e3c1a255.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.961914;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_ef6ffb0fa3efb975b4827b0f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104492;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_668eae797668051d09dec532.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.741211;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:31.500000px;}
.ls29{letter-spacing:-6.000000px;}
.ls1b{letter-spacing:-4.032000px;}
.ls11{letter-spacing:-2.316000px;}
.ls12{letter-spacing:-2.178000px;}
.ls1f{letter-spacing:-1.920000px;}
.ls5{letter-spacing:-1.182000px;}
.ls4{letter-spacing:-1.146000px;}
.ls6{letter-spacing:-0.996000px;}
.lsa{letter-spacing:-0.804000px;}
.lsb{letter-spacing:-0.768000px;}
.ls9{letter-spacing:-0.582000px;}
.ls20{letter-spacing:-0.136200px;}
.ls8{letter-spacing:-0.075000px;}
.ls24{letter-spacing:-0.013920px;}
.ls0{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.166050px;}
.ls18{letter-spacing:0.384600px;}
.ls17{letter-spacing:0.468000px;}
.ls3{letter-spacing:0.498000px;}
.ls14{letter-spacing:0.534600px;}
.ls15{letter-spacing:0.618000px;}
.ls10{letter-spacing:0.690000px;}
.lsf{letter-spacing:1.374000px;}
.ls1c{letter-spacing:1.476000px;}
.lsc{letter-spacing:1.524000px;}
.ls28{letter-spacing:1.542000px;}
.lse{letter-spacing:2.322000px;}
.ls19{letter-spacing:2.442000px;}
.ls1a{letter-spacing:2.484000px;}
.lsd{letter-spacing:27.687300px;}
.ls1e{letter-spacing:177.420000px;}
.ls1d{letter-spacing:177.472500px;}
.ls7{letter-spacing:182.197500px;}
.ls27{letter-spacing:186.952500px;}
.ls16{letter-spacing:189.306000px;}
.ls2{letter-spacing:191.272500px;}
.ls13{letter-spacing:200.712300px;}
.ls1{letter-spacing:239.272500px;}
.ls25{letter-spacing:244.972500px;}
.ls26{letter-spacing:245.572500px;}
.ls21{letter-spacing:245.692500px;}
.ls22{letter-spacing:250.327500px;}
.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:-50.081700px;}
.ws25{word-spacing:-40.073700px;}
.ws3{word-spacing:-38.822700px;}
.ws13{word-spacing:-33.818700px;}
.ws24{word-spacing:-31.502700px;}
.ws5{word-spacing:-30.065700px;}
.ws15{word-spacing:-23.810700px;}
.ws16{word-spacing:-20.057700px;}
.ws6{word-spacing:-20.016000px;}
.ws7{word-spacing:-19.982700px;}
.ws9{word-spacing:-7.193400px;}
.wsa{word-spacing:-4.949100px;}
.wse{word-spacing:-3.564900px;}
.ws2{word-spacing:-3.041700px;}
.ws10{word-spacing:-2.603100px;}
.wsc{word-spacing:-2.335500px;}
.ws14{word-spacing:-2.305500px;}
.wsb{word-spacing:-0.087000px;}
.wsf{word-spacing:-0.061500px;}
.ws0{word-spacing:0.000000px;}
.wsd{word-spacing:0.187500px;}
.ws4{word-spacing:1.144200px;}
.ws8{word-spacing:2.092650px;}
.ws12{word-spacing:3.969750px;}
.ws11{word-spacing:4.401150px;}
.ws21{word-spacing:135.077850px;}
.ws22{word-spacing:149.204550px;}
.ws1b{word-spacing:149.262000px;}
.ws1a{word-spacing:153.816000px;}
.ws17{word-spacing:153.857700px;}
.ws19{word-spacing:160.524000px;}
.ws18{word-spacing:163.320900px;}
.ws1f{word-spacing:167.085750px;}
.ws23{word-spacing:168.557700px;}
.ws1c{word-spacing:169.656000px;}
.ws1d{word-spacing:172.266000px;}
.ws1e{word-spacing:174.936000px;}
.ws20{word-spacing:174.977700px;}
._a{margin-left:-14.754150px;}
._6{margin-left:-11.209800px;}
._b{margin-left:-9.487950px;}
._c{margin-left:-8.211900px;}
._8{margin-left:-6.900150px;}
._4{margin-left:-5.731200px;}
._9{margin-left:-4.161450px;}
._3{margin-left:-2.865600px;}
._0{margin-left:-1.194000px;}
._2{width:1.432800px;}
._1{width:3.104400px;}
._5{width:4.345200px;}
._17{width:6.949050px;}
._e{width:15.170100px;}
._d{width:16.785900px;}
._18{width:25.466700px;}
._f{width:27.474600px;}
._10{width:29.250900px;}
._11{width:30.479100px;}
._12{width:32.701800px;}
._13{width:35.192850px;}
._7{width:36.551550px;}
._16{width:48.589950px;}
._15{width:51.526800px;}
._14{width:52.631400px;}
.fc7{color:transparent;}
.fc6{color:rgb(255,147,0);}
.fc5{color:rgb(79,129,189);}
.fc4{color:rgb(29,56,174);}
.fc2{color:rgb(255,163,0);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,119,190);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:54.000000px;}
.fs3{font-size:54.150000px;}
.fsf{font-size:63.000000px;}
.fs10{font-size:63.150000px;}
.fsa{font-size:67.500000px;}
.fs9{font-size:67.650000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:72.150000px;}
.fs15{font-size:76.500000px;}
.fs14{font-size:76.650000px;}
.fse{font-size:85.650000px;}
.fs13{font-size:94.500000px;}
.fsb{font-size:94.650000px;}
.fs6{font-size:108.150000px;}
.fsc{font-size:121.650000px;}
.fsd{font-size:121.800000px;}
.fs2{font-size:130.800000px;}
.fs5{font-size:139.650000px;}
.fs12{font-size:144.150000px;}
.fs16{font-size:166.800000px;}
.fs4{font-size:180.150000px;}
.fs11{font-size:180.300000px;}
.fs1{font-size:238.800000px;}
.y0{bottom:0.000000px;}
.y8b{bottom:21.225000px;}
.y1{bottom:21.487500px;}
.y69{bottom:21.525000px;}
.y5{bottom:21.600000px;}
.y6b{bottom:21.637500px;}
.ya1{bottom:51.000000px;}
.y9e{bottom:73.912500px;}
.y1f{bottom:74.400000px;}
.y68{bottom:93.975000px;}
.y1e{bottom:94.687500px;}
.y73{bottom:97.500000px;}
.y9d{bottom:97.575000px;}
.y19{bottom:106.762500px;}
.y67{bottom:113.137500px;}
.y1d{bottom:113.850000px;}
.y52{bottom:114.075000px;}
.y79{bottom:118.800000px;}
.y5d{bottom:120.487500px;}
.y66{bottom:131.137500px;}
.y3e{bottom:134.100000px;}
.y51{bottom:135.487500px;}
.y7b{bottom:140.100000px;}
.y18{bottom:142.800000px;}
.y4{bottom:145.650000px;}
.y8a{bottom:151.875000px;}
.y98{bottom:154.050000px;}
.y1c{bottom:154.380000px;}
.y3d{bottom:155.505000px;}
.y50{bottom:156.900000px;}
.yc{bottom:160.530000px;}
.y77{bottom:162.030000px;}
.y5c{bottom:166.500000px;}
.y1b{bottom:173.550000px;}
.y3c{bottom:176.895000px;}
.y2a{bottom:177.075000px;}
.y4f{bottom:178.275000px;}
.y72{bottom:181.050000px;}
.y97{bottom:183.375000px;}
.y9c{bottom:185.505000px;}
.y1a{bottom:193.845000px;}
.y3b{bottom:198.300000px;}
.y71{bottom:202.320000px;}
.y17{bottom:202.500000px;}
.y5b{bottom:212.505000px;}
.y29{bottom:216.525000px;}
.y9b{bottom:218.175000px;}
.y96{bottom:223.920000px;}
.y89{bottom:232.995000px;}
.y16{bottom:237.450000px;}
.yb{bottom:242.775000px;}
.y78{bottom:246.525000px;}
.y46{bottom:251.400000px;}
.y65{bottom:254.325000px;}
.y5a{bottom:258.525000px;}
.y3a{bottom:262.950000px;}
.y28{bottom:263.820000px;}
.y95{bottom:265.605000px;}
.y7d{bottom:266.175000px;}
.y88{bottom:269.070000px;}
.y45{bottom:272.820000px;}
.y3{bottom:284.325000px;}
.y64{bottom:293.775000px;}
.y44{bottom:294.195000px;}
.y15{bottom:297.150000px;}
.y59{bottom:304.545000px;}
.y39{bottom:305.730000px;}
.y94{bottom:306.150000px;}
.y27{bottom:307.755000px;}
.y43{bottom:315.600000px;}
.ya{bottom:323.880000px;}
.y38{bottom:327.150000px;}
.y14{bottom:333.195000px;}
.y70{bottom:347.775000px;}
.y26{bottom:348.300000px;}
.y87{bottom:349.050000px;}
.y58{bottom:350.550000px;}
.y93{bottom:351.225000px;}
.y63{bottom:357.975000px;}
.ya0{bottom:366.675000px;}
.y13{bottom:369.225000px;}
.y2{bottom:369.945000px;}
.y75{bottom:370.200000px;}
.y42{bottom:382.050000px;}
.y9f{bottom:390.300000px;}
.y4a{bottom:392.175000px;}
.y25{bottom:394.500000px;}
.y57{bottom:396.570000px;}
.y62{bottom:397.380000px;}
.y86{bottom:400.845000px;}
.y74{bottom:402.900000px;}
.y41{bottom:403.470000px;}
.y12{bottom:405.300000px;}
.y9{bottom:406.125000px;}
.y6d{bottom:413.250000px;}
.y49{bottom:413.550000px;}
.y40{bottom:424.875000px;}
.y92{bottom:425.550000px;}
.y48{bottom:434.970000px;}
.y24{bottom:439.575000px;}
.y11{bottom:440.220000px;}
.y56{bottom:442.575000px;}
.y6c{bottom:445.905000px;}
.y3f{bottom:446.280000px;}
.y47{bottom:456.375000px;}
.y91{bottom:457.125000px;}
.y61{bottom:461.625000px;}
.y23{bottom:476.745000px;}
.y85{bottom:479.700000px;}
.y7e{bottom:480.720000px;}
.ya4{bottom:483.225000px;}
.y8{bottom:487.245000px;}
.y55{bottom:488.625000px;}
.y90{bottom:488.655000px;}
.y10{bottom:499.905000px;}
.y6e{bottom:500.370000px;}
.y60{bottom:501.045000px;}
.ya3{bottom:505.755000px;}
.y37{bottom:506.325000px;}
.y22{bottom:517.320000px;}
.y8f{bottom:520.200000px;}
.y2f{bottom:521.475000px;}
.y33{bottom:522.255000px;}
.y81{bottom:523.320000px;}
.y36{bottom:527.700000px;}
.y84{bottom:528.150000px;}
.ya2{bottom:529.380000px;}
.y54{bottom:534.630000px;}
.yf{bottom:535.995000px;}
.y7a{bottom:541.275000px;}
.y2e{bottom:542.880000px;}
.y32{bottom:543.675000px;}
.y4e{bottom:545.400000px;}
.y35{bottom:549.120000px;}
.y8e{bottom:551.745000px;}
.y21{bottom:563.475000px;}
.y5f{bottom:564.150000px;}
.y83{bottom:564.195000px;}
.y2d{bottom:564.255000px;}
.y31{bottom:565.095000px;}
.y4d{bottom:566.820000px;}
.y7{bottom:569.475000px;}
.y34{bottom:570.525000px;}
.ye{bottom:572.025000px;}
.y53{bottom:580.650000px;}
.y7f{bottom:582.195000px;}
.y2c{bottom:585.675000px;}
.y30{bottom:586.500000px;}
.y76{bottom:587.070000px;}
.y4c{bottom:588.195000px;}
.y9a{bottom:594.675000px;}
.y8d{bottom:601.320000px;}
.y5e{bottom:604.695000px;}
.yd{bottom:606.945000px;}
.y7c{bottom:608.445000px;}
.y4b{bottom:609.600000px;}
.y82{bottom:610.380000px;}
.y20{bottom:610.800000px;}
.y99{bottom:629.595000px;}
.y80{bottom:629.745000px;}
.y2b{bottom:638.625000px;}
.y6f{bottom:651.030000px;}
.y8c{bottom:684.030000px;}
.y6{bottom:686.100000px;}
.y6a{bottom:714.900000px;}
.h1{height:40.605469px;}
.h15{height:40.718262px;}
.h17{height:48.278320px;}
.h4{height:48.412427px;}
.h10{height:54.253418px;}
.h13{height:56.509277px;}
.h14{height:56.643823px;}
.h9{height:60.545654px;}
.h8{height:60.680200px;}
.hf{height:64.582031px;}
.he{height:64.716577px;}
.h1e{height:68.394287px;}
.h1d{height:68.528394px;}
.hd{height:76.574780px;}
.h19{height:84.487061px;}
.hc{height:84.621167px;}
.h1b{height:84.763916px;}
.h1a{height:84.898462px;}
.ha{height:91.415698px;}
.hb{height:91.528418px;}
.h1c{height:96.690747px;}
.h7{height:97.007593px;}
.h11{height:109.116724px;}
.h12{height:109.251270px;}
.h3{height:116.940820px;}
.h1f{height:121.516406px;}
.h6{height:125.262231px;}
.h18{height:129.298608px;}
.h5{height:135.464355px;}
.h16{height:135.577148px;}
.h2{height:179.566406px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x1b{left:36.524979px;}
.x27{left:53.174979px;}
.x1{left:55.349979px;}
.x1d{left:74.512479px;}
.x2e{left:85.087479px;}
.x14{left:89.587479px;}
.x18{left:97.049979px;}
.x17{left:99.562479px;}
.x19{left:100.687479px;}
.x16{left:103.049979px;}
.x15{left:105.599979px;}
.x9{left:108.599979px;}
.x5{left:110.737479px;}
.x31{left:119.999979px;}
.x29{left:121.349979px;}
.x8{left:123.487479px;}
.x35{left:134.137479px;}
.x2f{left:156.179979px;}
.x6{left:165.749979px;}
.x2{left:172.904979px;}
.x1c{left:183.449979px;}
.x32{left:194.549979px;}
.x4{left:199.319979px;}
.x1f{left:223.394979px;}
.x3{left:224.849979px;}
.x30{left:228.224979px;}
.x2c{left:244.694979px;}
.x33{left:249.569979px;}
.x28{left:287.204979px;}
.xf{left:336.719979px;}
.x10{left:360.674979px;}
.xa{left:368.699979px;}
.x1e{left:372.329979px;}
.x13{left:439.874979px;}
.x36{left:462.194979px;}
.x22{left:478.724979px;}
.x34{left:501.404979px;}
.x26{left:563.819979px;}
.x12{left:621.254979px;}
.x7{left:700.799979px;}
.x38{left:706.394979px;}
.x21{left:797.999979px;}
.xb{left:816.944979px;}
.x1a{left:819.974979px;}
.x2a{left:840.419979px;}
.x20{left:925.499979px;}
.x25{left:946.799979px;}
.xc{left:1011.074979px;}
.x2b{left:1060.169979px;}
.x2d{left:1074.449979px;}
.x37{left:1095.299979px;}
.x24{left:1142.774979px;}
.xd{left:1184.774979px;}
.x11{left:1214.174979px;}
.xe{left:1215.344979px;}
.x23{left:1226.744979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:28.000000pt;}
.ls29{letter-spacing:-5.333333pt;}
.ls1b{letter-spacing:-3.584000pt;}
.ls11{letter-spacing:-2.058667pt;}
.ls12{letter-spacing:-1.936000pt;}
.ls1f{letter-spacing:-1.706667pt;}
.ls5{letter-spacing:-1.050667pt;}
.ls4{letter-spacing:-1.018667pt;}
.ls6{letter-spacing:-0.885333pt;}
.lsa{letter-spacing:-0.714667pt;}
.lsb{letter-spacing:-0.682667pt;}
.ls9{letter-spacing:-0.517333pt;}
.ls20{letter-spacing:-0.121067pt;}
.ls8{letter-spacing:-0.066667pt;}
.ls24{letter-spacing:-0.012373pt;}
.ls0{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.147600pt;}
.ls18{letter-spacing:0.341867pt;}
.ls17{letter-spacing:0.416000pt;}
.ls3{letter-spacing:0.442667pt;}
.ls14{letter-spacing:0.475200pt;}
.ls15{letter-spacing:0.549333pt;}
.ls10{letter-spacing:0.613333pt;}
.lsf{letter-spacing:1.221333pt;}
.ls1c{letter-spacing:1.312000pt;}
.lsc{letter-spacing:1.354667pt;}
.ls28{letter-spacing:1.370667pt;}
.lse{letter-spacing:2.064000pt;}
.ls19{letter-spacing:2.170667pt;}
.ls1a{letter-spacing:2.208000pt;}
.lsd{letter-spacing:24.610933pt;}
.ls1e{letter-spacing:157.706667pt;}
.ls1d{letter-spacing:157.753333pt;}
.ls7{letter-spacing:161.953333pt;}
.ls27{letter-spacing:166.180000pt;}
.ls16{letter-spacing:168.272000pt;}
.ls2{letter-spacing:170.020000pt;}
.ls13{letter-spacing:178.410933pt;}
.ls1{letter-spacing:212.686667pt;}
.ls25{letter-spacing:217.753333pt;}
.ls26{letter-spacing:218.286667pt;}
.ls21{letter-spacing:218.393333pt;}
.ls22{letter-spacing:222.513333pt;}
.ws1{word-spacing:-44.517067pt;}
.ws25{word-spacing:-35.621067pt;}
.ws3{word-spacing:-34.509067pt;}
.ws13{word-spacing:-30.061067pt;}
.ws24{word-spacing:-28.002400pt;}
.ws5{word-spacing:-26.725067pt;}
.ws15{word-spacing:-21.165067pt;}
.ws16{word-spacing:-17.829067pt;}
.ws6{word-spacing:-17.792000pt;}
.ws7{word-spacing:-17.762400pt;}
.ws9{word-spacing:-6.394133pt;}
.wsa{word-spacing:-4.399200pt;}
.wse{word-spacing:-3.168800pt;}
.ws2{word-spacing:-2.703733pt;}
.ws10{word-spacing:-2.313867pt;}
.wsc{word-spacing:-2.076000pt;}
.ws14{word-spacing:-2.049333pt;}
.wsb{word-spacing:-0.077333pt;}
.wsf{word-spacing:-0.054667pt;}
.ws0{word-spacing:0.000000pt;}
.wsd{word-spacing:0.166667pt;}
.ws4{word-spacing:1.017067pt;}
.ws8{word-spacing:1.860133pt;}
.ws12{word-spacing:3.528667pt;}
.ws11{word-spacing:3.912133pt;}
.ws21{word-spacing:120.069200pt;}
.ws22{word-spacing:132.626267pt;}
.ws1b{word-spacing:132.677333pt;}
.ws1a{word-spacing:136.725333pt;}
.ws17{word-spacing:136.762400pt;}
.ws19{word-spacing:142.688000pt;}
.ws18{word-spacing:145.174133pt;}
.ws1f{word-spacing:148.520667pt;}
.ws23{word-spacing:149.829067pt;}
.ws1c{word-spacing:150.805333pt;}
.ws1d{word-spacing:153.125333pt;}
.ws1e{word-spacing:155.498667pt;}
.ws20{word-spacing:155.535733pt;}
._a{margin-left:-13.114800pt;}
._6{margin-left:-9.964267pt;}
._b{margin-left:-8.433733pt;}
._c{margin-left:-7.299467pt;}
._8{margin-left:-6.133467pt;}
._4{margin-left:-5.094400pt;}
._9{margin-left:-3.699067pt;}
._3{margin-left:-2.547200pt;}
._0{margin-left:-1.061333pt;}
._2{width:1.273600pt;}
._1{width:2.759467pt;}
._5{width:3.862400pt;}
._17{width:6.176933pt;}
._e{width:13.484533pt;}
._d{width:14.920800pt;}
._18{width:22.637067pt;}
._f{width:24.421867pt;}
._10{width:26.000800pt;}
._11{width:27.092533pt;}
._12{width:29.068267pt;}
._13{width:31.282533pt;}
._7{width:32.490267pt;}
._16{width:43.191067pt;}
._15{width:45.801600pt;}
._14{width:46.783467pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:48.133333pt;}
.fsf{font-size:56.000000pt;}
.fs10{font-size:56.133333pt;}
.fsa{font-size:60.000000pt;}
.fs9{font-size:60.133333pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:64.133333pt;}
.fs15{font-size:68.000000pt;}
.fs14{font-size:68.133333pt;}
.fse{font-size:76.133333pt;}
.fs13{font-size:84.000000pt;}
.fsb{font-size:84.133333pt;}
.fs6{font-size:96.133333pt;}
.fsc{font-size:108.133333pt;}
.fsd{font-size:108.266667pt;}
.fs2{font-size:116.266667pt;}
.fs5{font-size:124.133333pt;}
.fs12{font-size:128.133333pt;}
.fs16{font-size:148.266667pt;}
.fs4{font-size:160.133333pt;}
.fs11{font-size:160.266667pt;}
.fs1{font-size:212.266667pt;}
.y0{bottom:0.000000pt;}
.y8b{bottom:18.866667pt;}
.y1{bottom:19.100000pt;}
.y69{bottom:19.133333pt;}
.y5{bottom:19.200000pt;}
.y6b{bottom:19.233333pt;}
.ya1{bottom:45.333333pt;}
.y9e{bottom:65.700000pt;}
.y1f{bottom:66.133333pt;}
.y68{bottom:83.533333pt;}
.y1e{bottom:84.166667pt;}
.y73{bottom:86.666667pt;}
.y9d{bottom:86.733333pt;}
.y19{bottom:94.900000pt;}
.y67{bottom:100.566667pt;}
.y1d{bottom:101.200000pt;}
.y52{bottom:101.400000pt;}
.y79{bottom:105.600000pt;}
.y5d{bottom:107.100000pt;}
.y66{bottom:116.566667pt;}
.y3e{bottom:119.200000pt;}
.y51{bottom:120.433333pt;}
.y7b{bottom:124.533333pt;}
.y18{bottom:126.933333pt;}
.y4{bottom:129.466667pt;}
.y8a{bottom:135.000000pt;}
.y98{bottom:136.933333pt;}
.y1c{bottom:137.226667pt;}
.y3d{bottom:138.226667pt;}
.y50{bottom:139.466667pt;}
.yc{bottom:142.693333pt;}
.y77{bottom:144.026667pt;}
.y5c{bottom:148.000000pt;}
.y1b{bottom:154.266667pt;}
.y3c{bottom:157.240000pt;}
.y2a{bottom:157.400000pt;}
.y4f{bottom:158.466667pt;}
.y72{bottom:160.933333pt;}
.y97{bottom:163.000000pt;}
.y9c{bottom:164.893333pt;}
.y1a{bottom:172.306667pt;}
.y3b{bottom:176.266667pt;}
.y71{bottom:179.840000pt;}
.y17{bottom:180.000000pt;}
.y5b{bottom:188.893333pt;}
.y29{bottom:192.466667pt;}
.y9b{bottom:193.933333pt;}
.y96{bottom:199.040000pt;}
.y89{bottom:207.106667pt;}
.y16{bottom:211.066667pt;}
.yb{bottom:215.800000pt;}
.y78{bottom:219.133333pt;}
.y46{bottom:223.466667pt;}
.y65{bottom:226.066667pt;}
.y5a{bottom:229.800000pt;}
.y3a{bottom:233.733333pt;}
.y28{bottom:234.506667pt;}
.y95{bottom:236.093333pt;}
.y7d{bottom:236.600000pt;}
.y88{bottom:239.173333pt;}
.y45{bottom:242.506667pt;}
.y3{bottom:252.733333pt;}
.y64{bottom:261.133333pt;}
.y44{bottom:261.506667pt;}
.y15{bottom:264.133333pt;}
.y59{bottom:270.706667pt;}
.y39{bottom:271.760000pt;}
.y94{bottom:272.133333pt;}
.y27{bottom:273.560000pt;}
.y43{bottom:280.533333pt;}
.ya{bottom:287.893333pt;}
.y38{bottom:290.800000pt;}
.y14{bottom:296.173333pt;}
.y70{bottom:309.133333pt;}
.y26{bottom:309.600000pt;}
.y87{bottom:310.266667pt;}
.y58{bottom:311.600000pt;}
.y93{bottom:312.200000pt;}
.y63{bottom:318.200000pt;}
.ya0{bottom:325.933333pt;}
.y13{bottom:328.200000pt;}
.y2{bottom:328.840000pt;}
.y75{bottom:329.066667pt;}
.y42{bottom:339.600000pt;}
.y9f{bottom:346.933333pt;}
.y4a{bottom:348.600000pt;}
.y25{bottom:350.666667pt;}
.y57{bottom:352.506667pt;}
.y62{bottom:353.226667pt;}
.y86{bottom:356.306667pt;}
.y74{bottom:358.133333pt;}
.y41{bottom:358.640000pt;}
.y12{bottom:360.266667pt;}
.y9{bottom:361.000000pt;}
.y6d{bottom:367.333333pt;}
.y49{bottom:367.600000pt;}
.y40{bottom:377.666667pt;}
.y92{bottom:378.266667pt;}
.y48{bottom:386.640000pt;}
.y24{bottom:390.733333pt;}
.y11{bottom:391.306667pt;}
.y56{bottom:393.400000pt;}
.y6c{bottom:396.360000pt;}
.y3f{bottom:396.693333pt;}
.y47{bottom:405.666667pt;}
.y91{bottom:406.333333pt;}
.y61{bottom:410.333333pt;}
.y23{bottom:423.773333pt;}
.y85{bottom:426.400000pt;}
.y7e{bottom:427.306667pt;}
.ya4{bottom:429.533333pt;}
.y8{bottom:433.106667pt;}
.y55{bottom:434.333333pt;}
.y90{bottom:434.360000pt;}
.y10{bottom:444.360000pt;}
.y6e{bottom:444.773333pt;}
.y60{bottom:445.373333pt;}
.ya3{bottom:449.560000pt;}
.y37{bottom:450.066667pt;}
.y22{bottom:459.840000pt;}
.y8f{bottom:462.400000pt;}
.y2f{bottom:463.533333pt;}
.y33{bottom:464.226667pt;}
.y81{bottom:465.173333pt;}
.y36{bottom:469.066667pt;}
.y84{bottom:469.466667pt;}
.ya2{bottom:470.560000pt;}
.y54{bottom:475.226667pt;}
.yf{bottom:476.440000pt;}
.y7a{bottom:481.133333pt;}
.y2e{bottom:482.560000pt;}
.y32{bottom:483.266667pt;}
.y4e{bottom:484.800000pt;}
.y35{bottom:488.106667pt;}
.y8e{bottom:490.440000pt;}
.y21{bottom:500.866667pt;}
.y5f{bottom:501.466667pt;}
.y83{bottom:501.506667pt;}
.y2d{bottom:501.560000pt;}
.y31{bottom:502.306667pt;}
.y4d{bottom:503.840000pt;}
.y7{bottom:506.200000pt;}
.y34{bottom:507.133333pt;}
.ye{bottom:508.466667pt;}
.y53{bottom:516.133333pt;}
.y7f{bottom:517.506667pt;}
.y2c{bottom:520.600000pt;}
.y30{bottom:521.333333pt;}
.y76{bottom:521.840000pt;}
.y4c{bottom:522.840000pt;}
.y9a{bottom:528.600000pt;}
.y8d{bottom:534.506667pt;}
.y5e{bottom:537.506667pt;}
.yd{bottom:539.506667pt;}
.y7c{bottom:540.840000pt;}
.y4b{bottom:541.866667pt;}
.y82{bottom:542.560000pt;}
.y20{bottom:542.933333pt;}
.y99{bottom:559.640000pt;}
.y80{bottom:559.773333pt;}
.y2b{bottom:567.666667pt;}
.y6f{bottom:578.693333pt;}
.y8c{bottom:608.026667pt;}
.y6{bottom:609.866667pt;}
.y6a{bottom:635.466667pt;}
.h1{height:36.093750pt;}
.h15{height:36.194010pt;}
.h17{height:42.914062pt;}
.h4{height:43.033268pt;}
.h10{height:48.225260pt;}
.h13{height:50.230469pt;}
.h14{height:50.350065pt;}
.h9{height:53.818359pt;}
.h8{height:53.937956pt;}
.hf{height:57.406250pt;}
.he{height:57.525846pt;}
.h1e{height:60.794922pt;}
.h1d{height:60.914128pt;}
.hd{height:68.066471pt;}
.h19{height:75.099609pt;}
.hc{height:75.218815pt;}
.h1b{height:75.345703pt;}
.h1a{height:75.465299pt;}
.ha{height:81.258398pt;}
.hb{height:81.358594pt;}
.h1c{height:85.947331pt;}
.h7{height:86.228971pt;}
.h11{height:96.992643pt;}
.h12{height:97.112240pt;}
.h3{height:103.947396pt;}
.h1f{height:108.014583pt;}
.h6{height:111.344206pt;}
.h18{height:114.932096pt;}
.h5{height:120.412760pt;}
.h16{height:120.513021pt;}
.h2{height:159.614583pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:32.466648pt;}
.x27{left:47.266648pt;}
.x1{left:49.199981pt;}
.x1d{left:66.233314pt;}
.x2e{left:75.633314pt;}
.x14{left:79.633314pt;}
.x18{left:86.266648pt;}
.x17{left:88.499981pt;}
.x19{left:89.499981pt;}
.x16{left:91.599981pt;}
.x15{left:93.866648pt;}
.x9{left:96.533314pt;}
.x5{left:98.433314pt;}
.x31{left:106.666648pt;}
.x29{left:107.866648pt;}
.x8{left:109.766648pt;}
.x35{left:119.233314pt;}
.x2f{left:138.826648pt;}
.x6{left:147.333314pt;}
.x2{left:153.693314pt;}
.x1c{left:163.066648pt;}
.x32{left:172.933314pt;}
.x4{left:177.173314pt;}
.x1f{left:198.573314pt;}
.x3{left:199.866648pt;}
.x30{left:202.866648pt;}
.x2c{left:217.506648pt;}
.x33{left:221.839981pt;}
.x28{left:255.293314pt;}
.xf{left:299.306648pt;}
.x10{left:320.599981pt;}
.xa{left:327.733314pt;}
.x1e{left:330.959981pt;}
.x13{left:390.999981pt;}
.x36{left:410.839981pt;}
.x22{left:425.533314pt;}
.x34{left:445.693314pt;}
.x26{left:501.173314pt;}
.x12{left:552.226648pt;}
.x7{left:622.933314pt;}
.x38{left:627.906648pt;}
.x21{left:709.333314pt;}
.xb{left:726.173314pt;}
.x1a{left:728.866648pt;}
.x2a{left:747.039981pt;}
.x20{left:822.666648pt;}
.x25{left:841.599981pt;}
.xc{left:898.733314pt;}
.x2b{left:942.373314pt;}
.x2d{left:955.066648pt;}
.x37{left:973.599981pt;}
.x24{left:1015.799981pt;}
.xd{left:1053.133314pt;}
.x11{left:1079.266648pt;}
.xe{left:1080.306648pt;}
.x23{left:1090.439981pt;}
}




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