
    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_7cc212c8fbcaebe9138a3220.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909180;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_a24cb885ac5da0cb8d0fbfda.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_98d15501009114e58a6c08bf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_eb7d5df011f4d7af750f56ef.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_f54b0dec71cc4e7f20f423b7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_c8bf2609b9adf506dd4a1d29.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_97cef48006e4f910183cf4c1.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b673a5715194fcf486196508.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064941;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;}
.lsf{letter-spacing:-0.930000px;}
.ls8{letter-spacing:-0.648000px;}
.ls13{letter-spacing:-0.564600px;}
.ls4{letter-spacing:-0.291600px;}
.ls3{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.207600px;}
.ls6{letter-spacing:-0.094800px;}
.lsb{letter-spacing:-0.069000px;}
.ls2{letter-spacing:-0.036000px;}
.ls1{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.023040px;}
.lsc{letter-spacing:0.075000px;}
.ls9{letter-spacing:0.100800px;}
.ls7{letter-spacing:0.122400px;}
.ls0{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.241800px;}
.ls14{letter-spacing:2.706000px;}
.lsd{letter-spacing:3.427200px;}
.lse{letter-spacing:9.187200px;}
.ls12{letter-spacing:39.185280px;}
.lsa{letter-spacing:260.443200px;}
.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;}
}
.wsf{word-spacing:-66.240000px;}
.wsd{word-spacing:-14.647800px;}
.wse{word-spacing:-14.595840px;}
.ws1{word-spacing:-14.572800px;}
.wsc{word-spacing:-14.503800px;}
.wsb{word-spacing:-14.478000px;}
.ws4{word-spacing:-13.147200px;}
.ws0{word-spacing:-12.060000px;}
.ws2{word-spacing:-11.844000px;}
.ws3{word-spacing:-11.664000px;}
.ws9{word-spacing:-10.854600px;}
.ws5{word-spacing:-10.612800px;}
.wsa{word-spacing:-9.092400px;}
.ws7{word-spacing:-7.920000px;}
.ws6{word-spacing:-7.884000px;}
.ws8{word-spacing:0.000000px;}
._1e{margin-left:-4.636800px;}
._14{margin-left:-3.615360px;}
._9{margin-left:-2.562240px;}
._2{margin-left:-1.278000px;}
._1{width:1.128000px;}
._24{width:2.146800px;}
._4{width:3.168000px;}
._15{width:4.541760px;}
._10{width:6.035760px;}
._a{width:7.111440px;}
._c{width:8.246880px;}
._11{width:9.740880px;}
._17{width:11.070480px;}
._16{width:12.093840px;}
._20{width:13.331040px;}
._1f{width:15.929760px;}
._1a{width:17.270640px;}
._19{width:18.525600px;}
._29{width:19.562400px;}
._23{width:20.581200px;}
._e{width:21.812400px;}
._d{width:22.828320px;}
._b{width:23.904000px;}
._f{width:25.158960px;}
._18{width:26.207040px;}
._13{width:27.317760px;}
._12{width:28.505520px;}
._25{width:29.918160px;}
._1c{width:31.066560px;}
._1d{width:32.192640px;}
._28{width:33.848640px;}
._7{width:35.198640px;}
._8{width:36.707520px;}
._2a{width:38.176560px;}
._21{width:47.621280px;}
._26{width:49.510080px;}
._27{width:50.862960px;}
._0{width:75.000000px;}
._3{width:181.620000px;}
._5{width:198.789840px;}
._6{width:202.852800px;}
._1b{width:260.443200px;}
._22{width:1056.007200px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(238,0,0);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs8{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs7{font-size:84.240000px;}
.y54{bottom:-21.600000px;}
.y53{bottom:-1.080000px;}
.y0{bottom:0.000000px;}
.y52{bottom:17.640000px;}
.y51{bottom:28.260000px;}
.y50{bottom:38.880000px;}
.y4f{bottom:49.320000px;}
.y7{bottom:56.520000px;}
.y4e{bottom:66.990000px;}
.y6{bottom:70.596000px;}
.y4d{bottom:111.450000px;}
.yb4{bottom:114.156000px;}
.y84{bottom:115.596000px;}
.y3c{bottom:123.876000px;}
.y4c{bottom:130.890000px;}
.yb3{bottom:136.296000px;}
.y83{bottom:137.916000px;}
.y4b{bottom:144.930000px;}
.y3b{bottom:146.196000px;}
.yb2{bottom:158.610000px;}
.yb5{bottom:158.790000px;}
.y4a{bottom:158.970000px;}
.y82{bottom:160.050000px;}
.y3a{bottom:168.510000px;}
.y49{bottom:173.190000px;}
.yb1{bottom:180.930000px;}
.y81{bottom:182.370000px;}
.y48{bottom:187.230000px;}
.y39{bottom:190.650000px;}
.y47{bottom:201.270000px;}
.yb0{bottom:203.070000px;}
.y80{bottom:204.510000px;}
.y38{bottom:212.970000px;}
.y46{bottom:215.310000px;}
.yaf{bottom:225.390000px;}
.y7f{bottom:226.830000px;}
.y45{bottom:229.350000px;}
.y37{bottom:235.110000px;}
.y44{bottom:244.650000px;}
.yae{bottom:247.530000px;}
.y7e{bottom:249.150000px;}
.y36{bottom:257.430000px;}
.y43{bottom:264.090000px;}
.yad{bottom:269.850000px;}
.y7d{bottom:271.290000px;}
.y42{bottom:278.310000px;}
.y35{bottom:279.750000px;}
.yac{bottom:292.170000px;}
.y41{bottom:292.350000px;}
.y7c{bottom:293.610000px;}
.y34{bottom:301.890000px;}
.y40{bottom:306.390000px;}
.yab{bottom:314.310000px;}
.y7b{bottom:315.750000px;}
.y3f{bottom:320.430000px;}
.y33{bottom:324.210000px;}
.y3e{bottom:334.875000px;}
.yaa{bottom:336.675000px;}
.y7a{bottom:338.115000px;}
.y32{bottom:343.695000px;}
.ya9{bottom:358.815000px;}
.y79{bottom:360.255000px;}
.y31{bottom:362.775000px;}
.y30{bottom:380.415000px;}
.ya8{bottom:381.135000px;}
.y78{bottom:382.575000px;}
.y2f{bottom:398.055000px;}
.ya7{bottom:403.455000px;}
.y77{bottom:404.895000px;}
.y2e{bottom:415.515000px;}
.ya6{bottom:425.595000px;}
.y76{bottom:427.035000px;}
.y2d{bottom:433.155000px;}
.ya5{bottom:447.915000px;}
.y75{bottom:449.355000px;}
.y2c{bottom:450.795000px;}
.y2b{bottom:468.255000px;}
.ya4{bottom:470.055000px;}
.y74{bottom:471.495000px;}
.y2a{bottom:485.895000px;}
.ya3{bottom:492.375000px;}
.y73{bottom:493.815000px;}
.y29{bottom:503.535000px;}
.ya2{bottom:514.515000px;}
.y72{bottom:516.135000px;}
.y28{bottom:520.995000px;}
.ya1{bottom:536.835000px;}
.y71{bottom:538.275000px;}
.y27{bottom:538.635000px;}
.y3d{bottom:539.535000px;}
.y26{bottom:556.275000px;}
.ya0{bottom:559.155000px;}
.y70{bottom:560.595000px;}
.y25{bottom:576.075000px;}
.y9f{bottom:581.295000px;}
.y6f{bottom:582.735000px;}
.y24{bottom:593.715000px;}
.y9e{bottom:603.645000px;}
.y6e{bottom:605.085000px;}
.y23{bottom:611.205000px;}
.y9d{bottom:625.785000px;}
.y6d{bottom:627.405000px;}
.y22{bottom:628.845000px;}
.y21{bottom:646.485000px;}
.y9c{bottom:648.105000px;}
.y6c{bottom:649.545000px;}
.y20{bottom:664.125000px;}
.y9b{bottom:670.425000px;}
.y6b{bottom:671.865000px;}
.y1f{bottom:681.585000px;}
.y9a{bottom:692.565000px;}
.y6a{bottom:694.005000px;}
.y1e{bottom:699.225000px;}
.y99{bottom:714.885000px;}
.y69{bottom:716.325000px;}
.y1d{bottom:716.865000px;}
.y1c{bottom:734.325000px;}
.y98{bottom:737.025000px;}
.y68{bottom:738.465000px;}
.y1b{bottom:751.965000px;}
.y97{bottom:759.345000px;}
.y67{bottom:760.785000px;}
.y1a{bottom:769.605000px;}
.y96{bottom:781.485000px;}
.y66{bottom:783.105000px;}
.y19{bottom:787.065000px;}
.y95{bottom:803.805000px;}
.y18{bottom:804.705000px;}
.y65{bottom:805.245000px;}
.y17{bottom:822.345000px;}
.y94{bottom:826.125000px;}
.y64{bottom:827.565000px;}
.y16{bottom:839.985000px;}
.y93{bottom:848.265000px;}
.y63{bottom:849.705000px;}
.y15{bottom:857.445000px;}
.y92{bottom:870.630000px;}
.y62{bottom:872.070000px;}
.y14{bottom:875.130000px;}
.y91{bottom:892.770000px;}
.y13{bottom:892.950000px;}
.y61{bottom:894.390000px;}
.y12{bottom:911.670000px;}
.y90{bottom:915.090000px;}
.y60{bottom:916.530000px;}
.y11{bottom:928.050000px;}
.y8f{bottom:937.410000px;}
.y5f{bottom:938.850000px;}
.y10{bottom:947.490000px;}
.y8e{bottom:959.550000px;}
.y5e{bottom:960.990000px;}
.yf{bottom:966.750000px;}
.y8d{bottom:981.870000px;}
.y5d{bottom:983.310000px;}
.ye{bottom:986.190000px;}
.y8c{bottom:1004.010000px;}
.yd{bottom:1005.450000px;}
.yc{bottom:1023.990000px;}
.y8b{bottom:1026.330000px;}
.y5c{bottom:1027.770000px;}
.yb{bottom:1039.650000px;}
.y8a{bottom:1048.650000px;}
.y5b{bottom:1050.090000px;}
.ya{bottom:1062.510000px;}
.y89{bottom:1070.790000px;}
.y5a{bottom:1072.230000px;}
.y9{bottom:1085.370000px;}
.y88{bottom:1093.110000px;}
.y59{bottom:1094.550000px;}
.y8{bottom:1108.230000px;}
.y87{bottom:1115.250000px;}
.y58{bottom:1116.690000px;}
.y5{bottom:1133.250000px;}
.y86{bottom:1137.570000px;}
.y57{bottom:1139.040000px;}
.y4{bottom:1147.500000px;}
.y85{bottom:1157.400000px;}
.y3{bottom:1162.980000px;}
.y56{bottom:1178.100000px;}
.y2{bottom:1178.460000px;}
.y1{bottom:1193.940000px;}
.y55{bottom:1197.540000px;}
.ha{height:30.480469px;}
.h3{height:38.100586px;}
.h4{height:40.843828px;}
.h2{height:45.720703px;}
.h9{height:50.273438px;}
.h7{height:50.597578px;}
.h6{height:56.084062px;}
.hb{height:58.819922px;}
.h5{height:65.837812px;}
.h8{height:347.655000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:208.110000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:94.494000px;}
.x1{left:108.035987px;}
.x2{left:112.535987px;}
.x5{left:129.275987px;}
.x6{left:137.915987px;}
.xd{left:140.075987px;}
.xe{left:150.509987px;}
.x3{left:161.309987px;}
.xa{left:335.414987px;}
.x9{left:337.934987px;}
.x8{left:385.094987px;}
.x7{left:413.534987px;}
.x4{left:446.474987px;}
.xc{left:546.404987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.826667pt;}
.ls8{letter-spacing:-0.576000pt;}
.ls13{letter-spacing:-0.501867pt;}
.ls4{letter-spacing:-0.259200pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.184533pt;}
.ls6{letter-spacing:-0.084267pt;}
.lsb{letter-spacing:-0.061333pt;}
.ls2{letter-spacing:-0.032000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.020480pt;}
.lsc{letter-spacing:0.066667pt;}
.ls9{letter-spacing:0.089600pt;}
.ls7{letter-spacing:0.108800pt;}
.ls0{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.214933pt;}
.ls14{letter-spacing:2.405333pt;}
.lsd{letter-spacing:3.046400pt;}
.lse{letter-spacing:8.166400pt;}
.ls12{letter-spacing:34.831360pt;}
.lsa{letter-spacing:231.505067pt;}
.wsf{word-spacing:-58.880000pt;}
.wsd{word-spacing:-13.020267pt;}
.wse{word-spacing:-12.974080pt;}
.ws1{word-spacing:-12.953600pt;}
.wsc{word-spacing:-12.892267pt;}
.wsb{word-spacing:-12.869333pt;}
.ws4{word-spacing:-11.686400pt;}
.ws0{word-spacing:-10.720000pt;}
.ws2{word-spacing:-10.528000pt;}
.ws3{word-spacing:-10.368000pt;}
.ws9{word-spacing:-9.648533pt;}
.ws5{word-spacing:-9.433600pt;}
.wsa{word-spacing:-8.082133pt;}
.ws7{word-spacing:-7.040000pt;}
.ws6{word-spacing:-7.008000pt;}
.ws8{word-spacing:0.000000pt;}
._1e{margin-left:-4.121600pt;}
._14{margin-left:-3.213653pt;}
._9{margin-left:-2.277547pt;}
._2{margin-left:-1.136000pt;}
._1{width:1.002667pt;}
._24{width:1.908267pt;}
._4{width:2.816000pt;}
._15{width:4.037120pt;}
._10{width:5.365120pt;}
._a{width:6.321280pt;}
._c{width:7.330560pt;}
._11{width:8.658560pt;}
._17{width:9.840427pt;}
._16{width:10.750080pt;}
._20{width:11.849813pt;}
._1f{width:14.159787pt;}
._1a{width:15.351680pt;}
._19{width:16.467200pt;}
._29{width:17.388800pt;}
._23{width:18.294400pt;}
._e{width:19.388800pt;}
._d{width:20.291840pt;}
._b{width:21.248000pt;}
._f{width:22.363520pt;}
._18{width:23.295147pt;}
._13{width:24.282453pt;}
._12{width:25.338240pt;}
._25{width:26.593920pt;}
._1c{width:27.614720pt;}
._1d{width:28.615680pt;}
._28{width:30.087680pt;}
._7{width:31.287680pt;}
._8{width:32.628907pt;}
._2a{width:33.934720pt;}
._21{width:42.330027pt;}
._26{width:44.008960pt;}
._27{width:45.211520pt;}
._0{width:66.666667pt;}
._3{width:161.440000pt;}
._5{width:176.702080pt;}
._6{width:180.313600pt;}
._1b{width:231.505067pt;}
._22{width:938.673067pt;}
.fs6{font-size:32.000000pt;}
.fs8{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs7{font-size:74.880000pt;}
.y54{bottom:-19.200000pt;}
.y53{bottom:-0.960000pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:15.680000pt;}
.y51{bottom:25.120000pt;}
.y50{bottom:34.560000pt;}
.y4f{bottom:43.840000pt;}
.y7{bottom:50.240000pt;}
.y4e{bottom:59.546667pt;}
.y6{bottom:62.752000pt;}
.y4d{bottom:99.066667pt;}
.yb4{bottom:101.472000pt;}
.y84{bottom:102.752000pt;}
.y3c{bottom:110.112000pt;}
.y4c{bottom:116.346667pt;}
.yb3{bottom:121.152000pt;}
.y83{bottom:122.592000pt;}
.y4b{bottom:128.826667pt;}
.y3b{bottom:129.952000pt;}
.yb2{bottom:140.986667pt;}
.yb5{bottom:141.146667pt;}
.y4a{bottom:141.306667pt;}
.y82{bottom:142.266667pt;}
.y3a{bottom:149.786667pt;}
.y49{bottom:153.946667pt;}
.yb1{bottom:160.826667pt;}
.y81{bottom:162.106667pt;}
.y48{bottom:166.426667pt;}
.y39{bottom:169.466667pt;}
.y47{bottom:178.906667pt;}
.yb0{bottom:180.506667pt;}
.y80{bottom:181.786667pt;}
.y38{bottom:189.306667pt;}
.y46{bottom:191.386667pt;}
.yaf{bottom:200.346667pt;}
.y7f{bottom:201.626667pt;}
.y45{bottom:203.866667pt;}
.y37{bottom:208.986667pt;}
.y44{bottom:217.466667pt;}
.yae{bottom:220.026667pt;}
.y7e{bottom:221.466667pt;}
.y36{bottom:228.826667pt;}
.y43{bottom:234.746667pt;}
.yad{bottom:239.866667pt;}
.y7d{bottom:241.146667pt;}
.y42{bottom:247.386667pt;}
.y35{bottom:248.666667pt;}
.yac{bottom:259.706667pt;}
.y41{bottom:259.866667pt;}
.y7c{bottom:260.986667pt;}
.y34{bottom:268.346667pt;}
.y40{bottom:272.346667pt;}
.yab{bottom:279.386667pt;}
.y7b{bottom:280.666667pt;}
.y3f{bottom:284.826667pt;}
.y33{bottom:288.186667pt;}
.y3e{bottom:297.666667pt;}
.yaa{bottom:299.266667pt;}
.y7a{bottom:300.546667pt;}
.y32{bottom:305.506667pt;}
.ya9{bottom:318.946667pt;}
.y79{bottom:320.226667pt;}
.y31{bottom:322.466667pt;}
.y30{bottom:338.146667pt;}
.ya8{bottom:338.786667pt;}
.y78{bottom:340.066667pt;}
.y2f{bottom:353.826667pt;}
.ya7{bottom:358.626667pt;}
.y77{bottom:359.906667pt;}
.y2e{bottom:369.346667pt;}
.ya6{bottom:378.306667pt;}
.y76{bottom:379.586667pt;}
.y2d{bottom:385.026667pt;}
.ya5{bottom:398.146667pt;}
.y75{bottom:399.426667pt;}
.y2c{bottom:400.706667pt;}
.y2b{bottom:416.226667pt;}
.ya4{bottom:417.826667pt;}
.y74{bottom:419.106667pt;}
.y2a{bottom:431.906667pt;}
.ya3{bottom:437.666667pt;}
.y73{bottom:438.946667pt;}
.y29{bottom:447.586667pt;}
.ya2{bottom:457.346667pt;}
.y72{bottom:458.786667pt;}
.y28{bottom:463.106667pt;}
.ya1{bottom:477.186667pt;}
.y71{bottom:478.466667pt;}
.y27{bottom:478.786667pt;}
.y3d{bottom:479.586667pt;}
.y26{bottom:494.466667pt;}
.ya0{bottom:497.026667pt;}
.y70{bottom:498.306667pt;}
.y25{bottom:512.066667pt;}
.y9f{bottom:516.706667pt;}
.y6f{bottom:517.986667pt;}
.y24{bottom:527.746667pt;}
.y9e{bottom:536.573333pt;}
.y6e{bottom:537.853333pt;}
.y23{bottom:543.293333pt;}
.y9d{bottom:556.253333pt;}
.y6d{bottom:557.693333pt;}
.y22{bottom:558.973333pt;}
.y21{bottom:574.653333pt;}
.y9c{bottom:576.093333pt;}
.y6c{bottom:577.373333pt;}
.y20{bottom:590.333333pt;}
.y9b{bottom:595.933333pt;}
.y6b{bottom:597.213333pt;}
.y1f{bottom:605.853333pt;}
.y9a{bottom:615.613333pt;}
.y6a{bottom:616.893333pt;}
.y1e{bottom:621.533333pt;}
.y99{bottom:635.453333pt;}
.y69{bottom:636.733333pt;}
.y1d{bottom:637.213333pt;}
.y1c{bottom:652.733333pt;}
.y98{bottom:655.133333pt;}
.y68{bottom:656.413333pt;}
.y1b{bottom:668.413333pt;}
.y97{bottom:674.973333pt;}
.y67{bottom:676.253333pt;}
.y1a{bottom:684.093333pt;}
.y96{bottom:694.653333pt;}
.y66{bottom:696.093333pt;}
.y19{bottom:699.613333pt;}
.y95{bottom:714.493333pt;}
.y18{bottom:715.293333pt;}
.y65{bottom:715.773333pt;}
.y17{bottom:730.973333pt;}
.y94{bottom:734.333333pt;}
.y64{bottom:735.613333pt;}
.y16{bottom:746.653333pt;}
.y93{bottom:754.013333pt;}
.y63{bottom:755.293333pt;}
.y15{bottom:762.173333pt;}
.y92{bottom:773.893333pt;}
.y62{bottom:775.173333pt;}
.y14{bottom:777.893333pt;}
.y91{bottom:793.573333pt;}
.y13{bottom:793.733333pt;}
.y61{bottom:795.013333pt;}
.y12{bottom:810.373333pt;}
.y90{bottom:813.413333pt;}
.y60{bottom:814.693333pt;}
.y11{bottom:824.933333pt;}
.y8f{bottom:833.253333pt;}
.y5f{bottom:834.533333pt;}
.y10{bottom:842.213333pt;}
.y8e{bottom:852.933333pt;}
.y5e{bottom:854.213333pt;}
.yf{bottom:859.333333pt;}
.y8d{bottom:872.773333pt;}
.y5d{bottom:874.053333pt;}
.ye{bottom:876.613333pt;}
.y8c{bottom:892.453333pt;}
.yd{bottom:893.733333pt;}
.yc{bottom:910.213333pt;}
.y8b{bottom:912.293333pt;}
.y5c{bottom:913.573333pt;}
.yb{bottom:924.133333pt;}
.y8a{bottom:932.133333pt;}
.y5b{bottom:933.413333pt;}
.ya{bottom:944.453333pt;}
.y89{bottom:951.813333pt;}
.y5a{bottom:953.093333pt;}
.y9{bottom:964.773333pt;}
.y88{bottom:971.653333pt;}
.y59{bottom:972.933333pt;}
.y8{bottom:985.093333pt;}
.y87{bottom:991.333333pt;}
.y58{bottom:992.613333pt;}
.y5{bottom:1007.333333pt;}
.y86{bottom:1011.173333pt;}
.y57{bottom:1012.480000pt;}
.y4{bottom:1020.000000pt;}
.y85{bottom:1028.800000pt;}
.y3{bottom:1033.760000pt;}
.y56{bottom:1047.200000pt;}
.y2{bottom:1047.520000pt;}
.y1{bottom:1061.280000pt;}
.y55{bottom:1064.480000pt;}
.ha{height:27.093750pt;}
.h3{height:33.867188pt;}
.h4{height:36.305625pt;}
.h2{height:40.640625pt;}
.h9{height:44.687500pt;}
.h7{height:44.975625pt;}
.h6{height:49.852500pt;}
.hb{height:52.284375pt;}
.h5{height:58.522500pt;}
.h8{height:309.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:184.986667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:83.994667pt;}
.x1{left:96.031988pt;}
.x2{left:100.031988pt;}
.x5{left:114.911988pt;}
.x6{left:122.591988pt;}
.xd{left:124.511988pt;}
.xe{left:133.786655pt;}
.x3{left:143.386655pt;}
.xa{left:298.146655pt;}
.x9{left:300.386655pt;}
.x8{left:342.306655pt;}
.x7{left:367.586655pt;}
.x4{left:396.866655pt;}
.xc{left:485.693322pt;}
}




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