
    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_351cd7a4c32625fb4950da94.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_bbf3b65ab7a91e9b0c16fdea.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_6ba6a6abb19328000f9eb113.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_2671672dceb891b276e43b9a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_0efe098d0991b611f778a59b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.853027;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_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v2{vertical-align:-20.880000px;}
.v6{vertical-align:-18.000000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v5{vertical-align:15.120000px;}
.v7{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls29{letter-spacing:-3.180000px;}
.ls1d{letter-spacing:-1.740000px;}
.ls12{letter-spacing:-1.134000px;}
.ls13{letter-spacing:-0.960000px;}
.ls2a{letter-spacing:-0.948000px;}
.lsb{letter-spacing:-0.786000px;}
.ls27{letter-spacing:-0.546000px;}
.ls2b{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.463800px;}
.ls11{letter-spacing:-0.414000px;}
.lsd{letter-spacing:-0.326400px;}
.ls1c{letter-spacing:-0.302400px;}
.ls9{letter-spacing:-0.292200px;}
.ls1a{letter-spacing:-0.240600px;}
.ls6{letter-spacing:-0.132600px;}
.lsc{letter-spacing:-0.115800px;}
.lse{letter-spacing:-0.107400px;}
.ls25{letter-spacing:-0.058320px;}
.ls24{letter-spacing:-0.038160px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.038880px;}
.ls22{letter-spacing:0.066240px;}
.ls10{letter-spacing:0.140400px;}
.ls8{letter-spacing:0.150000px;}
.ls16{letter-spacing:0.174000px;}
.ls1{letter-spacing:0.174240px;}
.ls17{letter-spacing:0.184080px;}
.lsa{letter-spacing:0.190200px;}
.ls26{letter-spacing:0.282000px;}
.ls1b{letter-spacing:0.306000px;}
.ls1e{letter-spacing:0.417600px;}
.ls19{letter-spacing:0.426000px;}
.ls0{letter-spacing:0.427680px;}
.ls18{letter-spacing:0.447840px;}
.ls2d{letter-spacing:0.479520px;}
.ls3{letter-spacing:0.617760px;}
.ls2e{letter-spacing:0.660000px;}
.ls28{letter-spacing:1.002000px;}
.ls21{letter-spacing:1.614240px;}
.ls15{letter-spacing:2.106720px;}
.ls1f{letter-spacing:3.054000px;}
.ls14{letter-spacing:5.706720px;}
.ls2c{letter-spacing:12.186720px;}
.ls20{letter-spacing:17.946720px;}
.lsf{letter-spacing:21.546720px;}
.ls2{letter-spacing:38.106720px;}
.ls23{letter-spacing:42.426720px;}
.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;}
}
.wsd{word-spacing:-38.880000px;}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws15{word-spacing:-14.165760px;}
.wsa{word-spacing:-13.646160px;}
.ws6{word-spacing:-13.505760px;}
.wsf{word-spacing:-13.467600px;}
.ws10{word-spacing:-13.447440px;}
.ws8{word-spacing:-13.398360px;}
.ws7{word-spacing:-13.389960px;}
.ws14{word-spacing:-10.902240px;}
.ws12{word-spacing:-9.788880px;}
.wse{word-spacing:-9.204480px;}
.ws4{word-spacing:-9.145560px;}
.ws11{word-spacing:-9.068880px;}
.ws5{word-spacing:-8.786880px;}
.wsb{word-spacing:-8.484480px;}
.wsc{word-spacing:-7.046880px;}
.ws13{word-spacing:-5.606880px;}
.ws9{word-spacing:0.000000px;}
._1d{margin-left:-533.278560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-295.659120px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._12{margin-left:-233.850240px;}
._17{margin-left:-229.991040px;}
._16{margin-left:-222.405360px;}
._f{margin-left:-202.866240px;}
._18{margin-left:-200.514720px;}
._21{margin-left:-196.738560px;}
._20{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._26{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._25{margin-left:-145.392000px;}
._10{margin-left:-142.046400px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._11{margin-left:-116.242560px;}
._24{margin-left:-109.266240px;}
._1c{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-82.330560px;}
._22{margin-left:-80.367360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.492560px;}
._23{margin-left:-35.130240px;}
._19{margin-left:-32.468640px;}
._3c{margin-left:-5.619840px;}
._29{margin-left:-4.292160px;}
._27{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._28{width:1.317240px;}
._2c{width:2.446080px;}
._2e{width:3.583080px;}
._2f{width:4.668840px;}
._30{width:5.706840px;}
._32{width:7.290720px;}
._31{width:8.665200px;}
._34{width:10.276200px;}
._2d{width:11.928240px;}
._33{width:14.992200px;}
._3f{width:16.001640px;}
._39{width:17.662320px;}
._38{width:18.764640px;}
._3b{width:20.232720px;}
._3a{width:21.247920px;}
._35{width:22.529520px;}
._37{width:25.637040px;}
._36{width:26.772480px;}
._3e{width:30.537360px;}
._3d{width:36.690120px;}
._2a{width:46.635120px;}
._2b{width:48.164160px;}
._40{width:66.453120px;}
._41{width:146.770560px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs2{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y69{bottom:6.660000px;}
.y88{bottom:7.380000px;}
.y7c{bottom:8.100000px;}
.y72{bottom:11.880000px;}
.y84{bottom:16.380000px;}
.y67{bottom:17.460000px;}
.y70{bottom:17.640000px;}
.y6{bottom:61.380000px;}
.y79{bottom:89.820000px;}
.y65{bottom:91.260000px;}
.yac{bottom:91.800000px;}
.y30{bottom:92.160000px;}
.ya9{bottom:93.600000px;}
.y78{bottom:110.880000px;}
.y64{bottom:112.320000px;}
.yab{bottom:112.860000px;}
.y2f{bottom:113.220000px;}
.ya8{bottom:114.660000px;}
.yaa{bottom:129.960000px;}
.y77{bottom:131.940000px;}
.y63{bottom:133.380000px;}
.y2e{bottom:134.280000px;}
.ya7{bottom:135.720000px;}
.y76{bottom:153.030000px;}
.y62{bottom:154.470000px;}
.y2d{bottom:155.370000px;}
.ya6{bottom:156.810000px;}
.y75{bottom:174.090000px;}
.y61{bottom:175.530000px;}
.y2c{bottom:176.430000px;}
.ya5{bottom:177.870000px;}
.y74{bottom:195.150000px;}
.y60{bottom:196.590000px;}
.y2b{bottom:197.490000px;}
.ya4{bottom:198.930000px;}
.y73{bottom:216.030000px;}
.y5f{bottom:217.650000px;}
.y2a{bottom:218.550000px;}
.ya3{bottom:219.990000px;}
.y6f{bottom:230.430000px;}
.y5e{bottom:238.710000px;}
.y29{bottom:239.610000px;}
.ya2{bottom:241.050000px;}
.y71{bottom:252.390000px;}
.y5d{bottom:259.770000px;}
.y28{bottom:260.670000px;}
.ya1{bottom:262.110000px;}
.y6e{bottom:280.110000px;}
.y5c{bottom:280.830000px;}
.y27{bottom:281.730000px;}
.ya0{bottom:283.170000px;}
.y6d{bottom:301.170000px;}
.y5b{bottom:301.890000px;}
.y26{bottom:302.790000px;}
.y9f{bottom:304.230000px;}
.y6c{bottom:322.230000px;}
.y5a{bottom:322.950000px;}
.y25{bottom:323.850000px;}
.y9e{bottom:325.290000px;}
.y6b{bottom:343.290000px;}
.y59{bottom:344.010000px;}
.y24{bottom:344.910000px;}
.y9d{bottom:346.350000px;}
.y6a{bottom:364.350000px;}
.y58{bottom:365.070000px;}
.y23{bottom:365.970000px;}
.y9c{bottom:367.410000px;}
.y66{bottom:378.750000px;}
.y57{bottom:386.130000px;}
.y22{bottom:387.030000px;}
.y9b{bottom:388.470000px;}
.y68{bottom:400.575000px;}
.y56{bottom:407.235000px;}
.y21{bottom:408.135000px;}
.y9a{bottom:409.575000px;}
.y55{bottom:428.295000px;}
.y20{bottom:429.195000px;}
.y99{bottom:430.635000px;}
.y54{bottom:449.355000px;}
.y1f{bottom:450.255000px;}
.y98{bottom:451.695000px;}
.y53{bottom:470.415000px;}
.y1e{bottom:471.315000px;}
.y97{bottom:472.755000px;}
.y52{bottom:491.475000px;}
.y1d{bottom:492.375000px;}
.y96{bottom:493.815000px;}
.y51{bottom:512.535000px;}
.y1c{bottom:513.435000px;}
.y95{bottom:514.875000px;}
.y50{bottom:533.595000px;}
.y1b{bottom:534.495000px;}
.y94{bottom:535.935000px;}
.y4f{bottom:554.655000px;}
.y1a{bottom:555.555000px;}
.y93{bottom:556.995000px;}
.y4e{bottom:575.715000px;}
.y19{bottom:576.615000px;}
.y92{bottom:578.055000px;}
.y4d{bottom:596.775000px;}
.y18{bottom:597.675000px;}
.y91{bottom:599.115000px;}
.y4c{bottom:617.835000px;}
.y90{bottom:620.175000px;}
.y4b{bottom:638.895000px;}
.y8f{bottom:641.235000px;}
.y17{bottom:642.135000px;}
.y4a{bottom:659.805000px;}
.y8e{bottom:662.325000px;}
.y16{bottom:672.045000px;}
.y49{bottom:680.865000px;}
.y8d{bottom:683.385000px;}
.y15{bottom:693.105000px;}
.y48{bottom:701.925000px;}
.y8c{bottom:704.445000px;}
.y14{bottom:714.165000px;}
.y47{bottom:722.985000px;}
.y8b{bottom:725.505000px;}
.y13{bottom:735.225000px;}
.y46{bottom:744.045000px;}
.y8a{bottom:746.565000px;}
.y12{bottom:756.285000px;}
.y89{bottom:761.685000px;}
.y45{bottom:765.105000px;}
.y11{bottom:777.345000px;}
.y87{bottom:784.185000px;}
.y44{bottom:786.165000px;}
.y10{bottom:798.405000px;}
.y86{bottom:806.685000px;}
.y43{bottom:807.225000px;}
.yf{bottom:819.465000px;}
.y85{bottom:827.745000px;}
.y42{bottom:828.285000px;}
.ye{bottom:840.525000px;}
.y41{bottom:849.345000px;}
.y83{bottom:852.225000px;}
.yd{bottom:861.585000px;}
.y40{bottom:870.405000px;}
.yc{bottom:884.805000px;}
.y3f{bottom:891.465000px;}
.y82{bottom:902.670000px;}
.yb{bottom:911.130000px;}
.y3e{bottom:912.570000px;}
.y81{bottom:923.730000px;}
.ya{bottom:927.870000px;}
.y3d{bottom:933.630000px;}
.y80{bottom:944.790000px;}
.y9{bottom:950.190000px;}
.y3c{bottom:954.690000px;}
.y7f{bottom:965.850000px;}
.y8{bottom:975.390000px;}
.y3b{bottom:975.750000px;}
.y7e{bottom:980.250000px;}
.y3a{bottom:996.810000px;}
.y7d{bottom:1002.750000px;}
.y7{bottom:1009.050000px;}
.y39{bottom:1017.870000px;}
.y7b{bottom:1025.250000px;}
.y38{bottom:1038.930000px;}
.y7a{bottom:1048.470000px;}
.y5{bottom:1049.190000px;}
.y37{bottom:1059.990000px;}
.y36{bottom:1081.050000px;}
.y4{bottom:1081.410000px;}
.y35{bottom:1102.110000px;}
.y3{bottom:1113.630000px;}
.y34{bottom:1123.170000px;}
.y33{bottom:1144.230000px;}
.y2{bottom:1145.670000px;}
.y32{bottom:1165.320000px;}
.y1{bottom:1179.720000px;}
.y31{bottom:1193.220000px;}
.hb{height:21.060000px;}
.he{height:22.500000px;}
.hd{height:25.920000px;}
.h7{height:38.671172px;}
.hf{height:40.500000px;}
.ha{height:42.876000px;}
.hc{height:43.020000px;}
.h8{height:59.439023px;}
.h10{height:59.551172px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h9{height:71.613281px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:63.000000px;}
.w4{width:72.036000px;}
.we{width:76.716000px;}
.w8{width:85.176000px;}
.wd{width:86.040000px;}
.w9{width:90.720000px;}
.w7{width:94.680000px;}
.wf{width:97.740000px;}
.w5{width:102.456000px;}
.w10{width:107.856000px;}
.wb{width:116.496000px;}
.wa{width:116.856000px;}
.w3{width:124.560000px;}
.wc{width:174.090000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.100000px;}
.x17{left:22.905000px;}
.x12{left:52.560000px;}
.x6{left:53.999987px;}
.x8{left:75.599987px;}
.x18{left:80.999987px;}
.x7{left:108.035987px;}
.xc{left:170.130000px;}
.x11{left:175.350000px;}
.x5{left:176.969987px;}
.x3{left:272.234987px;}
.x9{left:307.875000px;}
.xd{left:335.595000px;}
.x13{left:349.455000px;}
.x2{left:350.534987px;}
.x4{left:419.114987px;}
.xe{left:430.275000px;}
.xb{left:432.435000px;}
.x14{left:435.495000px;}
.x1{left:479.264987px;}
.x15{left:512.205000px;}
.xf{left:515.445000px;}
.x10{left:606.165000px;}
.x16{left:609.945000px;}
.x19{left:838.439987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v6{vertical-align:-16.000000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v5{vertical-align:13.440000pt;}
.v7{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls29{letter-spacing:-2.826667pt;}
.ls1d{letter-spacing:-1.546667pt;}
.ls12{letter-spacing:-1.008000pt;}
.ls13{letter-spacing:-0.853333pt;}
.ls2a{letter-spacing:-0.842667pt;}
.lsb{letter-spacing:-0.698667pt;}
.ls27{letter-spacing:-0.485333pt;}
.ls2b{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.412267pt;}
.ls11{letter-spacing:-0.368000pt;}
.lsd{letter-spacing:-0.290133pt;}
.ls1c{letter-spacing:-0.268800pt;}
.ls9{letter-spacing:-0.259733pt;}
.ls1a{letter-spacing:-0.213867pt;}
.ls6{letter-spacing:-0.117867pt;}
.lsc{letter-spacing:-0.102933pt;}
.lse{letter-spacing:-0.095467pt;}
.ls25{letter-spacing:-0.051840pt;}
.ls24{letter-spacing:-0.033920pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.034560pt;}
.ls22{letter-spacing:0.058880pt;}
.ls10{letter-spacing:0.124800pt;}
.ls8{letter-spacing:0.133333pt;}
.ls16{letter-spacing:0.154667pt;}
.ls1{letter-spacing:0.154880pt;}
.ls17{letter-spacing:0.163627pt;}
.lsa{letter-spacing:0.169067pt;}
.ls26{letter-spacing:0.250667pt;}
.ls1b{letter-spacing:0.272000pt;}
.ls1e{letter-spacing:0.371200pt;}
.ls19{letter-spacing:0.378667pt;}
.ls0{letter-spacing:0.380160pt;}
.ls18{letter-spacing:0.398080pt;}
.ls2d{letter-spacing:0.426240pt;}
.ls3{letter-spacing:0.549120pt;}
.ls2e{letter-spacing:0.586667pt;}
.ls28{letter-spacing:0.890667pt;}
.ls21{letter-spacing:1.434880pt;}
.ls15{letter-spacing:1.872640pt;}
.ls1f{letter-spacing:2.714667pt;}
.ls14{letter-spacing:5.072640pt;}
.ls2c{letter-spacing:10.832640pt;}
.ls20{letter-spacing:15.952640pt;}
.lsf{letter-spacing:19.152640pt;}
.ls2{letter-spacing:33.872640pt;}
.ls23{letter-spacing:37.712640pt;}
.wsd{word-spacing:-34.560000pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws15{word-spacing:-12.591787pt;}
.wsa{word-spacing:-12.129920pt;}
.ws6{word-spacing:-12.005120pt;}
.wsf{word-spacing:-11.971200pt;}
.ws10{word-spacing:-11.953280pt;}
.ws8{word-spacing:-11.909653pt;}
.ws7{word-spacing:-11.902187pt;}
.ws14{word-spacing:-9.690880pt;}
.ws12{word-spacing:-8.701227pt;}
.wse{word-spacing:-8.181760pt;}
.ws4{word-spacing:-8.129387pt;}
.ws11{word-spacing:-8.061227pt;}
.ws5{word-spacing:-7.810560pt;}
.wsb{word-spacing:-7.541760pt;}
.wsc{word-spacing:-6.263893pt;}
.ws13{word-spacing:-4.983893pt;}
.ws9{word-spacing:0.000000pt;}
._1d{margin-left:-474.025387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-262.808107pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._12{margin-left:-207.866880pt;}
._17{margin-left:-204.436480pt;}
._16{margin-left:-197.693653pt;}
._f{margin-left:-180.325547pt;}
._18{margin-left:-178.235307pt;}
._21{margin-left:-174.878720pt;}
._20{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._26{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._25{margin-left:-129.237333pt;}
._10{margin-left:-126.263467pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._11{margin-left:-103.326720pt;}
._24{margin-left:-97.125547pt;}
._1c{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-73.182720pt;}
._22{margin-left:-71.437653pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.993387pt;}
._23{margin-left:-31.226880pt;}
._19{margin-left:-28.861013pt;}
._3c{margin-left:-4.995413pt;}
._29{margin-left:-3.815253pt;}
._27{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._28{width:1.170880pt;}
._2c{width:2.174293pt;}
._2e{width:3.184960pt;}
._2f{width:4.150080pt;}
._30{width:5.072747pt;}
._32{width:6.480640pt;}
._31{width:7.702400pt;}
._34{width:9.134400pt;}
._2d{width:10.602880pt;}
._33{width:13.326400pt;}
._3f{width:14.223680pt;}
._39{width:15.699840pt;}
._38{width:16.679680pt;}
._3b{width:17.984640pt;}
._3a{width:18.887040pt;}
._35{width:20.026240pt;}
._37{width:22.788480pt;}
._36{width:23.797760pt;}
._3e{width:27.144320pt;}
._3d{width:32.613440pt;}
._2a{width:41.453440pt;}
._2b{width:42.812587pt;}
._40{width:59.069440pt;}
._41{width:130.462720pt;}
.fs2{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y69{bottom:5.920000pt;}
.y88{bottom:6.560000pt;}
.y7c{bottom:7.200000pt;}
.y72{bottom:10.560000pt;}
.y84{bottom:14.560000pt;}
.y67{bottom:15.520000pt;}
.y70{bottom:15.680000pt;}
.y6{bottom:54.560000pt;}
.y79{bottom:79.840000pt;}
.y65{bottom:81.120000pt;}
.yac{bottom:81.600000pt;}
.y30{bottom:81.920000pt;}
.ya9{bottom:83.200000pt;}
.y78{bottom:98.560000pt;}
.y64{bottom:99.840000pt;}
.yab{bottom:100.320000pt;}
.y2f{bottom:100.640000pt;}
.ya8{bottom:101.920000pt;}
.yaa{bottom:115.520000pt;}
.y77{bottom:117.280000pt;}
.y63{bottom:118.560000pt;}
.y2e{bottom:119.360000pt;}
.ya7{bottom:120.640000pt;}
.y76{bottom:136.026667pt;}
.y62{bottom:137.306667pt;}
.y2d{bottom:138.106667pt;}
.ya6{bottom:139.386667pt;}
.y75{bottom:154.746667pt;}
.y61{bottom:156.026667pt;}
.y2c{bottom:156.826667pt;}
.ya5{bottom:158.106667pt;}
.y74{bottom:173.466667pt;}
.y60{bottom:174.746667pt;}
.y2b{bottom:175.546667pt;}
.ya4{bottom:176.826667pt;}
.y73{bottom:192.026667pt;}
.y5f{bottom:193.466667pt;}
.y2a{bottom:194.266667pt;}
.ya3{bottom:195.546667pt;}
.y6f{bottom:204.826667pt;}
.y5e{bottom:212.186667pt;}
.y29{bottom:212.986667pt;}
.ya2{bottom:214.266667pt;}
.y71{bottom:224.346667pt;}
.y5d{bottom:230.906667pt;}
.y28{bottom:231.706667pt;}
.ya1{bottom:232.986667pt;}
.y6e{bottom:248.986667pt;}
.y5c{bottom:249.626667pt;}
.y27{bottom:250.426667pt;}
.ya0{bottom:251.706667pt;}
.y6d{bottom:267.706667pt;}
.y5b{bottom:268.346667pt;}
.y26{bottom:269.146667pt;}
.y9f{bottom:270.426667pt;}
.y6c{bottom:286.426667pt;}
.y5a{bottom:287.066667pt;}
.y25{bottom:287.866667pt;}
.y9e{bottom:289.146667pt;}
.y6b{bottom:305.146667pt;}
.y59{bottom:305.786667pt;}
.y24{bottom:306.586667pt;}
.y9d{bottom:307.866667pt;}
.y6a{bottom:323.866667pt;}
.y58{bottom:324.506667pt;}
.y23{bottom:325.306667pt;}
.y9c{bottom:326.586667pt;}
.y66{bottom:336.666667pt;}
.y57{bottom:343.226667pt;}
.y22{bottom:344.026667pt;}
.y9b{bottom:345.306667pt;}
.y68{bottom:356.066667pt;}
.y56{bottom:361.986667pt;}
.y21{bottom:362.786667pt;}
.y9a{bottom:364.066667pt;}
.y55{bottom:380.706667pt;}
.y20{bottom:381.506667pt;}
.y99{bottom:382.786667pt;}
.y54{bottom:399.426667pt;}
.y1f{bottom:400.226667pt;}
.y98{bottom:401.506667pt;}
.y53{bottom:418.146667pt;}
.y1e{bottom:418.946667pt;}
.y97{bottom:420.226667pt;}
.y52{bottom:436.866667pt;}
.y1d{bottom:437.666667pt;}
.y96{bottom:438.946667pt;}
.y51{bottom:455.586667pt;}
.y1c{bottom:456.386667pt;}
.y95{bottom:457.666667pt;}
.y50{bottom:474.306667pt;}
.y1b{bottom:475.106667pt;}
.y94{bottom:476.386667pt;}
.y4f{bottom:493.026667pt;}
.y1a{bottom:493.826667pt;}
.y93{bottom:495.106667pt;}
.y4e{bottom:511.746667pt;}
.y19{bottom:512.546667pt;}
.y92{bottom:513.826667pt;}
.y4d{bottom:530.466667pt;}
.y18{bottom:531.266667pt;}
.y91{bottom:532.546667pt;}
.y4c{bottom:549.186667pt;}
.y90{bottom:551.266667pt;}
.y4b{bottom:567.906667pt;}
.y8f{bottom:569.986667pt;}
.y17{bottom:570.786667pt;}
.y4a{bottom:586.493333pt;}
.y8e{bottom:588.733333pt;}
.y16{bottom:597.373333pt;}
.y49{bottom:605.213333pt;}
.y8d{bottom:607.453333pt;}
.y15{bottom:616.093333pt;}
.y48{bottom:623.933333pt;}
.y8c{bottom:626.173333pt;}
.y14{bottom:634.813333pt;}
.y47{bottom:642.653333pt;}
.y8b{bottom:644.893333pt;}
.y13{bottom:653.533333pt;}
.y46{bottom:661.373333pt;}
.y8a{bottom:663.613333pt;}
.y12{bottom:672.253333pt;}
.y89{bottom:677.053333pt;}
.y45{bottom:680.093333pt;}
.y11{bottom:690.973333pt;}
.y87{bottom:697.053333pt;}
.y44{bottom:698.813333pt;}
.y10{bottom:709.693333pt;}
.y86{bottom:717.053333pt;}
.y43{bottom:717.533333pt;}
.yf{bottom:728.413333pt;}
.y85{bottom:735.773333pt;}
.y42{bottom:736.253333pt;}
.ye{bottom:747.133333pt;}
.y41{bottom:754.973333pt;}
.y83{bottom:757.533333pt;}
.yd{bottom:765.853333pt;}
.y40{bottom:773.693333pt;}
.yc{bottom:786.493333pt;}
.y3f{bottom:792.413333pt;}
.y82{bottom:802.373333pt;}
.yb{bottom:809.893333pt;}
.y3e{bottom:811.173333pt;}
.y81{bottom:821.093333pt;}
.ya{bottom:824.773333pt;}
.y3d{bottom:829.893333pt;}
.y80{bottom:839.813333pt;}
.y9{bottom:844.613333pt;}
.y3c{bottom:848.613333pt;}
.y7f{bottom:858.533333pt;}
.y8{bottom:867.013333pt;}
.y3b{bottom:867.333333pt;}
.y7e{bottom:871.333333pt;}
.y3a{bottom:886.053333pt;}
.y7d{bottom:891.333333pt;}
.y7{bottom:896.933333pt;}
.y39{bottom:904.773333pt;}
.y7b{bottom:911.333333pt;}
.y38{bottom:923.493333pt;}
.y7a{bottom:931.973333pt;}
.y5{bottom:932.613333pt;}
.y37{bottom:942.213333pt;}
.y36{bottom:960.933333pt;}
.y4{bottom:961.253333pt;}
.y35{bottom:979.653333pt;}
.y3{bottom:989.893333pt;}
.y34{bottom:998.373333pt;}
.y33{bottom:1017.093333pt;}
.y2{bottom:1018.373333pt;}
.y32{bottom:1035.840000pt;}
.y1{bottom:1048.640000pt;}
.y31{bottom:1060.640000pt;}
.hb{height:18.720000pt;}
.he{height:20.000000pt;}
.hd{height:23.040000pt;}
.h7{height:34.374375pt;}
.hf{height:36.000000pt;}
.ha{height:38.112000pt;}
.hc{height:38.240000pt;}
.h8{height:52.834688pt;}
.h10{height:52.934375pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h9{height:63.656250pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:56.000000pt;}
.w4{width:64.032000pt;}
.we{width:68.192000pt;}
.w8{width:75.712000pt;}
.wd{width:76.480000pt;}
.w9{width:80.640000pt;}
.w7{width:84.160000pt;}
.wf{width:86.880000pt;}
.w5{width:91.072000pt;}
.w10{width:95.872000pt;}
.wb{width:103.552000pt;}
.wa{width:103.872000pt;}
.w3{width:110.720000pt;}
.wc{width:154.746667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.200000pt;}
.x17{left:20.360000pt;}
.x12{left:46.720000pt;}
.x6{left:47.999988pt;}
.x8{left:67.199988pt;}
.x18{left:71.999988pt;}
.x7{left:96.031988pt;}
.xc{left:151.226667pt;}
.x11{left:155.866667pt;}
.x5{left:157.306655pt;}
.x3{left:241.986655pt;}
.x9{left:273.666667pt;}
.xd{left:298.306667pt;}
.x13{left:310.626667pt;}
.x2{left:311.586655pt;}
.x4{left:372.546655pt;}
.xe{left:382.466667pt;}
.xb{left:384.386667pt;}
.x14{left:387.106667pt;}
.x1{left:426.013322pt;}
.x15{left:455.293333pt;}
.xf{left:458.173333pt;}
.x10{left:538.813333pt;}
.x16{left:542.173333pt;}
.x19{left:745.279988pt;}
}




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