
    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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_50041687aba83fde229bdaec.woff')format("woff");}.ff2{font-family:ff2;line-height:0.934082;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_adab1ce40b63b80b24efa007.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4880aa127fb8b0b1eb8b677e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_d839ff9b9754f330ad793021.woff')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_a0d4bb9f70a0b20ea04ef393.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_10d44e1078d2a9b44499e01b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.937988;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_7cfdae83153949fb0d883ee6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8587cc239adc455336894aa1.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0677a569362d43babacf1d03.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_bf08d9e0a9871686074b5d59.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c35ee73d89ed4b762c34863a.woff')format("woff");}.ffc{font-family:ffc;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);}
.v1{vertical-align:-97.920000px;}
.v0{vertical-align:0.000000px;}
.ls1e{letter-spacing:-0.900000px;}
.ls12{letter-spacing:-0.750000px;}
.ls17{letter-spacing:-0.684000px;}
.ls8{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.180000px;}
.ls14{letter-spacing:-0.093000px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.028080px;}
.ls13{letter-spacing:0.037440px;}
.ls18{letter-spacing:0.291600px;}
.ls1b{letter-spacing:0.336000px;}
.lsb{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.540000px;}
.ls10{letter-spacing:1.260000px;}
.ls11{letter-spacing:6.300000px;}
.ls9{letter-spacing:7.740000px;}
.lsd{letter-spacing:10.620000px;}
.lse{letter-spacing:16.380000px;}
.ls19{letter-spacing:21.221280px;}
.ls16{letter-spacing:31.500000px;}
.lsa{letter-spacing:33.660000px;}
.ls15{letter-spacing:35.820000px;}
.ls1c{letter-spacing:42.420000px;}
.ls6{letter-spacing:43.140000px;}
.lsc{letter-spacing:63.180000px;}
.ls3{letter-spacing:100.620000px;}
.ls2{letter-spacing:101.520000px;}
.ls5{letter-spacing:191.340000px;}
.ls0{letter-spacing:197.429760px;}
.ls1a{letter-spacing:457.860000px;}
.ls1{letter-spacing:1083.329760px;}
.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;}
}
.wsa{word-spacing:-21.420000px;}
.ws9{word-spacing:-21.351600px;}
.ws6{word-spacing:-21.097440px;}
.ws5{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.ws7{word-spacing:-20.967000px;}
.ws3{word-spacing:-20.700000px;}
.ws8{word-spacing:-20.376000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-0.066240px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-196.973760px;}
._f{margin-left:-2.128800px;}
._1{margin-left:-1.126080px;}
._4{width:1.068000px;}
._3{width:2.190240px;}
._e{width:3.195600px;}
._1f{width:4.277280px;}
._18{width:5.422320px;}
._1c{width:6.905040px;}
._13{width:8.185680px;}
._b{width:9.771840px;}
._c{width:10.813680px;}
._12{width:11.992800px;}
._d{width:13.088160px;}
._17{width:15.017520px;}
._22{width:16.392480px;}
._23{width:17.610000px;}
._5{width:18.869760px;}
._2f{width:20.035920px;}
._1e{width:22.798560px;}
._6{width:24.513840px;}
._a{width:25.584960px;}
._7{width:26.945520px;}
._2a{width:28.473120px;}
._16{width:29.478720px;}
._15{width:30.947040px;}
._21{width:32.726640px;}
._20{width:34.082880px;}
._27{width:35.139360px;}
._19{width:36.391680px;}
._1a{width:37.889040px;}
._29{width:39.003120px;}
._1b{width:41.277600px;}
._28{width:42.471840px;}
._14{width:43.686240px;}
._2c{width:55.295280px;}
._2b{width:56.556000px;}
._2e{width:58.065120px;}
._10{width:59.136480px;}
._11{width:60.201120px;}
._25{width:62.219040px;}
._24{width:63.348480px;}
._26{width:64.950960px;}
._2d{width:72.783360px;}
._1d{width:76.574160px;}
._8{width:100.198320px;}
._30{width:107.100000px;}
._9{width:191.340000px;}
._2{width:638.842080px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:5.760000px;}
.y3{bottom:6.120000px;}
.y2{bottom:26.100000px;}
.y4{bottom:28.980000px;}
.y66{bottom:79.380000px;}
.y26{bottom:85.500000px;}
.y65{bottom:107.280000px;}
.y80{bottom:111.960000px;}
.y25{bottom:113.220000px;}
.y4a{bottom:122.220000px;}
.y64{bottom:135.036000px;}
.y49{bottom:149.976000px;}
.y7f{bottom:150.510000px;}
.y24{bottom:156.090000px;}
.y63{bottom:162.750000px;}
.y7e{bottom:178.230000px;}
.y23{bottom:183.810000px;}
.y62{bottom:190.470000px;}
.y48{bottom:192.810000px;}
.y22{bottom:211.530000px;}
.y61{bottom:218.370000px;}
.y47{bottom:220.530000px;}
.y7d{bottom:221.070000px;}
.y21{bottom:239.430000px;}
.y60{bottom:246.090000px;}
.y46{bottom:248.250000px;}
.y7c{bottom:248.790000px;}
.y20{bottom:267.150000px;}
.y45{bottom:276.150000px;}
.y5f{bottom:288.930000px;}
.y7b{bottom:291.630000px;}
.y1f{bottom:294.870000px;}
.y44{bottom:303.870000px;}
.y5e{bottom:316.650000px;}
.y7a{bottom:319.350000px;}
.y1e{bottom:322.770000px;}
.y43{bottom:331.590000px;}
.y5d{bottom:344.370000px;}
.y1d{bottom:350.490000px;}
.y42{bottom:359.310000px;}
.y79{bottom:362.190000px;}
.y5c{bottom:372.090000px;}
.y41{bottom:387.255000px;}
.y78{bottom:389.955000px;}
.y1c{bottom:393.195000px;}
.y5b{bottom:414.975000px;}
.y77{bottom:417.675000px;}
.y1b{bottom:421.095000px;}
.y40{bottom:429.915000px;}
.y5a{bottom:442.695000px;}
.y1a{bottom:448.815000px;}
.y3f{bottom:457.815000px;}
.y76{bottom:460.515000px;}
.y59{bottom:470.595000px;}
.y19{bottom:476.535000px;}
.y3e{bottom:485.535000px;}
.y75{bottom:488.235000px;}
.y58{bottom:498.315000px;}
.y3d{bottom:513.255000px;}
.y18{bottom:519.375000px;}
.y74{bottom:531.075000px;}
.y3c{bottom:540.975000px;}
.y17{bottom:547.095000px;}
.y73{bottom:558.795000px;}
.y3b{bottom:568.875000px;}
.y16{bottom:574.815000px;}
.y72{bottom:586.515000px;}
.y3a{bottom:596.595000px;}
.y15{bottom:602.715000px;}
.y39{bottom:624.315000px;}
.y71{bottom:629.355000px;}
.y14{bottom:630.435000px;}
.y38{bottom:652.245000px;}
.y70{bottom:657.105000px;}
.y13{bottom:673.305000px;}
.y37{bottom:679.965000px;}
.y57{bottom:694.905000px;}
.y6f{bottom:699.945000px;}
.y36{bottom:707.685000px;}
.y12{bottom:715.965000px;}
.y56{bottom:722.625000px;}
.y6e{bottom:727.665000px;}
.y35{bottom:735.405000px;}
.y11{bottom:743.865000px;}
.y55{bottom:750.525000px;}
.y34{bottom:763.305000px;}
.y6d{bottom:770.505000px;}
.y54{bottom:778.245000px;}
.y10{bottom:786.525000px;}
.y33{bottom:791.025000px;}
.y6c{bottom:798.225000px;}
.y32{bottom:818.745000px;}
.y53{bottom:821.085000px;}
.yf{bottom:829.365000px;}
.y52{bottom:848.805000px;}
.ye{bottom:857.085000px;}
.y31{bottom:861.585000px;}
.y6b{bottom:865.185000px;}
.y51{bottom:876.525000px;}
.yd{bottom:884.850000px;}
.y30{bottom:889.350000px;}
.y50{bottom:904.290000px;}
.y2f{bottom:917.070000px;}
.yc{bottom:927.690000px;}
.y6a{bottom:931.830000px;}
.y4f{bottom:932.190000px;}
.y2e{bottom:944.970000px;}
.y4e{bottom:959.910000px;}
.yb{bottom:970.530000px;}
.y2d{bottom:972.690000px;}
.y69{bottom:974.850000px;}
.y4d{bottom:987.630000px;}
.y68{bottom:1002.750000px;}
.ya{bottom:1013.190000px;}
.y2c{bottom:1015.530000px;}
.y67{bottom:1030.470000px;}
.y2b{bottom:1043.250000px;}
.y9{bottom:1055.490000px;}
.y4c{bottom:1058.190000px;}
.y2a{bottom:1070.970000px;}
.y4b{bottom:1085.910000px;}
.y8{bottom:1098.330000px;}
.y29{bottom:1113.810000px;}
.y7{bottom:1126.230000px;}
.y28{bottom:1141.560000px;}
.y6{bottom:1168.920000px;}
.y27{bottom:1169.280000px;}
.y1{bottom:1226.160000px;}
.h4{height:21.420000px;}
.hb{height:65.010937px;}
.h2{height:65.884219px;}
.h3{height:70.628906px;}
.h6{height:72.846211px;}
.h9{height:74.244727px;}
.h7{height:82.635820px;}
.h8{height:82.676953px;}
.h5{height:84.898125px;}
.ha{height:86.585445px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:49.536000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:20.550000px;}
.x1{left:95.796000px;}
.x2{left:111.636000px;}
.x9{left:148.896000px;}
.x5{left:153.750000px;}
.xb{left:175.890000px;}
.x8{left:209.190000px;}
.x6{left:220.170000px;}
.x7{left:322.815000px;}
.xa{left:364.395000px;}
.x3{left:438.915000px;}
@media print{
.v1{vertical-align:-87.040000pt;}
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-0.800000pt;}
.ls12{letter-spacing:-0.666667pt;}
.ls17{letter-spacing:-0.608000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.160000pt;}
.ls14{letter-spacing:-0.082667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.024960pt;}
.ls13{letter-spacing:0.033280pt;}
.ls18{letter-spacing:0.259200pt;}
.ls1b{letter-spacing:0.298667pt;}
.lsb{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.480000pt;}
.ls10{letter-spacing:1.120000pt;}
.ls11{letter-spacing:5.600000pt;}
.ls9{letter-spacing:6.880000pt;}
.lsd{letter-spacing:9.440000pt;}
.lse{letter-spacing:14.560000pt;}
.ls19{letter-spacing:18.863360pt;}
.ls16{letter-spacing:28.000000pt;}
.lsa{letter-spacing:29.920000pt;}
.ls15{letter-spacing:31.840000pt;}
.ls1c{letter-spacing:37.706667pt;}
.ls6{letter-spacing:38.346667pt;}
.lsc{letter-spacing:56.160000pt;}
.ls3{letter-spacing:89.440000pt;}
.ls2{letter-spacing:90.240000pt;}
.ls5{letter-spacing:170.080000pt;}
.ls0{letter-spacing:175.493120pt;}
.ls1a{letter-spacing:406.986667pt;}
.ls1{letter-spacing:962.959787pt;}
.wsa{word-spacing:-19.040000pt;}
.ws9{word-spacing:-18.979200pt;}
.ws6{word-spacing:-18.753280pt;}
.ws5{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.ws7{word-spacing:-18.637333pt;}
.ws3{word-spacing:-18.400000pt;}
.ws8{word-spacing:-18.112000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-0.058880pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-175.087787pt;}
._f{margin-left:-1.892267pt;}
._1{margin-left:-1.000960pt;}
._4{width:0.949333pt;}
._3{width:1.946880pt;}
._e{width:2.840533pt;}
._1f{width:3.802027pt;}
._18{width:4.819840pt;}
._1c{width:6.137813pt;}
._13{width:7.276160pt;}
._b{width:8.686080pt;}
._c{width:9.612160pt;}
._12{width:10.660267pt;}
._d{width:11.633920pt;}
._17{width:13.348907pt;}
._22{width:14.571093pt;}
._23{width:15.653333pt;}
._5{width:16.773120pt;}
._2f{width:17.809707pt;}
._1e{width:20.265387pt;}
._6{width:21.790080pt;}
._a{width:22.742187pt;}
._7{width:23.951573pt;}
._2a{width:25.309440pt;}
._16{width:26.203307pt;}
._15{width:27.508480pt;}
._21{width:29.090347pt;}
._20{width:30.295893pt;}
._27{width:31.234987pt;}
._19{width:32.348160pt;}
._1a{width:33.679147pt;}
._29{width:34.669440pt;}
._1b{width:36.691200pt;}
._28{width:37.752747pt;}
._14{width:38.832213pt;}
._2c{width:49.151360pt;}
._2b{width:50.272000pt;}
._2e{width:51.613440pt;}
._10{width:52.565760pt;}
._11{width:53.512107pt;}
._25{width:55.305813pt;}
._24{width:56.309760pt;}
._26{width:57.734187pt;}
._2d{width:64.696320pt;}
._1d{width:68.065920pt;}
._8{width:89.065173pt;}
._30{width:95.200000pt;}
._9{width:170.080000pt;}
._2{width:567.859627pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:5.120000pt;}
.y3{bottom:5.440000pt;}
.y2{bottom:23.200000pt;}
.y4{bottom:25.760000pt;}
.y66{bottom:70.560000pt;}
.y26{bottom:76.000000pt;}
.y65{bottom:95.360000pt;}
.y80{bottom:99.520000pt;}
.y25{bottom:100.640000pt;}
.y4a{bottom:108.640000pt;}
.y64{bottom:120.032000pt;}
.y49{bottom:133.312000pt;}
.y7f{bottom:133.786667pt;}
.y24{bottom:138.746667pt;}
.y63{bottom:144.666667pt;}
.y7e{bottom:158.426667pt;}
.y23{bottom:163.386667pt;}
.y62{bottom:169.306667pt;}
.y48{bottom:171.386667pt;}
.y22{bottom:188.026667pt;}
.y61{bottom:194.106667pt;}
.y47{bottom:196.026667pt;}
.y7d{bottom:196.506667pt;}
.y21{bottom:212.826667pt;}
.y60{bottom:218.746667pt;}
.y46{bottom:220.666667pt;}
.y7c{bottom:221.146667pt;}
.y20{bottom:237.466667pt;}
.y45{bottom:245.466667pt;}
.y5f{bottom:256.826667pt;}
.y7b{bottom:259.226667pt;}
.y1f{bottom:262.106667pt;}
.y44{bottom:270.106667pt;}
.y5e{bottom:281.466667pt;}
.y7a{bottom:283.866667pt;}
.y1e{bottom:286.906667pt;}
.y43{bottom:294.746667pt;}
.y5d{bottom:306.106667pt;}
.y1d{bottom:311.546667pt;}
.y42{bottom:319.386667pt;}
.y79{bottom:321.946667pt;}
.y5c{bottom:330.746667pt;}
.y41{bottom:344.226667pt;}
.y78{bottom:346.626667pt;}
.y1c{bottom:349.506667pt;}
.y5b{bottom:368.866667pt;}
.y77{bottom:371.266667pt;}
.y1b{bottom:374.306667pt;}
.y40{bottom:382.146667pt;}
.y5a{bottom:393.506667pt;}
.y1a{bottom:398.946667pt;}
.y3f{bottom:406.946667pt;}
.y76{bottom:409.346667pt;}
.y59{bottom:418.306667pt;}
.y19{bottom:423.586667pt;}
.y3e{bottom:431.586667pt;}
.y75{bottom:433.986667pt;}
.y58{bottom:442.946667pt;}
.y3d{bottom:456.226667pt;}
.y18{bottom:461.666667pt;}
.y74{bottom:472.066667pt;}
.y3c{bottom:480.866667pt;}
.y17{bottom:486.306667pt;}
.y73{bottom:496.706667pt;}
.y3b{bottom:505.666667pt;}
.y16{bottom:510.946667pt;}
.y72{bottom:521.346667pt;}
.y3a{bottom:530.306667pt;}
.y15{bottom:535.746667pt;}
.y39{bottom:554.946667pt;}
.y71{bottom:559.426667pt;}
.y14{bottom:560.386667pt;}
.y38{bottom:579.773333pt;}
.y70{bottom:584.093333pt;}
.y13{bottom:598.493333pt;}
.y37{bottom:604.413333pt;}
.y57{bottom:617.693333pt;}
.y6f{bottom:622.173333pt;}
.y36{bottom:629.053333pt;}
.y12{bottom:636.413333pt;}
.y56{bottom:642.333333pt;}
.y6e{bottom:646.813333pt;}
.y35{bottom:653.693333pt;}
.y11{bottom:661.213333pt;}
.y55{bottom:667.133333pt;}
.y34{bottom:678.493333pt;}
.y6d{bottom:684.893333pt;}
.y54{bottom:691.773333pt;}
.y10{bottom:699.133333pt;}
.y33{bottom:703.133333pt;}
.y6c{bottom:709.533333pt;}
.y32{bottom:727.773333pt;}
.y53{bottom:729.853333pt;}
.yf{bottom:737.213333pt;}
.y52{bottom:754.493333pt;}
.ye{bottom:761.853333pt;}
.y31{bottom:765.853333pt;}
.y6b{bottom:769.053333pt;}
.y51{bottom:779.133333pt;}
.yd{bottom:786.533333pt;}
.y30{bottom:790.533333pt;}
.y50{bottom:803.813333pt;}
.y2f{bottom:815.173333pt;}
.yc{bottom:824.613333pt;}
.y6a{bottom:828.293333pt;}
.y4f{bottom:828.613333pt;}
.y2e{bottom:839.973333pt;}
.y4e{bottom:853.253333pt;}
.yb{bottom:862.693333pt;}
.y2d{bottom:864.613333pt;}
.y69{bottom:866.533333pt;}
.y4d{bottom:877.893333pt;}
.y68{bottom:891.333333pt;}
.ya{bottom:900.613333pt;}
.y2c{bottom:902.693333pt;}
.y67{bottom:915.973333pt;}
.y2b{bottom:927.333333pt;}
.y9{bottom:938.213333pt;}
.y4c{bottom:940.613333pt;}
.y2a{bottom:951.973333pt;}
.y4b{bottom:965.253333pt;}
.y8{bottom:976.293333pt;}
.y29{bottom:990.053333pt;}
.y7{bottom:1001.093333pt;}
.y28{bottom:1014.720000pt;}
.y6{bottom:1039.040000pt;}
.y27{bottom:1039.360000pt;}
.y1{bottom:1089.920000pt;}
.h4{height:19.040000pt;}
.hb{height:57.787500pt;}
.h2{height:58.563750pt;}
.h3{height:62.781250pt;}
.h6{height:64.752187pt;}
.h9{height:65.995312pt;}
.h7{height:73.454062pt;}
.h8{height:73.490625pt;}
.h5{height:75.465000pt;}
.ha{height:76.964840pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.032000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:18.266667pt;}
.x1{left:85.152000pt;}
.x2{left:99.232000pt;}
.x9{left:132.352000pt;}
.x5{left:136.666667pt;}
.xb{left:156.346667pt;}
.x8{left:185.946667pt;}
.x6{left:195.706667pt;}
.x7{left:286.946667pt;}
.xa{left:323.906667pt;}
.x3{left:390.146667pt;}
}




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