
    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_b651e802452f94153a7892ec.woff')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_ace23d4c4ed7fcc561a57f0c.woff')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_4d12aa2e95198ff3e5366d29.woff')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_e959d517ab3a4687b4da80f5.woff')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_cb831bfc45030f6d94299355.woff')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_62d2eba6731601fdd3ff5d49.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_ce9faebeba0c2652e1a3b0f3.woff')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_f25531db1a85f1e81f412504.woff')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_544c316fb602a1d72725883c.woff')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6deb7af2a8c26489f455b883.woff')format("woff");}.ffa{font-family:ffa;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);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.144000px;}
.ls5{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.072000px;}
.ls1d{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.504000px;}
.ls15{letter-spacing:2.160000px;}
.ls1{letter-spacing:3.600000px;}
.ls2{letter-spacing:5.040000px;}
.ls9{letter-spacing:5.760000px;}
.ls12{letter-spacing:8.640000px;}
.ls14{letter-spacing:12.240000px;}
.ls13{letter-spacing:12.420000px;}
.ls7{letter-spacing:12.960000px;}
.ls3{letter-spacing:13.680000px;}
.lsa{letter-spacing:14.400000px;}
.ls1c{letter-spacing:18.720000px;}
.ls11{letter-spacing:20.160000px;}
.lse{letter-spacing:21.600000px;}
.lsc{letter-spacing:23.040000px;}
.ls0{letter-spacing:24.480000px;}
.ls17{letter-spacing:26.640000px;}
.lsb{letter-spacing:30.240000px;}
.ls18{letter-spacing:30.384000px;}
.ls1b{letter-spacing:31.104000px;}
.ls1a{letter-spacing:41.040000px;}
.ls19{letter-spacing:53.280000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-18.288000px;}
.ws2{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws0{word-spacing:-16.560000px;}
.ws5{word-spacing:-12.060000px;}
.ws3{word-spacing:0.000000px;}
._2{margin-left:-9.720000px;}
._7{margin-left:-8.280000px;}
._6{margin-left:-6.624000px;}
._4{margin-left:-5.040000px;}
._1{margin-left:-4.032000px;}
._5{margin-left:-2.880000px;}
._3{margin-left:-1.584000px;}
._0{width:1.224000px;}
._e{width:2.472000px;}
._1c{width:3.732000px;}
._1d{width:5.268000px;}
._18{width:6.552000px;}
._16{width:8.064000px;}
._17{width:9.144000px;}
._1b{width:10.296000px;}
._8{width:11.484000px;}
._9{width:12.924000px;}
._1e{width:14.544000px;}
._21{width:16.344000px;}
._c{width:19.440000px;}
._11{width:21.096000px;}
._12{width:22.104000px;}
._22{width:23.760000px;}
._d{width:24.768000px;}
._29{width:25.776000px;}
._26{width:27.360000px;}
._27{width:28.656000px;}
._32{width:30.288000px;}
._14{width:31.320000px;}
._13{width:32.328000px;}
._1f{width:33.552000px;}
._a{width:34.704000px;}
._15{width:36.144000px;}
._33{width:37.260000px;}
._38{width:38.304000px;}
._35{width:39.312000px;}
._34{width:40.392000px;}
._39{width:41.544000px;}
._23{width:42.552000px;}
._24{width:43.632000px;}
._37{width:45.720000px;}
._b{width:46.944000px;}
._25{width:48.312000px;}
._28{width:49.404000px;}
._f{width:50.976000px;}
._10{width:52.128000px;}
._1a{width:54.000000px;}
._19{width:55.008000px;}
._2a{width:56.268000px;}
._2e{width:57.528000px;}
._2f{width:59.244000px;}
._2b{width:60.336000px;}
._20{width:62.568000px;}
._30{width:67.752000px;}
._31{width:68.832000px;}
._2d{width:84.108000px;}
._2c{width:85.248000px;}
._36{width:126.792000px;}
._3c{width:129.456000px;}
._3b{width:130.824000px;}
._3a{width:131.904000px;}
.fc5{color:transparent;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:48.240000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.620000px;}
.y3d{bottom:7.380000px;}
.y7e{bottom:7.410000px;}
.y41{bottom:7.560000px;}
.y3c{bottom:31.140000px;}
.ya7{bottom:31.170000px;}
.y46{bottom:31.320000px;}
.ya2{bottom:31.365000px;}
.ya5{bottom:54.894000px;}
.yb9{bottom:54.900000px;}
.y3b{bottom:54.945000px;}
.y9f{bottom:55.080000px;}
.ya1{bottom:55.125000px;}
.y5{bottom:57.636000px;}
.y1{bottom:68.976000px;}
.y4{bottom:77.796000px;}
.y3a{bottom:78.705000px;}
.y9e{bottom:78.840000px;}
.ya4{bottom:101.376000px;}
.y9d{bottom:102.600000px;}
.y39{bottom:102.645000px;}
.y7b{bottom:103.536000px;}
.yce{bottom:108.036000px;}
.y32{bottom:113.976000px;}
.y76{bottom:128.016000px;}
.ycd{bottom:131.796000px;}
.y31{bottom:137.736000px;}
.yb7{bottom:151.740000px;}
.y75{bottom:151.770000px;}
.y7a{bottom:152.670000px;}
.ycc{bottom:155.550000px;}
.y30{bottom:161.490000px;}
.ya3{bottom:173.370000px;}
.y74{bottom:175.530000px;}
.y79{bottom:177.150000px;}
.ycb{bottom:179.310000px;}
.y2f{bottom:185.430000px;}
.y73{bottom:199.470000px;}
.yca{bottom:203.250000px;}
.y2e{bottom:209.190000px;}
.y72{bottom:223.230000px;}
.yc9{bottom:227.010000px;}
.y2d{bottom:232.950000px;}
.ya0{bottom:245.550000px;}
.y71{bottom:246.990000px;}
.yc8{bottom:250.770000px;}
.y2c{bottom:256.710000px;}
.y70{bottom:270.750000px;}
.yc7{bottom:274.530000px;}
.y2b{bottom:280.695000px;}
.y6f{bottom:294.555000px;}
.yc6{bottom:298.515000px;}
.y2a{bottom:304.455000px;}
.y66{bottom:312.915000px;}
.y9c{bottom:317.775000px;}
.y6e{bottom:318.495000px;}
.y51{bottom:320.655000px;}
.yc5{bottom:322.275000px;}
.y29{bottom:328.215000px;}
.y65{bottom:336.855000px;}
.y6d{bottom:342.255000px;}
.y50{bottom:344.595000px;}
.yc4{bottom:346.035000px;}
.y28{bottom:351.975000px;}
.y64{bottom:360.615000px;}
.y6c{bottom:361.695000px;}
.y4f{bottom:368.355000px;}
.yc3{bottom:369.795000px;}
.y27{bottom:375.915000px;}
.y63{bottom:384.375000px;}
.y4e{bottom:392.115000px;}
.yc2{bottom:393.735000px;}
.y26{bottom:399.675000px;}
.y62{bottom:408.135000px;}
.y4d{bottom:415.875000px;}
.yc1{bottom:417.495000px;}
.y25{bottom:423.435000px;}
.y61{bottom:432.075000px;}
.y4c{bottom:439.815000px;}
.yc0{bottom:441.255000px;}
.y9b{bottom:445.035000px;}
.y24{bottom:447.195000px;}
.y60{bottom:455.835000px;}
.y4b{bottom:463.575000px;}
.ybf{bottom:465.015000px;}
.y9a{bottom:468.795000px;}
.y23{bottom:471.135000px;}
.y5f{bottom:479.595000px;}
.y4a{bottom:487.335000px;}
.ybe{bottom:488.775000px;}
.y99{bottom:492.555000px;}
.y22{bottom:494.895000px;}
.y5e{bottom:503.355000px;}
.y49{bottom:511.095000px;}
.ybd{bottom:512.715000px;}
.y98{bottom:516.495000px;}
.y21{bottom:518.655000px;}
.y5d{bottom:527.295000px;}
.y48{bottom:535.035000px;}
.ybc{bottom:536.475000px;}
.y97{bottom:540.255000px;}
.y20{bottom:542.415000px;}
.y5c{bottom:551.055000px;}
.y47{bottom:552.135000px;}
.ybb{bottom:560.235000px;}
.y96{bottom:564.045000px;}
.y1f{bottom:566.385000px;}
.y5b{bottom:574.845000px;}
.y45{bottom:576.645000px;}
.yba{bottom:577.365000px;}
.y95{bottom:587.805000px;}
.y1e{bottom:589.785000px;}
.y78{bottom:590.145000px;}
.y5a{bottom:598.605000px;}
.yb6{bottom:602.025000px;}
.y94{bottom:611.745000px;}
.y1d{bottom:613.545000px;}
.y77{bottom:613.905000px;}
.y59{bottom:622.365000px;}
.y44{bottom:625.065000px;}
.y93{bottom:635.505000px;}
.y1c{bottom:637.665000px;}
.y58{bottom:646.305000px;}
.y92{bottom:659.265000px;}
.y1b{bottom:661.425000px;}
.y57{bottom:670.065000px;}
.y43{bottom:673.305000px;}
.yb8{bottom:674.205000px;}
.y91{bottom:683.025000px;}
.y1a{bottom:685.365000px;}
.y56{bottom:693.825000px;}
.y42{bottom:697.965000px;}
.y90{bottom:706.785000px;}
.y19{bottom:709.125000px;}
.y55{bottom:717.585000px;}
.y40{bottom:722.445000px;}
.y6b{bottom:724.245000px;}
.y8f{bottom:730.725000px;}
.y18{bottom:732.885000px;}
.y54{bottom:741.525000px;}
.y3f{bottom:747.105000px;}
.y6a{bottom:748.005000px;}
.y8e{bottom:754.485000px;}
.y17{bottom:756.645000px;}
.y53{bottom:765.285000px;}
.yb5{bottom:770.865000px;}
.y3e{bottom:771.585000px;}
.y69{bottom:771.765000px;}
.y8d{bottom:778.245000px;}
.y16{bottom:780.585000px;}
.y52{bottom:789.045000px;}
.y68{bottom:795.525000px;}
.y38{bottom:796.245000px;}
.y8c{bottom:802.005000px;}
.y15{bottom:804.345000px;}
.y67{bottom:819.465000px;}
.y8b{bottom:825.945000px;}
.yb4{bottom:826.665000px;}
.y14{bottom:828.105000px;}
.y8a{bottom:849.750000px;}
.yb3{bottom:850.470000px;}
.y13{bottom:851.910000px;}
.y89{bottom:873.510000px;}
.yb2{bottom:874.230000px;}
.y12{bottom:875.850000px;}
.y88{bottom:897.270000px;}
.yb1{bottom:898.170000px;}
.y11{bottom:899.610000px;}
.y87{bottom:921.210000px;}
.yb0{bottom:921.930000px;}
.y37{bottom:923.010000px;}
.y10{bottom:923.370000px;}
.ycf{bottom:924.810000px;}
.y86{bottom:944.970000px;}
.yaf{bottom:945.690000px;}
.yf{bottom:947.130000px;}
.y85{bottom:968.730000px;}
.yae{bottom:969.450000px;}
.ye{bottom:971.070000px;}
.y84{bottom:992.490000px;}
.yad{bottom:993.210000px;}
.yd{bottom:994.470000px;}
.y36{bottom:994.830000px;}
.y83{bottom:1016.430000px;}
.yac{bottom:1017.150000px;}
.yc{bottom:1018.590000px;}
.y82{bottom:1040.190000px;}
.yab{bottom:1040.910000px;}
.yb{bottom:1042.350000px;}
.y81{bottom:1063.950000px;}
.yaa{bottom:1064.670000px;}
.ya{bottom:1066.290000px;}
.y80{bottom:1087.710000px;}
.ya9{bottom:1088.430000px;}
.y9{bottom:1090.050000px;}
.y7f{bottom:1111.650000px;}
.ya8{bottom:1112.370000px;}
.y8{bottom:1113.450000px;}
.y35{bottom:1113.810000px;}
.y7d{bottom:1128.750000px;}
.ya6{bottom:1129.470000px;}
.y7{bottom:1137.240000px;}
.y34{bottom:1137.600000px;}
.y7c{bottom:1153.260000px;}
.y6{bottom:1161.180000px;}
.y33{bottom:1161.540000px;}
.y3{bottom:1193.580000px;}
.h2{height:16.920000px;}
.hc{height:23.760000px;}
.h10{height:23.796000px;}
.hd{height:23.940000px;}
.he{height:47.520000px;}
.h15{height:47.556000px;}
.hf{height:47.700000px;}
.ha{height:50.484375px;}
.h9{height:59.343750px;}
.h6{height:62.261719px;}
.h18{height:65.010937px;}
.h5{height:65.884219px;}
.h3{height:66.757500px;}
.h8{height:70.628906px;}
.h7{height:70.664062px;}
.h14{height:71.280000px;}
.h13{height:71.460000px;}
.h12{height:71.496000px;}
.h4{height:72.562500px;}
.h17{height:74.004654px;}
.h11{height:118.980000px;}
.hb{height:119.016000px;}
.h16{height:168.120000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:41.400000px;}
.w2{width:43.020000px;}
.w1c{width:51.660000px;}
.w9{width:55.980000px;}
.w15{width:62.640000px;}
.w14{width:82.116000px;}
.w18{width:83.880000px;}
.w1a{width:84.456000px;}
.wf{width:102.780000px;}
.w6{width:102.816000px;}
.w8{width:106.416000px;}
.w5{width:107.100000px;}
.w7{width:108.180000px;}
.w1b{width:108.900000px;}
.w17{width:109.836000px;}
.wc{width:111.600000px;}
.w1d{width:112.860000px;}
.w12{width:116.676000px;}
.w11{width:116.820000px;}
.we{width:131.616000px;}
.w13{width:138.600000px;}
.w19{width:147.996000px;}
.wd{width:150.510000px;}
.w16{width:165.240000px;}
.wb{width:169.410000px;}
.w10{width:179.670000px;}
.w4{width:233.130000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:7.740000px;}
.x1a{left:9.180000px;}
.x2{left:13.320000px;}
.x13{left:119.916000px;}
.xf{left:127.655987px;}
.x28{left:131.075987px;}
.x12{left:136.835987px;}
.x22{left:139.175987px;}
.x2f{left:154.649987px;}
.x3{left:159.689987px;}
.x1e{left:162.030000px;}
.x6{left:172.469987px;}
.x10{left:174.629987px;}
.xe{left:180.749987px;}
.x1d{left:182.369987px;}
.xa{left:191.189987px;}
.xc{left:212.969987px;}
.x30{left:223.409987px;}
.x11{left:250.229987px;}
.x7{left:284.789987px;}
.x2a{left:285.870000px;}
.x9{left:297.434987px;}
.x24{left:300.315000px;}
.xd{left:317.054987px;}
.x8{left:332.894987px;}
.xb{left:343.874987px;}
.x15{left:353.775000px;}
.x2b{left:396.435000px;}
.x25{left:417.855000px;}
.x23{left:438.014987px;}
.x1{left:439.815000px;}
.x1f{left:444.495000px;}
.x16{left:461.595000px;}
.x29{left:469.514987px;}
.x5{left:478.514987px;}
.x2c{left:481.035000px;}
.x26{left:535.245000px;}
.x17{left:565.125000px;}
.x20{left:595.725000px;}
.x2d{left:629.745000px;}
.x18{left:674.025000px;}
.x2e{left:714.930000px;}
.x21{left:728.250000px;}
.x1c{left:737.969987px;}
.x27{left:757.410000px;}
.x19{left:781.170000px;}
.x1b{left:797.909987px;}
.x4{left:829.409987px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.064000pt;}
.ls1d{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.448000pt;}
.ls15{letter-spacing:1.920000pt;}
.ls1{letter-spacing:3.200000pt;}
.ls2{letter-spacing:4.480000pt;}
.ls9{letter-spacing:5.120000pt;}
.ls12{letter-spacing:7.680000pt;}
.ls14{letter-spacing:10.880000pt;}
.ls13{letter-spacing:11.040000pt;}
.ls7{letter-spacing:11.520000pt;}
.ls3{letter-spacing:12.160000pt;}
.lsa{letter-spacing:12.800000pt;}
.ls1c{letter-spacing:16.640000pt;}
.ls11{letter-spacing:17.920000pt;}
.lse{letter-spacing:19.200000pt;}
.lsc{letter-spacing:20.480000pt;}
.ls0{letter-spacing:21.760000pt;}
.ls17{letter-spacing:23.680000pt;}
.lsb{letter-spacing:26.880000pt;}
.ls18{letter-spacing:27.008000pt;}
.ls1b{letter-spacing:27.648000pt;}
.ls1a{letter-spacing:36.480000pt;}
.ls19{letter-spacing:47.360000pt;}
.ws4{word-spacing:-16.256000pt;}
.ws2{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5{word-spacing:-10.720000pt;}
.ws3{word-spacing:0.000000pt;}
._2{margin-left:-8.640000pt;}
._7{margin-left:-7.360000pt;}
._6{margin-left:-5.888000pt;}
._4{margin-left:-4.480000pt;}
._1{margin-left:-3.584000pt;}
._5{margin-left:-2.560000pt;}
._3{margin-left:-1.408000pt;}
._0{width:1.088000pt;}
._e{width:2.197333pt;}
._1c{width:3.317333pt;}
._1d{width:4.682667pt;}
._18{width:5.824000pt;}
._16{width:7.168000pt;}
._17{width:8.128000pt;}
._1b{width:9.152000pt;}
._8{width:10.208000pt;}
._9{width:11.488000pt;}
._1e{width:12.928000pt;}
._21{width:14.528000pt;}
._c{width:17.280000pt;}
._11{width:18.752000pt;}
._12{width:19.648000pt;}
._22{width:21.120000pt;}
._d{width:22.016000pt;}
._29{width:22.912000pt;}
._26{width:24.320000pt;}
._27{width:25.472000pt;}
._32{width:26.922667pt;}
._14{width:27.840000pt;}
._13{width:28.736000pt;}
._1f{width:29.824000pt;}
._a{width:30.848000pt;}
._15{width:32.128000pt;}
._33{width:33.120000pt;}
._38{width:34.048000pt;}
._35{width:34.944000pt;}
._34{width:35.904000pt;}
._39{width:36.928000pt;}
._23{width:37.824000pt;}
._24{width:38.784000pt;}
._37{width:40.640000pt;}
._b{width:41.728000pt;}
._25{width:42.944000pt;}
._28{width:43.914667pt;}
._f{width:45.312000pt;}
._10{width:46.336000pt;}
._1a{width:48.000000pt;}
._19{width:48.896000pt;}
._2a{width:50.016000pt;}
._2e{width:51.136000pt;}
._2f{width:52.661333pt;}
._2b{width:53.632000pt;}
._20{width:55.616000pt;}
._30{width:60.224000pt;}
._31{width:61.184000pt;}
._2d{width:74.762667pt;}
._2c{width:75.776000pt;}
._36{width:112.704000pt;}
._3c{width:115.072000pt;}
._3b{width:116.288000pt;}
._3a{width:117.248000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.440000pt;}
.y3d{bottom:6.560000pt;}
.y7e{bottom:6.586667pt;}
.y41{bottom:6.720000pt;}
.y3c{bottom:27.680000pt;}
.ya7{bottom:27.706667pt;}
.y46{bottom:27.840000pt;}
.ya2{bottom:27.880000pt;}
.ya5{bottom:48.794667pt;}
.yb9{bottom:48.800000pt;}
.y3b{bottom:48.840000pt;}
.y9f{bottom:48.960000pt;}
.ya1{bottom:49.000000pt;}
.y5{bottom:51.232000pt;}
.y1{bottom:61.312000pt;}
.y4{bottom:69.152000pt;}
.y3a{bottom:69.960000pt;}
.y9e{bottom:70.080000pt;}
.ya4{bottom:90.112000pt;}
.y9d{bottom:91.200000pt;}
.y39{bottom:91.240000pt;}
.y7b{bottom:92.032000pt;}
.yce{bottom:96.032000pt;}
.y32{bottom:101.312000pt;}
.y76{bottom:113.792000pt;}
.ycd{bottom:117.152000pt;}
.y31{bottom:122.432000pt;}
.yb7{bottom:134.880000pt;}
.y75{bottom:134.906667pt;}
.y7a{bottom:135.706667pt;}
.ycc{bottom:138.266667pt;}
.y30{bottom:143.546667pt;}
.ya3{bottom:154.106667pt;}
.y74{bottom:156.026667pt;}
.y79{bottom:157.466667pt;}
.ycb{bottom:159.386667pt;}
.y2f{bottom:164.826667pt;}
.y73{bottom:177.306667pt;}
.yca{bottom:180.666667pt;}
.y2e{bottom:185.946667pt;}
.y72{bottom:198.426667pt;}
.yc9{bottom:201.786667pt;}
.y2d{bottom:207.066667pt;}
.ya0{bottom:218.266667pt;}
.y71{bottom:219.546667pt;}
.yc8{bottom:222.906667pt;}
.y2c{bottom:228.186667pt;}
.y70{bottom:240.666667pt;}
.yc7{bottom:244.026667pt;}
.y2b{bottom:249.506667pt;}
.y6f{bottom:261.826667pt;}
.yc6{bottom:265.346667pt;}
.y2a{bottom:270.626667pt;}
.y66{bottom:278.146667pt;}
.y9c{bottom:282.466667pt;}
.y6e{bottom:283.106667pt;}
.y51{bottom:285.026667pt;}
.yc5{bottom:286.466667pt;}
.y29{bottom:291.746667pt;}
.y65{bottom:299.426667pt;}
.y6d{bottom:304.226667pt;}
.y50{bottom:306.306667pt;}
.yc4{bottom:307.586667pt;}
.y28{bottom:312.866667pt;}
.y64{bottom:320.546667pt;}
.y6c{bottom:321.506667pt;}
.y4f{bottom:327.426667pt;}
.yc3{bottom:328.706667pt;}
.y27{bottom:334.146667pt;}
.y63{bottom:341.666667pt;}
.y4e{bottom:348.546667pt;}
.yc2{bottom:349.986667pt;}
.y26{bottom:355.266667pt;}
.y62{bottom:362.786667pt;}
.y4d{bottom:369.666667pt;}
.yc1{bottom:371.106667pt;}
.y25{bottom:376.386667pt;}
.y61{bottom:384.066667pt;}
.y4c{bottom:390.946667pt;}
.yc0{bottom:392.226667pt;}
.y9b{bottom:395.586667pt;}
.y24{bottom:397.506667pt;}
.y60{bottom:405.186667pt;}
.y4b{bottom:412.066667pt;}
.ybf{bottom:413.346667pt;}
.y9a{bottom:416.706667pt;}
.y23{bottom:418.786667pt;}
.y5f{bottom:426.306667pt;}
.y4a{bottom:433.186667pt;}
.ybe{bottom:434.466667pt;}
.y99{bottom:437.826667pt;}
.y22{bottom:439.906667pt;}
.y5e{bottom:447.426667pt;}
.y49{bottom:454.306667pt;}
.ybd{bottom:455.746667pt;}
.y98{bottom:459.106667pt;}
.y21{bottom:461.026667pt;}
.y5d{bottom:468.706667pt;}
.y48{bottom:475.586667pt;}
.ybc{bottom:476.866667pt;}
.y97{bottom:480.226667pt;}
.y20{bottom:482.146667pt;}
.y5c{bottom:489.826667pt;}
.y47{bottom:490.786667pt;}
.ybb{bottom:497.986667pt;}
.y96{bottom:501.373333pt;}
.y1f{bottom:503.453333pt;}
.y5b{bottom:510.973333pt;}
.y45{bottom:512.573333pt;}
.yba{bottom:513.213333pt;}
.y95{bottom:522.493333pt;}
.y1e{bottom:524.253333pt;}
.y78{bottom:524.573333pt;}
.y5a{bottom:532.093333pt;}
.yb6{bottom:535.133333pt;}
.y94{bottom:543.773333pt;}
.y1d{bottom:545.373333pt;}
.y77{bottom:545.693333pt;}
.y59{bottom:553.213333pt;}
.y44{bottom:555.613333pt;}
.y93{bottom:564.893333pt;}
.y1c{bottom:566.813333pt;}
.y58{bottom:574.493333pt;}
.y92{bottom:586.013333pt;}
.y1b{bottom:587.933333pt;}
.y57{bottom:595.613333pt;}
.y43{bottom:598.493333pt;}
.yb8{bottom:599.293333pt;}
.y91{bottom:607.133333pt;}
.y1a{bottom:609.213333pt;}
.y56{bottom:616.733333pt;}
.y42{bottom:620.413333pt;}
.y90{bottom:628.253333pt;}
.y19{bottom:630.333333pt;}
.y55{bottom:637.853333pt;}
.y40{bottom:642.173333pt;}
.y6b{bottom:643.773333pt;}
.y8f{bottom:649.533333pt;}
.y18{bottom:651.453333pt;}
.y54{bottom:659.133333pt;}
.y3f{bottom:664.093333pt;}
.y6a{bottom:664.893333pt;}
.y8e{bottom:670.653333pt;}
.y17{bottom:672.573333pt;}
.y53{bottom:680.253333pt;}
.yb5{bottom:685.213333pt;}
.y3e{bottom:685.853333pt;}
.y69{bottom:686.013333pt;}
.y8d{bottom:691.773333pt;}
.y16{bottom:693.853333pt;}
.y52{bottom:701.373333pt;}
.y68{bottom:707.133333pt;}
.y38{bottom:707.773333pt;}
.y8c{bottom:712.893333pt;}
.y15{bottom:714.973333pt;}
.y67{bottom:728.413333pt;}
.y8b{bottom:734.173333pt;}
.yb4{bottom:734.813333pt;}
.y14{bottom:736.093333pt;}
.y8a{bottom:755.333333pt;}
.yb3{bottom:755.973333pt;}
.y13{bottom:757.253333pt;}
.y89{bottom:776.453333pt;}
.yb2{bottom:777.093333pt;}
.y12{bottom:778.533333pt;}
.y88{bottom:797.573333pt;}
.yb1{bottom:798.373333pt;}
.y11{bottom:799.653333pt;}
.y87{bottom:818.853333pt;}
.yb0{bottom:819.493333pt;}
.y37{bottom:820.453333pt;}
.y10{bottom:820.773333pt;}
.ycf{bottom:822.053333pt;}
.y86{bottom:839.973333pt;}
.yaf{bottom:840.613333pt;}
.yf{bottom:841.893333pt;}
.y85{bottom:861.093333pt;}
.yae{bottom:861.733333pt;}
.ye{bottom:863.173333pt;}
.y84{bottom:882.213333pt;}
.yad{bottom:882.853333pt;}
.yd{bottom:883.973333pt;}
.y36{bottom:884.293333pt;}
.y83{bottom:903.493333pt;}
.yac{bottom:904.133333pt;}
.yc{bottom:905.413333pt;}
.y82{bottom:924.613333pt;}
.yab{bottom:925.253333pt;}
.yb{bottom:926.533333pt;}
.y81{bottom:945.733333pt;}
.yaa{bottom:946.373333pt;}
.ya{bottom:947.813333pt;}
.y80{bottom:966.853333pt;}
.ya9{bottom:967.493333pt;}
.y9{bottom:968.933333pt;}
.y7f{bottom:988.133333pt;}
.ya8{bottom:988.773333pt;}
.y8{bottom:989.733333pt;}
.y35{bottom:990.053333pt;}
.y7d{bottom:1003.333333pt;}
.ya6{bottom:1003.973333pt;}
.y7{bottom:1010.880000pt;}
.y34{bottom:1011.200000pt;}
.y7c{bottom:1025.120000pt;}
.y6{bottom:1032.160000pt;}
.y33{bottom:1032.480000pt;}
.y3{bottom:1060.960000pt;}
.h2{height:15.040000pt;}
.hc{height:21.120000pt;}
.h10{height:21.152000pt;}
.hd{height:21.280000pt;}
.he{height:42.240000pt;}
.h15{height:42.272000pt;}
.hf{height:42.400000pt;}
.ha{height:44.875000pt;}
.h9{height:52.750000pt;}
.h6{height:55.343750pt;}
.h18{height:57.787500pt;}
.h5{height:58.563750pt;}
.h3{height:59.340000pt;}
.h8{height:62.781250pt;}
.h7{height:62.812500pt;}
.h14{height:63.360000pt;}
.h13{height:63.520000pt;}
.h12{height:63.552000pt;}
.h4{height:64.500000pt;}
.h17{height:65.781915pt;}
.h11{height:105.760000pt;}
.hb{height:105.792000pt;}
.h16{height:149.440000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:36.800000pt;}
.w2{width:38.240000pt;}
.w1c{width:45.920000pt;}
.w9{width:49.760000pt;}
.w15{width:55.680000pt;}
.w14{width:72.992000pt;}
.w18{width:74.560000pt;}
.w1a{width:75.072000pt;}
.wf{width:91.360000pt;}
.w6{width:91.392000pt;}
.w8{width:94.592000pt;}
.w5{width:95.200000pt;}
.w7{width:96.160000pt;}
.w1b{width:96.800000pt;}
.w17{width:97.632000pt;}
.wc{width:99.200000pt;}
.w1d{width:100.320000pt;}
.w12{width:103.712000pt;}
.w11{width:103.840000pt;}
.we{width:116.992000pt;}
.w13{width:123.200000pt;}
.w19{width:131.552000pt;}
.wd{width:133.786667pt;}
.w16{width:146.880000pt;}
.wb{width:150.586667pt;}
.w10{width:159.706667pt;}
.w4{width:207.226667pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:6.880000pt;}
.x1a{left:8.160000pt;}
.x2{left:11.840000pt;}
.x13{left:106.592000pt;}
.xf{left:113.471988pt;}
.x28{left:116.511988pt;}
.x12{left:121.631988pt;}
.x22{left:123.711988pt;}
.x2f{left:137.466655pt;}
.x3{left:141.946655pt;}
.x1e{left:144.026667pt;}
.x6{left:153.306655pt;}
.x10{left:155.226655pt;}
.xe{left:160.666655pt;}
.x1d{left:162.106655pt;}
.xa{left:169.946655pt;}
.xc{left:189.306655pt;}
.x30{left:198.586655pt;}
.x11{left:222.426655pt;}
.x7{left:253.146655pt;}
.x2a{left:254.106667pt;}
.x9{left:264.386655pt;}
.x24{left:266.946667pt;}
.xd{left:281.826655pt;}
.x8{left:295.906655pt;}
.xb{left:305.666655pt;}
.x15{left:314.466667pt;}
.x2b{left:352.386667pt;}
.x25{left:371.426667pt;}
.x23{left:389.346655pt;}
.x1{left:390.946667pt;}
.x1f{left:395.106667pt;}
.x16{left:410.306667pt;}
.x29{left:417.346655pt;}
.x5{left:425.346655pt;}
.x2c{left:427.586667pt;}
.x26{left:475.773333pt;}
.x17{left:502.333333pt;}
.x20{left:529.533333pt;}
.x2d{left:559.773333pt;}
.x18{left:599.133333pt;}
.x2e{left:635.493333pt;}
.x21{left:647.333333pt;}
.x1c{left:655.973322pt;}
.x27{left:673.253333pt;}
.x19{left:694.373333pt;}
.x1b{left:709.253322pt;}
.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; }
  