
    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_c46b19d9481d517138480f13.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.030273;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_904d7fa984916c1e8791bb48.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_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.783691;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_ee57db22f6bb06f10c4000f5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_c729c6a03835b2bc9a27e29c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090332;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_e69fe4e13bfd634e003cb679.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.063000;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_1aef1bd1a52955219f29d951.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.166000;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_666167d6146efc9d78028e6b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.157000;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_c83ec0942406881145dd18f5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.078125;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_52be2abd2c32d8949d952bb5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.078125;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_c534e3dbc717918c59888e49.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.022949;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_90b618ba61bd589c2827c62a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.087891;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_cebf6bfcd75be515cceee208.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.166000;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);}
.v3{vertical-align:-36.000000px;}
.v5{vertical-align:-6.420000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:49.500000px;}
.v1{vertical-align:171.000000px;}
.v4{vertical-align:199.380000px;}
.ls9{letter-spacing:-1.764000px;}
.ls8{letter-spacing:-0.469800px;}
.ls7{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.045000px;}
.ls6{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.540000px;}
.ls3{letter-spacing:0.700500px;}
.lsd{letter-spacing:1.248000px;}
.lse{letter-spacing:1.332000px;}
.lsa{letter-spacing:2.202000px;}
.lsc{letter-spacing:2.670000px;}
.ls1{letter-spacing:41.849100px;}
.ls0{letter-spacing:41.967000px;}
.ls5{letter-spacing:48.398100px;}
.ls4{letter-spacing:48.516000px;}
.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:-146.184360px;}
.ws3{word-spacing:-115.230000px;}
.ws0{word-spacing:-87.696000px;}
.wse{word-spacing:-65.802450px;}
.wsc{word-spacing:-65.772000px;}
.ws9{word-spacing:-48.445950px;}
.wsa{word-spacing:-48.415500px;}
.ws1{word-spacing:-48.380100px;}
.ws4{word-spacing:-47.700000px;}
.wsd{word-spacing:-43.848000px;}
.wsb{word-spacing:-39.280500px;}
.ws8{word-spacing:-33.799500px;}
.ws11{word-spacing:-29.232000px;}
.ws2{word-spacing:-26.491500px;}
.ws15{word-spacing:-22.932000px;}
.ws14{word-spacing:-22.878000px;}
.ws13{word-spacing:-21.600000px;}
.ws5{word-spacing:-20.736000px;}
.ws6{word-spacing:-15.552000px;}
.ws12{word-spacing:-0.720120px;}
.ws7{word-spacing:-0.166500px;}
.ws16{word-spacing:0.000000px;}
.wsf{word-spacing:1.350000px;}
._e{margin-left:-24.624000px;}
._b{margin-left:-21.559050px;}
._f{margin-left:-17.928000px;}
._d{margin-left:-15.675450px;}
._a{margin-left:-11.793150px;}
._9{margin-left:-8.783250px;}
._6{margin-left:-6.988500px;}
._2{margin-left:-5.184000px;}
._7{margin-left:-4.051350px;}
._3{margin-left:-3.041550px;}
._1{margin-left:-1.728000px;}
._5{width:1.101600px;}
._0{width:2.160000px;}
._4{width:3.915000px;}
._8{width:5.300250px;}
._12{width:10.062300px;}
._10{width:15.716160px;}
._c{width:40.253100px;}
._11{width:49.911720px;}
._13{width:3938.844450px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:81.000000px;}
.fs1a{font-size:108.000000px;}
.fs1b{font-size:108.150000px;}
.fs9{font-size:112.500000px;}
.fsb{font-size:121.500000px;}
.fs2{font-size:130.500000px;}
.fs4{font-size:130.650000px;}
.fs16{font-size:144.000000px;}
.fs17{font-size:144.150000px;}
.fse{font-size:157.500000px;}
.fsd{font-size:157.650000px;}
.fs8{font-size:166.500000px;}
.fsc{font-size:166.650000px;}
.fs10{font-size:193.500000px;}
.fs11{font-size:193.650000px;}
.fs3{font-size:216.000000px;}
.fs1{font-size:216.150000px;}
.fs7{font-size:238.500000px;}
.fsf{font-size:238.650000px;}
.fs13{font-size:324.000000px;}
.fs12{font-size:324.150000px;}
.fs6{font-size:382.500000px;}
.fs0{font-size:432.000000px;}
.fs18{font-size:481.500000px;}
.fs19{font-size:481.650000px;}
.fs5{font-size:576.150000px;}
.fs14{font-size:720.000000px;}
.fs15{font-size:720.120000px;}
.y0{bottom:0.000000px;}
.y86{bottom:44.175000px;}
.y85{bottom:73.462500px;}
.y84{bottom:107.212500px;}
.y83{bottom:136.462500px;}
.y82{bottom:165.705000px;}
.y81{bottom:194.970000px;}
.y80{bottom:228.720000px;}
.y7f{bottom:256.830000px;}
.y7e{bottom:286.095000px;}
.y7d{bottom:315.345000px;}
.y67{bottom:354.045000px;}
.y65{bottom:354.945000px;}
.y7c{bottom:434.100000px;}
.y10{bottom:441.795000px;}
.y63{bottom:443.595000px;}
.y5e{bottom:467.925000px;}
.y7b{bottom:476.895000px;}
.yf{bottom:482.295000px;}
.y62{bottom:486.330000px;}
.y5d{bottom:518.550000px;}
.y7a{bottom:520.770000px;}
.ye{bottom:521.655000px;}
.y61{bottom:530.250000px;}
.yd{bottom:561.075000px;}
.y79{bottom:563.520000px;}
.y5c{bottom:569.175000px;}
.y66{bottom:572.730000px;}
.y60{bottom:573.000000px;}
.y64{bottom:573.645000px;}
.y78{bottom:606.255000px;}
.y5f{bottom:615.750000px;}
.ya{bottom:629.250000px;}
.y77{bottom:733.320000px;}
.y14{bottom:745.350000px;}
.y76{bottom:776.100000px;}
.y13{bottom:785.850000px;}
.y5b{bottom:794.100000px;}
.y75{bottom:819.975000px;}
.y12{bottom:825.225000px;}
.y74{bottom:862.725000px;}
.y11{bottom:864.600000px;}
.y73{bottom:905.475000px;}
.y9{bottom:932.925000px;}
.y72{bottom:1019.025000px;}
.y71{bottom:1062.900000px;}
.y5a{bottom:1082.475000px;}
.y70{bottom:1105.650000px;}
.yc{bottom:1127.100000px;}
.y6f{bottom:1149.525000px;}
.yb{bottom:1166.475000px;}
.y6e{bottom:1192.275000px;}
.y8{bottom:1229.820000px;}
.y6d{bottom:1235.025000px;}
.y7{bottom:1315.845000px;}
.y6c{bottom:1347.570000px;}
.y6{bottom:1355.220000px;}
.y59{bottom:1384.500000px;}
.y58{bottom:1385.280000px;}
.y6b{bottom:1390.320000px;}
.y5{bottom:1395.720000px;}
.y6a{bottom:1434.195000px;}
.y4{bottom:1435.080000px;}
.y3{bottom:1474.470000px;}
.y69{bottom:1476.945000px;}
.y68{bottom:1519.695000px;}
.y2{bottom:1536.000000px;}
.y1{bottom:1654.770000px;}
.y51{bottom:1958.730000px;}
.y57{bottom:1958.850000px;}
.y50{bottom:2023.995000px;}
.y4b{bottom:2024.025000px;}
.y56{bottom:2024.100000px;}
.y4f{bottom:2089.230000px;}
.y4a{bottom:2089.320000px;}
.y55{bottom:2089.350000px;}
.y46{bottom:2089.530000px;}
.y4e{bottom:2153.355000px;}
.y49{bottom:2153.445000px;}
.y54{bottom:2153.505000px;}
.y45{bottom:2153.655000px;}
.y4d{bottom:2290.650000px;}
.y48{bottom:2290.695000px;}
.y53{bottom:2290.770000px;}
.y44{bottom:2290.920000px;}
.y4c{bottom:2388.525000px;}
.y47{bottom:2388.570000px;}
.y52{bottom:2388.645000px;}
.y43{bottom:2388.825000px;}
.y42{bottom:2621.970000px;}
.y41{bottom:2808.795000px;}
.y2f{bottom:2905.275000px;}
.y40{bottom:2917.905000px;}
.y2e{bottom:2966.025000px;}
.y3f{bottom:2976.420000px;}
.y2d{bottom:3026.775000px;}
.y3e{bottom:3037.170000px;}
.y2c{bottom:3087.525000px;}
.y2b{bottom:3148.305000px;}
.y3d{bottom:3188.100000px;}
.y3c{bottom:3245.475000px;}
.y2a{bottom:3263.055000px;}
.y3b{bottom:3303.975000px;}
.y29{bottom:3319.305000px;}
.y3a{bottom:3364.725000px;}
.y28{bottom:3374.430000px;}
.y27{bottom:3429.555000px;}
.y39{bottom:3515.625000px;}
.y26{bottom:3540.975000px;}
.y38{bottom:3573.030000px;}
.y25{bottom:3596.100000px;}
.y37{bottom:3631.530000px;}
.y24{bottom:3651.225000px;}
.y36{bottom:3692.280000px;}
.y23{bottom:3762.600000px;}
.y22{bottom:3817.725000px;}
.y21{bottom:3874.005000px;}
.y35{bottom:3900.555000px;}
.y34{bottom:3959.100000px;}
.y20{bottom:3984.255000px;}
.y33{bottom:4019.850000px;}
.y1f{bottom:4039.380000px;}
.y1e{bottom:4150.755000px;}
.y1d{bottom:4205.925000px;}
.y32{bottom:4228.125000px;}
.y1c{bottom:4261.050000px;}
.y31{bottom:4286.625000px;}
.y1b{bottom:4317.300000px;}
.y30{bottom:4347.405000px;}
.y1a{bottom:4372.425000px;}
.y19{bottom:4474.500000px;}
.y18{bottom:4516.125000px;}
.y17{bottom:4594.650000px;}
.y16{bottom:4658.775000px;}
.y15{bottom:4784.925000px;}
.h9{height:70.794000px;}
.h1e{height:92.016000px;}
.h1f{height:94.392000px;}
.h20{height:94.523100px;}
.h3{height:113.104248px;}
.h5{height:113.234253px;}
.h1a{height:124.804688px;}
.h1b{height:124.934692px;}
.he{height:136.505127px;}
.hd{height:136.635132px;}
.hc{height:140.728271px;}
.ha{height:144.305420px;}
.hb{height:144.435425px;}
.h8{height:147.825000px;}
.h10{height:167.706299px;}
.h12{height:167.836304px;}
.h15{height:187.207031px;}
.h16{height:187.337036px;}
.h11{height:201.583740px;}
.hf{height:201.710522px;}
.h7{height:208.449000px;}
.h4{height:214.839844px;}
.h2{height:214.989038px;}
.h14{height:280.810547px;}
.h13{height:280.940552px;}
.h1{height:365.132812px;}
.h1c{height:417.315674px;}
.h1d{height:417.445679px;}
.h6{height:496.890000px;}
.h19{height:622.369336px;}
.h17{height:624.023438px;}
.h18{height:624.127441px;}
.h0{height:5055.750000px;}
.w2{width:3576.374947px;}
.w0{width:3576.375000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x33{left:119.624947px;}
.xc{left:129.674947px;}
.x2e{left:133.949947px;}
.x29{left:140.962447px;}
.xf{left:165.674947px;}
.x20{left:169.844947px;}
.x2b{left:191.924947px;}
.x22{left:215.024947px;}
.x25{left:312.494947px;}
.x21{left:328.274947px;}
.x24{left:368.324947px;}
.x23{left:414.674947px;}
.x26{left:472.574947px;}
.x2f{left:577.694947px;}
.x30{left:663.974947px;}
.x2a{left:668.729947px;}
.x27{left:705.299947px;}
.x2c{left:741.599947px;}
.x28{left:936.419947px;}
.x1a{left:1001.699947px;}
.x1e{left:1028.549947px;}
.x1d{left:1035.329947px;}
.x1f{left:1048.904947px;}
.x1c{left:1065.824947px;}
.x1b{left:1067.954947px;}
.x31{left:1107.674947px;}
.x9{left:1302.569947px;}
.x3{left:1303.694947px;}
.x10{left:1319.699947px;}
.xa{left:1338.704947px;}
.x4{left:1339.829947px;}
.x8{left:1502.999947px;}
.x1{left:1509.824947px;}
.x6{left:1540.769947px;}
.x2{left:1589.324947px;}
.x7{left:1606.394947px;}
.x16{left:1627.349947px;}
.x18{left:1708.274947px;}
.x19{left:1719.674947px;}
.x17{left:1723.124947px;}
.x15{left:1733.069947px;}
.xd{left:1861.169947px;}
.xe{left:1882.394947px;}
.xb{left:1911.254947px;}
.x5{left:1912.394947px;}
.x12{left:2317.424947px;}
.x11{left:2350.274947px;}
.x13{left:2375.504947px;}
.x14{left:2447.819947px;}
.x2d{left:2721.254947px;}
.x32{left:2761.904947px;}
@media print{
.v3{vertical-align:-32.000000pt;}
.v5{vertical-align:-5.706667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:44.000000pt;}
.v1{vertical-align:152.000000pt;}
.v4{vertical-align:177.226667pt;}
.ls9{letter-spacing:-1.568000pt;}
.ls8{letter-spacing:-0.417600pt;}
.ls7{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.040000pt;}
.ls6{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.480000pt;}
.ls3{letter-spacing:0.622667pt;}
.lsd{letter-spacing:1.109333pt;}
.lse{letter-spacing:1.184000pt;}
.lsa{letter-spacing:1.957333pt;}
.lsc{letter-spacing:2.373333pt;}
.ls1{letter-spacing:37.199200pt;}
.ls0{letter-spacing:37.304000pt;}
.ls5{letter-spacing:43.020533pt;}
.ls4{letter-spacing:43.125333pt;}
.ws10{word-spacing:-129.941653pt;}
.ws3{word-spacing:-102.426667pt;}
.ws0{word-spacing:-77.952000pt;}
.wse{word-spacing:-58.491067pt;}
.wsc{word-spacing:-58.464000pt;}
.ws9{word-spacing:-43.063067pt;}
.wsa{word-spacing:-43.036000pt;}
.ws1{word-spacing:-43.004533pt;}
.ws4{word-spacing:-42.400000pt;}
.wsd{word-spacing:-38.976000pt;}
.wsb{word-spacing:-34.916000pt;}
.ws8{word-spacing:-30.044000pt;}
.ws11{word-spacing:-25.984000pt;}
.ws2{word-spacing:-23.548000pt;}
.ws15{word-spacing:-20.384000pt;}
.ws14{word-spacing:-20.336000pt;}
.ws13{word-spacing:-19.200000pt;}
.ws5{word-spacing:-18.432000pt;}
.ws6{word-spacing:-13.824000pt;}
.ws12{word-spacing:-0.640107pt;}
.ws7{word-spacing:-0.148000pt;}
.ws16{word-spacing:0.000000pt;}
.wsf{word-spacing:1.200000pt;}
._e{margin-left:-21.888000pt;}
._b{margin-left:-19.163600pt;}
._f{margin-left:-15.936000pt;}
._d{margin-left:-13.933733pt;}
._a{margin-left:-10.482800pt;}
._9{margin-left:-7.807333pt;}
._6{margin-left:-6.212000pt;}
._2{margin-left:-4.608000pt;}
._7{margin-left:-3.601200pt;}
._3{margin-left:-2.703600pt;}
._1{margin-left:-1.536000pt;}
._5{width:0.979200pt;}
._0{width:1.920000pt;}
._4{width:3.480000pt;}
._8{width:4.711333pt;}
._12{width:8.944267pt;}
._10{width:13.969920pt;}
._c{width:35.780533pt;}
._11{width:44.365973pt;}
._13{width:3501.195067pt;}
.fsa{font-size:72.000000pt;}
.fs1a{font-size:96.000000pt;}
.fs1b{font-size:96.133333pt;}
.fs9{font-size:100.000000pt;}
.fsb{font-size:108.000000pt;}
.fs2{font-size:116.000000pt;}
.fs4{font-size:116.133333pt;}
.fs16{font-size:128.000000pt;}
.fs17{font-size:128.133333pt;}
.fse{font-size:140.000000pt;}
.fsd{font-size:140.133333pt;}
.fs8{font-size:148.000000pt;}
.fsc{font-size:148.133333pt;}
.fs10{font-size:172.000000pt;}
.fs11{font-size:172.133333pt;}
.fs3{font-size:192.000000pt;}
.fs1{font-size:192.133333pt;}
.fs7{font-size:212.000000pt;}
.fsf{font-size:212.133333pt;}
.fs13{font-size:288.000000pt;}
.fs12{font-size:288.133333pt;}
.fs6{font-size:340.000000pt;}
.fs0{font-size:384.000000pt;}
.fs18{font-size:428.000000pt;}
.fs19{font-size:428.133333pt;}
.fs5{font-size:512.133333pt;}
.fs14{font-size:640.000000pt;}
.fs15{font-size:640.106667pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:39.266667pt;}
.y85{bottom:65.300000pt;}
.y84{bottom:95.300000pt;}
.y83{bottom:121.300000pt;}
.y82{bottom:147.293333pt;}
.y81{bottom:173.306667pt;}
.y80{bottom:203.306667pt;}
.y7f{bottom:228.293333pt;}
.y7e{bottom:254.306667pt;}
.y7d{bottom:280.306667pt;}
.y67{bottom:314.706667pt;}
.y65{bottom:315.506667pt;}
.y7c{bottom:385.866667pt;}
.y10{bottom:392.706667pt;}
.y63{bottom:394.306667pt;}
.y5e{bottom:415.933333pt;}
.y7b{bottom:423.906667pt;}
.yf{bottom:428.706667pt;}
.y62{bottom:432.293333pt;}
.y5d{bottom:460.933333pt;}
.y7a{bottom:462.906667pt;}
.ye{bottom:463.693333pt;}
.y61{bottom:471.333333pt;}
.yd{bottom:498.733333pt;}
.y79{bottom:500.906667pt;}
.y5c{bottom:505.933333pt;}
.y66{bottom:509.093333pt;}
.y60{bottom:509.333333pt;}
.y64{bottom:509.906667pt;}
.y78{bottom:538.893333pt;}
.y5f{bottom:547.333333pt;}
.ya{bottom:559.333333pt;}
.y77{bottom:651.840000pt;}
.y14{bottom:662.533333pt;}
.y76{bottom:689.866667pt;}
.y13{bottom:698.533333pt;}
.y5b{bottom:705.866667pt;}
.y75{bottom:728.866667pt;}
.y12{bottom:733.533333pt;}
.y74{bottom:766.866667pt;}
.y11{bottom:768.533333pt;}
.y73{bottom:804.866667pt;}
.y9{bottom:829.266667pt;}
.y72{bottom:905.800000pt;}
.y71{bottom:944.800000pt;}
.y5a{bottom:962.200000pt;}
.y70{bottom:982.800000pt;}
.yc{bottom:1001.866667pt;}
.y6f{bottom:1021.800000pt;}
.yb{bottom:1036.866667pt;}
.y6e{bottom:1059.800000pt;}
.y8{bottom:1093.173333pt;}
.y6d{bottom:1097.800000pt;}
.y7{bottom:1169.640000pt;}
.y6c{bottom:1197.840000pt;}
.y6{bottom:1204.640000pt;}
.y59{bottom:1230.666667pt;}
.y58{bottom:1231.360000pt;}
.y6b{bottom:1235.840000pt;}
.y5{bottom:1240.640000pt;}
.y6a{bottom:1274.840000pt;}
.y4{bottom:1275.626667pt;}
.y3{bottom:1310.640000pt;}
.y69{bottom:1312.840000pt;}
.y68{bottom:1350.840000pt;}
.y2{bottom:1365.333333pt;}
.y1{bottom:1470.906667pt;}
.y51{bottom:1741.093333pt;}
.y57{bottom:1741.200000pt;}
.y50{bottom:1799.106667pt;}
.y4b{bottom:1799.133333pt;}
.y56{bottom:1799.200000pt;}
.y4f{bottom:1857.093333pt;}
.y4a{bottom:1857.173333pt;}
.y55{bottom:1857.200000pt;}
.y46{bottom:1857.360000pt;}
.y4e{bottom:1914.093333pt;}
.y49{bottom:1914.173333pt;}
.y54{bottom:1914.226667pt;}
.y45{bottom:1914.360000pt;}
.y4d{bottom:2036.133333pt;}
.y48{bottom:2036.173333pt;}
.y53{bottom:2036.240000pt;}
.y44{bottom:2036.373333pt;}
.y4c{bottom:2123.133333pt;}
.y47{bottom:2123.173333pt;}
.y52{bottom:2123.240000pt;}
.y43{bottom:2123.400000pt;}
.y42{bottom:2330.640000pt;}
.y41{bottom:2496.706667pt;}
.y2f{bottom:2582.466667pt;}
.y40{bottom:2593.693333pt;}
.y2e{bottom:2636.466667pt;}
.y3f{bottom:2645.706667pt;}
.y2d{bottom:2690.466667pt;}
.y3e{bottom:2699.706667pt;}
.y2c{bottom:2744.466667pt;}
.y2b{bottom:2798.493333pt;}
.y3d{bottom:2833.866667pt;}
.y3c{bottom:2884.866667pt;}
.y2a{bottom:2900.493333pt;}
.y3b{bottom:2936.866667pt;}
.y29{bottom:2950.493333pt;}
.y3a{bottom:2990.866667pt;}
.y28{bottom:2999.493333pt;}
.y27{bottom:3048.493333pt;}
.y39{bottom:3125.000000pt;}
.y26{bottom:3147.533333pt;}
.y38{bottom:3176.026667pt;}
.y25{bottom:3196.533333pt;}
.y37{bottom:3228.026667pt;}
.y24{bottom:3245.533333pt;}
.y36{bottom:3282.026667pt;}
.y23{bottom:3344.533333pt;}
.y22{bottom:3393.533333pt;}
.y21{bottom:3443.560000pt;}
.y35{bottom:3467.160000pt;}
.y34{bottom:3519.200000pt;}
.y20{bottom:3541.560000pt;}
.y33{bottom:3573.200000pt;}
.y1f{bottom:3590.560000pt;}
.y1e{bottom:3689.560000pt;}
.y1d{bottom:3738.600000pt;}
.y32{bottom:3758.333333pt;}
.y1c{bottom:3787.600000pt;}
.y31{bottom:3810.333333pt;}
.y1b{bottom:3837.600000pt;}
.y30{bottom:3864.360000pt;}
.y1a{bottom:3886.600000pt;}
.y19{bottom:3977.333333pt;}
.y18{bottom:4014.333333pt;}
.y17{bottom:4084.133333pt;}
.y16{bottom:4141.133333pt;}
.y15{bottom:4253.266667pt;}
.h9{height:62.928000pt;}
.h1e{height:81.792000pt;}
.h1f{height:83.904000pt;}
.h20{height:84.020533pt;}
.h3{height:100.537109pt;}
.h5{height:100.652669pt;}
.h1a{height:110.937500pt;}
.h1b{height:111.053060pt;}
.he{height:121.337891pt;}
.hd{height:121.453451pt;}
.hc{height:125.091797pt;}
.ha{height:128.271484pt;}
.hb{height:128.387044pt;}
.h8{height:131.400000pt;}
.h10{height:149.072266pt;}
.h12{height:149.187826pt;}
.h15{height:166.406250pt;}
.h16{height:166.521810pt;}
.h11{height:179.185547pt;}
.hf{height:179.298242pt;}
.h7{height:185.288000pt;}
.h4{height:190.968750pt;}
.h2{height:191.101367pt;}
.h14{height:249.609375pt;}
.h13{height:249.724935pt;}
.h1{height:324.562500pt;}
.h1c{height:370.947266pt;}
.h1d{height:371.062826pt;}
.h6{height:441.680000pt;}
.h19{height:553.217187pt;}
.h17{height:554.687500pt;}
.h18{height:554.779948pt;}
.h0{height:4494.000000pt;}
.w2{width:3178.999953pt;}
.w0{width:3179.000000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x33{left:106.333286pt;}
.xc{left:115.266619pt;}
.x2e{left:119.066619pt;}
.x29{left:125.299953pt;}
.xf{left:147.266619pt;}
.x20{left:150.973286pt;}
.x2b{left:170.599953pt;}
.x22{left:191.133286pt;}
.x25{left:277.773286pt;}
.x21{left:291.799953pt;}
.x24{left:327.399953pt;}
.x23{left:368.599953pt;}
.x26{left:420.066619pt;}
.x2f{left:513.506619pt;}
.x30{left:590.199953pt;}
.x2a{left:594.426619pt;}
.x27{left:626.933286pt;}
.x2c{left:659.199953pt;}
.x28{left:832.373286pt;}
.x1a{left:890.399953pt;}
.x1e{left:914.266619pt;}
.x1d{left:920.293286pt;}
.x1f{left:932.359953pt;}
.x1c{left:947.399953pt;}
.x1b{left:949.293286pt;}
.x31{left:984.599953pt;}
.x9{left:1157.839953pt;}
.x3{left:1158.839953pt;}
.x10{left:1173.066619pt;}
.xa{left:1189.959953pt;}
.x4{left:1190.959953pt;}
.x8{left:1335.999953pt;}
.x1{left:1342.066619pt;}
.x6{left:1369.573286pt;}
.x2{left:1412.733286pt;}
.x7{left:1427.906619pt;}
.x16{left:1446.533286pt;}
.x18{left:1518.466619pt;}
.x19{left:1528.599953pt;}
.x17{left:1531.666619pt;}
.x15{left:1540.506619pt;}
.xd{left:1654.373286pt;}
.xe{left:1673.239953pt;}
.xb{left:1698.893286pt;}
.x5{left:1699.906619pt;}
.x12{left:2059.933286pt;}
.x11{left:2089.133286pt;}
.x13{left:2111.559953pt;}
.x14{left:2175.839953pt;}
.x2d{left:2418.893286pt;}
.x32{left:2455.026619pt;}
}




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