
    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_b5ac7161292bd64f28ef6e32.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7232aac8de06a526074b1152.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.120605;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_7cc0c16c9366ce351573f739.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_f06125199d9100f042aa607f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ba0f603f7733e58a1ea6eb5f.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_11ecb3f5c38f4c69eda365e8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971680;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_f8970588ea348b214ee2bdfe.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.050293;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_992867915dfc3cb852427c01.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f02395d7a16b2b87c50db0e6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.017280px;}
.ls6{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.256200px;}
.ls4{letter-spacing:0.720000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-15.226440px;}
.ws1{word-spacing:0.000000px;}
._1c{margin-left:-5.431680px;}
._10{margin-left:-4.248000px;}
._c{margin-left:-3.168000px;}
._d{margin-left:-2.060160px;}
._0{margin-left:-1.059840px;}
._1{width:1.536000px;}
._2{width:3.288000px;}
._4{width:4.875840px;}
._a{width:5.924160px;}
._3{width:6.984000px;}
._9{width:8.568000px;}
._b{width:10.296000px;}
._14{width:11.344320px;}
._8{width:12.363840px;}
._7{width:13.824000px;}
._f{width:15.027840px;}
._13{width:16.632000px;}
._6{width:19.131840px;}
._5{width:20.304000px;}
._e{width:21.960000px;}
._17{width:22.968000px;}
._1b{width:24.068160px;}
._18{width:25.200000px;}
._12{width:27.755040px;}
._11{width:28.820160px;}
._19{width:29.983680px;}
._1a{width:31.288320px;}
._16{width:33.003840px;}
._15{width:34.892160px;}
._22{width:37.944000px;}
._1e{width:39.343680px;}
._1d{width:40.412160px;}
._24{width:43.200000px;}
._21{width:47.592000px;}
._1f{width:166.299840px;}
._26{width:186.963840px;}
._25{width:188.064000px;}
._20{width:255.024000px;}
._23{width:320.112000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:75.893905px;}
.fs4{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:58.320000px;}
.y1b{bottom:78.516000px;}
.ye5{bottom:111.996000px;}
.y49{bottom:112.716000px;}
.yf2{bottom:124.596000px;}
.yaa{bottom:126.036000px;}
.yd7{bottom:129.636000px;}
.yad{bottom:135.036000px;}
.y53{bottom:136.476000px;}
.y80{bottom:138.996000px;}
.yc8{bottom:140.076000px;}
.y103{bottom:147.096000px;}
.yb7{bottom:148.536000px;}
.ye4{bottom:153.390000px;}
.y48{bottom:154.110000px;}
.y16{bottom:156.990000px;}
.y31{bottom:159.330000px;}
.yf1{bottom:165.990000px;}
.ya9{bottom:167.430000px;}
.yd6{bottom:171.030000px;}
.y97{bottom:171.930000px;}
.yac{bottom:176.430000px;}
.y52{bottom:177.870000px;}
.y7f{bottom:180.390000px;}
.yc7{bottom:181.470000px;}
.y102{bottom:188.490000px;}
.yb6{bottom:189.930000px;}
.ye3{bottom:194.790000px;}
.y47{bottom:195.510000px;}
.yf0{bottom:207.390000px;}
.ya8{bottom:208.830000px;}
.yd5{bottom:212.430000px;}
.y30{bottom:212.790000px;}
.y96{bottom:213.330000px;}
.y15{bottom:214.950000px;}
.yab{bottom:217.830000px;}
.y51{bottom:219.270000px;}
.y7e{bottom:221.790000px;}
.yc6{bottom:222.870000px;}
.y101{bottom:229.890000px;}
.yb5{bottom:231.330000px;}
.ye2{bottom:236.190000px;}
.y46{bottom:236.910000px;}
.yef{bottom:248.790000px;}
.ya7{bottom:250.230000px;}
.yd4{bottom:253.650000px;}
.y95{bottom:254.730000px;}
.y68{bottom:259.230000px;}
.y50{bottom:260.670000px;}
.y7d{bottom:263.190000px;}
.yc5{bottom:264.270000px;}
.y2f{bottom:266.070000px;}
.y100{bottom:271.290000px;}
.y14{bottom:272.730000px;}
.ye1{bottom:277.590000px;}
.y45{bottom:278.310000px;}
.yee{bottom:290.190000px;}
.ya6{bottom:291.630000px;}
.yd3{bottom:295.050000px;}
.y94{bottom:296.130000px;}
.y67{bottom:300.630000px;}
.y4f{bottom:302.070000px;}
.y7c{bottom:304.590000px;}
.yc4{bottom:305.670000px;}
.yff{bottom:312.690000px;}
.yb4{bottom:314.130000px;}
.ye0{bottom:318.990000px;}
.y2e{bottom:319.530000px;}
.y44{bottom:319.710000px;}
.y13{bottom:330.735000px;}
.yed{bottom:331.635000px;}
.y93{bottom:337.575000px;}
.y66{bottom:342.075000px;}
.y4e{bottom:343.515000px;}
.yd2{bottom:344.415000px;}
.ya5{bottom:344.955000px;}
.y7b{bottom:346.035000px;}
.yc3{bottom:347.115000px;}
.yfe{bottom:354.135000px;}
.yb3{bottom:355.575000px;}
.ydf{bottom:360.435000px;}
.y43{bottom:361.155000px;}
.y2d{bottom:372.855000px;}
.yec{bottom:373.035000px;}
.y92{bottom:378.975000px;}
.y65{bottom:383.475000px;}
.y4d{bottom:384.915000px;}
.ya4{bottom:386.355000px;}
.y7a{bottom:387.435000px;}
.yc2{bottom:388.515000px;}
.y12{bottom:388.695000px;}
.yfd{bottom:395.535000px;}
.yb2{bottom:396.975000px;}
.yde{bottom:401.835000px;}
.y42{bottom:402.555000px;}
.yd1{bottom:414.435000px;}
.y91{bottom:420.375000px;}
.y64{bottom:424.875000px;}
.y2c{bottom:426.315000px;}
.ya3{bottom:427.755000px;}
.y79{bottom:428.835000px;}
.yc1{bottom:429.915000px;}
.yfc{bottom:436.935000px;}
.yb1{bottom:438.375000px;}
.ydd{bottom:443.235000px;}
.y41{bottom:443.955000px;}
.y11{bottom:446.475000px;}
.yd0{bottom:455.835000px;}
.y90{bottom:461.775000px;}
.y63{bottom:466.275000px;}
.y2b{bottom:467.715000px;}
.ya2{bottom:469.155000px;}
.y78{bottom:470.235000px;}
.yc0{bottom:471.315000px;}
.yfb{bottom:478.335000px;}
.yb0{bottom:479.775000px;}
.ydc{bottom:484.635000px;}
.y40{bottom:485.355000px;}
.ycf{bottom:497.235000px;}
.y10{bottom:504.435000px;}
.y62{bottom:507.675000px;}
.y2a{bottom:509.115000px;}
.y8f{bottom:511.095000px;}
.y77{bottom:511.635000px;}
.ybf{bottom:512.715000px;}
.yfa{bottom:519.735000px;}
.yaf{bottom:521.175000px;}
.ya1{bottom:523.695000px;}
.ydb{bottom:526.035000px;}
.y3f{bottom:526.755000px;}
.yce{bottom:538.635000px;}
.y61{bottom:549.075000px;}
.y29{bottom:550.515000px;}
.yf3{bottom:551.595000px;}
.y76{bottom:553.035000px;}
.ybe{bottom:554.115000px;}
.yf9{bottom:561.135000px;}
.yf{bottom:562.215000px;}
.yae{bottom:562.575000px;}
.yda{bottom:567.435000px;}
.y3e{bottom:568.155000px;}
.ycd{bottom:580.035000px;}
.y8e{bottom:581.115000px;}
.y60{bottom:590.475000px;}
.y28{bottom:591.915000px;}
.y75{bottom:594.435000px;}
.ybd{bottom:595.545000px;}
.yf8{bottom:602.565000px;}
.ya0{bottom:604.005000px;}
.y3d{bottom:609.585000px;}
.yd9{bottom:616.965000px;}
.ye{bottom:620.205000px;}
.ycc{bottom:621.465000px;}
.y8d{bottom:622.545000px;}
.y5f{bottom:631.905000px;}
.y27{bottom:633.345000px;}
.y74{bottom:635.865000px;}
.ybc{bottom:636.945000px;}
.yf7{bottom:643.965000px;}
.yd8{bottom:644.865000px;}
.y9f{bottom:645.405000px;}
.y3c{bottom:650.985000px;}
.ycb{bottom:662.865000px;}
.y8c{bottom:663.945000px;}
.y5e{bottom:673.305000px;}
.y26{bottom:674.745000px;}
.y73{bottom:677.265000px;}
.yd{bottom:677.985000px;}
.ybb{bottom:678.345000px;}
.y9e{bottom:686.805000px;}
.yf6{bottom:689.325000px;}
.y3b{bottom:692.385000px;}
.yca{bottom:704.265000px;}
.y8b{bottom:705.345000px;}
.y5d{bottom:714.705000px;}
.y25{bottom:716.145000px;}
.y72{bottom:718.665000px;}
.yba{bottom:719.745000px;}
.y9d{bottom:728.205000px;}
.y3a{bottom:733.785000px;}
.yc{bottom:735.945000px;}
.yf5{bottom:741.165000px;}
.yeb{bottom:745.665000px;}
.y8a{bottom:746.745000px;}
.y5c{bottom:756.105000px;}
.y24{bottom:757.545000px;}
.yc9{bottom:758.625000px;}
.y71{bottom:760.065000px;}
.yb9{bottom:761.145000px;}
.y9c{bottom:769.605000px;}
.y39{bottom:775.185000px;}
.yb{bottom:777.345000px;}
.yea{bottom:787.065000px;}
.y89{bottom:788.145000px;}
.yf4{bottom:789.945000px;}
.y5b{bottom:797.505000px;}
.y23{bottom:798.945000px;}
.y70{bottom:801.465000px;}
.yb8{bottom:810.465000px;}
.y9b{bottom:811.005000px;}
.y38{bottom:816.585000px;}
.ya{bottom:818.745000px;}
.ye9{bottom:828.465000px;}
.y88{bottom:829.545000px;}
.y5a{bottom:838.905000px;}
.y22{bottom:840.345000px;}
.y6f{bottom:842.865000px;}
.y9a{bottom:852.405000px;}
.y37{bottom:857.985000px;}
.y9{bottom:860.145000px;}
.ye8{bottom:869.910000px;}
.y87{bottom:870.990000px;}
.y59{bottom:880.350000px;}
.y21{bottom:881.790000px;}
.y6e{bottom:884.310000px;}
.y99{bottom:893.850000px;}
.y36{bottom:899.430000px;}
.ye7{bottom:911.310000px;}
.y86{bottom:912.390000px;}
.y8{bottom:918.150000px;}
.y58{bottom:921.750000px;}
.y20{bottom:923.190000px;}
.y6d{bottom:925.710000px;}
.y98{bottom:935.250000px;}
.y35{bottom:940.830000px;}
.y85{bottom:953.790000px;}
.y57{bottom:963.150000px;}
.y1f{bottom:964.590000px;}
.ye6{bottom:965.490000px;}
.y6c{bottom:967.110000px;}
.y7{bottom:976.110000px;}
.y4c{bottom:976.650000px;}
.y34{bottom:982.230000px;}
.y84{bottom:995.190000px;}
.y56{bottom:1004.550000px;}
.y1e{bottom:1005.990000px;}
.y6b{bottom:1008.510000px;}
.y6{bottom:1017.510000px;}
.y4b{bottom:1018.050000px;}
.y33{bottom:1025.610000px;}
.y83{bottom:1036.410000px;}
.y55{bottom:1045.950000px;}
.y1d{bottom:1047.390000px;}
.y6a{bottom:1049.910000px;}
.y4a{bottom:1059.270000px;}
.y32{bottom:1072.410000px;}
.y5{bottom:1075.290000px;}
.y82{bottom:1077.810000px;}
.y54{bottom:1087.350000px;}
.y69{bottom:1099.230000px;}
.y1c{bottom:1100.670000px;}
.y1a{bottom:1122.450000px;}
.y81{bottom:1127.310000px;}
.y4{bottom:1128.750000px;}
.y19{bottom:1144.440000px;}
.y2{bottom:1150.380000px;}
.y18{bottom:1167.120000px;}
.y17{bottom:1190.700000px;}
.y1{bottom:1192.140000px;}
.h6{height:55.141665px;}
.h8{height:60.082031px;}
.h7{height:65.884219px;}
.h4{height:67.824844px;}
.hb{height:70.628906px;}
.h5{height:70.664062px;}
.h3{height:71.613281px;}
.h2{height:72.562500px;}
.ha{height:78.367500px;}
.h9{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:108.035987px;}
.xf{left:129.275987px;}
.x5{left:136.835987px;}
.xd{left:162.029987px;}
.xa{left:191.369987px;}
.xe{left:194.789987px;}
.x3{left:293.294987px;}
.x9{left:305.354987px;}
.x6{left:350.534987px;}
.x8{left:352.334987px;}
.x1{left:393.734987px;}
.xc{left:412.994987px;}
.x4{left:446.474987px;}
.x10{left:760.109987px;}
.xb{left:768.389987px;}
.x2{left:785.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.015360pt;}
.ls6{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.227733pt;}
.ls4{letter-spacing:0.640000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-13.534613pt;}
.ws1{word-spacing:0.000000pt;}
._1c{margin-left:-4.828160pt;}
._10{margin-left:-3.776000pt;}
._c{margin-left:-2.816000pt;}
._d{margin-left:-1.831253pt;}
._0{margin-left:-0.942080pt;}
._1{width:1.365333pt;}
._2{width:2.922667pt;}
._4{width:4.334080pt;}
._a{width:5.265920pt;}
._3{width:6.208000pt;}
._9{width:7.616000pt;}
._b{width:9.152000pt;}
._14{width:10.083840pt;}
._8{width:10.990080pt;}
._7{width:12.288000pt;}
._f{width:13.358080pt;}
._13{width:14.784000pt;}
._6{width:17.006080pt;}
._5{width:18.048000pt;}
._e{width:19.520000pt;}
._17{width:20.416000pt;}
._1b{width:21.393920pt;}
._18{width:22.400000pt;}
._12{width:24.671147pt;}
._11{width:25.617920pt;}
._19{width:26.652160pt;}
._1a{width:27.811840pt;}
._16{width:29.336747pt;}
._15{width:31.015253pt;}
._22{width:33.728000pt;}
._1e{width:34.972160pt;}
._1d{width:35.921920pt;}
._24{width:38.400000pt;}
._21{width:42.304000pt;}
._1f{width:147.822080pt;}
._26{width:166.190080pt;}
._25{width:167.168000pt;}
._20{width:226.688000pt;}
._23{width:284.544000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:67.461249pt;}
.fs4{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:51.840000pt;}
.y1b{bottom:69.792000pt;}
.ye5{bottom:99.552000pt;}
.y49{bottom:100.192000pt;}
.yf2{bottom:110.752000pt;}
.yaa{bottom:112.032000pt;}
.yd7{bottom:115.232000pt;}
.yad{bottom:120.032000pt;}
.y53{bottom:121.312000pt;}
.y80{bottom:123.552000pt;}
.yc8{bottom:124.512000pt;}
.y103{bottom:130.752000pt;}
.yb7{bottom:132.032000pt;}
.ye4{bottom:136.346667pt;}
.y48{bottom:136.986667pt;}
.y16{bottom:139.546667pt;}
.y31{bottom:141.626667pt;}
.yf1{bottom:147.546667pt;}
.ya9{bottom:148.826667pt;}
.yd6{bottom:152.026667pt;}
.y97{bottom:152.826667pt;}
.yac{bottom:156.826667pt;}
.y52{bottom:158.106667pt;}
.y7f{bottom:160.346667pt;}
.yc7{bottom:161.306667pt;}
.y102{bottom:167.546667pt;}
.yb6{bottom:168.826667pt;}
.ye3{bottom:173.146667pt;}
.y47{bottom:173.786667pt;}
.yf0{bottom:184.346667pt;}
.ya8{bottom:185.626667pt;}
.yd5{bottom:188.826667pt;}
.y30{bottom:189.146667pt;}
.y96{bottom:189.626667pt;}
.y15{bottom:191.066667pt;}
.yab{bottom:193.626667pt;}
.y51{bottom:194.906667pt;}
.y7e{bottom:197.146667pt;}
.yc6{bottom:198.106667pt;}
.y101{bottom:204.346667pt;}
.yb5{bottom:205.626667pt;}
.ye2{bottom:209.946667pt;}
.y46{bottom:210.586667pt;}
.yef{bottom:221.146667pt;}
.ya7{bottom:222.426667pt;}
.yd4{bottom:225.466667pt;}
.y95{bottom:226.426667pt;}
.y68{bottom:230.426667pt;}
.y50{bottom:231.706667pt;}
.y7d{bottom:233.946667pt;}
.yc5{bottom:234.906667pt;}
.y2f{bottom:236.506667pt;}
.y100{bottom:241.146667pt;}
.y14{bottom:242.426667pt;}
.ye1{bottom:246.746667pt;}
.y45{bottom:247.386667pt;}
.yee{bottom:257.946667pt;}
.ya6{bottom:259.226667pt;}
.yd3{bottom:262.266667pt;}
.y94{bottom:263.226667pt;}
.y67{bottom:267.226667pt;}
.y4f{bottom:268.506667pt;}
.y7c{bottom:270.746667pt;}
.yc4{bottom:271.706667pt;}
.yff{bottom:277.946667pt;}
.yb4{bottom:279.226667pt;}
.ye0{bottom:283.546667pt;}
.y2e{bottom:284.026667pt;}
.y44{bottom:284.186667pt;}
.y13{bottom:293.986667pt;}
.yed{bottom:294.786667pt;}
.y93{bottom:300.066667pt;}
.y66{bottom:304.066667pt;}
.y4e{bottom:305.346667pt;}
.yd2{bottom:306.146667pt;}
.ya5{bottom:306.626667pt;}
.y7b{bottom:307.586667pt;}
.yc3{bottom:308.546667pt;}
.yfe{bottom:314.786667pt;}
.yb3{bottom:316.066667pt;}
.ydf{bottom:320.386667pt;}
.y43{bottom:321.026667pt;}
.y2d{bottom:331.426667pt;}
.yec{bottom:331.586667pt;}
.y92{bottom:336.866667pt;}
.y65{bottom:340.866667pt;}
.y4d{bottom:342.146667pt;}
.ya4{bottom:343.426667pt;}
.y7a{bottom:344.386667pt;}
.yc2{bottom:345.346667pt;}
.y12{bottom:345.506667pt;}
.yfd{bottom:351.586667pt;}
.yb2{bottom:352.866667pt;}
.yde{bottom:357.186667pt;}
.y42{bottom:357.826667pt;}
.yd1{bottom:368.386667pt;}
.y91{bottom:373.666667pt;}
.y64{bottom:377.666667pt;}
.y2c{bottom:378.946667pt;}
.ya3{bottom:380.226667pt;}
.y79{bottom:381.186667pt;}
.yc1{bottom:382.146667pt;}
.yfc{bottom:388.386667pt;}
.yb1{bottom:389.666667pt;}
.ydd{bottom:393.986667pt;}
.y41{bottom:394.626667pt;}
.y11{bottom:396.866667pt;}
.yd0{bottom:405.186667pt;}
.y90{bottom:410.466667pt;}
.y63{bottom:414.466667pt;}
.y2b{bottom:415.746667pt;}
.ya2{bottom:417.026667pt;}
.y78{bottom:417.986667pt;}
.yc0{bottom:418.946667pt;}
.yfb{bottom:425.186667pt;}
.yb0{bottom:426.466667pt;}
.ydc{bottom:430.786667pt;}
.y40{bottom:431.426667pt;}
.ycf{bottom:441.986667pt;}
.y10{bottom:448.386667pt;}
.y62{bottom:451.266667pt;}
.y2a{bottom:452.546667pt;}
.y8f{bottom:454.306667pt;}
.y77{bottom:454.786667pt;}
.ybf{bottom:455.746667pt;}
.yfa{bottom:461.986667pt;}
.yaf{bottom:463.266667pt;}
.ya1{bottom:465.506667pt;}
.ydb{bottom:467.586667pt;}
.y3f{bottom:468.226667pt;}
.yce{bottom:478.786667pt;}
.y61{bottom:488.066667pt;}
.y29{bottom:489.346667pt;}
.yf3{bottom:490.306667pt;}
.y76{bottom:491.586667pt;}
.ybe{bottom:492.546667pt;}
.yf9{bottom:498.786667pt;}
.yf{bottom:499.746667pt;}
.yae{bottom:500.066667pt;}
.yda{bottom:504.386667pt;}
.y3e{bottom:505.026667pt;}
.ycd{bottom:515.586667pt;}
.y8e{bottom:516.546667pt;}
.y60{bottom:524.866667pt;}
.y28{bottom:526.146667pt;}
.y75{bottom:528.386667pt;}
.ybd{bottom:529.373333pt;}
.yf8{bottom:535.613333pt;}
.ya0{bottom:536.893333pt;}
.y3d{bottom:541.853333pt;}
.yd9{bottom:548.413333pt;}
.ye{bottom:551.293333pt;}
.ycc{bottom:552.413333pt;}
.y8d{bottom:553.373333pt;}
.y5f{bottom:561.693333pt;}
.y27{bottom:562.973333pt;}
.y74{bottom:565.213333pt;}
.ybc{bottom:566.173333pt;}
.yf7{bottom:572.413333pt;}
.yd8{bottom:573.213333pt;}
.y9f{bottom:573.693333pt;}
.y3c{bottom:578.653333pt;}
.ycb{bottom:589.213333pt;}
.y8c{bottom:590.173333pt;}
.y5e{bottom:598.493333pt;}
.y26{bottom:599.773333pt;}
.y73{bottom:602.013333pt;}
.yd{bottom:602.653333pt;}
.ybb{bottom:602.973333pt;}
.y9e{bottom:610.493333pt;}
.yf6{bottom:612.733333pt;}
.y3b{bottom:615.453333pt;}
.yca{bottom:626.013333pt;}
.y8b{bottom:626.973333pt;}
.y5d{bottom:635.293333pt;}
.y25{bottom:636.573333pt;}
.y72{bottom:638.813333pt;}
.yba{bottom:639.773333pt;}
.y9d{bottom:647.293333pt;}
.y3a{bottom:652.253333pt;}
.yc{bottom:654.173333pt;}
.yf5{bottom:658.813333pt;}
.yeb{bottom:662.813333pt;}
.y8a{bottom:663.773333pt;}
.y5c{bottom:672.093333pt;}
.y24{bottom:673.373333pt;}
.yc9{bottom:674.333333pt;}
.y71{bottom:675.613333pt;}
.yb9{bottom:676.573333pt;}
.y9c{bottom:684.093333pt;}
.y39{bottom:689.053333pt;}
.yb{bottom:690.973333pt;}
.yea{bottom:699.613333pt;}
.y89{bottom:700.573333pt;}
.yf4{bottom:702.173333pt;}
.y5b{bottom:708.893333pt;}
.y23{bottom:710.173333pt;}
.y70{bottom:712.413333pt;}
.yb8{bottom:720.413333pt;}
.y9b{bottom:720.893333pt;}
.y38{bottom:725.853333pt;}
.ya{bottom:727.773333pt;}
.ye9{bottom:736.413333pt;}
.y88{bottom:737.373333pt;}
.y5a{bottom:745.693333pt;}
.y22{bottom:746.973333pt;}
.y6f{bottom:749.213333pt;}
.y9a{bottom:757.693333pt;}
.y37{bottom:762.653333pt;}
.y9{bottom:764.573333pt;}
.ye8{bottom:773.253333pt;}
.y87{bottom:774.213333pt;}
.y59{bottom:782.533333pt;}
.y21{bottom:783.813333pt;}
.y6e{bottom:786.053333pt;}
.y99{bottom:794.533333pt;}
.y36{bottom:799.493333pt;}
.ye7{bottom:810.053333pt;}
.y86{bottom:811.013333pt;}
.y8{bottom:816.133333pt;}
.y58{bottom:819.333333pt;}
.y20{bottom:820.613333pt;}
.y6d{bottom:822.853333pt;}
.y98{bottom:831.333333pt;}
.y35{bottom:836.293333pt;}
.y85{bottom:847.813333pt;}
.y57{bottom:856.133333pt;}
.y1f{bottom:857.413333pt;}
.ye6{bottom:858.213333pt;}
.y6c{bottom:859.653333pt;}
.y7{bottom:867.653333pt;}
.y4c{bottom:868.133333pt;}
.y34{bottom:873.093333pt;}
.y84{bottom:884.613333pt;}
.y56{bottom:892.933333pt;}
.y1e{bottom:894.213333pt;}
.y6b{bottom:896.453333pt;}
.y6{bottom:904.453333pt;}
.y4b{bottom:904.933333pt;}
.y33{bottom:911.653333pt;}
.y83{bottom:921.253333pt;}
.y55{bottom:929.733333pt;}
.y1d{bottom:931.013333pt;}
.y6a{bottom:933.253333pt;}
.y4a{bottom:941.573333pt;}
.y32{bottom:953.253333pt;}
.y5{bottom:955.813333pt;}
.y82{bottom:958.053333pt;}
.y54{bottom:966.533333pt;}
.y69{bottom:977.093333pt;}
.y1c{bottom:978.373333pt;}
.y1a{bottom:997.733333pt;}
.y81{bottom:1002.053333pt;}
.y4{bottom:1003.333333pt;}
.y19{bottom:1017.280000pt;}
.y2{bottom:1022.560000pt;}
.y18{bottom:1037.440000pt;}
.y17{bottom:1058.400000pt;}
.y1{bottom:1059.680000pt;}
.h6{height:49.014814pt;}
.h8{height:53.406250pt;}
.h7{height:58.563750pt;}
.h4{height:60.288750pt;}
.hb{height:62.781250pt;}
.h5{height:62.812500pt;}
.h3{height:63.656250pt;}
.h2{height:64.500000pt;}
.ha{height:69.660000pt;}
.h9{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:96.031988pt;}
.xf{left:114.911988pt;}
.x5{left:121.631988pt;}
.xd{left:144.026655pt;}
.xa{left:170.106655pt;}
.xe{left:173.146655pt;}
.x3{left:260.706655pt;}
.x9{left:271.426655pt;}
.x6{left:311.586655pt;}
.x8{left:313.186655pt;}
.x1{left:349.986655pt;}
.xc{left:367.106655pt;}
.x4{left:396.866655pt;}
.x10{left:675.653322pt;}
.xb{left:683.013322pt;}
.x2{left:697.893322pt;}
}




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