
    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_cef1d8f8e2c19026c47c6799.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_6855e83608bf873875cfa847.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_258dc2927105bf2980b70769.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_f3e7a014947a95f938f55258.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_97403f2e43ca2383772c790e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2aefc6531d65453a9219496c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_30d034bbc7c04a7c0a0c03d3.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1e7ade7fcdaadd6fc75913d1.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_8f0206b9846f60c57dbb963f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c541e750aa65e8d30f1dbee4.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v3{vertical-align:-83.640000px;}
.v2{vertical-align:-80.640000px;}
.v1{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-1.440000px;}
.ls5{letter-spacing:-0.728640px;}
.ls14{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.657360px;}
.ls10{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.018600px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.059760px;}
.ls4{letter-spacing:0.132480px;}
.ls1{letter-spacing:0.173520px;}
.ls2{letter-spacing:0.179280px;}
.ls6{letter-spacing:0.331200px;}
.lse{letter-spacing:0.720000px;}
.ls12{letter-spacing:1.440000px;}
.ls13{letter-spacing:13.680000px;}
.lsd{letter-spacing:33.984000px;}
.lsc{letter-spacing:89.436000px;}
.lsb{letter-spacing:194.376000px;}
.ls8{letter-spacing:197.436000px;}
.lsa{letter-spacing:849.216000px;}
.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;}
}
.wsc{word-spacing:-72.000000px;}
.wsa{word-spacing:-23.940000px;}
.wsb{word-spacing:-23.921400px;}
.wse{word-spacing:-19.440000px;}
.wsd{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.928000px;}
.wsf{word-spacing:-17.712000px;}
.ws3{word-spacing:-16.891200px;}
.ws5{word-spacing:-16.692480px;}
.ws4{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.831360px;}
.ws1{word-spacing:-14.999760px;}
.ws6{word-spacing:-0.861120px;}
.ws9{word-spacing:-0.728640px;}
.ws8{word-spacing:-0.132480px;}
.ws0{word-spacing:0.000000px;}
.ws7{word-spacing:0.657360px;}
._9{margin-left:-4.824000px;}
._6{margin-left:-3.014999px;}
._0{margin-left:-1.443000px;}
._2{width:1.006896px;}
._1{width:2.012952px;}
._3{width:3.603048px;}
._11{width:4.896000px;}
._14{width:6.336266px;}
._16{width:7.703734px;}
._4{width:9.076105px;}
._5{width:10.269476px;}
._a{width:11.547629px;}
._b{width:12.800371px;}
._12{width:14.448000px;}
._13{width:15.768000px;}
._15{width:16.854000px;}
._f{width:19.800000px;}
._10{width:21.024000px;}
._c{width:22.680000px;}
._d{width:24.060000px;}
._e{width:25.128000px;}
._18{width:26.556000px;}
._19{width:28.080000px;}
._1a{width:29.592000px;}
._1b{width:30.672000px;}
._1c{width:35.784000px;}
._1d{width:37.080000px;}
._17{width:38.164105px;}
._7{width:39.312000px;}
._8{width:40.896000px;}
.fc3{color:rgb(46,116,181);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(91,155,213);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs6{font-size:63.360000px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs8{font-size:95.760000px;}
.fs0{font-size:120.240000px;}
.fs3{font-size:167.760000px;}
.fs2{font-size:210.240000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:111.636000px;}
.y80{bottom:125.316000px;}
.y3d{bottom:127.452960px;}
.y91{bottom:133.776000px;}
.y59{bottom:142.596000px;}
.y1a{bottom:146.376000px;}
.y3c{bottom:146.530080px;}
.y7f{bottom:156.450000px;}
.y90{bottom:164.910000px;}
.y3b{bottom:165.425040px;}
.y58{bottom:173.730000px;}
.y3a{bottom:184.320000px;}
.y7e{bottom:187.410000px;}
.y19{bottom:189.030000px;}
.y8f{bottom:195.870000px;}
.y39{bottom:203.420880px;}
.y57{bottom:204.690000px;}
.y7d{bottom:218.550000px;}
.y18{bottom:219.990000px;}
.y38{bottom:222.315840px;}
.y8e{bottom:226.830000px;}
.y56{bottom:235.830000px;}
.y37{bottom:241.392960px;}
.y7c{bottom:249.510000px;}
.y17{bottom:251.130000px;}
.y8d{bottom:257.970000px;}
.y36{bottom:260.287920px;}
.y55{bottom:266.790000px;}
.y35{bottom:279.182880px;}
.y7b{bottom:280.695000px;}
.y16{bottom:282.135000px;}
.y8c{bottom:288.975000px;}
.y54{bottom:297.975000px;}
.y34{bottom:298.260000px;}
.y7a{bottom:311.655000px;}
.y15{bottom:313.275000px;}
.y8b{bottom:320.115000px;}
.y53{bottom:328.935000px;}
.y14{bottom:336.135000px;}
.y79{bottom:342.795000px;}
.y8a{bottom:351.075000px;}
.y52{bottom:360.075000px;}
.y33{bottom:360.360000px;}
.y13{bottom:370.695000px;}
.y78{bottom:373.755000px;}
.y89{bottom:382.215000px;}
.y51{bottom:391.035000px;}
.y32{bottom:400.500000px;}
.y77{bottom:404.895000px;}
.y12{bottom:413.175000px;}
.y31{bottom:419.940000px;}
.y50{bottom:422.175000px;}
.y30{bottom:439.380000px;}
.y11{bottom:444.315000px;}
.y4f{bottom:453.135000px;}
.y76{bottom:456.015000px;}
.y2f{bottom:459.718560px;}
.y10{bottom:475.275000px;}
.y2e{bottom:479.700000px;}
.y4e{bottom:484.275000px;}
.y2d{bottom:498.600000px;}
.yf{bottom:506.415000px;}
.y4d{bottom:515.235000px;}
.y2c{bottom:518.218560px;}
.y75{bottom:523.875000px;}
.ye{bottom:537.375000px;}
.y2b{bottom:538.200000px;}
.y4c{bottom:546.225000px;}
.y2a{bottom:556.917120px;}
.yd{bottom:560.445000px;}
.y88{bottom:568.545000px;}
.y29{bottom:576.542880px;}
.y4b{bottom:577.365000px;}
.y74{bottom:578.805000px;}
.y87{bottom:599.505000px;}
.yc{bottom:602.925000px;}
.y4a{bottom:608.325000px;}
.y73{bottom:609.945000px;}
.y28{bottom:629.638560px;}
.y86{bottom:630.645000px;}
.yb{bottom:634.065000px;}
.y49{bottom:639.465000px;}
.y72{bottom:640.905000px;}
.y85{bottom:661.605000px;}
.ya{bottom:665.025000px;}
.y48{bottom:670.425000px;}
.y71{bottom:672.045000px;}
.y27{bottom:680.944320px;}
.y9{bottom:685.185000px;}
.y84{bottom:692.745000px;}
.y26{bottom:700.380000px;}
.y47{bottom:701.565000px;}
.y70{bottom:703.005000px;}
.y8{bottom:707.865000px;}
.y25{bottom:720.781200px;}
.y83{bottom:723.705000px;}
.y46{bottom:732.525000px;}
.y6f{bottom:734.145000px;}
.y24{bottom:740.934720px;}
.y82{bottom:754.845000px;}
.y7{bottom:756.105000px;}
.y23{bottom:761.088240px;}
.y45{bottom:763.665000px;}
.y6e{bottom:765.105000px;}
.y81{bottom:785.805000px;}
.y64{bottom:785.985000px;}
.y44{bottom:794.625000px;}
.y6d{bottom:796.245000px;}
.y22{bottom:799.060320px;}
.y6{bottom:804.390000px;}
.y63{bottom:816.990000px;}
.y43{bottom:825.810000px;}
.y6c{bottom:827.250000px;}
.y21{bottom:837.214560px;}
.y62{bottom:847.950000px;}
.y5{bottom:852.810000px;}
.y42{bottom:856.770000px;}
.y6b{bottom:858.390000px;}
.y20{bottom:875.368800px;}
.y61{bottom:879.090000px;}
.y41{bottom:887.910000px;}
.y6a{bottom:889.350000px;}
.y4{bottom:903.210000px;}
.y60{bottom:910.050000px;}
.y1f{bottom:913.523040px;}
.y40{bottom:918.870000px;}
.y69{bottom:920.490000px;}
.y5f{bottom:941.190000px;}
.y68{bottom:951.450000px;}
.y1e{bottom:951.677280px;}
.y3{bottom:963.510000px;}
.y3f{bottom:970.170000px;}
.y5e{bottom:972.150000px;}
.y67{bottom:982.590000px;}
.y1d{bottom:989.831520px;}
.y5d{bottom:1003.290000px;}
.y3e{bottom:1006.890000px;}
.y66{bottom:1013.550000px;}
.y2{bottom:1019.310000px;}
.y1c{bottom:1027.985760px;}
.y5c{bottom:1034.250000px;}
.y1{bottom:1053.870000px;}
.y5b{bottom:1065.420000px;}
.y65{bottom:1065.600000px;}
.y1b{bottom:1066.140000px;}
.h7{height:44.149219px;}
.hc{height:52.998047px;}
.h4{height:58.651172px;}
.h8{height:62.184375px;}
.h9{height:62.850937px;}
.hb{height:65.010937px;}
.ha{height:65.016697px;}
.h5{height:70.664062px;}
.hf{height:72.562500px;}
.he{height:74.004654px;}
.hd{height:96.508125px;}
.h1{height:125.406562px;}
.h3{height:174.968437px;}
.h2{height:219.273750px;}
.h0{height:1188.000000px;}
.h6{height:1188.180000px;}
.w0{width:918.000000px;}
.w1{width:918.180000px;}
.x0{left:0.000000px;}
.xe{left:127.620000px;}
.xb{left:133.056000px;}
.x4{left:145.476000px;}
.x13{left:153.750000px;}
.xa{left:168.870000px;}
.x5{left:169.950000px;}
.x9{left:180.750000px;}
.x6{left:227.010000px;}
.x1{left:234.210000px;}
.x7{left:244.650000px;}
.xd{left:254.190000px;}
.x2{left:258.330000px;}
.xc{left:294.690000px;}
.x10{left:309.780000px;}
.x11{left:343.515000px;}
.xf{left:370.621440px;}
.x12{left:379.335000px;}
.x3{left:448.455000px;}
.x8{left:459.075000px;}
@media print{
.v3{vertical-align:-74.346667pt;}
.v2{vertical-align:-71.680000pt;}
.v1{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-1.280000pt;}
.ls5{letter-spacing:-0.647680pt;}
.ls14{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.584320pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.016533pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.053120pt;}
.ls4{letter-spacing:0.117760pt;}
.ls1{letter-spacing:0.154240pt;}
.ls2{letter-spacing:0.159360pt;}
.ls6{letter-spacing:0.294400pt;}
.lse{letter-spacing:0.640000pt;}
.ls12{letter-spacing:1.280000pt;}
.ls13{letter-spacing:12.160000pt;}
.lsd{letter-spacing:30.208000pt;}
.lsc{letter-spacing:79.498667pt;}
.lsb{letter-spacing:172.778667pt;}
.ls8{letter-spacing:175.498667pt;}
.lsa{letter-spacing:754.858667pt;}
.wsc{word-spacing:-64.000000pt;}
.wsa{word-spacing:-21.280000pt;}
.wsb{word-spacing:-21.263467pt;}
.wse{word-spacing:-17.280000pt;}
.wsd{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.936000pt;}
.wsf{word-spacing:-15.744000pt;}
.ws3{word-spacing:-15.014400pt;}
.ws5{word-spacing:-14.837760pt;}
.ws4{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.072320pt;}
.ws1{word-spacing:-13.333120pt;}
.ws6{word-spacing:-0.765440pt;}
.ws9{word-spacing:-0.647680pt;}
.ws8{word-spacing:-0.117760pt;}
.ws0{word-spacing:0.000000pt;}
.ws7{word-spacing:0.584320pt;}
._9{margin-left:-4.288000pt;}
._6{margin-left:-2.679999pt;}
._0{margin-left:-1.282667pt;}
._2{width:0.895018pt;}
._1{width:1.789291pt;}
._3{width:3.202709pt;}
._11{width:4.352000pt;}
._14{width:5.632236pt;}
._16{width:6.847764pt;}
._4{width:8.067649pt;}
._5{width:9.128423pt;}
._a{width:10.264559pt;}
._b{width:11.378108pt;}
._12{width:12.842667pt;}
._13{width:14.016000pt;}
._15{width:14.981334pt;}
._f{width:17.600000pt;}
._10{width:18.688000pt;}
._c{width:20.160000pt;}
._d{width:21.386667pt;}
._e{width:22.336000pt;}
._18{width:23.605333pt;}
._19{width:24.960000pt;}
._1a{width:26.304000pt;}
._1b{width:27.264000pt;}
._1c{width:31.808000pt;}
._1d{width:32.960000pt;}
._17{width:33.923649pt;}
._7{width:34.944000pt;}
._8{width:36.352000pt;}
.fs7{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs6{font-size:56.320000pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs8{font-size:85.120000pt;}
.fs0{font-size:106.880000pt;}
.fs3{font-size:149.120000pt;}
.fs2{font-size:186.880000pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:99.232000pt;}
.y80{bottom:111.392000pt;}
.y3d{bottom:113.291520pt;}
.y91{bottom:118.912000pt;}
.y59{bottom:126.752000pt;}
.y1a{bottom:130.112000pt;}
.y3c{bottom:130.248960pt;}
.y7f{bottom:139.066667pt;}
.y90{bottom:146.586667pt;}
.y3b{bottom:147.044480pt;}
.y58{bottom:154.426667pt;}
.y3a{bottom:163.840000pt;}
.y7e{bottom:166.586667pt;}
.y19{bottom:168.026667pt;}
.y8f{bottom:174.106667pt;}
.y39{bottom:180.818560pt;}
.y57{bottom:181.946667pt;}
.y7d{bottom:194.266667pt;}
.y18{bottom:195.546667pt;}
.y38{bottom:197.614080pt;}
.y8e{bottom:201.626667pt;}
.y56{bottom:209.626667pt;}
.y37{bottom:214.571520pt;}
.y7c{bottom:221.786667pt;}
.y17{bottom:223.226667pt;}
.y8d{bottom:229.306667pt;}
.y36{bottom:231.367040pt;}
.y55{bottom:237.146667pt;}
.y35{bottom:248.162560pt;}
.y7b{bottom:249.506667pt;}
.y16{bottom:250.786667pt;}
.y8c{bottom:256.866667pt;}
.y54{bottom:264.866667pt;}
.y34{bottom:265.120000pt;}
.y7a{bottom:277.026667pt;}
.y15{bottom:278.466667pt;}
.y8b{bottom:284.546667pt;}
.y53{bottom:292.386667pt;}
.y14{bottom:298.786667pt;}
.y79{bottom:304.706667pt;}
.y8a{bottom:312.066667pt;}
.y52{bottom:320.066667pt;}
.y33{bottom:320.320000pt;}
.y13{bottom:329.506667pt;}
.y78{bottom:332.226667pt;}
.y89{bottom:339.746667pt;}
.y51{bottom:347.586667pt;}
.y32{bottom:356.000000pt;}
.y77{bottom:359.906667pt;}
.y12{bottom:367.266667pt;}
.y31{bottom:373.280000pt;}
.y50{bottom:375.266667pt;}
.y30{bottom:390.560000pt;}
.y11{bottom:394.946667pt;}
.y4f{bottom:402.786667pt;}
.y76{bottom:405.346667pt;}
.y2f{bottom:408.638720pt;}
.y10{bottom:422.466667pt;}
.y2e{bottom:426.400000pt;}
.y4e{bottom:430.466667pt;}
.y2d{bottom:443.200000pt;}
.yf{bottom:450.146667pt;}
.y4d{bottom:457.986667pt;}
.y2c{bottom:460.638720pt;}
.y75{bottom:465.666667pt;}
.ye{bottom:477.666667pt;}
.y2b{bottom:478.400000pt;}
.y4c{bottom:485.533333pt;}
.y2a{bottom:495.037440pt;}
.yd{bottom:498.173333pt;}
.y88{bottom:505.373333pt;}
.y29{bottom:512.482560pt;}
.y4b{bottom:513.213333pt;}
.y74{bottom:514.493333pt;}
.y87{bottom:532.893333pt;}
.yc{bottom:535.933333pt;}
.y4a{bottom:540.733333pt;}
.y73{bottom:542.173333pt;}
.y28{bottom:559.678720pt;}
.y86{bottom:560.573333pt;}
.yb{bottom:563.613333pt;}
.y49{bottom:568.413333pt;}
.y72{bottom:569.693333pt;}
.y85{bottom:588.093333pt;}
.ya{bottom:591.133333pt;}
.y48{bottom:595.933333pt;}
.y71{bottom:597.373333pt;}
.y27{bottom:605.283840pt;}
.y9{bottom:609.053333pt;}
.y84{bottom:615.773333pt;}
.y26{bottom:622.560000pt;}
.y47{bottom:623.613333pt;}
.y70{bottom:624.893333pt;}
.y8{bottom:629.213333pt;}
.y25{bottom:640.694400pt;}
.y83{bottom:643.293333pt;}
.y46{bottom:651.133333pt;}
.y6f{bottom:652.573333pt;}
.y24{bottom:658.608640pt;}
.y82{bottom:670.973333pt;}
.y7{bottom:672.093333pt;}
.y23{bottom:676.522880pt;}
.y45{bottom:678.813333pt;}
.y6e{bottom:680.093333pt;}
.y81{bottom:698.493333pt;}
.y64{bottom:698.653333pt;}
.y44{bottom:706.333333pt;}
.y6d{bottom:707.773333pt;}
.y22{bottom:710.275840pt;}
.y6{bottom:715.013333pt;}
.y63{bottom:726.213333pt;}
.y43{bottom:734.053333pt;}
.y6c{bottom:735.333333pt;}
.y21{bottom:744.190720pt;}
.y62{bottom:753.733333pt;}
.y5{bottom:758.053333pt;}
.y42{bottom:761.573333pt;}
.y6b{bottom:763.013333pt;}
.y20{bottom:778.105600pt;}
.y61{bottom:781.413333pt;}
.y41{bottom:789.253333pt;}
.y6a{bottom:790.533333pt;}
.y4{bottom:802.853333pt;}
.y60{bottom:808.933333pt;}
.y1f{bottom:812.020480pt;}
.y40{bottom:816.773333pt;}
.y69{bottom:818.213333pt;}
.y5f{bottom:836.613333pt;}
.y68{bottom:845.733333pt;}
.y1e{bottom:845.935360pt;}
.y3{bottom:856.453333pt;}
.y3f{bottom:862.373333pt;}
.y5e{bottom:864.133333pt;}
.y67{bottom:873.413333pt;}
.y1d{bottom:879.850240pt;}
.y5d{bottom:891.813333pt;}
.y3e{bottom:895.013333pt;}
.y66{bottom:900.933333pt;}
.y2{bottom:906.053333pt;}
.y1c{bottom:913.765120pt;}
.y5c{bottom:919.333333pt;}
.y1{bottom:936.773333pt;}
.y5b{bottom:947.040000pt;}
.y65{bottom:947.200000pt;}
.y1b{bottom:947.680000pt;}
.h7{height:39.243750pt;}
.hc{height:47.109375pt;}
.h4{height:52.134375pt;}
.h8{height:55.275000pt;}
.h9{height:55.867500pt;}
.hb{height:57.787500pt;}
.ha{height:57.792620pt;}
.h5{height:62.812500pt;}
.hf{height:64.500000pt;}
.he{height:65.781915pt;}
.hd{height:85.785000pt;}
.h1{height:111.472500pt;}
.h3{height:155.527500pt;}
.h2{height:194.910000pt;}
.h0{height:1056.000000pt;}
.h6{height:1056.160000pt;}
.w0{width:816.000000pt;}
.w1{width:816.160000pt;}
.x0{left:0.000000pt;}
.xe{left:113.440000pt;}
.xb{left:118.272000pt;}
.x4{left:129.312000pt;}
.x13{left:136.666667pt;}
.xa{left:150.106667pt;}
.x5{left:151.066667pt;}
.x9{left:160.666667pt;}
.x6{left:201.786667pt;}
.x1{left:208.186667pt;}
.x7{left:217.466667pt;}
.xd{left:225.946667pt;}
.x2{left:229.626667pt;}
.xc{left:261.946667pt;}
.x10{left:275.360000pt;}
.x11{left:305.346667pt;}
.xf{left:329.441280pt;}
.x12{left:337.186667pt;}
.x3{left:398.626667pt;}
.x8{left:408.066667pt;}
}




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