
    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_312da1e2567eb41f05ba8002.woff')format("woff");}.ff1{font-family:ff1;line-height:1.056641;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_54cf5c753ecd0571665743a5.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_471005c88490b0d318029323.woff')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_54ef7cda40501eaee1ce5b54.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_96ddade067d4b6d3448ce631.woff')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_7a094fdfd77cb0e7385bb61d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a6baa757672cb015e1162cf3.woff')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_fcba33b3ac5cb7fd8c0a61a4.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_370bb8f73a79282b9894e236.woff')format("woff");}.ff9{font-family:ff9;line-height:0.850586;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_94c43ff0e8005e683ff15d96.woff')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:-97.920000px;}
.v2{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.lsc{letter-spacing:-0.378600px;}
.ls4{letter-spacing:-0.180000px;}
.ls3{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000001px;}
.lsb{letter-spacing:0.028080px;}
.ls5{letter-spacing:0.037440px;}
.lsd{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:34.877280px;}
.ls6{letter-spacing:84.060000px;}
.ls9{letter-spacing:277.140000px;}
.ls7{letter-spacing:745.920000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-21.420000px;}
.ws3{word-spacing:-21.097440px;}
.ws2{word-spacing:-21.060000px;}
.ws6{word-spacing:-20.681400px;}
.ws0{word-spacing:-18.000000px;}
.ws7{word-spacing:-16.272000px;}
.ws1{word-spacing:-15.696000px;}
.ws4{word-spacing:0.000000px;}
._32{margin-left:-8.294640px;}
._b{margin-left:-6.363360px;}
._a{margin-left:-5.022000px;}
._21{margin-left:-3.961680px;}
._c{margin-left:-2.326320px;}
._0{margin-left:-1.296000px;}
._1{width:1.152000px;}
._17{width:2.611440px;}
._18{width:3.677040px;}
._8{width:5.041440px;}
._7{width:6.350400px;}
._12{width:7.413120px;}
._9{width:8.424000px;}
._1a{width:9.630720px;}
._23{width:10.812240px;}
._13{width:12.046320px;}
._16{width:13.424640px;}
._f{width:14.764080px;}
._e{width:16.776720px;}
._d{width:18.280080px;}
._6{width:19.977840px;}
._4{width:22.738800px;}
._5{width:24.280560px;}
._25{width:25.456320px;}
._2{width:27.293760px;}
._3{width:28.317600px;}
._2f{width:29.969280px;}
._1f{width:31.084560px;}
._22{width:32.769360px;}
._26{width:34.233840px;}
._1c{width:35.717760px;}
._1d{width:36.994320px;}
._27{width:38.705040px;}
._20{width:40.177440px;}
._11{width:41.530320px;}
._10{width:43.079040px;}
._2d{width:45.606240px;}
._2e{width:47.200800px;}
._14{width:54.166320px;}
._15{width:55.397520px;}
._2a{width:61.028400px;}
._1e{width:63.296640px;}
._19{width:64.527840px;}
._28{width:81.062880px;}
._1b{width:82.611840px;}
._33{width:94.019280px;}
._24{width:100.284960px;}
._35{width:103.409040px;}
._34{width:105.008160px;}
._2b{width:149.823840px;}
._31{width:169.920000px;}
._29{width:191.340000px;}
._2c{width:277.140000px;}
._30{width:281.449920px;}
.fc2{color:rgb(5,99,193);}
.fc4{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(192,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:54.000000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:4.170000px;}
.y81{bottom:12.420000px;}
.y82{bottom:19.110000px;}
.y3{bottom:24.330000px;}
.y5{bottom:25.230000px;}
.y80{bottom:34.350000px;}
.y2{bottom:45.570000px;}
.y4{bottom:45.930000px;}
.y7f{bottom:56.265000px;}
.y9{bottom:75.240000px;}
.y7b{bottom:79.590000px;}
.y8{bottom:96.300000px;}
.y7c{bottom:121.935000px;}
.y9e{bottom:127.260000px;}
.y58{bottom:141.300000px;}
.y9d{bottom:151.920000px;}
.y79{bottom:160.020000px;}
.y7d{bottom:164.265000px;}
.y57{bottom:165.420000px;}
.y9c{bottom:176.580000px;}
.y30{bottom:177.150000px;}
.y78{bottom:184.170000px;}
.y56{bottom:189.570000px;}
.y9b{bottom:201.090000px;}
.y2f{bottom:201.270000px;}
.y7e{bottom:206.610000px;}
.y77{bottom:208.470000px;}
.y55{bottom:213.870000px;}
.y2e{bottom:225.390000px;}
.y9a{bottom:225.750000px;}
.y76{bottom:232.590000px;}
.y54{bottom:237.990000px;}
.y2d{bottom:249.510000px;}
.y99{bottom:250.410000px;}
.y75{bottom:256.710000px;}
.y53{bottom:262.110000px;}
.y2c{bottom:273.630000px;}
.y98{bottom:275.070000px;}
.y74{bottom:280.830000px;}
.y52{bottom:286.230000px;}
.y2b{bottom:297.930000px;}
.y97{bottom:299.550000px;}
.y73{bottom:304.950000px;}
.y51{bottom:310.350000px;}
.y2a{bottom:322.050000px;}
.y96{bottom:324.210000px;}
.y72{bottom:329.070000px;}
.y50{bottom:334.470000px;}
.y29{bottom:346.170000px;}
.y95{bottom:348.870000px;}
.y71{bottom:353.190000px;}
.y4f{bottom:358.770000px;}
.y28{bottom:370.290000px;}
.y94{bottom:373.530000px;}
.y70{bottom:377.490000px;}
.y4e{bottom:382.890000px;}
.y27{bottom:394.410000px;}
.y93{bottom:398.190000px;}
.y6f{bottom:401.610000px;}
.y4d{bottom:407.010000px;}
.y26{bottom:418.530000px;}
.y92{bottom:422.715000px;}
.y6e{bottom:425.775000px;}
.y4c{bottom:431.175000px;}
.y25{bottom:442.695000px;}
.y91{bottom:447.375000px;}
.y6d{bottom:449.895000px;}
.y4b{bottom:455.295000px;}
.y24{bottom:466.635000px;}
.y90{bottom:472.035000px;}
.y6c{bottom:474.015000px;}
.y4a{bottom:479.415000px;}
.y23{bottom:491.115000px;}
.y8f{bottom:496.695000px;}
.y6b{bottom:498.135000px;}
.y49{bottom:503.535000px;}
.y22{bottom:515.235000px;}
.y8e{bottom:521.175000px;}
.y6a{bottom:522.435000px;}
.y48{bottom:527.835000px;}
.y21{bottom:539.355000px;}
.y8d{bottom:545.835000px;}
.y69{bottom:546.555000px;}
.y47{bottom:551.955000px;}
.y20{bottom:563.475000px;}
.y8c{bottom:570.495000px;}
.y68{bottom:570.675000px;}
.y46{bottom:576.075000px;}
.y1f{bottom:587.595000px;}
.y67{bottom:594.795000px;}
.y8b{bottom:595.155000px;}
.y45{bottom:600.195000px;}
.y1e{bottom:611.895000px;}
.y8a{bottom:619.815000px;}
.y44{bottom:624.315000px;}
.y1d{bottom:636.015000px;}
.y66{bottom:643.035000px;}
.y89{bottom:644.295000px;}
.y43{bottom:648.435000px;}
.y1c{bottom:660.135000px;}
.y65{bottom:667.185000px;}
.y88{bottom:668.985000px;}
.y42{bottom:672.765000px;}
.y1b{bottom:684.285000px;}
.y64{bottom:691.485000px;}
.y87{bottom:693.645000px;}
.y41{bottom:696.525000px;}
.y5a{bottom:696.885000px;}
.y1a{bottom:708.405000px;}
.y63{bottom:715.605000px;}
.y86{bottom:718.305000px;}
.y40{bottom:721.005000px;}
.y19{bottom:732.525000px;}
.y62{bottom:739.725000px;}
.y85{bottom:742.785000px;}
.y3f{bottom:745.125000px;}
.y18{bottom:756.825000px;}
.y61{bottom:763.845000px;}
.y84{bottom:767.445000px;}
.y3e{bottom:769.245000px;}
.y17{bottom:780.585000px;}
.y60{bottom:787.965000px;}
.y83{bottom:792.105000px;}
.y3d{bottom:793.365000px;}
.y5f{bottom:812.085000px;}
.y16{bottom:816.765000px;}
.y3c{bottom:817.665000px;}
.y5e{bottom:836.385000px;}
.y3b{bottom:841.785000px;}
.y15{bottom:848.805000px;}
.y5d{bottom:860.505000px;}
.y14{bottom:865.365000px;}
.y3a{bottom:865.905000px;}
.y5c{bottom:884.625000px;}
.y39{bottom:890.025000px;}
.y13{bottom:897.045000px;}
.y5b{bottom:903.705000px;}
.y7a{bottom:903.780000px;}
.y12{bottom:913.470000px;}
.y38{bottom:914.190000px;}
.y11{bottom:937.590000px;}
.y37{bottom:938.310000px;}
.y10{bottom:961.710000px;}
.y36{bottom:962.430000px;}
.yf{bottom:985.830000px;}
.y35{bottom:986.730000px;}
.ye{bottom:1009.950000px;}
.y34{bottom:1010.850000px;}
.yd{bottom:1034.070000px;}
.y59{bottom:1034.970000px;}
.yc{bottom:1058.190000px;}
.y33{bottom:1059.090000px;}
.yb{bottom:1082.490000px;}
.y32{bottom:1083.210000px;}
.ya{bottom:1106.610000px;}
.y31{bottom:1107.330000px;}
.y7{bottom:1130.730000px;}
.y1{bottom:1147.110000px;}
.h4{height:50.800781px;}
.ha{height:52.971680px;}
.he{height:60.679688px;}
.h3{height:60.960938px;}
.h2{height:62.676000px;}
.h7{height:65.884219px;}
.h6{height:70.664062px;}
.h8{height:71.324297px;}
.h11{height:71.613281px;}
.h5{height:72.562500px;}
.hd{height:75.519844px;}
.hb{height:82.635820px;}
.hc{height:82.676953px;}
.h9{height:84.898125px;}
.hf{height:86.585445px;}
.h10{height:222.660000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:223.095000px;}
.w3{width:499.215000px;}
.w5{width:660.420000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:2.448000px;}
.x2{left:8.136000px;}
.x17{left:11.520000px;}
.x5{left:23.580000px;}
.x4{left:38.880000px;}
.x19{left:65.985000px;}
.x1a{left:76.710000px;}
.x1{left:84.960000px;}
.x20{left:100.905000px;}
.xb{left:116.135987px;}
.x10{left:118.475987px;}
.xa{left:122.255987px;}
.x16{left:127.475987px;}
.x13{left:138.095987px;}
.xd{left:218.369987px;}
.x1b{left:224.280000px;}
.x1c{left:226.185000px;}
.x11{left:266.429987px;}
.xe{left:276.554987px;}
.x3{left:308.055000px;}
.xc{left:321.914987px;}
.x6{left:336.450000px;}
.x1d{left:350.565000px;}
.x1e{left:372.885000px;}
.xf{left:385.814987px;}
.x14{left:393.374987px;}
.x12{left:395.714987px;}
.x1f{left:398.490000px;}
.x9{left:446.474987px;}
.x8{left:472.964987px;}
.x15{left:777.209987px;}
.x7{left:807.989987px;}
@media print{
.v3{vertical-align:-87.040000pt;}
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.lsc{letter-spacing:-0.336533pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000001pt;}
.lsb{letter-spacing:0.024960pt;}
.ls5{letter-spacing:0.033280pt;}
.lsd{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:31.002027pt;}
.ls6{letter-spacing:74.720000pt;}
.ls9{letter-spacing:246.346667pt;}
.ls7{letter-spacing:663.040000pt;}
.ws5{word-spacing:-19.040000pt;}
.ws3{word-spacing:-18.753280pt;}
.ws2{word-spacing:-18.720000pt;}
.ws6{word-spacing:-18.383467pt;}
.ws0{word-spacing:-16.000000pt;}
.ws7{word-spacing:-14.464000pt;}
.ws1{word-spacing:-13.952000pt;}
.ws4{word-spacing:0.000000pt;}
._32{margin-left:-7.373013pt;}
._b{margin-left:-5.656320pt;}
._a{margin-left:-4.464000pt;}
._21{margin-left:-3.521493pt;}
._c{margin-left:-2.067840pt;}
._0{margin-left:-1.152000pt;}
._1{width:1.024000pt;}
._17{width:2.321280pt;}
._18{width:3.268480pt;}
._8{width:4.481280pt;}
._7{width:5.644800pt;}
._12{width:6.589440pt;}
._9{width:7.488000pt;}
._1a{width:8.560640pt;}
._23{width:9.610880pt;}
._13{width:10.707840pt;}
._16{width:11.933013pt;}
._f{width:13.123627pt;}
._e{width:14.912640pt;}
._d{width:16.248960pt;}
._6{width:17.758080pt;}
._4{width:20.212267pt;}
._5{width:21.582720pt;}
._25{width:22.627840pt;}
._2{width:24.261120pt;}
._3{width:25.171200pt;}
._2f{width:26.639360pt;}
._1f{width:27.630720pt;}
._22{width:29.128320pt;}
._26{width:30.430080pt;}
._1c{width:31.749120pt;}
._1d{width:32.883840pt;}
._27{width:34.404480pt;}
._20{width:35.713280pt;}
._11{width:36.915840pt;}
._10{width:38.292480pt;}
._2d{width:40.538880pt;}
._2e{width:41.956267pt;}
._14{width:48.147840pt;}
._15{width:49.242240pt;}
._2a{width:54.247467pt;}
._1e{width:56.263680pt;}
._19{width:57.358080pt;}
._28{width:72.055893pt;}
._1b{width:73.432747pt;}
._33{width:83.572693pt;}
._24{width:89.142187pt;}
._35{width:91.919147pt;}
._34{width:93.340587pt;}
._2b{width:133.176747pt;}
._31{width:151.040000pt;}
._29{width:170.080000pt;}
._2c{width:246.346667pt;}
._30{width:250.177707pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.706667pt;}
.y81{bottom:11.040000pt;}
.y82{bottom:16.986667pt;}
.y3{bottom:21.626667pt;}
.y5{bottom:22.426667pt;}
.y80{bottom:30.533333pt;}
.y2{bottom:40.506667pt;}
.y4{bottom:40.826667pt;}
.y7f{bottom:50.013333pt;}
.y9{bottom:66.880000pt;}
.y7b{bottom:70.746667pt;}
.y8{bottom:85.600000pt;}
.y7c{bottom:108.386667pt;}
.y9e{bottom:113.120000pt;}
.y58{bottom:125.600000pt;}
.y9d{bottom:135.040000pt;}
.y79{bottom:142.240000pt;}
.y7d{bottom:146.013333pt;}
.y57{bottom:147.040000pt;}
.y9c{bottom:156.960000pt;}
.y30{bottom:157.466667pt;}
.y78{bottom:163.706667pt;}
.y56{bottom:168.506667pt;}
.y9b{bottom:178.746667pt;}
.y2f{bottom:178.906667pt;}
.y7e{bottom:183.653333pt;}
.y77{bottom:185.306667pt;}
.y55{bottom:190.106667pt;}
.y2e{bottom:200.346667pt;}
.y9a{bottom:200.666667pt;}
.y76{bottom:206.746667pt;}
.y54{bottom:211.546667pt;}
.y2d{bottom:221.786667pt;}
.y99{bottom:222.586667pt;}
.y75{bottom:228.186667pt;}
.y53{bottom:232.986667pt;}
.y2c{bottom:243.226667pt;}
.y98{bottom:244.506667pt;}
.y74{bottom:249.626667pt;}
.y52{bottom:254.426667pt;}
.y2b{bottom:264.826667pt;}
.y97{bottom:266.266667pt;}
.y73{bottom:271.066667pt;}
.y51{bottom:275.866667pt;}
.y2a{bottom:286.266667pt;}
.y96{bottom:288.186667pt;}
.y72{bottom:292.506667pt;}
.y50{bottom:297.306667pt;}
.y29{bottom:307.706667pt;}
.y95{bottom:310.106667pt;}
.y71{bottom:313.946667pt;}
.y4f{bottom:318.906667pt;}
.y28{bottom:329.146667pt;}
.y94{bottom:332.026667pt;}
.y70{bottom:335.546667pt;}
.y4e{bottom:340.346667pt;}
.y27{bottom:350.586667pt;}
.y93{bottom:353.946667pt;}
.y6f{bottom:356.986667pt;}
.y4d{bottom:361.786667pt;}
.y26{bottom:372.026667pt;}
.y92{bottom:375.746667pt;}
.y6e{bottom:378.466667pt;}
.y4c{bottom:383.266667pt;}
.y25{bottom:393.506667pt;}
.y91{bottom:397.666667pt;}
.y6d{bottom:399.906667pt;}
.y4b{bottom:404.706667pt;}
.y24{bottom:414.786667pt;}
.y90{bottom:419.586667pt;}
.y6c{bottom:421.346667pt;}
.y4a{bottom:426.146667pt;}
.y23{bottom:436.546667pt;}
.y8f{bottom:441.506667pt;}
.y6b{bottom:442.786667pt;}
.y49{bottom:447.586667pt;}
.y22{bottom:457.986667pt;}
.y8e{bottom:463.266667pt;}
.y6a{bottom:464.386667pt;}
.y48{bottom:469.186667pt;}
.y21{bottom:479.426667pt;}
.y8d{bottom:485.186667pt;}
.y69{bottom:485.826667pt;}
.y47{bottom:490.626667pt;}
.y20{bottom:500.866667pt;}
.y8c{bottom:507.106667pt;}
.y68{bottom:507.266667pt;}
.y46{bottom:512.066667pt;}
.y1f{bottom:522.306667pt;}
.y67{bottom:528.706667pt;}
.y8b{bottom:529.026667pt;}
.y45{bottom:533.506667pt;}
.y1e{bottom:543.906667pt;}
.y8a{bottom:550.946667pt;}
.y44{bottom:554.946667pt;}
.y1d{bottom:565.346667pt;}
.y66{bottom:571.586667pt;}
.y89{bottom:572.706667pt;}
.y43{bottom:576.386667pt;}
.y1c{bottom:586.786667pt;}
.y65{bottom:593.053333pt;}
.y88{bottom:594.653333pt;}
.y42{bottom:598.013333pt;}
.y1b{bottom:608.253333pt;}
.y64{bottom:614.653333pt;}
.y87{bottom:616.573333pt;}
.y41{bottom:619.133333pt;}
.y5a{bottom:619.453333pt;}
.y1a{bottom:629.693333pt;}
.y63{bottom:636.093333pt;}
.y86{bottom:638.493333pt;}
.y40{bottom:640.893333pt;}
.y19{bottom:651.133333pt;}
.y62{bottom:657.533333pt;}
.y85{bottom:660.253333pt;}
.y3f{bottom:662.333333pt;}
.y18{bottom:672.733333pt;}
.y61{bottom:678.973333pt;}
.y84{bottom:682.173333pt;}
.y3e{bottom:683.773333pt;}
.y17{bottom:693.853333pt;}
.y60{bottom:700.413333pt;}
.y83{bottom:704.093333pt;}
.y3d{bottom:705.213333pt;}
.y5f{bottom:721.853333pt;}
.y16{bottom:726.013333pt;}
.y3c{bottom:726.813333pt;}
.y5e{bottom:743.453333pt;}
.y3b{bottom:748.253333pt;}
.y15{bottom:754.493333pt;}
.y5d{bottom:764.893333pt;}
.y14{bottom:769.213333pt;}
.y3a{bottom:769.693333pt;}
.y5c{bottom:786.333333pt;}
.y39{bottom:791.133333pt;}
.y13{bottom:797.373333pt;}
.y5b{bottom:803.293333pt;}
.y7a{bottom:803.360000pt;}
.y12{bottom:811.973333pt;}
.y38{bottom:812.613333pt;}
.y11{bottom:833.413333pt;}
.y37{bottom:834.053333pt;}
.y10{bottom:854.853333pt;}
.y36{bottom:855.493333pt;}
.yf{bottom:876.293333pt;}
.y35{bottom:877.093333pt;}
.ye{bottom:897.733333pt;}
.y34{bottom:898.533333pt;}
.yd{bottom:919.173333pt;}
.y59{bottom:919.973333pt;}
.yc{bottom:940.613333pt;}
.y33{bottom:941.413333pt;}
.yb{bottom:962.213333pt;}
.y32{bottom:962.853333pt;}
.ya{bottom:983.653333pt;}
.y31{bottom:984.293333pt;}
.y7{bottom:1005.093333pt;}
.y1{bottom:1019.653333pt;}
.h4{height:45.156250pt;}
.ha{height:47.085938pt;}
.he{height:53.937500pt;}
.h3{height:54.187500pt;}
.h2{height:55.712000pt;}
.h7{height:58.563750pt;}
.h6{height:62.812500pt;}
.h8{height:63.399375pt;}
.h11{height:63.656250pt;}
.h5{height:64.500000pt;}
.hd{height:67.128750pt;}
.hb{height:73.454062pt;}
.hc{height:73.490625pt;}
.h9{height:75.465000pt;}
.hf{height:76.964840pt;}
.h10{height:197.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:198.306667pt;}
.w3{width:443.746667pt;}
.w5{width:587.040000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:2.176000pt;}
.x2{left:7.232000pt;}
.x17{left:10.240000pt;}
.x5{left:20.960000pt;}
.x4{left:34.560000pt;}
.x19{left:58.653333pt;}
.x1a{left:68.186667pt;}
.x1{left:75.520000pt;}
.x20{left:89.693333pt;}
.xb{left:103.231988pt;}
.x10{left:105.311988pt;}
.xa{left:108.671988pt;}
.x16{left:113.311988pt;}
.x13{left:122.751988pt;}
.xd{left:194.106655pt;}
.x1b{left:199.360000pt;}
.x1c{left:201.053333pt;}
.x11{left:236.826655pt;}
.xe{left:245.826655pt;}
.x3{left:273.826667pt;}
.xc{left:286.146655pt;}
.x6{left:299.066667pt;}
.x1d{left:311.613333pt;}
.x1e{left:331.453333pt;}
.xf{left:342.946655pt;}
.x14{left:349.666655pt;}
.x12{left:351.746655pt;}
.x1f{left:354.213333pt;}
.x9{left:396.866655pt;}
.x8{left:420.413322pt;}
.x15{left:690.853322pt;}
.x7{left:718.213322pt;}
}




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