
    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_535104ec32c4f6dbad3678bc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_aea8cee41c317d532a2f1a53.woff')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_9f21aac4bab3c6894bdd17bd.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_dd03a1b2d6aeb4e70edcf61e.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6257318cba5f8c987f986a41.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls2{letter-spacing:-0.504000px;}
.ls1{letter-spacing:-0.341400px;}
.ls7{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.720000px;}
.ls4{letter-spacing:54.864000px;}
.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;}
.ws4{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws2{word-spacing:-17.496000px;}
.ws1{word-spacing:-12.060000px;}
.ws3{word-spacing:0.000000px;}
._2{margin-left:-3.156000px;}
._1d{margin-left:-2.088000px;}
._0{margin-left:-1.080000px;}
._1{width:1.008000px;}
._3{width:2.232000px;}
._4{width:4.032000px;}
._5{width:5.484000px;}
._11{width:6.888000px;}
._f{width:8.208000px;}
._d{width:9.864000px;}
._e{width:11.160000px;}
._9{width:12.312000px;}
._a{width:13.392000px;}
._12{width:14.688000px;}
._13{width:16.104000px;}
._14{width:19.368000px;}
._c{width:20.664000px;}
._b{width:21.672000px;}
._17{width:22.716000px;}
._10{width:23.736000px;}
._7{width:24.840000px;}
._8{width:26.148000px;}
._1e{width:27.180000px;}
._1c{width:28.440000px;}
._18{width:29.592000px;}
._19{width:30.816000px;}
._15{width:31.968000px;}
._16{width:33.120000px;}
._1a{width:34.992000px;}
._1b{width:36.072000px;}
._24{width:42.264000px;}
._23{width:43.272000px;}
._21{width:44.604000px;}
._6{width:45.792000px;}
._26{width:47.484000px;}
._28{width:51.048000px;}
._32{width:52.320000px;}
._20{width:55.944000px;}
._34{width:59.184000px;}
._35{width:67.032000px;}
._2c{width:71.784000px;}
._2f{width:75.024000px;}
._30{width:76.320000px;}
._2d{width:78.984000px;}
._2a{width:89.352000px;}
._36{width:98.784000px;}
._27{width:100.764000px;}
._25{width:131.544000px;}
._33{width:142.056000px;}
._29{width:147.240000px;}
._31{width:166.248000px;}
._2e{width:179.964000px;}
._22{width:185.724000px;}
._1f{width:285.744000px;}
._2b{width:347.832000px;}
._37{width:381.384000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y86{bottom:14.220000px;}
.y88{bottom:14.400000px;}
.y9b{bottom:14.580000px;}
.y90{bottom:14.760000px;}
.y85{bottom:45.360000px;}
.y8f{bottom:45.714000px;}
.y92{bottom:45.720000px;}
.y6{bottom:58.320000px;}
.y9a{bottom:76.680000px;}
.y8e{bottom:76.854000px;}
.y95{bottom:76.860000px;}
.y5{bottom:79.056000px;}
.y8d{bottom:107.814000px;}
.y94{bottom:107.820000px;}
.y99{bottom:107.865000px;}
.y5a{bottom:112.176000px;}
.y7b{bottom:112.536000px;}
.y89{bottom:115.776000px;}
.y48{bottom:120.276000px;}
.ya3{bottom:130.536000px;}
.y27{bottom:137.556000px;}
.ya0{bottom:138.780000px;}
.y98{bottom:138.825000px;}
.y8c{bottom:138.954000px;}
.y7a{bottom:143.496000px;}
.y59{bottom:143.676000px;}
.y7c{bottom:150.870000px;}
.y47{bottom:151.230000px;}
.y26{bottom:168.510000px;}
.y8b{bottom:169.914000px;}
.y9f{bottom:169.950000px;}
.y97{bottom:169.965000px;}
.y79{bottom:174.630000px;}
.y58{bottom:175.890000px;}
.yc1{bottom:180.750000px;}
.y46{bottom:182.370000px;}
.y25{bottom:199.650000px;}
.y9e{bottom:200.910000px;}
.y8a{bottom:201.054000px;}
.y78{bottom:205.590000px;}
.y57{bottom:207.930000px;}
.yc0{bottom:211.890000px;}
.y4e{bottom:212.970000px;}
.y45{bottom:213.330000px;}
.ya2{bottom:224.490000px;}
.y24{bottom:230.610000px;}
.y77{bottom:236.730000px;}
.y56{bottom:239.250000px;}
.ybf{bottom:242.850000px;}
.y44{bottom:244.470000px;}
.y23{bottom:261.750000px;}
.y76{bottom:267.690000px;}
.y55{bottom:270.390000px;}
.ybe{bottom:273.990000px;}
.y43{bottom:275.430000px;}
.y22{bottom:292.350000px;}
.y75{bottom:298.830000px;}
.y54{bottom:302.790000px;}
.ybd{bottom:304.950000px;}
.y42{bottom:306.570000px;}
.y21{bottom:323.850000px;}
.y74{bottom:329.835000px;}
.y87{bottom:333.975000px;}
.y53{bottom:335.055000px;}
.ybc{bottom:336.135000px;}
.y4d{bottom:337.215000px;}
.y41{bottom:337.575000px;}
.ya1{bottom:349.455000px;}
.y20{bottom:354.855000px;}
.y73{bottom:360.615000px;}
.y84{bottom:365.835000px;}
.ybb{bottom:367.095000px;}
.y52{bottom:367.455000px;}
.y4b{bottom:368.355000px;}
.y40{bottom:368.715000px;}
.y1f{bottom:385.995000px;}
.y72{bottom:391.575000px;}
.yba{bottom:398.235000px;}
.y4a{bottom:399.315000px;}
.y3f{bottom:399.675000px;}
.y1e{bottom:416.955000px;}
.y71{bottom:423.075000px;}
.yb9{bottom:428.835000px;}
.y51{bottom:430.455000px;}
.y3e{bottom:430.815000px;}
.y9d{bottom:443.415000px;}
.y1d{bottom:448.095000px;}
.y70{bottom:454.035000px;}
.yb8{bottom:459.975000px;}
.y3d{bottom:461.775000px;}
.y1c{bottom:479.055000px;}
.y6f{bottom:485.175000px;}
.yb7{bottom:491.295000px;}
.y3c{bottom:492.915000px;}
.y1b{bottom:510.195000px;}
.y6e{bottom:516.135000px;}
.yb6{bottom:522.435000px;}
.y4c{bottom:523.515000px;}
.y3b{bottom:523.875000px;}
.y1a{bottom:541.155000px;}
.y6d{bottom:547.275000px;}
.yb5{bottom:553.395000px;}
.y3a{bottom:554.655000px;}
.y49{bottom:555.015000px;}
.y19{bottom:572.295000px;}
.y6c{bottom:578.235000px;}
.yb4{bottom:584.535000px;}
.y80{bottom:585.615000px;}
.y39{bottom:585.975000px;}
.y18{bottom:603.285000px;}
.y6b{bottom:609.405000px;}
.yb3{bottom:615.525000px;}
.y38{bottom:617.145000px;}
.y17{bottom:634.425000px;}
.y6a{bottom:640.365000px;}
.yb2{bottom:646.665000px;}
.y37{bottom:648.105000px;}
.y9c{bottom:661.425000px;}
.y16{bottom:665.385000px;}
.y69{bottom:671.505000px;}
.yb1{bottom:677.625000px;}
.y83{bottom:678.885000px;}
.y36{bottom:679.245000px;}
.y15{bottom:696.525000px;}
.y68{bottom:702.465000px;}
.yb0{bottom:708.765000px;}
.y50{bottom:709.845000px;}
.y35{bottom:710.205000px;}
.y14{bottom:727.485000px;}
.y67{bottom:733.605000px;}
.yaf{bottom:739.725000px;}
.y34{bottom:741.345000px;}
.y96{bottom:755.385000px;}
.y13{bottom:758.445000px;}
.y66{bottom:764.565000px;}
.yae{bottom:770.865000px;}
.y7e{bottom:771.945000px;}
.y33{bottom:772.305000px;}
.y12{bottom:789.585000px;}
.y65{bottom:795.345000px;}
.yad{bottom:801.825000px;}
.y7d{bottom:803.085000px;}
.y32{bottom:803.445000px;}
.y11{bottom:820.545000px;}
.y64{bottom:826.665000px;}
.yac{bottom:832.965000px;}
.y31{bottom:834.405000px;}
.y10{bottom:851.685000px;}
.y63{bottom:857.805000px;}
.yab{bottom:863.970000px;}
.y82{bottom:865.230000px;}
.y30{bottom:865.590000px;}
.yf{bottom:882.330000px;}
.y62{bottom:890.070000px;}
.yaa{bottom:895.110000px;}
.y81{bottom:896.190000px;}
.y2f{bottom:896.550000px;}
.ye{bottom:913.830000px;}
.y61{bottom:922.110000px;}
.ya9{bottom:926.070000px;}
.y2e{bottom:927.690000px;}
.y93{bottom:942.450000px;}
.yd{bottom:944.790000px;}
.y60{bottom:953.430000px;}
.ya8{bottom:957.210000px;}
.y2d{bottom:958.650000px;}
.yc{bottom:984.210000px;}
.y5f{bottom:984.570000px;}
.ya7{bottom:988.170000px;}
.y7f{bottom:989.430000px;}
.y2c{bottom:989.790000px;}
.yb{bottom:1006.890000px;}
.y5e{bottom:1016.970000px;}
.ya6{bottom:1019.310000px;}
.y4f{bottom:1020.390000px;}
.y2b{bottom:1020.750000px;}
.ya{bottom:1046.310000px;}
.y5d{bottom:1049.190000px;}
.ya5{bottom:1049.910000px;}
.y2a{bottom:1051.890000px;}
.y91{bottom:1067.370000px;}
.y9{bottom:1068.630000px;}
.ya4{bottom:1081.410000px;}
.y5c{bottom:1081.590000px;}
.y29{bottom:1082.850000px;}
.y8{bottom:1089.510000px;}
.yc2{bottom:1098.510000px;}
.y7{bottom:1110.750000px;}
.y5b{bottom:1113.450000px;}
.y28{bottom:1113.810000px;}
.y4{bottom:1134.000000px;}
.y3{bottom:1150.920000px;}
.y2{bottom:1171.980000px;}
.y1{bottom:1192.320000px;}
.h14{height:30.996000px;}
.hc{height:31.140000px;}
.h7{height:47.344922px;}
.h9{height:50.273438px;}
.h4{height:53.709961px;}
.hb{height:62.100000px;}
.he{height:62.136000px;}
.h8{height:70.628906px;}
.h3{height:70.664062px;}
.h2{height:72.562500px;}
.ha{height:74.004654px;}
.h6{height:81.736875px;}
.h5{height:84.898125px;}
.h11{height:93.240000px;}
.hf{height:124.200000px;}
.h13{height:124.236000px;}
.h10{height:186.330000px;}
.h12{height:217.290000px;}
.hd{height:217.470000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:212.250000px;}
.w4{width:212.430000px;}
.w5{width:212.475000px;}
.w2{width:638.610000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:7.740000px;}
.x6{left:108.036000px;}
.xc{left:123.876000px;}
.xa{left:125.676000px;}
.xf{left:127.116000px;}
.x7{left:145.656000px;}
.x3{left:256.575000px;}
.x9{left:323.535000px;}
.x11{left:340.095000px;}
.x1{left:350.175000px;}
.xb{left:385.995000px;}
.x2{left:397.695000px;}
.xd{left:403.305000px;}
.xe{left:437.505000px;}
.x5{left:442.005000px;}
.x8{left:446.505000px;}
.x12{left:553.245000px;}
.x4{left:785.160000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls2{letter-spacing:-0.448000pt;}
.ls1{letter-spacing:-0.303467pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls4{letter-spacing:48.768000pt;}
.ws5{word-spacing:-64.000000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws2{word-spacing:-15.552000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws3{word-spacing:0.000000pt;}
._2{margin-left:-2.805333pt;}
._1d{margin-left:-1.856000pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.896000pt;}
._3{width:1.984000pt;}
._4{width:3.584000pt;}
._5{width:4.874667pt;}
._11{width:6.122667pt;}
._f{width:7.296000pt;}
._d{width:8.768000pt;}
._e{width:9.920000pt;}
._9{width:10.944000pt;}
._a{width:11.904000pt;}
._12{width:13.056000pt;}
._13{width:14.314667pt;}
._14{width:17.216000pt;}
._c{width:18.368000pt;}
._b{width:19.264000pt;}
._17{width:20.192000pt;}
._10{width:21.098667pt;}
._7{width:22.080000pt;}
._8{width:23.242667pt;}
._1e{width:24.160000pt;}
._1c{width:25.280000pt;}
._18{width:26.304000pt;}
._19{width:27.392000pt;}
._15{width:28.416000pt;}
._16{width:29.440000pt;}
._1a{width:31.104000pt;}
._1b{width:32.064000pt;}
._24{width:37.568000pt;}
._23{width:38.464000pt;}
._21{width:39.648000pt;}
._6{width:40.704000pt;}
._26{width:42.208000pt;}
._28{width:45.376000pt;}
._32{width:46.506667pt;}
._20{width:49.728000pt;}
._34{width:52.608000pt;}
._35{width:59.584000pt;}
._2c{width:63.808000pt;}
._2f{width:66.688000pt;}
._30{width:67.840000pt;}
._2d{width:70.208000pt;}
._2a{width:79.424000pt;}
._36{width:87.808000pt;}
._27{width:89.568000pt;}
._25{width:116.928000pt;}
._33{width:126.272000pt;}
._29{width:130.880000pt;}
._31{width:147.776000pt;}
._2e{width:159.968000pt;}
._22{width:165.088000pt;}
._1f{width:253.994667pt;}
._2b{width:309.184000pt;}
._37{width:339.008000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:12.640000pt;}
.y88{bottom:12.800000pt;}
.y9b{bottom:12.960000pt;}
.y90{bottom:13.120000pt;}
.y85{bottom:40.320000pt;}
.y8f{bottom:40.634667pt;}
.y92{bottom:40.640000pt;}
.y6{bottom:51.840000pt;}
.y9a{bottom:68.160000pt;}
.y8e{bottom:68.314667pt;}
.y95{bottom:68.320000pt;}
.y5{bottom:70.272000pt;}
.y8d{bottom:95.834667pt;}
.y94{bottom:95.840000pt;}
.y99{bottom:95.880000pt;}
.y5a{bottom:99.712000pt;}
.y7b{bottom:100.032000pt;}
.y89{bottom:102.912000pt;}
.y48{bottom:106.912000pt;}
.ya3{bottom:116.032000pt;}
.y27{bottom:122.272000pt;}
.ya0{bottom:123.360000pt;}
.y98{bottom:123.400000pt;}
.y8c{bottom:123.514667pt;}
.y7a{bottom:127.552000pt;}
.y59{bottom:127.712000pt;}
.y7c{bottom:134.106667pt;}
.y47{bottom:134.426667pt;}
.y26{bottom:149.786667pt;}
.y8b{bottom:151.034667pt;}
.y9f{bottom:151.066667pt;}
.y97{bottom:151.080000pt;}
.y79{bottom:155.226667pt;}
.y58{bottom:156.346667pt;}
.yc1{bottom:160.666667pt;}
.y46{bottom:162.106667pt;}
.y25{bottom:177.466667pt;}
.y9e{bottom:178.586667pt;}
.y8a{bottom:178.714667pt;}
.y78{bottom:182.746667pt;}
.y57{bottom:184.826667pt;}
.yc0{bottom:188.346667pt;}
.y4e{bottom:189.306667pt;}
.y45{bottom:189.626667pt;}
.ya2{bottom:199.546667pt;}
.y24{bottom:204.986667pt;}
.y77{bottom:210.426667pt;}
.y56{bottom:212.666667pt;}
.ybf{bottom:215.866667pt;}
.y44{bottom:217.306667pt;}
.y23{bottom:232.666667pt;}
.y76{bottom:237.946667pt;}
.y55{bottom:240.346667pt;}
.ybe{bottom:243.546667pt;}
.y43{bottom:244.826667pt;}
.y22{bottom:259.866667pt;}
.y75{bottom:265.626667pt;}
.y54{bottom:269.146667pt;}
.ybd{bottom:271.066667pt;}
.y42{bottom:272.506667pt;}
.y21{bottom:287.866667pt;}
.y74{bottom:293.186667pt;}
.y87{bottom:296.866667pt;}
.y53{bottom:297.826667pt;}
.ybc{bottom:298.786667pt;}
.y4d{bottom:299.746667pt;}
.y41{bottom:300.066667pt;}
.ya1{bottom:310.626667pt;}
.y20{bottom:315.426667pt;}
.y73{bottom:320.546667pt;}
.y84{bottom:325.186667pt;}
.ybb{bottom:326.306667pt;}
.y52{bottom:326.626667pt;}
.y4b{bottom:327.426667pt;}
.y40{bottom:327.746667pt;}
.y1f{bottom:343.106667pt;}
.y72{bottom:348.066667pt;}
.yba{bottom:353.986667pt;}
.y4a{bottom:354.946667pt;}
.y3f{bottom:355.266667pt;}
.y1e{bottom:370.626667pt;}
.y71{bottom:376.066667pt;}
.yb9{bottom:381.186667pt;}
.y51{bottom:382.626667pt;}
.y3e{bottom:382.946667pt;}
.y9d{bottom:394.146667pt;}
.y1d{bottom:398.306667pt;}
.y70{bottom:403.586667pt;}
.yb8{bottom:408.866667pt;}
.y3d{bottom:410.466667pt;}
.y1c{bottom:425.826667pt;}
.y6f{bottom:431.266667pt;}
.yb7{bottom:436.706667pt;}
.y3c{bottom:438.146667pt;}
.y1b{bottom:453.506667pt;}
.y6e{bottom:458.786667pt;}
.yb6{bottom:464.386667pt;}
.y4c{bottom:465.346667pt;}
.y3b{bottom:465.666667pt;}
.y1a{bottom:481.026667pt;}
.y6d{bottom:486.466667pt;}
.yb5{bottom:491.906667pt;}
.y3a{bottom:493.026667pt;}
.y49{bottom:493.346667pt;}
.y19{bottom:508.706667pt;}
.y6c{bottom:513.986667pt;}
.yb4{bottom:519.586667pt;}
.y80{bottom:520.546667pt;}
.y39{bottom:520.866667pt;}
.y18{bottom:536.253333pt;}
.y6b{bottom:541.693333pt;}
.yb3{bottom:547.133333pt;}
.y38{bottom:548.573333pt;}
.y17{bottom:563.933333pt;}
.y6a{bottom:569.213333pt;}
.yb2{bottom:574.813333pt;}
.y37{bottom:576.093333pt;}
.y9c{bottom:587.933333pt;}
.y16{bottom:591.453333pt;}
.y69{bottom:596.893333pt;}
.yb1{bottom:602.333333pt;}
.y83{bottom:603.453333pt;}
.y36{bottom:603.773333pt;}
.y15{bottom:619.133333pt;}
.y68{bottom:624.413333pt;}
.yb0{bottom:630.013333pt;}
.y50{bottom:630.973333pt;}
.y35{bottom:631.293333pt;}
.y14{bottom:646.653333pt;}
.y67{bottom:652.093333pt;}
.yaf{bottom:657.533333pt;}
.y34{bottom:658.973333pt;}
.y96{bottom:671.453333pt;}
.y13{bottom:674.173333pt;}
.y66{bottom:679.613333pt;}
.yae{bottom:685.213333pt;}
.y7e{bottom:686.173333pt;}
.y33{bottom:686.493333pt;}
.y12{bottom:701.853333pt;}
.y65{bottom:706.973333pt;}
.yad{bottom:712.733333pt;}
.y7d{bottom:713.853333pt;}
.y32{bottom:714.173333pt;}
.y11{bottom:729.373333pt;}
.y64{bottom:734.813333pt;}
.yac{bottom:740.413333pt;}
.y31{bottom:741.693333pt;}
.y10{bottom:757.053333pt;}
.y63{bottom:762.493333pt;}
.yab{bottom:767.973333pt;}
.y82{bottom:769.093333pt;}
.y30{bottom:769.413333pt;}
.yf{bottom:784.293333pt;}
.y62{bottom:791.173333pt;}
.yaa{bottom:795.653333pt;}
.y81{bottom:796.613333pt;}
.y2f{bottom:796.933333pt;}
.ye{bottom:812.293333pt;}
.y61{bottom:819.653333pt;}
.ya9{bottom:823.173333pt;}
.y2e{bottom:824.613333pt;}
.y93{bottom:837.733333pt;}
.yd{bottom:839.813333pt;}
.y60{bottom:847.493333pt;}
.ya8{bottom:850.853333pt;}
.y2d{bottom:852.133333pt;}
.yc{bottom:874.853333pt;}
.y5f{bottom:875.173333pt;}
.ya7{bottom:878.373333pt;}
.y7f{bottom:879.493333pt;}
.y2c{bottom:879.813333pt;}
.yb{bottom:895.013333pt;}
.y5e{bottom:903.973333pt;}
.ya6{bottom:906.053333pt;}
.y4f{bottom:907.013333pt;}
.y2b{bottom:907.333333pt;}
.ya{bottom:930.053333pt;}
.y5d{bottom:932.613333pt;}
.ya5{bottom:933.253333pt;}
.y2a{bottom:935.013333pt;}
.y91{bottom:948.773333pt;}
.y9{bottom:949.893333pt;}
.ya4{bottom:961.253333pt;}
.y5c{bottom:961.413333pt;}
.y29{bottom:962.533333pt;}
.y8{bottom:968.453333pt;}
.yc2{bottom:976.453333pt;}
.y7{bottom:987.333333pt;}
.y5b{bottom:989.733333pt;}
.y28{bottom:990.053333pt;}
.y4{bottom:1008.000000pt;}
.y3{bottom:1023.040000pt;}
.y2{bottom:1041.760000pt;}
.y1{bottom:1059.840000pt;}
.h14{height:27.552000pt;}
.hc{height:27.680000pt;}
.h7{height:42.084375pt;}
.h9{height:44.687500pt;}
.h4{height:47.742188pt;}
.hb{height:55.200000pt;}
.he{height:55.232000pt;}
.h8{height:62.781250pt;}
.h3{height:62.812500pt;}
.h2{height:64.500000pt;}
.ha{height:65.781915pt;}
.h6{height:72.655000pt;}
.h5{height:75.465000pt;}
.h11{height:82.880000pt;}
.hf{height:110.400000pt;}
.h13{height:110.432000pt;}
.h10{height:165.626667pt;}
.h12{height:193.146667pt;}
.hd{height:193.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:188.666667pt;}
.w4{width:188.826667pt;}
.w5{width:188.866667pt;}
.w2{width:567.653333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.880000pt;}
.x6{left:96.032000pt;}
.xc{left:110.112000pt;}
.xa{left:111.712000pt;}
.xf{left:112.992000pt;}
.x7{left:129.472000pt;}
.x3{left:228.066667pt;}
.x9{left:287.586667pt;}
.x11{left:302.306667pt;}
.x1{left:311.266667pt;}
.xb{left:343.106667pt;}
.x2{left:353.506667pt;}
.xd{left:358.493333pt;}
.xe{left:388.893333pt;}
.x5{left:392.893333pt;}
.x8{left:396.893333pt;}
.x12{left:491.773333pt;}
.x4{left:697.920000pt;}
}




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