
    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_526c36c9fc0c7fc6aa34afcb.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_cf5e7dadca88cabbd54f4ef1.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_072d2c5a2b9d23965bb0788e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5f7fbe1f870d07c9bf4f73b2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_604b6dbd2407bf1349525dbf.woff2')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_9b668da8259aeeca92951f88.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_a3dbedcd8382db3bb13b37b5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5677f50ed88e2046d0888898.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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_bc27b6a73d7f6164a8e6dbe6.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v1{vertical-align:-84.240000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.018720px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.028080px;}
.ls4{letter-spacing:0.072000px;}
.lsa{letter-spacing:7.020000px;}
.lse{letter-spacing:8.640000px;}
.ls9{letter-spacing:10.620000px;}
.ls7{letter-spacing:17.100000px;}
.ls2{letter-spacing:17.280000px;}
.lsd{letter-spacing:19.440000px;}
.ls6{letter-spacing:28.620000px;}
.lsc{letter-spacing:54.144000px;}
.ls0{letter-spacing:144.000000px;}
.ls5{letter-spacing:191.484000px;}
.ls1{letter-spacing:194.544000px;}
.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:-21.060000px;}
.ws4{word-spacing:-21.041280px;}
.ws1{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-4.717440px;}
._2b{margin-left:-2.036400px;}
._1{margin-left:-1.010880px;}
._2{width:1.130880px;}
._b{width:2.760000px;}
._a{width:3.960000px;}
._7{width:5.040000px;}
._8{width:6.480000px;}
._25{width:7.497120px;}
._1d{width:8.640000px;}
._c{width:10.296000px;}
._d{width:11.685120px;}
._1b{width:13.104000px;}
._e{width:14.328000px;}
._f{width:15.429120px;}
._1a{width:16.704000px;}
._21{width:18.701280px;}
._1c{width:19.872000px;}
._29{width:22.744800px;}
._17{width:24.120000px;}
._18{width:25.272000px;}
._9{width:26.598240px;}
._4{width:28.193760px;}
._3{width:29.352000px;}
._6{width:31.032000px;}
._11{width:32.040000px;}
._22{width:33.284160px;}
._19{width:34.416000px;}
._3b{width:35.465040px;}
._1e{width:36.812880px;}
._2a{width:38.244960px;}
._12{width:40.824000px;}
._23{width:41.899680px;}
._28{width:43.150320px;}
._30{width:45.131520px;}
._31{width:46.515120px;}
._13{width:47.520000px;}
._14{width:48.798240px;}
._3a{width:50.270160px;}
._26{width:51.639120px;}
._27{width:53.408160px;}
._10{width:56.664000px;}
._5{width:58.608000px;}
._20{width:60.400080px;}
._15{width:62.064000px;}
._16{width:63.069120px;}
._36{width:64.675200px;}
._35{width:65.721840px;}
._24{width:68.150160px;}
._2f{width:69.392640px;}
._32{width:71.919840px;}
._3e{width:74.455440px;}
._3d{width:75.542160px;}
._37{width:79.522560px;}
._39{width:83.847120px;}
._2d{width:84.998160px;}
._2e{width:86.917440px;}
._34{width:88.452000px;}
._3c{width:96.126960px;}
._38{width:97.634160px;}
._2c{width:122.078400px;}
._1f{width:123.832800px;}
._33{width:131.260320px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(7,57,118);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:1.252500px;}
.y6{bottom:3.960000px;}
.y89{bottom:4.140000px;}
.y8c{bottom:4.500000px;}
.y8a{bottom:14.400000px;}
.y3{bottom:23.983500px;}
.y88{bottom:24.840000px;}
.y2{bottom:31.716000px;}
.y60{bottom:86.436000px;}
.ya5{bottom:102.096000px;}
.y38{bottom:105.336000px;}
.y86{bottom:109.836000px;}
.y5f{bottom:114.336000px;}
.y37{bottom:126.036000px;}
.ya4{bottom:129.816000px;}
.y85{bottom:137.556000px;}
.y5e{bottom:142.056000px;}
.y36{bottom:146.736000px;}
.ya3{bottom:157.710000px;}
.y84{bottom:165.270000px;}
.y35{bottom:167.430000px;}
.y5d{bottom:169.770000px;}
.ya2{bottom:185.430000px;}
.y34{bottom:188.130000px;}
.y83{bottom:193.170000px;}
.y5c{bottom:197.670000px;}
.y33{bottom:208.830000px;}
.ya1{bottom:213.150000px;}
.y82{bottom:220.890000px;}
.y5b{bottom:225.390000px;}
.y32{bottom:229.530000px;}
.ya0{bottom:241.050000px;}
.y81{bottom:248.610000px;}
.y31{bottom:250.230000px;}
.y5a{bottom:253.110000px;}
.y9f{bottom:268.770000px;}
.y30{bottom:270.930000px;}
.y80{bottom:276.555000px;}
.y59{bottom:280.875000px;}
.y2f{bottom:291.675000px;}
.y9e{bottom:296.535000px;}
.y7f{bottom:304.275000px;}
.y58{bottom:308.775000px;}
.y2e{bottom:312.375000px;}
.y9d{bottom:324.255000px;}
.y7e{bottom:331.995000px;}
.y2d{bottom:333.075000px;}
.y57{bottom:336.495000px;}
.y9c{bottom:352.155000px;}
.y2c{bottom:353.775000px;}
.y7d{bottom:359.715000px;}
.y56{bottom:364.215000px;}
.y2b{bottom:374.475000px;}
.y9b{bottom:379.875000px;}
.y7c{bottom:387.615000px;}
.y55{bottom:392.115000px;}
.y2a{bottom:395.175000px;}
.y9a{bottom:407.595000px;}
.y7b{bottom:415.335000px;}
.y29{bottom:415.875000px;}
.y54{bottom:419.835000px;}
.y99{bottom:435.315000px;}
.y28{bottom:436.395000px;}
.y7a{bottom:443.055000px;}
.y53{bottom:447.555000px;}
.y27{bottom:457.095000px;}
.y98{bottom:463.215000px;}
.y79{bottom:470.775000px;}
.y52{bottom:475.275000px;}
.y26{bottom:477.795000px;}
.y97{bottom:490.935000px;}
.y25{bottom:498.495000px;}
.y78{bottom:498.675000px;}
.y51{bottom:503.175000px;}
.y96{bottom:518.655000px;}
.y24{bottom:519.195000px;}
.y77{bottom:526.395000px;}
.y50{bottom:530.895000px;}
.y23{bottom:539.895000px;}
.y95{bottom:546.555000px;}
.y76{bottom:554.115000px;}
.y4f{bottom:558.645000px;}
.y22{bottom:560.625000px;}
.y94{bottom:574.305000px;}
.y21{bottom:581.325000px;}
.y75{bottom:582.045000px;}
.y4e{bottom:586.545000px;}
.y20{bottom:602.025000px;}
.y74{bottom:609.765000px;}
.y4d{bottom:614.265000px;}
.y1f{bottom:622.725000px;}
.y93{bottom:629.745000px;}
.y73{bottom:637.485000px;}
.y4c{bottom:641.985000px;}
.y1e{bottom:643.425000px;}
.y92{bottom:657.645000px;}
.y1d{bottom:664.125000px;}
.y72{bottom:665.205000px;}
.y4b{bottom:669.705000px;}
.y1c{bottom:684.825000px;}
.y91{bottom:685.365000px;}
.y71{bottom:693.105000px;}
.y4a{bottom:697.605000px;}
.y1b{bottom:705.525000px;}
.y90{bottom:710.025000px;}
.y70{bottom:720.825000px;}
.y8f{bottom:722.985000px;}
.y49{bottom:725.325000px;}
.y1a{bottom:726.225000px;}
.y8e{bottom:744.405000px;}
.y19{bottom:746.925000px;}
.y6f{bottom:748.545000px;}
.y48{bottom:753.045000px;}
.y8d{bottom:766.005000px;}
.y18{bottom:767.625000px;}
.y6e{bottom:776.445000px;}
.y47{bottom:780.765000px;}
.y8b{bottom:787.425000px;}
.y17{bottom:788.325000px;}
.y6d{bottom:804.165000px;}
.y46{bottom:808.665000px;}
.y87{bottom:808.845000px;}
.y16{bottom:809.025000px;}
.y15{bottom:829.725000px;}
.y6c{bottom:831.885000px;}
.y45{bottom:836.385000px;}
.yaf{bottom:847.770000px;}
.y14{bottom:850.470000px;}
.y6b{bottom:859.650000px;}
.y44{bottom:864.150000px;}
.yae{bottom:868.470000px;}
.y13{bottom:871.170000px;}
.y6a{bottom:887.550000px;}
.yad{bottom:889.170000px;}
.y12{bottom:891.870000px;}
.y43{bottom:892.050000px;}
.yac{bottom:909.870000px;}
.y11{bottom:912.570000px;}
.y69{bottom:915.270000px;}
.y42{bottom:919.770000px;}
.yab{bottom:930.570000px;}
.y10{bottom:933.270000px;}
.y68{bottom:942.990000px;}
.y41{bottom:947.490000px;}
.yaa{bottom:951.270000px;}
.yf{bottom:953.970000px;}
.y67{bottom:970.710000px;}
.ya9{bottom:971.970000px;}
.y40{bottom:975.210000px;}
.ya8{bottom:992.670000px;}
.ye{bottom:995.370000px;}
.y66{bottom:998.610000px;}
.y3f{bottom:1003.110000px;}
.ya7{bottom:1013.010000px;}
.yd{bottom:1016.070000px;}
.y65{bottom:1026.330000px;}
.y3e{bottom:1030.830000px;}
.ya6{bottom:1034.430000px;}
.yc{bottom:1036.770000px;}
.y64{bottom:1054.050000px;}
.y3d{bottom:1057.290000px;}
.yb{bottom:1057.470000px;}
.ya{bottom:1077.810000px;}
.y3c{bottom:1078.170000px;}
.y63{bottom:1081.950000px;}
.y9{bottom:1097.250000px;}
.y3b{bottom:1098.870000px;}
.y62{bottom:1109.670000px;}
.y8{bottom:1112.910000px;}
.y3a{bottom:1119.570000px;}
.y7{bottom:1137.060000px;}
.y61{bottom:1137.420000px;}
.y39{bottom:1140.300000px;}
.y1{bottom:1190.700000px;}
.y5{bottom:1237.500000px;}
.h3{height:20.692500px;}
.hf{height:20.700000px;}
.h5{height:23.220000px;}
.hd{height:41.422500px;}
.h11{height:47.344922px;}
.h7{height:48.616875px;}
.h9{height:52.628906px;}
.h10{height:52.998047px;}
.hc{height:59.066719px;}
.he{height:62.261719px;}
.ha{height:70.628906px;}
.hb{height:70.664062px;}
.h8{height:72.562500px;}
.h6{height:72.846211px;}
.h12{height:74.004654px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:36.885000px;}
.w3{width:36.900000px;}
.w2{width:75.780000px;}
.w5{width:262.513500px;}
.w6{width:512.175000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:7.738500px;}
.x5{left:13.140000px;}
.x3{left:22.680000px;}
.x1{left:53.100000px;}
.x7{left:61.560000px;}
.xf{left:64.261500px;}
.xb{left:84.960000px;}
.xe{left:106.236000px;}
.x11{left:298.335000px;}
.x8{left:327.135000px;}
.xa{left:332.715000px;}
.xd{left:350.715000px;}
.xc{left:354.315000px;}
.x2{left:406.695000px;}
.x4{left:420.015000px;}
.x9{left:446.475000px;}
.x6{left:499.980000px;}
@media print{
.v1{vertical-align:-74.880000pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.016640pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.024960pt;}
.ls4{letter-spacing:0.064000pt;}
.lsa{letter-spacing:6.240000pt;}
.lse{letter-spacing:7.680000pt;}
.ls9{letter-spacing:9.440000pt;}
.ls7{letter-spacing:15.200000pt;}
.ls2{letter-spacing:15.360000pt;}
.lsd{letter-spacing:17.280000pt;}
.ls6{letter-spacing:25.440000pt;}
.lsc{letter-spacing:48.128000pt;}
.ls0{letter-spacing:128.000000pt;}
.ls5{letter-spacing:170.208000pt;}
.ls1{letter-spacing:172.928000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws4{word-spacing:-18.703360pt;}
.ws1{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-4.193280pt;}
._2b{margin-left:-1.810133pt;}
._1{margin-left:-0.898560pt;}
._2{width:1.005227pt;}
._b{width:2.453333pt;}
._a{width:3.520000pt;}
._7{width:4.480000pt;}
._8{width:5.760000pt;}
._25{width:6.664107pt;}
._1d{width:7.680000pt;}
._c{width:9.152000pt;}
._d{width:10.386773pt;}
._1b{width:11.648000pt;}
._e{width:12.736000pt;}
._f{width:13.714773pt;}
._1a{width:14.848000pt;}
._21{width:16.623360pt;}
._1c{width:17.664000pt;}
._29{width:20.217600pt;}
._17{width:21.440000pt;}
._18{width:22.464000pt;}
._9{width:23.642880pt;}
._4{width:25.061120pt;}
._3{width:26.090667pt;}
._6{width:27.584000pt;}
._11{width:28.480000pt;}
._22{width:29.585920pt;}
._19{width:30.592000pt;}
._3b{width:31.524480pt;}
._1e{width:32.722560pt;}
._2a{width:33.995520pt;}
._12{width:36.288000pt;}
._23{width:37.244160pt;}
._28{width:38.355840pt;}
._30{width:40.116907pt;}
._31{width:41.346773pt;}
._13{width:42.240000pt;}
._14{width:43.376213pt;}
._3a{width:44.684587pt;}
._26{width:45.901440pt;}
._27{width:47.473920pt;}
._10{width:50.368000pt;}
._5{width:52.096000pt;}
._20{width:53.688960pt;}
._15{width:55.168000pt;}
._16{width:56.061440pt;}
._36{width:57.489067pt;}
._35{width:58.419413pt;}
._24{width:60.577920pt;}
._2f{width:61.682347pt;}
._32{width:63.928747pt;}
._3e{width:66.182613pt;}
._3d{width:67.148587pt;}
._37{width:70.686720pt;}
._39{width:74.530773pt;}
._2d{width:75.553920pt;}
._2e{width:77.259947pt;}
._34{width:78.624000pt;}
._3c{width:85.446187pt;}
._38{width:86.785920pt;}
._2c{width:108.514133pt;}
._1f{width:110.073600pt;}
._33{width:116.675840pt;}
.fs1{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:1.113333pt;}
.y6{bottom:3.520000pt;}
.y89{bottom:3.680000pt;}
.y8c{bottom:4.000000pt;}
.y8a{bottom:12.800000pt;}
.y3{bottom:21.318667pt;}
.y88{bottom:22.080000pt;}
.y2{bottom:28.192000pt;}
.y60{bottom:76.832000pt;}
.ya5{bottom:90.752000pt;}
.y38{bottom:93.632000pt;}
.y86{bottom:97.632000pt;}
.y5f{bottom:101.632000pt;}
.y37{bottom:112.032000pt;}
.ya4{bottom:115.392000pt;}
.y85{bottom:122.272000pt;}
.y5e{bottom:126.272000pt;}
.y36{bottom:130.432000pt;}
.ya3{bottom:140.186667pt;}
.y84{bottom:146.906667pt;}
.y35{bottom:148.826667pt;}
.y5d{bottom:150.906667pt;}
.ya2{bottom:164.826667pt;}
.y34{bottom:167.226667pt;}
.y83{bottom:171.706667pt;}
.y5c{bottom:175.706667pt;}
.y33{bottom:185.626667pt;}
.ya1{bottom:189.466667pt;}
.y82{bottom:196.346667pt;}
.y5b{bottom:200.346667pt;}
.y32{bottom:204.026667pt;}
.ya0{bottom:214.266667pt;}
.y81{bottom:220.986667pt;}
.y31{bottom:222.426667pt;}
.y5a{bottom:224.986667pt;}
.y9f{bottom:238.906667pt;}
.y30{bottom:240.826667pt;}
.y80{bottom:245.826667pt;}
.y59{bottom:249.666667pt;}
.y2f{bottom:259.266667pt;}
.y9e{bottom:263.586667pt;}
.y7f{bottom:270.466667pt;}
.y58{bottom:274.466667pt;}
.y2e{bottom:277.666667pt;}
.y9d{bottom:288.226667pt;}
.y7e{bottom:295.106667pt;}
.y2d{bottom:296.066667pt;}
.y57{bottom:299.106667pt;}
.y9c{bottom:313.026667pt;}
.y2c{bottom:314.466667pt;}
.y7d{bottom:319.746667pt;}
.y56{bottom:323.746667pt;}
.y2b{bottom:332.866667pt;}
.y9b{bottom:337.666667pt;}
.y7c{bottom:344.546667pt;}
.y55{bottom:348.546667pt;}
.y2a{bottom:351.266667pt;}
.y9a{bottom:362.306667pt;}
.y7b{bottom:369.186667pt;}
.y29{bottom:369.666667pt;}
.y54{bottom:373.186667pt;}
.y99{bottom:386.946667pt;}
.y28{bottom:387.906667pt;}
.y7a{bottom:393.826667pt;}
.y53{bottom:397.826667pt;}
.y27{bottom:406.306667pt;}
.y98{bottom:411.746667pt;}
.y79{bottom:418.466667pt;}
.y52{bottom:422.466667pt;}
.y26{bottom:424.706667pt;}
.y97{bottom:436.386667pt;}
.y25{bottom:443.106667pt;}
.y78{bottom:443.266667pt;}
.y51{bottom:447.266667pt;}
.y96{bottom:461.026667pt;}
.y24{bottom:461.506667pt;}
.y77{bottom:467.906667pt;}
.y50{bottom:471.906667pt;}
.y23{bottom:479.906667pt;}
.y95{bottom:485.826667pt;}
.y76{bottom:492.546667pt;}
.y4f{bottom:496.573333pt;}
.y22{bottom:498.333333pt;}
.y94{bottom:510.493333pt;}
.y21{bottom:516.733333pt;}
.y75{bottom:517.373333pt;}
.y4e{bottom:521.373333pt;}
.y20{bottom:535.133333pt;}
.y74{bottom:542.013333pt;}
.y4d{bottom:546.013333pt;}
.y1f{bottom:553.533333pt;}
.y93{bottom:559.773333pt;}
.y73{bottom:566.653333pt;}
.y4c{bottom:570.653333pt;}
.y1e{bottom:571.933333pt;}
.y92{bottom:584.573333pt;}
.y1d{bottom:590.333333pt;}
.y72{bottom:591.293333pt;}
.y4b{bottom:595.293333pt;}
.y1c{bottom:608.733333pt;}
.y91{bottom:609.213333pt;}
.y71{bottom:616.093333pt;}
.y4a{bottom:620.093333pt;}
.y1b{bottom:627.133333pt;}
.y90{bottom:631.133333pt;}
.y70{bottom:640.733333pt;}
.y8f{bottom:642.653333pt;}
.y49{bottom:644.733333pt;}
.y1a{bottom:645.533333pt;}
.y8e{bottom:661.693333pt;}
.y19{bottom:663.933333pt;}
.y6f{bottom:665.373333pt;}
.y48{bottom:669.373333pt;}
.y8d{bottom:680.893333pt;}
.y18{bottom:682.333333pt;}
.y6e{bottom:690.173333pt;}
.y47{bottom:694.013333pt;}
.y8b{bottom:699.933333pt;}
.y17{bottom:700.733333pt;}
.y6d{bottom:714.813333pt;}
.y46{bottom:718.813333pt;}
.y87{bottom:718.973333pt;}
.y16{bottom:719.133333pt;}
.y15{bottom:737.533333pt;}
.y6c{bottom:739.453333pt;}
.y45{bottom:743.453333pt;}
.yaf{bottom:753.573333pt;}
.y14{bottom:755.973333pt;}
.y6b{bottom:764.133333pt;}
.y44{bottom:768.133333pt;}
.yae{bottom:771.973333pt;}
.y13{bottom:774.373333pt;}
.y6a{bottom:788.933333pt;}
.yad{bottom:790.373333pt;}
.y12{bottom:792.773333pt;}
.y43{bottom:792.933333pt;}
.yac{bottom:808.773333pt;}
.y11{bottom:811.173333pt;}
.y69{bottom:813.573333pt;}
.y42{bottom:817.573333pt;}
.yab{bottom:827.173333pt;}
.y10{bottom:829.573333pt;}
.y68{bottom:838.213333pt;}
.y41{bottom:842.213333pt;}
.yaa{bottom:845.573333pt;}
.yf{bottom:847.973333pt;}
.y67{bottom:862.853333pt;}
.ya9{bottom:863.973333pt;}
.y40{bottom:866.853333pt;}
.ya8{bottom:882.373333pt;}
.ye{bottom:884.773333pt;}
.y66{bottom:887.653333pt;}
.y3f{bottom:891.653333pt;}
.ya7{bottom:900.453333pt;}
.yd{bottom:903.173333pt;}
.y65{bottom:912.293333pt;}
.y3e{bottom:916.293333pt;}
.ya6{bottom:919.493333pt;}
.yc{bottom:921.573333pt;}
.y64{bottom:936.933333pt;}
.y3d{bottom:939.813333pt;}
.yb{bottom:939.973333pt;}
.ya{bottom:958.053333pt;}
.y3c{bottom:958.373333pt;}
.y63{bottom:961.733333pt;}
.y9{bottom:975.333333pt;}
.y3b{bottom:976.773333pt;}
.y62{bottom:986.373333pt;}
.y8{bottom:989.253333pt;}
.y3a{bottom:995.173333pt;}
.y7{bottom:1010.720000pt;}
.y61{bottom:1011.040000pt;}
.y39{bottom:1013.600000pt;}
.y1{bottom:1058.400000pt;}
.y5{bottom:1100.000000pt;}
.h3{height:18.393333pt;}
.hf{height:18.400000pt;}
.h5{height:20.640000pt;}
.hd{height:36.820000pt;}
.h11{height:42.084375pt;}
.h7{height:43.215000pt;}
.h9{height:46.781250pt;}
.h10{height:47.109375pt;}
.hc{height:52.503750pt;}
.he{height:55.343750pt;}
.ha{height:62.781250pt;}
.hb{height:62.812500pt;}
.h8{height:64.500000pt;}
.h6{height:64.752187pt;}
.h12{height:65.781915pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:32.786667pt;}
.w3{width:32.800000pt;}
.w2{width:67.360000pt;}
.w5{width:233.345333pt;}
.w6{width:455.266667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.878667pt;}
.x5{left:11.680000pt;}
.x3{left:20.160000pt;}
.x1{left:47.200000pt;}
.x7{left:54.720000pt;}
.xf{left:57.121333pt;}
.xb{left:75.520000pt;}
.xe{left:94.432000pt;}
.x11{left:265.186667pt;}
.x8{left:290.786667pt;}
.xa{left:295.746667pt;}
.xd{left:311.746667pt;}
.xc{left:314.946667pt;}
.x2{left:361.506667pt;}
.x4{left:373.346667pt;}
.x9{left:396.866667pt;}
.x6{left:444.426667pt;}
}




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