
    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_276b7789ab91edc6471b485f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.954000;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_c10209b5e62550bf7662f3bc.woff')format("woff");}.ff2{font-family:ff2;line-height:0.975000;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_706b5a96bc58ba2fdd910f4e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.007000;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_a7c5ca8e5842dda2f9a9dfaf.woff')format("woff");}.ff4{font-family:ff4;line-height:0.996000;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_34dd8948a1116d24e71b64c6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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_2338784c6b7d12a2956a5733.woff')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.249990,0.002180,-0.002180,0.249990,0,0);-ms-transform:matrix(0.249990,0.002180,-0.002180,0.249990,0,0);-webkit-transform:matrix(0.249990,0.002180,-0.002180,0.249990,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:60.618341px;}
.ls3{letter-spacing:-0.723082px;}
.ls5{letter-spacing:-0.602568px;}
.ls4{letter-spacing:-0.078000px;}
.ls1{letter-spacing:-0.062309px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.608911px;}
.ls0{letter-spacing:5.760960px;}
.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;}
}
.ws2{word-spacing:-24.192000px;}
.ws5{word-spacing:-20.280000px;}
.ws3{word-spacing:-19.656000px;}
.ws1{word-spacing:-5.789765px;}
.ws9{word-spacing:-0.608911px;}
.ws0{word-spacing:0.000000px;}
.ws7{word-spacing:0.078000px;}
.ws8{word-spacing:0.602568px;}
.ws6{word-spacing:0.723082px;}
.ws4{word-spacing:62.370000px;}
._4{margin-left:-7.382988px;}
._6{margin-left:-6.255967px;}
._3{margin-left:-4.139516px;}
._2{margin-left:-2.524095px;}
._1{margin-left:-1.121569px;}
._0{width:1.302266px;}
._5{width:2.943809px;}
._7{width:80.388000px;}
._8{width:4851.803789px;}
.fc4{color:rgb(200,235,217);}
.fc3{color:rgb(118,128,139);}
.fc2{color:rgb(204,226,219);}
.fc1{color:rgb(33,66,116);}
.fc0{color:rgb(255,255,255);}
.fsd{font-size:17.371200px;}
.fse{font-size:28.804800px;}
.fsf{font-size:50.482200px;}
.fs15{font-size:50.742600px;}
.fs0{font-size:62.309400px;}
.fs12{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fsc{font-size:74.311025px;}
.fs6{font-size:75.723000px;}
.fs11{font-size:76.113600px;}
.fs14{font-size:78.000000px;}
.fs3{font-size:82.033200px;}
.fsb{font-size:85.352400px;}
.fs1{font-size:88.343400px;}
.fs4{font-size:90.000000px;}
.fs10{font-size:96.000000px;}
.fs2{font-size:100.963800px;}
.fsa{font-size:106.690800px;}
.fs8{font-size:107.758200px;}
.fs7{font-size:119.894400px;}
.fs13{font-size:120.513600px;}
.fs9{font-size:128.029200px;}
.y0{bottom:0.000000px;}
.y6f{bottom:293.931810px;}
.y4a{bottom:299.093640px;}
.y49{bottom:314.238300px;}
.y6e{bottom:316.765890px;}
.y37{bottom:327.088800px;}
.y6d{bottom:339.599970px;}
.y36{bottom:348.688800px;}
.y6c{bottom:362.434050px;}
.yab{bottom:362.638500px;}
.y35{bottom:370.288800px;}
.yaa{bottom:384.238500px;}
.y6b{bottom:385.268130px;}
.y34{bottom:391.888800px;}
.ya9{bottom:405.838500px;}
.y6a{bottom:408.102210px;}
.y33{bottom:413.488800px;}
.ya8{bottom:427.438500px;}
.y69{bottom:430.936290px;}
.y6{bottom:447.772650px;}
.ya7{bottom:449.038500px;}
.y32{bottom:452.441850px;}
.y68{bottom:453.770370px;}
.ya6{bottom:470.638500px;}
.y67{bottom:476.604450px;}
.ya5{bottom:492.238500px;}
.y3a{bottom:494.731530px;}
.y31{bottom:496.795200px;}
.y66{bottom:510.538500px;}
.ya4{bottom:513.838500px;}
.y39{bottom:519.341490px;}
.ya3{bottom:535.438500px;}
.y30{bottom:536.865300px;}
.y65{bottom:539.338500px;}
.y38{bottom:543.951450px;}
.y8e{bottom:550.288200px;}
.y2f{bottom:558.465300px;}
.yd4{bottom:565.841220px;}
.y64{bottom:568.138500px;}
.y8d{bottom:571.888200px;}
.y2e{bottom:580.065300px;}
.yd3{bottom:581.064000px;}
.y13{bottom:591.438090px;}
.y8c{bottom:593.488200px;}
.y63{bottom:596.938500px;}
.y2d{bottom:601.665300px;}
.y8b{bottom:615.088200px;}
.y12{bottom:616.048050px;}
.y2c{bottom:623.265300px;}
.yc0{bottom:636.687600px;}
.y8a{bottom:636.688200px;}
.y11{bottom:640.658010px;}
.y2b{bottom:644.865300px;}
.ybf{bottom:658.287600px;}
.y89{bottom:658.288200px;}
.ya1{bottom:663.069750px;}
.y10{bottom:665.267970px;}
.y5{bottom:675.729450px;}
.ybe{bottom:679.887600px;}
.y88{bottom:679.888200px;}
.y2a{bottom:683.818350px;}
.ya0{bottom:684.669750px;}
.yf{bottom:689.877930px;}
.ybd{bottom:701.487600px;}
.y87{bottom:701.488200px;}
.y9f{bottom:706.269750px;}
.ye{bottom:714.487890px;}
.ybc{bottom:723.087600px;}
.y86{bottom:723.088200px;}
.y9e{bottom:727.869750px;}
.y62{bottom:735.070050px;}
.yd{bottom:739.097850px;}
.ybb{bottom:744.687600px;}
.y85{bottom:744.688200px;}
.y9d{bottom:749.469750px;}
.yc9{bottom:753.416700px;}
.yc3{bottom:754.456200px;}
.ya2{bottom:755.623500px;}
.y61{bottom:756.670050px;}
.y44{bottom:757.815150px;}
.yba{bottom:766.287600px;}
.y84{bottom:766.288200px;}
.y29{bottom:768.241650px;}
.y9c{bottom:771.069750px;}
.y60{bottom:778.270050px;}
.yc8{bottom:784.321200px;}
.yc2{bottom:785.360700px;}
.yb9{bottom:787.887600px;}
.y83{bottom:787.888200px;}
.y28{bottom:789.841650px;}
.y9b{bottom:792.669750px;}
.y5f{bottom:799.870050px;}
.yce{bottom:800.339100px;}
.yb8{bottom:809.487600px;}
.y27{bottom:811.441650px;}
.y9a{bottom:814.269750px;}
.yc7{bottom:815.225700px;}
.yc1{bottom:816.265200px;}
.y1{bottom:817.571100px;}
.y82{bottom:820.587600px;}
.y5e{bottom:821.470050px;}
.ycd{bottom:823.739100px;}
.yb7{bottom:831.087600px;}
.y26{bottom:833.041650px;}
.y99{bottom:835.869750px;}
.y5d{bottom:843.070050px;}
.yc6{bottom:846.130200px;}
.yc{bottom:846.898800px;}
.ycc{bottom:847.139100px;}
.y81{bottom:849.387600px;}
.yb6{bottom:852.687600px;}
.y25{bottom:854.641650px;}
.y98{bottom:857.469750px;}
.y5c{bottom:864.670050px;}
.yb5{bottom:874.287600px;}
.y24{bottom:876.241650px;}
.yc5{bottom:877.034700px;}
.yb{bottom:877.187940px;}
.y80{bottom:878.187600px;}
.y5b{bottom:886.270050px;}
.y97{bottom:890.170050px;}
.y2{bottom:905.277900px;}
.y7f{bottom:906.987600px;}
.ya{bottom:907.477080px;}
.yc4{bottom:907.939200px;}
.y23{bottom:915.194850px;}
.y5a{bottom:918.970050px;}
.y7e{bottom:935.787600px;}
.y9{bottom:937.766220px;}
.y59{bottom:947.770050px;}
.y22{bottom:959.548050px;}
.y8{bottom:968.055360px;}
.y7{bottom:998.344500px;}
.y21{bottom:999.617700px;}
.y58{bottom:1008.317250px;}
.y7d{bottom:1018.326600px;}
.y20{bottom:1021.217700px;}
.y57{bottom:1029.917250px;}
.y7c{bottom:1039.926600px;}
.y1f{bottom:1042.817700px;}
.y43{bottom:1047.871650px;}
.y56{bottom:1051.517250px;}
.y7b{bottom:1061.526600px;}
.y1e{bottom:1064.417700px;}
.y55{bottom:1073.117250px;}
.y7a{bottom:1083.126600px;}
.y42{bottom:1090.977600px;}
.y3{bottom:1094.414850px;}
.y54{bottom:1094.717250px;}
.yb4{bottom:1097.527200px;}
.y1d{bottom:1103.370900px;}
.y79{bottom:1104.726600px;}
.y96{bottom:1109.117850px;}
.y53{bottom:1116.317250px;}
.yb3{bottom:1119.127200px;}
.y78{bottom:1126.326600px;}
.y95{bottom:1130.717850px;}
.y41{bottom:1134.080550px;}
.y52{bottom:1137.917250px;}
.yb2{bottom:1140.727200px;}
.y77{bottom:1147.926600px;}
.y94{bottom:1152.317850px;}
.y51{bottom:1159.517250px;}
.yb1{bottom:1162.327200px;}
.y76{bottom:1169.526600px;}
.y93{bottom:1173.917850px;}
.y50{bottom:1181.117250px;}
.yb0{bottom:1183.927200px;}
.y1c{bottom:1187.794800px;}
.y75{bottom:1191.126600px;}
.y92{bottom:1195.517850px;}
.y4f{bottom:1202.717250px;}
.yaf{bottom:1205.527200px;}
.y1b{bottom:1209.394800px;}
.y74{bottom:1212.726600px;}
.y91{bottom:1217.117850px;}
.y40{bottom:1220.288100px;}
.yae{bottom:1227.127200px;}
.y1a{bottom:1230.994800px;}
.y4e{bottom:1235.417850px;}
.y90{bottom:1238.717850px;}
.y73{bottom:1245.427200px;}
.yad{bottom:1248.727200px;}
.y47{bottom:1250.387980px;}
.y19{bottom:1252.594800px;}
.y48{bottom:1253.990550px;}
.y8f{bottom:1260.317850px;}
.y3f{bottom:1263.388200px;}
.y4d{bottom:1264.217850px;}
.yac{bottom:1270.327200px;}
.y18{bottom:1274.194800px;}
.y72{bottom:1274.227200px;}
.y46{bottom:1278.885433px;}
.y4c{bottom:1293.017850px;}
.y17{bottom:1295.794800px;}
.y71{bottom:1303.027200px;}
.y3e{bottom:1306.492650px;}
.y45{bottom:1307.465400px;}
.y16{bottom:1317.394800px;}
.y4b{bottom:1321.817850px;}
.y70{bottom:1331.827200px;}
.y15{bottom:1356.347850px;}
.y4{bottom:1376.130600px;}
.y14{bottom:1383.347850px;}
.y3d{bottom:1392.698700px;}
.yca{bottom:1396.272150px;}
.yd0{bottom:1397.302470px;}
.yd2{bottom:1411.613460px;}
.ycb{bottom:1431.378600px;}
.ycf{bottom:1433.456550px;}
.yd1{bottom:1447.767540px;}
.y3c{bottom:1464.728880px;}
.y3b{bottom:1500.697200px;}
.hf{height:13.167370px;}
.h10{height:21.834038px;}
.h11{height:38.625785px;}
.h18{height:38.825026px;}
.h2{height:47.230525px;}
.h14{height:52.668000px;}
.he{height:56.858094px;}
.h7{height:57.456000px;}
.h16{height:60.138000px;}
.h8{height:60.426954px;}
.h13{height:60.738653px;}
.hd{height:65.306255px;}
.h5{height:65.462494px;}
.h3{height:68.112761px;}
.h6{height:71.190000px;}
.h12{height:75.936000px;}
.h4{height:80.569112px;}
.hc{height:81.633049px;}
.ha{height:82.449756px;}
.h9{height:92.438582px;}
.h15{height:92.915986px;}
.hb{height:97.959842px;}
.h17{height:153.534326px;}
.h1{height:1577.250000px;}
.h0{height:1577.475000px;}
.w1{width:2823.000000px;}
.w0{width:2823.300000px;}
.x0{left:0.000000px;}
.x24{left:36.776400px;}
.x21{left:39.087900px;}
.x25{left:42.386700px;}
.x22{left:62.929650px;}
.x3{left:108.618150px;}
.x4{left:110.566350px;}
.x2{left:112.595250px;}
.x2c{left:131.150400px;}
.x10{left:166.290600px;}
.x11{left:167.497500px;}
.x12{left:168.564600px;}
.x13{left:169.650750px;}
.x14{left:170.736750px;}
.x18{left:193.989300px;}
.x19{left:289.665031px;}
.x27{left:499.592250px;}
.x2f{left:536.709900px;}
.x30{left:604.980854px;}
.x2d{left:1014.476100px;}
.x2e{left:1015.685100px;}
.x33{left:1195.620150px;}
.x1a{left:1213.752000px;}
.x1c{left:1230.667950px;}
.x1e{left:1242.922800px;}
.x28{left:1245.653250px;}
.x1b{left:1291.007850px;}
.x1f{left:1295.124000px;}
.x1d{left:1303.765200px;}
.x1{left:1336.239300px;}
.x20{left:1361.695050px;}
.x2a{left:1378.621650px;}
.x2b{left:1584.591150px;}
.x26{left:1926.240300px;}
.x16{left:1969.967152px;}
.x15{left:1976.632350px;}
.xc{left:1993.468986px;}
.xb{left:2005.363800px;}
.x8{left:2012.249756px;}
.xd{left:2023.000938px;}
.x6{left:2029.918421px;}
.x7{left:2036.506309px;}
.x9{left:2042.463173px;}
.xe{left:2045.231935px;}
.xa{left:2047.460881px;}
.x5{left:2053.543950px;}
.xf{left:2103.434491px;}
.x17{left:2132.762038px;}
.x23{left:2158.012200px;}
.x29{left:2380.542450px;}
.x31{left:2407.442513px;}
.x32{left:2475.713467px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:53.882970pt;}
.ls3{letter-spacing:-0.642739pt;}
.ls5{letter-spacing:-0.535616pt;}
.ls4{letter-spacing:-0.069333pt;}
.ls1{letter-spacing:-0.055386pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.541254pt;}
.ls0{letter-spacing:5.120853pt;}
.ws2{word-spacing:-21.504000pt;}
.ws5{word-spacing:-18.026667pt;}
.ws3{word-spacing:-17.472000pt;}
.ws1{word-spacing:-5.146458pt;}
.ws9{word-spacing:-0.541254pt;}
.ws0{word-spacing:0.000000pt;}
.ws7{word-spacing:0.069333pt;}
.ws8{word-spacing:0.535616pt;}
.ws6{word-spacing:0.642739pt;}
.ws4{word-spacing:55.440000pt;}
._4{margin-left:-6.562656pt;}
._6{margin-left:-5.560859pt;}
._3{margin-left:-3.679570pt;}
._2{margin-left:-2.243640pt;}
._1{margin-left:-0.996950pt;}
._0{width:1.157570pt;}
._5{width:2.616720pt;}
._7{width:71.456000pt;}
._8{width:4312.714479pt;}
.fsd{font-size:15.441067pt;}
.fse{font-size:25.604267pt;}
.fsf{font-size:44.873067pt;}
.fs15{font-size:45.104533pt;}
.fs0{font-size:55.386133pt;}
.fs12{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fsc{font-size:66.054245pt;}
.fs6{font-size:67.309333pt;}
.fs11{font-size:67.656533pt;}
.fs14{font-size:69.333333pt;}
.fs3{font-size:72.918400pt;}
.fsb{font-size:75.868800pt;}
.fs1{font-size:78.527467pt;}
.fs4{font-size:80.000000pt;}
.fs10{font-size:85.333333pt;}
.fs2{font-size:89.745600pt;}
.fsa{font-size:94.836267pt;}
.fs8{font-size:95.785067pt;}
.fs7{font-size:106.572800pt;}
.fs13{font-size:107.123200pt;}
.fs9{font-size:113.803733pt;}
.y0{bottom:0.000000pt;}
.y6f{bottom:261.272720pt;}
.y4a{bottom:265.861013pt;}
.y49{bottom:279.322933pt;}
.y6e{bottom:281.569680pt;}
.y37{bottom:290.745600pt;}
.y6d{bottom:301.866640pt;}
.y36{bottom:309.945600pt;}
.y6c{bottom:322.163600pt;}
.yab{bottom:322.345333pt;}
.y35{bottom:329.145600pt;}
.yaa{bottom:341.545333pt;}
.y6b{bottom:342.460560pt;}
.y34{bottom:348.345600pt;}
.ya9{bottom:360.745333pt;}
.y6a{bottom:362.757520pt;}
.y33{bottom:367.545600pt;}
.ya8{bottom:379.945333pt;}
.y69{bottom:383.054480pt;}
.y6{bottom:398.020133pt;}
.ya7{bottom:399.145333pt;}
.y32{bottom:402.170533pt;}
.y68{bottom:403.351440pt;}
.ya6{bottom:418.345333pt;}
.y67{bottom:423.648400pt;}
.ya5{bottom:437.545333pt;}
.y3a{bottom:439.761360pt;}
.y31{bottom:441.595733pt;}
.y66{bottom:453.812000pt;}
.ya4{bottom:456.745333pt;}
.y39{bottom:461.636880pt;}
.ya3{bottom:475.945333pt;}
.y30{bottom:477.213600pt;}
.y65{bottom:479.412000pt;}
.y38{bottom:483.512400pt;}
.y8e{bottom:489.145067pt;}
.y2f{bottom:496.413600pt;}
.yd4{bottom:502.969973pt;}
.y64{bottom:505.012000pt;}
.y8d{bottom:508.345067pt;}
.y2e{bottom:515.613600pt;}
.yd3{bottom:516.501333pt;}
.y13{bottom:525.722747pt;}
.y8c{bottom:527.545067pt;}
.y63{bottom:530.612000pt;}
.y2d{bottom:534.813600pt;}
.y8b{bottom:546.745067pt;}
.y12{bottom:547.598267pt;}
.y2c{bottom:554.013600pt;}
.yc0{bottom:565.944533pt;}
.y8a{bottom:565.945067pt;}
.y11{bottom:569.473787pt;}
.y2b{bottom:573.213600pt;}
.ybf{bottom:585.144533pt;}
.y89{bottom:585.145067pt;}
.ya1{bottom:589.395333pt;}
.y10{bottom:591.349307pt;}
.y5{bottom:600.648400pt;}
.ybe{bottom:604.344533pt;}
.y88{bottom:604.345067pt;}
.y2a{bottom:607.838533pt;}
.ya0{bottom:608.595333pt;}
.yf{bottom:613.224827pt;}
.ybd{bottom:623.544533pt;}
.y87{bottom:623.545067pt;}
.y9f{bottom:627.795333pt;}
.ye{bottom:635.100347pt;}
.ybc{bottom:642.744533pt;}
.y86{bottom:642.745067pt;}
.y9e{bottom:646.995333pt;}
.y62{bottom:653.395600pt;}
.yd{bottom:656.975867pt;}
.ybb{bottom:661.944533pt;}
.y85{bottom:661.945067pt;}
.y9d{bottom:666.195333pt;}
.yc9{bottom:669.703733pt;}
.yc3{bottom:670.627733pt;}
.ya2{bottom:671.665333pt;}
.y61{bottom:672.595600pt;}
.y44{bottom:673.613467pt;}
.yba{bottom:681.144533pt;}
.y84{bottom:681.145067pt;}
.y29{bottom:682.881467pt;}
.y9c{bottom:685.395333pt;}
.y60{bottom:691.795600pt;}
.yc8{bottom:697.174400pt;}
.yc2{bottom:698.098400pt;}
.yb9{bottom:700.344533pt;}
.y83{bottom:700.345067pt;}
.y28{bottom:702.081467pt;}
.y9b{bottom:704.595333pt;}
.y5f{bottom:710.995600pt;}
.yce{bottom:711.412533pt;}
.yb8{bottom:719.544533pt;}
.y27{bottom:721.281467pt;}
.y9a{bottom:723.795333pt;}
.yc7{bottom:724.645067pt;}
.yc1{bottom:725.569067pt;}
.y1{bottom:726.729867pt;}
.y82{bottom:729.411200pt;}
.y5e{bottom:730.195600pt;}
.ycd{bottom:732.212533pt;}
.yb7{bottom:738.744533pt;}
.y26{bottom:740.481467pt;}
.y99{bottom:742.995333pt;}
.y5d{bottom:749.395600pt;}
.yc6{bottom:752.115733pt;}
.yc{bottom:752.798933pt;}
.ycc{bottom:753.012533pt;}
.y81{bottom:755.011200pt;}
.yb6{bottom:757.944533pt;}
.y25{bottom:759.681467pt;}
.y98{bottom:762.195333pt;}
.y5c{bottom:768.595600pt;}
.yb5{bottom:777.144533pt;}
.y24{bottom:778.881467pt;}
.yc5{bottom:779.586400pt;}
.yb{bottom:779.722613pt;}
.y80{bottom:780.611200pt;}
.y5b{bottom:787.795600pt;}
.y97{bottom:791.262267pt;}
.y2{bottom:804.691467pt;}
.y7f{bottom:806.211200pt;}
.ya{bottom:806.646293pt;}
.yc4{bottom:807.057067pt;}
.y23{bottom:813.506533pt;}
.y5a{bottom:816.862267pt;}
.y7e{bottom:831.811200pt;}
.y9{bottom:833.569973pt;}
.y59{bottom:842.462267pt;}
.y22{bottom:852.931600pt;}
.y8{bottom:860.493653pt;}
.y7{bottom:887.417333pt;}
.y21{bottom:888.549067pt;}
.y58{bottom:896.282000pt;}
.y7d{bottom:905.179200pt;}
.y20{bottom:907.749067pt;}
.y57{bottom:915.482000pt;}
.y7c{bottom:924.379200pt;}
.y1f{bottom:926.949067pt;}
.y43{bottom:931.441467pt;}
.y56{bottom:934.682000pt;}
.y7b{bottom:943.579200pt;}
.y1e{bottom:946.149067pt;}
.y55{bottom:953.882000pt;}
.y7a{bottom:962.779200pt;}
.y42{bottom:969.757867pt;}
.y3{bottom:972.813200pt;}
.y54{bottom:973.082000pt;}
.yb4{bottom:975.579733pt;}
.y1d{bottom:980.774133pt;}
.y79{bottom:981.979200pt;}
.y96{bottom:985.882533pt;}
.y53{bottom:992.282000pt;}
.yb3{bottom:994.779733pt;}
.y78{bottom:1001.179200pt;}
.y95{bottom:1005.082533pt;}
.y41{bottom:1008.071600pt;}
.y52{bottom:1011.482000pt;}
.yb2{bottom:1013.979733pt;}
.y77{bottom:1020.379200pt;}
.y94{bottom:1024.282533pt;}
.y51{bottom:1030.682000pt;}
.yb1{bottom:1033.179733pt;}
.y76{bottom:1039.579200pt;}
.y93{bottom:1043.482533pt;}
.y50{bottom:1049.882000pt;}
.yb0{bottom:1052.379733pt;}
.y1c{bottom:1055.817600pt;}
.y75{bottom:1058.779200pt;}
.y92{bottom:1062.682533pt;}
.y4f{bottom:1069.082000pt;}
.yaf{bottom:1071.579733pt;}
.y1b{bottom:1075.017600pt;}
.y74{bottom:1077.979200pt;}
.y91{bottom:1081.882533pt;}
.y40{bottom:1084.700533pt;}
.yae{bottom:1090.779733pt;}
.y1a{bottom:1094.217600pt;}
.y4e{bottom:1098.149200pt;}
.y90{bottom:1101.082533pt;}
.y73{bottom:1107.046400pt;}
.yad{bottom:1109.979733pt;}
.y47{bottom:1111.455982pt;}
.y19{bottom:1113.417600pt;}
.y48{bottom:1114.658267pt;}
.y8f{bottom:1120.282533pt;}
.y3f{bottom:1123.011733pt;}
.y4d{bottom:1123.749200pt;}
.yac{bottom:1129.179733pt;}
.y18{bottom:1132.617600pt;}
.y72{bottom:1132.646400pt;}
.y46{bottom:1136.787052pt;}
.y4c{bottom:1149.349200pt;}
.y17{bottom:1151.817600pt;}
.y71{bottom:1158.246400pt;}
.y3e{bottom:1161.326800pt;}
.y45{bottom:1162.191467pt;}
.y16{bottom:1171.017600pt;}
.y4b{bottom:1174.949200pt;}
.y70{bottom:1183.846400pt;}
.y15{bottom:1205.642533pt;}
.y4{bottom:1223.227200pt;}
.y14{bottom:1229.642533pt;}
.y3d{bottom:1237.954400pt;}
.yca{bottom:1241.130800pt;}
.yd0{bottom:1242.046640pt;}
.yd2{bottom:1254.767520pt;}
.ycb{bottom:1272.336533pt;}
.ycf{bottom:1274.183600pt;}
.yd1{bottom:1286.904480pt;}
.y3c{bottom:1301.981227pt;}
.y3b{bottom:1333.953067pt;}
.hf{height:11.704329pt;}
.h10{height:19.408034pt;}
.h11{height:34.334031pt;}
.h18{height:34.511135pt;}
.h2{height:41.982689pt;}
.h14{height:46.816000pt;}
.he{height:50.540528pt;}
.h7{height:51.072000pt;}
.h16{height:53.456000pt;}
.h8{height:53.712848pt;}
.h13{height:53.989914pt;}
.hd{height:58.050005pt;}
.h5{height:58.188883pt;}
.h3{height:60.544677pt;}
.h6{height:63.280000pt;}
.h12{height:67.498667pt;}
.h4{height:71.616989pt;}
.hc{height:72.562710pt;}
.ha{height:73.288672pt;}
.h9{height:82.167629pt;}
.h15{height:82.591987pt;}
.hb{height:87.075415pt;}
.h17{height:136.474957pt;}
.h1{height:1402.000000pt;}
.h0{height:1402.200000pt;}
.w1{width:2509.333333pt;}
.w0{width:2509.600000pt;}
.x0{left:0.000000pt;}
.x24{left:32.690133pt;}
.x21{left:34.744800pt;}
.x25{left:37.677067pt;}
.x22{left:55.937467pt;}
.x3{left:96.549467pt;}
.x4{left:98.281200pt;}
.x2{left:100.084667pt;}
.x2c{left:116.578133pt;}
.x10{left:147.813867pt;}
.x11{left:148.886667pt;}
.x12{left:149.835200pt;}
.x13{left:150.800667pt;}
.x14{left:151.766000pt;}
.x18{left:172.434933pt;}
.x19{left:257.480028pt;}
.x27{left:444.082000pt;}
.x2f{left:477.075467pt;}
.x30{left:537.760759pt;}
.x2d{left:901.756533pt;}
.x2e{left:902.831200pt;}
.x33{left:1062.773467pt;}
.x1a{left:1078.890667pt;}
.x1c{left:1093.927067pt;}
.x1e{left:1104.820267pt;}
.x28{left:1107.247333pt;}
.x1b{left:1147.562533pt;}
.x1f{left:1151.221333pt;}
.x1d{left:1158.902400pt;}
.x1{left:1187.768267pt;}
.x20{left:1210.395600pt;}
.x2a{left:1225.441467pt;}
.x2b{left:1408.525467pt;}
.x26{left:1712.213600pt;}
.x16{left:1751.081913pt;}
.x15{left:1757.006533pt;}
.xc{left:1771.972432pt;}
.xb{left:1782.545600pt;}
.x8{left:1788.666450pt;}
.xd{left:1798.223056pt;}
.x6{left:1804.371930pt;}
.x7{left:1810.227830pt;}
.x9{left:1815.522820pt;}
.xe{left:1817.983942pt;}
.xa{left:1819.965228pt;}
.x5{left:1825.372400pt;}
.xf{left:1869.719547pt;}
.x17{left:1895.788478pt;}
.x23{left:1918.233067pt;}
.x29{left:2116.037733pt;}
.x31{left:2139.948900pt;}
.x32{left:2200.634193pt;}
}




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