
    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_e8afa2a789085de6ac8d474e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_afe353fc85ba23a197272f99.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4302548451949962d7d78642.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b8e4ce1d1dadd1063e633cad.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e075a37ecac0952b13e1352d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_131c149d6bb9f46715f62680.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.241699;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_107fcd81e9abe1a35cf67cb0.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_38a87897730e6a257cc002b9.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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:-82.800000px;}
.v3{vertical-align:-23.760000px;}
.v4{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.160000px;}
.v6{vertical-align:20.880000px;}
.v2{vertical-align:23.760000px;}
.lsb{letter-spacing:-0.828000px;}
.lsa{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.612000px;}
.ls10{letter-spacing:-0.576000px;}
.lsc{letter-spacing:-0.457800px;}
.ls15{letter-spacing:-0.414600px;}
.ls4{letter-spacing:-0.305400px;}
.ls14{letter-spacing:-0.262200px;}
.ls13{letter-spacing:-0.152400px;}
.ls9{letter-spacing:-0.109200px;}
.ls1a{letter-spacing:-0.106800px;}
.ls1e{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.053280px;}
.ls1b{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.109200px;}
.ls16{letter-spacing:0.109440px;}
.lse{letter-spacing:0.152400px;}
.ls17{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.206400px;}
.ls5{letter-spacing:0.262080px;}
.ls7{letter-spacing:0.262200px;}
.ls18{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.305400px;}
.ls19{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.720000px;}
.lsd{letter-spacing:1.080000px;}
.lsf{letter-spacing:7.920000px;}
.ls6{letter-spacing:20.880000px;}
.ls0{letter-spacing:566.076000px;}
.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;}
}
.ws1{word-spacing:-21.060000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-16.865400px;}
.wsb{word-spacing:-16.822200px;}
.ws7{word-spacing:-16.669200px;}
.ws6{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.450800px;}
.ws10{word-spacing:-16.407600px;}
.ws11{word-spacing:-16.297800px;}
.ws4{word-spacing:-16.254600px;}
.ws12{word-spacing:-16.145400px;}
.wsa{word-spacing:-16.102200px;}
.wsc{word-spacing:-15.984000px;}
.wsf{word-spacing:-15.948000px;}
.ws9{word-spacing:-15.732000px;}
.ws16{word-spacing:-15.146400px;}
.ws13{word-spacing:-15.093600px;}
.ws14{word-spacing:-15.046800px;}
.ws17{word-spacing:-14.886720px;}
.ws15{word-spacing:-14.833200px;}
.wsd{word-spacing:-14.572800px;}
.ws5{word-spacing:-10.440000px;}
.ws18{word-spacing:-9.720000px;}
.ws2{word-spacing:0.000000px;}
.wse{word-spacing:0.025920px;}
._17{margin-left:-4.529760px;}
._a{margin-left:-3.510720px;}
._b{margin-left:-2.378400px;}
._0{margin-left:-1.008000px;}
._1{width:1.200000px;}
._8{width:2.256000px;}
._11{width:3.362880px;}
._10{width:4.388160px;}
._15{width:5.465280px;}
._9{width:6.521760px;}
._3{width:7.668720px;}
._2{width:9.095040px;}
._7{width:10.267200px;}
._4{width:11.707200px;}
._f{width:13.441920px;}
._e{width:15.277920px;}
._16{width:18.492960px;}
._13{width:19.643280px;}
._12{width:20.856000px;}
._1b{width:22.124160px;}
._18{width:23.520960px;}
._c{width:25.481280px;}
._d{width:26.763360px;}
._1a{width:76.296000px;}
._5{width:98.201280px;}
._6{width:99.351600px;}
._19{width:109.416000px;}
._14{width:848.254560px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc5{color:rgb(33,33,33);}
.fc4{color:rgb(34,34,34);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:87.120000px;}
.y0{bottom:0.000000px;}
.y7f{bottom:3.240000px;}
.y84{bottom:3.960000px;}
.y15{bottom:14.220000px;}
.ya5{bottom:20.520000px;}
.y81{bottom:21.240000px;}
.y83{bottom:38.340000px;}
.y18{bottom:67.320000px;}
.y17{bottom:98.280000px;}
.y34{bottom:129.420000px;}
.y7c{bottom:130.320000px;}
.y69{bottom:131.220000px;}
.y3f{bottom:140.040000px;}
.y3b{bottom:145.440000px;}
.y33{bottom:161.820000px;}
.y52{bottom:163.260000px;}
.ya7{bottom:166.170000px;}
.y78{bottom:167.220000px;}
.y7b{bottom:168.300000px;}
.y68{bottom:169.200000px;}
.y3e{bottom:178.020000px;}
.y3a{bottom:183.420000px;}
.ya6{bottom:185.790000px;}
.y32{bottom:194.220000px;}
.y77{bottom:205.230000px;}
.y7a{bottom:206.310000px;}
.y67{bottom:207.210000px;}
.ya4{bottom:212.610000px;}
.y3d{bottom:216.030000px;}
.y51{bottom:219.270000px;}
.y39{bottom:221.250000px;}
.y31{bottom:226.830000px;}
.y76{bottom:243.210000px;}
.y79{bottom:244.290000px;}
.y66{bottom:245.190000px;}
.ya3{bottom:247.890000px;}
.y3c{bottom:255.450000px;}
.y30{bottom:259.230000px;}
.ya2{bottom:265.890000px;}
.y50{bottom:275.250000px;}
.y75{bottom:281.190000px;}
.y65{bottom:283.170000px;}
.ya1{bottom:283.890000px;}
.y2f{bottom:297.210000px;}
.ya0{bottom:301.935000px;}
.y4f{bottom:313.050000px;}
.y74{bottom:319.170000px;}
.y9f{bottom:319.935000px;}
.y2e{bottom:335.190000px;}
.y9e{bottom:337.935000px;}
.y64{bottom:339.150000px;}
.y4e{bottom:351.030000px;}
.y9d{bottom:355.935000px;}
.y73{bottom:357.150000px;}
.y2d{bottom:373.170000px;}
.y9c{bottom:373.935000px;}
.y63{bottom:376.950000px;}
.y4d{bottom:389.010000px;}
.y9b{bottom:391.935000px;}
.y72{bottom:394.950000px;}
.y9a{bottom:409.935000px;}
.y38{bottom:411.150000px;}
.y62{bottom:414.930000px;}
.y2c{bottom:417.090000px;}
.y4c{bottom:426.990000px;}
.y99{bottom:427.935000px;}
.y71{bottom:432.930000px;}
.y98{bottom:445.935000px;}
.y2b{bottom:448.995000px;}
.y61{bottom:452.955000px;}
.y97{bottom:463.935000px;}
.y4b{bottom:465.015000px;}
.y70{bottom:470.955000px;}
.y96{bottom:481.935000px;}
.y37{bottom:486.975000px;}
.y60{bottom:490.935000px;}
.y2a{bottom:492.915000px;}
.y95{bottom:499.965000px;}
.y6f{bottom:508.935000px;}
.y94{bottom:517.965000px;}
.y4a{bottom:520.815000px;}
.y36{bottom:524.955000px;}
.y5f{bottom:528.915000px;}
.y29{bottom:530.895000px;}
.y93{bottom:535.965000px;}
.y92{bottom:553.965000px;}
.y28{bottom:562.935000px;}
.y6e{bottom:564.915000px;}
.y5e{bottom:566.715000px;}
.y91{bottom:571.965000px;}
.y49{bottom:579.855000px;}
.y90{bottom:589.965000px;}
.y35{bottom:600.915000px;}
.y6d{bottom:602.715000px;}
.y5d{bottom:604.695000px;}
.y27{bottom:606.855000px;}
.y8f{bottom:607.965000px;}
.y48{bottom:617.835000px;}
.y8e{bottom:625.965000px;}
.y13{bottom:634.935000px;}
.y26{bottom:638.715000px;}
.y6c{bottom:640.695000px;}
.y5c{bottom:642.675000px;}
.y8d{bottom:643.965000px;}
.y47{bottom:655.815000px;}
.y12{bottom:659.265000px;}
.y8c{bottom:661.965000px;}
.y25{bottom:676.725000px;}
.y6b{bottom:678.705000px;}
.y8b{bottom:679.965000px;}
.y5b{bottom:680.685000px;}
.y11{bottom:683.385000px;}
.y46{bottom:693.645000px;}
.y8a{bottom:698.010000px;}
.y10{bottom:707.505000px;}
.y24{bottom:714.705000px;}
.y89{bottom:716.010000px;}
.y5a{bottom:718.665000px;}
.yf{bottom:731.625000px;}
.y88{bottom:734.010000px;}
.y6a{bottom:734.685000px;}
.y87{bottom:752.010000px;}
.y23{bottom:752.685000px;}
.ye{bottom:756.645000px;}
.y45{bottom:769.605000px;}
.y86{bottom:770.010000px;}
.yd{bottom:782.385000px;}
.y80{bottom:788.010000px;}
.y22{bottom:790.665000px;}
.y85{bottom:806.010000px;}
.y44{bottom:807.585000px;}
.yc{bottom:808.305000px;}
.y59{bottom:812.445000px;}
.y82{bottom:824.010000px;}
.y21{bottom:828.645000px;}
.yb{bottom:832.605000px;}
.y7e{bottom:842.010000px;}
.y43{bottom:845.565000px;}
.y58{bottom:850.425000px;}
.y7d{bottom:863.970000px;}
.y20{bottom:866.445000px;}
.ya{bottom:871.125000px;}
.y42{bottom:883.365000px;}
.y57{bottom:888.405000px;}
.y9{bottom:891.825000px;}
.y1f{bottom:904.425000px;}
.y41{bottom:921.390000px;}
.y8{bottom:926.250000px;}
.y56{bottom:926.430000px;}
.y1e{bottom:942.450000px;}
.y7{bottom:943.530000px;}
.y40{bottom:959.370000px;}
.y6{bottom:960.810000px;}
.y55{bottom:964.410000px;}
.y5{bottom:974.850000px;}
.y1d{bottom:980.430000px;}
.y1c{bottom:1018.410000px;}
.y54{bottom:1020.210000px;}
.y1b{bottom:1056.210000px;}
.y53{bottom:1076.190000px;}
.y4{bottom:1080.150000px;}
.y1a{bottom:1094.190000px;}
.y3{bottom:1095.990000px;}
.y2{bottom:1113.270000px;}
.y1{bottom:1130.550000px;}
.y19{bottom:1132.170000px;}
.y16{bottom:1162.080000px;}
.y14{bottom:1178.820000px;}
.h10{height:17.100000px;}
.h12{height:17.136000px;}
.h13{height:17.280000px;}
.h14{height:17.316000px;}
.h8{height:30.960000px;}
.h15{height:34.560000px;}
.hb{height:41.250937px;}
.h3{height:52.998047px;}
.h11{height:53.100000px;}
.h2{height:58.651172px;}
.h16{height:59.038594px;}
.hd{height:64.978594px;}
.ha{height:65.010937px;}
.h17{height:65.884219px;}
.hc{height:65.974219px;}
.h9{height:66.757500px;}
.h4{height:70.664062px;}
.h6{height:82.676953px;}
.h5{height:85.503516px;}
.h1a{height:460.980768px;}
.h1b{height:461.250000px;}
.h18{height:510.750000px;}
.he{height:986.940000px;}
.hf{height:987.000000px;}
.h7{height:1262.880000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.h19{height:2153.250000px;}
.wc{width:58.680000px;}
.w11{width:84.600000px;}
.w15{width:85.140000px;}
.w10{width:91.980000px;}
.wf{width:92.016000px;}
.w13{width:92.520000px;}
.w14{width:92.556000px;}
.w12{width:103.896000px;}
.wa{width:123.840000px;}
.w4{width:212.610000px;}
.w5{width:212.790000px;}
.we{width:364.395000px;}
.wd{width:374.655000px;}
.wb{width:739.770000px;}
.w16{width:765.000000px;}
.w6{width:892.979987px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.w9{width:923.910000px;}
.w19{width:1100.881835px;}
.w1a{width:1101.000000px;}
.w8{width:1187.999982px;}
.w7{width:1188.000000px;}
.w17{width:1191.375000px;}
.w18{width:1191.750000px;}
.x0{left:0.000000px;}
.x12{left:12.060000px;}
.x22{left:15.480000px;}
.x1e{left:17.460000px;}
.x20{left:19.800000px;}
.x1f{left:21.600000px;}
.x23{left:23.934000px;}
.x13{left:25.020000px;}
.x21{left:26.094000px;}
.x17{left:28.800000px;}
.x1d{left:30.420000px;}
.x25{left:33.165000px;}
.x24{left:34.950000px;}
.x19{left:36.360000px;}
.xe{left:61.914000px;}
.x16{left:102.240000px;}
.x6{left:106.200000px;}
.x14{left:107.505000px;}
.x1{left:120.095987px;}
.x26{left:125.094000px;}
.x4{left:127.656000px;}
.xc{left:132.156000px;}
.xd{left:154.974000px;}
.x3{left:160.229987px;}
.xa{left:175.709987px;}
.x8{left:213.165000px;}
.xf{left:256.710000px;}
.x5{left:340.275000px;}
.x18{left:349.455000px;}
.x10{left:350.715000px;}
.xb{left:437.474987px;}
.x9{left:441.974987px;}
.x2{left:528.404987px;}
.x7{left:552.885000px;}
.x15{left:632.085000px;}
.x1a{left:725.325000px;}
.x1b{left:818.610000px;}
.x1c{left:904.470000px;}
.x11{left:997.380000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v3{vertical-align:-21.120000pt;}
.v4{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.920000pt;}
.v6{vertical-align:18.560000pt;}
.v2{vertical-align:21.120000pt;}
.lsb{letter-spacing:-0.736000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.544000pt;}
.ls10{letter-spacing:-0.512000pt;}
.lsc{letter-spacing:-0.406933pt;}
.ls15{letter-spacing:-0.368533pt;}
.ls4{letter-spacing:-0.271467pt;}
.ls14{letter-spacing:-0.233067pt;}
.ls13{letter-spacing:-0.135467pt;}
.ls9{letter-spacing:-0.097067pt;}
.ls1a{letter-spacing:-0.094933pt;}
.ls1e{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.047360pt;}
.ls1b{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.097067pt;}
.ls16{letter-spacing:0.097280pt;}
.lse{letter-spacing:0.135467pt;}
.ls17{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.183467pt;}
.ls5{letter-spacing:0.232960pt;}
.ls7{letter-spacing:0.233067pt;}
.ls18{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.271467pt;}
.ls19{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.960000pt;}
.lsf{letter-spacing:7.040000pt;}
.ls6{letter-spacing:18.560000pt;}
.ls0{letter-spacing:503.178667pt;}
.ws1{word-spacing:-18.720000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-14.991467pt;}
.wsb{word-spacing:-14.953067pt;}
.ws7{word-spacing:-14.817067pt;}
.ws6{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.622933pt;}
.ws10{word-spacing:-14.584533pt;}
.ws11{word-spacing:-14.486933pt;}
.ws4{word-spacing:-14.448533pt;}
.ws12{word-spacing:-14.351467pt;}
.wsa{word-spacing:-14.313067pt;}
.wsc{word-spacing:-14.208000pt;}
.wsf{word-spacing:-14.176000pt;}
.ws9{word-spacing:-13.984000pt;}
.ws16{word-spacing:-13.463467pt;}
.ws13{word-spacing:-13.416533pt;}
.ws14{word-spacing:-13.374933pt;}
.ws17{word-spacing:-13.232640pt;}
.ws15{word-spacing:-13.185067pt;}
.wsd{word-spacing:-12.953600pt;}
.ws5{word-spacing:-9.280000pt;}
.ws18{word-spacing:-8.640000pt;}
.ws2{word-spacing:0.000000pt;}
.wse{word-spacing:0.023040pt;}
._17{margin-left:-4.026453pt;}
._a{margin-left:-3.120640pt;}
._b{margin-left:-2.114133pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.066667pt;}
._8{width:2.005333pt;}
._11{width:2.989227pt;}
._10{width:3.900587pt;}
._15{width:4.858027pt;}
._9{width:5.797120pt;}
._3{width:6.816640pt;}
._2{width:8.084480pt;}
._7{width:9.126400pt;}
._4{width:10.406400pt;}
._f{width:11.948373pt;}
._e{width:13.580373pt;}
._16{width:16.438187pt;}
._13{width:17.460693pt;}
._12{width:18.538667pt;}
._1b{width:19.665920pt;}
._18{width:20.907520pt;}
._c{width:22.650027pt;}
._d{width:23.789653pt;}
._1a{width:67.818667pt;}
._5{width:87.290027pt;}
._6{width:88.312533pt;}
._19{width:97.258667pt;}
._14{width:754.004053pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:77.440000pt;}
.y0{bottom:0.000000pt;}
.y7f{bottom:2.880000pt;}
.y84{bottom:3.520000pt;}
.y15{bottom:12.640000pt;}
.ya5{bottom:18.240000pt;}
.y81{bottom:18.880000pt;}
.y83{bottom:34.080000pt;}
.y18{bottom:59.840000pt;}
.y17{bottom:87.360000pt;}
.y34{bottom:115.040000pt;}
.y7c{bottom:115.840000pt;}
.y69{bottom:116.640000pt;}
.y3f{bottom:124.480000pt;}
.y3b{bottom:129.280000pt;}
.y33{bottom:143.840000pt;}
.y52{bottom:145.120000pt;}
.ya7{bottom:147.706667pt;}
.y78{bottom:148.640000pt;}
.y7b{bottom:149.600000pt;}
.y68{bottom:150.400000pt;}
.y3e{bottom:158.240000pt;}
.y3a{bottom:163.040000pt;}
.ya6{bottom:165.146667pt;}
.y32{bottom:172.640000pt;}
.y77{bottom:182.426667pt;}
.y7a{bottom:183.386667pt;}
.y67{bottom:184.186667pt;}
.ya4{bottom:188.986667pt;}
.y3d{bottom:192.026667pt;}
.y51{bottom:194.906667pt;}
.y39{bottom:196.666667pt;}
.y31{bottom:201.626667pt;}
.y76{bottom:216.186667pt;}
.y79{bottom:217.146667pt;}
.y66{bottom:217.946667pt;}
.ya3{bottom:220.346667pt;}
.y3c{bottom:227.066667pt;}
.y30{bottom:230.426667pt;}
.ya2{bottom:236.346667pt;}
.y50{bottom:244.666667pt;}
.y75{bottom:249.946667pt;}
.y65{bottom:251.706667pt;}
.ya1{bottom:252.346667pt;}
.y2f{bottom:264.186667pt;}
.ya0{bottom:268.386667pt;}
.y4f{bottom:278.266667pt;}
.y74{bottom:283.706667pt;}
.y9f{bottom:284.386667pt;}
.y2e{bottom:297.946667pt;}
.y9e{bottom:300.386667pt;}
.y64{bottom:301.466667pt;}
.y4e{bottom:312.026667pt;}
.y9d{bottom:316.386667pt;}
.y73{bottom:317.466667pt;}
.y2d{bottom:331.706667pt;}
.y9c{bottom:332.386667pt;}
.y63{bottom:335.066667pt;}
.y4d{bottom:345.786667pt;}
.y9b{bottom:348.386667pt;}
.y72{bottom:351.066667pt;}
.y9a{bottom:364.386667pt;}
.y38{bottom:365.466667pt;}
.y62{bottom:368.826667pt;}
.y2c{bottom:370.746667pt;}
.y4c{bottom:379.546667pt;}
.y99{bottom:380.386667pt;}
.y71{bottom:384.826667pt;}
.y98{bottom:396.386667pt;}
.y2b{bottom:399.106667pt;}
.y61{bottom:402.626667pt;}
.y97{bottom:412.386667pt;}
.y4b{bottom:413.346667pt;}
.y70{bottom:418.626667pt;}
.y96{bottom:428.386667pt;}
.y37{bottom:432.866667pt;}
.y60{bottom:436.386667pt;}
.y2a{bottom:438.146667pt;}
.y95{bottom:444.413333pt;}
.y6f{bottom:452.386667pt;}
.y94{bottom:460.413333pt;}
.y4a{bottom:462.946667pt;}
.y36{bottom:466.626667pt;}
.y5f{bottom:470.146667pt;}
.y29{bottom:471.906667pt;}
.y93{bottom:476.413333pt;}
.y92{bottom:492.413333pt;}
.y28{bottom:500.386667pt;}
.y6e{bottom:502.146667pt;}
.y5e{bottom:503.746667pt;}
.y91{bottom:508.413333pt;}
.y49{bottom:515.426667pt;}
.y90{bottom:524.413333pt;}
.y35{bottom:534.146667pt;}
.y6d{bottom:535.746667pt;}
.y5d{bottom:537.506667pt;}
.y27{bottom:539.426667pt;}
.y8f{bottom:540.413333pt;}
.y48{bottom:549.186667pt;}
.y8e{bottom:556.413333pt;}
.y13{bottom:564.386667pt;}
.y26{bottom:567.746667pt;}
.y6c{bottom:569.506667pt;}
.y5c{bottom:571.266667pt;}
.y8d{bottom:572.413333pt;}
.y47{bottom:582.946667pt;}
.y12{bottom:586.013333pt;}
.y8c{bottom:588.413333pt;}
.y25{bottom:601.533333pt;}
.y6b{bottom:603.293333pt;}
.y8b{bottom:604.413333pt;}
.y5b{bottom:605.053333pt;}
.y11{bottom:607.453333pt;}
.y46{bottom:616.573333pt;}
.y8a{bottom:620.453333pt;}
.y10{bottom:628.893333pt;}
.y24{bottom:635.293333pt;}
.y89{bottom:636.453333pt;}
.y5a{bottom:638.813333pt;}
.yf{bottom:650.333333pt;}
.y88{bottom:652.453333pt;}
.y6a{bottom:653.053333pt;}
.y87{bottom:668.453333pt;}
.y23{bottom:669.053333pt;}
.ye{bottom:672.573333pt;}
.y45{bottom:684.093333pt;}
.y86{bottom:684.453333pt;}
.yd{bottom:695.453333pt;}
.y80{bottom:700.453333pt;}
.y22{bottom:702.813333pt;}
.y85{bottom:716.453333pt;}
.y44{bottom:717.853333pt;}
.yc{bottom:718.493333pt;}
.y59{bottom:722.173333pt;}
.y82{bottom:732.453333pt;}
.y21{bottom:736.573333pt;}
.yb{bottom:740.093333pt;}
.y7e{bottom:748.453333pt;}
.y43{bottom:751.613333pt;}
.y58{bottom:755.933333pt;}
.y7d{bottom:767.973333pt;}
.y20{bottom:770.173333pt;}
.ya{bottom:774.333333pt;}
.y42{bottom:785.213333pt;}
.y57{bottom:789.693333pt;}
.y9{bottom:792.733333pt;}
.y1f{bottom:803.933333pt;}
.y41{bottom:819.013333pt;}
.y8{bottom:823.333333pt;}
.y56{bottom:823.493333pt;}
.y1e{bottom:837.733333pt;}
.y7{bottom:838.693333pt;}
.y40{bottom:852.773333pt;}
.y6{bottom:854.053333pt;}
.y55{bottom:857.253333pt;}
.y5{bottom:866.533333pt;}
.y1d{bottom:871.493333pt;}
.y1c{bottom:905.253333pt;}
.y54{bottom:906.853333pt;}
.y1b{bottom:938.853333pt;}
.y53{bottom:956.613333pt;}
.y4{bottom:960.133333pt;}
.y1a{bottom:972.613333pt;}
.y3{bottom:974.213333pt;}
.y2{bottom:989.573333pt;}
.y1{bottom:1004.933333pt;}
.y19{bottom:1006.373333pt;}
.y16{bottom:1032.960000pt;}
.y14{bottom:1047.840000pt;}
.h10{height:15.200000pt;}
.h12{height:15.232000pt;}
.h13{height:15.360000pt;}
.h14{height:15.392000pt;}
.h8{height:27.520000pt;}
.h15{height:30.720000pt;}
.hb{height:36.667500pt;}
.h3{height:47.109375pt;}
.h11{height:47.200000pt;}
.h2{height:52.134375pt;}
.h16{height:52.478750pt;}
.hd{height:57.758750pt;}
.ha{height:57.787500pt;}
.h17{height:58.563750pt;}
.hc{height:58.643750pt;}
.h9{height:59.340000pt;}
.h4{height:62.812500pt;}
.h6{height:73.490625pt;}
.h5{height:76.003125pt;}
.h1a{height:409.760683pt;}
.h1b{height:410.000000pt;}
.h18{height:454.000000pt;}
.he{height:877.280000pt;}
.hf{height:877.333333pt;}
.h7{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.h19{height:1914.000000pt;}
.wc{width:52.160000pt;}
.w11{width:75.200000pt;}
.w15{width:75.680000pt;}
.w10{width:81.760000pt;}
.wf{width:81.792000pt;}
.w13{width:82.240000pt;}
.w14{width:82.272000pt;}
.w12{width:92.352000pt;}
.wa{width:110.080000pt;}
.w4{width:188.986667pt;}
.w5{width:189.146667pt;}
.we{width:323.906667pt;}
.wd{width:333.026667pt;}
.wb{width:657.573333pt;}
.w16{width:680.000000pt;}
.w6{width:793.759988pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.w9{width:821.253333pt;}
.w19{width:978.561631pt;}
.w1a{width:978.666667pt;}
.w8{width:1055.999984pt;}
.w7{width:1056.000000pt;}
.w17{width:1059.000000pt;}
.w18{width:1059.333333pt;}
.x0{left:0.000000pt;}
.x12{left:10.720000pt;}
.x22{left:13.760000pt;}
.x1e{left:15.520000pt;}
.x20{left:17.600000pt;}
.x1f{left:19.200000pt;}
.x23{left:21.274667pt;}
.x13{left:22.240000pt;}
.x21{left:23.194667pt;}
.x17{left:25.600000pt;}
.x1d{left:27.040000pt;}
.x25{left:29.480000pt;}
.x24{left:31.066667pt;}
.x19{left:32.320000pt;}
.xe{left:55.034667pt;}
.x16{left:90.880000pt;}
.x6{left:94.400000pt;}
.x14{left:95.560000pt;}
.x1{left:106.751988pt;}
.x26{left:111.194667pt;}
.x4{left:113.472000pt;}
.xc{left:117.472000pt;}
.xd{left:137.754667pt;}
.x3{left:142.426655pt;}
.xa{left:156.186655pt;}
.x8{left:189.480000pt;}
.xf{left:228.186667pt;}
.x5{left:302.466667pt;}
.x18{left:310.626667pt;}
.x10{left:311.746667pt;}
.xb{left:388.866655pt;}
.x9{left:392.866655pt;}
.x2{left:469.693321pt;}
.x7{left:491.453333pt;}
.x15{left:561.853333pt;}
.x1a{left:644.733333pt;}
.x1b{left:727.653333pt;}
.x1c{left:803.973333pt;}
.x11{left:886.560000pt;}
}




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