
    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_3c7bb893a2994035c8251a71.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_8c9c97656601ac09636d2ef6.woff2')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_71762f63e8ff2d037072bb21.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_acd58a76a725ebd306856c51.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f1c918422fc68396025c91e6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_043bb6ad7d874d4b43597dd7.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.v1{vertical-align:30.240000px;}
.v3{vertical-align:86.520000px;}
.ls5{letter-spacing:-0.547200px;}
.ls6{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.005760px;}
.ls1{letter-spacing:0.097920px;}
.ls7{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.540000px;}
.lse{letter-spacing:11.700000px;}
.ls3{letter-spacing:12.960000px;}
.lsf{letter-spacing:16.506720px;}
.lsc{letter-spacing:46.026720px;}
.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;}
}
.ws7{word-spacing:-21.060000px;}
.ws3{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.120000px;}
.ws4{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.580000px;}
.ws1{word-spacing:-13.140000px;}
.wsb{word-spacing:-12.131280px;}
.ws2{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
.ws0{word-spacing:4.348800px;}
._e{margin-left:-3.555120px;}
._b{margin-left:-2.287200px;}
._1{margin-left:-1.080000px;}
._2{width:1.344000px;}
._5{width:2.721600px;}
._4{width:3.795360px;}
._8{width:5.199120px;}
._12{width:6.305280px;}
._d{width:7.521120px;}
._c{width:8.545680px;}
._7{width:10.398240px;}
._3{width:11.564160px;}
._6{width:12.819120px;}
._9{width:13.924080px;}
._f{width:16.613280px;}
._a{width:17.807280px;}
._0{width:18.915840px;}
._13{width:20.378160px;}
._15{width:21.473040px;}
._11{width:22.536000px;}
._10{width:24.083280px;}
._16{width:25.517520px;}
._18{width:64.191840px;}
._17{width:65.244960px;}
._19{width:68.331600px;}
._14{width:213.427920px;}
.fc3{color:rgb(70,120,134);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:84.240000px;}
.fs7{font-size:84.384000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ya8{bottom:33.300000px;}
.ya7{bottom:54.930000px;}
.ya6{bottom:87.045000px;}
.y3{bottom:90.756000px;}
.y9f{bottom:92.520000px;}
.ya5{bottom:108.825000px;}
.y2{bottom:110.016000px;}
.ya1{bottom:130.290000px;}
.ya4{bottom:130.425000px;}
.y9d{bottom:132.156000px;}
.y26{bottom:134.496000px;}
.yda{bottom:138.636000px;}
.y4b{bottom:140.796000px;}
.ybe{bottom:141.156000px;}
.y9e{bottom:146.340000px;}
.y87{bottom:146.376000px;}
.ya0{bottom:151.890000px;}
.y25{bottom:160.410000px;}
.ya3{bottom:162.615000px;}
.y4a{bottom:166.710000px;}
.ybd{bottom:167.070000px;}
.y67{bottom:167.790000px;}
.y86{bottom:172.290000px;}
.ya2{bottom:184.215000px;}
.y24{bottom:186.150000px;}
.y49{bottom:192.450000px;}
.ybc{bottom:192.990000px;}
.y66{bottom:193.710000px;}
.yd9{bottom:195.690000px;}
.y85{bottom:198.210000px;}
.y23{bottom:212.070000px;}
.y48{bottom:218.370000px;}
.ybb{bottom:218.910000px;}
.y65{bottom:219.630000px;}
.yd8{bottom:224.130000px;}
.y84{bottom:236.010000px;}
.y22{bottom:237.990000px;}
.y47{bottom:244.290000px;}
.yba{bottom:244.650000px;}
.y64{bottom:245.370000px;}
.yd7{bottom:252.570000px;}
.y83{bottom:261.930000px;}
.y21{bottom:263.910000px;}
.y46{bottom:270.210000px;}
.y63{bottom:271.290000px;}
.yb9{bottom:271.830000px;}
.yd6{bottom:279.930000px;}
.y82{bottom:287.895000px;}
.y20{bottom:289.695000px;}
.y45{bottom:295.995000px;}
.y62{bottom:297.255000px;}
.yd5{bottom:305.715000px;}
.yb8{bottom:311.115000px;}
.y81{bottom:313.635000px;}
.y1f{bottom:315.615000px;}
.y44{bottom:321.915000px;}
.yd4{bottom:331.635000px;}
.y61{bottom:335.055000px;}
.yb7{bottom:337.035000px;}
.y80{bottom:339.555000px;}
.y1e{bottom:341.535000px;}
.y43{bottom:347.835000px;}
.yd3{bottom:357.555000px;}
.y60{bottom:360.975000px;}
.yb6{bottom:362.775000px;}
.y7f{bottom:365.475000px;}
.y1d{bottom:367.455000px;}
.y42{bottom:373.755000px;}
.yd2{bottom:383.475000px;}
.y5f{bottom:386.895000px;}
.yb5{bottom:388.695000px;}
.y9c{bottom:391.395000px;}
.y1c{bottom:394.455000px;}
.y41{bottom:399.495000px;}
.y7e{bottom:403.275000px;}
.yd1{bottom:409.215000px;}
.y5e{bottom:412.815000px;}
.yb4{bottom:414.615000px;}
.y9b{bottom:417.135000px;}
.y40{bottom:425.415000px;}
.y7d{bottom:429.195000px;}
.y1b{bottom:434.775000px;}
.yd0{bottom:435.135000px;}
.y5d{bottom:438.555000px;}
.yb3{bottom:440.535000px;}
.y9a{bottom:443.055000px;}
.y3f{bottom:451.335000px;}
.y7c{bottom:455.115000px;}
.ycf{bottom:461.055000px;}
.y1a{bottom:463.395000px;}
.y5c{bottom:464.475000px;}
.yb2{bottom:466.275000px;}
.y99{bottom:468.975000px;}
.y3e{bottom:477.255000px;}
.y7b{bottom:480.855000px;}
.yce{bottom:486.795000px;}
.yb1{bottom:492.195000px;}
.y98{bottom:494.715000px;}
.y5b{bottom:502.275000px;}
.y19{bottom:502.635000px;}
.y3d{bottom:502.995000px;}
.y7a{bottom:506.775000px;}
.ycd{bottom:512.715000px;}
.yb0{bottom:518.115000px;}
.y97{bottom:520.635000px;}
.y18{bottom:528.555000px;}
.y3c{bottom:528.915000px;}
.y5a{bottom:529.275000px;}
.y79{bottom:532.695000px;}
.ycc{bottom:538.635000px;}
.yaf{bottom:544.035000px;}
.y96{bottom:546.555000px;}
.y17{bottom:554.295000px;}
.y3b{bottom:554.835000px;}
.ycb{bottom:564.585000px;}
.y59{bottom:568.725000px;}
.yae{bottom:569.805000px;}
.y78{bottom:570.525000px;}
.y95{bottom:572.505000px;}
.y16{bottom:580.245000px;}
.y3a{bottom:580.785000px;}
.yca{bottom:590.325000px;}
.y58{bottom:594.645000px;}
.yad{bottom:596.805000px;}
.y15{bottom:606.165000px;}
.y39{bottom:606.525000px;}
.y77{bottom:608.505000px;}
.y94{bottom:610.305000px;}
.yc9{bottom:616.245000px;}
.y57{bottom:620.385000px;}
.y14{bottom:632.085000px;}
.y38{bottom:632.445000px;}
.y76{bottom:634.245000px;}
.yac{bottom:636.225000px;}
.yc8{bottom:642.165000px;}
.y56{bottom:646.305000px;}
.y93{bottom:648.285000px;}
.y13{bottom:657.825000px;}
.y37{bottom:658.365000px;}
.y75{bottom:660.165000px;}
.yab{bottom:662.145000px;}
.yc7{bottom:668.085000px;}
.y55{bottom:672.225000px;}
.y92{bottom:674.025000px;}
.y12{bottom:683.745000px;}
.y36{bottom:684.285000px;}
.y74{bottom:686.085000px;}
.yaa{bottom:687.885000px;}
.yc6{bottom:693.825000px;}
.y54{bottom:698.145000px;}
.y91{bottom:699.945000px;}
.y11{bottom:709.665000px;}
.y35{bottom:710.025000px;}
.y73{bottom:712.005000px;}
.ya9{bottom:713.805000px;}
.yc5{bottom:719.745000px;}
.y53{bottom:723.885000px;}
.y90{bottom:725.865000px;}
.y10{bottom:735.585000px;}
.y34{bottom:735.945000px;}
.y72{bottom:737.745000px;}
.yc4{bottom:745.665000px;}
.y52{bottom:749.805000px;}
.y8f{bottom:751.605000px;}
.yf{bottom:761.325000px;}
.y33{bottom:761.865000px;}
.y71{bottom:763.665000px;}
.yc3{bottom:772.845000px;}
.y51{bottom:775.725000px;}
.y8e{bottom:777.525000px;}
.ye{bottom:787.245000px;}
.y32{bottom:787.605000px;}
.y70{bottom:789.585000px;}
.yc2{bottom:798.945000px;}
.y50{bottom:801.645000px;}
.y8d{bottom:803.445000px;}
.yd{bottom:813.165000px;}
.y31{bottom:813.525000px;}
.y6f{bottom:815.505000px;}
.yc1{bottom:824.865000px;}
.y4f{bottom:827.385000px;}
.y8c{bottom:829.365000px;}
.yc{bottom:839.085000px;}
.y30{bottom:839.445000px;}
.y6e{bottom:841.245000px;}
.yc0{bottom:850.830000px;}
.y4e{bottom:853.350000px;}
.yb{bottom:864.870000px;}
.y2f{bottom:865.410000px;}
.y6d{bottom:867.210000px;}
.ybf{bottom:877.830000px;}
.y4d{bottom:879.270000px;}
.y2e{bottom:891.150000px;}
.ya{bottom:891.870000px;}
.y8b{bottom:893.130000px;}
.y4c{bottom:905.010000px;}
.y9{bottom:915.630000px;}
.y2d{bottom:917.070000px;}
.y8a{bottom:919.050000px;}
.y6c{bottom:930.930000px;}
.y8{bottom:939.390000px;}
.y2c{bottom:942.990000px;}
.y89{bottom:944.790000px;}
.y6b{bottom:956.850000px;}
.y7{bottom:963.150000px;}
.y2b{bottom:968.910000px;}
.y88{bottom:970.710000px;}
.y6a{bottom:982.770000px;}
.y6{bottom:989.070000px;}
.y2a{bottom:994.650000px;}
.y69{bottom:1008.510000px;}
.y29{bottom:1020.570000px;}
.y5{bottom:1022.190000px;}
.y68{bottom:1034.430000px;}
.y28{bottom:1046.490000px;}
.y4{bottom:1061.070000px;}
.y27{bottom:1072.410000px;}
.y1{bottom:1195.020000px;}
.h9{height:46.736719px;}
.h6{height:48.418594px;}
.h8{height:53.573906px;}
.h2{height:54.914062px;}
.h5{height:57.884766px;}
.h7{height:59.383125px;}
.h4{height:68.340586px;}
.hb{height:75.519844px;}
.hc{height:75.648938px;}
.h3{height:76.201172px;}
.hd{height:162.168937px;}
.ha{height:440.280000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:108.035987px;}
.x4{left:133.595987px;}
.x16{left:135.035987px;}
.xb{left:162.029987px;}
.x5{left:200.549987px;}
.xc{left:221.294987px;}
.x7{left:243.929987px;}
.x8{left:275.789987px;}
.x9{left:299.594987px;}
.x6{left:325.514987px;}
.xe{left:332.429987px;}
.x14{left:336.209987px;}
.xd{left:339.089987px;}
.x13{left:368.789987px;}
.x11{left:485.714987px;}
.x10{left:487.334987px;}
.xf{left:509.834987px;}
.x15{left:522.254987px;}
.x12{left:541.694987px;}
.xa{left:693.104987px;}
.x2{left:742.109987px;}
.x1{left:798.989987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.v1{vertical-align:26.880000pt;}
.v3{vertical-align:76.906667pt;}
.ls5{letter-spacing:-0.486400pt;}
.ls6{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.005120pt;}
.ls1{letter-spacing:0.087040pt;}
.ls7{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.480000pt;}
.lse{letter-spacing:10.400000pt;}
.ls3{letter-spacing:11.520000pt;}
.lsf{letter-spacing:14.672640pt;}
.lsc{letter-spacing:40.912640pt;}
.ws7{word-spacing:-18.720000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.440000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.wsa{word-spacing:-12.960000pt;}
.ws1{word-spacing:-11.680000pt;}
.wsb{word-spacing:-10.783360pt;}
.ws2{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
.ws0{word-spacing:3.865600pt;}
._e{margin-left:-3.160107pt;}
._b{margin-left:-2.033067pt;}
._1{margin-left:-0.960000pt;}
._2{width:1.194667pt;}
._5{width:2.419200pt;}
._4{width:3.373653pt;}
._8{width:4.621440pt;}
._12{width:5.604693pt;}
._d{width:6.685440pt;}
._c{width:7.596160pt;}
._7{width:9.242880pt;}
._3{width:10.279253pt;}
._6{width:11.394773pt;}
._9{width:12.376960pt;}
._f{width:14.767360pt;}
._a{width:15.828693pt;}
._0{width:16.814080pt;}
._13{width:18.113920pt;}
._15{width:19.087147pt;}
._11{width:20.032000pt;}
._10{width:21.407360pt;}
._16{width:22.682240pt;}
._18{width:57.059413pt;}
._17{width:57.995520pt;}
._19{width:60.739200pt;}
._14{width:189.713707pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:74.880000pt;}
.fs7{font-size:75.008000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ya8{bottom:29.600000pt;}
.ya7{bottom:48.826667pt;}
.ya6{bottom:77.373333pt;}
.y3{bottom:80.672000pt;}
.y9f{bottom:82.240000pt;}
.ya5{bottom:96.733333pt;}
.y2{bottom:97.792000pt;}
.ya1{bottom:115.813333pt;}
.ya4{bottom:115.933333pt;}
.y9d{bottom:117.472000pt;}
.y26{bottom:119.552000pt;}
.yda{bottom:123.232000pt;}
.y4b{bottom:125.152000pt;}
.ybe{bottom:125.472000pt;}
.y9e{bottom:130.080000pt;}
.y87{bottom:130.112000pt;}
.ya0{bottom:135.013333pt;}
.y25{bottom:142.586667pt;}
.ya3{bottom:144.546667pt;}
.y4a{bottom:148.186667pt;}
.ybd{bottom:148.506667pt;}
.y67{bottom:149.146667pt;}
.y86{bottom:153.146667pt;}
.ya2{bottom:163.746667pt;}
.y24{bottom:165.466667pt;}
.y49{bottom:171.066667pt;}
.ybc{bottom:171.546667pt;}
.y66{bottom:172.186667pt;}
.yd9{bottom:173.946667pt;}
.y85{bottom:176.186667pt;}
.y23{bottom:188.506667pt;}
.y48{bottom:194.106667pt;}
.ybb{bottom:194.586667pt;}
.y65{bottom:195.226667pt;}
.yd8{bottom:199.226667pt;}
.y84{bottom:209.786667pt;}
.y22{bottom:211.546667pt;}
.y47{bottom:217.146667pt;}
.yba{bottom:217.466667pt;}
.y64{bottom:218.106667pt;}
.yd7{bottom:224.506667pt;}
.y83{bottom:232.826667pt;}
.y21{bottom:234.586667pt;}
.y46{bottom:240.186667pt;}
.y63{bottom:241.146667pt;}
.yb9{bottom:241.626667pt;}
.yd6{bottom:248.826667pt;}
.y82{bottom:255.906667pt;}
.y20{bottom:257.506667pt;}
.y45{bottom:263.106667pt;}
.y62{bottom:264.226667pt;}
.yd5{bottom:271.746667pt;}
.yb8{bottom:276.546667pt;}
.y81{bottom:278.786667pt;}
.y1f{bottom:280.546667pt;}
.y44{bottom:286.146667pt;}
.yd4{bottom:294.786667pt;}
.y61{bottom:297.826667pt;}
.yb7{bottom:299.586667pt;}
.y80{bottom:301.826667pt;}
.y1e{bottom:303.586667pt;}
.y43{bottom:309.186667pt;}
.yd3{bottom:317.826667pt;}
.y60{bottom:320.866667pt;}
.yb6{bottom:322.466667pt;}
.y7f{bottom:324.866667pt;}
.y1d{bottom:326.626667pt;}
.y42{bottom:332.226667pt;}
.yd2{bottom:340.866667pt;}
.y5f{bottom:343.906667pt;}
.yb5{bottom:345.506667pt;}
.y9c{bottom:347.906667pt;}
.y1c{bottom:350.626667pt;}
.y41{bottom:355.106667pt;}
.y7e{bottom:358.466667pt;}
.yd1{bottom:363.746667pt;}
.y5e{bottom:366.946667pt;}
.yb4{bottom:368.546667pt;}
.y9b{bottom:370.786667pt;}
.y40{bottom:378.146667pt;}
.y7d{bottom:381.506667pt;}
.y1b{bottom:386.466667pt;}
.yd0{bottom:386.786667pt;}
.y5d{bottom:389.826667pt;}
.yb3{bottom:391.586667pt;}
.y9a{bottom:393.826667pt;}
.y3f{bottom:401.186667pt;}
.y7c{bottom:404.546667pt;}
.ycf{bottom:409.826667pt;}
.y1a{bottom:411.906667pt;}
.y5c{bottom:412.866667pt;}
.yb2{bottom:414.466667pt;}
.y99{bottom:416.866667pt;}
.y3e{bottom:424.226667pt;}
.y7b{bottom:427.426667pt;}
.yce{bottom:432.706667pt;}
.yb1{bottom:437.506667pt;}
.y98{bottom:439.746667pt;}
.y5b{bottom:446.466667pt;}
.y19{bottom:446.786667pt;}
.y3d{bottom:447.106667pt;}
.y7a{bottom:450.466667pt;}
.ycd{bottom:455.746667pt;}
.yb0{bottom:460.546667pt;}
.y97{bottom:462.786667pt;}
.y18{bottom:469.826667pt;}
.y3c{bottom:470.146667pt;}
.y5a{bottom:470.466667pt;}
.y79{bottom:473.506667pt;}
.ycc{bottom:478.786667pt;}
.yaf{bottom:483.586667pt;}
.y96{bottom:485.826667pt;}
.y17{bottom:492.706667pt;}
.y3b{bottom:493.186667pt;}
.ycb{bottom:501.853333pt;}
.y59{bottom:505.533333pt;}
.yae{bottom:506.493333pt;}
.y78{bottom:507.133333pt;}
.y95{bottom:508.893333pt;}
.y16{bottom:515.773333pt;}
.y3a{bottom:516.253333pt;}
.yca{bottom:524.733333pt;}
.y58{bottom:528.573333pt;}
.yad{bottom:530.493333pt;}
.y15{bottom:538.813333pt;}
.y39{bottom:539.133333pt;}
.y77{bottom:540.893333pt;}
.y94{bottom:542.493333pt;}
.yc9{bottom:547.773333pt;}
.y57{bottom:551.453333pt;}
.y14{bottom:561.853333pt;}
.y38{bottom:562.173333pt;}
.y76{bottom:563.773333pt;}
.yac{bottom:565.533333pt;}
.yc8{bottom:570.813333pt;}
.y56{bottom:574.493333pt;}
.y93{bottom:576.253333pt;}
.y13{bottom:584.733333pt;}
.y37{bottom:585.213333pt;}
.y75{bottom:586.813333pt;}
.yab{bottom:588.573333pt;}
.yc7{bottom:593.853333pt;}
.y55{bottom:597.533333pt;}
.y92{bottom:599.133333pt;}
.y12{bottom:607.773333pt;}
.y36{bottom:608.253333pt;}
.y74{bottom:609.853333pt;}
.yaa{bottom:611.453333pt;}
.yc6{bottom:616.733333pt;}
.y54{bottom:620.573333pt;}
.y91{bottom:622.173333pt;}
.y11{bottom:630.813333pt;}
.y35{bottom:631.133333pt;}
.y73{bottom:632.893333pt;}
.ya9{bottom:634.493333pt;}
.yc5{bottom:639.773333pt;}
.y53{bottom:643.453333pt;}
.y90{bottom:645.213333pt;}
.y10{bottom:653.853333pt;}
.y34{bottom:654.173333pt;}
.y72{bottom:655.773333pt;}
.yc4{bottom:662.813333pt;}
.y52{bottom:666.493333pt;}
.y8f{bottom:668.093333pt;}
.yf{bottom:676.733333pt;}
.y33{bottom:677.213333pt;}
.y71{bottom:678.813333pt;}
.yc3{bottom:686.973333pt;}
.y51{bottom:689.533333pt;}
.y8e{bottom:691.133333pt;}
.ye{bottom:699.773333pt;}
.y32{bottom:700.093333pt;}
.y70{bottom:701.853333pt;}
.yc2{bottom:710.173333pt;}
.y50{bottom:712.573333pt;}
.y8d{bottom:714.173333pt;}
.yd{bottom:722.813333pt;}
.y31{bottom:723.133333pt;}
.y6f{bottom:724.893333pt;}
.yc1{bottom:733.213333pt;}
.y4f{bottom:735.453333pt;}
.y8c{bottom:737.213333pt;}
.yc{bottom:745.853333pt;}
.y30{bottom:746.173333pt;}
.y6e{bottom:747.773333pt;}
.yc0{bottom:756.293333pt;}
.y4e{bottom:758.533333pt;}
.yb{bottom:768.773333pt;}
.y2f{bottom:769.253333pt;}
.y6d{bottom:770.853333pt;}
.ybf{bottom:780.293333pt;}
.y4d{bottom:781.573333pt;}
.y2e{bottom:792.133333pt;}
.ya{bottom:792.773333pt;}
.y8b{bottom:793.893333pt;}
.y4c{bottom:804.453333pt;}
.y9{bottom:813.893333pt;}
.y2d{bottom:815.173333pt;}
.y8a{bottom:816.933333pt;}
.y6c{bottom:827.493333pt;}
.y8{bottom:835.013333pt;}
.y2c{bottom:838.213333pt;}
.y89{bottom:839.813333pt;}
.y6b{bottom:850.533333pt;}
.y7{bottom:856.133333pt;}
.y2b{bottom:861.253333pt;}
.y88{bottom:862.853333pt;}
.y6a{bottom:873.573333pt;}
.y6{bottom:879.173333pt;}
.y2a{bottom:884.133333pt;}
.y69{bottom:896.453333pt;}
.y29{bottom:907.173333pt;}
.y5{bottom:908.613333pt;}
.y68{bottom:919.493333pt;}
.y28{bottom:930.213333pt;}
.y4{bottom:943.173333pt;}
.y27{bottom:953.253333pt;}
.y1{bottom:1062.240000pt;}
.h9{height:41.543750pt;}
.h6{height:43.038750pt;}
.h8{height:47.621250pt;}
.h2{height:48.812500pt;}
.h5{height:51.453125pt;}
.h7{height:52.785000pt;}
.h4{height:60.747187pt;}
.hb{height:67.128750pt;}
.hc{height:67.243500pt;}
.h3{height:67.734375pt;}
.hd{height:144.150167pt;}
.ha{height:391.360000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:96.031988pt;}
.x4{left:118.751988pt;}
.x16{left:120.031988pt;}
.xb{left:144.026655pt;}
.x5{left:178.266655pt;}
.xc{left:196.706655pt;}
.x7{left:216.826655pt;}
.x8{left:245.146655pt;}
.x9{left:266.306655pt;}
.x6{left:289.346655pt;}
.xe{left:295.493322pt;}
.x14{left:298.853322pt;}
.xd{left:301.413322pt;}
.x13{left:327.813322pt;}
.x11{left:431.746655pt;}
.x10{left:433.186655pt;}
.xf{left:453.186655pt;}
.x15{left:464.226655pt;}
.x12{left:481.506655pt;}
.xa{left:616.093322pt;}
.x2{left:659.653322pt;}
.x1{left:710.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; }
  