
    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_6d165db02cb778e3d85bfcce.woff')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_08a86bead4def29a8bb93edd.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_af10fa790fce1fe8731b2deb.woff')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_4607ec6f1a079c644828e7d2.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e9f642c391fca15cb8d27b5a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.097168;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_b7fe6df378efff1865b27cfd.woff')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_2e594ada964a18b5360394f0.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f09683fb8232a57115b8eb3c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.893066;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_a19e4a5ebe998db59405a2f8.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_82d7e52dbd58e46fdd6909b3.woff')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_d5e8b534e6f7a6ec756ebac8.woff')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);}
.v1{vertical-align:-95.760000px;}
.v2{vertical-align:-90.720000px;}
.v3{vertical-align:-82.800000px;}
.v4{vertical-align:-75.600000px;}
.v0{vertical-align:0.000000px;}
.ls1b{letter-spacing:-1.440000px;}
.ls24{letter-spacing:-1.008000px;}
.lsd{letter-spacing:-0.924000px;}
.lsc{letter-spacing:-0.798000px;}
.ls9{letter-spacing:-0.720000px;}
.ls1d{letter-spacing:-0.504000px;}
.ls2c{letter-spacing:-0.457800px;}
.lse{letter-spacing:-0.414600px;}
.ls16{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.305400px;}
.ls17{letter-spacing:-0.288000px;}
.ls2b{letter-spacing:-0.158400px;}
.ls15{letter-spacing:-0.144000px;}
.ls1a{letter-spacing:-0.072000px;}
.ls8{letter-spacing:-0.025920px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.025920px;}
.ls14{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.109200px;}
.ls10{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.262080px;}
.ls19{letter-spacing:0.288000px;}
.ls22{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.432000px;}
.ls1c{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.840000px;}
.ls23{letter-spacing:0.936000px;}
.ls2a{letter-spacing:1.080000px;}
.ls12{letter-spacing:2.880000px;}
.ls20{letter-spacing:3.600000px;}
.ls5{letter-spacing:4.320000px;}
.ls25{letter-spacing:5.040000px;}
.ls21{letter-spacing:7.920000px;}
.ls13{letter-spacing:15.120000px;}
.ls6{letter-spacing:15.840000px;}
.lsf{letter-spacing:20.880000px;}
.ls29{letter-spacing:34.841280px;}
.ls1e{letter-spacing:41.760000px;}
.ls1{letter-spacing:56.304000px;}
.ls28{letter-spacing:67.961280px;}
.ls1f{letter-spacing:76.440000px;}
.ls27{letter-spacing:859.836000px;}
.ls3{letter-spacing:1158.636000px;}
.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;}
}
.ws8{word-spacing:-84.060000px;}
.ws0{word-spacing:-19.440000px;}
.ws9{word-spacing:-18.360000px;}
.ws5{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.ws2{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.496000px;}
.wsb{word-spacing:-16.669200px;}
.wsa{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.102200px;}
.ws1{word-spacing:0.000000px;}
._1f{margin-left:-8.604960px;}
._11{margin-left:-2.252160px;}
._5{margin-left:-1.008000px;}
._0{width:1.244160px;}
._6{width:2.951520px;}
._8{width:4.525920px;}
._9{width:5.938560px;}
._7{width:6.955200px;}
._c{width:8.691840px;}
._b{width:9.936000px;}
._17{width:10.967040px;}
._a{width:12.136320px;}
._14{width:13.680000px;}
._e{width:15.075840px;}
._13{width:16.992000px;}
._12{width:19.183680px;}
._d{width:20.468160px;}
._10{width:21.703680px;}
._16{width:23.400000px;}
._15{width:24.984000px;}
._20{width:28.416960px;}
._1b{width:37.800000px;}
._1a{width:39.168000px;}
._19{width:40.824000px;}
._18{width:41.976000px;}
._1e{width:43.447680px;}
._f{width:45.175680px;}
._1c{width:67.896000px;}
._1d{width:69.264000px;}
._1{width:519.215520px;}
._2{width:736.680000px;}
._4{width:756.300000px;}
._3{width:831.888480px;}
._21{width:846.300000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:336.240000px;}
.y0{bottom:0.000000px;}
.yb{bottom:0.180000px;}
.y6a{bottom:4.320000px;}
.yca{bottom:4.485000px;}
.ycc{bottom:14.925000px;}
.y9{bottom:21.240000px;}
.ya{bottom:31.140000px;}
.y8{bottom:41.940000px;}
.y5{bottom:57.600000px;}
.y7{bottom:62.670000px;}
.y4{bottom:86.940000px;}
.y3{bottom:119.880000px;}
.y95{bottom:139.536000px;}
.yaa{bottom:145.836000px;}
.y68{bottom:146.016000px;}
.y37{bottom:146.196000px;}
.y94{bottom:160.230000px;}
.y36{bottom:165.090000px;}
.ya9{bottom:166.530000px;}
.y67{bottom:166.710000px;}
.y93{bottom:180.930000px;}
.ya8{bottom:182.730000px;}
.y35{bottom:184.170000px;}
.y66{bottom:187.410000px;}
.y92{bottom:201.630000px;}
.y34{bottom:203.070000px;}
.y65{bottom:208.110000px;}
.y33{bottom:221.970000px;}
.y91{bottom:222.330000px;}
.y64{bottom:228.810000px;}
.y32{bottom:241.050000px;}
.y90{bottom:243.030000px;}
.y63{bottom:249.510000px;}
.y31{bottom:259.950000px;}
.yce{bottom:261.570000px;}
.y8f{bottom:263.730000px;}
.y62{bottom:270.210000px;}
.y30{bottom:279.030000px;}
.ycd{bottom:282.270000px;}
.y8e{bottom:284.430000px;}
.y61{bottom:290.910000px;}
.y2f{bottom:297.930000px;}
.ycb{bottom:298.485000px;}
.y8d{bottom:305.130000px;}
.y60{bottom:311.610000px;}
.y2e{bottom:316.830000px;}
.yc9{bottom:319.185000px;}
.y8c{bottom:325.830000px;}
.y5f{bottom:332.310000px;}
.y2d{bottom:335.910000px;}
.yc8{bottom:344.370000px;}
.y8b{bottom:346.530000px;}
.y5e{bottom:353.010000px;}
.y2c{bottom:354.810000px;}
.yc7{bottom:364.530000px;}
.y8a{bottom:367.230000px;}
.y5d{bottom:373.710000px;}
.y2b{bottom:373.890000px;}
.yc6{bottom:383.655000px;}
.y89{bottom:387.975000px;}
.y2a{bottom:392.835000px;}
.y5c{bottom:394.455000px;}
.yc5{bottom:402.555000px;}
.y88{bottom:408.675000px;}
.y29{bottom:411.915000px;}
.y5b{bottom:415.155000px;}
.yc4{bottom:421.635000px;}
.y87{bottom:429.375000px;}
.y28{bottom:430.815000px;}
.y5a{bottom:435.855000px;}
.yc3{bottom:440.535000px;}
.y27{bottom:449.715000px;}
.y86{bottom:450.075000px;}
.y59{bottom:456.555000px;}
.yc2{bottom:459.615000px;}
.y26{bottom:468.795000px;}
.y85{bottom:470.775000px;}
.y58{bottom:477.255000px;}
.yc1{bottom:478.515000px;}
.ya7{bottom:481.035000px;}
.y25{bottom:487.695000px;}
.y84{bottom:491.475000px;}
.y57{bottom:497.955000px;}
.ya6{bottom:501.735000px;}
.y24{bottom:506.775000px;}
.y83{bottom:512.175000px;}
.yc0{bottom:516.495000px;}
.y56{bottom:518.655000px;}
.ya5{bottom:522.435000px;}
.y23{bottom:525.675000px;}
.y82{bottom:532.875000px;}
.ybf{bottom:535.395000px;}
.y55{bottom:539.355000px;}
.ya4{bottom:543.135000px;}
.y22{bottom:544.575000px;}
.y81{bottom:553.575000px;}
.ybe{bottom:554.475000px;}
.y54{bottom:560.055000px;}
.y21{bottom:563.655000px;}
.ya3{bottom:563.835000px;}
.ybd{bottom:573.375000px;}
.y80{bottom:574.275000px;}
.y53{bottom:580.755000px;}
.y20{bottom:582.555000px;}
.ya2{bottom:584.535000px;}
.ybc{bottom:592.275000px;}
.y7f{bottom:594.975000px;}
.y52{bottom:601.455000px;}
.y1f{bottom:601.635000px;}
.ya1{bottom:605.235000px;}
.ybb{bottom:611.355000px;}
.y7e{bottom:615.675000px;}
.y1e{bottom:620.535000px;}
.y51{bottom:622.155000px;}
.ya0{bottom:625.935000px;}
.yba{bottom:630.255000px;}
.y7d{bottom:636.405000px;}
.y1d{bottom:639.465000px;}
.y50{bottom:642.885000px;}
.y9f{bottom:646.665000px;}
.yb9{bottom:649.365000px;}
.y7c{bottom:657.105000px;}
.y1c{bottom:658.905000px;}
.y4f{bottom:663.585000px;}
.y9e{bottom:667.365000px;}
.yb8{bottom:668.265000px;}
.y7b{bottom:677.805000px;}
.y1b{bottom:679.965000px;}
.y4e{bottom:684.285000px;}
.yb7{bottom:687.165000px;}
.y9d{bottom:688.065000px;}
.y7a{bottom:698.505000px;}
.y1a{bottom:702.465000px;}
.y4d{bottom:704.985000px;}
.yb6{bottom:706.245000px;}
.y9c{bottom:708.765000px;}
.y79{bottom:719.205000px;}
.y19{bottom:724.245000px;}
.yb5{bottom:725.145000px;}
.y4c{bottom:725.685000px;}
.y9b{bottom:729.465000px;}
.y78{bottom:739.905000px;}
.yb4{bottom:744.225000px;}
.y4b{bottom:746.385000px;}
.y18{bottom:747.285000px;}
.y9a{bottom:750.165000px;}
.y77{bottom:760.605000px;}
.yb3{bottom:763.125000px;}
.y4a{bottom:767.085000px;}
.y99{bottom:770.505000px;}
.y76{bottom:781.305000px;}
.yb2{bottom:782.025000px;}
.y49{bottom:787.785000px;}
.y98{bottom:789.945000px;}
.y17{bottom:791.745000px;}
.y75{bottom:802.005000px;}
.y48{bottom:808.485000px;}
.y97{bottom:810.105000px;}
.y16{bottom:812.805000px;}
.yb1{bottom:820.005000px;}
.y74{bottom:822.705000px;}
.y96{bottom:825.225000px;}
.y47{bottom:829.185000px;}
.y15{bottom:835.125000px;}
.yb0{bottom:839.085000px;}
.y73{bottom:843.405000px;}
.y46{bottom:849.885000px;}
.y14{bottom:857.085000px;}
.yaf{bottom:857.985000px;}
.y72{bottom:864.105000px;}
.y45{bottom:870.585000px;}
.yae{bottom:876.885000px;}
.y13{bottom:880.125000px;}
.y71{bottom:884.850000px;}
.y44{bottom:891.330000px;}
.yad{bottom:896.010000px;}
.y12{bottom:901.950000px;}
.y70{bottom:905.550000px;}
.y43{bottom:912.030000px;}
.yac{bottom:914.910000px;}
.y11{bottom:924.630000px;}
.y6f{bottom:926.070000px;}
.y42{bottom:932.730000px;}
.yab{bottom:933.990000px;}
.y10{bottom:945.510000px;}
.y6e{bottom:948.030000px;}
.y41{bottom:953.430000px;}
.y6d{bottom:969.990000px;}
.y40{bottom:974.130000px;}
.y6c{bottom:992.130000px;}
.yf{bottom:993.570000px;}
.y3f{bottom:994.830000px;}
.y6b{bottom:1014.090000px;}
.ye{bottom:1014.630000px;}
.y3e{bottom:1015.530000px;}
.y3d{bottom:1036.230000px;}
.yd{bottom:1038.750000px;}
.y3c{bottom:1056.930000px;}
.yc{bottom:1062.150000px;}
.y6{bottom:1077.090000px;}
.y3b{bottom:1077.630000px;}
.y69{bottom:1093.830000px;}
.y3a{bottom:1098.330000px;}
.y39{bottom:1119.030000px;}
.y38{bottom:1139.760000px;}
.y2{bottom:1160.460000px;}
.y1{bottom:1192.140000px;}
.h14{height:20.685000px;}
.h15{height:41.385000px;}
.h3{height:45.184219px;}
.hb{height:56.278125px;}
.h13{height:58.380469px;}
.he{height:62.130000px;}
.hd{height:63.457031px;}
.hc{height:64.978594px;}
.h4{height:65.010937px;}
.h12{height:68.084282px;}
.h11{height:70.628906px;}
.h7{height:70.664062px;}
.h8{height:72.846211px;}
.h10{height:74.004654px;}
.h2{height:76.279219px;}
.h5{height:76.317188px;}
.ha{height:78.367500px;}
.h6{height:78.870000px;}
.h9{height:84.898125px;}
.hf{height:330.001172px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:56.194500px;}
.w4{width:82.470000px;}
.w3{width:180.735000px;}
.w6{width:337.753500px;}
.w7{width:401.325000px;}
.w2{width:475.843500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:7.918500px;}
.x1a{left:45.570000px;}
.x2{left:77.041500px;}
.x1{left:84.960000px;}
.x7{left:86.790000px;}
.x9{left:127.836000px;}
.x12{left:141.156000px;}
.x18{left:171.210000px;}
.x5{left:172.650000px;}
.xa{left:174.990000px;}
.xb{left:234.570000px;}
.xd{left:277.095000px;}
.x15{left:292.215000px;}
.x11{left:360.975000px;}
.xc{left:386.355000px;}
.xe{left:409.395000px;}
.x19{left:414.795000px;}
.x10{left:416.235000px;}
.x14{left:446.505000px;}
.x16{left:467.745000px;}
.xf{left:475.845000px;}
.x4{left:552.900000px;}
.x17{left:724.830000px;}
.x6{left:733.650000px;}
.x13{left:743.010000px;}
.x8{left:808.020000px;}
@media print{
.v1{vertical-align:-85.120000pt;}
.v2{vertical-align:-80.640000pt;}
.v3{vertical-align:-73.600000pt;}
.v4{vertical-align:-67.200000pt;}
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-1.280000pt;}
.ls24{letter-spacing:-0.896000pt;}
.lsd{letter-spacing:-0.821333pt;}
.lsc{letter-spacing:-0.709333pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls1d{letter-spacing:-0.448000pt;}
.ls2c{letter-spacing:-0.406933pt;}
.lse{letter-spacing:-0.368533pt;}
.ls16{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.271467pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls2b{letter-spacing:-0.140800pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls1a{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:-0.023040pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.023040pt;}
.ls14{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.097067pt;}
.ls10{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.232960pt;}
.ls19{letter-spacing:0.256000pt;}
.ls22{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.384000pt;}
.ls1c{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.746667pt;}
.ls23{letter-spacing:0.832000pt;}
.ls2a{letter-spacing:0.960000pt;}
.ls12{letter-spacing:2.560000pt;}
.ls20{letter-spacing:3.200000pt;}
.ls5{letter-spacing:3.840000pt;}
.ls25{letter-spacing:4.480000pt;}
.ls21{letter-spacing:7.040000pt;}
.ls13{letter-spacing:13.440000pt;}
.ls6{letter-spacing:14.080000pt;}
.lsf{letter-spacing:18.560000pt;}
.ls29{letter-spacing:30.970027pt;}
.ls1e{letter-spacing:37.120000pt;}
.ls1{letter-spacing:50.048000pt;}
.ls28{letter-spacing:60.410027pt;}
.ls1f{letter-spacing:67.946667pt;}
.ls27{letter-spacing:764.298667pt;}
.ls3{letter-spacing:1029.898667pt;}
.ws8{word-spacing:-74.720000pt;}
.ws0{word-spacing:-17.280000pt;}
.ws9{word-spacing:-16.320000pt;}
.ws5{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.552000pt;}
.wsb{word-spacing:-14.817067pt;}
.wsa{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.313067pt;}
.ws1{word-spacing:0.000000pt;}
._1f{margin-left:-7.648853pt;}
._11{margin-left:-2.001920pt;}
._5{margin-left:-0.896000pt;}
._0{width:1.105920pt;}
._6{width:2.623573pt;}
._8{width:4.023040pt;}
._9{width:5.278720pt;}
._7{width:6.182400pt;}
._c{width:7.726080pt;}
._b{width:8.832000pt;}
._17{width:9.748480pt;}
._a{width:10.787840pt;}
._14{width:12.160000pt;}
._e{width:13.400747pt;}
._13{width:15.104000pt;}
._12{width:17.052160pt;}
._d{width:18.193920pt;}
._10{width:19.292160pt;}
._16{width:20.800000pt;}
._15{width:22.208000pt;}
._20{width:25.259520pt;}
._1b{width:33.600000pt;}
._1a{width:34.816000pt;}
._19{width:36.288000pt;}
._18{width:37.312000pt;}
._1e{width:38.620160pt;}
._f{width:40.156160pt;}
._1c{width:60.352000pt;}
._1d{width:61.568000pt;}
._1{width:461.524907pt;}
._2{width:654.826667pt;}
._4{width:672.266667pt;}
._3{width:739.456427pt;}
._21{width:752.266667pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:298.880000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:0.160000pt;}
.y6a{bottom:3.840000pt;}
.yca{bottom:3.986667pt;}
.ycc{bottom:13.266667pt;}
.y9{bottom:18.880000pt;}
.ya{bottom:27.680000pt;}
.y8{bottom:37.280000pt;}
.y5{bottom:51.200000pt;}
.y7{bottom:55.706667pt;}
.y4{bottom:77.280000pt;}
.y3{bottom:106.560000pt;}
.y95{bottom:124.032000pt;}
.yaa{bottom:129.632000pt;}
.y68{bottom:129.792000pt;}
.y37{bottom:129.952000pt;}
.y94{bottom:142.426667pt;}
.y36{bottom:146.746667pt;}
.ya9{bottom:148.026667pt;}
.y67{bottom:148.186667pt;}
.y93{bottom:160.826667pt;}
.ya8{bottom:162.426667pt;}
.y35{bottom:163.706667pt;}
.y66{bottom:166.586667pt;}
.y92{bottom:179.226667pt;}
.y34{bottom:180.506667pt;}
.y65{bottom:184.986667pt;}
.y33{bottom:197.306667pt;}
.y91{bottom:197.626667pt;}
.y64{bottom:203.386667pt;}
.y32{bottom:214.266667pt;}
.y90{bottom:216.026667pt;}
.y63{bottom:221.786667pt;}
.y31{bottom:231.066667pt;}
.yce{bottom:232.506667pt;}
.y8f{bottom:234.426667pt;}
.y62{bottom:240.186667pt;}
.y30{bottom:248.026667pt;}
.ycd{bottom:250.906667pt;}
.y8e{bottom:252.826667pt;}
.y61{bottom:258.586667pt;}
.y2f{bottom:264.826667pt;}
.ycb{bottom:265.320000pt;}
.y8d{bottom:271.226667pt;}
.y60{bottom:276.986667pt;}
.y2e{bottom:281.626667pt;}
.yc9{bottom:283.720000pt;}
.y8c{bottom:289.626667pt;}
.y5f{bottom:295.386667pt;}
.y2d{bottom:298.586667pt;}
.yc8{bottom:306.106667pt;}
.y8b{bottom:308.026667pt;}
.y5e{bottom:313.786667pt;}
.y2c{bottom:315.386667pt;}
.yc7{bottom:324.026667pt;}
.y8a{bottom:326.426667pt;}
.y5d{bottom:332.186667pt;}
.y2b{bottom:332.346667pt;}
.yc6{bottom:341.026667pt;}
.y89{bottom:344.866667pt;}
.y2a{bottom:349.186667pt;}
.y5c{bottom:350.626667pt;}
.yc5{bottom:357.826667pt;}
.y88{bottom:363.266667pt;}
.y29{bottom:366.146667pt;}
.y5b{bottom:369.026667pt;}
.yc4{bottom:374.786667pt;}
.y87{bottom:381.666667pt;}
.y28{bottom:382.946667pt;}
.y5a{bottom:387.426667pt;}
.yc3{bottom:391.586667pt;}
.y27{bottom:399.746667pt;}
.y86{bottom:400.066667pt;}
.y59{bottom:405.826667pt;}
.yc2{bottom:408.546667pt;}
.y26{bottom:416.706667pt;}
.y85{bottom:418.466667pt;}
.y58{bottom:424.226667pt;}
.yc1{bottom:425.346667pt;}
.ya7{bottom:427.586667pt;}
.y25{bottom:433.506667pt;}
.y84{bottom:436.866667pt;}
.y57{bottom:442.626667pt;}
.ya6{bottom:445.986667pt;}
.y24{bottom:450.466667pt;}
.y83{bottom:455.266667pt;}
.yc0{bottom:459.106667pt;}
.y56{bottom:461.026667pt;}
.ya5{bottom:464.386667pt;}
.y23{bottom:467.266667pt;}
.y82{bottom:473.666667pt;}
.ybf{bottom:475.906667pt;}
.y55{bottom:479.426667pt;}
.ya4{bottom:482.786667pt;}
.y22{bottom:484.066667pt;}
.y81{bottom:492.066667pt;}
.ybe{bottom:492.866667pt;}
.y54{bottom:497.826667pt;}
.y21{bottom:501.026667pt;}
.ya3{bottom:501.186667pt;}
.ybd{bottom:509.666667pt;}
.y80{bottom:510.466667pt;}
.y53{bottom:516.226667pt;}
.y20{bottom:517.826667pt;}
.ya2{bottom:519.586667pt;}
.ybc{bottom:526.466667pt;}
.y7f{bottom:528.866667pt;}
.y52{bottom:534.626667pt;}
.y1f{bottom:534.786667pt;}
.ya1{bottom:537.986667pt;}
.ybb{bottom:543.426667pt;}
.y7e{bottom:547.266667pt;}
.y1e{bottom:551.586667pt;}
.y51{bottom:553.026667pt;}
.ya0{bottom:556.386667pt;}
.yba{bottom:560.226667pt;}
.y7d{bottom:565.693333pt;}
.y1d{bottom:568.413333pt;}
.y50{bottom:571.453333pt;}
.y9f{bottom:574.813333pt;}
.yb9{bottom:577.213333pt;}
.y7c{bottom:584.093333pt;}
.y1c{bottom:585.693333pt;}
.y4f{bottom:589.853333pt;}
.y9e{bottom:593.213333pt;}
.yb8{bottom:594.013333pt;}
.y7b{bottom:602.493333pt;}
.y1b{bottom:604.413333pt;}
.y4e{bottom:608.253333pt;}
.yb7{bottom:610.813333pt;}
.y9d{bottom:611.613333pt;}
.y7a{bottom:620.893333pt;}
.y1a{bottom:624.413333pt;}
.y4d{bottom:626.653333pt;}
.yb6{bottom:627.773333pt;}
.y9c{bottom:630.013333pt;}
.y79{bottom:639.293333pt;}
.y19{bottom:643.773333pt;}
.yb5{bottom:644.573333pt;}
.y4c{bottom:645.053333pt;}
.y9b{bottom:648.413333pt;}
.y78{bottom:657.693333pt;}
.yb4{bottom:661.533333pt;}
.y4b{bottom:663.453333pt;}
.y18{bottom:664.253333pt;}
.y9a{bottom:666.813333pt;}
.y77{bottom:676.093333pt;}
.yb3{bottom:678.333333pt;}
.y4a{bottom:681.853333pt;}
.y99{bottom:684.893333pt;}
.y76{bottom:694.493333pt;}
.yb2{bottom:695.133333pt;}
.y49{bottom:700.253333pt;}
.y98{bottom:702.173333pt;}
.y17{bottom:703.773333pt;}
.y75{bottom:712.893333pt;}
.y48{bottom:718.653333pt;}
.y97{bottom:720.093333pt;}
.y16{bottom:722.493333pt;}
.yb1{bottom:728.893333pt;}
.y74{bottom:731.293333pt;}
.y96{bottom:733.533333pt;}
.y47{bottom:737.053333pt;}
.y15{bottom:742.333333pt;}
.yb0{bottom:745.853333pt;}
.y73{bottom:749.693333pt;}
.y46{bottom:755.453333pt;}
.y14{bottom:761.853333pt;}
.yaf{bottom:762.653333pt;}
.y72{bottom:768.093333pt;}
.y45{bottom:773.853333pt;}
.yae{bottom:779.453333pt;}
.y13{bottom:782.333333pt;}
.y71{bottom:786.533333pt;}
.y44{bottom:792.293333pt;}
.yad{bottom:796.453333pt;}
.y12{bottom:801.733333pt;}
.y70{bottom:804.933333pt;}
.y43{bottom:810.693333pt;}
.yac{bottom:813.253333pt;}
.y11{bottom:821.893333pt;}
.y6f{bottom:823.173333pt;}
.y42{bottom:829.093333pt;}
.yab{bottom:830.213333pt;}
.y10{bottom:840.453333pt;}
.y6e{bottom:842.693333pt;}
.y41{bottom:847.493333pt;}
.y6d{bottom:862.213333pt;}
.y40{bottom:865.893333pt;}
.y6c{bottom:881.893333pt;}
.yf{bottom:883.173333pt;}
.y3f{bottom:884.293333pt;}
.y6b{bottom:901.413333pt;}
.ye{bottom:901.893333pt;}
.y3e{bottom:902.693333pt;}
.y3d{bottom:921.093333pt;}
.yd{bottom:923.333333pt;}
.y3c{bottom:939.493333pt;}
.yc{bottom:944.133333pt;}
.y6{bottom:957.413333pt;}
.y3b{bottom:957.893333pt;}
.y69{bottom:972.293333pt;}
.y3a{bottom:976.293333pt;}
.y39{bottom:994.693333pt;}
.y38{bottom:1013.120000pt;}
.y2{bottom:1031.520000pt;}
.y1{bottom:1059.680000pt;}
.h14{height:18.386667pt;}
.h15{height:36.786667pt;}
.h3{height:40.163750pt;}
.hb{height:50.025000pt;}
.h13{height:51.893750pt;}
.he{height:55.226667pt;}
.hd{height:56.406250pt;}
.hc{height:57.758750pt;}
.h4{height:57.787500pt;}
.h12{height:60.519362pt;}
.h11{height:62.781250pt;}
.h7{height:62.812500pt;}
.h8{height:64.752187pt;}
.h10{height:65.781915pt;}
.h2{height:67.803750pt;}
.h5{height:67.837500pt;}
.ha{height:69.660000pt;}
.h6{height:70.106667pt;}
.h9{height:75.465000pt;}
.hf{height:293.334375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:49.950667pt;}
.w4{width:73.306667pt;}
.w3{width:160.653333pt;}
.w6{width:300.225333pt;}
.w7{width:356.733333pt;}
.w2{width:422.972000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.038667pt;}
.x1a{left:40.506667pt;}
.x2{left:68.481333pt;}
.x1{left:75.520000pt;}
.x7{left:77.146667pt;}
.x9{left:113.632000pt;}
.x12{left:125.472000pt;}
.x18{left:152.186667pt;}
.x5{left:153.466667pt;}
.xa{left:155.546667pt;}
.xb{left:208.506667pt;}
.xd{left:246.306667pt;}
.x15{left:259.746667pt;}
.x11{left:320.866667pt;}
.xc{left:343.426667pt;}
.xe{left:363.906667pt;}
.x19{left:368.706667pt;}
.x10{left:369.986667pt;}
.x14{left:396.893333pt;}
.x16{left:415.773333pt;}
.xf{left:422.973333pt;}
.x4{left:491.466667pt;}
.x17{left:644.293333pt;}
.x6{left:652.133333pt;}
.x13{left:660.453333pt;}
.x8{left:718.240000pt;}
}




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