
    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_f9876c1180f566f1fa16169a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.800293;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_9e2139bc3b58cd84062c346a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.851562;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_b700a748babaaa7df171dc4c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_2ccd0aa9b317f49d1effaf32.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_b05d5f497862cbb8a151d666.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.752000;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_0acd29a1e3733092a357c91e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_136deca15d8b25fe264228f3.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8687ab75ea0d73ce2df664b3.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0fdc9ef377c3de6b16287216.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.097168;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_208f117f1ac5132965c3a87e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.136230;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_87a500affe0de6ac85ba820a.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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.341400px;}
.lsb{letter-spacing:-0.183600px;}
.lsc{letter-spacing:-0.180000px;}
.ls19{letter-spacing:-0.037440px;}
.ls1b{letter-spacing:-0.028080px;}
.ls13{letter-spacing:-0.018000px;}
.lsa{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.028080px;}
.ls1{letter-spacing:0.034560px;}
.ls4{letter-spacing:0.037440px;}
.ls3{letter-spacing:0.072000px;}
.ls1a{letter-spacing:0.148200px;}
.ls17{letter-spacing:0.151920px;}
.lsf{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.217440px;}
.ls5{letter-spacing:0.252720px;}
.ls2{letter-spacing:0.288000px;}
.ls16{letter-spacing:0.354720px;}
.ls6{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.369360px;}
.ls1d{letter-spacing:0.378600px;}
.ls9{letter-spacing:0.378720px;}
.ls18{letter-spacing:0.489360px;}
.ls8{letter-spacing:4.860000px;}
.ls11{letter-spacing:9.180000px;}
.ls10{letter-spacing:19.980000px;}
.ls12{letter-spacing:76.661280px;}
.ls1c{letter-spacing:169.517280px;}
.ls14{letter-spacing:211.277280px;}
.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;}
}
.wse{word-spacing:-21.438600px;}
.ws3{word-spacing:-21.420000px;}
.ws5{word-spacing:-21.312720px;}
.wsc{word-spacing:-21.208200px;}
.ws4{word-spacing:-21.097440px;}
.ws6{word-spacing:-21.060000px;}
.wsd{word-spacing:-21.031920px;}
.wsb{word-spacing:-21.022560px;}
.ws8{word-spacing:-20.718600px;}
.ws7{word-spacing:-20.700000px;}
.wsa{word-spacing:-19.726560px;}
.ws0{word-spacing:-19.542960px;}
.ws2{word-spacing:-14.904000px;}
.ws1{word-spacing:-14.832000px;}
.ws9{word-spacing:0.000000px;}
._22{margin-left:-9.013680px;}
._1e{margin-left:-6.522960px;}
._12{margin-left:-5.475600px;}
._5{margin-left:-3.875040px;}
._b{margin-left:-2.779920px;}
._2{margin-left:-1.432080px;}
._3{width:1.149120px;}
._4{width:2.866080px;}
._30{width:3.907440px;}
._18{width:4.916160px;}
._38{width:5.986800px;}
._13{width:7.906320px;}
._8{width:9.299520px;}
._3a{width:10.445760px;}
._6{width:11.793600px;}
._7{width:13.225680px;}
._21{width:14.549760px;}
._d{width:16.511040px;}
._c{width:17.690400px;}
._1c{width:18.869760px;}
._25{width:19.880640px;}
._1f{width:22.323600px;}
._20{width:23.448960px;}
._31{width:24.567840px;}
._33{width:26.619840px;}
._34{width:27.799200px;}
._9{width:29.484000px;}
._a{width:30.494880px;}
._2c{width:32.432400px;}
._2d{width:34.102320px;}
._16{width:35.257440px;}
._17{width:36.578880px;}
._23{width:38.497680px;}
._24{width:39.761280px;}
._27{width:40.772160px;}
._29{width:42.541200px;}
._f{width:45.236880px;}
._e{width:46.332000px;}
._39{width:49.870080px;}
._40{width:51.133680px;}
._1d{width:52.328880px;}
._19{width:53.880240px;}
._14{width:56.060400px;}
._10{width:57.451680px;}
._11{width:59.054160px;}
._15{width:62.169600px;}
._2e{width:64.527840px;}
._2f{width:66.044160px;}
._36{width:67.644720px;}
._37{width:68.671200px;}
._26{width:70.340400px;}
._35{width:72.109440px;}
._28{width:75.731760px;}
._1a{width:77.737440px;}
._1b{width:79.077600px;}
._3b{width:82.723680px;}
._3c{width:84.240000px;}
._2b{width:87.525360px;}
._2a{width:88.704720px;}
._32{width:104.541840px;}
._3f{width:163.656000px;}
._3d{width:241.440000px;}
._0{width:292.222560px;}
._3e{width:318.604080px;}
._1{width:1213.426560px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,128,0);}
.fc7{color:rgb(89,89,89);}
.fc6{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs5{font-size:120.240000px;}
.fs2{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:8.100000px;}
.y35{bottom:8.130000px;}
.y38{bottom:8.280000px;}
.y6{bottom:10.440000px;}
.y32{bottom:21.960000px;}
.y3a{bottom:22.140000px;}
.y36{bottom:22.170000px;}
.y5{bottom:31.140000px;}
.y81{bottom:31.530000px;}
.y31{bottom:36.000000px;}
.y34{bottom:36.030000px;}
.y4b{bottom:66.960000px;}
.y80{bottom:68.505000px;}
.y4a{bottom:72.180000px;}
.y8d{bottom:75.600000px;}
.y78{bottom:84.780000px;}
.y49{bottom:85.500000px;}
.y4c{bottom:87.300000px;}
.y2c{bottom:87.480000px;}
.y8c{bottom:103.320000px;}
.y6a{bottom:113.010000px;}
.y79{bottom:113.580000px;}
.y2b{bottom:115.380000px;}
.y6d{bottom:115.530000px;}
.y68{bottom:128.850000px;}
.y48{bottom:131.040000px;}
.y69{bottom:131.475000px;}
.y6b{bottom:132.585000px;}
.y66{bottom:133.020000px;}
.y6e{bottom:140.760000px;}
.y7a{bottom:142.380000px;}
.y2a{bottom:143.100000px;}
.y70{bottom:149.475000px;}
.y72{bottom:155.160000px;}
.y47{bottom:158.970000px;}
.y65{bottom:160.770000px;}
.y29{bottom:170.850000px;}
.y7b{bottom:171.180000px;}
.y6c{bottom:175.320000px;}
.y75{bottom:184.830000px;}
.y46{bottom:186.690000px;}
.y64{bottom:188.490000px;}
.y6f{bottom:190.230000px;}
.y28{bottom:198.570000px;}
.y7c{bottom:199.980000px;}
.y71{bottom:212.760000px;}
.y45{bottom:214.410000px;}
.y63{bottom:216.210000px;}
.y27{bottom:226.470000px;}
.y7d{bottom:228.780000px;}
.y44{bottom:242.130000px;}
.y62{bottom:244.110000px;}
.y74{bottom:251.535000px;}
.y77{bottom:253.545000px;}
.y26{bottom:254.190000px;}
.y73{bottom:257.145000px;}
.y7e{bottom:257.550000px;}
.y43{bottom:270.030000px;}
.y61{bottom:271.830000px;}
.y25{bottom:281.910000px;}
.y76{bottom:285.840000px;}
.y7f{bottom:286.350000px;}
.y42{bottom:297.750000px;}
.y60{bottom:299.550000px;}
.y24{bottom:309.810000px;}
.y41{bottom:325.470000px;}
.y5f{bottom:327.450000px;}
.y23{bottom:337.530000px;}
.y8b{bottom:353.190000px;}
.y40{bottom:353.370000px;}
.y5e{bottom:355.170000px;}
.y22{bottom:365.250000px;}
.y3f{bottom:381.090000px;}
.y5d{bottom:382.890000px;}
.y21{bottom:392.970000px;}
.y3e{bottom:408.855000px;}
.y5c{bottom:410.655000px;}
.y20{bottom:420.915000px;}
.y3d{bottom:436.575000px;}
.y5b{bottom:438.555000px;}
.y1f{bottom:448.635000px;}
.y3c{bottom:464.475000px;}
.y5a{bottom:466.275000px;}
.y1e{bottom:476.355000px;}
.y3b{bottom:488.955000px;}
.y8a{bottom:492.195000px;}
.y59{bottom:493.995000px;}
.y1d{bottom:504.255000px;}
.y89{bottom:519.915000px;}
.y58{bottom:521.895000px;}
.y39{bottom:522.615000px;}
.y1c{bottom:531.975000px;}
.y88{bottom:547.635000px;}
.y57{bottom:549.615000px;}
.y1b{bottom:559.695000px;}
.y87{bottom:575.535000px;}
.y56{bottom:577.335000px;}
.y37{bottom:584.175000px;}
.y1a{bottom:587.415000px;}
.y86{bottom:603.255000px;}
.y55{bottom:605.055000px;}
.y19{bottom:615.315000px;}
.y85{bottom:630.975000px;}
.y54{bottom:632.955000px;}
.y18{bottom:643.035000px;}
.y33{bottom:645.735000px;}
.y84{bottom:658.905000px;}
.y53{bottom:660.705000px;}
.y17{bottom:670.785000px;}
.y83{bottom:686.625000px;}
.y52{bottom:688.425000px;}
.y16{bottom:698.505000px;}
.y30{bottom:707.325000px;}
.y82{bottom:714.345000px;}
.y51{bottom:716.145000px;}
.y15{bottom:726.405000px;}
.y50{bottom:744.045000px;}
.y14{bottom:754.125000px;}
.y2e{bottom:768.885000px;}
.y4e{bottom:771.765000px;}
.y4f{bottom:779.325000px;}
.y13{bottom:781.845000px;}
.y4d{bottom:794.985000px;}
.y67{bottom:796.500000px;}
.y12{bottom:809.745000px;}
.y2d{bottom:817.305000px;}
.y11{bottom:837.465000px;}
.y10{bottom:865.185000px;}
.yf{bottom:892.905000px;}
.ye{bottom:920.850000px;}
.yd{bottom:948.570000px;}
.yc{bottom:976.290000px;}
.yb{bottom:1004.190000px;}
.ya{bottom:1031.910000px;}
.y9{bottom:1059.630000px;}
.y8{bottom:1087.350000px;}
.y7{bottom:1115.250000px;}
.y4{bottom:1139.370000px;}
.y3{bottom:1159.200000px;}
.y2{bottom:1183.320000px;}
.y1{bottom:1210.680000px;}
.hd{height:27.720000px;}
.h11{height:38.158594px;}
.h7{height:49.150080px;}
.h5{height:50.229844px;}
.h16{height:52.998047px;}
.h15{height:53.709961px;}
.hc{height:54.421875px;}
.he{height:55.620000px;}
.hf{height:55.656000px;}
.h12{height:58.651172px;}
.hb{height:59.436914px;}
.h10{height:65.884219px;}
.h4{height:67.169883px;}
.ha{height:74.244727px;}
.h2{height:76.355508px;}
.h9{height:82.676953px;}
.h8{height:84.898125px;}
.h13{height:86.585445px;}
.h6{height:95.874961px;}
.h3{height:105.060586px;}
.h14{height:338.400000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:206.490000px;}
.w5{width:506.235000px;}
.w6{width:695.700000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:1.080000px;}
.x2c{left:20.232000px;}
.x2b{left:27.072000px;}
.x5{left:42.479987px;}
.x10{left:61.020000px;}
.x19{left:82.620000px;}
.x4{left:84.995987px;}
.xf{left:88.416000px;}
.x15{left:89.855987px;}
.x2d{left:93.780000px;}
.x1{left:106.415987px;}
.x12{left:107.820000px;}
.x1c{left:111.855000px;}
.x6{left:120.455987px;}
.x2e{left:123.225000px;}
.x1f{left:141.090000px;}
.x9{left:164.369987px;}
.x7{left:165.449987px;}
.x22{left:170.310000px;}
.x25{left:199.545000px;}
.x28{left:228.780000px;}
.xc{left:270.974987px;}
.x2f{left:286.094987px;}
.x1a{left:292.035000px;}
.x11{left:298.515000px;}
.x14{left:301.034987px;}
.x1d{left:321.270000px;}
.x20{left:350.490000px;}
.xa{left:365.834987px;}
.x23{left:379.725000px;}
.x26{left:408.960000px;}
.x29{left:438.195000px;}
.x8{left:446.504987px;}
.x1b{left:501.450000px;}
.x2{left:521.564987px;}
.x1e{left:530.670000px;}
.x21{left:559.905000px;}
.x24{left:589.140000px;}
.xd{left:615.164973px;}
.x27{left:618.375000px;}
.xe{left:622.004987px;}
.x3{left:641.669987px;}
.x2a{left:647.610000px;}
.x17{left:685.769973px;}
.x18{left:692.609987px;}
.xb{left:734.549987px;}
.x16{left:782.609987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.303467pt;}
.lsb{letter-spacing:-0.163200pt;}
.lsc{letter-spacing:-0.160000pt;}
.ls19{letter-spacing:-0.033280pt;}
.ls1b{letter-spacing:-0.024960pt;}
.ls13{letter-spacing:-0.016000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.024960pt;}
.ls1{letter-spacing:0.030720pt;}
.ls4{letter-spacing:0.033280pt;}
.ls3{letter-spacing:0.064000pt;}
.ls1a{letter-spacing:0.131733pt;}
.ls17{letter-spacing:0.135040pt;}
.lsf{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.193280pt;}
.ls5{letter-spacing:0.224640pt;}
.ls2{letter-spacing:0.256000pt;}
.ls16{letter-spacing:0.315307pt;}
.ls6{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.328320pt;}
.ls1d{letter-spacing:0.336533pt;}
.ls9{letter-spacing:0.336640pt;}
.ls18{letter-spacing:0.434987pt;}
.ls8{letter-spacing:4.320000pt;}
.ls11{letter-spacing:8.160000pt;}
.ls10{letter-spacing:17.760000pt;}
.ls12{letter-spacing:68.143360pt;}
.ls1c{letter-spacing:150.682027pt;}
.ls14{letter-spacing:187.802027pt;}
.wse{word-spacing:-19.056533pt;}
.ws3{word-spacing:-19.040000pt;}
.ws5{word-spacing:-18.944640pt;}
.wsc{word-spacing:-18.851733pt;}
.ws4{word-spacing:-18.753280pt;}
.ws6{word-spacing:-18.720000pt;}
.wsd{word-spacing:-18.695040pt;}
.wsb{word-spacing:-18.686720pt;}
.ws8{word-spacing:-18.416533pt;}
.ws7{word-spacing:-18.400000pt;}
.wsa{word-spacing:-17.534720pt;}
.ws0{word-spacing:-17.371520pt;}
.ws2{word-spacing:-13.248000pt;}
.ws1{word-spacing:-13.184000pt;}
.ws9{word-spacing:0.000000pt;}
._22{margin-left:-8.012160pt;}
._1e{margin-left:-5.798187pt;}
._12{margin-left:-4.867200pt;}
._5{margin-left:-3.444480pt;}
._b{margin-left:-2.471040pt;}
._2{margin-left:-1.272960pt;}
._3{width:1.021440pt;}
._4{width:2.547627pt;}
._30{width:3.473280pt;}
._18{width:4.369920pt;}
._38{width:5.321600pt;}
._13{width:7.027840pt;}
._8{width:8.266240pt;}
._3a{width:9.285120pt;}
._6{width:10.483200pt;}
._7{width:11.756160pt;}
._21{width:12.933120pt;}
._d{width:14.676480pt;}
._c{width:15.724800pt;}
._1c{width:16.773120pt;}
._25{width:17.671680pt;}
._1f{width:19.843200pt;}
._20{width:20.843520pt;}
._31{width:21.838080pt;}
._33{width:23.662080pt;}
._34{width:24.710400pt;}
._9{width:26.208000pt;}
._a{width:27.106560pt;}
._2c{width:28.828800pt;}
._2d{width:30.313173pt;}
._16{width:31.339947pt;}
._17{width:32.514560pt;}
._23{width:34.220160pt;}
._24{width:35.343360pt;}
._27{width:36.241920pt;}
._29{width:37.814400pt;}
._f{width:40.210560pt;}
._e{width:41.184000pt;}
._39{width:44.328960pt;}
._40{width:45.452160pt;}
._1d{width:46.514560pt;}
._19{width:47.893547pt;}
._14{width:49.831467pt;}
._10{width:51.068160pt;}
._11{width:52.492587pt;}
._15{width:55.261867pt;}
._2e{width:57.358080pt;}
._2f{width:58.705920pt;}
._36{width:60.128640pt;}
._37{width:61.041067pt;}
._26{width:62.524800pt;}
._35{width:64.097280pt;}
._28{width:67.317120pt;}
._1a{width:69.099947pt;}
._1b{width:70.291200pt;}
._3b{width:73.532160pt;}
._3c{width:74.880000pt;}
._2b{width:77.800320pt;}
._2a{width:78.848640pt;}
._32{width:92.926080pt;}
._3f{width:145.472000pt;}
._3d{width:214.613333pt;}
._0{width:259.753387pt;}
._3e{width:283.203627pt;}
._1{width:1078.601387pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs5{font-size:106.880000pt;}
.fs2{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:7.200000pt;}
.y35{bottom:7.226667pt;}
.y38{bottom:7.360000pt;}
.y6{bottom:9.280000pt;}
.y32{bottom:19.520000pt;}
.y3a{bottom:19.680000pt;}
.y36{bottom:19.706667pt;}
.y5{bottom:27.680000pt;}
.y81{bottom:28.026667pt;}
.y31{bottom:32.000000pt;}
.y34{bottom:32.026667pt;}
.y4b{bottom:59.520000pt;}
.y80{bottom:60.893333pt;}
.y4a{bottom:64.160000pt;}
.y8d{bottom:67.200000pt;}
.y78{bottom:75.360000pt;}
.y49{bottom:76.000000pt;}
.y4c{bottom:77.600000pt;}
.y2c{bottom:77.760000pt;}
.y8c{bottom:91.840000pt;}
.y6a{bottom:100.453333pt;}
.y79{bottom:100.960000pt;}
.y2b{bottom:102.560000pt;}
.y6d{bottom:102.693333pt;}
.y68{bottom:114.533333pt;}
.y48{bottom:116.480000pt;}
.y69{bottom:116.866667pt;}
.y6b{bottom:117.853333pt;}
.y66{bottom:118.240000pt;}
.y6e{bottom:125.120000pt;}
.y7a{bottom:126.560000pt;}
.y2a{bottom:127.200000pt;}
.y70{bottom:132.866667pt;}
.y72{bottom:137.920000pt;}
.y47{bottom:141.306667pt;}
.y65{bottom:142.906667pt;}
.y29{bottom:151.866667pt;}
.y7b{bottom:152.160000pt;}
.y6c{bottom:155.840000pt;}
.y75{bottom:164.293333pt;}
.y46{bottom:165.946667pt;}
.y64{bottom:167.546667pt;}
.y6f{bottom:169.093333pt;}
.y28{bottom:176.506667pt;}
.y7c{bottom:177.760000pt;}
.y71{bottom:189.120000pt;}
.y45{bottom:190.586667pt;}
.y63{bottom:192.186667pt;}
.y27{bottom:201.306667pt;}
.y7d{bottom:203.360000pt;}
.y44{bottom:215.226667pt;}
.y62{bottom:216.986667pt;}
.y74{bottom:223.586667pt;}
.y77{bottom:225.373333pt;}
.y26{bottom:225.946667pt;}
.y73{bottom:228.573333pt;}
.y7e{bottom:228.933333pt;}
.y43{bottom:240.026667pt;}
.y61{bottom:241.626667pt;}
.y25{bottom:250.586667pt;}
.y76{bottom:254.080000pt;}
.y7f{bottom:254.533333pt;}
.y42{bottom:264.666667pt;}
.y60{bottom:266.266667pt;}
.y24{bottom:275.386667pt;}
.y41{bottom:289.306667pt;}
.y5f{bottom:291.066667pt;}
.y23{bottom:300.026667pt;}
.y8b{bottom:313.946667pt;}
.y40{bottom:314.106667pt;}
.y5e{bottom:315.706667pt;}
.y22{bottom:324.666667pt;}
.y3f{bottom:338.746667pt;}
.y5d{bottom:340.346667pt;}
.y21{bottom:349.306667pt;}
.y3e{bottom:363.426667pt;}
.y5c{bottom:365.026667pt;}
.y20{bottom:374.146667pt;}
.y3d{bottom:388.066667pt;}
.y5b{bottom:389.826667pt;}
.y1f{bottom:398.786667pt;}
.y3c{bottom:412.866667pt;}
.y5a{bottom:414.466667pt;}
.y1e{bottom:423.426667pt;}
.y3b{bottom:434.626667pt;}
.y8a{bottom:437.506667pt;}
.y59{bottom:439.106667pt;}
.y1d{bottom:448.226667pt;}
.y89{bottom:462.146667pt;}
.y58{bottom:463.906667pt;}
.y39{bottom:464.546667pt;}
.y1c{bottom:472.866667pt;}
.y88{bottom:486.786667pt;}
.y57{bottom:488.546667pt;}
.y1b{bottom:497.506667pt;}
.y87{bottom:511.586667pt;}
.y56{bottom:513.186667pt;}
.y37{bottom:519.266667pt;}
.y1a{bottom:522.146667pt;}
.y86{bottom:536.226667pt;}
.y55{bottom:537.826667pt;}
.y19{bottom:546.946667pt;}
.y85{bottom:560.866667pt;}
.y54{bottom:562.626667pt;}
.y18{bottom:571.586667pt;}
.y33{bottom:573.986667pt;}
.y84{bottom:585.693333pt;}
.y53{bottom:587.293333pt;}
.y17{bottom:596.253333pt;}
.y83{bottom:610.333333pt;}
.y52{bottom:611.933333pt;}
.y16{bottom:620.893333pt;}
.y30{bottom:628.733333pt;}
.y82{bottom:634.973333pt;}
.y51{bottom:636.573333pt;}
.y15{bottom:645.693333pt;}
.y50{bottom:661.373333pt;}
.y14{bottom:670.333333pt;}
.y2e{bottom:683.453333pt;}
.y4e{bottom:686.013333pt;}
.y4f{bottom:692.733333pt;}
.y13{bottom:694.973333pt;}
.y4d{bottom:706.653333pt;}
.y67{bottom:708.000000pt;}
.y12{bottom:719.773333pt;}
.y2d{bottom:726.493333pt;}
.y11{bottom:744.413333pt;}
.y10{bottom:769.053333pt;}
.yf{bottom:793.693333pt;}
.ye{bottom:818.533333pt;}
.yd{bottom:843.173333pt;}
.yc{bottom:867.813333pt;}
.yb{bottom:892.613333pt;}
.ya{bottom:917.253333pt;}
.y9{bottom:941.893333pt;}
.y8{bottom:966.533333pt;}
.y7{bottom:991.333333pt;}
.y4{bottom:1012.773333pt;}
.y3{bottom:1030.400000pt;}
.y2{bottom:1051.840000pt;}
.y1{bottom:1076.160000pt;}
.hd{height:24.640000pt;}
.h11{height:33.918750pt;}
.h7{height:43.688960pt;}
.h5{height:44.648750pt;}
.h16{height:47.109375pt;}
.h15{height:47.742188pt;}
.hc{height:48.375000pt;}
.he{height:49.440000pt;}
.hf{height:49.472000pt;}
.h12{height:52.134375pt;}
.hb{height:52.832812pt;}
.h10{height:58.563750pt;}
.h4{height:59.706562pt;}
.ha{height:65.995312pt;}
.h2{height:67.871563pt;}
.h9{height:73.490625pt;}
.h8{height:75.465000pt;}
.h13{height:76.964840pt;}
.h6{height:85.222187pt;}
.h3{height:93.387187pt;}
.h14{height:300.800000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:183.546667pt;}
.w5{width:449.986667pt;}
.w6{width:618.400000pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:0.960000pt;}
.x2c{left:17.984000pt;}
.x2b{left:24.064000pt;}
.x5{left:37.759988pt;}
.x10{left:54.240000pt;}
.x19{left:73.440000pt;}
.x4{left:75.551988pt;}
.xf{left:78.592000pt;}
.x15{left:79.871988pt;}
.x2d{left:83.360000pt;}
.x1{left:94.591988pt;}
.x12{left:95.840000pt;}
.x1c{left:99.426667pt;}
.x6{left:107.071988pt;}
.x2e{left:109.533333pt;}
.x1f{left:125.413333pt;}
.x9{left:146.106655pt;}
.x7{left:147.066655pt;}
.x22{left:151.386667pt;}
.x25{left:177.373333pt;}
.x28{left:203.360000pt;}
.xc{left:240.866655pt;}
.x2f{left:254.306655pt;}
.x1a{left:259.586667pt;}
.x11{left:265.346667pt;}
.x14{left:267.586655pt;}
.x1d{left:285.573333pt;}
.x20{left:311.546667pt;}
.xa{left:325.186655pt;}
.x23{left:337.533333pt;}
.x26{left:363.520000pt;}
.x29{left:389.506667pt;}
.x8{left:396.893322pt;}
.x1b{left:445.733333pt;}
.x2{left:463.613322pt;}
.x1e{left:471.706667pt;}
.x21{left:497.693333pt;}
.x24{left:523.680000pt;}
.xd{left:546.813310pt;}
.x27{left:549.666667pt;}
.xe{left:552.893322pt;}
.x3{left:570.373322pt;}
.x2a{left:575.653333pt;}
.x17{left:609.573310pt;}
.x18{left:615.653322pt;}
.xb{left:652.933322pt;}
.x16{left:695.653322pt;}
}




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