
    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_b806941a72f7142da709123a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8c8e4bf3be55b1ac5ed22aba.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b99657822043684fc7a7008d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_71a73c7f83ad59d9cbbb58ec.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_96060b7f14f479856539f336.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_834b8d9b1a4959277331a239.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.916992;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_2d70184c44fa6d512841398f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_b67a13217cf776c81e0500b2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978027;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_81599651745e7593f63c1fc7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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;}
.ls1a{letter-spacing:-0.576000px;}
.lsb{letter-spacing:-0.504000px;}
.lsd{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.144000px;}
.ls5{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.108000px;}
.ls1b{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.720000px;}
.ls3{letter-spacing:1.008000px;}
.ls8{letter-spacing:1.440000px;}
.ls10{letter-spacing:2.160000px;}
.lse{letter-spacing:2.880000px;}
.ls11{letter-spacing:3.600000px;}
.ls17{letter-spacing:5.040000px;}
.ls4{letter-spacing:7.200000px;}
.ls2{letter-spacing:10.080000px;}
.ls13{letter-spacing:13.680000px;}
.ls7{letter-spacing:15.840000px;}
.lsa{letter-spacing:23.040000px;}
.ls18{letter-spacing:24.480000px;}
.ls14{letter-spacing:27.360000px;}
.ls16{letter-spacing:28.200000px;}
.ls19{letter-spacing:33.984000px;}
.ls0{letter-spacing:34.560000px;}
.ls9{letter-spacing:47.520000px;}
.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:-72.000000px;}
.ws8{word-spacing:-18.360000px;}
.ws2{word-spacing:-18.288000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.712000px;}
.ws5{word-spacing:-17.496000px;}
.ws9{word-spacing:-17.424000px;}
.ws0{word-spacing:-16.560000px;}
.ws4{word-spacing:0.000000px;}
._d{margin-left:-2.376000px;}
._1{margin-left:-1.080000px;}
._0{width:1.224000px;}
._17{width:2.712000px;}
._11{width:3.816000px;}
._5{width:5.076000px;}
._4{width:6.552000px;}
._e{width:7.776000px;}
._14{width:9.144000px;}
._3{width:10.224000px;}
._27{width:11.304000px;}
._26{width:12.312000px;}
._a{width:14.184000px;}
._b{width:15.252000px;}
._15{width:16.752000px;}
._9{width:19.008000px;}
._1d{width:20.016000px;}
._c{width:21.528000px;}
._6{width:22.824000px;}
._25{width:23.904000px;}
._21{width:24.984000px;}
._1c{width:26.928000px;}
._31{width:28.296000px;}
._1f{width:29.304000px;}
._20{width:30.816000px;}
._7{width:31.824000px;}
._8{width:33.228000px;}
._2{width:34.272000px;}
._24{width:35.568000px;}
._19{width:36.576000px;}
._18{width:37.656000px;}
._1e{width:38.808000px;}
._23{width:40.032000px;}
._1b{width:41.472000px;}
._1a{width:42.912000px;}
._28{width:44.544000px;}
._22{width:46.656000px;}
._10{width:48.096000px;}
._32{width:49.320000px;}
._f{width:50.472000px;}
._29{width:51.552000px;}
._2b{width:52.632000px;}
._2e{width:53.784000px;}
._34{width:56.376000px;}
._35{width:57.672000px;}
._33{width:59.040000px;}
._2c{width:60.120000px;}
._2d{width:61.200000px;}
._30{width:64.524000px;}
._2f{width:65.664000px;}
._16{width:71.208000px;}
._2a{width:72.576000px;}
._13{width:82.836000px;}
._12{width:84.024000px;}
._36{width:85.104000px;}
._38{width:189.864000px;}
._39{width:191.448000px;}
._37{width:202.824000px;}
.fc5{color:rgb(5,99,193);}
.fc4{color:transparent;}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.620000px;}
.y70{bottom:7.020000px;}
.y74{bottom:7.560000px;}
.y76{bottom:12.240000px;}
.y6e{bottom:18.900000px;}
.y72{bottom:19.440000px;}
.y6b{bottom:30.780000px;}
.y73{bottom:31.320000px;}
.y6d{bottom:42.840000px;}
.y6a{bottom:54.720000px;}
.y5{bottom:57.636000px;}
.y6c{bottom:66.600000px;}
.y1{bottom:68.976000px;}
.y4{bottom:77.796000px;}
.y6f{bottom:78.480000px;}
.y32{bottom:107.676000px;}
.y68{bottom:113.976000px;}
.y7f{bottom:114.156000px;}
.y7c{bottom:125.136000px;}
.y31{bottom:131.616000px;}
.y67{bottom:137.736000px;}
.y7e{bottom:138.096000px;}
.y7b{bottom:148.896000px;}
.y9d{bottom:152.670000px;}
.y30{bottom:155.370000px;}
.y7d{bottom:157.710000px;}
.y66{bottom:161.490000px;}
.y7a{bottom:172.650000px;}
.y9c{bottom:176.610000px;}
.y5c{bottom:179.130000px;}
.y2f{bottom:179.490000px;}
.y65{bottom:185.430000px;}
.y79{bottom:196.590000px;}
.y9b{bottom:200.370000px;}
.y5b{bottom:202.890000px;}
.y2e{bottom:204.510000px;}
.y64{bottom:209.190000px;}
.y78{bottom:220.350000px;}
.y9a{bottom:224.130000px;}
.y5a{bottom:226.830000px;}
.y2d{bottom:228.630000px;}
.y63{bottom:232.950000px;}
.y77{bottom:244.110000px;}
.y82{bottom:244.830000px;}
.y99{bottom:247.890000px;}
.y59{bottom:250.590000px;}
.y2c{bottom:254.010000px;}
.y62{bottom:256.710000px;}
.y75{bottom:261.210000px;}
.y81{bottom:264.270000px;}
.y98{bottom:271.650000px;}
.y58{bottom:274.350000px;}
.y2b{bottom:279.390000px;}
.y61{bottom:280.650000px;}
.y71{bottom:295.455000px;}
.y97{bottom:295.635000px;}
.y57{bottom:298.155000px;}
.y2a{bottom:304.455000px;}
.y96{bottom:319.395000px;}
.y56{bottom:322.095000px;}
.y29{bottom:328.215000px;}
.y95{bottom:342.795000px;}
.y69{bottom:343.875000px;}
.y55{bottom:345.855000px;}
.y28{bottom:351.975000px;}
.y94{bottom:366.555000px;}
.y54{bottom:369.615000px;}
.y27{bottom:375.915000px;}
.y93{bottom:390.855000px;}
.y53{bottom:393.375000px;}
.y26{bottom:399.675000px;}
.y92{bottom:414.615000px;}
.y52{bottom:417.315000px;}
.y25{bottom:423.435000px;}
.y91{bottom:438.375000px;}
.y51{bottom:441.075000px;}
.y24{bottom:447.195000px;}
.y90{bottom:462.135000px;}
.y50{bottom:464.835000px;}
.y23{bottom:471.135000px;}
.y8f{bottom:486.075000px;}
.y4f{bottom:488.595000px;}
.y22{bottom:494.895000px;}
.y8e{bottom:509.835000px;}
.y4e{bottom:512.355000px;}
.y21{bottom:518.655000px;}
.y8d{bottom:533.595000px;}
.y4d{bottom:536.295000px;}
.y20{bottom:542.415000px;}
.y8c{bottom:557.355000px;}
.y4c{bottom:560.055000px;}
.y1f{bottom:566.385000px;}
.y8b{bottom:581.325000px;}
.y4b{bottom:583.845000px;}
.y1e{bottom:590.145000px;}
.y8a{bottom:605.085000px;}
.y4a{bottom:607.605000px;}
.y1d{bottom:613.905000px;}
.y89{bottom:628.845000px;}
.y49{bottom:631.545000px;}
.y1c{bottom:637.665000px;}
.y88{bottom:652.605000px;}
.y48{bottom:655.305000px;}
.y1b{bottom:661.425000px;}
.y87{bottom:676.545000px;}
.y47{bottom:679.065000px;}
.y1a{bottom:685.365000px;}
.y86{bottom:700.305000px;}
.y46{bottom:702.825000px;}
.y19{bottom:709.125000px;}
.y85{bottom:724.065000px;}
.y45{bottom:726.765000px;}
.y18{bottom:732.885000px;}
.y84{bottom:747.825000px;}
.y44{bottom:750.525000px;}
.y17{bottom:756.645000px;}
.y83{bottom:767.445000px;}
.y80{bottom:771.945000px;}
.y43{bottom:774.285000px;}
.y16{bottom:780.585000px;}
.y42{bottom:798.045000px;}
.y15{bottom:804.345000px;}
.y9e{bottom:805.785000px;}
.y41{bottom:821.985000px;}
.y14{bottom:828.105000px;}
.y40{bottom:845.745000px;}
.y13{bottom:851.910000px;}
.y3f{bottom:869.910000px;}
.y12{bottom:875.850000px;}
.y3e{bottom:894.930000px;}
.y11{bottom:899.610000px;}
.y3d{bottom:918.690000px;}
.y10{bottom:923.370000px;}
.y3c{bottom:942.810000px;}
.yf{bottom:947.130000px;}
.y3b{bottom:967.830000px;}
.ye{bottom:971.070000px;}
.y3a{bottom:991.770000px;}
.yd{bottom:994.830000px;}
.y39{bottom:1015.710000px;}
.yc{bottom:1018.590000px;}
.y38{bottom:1040.910000px;}
.yb{bottom:1041.990000px;}
.y60{bottom:1042.350000px;}
.y37{bottom:1064.670000px;}
.ya{bottom:1066.290000px;}
.y36{bottom:1088.430000px;}
.y9{bottom:1090.050000px;}
.y35{bottom:1112.190000px;}
.y8{bottom:1113.450000px;}
.y5f{bottom:1113.810000px;}
.y34{bottom:1136.160000px;}
.y7{bottom:1137.240000px;}
.y5e{bottom:1137.600000px;}
.y33{bottom:1160.280000px;}
.y6{bottom:1161.180000px;}
.y5d{bottom:1161.540000px;}
.y3{bottom:1193.580000px;}
.h2{height:16.920000px;}
.hc{height:33.516000px;}
.hb{height:47.700000px;}
.h9{height:50.484375px;}
.h6{height:62.261719px;}
.he{height:65.010937px;}
.h5{height:65.884219px;}
.h3{height:66.757500px;}
.h8{height:70.628906px;}
.h7{height:70.664062px;}
.h4{height:72.562500px;}
.hd{height:74.004654px;}
.ha{height:95.220000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:43.020000px;}
.w4{width:105.120000px;}
.w6{width:137.556000px;}
.w5{width:147.996000px;}
.w7{width:148.140000px;}
.w8{width:158.430000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:7.740000px;}
.x2{left:9.180000px;}
.x13{left:10.260000px;}
.x1c{left:11.340000px;}
.xe{left:12.420000px;}
.x11{left:18.000000px;}
.x12{left:21.420000px;}
.x1d{left:26.094000px;}
.x1b{left:27.945000px;}
.x17{left:29.880000px;}
.x1f{left:34.200000px;}
.xf{left:35.454000px;}
.x1e{left:39.060000px;}
.x19{left:41.760000px;}
.x21{left:43.560000px;}
.x16{left:45.180000px;}
.x20{left:49.905000px;}
.xd{left:127.655987px;}
.x6{left:138.095987px;}
.x3{left:159.689987px;}
.xc{left:180.749987px;}
.x7{left:190.649987px;}
.x26{left:207.749987px;}
.x9{left:217.829987px;}
.x10{left:234.390000px;}
.x8{left:298.154987px;}
.xb{left:327.674987px;}
.xa{left:360.794987px;}
.x14{left:383.115000px;}
.x1{left:439.815000px;}
.x5{left:478.514987px;}
.x18{left:521.385000px;}
.x1a{left:670.245000px;}
.x22{left:773.969987px;}
.x23{left:779.549987px;}
.x24{left:780.989987px;}
.x25{left:795.749987px;}
.x4{left:829.409987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1a{letter-spacing:-0.512000pt;}
.lsb{letter-spacing:-0.448000pt;}
.lsd{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.096000pt;}
.ls1b{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.896000pt;}
.ls8{letter-spacing:1.280000pt;}
.ls10{letter-spacing:1.920000pt;}
.lse{letter-spacing:2.560000pt;}
.ls11{letter-spacing:3.200000pt;}
.ls17{letter-spacing:4.480000pt;}
.ls4{letter-spacing:6.400000pt;}
.ls2{letter-spacing:8.960000pt;}
.ls13{letter-spacing:12.160000pt;}
.ls7{letter-spacing:14.080000pt;}
.lsa{letter-spacing:20.480000pt;}
.ls18{letter-spacing:21.760000pt;}
.ls14{letter-spacing:24.320000pt;}
.ls16{letter-spacing:25.066667pt;}
.ls19{letter-spacing:30.208000pt;}
.ls0{letter-spacing:30.720000pt;}
.ls9{letter-spacing:42.240000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws8{word-spacing:-16.320000pt;}
.ws2{word-spacing:-16.256000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws5{word-spacing:-15.552000pt;}
.ws9{word-spacing:-15.488000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws4{word-spacing:0.000000pt;}
._d{margin-left:-2.112000pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.088000pt;}
._17{width:2.410667pt;}
._11{width:3.392000pt;}
._5{width:4.512000pt;}
._4{width:5.824000pt;}
._e{width:6.912000pt;}
._14{width:8.128000pt;}
._3{width:9.088000pt;}
._27{width:10.048000pt;}
._26{width:10.944000pt;}
._a{width:12.608000pt;}
._b{width:13.557333pt;}
._15{width:14.890667pt;}
._9{width:16.896000pt;}
._1d{width:17.792000pt;}
._c{width:19.136000pt;}
._6{width:20.288000pt;}
._25{width:21.248000pt;}
._21{width:22.208000pt;}
._1c{width:23.936000pt;}
._31{width:25.152000pt;}
._1f{width:26.048000pt;}
._20{width:27.392000pt;}
._7{width:28.288000pt;}
._8{width:29.536000pt;}
._2{width:30.464000pt;}
._24{width:31.616000pt;}
._19{width:32.512000pt;}
._18{width:33.472000pt;}
._1e{width:34.496000pt;}
._23{width:35.584000pt;}
._1b{width:36.864000pt;}
._1a{width:38.144000pt;}
._28{width:39.594667pt;}
._22{width:41.472000pt;}
._10{width:42.752000pt;}
._32{width:43.840000pt;}
._f{width:44.864000pt;}
._29{width:45.824000pt;}
._2b{width:46.784000pt;}
._2e{width:47.808000pt;}
._34{width:50.112000pt;}
._35{width:51.264000pt;}
._33{width:52.480000pt;}
._2c{width:53.440000pt;}
._2d{width:54.400000pt;}
._30{width:57.354667pt;}
._2f{width:58.368000pt;}
._16{width:63.296000pt;}
._2a{width:64.512000pt;}
._13{width:73.632000pt;}
._12{width:74.688000pt;}
._36{width:75.648000pt;}
._38{width:168.768000pt;}
._39{width:170.176000pt;}
._37{width:180.288000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.440000pt;}
.y70{bottom:6.240000pt;}
.y74{bottom:6.720000pt;}
.y76{bottom:10.880000pt;}
.y6e{bottom:16.800000pt;}
.y72{bottom:17.280000pt;}
.y6b{bottom:27.360000pt;}
.y73{bottom:27.840000pt;}
.y6d{bottom:38.080000pt;}
.y6a{bottom:48.640000pt;}
.y5{bottom:51.232000pt;}
.y6c{bottom:59.200000pt;}
.y1{bottom:61.312000pt;}
.y4{bottom:69.152000pt;}
.y6f{bottom:69.760000pt;}
.y32{bottom:95.712000pt;}
.y68{bottom:101.312000pt;}
.y7f{bottom:101.472000pt;}
.y7c{bottom:111.232000pt;}
.y31{bottom:116.992000pt;}
.y67{bottom:122.432000pt;}
.y7e{bottom:122.752000pt;}
.y7b{bottom:132.352000pt;}
.y9d{bottom:135.706667pt;}
.y30{bottom:138.106667pt;}
.y7d{bottom:140.186667pt;}
.y66{bottom:143.546667pt;}
.y7a{bottom:153.466667pt;}
.y9c{bottom:156.986667pt;}
.y5c{bottom:159.226667pt;}
.y2f{bottom:159.546667pt;}
.y65{bottom:164.826667pt;}
.y79{bottom:174.746667pt;}
.y9b{bottom:178.106667pt;}
.y5b{bottom:180.346667pt;}
.y2e{bottom:181.786667pt;}
.y64{bottom:185.946667pt;}
.y78{bottom:195.866667pt;}
.y9a{bottom:199.226667pt;}
.y5a{bottom:201.626667pt;}
.y2d{bottom:203.226667pt;}
.y63{bottom:207.066667pt;}
.y77{bottom:216.986667pt;}
.y82{bottom:217.626667pt;}
.y99{bottom:220.346667pt;}
.y59{bottom:222.746667pt;}
.y2c{bottom:225.786667pt;}
.y62{bottom:228.186667pt;}
.y75{bottom:232.186667pt;}
.y81{bottom:234.906667pt;}
.y98{bottom:241.466667pt;}
.y58{bottom:243.866667pt;}
.y2b{bottom:248.346667pt;}
.y61{bottom:249.466667pt;}
.y71{bottom:262.626667pt;}
.y97{bottom:262.786667pt;}
.y57{bottom:265.026667pt;}
.y2a{bottom:270.626667pt;}
.y96{bottom:283.906667pt;}
.y56{bottom:286.306667pt;}
.y29{bottom:291.746667pt;}
.y95{bottom:304.706667pt;}
.y69{bottom:305.666667pt;}
.y55{bottom:307.426667pt;}
.y28{bottom:312.866667pt;}
.y94{bottom:325.826667pt;}
.y54{bottom:328.546667pt;}
.y27{bottom:334.146667pt;}
.y93{bottom:347.426667pt;}
.y53{bottom:349.666667pt;}
.y26{bottom:355.266667pt;}
.y92{bottom:368.546667pt;}
.y52{bottom:370.946667pt;}
.y25{bottom:376.386667pt;}
.y91{bottom:389.666667pt;}
.y51{bottom:392.066667pt;}
.y24{bottom:397.506667pt;}
.y90{bottom:410.786667pt;}
.y50{bottom:413.186667pt;}
.y23{bottom:418.786667pt;}
.y8f{bottom:432.066667pt;}
.y4f{bottom:434.306667pt;}
.y22{bottom:439.906667pt;}
.y8e{bottom:453.186667pt;}
.y4e{bottom:455.426667pt;}
.y21{bottom:461.026667pt;}
.y8d{bottom:474.306667pt;}
.y4d{bottom:476.706667pt;}
.y20{bottom:482.146667pt;}
.y8c{bottom:495.426667pt;}
.y4c{bottom:497.826667pt;}
.y1f{bottom:503.453333pt;}
.y8b{bottom:516.733333pt;}
.y4b{bottom:518.973333pt;}
.y1e{bottom:524.573333pt;}
.y8a{bottom:537.853333pt;}
.y4a{bottom:540.093333pt;}
.y1d{bottom:545.693333pt;}
.y89{bottom:558.973333pt;}
.y49{bottom:561.373333pt;}
.y1c{bottom:566.813333pt;}
.y88{bottom:580.093333pt;}
.y48{bottom:582.493333pt;}
.y1b{bottom:587.933333pt;}
.y87{bottom:601.373333pt;}
.y47{bottom:603.613333pt;}
.y1a{bottom:609.213333pt;}
.y86{bottom:622.493333pt;}
.y46{bottom:624.733333pt;}
.y19{bottom:630.333333pt;}
.y85{bottom:643.613333pt;}
.y45{bottom:646.013333pt;}
.y18{bottom:651.453333pt;}
.y84{bottom:664.733333pt;}
.y44{bottom:667.133333pt;}
.y17{bottom:672.573333pt;}
.y83{bottom:682.173333pt;}
.y80{bottom:686.173333pt;}
.y43{bottom:688.253333pt;}
.y16{bottom:693.853333pt;}
.y42{bottom:709.373333pt;}
.y15{bottom:714.973333pt;}
.y9e{bottom:716.253333pt;}
.y41{bottom:730.653333pt;}
.y14{bottom:736.093333pt;}
.y40{bottom:751.773333pt;}
.y13{bottom:757.253333pt;}
.y3f{bottom:773.253333pt;}
.y12{bottom:778.533333pt;}
.y3e{bottom:795.493333pt;}
.y11{bottom:799.653333pt;}
.y3d{bottom:816.613333pt;}
.y10{bottom:820.773333pt;}
.y3c{bottom:838.053333pt;}
.yf{bottom:841.893333pt;}
.y3b{bottom:860.293333pt;}
.ye{bottom:863.173333pt;}
.y3a{bottom:881.573333pt;}
.yd{bottom:884.293333pt;}
.y39{bottom:902.853333pt;}
.yc{bottom:905.413333pt;}
.y38{bottom:925.253333pt;}
.yb{bottom:926.213333pt;}
.y60{bottom:926.533333pt;}
.y37{bottom:946.373333pt;}
.ya{bottom:947.813333pt;}
.y36{bottom:967.493333pt;}
.y9{bottom:968.933333pt;}
.y35{bottom:988.613333pt;}
.y8{bottom:989.733333pt;}
.y5f{bottom:990.053333pt;}
.y34{bottom:1009.920000pt;}
.y7{bottom:1010.880000pt;}
.y5e{bottom:1011.200000pt;}
.y33{bottom:1031.360000pt;}
.y6{bottom:1032.160000pt;}
.y5d{bottom:1032.480000pt;}
.y3{bottom:1060.960000pt;}
.h2{height:15.040000pt;}
.hc{height:29.792000pt;}
.hb{height:42.400000pt;}
.h9{height:44.875000pt;}
.h6{height:55.343750pt;}
.he{height:57.787500pt;}
.h5{height:58.563750pt;}
.h3{height:59.340000pt;}
.h8{height:62.781250pt;}
.h7{height:62.812500pt;}
.h4{height:64.500000pt;}
.hd{height:65.781915pt;}
.ha{height:84.640000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:38.240000pt;}
.w4{width:93.440000pt;}
.w6{width:122.272000pt;}
.w5{width:131.552000pt;}
.w7{width:131.680000pt;}
.w8{width:140.826667pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:6.880000pt;}
.x2{left:8.160000pt;}
.x13{left:9.120000pt;}
.x1c{left:10.080000pt;}
.xe{left:11.040000pt;}
.x11{left:16.000000pt;}
.x12{left:19.040000pt;}
.x1d{left:23.194667pt;}
.x1b{left:24.840000pt;}
.x17{left:26.560000pt;}
.x1f{left:30.400000pt;}
.xf{left:31.514667pt;}
.x1e{left:34.720000pt;}
.x19{left:37.120000pt;}
.x21{left:38.720000pt;}
.x16{left:40.160000pt;}
.x20{left:44.360000pt;}
.xd{left:113.471988pt;}
.x6{left:122.751988pt;}
.x3{left:141.946655pt;}
.xc{left:160.666655pt;}
.x7{left:169.466655pt;}
.x26{left:184.666655pt;}
.x9{left:193.626655pt;}
.x10{left:208.346667pt;}
.x8{left:265.026655pt;}
.xb{left:291.266655pt;}
.xa{left:320.706655pt;}
.x14{left:340.546667pt;}
.x1{left:390.946667pt;}
.x5{left:425.346655pt;}
.x18{left:463.453333pt;}
.x1a{left:595.773333pt;}
.x22{left:687.973322pt;}
.x23{left:692.933322pt;}
.x24{left:694.213322pt;}
.x25{left:707.333322pt;}
.x4{left:737.253322pt;}
}




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