
    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_6089728e4dbde070f9a016f1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.027000;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_fa025166295cae7b3caaa329.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.924000;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_57eddde3ad3a69be7d548feb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100000;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_02eb15e7f849a542d862bcda.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.100000;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_ac3e9b35e8e645994c9fcd00.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.027000;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_e85dce595b59b687ad126e2c.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_ddacd7118e3fc584871669ca.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.027000;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_147a38b19d2a0900ca7fdb46.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.027000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:106.824000px;}
.ls1d{letter-spacing:-0.349200px;}
.ls7{letter-spacing:-0.326400px;}
.ls19{letter-spacing:-0.306000px;}
.ls1e{letter-spacing:-0.205200px;}
.ls1c{letter-spacing:-0.182400px;}
.ls2b{letter-spacing:-0.180000px;}
.ls2c{letter-spacing:-0.168600px;}
.ls25{letter-spacing:-0.158400px;}
.ls2d{letter-spacing:-0.122400px;}
.ls23{letter-spacing:-0.109800px;}
.ls2a{letter-spacing:-0.090000px;}
.ls13{letter-spacing:-0.089400px;}
.ls2e{letter-spacing:-0.075000px;}
.ls21{letter-spacing:-0.065400px;}
.lsc{letter-spacing:-0.028080px;}
.lsa{letter-spacing:-0.019440px;}
.lse{letter-spacing:-0.010800px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.010800px;}
.ls10{letter-spacing:0.040320px;}
.ls26{letter-spacing:0.054000px;}
.ls29{letter-spacing:0.090000px;}
.ls15{letter-spacing:0.112200px;}
.ls22{letter-spacing:0.115800px;}
.ls14{letter-spacing:0.132600px;}
.ls9{letter-spacing:0.158400px;}
.lsf{letter-spacing:0.166800px;}
.lsd{letter-spacing:0.167040px;}
.ls12{letter-spacing:0.172800px;}
.ls1b{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.183360px;}
.ls16{letter-spacing:0.190800px;}
.ls1f{letter-spacing:0.256200px;}
.ls28{letter-spacing:0.264960px;}
.ls20{letter-spacing:0.273600px;}
.ls17{letter-spacing:0.278400px;}
.ls11{letter-spacing:0.306000px;}
.ls1a{letter-spacing:0.324000px;}
.lsb{letter-spacing:0.343200px;}
.ls27{letter-spacing:0.360000px;}
.ls2f{letter-spacing:0.504000px;}
.ls6{letter-spacing:41.940000px;}
.ls2{letter-spacing:45.360000px;}
.ls24{letter-spacing:45.518400px;}
.ls3{letter-spacing:124.125600px;}
.ls5{letter-spacing:124.149600px;}
.ls1{letter-spacing:124.176000px;}
.ls4{letter-spacing:124.200000px;}
.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;}
}
.ws32{word-spacing:-44.830368px;}
.ws9{word-spacing:-44.802720px;}
.ws3{word-spacing:-44.791920px;}
.ws8{word-spacing:-42.443280px;}
.ws2f{word-spacing:-41.754528px;}
.wsc{word-spacing:-41.716080px;}
.ws30{word-spacing:-39.644520px;}
.ws2e{word-spacing:-39.565152px;}
.ws5{word-spacing:-39.528720px;}
.wsb{word-spacing:-39.500640px;}
.ws2d{word-spacing:-39.455352px;}
.ws0{word-spacing:-38.448000px;}
.ws14{word-spacing:-35.330568px;}
.ws7{word-spacing:-35.179920px;}
.ws6{word-spacing:-33.335280px;}
.wsf{word-spacing:-32.104080px;}
.wsd{word-spacing:-32.093280px;}
.ws11{word-spacing:-32.053128px;}
.ws17{word-spacing:-29.160000px;}
.ws18{word-spacing:-28.836000px;}
.ws1e{word-spacing:-25.567920px;}
.ws24{word-spacing:-25.362720px;}
.ws1d{word-spacing:-25.218720px;}
.ws38{word-spacing:-24.084000px;}
.ws3f{word-spacing:-24.068448px;}
.ws3a{word-spacing:-24.030000px;}
.ws40{word-spacing:-23.993448px;}
.ws35{word-spacing:-23.940000px;}
.ws3e{word-spacing:-23.899848px;}
.ws41{word-spacing:-2.250000px;}
.wse{word-spacing:-2.067072px;}
.ws10{word-spacing:-1.890432px;}
.ws3b{word-spacing:-1.440000px;}
.ws44{word-spacing:-1.350000px;}
.ws2c{word-spacing:-1.347840px;}
.ws36{word-spacing:-1.230000px;}
.ws3c{word-spacing:-1.080000px;}
.ws29{word-spacing:-0.973440px;}
.ws28{word-spacing:-0.871920px;}
.ws39{word-spacing:-0.810000px;}
.ws42{word-spacing:-0.720000px;}
.ws13{word-spacing:-0.627840px;}
.ws12{word-spacing:-0.625200px;}
.ws1a{word-spacing:-0.572352px;}
.ws37{word-spacing:-0.270000px;}
.ws2b{word-spacing:-0.019440px;}
.ws1{word-spacing:0.000000px;}
.ws2a{word-spacing:0.195840px;}
.ws45{word-spacing:0.360000px;}
.wsa{word-spacing:0.408000px;}
.ws19{word-spacing:0.624000px;}
.ws1b{word-spacing:0.643824px;}
.ws16{word-spacing:0.660000px;}
.ws43{word-spacing:0.990000px;}
.ws4{word-spacing:1.221600px;}
.ws3d{word-spacing:2.403264px;}
.ws15{word-spacing:2.487360px;}
.ws25{word-spacing:2.680080px;}
.ws22{word-spacing:2.744160px;}
.ws1f{word-spacing:2.776080px;}
.ws1c{word-spacing:2.840160px;}
.ws23{word-spacing:2.852160px;}
.ws20{word-spacing:2.948160px;}
.ws21{word-spacing:3.365760px;}
.ws34{word-spacing:3.382464px;}
.ws26{word-spacing:3.508080px;}
.ws31{word-spacing:3.709920px;}
.ws33{word-spacing:5.121120px;}
.ws2{word-spacing:1639.487040px;}
.ws27{word-spacing:1738.321680px;}
._5{margin-left:-2.287296px;}
._0{margin-left:-1.116000px;}
._2{width:1.006560px;}
._4{width:2.516400px;}
._7{width:3.588816px;}
._a{width:24.220800px;}
._d{width:25.580400px;}
._e{width:26.780736px;}
._6{width:30.819840px;}
._c{width:38.206992px;}
._1{width:39.828000px;}
._3{width:43.974480px;}
._9{width:176.896704px;}
._b{width:198.098784px;}
._8{width:296.129280px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,73,147);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,45,89);}
.fs11{font-size:90.000000px;}
.fs12{font-size:90.144000px;}
.fse{font-size:95.760000px;}
.fsf{font-size:95.904000px;}
.fs3{font-size:108.000000px;}
.fs4{font-size:108.144000px;}
.fsb{font-size:120.240000px;}
.fsa{font-size:120.384000px;}
.fs9{font-size:131.760000px;}
.fsc{font-size:131.904000px;}
.fs1{font-size:144.000000px;}
.fs10{font-size:144.144000px;}
.fs8{font-size:156.240000px;}
.fs7{font-size:156.384000px;}
.fs2{font-size:167.760000px;}
.fs5{font-size:167.904000px;}
.fs6{font-size:264.240000px;}
.fs0{font-size:288.000000px;}
.fsd{font-size:360.144000px;}
.y0{bottom:0.000000px;}
.y50{bottom:73.656000px;}
.y4c{bottom:83.376000px;}
.y48{bottom:85.428000px;}
.y54{bottom:88.740000px;}
.y83{bottom:100.476000px;}
.y4f{bottom:102.456000px;}
.y6e{bottom:109.548000px;}
.y2e{bottom:113.472000px;}
.y37{bottom:113.544000px;}
.y4b{bottom:115.776000px;}
.y53{bottom:117.540000px;}
.y82{bottom:119.376000px;}
.y47{bottom:125.748000px;}
.y67{bottom:127.116000px;}
.y4e{bottom:131.256000px;}
.y40{bottom:138.024000px;}
.y15{bottom:141.516000px;}
.yc{bottom:141.732000px;}
.y2d{bottom:142.272000px;}
.y1a{bottom:142.740000px;}
.y52{bottom:146.340000px;}
.y36{bottom:146.664000px;}
.y4a{bottom:148.176000px;}
.y81{bottom:153.210000px;}
.y1e{bottom:154.440000px;}
.y5b{bottom:156.135000px;}
.y4d{bottom:160.050000px;}
.y46{bottom:166.065000px;}
.y66{bottom:169.230000px;}
.y2c{bottom:171.075000px;}
.y80{bottom:172.110000px;}
.y5f{bottom:173.265000px;}
.y51{bottom:175.140000px;}
.y3f{bottom:180.900000px;}
.y5{bottom:181.545000px;}
.yb{bottom:187.125000px;}
.y5a{bottom:188.385000px;}
.y24{bottom:193.575000px;}
.y14{bottom:193.890000px;}
.y35{bottom:197.790000px;}
.y6d{bottom:197.820000px;}
.y74{bottom:199.830000px;}
.y7f{bottom:205.950000px;}
.y45{bottom:206.385000px;}
.y65{bottom:211.170000px;}
.y5e{bottom:220.785000px;}
.y1c{bottom:222.195000px;}
.y3e{bottom:224.820000px;}
.y7e{bottom:224.850000px;}
.y23{bottom:235.725000px;}
.y59{bottom:235.905000px;}
.y84{bottom:241.950000px;}
.y19{bottom:242.460000px;}
.y6c{bottom:242.850000px;}
.y34{bottom:244.440000px;}
.y13{bottom:246.315000px;}
.ya{bottom:247.245000px;}
.yd{bottom:247.425000px;}
.y73{bottom:254.055000px;}
.y2b{bottom:258.735000px;}
.y7d{bottom:258.915000px;}
.y58{bottom:268.125000px;}
.y5d{bottom:268.305000px;}
.y64{bottom:268.635000px;}
.y3d{bottom:271.260000px;}
.y7c{bottom:277.815000px;}
.y2a{bottom:287.565000px;}
.y33{bottom:292.500000px;}
.y22{bottom:292.605000px;}
.y72{bottom:292.755000px;}
.y9{bottom:292.785000px;}
.y12{bottom:298.875000px;}
.y5c{bottom:300.525000px;}
.y6b{bottom:303.330000px;}
.y4{bottom:303.990000px;}
.y44{bottom:304.410000px;}
.y63{bottom:310.755000px;}
.y7b{bottom:311.655000px;}
.y3c{bottom:314.100000px;}
.y57{bottom:315.645000px;}
.y29{bottom:316.365000px;}
.y8{bottom:338.145000px;}
.y32{bottom:343.620000px;}
.y43{bottom:344.730000px;}
.y28{bottom:345.165000px;}
.y7a{bottom:345.495000px;}
.y71{bottom:346.575000px;}
.y56{bottom:347.865000px;}
.y6a{bottom:348.690000px;}
.y21{bottom:349.665000px;}
.y11{bottom:351.255000px;}
.y62{bottom:352.515000px;}
.y18{bottom:355.350000px;}
.y3b{bottom:356.790000px;}
.y49{bottom:361.725000px;}
.y79{bottom:364.395000px;}
.y2{bottom:377.025000px;}
.y17{bottom:383.070000px;}
.y1d{bottom:385.890000px;}
.y31{bottom:390.240000px;}
.y78{bottom:398.415000px;}
.y3a{bottom:399.450000px;}
.y70{bottom:400.395000px;}
.y10{bottom:403.635000px;}
.y20{bottom:406.725000px;}
.y69{bottom:409.215000px;}
.y61{bottom:409.935000px;}
.y77{bottom:417.315000px;}
.y55{bottom:428.835000px;}
.y6{bottom:429.015000px;}
.y27{bottom:432.825000px;}
.y30{bottom:436.890000px;}
.y42{bottom:439.410000px;}
.y39{bottom:442.290000px;}
.y3{bottom:447.915000px;}
.y76{bottom:451.185000px;}
.y60{bottom:451.905000px;}
.y68{bottom:454.395000px;}
.y6f{bottom:454.425000px;}
.yf{bottom:456.225000px;}
.y1b{bottom:458.745000px;}
.y26{bottom:461.625000px;}
.y1f{bottom:464.010000px;}
.y16{bottom:466.350000px;}
.y75{bottom:470.085000px;}
.y41{bottom:476.850000px;}
.y2f{bottom:485.130000px;}
.y38{bottom:486.210000px;}
.y25{bottom:490.470000px;}
.y1{bottom:515.010000px;}
.ye{bottom:571.140000px;}
.y7{bottom:577.980000px;}
.h19{height:78.300000px;}
.h1a{height:78.425280px;}
.h15{height:83.311200px;}
.h16{height:83.436480px;}
.h13{height:93.960000px;}
.h14{height:94.085280px;}
.hd{height:97.033680px;}
.hc{height:97.149888px;}
.he{height:104.608800px;}
.hf{height:104.734080px;}
.h9{height:114.631200px;}
.h10{height:114.756480px;}
.h17{height:116.208000px;}
.h2{height:125.280000px;}
.h18{height:125.405280px;}
.ha{height:126.085680px;}
.h7{height:126.201888px;}
.h3{height:135.382320px;}
.h8{height:135.928800px;}
.hb{height:136.054080px;}
.h4{height:145.951200px;}
.h5{height:146.076480px;}
.h6{height:213.241680px;}
.h11{height:221.455200px;}
.h1{height:232.416000px;}
.h12{height:290.636208px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x7{left:107.099979px;}
.xd{left:120.599979px;}
.x8{left:123.515979px;}
.x6{left:137.015979px;}
.x17{left:141.983979px;}
.x16{left:146.519979px;}
.x15{left:151.379979px;}
.x2{left:162.254979px;}
.x9{left:164.009979px;}
.x13{left:169.919979px;}
.x19{left:172.829979px;}
.xe{left:174.779979px;}
.x1d{left:179.639979px;}
.xc{left:184.679979px;}
.xf{left:189.539979px;}
.x18{left:204.329979px;}
.x11{left:221.759979px;}
.x1b{left:238.319979px;}
.x1{left:261.284979px;}
.x1c{left:304.844979px;}
.x1e{left:362.264979px;}
.x4{left:394.484979px;}
.x10{left:416.594979px;}
.x14{left:440.744979px;}
.x1f{left:526.244979px;}
.x12{left:608.114979px;}
.x5{left:622.589979px;}
.x3{left:688.469979px;}
.xa{left:753.404979px;}
.xb{left:793.904979px;}
.x1a{left:802.724979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:94.954667pt;}
.ls1d{letter-spacing:-0.310400pt;}
.ls7{letter-spacing:-0.290133pt;}
.ls19{letter-spacing:-0.272000pt;}
.ls1e{letter-spacing:-0.182400pt;}
.ls1c{letter-spacing:-0.162133pt;}
.ls2b{letter-spacing:-0.160000pt;}
.ls2c{letter-spacing:-0.149867pt;}
.ls25{letter-spacing:-0.140800pt;}
.ls2d{letter-spacing:-0.108800pt;}
.ls23{letter-spacing:-0.097600pt;}
.ls2a{letter-spacing:-0.080000pt;}
.ls13{letter-spacing:-0.079467pt;}
.ls2e{letter-spacing:-0.066667pt;}
.ls21{letter-spacing:-0.058133pt;}
.lsc{letter-spacing:-0.024960pt;}
.lsa{letter-spacing:-0.017280pt;}
.lse{letter-spacing:-0.009600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.009600pt;}
.ls10{letter-spacing:0.035840pt;}
.ls26{letter-spacing:0.048000pt;}
.ls29{letter-spacing:0.080000pt;}
.ls15{letter-spacing:0.099733pt;}
.ls22{letter-spacing:0.102933pt;}
.ls14{letter-spacing:0.117867pt;}
.ls9{letter-spacing:0.140800pt;}
.lsf{letter-spacing:0.148267pt;}
.lsd{letter-spacing:0.148480pt;}
.ls12{letter-spacing:0.153600pt;}
.ls1b{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.162987pt;}
.ls16{letter-spacing:0.169600pt;}
.ls1f{letter-spacing:0.227733pt;}
.ls28{letter-spacing:0.235520pt;}
.ls20{letter-spacing:0.243200pt;}
.ls17{letter-spacing:0.247467pt;}
.ls11{letter-spacing:0.272000pt;}
.ls1a{letter-spacing:0.288000pt;}
.lsb{letter-spacing:0.305067pt;}
.ls27{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:0.448000pt;}
.ls6{letter-spacing:37.280000pt;}
.ls2{letter-spacing:40.320000pt;}
.ls24{letter-spacing:40.460800pt;}
.ls3{letter-spacing:110.333867pt;}
.ls5{letter-spacing:110.355200pt;}
.ls1{letter-spacing:110.378667pt;}
.ls4{letter-spacing:110.400000pt;}
.ws32{word-spacing:-39.849216pt;}
.ws9{word-spacing:-39.824640pt;}
.ws3{word-spacing:-39.815040pt;}
.ws8{word-spacing:-37.727360pt;}
.ws2f{word-spacing:-37.115136pt;}
.wsc{word-spacing:-37.080960pt;}
.ws30{word-spacing:-35.239573pt;}
.ws2e{word-spacing:-35.169024pt;}
.ws5{word-spacing:-35.136640pt;}
.wsb{word-spacing:-35.111680pt;}
.ws2d{word-spacing:-35.071424pt;}
.ws0{word-spacing:-34.176000pt;}
.ws14{word-spacing:-31.404949pt;}
.ws7{word-spacing:-31.271040pt;}
.ws6{word-spacing:-29.631360pt;}
.wsf{word-spacing:-28.536960pt;}
.wsd{word-spacing:-28.527360pt;}
.ws11{word-spacing:-28.491669pt;}
.ws17{word-spacing:-25.920000pt;}
.ws18{word-spacing:-25.632000pt;}
.ws1e{word-spacing:-22.727040pt;}
.ws24{word-spacing:-22.544640pt;}
.ws1d{word-spacing:-22.416640pt;}
.ws38{word-spacing:-21.408000pt;}
.ws3f{word-spacing:-21.394176pt;}
.ws3a{word-spacing:-21.360000pt;}
.ws40{word-spacing:-21.327509pt;}
.ws35{word-spacing:-21.280000pt;}
.ws3e{word-spacing:-21.244309pt;}
.ws41{word-spacing:-2.000000pt;}
.wse{word-spacing:-1.837397pt;}
.ws10{word-spacing:-1.680384pt;}
.ws3b{word-spacing:-1.280000pt;}
.ws44{word-spacing:-1.200000pt;}
.ws2c{word-spacing:-1.198080pt;}
.ws36{word-spacing:-1.093333pt;}
.ws3c{word-spacing:-0.960000pt;}
.ws29{word-spacing:-0.865280pt;}
.ws28{word-spacing:-0.775040pt;}
.ws39{word-spacing:-0.720000pt;}
.ws42{word-spacing:-0.640000pt;}
.ws13{word-spacing:-0.558080pt;}
.ws12{word-spacing:-0.555733pt;}
.ws1a{word-spacing:-0.508757pt;}
.ws37{word-spacing:-0.240000pt;}
.ws2b{word-spacing:-0.017280pt;}
.ws1{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.174080pt;}
.ws45{word-spacing:0.320000pt;}
.wsa{word-spacing:0.362667pt;}
.ws19{word-spacing:0.554667pt;}
.ws1b{word-spacing:0.572288pt;}
.ws16{word-spacing:0.586667pt;}
.ws43{word-spacing:0.880000pt;}
.ws4{word-spacing:1.085867pt;}
.ws3d{word-spacing:2.136235pt;}
.ws15{word-spacing:2.210987pt;}
.ws25{word-spacing:2.382293pt;}
.ws22{word-spacing:2.439253pt;}
.ws1f{word-spacing:2.467627pt;}
.ws1c{word-spacing:2.524587pt;}
.ws23{word-spacing:2.535253pt;}
.ws20{word-spacing:2.620587pt;}
.ws21{word-spacing:2.991787pt;}
.ws34{word-spacing:3.006635pt;}
.ws26{word-spacing:3.118293pt;}
.ws31{word-spacing:3.297707pt;}
.ws33{word-spacing:4.552107pt;}
.ws2{word-spacing:1457.321813pt;}
.ws27{word-spacing:1545.174827pt;}
._5{margin-left:-2.033152pt;}
._0{margin-left:-0.992000pt;}
._2{width:0.894720pt;}
._4{width:2.236800pt;}
._7{width:3.190059pt;}
._a{width:21.529600pt;}
._d{width:22.738133pt;}
._e{width:23.805099pt;}
._6{width:27.395413pt;}
._c{width:33.961771pt;}
._1{width:35.402667pt;}
._3{width:39.088427pt;}
._9{width:157.241515pt;}
._b{width:176.087808pt;}
._8{width:263.226027pt;}
.fs11{font-size:80.000000pt;}
.fs12{font-size:80.128000pt;}
.fse{font-size:85.120000pt;}
.fsf{font-size:85.248000pt;}
.fs3{font-size:96.000000pt;}
.fs4{font-size:96.128000pt;}
.fsb{font-size:106.880000pt;}
.fsa{font-size:107.008000pt;}
.fs9{font-size:117.120000pt;}
.fsc{font-size:117.248000pt;}
.fs1{font-size:128.000000pt;}
.fs10{font-size:128.128000pt;}
.fs8{font-size:138.880000pt;}
.fs7{font-size:139.008000pt;}
.fs2{font-size:149.120000pt;}
.fs5{font-size:149.248000pt;}
.fs6{font-size:234.880000pt;}
.fs0{font-size:256.000000pt;}
.fsd{font-size:320.128000pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:65.472000pt;}
.y4c{bottom:74.112000pt;}
.y48{bottom:75.936000pt;}
.y54{bottom:78.880000pt;}
.y83{bottom:89.312000pt;}
.y4f{bottom:91.072000pt;}
.y6e{bottom:97.376000pt;}
.y2e{bottom:100.864000pt;}
.y37{bottom:100.928000pt;}
.y4b{bottom:102.912000pt;}
.y53{bottom:104.480000pt;}
.y82{bottom:106.112000pt;}
.y47{bottom:111.776000pt;}
.y67{bottom:112.992000pt;}
.y4e{bottom:116.672000pt;}
.y40{bottom:122.688000pt;}
.y15{bottom:125.792000pt;}
.yc{bottom:125.984000pt;}
.y2d{bottom:126.464000pt;}
.y1a{bottom:126.880000pt;}
.y52{bottom:130.080000pt;}
.y36{bottom:130.368000pt;}
.y4a{bottom:131.712000pt;}
.y81{bottom:136.186667pt;}
.y1e{bottom:137.280000pt;}
.y5b{bottom:138.786667pt;}
.y4d{bottom:142.266667pt;}
.y46{bottom:147.613333pt;}
.y66{bottom:150.426667pt;}
.y2c{bottom:152.066667pt;}
.y80{bottom:152.986667pt;}
.y5f{bottom:154.013333pt;}
.y51{bottom:155.680000pt;}
.y3f{bottom:160.800000pt;}
.y5{bottom:161.373333pt;}
.yb{bottom:166.333333pt;}
.y5a{bottom:167.453333pt;}
.y24{bottom:172.066667pt;}
.y14{bottom:172.346667pt;}
.y35{bottom:175.813333pt;}
.y6d{bottom:175.840000pt;}
.y74{bottom:177.626667pt;}
.y7f{bottom:183.066667pt;}
.y45{bottom:183.453333pt;}
.y65{bottom:187.706667pt;}
.y5e{bottom:196.253333pt;}
.y1c{bottom:197.506667pt;}
.y3e{bottom:199.840000pt;}
.y7e{bottom:199.866667pt;}
.y23{bottom:209.533333pt;}
.y59{bottom:209.693333pt;}
.y84{bottom:215.066667pt;}
.y19{bottom:215.520000pt;}
.y6c{bottom:215.866667pt;}
.y34{bottom:217.280000pt;}
.y13{bottom:218.946667pt;}
.ya{bottom:219.773333pt;}
.yd{bottom:219.933333pt;}
.y73{bottom:225.826667pt;}
.y2b{bottom:229.986667pt;}
.y7d{bottom:230.146667pt;}
.y58{bottom:238.333333pt;}
.y5d{bottom:238.493333pt;}
.y64{bottom:238.786667pt;}
.y3d{bottom:241.120000pt;}
.y7c{bottom:246.946667pt;}
.y2a{bottom:255.613333pt;}
.y33{bottom:260.000000pt;}
.y22{bottom:260.093333pt;}
.y72{bottom:260.226667pt;}
.y9{bottom:260.253333pt;}
.y12{bottom:265.666667pt;}
.y5c{bottom:267.133333pt;}
.y6b{bottom:269.626667pt;}
.y4{bottom:270.213333pt;}
.y44{bottom:270.586667pt;}
.y63{bottom:276.226667pt;}
.y7b{bottom:277.026667pt;}
.y3c{bottom:279.200000pt;}
.y57{bottom:280.573333pt;}
.y29{bottom:281.213333pt;}
.y8{bottom:300.573333pt;}
.y32{bottom:305.440000pt;}
.y43{bottom:306.426667pt;}
.y28{bottom:306.813333pt;}
.y7a{bottom:307.106667pt;}
.y71{bottom:308.066667pt;}
.y56{bottom:309.213333pt;}
.y6a{bottom:309.946667pt;}
.y21{bottom:310.813333pt;}
.y11{bottom:312.226667pt;}
.y62{bottom:313.346667pt;}
.y18{bottom:315.866667pt;}
.y3b{bottom:317.146667pt;}
.y49{bottom:321.533333pt;}
.y79{bottom:323.906667pt;}
.y2{bottom:335.133333pt;}
.y17{bottom:340.506667pt;}
.y1d{bottom:343.013333pt;}
.y31{bottom:346.880000pt;}
.y78{bottom:354.146667pt;}
.y3a{bottom:355.066667pt;}
.y70{bottom:355.906667pt;}
.y10{bottom:358.786667pt;}
.y20{bottom:361.533333pt;}
.y69{bottom:363.746667pt;}
.y61{bottom:364.386667pt;}
.y77{bottom:370.946667pt;}
.y55{bottom:381.186667pt;}
.y6{bottom:381.346667pt;}
.y27{bottom:384.733333pt;}
.y30{bottom:388.346667pt;}
.y42{bottom:390.586667pt;}
.y39{bottom:393.146667pt;}
.y3{bottom:398.146667pt;}
.y76{bottom:401.053333pt;}
.y60{bottom:401.693333pt;}
.y68{bottom:403.906667pt;}
.y6f{bottom:403.933333pt;}
.yf{bottom:405.533333pt;}
.y1b{bottom:407.773333pt;}
.y26{bottom:410.333333pt;}
.y1f{bottom:412.453333pt;}
.y16{bottom:414.533333pt;}
.y75{bottom:417.853333pt;}
.y41{bottom:423.866667pt;}
.y2f{bottom:431.226667pt;}
.y38{bottom:432.186667pt;}
.y25{bottom:435.973333pt;}
.y1{bottom:457.786667pt;}
.ye{bottom:507.680000pt;}
.y7{bottom:513.760000pt;}
.h19{height:69.600000pt;}
.h1a{height:69.711360pt;}
.h15{height:74.054400pt;}
.h16{height:74.165760pt;}
.h13{height:83.520000pt;}
.h14{height:83.631360pt;}
.hd{height:86.252160pt;}
.hc{height:86.355456pt;}
.he{height:92.985600pt;}
.hf{height:93.096960pt;}
.h9{height:101.894400pt;}
.h10{height:102.005760pt;}
.h17{height:103.296000pt;}
.h2{height:111.360000pt;}
.h18{height:111.471360pt;}
.ha{height:112.076160pt;}
.h7{height:112.179456pt;}
.h3{height:120.339840pt;}
.h8{height:120.825600pt;}
.hb{height:120.936960pt;}
.h4{height:129.734400pt;}
.h5{height:129.845760pt;}
.h6{height:189.548160pt;}
.h11{height:196.849067pt;}
.h1{height:206.592000pt;}
.h12{height:258.343296pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x7{left:95.199981pt;}
.xd{left:107.199981pt;}
.x8{left:109.791981pt;}
.x6{left:121.791981pt;}
.x17{left:126.207981pt;}
.x16{left:130.239981pt;}
.x15{left:134.559981pt;}
.x2{left:144.226648pt;}
.x9{left:145.786648pt;}
.x13{left:151.039981pt;}
.x19{left:153.626648pt;}
.xe{left:155.359981pt;}
.x1d{left:159.679981pt;}
.xc{left:164.159981pt;}
.xf{left:168.479981pt;}
.x18{left:181.626648pt;}
.x11{left:197.119981pt;}
.x1b{left:211.839981pt;}
.x1{left:232.253314pt;}
.x1c{left:270.973314pt;}
.x1e{left:322.013314pt;}
.x4{left:350.653314pt;}
.x10{left:370.306648pt;}
.x14{left:391.773314pt;}
.x1f{left:467.773314pt;}
.x12{left:540.546648pt;}
.x5{left:553.413314pt;}
.x3{left:611.973314pt;}
.xa{left:669.693314pt;}
.xb{left:705.693314pt;}
.x1a{left:713.533314pt;}
}




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