
    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_cf263fc617a56c9869920c0f.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_71d7a115d20c02aaaed296de.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5885797e3dc2b443447f24d6.woff')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_b6807ce137c8626d79362800.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_91398e4c7ba23db506603b67.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_910c19e3e2f566c7ec85c0e3.woff')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_5f03bf2eac21a498ee20fcea.woff')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff9{font-family:ff9;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsc{letter-spacing:-0.774000px;}
.ls3{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.053280px;}
.ls5{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.lse{letter-spacing:0.206400px;}
.lsa{letter-spacing:0.206640px;}
.ls4{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.513600px;}
.ls8{letter-spacing:0.900000px;}
.ls12{letter-spacing:6.654240px;}
.ls10{letter-spacing:31.770720px;}
.lsf{letter-spacing:61.290720px;}
.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;}
.ws0{word-spacing:-15.840000px;}
.wsa{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.093600px;}
.ws5{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._13{margin-left:-3.120960px;}
._11{margin-left:-2.087280px;}
._0{margin-left:-1.080000px;}
._4{width:1.200000px;}
._1{width:2.220000px;}
._10{width:3.854160px;}
._12{width:5.737200px;}
._18{width:7.051680px;}
._16{width:8.421360px;}
._17{width:9.604800px;}
._7{width:10.800000px;}
._15{width:12.489840px;}
._14{width:13.744800px;}
._1d{width:16.723680px;}
._1c{width:17.928000px;}
._1f{width:51.799680px;}
._1e{width:52.863840px;}
._8{width:76.284960px;}
._1a{width:77.601360px;}
._9{width:154.080000px;}
._d{width:195.120000px;}
._2{width:255.512640px;}
._19{width:256.519920px;}
._3{width:357.300000px;}
._6{width:436.440000px;}
._5{width:443.406240px;}
._a{width:604.364160px;}
._1b{width:605.371440px;}
._e{width:653.880000px;}
._f{width:703.560000px;}
._b{width:1096.860000px;}
._c{width:1176.060000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:5.760000px;}
.ye{bottom:6.300000px;}
.y6{bottom:12.420000px;}
.y6b{bottom:15.300000px;}
.y6f{bottom:15.660000px;}
.y9b{bottom:17.100000px;}
.y8{bottom:18.180000px;}
.y99{bottom:20.160000px;}
.y9e{bottom:22.185000px;}
.y6d{bottom:25.560000px;}
.y72{bottom:25.740000px;}
.yc{bottom:36.000000px;}
.y5{bottom:40.320000px;}
.y9d{bottom:42.165000px;}
.y71{bottom:45.540000px;}
.yb{bottom:57.780000px;}
.y4{bottom:68.400000px;}
.yd{bottom:75.420000px;}
.ya{bottom:79.560000px;}
.y3{bottom:96.330000px;}
.y3b{bottom:101.520000px;}
.y78{bottom:113.580000px;}
.y58{bottom:113.940000px;}
.y97{bottom:117.540000px;}
.ya2{bottom:118.980000px;}
.y3a{bottom:121.320000px;}
.y2{bottom:125.670000px;}
.y77{bottom:133.380000px;}
.y57{bottom:133.740000px;}
.y96{bottom:137.340000px;}
.ya1{bottom:137.700000px;}
.y39{bottom:141.300000px;}
.y76{bottom:153.210000px;}
.y56{bottom:153.570000px;}
.ya0{bottom:156.270000px;}
.y95{bottom:157.350000px;}
.y38{bottom:161.130000px;}
.y75{bottom:173.190000px;}
.y55{bottom:173.370000px;}
.y9f{bottom:174.810000px;}
.y94{bottom:177.150000px;}
.y37{bottom:180.930000px;}
.y74{bottom:192.990000px;}
.y54{bottom:193.170000px;}
.y93{bottom:196.950000px;}
.y36{bottom:200.730000px;}
.y73{bottom:212.790000px;}
.y53{bottom:213.150000px;}
.y92{bottom:216.750000px;}
.y35{bottom:220.530000px;}
.y70{bottom:227.550000px;}
.y52{bottom:232.950000px;}
.y91{bottom:236.550000px;}
.y34{bottom:240.510000px;}
.y51{bottom:249.510000px;}
.y90{bottom:256.530000px;}
.y33{bottom:260.310000px;}
.y8f{bottom:276.330000px;}
.y32{bottom:280.110000px;}
.y6c{bottom:287.850000px;}
.y8e{bottom:296.130000px;}
.y31{bottom:299.910000px;}
.y8d{bottom:315.930000px;}
.y30{bottom:319.710000px;}
.y6a{bottom:328.170000px;}
.y8c{bottom:335.730000px;}
.y2f{bottom:339.690000px;}
.y8b{bottom:355.710000px;}
.y2e{bottom:359.490000px;}
.y69{bottom:373.350000px;}
.y8a{bottom:375.510000px;}
.y2d{bottom:379.290000px;}
.y68{bottom:393.330000px;}
.y50{bottom:394.770000px;}
.y89{bottom:395.310000px;}
.y2c{bottom:399.090000px;}
.y4f{bottom:411.375000px;}
.y67{bottom:413.175000px;}
.y88{bottom:415.155000px;}
.y2b{bottom:418.935000px;}
.y66{bottom:432.975000px;}
.y87{bottom:434.955000px;}
.y2a{bottom:438.915000px;}
.y65{bottom:452.775000px;}
.y86{bottom:454.935000px;}
.y29{bottom:458.715000px;}
.y64{bottom:472.575000px;}
.y85{bottom:474.735000px;}
.y28{bottom:478.515000px;}
.y63{bottom:492.555000px;}
.y84{bottom:494.535000px;}
.y27{bottom:498.315000px;}
.y62{bottom:512.355000px;}
.y83{bottom:514.335000px;}
.y26{bottom:518.115000px;}
.y61{bottom:532.155000px;}
.y82{bottom:534.135000px;}
.y25{bottom:538.095000px;}
.y60{bottom:551.955000px;}
.y81{bottom:554.115000px;}
.y4e{bottom:555.375000px;}
.y24{bottom:557.895000px;}
.y5f{bottom:568.515000px;}
.y80{bottom:573.915000px;}
.y4d{bottom:575.175000px;}
.y23{bottom:577.695000px;}
.y4c{bottom:591.735000px;}
.y7f{bottom:593.715000px;}
.y22{bottom:597.495000px;}
.y7e{bottom:613.515000px;}
.y21{bottom:617.295000px;}
.y7d{bottom:633.315000px;}
.y20{bottom:637.275000px;}
.y7c{bottom:653.325000px;}
.y1f{bottom:657.105000px;}
.y7b{bottom:673.125000px;}
.y1e{bottom:676.905000px;}
.y7a{bottom:692.925000px;}
.y1d{bottom:696.705000px;}
.y79{bottom:712.725000px;}
.y5e{bottom:712.905000px;}
.y1c{bottom:716.505000px;}
.y4b{bottom:732.525000px;}
.y5d{bottom:732.705000px;}
.y1b{bottom:736.485000px;}
.y5c{bottom:749.265000px;}
.y4a{bottom:752.505000px;}
.y1a{bottom:756.285000px;}
.y49{bottom:772.305000px;}
.y19{bottom:776.085000px;}
.y48{bottom:792.105000px;}
.y18{bottom:795.885000px;}
.y47{bottom:811.905000px;}
.y17{bottom:820.905000px;}
.y46{bottom:831.705000px;}
.y16{bottom:840.885000px;}
.y45{bottom:851.685000px;}
.y15{bottom:860.685000px;}
.y44{bottom:871.485000px;}
.y9c{bottom:878.145000px;}
.y14{bottom:880.485000px;}
.y5b{bottom:882.825000px;}
.y43{bottom:891.285000px;}
.y13{bottom:895.605000px;}
.y5a{bottom:902.670000px;}
.y42{bottom:911.130000px;}
.y12{bottom:916.890000px;}
.y59{bottom:919.230000px;}
.y41{bottom:930.930000px;}
.y9a{bottom:934.350000px;}
.y11{bottom:940.470000px;}
.y40{bottom:950.910000px;}
.y98{bottom:966.210000px;}
.y3f{bottom:970.710000px;}
.y10{bottom:972.150000px;}
.y3e{bottom:990.510000px;}
.yf{bottom:1003.830000px;}
.y3d{bottom:1010.310000px;}
.y3c{bottom:1030.110000px;}
.y9{bottom:1047.570000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h7{height:2.581875px;}
.ha{height:21.780000px;}
.h13{height:31.140000px;}
.h8{height:33.480000px;}
.h12{height:34.200000px;}
.he{height:34.855313px;}
.hf{height:38.700000px;}
.h10{height:39.600000px;}
.hc{height:42.164648px;}
.h4{height:46.736719px;}
.h16{height:48.496641px;}
.hd{height:53.404453px;}
.h5{height:53.573906px;}
.h14{height:56.196000px;}
.h9{height:59.383125px;}
.h15{height:59.439023px;}
.h11{height:59.580000px;}
.h3{height:63.500977px;}
.hb{height:67.565039px;}
.h6{height:112.536000px;}
.h2{height:146.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.wb{width:38.376000px;}
.wa{width:69.480000px;}
.we{width:84.996000px;}
.w6{width:88.020000px;}
.w8{width:104.040000px;}
.w7{width:115.776000px;}
.wc{width:118.620000px;}
.w3{width:131.796000px;}
.w9{width:150.510000px;}
.wd{width:156.270000px;}
.w2{width:654.630000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:53.280000px;}
.x6{left:54.359987px;}
.x9{left:66.959987px;}
.x21{left:69.479987px;}
.xd{left:96.515987px;}
.x4{left:118.290000px;}
.x17{left:124.776000px;}
.xc{left:145.115987px;}
.xb{left:148.535987px;}
.x18{left:212.790000px;}
.xa{left:225.569987px;}
.x1d{left:246.810000px;}
.x13{left:257.249987px;}
.xf{left:259.409987px;}
.x11{left:271.154987px;}
.x1e{left:285.195000px;}
.x19{left:328.575000px;}
.x7{left:401.114987px;}
.x1f{left:403.815000px;}
.x1a{left:432.615000px;}
.x8{left:446.504987px;}
.x1b{left:548.385000px;}
.x14{left:550.724987px;}
.x20{left:560.085000px;}
.xe{left:586.544987px;}
.x10{left:625.424987px;}
.x16{left:631.049987px;}
.x15{left:633.569987px;}
.x12{left:649.049987px;}
.x1c{left:698.910000px;}
.x3{left:707.910000px;}
.x5{left:829.260000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsc{letter-spacing:-0.688000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.047360pt;}
.ls5{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.183467pt;}
.lsa{letter-spacing:0.183680pt;}
.ls4{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.456533pt;}
.ls8{letter-spacing:0.800000pt;}
.ls12{letter-spacing:5.914880pt;}
.ls10{letter-spacing:28.240640pt;}
.lsf{letter-spacing:54.480640pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.080000pt;}
.wsa{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.416533pt;}
.ws5{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._13{margin-left:-2.774187pt;}
._11{margin-left:-1.855360pt;}
._0{margin-left:-0.960000pt;}
._4{width:1.066667pt;}
._1{width:1.973333pt;}
._10{width:3.425920pt;}
._12{width:5.099733pt;}
._18{width:6.268160pt;}
._16{width:7.485653pt;}
._17{width:8.537600pt;}
._7{width:9.600000pt;}
._15{width:11.102080pt;}
._14{width:12.217600pt;}
._1d{width:14.865493pt;}
._1c{width:15.936000pt;}
._1f{width:46.044160pt;}
._1e{width:46.990080pt;}
._8{width:67.808853pt;}
._1a{width:68.978987pt;}
._9{width:136.960000pt;}
._d{width:173.440000pt;}
._2{width:227.122347pt;}
._19{width:228.017707pt;}
._3{width:317.600000pt;}
._6{width:387.946667pt;}
._5{width:394.138880pt;}
._a{width:537.212587pt;}
._1b{width:538.107947pt;}
._e{width:581.226667pt;}
._f{width:625.386667pt;}
._b{width:974.986667pt;}
._c{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:5.120000pt;}
.ye{bottom:5.600000pt;}
.y6{bottom:11.040000pt;}
.y6b{bottom:13.600000pt;}
.y6f{bottom:13.920000pt;}
.y9b{bottom:15.200000pt;}
.y8{bottom:16.160000pt;}
.y99{bottom:17.920000pt;}
.y9e{bottom:19.720000pt;}
.y6d{bottom:22.720000pt;}
.y72{bottom:22.880000pt;}
.yc{bottom:32.000000pt;}
.y5{bottom:35.840000pt;}
.y9d{bottom:37.480000pt;}
.y71{bottom:40.480000pt;}
.yb{bottom:51.360000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:67.040000pt;}
.ya{bottom:70.720000pt;}
.y3{bottom:85.626667pt;}
.y3b{bottom:90.240000pt;}
.y78{bottom:100.960000pt;}
.y58{bottom:101.280000pt;}
.y97{bottom:104.480000pt;}
.ya2{bottom:105.760000pt;}
.y3a{bottom:107.840000pt;}
.y2{bottom:111.706667pt;}
.y77{bottom:118.560000pt;}
.y57{bottom:118.880000pt;}
.y96{bottom:122.080000pt;}
.ya1{bottom:122.400000pt;}
.y39{bottom:125.600000pt;}
.y76{bottom:136.186667pt;}
.y56{bottom:136.506667pt;}
.ya0{bottom:138.906667pt;}
.y95{bottom:139.866667pt;}
.y38{bottom:143.226667pt;}
.y75{bottom:153.946667pt;}
.y55{bottom:154.106667pt;}
.y9f{bottom:155.386667pt;}
.y94{bottom:157.466667pt;}
.y37{bottom:160.826667pt;}
.y74{bottom:171.546667pt;}
.y54{bottom:171.706667pt;}
.y93{bottom:175.066667pt;}
.y36{bottom:178.426667pt;}
.y73{bottom:189.146667pt;}
.y53{bottom:189.466667pt;}
.y92{bottom:192.666667pt;}
.y35{bottom:196.026667pt;}
.y70{bottom:202.266667pt;}
.y52{bottom:207.066667pt;}
.y91{bottom:210.266667pt;}
.y34{bottom:213.786667pt;}
.y51{bottom:221.786667pt;}
.y90{bottom:228.026667pt;}
.y33{bottom:231.386667pt;}
.y8f{bottom:245.626667pt;}
.y32{bottom:248.986667pt;}
.y6c{bottom:255.866667pt;}
.y8e{bottom:263.226667pt;}
.y31{bottom:266.586667pt;}
.y8d{bottom:280.826667pt;}
.y30{bottom:284.186667pt;}
.y6a{bottom:291.706667pt;}
.y8c{bottom:298.426667pt;}
.y2f{bottom:301.946667pt;}
.y8b{bottom:316.186667pt;}
.y2e{bottom:319.546667pt;}
.y69{bottom:331.866667pt;}
.y8a{bottom:333.786667pt;}
.y2d{bottom:337.146667pt;}
.y68{bottom:349.626667pt;}
.y50{bottom:350.906667pt;}
.y89{bottom:351.386667pt;}
.y2c{bottom:354.746667pt;}
.y4f{bottom:365.666667pt;}
.y67{bottom:367.266667pt;}
.y88{bottom:369.026667pt;}
.y2b{bottom:372.386667pt;}
.y66{bottom:384.866667pt;}
.y87{bottom:386.626667pt;}
.y2a{bottom:390.146667pt;}
.y65{bottom:402.466667pt;}
.y86{bottom:404.386667pt;}
.y29{bottom:407.746667pt;}
.y64{bottom:420.066667pt;}
.y85{bottom:421.986667pt;}
.y28{bottom:425.346667pt;}
.y63{bottom:437.826667pt;}
.y84{bottom:439.586667pt;}
.y27{bottom:442.946667pt;}
.y62{bottom:455.426667pt;}
.y83{bottom:457.186667pt;}
.y26{bottom:460.546667pt;}
.y61{bottom:473.026667pt;}
.y82{bottom:474.786667pt;}
.y25{bottom:478.306667pt;}
.y60{bottom:490.626667pt;}
.y81{bottom:492.546667pt;}
.y4e{bottom:493.666667pt;}
.y24{bottom:495.906667pt;}
.y5f{bottom:505.346667pt;}
.y80{bottom:510.146667pt;}
.y4d{bottom:511.266667pt;}
.y23{bottom:513.506667pt;}
.y4c{bottom:525.986667pt;}
.y7f{bottom:527.746667pt;}
.y22{bottom:531.106667pt;}
.y7e{bottom:545.346667pt;}
.y21{bottom:548.706667pt;}
.y7d{bottom:562.946667pt;}
.y20{bottom:566.466667pt;}
.y7c{bottom:580.733333pt;}
.y1f{bottom:584.093333pt;}
.y7b{bottom:598.333333pt;}
.y1e{bottom:601.693333pt;}
.y7a{bottom:615.933333pt;}
.y1d{bottom:619.293333pt;}
.y79{bottom:633.533333pt;}
.y5e{bottom:633.693333pt;}
.y1c{bottom:636.893333pt;}
.y4b{bottom:651.133333pt;}
.y5d{bottom:651.293333pt;}
.y1b{bottom:654.653333pt;}
.y5c{bottom:666.013333pt;}
.y4a{bottom:668.893333pt;}
.y1a{bottom:672.253333pt;}
.y49{bottom:686.493333pt;}
.y19{bottom:689.853333pt;}
.y48{bottom:704.093333pt;}
.y18{bottom:707.453333pt;}
.y47{bottom:721.693333pt;}
.y17{bottom:729.693333pt;}
.y46{bottom:739.293333pt;}
.y16{bottom:747.453333pt;}
.y45{bottom:757.053333pt;}
.y15{bottom:765.053333pt;}
.y44{bottom:774.653333pt;}
.y9c{bottom:780.573333pt;}
.y14{bottom:782.653333pt;}
.y5b{bottom:784.733333pt;}
.y43{bottom:792.253333pt;}
.y13{bottom:796.093333pt;}
.y5a{bottom:802.373333pt;}
.y42{bottom:809.893333pt;}
.y12{bottom:815.013333pt;}
.y59{bottom:817.093333pt;}
.y41{bottom:827.493333pt;}
.y9a{bottom:830.533333pt;}
.y11{bottom:835.973333pt;}
.y40{bottom:845.253333pt;}
.y98{bottom:858.853333pt;}
.y3f{bottom:862.853333pt;}
.y10{bottom:864.133333pt;}
.y3e{bottom:880.453333pt;}
.yf{bottom:892.293333pt;}
.y3d{bottom:898.053333pt;}
.y3c{bottom:915.653333pt;}
.y9{bottom:931.173333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h7{height:2.295000pt;}
.ha{height:19.360000pt;}
.h13{height:27.680000pt;}
.h8{height:29.760000pt;}
.h12{height:30.400000pt;}
.he{height:30.982500pt;}
.hf{height:34.400000pt;}
.h10{height:35.200000pt;}
.hc{height:37.479688pt;}
.h4{height:41.543750pt;}
.h16{height:43.108125pt;}
.hd{height:47.470625pt;}
.h5{height:47.621250pt;}
.h14{height:49.952000pt;}
.h9{height:52.785000pt;}
.h15{height:52.834688pt;}
.h11{height:52.960000pt;}
.h3{height:56.445312pt;}
.hb{height:60.057813pt;}
.h6{height:100.032000pt;}
.h2{height:130.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.wb{width:34.112000pt;}
.wa{width:61.760000pt;}
.we{width:75.552000pt;}
.w6{width:78.240000pt;}
.w8{width:92.480000pt;}
.w7{width:102.912000pt;}
.wc{width:105.440000pt;}
.w3{width:117.152000pt;}
.w9{width:133.786667pt;}
.wd{width:138.906667pt;}
.w2{width:581.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:47.360000pt;}
.x6{left:48.319988pt;}
.x9{left:59.519988pt;}
.x21{left:61.759988pt;}
.xd{left:85.791988pt;}
.x4{left:105.146667pt;}
.x17{left:110.912000pt;}
.xc{left:128.991988pt;}
.xb{left:132.031988pt;}
.x18{left:189.146667pt;}
.xa{left:200.506655pt;}
.x1d{left:219.386667pt;}
.x13{left:228.666655pt;}
.xf{left:230.586655pt;}
.x11{left:241.026655pt;}
.x1e{left:253.506667pt;}
.x19{left:292.066667pt;}
.x7{left:356.546655pt;}
.x1f{left:358.946667pt;}
.x1a{left:384.546667pt;}
.x8{left:396.893322pt;}
.x1b{left:487.453333pt;}
.x14{left:489.533322pt;}
.x20{left:497.853333pt;}
.xe{left:521.373322pt;}
.x10{left:555.933322pt;}
.x16{left:560.933322pt;}
.x15{left:563.173322pt;}
.x12{left:576.933322pt;}
.x1c{left:621.253333pt;}
.x3{left:629.253333pt;}
.x5{left:737.120000pt;}
}




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