
    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_cce02756410b61b1f41faef4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_33b396c63b45ff6dfea2c5cc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.776367;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.750000;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_17614a60c988513a2413da11.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e6960ddfe5a7266f786448a0.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_08c86bed9fa4fc36787efc04.woff2')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_23c7269baea28c491a1d06ff.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_8da8afc0df7ef4d9abb0e962.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.075195;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_a3ef60d435ce8f258d452560.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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_bdab7bec37cdfc00e86c9378.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.697266;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);}
.v2{vertical-align:-75.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsb{letter-spacing:-0.768000px;}
.ls4{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.166800px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.146880px;}
.ls5{letter-spacing:0.262200px;}
.ls6{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.720000px;}
.ls8{letter-spacing:16.865280px;}
.lsa{letter-spacing:241.418880px;}
.ls9{letter-spacing:252.720000px;}
.ls1{letter-spacing:1120.596000px;}
.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;}
}
.ws1{word-spacing:-20.733120px;}
.ws0{word-spacing:-20.566320px;}
.ws5{word-spacing:-18.000000px;}
.ws3{word-spacing:-16.560000px;}
.ws6{word-spacing:-15.792000px;}
.ws2{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
._2b{margin-left:-124.390080px;}
._29{margin-left:-123.120000px;}
._2e{margin-left:-58.320000px;}
._2c{margin-left:-53.280000px;}
._28{margin-left:-46.667040px;}
._2d{margin-left:-33.693120px;}
._2a{margin-left:-17.288640px;}
._0{margin-left:-1.192320px;}
._1{width:1.724400px;}
._6{width:2.987040px;}
._5{width:4.371840px;}
._7{width:5.829120px;}
._2{width:6.888960px;}
._4{width:8.677440px;}
._3{width:9.869760px;}
._f{width:10.872000px;}
._8{width:12.254400px;}
._c{width:13.312080px;}
._d{width:15.168960px;}
._12{width:16.294080px;}
._27{width:17.951040px;}
._9{width:19.474560px;}
._e{width:20.808000px;}
._13{width:22.032000px;}
._10{width:23.184000px;}
._11{width:24.264000px;}
._17{width:25.352160px;}
._14{width:26.496000px;}
._19{width:28.008000px;}
._15{width:29.160000px;}
._16{width:30.207600px;}
._a{width:31.464000px;}
._b{width:32.722560px;}
._18{width:34.200000px;}
._1a{width:35.352000px;}
._1d{width:36.507600px;}
._21{width:37.615920px;}
._26{width:39.214080px;}
._24{width:41.832000px;}
._25{width:42.843600px;}
._22{width:44.280000px;}
._23{width:45.936000px;}
._1b{width:51.192000px;}
._1c{width:52.272000px;}
._34{width:58.754880px;}
._33{width:59.814720px;}
._1e{width:61.128000px;}
._1f{width:64.728000px;}
._20{width:66.024000px;}
._32{width:89.953920px;}
._31{width:91.278720px;}
._2f{width:108.236160px;}
._30{width:109.296000px;}
._35{width:200.640960px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yb{bottom:3.240000px;}
.y2{bottom:3.420000px;}
.y3{bottom:23.220000px;}
.ya{bottom:43.200000px;}
.y9{bottom:63.000000px;}
.y8{bottom:82.980000px;}
.y7{bottom:102.960000px;}
.y6{bottom:122.760000px;}
.yad{bottom:127.620000px;}
.ydd{bottom:130.860000px;}
.y6e{bottom:133.740000px;}
.y7d{bottom:145.620000px;}
.yac{bottom:148.320000px;}
.ydc{bottom:149.760000px;}
.y3b{bottom:150.120000px;}
.y6d{bottom:154.440000px;}
.y7c{bottom:164.520000px;}
.ydb{bottom:168.840000px;}
.yab{bottom:169.020000px;}
.y3a{bottom:170.820000px;}
.y6c{bottom:175.140000px;}
.y7b{bottom:183.600000px;}
.yda{bottom:187.740000px;}
.yaa{bottom:189.720000px;}
.y39{bottom:191.520000px;}
.y6b{bottom:195.870000px;}
.y7a{bottom:202.530000px;}
.yd9{bottom:206.850000px;}
.ya9{bottom:210.450000px;}
.y38{bottom:212.250000px;}
.y6a{bottom:216.570000px;}
.y79{bottom:221.610000px;}
.yd8{bottom:225.750000px;}
.ya8{bottom:231.150000px;}
.y37{bottom:232.950000px;}
.y69{bottom:237.270000px;}
.y78{bottom:240.510000px;}
.yd7{bottom:244.830000px;}
.ya7{bottom:251.850000px;}
.y36{bottom:253.650000px;}
.y68{bottom:257.970000px;}
.y77{bottom:259.770000px;}
.yd6{bottom:263.730000px;}
.ya6{bottom:272.910000px;}
.y35{bottom:274.350000px;}
.y67{bottom:278.670000px;}
.y76{bottom:280.470000px;}
.yd5{bottom:282.630000px;}
.ya5{bottom:290.910000px;}
.y34{bottom:295.050000px;}
.y66{bottom:299.370000px;}
.y75{bottom:301.170000px;}
.yd4{bottom:301.710000px;}
.ya4{bottom:309.810000px;}
.y33{bottom:315.750000px;}
.y65{bottom:320.070000px;}
.yd3{bottom:320.610000px;}
.y74{bottom:321.870000px;}
.ya3{bottom:328.710000px;}
.y32{bottom:336.090000px;}
.yd2{bottom:339.690000px;}
.y64{bottom:340.770000px;}
.y73{bottom:342.570000px;}
.ya2{bottom:347.790000px;}
.y31{bottom:355.170000px;}
.yd1{bottom:358.590000px;}
.y63{bottom:361.470000px;}
.y72{bottom:363.270000px;}
.ya1{bottom:366.690000px;}
.y30{bottom:374.070000px;}
.yd0{bottom:377.490000px;}
.y62{bottom:382.170000px;}
.y71{bottom:383.970000px;}
.ya0{bottom:385.770000px;}
.y2f{bottom:393.150000px;}
.ycf{bottom:396.570000px;}
.y61{bottom:402.870000px;}
.y70{bottom:404.670000px;}
.y2e{bottom:412.050000px;}
.yce{bottom:415.470000px;}
.y60{bottom:423.570000px;}
.y6f{bottom:425.010000px;}
.y2d{bottom:430.950000px;}
.ycd{bottom:434.595000px;}
.y9f{bottom:442.695000px;}
.y5f{bottom:444.315000px;}
.y2c{bottom:450.075000px;}
.ycc{bottom:453.495000px;}
.y9e{bottom:461.595000px;}
.y5e{bottom:465.015000px;}
.y2b{bottom:468.975000px;}
.ycb{bottom:472.395000px;}
.y9d{bottom:480.675000px;}
.y5d{bottom:485.715000px;}
.y2a{bottom:488.055000px;}
.yca{bottom:491.475000px;}
.y9c{bottom:499.575000px;}
.y5c{bottom:506.415000px;}
.y29{bottom:506.955000px;}
.yc9{bottom:510.375000px;}
.y9b{bottom:518.475000px;}
.y28{bottom:525.855000px;}
.y5b{bottom:527.115000px;}
.yc8{bottom:529.455000px;}
.y9a{bottom:537.555000px;}
.y27{bottom:544.935000px;}
.y5a{bottom:547.815000px;}
.yc7{bottom:548.355000px;}
.y99{bottom:556.455000px;}
.y26{bottom:563.835000px;}
.yc6{bottom:567.255000px;}
.y59{bottom:568.515000px;}
.y98{bottom:575.535000px;}
.y25{bottom:582.915000px;}
.yc5{bottom:586.335000px;}
.y58{bottom:589.215000px;}
.y97{bottom:594.435000px;}
.yc4{bottom:605.235000px;}
.y57{bottom:609.915000px;}
.y96{bottom:613.335000px;}
.y24{bottom:620.715000px;}
.yc3{bottom:624.315000px;}
.y56{bottom:630.615000px;}
.y95{bottom:632.415000px;}
.y23{bottom:639.795000px;}
.yc2{bottom:643.215000px;}
.y55{bottom:651.315000px;}
.y22{bottom:658.695000px;}
.yc1{bottom:662.115000px;}
.y94{bottom:670.395000px;}
.y54{bottom:672.015000px;}
.y21{bottom:677.805000px;}
.yc0{bottom:681.225000px;}
.y93{bottom:689.325000px;}
.y53{bottom:692.745000px;}
.y20{bottom:696.705000px;}
.ybf{bottom:700.125000px;}
.y92{bottom:708.405000px;}
.y52{bottom:713.445000px;}
.y1f{bottom:715.785000px;}
.ybe{bottom:719.205000px;}
.y91{bottom:727.305000px;}
.y51{bottom:734.145000px;}
.y1e{bottom:734.685000px;}
.ybd{bottom:738.105000px;}
.y90{bottom:746.205000px;}
.y1d{bottom:753.585000px;}
.y50{bottom:754.845000px;}
.ybc{bottom:757.185000px;}
.y8f{bottom:765.285000px;}
.y1c{bottom:772.665000px;}
.y4f{bottom:775.545000px;}
.ybb{bottom:776.085000px;}
.y8e{bottom:784.185000px;}
.y1b{bottom:791.565000px;}
.yba{bottom:794.985000px;}
.y4e{bottom:796.245000px;}
.y8d{bottom:803.265000px;}
.y1a{bottom:810.645000px;}
.yb9{bottom:814.065000px;}
.y4d{bottom:816.945000px;}
.y8c{bottom:822.165000px;}
.y19{bottom:829.545000px;}
.yb8{bottom:832.965000px;}
.y4c{bottom:837.645000px;}
.y8b{bottom:841.065000px;}
.y18{bottom:848.445000px;}
.yb7{bottom:852.045000px;}
.y4b{bottom:858.345000px;}
.y8a{bottom:860.145000px;}
.y17{bottom:867.525000px;}
.yb6{bottom:870.945000px;}
.y4a{bottom:879.045000px;}
.y16{bottom:886.425000px;}
.yb5{bottom:889.845000px;}
.y89{bottom:898.125000px;}
.y49{bottom:899.745000px;}
.y15{bottom:905.505000px;}
.yb4{bottom:908.925000px;}
.y88{bottom:917.070000px;}
.y48{bottom:920.490000px;}
.y14{bottom:924.450000px;}
.yb3{bottom:927.870000px;}
.y87{bottom:935.970000px;}
.y47{bottom:941.190000px;}
.y13{bottom:943.350000px;}
.yb2{bottom:946.950000px;}
.y86{bottom:955.050000px;}
.y46{bottom:961.890000px;}
.y12{bottom:962.430000px;}
.yb1{bottom:965.850000px;}
.y85{bottom:973.950000px;}
.y11{bottom:981.330000px;}
.y45{bottom:982.590000px;}
.yb0{bottom:984.750000px;}
.y84{bottom:993.030000px;}
.y10{bottom:1000.410000px;}
.y44{bottom:1003.290000px;}
.yaf{bottom:1004.010000px;}
.y83{bottom:1011.930000px;}
.ye0{bottom:1015.170000px;}
.yf{bottom:1019.310000px;}
.y43{bottom:1023.990000px;}
.yae{bottom:1024.170000px;}
.y82{bottom:1027.230000px;}
.ydf{bottom:1034.070000px;}
.ye{bottom:1039.110000px;}
.y42{bottom:1044.690000px;}
.yde{bottom:1052.970000px;}
.yd{bottom:1063.230000px;}
.y41{bottom:1065.390000px;}
.y81{bottom:1072.050000px;}
.y40{bottom:1086.090000px;}
.yc{bottom:1087.350000px;}
.y80{bottom:1090.950000px;}
.y3f{bottom:1106.790000px;}
.y7f{bottom:1110.030000px;}
.y5{bottom:1119.930000px;}
.y3e{bottom:1127.490000px;}
.y7e{bottom:1128.930000px;}
.y4{bottom:1147.110000px;}
.y1{bottom:1169.280000px;}
.y3d{bottom:1172.700000px;}
.y3c{bottom:1192.500000px;}
.h2{height:39.780000px;}
.hf{height:44.860781px;}
.h4{height:50.326875px;}
.h3{height:50.650312px;}
.h5{height:53.015625px;}
.he{height:56.925000px;}
.hc{height:61.875000px;}
.h9{height:64.978594px;}
.h8{height:65.010937px;}
.h7{height:66.757500px;}
.hd{height:68.084282px;}
.hb{height:70.664062px;}
.ha{height:72.562500px;}
.h6{height:84.898125px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:332.535000px;}
.w1{width:893.250000px;}
.w3{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:113.436000px;}
.x8{left:121.535987px;}
.xc{left:127.295987px;}
.xe{left:133.955987px;}
.x14{left:142.775987px;}
.xa{left:148.895987px;}
.xf{left:156.809987px;}
.x9{left:159.149987px;}
.x12{left:162.029987px;}
.x15{left:164.009987px;}
.x4{left:199.845000px;}
.x10{left:326.414987px;}
.xd{left:348.014987px;}
.x11{left:408.164987px;}
.x7{left:439.124987px;}
.x6{left:442.724987px;}
.x3{left:445.965000px;}
.xb{left:448.124987px;}
.x16{left:538.124987px;}
.x13{left:756.719987px;}
.x5{left:767.879987px;}
@media print{
.v2{vertical-align:-67.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsb{letter-spacing:-0.682667pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.148267pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.130560pt;}
.ls5{letter-spacing:0.233067pt;}
.ls6{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls8{letter-spacing:14.991360pt;}
.lsa{letter-spacing:214.594560pt;}
.ls9{letter-spacing:224.640000pt;}
.ls1{letter-spacing:996.085333pt;}
.ws1{word-spacing:-18.429440pt;}
.ws0{word-spacing:-18.281173pt;}
.ws5{word-spacing:-16.000000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.037333pt;}
.ws2{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
._2b{margin-left:-110.568960pt;}
._29{margin-left:-109.440000pt;}
._2e{margin-left:-51.840000pt;}
._2c{margin-left:-47.360000pt;}
._28{margin-left:-41.481813pt;}
._2d{margin-left:-29.949440pt;}
._2a{margin-left:-15.367680pt;}
._0{margin-left:-1.059840pt;}
._1{width:1.532800pt;}
._6{width:2.655147pt;}
._5{width:3.886080pt;}
._7{width:5.181440pt;}
._2{width:6.123520pt;}
._4{width:7.713280pt;}
._3{width:8.773120pt;}
._f{width:9.664000pt;}
._8{width:10.892800pt;}
._c{width:11.832960pt;}
._d{width:13.483520pt;}
._12{width:14.483627pt;}
._27{width:15.956480pt;}
._9{width:17.310720pt;}
._e{width:18.496000pt;}
._13{width:19.584000pt;}
._10{width:20.608000pt;}
._11{width:21.568000pt;}
._17{width:22.535253pt;}
._14{width:23.552000pt;}
._19{width:24.896000pt;}
._15{width:25.920000pt;}
._16{width:26.851200pt;}
._a{width:27.968000pt;}
._b{width:29.086720pt;}
._18{width:30.400000pt;}
._1a{width:31.424000pt;}
._1d{width:32.451200pt;}
._21{width:33.436373pt;}
._26{width:34.856960pt;}
._24{width:37.184000pt;}
._25{width:38.083200pt;}
._22{width:39.360000pt;}
._23{width:40.832000pt;}
._1b{width:45.504000pt;}
._1c{width:46.464000pt;}
._34{width:52.226560pt;}
._33{width:53.168640pt;}
._1e{width:54.336000pt;}
._1f{width:57.536000pt;}
._20{width:58.688000pt;}
._32{width:79.959040pt;}
._31{width:81.136640pt;}
._2f{width:96.209920pt;}
._30{width:97.152000pt;}
._35{width:178.347520pt;}
.fs3{font-size:37.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:2.880000pt;}
.y2{bottom:3.040000pt;}
.y3{bottom:20.640000pt;}
.ya{bottom:38.400000pt;}
.y9{bottom:56.000000pt;}
.y8{bottom:73.760000pt;}
.y7{bottom:91.520000pt;}
.y6{bottom:109.120000pt;}
.yad{bottom:113.440000pt;}
.ydd{bottom:116.320000pt;}
.y6e{bottom:118.880000pt;}
.y7d{bottom:129.440000pt;}
.yac{bottom:131.840000pt;}
.ydc{bottom:133.120000pt;}
.y3b{bottom:133.440000pt;}
.y6d{bottom:137.280000pt;}
.y7c{bottom:146.240000pt;}
.ydb{bottom:150.080000pt;}
.yab{bottom:150.240000pt;}
.y3a{bottom:151.840000pt;}
.y6c{bottom:155.680000pt;}
.y7b{bottom:163.200000pt;}
.yda{bottom:166.880000pt;}
.yaa{bottom:168.640000pt;}
.y39{bottom:170.240000pt;}
.y6b{bottom:174.106667pt;}
.y7a{bottom:180.026667pt;}
.yd9{bottom:183.866667pt;}
.ya9{bottom:187.066667pt;}
.y38{bottom:188.666667pt;}
.y6a{bottom:192.506667pt;}
.y79{bottom:196.986667pt;}
.yd8{bottom:200.666667pt;}
.ya8{bottom:205.466667pt;}
.y37{bottom:207.066667pt;}
.y69{bottom:210.906667pt;}
.y78{bottom:213.786667pt;}
.yd7{bottom:217.626667pt;}
.ya7{bottom:223.866667pt;}
.y36{bottom:225.466667pt;}
.y68{bottom:229.306667pt;}
.y77{bottom:230.906667pt;}
.yd6{bottom:234.426667pt;}
.ya6{bottom:242.586667pt;}
.y35{bottom:243.866667pt;}
.y67{bottom:247.706667pt;}
.y76{bottom:249.306667pt;}
.yd5{bottom:251.226667pt;}
.ya5{bottom:258.586667pt;}
.y34{bottom:262.266667pt;}
.y66{bottom:266.106667pt;}
.y75{bottom:267.706667pt;}
.yd4{bottom:268.186667pt;}
.ya4{bottom:275.386667pt;}
.y33{bottom:280.666667pt;}
.y65{bottom:284.506667pt;}
.yd3{bottom:284.986667pt;}
.y74{bottom:286.106667pt;}
.ya3{bottom:292.186667pt;}
.y32{bottom:298.746667pt;}
.yd2{bottom:301.946667pt;}
.y64{bottom:302.906667pt;}
.y73{bottom:304.506667pt;}
.ya2{bottom:309.146667pt;}
.y31{bottom:315.706667pt;}
.yd1{bottom:318.746667pt;}
.y63{bottom:321.306667pt;}
.y72{bottom:322.906667pt;}
.ya1{bottom:325.946667pt;}
.y30{bottom:332.506667pt;}
.yd0{bottom:335.546667pt;}
.y62{bottom:339.706667pt;}
.y71{bottom:341.306667pt;}
.ya0{bottom:342.906667pt;}
.y2f{bottom:349.466667pt;}
.ycf{bottom:352.506667pt;}
.y61{bottom:358.106667pt;}
.y70{bottom:359.706667pt;}
.y2e{bottom:366.266667pt;}
.yce{bottom:369.306667pt;}
.y60{bottom:376.506667pt;}
.y6f{bottom:377.786667pt;}
.y2d{bottom:383.066667pt;}
.ycd{bottom:386.306667pt;}
.y9f{bottom:393.506667pt;}
.y5f{bottom:394.946667pt;}
.y2c{bottom:400.066667pt;}
.ycc{bottom:403.106667pt;}
.y9e{bottom:410.306667pt;}
.y5e{bottom:413.346667pt;}
.y2b{bottom:416.866667pt;}
.ycb{bottom:419.906667pt;}
.y9d{bottom:427.266667pt;}
.y5d{bottom:431.746667pt;}
.y2a{bottom:433.826667pt;}
.yca{bottom:436.866667pt;}
.y9c{bottom:444.066667pt;}
.y5c{bottom:450.146667pt;}
.y29{bottom:450.626667pt;}
.yc9{bottom:453.666667pt;}
.y9b{bottom:460.866667pt;}
.y28{bottom:467.426667pt;}
.y5b{bottom:468.546667pt;}
.yc8{bottom:470.626667pt;}
.y9a{bottom:477.826667pt;}
.y27{bottom:484.386667pt;}
.y5a{bottom:486.946667pt;}
.yc7{bottom:487.426667pt;}
.y99{bottom:494.626667pt;}
.y26{bottom:501.186667pt;}
.yc6{bottom:504.226667pt;}
.y59{bottom:505.346667pt;}
.y98{bottom:511.586667pt;}
.y25{bottom:518.146667pt;}
.yc5{bottom:521.186667pt;}
.y58{bottom:523.746667pt;}
.y97{bottom:528.386667pt;}
.yc4{bottom:537.986667pt;}
.y57{bottom:542.146667pt;}
.y96{bottom:545.186667pt;}
.y24{bottom:551.746667pt;}
.yc3{bottom:554.946667pt;}
.y56{bottom:560.546667pt;}
.y95{bottom:562.146667pt;}
.y23{bottom:568.706667pt;}
.yc2{bottom:571.746667pt;}
.y55{bottom:578.946667pt;}
.y22{bottom:585.506667pt;}
.yc1{bottom:588.546667pt;}
.y94{bottom:595.906667pt;}
.y54{bottom:597.346667pt;}
.y21{bottom:602.493333pt;}
.yc0{bottom:605.533333pt;}
.y93{bottom:612.733333pt;}
.y53{bottom:615.773333pt;}
.y20{bottom:619.293333pt;}
.ybf{bottom:622.333333pt;}
.y92{bottom:629.693333pt;}
.y52{bottom:634.173333pt;}
.y1f{bottom:636.253333pt;}
.ybe{bottom:639.293333pt;}
.y91{bottom:646.493333pt;}
.y51{bottom:652.573333pt;}
.y1e{bottom:653.053333pt;}
.ybd{bottom:656.093333pt;}
.y90{bottom:663.293333pt;}
.y1d{bottom:669.853333pt;}
.y50{bottom:670.973333pt;}
.ybc{bottom:673.053333pt;}
.y8f{bottom:680.253333pt;}
.y1c{bottom:686.813333pt;}
.y4f{bottom:689.373333pt;}
.ybb{bottom:689.853333pt;}
.y8e{bottom:697.053333pt;}
.y1b{bottom:703.613333pt;}
.yba{bottom:706.653333pt;}
.y4e{bottom:707.773333pt;}
.y8d{bottom:714.013333pt;}
.y1a{bottom:720.573333pt;}
.yb9{bottom:723.613333pt;}
.y4d{bottom:726.173333pt;}
.y8c{bottom:730.813333pt;}
.y19{bottom:737.373333pt;}
.yb8{bottom:740.413333pt;}
.y4c{bottom:744.573333pt;}
.y8b{bottom:747.613333pt;}
.y18{bottom:754.173333pt;}
.yb7{bottom:757.373333pt;}
.y4b{bottom:762.973333pt;}
.y8a{bottom:764.573333pt;}
.y17{bottom:771.133333pt;}
.yb6{bottom:774.173333pt;}
.y4a{bottom:781.373333pt;}
.y16{bottom:787.933333pt;}
.yb5{bottom:790.973333pt;}
.y89{bottom:798.333333pt;}
.y49{bottom:799.773333pt;}
.y15{bottom:804.893333pt;}
.yb4{bottom:807.933333pt;}
.y88{bottom:815.173333pt;}
.y48{bottom:818.213333pt;}
.y14{bottom:821.733333pt;}
.yb3{bottom:824.773333pt;}
.y87{bottom:831.973333pt;}
.y47{bottom:836.613333pt;}
.y13{bottom:838.533333pt;}
.yb2{bottom:841.733333pt;}
.y86{bottom:848.933333pt;}
.y46{bottom:855.013333pt;}
.y12{bottom:855.493333pt;}
.yb1{bottom:858.533333pt;}
.y85{bottom:865.733333pt;}
.y11{bottom:872.293333pt;}
.y45{bottom:873.413333pt;}
.yb0{bottom:875.333333pt;}
.y84{bottom:882.693333pt;}
.y10{bottom:889.253333pt;}
.y44{bottom:891.813333pt;}
.yaf{bottom:892.453333pt;}
.y83{bottom:899.493333pt;}
.ye0{bottom:902.373333pt;}
.yf{bottom:906.053333pt;}
.y43{bottom:910.213333pt;}
.yae{bottom:910.373333pt;}
.y82{bottom:913.093333pt;}
.ydf{bottom:919.173333pt;}
.ye{bottom:923.653333pt;}
.y42{bottom:928.613333pt;}
.yde{bottom:935.973333pt;}
.yd{bottom:945.093333pt;}
.y41{bottom:947.013333pt;}
.y81{bottom:952.933333pt;}
.y40{bottom:965.413333pt;}
.yc{bottom:966.533333pt;}
.y80{bottom:969.733333pt;}
.y3f{bottom:983.813333pt;}
.y7f{bottom:986.693333pt;}
.y5{bottom:995.493333pt;}
.y3e{bottom:1002.213333pt;}
.y7e{bottom:1003.493333pt;}
.y4{bottom:1019.653333pt;}
.y1{bottom:1039.360000pt;}
.y3d{bottom:1042.400000pt;}
.y3c{bottom:1060.000000pt;}
.h2{height:35.360000pt;}
.hf{height:39.876250pt;}
.h4{height:44.735000pt;}
.h3{height:45.022500pt;}
.h5{height:47.125000pt;}
.he{height:50.600000pt;}
.hc{height:55.000000pt;}
.h9{height:57.758750pt;}
.h8{height:57.787500pt;}
.h7{height:59.340000pt;}
.hd{height:60.519362pt;}
.hb{height:62.812500pt;}
.ha{height:64.500000pt;}
.h6{height:75.465000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:295.586667pt;}
.w1{width:794.000000pt;}
.w3{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:100.832000pt;}
.x8{left:108.031988pt;}
.xc{left:113.151988pt;}
.xe{left:119.071988pt;}
.x14{left:126.911988pt;}
.xa{left:132.351988pt;}
.xf{left:139.386655pt;}
.x9{left:141.466655pt;}
.x12{left:144.026655pt;}
.x15{left:145.786655pt;}
.x4{left:177.640000pt;}
.x10{left:290.146655pt;}
.xd{left:309.346655pt;}
.x11{left:362.813321pt;}
.x7{left:390.333321pt;}
.x6{left:393.533321pt;}
.x3{left:396.413333pt;}
.xb{left:398.333321pt;}
.x16{left:478.333322pt;}
.x13{left:672.639988pt;}
.x5{left:682.559988pt;}
}




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