
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5f0e293af4d70c29cfc46f45.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_29fa4e3caab1951ca12d2b16.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_22f6f22623c1ec3d269a9840.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_e1faf850ad56649a7ea8f530.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_ea835dc6339fa4f6d0e98e51.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.869629;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_cb8e89a8bb97127fc940205e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_e624081dfbb1fb0a9b3cda90.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_d65ac499602644d7a791daed.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061523;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_b9e7c69e0e9306798d76a6c7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;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_d6ae57e2cf9827c9fcc833d5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.065430;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_92cb098ad0d07ebcb670eabb.woff2')format("woff");}.ffc{font-family:ffc;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;}
@font-face{font-family:ffd;src:url('chunks/assets/font_92cb098ad0d07ebcb670eabb.woff2')format("woff");}.ffd{font-family:ffd;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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_59e5a7b6e1ae8330a518fbdf.woff2')format("woff");}.ffe{font-family:ffe;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1d{letter-spacing:-18.660000px;}
.lsc{letter-spacing:-17.940000px;}
.ls1e{letter-spacing:-11.460000px;}
.lsd{letter-spacing:-0.186600px;}
.ls16{letter-spacing:-0.160800px;}
.ls18{letter-spacing:-0.137400px;}
.ls9{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls19{letter-spacing:-0.093000px;}
.ls8{letter-spacing:-0.090000px;}
.ls14{letter-spacing:-0.084600px;}
.ls15{letter-spacing:-0.068400px;}
.ls17{letter-spacing:-0.063600px;}
.ls6{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.048960px;}
.lsf{letter-spacing:0.074160px;}
.lse{letter-spacing:0.074400px;}
.ls5{letter-spacing:0.084600px;}
.ls3{letter-spacing:0.087480px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1b{letter-spacing:0.113400px;}
.ls7{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.173400px;}
.ls1f{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.453600px;}
.ls4{letter-spacing:4.053600px;}
.ls1c{letter-spacing:47.726640px;}
.ls10{letter-spacing:56.925360px;}
.ls12{letter-spacing:57.086640px;}
.ls1a{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsf{word-spacing:-65.742600px;}
.ws12{word-spacing:-60.120000px;}
.ws2{word-spacing:-18.453600px;}
.ws6{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws3{word-spacing:-13.399800px;}
.ws8{word-spacing:-13.300800px;}
.wsb{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.wse{word-spacing:-13.162800px;}
.wsc{word-spacing:-13.158000px;}
.ws10{word-spacing:-13.133400px;}
.wsd{word-spacing:-13.065600px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws9{word-spacing:0.000000px;}
.ws11{word-spacing:12.153600px;}
.ws5{word-spacing:61.184880px;}
._14{margin-left:-24.809880px;}
._d{margin-left:-3.607800px;}
._9{margin-left:-2.195400px;}
._0{margin-left:-1.110000px;}
._2{width:1.022880px;}
._5{width:2.584320px;}
._6{width:3.727200px;}
._7{width:5.171280px;}
._8{width:6.205439px;}
._13{width:7.259165px;}
._b{width:8.296800px;}
._c{width:9.317398px;}
._f{width:10.375205px;}
._10{width:11.619706px;}
._1{width:12.635280px;}
._3{width:13.695600px;}
._4{width:15.330600px;}
._e{width:16.833600px;}
._a{width:18.707400px;}
._11{width:20.621160px;}
._12{width:21.943800px;}
._17{width:24.793200px;}
._15{width:29.490720px;}
._16{width:34.328520px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:6.120000px;}
.fs8{font-size:11.880000px;}
.fs0{font-size:38.880000px;}
.fs7{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs6{font-size:65.880000px;}
.fs9{font-size:69.442923px;}
.fsa{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:7.830000px;}
.y68{bottom:7.920000px;}
.y67{bottom:25.470000px;}
.y43{bottom:28.530000px;}
.y41{bottom:29.970000px;}
.y2{bottom:55.380000px;}
.y28{bottom:56.190000px;}
.y1{bottom:83.640000px;}
.y9b{bottom:142.320000px;}
.y6c{bottom:159.780000px;}
.y9a{bottom:159.870000px;}
.y6b{bottom:174.720000px;}
.y99{bottom:177.510000px;}
.yc8{bottom:178.320000px;}
.y26{bottom:195.780000px;}
.yc7{bottom:195.870000px;}
.y6a{bottom:202.080000px;}
.y98{bottom:204.060000px;}
.y25{bottom:213.330000px;}
.y97{bottom:221.700000px;}
.yc6{bottom:222.510000px;}
.y69{bottom:229.440000px;}
.y24{bottom:230.880000px;}
.y96{bottom:239.250000px;}
.yc5{bottom:240.060000px;}
.y23{bottom:248.520000px;}
.y66{bottom:256.710000px;}
.y4b{bottom:261.300000px;}
.y95{bottom:265.800000px;}
.y22{bottom:266.070000px;}
.yc4{bottom:266.610000px;}
.y4a{bottom:278.940000px;}
.y94{bottom:283.440000px;}
.y21{bottom:283.710000px;}
.yc3{bottom:284.250000px;}
.y49{bottom:296.490000px;}
.y93{bottom:300.990000px;}
.y20{bottom:301.260000px;}
.yc2{bottom:301.800000px;}
.y1f{bottom:318.810000px;}
.y48{bottom:323.040000px;}
.y92{bottom:327.630000px;}
.yc1{bottom:328.440000px;}
.y1e{bottom:336.450000px;}
.y91{bottom:345.180000px;}
.yc0{bottom:345.990000px;}
.y1d{bottom:354.000000px;}
.y65{bottom:358.590000px;}
.y47{bottom:358.680000px;}
.y90{bottom:362.730000px;}
.ybf{bottom:363.540000px;}
.y1c{bottom:371.550000px;}
.y46{bottom:376.230000px;}
.y1b{bottom:389.190000px;}
.y8f{bottom:389.370000px;}
.ybe{bottom:390.180000px;}
.y64{bottom:393.780000px;}
.y45{bottom:402.870000px;}
.y1a{bottom:406.920000px;}
.ybd{bottom:407.730000px;}
.y63{bottom:411.330000px;}
.ybc{bottom:425.370000px;}
.y62{bottom:428.970000px;}
.y8e{bottom:433.560000px;}
.y19{bottom:435.090000px;}
.y44{bottom:438.690000px;}
.y8d{bottom:451.110000px;}
.ybb{bottom:451.920000px;}
.y61{bottom:455.520000px;}
.y8c{bottom:468.660000px;}
.yba{bottom:469.470000px;}
.y18{bottom:483.720000px;}
.y42{bottom:484.440000px;}
.yb9{bottom:487.140000px;}
.y60{bottom:491.190000px;}
.y8b{bottom:495.330000px;}
.y5f{bottom:508.740000px;}
.y8a{bottom:512.880000px;}
.yb8{bottom:513.690000px;}
.y17{bottom:520.710000px;}
.y5e{bottom:526.290000px;}
.yb7{bottom:531.330000px;}
.y40{bottom:533.850000px;}
.y16{bottom:538.260000px;}
.y89{bottom:539.430000px;}
.y5d{bottom:543.930000px;}
.yb6{bottom:548.880000px;}
.y15{bottom:555.900000px;}
.y88{bottom:557.070000px;}
.y5c{bottom:561.480000px;}
.y14{bottom:573.450000px;}
.y87{bottom:574.620000px;}
.yb5{bottom:575.430000px;}
.y5b{bottom:579.030000px;}
.y3e{bottom:583.260000px;}
.y13{bottom:591.090000px;}
.yb4{bottom:593.070000px;}
.y5a{bottom:596.670000px;}
.y86{bottom:601.260000px;}
.y12{bottom:608.640000px;}
.y59{bottom:614.220000px;}
.y85{bottom:618.810000px;}
.yb3{bottom:619.620000px;}
.y11{bottom:626.190000px;}
.y58{bottom:631.860000px;}
.y3d{bottom:631.950000px;}
.y84{bottom:636.360000px;}
.yb2{bottom:637.260000px;}
.y10{bottom:643.830000px;}
.y57{bottom:649.410000px;}
.yb1{bottom:654.810000px;}
.yf{bottom:661.380000px;}
.y83{bottom:663.000000px;}
.y56{bottom:666.960000px;}
.y3c{bottom:667.590000px;}
.ye{bottom:679.020000px;}
.y82{bottom:680.550000px;}
.yb0{bottom:681.360000px;}
.y55{bottom:684.600000px;}
.y3b{bottom:685.140000px;}
.yd{bottom:696.570000px;}
.y81{bottom:698.190000px;}
.yaf{bottom:699.000000px;}
.y54{bottom:702.150000px;}
.y3a{bottom:702.690000px;}
.yc{bottom:714.120000px;}
.yae{bottom:716.550000px;}
.y53{bottom:719.790000px;}
.y39{bottom:720.330000px;}
.y80{bottom:724.740000px;}
.yb{bottom:731.760000px;}
.y52{bottom:737.340000px;}
.y38{bottom:737.880000px;}
.y7f{bottom:742.290000px;}
.yad{bottom:743.190000px;}
.y51{bottom:754.890000px;}
.y37{bottom:755.520000px;}
.ya{bottom:758.670000px;}
.yac{bottom:760.740000px;}
.y7e{bottom:769.200000px;}
.y50{bottom:772.530000px;}
.y36{bottom:782.070000px;}
.yab{bottom:787.290000px;}
.y4f{bottom:790.080000px;}
.yaa{bottom:804.930000px;}
.y9{bottom:805.380000px;}
.y4e{bottom:807.720000px;}
.y7d{bottom:817.530000px;}
.y35{bottom:817.620000px;}
.ya9{bottom:822.480000px;}
.y7c{bottom:835.080000px;}
.y34{bottom:835.260000px;}
.y8{bottom:841.200000px;}
.y4d{bottom:843.270000px;}
.ya8{bottom:849.030000px;}
.y7b{bottom:852.720000px;}
.y33{bottom:861.810000px;}
.ya7{bottom:866.670000px;}
.y7a{bottom:870.270000px;}
.y4c{bottom:875.490000px;}
.y7{bottom:877.200000px;}
.y79{bottom:887.820000px;}
.ya6{bottom:893.220000px;}
.y32{bottom:897.450000px;}
.ya5{bottom:910.860000px;}
.y6{bottom:913.200000px;}
.y78{bottom:914.730000px;}
.y31{bottom:915.000000px;}
.ya4{bottom:928.410000px;}
.y30{bottom:932.550000px;}
.y5{bottom:949.290000px;}
.ya3{bottom:954.960000px;}
.y2f{bottom:959.190000px;}
.y77{bottom:963.060000px;}
.ya2{bottom:972.600000px;}
.y76{bottom:980.610000px;}
.y4{bottom:987.630000px;}
.y2e{bottom:994.740000px;}
.y75{bottom:998.340000px;}
.ya1{bottom:999.150000px;}
.y3{bottom:1012.320000px;}
.ya0{bottom:1016.820000px;}
.y74{bottom:1017.180000px;}
.y2d{bottom:1029.960000px;}
.y9f{bottom:1034.370000px;}
.y73{bottom:1034.820000px;}
.y2c{bottom:1047.510000px;}
.y72{bottom:1052.370000px;}
.y9e{bottom:1060.920000px;}
.y2b{bottom:1065.150000px;}
.y71{bottom:1069.920000px;}
.y9d{bottom:1078.560000px;}
.y70{bottom:1087.560000px;}
.y2a{bottom:1091.700000px;}
.y9c{bottom:1096.110000px;}
.y6f{bottom:1105.110000px;}
.y6e{bottom:1122.750000px;}
.y29{bottom:1127.610000px;}
.y6d{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.hb{height:26.550000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.he{height:44.190000px;}
.hc{height:48.690000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.hf{height:61.793886px;}
.h8{height:62.585859px;}
.hd{height:67.714259px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.h9{height:72.291168px;}
.ha{height:74.953125px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:55.290000px;}
.w8{width:107.190000px;}
.w3{width:108.660000px;}
.w5{width:114.210000px;}
.w6{width:126.810000px;}
.wa{width:243.720000px;}
.w9{width:249.510000px;}
.w4{width:282.810000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.x10{left:111.239987px;}
.xc{left:117.540000px;}
.x5{left:129.240000px;}
.xb{left:168.149987px;}
.xd{left:173.640000px;}
.x2{left:202.799987px;}
.x7{left:238.620000px;}
.xe{left:281.640000px;}
.x4{left:394.859987px;}
.x8{left:522.150000px;}
.xf{left:531.960000px;}
.x9{left:637.170000px;}
.xa{left:672.089987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1d{letter-spacing:-16.586667pt;}
.lsc{letter-spacing:-15.946667pt;}
.ls1e{letter-spacing:-10.186667pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls16{letter-spacing:-0.142933pt;}
.ls18{letter-spacing:-0.122133pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls19{letter-spacing:-0.082667pt;}
.ls8{letter-spacing:-0.080000pt;}
.ls14{letter-spacing:-0.075200pt;}
.ls15{letter-spacing:-0.060800pt;}
.ls17{letter-spacing:-0.056533pt;}
.ls6{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.043520pt;}
.lsf{letter-spacing:0.065920pt;}
.lse{letter-spacing:0.066133pt;}
.ls5{letter-spacing:0.075200pt;}
.ls3{letter-spacing:0.077760pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1b{letter-spacing:0.100800pt;}
.ls7{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.154133pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.403200pt;}
.ls4{letter-spacing:3.603200pt;}
.ls1c{letter-spacing:42.423680pt;}
.ls10{letter-spacing:50.600320pt;}
.ls12{letter-spacing:50.743680pt;}
.ls1a{letter-spacing:71.863680pt;}
.wsf{word-spacing:-58.437867pt;}
.ws12{word-spacing:-53.440000pt;}
.ws2{word-spacing:-16.403200pt;}
.ws6{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws3{word-spacing:-11.910933pt;}
.ws8{word-spacing:-11.822933pt;}
.wsb{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.700267pt;}
.wsc{word-spacing:-11.696000pt;}
.ws10{word-spacing:-11.674133pt;}
.wsd{word-spacing:-11.613867pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws9{word-spacing:0.000000pt;}
.ws11{word-spacing:10.803200pt;}
.ws5{word-spacing:54.386560pt;}
._14{margin-left:-22.053227pt;}
._d{margin-left:-3.206934pt;}
._9{margin-left:-1.951467pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.909227pt;}
._5{width:2.297173pt;}
._6{width:3.313066pt;}
._7{width:4.596694pt;}
._8{width:5.515946pt;}
._13{width:6.452591pt;}
._b{width:7.374934pt;}
._c{width:8.282131pt;}
._f{width:9.222404pt;}
._10{width:10.328627pt;}
._1{width:11.231360pt;}
._3{width:12.173867pt;}
._4{width:13.627200pt;}
._e{width:14.963200pt;}
._a{width:16.628800pt;}
._11{width:18.329920pt;}
._12{width:19.505600pt;}
._17{width:22.038400pt;}
._15{width:26.213973pt;}
._16{width:30.514240pt;}
.fs5{font-size:5.440000pt;}
.fs8{font-size:10.560000pt;}
.fs0{font-size:34.560000pt;}
.fs7{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs6{font-size:58.560000pt;}
.fs9{font-size:61.727043pt;}
.fsa{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:6.960000pt;}
.y68{bottom:7.040000pt;}
.y67{bottom:22.640000pt;}
.y43{bottom:25.360000pt;}
.y41{bottom:26.640000pt;}
.y2{bottom:49.226667pt;}
.y28{bottom:49.946667pt;}
.y1{bottom:74.346667pt;}
.y9b{bottom:126.506667pt;}
.y6c{bottom:142.026667pt;}
.y9a{bottom:142.106667pt;}
.y6b{bottom:155.306667pt;}
.y99{bottom:157.786667pt;}
.yc8{bottom:158.506667pt;}
.y26{bottom:174.026667pt;}
.yc7{bottom:174.106667pt;}
.y6a{bottom:179.626667pt;}
.y98{bottom:181.386667pt;}
.y25{bottom:189.626667pt;}
.y97{bottom:197.066667pt;}
.yc6{bottom:197.786667pt;}
.y69{bottom:203.946667pt;}
.y24{bottom:205.226667pt;}
.y96{bottom:212.666667pt;}
.yc5{bottom:213.386667pt;}
.y23{bottom:220.906667pt;}
.y66{bottom:228.186667pt;}
.y4b{bottom:232.266667pt;}
.y95{bottom:236.266667pt;}
.y22{bottom:236.506667pt;}
.yc4{bottom:236.986667pt;}
.y4a{bottom:247.946667pt;}
.y94{bottom:251.946667pt;}
.y21{bottom:252.186667pt;}
.yc3{bottom:252.666667pt;}
.y49{bottom:263.546667pt;}
.y93{bottom:267.546667pt;}
.y20{bottom:267.786667pt;}
.yc2{bottom:268.266667pt;}
.y1f{bottom:283.386667pt;}
.y48{bottom:287.146667pt;}
.y92{bottom:291.226667pt;}
.yc1{bottom:291.946667pt;}
.y1e{bottom:299.066667pt;}
.y91{bottom:306.826667pt;}
.yc0{bottom:307.546667pt;}
.y1d{bottom:314.666667pt;}
.y65{bottom:318.746667pt;}
.y47{bottom:318.826667pt;}
.y90{bottom:322.426667pt;}
.ybf{bottom:323.146667pt;}
.y1c{bottom:330.266667pt;}
.y46{bottom:334.426667pt;}
.y1b{bottom:345.946667pt;}
.y8f{bottom:346.106667pt;}
.ybe{bottom:346.826667pt;}
.y64{bottom:350.026667pt;}
.y45{bottom:358.106667pt;}
.y1a{bottom:361.706667pt;}
.ybd{bottom:362.426667pt;}
.y63{bottom:365.626667pt;}
.ybc{bottom:378.106667pt;}
.y62{bottom:381.306667pt;}
.y8e{bottom:385.386667pt;}
.y19{bottom:386.746667pt;}
.y44{bottom:389.946667pt;}
.y8d{bottom:400.986667pt;}
.ybb{bottom:401.706667pt;}
.y61{bottom:404.906667pt;}
.y8c{bottom:416.586667pt;}
.yba{bottom:417.306667pt;}
.y18{bottom:429.973333pt;}
.y42{bottom:430.613333pt;}
.yb9{bottom:433.013333pt;}
.y60{bottom:436.613333pt;}
.y8b{bottom:440.293333pt;}
.y5f{bottom:452.213333pt;}
.y8a{bottom:455.893333pt;}
.yb8{bottom:456.613333pt;}
.y17{bottom:462.853333pt;}
.y5e{bottom:467.813333pt;}
.yb7{bottom:472.293333pt;}
.y40{bottom:474.533333pt;}
.y16{bottom:478.453333pt;}
.y89{bottom:479.493333pt;}
.y5d{bottom:483.493333pt;}
.yb6{bottom:487.893333pt;}
.y15{bottom:494.133333pt;}
.y88{bottom:495.173333pt;}
.y5c{bottom:499.093333pt;}
.y14{bottom:509.733333pt;}
.y87{bottom:510.773333pt;}
.yb5{bottom:511.493333pt;}
.y5b{bottom:514.693333pt;}
.y3e{bottom:518.453333pt;}
.y13{bottom:525.413333pt;}
.yb4{bottom:527.173333pt;}
.y5a{bottom:530.373333pt;}
.y86{bottom:534.453333pt;}
.y12{bottom:541.013333pt;}
.y59{bottom:545.973333pt;}
.y85{bottom:550.053333pt;}
.yb3{bottom:550.773333pt;}
.y11{bottom:556.613333pt;}
.y58{bottom:561.653333pt;}
.y3d{bottom:561.733333pt;}
.y84{bottom:565.653333pt;}
.yb2{bottom:566.453333pt;}
.y10{bottom:572.293333pt;}
.y57{bottom:577.253333pt;}
.yb1{bottom:582.053333pt;}
.yf{bottom:587.893333pt;}
.y83{bottom:589.333333pt;}
.y56{bottom:592.853333pt;}
.y3c{bottom:593.413333pt;}
.ye{bottom:603.573333pt;}
.y82{bottom:604.933333pt;}
.yb0{bottom:605.653333pt;}
.y55{bottom:608.533333pt;}
.y3b{bottom:609.013333pt;}
.yd{bottom:619.173333pt;}
.y81{bottom:620.613333pt;}
.yaf{bottom:621.333333pt;}
.y54{bottom:624.133333pt;}
.y3a{bottom:624.613333pt;}
.yc{bottom:634.773333pt;}
.yae{bottom:636.933333pt;}
.y53{bottom:639.813333pt;}
.y39{bottom:640.293333pt;}
.y80{bottom:644.213333pt;}
.yb{bottom:650.453333pt;}
.y52{bottom:655.413333pt;}
.y38{bottom:655.893333pt;}
.y7f{bottom:659.813333pt;}
.yad{bottom:660.613333pt;}
.y51{bottom:671.013333pt;}
.y37{bottom:671.573333pt;}
.ya{bottom:674.373333pt;}
.yac{bottom:676.213333pt;}
.y7e{bottom:683.733333pt;}
.y50{bottom:686.693333pt;}
.y36{bottom:695.173333pt;}
.yab{bottom:699.813333pt;}
.y4f{bottom:702.293333pt;}
.yaa{bottom:715.493333pt;}
.y9{bottom:715.893333pt;}
.y4e{bottom:717.973333pt;}
.y7d{bottom:726.693333pt;}
.y35{bottom:726.773333pt;}
.ya9{bottom:731.093333pt;}
.y7c{bottom:742.293333pt;}
.y34{bottom:742.453333pt;}
.y8{bottom:747.733333pt;}
.y4d{bottom:749.573333pt;}
.ya8{bottom:754.693333pt;}
.y7b{bottom:757.973333pt;}
.y33{bottom:766.053333pt;}
.ya7{bottom:770.373333pt;}
.y7a{bottom:773.573333pt;}
.y4c{bottom:778.213333pt;}
.y7{bottom:779.733333pt;}
.y79{bottom:789.173333pt;}
.ya6{bottom:793.973333pt;}
.y32{bottom:797.733333pt;}
.ya5{bottom:809.653333pt;}
.y6{bottom:811.733333pt;}
.y78{bottom:813.093333pt;}
.y31{bottom:813.333333pt;}
.ya4{bottom:825.253333pt;}
.y30{bottom:828.933333pt;}
.y5{bottom:843.813333pt;}
.ya3{bottom:848.853333pt;}
.y2f{bottom:852.613333pt;}
.y77{bottom:856.053333pt;}
.ya2{bottom:864.533333pt;}
.y76{bottom:871.653333pt;}
.y4{bottom:877.893333pt;}
.y2e{bottom:884.213333pt;}
.y75{bottom:887.413333pt;}
.ya1{bottom:888.133333pt;}
.y3{bottom:899.840000pt;}
.ya0{bottom:903.840000pt;}
.y74{bottom:904.160000pt;}
.y2d{bottom:915.520000pt;}
.y9f{bottom:919.440000pt;}
.y73{bottom:919.840000pt;}
.y2c{bottom:931.120000pt;}
.y72{bottom:935.440000pt;}
.y9e{bottom:943.040000pt;}
.y2b{bottom:946.800000pt;}
.y71{bottom:951.040000pt;}
.y9d{bottom:958.720000pt;}
.y70{bottom:966.720000pt;}
.y2a{bottom:970.400000pt;}
.y9c{bottom:974.320000pt;}
.y6f{bottom:982.320000pt;}
.y6e{bottom:998.000000pt;}
.y29{bottom:1002.320000pt;}
.y6d{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.hb{height:23.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.he{height:39.280000pt;}
.hc{height:43.280000pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.hf{height:54.927899pt;}
.h8{height:55.631875pt;}
.hd{height:60.190452pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.h9{height:64.258816pt;}
.ha{height:66.625000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:49.146667pt;}
.w8{width:95.280000pt;}
.w3{width:96.586667pt;}
.w5{width:101.520000pt;}
.w6{width:112.720000pt;}
.wa{width:216.640000pt;}
.w9{width:221.786667pt;}
.w4{width:251.386667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.x10{left:98.879988pt;}
.xc{left:104.480000pt;}
.x5{left:114.880000pt;}
.xb{left:149.466655pt;}
.xd{left:154.346667pt;}
.x2{left:180.266655pt;}
.x7{left:212.106667pt;}
.xe{left:250.346667pt;}
.x4{left:350.986655pt;}
.x8{left:464.133333pt;}
.xf{left:472.853333pt;}
.x9{left:566.373333pt;}
.xa{left:597.413322pt;}
.x3{left:704.053322pt;}
}




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