
    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_a9a6b54a5a0d5b7560e56dbb.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1e5b7b30d69262fa2fe14ecc.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6049f854bf17537f1d754b04.woff')format("woff");}.ff3{font-family:ff3;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_60ce2702953c66dc4a0a7f5e.woff')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_0042853e2459a86780f40ecf.woff')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_492ec963748743ae55ac176b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-0.720000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.576000px;}
.ls2{letter-spacing:23.904000px;}
.ls3{letter-spacing:33.984000px;}
.ls4{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-72.000000px;}
.ws3{word-spacing:-59.760000px;}
.ws4{word-spacing:-18.576000px;}
.ws2{word-spacing:-18.000000px;}
.ws0{word-spacing:0.000000px;}
._1d{margin-left:-4.488000px;}
._2{margin-left:-3.192000px;}
._d{margin-left:-2.184000px;}
._0{margin-left:-1.152000px;}
._1{width:1.020000px;}
._3{width:2.796000px;}
._c{width:4.116000px;}
._10{width:5.904000px;}
._7{width:7.200000px;}
._8{width:8.424000px;}
._5{width:9.576000px;}
._6{width:10.800000px;}
._9{width:12.456000px;}
._a{width:13.740000px;}
._b{width:14.844000px;}
._4{width:16.056000px;}
._15{width:19.368000px;}
._e{width:20.664000px;}
._12{width:21.744000px;}
._18{width:22.752000px;}
._11{width:23.760000px;}
._19{width:25.044000px;}
._1e{width:26.304000px;}
._1c{width:27.456000px;}
._1a{width:28.872000px;}
._1b{width:30.444000px;}
._1f{width:31.500000px;}
._13{width:32.544000px;}
._14{width:33.816000px;}
._f{width:35.784000px;}
._17{width:37.092000px;}
._16{width:38.160000px;}
._21{width:39.384000px;}
._25{width:40.452000px;}
._20{width:43.920000px;}
._22{width:70.272000px;}
._23{width:107.712000px;}
._24{width:109.152000px;}
._26{width:156.888000px;}
._27{width:232.056000px;}
._28{width:846.156000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:23.760000px;}
.fs2{font-size:36.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yb8{bottom:3.960000px;}
.ybb{bottom:24.660000px;}
.ybf{bottom:24.705000px;}
.yba{bottom:45.360000px;}
.ybe{bottom:45.405000px;}
.y2{bottom:58.320000px;}
.y1{bottom:78.516000px;}
.y75{bottom:101.376000px;}
.y5c{bottom:103.176000px;}
.ya2{bottom:104.076000px;}
.yf4{bottom:111.636000px;}
.y2e{bottom:112.176000px;}
.y49{bottom:116.316000px;}
.y5b{bottom:119.916000px;}
.y74{bottom:122.076000px;}
.ya1{bottom:124.776000px;}
.yf3{bottom:132.156000px;}
.y2d{bottom:132.876000px;}
.yb5{bottom:136.296000px;}
.y48{bottom:137.016000px;}
.y73{bottom:142.776000px;}
.ya0{bottom:145.476000px;}
.yf2{bottom:152.850000px;}
.y2c{bottom:153.570000px;}
.yb4{bottom:156.990000px;}
.y47{bottom:157.710000px;}
.y72{bottom:163.470000px;}
.y9f{bottom:166.170000px;}
.yf1{bottom:173.550000px;}
.y2b{bottom:174.270000px;}
.yb3{bottom:177.690000px;}
.y46{bottom:178.410000px;}
.y71{bottom:184.170000px;}
.y9e{bottom:186.870000px;}
.yf0{bottom:194.250000px;}
.y2a{bottom:194.970000px;}
.yb2{bottom:198.390000px;}
.y45{bottom:199.110000px;}
.y70{bottom:204.870000px;}
.y9d{bottom:207.570000px;}
.yef{bottom:214.950000px;}
.y29{bottom:215.670000px;}
.yb1{bottom:219.090000px;}
.y44{bottom:219.810000px;}
.y6f{bottom:225.570000px;}
.y9c{bottom:228.270000px;}
.yee{bottom:235.650000px;}
.y28{bottom:236.370000px;}
.yb0{bottom:239.790000px;}
.y43{bottom:240.510000px;}
.y6e{bottom:246.270000px;}
.y9b{bottom:248.970000px;}
.yed{bottom:256.350000px;}
.y27{bottom:257.070000px;}
.yaf{bottom:260.490000px;}
.y42{bottom:261.210000px;}
.y6d{bottom:266.970000px;}
.y9a{bottom:269.670000px;}
.yec{bottom:277.050000px;}
.y26{bottom:277.770000px;}
.yae{bottom:281.190000px;}
.y41{bottom:281.910000px;}
.y6c{bottom:287.670000px;}
.yd1{bottom:288.390000px;}
.y99{bottom:290.370000px;}
.yd0{bottom:297.435000px;}
.yeb{bottom:297.795000px;}
.y25{bottom:298.515000px;}
.y40{bottom:300.675000px;}
.yad{bottom:301.935000px;}
.y8b{bottom:308.235000px;}
.y6b{bottom:308.415000px;}
.y98{bottom:311.115000px;}
.y3f{bottom:312.915000px;}
.yea{bottom:318.495000px;}
.y24{bottom:319.215000px;}
.yac{bottom:322.635000px;}
.y5a{bottom:322.995000px;}
.y8a{bottom:328.935000px;}
.y6a{bottom:329.115000px;}
.y3e{bottom:329.655000px;}
.y97{bottom:331.815000px;}
.y23{bottom:337.935000px;}
.ye9{bottom:339.195000px;}
.ycf{bottom:339.735000px;}
.yab{bottom:343.335000px;}
.y59{bottom:343.695000px;}
.y89{bottom:349.635000px;}
.y69{bottom:349.815000px;}
.y22{bottom:350.175000px;}
.y96{bottom:352.515000px;}
.ye8{bottom:359.895000px;}
.yaa{bottom:364.035000px;}
.y58{bottom:364.395000px;}
.y88{bottom:370.335000px;}
.y68{bottom:370.515000px;}
.y21{bottom:370.875000px;}
.y95{bottom:373.215000px;}
.ye7{bottom:380.595000px;}
.yce{bottom:381.855000px;}
.ya9{bottom:384.735000px;}
.y57{bottom:385.095000px;}
.y87{bottom:391.035000px;}
.y67{bottom:391.215000px;}
.y20{bottom:391.575000px;}
.y94{bottom:393.915000px;}
.ye6{bottom:401.295000px;}
.ya8{bottom:405.435000px;}
.y56{bottom:405.795000px;}
.y86{bottom:411.735000px;}
.y66{bottom:411.915000px;}
.y1f{bottom:412.275000px;}
.y93{bottom:414.615000px;}
.ye5{bottom:421.995000px;}
.ycd{bottom:423.975000px;}
.ya7{bottom:426.135000px;}
.y55{bottom:426.495000px;}
.y85{bottom:432.435000px;}
.y65{bottom:432.615000px;}
.y1e{bottom:432.975000px;}
.y92{bottom:435.315000px;}
.ye4{bottom:442.695000px;}
.ya6{bottom:446.835000px;}
.y54{bottom:447.195000px;}
.ycc{bottom:449.355000px;}
.y84{bottom:453.135000px;}
.y64{bottom:453.315000px;}
.y1d{bottom:453.675000px;}
.y91{bottom:456.015000px;}
.ye3{bottom:463.395000px;}
.ya5{bottom:467.535000px;}
.y53{bottom:467.895000px;}
.ycb{bottom:470.055000px;}
.y83{bottom:473.835000px;}
.y63{bottom:474.015000px;}
.y1c{bottom:474.375000px;}
.y90{bottom:476.715000px;}
.ye2{bottom:484.095000px;}
.ya4{bottom:486.255000px;}
.y52{bottom:488.595000px;}
.yca{bottom:490.755000px;}
.y82{bottom:494.535000px;}
.y62{bottom:494.715000px;}
.y1b{bottom:495.075000px;}
.y8f{bottom:497.415000px;}
.ya3{bottom:498.495000px;}
.ye1{bottom:504.795000px;}
.y51{bottom:509.295000px;}
.yc9{bottom:511.455000px;}
.y81{bottom:515.235000px;}
.y61{bottom:515.415000px;}
.y1a{bottom:515.775000px;}
.y8e{bottom:518.115000px;}
.ye0{bottom:525.525000px;}
.y50{bottom:530.025000px;}
.yc8{bottom:532.185000px;}
.y80{bottom:535.965000px;}
.y60{bottom:536.145000px;}
.y19{bottom:536.505000px;}
.y8d{bottom:538.845000px;}
.ydf{bottom:546.225000px;}
.y4f{bottom:550.725000px;}
.yc7{bottom:552.885000px;}
.y8c{bottom:555.585000px;}
.y7f{bottom:556.665000px;}
.y5f{bottom:556.845000px;}
.y18{bottom:557.205000px;}
.yde{bottom:566.925000px;}
.y4e{bottom:571.425000px;}
.yc6{bottom:573.585000px;}
.y7e{bottom:577.365000px;}
.y5e{bottom:577.545000px;}
.y17{bottom:577.905000px;}
.ydd{bottom:587.625000px;}
.y4d{bottom:592.125000px;}
.y5d{bottom:594.285000px;}
.y7d{bottom:598.065000px;}
.y16{bottom:598.605000px;}
.ydc{bottom:608.325000px;}
.y4c{bottom:612.825000px;}
.yc5{bottom:614.985000px;}
.y7c{bottom:618.765000px;}
.y15{bottom:619.305000px;}
.ydb{bottom:629.025000px;}
.y4b{bottom:631.725000px;}
.yc4{bottom:635.685000px;}
.y7b{bottom:639.465000px;}
.y14{bottom:640.005000px;}
.y4a{bottom:643.965000px;}
.y3d{bottom:649.725000px;}
.yc3{bottom:656.385000px;}
.y7a{bottom:660.165000px;}
.y13{bottom:660.705000px;}
.y3c{bottom:670.425000px;}
.yc2{bottom:677.085000px;}
.y79{bottom:680.865000px;}
.y12{bottom:683.385000px;}
.y3b{bottom:691.125000px;}
.y11{bottom:696.705000px;}
.yc1{bottom:697.785000px;}
.y78{bottom:701.565000px;}
.y3a{bottom:711.825000px;}
.y10{bottom:717.405000px;}
.yc0{bottom:718.485000px;}
.y77{bottom:722.265000px;}
.y39{bottom:732.525000px;}
.ybd{bottom:735.945000px;}
.yf{bottom:738.105000px;}
.y76{bottom:740.985000px;}
.yda{bottom:742.965000px;}
.y38{bottom:753.225000px;}
.ye{bottom:758.850000px;}
.yd9{bottom:763.710000px;}
.y37{bottom:773.970000px;}
.yd{bottom:779.550000px;}
.yd8{bottom:784.410000px;}
.y36{bottom:794.670000px;}
.ybc{bottom:798.810000px;}
.yc{bottom:800.250000px;}
.yd7{bottom:805.110000px;}
.y35{bottom:815.370000px;}
.yb{bottom:820.950000px;}
.yd6{bottom:825.810000px;}
.y34{bottom:836.070000px;}
.yb9{bottom:840.930000px;}
.ya{bottom:841.650000px;}
.yd5{bottom:846.510000px;}
.y33{bottom:856.770000px;}
.y9{bottom:862.350000px;}
.yd4{bottom:867.210000px;}
.y32{bottom:877.470000px;}
.y8{bottom:883.050000px;}
.yd3{bottom:887.910000px;}
.y31{bottom:898.170000px;}
.y7{bottom:903.750000px;}
.yd2{bottom:906.630000px;}
.y30{bottom:918.870000px;}
.y6{bottom:924.450000px;}
.yb7{bottom:929.310000px;}
.y2f{bottom:939.570000px;}
.y5{bottom:943.170000px;}
.yb6{bottom:948.030000px;}
.y4{bottom:960.270000px;}
.y3{bottom:980.970000px;}
.h6{height:16.764258px;}
.h9{height:20.700000px;}
.h4{height:25.400391px;}
.hd{height:32.273438px;}
.hb{height:41.400000px;}
.h3{height:50.800781px;}
.h8{height:52.417969px;}
.h7{height:53.332031px;}
.ha{height:62.100000px;}
.hc{height:62.136000px;}
.h5{height:64.546875px;}
.h2{height:67.824844px;}
.h1{height:1092.750000px;}
.h0{height:1092.780000px;}
.w5{width:173.190000px;}
.w3{width:212.610000px;}
.w4{width:368.895000px;}
.w6{width:408.495000px;}
.w2{width:773.819988px;}
.w0{width:773.820000px;}
.w1{width:774.000000px;}
.x0{left:0.000000px;}
.x19{left:7.740000px;}
.xb{left:95.075988px;}
.x17{left:122.075988px;}
.x18{left:149.075988px;}
.x4{left:172.829988px;}
.xa{left:176.249988px;}
.xd{left:195.149988px;}
.x7{left:200.549988px;}
.x1b{left:269.715000px;}
.x13{left:299.234988px;}
.xf{left:300.854988px;}
.x11{left:306.614988px;}
.x1a{left:309.315000px;}
.x15{left:312.014988px;}
.x9{left:317.774988px;}
.x5{left:323.714988px;}
.x3{left:328.754988px;}
.x8{left:335.414988px;}
.x6{left:352.874988px;}
.x1{left:374.474988px;}
.x2{left:386.894988px;}
.xc{left:560.264988px;}
.x16{left:562.964988px;}
.x10{left:573.089988px;}
.x12{left:576.509988px;}
.x14{left:580.469988px;}
.xe{left:583.349988px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.640000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.512000pt;}
.ls2{letter-spacing:21.248000pt;}
.ls3{letter-spacing:30.208000pt;}
.ls4{letter-spacing:56.912640pt;}
.ws1{word-spacing:-64.000000pt;}
.ws3{word-spacing:-53.120000pt;}
.ws4{word-spacing:-16.512000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:0.000000pt;}
._1d{margin-left:-3.989333pt;}
._2{margin-left:-2.837333pt;}
._d{margin-left:-1.941333pt;}
._0{margin-left:-1.024000pt;}
._1{width:0.906667pt;}
._3{width:2.485333pt;}
._c{width:3.658667pt;}
._10{width:5.248000pt;}
._7{width:6.400000pt;}
._8{width:7.488000pt;}
._5{width:8.512000pt;}
._6{width:9.600000pt;}
._9{width:11.072000pt;}
._a{width:12.213333pt;}
._b{width:13.194667pt;}
._4{width:14.272000pt;}
._15{width:17.216000pt;}
._e{width:18.368000pt;}
._12{width:19.328000pt;}
._18{width:20.224000pt;}
._11{width:21.120000pt;}
._19{width:22.261333pt;}
._1e{width:23.381333pt;}
._1c{width:24.405333pt;}
._1a{width:25.664000pt;}
._1b{width:27.061333pt;}
._1f{width:28.000000pt;}
._13{width:28.928000pt;}
._14{width:30.058667pt;}
._f{width:31.808000pt;}
._17{width:32.970667pt;}
._16{width:33.920000pt;}
._21{width:35.008000pt;}
._25{width:35.957333pt;}
._20{width:39.040000pt;}
._22{width:62.464000pt;}
._23{width:95.744000pt;}
._24{width:97.024000pt;}
._26{width:139.456000pt;}
._27{width:206.272000pt;}
._28{width:752.138667pt;}
.fs3{font-size:21.120000pt;}
.fs2{font-size:32.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yb8{bottom:3.520000pt;}
.ybb{bottom:21.920000pt;}
.ybf{bottom:21.960000pt;}
.yba{bottom:40.320000pt;}
.ybe{bottom:40.360000pt;}
.y2{bottom:51.840000pt;}
.y1{bottom:69.792000pt;}
.y75{bottom:90.112000pt;}
.y5c{bottom:91.712000pt;}
.ya2{bottom:92.512000pt;}
.yf4{bottom:99.232000pt;}
.y2e{bottom:99.712000pt;}
.y49{bottom:103.392000pt;}
.y5b{bottom:106.592000pt;}
.y74{bottom:108.512000pt;}
.ya1{bottom:110.912000pt;}
.yf3{bottom:117.472000pt;}
.y2d{bottom:118.112000pt;}
.yb5{bottom:121.152000pt;}
.y48{bottom:121.792000pt;}
.y73{bottom:126.912000pt;}
.ya0{bottom:129.312000pt;}
.yf2{bottom:135.866667pt;}
.y2c{bottom:136.506667pt;}
.yb4{bottom:139.546667pt;}
.y47{bottom:140.186667pt;}
.y72{bottom:145.306667pt;}
.y9f{bottom:147.706667pt;}
.yf1{bottom:154.266667pt;}
.y2b{bottom:154.906667pt;}
.yb3{bottom:157.946667pt;}
.y46{bottom:158.586667pt;}
.y71{bottom:163.706667pt;}
.y9e{bottom:166.106667pt;}
.yf0{bottom:172.666667pt;}
.y2a{bottom:173.306667pt;}
.yb2{bottom:176.346667pt;}
.y45{bottom:176.986667pt;}
.y70{bottom:182.106667pt;}
.y9d{bottom:184.506667pt;}
.yef{bottom:191.066667pt;}
.y29{bottom:191.706667pt;}
.yb1{bottom:194.746667pt;}
.y44{bottom:195.386667pt;}
.y6f{bottom:200.506667pt;}
.y9c{bottom:202.906667pt;}
.yee{bottom:209.466667pt;}
.y28{bottom:210.106667pt;}
.yb0{bottom:213.146667pt;}
.y43{bottom:213.786667pt;}
.y6e{bottom:218.906667pt;}
.y9b{bottom:221.306667pt;}
.yed{bottom:227.866667pt;}
.y27{bottom:228.506667pt;}
.yaf{bottom:231.546667pt;}
.y42{bottom:232.186667pt;}
.y6d{bottom:237.306667pt;}
.y9a{bottom:239.706667pt;}
.yec{bottom:246.266667pt;}
.y26{bottom:246.906667pt;}
.yae{bottom:249.946667pt;}
.y41{bottom:250.586667pt;}
.y6c{bottom:255.706667pt;}
.yd1{bottom:256.346667pt;}
.y99{bottom:258.106667pt;}
.yd0{bottom:264.386667pt;}
.yeb{bottom:264.706667pt;}
.y25{bottom:265.346667pt;}
.y40{bottom:267.266667pt;}
.yad{bottom:268.386667pt;}
.y8b{bottom:273.986667pt;}
.y6b{bottom:274.146667pt;}
.y98{bottom:276.546667pt;}
.y3f{bottom:278.146667pt;}
.yea{bottom:283.106667pt;}
.y24{bottom:283.746667pt;}
.yac{bottom:286.786667pt;}
.y5a{bottom:287.106667pt;}
.y8a{bottom:292.386667pt;}
.y6a{bottom:292.546667pt;}
.y3e{bottom:293.026667pt;}
.y97{bottom:294.946667pt;}
.y23{bottom:300.386667pt;}
.ye9{bottom:301.506667pt;}
.ycf{bottom:301.986667pt;}
.yab{bottom:305.186667pt;}
.y59{bottom:305.506667pt;}
.y89{bottom:310.786667pt;}
.y69{bottom:310.946667pt;}
.y22{bottom:311.266667pt;}
.y96{bottom:313.346667pt;}
.ye8{bottom:319.906667pt;}
.yaa{bottom:323.586667pt;}
.y58{bottom:323.906667pt;}
.y88{bottom:329.186667pt;}
.y68{bottom:329.346667pt;}
.y21{bottom:329.666667pt;}
.y95{bottom:331.746667pt;}
.ye7{bottom:338.306667pt;}
.yce{bottom:339.426667pt;}
.ya9{bottom:341.986667pt;}
.y57{bottom:342.306667pt;}
.y87{bottom:347.586667pt;}
.y67{bottom:347.746667pt;}
.y20{bottom:348.066667pt;}
.y94{bottom:350.146667pt;}
.ye6{bottom:356.706667pt;}
.ya8{bottom:360.386667pt;}
.y56{bottom:360.706667pt;}
.y86{bottom:365.986667pt;}
.y66{bottom:366.146667pt;}
.y1f{bottom:366.466667pt;}
.y93{bottom:368.546667pt;}
.ye5{bottom:375.106667pt;}
.ycd{bottom:376.866667pt;}
.ya7{bottom:378.786667pt;}
.y55{bottom:379.106667pt;}
.y85{bottom:384.386667pt;}
.y65{bottom:384.546667pt;}
.y1e{bottom:384.866667pt;}
.y92{bottom:386.946667pt;}
.ye4{bottom:393.506667pt;}
.ya6{bottom:397.186667pt;}
.y54{bottom:397.506667pt;}
.ycc{bottom:399.426667pt;}
.y84{bottom:402.786667pt;}
.y64{bottom:402.946667pt;}
.y1d{bottom:403.266667pt;}
.y91{bottom:405.346667pt;}
.ye3{bottom:411.906667pt;}
.ya5{bottom:415.586667pt;}
.y53{bottom:415.906667pt;}
.ycb{bottom:417.826667pt;}
.y83{bottom:421.186667pt;}
.y63{bottom:421.346667pt;}
.y1c{bottom:421.666667pt;}
.y90{bottom:423.746667pt;}
.ye2{bottom:430.306667pt;}
.ya4{bottom:432.226667pt;}
.y52{bottom:434.306667pt;}
.yca{bottom:436.226667pt;}
.y82{bottom:439.586667pt;}
.y62{bottom:439.746667pt;}
.y1b{bottom:440.066667pt;}
.y8f{bottom:442.146667pt;}
.ya3{bottom:443.106667pt;}
.ye1{bottom:448.706667pt;}
.y51{bottom:452.706667pt;}
.yc9{bottom:454.626667pt;}
.y81{bottom:457.986667pt;}
.y61{bottom:458.146667pt;}
.y1a{bottom:458.466667pt;}
.y8e{bottom:460.546667pt;}
.ye0{bottom:467.133333pt;}
.y50{bottom:471.133333pt;}
.yc8{bottom:473.053333pt;}
.y80{bottom:476.413333pt;}
.y60{bottom:476.573333pt;}
.y19{bottom:476.893333pt;}
.y8d{bottom:478.973333pt;}
.ydf{bottom:485.533333pt;}
.y4f{bottom:489.533333pt;}
.yc7{bottom:491.453333pt;}
.y8c{bottom:493.853333pt;}
.y7f{bottom:494.813333pt;}
.y5f{bottom:494.973333pt;}
.y18{bottom:495.293333pt;}
.yde{bottom:503.933333pt;}
.y4e{bottom:507.933333pt;}
.yc6{bottom:509.853333pt;}
.y7e{bottom:513.213333pt;}
.y5e{bottom:513.373333pt;}
.y17{bottom:513.693333pt;}
.ydd{bottom:522.333333pt;}
.y4d{bottom:526.333333pt;}
.y5d{bottom:528.253333pt;}
.y7d{bottom:531.613333pt;}
.y16{bottom:532.093333pt;}
.ydc{bottom:540.733333pt;}
.y4c{bottom:544.733333pt;}
.yc5{bottom:546.653333pt;}
.y7c{bottom:550.013333pt;}
.y15{bottom:550.493333pt;}
.ydb{bottom:559.133333pt;}
.y4b{bottom:561.533333pt;}
.yc4{bottom:565.053333pt;}
.y7b{bottom:568.413333pt;}
.y14{bottom:568.893333pt;}
.y4a{bottom:572.413333pt;}
.y3d{bottom:577.533333pt;}
.yc3{bottom:583.453333pt;}
.y7a{bottom:586.813333pt;}
.y13{bottom:587.293333pt;}
.y3c{bottom:595.933333pt;}
.yc2{bottom:601.853333pt;}
.y79{bottom:605.213333pt;}
.y12{bottom:607.453333pt;}
.y3b{bottom:614.333333pt;}
.y11{bottom:619.293333pt;}
.yc1{bottom:620.253333pt;}
.y78{bottom:623.613333pt;}
.y3a{bottom:632.733333pt;}
.y10{bottom:637.693333pt;}
.yc0{bottom:638.653333pt;}
.y77{bottom:642.013333pt;}
.y39{bottom:651.133333pt;}
.ybd{bottom:654.173333pt;}
.yf{bottom:656.093333pt;}
.y76{bottom:658.653333pt;}
.yda{bottom:660.413333pt;}
.y38{bottom:669.533333pt;}
.ye{bottom:674.533333pt;}
.yd9{bottom:678.853333pt;}
.y37{bottom:687.973333pt;}
.yd{bottom:692.933333pt;}
.yd8{bottom:697.253333pt;}
.y36{bottom:706.373333pt;}
.ybc{bottom:710.053333pt;}
.yc{bottom:711.333333pt;}
.yd7{bottom:715.653333pt;}
.y35{bottom:724.773333pt;}
.yb{bottom:729.733333pt;}
.yd6{bottom:734.053333pt;}
.y34{bottom:743.173333pt;}
.yb9{bottom:747.493333pt;}
.ya{bottom:748.133333pt;}
.yd5{bottom:752.453333pt;}
.y33{bottom:761.573333pt;}
.y9{bottom:766.533333pt;}
.yd4{bottom:770.853333pt;}
.y32{bottom:779.973333pt;}
.y8{bottom:784.933333pt;}
.yd3{bottom:789.253333pt;}
.y31{bottom:798.373333pt;}
.y7{bottom:803.333333pt;}
.yd2{bottom:805.893333pt;}
.y30{bottom:816.773333pt;}
.y6{bottom:821.733333pt;}
.yb7{bottom:826.053333pt;}
.y2f{bottom:835.173333pt;}
.y5{bottom:838.373333pt;}
.yb6{bottom:842.693333pt;}
.y4{bottom:853.573333pt;}
.y3{bottom:871.973333pt;}
.h6{height:14.901562pt;}
.h9{height:18.400000pt;}
.h4{height:22.578125pt;}
.hd{height:28.687500pt;}
.hb{height:36.800000pt;}
.h3{height:45.156250pt;}
.h8{height:46.593750pt;}
.h7{height:47.406250pt;}
.ha{height:55.200000pt;}
.hc{height:55.232000pt;}
.h5{height:57.375000pt;}
.h2{height:60.288750pt;}
.h1{height:971.333333pt;}
.h0{height:971.360000pt;}
.w5{width:153.946667pt;}
.w3{width:188.986667pt;}
.w4{width:327.906667pt;}
.w6{width:363.106667pt;}
.w2{width:687.839990pt;}
.w0{width:687.840000pt;}
.w1{width:688.000000pt;}
.x0{left:0.000000pt;}
.x19{left:6.880000pt;}
.xb{left:84.511990pt;}
.x17{left:108.511990pt;}
.x18{left:132.511990pt;}
.x4{left:153.626656pt;}
.xa{left:156.666656pt;}
.xd{left:173.466656pt;}
.x7{left:178.266656pt;}
.x1b{left:239.746667pt;}
.x13{left:265.986656pt;}
.xf{left:267.426656pt;}
.x11{left:272.546656pt;}
.x1a{left:274.946667pt;}
.x15{left:277.346656pt;}
.x9{left:282.466656pt;}
.x5{left:287.746656pt;}
.x3{left:292.226656pt;}
.x8{left:298.146656pt;}
.x6{left:313.666656pt;}
.x1{left:332.866656pt;}
.x2{left:343.906656pt;}
.xc{left:498.013323pt;}
.x16{left:500.413323pt;}
.x10{left:509.413323pt;}
.x12{left:512.453323pt;}
.x14{left:515.973323pt;}
.xe{left:518.533323pt;}
}




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