
    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_3c35567d7193d06c4e7afbe4.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_c9563a4944fdfd16eb9b34bb.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_c02bfdc4d6c9ea2b4cc12915.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.123047;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_4a9295aece1a41f7e55ea7ff.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_363a948df4c9667155089ed7.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b565deb4922bb50635d2da2b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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:-69.120000px;}
.v1{vertical-align:-63.360000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.600000px;}
.ls22{letter-spacing:-1.908000px;}
.ls2c{letter-spacing:-1.500000px;}
.ls17{letter-spacing:-1.440000px;}
.ls25{letter-spacing:-0.972000px;}
.ls1e{letter-spacing:-0.954000px;}
.ls15{letter-spacing:-0.720000px;}
.ls21{letter-spacing:-0.507000px;}
.ls1f{letter-spacing:-0.486600px;}
.ls24{letter-spacing:-0.466800px;}
.ls16{letter-spacing:-0.083400px;}
.ls20{letter-spacing:-0.020160px;}
.lsc{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.020160px;}
.ls1a{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.316800px;}
.ls11{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.423360px;}
.lsd{letter-spacing:0.466800px;}
.ls2b{letter-spacing:0.486600px;}
.ls2{letter-spacing:0.720000px;}
.ls23{letter-spacing:0.954000px;}
.ls7{letter-spacing:2.160000px;}
.ls10{letter-spacing:3.600000px;}
.ls8{letter-spacing:5.040000px;}
.ls1d{letter-spacing:6.480000px;}
.ls0{letter-spacing:7.920000px;}
.ls6{letter-spacing:9.360000px;}
.ls18{letter-spacing:10.800000px;}
.lse{letter-spacing:12.240000px;}
.ls2a{letter-spacing:15.120000px;}
.ls1c{letter-spacing:15.240000px;}
.ls1b{letter-spacing:16.560000px;}
.lsf{letter-spacing:19.440000px;}
.ls29{letter-spacing:20.880000px;}
.ls12{letter-spacing:34.920000px;}
.ls13{letter-spacing:35.280000px;}
.ls3{letter-spacing:35.400000px;}
.ls14{letter-spacing:35.460000px;}
.ls28{letter-spacing:39.720000px;}
.ls27{letter-spacing:46.800000px;}
.ls9{letter-spacing:54.000000px;}
.ls5{letter-spacing:121.680000px;}
.ls26{letter-spacing:140.412000px;}
.lsa{letter-spacing:154.800000px;}
.ls4{letter-spacing:731.220000px;}
.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;}
}
.wsa{word-spacing:-16.074000px;}
.wsc{word-spacing:-15.606600px;}
.ws4{word-spacing:-15.543360px;}
.ws0{word-spacing:-15.120000px;}
.ws7{word-spacing:-15.099840px;}
.wsb{word-spacing:-14.653200px;}
.ws6{word-spacing:-14.633400px;}
.ws8{word-spacing:-14.613000px;}
.ws5{word-spacing:-14.166000px;}
.ws1{word-spacing:-13.680000px;}
.wsd{word-spacing:-13.620000px;}
.ws9{word-spacing:-13.212000px;}
.ws2{word-spacing:-9.720000px;}
.ws3{word-spacing:0.000000px;}
._4{margin-left:-3.025440px;}
._0{margin-left:-1.440000px;}
._1{width:1.330560px;}
._5{width:2.952000px;}
._6{width:3.995520px;}
._a{width:5.440800px;}
._3{width:6.602880px;}
._2{width:8.141760px;}
._10{width:9.144480px;}
._11{width:10.261920px;}
._14{width:11.407680px;}
._d{width:12.974400px;}
._c{width:14.031360px;}
._1c{width:16.284960px;}
._e{width:17.395200px;}
._f{width:18.773280px;}
._1e{width:20.160000px;}
._29{width:21.217440px;}
._1f{width:22.476480px;}
._24{width:23.579520px;}
._1d{width:24.809760px;}
._1a{width:25.971840px;}
._19{width:27.000000px;}
._1b{width:28.183680px;}
._20{width:29.684160px;}
._21{width:30.926880px;}
._7{width:32.901120px;}
._8{width:34.596000px;}
._9{width:35.967360px;}
._15{width:36.977760px;}
._22{width:38.285280px;}
._23{width:39.767040px;}
._28{width:41.281440px;}
._16{width:42.554880px;}
._27{width:45.353760px;}
._26{width:47.584320px;}
._12{width:53.997120px;}
._13{width:55.306560px;}
._17{width:64.134720px;}
._18{width:65.270880px;}
._b{width:77.477760px;}
._25{width:188.805600px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc6{color:rgb(34,34,34);}
.fc5{color:rgb(32,33,36);}
.fc4{color:rgb(51,51,51);}
.fc1{color:rgb(27,27,27);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs4{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y53{bottom:3.600000px;}
.y51{bottom:12.240000px;}
.y68{bottom:20.520000px;}
.y8c{bottom:20.874000px;}
.y52{bottom:20.880000px;}
.y7a{bottom:20.910000px;}
.y89{bottom:20.925000px;}
.y72{bottom:21.240000px;}
.y2{bottom:24.480000px;}
.y74{bottom:38.160000px;}
.y71{bottom:38.520000px;}
.y1{bottom:65.520000px;}
.y8e{bottom:105.840000px;}
.y36{bottom:106.200000px;}
.y62{bottom:106.560000px;}
.ya1{bottom:113.436000px;}
.yb0{bottom:116.676000px;}
.y35{bottom:121.716000px;}
.y8d{bottom:122.796000px;}
.y61{bottom:123.876000px;}
.ya0{bottom:130.716000px;}
.yaf{bottom:132.156000px;}
.y8b{bottom:137.196000px;}
.y34{bottom:137.556000px;}
.y60{bottom:141.156000px;}
.y9f{bottom:147.996000px;}
.y5f{bottom:158.430000px;}
.y9e{bottom:165.270000px;}
.y33{bottom:172.110000px;}
.y8a{bottom:172.470000px;}
.y5e{bottom:175.710000px;}
.y9d{bottom:182.190000px;}
.y32{bottom:189.390000px;}
.y5d{bottom:192.990000px;}
.y9c{bottom:199.470000px;}
.y31{bottom:206.670000px;}
.y88{bottom:207.750000px;}
.y5c{bottom:210.270000px;}
.y9b{bottom:216.750000px;}
.y30{bottom:223.635000px;}
.y5b{bottom:227.235000px;}
.y9a{bottom:234.075000px;}
.y2f{bottom:240.915000px;}
.y5a{bottom:241.635000px;}
.y87{bottom:243.075000px;}
.y99{bottom:251.355000px;}
.y2e{bottom:258.195000px;}
.y59{bottom:259.635000px;}
.y86{bottom:261.075000px;}
.y98{bottom:268.635000px;}
.y2d{bottom:275.475000px;}
.y58{bottom:277.635000px;}
.y85{bottom:279.075000px;}
.y97{bottom:285.915000px;}
.y2c{bottom:292.755000px;}
.y57{bottom:295.635000px;}
.y96{bottom:303.195000px;}
.y2b{bottom:310.035000px;}
.y56{bottom:313.635000px;}
.y84{bottom:314.355000px;}
.y95{bottom:320.475000px;}
.y2a{bottom:326.985000px;}
.y55{bottom:331.665000px;}
.y83{bottom:332.385000px;}
.y94{bottom:337.785000px;}
.y29{bottom:344.625000px;}
.y93{bottom:355.065000px;}
.y28{bottom:361.905000px;}
.y54{bottom:366.945000px;}
.y82{bottom:371.265000px;}
.y92{bottom:371.985000px;}
.y27{bottom:379.185000px;}
.y50{bottom:384.945000px;}
.y81{bottom:388.545000px;}
.y91{bottom:389.265000px;}
.y26{bottom:396.465000px;}
.y80{bottom:405.825000px;}
.y90{bottom:406.545000px;}
.y25{bottom:413.385000px;}
.y7f{bottom:423.105000px;}
.y4f{bottom:423.825000px;}
.y24{bottom:430.710000px;}
.y7e{bottom:439.710000px;}
.y8f{bottom:441.150000px;}
.y23{bottom:447.990000px;}
.y7d{bottom:454.110000px;}
.y4e{bottom:458.430000px;}
.y22{bottom:465.270000px;}
.y7c{bottom:471.390000px;}
.y4d{bottom:475.710000px;}
.y21{bottom:482.550000px;}
.y7b{bottom:485.790000px;}
.y4c{bottom:492.990000px;}
.y20{bottom:499.830000px;}
.y4b{bottom:510.270000px;}
.y1f{bottom:517.110000px;}
.y79{bottom:521.070000px;}
.y4a{bottom:527.550000px;}
.y1e{bottom:534.420000px;}
.y49{bottom:544.860000px;}
.y1d{bottom:551.340000px;}
.y78{bottom:556.380000px;}
.y48{bottom:562.140000px;}
.y1c{bottom:568.620000px;}
.y47{bottom:579.060000px;}
.y1b{bottom:583.740000px;}
.y77{bottom:591.660000px;}
.y46{bottom:596.340000px;}
.y1a{bottom:599.940000px;}
.y76{bottom:609.660000px;}
.yae{bottom:613.260000px;}
.y45{bottom:613.620000px;}
.y19{bottom:617.220000px;}
.yad{bottom:630.540000px;}
.y44{bottom:630.900000px;}
.y18{bottom:634.500000px;}
.y75{bottom:644.970000px;}
.yac{bottom:645.690000px;}
.y43{bottom:648.210000px;}
.y17{bottom:651.450000px;}
.yab{bottom:662.970000px;}
.y42{bottom:665.490000px;}
.y70{bottom:679.890000px;}
.y41{bottom:682.770000px;}
.y16{bottom:686.010000px;}
.yaa{bottom:699.690000px;}
.y40{bottom:700.050000px;}
.y15{bottom:703.290000px;}
.ya9{bottom:716.970000px;}
.y3f{bottom:717.330000px;}
.y73{bottom:732.450000px;}
.ya8{bottom:734.250000px;}
.y3e{bottom:734.610000px;}
.y14{bottom:737.850000px;}
.y3d{bottom:751.935000px;}
.ya7{bottom:752.655000px;}
.y6f{bottom:754.095000px;}
.y13{bottom:755.175000px;}
.y3c{bottom:768.855000px;}
.y6e{bottom:771.375000px;}
.y12{bottom:772.455000px;}
.y3b{bottom:786.135000px;}
.y6d{bottom:787.935000px;}
.y11{bottom:789.735000px;}
.y6c{bottom:802.335000px;}
.y3a{bottom:803.415000px;}
.y10{bottom:807.015000px;}
.y6b{bottom:819.615000px;}
.y39{bottom:820.695000px;}
.yf{bottom:824.295000px;}
.y6a{bottom:836.535000px;}
.y38{bottom:837.975000px;}
.ye{bottom:841.215000px;}
.ya6{bottom:841.575000px;}
.y69{bottom:850.965000px;}
.y37{bottom:855.285000px;}
.ya5{bottom:858.885000px;}
.y67{bottom:865.365000px;}
.yd{bottom:872.565000px;}
.ya4{bottom:876.165000px;}
.yc{bottom:889.845000px;}
.ya3{bottom:893.085000px;}
.y66{bottom:900.285000px;}
.yb{bottom:907.125000px;}
.ya2{bottom:910.005000px;}
.y65{bottom:918.285000px;}
.ya{bottom:924.405000px;}
.y9{bottom:941.685000px;}
.y64{bottom:953.610000px;}
.y8{bottom:959.010000px;}
.y7{bottom:975.930000px;}
.y63{bottom:988.890000px;}
.y6{bottom:993.210000px;}
.y5{bottom:1010.490000px;}
.y4{bottom:1027.770000px;}
.y3{bottom:1045.050000px;}
.hb{height:17.280000px;}
.hc{height:17.316000px;}
.he{height:34.200000px;}
.h12{height:34.236000px;}
.ha{height:34.560000px;}
.hd{height:34.596000px;}
.hf{height:46.638281px;}
.h11{height:51.840000px;}
.h13{height:52.299844px;}
.h6{height:53.704687px;}
.h4{height:54.219375px;}
.h8{height:55.147500px;}
.h7{height:59.328281px;}
.h2{height:59.357813px;}
.h9{height:59.758594px;}
.h5{height:60.952500px;}
.h10{height:69.876000px;}
.h3{height:70.664062px;}
.h1{height:1105.500000px;}
.h0{height:1105.560000px;}
.w9{width:105.516000px;}
.wd{width:118.836000px;}
.wc{width:118.872000px;}
.wf{width:152.715000px;}
.w8{width:180.075000px;}
.w7{width:180.105000px;}
.w4{width:180.465000px;}
.w10{width:181.185000px;}
.w3{width:185.505000px;}
.w5{width:203.865000px;}
.w6{width:220.065000px;}
.we{width:225.105000px;}
.wb{width:238.425000px;}
.wa{width:238.470000px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x29{left:1.440000px;}
.x16{left:7.920000px;}
.x24{left:9.000000px;}
.x2d{left:17.640000px;}
.x2f{left:19.440000px;}
.x27{left:21.270000px;}
.xf{left:25.236000px;}
.x25{left:30.600000px;}
.x11{left:32.430000px;}
.x30{left:35.310000px;}
.x14{left:36.720000px;}
.x2c{left:37.830000px;}
.x2a{left:39.990000px;}
.x33{left:41.076000px;}
.x1d{left:48.600000px;}
.x3{left:51.155989px;}
.x17{left:56.190000px;}
.x1a{left:59.790000px;}
.x32{left:61.956000px;}
.x20{left:64.830000px;}
.x1b{left:66.635989px;}
.x18{left:67.710000px;}
.x21{left:68.790000px;}
.x12{left:70.950000px;}
.xd{left:76.715989px;}
.x19{left:79.590000px;}
.x22{left:81.395989px;}
.x15{left:82.830000px;}
.xe{left:87.516000px;}
.x2{left:93.635989px;}
.xc{left:119.231989px;}
.x26{left:157.755000px;}
.x9{left:188.024989px;}
.x1c{left:191.264989px;}
.x37{left:199.184989px;}
.x4{left:203.504989px;}
.x23{left:238.469989px;}
.x6{left:255.389989px;}
.x1e{left:272.310000px;}
.x10{left:273.750000px;}
.x2b{left:277.350000px;}
.x34{left:287.790000px;}
.x36{left:312.659989px;}
.x7{left:316.259989px;}
.x31{left:323.459989px;}
.x1{left:337.859989px;}
.x8{left:349.019989px;}
.xb{left:363.419989px;}
.xa{left:370.259989px;}
.x28{left:397.290000px;}
.x35{left:441.210000px;}
.x1f{left:453.135000px;}
.x13{left:454.935000px;}
.x2e{left:516.885000px;}
.x5{left:646.889989px;}
@media print{
.v2{vertical-align:-61.440000pt;}
.v1{vertical-align:-56.320000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.200000pt;}
.ls22{letter-spacing:-1.696000pt;}
.ls2c{letter-spacing:-1.333333pt;}
.ls17{letter-spacing:-1.280000pt;}
.ls25{letter-spacing:-0.864000pt;}
.ls1e{letter-spacing:-0.848000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls21{letter-spacing:-0.450667pt;}
.ls1f{letter-spacing:-0.432533pt;}
.ls24{letter-spacing:-0.414933pt;}
.ls16{letter-spacing:-0.074133pt;}
.ls20{letter-spacing:-0.017920pt;}
.lsc{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.017920pt;}
.ls1a{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.281600pt;}
.ls11{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.376320pt;}
.lsd{letter-spacing:0.414933pt;}
.ls2b{letter-spacing:0.432533pt;}
.ls2{letter-spacing:0.640000pt;}
.ls23{letter-spacing:0.848000pt;}
.ls7{letter-spacing:1.920000pt;}
.ls10{letter-spacing:3.200000pt;}
.ls8{letter-spacing:4.480000pt;}
.ls1d{letter-spacing:5.760000pt;}
.ls0{letter-spacing:7.040000pt;}
.ls6{letter-spacing:8.320000pt;}
.ls18{letter-spacing:9.600000pt;}
.lse{letter-spacing:10.880000pt;}
.ls2a{letter-spacing:13.440000pt;}
.ls1c{letter-spacing:13.546667pt;}
.ls1b{letter-spacing:14.720000pt;}
.lsf{letter-spacing:17.280000pt;}
.ls29{letter-spacing:18.560000pt;}
.ls12{letter-spacing:31.040000pt;}
.ls13{letter-spacing:31.360000pt;}
.ls3{letter-spacing:31.466667pt;}
.ls14{letter-spacing:31.520000pt;}
.ls28{letter-spacing:35.306667pt;}
.ls27{letter-spacing:41.600000pt;}
.ls9{letter-spacing:48.000000pt;}
.ls5{letter-spacing:108.160000pt;}
.ls26{letter-spacing:124.810667pt;}
.lsa{letter-spacing:137.600000pt;}
.ls4{letter-spacing:649.973333pt;}
.wsa{word-spacing:-14.288000pt;}
.wsc{word-spacing:-13.872533pt;}
.ws4{word-spacing:-13.816320pt;}
.ws0{word-spacing:-13.440000pt;}
.ws7{word-spacing:-13.422080pt;}
.wsb{word-spacing:-13.025067pt;}
.ws6{word-spacing:-13.007467pt;}
.ws8{word-spacing:-12.989333pt;}
.ws5{word-spacing:-12.592000pt;}
.ws1{word-spacing:-12.160000pt;}
.wsd{word-spacing:-12.106667pt;}
.ws9{word-spacing:-11.744000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws3{word-spacing:0.000000pt;}
._4{margin-left:-2.689280pt;}
._0{margin-left:-1.280000pt;}
._1{width:1.182720pt;}
._5{width:2.624000pt;}
._6{width:3.551573pt;}
._a{width:4.836267pt;}
._3{width:5.869227pt;}
._2{width:7.237120pt;}
._10{width:8.128427pt;}
._11{width:9.121707pt;}
._14{width:10.140160pt;}
._d{width:11.532800pt;}
._c{width:12.472320pt;}
._1c{width:14.475520pt;}
._e{width:15.462400pt;}
._f{width:16.687360pt;}
._1e{width:17.920000pt;}
._29{width:18.859947pt;}
._1f{width:19.979093pt;}
._24{width:20.959573pt;}
._1d{width:22.053120pt;}
._1a{width:23.086080pt;}
._19{width:24.000000pt;}
._1b{width:25.052160pt;}
._20{width:26.385920pt;}
._21{width:27.490560pt;}
._7{width:29.245440pt;}
._8{width:30.752000pt;}
._9{width:31.970987pt;}
._15{width:32.869120pt;}
._22{width:34.031360pt;}
._23{width:35.348480pt;}
._28{width:36.694613pt;}
._16{width:37.826560pt;}
._27{width:40.314453pt;}
._26{width:42.297173pt;}
._12{width:47.997440pt;}
._13{width:49.161387pt;}
._17{width:57.008640pt;}
._18{width:58.018560pt;}
._b{width:68.869120pt;}
._25{width:167.827200pt;}
.fs3{font-size:34.560000pt;}
.fs4{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:3.200000pt;}
.y51{bottom:10.880000pt;}
.y68{bottom:18.240000pt;}
.y8c{bottom:18.554667pt;}
.y52{bottom:18.560000pt;}
.y7a{bottom:18.586667pt;}
.y89{bottom:18.600000pt;}
.y72{bottom:18.880000pt;}
.y2{bottom:21.760000pt;}
.y74{bottom:33.920000pt;}
.y71{bottom:34.240000pt;}
.y1{bottom:58.240000pt;}
.y8e{bottom:94.080000pt;}
.y36{bottom:94.400000pt;}
.y62{bottom:94.720000pt;}
.ya1{bottom:100.832000pt;}
.yb0{bottom:103.712000pt;}
.y35{bottom:108.192000pt;}
.y8d{bottom:109.152000pt;}
.y61{bottom:110.112000pt;}
.ya0{bottom:116.192000pt;}
.yaf{bottom:117.472000pt;}
.y8b{bottom:121.952000pt;}
.y34{bottom:122.272000pt;}
.y60{bottom:125.472000pt;}
.y9f{bottom:131.552000pt;}
.y5f{bottom:140.826667pt;}
.y9e{bottom:146.906667pt;}
.y33{bottom:152.986667pt;}
.y8a{bottom:153.306667pt;}
.y5e{bottom:156.186667pt;}
.y9d{bottom:161.946667pt;}
.y32{bottom:168.346667pt;}
.y5d{bottom:171.546667pt;}
.y9c{bottom:177.306667pt;}
.y31{bottom:183.706667pt;}
.y88{bottom:184.666667pt;}
.y5c{bottom:186.906667pt;}
.y9b{bottom:192.666667pt;}
.y30{bottom:198.786667pt;}
.y5b{bottom:201.986667pt;}
.y9a{bottom:208.066667pt;}
.y2f{bottom:214.146667pt;}
.y5a{bottom:214.786667pt;}
.y87{bottom:216.066667pt;}
.y99{bottom:223.426667pt;}
.y2e{bottom:229.506667pt;}
.y59{bottom:230.786667pt;}
.y86{bottom:232.066667pt;}
.y98{bottom:238.786667pt;}
.y2d{bottom:244.866667pt;}
.y58{bottom:246.786667pt;}
.y85{bottom:248.066667pt;}
.y97{bottom:254.146667pt;}
.y2c{bottom:260.226667pt;}
.y57{bottom:262.786667pt;}
.y96{bottom:269.506667pt;}
.y2b{bottom:275.586667pt;}
.y56{bottom:278.786667pt;}
.y84{bottom:279.426667pt;}
.y95{bottom:284.866667pt;}
.y2a{bottom:290.653333pt;}
.y55{bottom:294.813333pt;}
.y83{bottom:295.453333pt;}
.y94{bottom:300.253333pt;}
.y29{bottom:306.333333pt;}
.y93{bottom:315.613333pt;}
.y28{bottom:321.693333pt;}
.y54{bottom:326.173333pt;}
.y82{bottom:330.013333pt;}
.y92{bottom:330.653333pt;}
.y27{bottom:337.053333pt;}
.y50{bottom:342.173333pt;}
.y81{bottom:345.373333pt;}
.y91{bottom:346.013333pt;}
.y26{bottom:352.413333pt;}
.y80{bottom:360.733333pt;}
.y90{bottom:361.373333pt;}
.y25{bottom:367.453333pt;}
.y7f{bottom:376.093333pt;}
.y4f{bottom:376.733333pt;}
.y24{bottom:382.853333pt;}
.y7e{bottom:390.853333pt;}
.y8f{bottom:392.133333pt;}
.y23{bottom:398.213333pt;}
.y7d{bottom:403.653333pt;}
.y4e{bottom:407.493333pt;}
.y22{bottom:413.573333pt;}
.y7c{bottom:419.013333pt;}
.y4d{bottom:422.853333pt;}
.y21{bottom:428.933333pt;}
.y7b{bottom:431.813333pt;}
.y4c{bottom:438.213333pt;}
.y20{bottom:444.293333pt;}
.y4b{bottom:453.573333pt;}
.y1f{bottom:459.653333pt;}
.y79{bottom:463.173333pt;}
.y4a{bottom:468.933333pt;}
.y1e{bottom:475.040000pt;}
.y49{bottom:484.320000pt;}
.y1d{bottom:490.080000pt;}
.y78{bottom:494.560000pt;}
.y48{bottom:499.680000pt;}
.y1c{bottom:505.440000pt;}
.y47{bottom:514.720000pt;}
.y1b{bottom:518.880000pt;}
.y77{bottom:525.920000pt;}
.y46{bottom:530.080000pt;}
.y1a{bottom:533.280000pt;}
.y76{bottom:541.920000pt;}
.yae{bottom:545.120000pt;}
.y45{bottom:545.440000pt;}
.y19{bottom:548.640000pt;}
.yad{bottom:560.480000pt;}
.y44{bottom:560.800000pt;}
.y18{bottom:564.000000pt;}
.y75{bottom:573.306667pt;}
.yac{bottom:573.946667pt;}
.y43{bottom:576.186667pt;}
.y17{bottom:579.066667pt;}
.yab{bottom:589.306667pt;}
.y42{bottom:591.546667pt;}
.y70{bottom:604.346667pt;}
.y41{bottom:606.906667pt;}
.y16{bottom:609.786667pt;}
.yaa{bottom:621.946667pt;}
.y40{bottom:622.266667pt;}
.y15{bottom:625.146667pt;}
.ya9{bottom:637.306667pt;}
.y3f{bottom:637.626667pt;}
.y73{bottom:651.066667pt;}
.ya8{bottom:652.666667pt;}
.y3e{bottom:652.986667pt;}
.y14{bottom:655.866667pt;}
.y3d{bottom:668.386667pt;}
.ya7{bottom:669.026667pt;}
.y6f{bottom:670.306667pt;}
.y13{bottom:671.266667pt;}
.y3c{bottom:683.426667pt;}
.y6e{bottom:685.666667pt;}
.y12{bottom:686.626667pt;}
.y3b{bottom:698.786667pt;}
.y6d{bottom:700.386667pt;}
.y11{bottom:701.986667pt;}
.y6c{bottom:713.186667pt;}
.y3a{bottom:714.146667pt;}
.y10{bottom:717.346667pt;}
.y6b{bottom:728.546667pt;}
.y39{bottom:729.506667pt;}
.yf{bottom:732.706667pt;}
.y6a{bottom:743.586667pt;}
.y38{bottom:744.866667pt;}
.ye{bottom:747.746667pt;}
.ya6{bottom:748.066667pt;}
.y69{bottom:756.413333pt;}
.y37{bottom:760.253333pt;}
.ya5{bottom:763.453333pt;}
.y67{bottom:769.213333pt;}
.yd{bottom:775.613333pt;}
.ya4{bottom:778.813333pt;}
.yc{bottom:790.973333pt;}
.ya3{bottom:793.853333pt;}
.y66{bottom:800.253333pt;}
.yb{bottom:806.333333pt;}
.ya2{bottom:808.893333pt;}
.y65{bottom:816.253333pt;}
.ya{bottom:821.693333pt;}
.y9{bottom:837.053333pt;}
.y64{bottom:847.653333pt;}
.y8{bottom:852.453333pt;}
.y7{bottom:867.493333pt;}
.y63{bottom:879.013333pt;}
.y6{bottom:882.853333pt;}
.y5{bottom:898.213333pt;}
.y4{bottom:913.573333pt;}
.y3{bottom:928.933333pt;}
.hb{height:15.360000pt;}
.hc{height:15.392000pt;}
.he{height:30.400000pt;}
.h12{height:30.432000pt;}
.ha{height:30.720000pt;}
.hd{height:30.752000pt;}
.hf{height:41.456250pt;}
.h11{height:46.080000pt;}
.h13{height:46.488750pt;}
.h6{height:47.737500pt;}
.h4{height:48.195000pt;}
.h8{height:49.020000pt;}
.h7{height:52.736250pt;}
.h2{height:52.762500pt;}
.h9{height:53.118750pt;}
.h5{height:54.180000pt;}
.h10{height:62.112000pt;}
.h3{height:62.812500pt;}
.h1{height:982.666667pt;}
.h0{height:982.720000pt;}
.w9{width:93.792000pt;}
.wd{width:105.632000pt;}
.wc{width:105.664000pt;}
.wf{width:135.746667pt;}
.w8{width:160.066667pt;}
.w7{width:160.093333pt;}
.w4{width:160.413333pt;}
.w10{width:161.053333pt;}
.w3{width:164.893333pt;}
.w5{width:181.213333pt;}
.w6{width:195.613333pt;}
.we{width:200.093333pt;}
.wb{width:211.933333pt;}
.wa{width:211.973333pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x29{left:1.280000pt;}
.x16{left:7.040000pt;}
.x24{left:8.000000pt;}
.x2d{left:15.680000pt;}
.x2f{left:17.280000pt;}
.x27{left:18.906667pt;}
.xf{left:22.432000pt;}
.x25{left:27.200000pt;}
.x11{left:28.826667pt;}
.x30{left:31.386667pt;}
.x14{left:32.640000pt;}
.x2c{left:33.626667pt;}
.x2a{left:35.546667pt;}
.x33{left:36.512000pt;}
.x1d{left:43.200000pt;}
.x3{left:45.471990pt;}
.x17{left:49.946667pt;}
.x1a{left:53.146667pt;}
.x32{left:55.072000pt;}
.x20{left:57.626667pt;}
.x1b{left:59.231990pt;}
.x18{left:60.186667pt;}
.x21{left:61.146667pt;}
.x12{left:63.066667pt;}
.xd{left:68.191990pt;}
.x19{left:70.746667pt;}
.x22{left:72.351990pt;}
.x15{left:73.626667pt;}
.xe{left:77.792000pt;}
.x2{left:83.231990pt;}
.xc{left:105.983990pt;}
.x26{left:140.226667pt;}
.x9{left:167.133324pt;}
.x1c{left:170.013324pt;}
.x37{left:177.053324pt;}
.x4{left:180.893324pt;}
.x23{left:211.973324pt;}
.x6{left:227.013324pt;}
.x1e{left:242.053333pt;}
.x10{left:243.333333pt;}
.x2b{left:246.533333pt;}
.x34{left:255.813333pt;}
.x36{left:277.919990pt;}
.x7{left:281.119990pt;}
.x31{left:287.519990pt;}
.x1{left:300.319990pt;}
.x8{left:310.239990pt;}
.xb{left:323.039990pt;}
.xa{left:329.119990pt;}
.x28{left:353.146667pt;}
.x35{left:392.186667pt;}
.x1f{left:402.786667pt;}
.x13{left:404.386667pt;}
.x2e{left:459.453333pt;}
.x5{left:575.013324pt;}
}




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