
    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_4b2548ddd8f6b9bd6b4e42c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_636e8e7503f1945d38688cb8.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_fc170f49f184d3a6ebbcfcf4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_91a835185f4ce433e1a1bba6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.972656;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_dfd50a392594a0efdf1c774f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.972656;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_06b7f53491ce85ecb560fe74.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_1f79d1384eca5eec63521b6a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064453;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_ef6787e4e30058e054503dce.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.111328;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_4c2f350e08832d778313de3a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064453;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_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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);}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-0.398400px;}
.lse{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.180000px;}
.ls0{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.017280px;}
.ls7{letter-spacing:0.028080px;}
.lsf{letter-spacing:0.037440px;}
.lsc{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.099600px;}
.ls1{letter-spacing:0.126000px;}
.ls8{letter-spacing:0.291600px;}
.ls4{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.369360px;}
.ls2{letter-spacing:0.504480px;}
.ls13{letter-spacing:0.540000px;}
.lsb{letter-spacing:6.300000px;}
.ls12{letter-spacing:9.900000px;}
.ls6{letter-spacing:14.940000px;}
.ls5{letter-spacing:15.660000px;}
.ls11{letter-spacing:24.300000px;}
.ls15{letter-spacing:31.842720px;}
.ls16{letter-spacing:37.764000px;}
.ls14{letter-spacing:43.685280px;}
.ls9{letter-spacing:61.020000px;}
.lsa{letter-spacing:82.080000px;}
.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;}
}
.ws3{word-spacing:-30.540960px;}
.wsa{word-spacing:-24.300000px;}
.wsb{word-spacing:-22.860000px;}
.ws9{word-spacing:-21.420000px;}
.ws6{word-spacing:-21.159600px;}
.ws5{word-spacing:-21.097440px;}
.ws1{word-spacing:-21.060000px;}
.ws8{word-spacing:-20.880000px;}
.ws4{word-spacing:-20.700000px;}
.ws7{word-spacing:-18.000000px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:0.000000px;}
._16{margin-left:-19.913760px;}
._14{margin-left:-16.020000px;}
._18{margin-left:-14.648160px;}
._15{margin-left:-13.609200px;}
._17{margin-left:-8.249520px;}
._24{margin-left:-6.318000px;}
._13{margin-left:-4.795440px;}
._20{margin-left:-3.379680px;}
._19{margin-left:-2.308080px;}
._0{margin-left:-1.258560px;}
._1{width:1.005600px;}
._b{width:2.153280px;}
._1e{width:3.419760px;}
._11{width:4.458480px;}
._e{width:6.061440px;}
._10{width:7.112880px;}
._21{width:8.424000px;}
._22{width:10.108800px;}
._29{width:12.406800px;}
._6{width:14.420160px;}
._7{width:16.357680px;}
._1a{width:18.190800px;}
._23{width:19.939680px;}
._9{width:22.739760px;}
._a{width:23.887920px;}
._1f{width:25.319760px;}
._12{width:28.473120px;}
._27{width:30.242160px;}
._4{width:31.416480px;}
._5{width:32.715120px;}
._3{width:34.191360px;}
._2{width:35.544240px;}
._2d{width:37.042320px;}
._2c{width:38.105040px;}
._2f{width:42.035760px;}
._2e{width:43.046640px;}
._1d{width:44.210880px;}
._1c{width:45.494640px;}
._1b{width:46.495440px;}
._28{width:47.590560px;}
._26{width:55.087920px;}
._25{width:56.188080px;}
._8{width:60.820560px;}
._2b{width:69.958080px;}
._2a{width:71.098560px;}
._c{width:81.544320px;}
._f{width:85.924800px;}
._d{width:118.365600px;}
._30{width:843.240000px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs5{font-size:90.000000px;}
.fs4{font-size:95.760000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y1{bottom:76.716000px;}
.y21{bottom:101.556000px;}
.y39{bottom:114.876000px;}
.y88{bottom:117.396000px;}
.y20{bottom:131.796000px;}
.y5e{bottom:138.276000px;}
.y87{bottom:141.516000px;}
.y38{bottom:144.936000px;}
.ya9{bottom:146.196000px;}
.y1f{bottom:162.030000px;}
.y5d{bottom:162.390000px;}
.y86{bottom:165.630000px;}
.ya8{bottom:169.950000px;}
.y37{bottom:175.170000px;}
.y5c{bottom:186.510000px;}
.y85{bottom:189.750000px;}
.y1e{bottom:192.270000px;}
.ya7{bottom:192.450000px;}
.y36{bottom:205.410000px;}
.y5b{bottom:210.630000px;}
.y84{bottom:213.870000px;}
.ya6{bottom:214.950000px;}
.y1d{bottom:222.330000px;}
.y35{bottom:235.470000px;}
.y83{bottom:237.990000px;}
.ya5{bottom:240.510000px;}
.y5a{bottom:243.930000px;}
.y1c{bottom:252.570000px;}
.y82{bottom:262.290000px;}
.ya4{bottom:264.630000px;}
.y34{bottom:265.710000px;}
.y59{bottom:268.050000px;}
.y1b{bottom:282.810000px;}
.y81{bottom:286.410000px;}
.ya3{bottom:288.750000px;}
.y58{bottom:292.170000px;}
.y33{bottom:295.950000px;}
.y80{bottom:310.530000px;}
.y1a{bottom:312.870000px;}
.y57{bottom:316.290000px;}
.y32{bottom:326.010000px;}
.y7f{bottom:334.695000px;}
.ya2{bottom:337.035000px;}
.y19{bottom:343.155000px;}
.y56{bottom:349.455000px;}
.y31{bottom:356.295000px;}
.y7e{bottom:358.815000px;}
.ya1{bottom:364.035000px;}
.y18{bottom:373.395000px;}
.y55{bottom:373.575000px;}
.y7d{bottom:382.935000px;}
.y30{bottom:386.535000px;}
.ya0{bottom:388.155000px;}
.y54{bottom:397.695000px;}
.y17{bottom:403.455000px;}
.y7c{bottom:407.235000px;}
.y9f{bottom:412.455000px;}
.y2f{bottom:416.595000px;}
.y53{bottom:421.995000px;}
.y7b{bottom:431.355000px;}
.y16{bottom:433.695000px;}
.y9e{bottom:436.575000px;}
.y52{bottom:446.115000px;}
.y2e{bottom:446.835000px;}
.y7a{bottom:455.475000px;}
.y9d{bottom:460.695000px;}
.y15{bottom:463.935000px;}
.y2d{bottom:477.075000px;}
.y51{bottom:479.235000px;}
.y79{bottom:479.595000px;}
.y9c{bottom:484.815000px;}
.y14{bottom:498.675000px;}
.y50{bottom:503.355000px;}
.y78{bottom:503.715000px;}
.y2c{bottom:505.875000px;}
.y9b{bottom:508.935000px;}
.y4f{bottom:527.475000px;}
.y77{bottom:527.835000px;}
.y2b{bottom:533.055000px;}
.y13{bottom:541.155000px;}
.y76{bottom:551.955000px;}
.y9a{bottom:557.175000px;}
.y4e{bottom:560.595000px;}
.y2a{bottom:563.295000px;}
.y75{bottom:576.255000px;}
.y99{bottom:581.475000px;}
.y12{bottom:583.815000px;}
.y4d{bottom:584.895000px;}
.y29{bottom:593.535000px;}
.y74{bottom:600.405000px;}
.y98{bottom:605.625000px;}
.y4c{bottom:609.045000px;}
.y28{bottom:623.625000px;}
.y73{bottom:624.525000px;}
.y11{bottom:626.505000px;}
.y97{bottom:629.745000px;}
.y4b{bottom:633.165000px;}
.y72{bottom:648.645000px;}
.y27{bottom:653.865000px;}
.y4a{bottom:657.285000px;}
.y10{bottom:668.985000px;}
.y71{bottom:672.765000px;}
.y96{bottom:677.985000px;}
.y26{bottom:684.105000px;}
.y49{bottom:690.405000px;}
.y70{bottom:696.885000px;}
.y95{bottom:702.105000px;}
.yf{bottom:711.645000px;}
.y25{bottom:714.165000px;}
.y48{bottom:714.525000px;}
.y6f{bottom:721.185000px;}
.y94{bottom:726.405000px;}
.y47{bottom:738.645000px;}
.y24{bottom:744.405000px;}
.y6e{bottom:745.305000px;}
.y93{bottom:750.525000px;}
.ye{bottom:754.305000px;}
.y6d{bottom:769.425000px;}
.y46{bottom:771.945000px;}
.y23{bottom:774.645000px;}
.y6c{bottom:793.545000px;}
.y45{bottom:796.065000px;}
.yd{bottom:796.965000px;}
.y92{bottom:798.765000px;}
.y22{bottom:804.885000px;}
.y6b{bottom:817.665000px;}
.y44{bottom:820.185000px;}
.y91{bottom:822.885000px;}
.yc{bottom:834.945000px;}
.y6a{bottom:841.785000px;}
.y43{bottom:844.305000px;}
.y90{bottom:847.005000px;}
.yb{bottom:865.230000px;}
.y69{bottom:865.950000px;}
.y8f{bottom:871.170000px;}
.y42{bottom:883.590000px;}
.y68{bottom:890.250000px;}
.ya{bottom:895.470000px;}
.y67{bottom:914.370000px;}
.y8e{bottom:919.590000px;}
.y9{bottom:925.530000px;}
.y41{bottom:925.710000px;}
.y66{bottom:938.490000px;}
.y8d{bottom:943.710000px;}
.y40{bottom:949.830000px;}
.y8{bottom:955.770000px;}
.y65{bottom:962.610000px;}
.y8c{bottom:967.830000px;}
.y3f{bottom:973.950000px;}
.y7{bottom:986.010000px;}
.y64{bottom:986.730000px;}
.y8b{bottom:991.950000px;}
.y3e{bottom:998.070000px;}
.y63{bottom:1010.850000px;}
.y6{bottom:1016.070000px;}
.y3d{bottom:1031.370000px;}
.y62{bottom:1035.150000px;}
.y8a{bottom:1040.370000px;}
.y5{bottom:1046.310000px;}
.y3c{bottom:1055.490000px;}
.y89{bottom:1064.490000px;}
.y61{bottom:1065.210000px;}
.y4{bottom:1076.550000px;}
.y3b{bottom:1088.610000px;}
.y60{bottom:1104.450000px;}
.y3{bottom:1106.610000px;}
.y3a{bottom:1112.730000px;}
.y5f{bottom:1134.540000px;}
.y2{bottom:1136.880000px;}
.h5{height:64.546875px;}
.ha{height:69.710625px;}
.h7{height:71.488828px;}
.h6{height:71.613281px;}
.h3{height:72.846211px;}
.h2{height:75.519844px;}
.h9{height:80.683594px;}
.h8{height:85.847344px;}
.h4{height:90.884531px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:76.499987px;}
.x13{left:88.199987px;}
.x19{left:108.395987px;}
.x7{left:126.215987px;}
.x5{left:129.635987px;}
.xf{left:140.435987px;}
.x14{left:167.789987px;}
.x8{left:171.389987px;}
.xb{left:172.649987px;}
.x15{left:193.169987px;}
.x11{left:204.149987px;}
.x16{left:237.449987px;}
.x2{left:257.069987px;}
.xa{left:263.009987px;}
.x9{left:293.834987px;}
.x3{left:327.854987px;}
.xc{left:353.774987px;}
.x6{left:360.614987px;}
.x17{left:389.054987px;}
.xd{left:424.154987px;}
.xe{left:425.414987px;}
.x12{left:430.634987px;}
.x4{left:446.474987px;}
.x18{left:472.934987px;}
.x1{left:478.364987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-0.354133pt;}
.lse{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.015360pt;}
.ls7{letter-spacing:0.024960pt;}
.lsf{letter-spacing:0.033280pt;}
.lsc{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.088533pt;}
.ls1{letter-spacing:0.112000pt;}
.ls8{letter-spacing:0.259200pt;}
.ls4{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.328320pt;}
.ls2{letter-spacing:0.448427pt;}
.ls13{letter-spacing:0.480000pt;}
.lsb{letter-spacing:5.600000pt;}
.ls12{letter-spacing:8.800000pt;}
.ls6{letter-spacing:13.280000pt;}
.ls5{letter-spacing:13.920000pt;}
.ls11{letter-spacing:21.600000pt;}
.ls15{letter-spacing:28.304640pt;}
.ls16{letter-spacing:33.568000pt;}
.ls14{letter-spacing:38.831360pt;}
.ls9{letter-spacing:54.240000pt;}
.lsa{letter-spacing:72.960000pt;}
.ws3{word-spacing:-27.147520pt;}
.wsa{word-spacing:-21.600000pt;}
.wsb{word-spacing:-20.320000pt;}
.ws9{word-spacing:-19.040000pt;}
.ws6{word-spacing:-18.808533pt;}
.ws5{word-spacing:-18.753280pt;}
.ws1{word-spacing:-18.720000pt;}
.ws8{word-spacing:-18.560000pt;}
.ws4{word-spacing:-18.400000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:0.000000pt;}
._16{margin-left:-17.701120pt;}
._14{margin-left:-14.240000pt;}
._18{margin-left:-13.020587pt;}
._15{margin-left:-12.097067pt;}
._17{margin-left:-7.332907pt;}
._24{margin-left:-5.616000pt;}
._13{margin-left:-4.262613pt;}
._20{margin-left:-3.004160pt;}
._19{margin-left:-2.051627pt;}
._0{margin-left:-1.118720pt;}
._1{width:0.893867pt;}
._b{width:1.914027pt;}
._1e{width:3.039787pt;}
._11{width:3.963093pt;}
._e{width:5.387947pt;}
._10{width:6.322560pt;}
._21{width:7.488000pt;}
._22{width:8.985600pt;}
._29{width:11.028267pt;}
._6{width:12.817920pt;}
._7{width:14.540160pt;}
._1a{width:16.169600pt;}
._23{width:17.724160pt;}
._9{width:20.213120pt;}
._a{width:21.233707pt;}
._1f{width:22.506453pt;}
._12{width:25.309440pt;}
._27{width:26.881920pt;}
._4{width:27.925760pt;}
._5{width:29.080107pt;}
._3{width:30.392320pt;}
._2{width:31.594880pt;}
._2d{width:32.926507pt;}
._2c{width:33.871147pt;}
._2f{width:37.365120pt;}
._2e{width:38.263680pt;}
._1d{width:39.298560pt;}
._1c{width:40.439680pt;}
._1b{width:41.329280pt;}
._28{width:42.302720pt;}
._26{width:48.967040pt;}
._25{width:49.944960pt;}
._8{width:54.062720pt;}
._2b{width:62.184960pt;}
._2a{width:63.198720pt;}
._c{width:72.483840pt;}
._f{width:76.377600pt;}
._d{width:105.213867pt;}
._30{width:749.546667pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs5{font-size:80.000000pt;}
.fs4{font-size:85.120000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:68.192000pt;}
.y21{bottom:90.272000pt;}
.y39{bottom:102.112000pt;}
.y88{bottom:104.352000pt;}
.y20{bottom:117.152000pt;}
.y5e{bottom:122.912000pt;}
.y87{bottom:125.792000pt;}
.y38{bottom:128.832000pt;}
.ya9{bottom:129.952000pt;}
.y1f{bottom:144.026667pt;}
.y5d{bottom:144.346667pt;}
.y86{bottom:147.226667pt;}
.ya8{bottom:151.066667pt;}
.y37{bottom:155.706667pt;}
.y5c{bottom:165.786667pt;}
.y85{bottom:168.666667pt;}
.y1e{bottom:170.906667pt;}
.ya7{bottom:171.066667pt;}
.y36{bottom:182.586667pt;}
.y5b{bottom:187.226667pt;}
.y84{bottom:190.106667pt;}
.ya6{bottom:191.066667pt;}
.y1d{bottom:197.626667pt;}
.y35{bottom:209.306667pt;}
.y83{bottom:211.546667pt;}
.ya5{bottom:213.786667pt;}
.y5a{bottom:216.826667pt;}
.y1c{bottom:224.506667pt;}
.y82{bottom:233.146667pt;}
.ya4{bottom:235.226667pt;}
.y34{bottom:236.186667pt;}
.y59{bottom:238.266667pt;}
.y1b{bottom:251.386667pt;}
.y81{bottom:254.586667pt;}
.ya3{bottom:256.666667pt;}
.y58{bottom:259.706667pt;}
.y33{bottom:263.066667pt;}
.y80{bottom:276.026667pt;}
.y1a{bottom:278.106667pt;}
.y57{bottom:281.146667pt;}
.y32{bottom:289.786667pt;}
.y7f{bottom:297.506667pt;}
.ya2{bottom:299.586667pt;}
.y19{bottom:305.026667pt;}
.y56{bottom:310.626667pt;}
.y31{bottom:316.706667pt;}
.y7e{bottom:318.946667pt;}
.ya1{bottom:323.586667pt;}
.y18{bottom:331.906667pt;}
.y55{bottom:332.066667pt;}
.y7d{bottom:340.386667pt;}
.y30{bottom:343.586667pt;}
.ya0{bottom:345.026667pt;}
.y54{bottom:353.506667pt;}
.y17{bottom:358.626667pt;}
.y7c{bottom:361.986667pt;}
.y9f{bottom:366.626667pt;}
.y2f{bottom:370.306667pt;}
.y53{bottom:375.106667pt;}
.y7b{bottom:383.426667pt;}
.y16{bottom:385.506667pt;}
.y9e{bottom:388.066667pt;}
.y52{bottom:396.546667pt;}
.y2e{bottom:397.186667pt;}
.y7a{bottom:404.866667pt;}
.y9d{bottom:409.506667pt;}
.y15{bottom:412.386667pt;}
.y2d{bottom:424.066667pt;}
.y51{bottom:425.986667pt;}
.y79{bottom:426.306667pt;}
.y9c{bottom:430.946667pt;}
.y14{bottom:443.266667pt;}
.y50{bottom:447.426667pt;}
.y78{bottom:447.746667pt;}
.y2c{bottom:449.666667pt;}
.y9b{bottom:452.386667pt;}
.y4f{bottom:468.866667pt;}
.y77{bottom:469.186667pt;}
.y2b{bottom:473.826667pt;}
.y13{bottom:481.026667pt;}
.y76{bottom:490.626667pt;}
.y9a{bottom:495.266667pt;}
.y4e{bottom:498.306667pt;}
.y2a{bottom:500.706667pt;}
.y75{bottom:512.226667pt;}
.y99{bottom:516.866667pt;}
.y12{bottom:518.946667pt;}
.y4d{bottom:519.906667pt;}
.y29{bottom:527.586667pt;}
.y74{bottom:533.693333pt;}
.y98{bottom:538.333333pt;}
.y4c{bottom:541.373333pt;}
.y28{bottom:554.333333pt;}
.y73{bottom:555.133333pt;}
.y11{bottom:556.893333pt;}
.y97{bottom:559.773333pt;}
.y4b{bottom:562.813333pt;}
.y72{bottom:576.573333pt;}
.y27{bottom:581.213333pt;}
.y4a{bottom:584.253333pt;}
.y10{bottom:594.653333pt;}
.y71{bottom:598.013333pt;}
.y96{bottom:602.653333pt;}
.y26{bottom:608.093333pt;}
.y49{bottom:613.693333pt;}
.y70{bottom:619.453333pt;}
.y95{bottom:624.093333pt;}
.yf{bottom:632.573333pt;}
.y25{bottom:634.813333pt;}
.y48{bottom:635.133333pt;}
.y6f{bottom:641.053333pt;}
.y94{bottom:645.693333pt;}
.y47{bottom:656.573333pt;}
.y24{bottom:661.693333pt;}
.y6e{bottom:662.493333pt;}
.y93{bottom:667.133333pt;}
.ye{bottom:670.493333pt;}
.y6d{bottom:683.933333pt;}
.y46{bottom:686.173333pt;}
.y23{bottom:688.573333pt;}
.y6c{bottom:705.373333pt;}
.y45{bottom:707.613333pt;}
.yd{bottom:708.413333pt;}
.y92{bottom:710.013333pt;}
.y22{bottom:715.453333pt;}
.y6b{bottom:726.813333pt;}
.y44{bottom:729.053333pt;}
.y91{bottom:731.453333pt;}
.yc{bottom:742.173333pt;}
.y6a{bottom:748.253333pt;}
.y43{bottom:750.493333pt;}
.y90{bottom:752.893333pt;}
.yb{bottom:769.093333pt;}
.y69{bottom:769.733333pt;}
.y8f{bottom:774.373333pt;}
.y42{bottom:785.413333pt;}
.y68{bottom:791.333333pt;}
.ya{bottom:795.973333pt;}
.y67{bottom:812.773333pt;}
.y8e{bottom:817.413333pt;}
.y9{bottom:822.693333pt;}
.y41{bottom:822.853333pt;}
.y66{bottom:834.213333pt;}
.y8d{bottom:838.853333pt;}
.y40{bottom:844.293333pt;}
.y8{bottom:849.573333pt;}
.y65{bottom:855.653333pt;}
.y8c{bottom:860.293333pt;}
.y3f{bottom:865.733333pt;}
.y7{bottom:876.453333pt;}
.y64{bottom:877.093333pt;}
.y8b{bottom:881.733333pt;}
.y3e{bottom:887.173333pt;}
.y63{bottom:898.533333pt;}
.y6{bottom:903.173333pt;}
.y3d{bottom:916.773333pt;}
.y62{bottom:920.133333pt;}
.y8a{bottom:924.773333pt;}
.y5{bottom:930.053333pt;}
.y3c{bottom:938.213333pt;}
.y89{bottom:946.213333pt;}
.y61{bottom:946.853333pt;}
.y4{bottom:956.933333pt;}
.y3b{bottom:967.653333pt;}
.y60{bottom:981.733333pt;}
.y3{bottom:983.653333pt;}
.y3a{bottom:989.093333pt;}
.y5f{bottom:1008.480000pt;}
.y2{bottom:1010.560000pt;}
.h5{height:57.375000pt;}
.ha{height:61.965000pt;}
.h7{height:63.545625pt;}
.h6{height:63.656250pt;}
.h3{height:64.752187pt;}
.h2{height:67.128750pt;}
.h9{height:71.718750pt;}
.h8{height:76.308750pt;}
.h4{height:80.786250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:67.999988pt;}
.x13{left:78.399988pt;}
.x19{left:96.351988pt;}
.x7{left:112.191988pt;}
.x5{left:115.231988pt;}
.xf{left:124.831988pt;}
.x14{left:149.146655pt;}
.x8{left:152.346655pt;}
.xb{left:153.466655pt;}
.x15{left:171.706655pt;}
.x11{left:181.466655pt;}
.x16{left:211.066655pt;}
.x2{left:228.506655pt;}
.xa{left:233.786655pt;}
.x9{left:261.186655pt;}
.x3{left:291.426655pt;}
.xc{left:314.466655pt;}
.x6{left:320.546655pt;}
.x17{left:345.826655pt;}
.xd{left:377.026655pt;}
.xe{left:378.146655pt;}
.x12{left:382.786655pt;}
.x4{left:396.866655pt;}
.x18{left:420.386655pt;}
.x1{left:425.213322pt;}
}




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