
    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_ac04c018d682d5ee4e05117b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.777000;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_8a60fe275aace5b8b8e60e6e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_c824325c5c2f4e69afee3458.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910000;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_6be2cc9ac4026a632ac607ce.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.451000;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_b5c9b37a633333825f61b610.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_440c8ec9c3d1f125ac699ad7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_0c43517760529bd0f2a31d58.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_f4d8cae96de8c00d5eb1d2d4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.651000;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_88005860771a520de9ffbb96.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.389000;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_73815e5c95c9db721d17b2eb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.640000;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_126dbdec40aa1e65b0af6585.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.754000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.754000px;}
.v1{vertical-align:31.236000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:1.842796px;}
.ls3{letter-spacing:2.356366px;}
.ls4{letter-spacing:2.880002px;}
.ls0{letter-spacing:2.986053px;}
.ls6{letter-spacing:19.905275px;}
.ls2{letter-spacing:32.727300px;}
.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;}
}
.ws12{word-spacing:-22.416000px;}
.ws25{word-spacing:-18.183288px;}
.ws4e{word-spacing:-15.278643px;}
.ws2e{word-spacing:-2.343275px;}
.ws32{word-spacing:-1.950547px;}
.ws2b{word-spacing:-1.361456px;}
.ws42{word-spacing:-0.576000px;}
.ws36{word-spacing:-0.117818px;}
.ws30{word-spacing:-0.065455px;}
.ws2f{word-spacing:-0.047821px;}
.ws11{word-spacing:0.000000px;}
.ws3b{word-spacing:0.013091px;}
.ws4a{word-spacing:0.812948px;}
.ws2a{word-spacing:1.125819px;}
.ws24{word-spacing:1.584001px;}
.ws3a{word-spacing:1.780365px;}
.ws1b{word-spacing:1.976729px;}
.ws29{word-spacing:2.042184px;}
.ws23{word-spacing:2.434911px;}
.ws10{word-spacing:2.565820px;}
.ws40{word-spacing:2.696730px;}
.ws47{word-spacing:3.154912px;}
.ws48{word-spacing:3.299613px;}
.ws4b{word-spacing:3.359389px;}
.ws4{word-spacing:3.613094px;}
.ws14{word-spacing:3.678549px;}
.ws41{word-spacing:3.940367px;}
.ws3e{word-spacing:4.071276px;}
.ws13{word-spacing:4.162913px;}
.ws1f{word-spacing:4.202185px;}
.ws2c{word-spacing:4.228367px;}
.ws18{word-spacing:4.483200px;}
.ws4c{word-spacing:4.626631px;}
.ws4d{word-spacing:4.686407px;}
.ws34{word-spacing:4.856731px;}
.ws1e{word-spacing:5.118550px;}
.wse{word-spacing:5.184004px;}
.ws33{word-spacing:5.511277px;}
.wsd{word-spacing:5.642187px;}
.ws9{word-spacing:5.904005px;}
.ws43{word-spacing:5.969460px;}
.ws49{word-spacing:6.121021px;}
.ws37{word-spacing:6.165823px;}
.ws1d{word-spacing:6.558551px;}
.wsc{word-spacing:6.820369px;}
.ws20{word-spacing:7.082188px;}
.wsf{word-spacing:7.278552px;}
.ws44{word-spacing:7.605825px;}
.ws8{word-spacing:8.522189px;}
.ws3c{word-spacing:8.784007px;}
.ws27{word-spacing:8.849462px;}
.ws1c{word-spacing:9.242190px;}
.wsb{word-spacing:9.373099px;}
.ws26{word-spacing:9.438553px;}
.ws1a{word-spacing:9.504008px;}
.ws21{word-spacing:9.634917px;}
.ws7{word-spacing:9.896736px;}
.ws39{word-spacing:10.158554px;}
.ws22{word-spacing:10.354918px;}
.ws28{word-spacing:10.551282px;}
.ws5{word-spacing:10.878555px;}
.ws2d{word-spacing:12.056737px;}
.ws38{word-spacing:12.318556px;}
.ws45{word-spacing:12.449465px;}
.wsa{word-spacing:13.627648px;}
.ws19{word-spacing:13.954921px;}
.ws31{word-spacing:14.347648px;}
.ws35{word-spacing:14.544012px;}
.ws46{word-spacing:14.871285px;}
.ws2{word-spacing:26.253619px;}
.ws0{word-spacing:31.322414px;}
.ws15{word-spacing:31.352753px;}
.ws3{word-spacing:31.504255px;}
.ws3d{word-spacing:33.785395px;}
.ws17{word-spacing:39.639306px;}
.ws1{word-spacing:54.432472px;}
.ws3f{word-spacing:58.281600px;}
.ws6{word-spacing:75.790150px;}
.ws16{word-spacing:1287.989437px;}
._1{margin-left:-13.831202px;}
._b{margin-left:-6.278274px;}
._0{margin-left:-4.610401px;}
._8{margin-left:-3.274519px;}
._2{margin-left:-2.223667px;}
._4{margin-left:-1.091306px;}
._1c{width:1.050852px;}
._3{width:2.223667px;}
._20{width:3.796367px;}
._23{width:14.787372px;}
._25{width:17.345469px;}
._27{width:19.567347px;}
._1d{width:21.269167px;}
._1e{width:23.429168px;}
._a{width:24.903116px;}
._22{width:27.425477px;}
._7{width:28.930933px;}
._1f{width:30.892782px;}
._26{width:32.727300px;}
._6{width:34.298210px;}
._5{width:36.000030px;}
._9{width:38.618214px;}
._29{width:41.040034px;}
._1b{width:47.061857px;}
._28{width:49.480099px;}
._24{width:51.312828px;}
._c{width:60.545505px;}
._10{width:66.894601px;}
._21{width:75.272790px;}
._1a{width:80.697600px;}
._16{width:889.655345px;}
._f{width:932.887538px;}
._17{width:1078.166382px;}
._14{width:1107.166348px;}
._e{width:1308.566574px;}
._13{width:1630.343177px;}
._15{width:1838.750623px;}
._12{width:1881.754295px;}
._11{width:1935.099794px;}
._d{width:1937.781644px;}
._18{width:2095.456408px;}
._19{width:2134.278142px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y31{bottom:93.813000px;}
.y56{bottom:176.005500px;}
.y55{bottom:196.329000px;}
.y54{bottom:216.652500px;}
.y30{bottom:236.217000px;}
.y53{bottom:236.977500px;}
.y2f{bottom:256.540500px;}
.y52{bottom:257.301000px;}
.y2e{bottom:276.865500px;}
.y51{bottom:284.628000px;}
.y72{bottom:305.071500px;}
.y2d{bottom:313.393500px;}
.y50{bottom:315.822000px;}
.y71{bottom:325.395000px;}
.y4f{bottom:347.017500px;}
.y85{bottom:355.434000px;}
.y2c{bottom:358.974000px;}
.y70{bottom:359.167500px;}
.y4e{bottom:378.211500px;}
.y2b{bottom:379.297500px;}
.y84{bottom:380.838000px;}
.y12{bottom:391.509000px;}
.y6f{bottom:392.941500px;}
.y83{bottom:398.770500px;}
.y2a{bottom:399.621000px;}
.y4d{bottom:405.538500px;}
.y11{bottom:411.832500px;}
.y29{bottom:419.944500px;}
.y82{bottom:424.176000px;}
.y4c{bottom:425.863500px;}
.y6e{bottom:426.715500px;}
.y10{bottom:432.156000px;}
.y28{bottom:440.269500px;}
.y81{bottom:449.580000px;}
.yf{bottom:452.479500px;}
.y4b{bottom:459.960000px;}
.y6d{bottom:460.488000px;}
.y27{bottom:460.593000px;}
.ye{bottom:472.804500px;}
.y80{bottom:474.985500px;}
.y26{bottom:480.916500px;}
.y7f{bottom:492.918000px;}
.yd{bottom:493.128000px;}
.y6c{bottom:494.262000px;}
.y25{bottom:501.240000px;}
.y4a{bottom:501.285000px;}
.yc{bottom:513.451500px;}
.y7e{bottom:518.322000px;}
.y24{bottom:521.563500px;}
.y49{bottom:521.610000px;}
.y6b{bottom:530.790000px;}
.yb{bottom:533.775000px;}
.y7d{bottom:536.256000px;}
.y23{bottom:541.888500px;}
.y48{bottom:548.563500px;}
.ya{bottom:554.098500px;}
.y7c{bottom:561.660000px;}
.y9{bottom:574.423500px;}
.y6a{bottom:576.370500px;}
.y22{bottom:578.416500px;}
.y7b{bottom:579.592500px;}
.y47{bottom:582.054000px;}
.y8{bottom:594.747000px;}
.y69{bottom:596.694000px;}
.y46{bottom:602.377500px;}
.y7a{bottom:604.998000px;}
.y68{bottom:617.017500px;}
.y79{bottom:622.930500px;}
.y21{bottom:623.997000px;}
.y45{bottom:629.332500px;}
.y7{bottom:634.497000px;}
.y67{bottom:637.341000px;}
.y78{bottom:657.067500px;}
.y66{bottom:657.666000px;}
.y44{bottom:662.821500px;}
.y20{bottom:670.524000px;}
.y6{bottom:671.220000px;}
.y65{bottom:677.989500px;}
.y43{bottom:683.145000px;}
.y5{bottom:699.952500px;}
.y77{bottom:702.648000px;}
.y42{bottom:703.468500px;}
.y64{bottom:706.767000px;}
.y1f{bottom:707.211000px;}
.y76{bottom:722.971500px;}
.y41{bottom:730.423500px;}
.y63{bottom:743.296500px;}
.y1e{bottom:743.899500px;}
.y62{bottom:763.620000px;}
.y40{bottom:763.912500px;}
.y1d{bottom:780.586500px;}
.y61{bottom:783.943500px;}
.y3f{bottom:784.236000px;}
.y1c{bottom:800.910000px;}
.y60{bottom:804.267000px;}
.y3e{bottom:804.559500px;}
.y4{bottom:818.038500px;}
.y5f{bottom:824.590500px;}
.y3d{bottom:831.886500px;}
.y1b{bottom:837.597000px;}
.y5e{bottom:844.915500px;}
.y3{bottom:855.319500px;}
.y75{bottom:861.120000px;}
.y3c{bottom:863.082000px;}
.y1a{bottom:874.285500px;}
.y5d{bottom:881.443500px;}
.y3b{bottom:894.276000px;}
.y2{bottom:900.151500px;}
.y74{bottom:906.700500px;}
.y19{bottom:910.972500px;}
.y3a{bottom:921.603000px;}
.y5c{bottom:927.024000px;}
.y18{bottom:931.296000px;}
.y39{bottom:941.928000px;}
.y73{bottom:947.347500px;}
.y17{bottom:951.619500px;}
.y5b{bottom:960.796500px;}
.y16{bottom:971.944500px;}
.y38{bottom:976.024500px;}
.y5a{bottom:981.121500px;}
.y15{bottom:1008.631500px;}
.y59{bottom:1014.894000px;}
.y37{bottom:1017.349500px;}
.y36{bottom:1037.674500px;}
.y14{bottom:1045.318500px;}
.y58{bottom:1048.668000px;}
.y35{bottom:1057.998000px;}
.y34{bottom:1078.321500px;}
.y13{bottom:1082.007000px;}
.y57{bottom:1082.440500px;}
.y1{bottom:1087.587000px;}
.y33{bottom:1098.645000px;}
.y32{bottom:1118.968500px;}
.h6{height:25.336950px;}
.h2{height:41.484266px;}
.ha{height:44.831700px;}
.h9{height:45.818220px;}
.h7{height:49.090950px;}
.h8{height:50.211840px;}
.h4{height:51.359539px;}
.h5{height:73.377798px;}
.h3{height:106.485382px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.426500px;}
.x3{left:131.838000px;}
.xa{left:137.107500px;}
.x4{left:139.332000px;}
.x8{left:147.427500px;}
.x5{left:151.972500px;}
.xb{left:161.064000px;}
.x6{left:164.010000px;}
.x9{left:168.336000px;}
.x1{left:286.581000px;}
.x7{left:438.466500px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.114667pt;}
.v1{vertical-align:27.765333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:1.638041pt;}
.ls3{letter-spacing:2.094547pt;}
.ls4{letter-spacing:2.560002pt;}
.ls0{letter-spacing:2.654270pt;}
.ls6{letter-spacing:17.693578pt;}
.ls2{letter-spacing:29.090933pt;}
.ws12{word-spacing:-19.925333pt;}
.ws25{word-spacing:-16.162923pt;}
.ws4e{word-spacing:-13.581016pt;}
.ws2e{word-spacing:-2.082911pt;}
.ws32{word-spacing:-1.733820pt;}
.ws2b{word-spacing:-1.210183pt;}
.ws42{word-spacing:-0.512000pt;}
.ws36{word-spacing:-0.104727pt;}
.ws30{word-spacing:-0.058182pt;}
.ws2f{word-spacing:-0.042507pt;}
.ws11{word-spacing:0.000000pt;}
.ws3b{word-spacing:0.011636pt;}
.ws4a{word-spacing:0.722621pt;}
.ws2a{word-spacing:1.000728pt;}
.ws24{word-spacing:1.408001pt;}
.ws3a{word-spacing:1.582547pt;}
.ws1b{word-spacing:1.757092pt;}
.ws29{word-spacing:1.815274pt;}
.ws23{word-spacing:2.164365pt;}
.ws10{word-spacing:2.280729pt;}
.ws40{word-spacing:2.397093pt;}
.ws47{word-spacing:2.804366pt;}
.ws48{word-spacing:2.932989pt;}
.ws4b{word-spacing:2.986123pt;}
.ws4{word-spacing:3.211639pt;}
.ws14{word-spacing:3.269821pt;}
.ws41{word-spacing:3.502548pt;}
.ws3e{word-spacing:3.618912pt;}
.ws13{word-spacing:3.700367pt;}
.ws1f{word-spacing:3.735276pt;}
.ws2c{word-spacing:3.758549pt;}
.ws18{word-spacing:3.985067pt;}
.ws4c{word-spacing:4.112561pt;}
.ws4d{word-spacing:4.165695pt;}
.ws34{word-spacing:4.317095pt;}
.ws1e{word-spacing:4.549822pt;}
.wse{word-spacing:4.608004pt;}
.ws33{word-spacing:4.898913pt;}
.wsd{word-spacing:5.015277pt;}
.ws9{word-spacing:5.248004pt;}
.ws43{word-spacing:5.306186pt;}
.ws49{word-spacing:5.440908pt;}
.ws37{word-spacing:5.480732pt;}
.ws1d{word-spacing:5.829823pt;}
.wsc{word-spacing:6.062551pt;}
.ws20{word-spacing:6.295278pt;}
.wsf{word-spacing:6.469824pt;}
.ws44{word-spacing:6.760733pt;}
.ws8{word-spacing:7.575279pt;}
.ws3c{word-spacing:7.808007pt;}
.ws27{word-spacing:7.866188pt;}
.ws1c{word-spacing:8.215280pt;}
.wsb{word-spacing:8.331643pt;}
.ws26{word-spacing:8.389825pt;}
.ws1a{word-spacing:8.448007pt;}
.ws21{word-spacing:8.564371pt;}
.ws7{word-spacing:8.797098pt;}
.ws39{word-spacing:9.029826pt;}
.ws22{word-spacing:9.204371pt;}
.ws28{word-spacing:9.378917pt;}
.ws5{word-spacing:9.669826pt;}
.ws2d{word-spacing:10.717100pt;}
.ws38{word-spacing:10.949827pt;}
.ws45{word-spacing:11.066191pt;}
.wsa{word-spacing:12.113465pt;}
.ws19{word-spacing:12.404374pt;}
.ws31{word-spacing:12.753465pt;}
.ws35{word-spacing:12.928011pt;}
.ws46{word-spacing:13.218920pt;}
.ws2{word-spacing:23.336550pt;}
.ws0{word-spacing:27.842146pt;}
.ws15{word-spacing:27.869114pt;}
.ws3{word-spacing:28.003782pt;}
.ws3d{word-spacing:30.031462pt;}
.ws17{word-spacing:35.234938pt;}
.ws1{word-spacing:48.384419pt;}
.ws3f{word-spacing:51.805867pt;}
.ws6{word-spacing:67.369022pt;}
.ws16{word-spacing:1144.879500pt;}
._1{margin-left:-12.294402pt;}
._b{margin-left:-5.580688pt;}
._0{margin-left:-4.098134pt;}
._8{margin-left:-2.910684pt;}
._2{margin-left:-1.976593pt;}
._4{margin-left:-0.970050pt;}
._1c{width:0.934091pt;}
._3{width:1.976593pt;}
._20{width:3.374548pt;}
._23{width:13.144331pt;}
._25{width:15.418195pt;}
._27{width:17.393197pt;}
._1d{width:18.905926pt;}
._1e{width:20.825927pt;}
._a{width:22.136103pt;}
._22{width:24.378202pt;}
._7{width:25.716385pt;}
._1f{width:27.460251pt;}
._26{width:29.090933pt;}
._6{width:30.487298pt;}
._5{width:32.000027pt;}
._9{width:34.327301pt;}
._29{width:36.480030pt;}
._1b{width:41.832762pt;}
._28{width:43.982310pt;}
._24{width:45.611403pt;}
._c{width:53.818227pt;}
._10{width:59.461868pt;}
._21{width:66.909147pt;}
._1a{width:71.731200pt;}
._16{width:790.804751pt;}
._f{width:829.233367pt;}
._17{width:958.370117pt;}
._14{width:984.147865pt;}
._e{width:1163.170288pt;}
._13{width:1449.193935pt;}
._15{width:1634.444998pt;}
._12{width:1672.670485pt;}
._11{width:1720.088706pt;}
._d{width:1722.472572pt;}
._18{width:1862.627918pt;}
._19{width:1897.136126pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:83.389333pt;}
.y56{bottom:156.449333pt;}
.y55{bottom:174.514667pt;}
.y54{bottom:192.580000pt;}
.y30{bottom:209.970667pt;}
.y53{bottom:210.646667pt;}
.y2f{bottom:228.036000pt;}
.y52{bottom:228.712000pt;}
.y2e{bottom:246.102667pt;}
.y51{bottom:253.002667pt;}
.y72{bottom:271.174667pt;}
.y2d{bottom:278.572000pt;}
.y50{bottom:280.730667pt;}
.y71{bottom:289.240000pt;}
.y4f{bottom:308.460000pt;}
.y85{bottom:315.941333pt;}
.y2c{bottom:319.088000pt;}
.y70{bottom:319.260000pt;}
.y4e{bottom:336.188000pt;}
.y2b{bottom:337.153333pt;}
.y84{bottom:338.522667pt;}
.y12{bottom:348.008000pt;}
.y6f{bottom:349.281333pt;}
.y83{bottom:354.462667pt;}
.y2a{bottom:355.218667pt;}
.y4d{bottom:360.478667pt;}
.y11{bottom:366.073333pt;}
.y29{bottom:373.284000pt;}
.y82{bottom:377.045333pt;}
.y4c{bottom:378.545333pt;}
.y6e{bottom:379.302667pt;}
.y10{bottom:384.138667pt;}
.y28{bottom:391.350667pt;}
.y81{bottom:399.626667pt;}
.yf{bottom:402.204000pt;}
.y4b{bottom:408.853333pt;}
.y6d{bottom:409.322667pt;}
.y27{bottom:409.416000pt;}
.ye{bottom:420.270667pt;}
.y80{bottom:422.209333pt;}
.y26{bottom:427.481333pt;}
.y7f{bottom:438.149333pt;}
.yd{bottom:438.336000pt;}
.y6c{bottom:439.344000pt;}
.y25{bottom:445.546667pt;}
.y4a{bottom:445.586667pt;}
.yc{bottom:456.401333pt;}
.y7e{bottom:460.730667pt;}
.y24{bottom:463.612000pt;}
.y49{bottom:463.653333pt;}
.y6b{bottom:471.813333pt;}
.yb{bottom:474.466667pt;}
.y7d{bottom:476.672000pt;}
.y23{bottom:481.678667pt;}
.y48{bottom:487.612000pt;}
.ya{bottom:492.532000pt;}
.y7c{bottom:499.253333pt;}
.y9{bottom:510.598667pt;}
.y6a{bottom:512.329333pt;}
.y22{bottom:514.148000pt;}
.y7b{bottom:515.193333pt;}
.y47{bottom:517.381333pt;}
.y8{bottom:528.664000pt;}
.y69{bottom:530.394667pt;}
.y46{bottom:535.446667pt;}
.y7a{bottom:537.776000pt;}
.y68{bottom:548.460000pt;}
.y79{bottom:553.716000pt;}
.y21{bottom:554.664000pt;}
.y45{bottom:559.406667pt;}
.y7{bottom:563.997333pt;}
.y67{bottom:566.525333pt;}
.y78{bottom:584.060000pt;}
.y66{bottom:584.592000pt;}
.y44{bottom:589.174667pt;}
.y20{bottom:596.021333pt;}
.y6{bottom:596.640000pt;}
.y65{bottom:602.657333pt;}
.y43{bottom:607.240000pt;}
.y5{bottom:622.180000pt;}
.y77{bottom:624.576000pt;}
.y42{bottom:625.305333pt;}
.y64{bottom:628.237333pt;}
.y1f{bottom:628.632000pt;}
.y76{bottom:642.641333pt;}
.y41{bottom:649.265333pt;}
.y63{bottom:660.708000pt;}
.y1e{bottom:661.244000pt;}
.y62{bottom:678.773333pt;}
.y40{bottom:679.033333pt;}
.y1d{bottom:693.854667pt;}
.y61{bottom:696.838667pt;}
.y3f{bottom:697.098667pt;}
.y1c{bottom:711.920000pt;}
.y60{bottom:714.904000pt;}
.y3e{bottom:715.164000pt;}
.y4{bottom:727.145333pt;}
.y5f{bottom:732.969333pt;}
.y3d{bottom:739.454667pt;}
.y1b{bottom:744.530667pt;}
.y5e{bottom:751.036000pt;}
.y3{bottom:760.284000pt;}
.y75{bottom:765.440000pt;}
.y3c{bottom:767.184000pt;}
.y1a{bottom:777.142667pt;}
.y5d{bottom:783.505333pt;}
.y3b{bottom:794.912000pt;}
.y2{bottom:800.134667pt;}
.y74{bottom:805.956000pt;}
.y19{bottom:809.753333pt;}
.y3a{bottom:819.202667pt;}
.y5c{bottom:824.021333pt;}
.y18{bottom:827.818667pt;}
.y39{bottom:837.269333pt;}
.y73{bottom:842.086667pt;}
.y17{bottom:845.884000pt;}
.y5b{bottom:854.041333pt;}
.y16{bottom:863.950667pt;}
.y38{bottom:867.577333pt;}
.y5a{bottom:872.108000pt;}
.y15{bottom:896.561333pt;}
.y59{bottom:902.128000pt;}
.y37{bottom:904.310667pt;}
.y36{bottom:922.377333pt;}
.y14{bottom:929.172000pt;}
.y58{bottom:932.149333pt;}
.y35{bottom:940.442667pt;}
.y34{bottom:958.508000pt;}
.y13{bottom:961.784000pt;}
.y57{bottom:962.169333pt;}
.y1{bottom:966.744000pt;}
.y33{bottom:976.573333pt;}
.y32{bottom:994.638667pt;}
.h6{height:22.521733pt;}
.h2{height:36.874903pt;}
.ha{height:39.850400pt;}
.h9{height:40.727307pt;}
.h7{height:43.636400pt;}
.h8{height:44.632747pt;}
.h4{height:45.652924pt;}
.h5{height:65.224709pt;}
.h3{height:94.653673pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.268000pt;}
.x3{left:117.189333pt;}
.xa{left:121.873333pt;}
.x4{left:123.850667pt;}
.x8{left:131.046667pt;}
.x5{left:135.086667pt;}
.xb{left:143.168000pt;}
.x6{left:145.786667pt;}
.x9{left:149.632000pt;}
.x1{left:254.738667pt;}
.x7{left:389.748000pt;}
}




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