
    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_1f974097ede3b66e3f2d162c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.981934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2cd189394c7d652921f119ef.woff')format("woff");}.ff2{font-family:ff2;line-height:0.981934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')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_3736b25999bc684aa9c99a31.woff')format("woff");}.ff4{font-family:ff4;line-height:0.978027;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_18be30091eb87ee62cd382c6.woff')format("woff");}.ff5{font-family:ff5;line-height:0.978027;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_abd7d0af02eb8640e9fd9a4d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_968a15829512a49347ce2068.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_02f3ba26898c994608b541e8.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_25e4bdac5c04e7522c3b6c02.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cf43210ad3b9b12855d76425.woff')format("woff");}.ffa{font-family:ffa;line-height:0.786133;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_d632821d89206e29f305fd03.woff')format("woff");}.ffb{font-family:ffb;line-height:0.786133;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_402ec7b5dde8dd7cfec90309.woff')format("woff");}.ffc{font-family:ffc;line-height:1.097656;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);}
.v3{vertical-align:-11.520000px;}
.v6{vertical-align:-9.360000px;}
.v9{vertical-align:-7.200000px;}
.va{vertical-align:-5.040000px;}
.v1{vertical-align:-2.880000px;}
.v8{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.440000px;}
.vd{vertical-align:3.600000px;}
.v2{vertical-align:5.040000px;}
.vc{vertical-align:7.920000px;}
.v5{vertical-align:9.360000px;}
.v4{vertical-align:11.520000px;}
.vb{vertical-align:14.400000px;}
.ls8{letter-spacing:-1.080000px;}
.lsa{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.259920px;}
.lsc{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.720000px;}
.lsf{letter-spacing:1.157760px;}
.lse{letter-spacing:1.440000px;}
.ls13{letter-spacing:1.546560px;}
.lsd{letter-spacing:1.624320px;}
.ls11{letter-spacing:2.160000px;}
.ls14{letter-spacing:6.877440px;}
.ls10{letter-spacing:7.306560px;}
.ls4{letter-spacing:14.580000px;}
.ls15{letter-spacing:15.120000px;}
.ls5{letter-spacing:166.500000px;}
.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;}
}
.ws6{word-spacing:-59.760000px;}
.wsb{word-spacing:-16.865400px;}
.ws9{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.488000px;}
.ws3{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.940000px;}
.ws4{word-spacing:-13.860000px;}
.ws2{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.060000px;}
.ws8{word-spacing:-11.700000px;}
.ws7{word-spacing:-10.980000px;}
.wsc{word-spacing:-0.066240px;}
.wsa{word-spacing:0.000000px;}
._7{margin-left:-8.184960px;}
._13{margin-left:-6.981360px;}
._2{margin-left:-5.016960px;}
._5{margin-left:-3.211200px;}
._0{margin-left:-1.224000px;}
._1{width:1.092000px;}
._6{width:2.239680px;}
._11{width:3.320160px;}
._9{width:4.374960px;}
._8{width:5.557680px;}
._a{width:6.812640px;}
._b{width:7.854240px;}
._d{width:9.545280px;}
._12{width:10.876320px;}
._14{width:12.745200px;}
._c{width:13.788240px;}
._1a{width:15.357360px;}
._10{width:17.254320px;}
._f{width:18.867840px;}
._17{width:20.136960px;}
._e{width:21.676560px;}
._1c{width:22.756320px;}
._25{width:23.912640px;}
._24{width:25.038720px;}
._15{width:26.098560px;}
._19{width:27.504960px;}
._1b{width:28.586880px;}
._18{width:29.758080px;}
._20{width:31.530240px;}
._26{width:32.685120px;}
._16{width:34.246080px;}
._1d{width:35.305920px;}
._21{width:36.895680px;}
._1e{width:38.154240px;}
._1f{width:39.211200px;}
._23{width:40.406400px;}
._22{width:41.497920px;}
._27{width:63.987840px;}
._28{width:65.211840px;}
._4{width:88.140000px;}
._2d{width:104.820480px;}
._2c{width:105.851520px;}
._2b{width:229.587840px;}
._2a{width:233.858880px;}
._29{width:235.085760px;}
._3{width:1104.755520px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:11.160000px;}
.y4{bottom:55.440000px;}
.y75{bottom:114.876000px;}
.y3e{bottom:117.936000px;}
.y74{bottom:133.776000px;}
.y3d{bottom:137.016000px;}
.y73{bottom:152.850000px;}
.y3c{bottom:155.910000px;}
.y72{bottom:171.750000px;}
.y3b{bottom:174.990000px;}
.y71{bottom:190.830000px;}
.y3a{bottom:193.890000px;}
.y70{bottom:209.730000px;}
.y39{bottom:212.790000px;}
.y6f{bottom:228.630000px;}
.y38{bottom:231.870000px;}
.y6e{bottom:247.710000px;}
.y37{bottom:250.770000px;}
.y6d{bottom:266.610000px;}
.y36{bottom:269.850000px;}
.y6c{bottom:285.690000px;}
.y35{bottom:288.750000px;}
.y6b{bottom:304.590000px;}
.y34{bottom:307.650000px;}
.y6a{bottom:323.490000px;}
.y33{bottom:326.730000px;}
.y69{bottom:342.615000px;}
.y32{bottom:345.675000px;}
.y68{bottom:361.515000px;}
.y31{bottom:363.495000px;}
.y30{bottom:379.515000px;}
.y67{bottom:380.595000px;}
.y2f{bottom:394.095000px;}
.y66{bottom:399.495000px;}
.y2e{bottom:411.375000px;}
.y65{bottom:418.575000px;}
.y2d{bottom:428.475000px;}
.y64{bottom:437.475000px;}
.y2c{bottom:445.755000px;}
.y63{bottom:456.375000px;}
.y2b{bottom:463.035000px;}
.y62{bottom:475.455000px;}
.y2a{bottom:480.315000px;}
.y61{bottom:494.355000px;}
.y29{bottom:497.595000px;}
.y60{bottom:513.435000px;}
.y28{bottom:514.875000px;}
.y27{bottom:531.975000px;}
.y5f{bottom:532.335000px;}
.y26{bottom:549.255000px;}
.y5e{bottom:551.235000px;}
.y25{bottom:566.535000px;}
.y5d{bottom:570.315000px;}
.y24{bottom:583.815000px;}
.y5c{bottom:589.215000px;}
.y23{bottom:601.095000px;}
.y5b{bottom:608.325000px;}
.y22{bottom:618.225000px;}
.y5a{bottom:627.225000px;}
.y21{bottom:635.505000px;}
.y59{bottom:646.125000px;}
.y20{bottom:652.785000px;}
.y58{bottom:665.205000px;}
.y1f{bottom:670.065000px;}
.y57{bottom:684.105000px;}
.y1e{bottom:687.345000px;}
.y56{bottom:703.185000px;}
.y1d{bottom:704.625000px;}
.y1c{bottom:721.725000px;}
.y55{bottom:722.085000px;}
.y1b{bottom:739.005000px;}
.y54{bottom:740.985000px;}
.y1a{bottom:756.285000px;}
.y53{bottom:760.065000px;}
.y19{bottom:773.565000px;}
.y52{bottom:778.965000px;}
.y18{bottom:790.845000px;}
.y51{bottom:798.045000px;}
.y17{bottom:808.125000px;}
.y50{bottom:816.945000px;}
.y16{bottom:825.225000px;}
.y4f{bottom:835.845000px;}
.y15{bottom:842.505000px;}
.y4e{bottom:854.925000px;}
.y14{bottom:859.785000px;}
.y4d{bottom:873.870000px;}
.y13{bottom:877.110000px;}
.y4c{bottom:892.950000px;}
.y12{bottom:894.750000px;}
.y4b{bottom:911.850000px;}
.y11{bottom:913.290000px;}
.y10{bottom:930.570000px;}
.y4a{bottom:930.930000px;}
.yf{bottom:947.850000px;}
.y49{bottom:949.830000px;}
.ye{bottom:965.490000px;}
.y48{bottom:968.730000px;}
.yd{bottom:984.390000px;}
.y47{bottom:987.810000px;}
.yc{bottom:1003.470000px;}
.y46{bottom:1006.710000px;}
.yb{bottom:1022.910000px;}
.y45{bottom:1025.790000px;}
.ya{bottom:1043.610000px;}
.y44{bottom:1044.690000px;}
.y9{bottom:1060.890000px;}
.y43{bottom:1063.590000px;}
.y8{bottom:1080.870000px;}
.y42{bottom:1082.670000px;}
.y7{bottom:1100.850000px;}
.y41{bottom:1101.570000px;}
.y40{bottom:1120.650000px;}
.y6{bottom:1120.830000px;}
.y3f{bottom:1139.580000px;}
.y5{bottom:1140.840000px;}
.y3{bottom:1161.360000px;}
.y1{bottom:1178.460000px;}
.h2{height:31.320000px;}
.hf{height:33.683203px;}
.h7{height:34.036523px;}
.h5{height:36.768867px;}
.hb{height:41.726953px;}
.h6{height:42.164648px;}
.hd{height:43.156758px;}
.he{height:45.549492px;}
.h10{height:46.251562px;}
.ha{height:46.736719px;}
.hc{height:47.836406px;}
.h9{height:50.488594px;}
.h8{height:54.864844px;}
.h3{height:57.867188px;}
.h12{height:68.031563px;}
.h11{height:69.471563px;}
.h4{height:71.613281px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:62.100000px;}
.w3{width:618.405000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:7.920000px;}
.x4{left:17.100000px;}
.x1{left:108.036000px;}
.x6{left:127.475987px;}
.x10{left:150.509987px;}
.xb{left:160.589987px;}
.x3{left:170.130000px;}
.x7{left:173.909987px;}
.x9{left:226.649987px;}
.xa{left:297.254987px;}
.x8{left:308.054987px;}
.xd{left:418.574987px;}
.xc{left:422.354987px;}
.x5{left:446.474987px;}
.xe{left:613.544987px;}
.xf{left:719.924987px;}
@media print{
.v3{vertical-align:-10.240000pt;}
.v6{vertical-align:-8.320000pt;}
.v9{vertical-align:-6.400000pt;}
.va{vertical-align:-4.480000pt;}
.v1{vertical-align:-2.560000pt;}
.v8{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.280000pt;}
.vd{vertical-align:3.200000pt;}
.v2{vertical-align:4.480000pt;}
.vc{vertical-align:7.040000pt;}
.v5{vertical-align:8.320000pt;}
.v4{vertical-align:10.240000pt;}
.vb{vertical-align:12.800000pt;}
.ls8{letter-spacing:-0.960000pt;}
.lsa{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.231040pt;}
.lsc{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.640000pt;}
.lsf{letter-spacing:1.029120pt;}
.lse{letter-spacing:1.280000pt;}
.ls13{letter-spacing:1.374720pt;}
.lsd{letter-spacing:1.443840pt;}
.ls11{letter-spacing:1.920000pt;}
.ls14{letter-spacing:6.113280pt;}
.ls10{letter-spacing:6.494720pt;}
.ls4{letter-spacing:12.960000pt;}
.ls15{letter-spacing:13.440000pt;}
.ls5{letter-spacing:148.000000pt;}
.ws6{word-spacing:-53.120000pt;}
.wsb{word-spacing:-14.991467pt;}
.ws9{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.656000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws4{word-spacing:-12.320000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws8{word-spacing:-10.400000pt;}
.ws7{word-spacing:-9.760000pt;}
.wsc{word-spacing:-0.058880pt;}
.wsa{word-spacing:0.000000pt;}
._7{margin-left:-7.275520pt;}
._13{margin-left:-6.205653pt;}
._2{margin-left:-4.459520pt;}
._5{margin-left:-2.854400pt;}
._0{margin-left:-1.088000pt;}
._1{width:0.970667pt;}
._6{width:1.990827pt;}
._11{width:2.951253pt;}
._9{width:3.888853pt;}
._8{width:4.940160pt;}
._a{width:6.055680pt;}
._b{width:6.981547pt;}
._d{width:8.484693pt;}
._12{width:9.667840pt;}
._14{width:11.329067pt;}
._c{width:12.256213pt;}
._1a{width:13.650987pt;}
._10{width:15.337173pt;}
._f{width:16.771413pt;}
._17{width:17.899520pt;}
._e{width:19.268053pt;}
._1c{width:20.227840pt;}
._25{width:21.255680pt;}
._24{width:22.256640pt;}
._15{width:23.198720pt;}
._19{width:24.448853pt;}
._1b{width:25.410560pt;}
._18{width:26.451627pt;}
._20{width:28.026880pt;}
._26{width:29.053440pt;}
._16{width:30.440960pt;}
._1d{width:31.383040pt;}
._21{width:32.796160pt;}
._1e{width:33.914880pt;}
._1f{width:34.854400pt;}
._23{width:35.916800pt;}
._22{width:36.887040pt;}
._27{width:56.878080pt;}
._28{width:57.966080pt;}
._4{width:78.346667pt;}
._2d{width:93.173760pt;}
._2c{width:94.090240pt;}
._2b{width:204.078080pt;}
._2a{width:207.874560pt;}
._29{width:208.965120pt;}
._3{width:982.004907pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:9.920000pt;}
.y4{bottom:49.280000pt;}
.y75{bottom:102.112000pt;}
.y3e{bottom:104.832000pt;}
.y74{bottom:118.912000pt;}
.y3d{bottom:121.792000pt;}
.y73{bottom:135.866667pt;}
.y3c{bottom:138.586667pt;}
.y72{bottom:152.666667pt;}
.y3b{bottom:155.546667pt;}
.y71{bottom:169.626667pt;}
.y3a{bottom:172.346667pt;}
.y70{bottom:186.426667pt;}
.y39{bottom:189.146667pt;}
.y6f{bottom:203.226667pt;}
.y38{bottom:206.106667pt;}
.y6e{bottom:220.186667pt;}
.y37{bottom:222.906667pt;}
.y6d{bottom:236.986667pt;}
.y36{bottom:239.866667pt;}
.y6c{bottom:253.946667pt;}
.y35{bottom:256.666667pt;}
.y6b{bottom:270.746667pt;}
.y34{bottom:273.466667pt;}
.y6a{bottom:287.546667pt;}
.y33{bottom:290.426667pt;}
.y69{bottom:304.546667pt;}
.y32{bottom:307.266667pt;}
.y68{bottom:321.346667pt;}
.y31{bottom:323.106667pt;}
.y30{bottom:337.346667pt;}
.y67{bottom:338.306667pt;}
.y2f{bottom:350.306667pt;}
.y66{bottom:355.106667pt;}
.y2e{bottom:365.666667pt;}
.y65{bottom:372.066667pt;}
.y2d{bottom:380.866667pt;}
.y64{bottom:388.866667pt;}
.y2c{bottom:396.226667pt;}
.y63{bottom:405.666667pt;}
.y2b{bottom:411.586667pt;}
.y62{bottom:422.626667pt;}
.y2a{bottom:426.946667pt;}
.y61{bottom:439.426667pt;}
.y29{bottom:442.306667pt;}
.y60{bottom:456.386667pt;}
.y28{bottom:457.666667pt;}
.y27{bottom:472.866667pt;}
.y5f{bottom:473.186667pt;}
.y26{bottom:488.226667pt;}
.y5e{bottom:489.986667pt;}
.y25{bottom:503.586667pt;}
.y5d{bottom:506.946667pt;}
.y24{bottom:518.946667pt;}
.y5c{bottom:523.746667pt;}
.y23{bottom:534.306667pt;}
.y5b{bottom:540.733333pt;}
.y22{bottom:549.533333pt;}
.y5a{bottom:557.533333pt;}
.y21{bottom:564.893333pt;}
.y59{bottom:574.333333pt;}
.y20{bottom:580.253333pt;}
.y58{bottom:591.293333pt;}
.y1f{bottom:595.613333pt;}
.y57{bottom:608.093333pt;}
.y1e{bottom:610.973333pt;}
.y56{bottom:625.053333pt;}
.y1d{bottom:626.333333pt;}
.y1c{bottom:641.533333pt;}
.y55{bottom:641.853333pt;}
.y1b{bottom:656.893333pt;}
.y54{bottom:658.653333pt;}
.y1a{bottom:672.253333pt;}
.y53{bottom:675.613333pt;}
.y19{bottom:687.613333pt;}
.y52{bottom:692.413333pt;}
.y18{bottom:702.973333pt;}
.y51{bottom:709.373333pt;}
.y17{bottom:718.333333pt;}
.y50{bottom:726.173333pt;}
.y16{bottom:733.533333pt;}
.y4f{bottom:742.973333pt;}
.y15{bottom:748.893333pt;}
.y4e{bottom:759.933333pt;}
.y14{bottom:764.253333pt;}
.y4d{bottom:776.773333pt;}
.y13{bottom:779.653333pt;}
.y4c{bottom:793.733333pt;}
.y12{bottom:795.333333pt;}
.y4b{bottom:810.533333pt;}
.y11{bottom:811.813333pt;}
.y10{bottom:827.173333pt;}
.y4a{bottom:827.493333pt;}
.yf{bottom:842.533333pt;}
.y49{bottom:844.293333pt;}
.ye{bottom:858.213333pt;}
.y48{bottom:861.093333pt;}
.yd{bottom:875.013333pt;}
.y47{bottom:878.053333pt;}
.yc{bottom:891.973333pt;}
.y46{bottom:894.853333pt;}
.yb{bottom:909.253333pt;}
.y45{bottom:911.813333pt;}
.ya{bottom:927.653333pt;}
.y44{bottom:928.613333pt;}
.y9{bottom:943.013333pt;}
.y43{bottom:945.413333pt;}
.y8{bottom:960.773333pt;}
.y42{bottom:962.373333pt;}
.y7{bottom:978.533333pt;}
.y41{bottom:979.173333pt;}
.y40{bottom:996.133333pt;}
.y6{bottom:996.293333pt;}
.y3f{bottom:1012.960000pt;}
.y5{bottom:1014.080000pt;}
.y3{bottom:1032.320000pt;}
.y1{bottom:1047.520000pt;}
.h2{height:27.840000pt;}
.hf{height:29.940625pt;}
.h7{height:30.254687pt;}
.h5{height:32.683437pt;}
.hb{height:37.090625pt;}
.h6{height:37.479688pt;}
.hd{height:38.361562pt;}
.he{height:40.488438pt;}
.h10{height:41.112500pt;}
.ha{height:41.543750pt;}
.hc{height:42.521250pt;}
.h9{height:44.878750pt;}
.h8{height:48.768750pt;}
.h3{height:51.437500pt;}
.h12{height:60.472500pt;}
.h11{height:61.752500pt;}
.h4{height:63.656250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:55.200000pt;}
.w3{width:549.693333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.040000pt;}
.x4{left:15.200000pt;}
.x1{left:96.032000pt;}
.x6{left:113.311988pt;}
.x10{left:133.786655pt;}
.xb{left:142.746655pt;}
.x3{left:151.226667pt;}
.x7{left:154.586655pt;}
.x9{left:201.466655pt;}
.xa{left:264.226655pt;}
.x8{left:273.826655pt;}
.xd{left:372.066655pt;}
.xc{left:375.426655pt;}
.x5{left:396.866655pt;}
.xe{left:545.373322pt;}
.xf{left:639.933322pt;}
}




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