
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_f048abd76f5202764c789b1f.woff2')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_edec692d2bbd3c19d8f4a722.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c43d0c2cc82ee30134a86de6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_908d3ba16595443948e0de89.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_866c799fd06e493a0a52307e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_eccfca91669978be07b22ce7.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1c328c711c5b3780ff881f64.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_359d01edf130577d36b3965b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.035156;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_7c5a221ec112a841de6ef4cc.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.061035;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_31cd82b208fb5eb9b744af59.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{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:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls15{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.414600px;}
.ls6{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.274800px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.036000px;}
.ls12{letter-spacing:0.109200px;}
.ls3{letter-spacing:0.109440px;}
.ls0{letter-spacing:0.150000px;}
.ls1{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.262200px;}
.ls2{letter-spacing:0.360000px;}
.lsf{letter-spacing:3.600000px;}
.ls11{letter-spacing:6.480000px;}
.ls16{letter-spacing:6.785280px;}
.ls9{letter-spacing:9.360000px;}
.lsc{letter-spacing:12.240000px;}
.lse{letter-spacing:16.560000px;}
.lsd{letter-spacing:22.320000px;}
.ls10{letter-spacing:30.240000px;}
.ls13{letter-spacing:39.905280px;}
.lsa{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;}
}
.wsa{word-spacing:-28.712400px;}
.ws0{word-spacing:-18.000000px;}
.wsc{word-spacing:-16.822200px;}
.wsb{word-spacing:-16.669200px;}
.ws5{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.145400px;}
.ws2{word-spacing:-15.300000px;}
.ws1{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.580000px;}
.ws9{word-spacing:-14.572800px;}
.ws8{word-spacing:-13.500000px;}
.ws4{word-spacing:-10.440000px;}
.ws7{word-spacing:0.000000px;}
._2f{margin-left:-9.170880px;}
._30{margin-left:-7.639680px;}
._2e{margin-left:-5.485440px;}
._2c{margin-left:-4.173120px;}
._7{margin-left:-2.076480px;}
._1{margin-left:-1.073280px;}
._0{width:1.200000px;}
._5{width:2.430720px;}
._16{width:3.510720px;}
._6{width:4.889280px;}
._3{width:6.292800px;}
._15{width:7.632960px;}
._1c{width:9.107520px;}
._2{width:10.664640px;}
._4{width:12.334080px;}
._12{width:13.824000px;}
._1a{width:14.904000px;}
._1f{width:17.757120px;}
._10{width:18.812160px;}
._17{width:20.160000px;}
._25{width:21.331200px;}
._1e{width:22.898880px;}
._18{width:23.978880px;}
._19{width:25.128000px;}
._9{width:27.166560px;}
._8{width:28.377600px;}
._1d{width:29.741760px;}
._21{width:30.784320px;}
._f{width:32.722560px;}
._13{width:33.917760px;}
._14{width:35.326080px;}
._26{width:36.576000px;}
._24{width:37.637760px;}
._22{width:38.882880px;}
._23{width:40.312320px;}
._20{width:41.863680px;}
._a{width:43.188480px;}
._11{width:44.712000px;}
._c{width:46.542720px;}
._b{width:48.408000px;}
._d{width:50.414400px;}
._2d{width:51.559680px;}
._29{width:53.016960px;}
._2a{width:54.305280px;}
._2b{width:58.407360px;}
._e{width:61.244160px;}
._1b{width:62.630400px;}
._32{width:70.545600px;}
._33{width:71.975040px;}
._27{width:84.058560px;}
._28{width:85.118400px;}
._31{width:95.186880px;}
._34{width:115.920000px;}
._36{width:116.928960px;}
._35{width:118.261440px;}
.fc7{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc4{color:rgb(112,48,160);}
.fc3{color:rgb(51,51,204);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc8{color:rgb(255,255,255);}
.fc5{color:rgb(0,0,0);}
.fc0{color:rgb(0,176,80);}
.fs3{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:131.760000px;}
.yd{bottom:-13.140000px;}
.y0{bottom:0.000000px;}
.yc{bottom:4.140000px;}
.y34{bottom:10.080000px;}
.y38{bottom:10.794000px;}
.y9{bottom:10.800000px;}
.y69{bottom:13.500000px;}
.y6d{bottom:13.680000px;}
.yb{bottom:21.240000px;}
.y33{bottom:26.460000px;}
.y74{bottom:28.080000px;}
.y7{bottom:32.760000px;}
.y32{bottom:42.660000px;}
.y35{bottom:48.420000px;}
.y36{bottom:48.600000px;}
.y6{bottom:50.220000px;}
.y8{bottom:53.280000px;}
.y31{bottom:58.500000px;}
.y2e{bottom:80.496000px;}
.y67{bottom:92.196000px;}
.y92{bottom:94.356000px;}
.y5e{bottom:104.796000px;}
.y2d{bottom:108.936000px;}
.y91{bottom:122.796000px;}
.y5b{bottom:133.236000px;}
.y2c{bottom:137.376000px;}
.y37{bottom:142.056000px;}
.y90{bottom:151.230000px;}
.y5a{bottom:161.670000px;}
.y2b{bottom:165.810000px;}
.y8f{bottom:179.670000px;}
.y59{bottom:190.110000px;}
.y2a{bottom:194.430000px;}
.y8e{bottom:208.110000px;}
.y58{bottom:218.730000px;}
.y29{bottom:222.870000px;}
.y8d{bottom:236.550000px;}
.y57{bottom:247.170000px;}
.y66{bottom:251.130000px;}
.y28{bottom:251.310000px;}
.y8c{bottom:264.990000px;}
.y56{bottom:275.610000px;}
.y65{bottom:279.570000px;}
.y27{bottom:279.750000px;}
.y8b{bottom:293.610000px;}
.y55{bottom:304.050000px;}
.y64{bottom:308.010000px;}
.y26{bottom:308.190000px;}
.y8a{bottom:322.095000px;}
.y54{bottom:332.535000px;}
.y63{bottom:336.495000px;}
.y25{bottom:336.675000px;}
.y89{bottom:350.535000px;}
.y53{bottom:360.975000px;}
.y62{bottom:364.935000px;}
.y24{bottom:365.115000px;}
.y88{bottom:378.975000px;}
.y71{bottom:380.595000px;}
.y52{bottom:389.415000px;}
.y23{bottom:393.555000px;}
.y87{bottom:407.415000px;}
.y70{bottom:409.935000px;}
.y51{bottom:417.855000px;}
.y22{bottom:421.995000px;}
.y86{bottom:435.855000px;}
.y6f{bottom:439.095000px;}
.y93{bottom:445.935000px;}
.y50{bottom:446.295000px;}
.y21{bottom:450.615000px;}
.y85{bottom:451.515000px;}
.y6e{bottom:468.255000px;}
.y4f{bottom:474.915000px;}
.y20{bottom:479.055000px;}
.y84{bottom:480.855000px;}
.y6c{bottom:497.415000px;}
.y4e{bottom:503.355000px;}
.y1f{bottom:507.495000px;}
.y83{bottom:510.015000px;}
.y4d{bottom:531.795000px;}
.y1e{bottom:535.935000px;}
.y82{bottom:539.175000px;}
.y61{bottom:547.095000px;}
.y4c{bottom:560.235000px;}
.y1d{bottom:564.015000px;}
.y2f{bottom:564.375000px;}
.y81{bottom:568.365000px;}
.y60{bottom:575.565000px;}
.y4b{bottom:588.705000px;}
.y6b{bottom:591.225000px;}
.y1c{bottom:595.185000px;}
.y80{bottom:597.705000px;}
.y4a{bottom:617.145000px;}
.y6a{bottom:620.385000px;}
.y1b{bottom:623.625000px;}
.y7f{bottom:640.365000px;}
.y49{bottom:645.585000px;}
.y68{bottom:649.545000px;}
.y1a{bottom:652.065000px;}
.y7e{bottom:668.805000px;}
.y48{bottom:674.025000px;}
.y19{bottom:680.505000px;}
.y7d{bottom:697.245000px;}
.y5d{bottom:702.105000px;}
.y47{bottom:702.465000px;}
.y18{bottom:708.945000px;}
.y7c{bottom:725.685000px;}
.y5f{bottom:730.725000px;}
.y46{bottom:731.085000px;}
.y17{bottom:737.385000px;}
.y7b{bottom:754.125000px;}
.y45{bottom:759.525000px;}
.y16{bottom:765.825000px;}
.y7a{bottom:782.745000px;}
.y9e{bottom:787.605000px;}
.y44{bottom:787.965000px;}
.y15{bottom:800.205000px;}
.y79{bottom:811.185000px;}
.y9d{bottom:816.045000px;}
.y43{bottom:816.405000px;}
.y78{bottom:826.890000px;}
.y14{bottom:828.870000px;}
.y9c{bottom:844.530000px;}
.y42{bottom:844.890000px;}
.y77{bottom:856.050000px;}
.y13{bottom:857.310000px;}
.y9b{bottom:872.970000px;}
.y41{bottom:873.330000px;}
.y12{bottom:879.810000px;}
.y76{bottom:885.210000px;}
.y9a{bottom:901.410000px;}
.y40{bottom:901.770000px;}
.y11{bottom:914.190000px;}
.y73{bottom:914.550000px;}
.y99{bottom:929.850000px;}
.y3f{bottom:930.210000px;}
.y10{bottom:942.630000px;}
.y75{bottom:943.710000px;}
.y3e{bottom:958.290000px;}
.y5c{bottom:958.650000px;}
.yf{bottom:964.770000px;}
.y72{bottom:972.870000px;}
.y98{bottom:986.910000px;}
.y3d{bottom:987.270000px;}
.ye{bottom:993.210000px;}
.y5{bottom:1014.270000px;}
.y97{bottom:1015.350000px;}
.y3c{bottom:1015.710000px;}
.y4{bottom:1034.250000px;}
.y96{bottom:1043.790000px;}
.y3b{bottom:1044.150000px;}
.y3{bottom:1054.050000px;}
.y2{bottom:1072.080000px;}
.y95{bottom:1072.260000px;}
.y3a{bottom:1072.620000px;}
.y1{bottom:1088.640000px;}
.y94{bottom:1100.700000px;}
.y39{bottom:1101.060000px;}
.ya{bottom:1122.300000px;}
.y30{bottom:1131.480000px;}
.h14{height:28.440000px;}
.h15{height:28.620000px;}
.h6{height:35.100000px;}
.h9{height:41.250937px;}
.h1{height:50.229844px;}
.hd{height:52.971680px;}
.hc{height:53.709961px;}
.he{height:55.291992px;}
.h16{height:57.600000px;}
.h3{height:58.621992px;}
.hb{height:59.383125px;}
.h7{height:60.226875px;}
.h13{height:60.679688px;}
.ha{height:65.010937px;}
.h8{height:66.757500px;}
.h17{height:68.084282px;}
.h2{height:72.562500px;}
.h5{height:72.562518px;}
.h12{height:109.800000px;}
.h11{height:111.043838px;}
.h10{height:111.043849px;}
.h4{height:167.250000px;}
.hf{height:268.635000px;}
.h0{height:1188.000000px;}
.w6{width:21.600000px;}
.w2{width:23.940000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.wf{width:149.400000px;}
.w11{width:175.170000px;}
.w7{width:206.850000px;}
.w10{width:214.770000px;}
.wb{width:262.290000px;}
.w13{width:263.415000px;}
.w14{width:266.610000px;}
.we{width:267.555000px;}
.wc{width:274.035000px;}
.wa{width:277.635000px;}
.w15{width:284.655000px;}
.w9{width:290.415000px;}
.w8{width:315.435000px;}
.w3{width:333.795000px;}
.wd{width:390.675000px;}
.w12{width:417.855000px;}
.w16{width:551.985000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:7.740000px;}
.x7{left:10.800000px;}
.x11{left:14.040000px;}
.x5{left:16.920000px;}
.xa{left:31.680000px;}
.x17{left:52.919986px;}
.x3{left:53.999986px;}
.x1a{left:80.999986px;}
.x1{left:144.215986px;}
.x2{left:174.809986px;}
.xd{left:261.930000px;}
.x14{left:269.850000px;}
.x15{left:318.495000px;}
.xf{left:332.715000px;}
.x12{left:445.935000px;}
.x18{left:487.904986px;}
.x8{left:488.984986px;}
.x19{left:515.984986px;}
.x6{left:547.845000px;}
.xe{left:578.085000px;}
.x16{left:585.825000px;}
.x10{left:595.725000px;}
.x13{left:714.390000px;}
.x9{left:871.200000px;}
.x4{left:876.060000px;}
.xb{left:877.679986px;}
@media print{
.v1{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.368533pt;}
.ls6{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.244267pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.032000pt;}
.ls12{letter-spacing:0.097067pt;}
.ls3{letter-spacing:0.097280pt;}
.ls0{letter-spacing:0.133333pt;}
.ls1{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.233067pt;}
.ls2{letter-spacing:0.320000pt;}
.lsf{letter-spacing:3.200000pt;}
.ls11{letter-spacing:5.760000pt;}
.ls16{letter-spacing:6.031360pt;}
.ls9{letter-spacing:8.320000pt;}
.lsc{letter-spacing:10.880000pt;}
.lse{letter-spacing:14.720000pt;}
.lsd{letter-spacing:19.840000pt;}
.ls10{letter-spacing:26.880000pt;}
.ls13{letter-spacing:35.471360pt;}
.lsa{letter-spacing:47.360000pt;}
.wsa{word-spacing:-25.522133pt;}
.ws0{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.953067pt;}
.wsb{word-spacing:-14.817067pt;}
.ws5{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.351467pt;}
.ws2{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws3{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.953600pt;}
.ws8{word-spacing:-12.000000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws7{word-spacing:0.000000pt;}
._2f{margin-left:-8.151893pt;}
._30{margin-left:-6.790827pt;}
._2e{margin-left:-4.875947pt;}
._2c{margin-left:-3.709440pt;}
._7{margin-left:-1.845760pt;}
._1{margin-left:-0.954027pt;}
._0{width:1.066667pt;}
._5{width:2.160640pt;}
._16{width:3.120640pt;}
._6{width:4.346027pt;}
._3{width:5.593600pt;}
._15{width:6.784853pt;}
._1c{width:8.095573pt;}
._2{width:9.479680pt;}
._4{width:10.963627pt;}
._12{width:12.288000pt;}
._1a{width:13.248000pt;}
._1f{width:15.784107pt;}
._10{width:16.721920pt;}
._17{width:17.920000pt;}
._25{width:18.961067pt;}
._1e{width:20.354560pt;}
._18{width:21.314560pt;}
._19{width:22.336000pt;}
._9{width:24.148053pt;}
._8{width:25.224533pt;}
._1d{width:26.437120pt;}
._21{width:27.363840pt;}
._f{width:29.086720pt;}
._13{width:30.149120pt;}
._14{width:31.400960pt;}
._26{width:32.512000pt;}
._24{width:33.455787pt;}
._22{width:34.562560pt;}
._23{width:35.833173pt;}
._20{width:37.212160pt;}
._a{width:38.389760pt;}
._11{width:39.744000pt;}
._c{width:41.371307pt;}
._b{width:43.029333pt;}
._d{width:44.812800pt;}
._2d{width:45.830827pt;}
._29{width:47.126187pt;}
._2a{width:48.271360pt;}
._2b{width:51.917653pt;}
._e{width:54.439253pt;}
._1b{width:55.671467pt;}
._32{width:62.707200pt;}
._33{width:63.977813pt;}
._27{width:74.718720pt;}
._28{width:75.660800pt;}
._31{width:84.610560pt;}
._34{width:103.040000pt;}
._36{width:103.936853pt;}
._35{width:105.121280pt;}
.fs3{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:117.120000pt;}
.yd{bottom:-11.680000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:3.680000pt;}
.y34{bottom:8.960000pt;}
.y38{bottom:9.594667pt;}
.y9{bottom:9.600000pt;}
.y69{bottom:12.000000pt;}
.y6d{bottom:12.160000pt;}
.yb{bottom:18.880000pt;}
.y33{bottom:23.520000pt;}
.y74{bottom:24.960000pt;}
.y7{bottom:29.120000pt;}
.y32{bottom:37.920000pt;}
.y35{bottom:43.040000pt;}
.y36{bottom:43.200000pt;}
.y6{bottom:44.640000pt;}
.y8{bottom:47.360000pt;}
.y31{bottom:52.000000pt;}
.y2e{bottom:71.552000pt;}
.y67{bottom:81.952000pt;}
.y92{bottom:83.872000pt;}
.y5e{bottom:93.152000pt;}
.y2d{bottom:96.832000pt;}
.y91{bottom:109.152000pt;}
.y5b{bottom:118.432000pt;}
.y2c{bottom:122.112000pt;}
.y37{bottom:126.272000pt;}
.y90{bottom:134.426667pt;}
.y5a{bottom:143.706667pt;}
.y2b{bottom:147.386667pt;}
.y8f{bottom:159.706667pt;}
.y59{bottom:168.986667pt;}
.y2a{bottom:172.826667pt;}
.y8e{bottom:184.986667pt;}
.y58{bottom:194.426667pt;}
.y29{bottom:198.106667pt;}
.y8d{bottom:210.266667pt;}
.y57{bottom:219.706667pt;}
.y66{bottom:223.226667pt;}
.y28{bottom:223.386667pt;}
.y8c{bottom:235.546667pt;}
.y56{bottom:244.986667pt;}
.y65{bottom:248.506667pt;}
.y27{bottom:248.666667pt;}
.y8b{bottom:260.986667pt;}
.y55{bottom:270.266667pt;}
.y64{bottom:273.786667pt;}
.y26{bottom:273.946667pt;}
.y8a{bottom:286.306667pt;}
.y54{bottom:295.586667pt;}
.y63{bottom:299.106667pt;}
.y25{bottom:299.266667pt;}
.y89{bottom:311.586667pt;}
.y53{bottom:320.866667pt;}
.y62{bottom:324.386667pt;}
.y24{bottom:324.546667pt;}
.y88{bottom:336.866667pt;}
.y71{bottom:338.306667pt;}
.y52{bottom:346.146667pt;}
.y23{bottom:349.826667pt;}
.y87{bottom:362.146667pt;}
.y70{bottom:364.386667pt;}
.y51{bottom:371.426667pt;}
.y22{bottom:375.106667pt;}
.y86{bottom:387.426667pt;}
.y6f{bottom:390.306667pt;}
.y93{bottom:396.386667pt;}
.y50{bottom:396.706667pt;}
.y21{bottom:400.546667pt;}
.y85{bottom:401.346667pt;}
.y6e{bottom:416.226667pt;}
.y4f{bottom:422.146667pt;}
.y20{bottom:425.826667pt;}
.y84{bottom:427.426667pt;}
.y6c{bottom:442.146667pt;}
.y4e{bottom:447.426667pt;}
.y1f{bottom:451.106667pt;}
.y83{bottom:453.346667pt;}
.y4d{bottom:472.706667pt;}
.y1e{bottom:476.386667pt;}
.y82{bottom:479.266667pt;}
.y61{bottom:486.306667pt;}
.y4c{bottom:497.986667pt;}
.y1d{bottom:501.346667pt;}
.y2f{bottom:501.666667pt;}
.y81{bottom:505.213333pt;}
.y60{bottom:511.613333pt;}
.y4b{bottom:523.293333pt;}
.y6b{bottom:525.533333pt;}
.y1c{bottom:529.053333pt;}
.y80{bottom:531.293333pt;}
.y4a{bottom:548.573333pt;}
.y6a{bottom:551.453333pt;}
.y1b{bottom:554.333333pt;}
.y7f{bottom:569.213333pt;}
.y49{bottom:573.853333pt;}
.y68{bottom:577.373333pt;}
.y1a{bottom:579.613333pt;}
.y7e{bottom:594.493333pt;}
.y48{bottom:599.133333pt;}
.y19{bottom:604.893333pt;}
.y7d{bottom:619.773333pt;}
.y5d{bottom:624.093333pt;}
.y47{bottom:624.413333pt;}
.y18{bottom:630.173333pt;}
.y7c{bottom:645.053333pt;}
.y5f{bottom:649.533333pt;}
.y46{bottom:649.853333pt;}
.y17{bottom:655.453333pt;}
.y7b{bottom:670.333333pt;}
.y45{bottom:675.133333pt;}
.y16{bottom:680.733333pt;}
.y7a{bottom:695.773333pt;}
.y9e{bottom:700.093333pt;}
.y44{bottom:700.413333pt;}
.y15{bottom:711.293333pt;}
.y79{bottom:721.053333pt;}
.y9d{bottom:725.373333pt;}
.y43{bottom:725.693333pt;}
.y78{bottom:735.013333pt;}
.y14{bottom:736.773333pt;}
.y9c{bottom:750.693333pt;}
.y42{bottom:751.013333pt;}
.y77{bottom:760.933333pt;}
.y13{bottom:762.053333pt;}
.y9b{bottom:775.973333pt;}
.y41{bottom:776.293333pt;}
.y12{bottom:782.053333pt;}
.y76{bottom:786.853333pt;}
.y9a{bottom:801.253333pt;}
.y40{bottom:801.573333pt;}
.y11{bottom:812.613333pt;}
.y73{bottom:812.933333pt;}
.y99{bottom:826.533333pt;}
.y3f{bottom:826.853333pt;}
.y10{bottom:837.893333pt;}
.y75{bottom:838.853333pt;}
.y3e{bottom:851.813333pt;}
.y5c{bottom:852.133333pt;}
.yf{bottom:857.573333pt;}
.y72{bottom:864.773333pt;}
.y98{bottom:877.253333pt;}
.y3d{bottom:877.573333pt;}
.ye{bottom:882.853333pt;}
.y5{bottom:901.573333pt;}
.y97{bottom:902.533333pt;}
.y3c{bottom:902.853333pt;}
.y4{bottom:919.333333pt;}
.y96{bottom:927.813333pt;}
.y3b{bottom:928.133333pt;}
.y3{bottom:936.933333pt;}
.y2{bottom:952.960000pt;}
.y95{bottom:953.120000pt;}
.y3a{bottom:953.440000pt;}
.y1{bottom:967.680000pt;}
.y94{bottom:978.400000pt;}
.y39{bottom:978.720000pt;}
.ya{bottom:997.600000pt;}
.y30{bottom:1005.760000pt;}
.h14{height:25.280000pt;}
.h15{height:25.440000pt;}
.h6{height:31.200000pt;}
.h9{height:36.667500pt;}
.h1{height:44.648750pt;}
.hd{height:47.085938pt;}
.hc{height:47.742188pt;}
.he{height:49.148438pt;}
.h16{height:51.200000pt;}
.h3{height:52.108438pt;}
.hb{height:52.785000pt;}
.h7{height:53.535000pt;}
.h13{height:53.937500pt;}
.ha{height:57.787500pt;}
.h8{height:59.340000pt;}
.h17{height:60.519362pt;}
.h2{height:64.500000pt;}
.h5{height:64.500016pt;}
.h12{height:97.600000pt;}
.h11{height:98.705634pt;}
.h10{height:98.705644pt;}
.h4{height:148.666667pt;}
.hf{height:238.786667pt;}
.h0{height:1056.000000pt;}
.w6{width:19.200000pt;}
.w2{width:21.280000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.wf{width:132.800000pt;}
.w11{width:155.706667pt;}
.w7{width:183.866667pt;}
.w10{width:190.906667pt;}
.wb{width:233.146667pt;}
.w13{width:234.146667pt;}
.w14{width:236.986667pt;}
.we{width:237.826667pt;}
.wc{width:243.586667pt;}
.wa{width:246.786667pt;}
.w15{width:253.026667pt;}
.w9{width:258.146667pt;}
.w8{width:280.386667pt;}
.w3{width:296.706667pt;}
.wd{width:347.266667pt;}
.w12{width:371.426667pt;}
.w16{width:490.653333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.880000pt;}
.x7{left:9.600000pt;}
.x11{left:12.480000pt;}
.x5{left:15.040000pt;}
.xa{left:28.160000pt;}
.x17{left:47.039988pt;}
.x3{left:47.999988pt;}
.x1a{left:71.999988pt;}
.x1{left:128.191988pt;}
.x2{left:155.386655pt;}
.xd{left:232.826667pt;}
.x14{left:239.866667pt;}
.x15{left:283.106667pt;}
.xf{left:295.746667pt;}
.x12{left:396.386667pt;}
.x18{left:433.693321pt;}
.x8{left:434.653321pt;}
.x19{left:458.653321pt;}
.x6{left:486.973333pt;}
.xe{left:513.853333pt;}
.x16{left:520.733333pt;}
.x10{left:529.533333pt;}
.x13{left:635.013333pt;}
.x9{left:774.400000pt;}
.x4{left:778.720000pt;}
.xb{left:780.159988pt;}
}




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