
    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_a98b6e4aac77bc3b05f74f84.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.708008;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_350e7a1d6a56323c74c2fa02.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.999512;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_277aa5a12a1f5b2a92e89e8a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_6cee92c1890e25971a3e56d9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.981934;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_9ddf7d57e01c6d55ccf89a36.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.981934;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_eb6dc0098526ae5e8f224d46.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.053223;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_84ea6ba11f2bfe90f1243a5d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.053223;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_38816797e1e5a414586571c1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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_81df50b333189e661fda3178.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.996094;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_39d5e1fc8e2766a10df51813.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.999512;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_e4b71ad0f69ced10d8796630.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.999512;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:ffc;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_dd1b2051d1d1761696411bd8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.999512;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:ffe;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_07547d7a20ec6a6178f07c57.woff2')format("woff");}.fff{font-family:fff;line-height:1.202148;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:ff10;src:url('chunks/assets/font_832d85046c57fd5a24923334.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.985352;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:ff11;src:url('chunks/assets/font_320d1d4ccebc1fc9347652a9.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.172852;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:-81.360000px;}
.v0{vertical-align:0.000000px;}
.ls23{letter-spacing:-0.912000px;}
.ls22{letter-spacing:-0.322800px;}
.ls15{letter-spacing:-0.273600px;}
.ls14{letter-spacing:-0.270600px;}
.lsd{letter-spacing:-0.263400px;}
.lse{letter-spacing:-0.155400px;}
.ls13{letter-spacing:-0.150000px;}
.ls12{letter-spacing:-0.115200px;}
.lsf{letter-spacing:-0.008640px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.074880px;}
.ls16{letter-spacing:0.097800px;}
.ls21{letter-spacing:0.132480px;}
.ls0{letter-spacing:0.144000px;}
.ls20{letter-spacing:0.155520px;}
.ls10{letter-spacing:0.233400px;}
.ls11{letter-spacing:0.313800px;}
.lsa{letter-spacing:0.382080px;}
.ls1d{letter-spacing:3.905280px;}
.ls1b{letter-spacing:4.625280px;}
.ls1c{letter-spacing:6.785280px;}
.ls18{letter-spacing:8.225280px;}
.lsb{letter-spacing:8.945280px;}
.ls1e{letter-spacing:10.385280px;}
.ls19{letter-spacing:11.105280px;}
.ls17{letter-spacing:12.545280px;}
.lsc{letter-spacing:13.265280px;}
.ls1a{letter-spacing:13.985280px;}
.ls7{letter-spacing:37.745280px;}
.ls5{letter-spacing:38.465280px;}
.ls8{letter-spacing:40.625280px;}
.ls6{letter-spacing:42.065280px;}
.ls4{letter-spacing:42.785280px;}
.ls9{letter-spacing:44.225280px;}
.ls1f{letter-spacing:58.625280px;}
.ls2{letter-spacing:1428.060000px;}
.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;}
}
.wsb{word-spacing:-66.240000px;}
.ws2{word-spacing:-48.240000px;}
.wsd{word-spacing:-17.250960px;}
.ws0{word-spacing:-16.272000px;}
.wsf{word-spacing:-14.970240px;}
.wse{word-spacing:-14.058240px;}
.ws6{word-spacing:-13.561800px;}
.ws5{word-spacing:-13.481400px;}
.wsc{word-spacing:-13.248000px;}
.ws4{word-spacing:-13.239360px;}
.ws7{word-spacing:-13.132800px;}
.ws8{word-spacing:-13.098000px;}
.ws3{word-spacing:-13.092600px;}
.ws9{word-spacing:-12.977400px;}
.wsa{word-spacing:-12.974400px;}
.ws1{word-spacing:0.000000px;}
._6{margin-left:-90.947520px;}
._4{margin-left:-2.118720px;}
._2{margin-left:-1.051920px;}
._0{width:1.015920px;}
._5{width:3.098160px;}
._3{width:1256.756880px;}
._1{width:1631.285760px;}
.fcf{color:rgb(33,33,33);}
.fce{color:rgb(190,190,190);}
.fcd{color:rgb(155,155,155);}
.fc2{color:rgb(255,255,255);}
.fcc{color:rgb(244,244,244);}
.fc1{color:rgb(84,141,212);}
.fc3{color:rgb(0,0,204);}
.fc10{color:rgb(211,211,211);}
.fc5{color:rgb(0,0,255);}
.fc8{color:rgb(225,216,236);}
.fc4{color:rgb(0,112,192);}
.fc7{color:rgb(205,196,214);}
.fc9{color:rgb(153,142,164);}
.fc0{color:rgb(0,0,0);}
.fc6{color:rgb(180,172,188);}
.fca{color:rgb(243,238,248);}
.fcb{color:rgb(0,166,237);}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs5{font-size:108.000000px;}
.fs4{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:56.340000px;}
.y25{bottom:56.520000px;}
.y24{bottom:72.036000px;}
.y2{bottom:72.576000px;}
.y23{bottom:88.956000px;}
.y20{bottom:99.576000px;}
.y8d{bottom:113.616000px;}
.y58{bottom:114.696000px;}
.y1f{bottom:120.816000px;}
.y8c{bottom:133.776000px;}
.y57{bottom:134.856000px;}
.y1e{bottom:140.976000px;}
.y8b{bottom:153.930000px;}
.y56{bottom:155.010000px;}
.y1d{bottom:161.130000px;}
.y8a{bottom:174.090000px;}
.y55{bottom:175.170000px;}
.y1c{bottom:181.650000px;}
.y89{bottom:194.070000px;}
.y54{bottom:195.330000px;}
.y1b{bottom:203.610000px;}
.y88{bottom:214.230000px;}
.y53{bottom:215.490000px;}
.y87{bottom:234.390000px;}
.y52{bottom:235.650000px;}
.y1a{bottom:245.910000px;}
.y86{bottom:254.550000px;}
.y51{bottom:255.810000px;}
.y19{bottom:260.670000px;}
.y84{bottom:274.710000px;}
.y18{bottom:275.250000px;}
.y50{bottom:275.790000px;}
.y17{bottom:290.010000px;}
.y83{bottom:294.870000px;}
.y4f{bottom:295.950000px;}
.y16{bottom:304.590000px;}
.y82{bottom:315.030000px;}
.y4e{bottom:316.110000px;}
.y15{bottom:319.170000px;}
.y81{bottom:335.190000px;}
.y14{bottom:335.370000px;}
.y4d{bottom:336.270000px;}
.y80{bottom:355.395000px;}
.y4c{bottom:356.475000px;}
.y13{bottom:357.375000px;}
.y7f{bottom:375.555000px;}
.y4b{bottom:376.635000px;}
.y12{bottom:380.235000px;}
.y7e{bottom:395.535000px;}
.y4a{bottom:396.795000px;}
.y11{bottom:405.795000px;}
.y7d{bottom:415.695000px;}
.y49{bottom:416.955000px;}
.y10{bottom:431.535000px;}
.y7c{bottom:435.855000px;}
.y48{bottom:437.115000px;}
.y7b{bottom:456.015000px;}
.yf{bottom:457.095000px;}
.y47{bottom:457.275000px;}
.y7a{bottom:476.175000px;}
.y46{bottom:477.255000px;}
.ye{bottom:482.835000px;}
.y79{bottom:496.335000px;}
.y45{bottom:497.415000px;}
.yd{bottom:507.675000px;}
.y78{bottom:516.495000px;}
.y44{bottom:517.575000px;}
.ya3{bottom:521.355000px;}
.yc{bottom:529.635000px;}
.y77{bottom:536.655000px;}
.y43{bottom:537.735000px;}
.ya2{bottom:543.315000px;}
.yb{bottom:551.595000px;}
.y76{bottom:556.815000px;}
.y42{bottom:557.895000px;}
.ya1{bottom:565.275000px;}
.ya{bottom:573.555000px;}
.y75{bottom:576.975000px;}
.y41{bottom:578.055000px;}
.ya0{bottom:587.235000px;}
.y74{bottom:596.955000px;}
.y9{bottom:597.855000px;}
.y40{bottom:598.215000px;}
.y9f{bottom:609.225000px;}
.y73{bottom:617.145000px;}
.y3f{bottom:618.405000px;}
.y8{bottom:630.825000px;}
.y9e{bottom:631.185000px;}
.y72{bottom:637.305000px;}
.y3e{bottom:638.565000px;}
.y7{bottom:656.565000px;}
.y9d{bottom:657.285000px;}
.y71{bottom:657.465000px;}
.y3d{bottom:658.725000px;}
.y70{bottom:677.625000px;}
.y3c{bottom:678.705000px;}
.y9c{bottom:683.925000px;}
.y6f{bottom:697.785000px;}
.y3b{bottom:698.865000px;}
.y9b{bottom:710.745000px;}
.y6e{bottom:717.945000px;}
.y3a{bottom:719.025000px;}
.y9a{bottom:737.565000px;}
.y6d{bottom:738.105000px;}
.y39{bottom:739.185000px;}
.y6c{bottom:758.265000px;}
.y38{bottom:759.345000px;}
.y99{bottom:767.445000px;}
.y6b{bottom:778.425000px;}
.y37{bottom:779.505000px;}
.y6a{bottom:798.405000px;}
.y36{bottom:799.665000px;}
.y98{bottom:808.485000px;}
.y69{bottom:818.565000px;}
.y35{bottom:819.825000px;}
.y97{bottom:829.545000px;}
.y68{bottom:838.725000px;}
.y34{bottom:839.985000px;}
.y67{bottom:858.885000px;}
.y33{bottom:859.965000px;}
.y96{bottom:864.105000px;}
.y66{bottom:879.090000px;}
.y32{bottom:880.170000px;}
.y95{bottom:884.310000px;}
.y65{bottom:899.250000px;}
.y31{bottom:900.330000px;}
.y94{bottom:914.190000px;}
.y64{bottom:919.410000px;}
.y30{bottom:920.490000px;}
.y63{bottom:939.570000px;}
.y2f{bottom:940.650000px;}
.y93{bottom:955.230000px;}
.y62{bottom:959.730000px;}
.y2e{bottom:960.810000px;}
.y92{bottom:975.390000px;}
.y61{bottom:979.890000px;}
.y2d{bottom:980.970000px;}
.y60{bottom:999.870000px;}
.y2c{bottom:1001.130000px;}
.y91{bottom:1009.770000px;}
.y5f{bottom:1020.030000px;}
.y2b{bottom:1021.290000px;}
.y90{bottom:1029.930000px;}
.y5e{bottom:1040.190000px;}
.y2a{bottom:1041.450000px;}
.y5d{bottom:1060.350000px;}
.y29{bottom:1061.430000px;}
.y8f{bottom:1064.490000px;}
.y5c{bottom:1080.510000px;}
.y28{bottom:1081.590000px;}
.y8e{bottom:1094.370000px;}
.y6{bottom:1099.950000px;}
.y5b{bottom:1100.670000px;}
.y27{bottom:1101.750000px;}
.y5a{bottom:1120.830000px;}
.y5{bottom:1123.890000px;}
.y26{bottom:1136.670000px;}
.y59{bottom:1141.020000px;}
.y4{bottom:1142.280000px;}
.y22{bottom:1177.740000px;}
.y85{bottom:1185.120000px;}
.y21{bottom:1189.080000px;}
.y1{bottom:1193.040000px;}
.h4{height:36.674648px;}
.hc{height:38.771016px;}
.h10{height:41.456250px;}
.hd{height:42.186445px;}
.h11{height:47.980898px;}
.h2{height:49.992188px;}
.h12{height:50.359219px;}
.h3{height:54.738281px;}
.h9{height:57.867188px;}
.hb{height:57.927656px;}
.h5{height:61.189805px;}
.h14{height:65.884219px;}
.ha{height:67.704609px;}
.hf{height:67.824844px;}
.h15{height:71.613281px;}
.he{height:73.722656px;}
.h13{height:79.620469px;}
.h6{height:86.255508px;}
.h8{height:110.583984px;}
.h7{height:123.116836px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:84.959987px;}
.x14{left:89.675987px;}
.x11{left:111.995987px;}
.x15{left:116.495987px;}
.x1{left:138.095987px;}
.xf{left:155.369987px;}
.x9{left:203.789987px;}
.x13{left:214.589987px;}
.x8{left:215.849987px;}
.x7{left:228.449987px;}
.x5{left:250.949987px;}
.xd{left:259.409987px;}
.xa{left:277.634987px;}
.xe{left:342.434987px;}
.xc{left:376.994987px;}
.x4{left:420.914987px;}
.x6{left:435.854987px;}
.xb{left:462.494987px;}
.x10{left:798.809987px;}
.x12{left:799.889987px;}
.x2{left:807.989987px;}
@media print{
.v1{vertical-align:-72.320000pt;}
.v0{vertical-align:0.000000pt;}
.ls23{letter-spacing:-0.810667pt;}
.ls22{letter-spacing:-0.286933pt;}
.ls15{letter-spacing:-0.243200pt;}
.ls14{letter-spacing:-0.240533pt;}
.lsd{letter-spacing:-0.234133pt;}
.lse{letter-spacing:-0.138133pt;}
.ls13{letter-spacing:-0.133333pt;}
.ls12{letter-spacing:-0.102400pt;}
.lsf{letter-spacing:-0.007680pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.066560pt;}
.ls16{letter-spacing:0.086933pt;}
.ls21{letter-spacing:0.117760pt;}
.ls0{letter-spacing:0.128000pt;}
.ls20{letter-spacing:0.138240pt;}
.ls10{letter-spacing:0.207467pt;}
.ls11{letter-spacing:0.278933pt;}
.lsa{letter-spacing:0.339627pt;}
.ls1d{letter-spacing:3.471360pt;}
.ls1b{letter-spacing:4.111360pt;}
.ls1c{letter-spacing:6.031360pt;}
.ls18{letter-spacing:7.311360pt;}
.lsb{letter-spacing:7.951360pt;}
.ls1e{letter-spacing:9.231360pt;}
.ls19{letter-spacing:9.871360pt;}
.ls17{letter-spacing:11.151360pt;}
.lsc{letter-spacing:11.791360pt;}
.ls1a{letter-spacing:12.431360pt;}
.ls7{letter-spacing:33.551360pt;}
.ls5{letter-spacing:34.191360pt;}
.ls8{letter-spacing:36.111360pt;}
.ls6{letter-spacing:37.391360pt;}
.ls4{letter-spacing:38.031360pt;}
.ls9{letter-spacing:39.311360pt;}
.ls1f{letter-spacing:52.111360pt;}
.ls2{letter-spacing:1269.386667pt;}
.wsb{word-spacing:-58.880000pt;}
.ws2{word-spacing:-42.880000pt;}
.wsd{word-spacing:-15.334187pt;}
.ws0{word-spacing:-14.464000pt;}
.wsf{word-spacing:-13.306880pt;}
.wse{word-spacing:-12.496213pt;}
.ws6{word-spacing:-12.054933pt;}
.ws5{word-spacing:-11.983467pt;}
.wsc{word-spacing:-11.776000pt;}
.ws4{word-spacing:-11.768320pt;}
.ws7{word-spacing:-11.673600pt;}
.ws8{word-spacing:-11.642667pt;}
.ws3{word-spacing:-11.637867pt;}
.ws9{word-spacing:-11.535467pt;}
.wsa{word-spacing:-11.532800pt;}
.ws1{word-spacing:0.000000pt;}
._6{margin-left:-80.842240pt;}
._4{margin-left:-1.883307pt;}
._2{margin-left:-0.935040pt;}
._0{width:0.903040pt;}
._5{width:2.753920pt;}
._3{width:1117.117227pt;}
._1{width:1450.031787pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs5{font-size:96.000000pt;}
.fs4{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:50.080000pt;}
.y25{bottom:50.240000pt;}
.y24{bottom:64.032000pt;}
.y2{bottom:64.512000pt;}
.y23{bottom:79.072000pt;}
.y20{bottom:88.512000pt;}
.y8d{bottom:100.992000pt;}
.y58{bottom:101.952000pt;}
.y1f{bottom:107.392000pt;}
.y8c{bottom:118.912000pt;}
.y57{bottom:119.872000pt;}
.y1e{bottom:125.312000pt;}
.y8b{bottom:136.826667pt;}
.y56{bottom:137.786667pt;}
.y1d{bottom:143.226667pt;}
.y8a{bottom:154.746667pt;}
.y55{bottom:155.706667pt;}
.y1c{bottom:161.466667pt;}
.y89{bottom:172.506667pt;}
.y54{bottom:173.626667pt;}
.y1b{bottom:180.986667pt;}
.y88{bottom:190.426667pt;}
.y53{bottom:191.546667pt;}
.y87{bottom:208.346667pt;}
.y52{bottom:209.466667pt;}
.y1a{bottom:218.586667pt;}
.y86{bottom:226.266667pt;}
.y51{bottom:227.386667pt;}
.y19{bottom:231.706667pt;}
.y84{bottom:244.186667pt;}
.y18{bottom:244.666667pt;}
.y50{bottom:245.146667pt;}
.y17{bottom:257.786667pt;}
.y83{bottom:262.106667pt;}
.y4f{bottom:263.066667pt;}
.y16{bottom:270.746667pt;}
.y82{bottom:280.026667pt;}
.y4e{bottom:280.986667pt;}
.y15{bottom:283.706667pt;}
.y81{bottom:297.946667pt;}
.y14{bottom:298.106667pt;}
.y4d{bottom:298.906667pt;}
.y80{bottom:315.906667pt;}
.y4c{bottom:316.866667pt;}
.y13{bottom:317.666667pt;}
.y7f{bottom:333.826667pt;}
.y4b{bottom:334.786667pt;}
.y12{bottom:337.986667pt;}
.y7e{bottom:351.586667pt;}
.y4a{bottom:352.706667pt;}
.y11{bottom:360.706667pt;}
.y7d{bottom:369.506667pt;}
.y49{bottom:370.626667pt;}
.y10{bottom:383.586667pt;}
.y7c{bottom:387.426667pt;}
.y48{bottom:388.546667pt;}
.y7b{bottom:405.346667pt;}
.yf{bottom:406.306667pt;}
.y47{bottom:406.466667pt;}
.y7a{bottom:423.266667pt;}
.y46{bottom:424.226667pt;}
.ye{bottom:429.186667pt;}
.y79{bottom:441.186667pt;}
.y45{bottom:442.146667pt;}
.yd{bottom:451.266667pt;}
.y78{bottom:459.106667pt;}
.y44{bottom:460.066667pt;}
.ya3{bottom:463.426667pt;}
.yc{bottom:470.786667pt;}
.y77{bottom:477.026667pt;}
.y43{bottom:477.986667pt;}
.ya2{bottom:482.946667pt;}
.yb{bottom:490.306667pt;}
.y76{bottom:494.946667pt;}
.y42{bottom:495.906667pt;}
.ya1{bottom:502.466667pt;}
.ya{bottom:509.826667pt;}
.y75{bottom:512.866667pt;}
.y41{bottom:513.826667pt;}
.ya0{bottom:521.986667pt;}
.y74{bottom:530.626667pt;}
.y9{bottom:531.426667pt;}
.y40{bottom:531.746667pt;}
.y9f{bottom:541.533333pt;}
.y73{bottom:548.573333pt;}
.y3f{bottom:549.693333pt;}
.y8{bottom:560.733333pt;}
.y9e{bottom:561.053333pt;}
.y72{bottom:566.493333pt;}
.y3e{bottom:567.613333pt;}
.y7{bottom:583.613333pt;}
.y9d{bottom:584.253333pt;}
.y71{bottom:584.413333pt;}
.y3d{bottom:585.533333pt;}
.y70{bottom:602.333333pt;}
.y3c{bottom:603.293333pt;}
.y9c{bottom:607.933333pt;}
.y6f{bottom:620.253333pt;}
.y3b{bottom:621.213333pt;}
.y9b{bottom:631.773333pt;}
.y6e{bottom:638.173333pt;}
.y3a{bottom:639.133333pt;}
.y9a{bottom:655.613333pt;}
.y6d{bottom:656.093333pt;}
.y39{bottom:657.053333pt;}
.y6c{bottom:674.013333pt;}
.y38{bottom:674.973333pt;}
.y99{bottom:682.173333pt;}
.y6b{bottom:691.933333pt;}
.y37{bottom:692.893333pt;}
.y6a{bottom:709.693333pt;}
.y36{bottom:710.813333pt;}
.y98{bottom:718.653333pt;}
.y69{bottom:727.613333pt;}
.y35{bottom:728.733333pt;}
.y97{bottom:737.373333pt;}
.y68{bottom:745.533333pt;}
.y34{bottom:746.653333pt;}
.y67{bottom:763.453333pt;}
.y33{bottom:764.413333pt;}
.y96{bottom:768.093333pt;}
.y66{bottom:781.413333pt;}
.y32{bottom:782.373333pt;}
.y95{bottom:786.053333pt;}
.y65{bottom:799.333333pt;}
.y31{bottom:800.293333pt;}
.y94{bottom:812.613333pt;}
.y64{bottom:817.253333pt;}
.y30{bottom:818.213333pt;}
.y63{bottom:835.173333pt;}
.y2f{bottom:836.133333pt;}
.y93{bottom:849.093333pt;}
.y62{bottom:853.093333pt;}
.y2e{bottom:854.053333pt;}
.y92{bottom:867.013333pt;}
.y61{bottom:871.013333pt;}
.y2d{bottom:871.973333pt;}
.y60{bottom:888.773333pt;}
.y2c{bottom:889.893333pt;}
.y91{bottom:897.573333pt;}
.y5f{bottom:906.693333pt;}
.y2b{bottom:907.813333pt;}
.y90{bottom:915.493333pt;}
.y5e{bottom:924.613333pt;}
.y2a{bottom:925.733333pt;}
.y5d{bottom:942.533333pt;}
.y29{bottom:943.493333pt;}
.y8f{bottom:946.213333pt;}
.y5c{bottom:960.453333pt;}
.y28{bottom:961.413333pt;}
.y8e{bottom:972.773333pt;}
.y6{bottom:977.733333pt;}
.y5b{bottom:978.373333pt;}
.y27{bottom:979.333333pt;}
.y5a{bottom:996.293333pt;}
.y5{bottom:999.013333pt;}
.y26{bottom:1010.373333pt;}
.y59{bottom:1014.240000pt;}
.y4{bottom:1015.360000pt;}
.y22{bottom:1046.880000pt;}
.y85{bottom:1053.440000pt;}
.y21{bottom:1056.960000pt;}
.y1{bottom:1060.480000pt;}
.h4{height:32.599687pt;}
.hc{height:34.463125pt;}
.h10{height:36.850000pt;}
.hd{height:37.499062pt;}
.h11{height:42.649687pt;}
.h2{height:44.437500pt;}
.h12{height:44.763750pt;}
.h3{height:48.656250pt;}
.h9{height:51.437500pt;}
.hb{height:51.491250pt;}
.h5{height:54.390938pt;}
.h14{height:58.563750pt;}
.ha{height:60.181875pt;}
.hf{height:60.288750pt;}
.h15{height:63.656250pt;}
.he{height:65.531250pt;}
.h13{height:70.773750pt;}
.h6{height:76.671562pt;}
.h8{height:98.296875pt;}
.h7{height:109.437187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:75.519988pt;}
.x14{left:79.711988pt;}
.x11{left:99.551988pt;}
.x15{left:103.551988pt;}
.x1{left:122.751988pt;}
.xf{left:138.106655pt;}
.x9{left:181.146655pt;}
.x13{left:190.746655pt;}
.x8{left:191.866655pt;}
.x7{left:203.066655pt;}
.x5{left:223.066655pt;}
.xd{left:230.586655pt;}
.xa{left:246.786655pt;}
.xe{left:304.386655pt;}
.xc{left:335.106655pt;}
.x4{left:374.146655pt;}
.x6{left:387.426655pt;}
.xb{left:411.106655pt;}
.x10{left:710.053322pt;}
.x12{left:711.013322pt;}
.x2{left:718.213322pt;}
}




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