
    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_4b392772a0a96cc3118ef7bd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_29491fd033ef37c1fe351365.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bb0233b9a02624ad54e2b815.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_83fc7a7003f8a6acedb53cb1.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e621ac6b37d572e548d30b58.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_11ff93dfd5511df06831f7c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.123047;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_30cc2f3abc0e5b4ef64aadd6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_29d716445a9714b51ec2cc66.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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-69.120000px;}
.v2{vertical-align:-67.680000px;}
.v3{vertical-align:-61.920000px;}
.v0{vertical-align:0.000000px;}
.ls20{letter-spacing:-1.998000px;}
.ls22{letter-spacing:-1.914000px;}
.ls1d{letter-spacing:-1.440000px;}
.ls26{letter-spacing:-1.254000px;}
.ls1e{letter-spacing:-0.972000px;}
.ls1a{letter-spacing:-0.936000px;}
.ls25{letter-spacing:-0.810000px;}
.ls14{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.510000px;}
.ls21{letter-spacing:-0.492600px;}
.ls24{letter-spacing:-0.475200px;}
.ls13{letter-spacing:-0.466800px;}
.ls1f{letter-spacing:-0.276600px;}
.ls12{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.020160px;}
.ls11{letter-spacing:0.172800px;}
.ls19{letter-spacing:0.466800px;}
.ls18{letter-spacing:0.486600px;}
.ls15{letter-spacing:0.507000px;}
.ls23{letter-spacing:0.630000px;}
.ls3{letter-spacing:0.720000px;}
.ls4{letter-spacing:2.160000px;}
.lsd{letter-spacing:9.360000px;}
.lse{letter-spacing:12.240000px;}
.ls5{letter-spacing:15.120000px;}
.lsc{letter-spacing:18.000000px;}
.lsb{letter-spacing:18.012000px;}
.ls7{letter-spacing:28.080000px;}
.ls8{letter-spacing:29.520000px;}
.lsa{letter-spacing:29.700000px;}
.ls9{letter-spacing:30.960000px;}
.ls6{letter-spacing:42.480000px;}
.ls1{letter-spacing:149.184000px;}
.ls1b{letter-spacing:151.666560px;}
.ls10{letter-spacing:154.944000px;}
.ls2{letter-spacing:537.862560px;}
.ls0{letter-spacing:677.976000px;}
.ls1c{letter-spacing:1321.896000px;}
.ls17{letter-spacing:1957.272000px;}
.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;}
}
.ws3{word-spacing:-60.480000px;}
.ws4{word-spacing:-15.627000px;}
.ws8{word-spacing:-15.606600px;}
.ws7{word-spacing:-15.586800px;}
.ws0{word-spacing:-15.120000px;}
.wsa{word-spacing:-14.843400px;}
.ws1{word-spacing:-14.653200px;}
.ws5{word-spacing:-14.610000px;}
.wse{word-spacing:-14.310000px;}
.ws9{word-spacing:-14.184000px;}
.ws2{word-spacing:-13.680000px;}
.wsf{word-spacing:-13.204800px;}
.wsc{word-spacing:-13.187400px;}
.ws10{word-spacing:-12.870000px;}
.ws11{word-spacing:-12.426000px;}
.wsb{word-spacing:-12.240000px;}
.wsd{word-spacing:-11.766000px;}
.ws6{word-spacing:0.000000px;}
._1a{margin-left:-3.612000px;}
._0{margin-left:-1.935360px;}
._1{width:1.071360px;}
._2{width:2.097120px;}
._9{width:3.585600px;}
._1c{width:4.679040px;}
._b{width:5.705280px;}
._a{width:6.713280px;}
._19{width:8.585760px;}
._3{width:10.240800px;}
._4{width:11.494080px;}
._c{width:12.601920px;}
._12{width:13.795680px;}
._11{width:15.834240px;}
._d{width:17.435520px;}
._15{width:18.672480px;}
._5{width:20.321280px;}
._8{width:21.607680px;}
._6{width:22.878720px;}
._7{width:23.895840px;}
._17{width:25.764480px;}
._16{width:26.766720px;}
._18{width:28.280640px;}
._1d{width:29.854080px;}
._1b{width:33.989760px;}
._10{width:35.933760px;}
._e{width:37.497600px;}
._f{width:38.621760px;}
._1f{width:40.212960px;}
._14{width:41.233920px;}
._13{width:42.873600px;}
._20{width:77.561280px;}
._22{width:122.221440px;}
._21{width:123.413760px;}
._1e{width:196.116000px;}
.fc5{color:rgb(112,48,160);}
.fc6{color:rgb(16,0,12);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(45,44,55);}
.fc4{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:3.240000px;}
.y62{bottom:3.600000px;}
.y60{bottom:4.680000px;}
.y67{bottom:5.400000px;}
.y65{bottom:6.480000px;}
.y5d{bottom:7.920000px;}
.y5f{bottom:21.600000px;}
.y64{bottom:23.400000px;}
.y2{bottom:24.480000px;}
.y1{bottom:65.520000px;}
.y70{bottom:102.240000px;}
.y36{bottom:109.440000px;}
.y81{bottom:113.436000px;}
.y93{bottom:116.676000px;}
.y6f{bottom:119.556000px;}
.y35{bottom:124.956000px;}
.y80{bottom:130.716000px;}
.y92{bottom:133.956000px;}
.y6e{bottom:136.836000px;}
.y34{bottom:140.796000px;}
.y7f{bottom:147.996000px;}
.y91{bottom:151.230000px;}
.y6d{bottom:154.110000px;}
.y7e{bottom:165.270000px;}
.y90{bottom:168.510000px;}
.y6c{bottom:171.390000px;}
.y33{bottom:175.350000px;}
.y7d{bottom:182.190000px;}
.y8f{bottom:185.790000px;}
.y6b{bottom:188.670000px;}
.y32{bottom:192.630000px;}
.y7c{bottom:199.470000px;}
.y8e{bottom:203.070000px;}
.y6a{bottom:205.950000px;}
.y31{bottom:209.910000px;}
.y7b{bottom:216.750000px;}
.y8d{bottom:220.395000px;}
.y69{bottom:223.275000px;}
.y30{bottom:227.235000px;}
.y7a{bottom:234.075000px;}
.y8c{bottom:237.675000px;}
.y68{bottom:240.195000px;}
.y2f{bottom:244.515000px;}
.y79{bottom:251.355000px;}
.y63{bottom:254.595000px;}
.y8b{bottom:254.955000px;}
.y2e{bottom:261.795000px;}
.y78{bottom:268.635000px;}
.y8a{bottom:272.235000px;}
.y66{bottom:274.395000px;}
.y2d{bottom:279.075000px;}
.y77{bottom:285.915000px;}
.y89{bottom:289.515000px;}
.y5e{bottom:292.395000px;}
.y2c{bottom:295.995000px;}
.y76{bottom:303.195000px;}
.y88{bottom:306.435000px;}
.y61{bottom:310.395000px;}
.y2b{bottom:313.635000px;}
.y75{bottom:320.475000px;}
.y87{bottom:323.745000px;}
.y5c{bottom:328.425000px;}
.y2a{bottom:330.945000px;}
.y74{bottom:337.785000px;}
.y86{bottom:340.665000px;}
.y29{bottom:347.865000px;}
.y5a{bottom:350.745000px;}
.y73{bottom:355.065000px;}
.y28{bottom:365.145000px;}
.y59{bottom:371.625000px;}
.y72{bottom:371.985000px;}
.y27{bottom:382.425000px;}
.y71{bottom:389.265000px;}
.y26{bottom:399.705000px;}
.y85{bottom:406.185000px;}
.y58{bottom:406.545000px;}
.y25{bottom:416.985000px;}
.y57{bottom:423.825000px;}
.y24{bottom:434.310000px;}
.y84{bottom:440.790000px;}
.y56{bottom:441.150000px;}
.y23{bottom:451.590000px;}
.y55{bottom:458.430000px;}
.y22{bottom:468.870000px;}
.y54{bottom:475.710000px;}
.y21{bottom:486.150000px;}
.y53{bottom:492.990000px;}
.y20{bottom:503.430000px;}
.y83{bottom:509.910000px;}
.y52{bottom:510.270000px;}
.y1f{bottom:520.710000px;}
.y51{bottom:527.550000px;}
.y1e{bottom:537.660000px;}
.y50{bottom:544.860000px;}
.y1d{bottom:554.940000px;}
.y4f{bottom:562.140000px;}
.y1c{bottom:572.220000px;}
.y4e{bottom:579.060000px;}
.y1b{bottom:589.500000px;}
.y4d{bottom:596.340000px;}
.y1a{bottom:606.780000px;}
.y4c{bottom:613.620000px;}
.y19{bottom:624.060000px;}
.y4b{bottom:630.900000px;}
.y18{bottom:641.370000px;}
.y4a{bottom:648.210000px;}
.y17{bottom:658.650000px;}
.y49{bottom:665.490000px;}
.y16{bottom:675.930000px;}
.y48{bottom:682.770000px;}
.y15{bottom:693.210000px;}
.y47{bottom:700.050000px;}
.y14{bottom:710.490000px;}
.y46{bottom:717.330000px;}
.y13{bottom:727.410000px;}
.y45{bottom:734.610000px;}
.y12{bottom:744.735000px;}
.y44{bottom:751.935000px;}
.y11{bottom:762.015000px;}
.y43{bottom:768.855000px;}
.y10{bottom:779.295000px;}
.y42{bottom:786.135000px;}
.yf{bottom:796.575000px;}
.y41{bottom:803.415000px;}
.ye{bottom:813.495000px;}
.y40{bottom:820.695000px;}
.yd{bottom:828.975000px;}
.y3f{bottom:837.975000px;}
.yc{bottom:844.455000px;}
.y3e{bottom:855.285000px;}
.yb{bottom:860.325000px;}
.y3d{bottom:872.565000px;}
.ya{bottom:875.445000px;}
.y3c{bottom:889.845000px;}
.y9{bottom:890.925000px;}
.y3b{bottom:907.125000px;}
.y8{bottom:924.045000px;}
.y3a{bottom:924.405000px;}
.y7{bottom:941.325000px;}
.y39{bottom:941.685000px;}
.y38{bottom:959.010000px;}
.y6{bottom:975.930000px;}
.y37{bottom:993.210000px;}
.y5{bottom:1010.490000px;}
.y4{bottom:1027.770000px;}
.y82{bottom:1044.690000px;}
.y3{bottom:1045.050000px;}
.hb{height:16.920000px;}
.hf{height:17.280000px;}
.he{height:17.316000px;}
.h11{height:19.080000px;}
.hc{height:21.240000px;}
.hd{height:35.316000px;}
.h10{height:37.080000px;}
.h8{height:53.704687px;}
.ha{height:54.219375px;}
.h7{height:55.147500px;}
.h9{height:56.243537px;}
.h4{height:59.328281px;}
.h2{height:59.357813px;}
.h5{height:60.952500px;}
.h6{height:62.163910px;}
.h3{height:70.664062px;}
.h1{height:1105.500000px;}
.h0{height:1105.560000px;}
.w9{width:56.916000px;}
.w5{width:69.516000px;}
.w6{width:69.876000px;}
.w7{width:70.596000px;}
.w4{width:71.676000px;}
.w8{width:180.075000px;}
.w3{width:237.705000px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x12{left:7.560000px;}
.x14{left:15.870000px;}
.x13{left:16.950000px;}
.x17{left:18.405000px;}
.xe{left:19.470000px;}
.xc{left:20.550000px;}
.x16{left:21.645000px;}
.x18{left:26.310000px;}
.x7{left:51.155989px;}
.x3{left:76.715989px;}
.x6{left:93.635989px;}
.x9{left:97.595989px;}
.xa{left:99.759000px;}
.x8{left:104.471989px;}
.x2{left:119.231989px;}
.x19{left:209.624989px;}
.x15{left:232.305000px;}
.xb{left:289.950000px;}
.x4{left:333.899989px;}
.x5{left:341.459989px;}
.xd{left:362.340000px;}
.x1{left:367.019989px;}
.xf{left:432.570000px;}
.x10{left:503.175000px;}
.x11{left:573.405000px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v2{vertical-align:-60.160000pt;}
.v3{vertical-align:-55.040000pt;}
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-1.776000pt;}
.ls22{letter-spacing:-1.701333pt;}
.ls1d{letter-spacing:-1.280000pt;}
.ls26{letter-spacing:-1.114667pt;}
.ls1e{letter-spacing:-0.864000pt;}
.ls1a{letter-spacing:-0.832000pt;}
.ls25{letter-spacing:-0.720000pt;}
.ls14{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.453333pt;}
.ls21{letter-spacing:-0.437867pt;}
.ls24{letter-spacing:-0.422400pt;}
.ls13{letter-spacing:-0.414933pt;}
.ls1f{letter-spacing:-0.245867pt;}
.ls12{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.017920pt;}
.ls11{letter-spacing:0.153600pt;}
.ls19{letter-spacing:0.414933pt;}
.ls18{letter-spacing:0.432533pt;}
.ls15{letter-spacing:0.450667pt;}
.ls23{letter-spacing:0.560000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls4{letter-spacing:1.920000pt;}
.lsd{letter-spacing:8.320000pt;}
.lse{letter-spacing:10.880000pt;}
.ls5{letter-spacing:13.440000pt;}
.lsc{letter-spacing:16.000000pt;}
.lsb{letter-spacing:16.010667pt;}
.ls7{letter-spacing:24.960000pt;}
.ls8{letter-spacing:26.240000pt;}
.lsa{letter-spacing:26.400000pt;}
.ls9{letter-spacing:27.520000pt;}
.ls6{letter-spacing:37.760000pt;}
.ls1{letter-spacing:132.608000pt;}
.ls1b{letter-spacing:134.814720pt;}
.ls10{letter-spacing:137.728000pt;}
.ls2{letter-spacing:478.100053pt;}
.ls0{letter-spacing:602.645333pt;}
.ls1c{letter-spacing:1175.018667pt;}
.ls17{letter-spacing:1739.797333pt;}
.ws3{word-spacing:-53.760000pt;}
.ws4{word-spacing:-13.890667pt;}
.ws8{word-spacing:-13.872533pt;}
.ws7{word-spacing:-13.854933pt;}
.ws0{word-spacing:-13.440000pt;}
.wsa{word-spacing:-13.194133pt;}
.ws1{word-spacing:-13.025067pt;}
.ws5{word-spacing:-12.986667pt;}
.wse{word-spacing:-12.720000pt;}
.ws9{word-spacing:-12.608000pt;}
.ws2{word-spacing:-12.160000pt;}
.wsf{word-spacing:-11.737600pt;}
.wsc{word-spacing:-11.722133pt;}
.ws10{word-spacing:-11.440000pt;}
.ws11{word-spacing:-11.045333pt;}
.wsb{word-spacing:-10.880000pt;}
.wsd{word-spacing:-10.458667pt;}
.ws6{word-spacing:0.000000pt;}
._1a{margin-left:-3.210667pt;}
._0{margin-left:-1.720320pt;}
._1{width:0.952320pt;}
._2{width:1.864107pt;}
._9{width:3.187200pt;}
._1c{width:4.159147pt;}
._b{width:5.071360pt;}
._a{width:5.967360pt;}
._19{width:7.631787pt;}
._3{width:9.102933pt;}
._4{width:10.216960pt;}
._c{width:11.201707pt;}
._12{width:12.262827pt;}
._11{width:14.074880pt;}
._d{width:15.498240pt;}
._15{width:16.597760pt;}
._5{width:18.063360pt;}
._8{width:19.206827pt;}
._6{width:20.336640pt;}
._7{width:21.240747pt;}
._17{width:22.901760pt;}
._16{width:23.792640pt;}
._18{width:25.138347pt;}
._1d{width:26.536960pt;}
._1b{width:30.213120pt;}
._10{width:31.941120pt;}
._e{width:33.331200pt;}
._f{width:34.330453pt;}
._1f{width:35.744853pt;}
._14{width:36.652373pt;}
._13{width:38.109867pt;}
._20{width:68.943360pt;}
._22{width:108.641280pt;}
._21{width:109.701120pt;}
._1e{width:174.325333pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:2.880000pt;}
.y62{bottom:3.200000pt;}
.y60{bottom:4.160000pt;}
.y67{bottom:4.800000pt;}
.y65{bottom:5.760000pt;}
.y5d{bottom:7.040000pt;}
.y5f{bottom:19.200000pt;}
.y64{bottom:20.800000pt;}
.y2{bottom:21.760000pt;}
.y1{bottom:58.240000pt;}
.y70{bottom:90.880000pt;}
.y36{bottom:97.280000pt;}
.y81{bottom:100.832000pt;}
.y93{bottom:103.712000pt;}
.y6f{bottom:106.272000pt;}
.y35{bottom:111.072000pt;}
.y80{bottom:116.192000pt;}
.y92{bottom:119.072000pt;}
.y6e{bottom:121.632000pt;}
.y34{bottom:125.152000pt;}
.y7f{bottom:131.552000pt;}
.y91{bottom:134.426667pt;}
.y6d{bottom:136.986667pt;}
.y7e{bottom:146.906667pt;}
.y90{bottom:149.786667pt;}
.y6c{bottom:152.346667pt;}
.y33{bottom:155.866667pt;}
.y7d{bottom:161.946667pt;}
.y8f{bottom:165.146667pt;}
.y6b{bottom:167.706667pt;}
.y32{bottom:171.226667pt;}
.y7c{bottom:177.306667pt;}
.y8e{bottom:180.506667pt;}
.y6a{bottom:183.066667pt;}
.y31{bottom:186.586667pt;}
.y7b{bottom:192.666667pt;}
.y8d{bottom:195.906667pt;}
.y69{bottom:198.466667pt;}
.y30{bottom:201.986667pt;}
.y7a{bottom:208.066667pt;}
.y8c{bottom:211.266667pt;}
.y68{bottom:213.506667pt;}
.y2f{bottom:217.346667pt;}
.y79{bottom:223.426667pt;}
.y63{bottom:226.306667pt;}
.y8b{bottom:226.626667pt;}
.y2e{bottom:232.706667pt;}
.y78{bottom:238.786667pt;}
.y8a{bottom:241.986667pt;}
.y66{bottom:243.906667pt;}
.y2d{bottom:248.066667pt;}
.y77{bottom:254.146667pt;}
.y89{bottom:257.346667pt;}
.y5e{bottom:259.906667pt;}
.y2c{bottom:263.106667pt;}
.y76{bottom:269.506667pt;}
.y88{bottom:272.386667pt;}
.y61{bottom:275.906667pt;}
.y2b{bottom:278.786667pt;}
.y75{bottom:284.866667pt;}
.y87{bottom:287.773333pt;}
.y5c{bottom:291.933333pt;}
.y2a{bottom:294.173333pt;}
.y74{bottom:300.253333pt;}
.y86{bottom:302.813333pt;}
.y29{bottom:309.213333pt;}
.y5a{bottom:311.773333pt;}
.y73{bottom:315.613333pt;}
.y28{bottom:324.573333pt;}
.y59{bottom:330.333333pt;}
.y72{bottom:330.653333pt;}
.y27{bottom:339.933333pt;}
.y71{bottom:346.013333pt;}
.y26{bottom:355.293333pt;}
.y85{bottom:361.053333pt;}
.y58{bottom:361.373333pt;}
.y25{bottom:370.653333pt;}
.y57{bottom:376.733333pt;}
.y24{bottom:386.053333pt;}
.y84{bottom:391.813333pt;}
.y56{bottom:392.133333pt;}
.y23{bottom:401.413333pt;}
.y55{bottom:407.493333pt;}
.y22{bottom:416.773333pt;}
.y54{bottom:422.853333pt;}
.y21{bottom:432.133333pt;}
.y53{bottom:438.213333pt;}
.y20{bottom:447.493333pt;}
.y83{bottom:453.253333pt;}
.y52{bottom:453.573333pt;}
.y1f{bottom:462.853333pt;}
.y51{bottom:468.933333pt;}
.y1e{bottom:477.920000pt;}
.y50{bottom:484.320000pt;}
.y1d{bottom:493.280000pt;}
.y4f{bottom:499.680000pt;}
.y1c{bottom:508.640000pt;}
.y4e{bottom:514.720000pt;}
.y1b{bottom:524.000000pt;}
.y4d{bottom:530.080000pt;}
.y1a{bottom:539.360000pt;}
.y4c{bottom:545.440000pt;}
.y19{bottom:554.720000pt;}
.y4b{bottom:560.800000pt;}
.y18{bottom:570.106667pt;}
.y4a{bottom:576.186667pt;}
.y17{bottom:585.466667pt;}
.y49{bottom:591.546667pt;}
.y16{bottom:600.826667pt;}
.y48{bottom:606.906667pt;}
.y15{bottom:616.186667pt;}
.y47{bottom:622.266667pt;}
.y14{bottom:631.546667pt;}
.y46{bottom:637.626667pt;}
.y13{bottom:646.586667pt;}
.y45{bottom:652.986667pt;}
.y12{bottom:661.986667pt;}
.y44{bottom:668.386667pt;}
.y11{bottom:677.346667pt;}
.y43{bottom:683.426667pt;}
.y10{bottom:692.706667pt;}
.y42{bottom:698.786667pt;}
.yf{bottom:708.066667pt;}
.y41{bottom:714.146667pt;}
.ye{bottom:723.106667pt;}
.y40{bottom:729.506667pt;}
.yd{bottom:736.866667pt;}
.y3f{bottom:744.866667pt;}
.yc{bottom:750.626667pt;}
.y3e{bottom:760.253333pt;}
.yb{bottom:764.733333pt;}
.y3d{bottom:775.613333pt;}
.ya{bottom:778.173333pt;}
.y3c{bottom:790.973333pt;}
.y9{bottom:791.933333pt;}
.y3b{bottom:806.333333pt;}
.y8{bottom:821.373333pt;}
.y3a{bottom:821.693333pt;}
.y7{bottom:836.733333pt;}
.y39{bottom:837.053333pt;}
.y38{bottom:852.453333pt;}
.y6{bottom:867.493333pt;}
.y37{bottom:882.853333pt;}
.y5{bottom:898.213333pt;}
.y4{bottom:913.573333pt;}
.y82{bottom:928.613333pt;}
.y3{bottom:928.933333pt;}
.hb{height:15.040000pt;}
.hf{height:15.360000pt;}
.he{height:15.392000pt;}
.h11{height:16.960000pt;}
.hc{height:18.880000pt;}
.hd{height:31.392000pt;}
.h10{height:32.960000pt;}
.h8{height:47.737500pt;}
.ha{height:48.195000pt;}
.h7{height:49.020000pt;}
.h9{height:49.994255pt;}
.h4{height:52.736250pt;}
.h2{height:52.762500pt;}
.h5{height:54.180000pt;}
.h6{height:55.256809pt;}
.h3{height:62.812500pt;}
.h1{height:982.666667pt;}
.h0{height:982.720000pt;}
.w9{width:50.592000pt;}
.w5{width:61.792000pt;}
.w6{width:62.112000pt;}
.w7{width:62.752000pt;}
.w4{width:63.712000pt;}
.w8{width:160.066667pt;}
.w3{width:211.293333pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x12{left:6.720000pt;}
.x14{left:14.106667pt;}
.x13{left:15.066667pt;}
.x17{left:16.360000pt;}
.xe{left:17.306667pt;}
.xc{left:18.266667pt;}
.x16{left:19.240000pt;}
.x18{left:23.386667pt;}
.x7{left:45.471990pt;}
.x3{left:68.191990pt;}
.x6{left:83.231990pt;}
.x9{left:86.751990pt;}
.xa{left:88.674667pt;}
.x8{left:92.863990pt;}
.x2{left:105.983990pt;}
.x19{left:186.333324pt;}
.x15{left:206.493333pt;}
.xb{left:257.733333pt;}
.x4{left:296.799990pt;}
.x5{left:303.519990pt;}
.xd{left:322.080000pt;}
.x1{left:326.239990pt;}
.xf{left:384.506667pt;}
.x10{left:447.266667pt;}
.x11{left:509.693333pt;}
}




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