
    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_238513193176c6a7d2f82657.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_840ee17366901fea867fa465.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5bf54bcd5a4fc8907181ecbc.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_89763aad3b6711818b792f95.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e405a64274d96a3d4bdcb226.woff')format("woff");}.ff6{font-family:ff6;line-height:0.923340;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_868112290bde75c7a7ff9b03.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0a96fa5916fa0da1e66786d8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.923340;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_a05f30afff54567b539797b5.woff')format("woff");}.ff9{font-family:ff9;line-height:0.850586;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_e6778abd85500f5bbcdd1374.woff')format("woff");}.ffa{font-family:ffa;line-height:1.063477;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_130301694ab792f9947e2b7d.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6be2ccedb4de175ab657a200.woff')format("woff");}.ffc{font-family:ffc;line-height:0.738770;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);}
.vd{vertical-align:-26.640000px;}
.v3{vertical-align:-14.400000px;}
.v7{vertical-align:-10.080000px;}
.v2{vertical-align:-5.760000px;}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.880000px;}
.ve{vertical-align:5.760000px;}
.v8{vertical-align:10.080000px;}
.v9{vertical-align:12.960000px;}
.v4{vertical-align:14.400000px;}
.vb{vertical-align:27.360000px;}
.va{vertical-align:35.976000px;}
.vc{vertical-align:41.040000px;}
.v5{vertical-align:56.880000px;}
.ls19{letter-spacing:-2.160000px;}
.ls1a{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.078600px;}
.ls1{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.045360px;}
.ls18{letter-spacing:0.089280px;}
.ls4{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.450720px;}
.ls11{letter-spacing:0.504000px;}
.ls17{letter-spacing:0.540000px;}
.ls13{letter-spacing:0.629280px;}
.ls8{letter-spacing:0.720000px;}
.ls5{letter-spacing:1.440000px;}
.lse{letter-spacing:1.792800px;}
.ls6{letter-spacing:3.600000px;}
.lsb{letter-spacing:4.852800px;}
.ls7{letter-spacing:13.680000px;}
.lsd{letter-spacing:19.656000px;}
.lsc{letter-spacing:23.758560px;}
.ls12{letter-spacing:33.960000px;}
.lsa{letter-spacing:62.784000px;}
.ls3{letter-spacing:73.584000px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.wsa{word-spacing:-51.648000px;}
.ws6{word-spacing:-51.120000px;}
.wsb{word-spacing:-51.041400px;}
.ws9{word-spacing:-28.721160px;}
.ws4{word-spacing:-18.288000px;}
.ws3{word-spacing:-18.216000px;}
.ws0{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.784000px;}
.wsc{word-spacing:-16.560000px;}
.wsd{word-spacing:-14.400000px;}
.wsf{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.ws10{word-spacing:-11.700000px;}
.wse{word-spacing:-10.440000px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:9.187200px;}
._f{margin-left:-9.024000px;}
._11{margin-left:-7.560000px;}
._10{margin-left:-6.048000px;}
._2{margin-left:-4.188000px;}
._3{margin-left:-2.544000px;}
._0{margin-left:-1.068000px;}
._1{width:1.380000px;}
._4{width:3.300000px;}
._5{width:4.596000px;}
._6{width:5.844000px;}
._7{width:6.888000px;}
._8{width:8.220000px;}
._9{width:9.300000px;}
._c{width:10.848000px;}
._d{width:12.300000px;}
._a{width:13.464000px;}
._e{width:14.520000px;}
._b{width:16.344000px;}
._12{width:19.584000px;}
._14{width:21.384000px;}
._22{width:22.524000px;}
._21{width:23.616000px;}
._15{width:29.232000px;}
._16{width:30.300000px;}
._1b{width:33.912000px;}
._1c{width:34.992000px;}
._17{width:40.248000px;}
._18{width:41.616000px;}
._1f{width:42.912000px;}
._20{width:43.968000px;}
._13{width:47.971680px;}
._26{width:56.160000px;}
._19{width:61.992000px;}
._1a{width:63.120000px;}
._1e{width:70.992000px;}
._1d{width:72.072000px;}
._25{width:85.752000px;}
._23{width:110.808000px;}
._24{width:112.152000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(166,166,166);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:2.880000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs3{font-size:51.120000px;}
.fs2{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y43{bottom:6.660000px;}
.y5e{bottom:12.954000px;}
.y46{bottom:12.960000px;}
.y4e{bottom:12.990000px;}
.y44{bottom:13.005000px;}
.y4b{bottom:13.140000px;}
.y40{bottom:102.420000px;}
.y5f{bottom:113.040000px;}
.y3f{bottom:132.696000px;}
.y26{bottom:133.416000px;}
.y5d{bottom:141.516000px;}
.y28{bottom:149.616000px;}
.y27{bottom:158.610000px;}
.y3e{bottom:163.650000px;}
.y25{bottom:164.550000px;}
.y5c{bottom:169.950000px;}
.y3d{bottom:194.790000px;}
.y24{bottom:195.510000px;}
.y5b{bottom:198.390000px;}
.y3c{bottom:225.750000px;}
.y23{bottom:226.470000px;}
.y5a{bottom:229.170000px;}
.y3b{bottom:256.890000px;}
.y22{bottom:257.610000px;}
.y59{bottom:286.050000px;}
.y3a{bottom:287.850000px;}
.y21{bottom:288.570000px;}
.y71{bottom:290.730000px;}
.y58{bottom:314.490000px;}
.y39{bottom:318.990000px;}
.y20{bottom:319.710000px;}
.y70{bottom:321.870000px;}
.y7c{bottom:336.810000px;}
.y57{bottom:342.930000px;}
.y38{bottom:349.950000px;}
.y1f{bottom:350.670000px;}
.y6f{bottom:352.830000px;}
.y7b{bottom:367.815000px;}
.y56{bottom:371.415000px;}
.y37{bottom:380.955000px;}
.y1e{bottom:381.855000px;}
.y6e{bottom:384.015000px;}
.y7a{bottom:398.955000px;}
.y55{bottom:399.855000px;}
.y36{bottom:412.095000px;}
.y1d{bottom:412.815000px;}
.y6d{bottom:414.975000px;}
.y79{bottom:429.915000px;}
.y54{bottom:430.635000px;}
.y6c{bottom:442.155000px;}
.y35{bottom:443.055000px;}
.y1c{bottom:443.955000px;}
.y78{bottom:457.095000px;}
.y53{bottom:459.075000px;}
.y34{bottom:474.195000px;}
.y1b{bottom:474.915000px;}
.y52{bottom:487.515000px;}
.y33{bottom:505.155000px;}
.y1a{bottom:506.055000px;}
.y51{bottom:515.955000px;}
.y32{bottom:536.295000px;}
.y19{bottom:537.015000px;}
.y50{bottom:544.395000px;}
.y31{bottom:567.255000px;}
.y18{bottom:568.155000px;}
.y4f{bottom:573.015000px;}
.y30{bottom:598.395000px;}
.y17{bottom:599.115000px;}
.y4d{bottom:601.455000px;}
.y2f{bottom:629.385000px;}
.y16{bottom:630.285000px;}
.y4c{bottom:632.085000px;}
.y2e{bottom:660.525000px;}
.y15{bottom:661.245000px;}
.y4a{bottom:689.145000px;}
.y2d{bottom:691.485000px;}
.y14{bottom:692.385000px;}
.y77{bottom:696.345000px;}
.y49{bottom:717.585000px;}
.y2c{bottom:722.625000px;}
.y13{bottom:723.345000px;}
.y76{bottom:727.485000px;}
.y6b{bottom:739.905000px;}
.y48{bottom:746.025000px;}
.y2b{bottom:753.585000px;}
.y12{bottom:754.485000px;}
.y75{bottom:758.445000px;}
.y6a{bottom:771.045000px;}
.y47{bottom:774.465000px;}
.y2a{bottom:784.725000px;}
.y11{bottom:785.445000px;}
.y74{bottom:789.585000px;}
.y69{bottom:802.005000px;}
.y45{bottom:802.905000px;}
.y29{bottom:816.045000px;}
.y10{bottom:816.585000px;}
.y73{bottom:820.545000px;}
.y68{bottom:821.085000px;}
.y8{bottom:826.665000px;}
.y42{bottom:833.685000px;}
.y41{bottom:840.345000px;}
.yf{bottom:847.590000px;}
.y72{bottom:847.770000px;}
.y67{bottom:849.570000px;}
.y7{bottom:857.670000px;}
.y66{bottom:878.010000px;}
.ye{bottom:878.730000px;}
.y6{bottom:888.630000px;}
.y65{bottom:906.450000px;}
.yd{bottom:909.690000px;}
.y5{bottom:919.770000px;}
.y64{bottom:934.890000px;}
.yc{bottom:940.830000px;}
.y4{bottom:950.730000px;}
.y63{bottom:963.330000px;}
.yb{bottom:971.790000px;}
.y3{bottom:981.870000px;}
.y62{bottom:994.110000px;}
.ya{bottom:1002.930000px;}
.y2{bottom:1012.830000px;}
.y61{bottom:1022.550000px;}
.y9{bottom:1033.890000px;}
.y60{bottom:1050.990000px;}
.y1{bottom:1065.030000px;}
.hb{height:2.581875px;}
.h8{height:21.816000px;}
.hc{height:28.440000px;}
.ha{height:28.476000px;}
.he{height:28.620000px;}
.hd{height:46.736719px;}
.h2{height:50.800781px;}
.h3{height:52.417969px;}
.h9{height:59.383125px;}
.h1{height:64.546875px;}
.h7{height:69.722578px;}
.h6{height:70.606406px;}
.h4{height:88.442578px;}
.h5{height:100.522875px;}
.h0{height:1188.000000px;}
.w3{width:91.800000px;}
.w5{width:117.396000px;}
.w4{width:117.540000px;}
.w6{width:704.805000px;}
.w2{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:5.400000px;}
.xc{left:8.100000px;}
.x12{left:20.700000px;}
.x1a{left:26.460000px;}
.x1b{left:30.600000px;}
.x10{left:34.020000px;}
.xe{left:37.620000px;}
.x1d{left:38.880000px;}
.x18{left:42.300000px;}
.x14{left:43.560000px;}
.x16{left:45.045000px;}
.x17{left:46.260000px;}
.x1c{left:50.400000px;}
.x6{left:52.199973px;}
.x1e{left:54.540000px;}
.x19{left:58.710000px;}
.x4{left:61.199973px;}
.x2{left:70.199973px;}
.x3{left:79.199986px;}
.x1{left:106.235986px;}
.xa{left:114.336000px;}
.x7{left:132.335986px;}
.x9{left:142.235986px;}
.x8{left:159.329986px;}
.x5{left:163.109986px;}
.xd{left:223.770000px;}
.xf{left:341.175000px;}
.x20{left:417.134986px;}
.x11{left:458.715000px;}
.x13{left:576.105000px;}
.x15{left:693.645000px;}
.x21{left:761.009986px;}
.x1f{left:812.849986px;}
@media print{
.vd{vertical-align:-23.680000pt;}
.v3{vertical-align:-12.800000pt;}
.v7{vertical-align:-8.960000pt;}
.v2{vertical-align:-5.120000pt;}
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.560000pt;}
.ve{vertical-align:5.120000pt;}
.v8{vertical-align:8.960000pt;}
.v9{vertical-align:11.520000pt;}
.v4{vertical-align:12.800000pt;}
.vb{vertical-align:24.320000pt;}
.va{vertical-align:31.978667pt;}
.vc{vertical-align:36.480000pt;}
.v5{vertical-align:50.560000pt;}
.ls19{letter-spacing:-1.920000pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.069867pt;}
.ls1{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.040320pt;}
.ls18{letter-spacing:0.079360pt;}
.ls4{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.400640pt;}
.ls11{letter-spacing:0.448000pt;}
.ls17{letter-spacing:0.480000pt;}
.ls13{letter-spacing:0.559360pt;}
.ls8{letter-spacing:0.640000pt;}
.ls5{letter-spacing:1.280000pt;}
.lse{letter-spacing:1.593600pt;}
.ls6{letter-spacing:3.200000pt;}
.lsb{letter-spacing:4.313600pt;}
.ls7{letter-spacing:12.160000pt;}
.lsd{letter-spacing:17.472000pt;}
.lsc{letter-spacing:21.118720pt;}
.ls12{letter-spacing:30.186667pt;}
.lsa{letter-spacing:55.808000pt;}
.ls3{letter-spacing:65.408000pt;}
.ws5{word-spacing:-64.000000pt;}
.wsa{word-spacing:-45.909333pt;}
.ws6{word-spacing:-45.440000pt;}
.wsb{word-spacing:-45.370133pt;}
.ws9{word-spacing:-25.529920pt;}
.ws4{word-spacing:-16.256000pt;}
.ws3{word-spacing:-16.192000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.808000pt;}
.wsc{word-spacing:-14.720000pt;}
.wsd{word-spacing:-12.800000pt;}
.wsf{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws10{word-spacing:-10.400000pt;}
.wse{word-spacing:-9.280000pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:8.166400pt;}
._f{margin-left:-8.021333pt;}
._11{margin-left:-6.720000pt;}
._10{margin-left:-5.376000pt;}
._2{margin-left:-3.722667pt;}
._3{margin-left:-2.261333pt;}
._0{margin-left:-0.949333pt;}
._1{width:1.226667pt;}
._4{width:2.933333pt;}
._5{width:4.085333pt;}
._6{width:5.194667pt;}
._7{width:6.122667pt;}
._8{width:7.306667pt;}
._9{width:8.266667pt;}
._c{width:9.642667pt;}
._d{width:10.933333pt;}
._a{width:11.968000pt;}
._e{width:12.906667pt;}
._b{width:14.528000pt;}
._12{width:17.408000pt;}
._14{width:19.008000pt;}
._22{width:20.021333pt;}
._21{width:20.992000pt;}
._15{width:25.984000pt;}
._16{width:26.933333pt;}
._1b{width:30.144000pt;}
._1c{width:31.104000pt;}
._17{width:35.776000pt;}
._18{width:36.992000pt;}
._1f{width:38.144000pt;}
._20{width:39.082667pt;}
._13{width:42.641493pt;}
._26{width:49.920000pt;}
._19{width:55.104000pt;}
._1a{width:56.106667pt;}
._1e{width:63.104000pt;}
._1d{width:64.064000pt;}
._25{width:76.224000pt;}
._23{width:98.496000pt;}
._24{width:99.690667pt;}
.fs6{font-size:2.560000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs3{font-size:45.440000pt;}
.fs2{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:5.920000pt;}
.y5e{bottom:11.514667pt;}
.y46{bottom:11.520000pt;}
.y4e{bottom:11.546667pt;}
.y44{bottom:11.560000pt;}
.y4b{bottom:11.680000pt;}
.y40{bottom:91.040000pt;}
.y5f{bottom:100.480000pt;}
.y3f{bottom:117.952000pt;}
.y26{bottom:118.592000pt;}
.y5d{bottom:125.792000pt;}
.y28{bottom:132.992000pt;}
.y27{bottom:140.986667pt;}
.y3e{bottom:145.466667pt;}
.y25{bottom:146.266667pt;}
.y5c{bottom:151.066667pt;}
.y3d{bottom:173.146667pt;}
.y24{bottom:173.786667pt;}
.y5b{bottom:176.346667pt;}
.y3c{bottom:200.666667pt;}
.y23{bottom:201.306667pt;}
.y5a{bottom:203.706667pt;}
.y3b{bottom:228.346667pt;}
.y22{bottom:228.986667pt;}
.y59{bottom:254.266667pt;}
.y3a{bottom:255.866667pt;}
.y21{bottom:256.506667pt;}
.y71{bottom:258.426667pt;}
.y58{bottom:279.546667pt;}
.y39{bottom:283.546667pt;}
.y20{bottom:284.186667pt;}
.y70{bottom:286.106667pt;}
.y7c{bottom:299.386667pt;}
.y57{bottom:304.826667pt;}
.y38{bottom:311.066667pt;}
.y1f{bottom:311.706667pt;}
.y6f{bottom:313.626667pt;}
.y7b{bottom:326.946667pt;}
.y56{bottom:330.146667pt;}
.y37{bottom:338.626667pt;}
.y1e{bottom:339.426667pt;}
.y6e{bottom:341.346667pt;}
.y7a{bottom:354.626667pt;}
.y55{bottom:355.426667pt;}
.y36{bottom:366.306667pt;}
.y1d{bottom:366.946667pt;}
.y6d{bottom:368.866667pt;}
.y79{bottom:382.146667pt;}
.y54{bottom:382.786667pt;}
.y6c{bottom:393.026667pt;}
.y35{bottom:393.826667pt;}
.y1c{bottom:394.626667pt;}
.y78{bottom:406.306667pt;}
.y53{bottom:408.066667pt;}
.y34{bottom:421.506667pt;}
.y1b{bottom:422.146667pt;}
.y52{bottom:433.346667pt;}
.y33{bottom:449.026667pt;}
.y1a{bottom:449.826667pt;}
.y51{bottom:458.626667pt;}
.y32{bottom:476.706667pt;}
.y19{bottom:477.346667pt;}
.y50{bottom:483.906667pt;}
.y31{bottom:504.226667pt;}
.y18{bottom:505.026667pt;}
.y4f{bottom:509.346667pt;}
.y30{bottom:531.906667pt;}
.y17{bottom:532.546667pt;}
.y4d{bottom:534.626667pt;}
.y2f{bottom:559.453333pt;}
.y16{bottom:560.253333pt;}
.y4c{bottom:561.853333pt;}
.y2e{bottom:587.133333pt;}
.y15{bottom:587.773333pt;}
.y4a{bottom:612.573333pt;}
.y2d{bottom:614.653333pt;}
.y14{bottom:615.453333pt;}
.y77{bottom:618.973333pt;}
.y49{bottom:637.853333pt;}
.y2c{bottom:642.333333pt;}
.y13{bottom:642.973333pt;}
.y76{bottom:646.653333pt;}
.y6b{bottom:657.693333pt;}
.y48{bottom:663.133333pt;}
.y2b{bottom:669.853333pt;}
.y12{bottom:670.653333pt;}
.y75{bottom:674.173333pt;}
.y6a{bottom:685.373333pt;}
.y47{bottom:688.413333pt;}
.y2a{bottom:697.533333pt;}
.y11{bottom:698.173333pt;}
.y74{bottom:701.853333pt;}
.y69{bottom:712.893333pt;}
.y45{bottom:713.693333pt;}
.y29{bottom:725.373333pt;}
.y10{bottom:725.853333pt;}
.y73{bottom:729.373333pt;}
.y68{bottom:729.853333pt;}
.y8{bottom:734.813333pt;}
.y42{bottom:741.053333pt;}
.y41{bottom:746.973333pt;}
.yf{bottom:753.413333pt;}
.y72{bottom:753.573333pt;}
.y67{bottom:755.173333pt;}
.y7{bottom:762.373333pt;}
.y66{bottom:780.453333pt;}
.ye{bottom:781.093333pt;}
.y6{bottom:789.893333pt;}
.y65{bottom:805.733333pt;}
.yd{bottom:808.613333pt;}
.y5{bottom:817.573333pt;}
.y64{bottom:831.013333pt;}
.yc{bottom:836.293333pt;}
.y4{bottom:845.093333pt;}
.y63{bottom:856.293333pt;}
.yb{bottom:863.813333pt;}
.y3{bottom:872.773333pt;}
.y62{bottom:883.653333pt;}
.ya{bottom:891.493333pt;}
.y2{bottom:900.293333pt;}
.y61{bottom:908.933333pt;}
.y9{bottom:919.013333pt;}
.y60{bottom:934.213333pt;}
.y1{bottom:946.693333pt;}
.hb{height:2.295000pt;}
.h8{height:19.392000pt;}
.hc{height:25.280000pt;}
.ha{height:25.312000pt;}
.he{height:25.440000pt;}
.hd{height:41.543750pt;}
.h2{height:45.156250pt;}
.h3{height:46.593750pt;}
.h9{height:52.785000pt;}
.h1{height:57.375000pt;}
.h7{height:61.975625pt;}
.h6{height:62.761250pt;}
.h4{height:78.615625pt;}
.h5{height:89.353667pt;}
.h0{height:1056.000000pt;}
.w3{width:81.600000pt;}
.w5{width:104.352000pt;}
.w4{width:104.480000pt;}
.w6{width:626.493333pt;}
.w2{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:4.800000pt;}
.xc{left:7.200000pt;}
.x12{left:18.400000pt;}
.x1a{left:23.520000pt;}
.x1b{left:27.200000pt;}
.x10{left:30.240000pt;}
.xe{left:33.440000pt;}
.x1d{left:34.560000pt;}
.x18{left:37.600000pt;}
.x14{left:38.720000pt;}
.x16{left:40.040000pt;}
.x17{left:41.120000pt;}
.x1c{left:44.800000pt;}
.x6{left:46.399976pt;}
.x1e{left:48.480000pt;}
.x19{left:52.186667pt;}
.x4{left:54.399976pt;}
.x2{left:62.399976pt;}
.x3{left:70.399988pt;}
.x1{left:94.431988pt;}
.xa{left:101.632000pt;}
.x7{left:117.631988pt;}
.x9{left:126.431988pt;}
.x8{left:141.626655pt;}
.x5{left:144.986655pt;}
.xd{left:198.906667pt;}
.xf{left:303.266667pt;}
.x20{left:370.786655pt;}
.x11{left:407.746667pt;}
.x13{left:512.093333pt;}
.x15{left:616.573333pt;}
.x21{left:676.453321pt;}
.x1f{left:722.533321pt;}
}




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