
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_7e402223e5f02ea4ecdb6a1f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.800293;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_9e2139bc3b58cd84062c346a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.851562;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_b700a748babaaa7df171dc4c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.767578;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_2ccd0aa9b317f49d1effaf32.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.752000;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_b05d5f497862cbb8a151d666.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.752000;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_566f0590e3e9756d5779fb50.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_0107d34c230693efe1910732.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8d90d3c6d76c2f60d7fa5bd2.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_31bd2a57e94b41b7d3260e99.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.097168;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_b81acb6fdb0d29f500592027.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_068cce990c194eab9ff7cc5a.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_12ea99daf4fbca0744e0494e.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls11{letter-spacing:-0.600000px;}
.ls9{letter-spacing:-0.552000px;}
.ls2{letter-spacing:-0.456000px;}
.ls3{letter-spacing:-0.396000px;}
.lsc{letter-spacing:-0.096000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.552000px;}
.lsb{letter-spacing:0.582000px;}
.ls8{letter-spacing:0.600000px;}
.ls7{letter-spacing:0.828000px;}
.ls6{letter-spacing:0.888000px;}
.ls0{letter-spacing:10.200000px;}
.lsd{letter-spacing:61.800000px;}
.ls10{letter-spacing:64.200000px;}
.lsf{letter-spacing:64.320000px;}
.lse{letter-spacing:64.380000px;}
.lsa{letter-spacing:122.028000px;}
.ls5{letter-spacing:164.670000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,51,0),0 0.015em rgb(255,51,0),0.015em 0 rgb(255,51,0),0 -0.015em  rgb(255,51,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,51,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-60.000000px;}
.ws4{word-spacing:-21.000000px;}
.ws8{word-spacing:-20.904000px;}
.ws7{word-spacing:-20.448000px;}
.ws1{word-spacing:-19.776000px;}
.ws0{word-spacing:-16.008000px;}
.ws3{word-spacing:-15.384000px;}
.ws2{word-spacing:-14.832000px;}
.ws5{word-spacing:0.000000px;}
._1f{margin-left:-6.336000px;}
._24{margin-left:-4.836000px;}
._10{margin-left:-3.432000px;}
._4{margin-left:-2.340000px;}
._0{margin-left:-1.224000px;}
._1{width:1.152000px;}
._e{width:2.238000px;}
._2{width:4.248000px;}
._14{width:5.892000px;}
._8{width:9.036000px;}
._11{width:10.356000px;}
._b{width:11.592000px;}
._a{width:12.612000px;}
._6{width:13.656000px;}
._7{width:14.688000px;}
._5{width:18.528000px;}
._3{width:19.992000px;}
._1d{width:22.140000px;}
._1e{width:24.744000px;}
._23{width:31.818000px;}
._12{width:34.524000px;}
._13{width:35.862000px;}
._c{width:37.260000px;}
._d{width:38.412000px;}
._20{width:40.062000px;}
._f{width:41.340000px;}
._19{width:51.852000px;}
._18{width:52.992000px;}
._22{width:62.664000px;}
._21{width:63.714000px;}
._17{width:67.182000px;}
._15{width:68.964000px;}
._16{width:70.188000px;}
._9{width:73.296000px;}
._1b{width:174.720000px;}
._1c{width:223.860000px;}
._1a{width:373.320000px;}
.fc5{color:transparent;}
.fc4{color:rgb(255,51,0);}
.fc3{color:rgb(51,102,153);}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(204,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2e{bottom:7.800000px;}
.y40{bottom:7.815000px;}
.y3e{bottom:8.085000px;}
.y33{bottom:8.100000px;}
.y30{bottom:8.115000px;}
.y42{bottom:8.130000px;}
.y7{bottom:10.237500px;}
.y2c{bottom:21.915000px;}
.y6{bottom:30.937500px;}
.y2d{bottom:35.700000px;}
.y3c{bottom:97.537500px;}
.y3b{bottom:125.437500px;}
.y60{bottom:131.437500px;}
.y2a{bottom:143.437500px;}
.y3a{bottom:153.045000px;}
.y5f{bottom:159.030000px;}
.y29{bottom:171.075000px;}
.y39{bottom:180.975000px;}
.y5e{bottom:186.975000px;}
.y28{bottom:198.975000px;}
.y38{bottom:208.575000px;}
.y5d{bottom:214.875000px;}
.y27{bottom:226.575000px;}
.y37{bottom:236.475000px;}
.y5c{bottom:242.475000px;}
.y26{bottom:254.475000px;}
.y36{bottom:261.075000px;}
.y5b{bottom:270.375000px;}
.y25{bottom:282.375000px;}
.y35{bottom:294.975000px;}
.y5a{bottom:297.975000px;}
.y24{bottom:309.975000px;}
.y59{bottom:325.875000px;}
.y34{bottom:328.575000px;}
.y23{bottom:337.905000px;}
.y58{bottom:353.505000px;}
.y32{bottom:362.505000px;}
.y22{bottom:365.505000px;}
.y57{bottom:381.405000px;}
.y21{bottom:393.405000px;}
.y31{bottom:396.405000px;}
.y56{bottom:409.005000px;}
.y20{bottom:421.005000px;}
.y2f{bottom:430.005000px;}
.y55{bottom:436.905000px;}
.y1f{bottom:448.905000px;}
.y2b{bottom:463.905000px;}
.y54{bottom:464.820000px;}
.y1e{bottom:476.505000px;}
.y53{bottom:492.405000px;}
.y1d{bottom:504.405000px;}
.y52{bottom:520.350000px;}
.y1c{bottom:532.350000px;}
.y51{bottom:547.950000px;}
.y1b{bottom:559.950000px;}
.y50{bottom:575.850000px;}
.y1a{bottom:587.850000px;}
.y4f{bottom:603.450000px;}
.y19{bottom:615.450000px;}
.y4e{bottom:628.350000px;}
.y18{bottom:643.350000px;}
.y4d{bottom:661.950000px;}
.y17{bottom:670.950000px;}
.y4c{bottom:695.880000px;}
.y16{bottom:698.880000px;}
.y15{bottom:726.780000px;}
.y4b{bottom:729.480000px;}
.y14{bottom:754.380000px;}
.y4a{bottom:763.395000px;}
.y13{bottom:782.280000px;}
.y49{bottom:803.880000px;}
.y12{bottom:809.880000px;}
.y48{bottom:831.795000px;}
.y11{bottom:837.795000px;}
.y47{bottom:859.425000px;}
.y10{bottom:865.425000px;}
.y46{bottom:887.325000px;}
.yf{bottom:893.325000px;}
.y45{bottom:915.225000px;}
.ye{bottom:921.225000px;}
.y44{bottom:939.825000px;}
.yd{bottom:948.825000px;}
.y43{bottom:973.425000px;}
.yc{bottom:976.725000px;}
.yb{bottom:1004.325000px;}
.y41{bottom:1007.325000px;}
.ya{bottom:1032.255000px;}
.y3f{bottom:1041.255000px;}
.y9{bottom:1059.870000px;}
.y3d{bottom:1074.870000px;}
.y8{bottom:1087.755000px;}
.y5{bottom:1112.070000px;}
.y4{bottom:1131.870000px;}
.y3{bottom:1155.570000px;}
.y2{bottom:1179.870000px;}
.y1{bottom:1207.800000px;}
.hd{height:27.600000px;}
.hc{height:27.900000px;}
.he{height:27.937500px;}
.h5{height:48.972000px;}
.h4{height:50.047852px;}
.hb{height:55.537500px;}
.h6{height:59.267578px;}
.h3{height:66.978516px;}
.h9{height:74.033203px;}
.h2{height:76.546875px;}
.ha{height:82.400391px;}
.h8{height:82.441406px;}
.h7{height:84.656250px;}
.hf{height:86.338763px;}
.h10{height:87.445312px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w3{width:84.300000px;}
.w6{width:92.700000px;}
.w5{width:123.975000px;}
.w7{width:170.475000px;}
.w4{width:230.145000px;}
.w9{width:239.775000px;}
.wb{width:303.720000px;}
.wa{width:392.505000px;}
.w8{width:456.450000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:1.200000px;}
.x1b{left:15.600000px;}
.x6{left:42.299987px;}
.x1f{left:47.700000px;}
.x5{left:84.937487px;}
.x12{left:88.537500px;}
.x7{left:103.837487px;}
.x1d{left:135.637500px;}
.xf{left:138.937487px;}
.x19{left:167.437500px;}
.x13{left:176.475000px;}
.xa{left:194.474987px;}
.x21{left:234.074987px;}
.xe{left:264.074987px;}
.x22{left:325.019987px;}
.xc{left:338.819987px;}
.xd{left:350.819987px;}
.xb{left:353.819987px;}
.x11{left:363.119987px;}
.x20{left:371.819987px;}
.x8{left:380.219987px;}
.x10{left:382.319987px;}
.x15{left:410.520000px;}
.x9{left:446.249987px;}
.x1e{left:484.950000px;}
.x2{left:490.649987px;}
.x16{left:538.095000px;}
.x1a{left:548.895000px;}
.x1{left:557.579987px;}
.x18{left:602.594987px;}
.x1c{left:610.694987px;}
.x17{left:634.395000px;}
.x3{left:641.879987px;}
.x4{left:808.154987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.533333pt;}
.ls9{letter-spacing:-0.490667pt;}
.ls2{letter-spacing:-0.405333pt;}
.ls3{letter-spacing:-0.352000pt;}
.lsc{letter-spacing:-0.085333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.490667pt;}
.lsb{letter-spacing:0.517333pt;}
.ls8{letter-spacing:0.533333pt;}
.ls7{letter-spacing:0.736000pt;}
.ls6{letter-spacing:0.789333pt;}
.ls0{letter-spacing:9.066667pt;}
.lsd{letter-spacing:54.933333pt;}
.ls10{letter-spacing:57.066667pt;}
.lsf{letter-spacing:57.173333pt;}
.lse{letter-spacing:57.226667pt;}
.lsa{letter-spacing:108.469333pt;}
.ls5{letter-spacing:146.373333pt;}
.ws6{word-spacing:-53.333333pt;}
.ws4{word-spacing:-18.666667pt;}
.ws8{word-spacing:-18.581333pt;}
.ws7{word-spacing:-18.176000pt;}
.ws1{word-spacing:-17.578667pt;}
.ws0{word-spacing:-14.229333pt;}
.ws3{word-spacing:-13.674667pt;}
.ws2{word-spacing:-13.184000pt;}
.ws5{word-spacing:0.000000pt;}
._1f{margin-left:-5.632000pt;}
._24{margin-left:-4.298667pt;}
._10{margin-left:-3.050667pt;}
._4{margin-left:-2.080000pt;}
._0{margin-left:-1.088000pt;}
._1{width:1.024000pt;}
._e{width:1.989333pt;}
._2{width:3.776000pt;}
._14{width:5.237333pt;}
._8{width:8.032000pt;}
._11{width:9.205333pt;}
._b{width:10.304000pt;}
._a{width:11.210667pt;}
._6{width:12.138667pt;}
._7{width:13.056000pt;}
._5{width:16.469333pt;}
._3{width:17.770667pt;}
._1d{width:19.680000pt;}
._1e{width:21.994667pt;}
._23{width:28.282667pt;}
._12{width:30.688000pt;}
._13{width:31.877333pt;}
._c{width:33.120000pt;}
._d{width:34.144000pt;}
._20{width:35.610667pt;}
._f{width:36.746667pt;}
._19{width:46.090667pt;}
._18{width:47.104000pt;}
._22{width:55.701333pt;}
._21{width:56.634667pt;}
._17{width:59.717333pt;}
._15{width:61.301333pt;}
._16{width:62.389333pt;}
._9{width:65.152000pt;}
._1b{width:155.306667pt;}
._1c{width:198.986667pt;}
._1a{width:331.840000pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:6.933333pt;}
.y40{bottom:6.946667pt;}
.y3e{bottom:7.186667pt;}
.y33{bottom:7.200000pt;}
.y30{bottom:7.213333pt;}
.y42{bottom:7.226667pt;}
.y7{bottom:9.100000pt;}
.y2c{bottom:19.480000pt;}
.y6{bottom:27.500000pt;}
.y2d{bottom:31.733333pt;}
.y3c{bottom:86.700000pt;}
.y3b{bottom:111.500000pt;}
.y60{bottom:116.833333pt;}
.y2a{bottom:127.500000pt;}
.y3a{bottom:136.040000pt;}
.y5f{bottom:141.360000pt;}
.y29{bottom:152.066667pt;}
.y39{bottom:160.866667pt;}
.y5e{bottom:166.200000pt;}
.y28{bottom:176.866667pt;}
.y38{bottom:185.400000pt;}
.y5d{bottom:191.000000pt;}
.y27{bottom:201.400000pt;}
.y37{bottom:210.200000pt;}
.y5c{bottom:215.533333pt;}
.y26{bottom:226.200000pt;}
.y36{bottom:232.066667pt;}
.y5b{bottom:240.333333pt;}
.y25{bottom:251.000000pt;}
.y35{bottom:262.200000pt;}
.y5a{bottom:264.866667pt;}
.y24{bottom:275.533333pt;}
.y59{bottom:289.666667pt;}
.y34{bottom:292.066667pt;}
.y23{bottom:300.360000pt;}
.y58{bottom:314.226667pt;}
.y32{bottom:322.226667pt;}
.y22{bottom:324.893333pt;}
.y57{bottom:339.026667pt;}
.y21{bottom:349.693333pt;}
.y31{bottom:352.360000pt;}
.y56{bottom:363.560000pt;}
.y20{bottom:374.226667pt;}
.y2f{bottom:382.226667pt;}
.y55{bottom:388.360000pt;}
.y1f{bottom:399.026667pt;}
.y2b{bottom:412.360000pt;}
.y54{bottom:413.173333pt;}
.y1e{bottom:423.560000pt;}
.y53{bottom:437.693333pt;}
.y1d{bottom:448.360000pt;}
.y52{bottom:462.533333pt;}
.y1c{bottom:473.200000pt;}
.y51{bottom:487.066667pt;}
.y1b{bottom:497.733333pt;}
.y50{bottom:511.866667pt;}
.y1a{bottom:522.533333pt;}
.y4f{bottom:536.400000pt;}
.y19{bottom:547.066667pt;}
.y4e{bottom:558.533333pt;}
.y18{bottom:571.866667pt;}
.y4d{bottom:588.400000pt;}
.y17{bottom:596.400000pt;}
.y4c{bottom:618.560000pt;}
.y16{bottom:621.226667pt;}
.y15{bottom:646.026667pt;}
.y4b{bottom:648.426667pt;}
.y14{bottom:670.560000pt;}
.y4a{bottom:678.573333pt;}
.y13{bottom:695.360000pt;}
.y49{bottom:714.560000pt;}
.y12{bottom:719.893333pt;}
.y48{bottom:739.373333pt;}
.y11{bottom:744.706667pt;}
.y47{bottom:763.933333pt;}
.y10{bottom:769.266667pt;}
.y46{bottom:788.733333pt;}
.yf{bottom:794.066667pt;}
.y45{bottom:813.533333pt;}
.ye{bottom:818.866667pt;}
.y44{bottom:835.400000pt;}
.yd{bottom:843.400000pt;}
.y43{bottom:865.266667pt;}
.yc{bottom:868.200000pt;}
.yb{bottom:892.733333pt;}
.y41{bottom:895.400000pt;}
.ya{bottom:917.560000pt;}
.y3f{bottom:925.560000pt;}
.y9{bottom:942.106667pt;}
.y3d{bottom:955.440000pt;}
.y8{bottom:966.893333pt;}
.y5{bottom:988.506667pt;}
.y4{bottom:1006.106667pt;}
.y3{bottom:1027.173333pt;}
.y2{bottom:1048.773333pt;}
.y1{bottom:1073.600000pt;}
.hd{height:24.533333pt;}
.hc{height:24.800000pt;}
.he{height:24.833333pt;}
.h5{height:43.530667pt;}
.h4{height:44.486979pt;}
.hb{height:49.366667pt;}
.h6{height:52.682292pt;}
.h3{height:59.536458pt;}
.h9{height:65.807292pt;}
.h2{height:68.041667pt;}
.ha{height:73.244792pt;}
.h8{height:73.281250pt;}
.h7{height:75.250000pt;}
.hf{height:76.745567pt;}
.h10{height:77.729167pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w3{width:74.933333pt;}
.w6{width:82.400000pt;}
.w5{width:110.200000pt;}
.w7{width:151.533333pt;}
.w4{width:204.573333pt;}
.w9{width:213.133333pt;}
.wb{width:269.973333pt;}
.wa{width:348.893333pt;}
.w8{width:405.733333pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:1.066667pt;}
.x1b{left:13.866667pt;}
.x6{left:37.599988pt;}
.x1f{left:42.400000pt;}
.x5{left:75.499988pt;}
.x12{left:78.700000pt;}
.x7{left:92.299988pt;}
.x1d{left:120.566667pt;}
.xf{left:123.499988pt;}
.x19{left:148.833333pt;}
.x13{left:156.866667pt;}
.xa{left:172.866655pt;}
.x21{left:208.066655pt;}
.xe{left:234.733322pt;}
.x22{left:288.906655pt;}
.xc{left:301.173322pt;}
.xd{left:311.839988pt;}
.xb{left:314.506655pt;}
.x11{left:322.773322pt;}
.x20{left:330.506655pt;}
.x8{left:337.973322pt;}
.x10{left:339.839988pt;}
.x15{left:364.906667pt;}
.x9{left:396.666655pt;}
.x1e{left:431.066667pt;}
.x2{left:436.133322pt;}
.x16{left:478.306667pt;}
.x1a{left:487.906667pt;}
.x1{left:495.626655pt;}
.x18{left:535.639988pt;}
.x1c{left:542.839988pt;}
.x17{left:563.906667pt;}
.x3{left:570.559988pt;}
.x4{left:718.359988pt;}
}




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