
    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_4e159903e67345aea24c978b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.800293;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_9e2139bc3b58cd84062c346a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.851562;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_b700a748babaaa7df171dc4c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_2ccd0aa9b317f49d1effaf32.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_b05d5f497862cbb8a151d666.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.752000;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_0ed2b075d87f969bcbced65b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_62c0cdcb5fab628668aefe63.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_135e3293621d0aca4d265a7a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_1920896ef1a8e29828d8b03e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.097168;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.003906;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_d81d739f92ed6f00593ebb61.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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;}
.ls1b{letter-spacing:-0.684000px;}
.lsb{letter-spacing:-0.378600px;}
.ls14{letter-spacing:-0.369600px;}
.ls15{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.341400px;}
.ls10{letter-spacing:-0.232800px;}
.ls6{letter-spacing:-0.225600px;}
.ls12{letter-spacing:-0.180000px;}
.ls17{letter-spacing:-0.037440px;}
.ls18{letter-spacing:-0.018720px;}
.ls5{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.028080px;}
.ls1{letter-spacing:0.034560px;}
.ls8{letter-spacing:0.037440px;}
.ls3{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.217440px;}
.ls1a{letter-spacing:0.252720px;}
.ls2{letter-spacing:0.288000px;}
.ls19{letter-spacing:0.341400px;}
.ls13{letter-spacing:0.350400px;}
.lsd{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.369360px;}
.ls1c{letter-spacing:0.378600px;}
.ls11{letter-spacing:0.378720px;}
.lse{letter-spacing:5.580000px;}
.lsf{letter-spacing:8.580000px;}
.ls16{letter-spacing:12.780000px;}
.ls4{letter-spacing:25.740000px;}
.ls7{letter-spacing:32.220000px;}
.ls1d{letter-spacing:211.277280px;}
.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;}
}
.ws10{word-spacing:-21.438600px;}
.ws7{word-spacing:-21.420000px;}
.wsb{word-spacing:-21.410400px;}
.wse{word-spacing:-21.401400px;}
.wsf{word-spacing:-21.312720px;}
.ws4{word-spacing:-21.097440px;}
.ws5{word-spacing:-21.060000px;}
.wsa{word-spacing:-20.880000px;}
.ws6{word-spacing:-20.718600px;}
.wsd{word-spacing:-20.700000px;}
.wsc{word-spacing:-20.690400px;}
.ws0{word-spacing:-19.500960px;}
.ws9{word-spacing:-19.493760px;}
.ws8{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.904000px;}
.ws1{word-spacing:-14.832000px;}
.ws3{word-spacing:0.000000px;}
._24{margin-left:-7.918560px;}
._20{margin-left:-6.456240px;}
._1f{margin-left:-5.391360px;}
._d{margin-left:-4.212000px;}
._c{margin-left:-2.948400px;}
._2{margin-left:-1.432080px;}
._3{width:1.149120px;}
._4{width:2.866080px;}
._13{width:4.296240px;}
._1e{width:5.644080px;}
._b{width:7.076160px;}
._a{width:8.087040px;}
._1a{width:10.024560px;}
._1c{width:11.456640px;}
._14{width:12.804480px;}
._15{width:13.983840px;}
._9{width:15.584400px;}
._21{width:16.878240px;}
._e{width:18.617040px;}
._1b{width:19.658160px;}
._11{width:22.913280px;}
._5{width:24.092640px;}
._6{width:25.187760px;}
._7{width:26.590560px;}
._19{width:27.605040px;}
._10{width:28.725840px;}
._f{width:29.820960px;}
._16{width:31.000320px;}
._17{width:32.011200px;}
._23{width:33.022080px;}
._8{width:34.622640px;}
._34{width:35.970480px;}
._12{width:37.402560px;}
._1d{width:38.918880px;}
._2e{width:39.960000px;}
._2d{width:41.193360px;}
._2c{width:43.758720px;}
._36{width:44.899920px;}
._18{width:46.332000px;}
._22{width:48.185280px;}
._3a{width:51.386400px;}
._28{width:52.397280px;}
._29{width:53.606880px;}
._32{width:54.611280px;}
._2b{width:56.609280px;}
._2a{width:57.620160px;}
._35{width:59.726160px;}
._33{width:62.337600px;}
._31{width:63.938160px;}
._38{width:65.030640px;}
._37{width:66.074880px;}
._2f{width:79.775280px;}
._30{width:80.870400px;}
._27{width:82.555200px;}
._25{width:86.682960px;}
._39{width:88.367760px;}
._26{width:109.343520px;}
._0{width:292.222560px;}
._1{width:1213.426560px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(255,0,0);}
.fc7{color:rgb(0,0,255);}
.fc1{color:rgb(0,128,0);}
.fc6{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs5{font-size:120.240000px;}
.fs2{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y34{bottom:8.100000px;}
.y43{bottom:8.280000px;}
.y6{bottom:10.440000px;}
.y5{bottom:31.140000px;}
.y33{bottom:35.820000px;}
.y98{bottom:35.865000px;}
.y36{bottom:36.000000px;}
.ya1{bottom:36.045000px;}
.ya3{bottom:55.620000px;}
.y90{bottom:63.720000px;}
.y95{bottom:63.750000px;}
.y32{bottom:63.765000px;}
.y41{bottom:66.960000px;}
.y40{bottom:72.180000px;}
.ya5{bottom:81.540000px;}
.y3f{bottom:84.240000px;}
.y68{bottom:85.320000px;}
.y96{bottom:85.500000px;}
.y2c{bottom:87.480000px;}
.y88{bottom:89.460000px;}
.y93{bottom:91.440000px;}
.y9d{bottom:91.470000px;}
.y31{bottom:91.485000px;}
.y9f{bottom:91.620000px;}
.y8f{bottom:91.665000px;}
.y3e{bottom:101.340000px;}
.y87{bottom:102.600000px;}
.y94{bottom:104.940000px;}
.y3d{bottom:106.560000px;}
.ya4{bottom:109.260000px;}
.y67{bottom:113.040000px;}
.y2b{bottom:115.380000px;}
.y92{bottom:119.160000px;}
.y9c{bottom:119.190000px;}
.y30{bottom:119.205000px;}
.y9a{bottom:119.340000px;}
.y8e{bottom:119.385000px;}
.y3c{bottom:119.880000px;}
.y86{bottom:137.160000px;}
.y66{bottom:140.760000px;}
.y2a{bottom:143.100000px;}
.y8d{bottom:147.105000px;}
.y3b{bottom:157.530000px;}
.y85{bottom:164.910000px;}
.y65{bottom:168.690000px;}
.y29{bottom:170.850000px;}
.y8c{bottom:174.825000px;}
.y3a{bottom:185.970000px;}
.y91{bottom:189.030000px;}
.y84{bottom:192.630000px;}
.y64{bottom:196.410000px;}
.y28{bottom:198.570000px;}
.y8b{bottom:202.725000px;}
.y39{bottom:214.590000px;}
.y83{bottom:220.350000px;}
.y63{bottom:224.130000px;}
.y27{bottom:226.470000px;}
.y38{bottom:243.030000px;}
.y82{bottom:248.250000px;}
.y62{bottom:252.030000px;}
.y26{bottom:254.190000px;}
.y37{bottom:271.650000px;}
.y81{bottom:275.970000px;}
.y61{bottom:279.750000px;}
.y25{bottom:281.910000px;}
.y35{bottom:300.090000px;}
.y80{bottom:303.690000px;}
.y60{bottom:307.470000px;}
.ya6{bottom:309.630000px;}
.y24{bottom:309.810000px;}
.ya2{bottom:324.030000px;}
.y8a{bottom:328.530000px;}
.y7f{bottom:331.590000px;}
.y5f{bottom:335.190000px;}
.y23{bottom:337.530000px;}
.y2f{bottom:356.430000px;}
.y7e{bottom:359.310000px;}
.y5e{bottom:363.090000px;}
.y22{bottom:365.250000px;}
.ya0{bottom:380.370000px;}
.y7d{bottom:387.030000px;}
.y5d{bottom:390.810000px;}
.y21{bottom:392.970000px;}
.y7c{bottom:414.795000px;}
.y5c{bottom:418.575000px;}
.y20{bottom:420.915000px;}
.y7b{bottom:442.695000px;}
.y5b{bottom:446.295000px;}
.y1f{bottom:448.635000px;}
.y7a{bottom:470.415000px;}
.y5a{bottom:474.195000px;}
.y1e{bottom:476.355000px;}
.y9e{bottom:492.195000px;}
.y79{bottom:498.135000px;}
.y59{bottom:501.915000px;}
.y1d{bottom:504.255000px;}
.y2e{bottom:511.815000px;}
.y78{bottom:525.855000px;}
.y58{bottom:529.635000px;}
.y1c{bottom:531.975000px;}
.y77{bottom:553.755000px;}
.y57{bottom:557.535000px;}
.y1b{bottom:559.695000px;}
.y89{bottom:567.255000px;}
.y76{bottom:581.475000px;}
.y56{bottom:585.255000px;}
.y1a{bottom:587.415000px;}
.y9b{bottom:604.155000px;}
.y75{bottom:609.195000px;}
.y55{bottom:612.975000px;}
.y19{bottom:615.315000px;}
.y74{bottom:637.095000px;}
.y54{bottom:640.695000px;}
.y18{bottom:643.035000px;}
.y73{bottom:664.845000px;}
.y53{bottom:668.625000px;}
.y17{bottom:670.785000px;}
.y2d{bottom:678.345000px;}
.y72{bottom:692.565000px;}
.y52{bottom:696.345000px;}
.y16{bottom:698.505000px;}
.y71{bottom:712.905000px;}
.y51{bottom:724.065000px;}
.y15{bottom:726.405000px;}
.y70{bottom:741.525000px;}
.y99{bottom:743.685000px;}
.y50{bottom:751.965000px;}
.y14{bottom:754.125000px;}
.y6f{bottom:769.965000px;}
.y4f{bottom:779.685000px;}
.y13{bottom:781.845000px;}
.y6e{bottom:798.585000px;}
.y4e{bottom:807.405000px;}
.y12{bottom:809.745000px;}
.y6d{bottom:827.025000px;}
.y4d{bottom:835.125000px;}
.y11{bottom:837.465000px;}
.y4c{bottom:863.025000px;}
.y10{bottom:865.185000px;}
.y6c{bottom:883.365000px;}
.y4b{bottom:890.745000px;}
.yf{bottom:892.905000px;}
.y6b{bottom:911.850000px;}
.y4a{bottom:918.510000px;}
.ye{bottom:920.850000px;}
.y49{bottom:946.410000px;}
.yd{bottom:948.570000px;}
.y6a{bottom:956.130000px;}
.y48{bottom:974.130000px;}
.yc{bottom:976.290000px;}
.y47{bottom:1001.850000px;}
.yb{bottom:1004.190000px;}
.y46{bottom:1029.570000px;}
.ya{bottom:1031.910000px;}
.y97{bottom:1050.810000px;}
.y45{bottom:1057.470000px;}
.y9{bottom:1059.630000px;}
.y44{bottom:1077.810000px;}
.y8{bottom:1087.350000px;}
.y42{bottom:1106.250000px;}
.y7{bottom:1115.250000px;}
.y69{bottom:1122.810000px;}
.y4{bottom:1139.370000px;}
.y3{bottom:1159.200000px;}
.y2{bottom:1183.320000px;}
.y1{bottom:1210.680000px;}
.hf{height:27.720000px;}
.h15{height:27.756000px;}
.h13{height:27.900000px;}
.h11{height:38.158594px;}
.h7{height:49.150080px;}
.h5{height:50.229844px;}
.hb{height:52.998047px;}
.h14{height:54.421875px;}
.he{height:55.620000px;}
.h12{height:58.651172px;}
.hd{height:59.436914px;}
.h19{height:59.439023px;}
.h10{height:65.884219px;}
.h4{height:67.169883px;}
.ha{height:74.244727px;}
.h2{height:76.355508px;}
.h9{height:82.676953px;}
.h1a{height:83.340000px;}
.h18{height:83.376000px;}
.h8{height:84.898125px;}
.h1f{height:86.585445px;}
.h6{height:95.874961px;}
.h3{height:105.060586px;}
.h1e{height:111.096000px;}
.h1d{height:111.240000px;}
.h17{height:138.780000px;}
.hc{height:138.816000px;}
.h1c{height:138.960000px;}
.h1b{height:166.710000px;}
.h16{height:222.330000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w24{width:56.376000px;}
.w1b{width:57.096000px;}
.w1e{width:57.816000px;}
.w28{width:62.856000px;}
.w26{width:63.000000px;}
.w20{width:63.576000px;}
.w1d{width:63.720000px;}
.w17{width:73.260000px;}
.w16{width:73.296000px;}
.w12{width:73.980000px;}
.w11{width:74.016000px;}
.w27{width:78.660000px;}
.w1f{width:79.380000px;}
.w21{width:80.100000px;}
.w19{width:83.700000px;}
.w18{width:83.736000px;}
.w14{width:84.060000px;}
.w13{width:84.456000px;}
.w25{width:86.760000px;}
.w1c{width:87.480000px;}
.w29{width:88.200000px;}
.w22{width:88.560000px;}
.wc{width:96.840000px;}
.w6{width:97.560000px;}
.wd{width:105.336000px;}
.w7{width:106.056000px;}
.we{width:117.756000px;}
.w8{width:118.476000px;}
.wa{width:124.056000px;}
.w4{width:124.416000px;}
.w23{width:143.280000px;}
.w1a{width:143.640000px;}
.wb{width:165.990000px;}
.w5{width:166.710000px;}
.wf{width:241.590000px;}
.w9{width:241.950000px;}
.w15{width:296.490000px;}
.w10{width:296.850000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:7.740000px;}
.x37{left:9.900000px;}
.x34{left:10.980000px;}
.x3c{left:12.960000px;}
.x35{left:14.400000px;}
.x21{left:16.020000px;}
.x11{left:18.900000px;}
.x33{left:20.160000px;}
.x25{left:21.240000px;}
.x28{left:23.580000px;}
.x3d{left:25.920000px;}
.x27{left:28.665000px;}
.x29{left:34.065000px;}
.x40{left:38.160000px;}
.x2a{left:39.240000px;}
.x5{left:42.479987px;}
.x2c{left:49.725000px;}
.x2b{left:55.080000px;}
.x1f{left:81.714000px;}
.x4{left:84.995987px;}
.xd{left:88.595987px;}
.x19{left:89.855987px;}
.x2f{left:103.715987px;}
.x1{left:106.415987px;}
.x2e{left:128.375987px;}
.x13{left:143.316000px;}
.x1c{left:149.975987px;}
.x8{left:164.369987px;}
.x6{left:169.949987px;}
.xa{left:192.269973px;}
.xb{left:199.109987px;}
.x1a{left:222.869973px;}
.xe{left:228.629987px;}
.x1b{left:229.709987px;}
.x36{left:286.635000px;}
.x18{left:301.034987px;}
.x30{left:304.814987px;}
.x14{left:310.035000px;}
.x9{left:366.734987px;}
.x38{left:374.115000px;}
.x20{left:382.755000px;}
.x15{left:407.595000px;}
.x39{left:437.835000px;}
.x7{left:446.504987px;}
.x22{left:456.765000px;}
.x3a{left:495.645000px;}
.x16{left:513.645000px;}
.x2{left:521.564987px;}
.x23{left:530.745000px;}
.x3b{left:575.025000px;}
.x31{left:581.324973px;}
.x32{left:588.164987px;}
.x24{left:604.725000px;}
.x17{left:632.130000px;}
.x3e{left:638.610000px;}
.x3{left:641.669987px;}
.xf{left:657.329973px;}
.x10{left:664.169987px;}
.x26{left:689.190000px;}
.x3f{left:718.710000px;}
.x2d{left:734.549987px;}
.xc{left:739.229987px;}
.x1d{left:801.149973px;}
.x1e{left:808.019987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-0.608000pt;}
.lsb{letter-spacing:-0.336533pt;}
.ls14{letter-spacing:-0.328533pt;}
.ls15{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.303467pt;}
.ls10{letter-spacing:-0.206933pt;}
.ls6{letter-spacing:-0.200533pt;}
.ls12{letter-spacing:-0.160000pt;}
.ls17{letter-spacing:-0.033280pt;}
.ls18{letter-spacing:-0.016640pt;}
.ls5{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.024960pt;}
.ls1{letter-spacing:0.030720pt;}
.ls8{letter-spacing:0.033280pt;}
.ls3{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.193280pt;}
.ls1a{letter-spacing:0.224640pt;}
.ls2{letter-spacing:0.256000pt;}
.ls19{letter-spacing:0.303467pt;}
.ls13{letter-spacing:0.311467pt;}
.lsd{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.328320pt;}
.ls1c{letter-spacing:0.336533pt;}
.ls11{letter-spacing:0.336640pt;}
.lse{letter-spacing:4.960000pt;}
.lsf{letter-spacing:7.626667pt;}
.ls16{letter-spacing:11.360000pt;}
.ls4{letter-spacing:22.880000pt;}
.ls7{letter-spacing:28.640000pt;}
.ls1d{letter-spacing:187.802027pt;}
.ws10{word-spacing:-19.056533pt;}
.ws7{word-spacing:-19.040000pt;}
.wsb{word-spacing:-19.031467pt;}
.wse{word-spacing:-19.023467pt;}
.wsf{word-spacing:-18.944640pt;}
.ws4{word-spacing:-18.753280pt;}
.ws5{word-spacing:-18.720000pt;}
.wsa{word-spacing:-18.560000pt;}
.ws6{word-spacing:-18.416533pt;}
.wsd{word-spacing:-18.400000pt;}
.wsc{word-spacing:-18.391467pt;}
.ws0{word-spacing:-17.334187pt;}
.ws9{word-spacing:-17.327787pt;}
.ws8{word-spacing:-13.280000pt;}
.ws2{word-spacing:-13.248000pt;}
.ws1{word-spacing:-13.184000pt;}
.ws3{word-spacing:0.000000pt;}
._24{margin-left:-7.038720pt;}
._20{margin-left:-5.738880pt;}
._1f{margin-left:-4.792320pt;}
._d{margin-left:-3.744000pt;}
._c{margin-left:-2.620800pt;}
._2{margin-left:-1.272960pt;}
._3{width:1.021440pt;}
._4{width:2.547627pt;}
._13{width:3.818880pt;}
._1e{width:5.016960pt;}
._b{width:6.289920pt;}
._a{width:7.188480pt;}
._1a{width:8.910720pt;}
._1c{width:10.183680pt;}
._14{width:11.381760pt;}
._15{width:12.430080pt;}
._9{width:13.852800pt;}
._21{width:15.002880pt;}
._e{width:16.548480pt;}
._1b{width:17.473920pt;}
._11{width:20.367360pt;}
._5{width:21.415680pt;}
._6{width:22.389120pt;}
._7{width:23.636053pt;}
._19{width:24.537813pt;}
._10{width:25.534080pt;}
._f{width:26.507520pt;}
._16{width:27.555840pt;}
._17{width:28.454400pt;}
._23{width:29.352960pt;}
._8{width:30.775680pt;}
._34{width:31.973760pt;}
._12{width:33.246720pt;}
._1d{width:34.594560pt;}
._2e{width:35.520000pt;}
._2d{width:36.616320pt;}
._2c{width:38.896640pt;}
._36{width:39.911040pt;}
._18{width:41.184000pt;}
._22{width:42.831360pt;}
._3a{width:45.676800pt;}
._28{width:46.575360pt;}
._29{width:47.650560pt;}
._32{width:48.543360pt;}
._2b{width:50.319360pt;}
._2a{width:51.217920pt;}
._35{width:53.089920pt;}
._33{width:55.411200pt;}
._31{width:56.833920pt;}
._38{width:57.805013pt;}
._37{width:58.733227pt;}
._2f{width:70.911360pt;}
._30{width:71.884800pt;}
._27{width:73.382400pt;}
._25{width:77.051520pt;}
._39{width:78.549120pt;}
._26{width:97.194240pt;}
._0{width:259.753387pt;}
._1{width:1078.601387pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs5{font-size:106.880000pt;}
.fs2{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:7.200000pt;}
.y43{bottom:7.360000pt;}
.y6{bottom:9.280000pt;}
.y5{bottom:27.680000pt;}
.y33{bottom:31.840000pt;}
.y98{bottom:31.880000pt;}
.y36{bottom:32.000000pt;}
.ya1{bottom:32.040000pt;}
.ya3{bottom:49.440000pt;}
.y90{bottom:56.640000pt;}
.y95{bottom:56.666667pt;}
.y32{bottom:56.680000pt;}
.y41{bottom:59.520000pt;}
.y40{bottom:64.160000pt;}
.ya5{bottom:72.480000pt;}
.y3f{bottom:74.880000pt;}
.y68{bottom:75.840000pt;}
.y96{bottom:76.000000pt;}
.y2c{bottom:77.760000pt;}
.y88{bottom:79.520000pt;}
.y93{bottom:81.280000pt;}
.y9d{bottom:81.306667pt;}
.y31{bottom:81.320000pt;}
.y9f{bottom:81.440000pt;}
.y8f{bottom:81.480000pt;}
.y3e{bottom:90.080000pt;}
.y87{bottom:91.200000pt;}
.y94{bottom:93.280000pt;}
.y3d{bottom:94.720000pt;}
.ya4{bottom:97.120000pt;}
.y67{bottom:100.480000pt;}
.y2b{bottom:102.560000pt;}
.y92{bottom:105.920000pt;}
.y9c{bottom:105.946667pt;}
.y30{bottom:105.960000pt;}
.y9a{bottom:106.080000pt;}
.y8e{bottom:106.120000pt;}
.y3c{bottom:106.560000pt;}
.y86{bottom:121.920000pt;}
.y66{bottom:125.120000pt;}
.y2a{bottom:127.200000pt;}
.y8d{bottom:130.760000pt;}
.y3b{bottom:140.026667pt;}
.y85{bottom:146.586667pt;}
.y65{bottom:149.946667pt;}
.y29{bottom:151.866667pt;}
.y8c{bottom:155.400000pt;}
.y3a{bottom:165.306667pt;}
.y91{bottom:168.026667pt;}
.y84{bottom:171.226667pt;}
.y64{bottom:174.586667pt;}
.y28{bottom:176.506667pt;}
.y8b{bottom:180.200000pt;}
.y39{bottom:190.746667pt;}
.y83{bottom:195.866667pt;}
.y63{bottom:199.226667pt;}
.y27{bottom:201.306667pt;}
.y38{bottom:216.026667pt;}
.y82{bottom:220.666667pt;}
.y62{bottom:224.026667pt;}
.y26{bottom:225.946667pt;}
.y37{bottom:241.466667pt;}
.y81{bottom:245.306667pt;}
.y61{bottom:248.666667pt;}
.y25{bottom:250.586667pt;}
.y35{bottom:266.746667pt;}
.y80{bottom:269.946667pt;}
.y60{bottom:273.306667pt;}
.ya6{bottom:275.226667pt;}
.y24{bottom:275.386667pt;}
.ya2{bottom:288.026667pt;}
.y8a{bottom:292.026667pt;}
.y7f{bottom:294.746667pt;}
.y5f{bottom:297.946667pt;}
.y23{bottom:300.026667pt;}
.y2f{bottom:316.826667pt;}
.y7e{bottom:319.386667pt;}
.y5e{bottom:322.746667pt;}
.y22{bottom:324.666667pt;}
.ya0{bottom:338.106667pt;}
.y7d{bottom:344.026667pt;}
.y5d{bottom:347.386667pt;}
.y21{bottom:349.306667pt;}
.y7c{bottom:368.706667pt;}
.y5c{bottom:372.066667pt;}
.y20{bottom:374.146667pt;}
.y7b{bottom:393.506667pt;}
.y5b{bottom:396.706667pt;}
.y1f{bottom:398.786667pt;}
.y7a{bottom:418.146667pt;}
.y5a{bottom:421.506667pt;}
.y1e{bottom:423.426667pt;}
.y9e{bottom:437.506667pt;}
.y79{bottom:442.786667pt;}
.y59{bottom:446.146667pt;}
.y1d{bottom:448.226667pt;}
.y2e{bottom:454.946667pt;}
.y78{bottom:467.426667pt;}
.y58{bottom:470.786667pt;}
.y1c{bottom:472.866667pt;}
.y77{bottom:492.226667pt;}
.y57{bottom:495.586667pt;}
.y1b{bottom:497.506667pt;}
.y89{bottom:504.226667pt;}
.y76{bottom:516.866667pt;}
.y56{bottom:520.226667pt;}
.y1a{bottom:522.146667pt;}
.y9b{bottom:537.026667pt;}
.y75{bottom:541.506667pt;}
.y55{bottom:544.866667pt;}
.y19{bottom:546.946667pt;}
.y74{bottom:566.306667pt;}
.y54{bottom:569.506667pt;}
.y18{bottom:571.586667pt;}
.y73{bottom:590.973333pt;}
.y53{bottom:594.333333pt;}
.y17{bottom:596.253333pt;}
.y2d{bottom:602.973333pt;}
.y72{bottom:615.613333pt;}
.y52{bottom:618.973333pt;}
.y16{bottom:620.893333pt;}
.y71{bottom:633.693333pt;}
.y51{bottom:643.613333pt;}
.y15{bottom:645.693333pt;}
.y70{bottom:659.133333pt;}
.y99{bottom:661.053333pt;}
.y50{bottom:668.413333pt;}
.y14{bottom:670.333333pt;}
.y6f{bottom:684.413333pt;}
.y4f{bottom:693.053333pt;}
.y13{bottom:694.973333pt;}
.y6e{bottom:709.853333pt;}
.y4e{bottom:717.693333pt;}
.y12{bottom:719.773333pt;}
.y6d{bottom:735.133333pt;}
.y4d{bottom:742.333333pt;}
.y11{bottom:744.413333pt;}
.y4c{bottom:767.133333pt;}
.y10{bottom:769.053333pt;}
.y6c{bottom:785.213333pt;}
.y4b{bottom:791.773333pt;}
.yf{bottom:793.693333pt;}
.y6b{bottom:810.533333pt;}
.y4a{bottom:816.453333pt;}
.ye{bottom:818.533333pt;}
.y49{bottom:841.253333pt;}
.yd{bottom:843.173333pt;}
.y6a{bottom:849.893333pt;}
.y48{bottom:865.893333pt;}
.yc{bottom:867.813333pt;}
.y47{bottom:890.533333pt;}
.yb{bottom:892.613333pt;}
.y46{bottom:915.173333pt;}
.ya{bottom:917.253333pt;}
.y97{bottom:934.053333pt;}
.y45{bottom:939.973333pt;}
.y9{bottom:941.893333pt;}
.y44{bottom:958.053333pt;}
.y8{bottom:966.533333pt;}
.y42{bottom:983.333333pt;}
.y7{bottom:991.333333pt;}
.y69{bottom:998.053333pt;}
.y4{bottom:1012.773333pt;}
.y3{bottom:1030.400000pt;}
.y2{bottom:1051.840000pt;}
.y1{bottom:1076.160000pt;}
.hf{height:24.640000pt;}
.h15{height:24.672000pt;}
.h13{height:24.800000pt;}
.h11{height:33.918750pt;}
.h7{height:43.688960pt;}
.h5{height:44.648750pt;}
.hb{height:47.109375pt;}
.h14{height:48.375000pt;}
.he{height:49.440000pt;}
.h12{height:52.134375pt;}
.hd{height:52.832812pt;}
.h19{height:52.834688pt;}
.h10{height:58.563750pt;}
.h4{height:59.706562pt;}
.ha{height:65.995312pt;}
.h2{height:67.871563pt;}
.h9{height:73.490625pt;}
.h1a{height:74.080000pt;}
.h18{height:74.112000pt;}
.h8{height:75.465000pt;}
.h1f{height:76.964840pt;}
.h6{height:85.222187pt;}
.h3{height:93.387187pt;}
.h1e{height:98.752000pt;}
.h1d{height:98.880000pt;}
.h17{height:123.360000pt;}
.hc{height:123.392000pt;}
.h1c{height:123.520000pt;}
.h1b{height:148.186667pt;}
.h16{height:197.626667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w24{width:50.112000pt;}
.w1b{width:50.752000pt;}
.w1e{width:51.392000pt;}
.w28{width:55.872000pt;}
.w26{width:56.000000pt;}
.w20{width:56.512000pt;}
.w1d{width:56.640000pt;}
.w17{width:65.120000pt;}
.w16{width:65.152000pt;}
.w12{width:65.760000pt;}
.w11{width:65.792000pt;}
.w27{width:69.920000pt;}
.w1f{width:70.560000pt;}
.w21{width:71.200000pt;}
.w19{width:74.400000pt;}
.w18{width:74.432000pt;}
.w14{width:74.720000pt;}
.w13{width:75.072000pt;}
.w25{width:77.120000pt;}
.w1c{width:77.760000pt;}
.w29{width:78.400000pt;}
.w22{width:78.720000pt;}
.wc{width:86.080000pt;}
.w6{width:86.720000pt;}
.wd{width:93.632000pt;}
.w7{width:94.272000pt;}
.we{width:104.672000pt;}
.w8{width:105.312000pt;}
.wa{width:110.272000pt;}
.w4{width:110.592000pt;}
.w23{width:127.360000pt;}
.w1a{width:127.680000pt;}
.wb{width:147.546667pt;}
.w5{width:148.186667pt;}
.wf{width:214.746667pt;}
.w9{width:215.066667pt;}
.w15{width:263.546667pt;}
.w10{width:263.866667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:6.880000pt;}
.x37{left:8.800000pt;}
.x34{left:9.760000pt;}
.x3c{left:11.520000pt;}
.x35{left:12.800000pt;}
.x21{left:14.240000pt;}
.x11{left:16.800000pt;}
.x33{left:17.920000pt;}
.x25{left:18.880000pt;}
.x28{left:20.960000pt;}
.x3d{left:23.040000pt;}
.x27{left:25.480000pt;}
.x29{left:30.280000pt;}
.x40{left:33.920000pt;}
.x2a{left:34.880000pt;}
.x5{left:37.759988pt;}
.x2c{left:44.200000pt;}
.x2b{left:48.960000pt;}
.x1f{left:72.634667pt;}
.x4{left:75.551988pt;}
.xd{left:78.751988pt;}
.x19{left:79.871988pt;}
.x2f{left:92.191988pt;}
.x1{left:94.591988pt;}
.x2e{left:114.111988pt;}
.x13{left:127.392000pt;}
.x1c{left:133.311988pt;}
.x8{left:146.106655pt;}
.x6{left:151.066655pt;}
.xa{left:170.906643pt;}
.xb{left:176.986655pt;}
.x1a{left:198.106643pt;}
.xe{left:203.226655pt;}
.x1b{left:204.186655pt;}
.x36{left:254.786667pt;}
.x18{left:267.586655pt;}
.x30{left:270.946655pt;}
.x14{left:275.586667pt;}
.x9{left:325.986655pt;}
.x38{left:332.546667pt;}
.x20{left:340.226667pt;}
.x15{left:362.306667pt;}
.x39{left:389.186667pt;}
.x7{left:396.893322pt;}
.x22{left:406.013333pt;}
.x3a{left:440.573333pt;}
.x16{left:456.573333pt;}
.x2{left:463.613322pt;}
.x23{left:471.773333pt;}
.x3b{left:511.133333pt;}
.x31{left:516.733310pt;}
.x32{left:522.813322pt;}
.x24{left:537.533333pt;}
.x17{left:561.893333pt;}
.x3e{left:567.653333pt;}
.x3{left:570.373322pt;}
.xf{left:584.293310pt;}
.x10{left:590.373322pt;}
.x26{left:612.613333pt;}
.x3f{left:638.853333pt;}
.x2d{left:652.933322pt;}
.xc{left:657.093322pt;}
.x1d{left:712.133310pt;}
.x1e{left:718.239988pt;}
}




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