
    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_d854d4766c9cd149df68874d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_cf4fcdb613fbccffe4311d3e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ba94257a75a810e22bc78dbb.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_ba8ce60c46729bac818d1ba8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_56a29ce2364df9b1de70c8e7.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cbf71a3f9473fe248d8fea75.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_a7a17bab0748324e14eb6a25.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_33d14e49e29bd97a4cb00371.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_fb9b99bd2530bee7c67f50ad.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c982e16c7f0de7d614bab061.woff2')format("woff");}.ffb{font-family:ffb;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);}
.v0{vertical-align:0.000000px;}
.ls1b{letter-spacing:-1.260000px;}
.lsc{letter-spacing:-1.134000px;}
.ls14{letter-spacing:-0.612000px;}
.ls1a{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.208200px;}
.ls8{letter-spacing:-0.206400px;}
.lsd{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.037440px;}
.lsa{letter-spacing:0.053280px;}
.lse{letter-spacing:0.106800px;}
.lsb{letter-spacing:0.109440px;}
.ls1{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.259800px;}
.ls18{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.306600px;}
.ls19{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.924000px;}
.ls11{letter-spacing:1.080000px;}
.ls3{letter-spacing:6.426720px;}
.ls4{letter-spacing:16.506720px;}
.ls2{letter-spacing:30.186720px;}
.ls17{letter-spacing:46.026720px;}
.ls10{letter-spacing:61.380000px;}
.lsf{letter-spacing:114.570720px;}
.ls12{letter-spacing:118.170720px;}
.ls13{letter-spacing:124.740000px;}
.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:-16.560000px;}
.ws9{word-spacing:-16.020000px;}
.wsb{word-spacing:-15.864000px;}
.wsa{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.246600px;}
.wsc{word-spacing:-15.238800px;}
.ws8{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws2{word-spacing:-14.733600px;}
.ws6{word-spacing:-13.806000px;}
.wsd{word-spacing:-13.500000px;}
.ws5{word-spacing:0.000000px;}
._d{margin-left:-5.496960px;}
._e{margin-left:-3.841920px;}
._c{margin-left:-2.185920px;}
._b{margin-left:-1.026000px;}
._4{width:1.254960px;}
._f{width:2.313600px;}
._2c{width:3.411120px;}
._19{width:4.415760px;}
._18{width:5.504400px;}
._24{width:6.573600px;}
._13{width:8.341200px;}
._3{width:9.540000px;}
._1c{width:10.718640px;}
._1{width:12.420000px;}
._14{width:13.685040px;}
._16{width:16.493760px;}
._17{width:17.629200px;}
._11{width:19.302480px;}
._10{width:20.557440px;}
._1f{width:21.888720px;}
._12{width:23.113200px;}
._1a{width:24.561360px;}
._23{width:25.850880px;}
._1d{width:27.250560px;}
._15{width:28.634880px;}
._30{width:29.750640px;}
._27{width:30.955680px;}
._22{width:32.569200px;}
._21{width:33.585120px;}
._2b{width:35.079120px;}
._25{width:37.006560px;}
._26{width:38.007360px;}
._2d{width:39.205440px;}
._2e{width:40.816080px;}
._28{width:41.951520px;}
._1e{width:43.539840px;}
._33{width:45.238320px;}
._36{width:46.314000px;}
._20{width:47.449440px;}
._32{width:49.252320px;}
._1b{width:50.556960px;}
._2f{width:51.692400px;}
._38{width:52.897680px;}
._37{width:54.202320px;}
._35{width:55.696320px;}
._39{width:57.787920px;}
._3b{width:59.203440px;}
._2a{width:64.182240px;}
._29{width:65.770560px;}
._34{width:73.624320px;}
._31{width:75.476880px;}
._8{width:88.200000px;}
._6{width:97.380000px;}
._0{width:102.600000px;}
._9{width:108.180000px;}
._3a{width:155.017440px;}
._2{width:165.060000px;}
._5{width:183.960000px;}
._a{width:229.860000px;}
._7{width:296.820000px;}
.fc6{color:rgb(0,112,192);}
.fc5{color:rgb(24,23,23);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(177,84,7);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,10);}
.fs0{font-size:2.880000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:5.400000px;}
.y22{bottom:5.760000px;}
.y45{bottom:7.020000px;}
.y10{bottom:7.200000px;}
.y19{bottom:8.820000px;}
.y8{bottom:15.660000px;}
.yd{bottom:16.380000px;}
.y24{bottom:25.560000px;}
.y21{bottom:25.740000px;}
.y11{bottom:36.540000px;}
.y46{bottom:36.720000px;}
.y7{bottom:39.960000px;}
.yc{bottom:45.180000px;}
.y20{bottom:45.540000px;}
.yf{bottom:52.200000px;}
.y44{bottom:52.380000px;}
.y6{bottom:64.260000px;}
.y1f{bottom:65.340000px;}
.yb{bottom:74.190000px;}
.y41{bottom:81.036000px;}
.y1e{bottom:85.140000px;}
.y5{bottom:85.530000px;}
.y7c{bottom:87.516000px;}
.ya{bottom:93.450000px;}
.y8f{bottom:96.516000px;}
.y40{bottom:100.836000px;}
.y1d{bottom:104.940000px;}
.y7b{bottom:107.316000px;}
.y4{bottom:108.030000px;}
.y9{bottom:111.270000px;}
.y8e{bottom:116.316000px;}
.yab{bottom:118.116000px;}
.y3f{bottom:120.636000px;}
.y1c{bottom:124.920000px;}
.y7a{bottom:127.116000px;}
.y3{bottom:127.830000px;}
.y8d{bottom:136.116000px;}
.yaa{bottom:137.916000px;}
.y3e{bottom:140.616000px;}
.y1b{bottom:144.720000px;}
.y79{bottom:146.916000px;}
.y8c{bottom:155.910000px;}
.ya9{bottom:157.710000px;}
.y3d{bottom:160.410000px;}
.y78{bottom:166.710000px;}
.y8b{bottom:175.710000px;}
.ya8{bottom:177.690000px;}
.y3c{bottom:180.210000px;}
.y77{bottom:186.690000px;}
.y8a{bottom:195.690000px;}
.ya7{bottom:197.490000px;}
.y3b{bottom:200.010000px;}
.y76{bottom:206.490000px;}
.y89{bottom:215.490000px;}
.ya6{bottom:217.290000px;}
.y3a{bottom:219.810000px;}
.y75{bottom:226.290000px;}
.y88{bottom:235.290000px;}
.y39{bottom:239.790000px;}
.y87{bottom:246.090000px;}
.y74{bottom:255.090000px;}
.y38{bottom:259.590000px;}
.y86{bottom:265.890000px;}
.y73{bottom:274.890000px;}
.y37{bottom:279.390000px;}
.y85{bottom:285.870000px;}
.y72{bottom:294.870000px;}
.y36{bottom:299.190000px;}
.y84{bottom:305.670000px;}
.y71{bottom:314.670000px;}
.y35{bottom:318.990000px;}
.y83{bottom:325.470000px;}
.y70{bottom:334.470000px;}
.y34{bottom:339.015000px;}
.y82{bottom:345.315000px;}
.y6f{bottom:354.315000px;}
.y33{bottom:358.815000px;}
.y81{bottom:365.115000px;}
.y6e{bottom:374.115000px;}
.y32{bottom:378.615000px;}
.ybe{bottom:380.055000px;}
.y80{bottom:385.095000px;}
.y6d{bottom:394.095000px;}
.y31{bottom:398.415000px;}
.ybd{bottom:400.035000px;}
.y7f{bottom:404.895000px;}
.y6c{bottom:413.895000px;}
.y30{bottom:418.215000px;}
.ybc{bottom:419.835000px;}
.y7e{bottom:424.695000px;}
.y6b{bottom:433.695000px;}
.y2f{bottom:438.195000px;}
.ybb{bottom:439.635000px;}
.y7d{bottom:444.495000px;}
.y6a{bottom:453.495000px;}
.y2e{bottom:457.995000px;}
.yba{bottom:459.435000px;}
.ya5{bottom:464.295000px;}
.y69{bottom:473.295000px;}
.y2d{bottom:477.795000px;}
.yb9{bottom:479.235000px;}
.ya4{bottom:484.275000px;}
.y68{bottom:493.275000px;}
.y2c{bottom:497.595000px;}
.yb8{bottom:499.215000px;}
.ya3{bottom:504.075000px;}
.y67{bottom:513.075000px;}
.y2b{bottom:517.395000px;}
.yb7{bottom:519.015000px;}
.ya2{bottom:523.875000px;}
.y66{bottom:532.875000px;}
.y2a{bottom:537.195000px;}
.yb6{bottom:538.815000px;}
.ya1{bottom:543.675000px;}
.y65{bottom:552.675000px;}
.y29{bottom:557.175000px;}
.yb5{bottom:558.615000px;}
.ya0{bottom:563.475000px;}
.y64{bottom:572.475000px;}
.y28{bottom:576.975000px;}
.yb4{bottom:578.415000px;}
.y9f{bottom:583.455000px;}
.y63{bottom:592.455000px;}
.y27{bottom:596.775000px;}
.yb3{bottom:598.395000px;}
.y9e{bottom:603.255000px;}
.y62{bottom:612.285000px;}
.y26{bottom:616.605000px;}
.yb2{bottom:617.685000px;}
.y9d{bottom:623.085000px;}
.y61{bottom:632.085000px;}
.yb1{bottom:635.505000px;}
.y25{bottom:636.405000px;}
.y9c{bottom:642.885000px;}
.y60{bottom:651.885000px;}
.yb0{bottom:653.325000px;}
.y9b{bottom:662.685000px;}
.y23{bottom:671.505000px;}
.y5f{bottom:671.685000px;}
.y9a{bottom:682.665000px;}
.y5e{bottom:691.665000px;}
.y99{bottom:702.465000px;}
.y5d{bottom:711.465000px;}
.y1a{bottom:711.825000px;}
.y98{bottom:722.265000px;}
.y5c{bottom:731.265000px;}
.y97{bottom:742.065000px;}
.y5b{bottom:751.065000px;}
.y96{bottom:761.865000px;}
.y5a{bottom:770.865000px;}
.y95{bottom:781.845000px;}
.y59{bottom:790.845000px;}
.y94{bottom:801.645000px;}
.y58{bottom:810.645000px;}
.y93{bottom:821.445000px;}
.y57{bottom:830.445000px;}
.y92{bottom:841.245000px;}
.y56{bottom:850.245000px;}
.y91{bottom:861.045000px;}
.y55{bottom:870.045000px;}
.y18{bottom:871.350000px;}
.y90{bottom:881.070000px;}
.y54{bottom:890.070000px;}
.y17{bottom:900.690000px;}
.yaf{bottom:900.870000px;}
.y53{bottom:909.870000px;}
.y16{bottom:920.670000px;}
.y52{bottom:929.670000px;}
.yae{bottom:940.470000px;}
.y15{bottom:941.010000px;}
.y51{bottom:949.470000px;}
.yad{bottom:960.270000px;}
.y14{bottom:962.250000px;}
.y50{bottom:969.270000px;}
.yac{bottom:980.250000px;}
.y13{bottom:985.650000px;}
.y4f{bottom:989.250000px;}
.y4e{bottom:1009.050000px;}
.y12{bottom:1017.510000px;}
.y4d{bottom:1028.850000px;}
.ye{bottom:1044.330000px;}
.y4c{bottom:1048.650000px;}
.y1{bottom:1066.650000px;}
.y4b{bottom:1068.450000px;}
.y4a{bottom:1088.430000px;}
.y49{bottom:1108.230000px;}
.y48{bottom:1128.030000px;}
.y47{bottom:1147.860000px;}
.y43{bottom:1174.500000px;}
.y42{bottom:1193.580000px;}
.h3{height:2.825156px;}
.h14{height:22.356000px;}
.ha{height:22.536000px;}
.hd{height:22.860000px;}
.h10{height:39.600000px;}
.h15{height:49.255313px;}
.h8{height:52.998047px;}
.hf{height:53.573906px;}
.h12{height:58.621992px;}
.h6{height:58.651172px;}
.h4{height:60.226875px;}
.h16{height:61.423863px;}
.h11{height:62.211094px;}
.h13{height:65.010937px;}
.h9{height:65.884219px;}
.hb{height:66.757500px;}
.h7{height:70.664062px;}
.h5{height:72.562500px;}
.hc{height:96.508125px;}
.h2{height:141.876000px;}
.he{height:158.790000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:52.776000px;}
.w4{width:158.970000px;}
.w2{width:172.830000px;}
.w8{width:192.090000px;}
.w3{width:464.865000px;}
.w9{width:585.645000px;}
.w7{width:731.625000px;}
.wa{width:777.750000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.100000px;}
.x4{left:38.340000px;}
.x1{left:48.240000px;}
.xb{left:53.999987px;}
.xd{left:57.780000px;}
.xa{left:62.100000px;}
.x10{left:73.079987px;}
.x6{left:80.865000px;}
.xc{left:107.496000px;}
.x7{left:133.605000px;}
.x2{left:161.130000px;}
.x3{left:221.070000px;}
.x5{left:248.295000px;}
.xe{left:249.870000px;}
.x11{left:358.994987px;}
.xf{left:473.504987px;}
.x13{left:500.504987px;}
.x12{left:527.504987px;}
.x8{left:685.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-1.120000pt;}
.lsc{letter-spacing:-1.008000pt;}
.ls14{letter-spacing:-0.544000pt;}
.ls1a{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.185067pt;}
.ls8{letter-spacing:-0.183467pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.033280pt;}
.lsa{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.094933pt;}
.lsb{letter-spacing:0.097280pt;}
.ls1{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.230933pt;}
.ls18{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.272533pt;}
.ls19{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.821333pt;}
.ls11{letter-spacing:0.960000pt;}
.ls3{letter-spacing:5.712640pt;}
.ls4{letter-spacing:14.672640pt;}
.ls2{letter-spacing:26.832640pt;}
.ls17{letter-spacing:40.912640pt;}
.ls10{letter-spacing:54.560000pt;}
.lsf{letter-spacing:101.840640pt;}
.ls12{letter-spacing:105.040640pt;}
.ls13{letter-spacing:110.880000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.240000pt;}
.wsb{word-spacing:-14.101333pt;}
.wsa{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.552533pt;}
.wsc{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws2{word-spacing:-13.096533pt;}
.ws6{word-spacing:-12.272000pt;}
.wsd{word-spacing:-12.000000pt;}
.ws5{word-spacing:0.000000pt;}
._d{margin-left:-4.886187pt;}
._e{margin-left:-3.415040pt;}
._c{margin-left:-1.943040pt;}
._b{margin-left:-0.912000pt;}
._4{width:1.115520pt;}
._f{width:2.056533pt;}
._2c{width:3.032107pt;}
._19{width:3.925120pt;}
._18{width:4.892800pt;}
._24{width:5.843200pt;}
._13{width:7.414400pt;}
._3{width:8.480000pt;}
._1c{width:9.527680pt;}
._1{width:11.040000pt;}
._14{width:12.164480pt;}
._16{width:14.661120pt;}
._17{width:15.670400pt;}
._11{width:17.157760pt;}
._10{width:18.273280pt;}
._1f{width:19.456640pt;}
._12{width:20.545067pt;}
._1a{width:21.832320pt;}
._23{width:22.978560pt;}
._1d{width:24.222720pt;}
._15{width:25.453227pt;}
._30{width:26.445013pt;}
._27{width:27.516160pt;}
._22{width:28.950400pt;}
._21{width:29.853440pt;}
._2b{width:31.181440pt;}
._25{width:32.894720pt;}
._26{width:33.784320pt;}
._2d{width:34.849280pt;}
._2e{width:36.280960pt;}
._28{width:37.290240pt;}
._1e{width:38.702080pt;}
._33{width:40.211840pt;}
._36{width:41.168000pt;}
._20{width:42.177280pt;}
._32{width:43.779840pt;}
._1b{width:44.939520pt;}
._2f{width:45.948800pt;}
._38{width:47.020160pt;}
._37{width:48.179840pt;}
._35{width:49.507840pt;}
._39{width:51.367040pt;}
._3b{width:52.625280pt;}
._2a{width:57.050880pt;}
._29{width:58.462720pt;}
._34{width:65.443840pt;}
._31{width:67.090560pt;}
._8{width:78.400000pt;}
._6{width:86.560000pt;}
._0{width:91.200000pt;}
._9{width:96.160000pt;}
._3a{width:137.793280pt;}
._2{width:146.720000pt;}
._5{width:163.520000pt;}
._a{width:204.320000pt;}
._7{width:263.840000pt;}
.fs0{font-size:2.560000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.800000pt;}
.y22{bottom:5.120000pt;}
.y45{bottom:6.240000pt;}
.y10{bottom:6.400000pt;}
.y19{bottom:7.840000pt;}
.y8{bottom:13.920000pt;}
.yd{bottom:14.560000pt;}
.y24{bottom:22.720000pt;}
.y21{bottom:22.880000pt;}
.y11{bottom:32.480000pt;}
.y46{bottom:32.640000pt;}
.y7{bottom:35.520000pt;}
.yc{bottom:40.160000pt;}
.y20{bottom:40.480000pt;}
.yf{bottom:46.400000pt;}
.y44{bottom:46.560000pt;}
.y6{bottom:57.120000pt;}
.y1f{bottom:58.080000pt;}
.yb{bottom:65.946667pt;}
.y41{bottom:72.032000pt;}
.y1e{bottom:75.680000pt;}
.y5{bottom:76.026667pt;}
.y7c{bottom:77.792000pt;}
.ya{bottom:83.066667pt;}
.y8f{bottom:85.792000pt;}
.y40{bottom:89.632000pt;}
.y1d{bottom:93.280000pt;}
.y7b{bottom:95.392000pt;}
.y4{bottom:96.026667pt;}
.y9{bottom:98.906667pt;}
.y8e{bottom:103.392000pt;}
.yab{bottom:104.992000pt;}
.y3f{bottom:107.232000pt;}
.y1c{bottom:111.040000pt;}
.y7a{bottom:112.992000pt;}
.y3{bottom:113.626667pt;}
.y8d{bottom:120.992000pt;}
.yaa{bottom:122.592000pt;}
.y3e{bottom:124.992000pt;}
.y1b{bottom:128.640000pt;}
.y79{bottom:130.592000pt;}
.y8c{bottom:138.586667pt;}
.ya9{bottom:140.186667pt;}
.y3d{bottom:142.586667pt;}
.y78{bottom:148.186667pt;}
.y8b{bottom:156.186667pt;}
.ya8{bottom:157.946667pt;}
.y3c{bottom:160.186667pt;}
.y77{bottom:165.946667pt;}
.y8a{bottom:173.946667pt;}
.ya7{bottom:175.546667pt;}
.y3b{bottom:177.786667pt;}
.y76{bottom:183.546667pt;}
.y89{bottom:191.546667pt;}
.ya6{bottom:193.146667pt;}
.y3a{bottom:195.386667pt;}
.y75{bottom:201.146667pt;}
.y88{bottom:209.146667pt;}
.y39{bottom:213.146667pt;}
.y87{bottom:218.746667pt;}
.y74{bottom:226.746667pt;}
.y38{bottom:230.746667pt;}
.y86{bottom:236.346667pt;}
.y73{bottom:244.346667pt;}
.y37{bottom:248.346667pt;}
.y85{bottom:254.106667pt;}
.y72{bottom:262.106667pt;}
.y36{bottom:265.946667pt;}
.y84{bottom:271.706667pt;}
.y71{bottom:279.706667pt;}
.y35{bottom:283.546667pt;}
.y83{bottom:289.306667pt;}
.y70{bottom:297.306667pt;}
.y34{bottom:301.346667pt;}
.y82{bottom:306.946667pt;}
.y6f{bottom:314.946667pt;}
.y33{bottom:318.946667pt;}
.y81{bottom:324.546667pt;}
.y6e{bottom:332.546667pt;}
.y32{bottom:336.546667pt;}
.ybe{bottom:337.826667pt;}
.y80{bottom:342.306667pt;}
.y6d{bottom:350.306667pt;}
.y31{bottom:354.146667pt;}
.ybd{bottom:355.586667pt;}
.y7f{bottom:359.906667pt;}
.y6c{bottom:367.906667pt;}
.y30{bottom:371.746667pt;}
.ybc{bottom:373.186667pt;}
.y7e{bottom:377.506667pt;}
.y6b{bottom:385.506667pt;}
.y2f{bottom:389.506667pt;}
.ybb{bottom:390.786667pt;}
.y7d{bottom:395.106667pt;}
.y6a{bottom:403.106667pt;}
.y2e{bottom:407.106667pt;}
.yba{bottom:408.386667pt;}
.ya5{bottom:412.706667pt;}
.y69{bottom:420.706667pt;}
.y2d{bottom:424.706667pt;}
.yb9{bottom:425.986667pt;}
.ya4{bottom:430.466667pt;}
.y68{bottom:438.466667pt;}
.y2c{bottom:442.306667pt;}
.yb8{bottom:443.746667pt;}
.ya3{bottom:448.066667pt;}
.y67{bottom:456.066667pt;}
.y2b{bottom:459.906667pt;}
.yb7{bottom:461.346667pt;}
.ya2{bottom:465.666667pt;}
.y66{bottom:473.666667pt;}
.y2a{bottom:477.506667pt;}
.yb6{bottom:478.946667pt;}
.ya1{bottom:483.266667pt;}
.y65{bottom:491.266667pt;}
.y29{bottom:495.266667pt;}
.yb5{bottom:496.546667pt;}
.ya0{bottom:500.866667pt;}
.y64{bottom:508.866667pt;}
.y28{bottom:512.866667pt;}
.yb4{bottom:514.146667pt;}
.y9f{bottom:518.626667pt;}
.y63{bottom:526.626667pt;}
.y27{bottom:530.466667pt;}
.yb3{bottom:531.906667pt;}
.y9e{bottom:536.226667pt;}
.y62{bottom:544.253333pt;}
.y26{bottom:548.093333pt;}
.yb2{bottom:549.053333pt;}
.y9d{bottom:553.853333pt;}
.y61{bottom:561.853333pt;}
.yb1{bottom:564.893333pt;}
.y25{bottom:565.693333pt;}
.y9c{bottom:571.453333pt;}
.y60{bottom:579.453333pt;}
.yb0{bottom:580.733333pt;}
.y9b{bottom:589.053333pt;}
.y23{bottom:596.893333pt;}
.y5f{bottom:597.053333pt;}
.y9a{bottom:606.813333pt;}
.y5e{bottom:614.813333pt;}
.y99{bottom:624.413333pt;}
.y5d{bottom:632.413333pt;}
.y1a{bottom:632.733333pt;}
.y98{bottom:642.013333pt;}
.y5c{bottom:650.013333pt;}
.y97{bottom:659.613333pt;}
.y5b{bottom:667.613333pt;}
.y96{bottom:677.213333pt;}
.y5a{bottom:685.213333pt;}
.y95{bottom:694.973333pt;}
.y59{bottom:702.973333pt;}
.y94{bottom:712.573333pt;}
.y58{bottom:720.573333pt;}
.y93{bottom:730.173333pt;}
.y57{bottom:738.173333pt;}
.y92{bottom:747.773333pt;}
.y56{bottom:755.773333pt;}
.y91{bottom:765.373333pt;}
.y55{bottom:773.373333pt;}
.y18{bottom:774.533333pt;}
.y90{bottom:783.173333pt;}
.y54{bottom:791.173333pt;}
.y17{bottom:800.613333pt;}
.yaf{bottom:800.773333pt;}
.y53{bottom:808.773333pt;}
.y16{bottom:818.373333pt;}
.y52{bottom:826.373333pt;}
.yae{bottom:835.973333pt;}
.y15{bottom:836.453333pt;}
.y51{bottom:843.973333pt;}
.yad{bottom:853.573333pt;}
.y14{bottom:855.333333pt;}
.y50{bottom:861.573333pt;}
.yac{bottom:871.333333pt;}
.y13{bottom:876.133333pt;}
.y4f{bottom:879.333333pt;}
.y4e{bottom:896.933333pt;}
.y12{bottom:904.453333pt;}
.y4d{bottom:914.533333pt;}
.ye{bottom:928.293333pt;}
.y4c{bottom:932.133333pt;}
.y1{bottom:948.133333pt;}
.y4b{bottom:949.733333pt;}
.y4a{bottom:967.493333pt;}
.y49{bottom:985.093333pt;}
.y48{bottom:1002.693333pt;}
.y47{bottom:1020.320000pt;}
.y43{bottom:1044.000000pt;}
.y42{bottom:1060.960000pt;}
.h3{height:2.511250pt;}
.h14{height:19.872000pt;}
.ha{height:20.032000pt;}
.hd{height:20.320000pt;}
.h10{height:35.200000pt;}
.h15{height:43.782500pt;}
.h8{height:47.109375pt;}
.hf{height:47.621250pt;}
.h12{height:52.108438pt;}
.h6{height:52.134375pt;}
.h4{height:53.535000pt;}
.h16{height:54.598989pt;}
.h11{height:55.298750pt;}
.h13{height:57.787500pt;}
.h9{height:58.563750pt;}
.hb{height:59.340000pt;}
.h7{height:62.812500pt;}
.h5{height:64.500000pt;}
.hc{height:85.785000pt;}
.h2{height:126.112000pt;}
.he{height:141.146667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:46.912000pt;}
.w4{width:141.306667pt;}
.w2{width:153.626667pt;}
.w8{width:170.746667pt;}
.w3{width:413.213333pt;}
.w9{width:520.573333pt;}
.w7{width:650.333333pt;}
.wa{width:691.333333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.200000pt;}
.x4{left:34.080000pt;}
.x1{left:42.880000pt;}
.xb{left:47.999988pt;}
.xd{left:51.360000pt;}
.xa{left:55.200000pt;}
.x10{left:64.959988pt;}
.x6{left:71.880000pt;}
.xc{left:95.552000pt;}
.x7{left:118.760000pt;}
.x2{left:143.226667pt;}
.x3{left:196.506667pt;}
.x5{left:220.706667pt;}
.xe{left:222.106667pt;}
.x11{left:319.106655pt;}
.xf{left:420.893322pt;}
.x13{left:444.893322pt;}
.x12{left:468.893322pt;}
.x8{left:609.733333pt;}
}




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