
    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_79c11a6ddcaa886f48a50cd4.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_2d0d84d21c49290f5bd90bd3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c93b9511a3a24646d1c03ad4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4b8abfcf9d8a946e54249a97.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_80194f82e24ef426093c0757.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.401855;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_64dd3deb93f046cf02cd78a5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f328ef17abcca8f1cb490c0e.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v1{vertical-align:-96.480000px;}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-1.458000px;}
.ls11{letter-spacing:-0.900000px;}
.ls12{letter-spacing:-0.690000px;}
.ls16{letter-spacing:-0.684000px;}
.lsc{letter-spacing:-0.378600px;}
.lse{letter-spacing:-0.369600px;}
.lsb{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.341400px;}
.ls7{letter-spacing:-0.180000px;}
.ls8{letter-spacing:-0.028080px;}
.ls6{letter-spacing:-0.018720px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.028080px;}
.ls3{letter-spacing:0.252720px;}
.lsd{letter-spacing:0.341400px;}
.ls10{letter-spacing:0.350400px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.378600px;}
.lsf{letter-spacing:0.378720px;}
.ls4{letter-spacing:0.504000px;}
.ls9{letter-spacing:27.180000px;}
.ls14{letter-spacing:149.004000px;}
.ls1{letter-spacing:232.524000px;}
.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:-24.300000px;}
.ws7{word-spacing:-21.438600px;}
.ws5{word-spacing:-21.420000px;}
.wsd{word-spacing:-21.410400px;}
.wsa{word-spacing:-21.401400px;}
.wsc{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.ws3{word-spacing:-21.041280px;}
.ws4{word-spacing:-21.031920px;}
.wsf{word-spacing:-20.718600px;}
.ws8{word-spacing:-20.700000px;}
.wsb{word-spacing:-20.690400px;}
.ws9{word-spacing:-20.681400px;}
.ws11{word-spacing:-20.376000px;}
.wse{word-spacing:-20.370000px;}
.ws10{word-spacing:-19.602000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:0.000000px;}
._3b{margin-left:-6.381600px;}
._14{margin-left:-5.243520px;}
._15{margin-left:-4.144560px;}
._d{margin-left:-2.779920px;}
._1{margin-left:-1.158720px;}
._0{width:1.140000px;}
._8{width:3.106560px;}
._4{width:4.677360px;}
._5{width:5.882880px;}
._21{width:7.097760px;}
._20{width:8.290080px;}
._2b{width:9.623280px;}
._2a{width:10.985520px;}
._11{width:12.077280px;}
._12{width:13.117920px;}
._13{width:14.910480px;}
._18{width:15.964320px;}
._9{width:17.754000px;}
._17{width:19.122480px;}
._1a{width:22.407840px;}
._3{width:24.008400px;}
._16{width:26.009520px;}
._c{width:27.273120px;}
._a{width:28.452480px;}
._1c{width:29.736720px;}
._1b{width:30.831840px;}
._33{width:31.887360px;}
._b{width:32.937840px;}
._f{width:34.517760px;}
._24{width:35.539680px;}
._10{width:36.609600px;}
._23{width:38.413440px;}
._22{width:40.906080px;}
._29{width:41.911200px;}
._2f{width:43.274160px;}
._35{width:45.820560px;}
._1f{width:47.090160px;}
._25{width:48.292080px;}
._26{width:49.360560px;}
._30{width:51.260880px;}
._34{width:53.346480px;}
._2e{width:55.261440px;}
._2{width:58.883760px;}
._7{width:61.852800px;}
._6{width:63.243600px;}
._2c{width:64.372560px;}
._2d{width:65.439120px;}
._31{width:67.476240px;}
._1d{width:68.571360px;}
._1e{width:69.645840px;}
._28{width:70.926240px;}
._27{width:72.931200px;}
._43{width:74.299680px;}
._32{width:77.585040px;}
._3e{width:83.082960px;}
._3d{width:84.240000px;}
._19{width:86.173680px;}
._e{width:87.692160px;}
._36{width:120.715920px;}
._3f{width:136.300320px;}
._40{width:137.311200px;}
._3a{width:166.588080px;}
._37{width:168.778320px;}
._44{width:175.956720px;}
._3c{width:208.052160px;}
._38{width:217.928880px;}
._42{width:220.982160px;}
._41{width:222.457200px;}
._39{width:246.065040px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:54.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y6{bottom:-6.120000px;}
.y0{bottom:0.000000px;}
.y54{bottom:3.960000px;}
.y5d{bottom:8.100000px;}
.y5f{bottom:8.280000px;}
.y3{bottom:16.020000px;}
.yb{bottom:16.380000px;}
.ya{bottom:17.280000px;}
.y9{bottom:19.440000px;}
.y5b{bottom:21.960000px;}
.y64{bottom:22.005000px;}
.y74{bottom:22.140000px;}
.y4{bottom:27.900000px;}
.y5c{bottom:35.820000px;}
.y63{bottom:35.865000px;}
.y6f{bottom:36.000000px;}
.y2{bottom:36.720000px;}
.y8{bottom:44.640000px;}
.y2f{bottom:108.396000px;}
.y7e{bottom:112.536000px;}
.yaf{bottom:115.596000px;}
.y52{bottom:121.536000px;}
.y59{bottom:123.696000px;}
.y98{bottom:128.916000px;}
.y2e{bottom:136.116000px;}
.yae{bottom:139.716000px;}
.y7d{bottom:140.436000px;}
.y58{bottom:145.116000px;}
.y51{bottom:149.436000px;}
.y97{bottom:156.630000px;}
.y2d{bottom:163.830000px;}
.y57{bottom:166.530000px;}
.y7c{bottom:168.150000px;}
.y50{bottom:177.150000px;}
.y96{bottom:184.350000px;}
.y56{bottom:187.950000px;}
.y2c{bottom:191.550000px;}
.y7b{bottom:195.870000px;}
.y4f{bottom:204.870000px;}
.y55{bottom:209.370000px;}
.y95{bottom:212.250000px;}
.y2b{bottom:219.450000px;}
.y7a{bottom:223.770000px;}
.y53{bottom:230.790000px;}
.y4e{bottom:232.770000px;}
.yad{bottom:236.370000px;}
.y94{bottom:239.970000px;}
.y2a{bottom:247.170000px;}
.y79{bottom:251.490000px;}
.y4d{bottom:260.490000px;}
.y93{bottom:267.690000px;}
.y29{bottom:274.890000px;}
.y78{bottom:279.210000px;}
.yac{bottom:284.610000px;}
.y4c{bottom:288.210000px;}
.y92{bottom:295.410000px;}
.y28{bottom:302.790000px;}
.y77{bottom:306.930000px;}
.yab{bottom:308.730000px;}
.y4b{bottom:315.930000px;}
.y91{bottom:323.310000px;}
.y27{bottom:330.510000px;}
.yaa{bottom:332.850000px;}
.y76{bottom:334.830000px;}
.y4a{bottom:343.875000px;}
.y90{bottom:351.075000px;}
.ya9{bottom:357.015000px;}
.y26{bottom:358.275000px;}
.y75{bottom:362.595000px;}
.y49{bottom:371.595000px;}
.y8f{bottom:378.795000px;}
.ya8{bottom:381.315000px;}
.y73{bottom:382.935000px;}
.y25{bottom:385.995000px;}
.y48{bottom:399.315000px;}
.ya7{bottom:405.435000px;}
.y8e{bottom:406.515000px;}
.y24{bottom:413.895000px;}
.y47{bottom:427.215000px;}
.ya6{bottom:429.555000px;}
.y8d{bottom:434.415000px;}
.y72{bottom:439.275000px;}
.y23{bottom:441.615000px;}
.ya5{bottom:453.675000px;}
.y46{bottom:454.935000px;}
.y8c{bottom:462.135000px;}
.y71{bottom:467.715000px;}
.y22{bottom:469.335000px;}
.ya4{bottom:477.795000px;}
.y45{bottom:482.655000px;}
.y8b{bottom:489.855000px;}
.y70{bottom:496.335000px;}
.y21{bottom:497.235000px;}
.ya3{bottom:501.915000px;}
.y44{bottom:510.375000px;}
.y8a{bottom:517.755000px;}
.y20{bottom:524.955000px;}
.ya2{bottom:526.215000px;}
.y43{bottom:538.275000px;}
.y89{bottom:545.475000px;}
.ya1{bottom:550.335000px;}
.y6e{bottom:552.495000px;}
.y1f{bottom:552.675000px;}
.y42{bottom:565.995000px;}
.y88{bottom:573.195000px;}
.ya0{bottom:574.455000px;}
.y1e{bottom:580.395000px;}
.y41{bottom:593.715000px;}
.y9f{bottom:598.575000px;}
.y87{bottom:600.915000px;}
.y1d{bottom:608.325000px;}
.y6d{bottom:616.965000px;}
.y40{bottom:621.465000px;}
.y9e{bottom:622.725000px;}
.y86{bottom:628.845000px;}
.y1c{bottom:636.045000px;}
.y6c{bottom:644.865000px;}
.y9d{bottom:646.845000px;}
.y3f{bottom:649.365000px;}
.y85{bottom:656.565000px;}
.y1b{bottom:663.765000px;}
.y9c{bottom:670.965000px;}
.y6b{bottom:672.585000px;}
.y3e{bottom:677.085000px;}
.y84{bottom:684.285000px;}
.y1a{bottom:691.665000px;}
.y9b{bottom:695.265000px;}
.y6a{bottom:700.305000px;}
.y3d{bottom:704.805000px;}
.y83{bottom:712.185000px;}
.y19{bottom:719.385000px;}
.y69{bottom:728.205000px;}
.y3c{bottom:732.705000px;}
.y82{bottom:739.905000px;}
.y9a{bottom:743.505000px;}
.y18{bottom:747.105000px;}
.y68{bottom:755.925000px;}
.y3b{bottom:760.425000px;}
.y81{bottom:767.625000px;}
.y17{bottom:774.825000px;}
.y67{bottom:783.645000px;}
.y3a{bottom:788.145000px;}
.y99{bottom:791.745000px;}
.y80{bottom:795.345000px;}
.y16{bottom:799.125000px;}
.y66{bottom:811.365000px;}
.y39{bottom:815.865000px;}
.y7f{bottom:823.245000px;}
.y15{bottom:826.845000px;}
.y65{bottom:839.265000px;}
.y38{bottom:843.765000px;}
.y14{bottom:854.565000px;}
.y62{bottom:859.605000px;}
.y37{bottom:871.530000px;}
.y13{bottom:882.330000px;}
.y36{bottom:899.250000px;}
.y12{bottom:910.230000px;}
.y61{bottom:915.990000px;}
.y35{bottom:927.150000px;}
.y11{bottom:934.350000px;}
.y60{bottom:944.430000px;}
.y34{bottom:954.870000px;}
.y10{bottom:962.070000px;}
.y5e{bottom:972.870000px;}
.y33{bottom:982.590000px;}
.yf{bottom:989.790000px;}
.y5a{bottom:1001.490000px;}
.y32{bottom:1010.310000px;}
.y31{bottom:1038.210000px;}
.ye{bottom:1041.810000px;}
.y30{bottom:1065.930000px;}
.yd{bottom:1069.530000px;}
.yc{bottom:1093.650000px;}
.y7{bottom:1129.830000px;}
.y5{bottom:1149.480000px;}
.y1{bottom:1166.760000px;}
.h5{height:6.480000px;}
.hb{height:20.700000px;}
.hf{height:27.720000px;}
.he{height:27.900000px;}
.h7{height:39.636000px;}
.h4{height:52.998047px;}
.h2{height:53.460000px;}
.hc{height:55.440000px;}
.h10{height:55.476000px;}
.h13{height:55.620000px;}
.h12{height:55.656000px;}
.h11{height:58.819922px;}
.hd{height:59.436914px;}
.h8{height:70.664062px;}
.h3{height:72.562500px;}
.ha{height:82.676953px;}
.h6{height:84.898125px;}
.h14{height:86.585445px;}
.h9{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:63.756000px;}
.w3{width:68.616000px;}
.we{width:158.790000px;}
.wb{width:173.370000px;}
.w7{width:188.310000px;}
.w8{width:191.190000px;}
.wc{width:246.990000px;}
.wd{width:270.255000px;}
.wa{width:270.795000px;}
.wf{width:271.290000px;}
.w9{width:320.250000px;}
.w2{width:760.830000px;}
.w5{width:765.690000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x7{left:13.860000px;}
.x1{left:31.860000px;}
.x4{left:59.970000px;}
.x5{left:84.959987px;}
.x9{left:96.155987px;}
.x8{left:127.475987px;}
.xc{left:142.595987px;}
.xe{left:214.229987px;}
.xf{left:273.989987px;}
.xa{left:285.914987px;}
.x12{left:357.375000px;}
.xd{left:359.714987px;}
.x10{left:368.894987px;}
.xb{left:446.474987px;}
.x11{left:476.925000px;}
.x14{left:516.345000px;}
.x13{left:531.465000px;}
.x3{left:792.690000px;}
.x6{left:797.550000px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-1.296000pt;}
.ls11{letter-spacing:-0.800000pt;}
.ls12{letter-spacing:-0.613333pt;}
.ls16{letter-spacing:-0.608000pt;}
.lsc{letter-spacing:-0.336533pt;}
.lse{letter-spacing:-0.328533pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.303467pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:-0.024960pt;}
.ls6{letter-spacing:-0.016640pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.024960pt;}
.ls3{letter-spacing:0.224640pt;}
.lsd{letter-spacing:0.303467pt;}
.ls10{letter-spacing:0.311467pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.336533pt;}
.lsf{letter-spacing:0.336640pt;}
.ls4{letter-spacing:0.448000pt;}
.ls9{letter-spacing:24.160000pt;}
.ls14{letter-spacing:132.448000pt;}
.ls1{letter-spacing:206.688000pt;}
.ws1{word-spacing:-21.600000pt;}
.ws7{word-spacing:-19.056533pt;}
.ws5{word-spacing:-19.040000pt;}
.wsd{word-spacing:-19.031467pt;}
.wsa{word-spacing:-19.023467pt;}
.wsc{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.ws3{word-spacing:-18.703360pt;}
.ws4{word-spacing:-18.695040pt;}
.wsf{word-spacing:-18.416533pt;}
.ws8{word-spacing:-18.400000pt;}
.wsb{word-spacing:-18.391467pt;}
.ws9{word-spacing:-18.383467pt;}
.ws11{word-spacing:-18.112000pt;}
.wse{word-spacing:-18.106667pt;}
.ws10{word-spacing:-17.424000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:0.000000pt;}
._3b{margin-left:-5.672533pt;}
._14{margin-left:-4.660907pt;}
._15{margin-left:-3.684053pt;}
._d{margin-left:-2.471040pt;}
._1{margin-left:-1.029973pt;}
._0{width:1.013333pt;}
._8{width:2.761387pt;}
._4{width:4.157653pt;}
._5{width:5.229227pt;}
._21{width:6.309120pt;}
._20{width:7.368960pt;}
._2b{width:8.554027pt;}
._2a{width:9.764907pt;}
._11{width:10.735360pt;}
._12{width:11.660373pt;}
._13{width:13.253760pt;}
._18{width:14.190507pt;}
._9{width:15.781333pt;}
._17{width:16.997760pt;}
._1a{width:19.918080pt;}
._3{width:21.340800pt;}
._16{width:23.119573pt;}
._c{width:24.242773pt;}
._a{width:25.291093pt;}
._1c{width:26.432640pt;}
._1b{width:27.406080pt;}
._33{width:28.344320pt;}
._b{width:29.278080pt;}
._f{width:30.682453pt;}
._24{width:31.590827pt;}
._10{width:32.541867pt;}
._23{width:34.145280pt;}
._22{width:36.360960pt;}
._29{width:37.254400pt;}
._2f{width:38.465920pt;}
._35{width:40.729387pt;}
._1f{width:41.857920pt;}
._25{width:42.926293pt;}
._26{width:43.876053pt;}
._30{width:45.565227pt;}
._34{width:47.419093pt;}
._2e{width:49.121280pt;}
._2{width:52.341120pt;}
._7{width:54.980267pt;}
._6{width:56.216533pt;}
._2c{width:57.220053pt;}
._2d{width:58.168107pt;}
._31{width:59.978880pt;}
._1d{width:60.952320pt;}
._1e{width:61.907413pt;}
._28{width:63.045547pt;}
._27{width:64.827733pt;}
._43{width:66.044160pt;}
._32{width:68.964480pt;}
._3e{width:73.851520pt;}
._3d{width:74.880000pt;}
._19{width:76.598827pt;}
._e{width:77.948587pt;}
._36{width:107.303040pt;}
._3f{width:121.155840pt;}
._40{width:122.054400pt;}
._3a{width:148.078293pt;}
._37{width:150.025173pt;}
._44{width:156.405973pt;}
._3c{width:184.935253pt;}
._38{width:193.714560pt;}
._42{width:196.428587pt;}
._41{width:197.739733pt;}
._39{width:218.724480pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y6{bottom:-5.440000pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:3.520000pt;}
.y5d{bottom:7.200000pt;}
.y5f{bottom:7.360000pt;}
.y3{bottom:14.240000pt;}
.yb{bottom:14.560000pt;}
.ya{bottom:15.360000pt;}
.y9{bottom:17.280000pt;}
.y5b{bottom:19.520000pt;}
.y64{bottom:19.560000pt;}
.y74{bottom:19.680000pt;}
.y4{bottom:24.800000pt;}
.y5c{bottom:31.840000pt;}
.y63{bottom:31.880000pt;}
.y6f{bottom:32.000000pt;}
.y2{bottom:32.640000pt;}
.y8{bottom:39.680000pt;}
.y2f{bottom:96.352000pt;}
.y7e{bottom:100.032000pt;}
.yaf{bottom:102.752000pt;}
.y52{bottom:108.032000pt;}
.y59{bottom:109.952000pt;}
.y98{bottom:114.592000pt;}
.y2e{bottom:120.992000pt;}
.yae{bottom:124.192000pt;}
.y7d{bottom:124.832000pt;}
.y58{bottom:128.992000pt;}
.y51{bottom:132.832000pt;}
.y97{bottom:139.226667pt;}
.y2d{bottom:145.626667pt;}
.y57{bottom:148.026667pt;}
.y7c{bottom:149.466667pt;}
.y50{bottom:157.466667pt;}
.y96{bottom:163.866667pt;}
.y56{bottom:167.066667pt;}
.y2c{bottom:170.266667pt;}
.y7b{bottom:174.106667pt;}
.y4f{bottom:182.106667pt;}
.y55{bottom:186.106667pt;}
.y95{bottom:188.666667pt;}
.y2b{bottom:195.066667pt;}
.y7a{bottom:198.906667pt;}
.y53{bottom:205.146667pt;}
.y4e{bottom:206.906667pt;}
.yad{bottom:210.106667pt;}
.y94{bottom:213.306667pt;}
.y2a{bottom:219.706667pt;}
.y79{bottom:223.546667pt;}
.y4d{bottom:231.546667pt;}
.y93{bottom:237.946667pt;}
.y29{bottom:244.346667pt;}
.y78{bottom:248.186667pt;}
.yac{bottom:252.986667pt;}
.y4c{bottom:256.186667pt;}
.y92{bottom:262.586667pt;}
.y28{bottom:269.146667pt;}
.y77{bottom:272.826667pt;}
.yab{bottom:274.426667pt;}
.y4b{bottom:280.826667pt;}
.y91{bottom:287.386667pt;}
.y27{bottom:293.786667pt;}
.yaa{bottom:295.866667pt;}
.y76{bottom:297.626667pt;}
.y4a{bottom:305.666667pt;}
.y90{bottom:312.066667pt;}
.ya9{bottom:317.346667pt;}
.y26{bottom:318.466667pt;}
.y75{bottom:322.306667pt;}
.y49{bottom:330.306667pt;}
.y8f{bottom:336.706667pt;}
.ya8{bottom:338.946667pt;}
.y73{bottom:340.386667pt;}
.y25{bottom:343.106667pt;}
.y48{bottom:354.946667pt;}
.ya7{bottom:360.386667pt;}
.y8e{bottom:361.346667pt;}
.y24{bottom:367.906667pt;}
.y47{bottom:379.746667pt;}
.ya6{bottom:381.826667pt;}
.y8d{bottom:386.146667pt;}
.y72{bottom:390.466667pt;}
.y23{bottom:392.546667pt;}
.ya5{bottom:403.266667pt;}
.y46{bottom:404.386667pt;}
.y8c{bottom:410.786667pt;}
.y71{bottom:415.746667pt;}
.y22{bottom:417.186667pt;}
.ya4{bottom:424.706667pt;}
.y45{bottom:429.026667pt;}
.y8b{bottom:435.426667pt;}
.y70{bottom:441.186667pt;}
.y21{bottom:441.986667pt;}
.ya3{bottom:446.146667pt;}
.y44{bottom:453.666667pt;}
.y8a{bottom:460.226667pt;}
.y20{bottom:466.626667pt;}
.ya2{bottom:467.746667pt;}
.y43{bottom:478.466667pt;}
.y89{bottom:484.866667pt;}
.ya1{bottom:489.186667pt;}
.y6e{bottom:491.106667pt;}
.y1f{bottom:491.266667pt;}
.y42{bottom:503.106667pt;}
.y88{bottom:509.506667pt;}
.ya0{bottom:510.626667pt;}
.y1e{bottom:515.906667pt;}
.y41{bottom:527.746667pt;}
.y9f{bottom:532.066667pt;}
.y87{bottom:534.146667pt;}
.y1d{bottom:540.733333pt;}
.y6d{bottom:548.413333pt;}
.y40{bottom:552.413333pt;}
.y9e{bottom:553.533333pt;}
.y86{bottom:558.973333pt;}
.y1c{bottom:565.373333pt;}
.y6c{bottom:573.213333pt;}
.y9d{bottom:574.973333pt;}
.y3f{bottom:577.213333pt;}
.y85{bottom:583.613333pt;}
.y1b{bottom:590.013333pt;}
.y9c{bottom:596.413333pt;}
.y6b{bottom:597.853333pt;}
.y3e{bottom:601.853333pt;}
.y84{bottom:608.253333pt;}
.y1a{bottom:614.813333pt;}
.y9b{bottom:618.013333pt;}
.y6a{bottom:622.493333pt;}
.y3d{bottom:626.493333pt;}
.y83{bottom:633.053333pt;}
.y19{bottom:639.453333pt;}
.y69{bottom:647.293333pt;}
.y3c{bottom:651.293333pt;}
.y82{bottom:657.693333pt;}
.y9a{bottom:660.893333pt;}
.y18{bottom:664.093333pt;}
.y68{bottom:671.933333pt;}
.y3b{bottom:675.933333pt;}
.y81{bottom:682.333333pt;}
.y17{bottom:688.733333pt;}
.y67{bottom:696.573333pt;}
.y3a{bottom:700.573333pt;}
.y99{bottom:703.773333pt;}
.y80{bottom:706.973333pt;}
.y16{bottom:710.333333pt;}
.y66{bottom:721.213333pt;}
.y39{bottom:725.213333pt;}
.y7f{bottom:731.773333pt;}
.y15{bottom:734.973333pt;}
.y65{bottom:746.013333pt;}
.y38{bottom:750.013333pt;}
.y14{bottom:759.613333pt;}
.y62{bottom:764.093333pt;}
.y37{bottom:774.693333pt;}
.y13{bottom:784.293333pt;}
.y36{bottom:799.333333pt;}
.y12{bottom:809.093333pt;}
.y61{bottom:814.213333pt;}
.y35{bottom:824.133333pt;}
.y11{bottom:830.533333pt;}
.y60{bottom:839.493333pt;}
.y34{bottom:848.773333pt;}
.y10{bottom:855.173333pt;}
.y5e{bottom:864.773333pt;}
.y33{bottom:873.413333pt;}
.yf{bottom:879.813333pt;}
.y5a{bottom:890.213333pt;}
.y32{bottom:898.053333pt;}
.y31{bottom:922.853333pt;}
.ye{bottom:926.053333pt;}
.y30{bottom:947.493333pt;}
.yd{bottom:950.693333pt;}
.yc{bottom:972.133333pt;}
.y7{bottom:1004.293333pt;}
.y5{bottom:1021.760000pt;}
.y1{bottom:1037.120000pt;}
.h5{height:5.760000pt;}
.hb{height:18.400000pt;}
.hf{height:24.640000pt;}
.he{height:24.800000pt;}
.h7{height:35.232000pt;}
.h4{height:47.109375pt;}
.h2{height:47.520000pt;}
.hc{height:49.280000pt;}
.h10{height:49.312000pt;}
.h13{height:49.440000pt;}
.h12{height:49.472000pt;}
.h11{height:52.284375pt;}
.hd{height:52.832812pt;}
.h8{height:62.812500pt;}
.h3{height:64.500000pt;}
.ha{height:73.490625pt;}
.h6{height:75.465000pt;}
.h14{height:76.964840pt;}
.h9{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:56.672000pt;}
.w3{width:60.992000pt;}
.we{width:141.146667pt;}
.wb{width:154.106667pt;}
.w7{width:167.386667pt;}
.w8{width:169.946667pt;}
.wc{width:219.546667pt;}
.wd{width:240.226667pt;}
.wa{width:240.706667pt;}
.wf{width:241.146667pt;}
.w9{width:284.666667pt;}
.w2{width:676.293333pt;}
.w5{width:680.613333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x7{left:12.320000pt;}
.x1{left:28.320000pt;}
.x4{left:53.306667pt;}
.x5{left:75.519988pt;}
.x9{left:85.471988pt;}
.x8{left:113.311988pt;}
.xc{left:126.751988pt;}
.xe{left:190.426655pt;}
.xf{left:243.546655pt;}
.xa{left:254.146655pt;}
.x12{left:317.666667pt;}
.xd{left:319.746655pt;}
.x10{left:327.906655pt;}
.xb{left:396.866655pt;}
.x11{left:423.933333pt;}
.x14{left:458.973333pt;}
.x13{left:472.413333pt;}
.x3{left:704.613333pt;}
.x6{left:708.933333pt;}
}




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