
    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_ae8572e37b2e7434de64acf1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.163086;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_81cfcc41eacbacf757b3884d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_fbc47cc6fb6a1a8a1a7de87a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.117188;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_acb718574bc6de3249960e0a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_9ed65c52940f65cdd4e0a6e2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.117188;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_91201d3616cbbc9ad55574af.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_27fb3c20856f0669d0fa40a0.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_00f4dc732f20ea92b59c5eff.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.lsa{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.018720px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.702000px;}
.lse{letter-spacing:0.720000px;}
.lsc{letter-spacing:3.744000px;}
.ls0{letter-spacing:8.640000px;}
.ls1{letter-spacing:9.360000px;}
.ls8{letter-spacing:28.080000px;}
.ls9{letter-spacing:44.784000px;}
.ls2{letter-spacing:46.080000px;}
.ls3{letter-spacing:46.800000px;}
.ls7{letter-spacing:85.277280px;}
.lsb{letter-spacing:201.029760px;}
.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;}
}
.ws4{word-spacing:-72.000000px;}
.ws1{word-spacing:-24.642000px;}
.ws0{word-spacing:-23.940000px;}
.ws2{word-spacing:-23.921280px;}
.ws6{word-spacing:-21.060000px;}
.ws7{word-spacing:-18.720000px;}
.ws3{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.712000px;}
.ws5{word-spacing:0.000000px;}
._18{margin-left:-200.753760px;}
._13{margin-left:-5.112000px;}
._3{margin-left:-3.552000px;}
._a{margin-left:-2.546880px;}
._0{margin-left:-1.457280px;}
._1{width:1.537680px;}
._7{width:3.214320px;}
._4{width:4.392000px;}
._5{width:5.616000px;}
._b{width:7.128000px;}
._e{width:8.568000px;}
._10{width:9.720000px;}
._12{width:11.280000px;}
._c{width:12.384000px;}
._11{width:14.158320px;}
._2{width:15.408000px;}
._6{width:16.968000px;}
._32{width:19.152000px;}
._14{width:20.655600px;}
._15{width:22.031520px;}
._16{width:23.236320px;}
._f{width:24.264000px;}
._8{width:26.040000px;}
._9{width:27.072000px;}
._d{width:28.080000px;}
._17{width:31.536000px;}
._2c{width:34.143600px;}
._26{width:36.792000px;}
._25{width:37.932000px;}
._2b{width:42.891600px;}
._2d{width:48.168000px;}
._27{width:51.768000px;}
._20{width:70.848000px;}
._21{width:72.000000px;}
._2f{width:84.600000px;}
._30{width:85.824000px;}
._1b{width:136.800000px;}
._31{width:163.872000px;}
._1c{width:189.660000px;}
._1a{width:202.770000px;}
._29{width:257.040000px;}
._2a{width:258.336000px;}
._2e{width:281.952000px;}
._24{width:294.408000px;}
._22{width:352.584000px;}
._28{width:552.456000px;}
._19{width:776.010000px;}
._23{width:964.872000px;}
._1e{width:1063.751520px;}
._1d{width:1067.916000px;}
._1f{width:1378.380000px;}
.fc2{color:rgb(152,0,0);}
.fc1{color:rgb(0,0,10);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:4.319850px;}
.y5{bottom:24.480000px;}
.y36{bottom:29.880000px;}
.y4{bottom:43.740000px;}
.y35{bottom:50.040000px;}
.y3{bottom:62.820000px;}
.y34{bottom:69.300000px;}
.y2{bottom:81.756000px;}
.y33{bottom:88.416000px;}
.y32{bottom:107.316000px;}
.y57{bottom:140.976000px;}
.y80{bottom:141.156000px;}
.y8e{bottom:142.956000px;}
.y77{bottom:146.196000px;}
.ya1{bottom:153.930000px;}
.yaa{bottom:166.890000px;}
.y8d{bottom:168.870000px;}
.y56{bottom:172.110000px;}
.y76{bottom:177.330000px;}
.ya0{bottom:180.930000px;}
.ya9{bottom:187.590000px;}
.y8c{bottom:194.610000px;}
.y55{bottom:203.070000px;}
.y7f{bottom:203.250000px;}
.y75{bottom:208.290000px;}
.y8b{bottom:220.530000px;}
.ya8{bottom:228.990000px;}
.y31{bottom:232.590000px;}
.y54{bottom:234.210000px;}
.y74{bottom:239.430000px;}
.y8a{bottom:244.830000px;}
.ya7{bottom:249.690000px;}
.y30{bottom:253.290000px;}
.y53{bottom:265.170000px;}
.y73{bottom:270.390000px;}
.y2f{bottom:273.990000px;}
.ya6{bottom:291.090000px;}
.y2e{bottom:294.690000px;}
.y52{bottom:296.310000px;}
.y79{bottom:298.470000px;}
.y72{bottom:301.350000px;}
.ya5{bottom:311.790000px;}
.y2d{bottom:315.390000px;}
.y51{bottom:327.270000px;}
.y71{bottom:332.490000px;}
.y2c{bottom:336.090000px;}
.ya4{bottom:353.235000px;}
.y2b{bottom:356.835000px;}
.y50{bottom:358.455000px;}
.y70{bottom:363.495000px;}
.yc3{bottom:373.935000px;}
.y2a{bottom:377.535000px;}
.ya3{bottom:386.535000px;}
.y4f{bottom:389.415000px;}
.y6f{bottom:394.635000px;}
.y29{bottom:398.235000px;}
.yc2{bottom:415.335000px;}
.y28{bottom:418.935000px;}
.y4e{bottom:420.555000px;}
.y6e{bottom:425.595000px;}
.y9f{bottom:430.815000px;}
.yc1{bottom:436.035000px;}
.y27{bottom:439.635000px;}
.y4d{bottom:451.515000px;}
.y78{bottom:453.855000px;}
.y6d{bottom:456.735000px;}
.y26{bottom:460.335000px;}
.y9e{bottom:461.955000px;}
.yc0{bottom:477.435000px;}
.y25{bottom:481.035000px;}
.y4c{bottom:482.655000px;}
.y6c{bottom:487.695000px;}
.y9d{bottom:492.915000px;}
.ybf{bottom:498.135000px;}
.y24{bottom:501.735000px;}
.y89{bottom:512.715000px;}
.y4b{bottom:513.615000px;}
.y6b{bottom:518.835000px;}
.y23{bottom:522.435000px;}
.y9c{bottom:524.055000px;}
.ybe{bottom:539.535000px;}
.y22{bottom:543.135000px;}
.y88{bottom:543.855000px;}
.y4a{bottom:544.755000px;}
.y7e{bottom:544.935000px;}
.y6a{bottom:549.795000px;}
.y9b{bottom:555.015000px;}
.ybd{bottom:560.235000px;}
.y21{bottom:563.835000px;}
.y7d{bottom:570.675000px;}
.y87{bottom:574.815000px;}
.y49{bottom:575.715000px;}
.y69{bottom:580.935000px;}
.y20{bottom:584.535000px;}
.y9a{bottom:585.975000px;}
.ybc{bottom:601.635000px;}
.y1f{bottom:605.265000px;}
.y86{bottom:605.985000px;}
.y48{bottom:606.885000px;}
.y68{bottom:611.925000px;}
.y99{bottom:617.145000px;}
.ybb{bottom:622.365000px;}
.y1e{bottom:625.965000px;}
.y85{bottom:636.945000px;}
.y47{bottom:637.845000px;}
.y67{bottom:643.065000px;}
.y1d{bottom:646.665000px;}
.y98{bottom:648.105000px;}
.yba{bottom:663.765000px;}
.y1c{bottom:667.365000px;}
.y84{bottom:668.085000px;}
.y46{bottom:668.985000px;}
.y66{bottom:674.025000px;}
.y97{bottom:679.245000px;}
.yb9{bottom:684.465000px;}
.y1b{bottom:688.065000px;}
.y83{bottom:699.045000px;}
.y45{bottom:699.945000px;}
.y65{bottom:705.165000px;}
.y1a{bottom:708.765000px;}
.y96{bottom:710.205000px;}
.yb8{bottom:725.865000px;}
.y82{bottom:726.765000px;}
.y19{bottom:729.465000px;}
.y44{bottom:731.085000px;}
.y64{bottom:736.125000px;}
.y95{bottom:741.345000px;}
.y81{bottom:745.845000px;}
.yb7{bottom:746.565000px;}
.y18{bottom:750.165000px;}
.y43{bottom:762.045000px;}
.y94{bottom:766.545000px;}
.y63{bottom:767.265000px;}
.y17{bottom:770.865000px;}
.yb6{bottom:787.965000px;}
.y16{bottom:791.565000px;}
.y42{bottom:793.005000px;}
.y62{bottom:798.225000px;}
.yb5{bottom:808.665000px;}
.y15{bottom:812.265000px;}
.y41{bottom:824.145000px;}
.y61{bottom:829.365000px;}
.y14{bottom:832.965000px;}
.yb4{bottom:850.065000px;}
.y40{bottom:855.105000px;}
.y13{bottom:855.285000px;}
.y60{bottom:860.325000px;}
.yb3{bottom:870.810000px;}
.y12{bottom:877.650000px;}
.y3f{bottom:886.290000px;}
.y5f{bottom:891.510000px;}
.y11{bottom:898.350000px;}
.yb2{bottom:912.210000px;}
.y3e{bottom:917.250000px;}
.y10{bottom:919.050000px;}
.y5e{bottom:922.470000px;}
.yb1{bottom:932.910000px;}
.yf{bottom:939.750000px;}
.y3d{bottom:948.390000px;}
.ya2{bottom:950.730000px;}
.y5d{bottom:953.610000px;}
.ye{bottom:960.450000px;}
.yb0{bottom:974.310000px;}
.y3c{bottom:979.350000px;}
.yd{bottom:981.150000px;}
.y5c{bottom:984.570000px;}
.yaf{bottom:995.010000px;}
.yc{bottom:1003.110000px;}
.y3b{bottom:1010.490000px;}
.y5b{bottom:1015.710000px;}
.yb{bottom:1030.830000px;}
.y93{bottom:1031.190000px;}
.yae{bottom:1036.410000px;}
.y3a{bottom:1041.450000px;}
.y5a{bottom:1046.670000px;}
.yad{bottom:1057.110000px;}
.ya{bottom:1058.370000px;}
.y92{bottom:1062.150000px;}
.y39{bottom:1072.590000px;}
.y59{bottom:1077.810000px;}
.y7c{bottom:1079.610000px;}
.y9{bottom:1085.910000px;}
.y91{bottom:1090.770000px;}
.yac{bottom:1098.510000px;}
.y38{bottom:1103.550000px;}
.y58{bottom:1108.770000px;}
.y7b{bottom:1109.670000px;}
.y8{bottom:1113.630000px;}
.y90{bottom:1116.690000px;}
.yab{bottom:1119.210000px;}
.y37{bottom:1137.030000px;}
.y7{bottom:1139.940000px;}
.y7a{bottom:1141.020000px;}
.y8f{bottom:1142.640000px;}
.y1{bottom:1194.120000px;}
.ha{height:39.960000px;}
.hb{height:53.865703px;}
.h3{height:59.383125px;}
.h9{height:63.949219px;}
.h7{height:64.546875px;}
.h4{height:64.898438px;}
.h2{height:65.884219px;}
.h8{height:74.820586px;}
.h5{height:85.052461px;}
.h6{height:85.847344px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:122.435987px;}
.x1{left:127.655987px;}
.x12{left:145.655987px;}
.xa{left:154.649987px;}
.x3{left:162.389987px;}
.x9{left:170.129987px;}
.xb{left:181.649987px;}
.x11{left:193.709987px;}
.x15{left:214.049987px;}
.x6{left:219.989987px;}
.xc{left:252.569987px;}
.x5{left:261.929987px;}
.xe{left:293.834987px;}
.x7{left:334.694987px;}
.x14{left:364.034987px;}
.xf{left:370.694987px;}
.x10{left:374.834987px;}
.x4{left:401.114987px;}
.x13{left:446.474987px;}
.x16{left:600.764987px;}
.xd{left:726.449987px;}
.x2{left:765.509987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.016640pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.624000pt;}
.lse{letter-spacing:0.640000pt;}
.lsc{letter-spacing:3.328000pt;}
.ls0{letter-spacing:7.680000pt;}
.ls1{letter-spacing:8.320000pt;}
.ls8{letter-spacing:24.960000pt;}
.ls9{letter-spacing:39.808000pt;}
.ls2{letter-spacing:40.960000pt;}
.ls3{letter-spacing:41.600000pt;}
.ls7{letter-spacing:75.802027pt;}
.lsb{letter-spacing:178.693120pt;}
.ws4{word-spacing:-64.000000pt;}
.ws1{word-spacing:-21.904000pt;}
.ws0{word-spacing:-21.280000pt;}
.ws2{word-spacing:-21.263360pt;}
.ws6{word-spacing:-18.720000pt;}
.ws7{word-spacing:-16.640000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws5{word-spacing:0.000000pt;}
._18{margin-left:-178.447787pt;}
._13{margin-left:-4.544000pt;}
._3{margin-left:-3.157333pt;}
._a{margin-left:-2.263893pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.366827pt;}
._7{width:2.857173pt;}
._4{width:3.904000pt;}
._5{width:4.992000pt;}
._b{width:6.336000pt;}
._e{width:7.616000pt;}
._10{width:8.640000pt;}
._12{width:10.026667pt;}
._c{width:11.008000pt;}
._11{width:12.585173pt;}
._2{width:13.696000pt;}
._6{width:15.082667pt;}
._32{width:17.024000pt;}
._14{width:18.360533pt;}
._15{width:19.583573pt;}
._16{width:20.654507pt;}
._f{width:21.568000pt;}
._8{width:23.146667pt;}
._9{width:24.064000pt;}
._d{width:24.960000pt;}
._17{width:28.032000pt;}
._2c{width:30.349867pt;}
._26{width:32.704000pt;}
._25{width:33.717333pt;}
._2b{width:38.125867pt;}
._2d{width:42.816000pt;}
._27{width:46.016000pt;}
._20{width:62.976000pt;}
._21{width:64.000000pt;}
._2f{width:75.200000pt;}
._30{width:76.288000pt;}
._1b{width:121.600000pt;}
._31{width:145.664000pt;}
._1c{width:168.586667pt;}
._1a{width:180.240000pt;}
._29{width:228.480000pt;}
._2a{width:229.632000pt;}
._2e{width:250.624000pt;}
._24{width:261.696000pt;}
._22{width:313.408000pt;}
._28{width:491.072000pt;}
._19{width:689.786667pt;}
._23{width:857.664000pt;}
._1e{width:945.556907pt;}
._1d{width:949.258667pt;}
._1f{width:1225.226667pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.839867pt;}
.y5{bottom:21.760000pt;}
.y36{bottom:26.560000pt;}
.y4{bottom:38.880000pt;}
.y35{bottom:44.480000pt;}
.y3{bottom:55.840000pt;}
.y34{bottom:61.600000pt;}
.y2{bottom:72.672000pt;}
.y33{bottom:78.592000pt;}
.y32{bottom:95.392000pt;}
.y57{bottom:125.312000pt;}
.y80{bottom:125.472000pt;}
.y8e{bottom:127.072000pt;}
.y77{bottom:129.952000pt;}
.ya1{bottom:136.826667pt;}
.yaa{bottom:148.346667pt;}
.y8d{bottom:150.106667pt;}
.y56{bottom:152.986667pt;}
.y76{bottom:157.626667pt;}
.ya0{bottom:160.826667pt;}
.ya9{bottom:166.746667pt;}
.y8c{bottom:172.986667pt;}
.y55{bottom:180.506667pt;}
.y7f{bottom:180.666667pt;}
.y75{bottom:185.146667pt;}
.y8b{bottom:196.026667pt;}
.ya8{bottom:203.546667pt;}
.y31{bottom:206.746667pt;}
.y54{bottom:208.186667pt;}
.y74{bottom:212.826667pt;}
.y8a{bottom:217.626667pt;}
.ya7{bottom:221.946667pt;}
.y30{bottom:225.146667pt;}
.y53{bottom:235.706667pt;}
.y73{bottom:240.346667pt;}
.y2f{bottom:243.546667pt;}
.ya6{bottom:258.746667pt;}
.y2e{bottom:261.946667pt;}
.y52{bottom:263.386667pt;}
.y79{bottom:265.306667pt;}
.y72{bottom:267.866667pt;}
.ya5{bottom:277.146667pt;}
.y2d{bottom:280.346667pt;}
.y51{bottom:290.906667pt;}
.y71{bottom:295.546667pt;}
.y2c{bottom:298.746667pt;}
.ya4{bottom:313.986667pt;}
.y2b{bottom:317.186667pt;}
.y50{bottom:318.626667pt;}
.y70{bottom:323.106667pt;}
.yc3{bottom:332.386667pt;}
.y2a{bottom:335.586667pt;}
.ya3{bottom:343.586667pt;}
.y4f{bottom:346.146667pt;}
.y6f{bottom:350.786667pt;}
.y29{bottom:353.986667pt;}
.yc2{bottom:369.186667pt;}
.y28{bottom:372.386667pt;}
.y4e{bottom:373.826667pt;}
.y6e{bottom:378.306667pt;}
.y9f{bottom:382.946667pt;}
.yc1{bottom:387.586667pt;}
.y27{bottom:390.786667pt;}
.y4d{bottom:401.346667pt;}
.y78{bottom:403.426667pt;}
.y6d{bottom:405.986667pt;}
.y26{bottom:409.186667pt;}
.y9e{bottom:410.626667pt;}
.yc0{bottom:424.386667pt;}
.y25{bottom:427.586667pt;}
.y4c{bottom:429.026667pt;}
.y6c{bottom:433.506667pt;}
.y9d{bottom:438.146667pt;}
.ybf{bottom:442.786667pt;}
.y24{bottom:445.986667pt;}
.y89{bottom:455.746667pt;}
.y4b{bottom:456.546667pt;}
.y6b{bottom:461.186667pt;}
.y23{bottom:464.386667pt;}
.y9c{bottom:465.826667pt;}
.ybe{bottom:479.586667pt;}
.y22{bottom:482.786667pt;}
.y88{bottom:483.426667pt;}
.y4a{bottom:484.226667pt;}
.y7e{bottom:484.386667pt;}
.y6a{bottom:488.706667pt;}
.y9b{bottom:493.346667pt;}
.ybd{bottom:497.986667pt;}
.y21{bottom:501.186667pt;}
.y7d{bottom:507.266667pt;}
.y87{bottom:510.946667pt;}
.y49{bottom:511.746667pt;}
.y69{bottom:516.386667pt;}
.y20{bottom:519.586667pt;}
.y9a{bottom:520.866667pt;}
.ybc{bottom:534.786667pt;}
.y1f{bottom:538.013333pt;}
.y86{bottom:538.653333pt;}
.y48{bottom:539.453333pt;}
.y68{bottom:543.933333pt;}
.y99{bottom:548.573333pt;}
.ybb{bottom:553.213333pt;}
.y1e{bottom:556.413333pt;}
.y85{bottom:566.173333pt;}
.y47{bottom:566.973333pt;}
.y67{bottom:571.613333pt;}
.y1d{bottom:574.813333pt;}
.y98{bottom:576.093333pt;}
.yba{bottom:590.013333pt;}
.y1c{bottom:593.213333pt;}
.y84{bottom:593.853333pt;}
.y46{bottom:594.653333pt;}
.y66{bottom:599.133333pt;}
.y97{bottom:603.773333pt;}
.yb9{bottom:608.413333pt;}
.y1b{bottom:611.613333pt;}
.y83{bottom:621.373333pt;}
.y45{bottom:622.173333pt;}
.y65{bottom:626.813333pt;}
.y1a{bottom:630.013333pt;}
.y96{bottom:631.293333pt;}
.yb8{bottom:645.213333pt;}
.y82{bottom:646.013333pt;}
.y19{bottom:648.413333pt;}
.y44{bottom:649.853333pt;}
.y64{bottom:654.333333pt;}
.y95{bottom:658.973333pt;}
.y81{bottom:662.973333pt;}
.yb7{bottom:663.613333pt;}
.y18{bottom:666.813333pt;}
.y43{bottom:677.373333pt;}
.y94{bottom:681.373333pt;}
.y63{bottom:682.013333pt;}
.y17{bottom:685.213333pt;}
.yb6{bottom:700.413333pt;}
.y16{bottom:703.613333pt;}
.y42{bottom:704.893333pt;}
.y62{bottom:709.533333pt;}
.yb5{bottom:718.813333pt;}
.y15{bottom:722.013333pt;}
.y41{bottom:732.573333pt;}
.y61{bottom:737.213333pt;}
.y14{bottom:740.413333pt;}
.yb4{bottom:755.613333pt;}
.y40{bottom:760.093333pt;}
.y13{bottom:760.253333pt;}
.y60{bottom:764.733333pt;}
.yb3{bottom:774.053333pt;}
.y12{bottom:780.133333pt;}
.y3f{bottom:787.813333pt;}
.y5f{bottom:792.453333pt;}
.y11{bottom:798.533333pt;}
.yb2{bottom:810.853333pt;}
.y3e{bottom:815.333333pt;}
.y10{bottom:816.933333pt;}
.y5e{bottom:819.973333pt;}
.yb1{bottom:829.253333pt;}
.yf{bottom:835.333333pt;}
.y3d{bottom:843.013333pt;}
.ya2{bottom:845.093333pt;}
.y5d{bottom:847.653333pt;}
.ye{bottom:853.733333pt;}
.yb0{bottom:866.053333pt;}
.y3c{bottom:870.533333pt;}
.yd{bottom:872.133333pt;}
.y5c{bottom:875.173333pt;}
.yaf{bottom:884.453333pt;}
.yc{bottom:891.653333pt;}
.y3b{bottom:898.213333pt;}
.y5b{bottom:902.853333pt;}
.yb{bottom:916.293333pt;}
.y93{bottom:916.613333pt;}
.yae{bottom:921.253333pt;}
.y3a{bottom:925.733333pt;}
.y5a{bottom:930.373333pt;}
.yad{bottom:939.653333pt;}
.ya{bottom:940.773333pt;}
.y92{bottom:944.133333pt;}
.y39{bottom:953.413333pt;}
.y59{bottom:958.053333pt;}
.y7c{bottom:959.653333pt;}
.y9{bottom:965.253333pt;}
.y91{bottom:969.573333pt;}
.yac{bottom:976.453333pt;}
.y38{bottom:980.933333pt;}
.y58{bottom:985.573333pt;}
.y7b{bottom:986.373333pt;}
.y8{bottom:989.893333pt;}
.y90{bottom:992.613333pt;}
.yab{bottom:994.853333pt;}
.y37{bottom:1010.693333pt;}
.y7{bottom:1013.280000pt;}
.y7a{bottom:1014.240000pt;}
.y8f{bottom:1015.680000pt;}
.y1{bottom:1061.440000pt;}
.ha{height:35.520000pt;}
.hb{height:47.880625pt;}
.h3{height:52.785000pt;}
.h9{height:56.843750pt;}
.h7{height:57.375000pt;}
.h4{height:57.687500pt;}
.h2{height:58.563750pt;}
.h8{height:66.507188pt;}
.h5{height:75.602187pt;}
.h6{height:76.308750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:108.831988pt;}
.x1{left:113.471988pt;}
.x12{left:129.471988pt;}
.xa{left:137.466655pt;}
.x3{left:144.346655pt;}
.x9{left:151.226655pt;}
.xb{left:161.466655pt;}
.x11{left:172.186655pt;}
.x15{left:190.266655pt;}
.x6{left:195.546655pt;}
.xc{left:224.506655pt;}
.x5{left:232.826655pt;}
.xe{left:261.186655pt;}
.x7{left:297.506655pt;}
.x14{left:323.586655pt;}
.xf{left:329.506655pt;}
.x10{left:333.186655pt;}
.x4{left:356.546655pt;}
.x13{left:396.866655pt;}
.x16{left:534.013322pt;}
.xd{left:645.733322pt;}
.x2{left:680.453322pt;}
}




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