
    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_2378a5966b7aead4aefaaa0f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.148438;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_6fd79b28c49675b30ca86f78.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.015137;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_27fb3c20856f0669d0fa40a0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a02b9a59a5ddd650bc51dba3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.768066;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_0b2258b96ee4978c2102184f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.076000;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_707374eaedd8e9b5623839ad.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.128000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e428879af168a4f13671b93c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.148438;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_1b6bffa4f65bbf48ea0be0c2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.015137;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_7a62402674ea31fd4866e5d4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.738770;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_f4b68fd06bd66bd96376ad0d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.860840;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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;}
.ls6{letter-spacing:-0.305400px;}
.lse{letter-spacing:-0.265200px;}
.ls3{letter-spacing:-0.259200px;}
.lsf{letter-spacing:-0.234000px;}
.ls5{letter-spacing:-0.172800px;}
.ls7{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.078000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.057600px;}
.lsd{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.270600px;}
.lsb{letter-spacing:0.540000px;}
.lsc{letter-spacing:59.321280px;}
.ls9{letter-spacing:64.002720px;}
.ls0{letter-spacing:845.741280px;}
.ls10{letter-spacing:845.885280px;}
.ls4{letter-spacing:846.541920px;}
.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;}
}
.wsc{word-spacing:-66.240000px;}
.ws8{word-spacing:-59.760000px;}
.ws9{word-spacing:-23.940000px;}
.wsb{word-spacing:-23.706000px;}
.wsa{word-spacing:-23.674800px;}
.ws1{word-spacing:-16.617600px;}
.ws2{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.482000px;}
.ws6{word-spacing:-16.416000px;}
.ws4{word-spacing:-16.387200px;}
.ws3{word-spacing:-16.300800px;}
.ws5{word-spacing:-16.254600px;}
.ws0{word-spacing:0.000000px;}
._5{margin-left:-13.813440px;}
._8{margin-left:-12.408960px;}
._6{margin-left:-10.380000px;}
._7{margin-left:-6.328320px;}
._b{margin-left:-4.173120px;}
._c{margin-left:-3.156480px;}
._1{margin-left:-1.501920px;}
._0{width:1.497600px;}
._15{width:2.611200px;}
._1d{width:3.662880px;}
._13{width:4.703040px;}
._14{width:6.165600px;}
._19{width:7.201440px;}
._12{width:8.523360px;}
._a{width:10.886400px;}
._1a{width:12.254400px;}
._f{width:13.579200px;}
._10{width:14.580960px;}
._16{width:18.282240px;}
._1e{width:19.540800px;}
._9{width:20.579040px;}
._1b{width:21.660480px;}
._1c{width:22.674720px;}
._11{width:32.722560px;}
._3{width:33.840000px;}
._18{width:36.100800px;}
._17{width:37.208160px;}
._d{width:59.682240px;}
._e{width:60.720480px;}
._2{width:859.980000px;}
._4{width:1287.660000px;}
.fc7{color:rgb(11,118,159);}
.fc6{color:rgb(33,94,153);}
.fc3{color:rgb(80,21,73);}
.fc2{color:rgb(15,71,97);}
.fc4{color:rgb(70,120,134);}
.fc1{color:rgb(0,32,96);}
.fc5{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fsa{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs9{font-size:95.760000px;}
.fs8{font-size:120.240000px;}
.fs2{font-size:144.000000px;}
.fs3{font-size:149.760000px;}
.y0{bottom:0.000000px;}
.y42{bottom:7.020000px;}
.y23{bottom:7.200000px;}
.y31{bottom:7.245000px;}
.y3a{bottom:8.100000px;}
.y38{bottom:12.960000px;}
.y2c{bottom:16.200000px;}
.y28{bottom:21.420000px;}
.y22{bottom:30.240000px;}
.y46{bottom:35.280000px;}
.y2b{bottom:39.060000px;}
.y2a{bottom:51.120000px;}
.y21{bottom:53.100000px;}
.y2{bottom:57.240000px;}
.y15{bottom:70.056000px;}
.y14{bottom:101.376000px;}
.y79{bottom:125.676000px;}
.ya1{bottom:139.356000px;}
.y7b{bottom:143.676000px;}
.y72{bottom:160.770000px;}
.ya0{bottom:164.190000px;}
.y7a{bottom:171.390000px;}
.y71{bottom:183.810000px;}
.y9f{bottom:188.850000px;}
.y70{bottom:206.850000px;}
.y9e{bottom:213.510000px;}
.y9d{bottom:238.350000px;}
.y6f{bottom:238.890000px;}
.y10{bottom:239.790000px;}
.y6e{bottom:261.930000px;}
.y9c{bottom:263.010000px;}
.yf{bottom:272.910000px;}
.y6d{bottom:284.970000px;}
.y9b{bottom:287.670000px;}
.ye{bottom:299.910000px;}
.y6c{bottom:308.010000px;}
.y9a{bottom:312.510000px;}
.yd{bottom:326.910000px;}
.y26{bottom:330.870000px;}
.y99{bottom:337.215000px;}
.yc{bottom:359.850000px;}
.y25{bottom:361.875000px;}
.y6b{bottom:362.955000px;}
.yc0{bottom:376.455000px;}
.y41{bottom:377.895000px;}
.y6a{bottom:385.995000px;}
.y98{bottom:386.715000px;}
.y6{bottom:390.135000px;}
.yb{bottom:391.890000px;}
.y40{bottom:401.655000px;}
.ybf{bottom:409.575000px;}
.y97{bottom:411.375000px;}
.y69{bottom:418.035000px;}
.y3f{bottom:425.415000px;}
.ybe{bottom:433.515000px;}
.y96{bottom:436.035000px;}
.y3e{bottom:449.175000px;}
.y68{bottom:450.075000px;}
.ybd{bottom:457.635000px;}
.y95{bottom:460.695000px;}
.ya{bottom:465.690000px;}
.y3d{bottom:472.935000px;}
.y67{bottom:473.115000px;}
.ybc{bottom:481.575000px;}
.y94{bottom:485.535000px;}
.y3c{bottom:496.695000px;}
.y66{bottom:505.155000px;}
.ybb{bottom:505.695000px;}
.y93{bottom:510.195000px;}
.y9{bottom:516.495000px;}
.y3b{bottom:520.455000px;}
.yba{bottom:529.635000px;}
.y92{bottom:534.855000px;}
.y65{bottom:537.015000px;}
.yb9{bottom:553.575000px;}
.y91{bottom:559.695000px;}
.y64{bottom:560.055000px;}
.y8{bottom:567.075000px;}
.yb8{bottom:577.695000px;}
.y90{bottom:584.355000px;}
.y24{bottom:588.855000px;}
.y63{bottom:592.095000px;}
.yb7{bottom:601.635000px;}
.y8f{bottom:609.045000px;}
.y20{bottom:613.905000px;}
.y62{bottom:615.165000px;}
.y7{bottom:617.835000px;}
.yb6{bottom:625.785000px;}
.y8e{bottom:633.885000px;}
.y61{bottom:647.205000px;}
.yb5{bottom:649.725000px;}
.y8d{bottom:658.545000px;}
.y60{bottom:670.245000px;}
.y4d{bottom:679.245000px;}
.yb4{bottom:682.665000px;}
.y8c{bottom:683.205000px;}
.y39{bottom:692.925000px;}
.y5f{bottom:693.285000px;}
.y4c{bottom:704.085000px;}
.yb3{bottom:706.785000px;}
.y8b{bottom:708.045000px;}
.y5e{bottom:716.145000px;}
.y37{bottom:717.585000px;}
.yb2{bottom:730.725000px;}
.y8a{bottom:732.705000px;}
.y4b{bottom:743.505000px;}
.y36{bottom:747.105000px;}
.y5d{bottom:748.185000px;}
.yb1{bottom:754.845000px;}
.y89{bottom:757.365000px;}
.y35{bottom:770.865000px;}
.y5c{bottom:771.225000px;}
.yb0{bottom:780.945000px;}
.y88{bottom:782.205000px;}
.y4a{bottom:783.105000px;}
.y5b{bottom:794.265000px;}
.y34{bottom:794.625000px;}
.y87{bottom:806.865000px;}
.y5a{bottom:817.305000px;}
.y33{bottom:818.385000px;}
.yaf{bottom:821.265000px;}
.y86{bottom:831.525000px;}
.y1f{bottom:834.585000px;}
.y59{bottom:840.345000px;}
.y32{bottom:842.145000px;}
.yae{bottom:854.385000px;}
.y85{bottom:856.185000px;}
.y58{bottom:863.385000px;}
.y1e{bottom:865.005000px;}
.y30{bottom:865.905000px;}
.y49{bottom:868.605000px;}
.yad{bottom:878.370000px;}
.y84{bottom:881.070000px;}
.y57{bottom:886.290000px;}
.y2f{bottom:889.710000px;}
.y1d{bottom:896.730000px;}
.yac{bottom:902.310000px;}
.y83{bottom:905.730000px;}
.y48{bottom:908.250000px;}
.y2e{bottom:913.470000px;}
.y56{bottom:918.330000px;}
.yab{bottom:926.430000px;}
.y1c{bottom:928.230000px;}
.y82{bottom:930.390000px;}
.y2d{bottom:937.230000px;}
.y55{bottom:941.370000px;}
.y47{bottom:947.670000px;}
.yaa{bottom:950.370000px;}
.y81{bottom:955.230000px;}
.y1b{bottom:959.730000px;}
.y54{bottom:964.410000px;}
.y80{bottom:979.890000px;}
.ya9{bottom:983.490000px;}
.y29{bottom:984.030000px;}
.y45{bottom:987.270000px;}
.y53{bottom:987.450000px;}
.y1a{bottom:991.230000px;}
.y7f{bottom:1004.550000px;}
.ya8{bottom:1007.430000px;}
.y52{bottom:1010.490000px;}
.y77{bottom:1011.930000px;}
.y5{bottom:1017.510000px;}
.y19{bottom:1022.730000px;}
.y7e{bottom:1029.390000px;}
.ya7{bottom:1031.370000px;}
.y51{bottom:1033.530000px;}
.y76{bottom:1034.970000px;}
.ya5{bottom:1038.030000px;}
.y27{bottom:1051.710000px;}
.y7d{bottom:1054.050000px;}
.y18{bottom:1054.230000px;}
.y44{bottom:1054.950000px;}
.ya6{bottom:1055.490000px;}
.y50{bottom:1056.390000px;}
.y4{bottom:1057.830000px;}
.y75{bottom:1058.010000px;}
.ya4{bottom:1062.870000px;}
.y78{bottom:1072.050000px;}
.y7c{bottom:1078.710000px;}
.y4f{bottom:1079.430000px;}
.y17{bottom:1085.730000px;}
.ya3{bottom:1087.530000px;}
.y74{bottom:1089.870000px;}
.y43{bottom:1099.950000px;}
.y4e{bottom:1105.530000px;}
.y16{bottom:1110.030000px;}
.ya2{bottom:1112.190000px;}
.y73{bottom:1112.910000px;}
.y3{bottom:1120.110000px;}
.y13{bottom:1132.890000px;}
.y12{bottom:1153.080000px;}
.y11{bottom:1173.060000px;}
.y1{bottom:1193.040000px;}
.h19{height:22.860000px;}
.h14{height:23.040000px;}
.h15{height:23.076000px;}
.h17{height:23.940000px;}
.h16{height:28.800000px;}
.h18{height:41.760000px;}
.h13{height:46.080000px;}
.h3{height:49.042969px;}
.hf{height:49.097812px;}
.h6{height:50.068125px;}
.h1b{height:51.120000px;}
.he{height:51.329531px;}
.h10{height:52.200000px;}
.h11{height:55.792969px;}
.h2{height:60.159375px;}
.hc{height:65.390625px;}
.h12{height:66.960000px;}
.ha{height:67.824000px;}
.hd{height:68.940000px;}
.hb{height:70.621875px;}
.h1c{height:74.204648px;}
.h9{height:76.507031px;}
.h1a{height:93.174258px;}
.h5{height:111.585938px;}
.h8{height:119.957760px;}
.h4{height:130.781250px;}
.h7{height:659.595000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:92.520000px;}
.w9{width:119.196000px;}
.w8{width:123.480000px;}
.w6{width:200.910000px;}
.wa{width:211.890000px;}
.wb{width:218.775000px;}
.w7{width:473.865000px;}
.w3{width:533.445000px;}
.wd{width:581.550000px;}
.w5{width:675.690000px;}
.w4{width:676.410000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:6.840000px;}
.xb{left:8.100000px;}
.x7{left:21.420000px;}
.x8{left:45.720000px;}
.x6{left:50.940000px;}
.x5{left:75.465000px;}
.x2{left:108.035987px;}
.x10{left:109.476000px;}
.xa{left:124.595987px;}
.x13{left:135.035987px;}
.x14{left:162.029987px;}
.x4{left:179.310000px;}
.x12{left:203.610000px;}
.x9{left:227.369987px;}
.xd{left:233.130000px;}
.xc{left:310.575000px;}
.xe{left:353.055000px;}
.x1{left:366.914987px;}
.xf{left:565.665000px;}
.x3{left:735.449987px;}
.x15{left:769.679987px;}
.x16{left:785.339987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.271467pt;}
.lse{letter-spacing:-0.235733pt;}
.ls3{letter-spacing:-0.230400pt;}
.lsf{letter-spacing:-0.208000pt;}
.ls5{letter-spacing:-0.153600pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.069333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.051200pt;}
.lsd{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.240533pt;}
.lsb{letter-spacing:0.480000pt;}
.lsc{letter-spacing:52.730027pt;}
.ls9{letter-spacing:56.891307pt;}
.ls0{letter-spacing:751.770027pt;}
.ls10{letter-spacing:751.898027pt;}
.ls4{letter-spacing:752.481707pt;}
.wsc{word-spacing:-58.880000pt;}
.ws8{word-spacing:-53.120000pt;}
.ws9{word-spacing:-21.280000pt;}
.wsb{word-spacing:-21.072000pt;}
.wsa{word-spacing:-21.044267pt;}
.ws1{word-spacing:-14.771200pt;}
.ws2{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.650667pt;}
.ws6{word-spacing:-14.592000pt;}
.ws4{word-spacing:-14.566400pt;}
.ws3{word-spacing:-14.489600pt;}
.ws5{word-spacing:-14.448533pt;}
.ws0{word-spacing:0.000000pt;}
._5{margin-left:-12.278613pt;}
._8{margin-left:-11.030187pt;}
._6{margin-left:-9.226667pt;}
._7{margin-left:-5.625173pt;}
._b{margin-left:-3.709440pt;}
._c{margin-left:-2.805760pt;}
._1{margin-left:-1.335040pt;}
._0{width:1.331200pt;}
._15{width:2.321067pt;}
._1d{width:3.255893pt;}
._13{width:4.180480pt;}
._14{width:5.480533pt;}
._19{width:6.401280pt;}
._12{width:7.576320pt;}
._a{width:9.676800pt;}
._1a{width:10.892800pt;}
._f{width:12.070400pt;}
._10{width:12.960853pt;}
._16{width:16.250880pt;}
._1e{width:17.369600pt;}
._9{width:18.292480pt;}
._1b{width:19.253760pt;}
._1c{width:20.155307pt;}
._11{width:29.086720pt;}
._3{width:30.080000pt;}
._18{width:32.089600pt;}
._17{width:33.073920pt;}
._d{width:53.050880pt;}
._e{width:53.973760pt;}
._2{width:764.426667pt;}
._4{width:1144.586667pt;}
.fs1{font-size:48.000000pt;}
.fsa{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs9{font-size:85.120000pt;}
.fs8{font-size:106.880000pt;}
.fs2{font-size:128.000000pt;}
.fs3{font-size:133.120000pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:6.240000pt;}
.y23{bottom:6.400000pt;}
.y31{bottom:6.440000pt;}
.y3a{bottom:7.200000pt;}
.y38{bottom:11.520000pt;}
.y2c{bottom:14.400000pt;}
.y28{bottom:19.040000pt;}
.y22{bottom:26.880000pt;}
.y46{bottom:31.360000pt;}
.y2b{bottom:34.720000pt;}
.y2a{bottom:45.440000pt;}
.y21{bottom:47.200000pt;}
.y2{bottom:50.880000pt;}
.y15{bottom:62.272000pt;}
.y14{bottom:90.112000pt;}
.y79{bottom:111.712000pt;}
.ya1{bottom:123.872000pt;}
.y7b{bottom:127.712000pt;}
.y72{bottom:142.906667pt;}
.ya0{bottom:145.946667pt;}
.y7a{bottom:152.346667pt;}
.y71{bottom:163.386667pt;}
.y9f{bottom:167.866667pt;}
.y70{bottom:183.866667pt;}
.y9e{bottom:189.786667pt;}
.y9d{bottom:211.866667pt;}
.y6f{bottom:212.346667pt;}
.y10{bottom:213.146667pt;}
.y6e{bottom:232.826667pt;}
.y9c{bottom:233.786667pt;}
.yf{bottom:242.586667pt;}
.y6d{bottom:253.306667pt;}
.y9b{bottom:255.706667pt;}
.ye{bottom:266.586667pt;}
.y6c{bottom:273.786667pt;}
.y9a{bottom:277.786667pt;}
.yd{bottom:290.586667pt;}
.y26{bottom:294.106667pt;}
.y99{bottom:299.746667pt;}
.yc{bottom:319.866667pt;}
.y25{bottom:321.666667pt;}
.y6b{bottom:322.626667pt;}
.yc0{bottom:334.626667pt;}
.y41{bottom:335.906667pt;}
.y6a{bottom:343.106667pt;}
.y98{bottom:343.746667pt;}
.y6{bottom:346.786667pt;}
.yb{bottom:348.346667pt;}
.y40{bottom:357.026667pt;}
.ybf{bottom:364.066667pt;}
.y97{bottom:365.666667pt;}
.y69{bottom:371.586667pt;}
.y3f{bottom:378.146667pt;}
.ybe{bottom:385.346667pt;}
.y96{bottom:387.586667pt;}
.y3e{bottom:399.266667pt;}
.y68{bottom:400.066667pt;}
.ybd{bottom:406.786667pt;}
.y95{bottom:409.506667pt;}
.ya{bottom:413.946667pt;}
.y3d{bottom:420.386667pt;}
.y67{bottom:420.546667pt;}
.ybc{bottom:428.066667pt;}
.y94{bottom:431.586667pt;}
.y3c{bottom:441.506667pt;}
.y66{bottom:449.026667pt;}
.ybb{bottom:449.506667pt;}
.y93{bottom:453.506667pt;}
.y9{bottom:459.106667pt;}
.y3b{bottom:462.626667pt;}
.yba{bottom:470.786667pt;}
.y92{bottom:475.426667pt;}
.y65{bottom:477.346667pt;}
.yb9{bottom:492.066667pt;}
.y91{bottom:497.506667pt;}
.y64{bottom:497.826667pt;}
.y8{bottom:504.066667pt;}
.yb8{bottom:513.506667pt;}
.y90{bottom:519.426667pt;}
.y24{bottom:523.426667pt;}
.y63{bottom:526.306667pt;}
.yb7{bottom:534.786667pt;}
.y8f{bottom:541.373333pt;}
.y20{bottom:545.693333pt;}
.y62{bottom:546.813333pt;}
.y7{bottom:549.186667pt;}
.yb6{bottom:556.253333pt;}
.y8e{bottom:563.453333pt;}
.y61{bottom:575.293333pt;}
.yb5{bottom:577.533333pt;}
.y8d{bottom:585.373333pt;}
.y60{bottom:595.773333pt;}
.y4d{bottom:603.773333pt;}
.yb4{bottom:606.813333pt;}
.y8c{bottom:607.293333pt;}
.y39{bottom:615.933333pt;}
.y5f{bottom:616.253333pt;}
.y4c{bottom:625.853333pt;}
.yb3{bottom:628.253333pt;}
.y8b{bottom:629.373333pt;}
.y5e{bottom:636.573333pt;}
.y37{bottom:637.853333pt;}
.yb2{bottom:649.533333pt;}
.y8a{bottom:651.293333pt;}
.y4b{bottom:660.893333pt;}
.y36{bottom:664.093333pt;}
.y5d{bottom:665.053333pt;}
.yb1{bottom:670.973333pt;}
.y89{bottom:673.213333pt;}
.y35{bottom:685.213333pt;}
.y5c{bottom:685.533333pt;}
.yb0{bottom:694.173333pt;}
.y88{bottom:695.293333pt;}
.y4a{bottom:696.093333pt;}
.y5b{bottom:706.013333pt;}
.y34{bottom:706.333333pt;}
.y87{bottom:717.213333pt;}
.y5a{bottom:726.493333pt;}
.y33{bottom:727.453333pt;}
.yaf{bottom:730.013333pt;}
.y86{bottom:739.133333pt;}
.y1f{bottom:741.853333pt;}
.y59{bottom:746.973333pt;}
.y32{bottom:748.573333pt;}
.yae{bottom:759.453333pt;}
.y85{bottom:761.053333pt;}
.y58{bottom:767.453333pt;}
.y1e{bottom:768.893333pt;}
.y30{bottom:769.693333pt;}
.y49{bottom:772.093333pt;}
.yad{bottom:780.773333pt;}
.y84{bottom:783.173333pt;}
.y57{bottom:787.813333pt;}
.y2f{bottom:790.853333pt;}
.y1d{bottom:797.093333pt;}
.yac{bottom:802.053333pt;}
.y83{bottom:805.093333pt;}
.y48{bottom:807.333333pt;}
.y2e{bottom:811.973333pt;}
.y56{bottom:816.293333pt;}
.yab{bottom:823.493333pt;}
.y1c{bottom:825.093333pt;}
.y82{bottom:827.013333pt;}
.y2d{bottom:833.093333pt;}
.y55{bottom:836.773333pt;}
.y47{bottom:842.373333pt;}
.yaa{bottom:844.773333pt;}
.y81{bottom:849.093333pt;}
.y1b{bottom:853.093333pt;}
.y54{bottom:857.253333pt;}
.y80{bottom:871.013333pt;}
.ya9{bottom:874.213333pt;}
.y29{bottom:874.693333pt;}
.y45{bottom:877.573333pt;}
.y53{bottom:877.733333pt;}
.y1a{bottom:881.093333pt;}
.y7f{bottom:892.933333pt;}
.ya8{bottom:895.493333pt;}
.y52{bottom:898.213333pt;}
.y77{bottom:899.493333pt;}
.y5{bottom:904.453333pt;}
.y19{bottom:909.093333pt;}
.y7e{bottom:915.013333pt;}
.ya7{bottom:916.773333pt;}
.y51{bottom:918.693333pt;}
.y76{bottom:919.973333pt;}
.ya5{bottom:922.693333pt;}
.y27{bottom:934.853333pt;}
.y7d{bottom:936.933333pt;}
.y18{bottom:937.093333pt;}
.y44{bottom:937.733333pt;}
.ya6{bottom:938.213333pt;}
.y50{bottom:939.013333pt;}
.y4{bottom:940.293333pt;}
.y75{bottom:940.453333pt;}
.ya4{bottom:944.773333pt;}
.y78{bottom:952.933333pt;}
.y7c{bottom:958.853333pt;}
.y4f{bottom:959.493333pt;}
.y17{bottom:965.093333pt;}
.ya3{bottom:966.693333pt;}
.y74{bottom:968.773333pt;}
.y43{bottom:977.733333pt;}
.y4e{bottom:982.693333pt;}
.y16{bottom:986.693333pt;}
.ya2{bottom:988.613333pt;}
.y73{bottom:989.253333pt;}
.y3{bottom:995.653333pt;}
.y13{bottom:1007.013333pt;}
.y12{bottom:1024.960000pt;}
.y11{bottom:1042.720000pt;}
.y1{bottom:1060.480000pt;}
.h19{height:20.320000pt;}
.h14{height:20.480000pt;}
.h15{height:20.512000pt;}
.h17{height:21.280000pt;}
.h16{height:25.600000pt;}
.h18{height:37.120000pt;}
.h13{height:40.960000pt;}
.h3{height:43.593750pt;}
.hf{height:43.642500pt;}
.h6{height:44.505000pt;}
.h1b{height:45.440000pt;}
.he{height:45.626250pt;}
.h10{height:46.400000pt;}
.h11{height:49.593750pt;}
.h2{height:53.475000pt;}
.hc{height:58.125000pt;}
.h12{height:59.520000pt;}
.ha{height:60.288000pt;}
.hd{height:61.280000pt;}
.hb{height:62.775000pt;}
.h1c{height:65.959688pt;}
.h9{height:68.006250pt;}
.h1a{height:82.821562pt;}
.h5{height:99.187500pt;}
.h8{height:106.629120pt;}
.h4{height:116.250000pt;}
.h7{height:586.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:82.240000pt;}
.w9{width:105.952000pt;}
.w8{width:109.760000pt;}
.w6{width:178.586667pt;}
.wa{width:188.346667pt;}
.wb{width:194.466667pt;}
.w7{width:421.213333pt;}
.w3{width:474.173333pt;}
.wd{width:516.933333pt;}
.w5{width:600.613333pt;}
.w4{width:601.253333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.080000pt;}
.xb{left:7.200000pt;}
.x7{left:19.040000pt;}
.x8{left:40.640000pt;}
.x6{left:45.280000pt;}
.x5{left:67.080000pt;}
.x2{left:96.031988pt;}
.x10{left:97.312000pt;}
.xa{left:110.751988pt;}
.x13{left:120.031988pt;}
.x14{left:144.026655pt;}
.x4{left:159.386667pt;}
.x12{left:180.986667pt;}
.x9{left:202.106655pt;}
.xd{left:207.226667pt;}
.xc{left:276.066667pt;}
.xe{left:313.826667pt;}
.x1{left:326.146655pt;}
.xf{left:502.813333pt;}
.x3{left:653.733322pt;}
.x15{left:684.159988pt;}
.x16{left:698.079988pt;}
}




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