
    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_602c9f003f76ea07480d5fb6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e0e3d61cf969a4cdf09a920e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.080566;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_7aadbb30a18dee6b013818c8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4c848e1599bd6efb9f2ddc32.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_5eca290a042e2c0f467e7e0b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_216eb85d5525170e63223d05.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.998535;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_4016548035e4f68a5c44e91b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.118652;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_a308d9b46ce25c98598a3778.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_865da746caf38f584b62e41f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_07f3ef5a5fd08a160ec81a1d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_145e29606de1dbd94f9f3352.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_da1b16007f629b26b20ad68c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.091797;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_fa8b9fd7ed1b0b0dd0ecff08.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-96.660000px;}
.v9{vertical-align:-16.560000px;}
.vb{vertical-align:-14.400000px;}
.v4{vertical-align:-9.360000px;}
.v7{vertical-align:-4.320000px;}
.v2{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.440000px;}
.v6{vertical-align:4.320000px;}
.v5{vertical-align:9.360000px;}
.va{vertical-align:14.400000px;}
.v8{vertical-align:16.560000px;}
.ls6{letter-spacing:-21.780000px;}
.ls12{letter-spacing:-0.900000px;}
.ls8{letter-spacing:-0.180000px;}
.lsf{letter-spacing:-0.053280px;}
.lse{letter-spacing:-0.028080px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.028080px;}
.lsc{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.378720px;}
.ls11{letter-spacing:0.558720px;}
.lsd{letter-spacing:0.666720px;}
.ls2{letter-spacing:0.720000px;}
.ls9{letter-spacing:2.880000px;}
.ls4{letter-spacing:6.300000px;}
.ls7{letter-spacing:11.340000px;}
.ls1{letter-spacing:14.220000px;}
.lsa{letter-spacing:21.420000px;}
.ls0{letter-spacing:794.880000px;}
.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:-23.418720px;}
.ws4{word-spacing:-21.088080px;}
.ws0{word-spacing:-21.060000px;}
.ws3{word-spacing:-15.300000px;}
.ws1{word-spacing:0.000000px;}
._31{margin-left:-2878.891440px;}
._f{margin-left:-2823.841200px;}
._2e{margin-left:-2521.225680px;}
._9{margin-left:-2426.316000px;}
._42{margin-left:-2392.085520px;}
._30{margin-left:-2007.451680px;}
._2c{margin-left:-1848.349920px;}
._11{margin-left:-1840.800000px;}
._12{margin-left:-1839.403680px;}
._3f{margin-left:-924.909120px;}
._43{margin-left:-917.233200px;}
._3e{margin-left:-858.118320px;}
._2f{margin-left:-758.156880px;}
._3d{margin-left:-552.663360px;}
._10{margin-left:-511.999200px;}
._46{margin-left:-417.805920px;}
._8{margin-left:-275.200560px;}
._45{margin-left:-270.156000px;}
._2b{margin-left:-55.620000px;}
._44{margin-left:-48.931920px;}
._2d{margin-left:-21.818160px;}
._38{margin-left:-17.229600px;}
._b{margin-left:-7.920000px;}
._c{margin-left:-6.006240px;}
._e{margin-left:-4.320000px;}
._19{margin-left:-2.315040px;}
._0{margin-left:-1.263600px;}
._1{width:1.512960px;}
._d{width:3.505680px;}
._14{width:5.081520px;}
._4{width:6.402240px;}
._a{width:7.435440px;}
._37{width:8.547840px;}
._1b{width:9.940320px;}
._1c{width:11.119680px;}
._20{width:12.299040px;}
._6{width:13.646880px;}
._17{width:15.415920px;}
._16{width:16.426800px;}
._1f{width:17.774640px;}
._3{width:18.818880px;}
._2{width:19.931520px;}
._21{width:23.041440px;}
._28{width:24.682320px;}
._27{width:25.777440px;}
._39{width:27.016560px;}
._29{width:28.060080px;}
._26{width:29.182080px;}
._15{width:30.568320px;}
._25{width:31.674240px;}
._1a{width:32.685120px;}
._34{width:36.897120px;}
._5{width:40.435200px;}
._1d{width:42.793920px;}
._3b{width:43.804800px;}
._1e{width:45.489600px;}
._18{width:47.005920px;}
._22{width:50.375520px;}
._23{width:51.807600px;}
._24{width:53.913600px;}
._3a{width:55.177200px;}
._35{width:59.389200px;}
._36{width:67.981680px;}
._32{width:84.576960px;}
._33{width:85.587840px;}
._41{width:612.876000px;}
._3c{width:1026.156000px;}
._47{width:1188.300000px;}
._40{width:1309.980000px;}
._2a{width:1435.052400px;}
._7{width:2040.192960px;}
._13{width:2352.720000px;}
.fc1{color:rgb(39,39,39);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.880000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:38.376000px;}
.y2{bottom:62.676000px;}
.y55{bottom:88.596000px;}
.y54{bottom:93.816000px;}
.y2c{bottom:98.856000px;}
.y53{bottom:107.136000px;}
.y56{bottom:110.736000px;}
.y2b{bottom:123.156000px;}
.y50{bottom:134.856000px;}
.y2a{bottom:147.276000px;}
.y4f{bottom:159.150000px;}
.y29{bottom:171.390000px;}
.y4e{bottom:183.270000px;}
.y28{bottom:195.510000px;}
.y52{bottom:207.390000px;}
.y27{bottom:219.630000px;}
.y4d{bottom:231.510000px;}
.y26{bottom:243.750000px;}
.y4c{bottom:255.630000px;}
.y25{bottom:267.870000px;}
.y4b{bottom:279.795000px;}
.y24{bottom:292.215000px;}
.y4a{bottom:303.915000px;}
.y23{bottom:316.335000px;}
.y49{bottom:328.215000px;}
.y22{bottom:340.455000px;}
.y48{bottom:352.335000px;}
.y21{bottom:364.575000px;}
.y47{bottom:376.455000px;}
.y20{bottom:388.695000px;}
.y46{bottom:400.575000px;}
.y1f{bottom:412.815000px;}
.y45{bottom:424.695000px;}
.y1e{bottom:437.115000px;}
.y44{bottom:448.815000px;}
.y1d{bottom:461.235000px;}
.y43{bottom:473.115000px;}
.y1c{bottom:485.355000px;}
.y42{bottom:497.235000px;}
.y1b{bottom:509.475000px;}
.y41{bottom:521.355000px;}
.y1a{bottom:533.595000px;}
.y40{bottom:545.475000px;}
.y19{bottom:557.745000px;}
.y3f{bottom:569.625000px;}
.y18{bottom:582.045000px;}
.y3e{bottom:593.745000px;}
.y17{bottom:606.165000px;}
.y3d{bottom:618.045000px;}
.y16{bottom:630.285000px;}
.y3c{bottom:642.165000px;}
.y3b{bottom:666.285000px;}
.y15{bottom:678.525000px;}
.y3a{bottom:690.405000px;}
.y14{bottom:702.645000px;}
.y39{bottom:714.525000px;}
.y13{bottom:726.765000px;}
.y38{bottom:738.645000px;}
.y12{bottom:751.065000px;}
.y37{bottom:762.765000px;}
.y11{bottom:775.185000px;}
.y36{bottom:787.065000px;}
.y10{bottom:799.305000px;}
.y35{bottom:811.185000px;}
.y34{bottom:835.305000px;}
.yf{bottom:847.590000px;}
.y33{bottom:859.470000px;}
.ye{bottom:871.710000px;}
.y32{bottom:883.590000px;}
.yd{bottom:896.010000px;}
.y31{bottom:907.710000px;}
.y30{bottom:932.010000px;}
.yc{bottom:938.130000px;}
.y2f{bottom:956.130000px;}
.yb{bottom:962.250000px;}
.y2e{bottom:980.250000px;}
.ya{bottom:986.370000px;}
.y2d{bottom:1004.370000px;}
.y9{bottom:1028.490000px;}
.y8{bottom:1052.610000px;}
.y7{bottom:1076.730000px;}
.y6{bottom:1101.030000px;}
.y5{bottom:1125.180000px;}
.y51{bottom:1132.740000px;}
.y4{bottom:1149.300000px;}
.y1{bottom:1190.160000px;}
.he{height:38.158594px;}
.h9{height:52.998047px;}
.ha{height:58.490859px;}
.h5{height:58.531992px;}
.hd{height:61.329023px;}
.hf{height:61.423863px;}
.h3{height:72.846211px;}
.h8{height:76.219102px;}
.hb{height:82.635820px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.hc{height:87.859687px;}
.h7{height:90.619102px;}
.h6{height:92.779102px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:80.279987px;}
.x1{left:85.319987px;}
.x17{left:90.179987px;}
.x15{left:92.159987px;}
.x3{left:93.239987px;}
.x6{left:119.015987px;}
.x7{left:125.135987px;}
.xe{left:139.355987px;}
.x4{left:140.975987px;}
.x10{left:180.029987px;}
.x19{left:201.989987px;}
.xb{left:250.409987px;}
.xa{left:263.549987px;}
.xc{left:273.809987px;}
.x9{left:275.789987px;}
.xd{left:293.789987px;}
.x16{left:301.394987px;}
.x8{left:369.254987px;}
.x18{left:415.694987px;}
.x2{left:430.814987px;}
.x5{left:446.474987px;}
.xf{left:478.334987px;}
.x14{left:562.424987px;}
.x12{left:582.224987px;}
.x11{left:685.544987px;}
@media print{
.v1{vertical-align:-85.920000pt;}
.v9{vertical-align:-14.720000pt;}
.vb{vertical-align:-12.800000pt;}
.v4{vertical-align:-8.320000pt;}
.v7{vertical-align:-3.840000pt;}
.v2{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.280000pt;}
.v6{vertical-align:3.840000pt;}
.v5{vertical-align:8.320000pt;}
.va{vertical-align:12.800000pt;}
.v8{vertical-align:14.720000pt;}
.ls6{letter-spacing:-19.360000pt;}
.ls12{letter-spacing:-0.800000pt;}
.ls8{letter-spacing:-0.160000pt;}
.lsf{letter-spacing:-0.047360pt;}
.lse{letter-spacing:-0.024960pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.024960pt;}
.lsc{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.336640pt;}
.ls11{letter-spacing:0.496640pt;}
.lsd{letter-spacing:0.592640pt;}
.ls2{letter-spacing:0.640000pt;}
.ls9{letter-spacing:2.560000pt;}
.ls4{letter-spacing:5.600000pt;}
.ls7{letter-spacing:10.080000pt;}
.ls1{letter-spacing:12.640000pt;}
.lsa{letter-spacing:19.040000pt;}
.ls0{letter-spacing:706.560000pt;}
.ws2{word-spacing:-20.816640pt;}
.ws4{word-spacing:-18.744960pt;}
.ws0{word-spacing:-18.720000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws1{word-spacing:0.000000pt;}
._31{margin-left:-2559.014613pt;}
._f{margin-left:-2510.081067pt;}
._2e{margin-left:-2241.089493pt;}
._9{margin-left:-2156.725333pt;}
._42{margin-left:-2126.298240pt;}
._30{margin-left:-1784.401493pt;}
._2c{margin-left:-1642.977707pt;}
._11{margin-left:-1636.266667pt;}
._12{margin-left:-1635.025493pt;}
._3f{margin-left:-822.141440pt;}
._43{margin-left:-815.318400pt;}
._3e{margin-left:-762.771840pt;}
._2f{margin-left:-673.917227pt;}
._3d{margin-left:-491.256320pt;}
._10{margin-left:-455.110400pt;}
._46{margin-left:-371.383040pt;}
._8{margin-left:-244.622720pt;}
._45{margin-left:-240.138667pt;}
._2b{margin-left:-49.440000pt;}
._44{margin-left:-43.495040pt;}
._2d{margin-left:-19.393920pt;}
._38{margin-left:-15.315200pt;}
._b{margin-left:-7.040000pt;}
._c{margin-left:-5.338880pt;}
._e{margin-left:-3.840000pt;}
._19{margin-left:-2.057813pt;}
._0{margin-left:-1.123200pt;}
._1{width:1.344853pt;}
._d{width:3.116160pt;}
._14{width:4.516907pt;}
._4{width:5.690880pt;}
._a{width:6.609280pt;}
._37{width:7.598080pt;}
._1b{width:8.835840pt;}
._1c{width:9.884160pt;}
._20{width:10.932480pt;}
._6{width:12.130560pt;}
._17{width:13.703040pt;}
._16{width:14.601600pt;}
._1f{width:15.799680pt;}
._3{width:16.727893pt;}
._2{width:17.716907pt;}
._21{width:20.481280pt;}
._28{width:21.939840pt;}
._27{width:22.913280pt;}
._39{width:24.014720pt;}
._29{width:24.942293pt;}
._26{width:25.939627pt;}
._15{width:27.171840pt;}
._25{width:28.154880pt;}
._1a{width:29.053440pt;}
._34{width:32.797440pt;}
._5{width:35.942400pt;}
._1d{width:38.039040pt;}
._3b{width:38.937600pt;}
._1e{width:40.435200pt;}
._18{width:41.783040pt;}
._22{width:44.778240pt;}
._23{width:46.051200pt;}
._24{width:47.923200pt;}
._3a{width:49.046400pt;}
._35{width:52.790400pt;}
._36{width:60.428160pt;}
._32{width:75.179520pt;}
._33{width:76.078080pt;}
._41{width:544.778667pt;}
._3c{width:912.138667pt;}
._47{width:1056.266667pt;}
._40{width:1164.426667pt;}
._2a{width:1275.602133pt;}
._7{width:1813.504853pt;}
._13{width:2091.306667pt;}
.fs2{font-size:34.560000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:34.112000pt;}
.y2{bottom:55.712000pt;}
.y55{bottom:78.752000pt;}
.y54{bottom:83.392000pt;}
.y2c{bottom:87.872000pt;}
.y53{bottom:95.232000pt;}
.y56{bottom:98.432000pt;}
.y2b{bottom:109.472000pt;}
.y50{bottom:119.872000pt;}
.y2a{bottom:130.912000pt;}
.y4f{bottom:141.466667pt;}
.y29{bottom:152.346667pt;}
.y4e{bottom:162.906667pt;}
.y28{bottom:173.786667pt;}
.y52{bottom:184.346667pt;}
.y27{bottom:195.226667pt;}
.y4d{bottom:205.786667pt;}
.y26{bottom:216.666667pt;}
.y4c{bottom:227.226667pt;}
.y25{bottom:238.106667pt;}
.y4b{bottom:248.706667pt;}
.y24{bottom:259.746667pt;}
.y4a{bottom:270.146667pt;}
.y23{bottom:281.186667pt;}
.y49{bottom:291.746667pt;}
.y22{bottom:302.626667pt;}
.y48{bottom:313.186667pt;}
.y21{bottom:324.066667pt;}
.y47{bottom:334.626667pt;}
.y20{bottom:345.506667pt;}
.y46{bottom:356.066667pt;}
.y1f{bottom:366.946667pt;}
.y45{bottom:377.506667pt;}
.y1e{bottom:388.546667pt;}
.y44{bottom:398.946667pt;}
.y1d{bottom:409.986667pt;}
.y43{bottom:420.546667pt;}
.y1c{bottom:431.426667pt;}
.y42{bottom:441.986667pt;}
.y1b{bottom:452.866667pt;}
.y41{bottom:463.426667pt;}
.y1a{bottom:474.306667pt;}
.y40{bottom:484.866667pt;}
.y19{bottom:495.773333pt;}
.y3f{bottom:506.333333pt;}
.y18{bottom:517.373333pt;}
.y3e{bottom:527.773333pt;}
.y17{bottom:538.813333pt;}
.y3d{bottom:549.373333pt;}
.y16{bottom:560.253333pt;}
.y3c{bottom:570.813333pt;}
.y3b{bottom:592.253333pt;}
.y15{bottom:603.133333pt;}
.y3a{bottom:613.693333pt;}
.y14{bottom:624.573333pt;}
.y39{bottom:635.133333pt;}
.y13{bottom:646.013333pt;}
.y38{bottom:656.573333pt;}
.y12{bottom:667.613333pt;}
.y37{bottom:678.013333pt;}
.y11{bottom:689.053333pt;}
.y36{bottom:699.613333pt;}
.y10{bottom:710.493333pt;}
.y35{bottom:721.053333pt;}
.y34{bottom:742.493333pt;}
.yf{bottom:753.413333pt;}
.y33{bottom:763.973333pt;}
.ye{bottom:774.853333pt;}
.y32{bottom:785.413333pt;}
.yd{bottom:796.453333pt;}
.y31{bottom:806.853333pt;}
.y30{bottom:828.453333pt;}
.yc{bottom:833.893333pt;}
.y2f{bottom:849.893333pt;}
.yb{bottom:855.333333pt;}
.y2e{bottom:871.333333pt;}
.ya{bottom:876.773333pt;}
.y2d{bottom:892.773333pt;}
.y9{bottom:914.213333pt;}
.y8{bottom:935.653333pt;}
.y7{bottom:957.093333pt;}
.y6{bottom:978.693333pt;}
.y5{bottom:1000.160000pt;}
.y51{bottom:1006.880000pt;}
.y4{bottom:1021.600000pt;}
.y1{bottom:1057.920000pt;}
.he{height:33.918750pt;}
.h9{height:47.109375pt;}
.ha{height:51.991875pt;}
.h5{height:52.028437pt;}
.hd{height:54.514687pt;}
.hf{height:54.598989pt;}
.h3{height:64.752187pt;}
.h8{height:67.750312pt;}
.hb{height:73.454062pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.hc{height:78.097500pt;}
.h7{height:80.550312pt;}
.h6{height:82.470312pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:71.359988pt;}
.x1{left:75.839988pt;}
.x17{left:80.159988pt;}
.x15{left:81.919988pt;}
.x3{left:82.879988pt;}
.x6{left:105.791988pt;}
.x7{left:111.231988pt;}
.xe{left:123.871988pt;}
.x4{left:125.311988pt;}
.x10{left:160.026655pt;}
.x19{left:179.546655pt;}
.xb{left:222.586655pt;}
.xa{left:234.266655pt;}
.xc{left:243.386655pt;}
.x9{left:245.146655pt;}
.xd{left:261.146655pt;}
.x16{left:267.906655pt;}
.x8{left:328.226655pt;}
.x18{left:369.506655pt;}
.x2{left:382.946655pt;}
.x5{left:396.866655pt;}
.xf{left:425.186655pt;}
.x14{left:499.933322pt;}
.x12{left:517.533322pt;}
.x11{left:609.373322pt;}
}




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