
    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_08b5dfa8602a7de82e29bd2d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_abc62f824acf4e6ca0422c39.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_0103e806b3bb73634322b52b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_ac8ca19811055bcea339c970.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_18f3774e0760783d00b42873.woff')format("woff");}.ff6{font-family:ff6;line-height:0.940918;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b3c81e26c77789c12032e857.woff')format("woff");}.ff8{font-family:ff8;line-height:1.053223;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;}
.ls19{letter-spacing:-0.544800px;}
.ls1c{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.529800px;}
.ls5{letter-spacing:-0.463800px;}
.ls15{letter-spacing:-0.414000px;}
.lsa{letter-spacing:-0.292200px;}
.ls13{letter-spacing:-0.214800px;}
.ls4{letter-spacing:-0.132600px;}
.lsc{letter-spacing:-0.115800px;}
.ls24{letter-spacing:-0.107400px;}
.ls1d{letter-spacing:-0.058320px;}
.ls1e{letter-spacing:-0.038160px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.038880px;}
.lsd{letter-spacing:0.060600px;}
.lsb{letter-spacing:0.066000px;}
.lse{letter-spacing:0.097200px;}
.ls10{letter-spacing:0.140400px;}
.ls6{letter-spacing:0.150000px;}
.ls1f{letter-spacing:0.174000px;}
.ls18{letter-spacing:0.175200px;}
.ls23{letter-spacing:0.179280px;}
.ls1a{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.190200px;}
.ls7{letter-spacing:0.210000px;}
.ls14{letter-spacing:0.314400px;}
.ls21{letter-spacing:0.479520px;}
.ls1{letter-spacing:0.617760px;}
.ls17{letter-spacing:2.106720px;}
.ls16{letter-spacing:5.706720px;}
.ls22{letter-spacing:12.186720px;}
.ls11{letter-spacing:17.226720px;}
.ls1b{letter-spacing:17.946720px;}
.ls12{letter-spacing:20.106720px;}
.lsf{letter-spacing:21.546720px;}
.ls0{letter-spacing:38.106720px;}
.ls20{letter-spacing:42.426720px;}
.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;}
}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.wsc{word-spacing:-13.820160px;}
.wsd{word-spacing:-13.680960px;}
.wsa{word-spacing:-13.646160px;}
.ws7{word-spacing:-13.505760px;}
.wsf{word-spacing:-13.467600px;}
.wse{word-spacing:-13.447440px;}
.ws10{word-spacing:-13.398360px;}
.ws8{word-spacing:-13.389960px;}
.wsb{word-spacing:-13.290960px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-9.145560px;}
.ws6{word-spacing:-8.786880px;}
.ws9{word-spacing:0.000000px;}
._1d{margin-left:-533.278560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._12{margin-left:-233.850240px;}
._17{margin-left:-229.991040px;}
._16{margin-left:-222.405360px;}
._f{margin-left:-202.866240px;}
._18{margin-left:-200.514720px;}
._21{margin-left:-196.738560px;}
._20{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._26{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._25{margin-left:-145.392000px;}
._10{margin-left:-142.046400px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._11{margin-left:-116.242560px;}
._24{margin-left:-109.266240px;}
._1c{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-82.330560px;}
._22{margin-left:-80.367360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.492560px;}
._23{margin-left:-35.130240px;}
._19{margin-left:-32.468640px;}
._29{margin-left:-4.292160px;}
._27{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._28{width:1.317240px;}
._2c{width:2.860080px;}
._2d{width:4.170120px;}
._30{width:5.282520px;}
._3b{width:6.366000px;}
._35{width:7.504680px;}
._2f{width:8.784720px;}
._31{width:10.079280px;}
._2e{width:11.112840px;}
._3a{width:12.310560px;}
._32{width:15.116760px;}
._33{width:16.773480px;}
._34{width:18.224280px;}
._39{width:19.455120px;}
._38{width:20.557440px;}
._3c{width:21.566640px;}
._36{width:22.589280px;}
._37{width:23.676960px;}
._2a{width:25.663680px;}
._2b{width:27.158400px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs2{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9f{bottom:2.700000px;}
.yb2{bottom:6.660000px;}
.ya1{bottom:7.560000px;}
.y9e{bottom:9.360000px;}
.y5b{bottom:21.960000px;}
.y5a{bottom:43.065000px;}
.yb4{bottom:44.460000px;}
.y6{bottom:61.380000px;}
.y59{bottom:64.125000px;}
.y58{bottom:85.185000px;}
.ycc{bottom:89.640000px;}
.y30{bottom:90.000000px;}
.yc5{bottom:90.720000px;}
.y89{bottom:94.320000px;}
.y55{bottom:99.180000px;}
.y57{bottom:106.245000px;}
.ycb{bottom:110.700000px;}
.y2f{bottom:111.060000px;}
.yc4{bottom:111.780000px;}
.yc9{bottom:112.320000px;}
.y88{bottom:115.380000px;}
.y54{bottom:120.240000px;}
.yb1{bottom:122.040000px;}
.yca{bottom:127.800000px;}
.yc3{bottom:128.880000px;}
.y2e{bottom:132.120000px;}
.yc8{bottom:133.380000px;}
.y87{bottom:136.440000px;}
.y53{bottom:141.300000px;}
.y56{bottom:142.605000px;}
.y2d{bottom:153.210000px;}
.yc7{bottom:154.470000px;}
.y86{bottom:157.530000px;}
.y52{bottom:162.390000px;}
.y2c{bottom:174.270000px;}
.yc6{bottom:175.530000px;}
.y85{bottom:178.590000px;}
.y51{bottom:183.450000px;}
.y2b{bottom:195.330000px;}
.y9c{bottom:196.590000px;}
.y84{bottom:199.650000px;}
.y50{bottom:204.510000px;}
.y2a{bottom:216.390000px;}
.y9b{bottom:217.650000px;}
.y83{bottom:220.710000px;}
.y4f{bottom:225.570000px;}
.y29{bottom:237.450000px;}
.y9a{bottom:238.710000px;}
.y82{bottom:241.770000px;}
.y4e{bottom:242.670000px;}
.y28{bottom:258.510000px;}
.y99{bottom:259.770000px;}
.y81{bottom:262.830000px;}
.y27{bottom:279.570000px;}
.y98{bottom:280.830000px;}
.y80{bottom:283.890000px;}
.y26{bottom:300.630000px;}
.y97{bottom:301.890000px;}
.y7f{bottom:304.950000px;}
.y25{bottom:321.690000px;}
.y96{bottom:322.950000px;}
.y7e{bottom:326.010000px;}
.y24{bottom:342.750000px;}
.y95{bottom:344.010000px;}
.y7d{bottom:347.070000px;}
.y23{bottom:363.810000px;}
.y94{bottom:365.070000px;}
.y7c{bottom:368.130000px;}
.y22{bottom:384.870000px;}
.y93{bottom:386.130000px;}
.y7b{bottom:389.190000px;}
.y21{bottom:405.975000px;}
.y92{bottom:407.235000px;}
.y7a{bottom:410.295000px;}
.y20{bottom:427.035000px;}
.y91{bottom:428.295000px;}
.y79{bottom:431.355000px;}
.y1f{bottom:448.095000px;}
.y90{bottom:449.355000px;}
.y78{bottom:452.415000px;}
.yc2{bottom:461.235000px;}
.y1e{bottom:469.155000px;}
.y8f{bottom:470.415000px;}
.y77{bottom:473.475000px;}
.yc1{bottom:482.295000px;}
.y1d{bottom:490.215000px;}
.y8e{bottom:491.475000px;}
.y76{bottom:494.535000px;}
.yc0{bottom:503.355000px;}
.y1c{bottom:511.275000px;}
.y8d{bottom:512.535000px;}
.y75{bottom:515.595000px;}
.yb0{bottom:521.355000px;}
.ybf{bottom:524.415000px;}
.y1b{bottom:532.335000px;}
.y8c{bottom:533.595000px;}
.y74{bottom:536.655000px;}
.yaf{bottom:542.415000px;}
.ybe{bottom:545.475000px;}
.y1a{bottom:553.395000px;}
.y8b{bottom:554.655000px;}
.y73{bottom:557.715000px;}
.yae{bottom:563.475000px;}
.ybd{bottom:566.535000px;}
.y8a{bottom:575.715000px;}
.y72{bottom:578.775000px;}
.yad{bottom:584.535000px;}
.ybc{bottom:587.595000px;}
.y4d{bottom:596.775000px;}
.y19{bottom:597.855000px;}
.y71{bottom:599.835000px;}
.yac{bottom:605.595000px;}
.ybb{bottom:608.655000px;}
.y4c{bottom:617.835000px;}
.yab{bottom:626.655000px;}
.y18{bottom:627.735000px;}
.yba{bottom:629.715000px;}
.y70{bottom:629.895000px;}
.y4b{bottom:638.895000px;}
.yaa{bottom:647.715000px;}
.y17{bottom:648.795000px;}
.yb9{bottom:650.625000px;}
.y6f{bottom:650.805000px;}
.y4a{bottom:659.805000px;}
.ya9{bottom:668.805000px;}
.y16{bottom:669.885000px;}
.yb8{bottom:671.685000px;}
.y6e{bottom:671.865000px;}
.y49{bottom:680.865000px;}
.ya8{bottom:689.865000px;}
.y15{bottom:690.945000px;}
.yb7{bottom:692.745000px;}
.y6d{bottom:692.925000px;}
.y48{bottom:701.925000px;}
.ya7{bottom:710.925000px;}
.y14{bottom:712.005000px;}
.yb6{bottom:713.805000px;}
.y6c{bottom:713.985000px;}
.y47{bottom:722.985000px;}
.ya6{bottom:731.985000px;}
.y13{bottom:733.065000px;}
.yb5{bottom:734.865000px;}
.y6b{bottom:735.045000px;}
.y46{bottom:744.045000px;}
.yb3{bottom:749.265000px;}
.ya5{bottom:753.045000px;}
.y12{bottom:754.125000px;}
.y6a{bottom:756.105000px;}
.y45{bottom:765.105000px;}
.ya4{bottom:774.105000px;}
.y11{bottom:775.185000px;}
.y69{bottom:777.165000px;}
.y44{bottom:786.165000px;}
.ya3{bottom:795.165000px;}
.y10{bottom:796.245000px;}
.y68{bottom:798.225000px;}
.y43{bottom:807.225000px;}
.ya2{bottom:816.225000px;}
.yf{bottom:817.305000px;}
.y67{bottom:819.285000px;}
.y42{bottom:828.285000px;}
.ya0{bottom:830.625000px;}
.ye{bottom:838.545000px;}
.y66{bottom:840.345000px;}
.y41{bottom:849.345000px;}
.y65{bottom:861.405000px;}
.yd{bottom:861.765000px;}
.y40{bottom:870.405000px;}
.y64{bottom:882.465000px;}
.yc{bottom:888.045000px;}
.y3f{bottom:891.465000px;}
.y63{bottom:903.570000px;}
.yb{bottom:904.650000px;}
.y3e{bottom:912.570000px;}
.y62{bottom:924.630000px;}
.ya{bottom:927.870000px;}
.y3d{bottom:933.630000px;}
.y61{bottom:945.690000px;}
.y9{bottom:950.190000px;}
.y3c{bottom:954.690000px;}
.y60{bottom:966.750000px;}
.y8{bottom:975.390000px;}
.y3b{bottom:975.750000px;}
.y5f{bottom:987.810000px;}
.y3a{bottom:996.810000px;}
.y9d{bottom:1003.470000px;}
.y5e{bottom:1008.870000px;}
.y7{bottom:1009.050000px;}
.y39{bottom:1017.870000px;}
.y5d{bottom:1029.930000px;}
.y38{bottom:1038.930000px;}
.y5{bottom:1049.190000px;}
.y5c{bottom:1050.990000px;}
.y37{bottom:1059.990000px;}
.y36{bottom:1081.050000px;}
.y4{bottom:1081.410000px;}
.y35{bottom:1102.110000px;}
.y3{bottom:1113.630000px;}
.y34{bottom:1123.170000px;}
.y33{bottom:1144.230000px;}
.y2{bottom:1145.670000px;}
.y32{bottom:1165.320000px;}
.y1{bottom:1179.720000px;}
.y31{bottom:1193.220000px;}
.h7{height:38.671172px;}
.h8{height:52.260820px;}
.h9{height:59.439023px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.ha{height:156.810000px;}
.hc{height:172.830000px;}
.hb{height:176.250000px;}
.hd{height:392.655000px;}
.he{height:430.455000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:222.690000px;}
.w6{width:338.070000px;}
.w4{width:338.115000px;}
.w5{width:338.250000px;}
.w7{width:339.195000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:11.700000px;}
.xe{left:18.000000px;}
.xc{left:27.540000px;}
.xf{left:29.340000px;}
.x10{left:48.240000px;}
.x6{left:53.999987px;}
.x7{left:75.599987px;}
.x1c{left:80.999987px;}
.x1d{left:102.635987px;}
.x11{left:108.396000px;}
.xb{left:111.465000px;}
.x5{left:176.969987px;}
.x9{left:269.534987px;}
.x3{left:272.234987px;}
.x19{left:300.854987px;}
.x8{left:307.154987px;}
.x15{left:309.645000px;}
.x12{left:325.659000px;}
.x14{left:333.765000px;}
.x1b{left:335.774987px;}
.x17{left:343.689000px;}
.x2{left:350.534987px;}
.x18{left:352.515000px;}
.x16{left:360.434987px;}
.x4{left:419.114987px;}
.x13{left:446.505000px;}
.x1{left:479.264987px;}
.xa{left:537.405000px;}
.x1a{left:728.069987px;}
.x1e{left:838.439987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls19{letter-spacing:-0.484267pt;}
.ls1c{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.470933pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls15{letter-spacing:-0.368000pt;}
.lsa{letter-spacing:-0.259733pt;}
.ls13{letter-spacing:-0.190933pt;}
.ls4{letter-spacing:-0.117867pt;}
.lsc{letter-spacing:-0.102933pt;}
.ls24{letter-spacing:-0.095467pt;}
.ls1d{letter-spacing:-0.051840pt;}
.ls1e{letter-spacing:-0.033920pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.034560pt;}
.lsd{letter-spacing:0.053867pt;}
.lsb{letter-spacing:0.058667pt;}
.lse{letter-spacing:0.086400pt;}
.ls10{letter-spacing:0.124800pt;}
.ls6{letter-spacing:0.133333pt;}
.ls1f{letter-spacing:0.154667pt;}
.ls18{letter-spacing:0.155733pt;}
.ls23{letter-spacing:0.159360pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.169067pt;}
.ls7{letter-spacing:0.186667pt;}
.ls14{letter-spacing:0.279467pt;}
.ls21{letter-spacing:0.426240pt;}
.ls1{letter-spacing:0.549120pt;}
.ls17{letter-spacing:1.872640pt;}
.ls16{letter-spacing:5.072640pt;}
.ls22{letter-spacing:10.832640pt;}
.ls11{letter-spacing:15.312640pt;}
.ls1b{letter-spacing:15.952640pt;}
.ls12{letter-spacing:17.872640pt;}
.lsf{letter-spacing:19.152640pt;}
.ls0{letter-spacing:33.872640pt;}
.ls20{letter-spacing:37.712640pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.wsc{word-spacing:-12.284587pt;}
.wsd{word-spacing:-12.160853pt;}
.wsa{word-spacing:-12.129920pt;}
.ws7{word-spacing:-12.005120pt;}
.wsf{word-spacing:-11.971200pt;}
.wse{word-spacing:-11.953280pt;}
.ws10{word-spacing:-11.909653pt;}
.ws8{word-spacing:-11.902187pt;}
.wsb{word-spacing:-11.814187pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-8.129387pt;}
.ws6{word-spacing:-7.810560pt;}
.ws9{word-spacing:0.000000pt;}
._1d{margin-left:-474.025387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._12{margin-left:-207.866880pt;}
._17{margin-left:-204.436480pt;}
._16{margin-left:-197.693653pt;}
._f{margin-left:-180.325547pt;}
._18{margin-left:-178.235307pt;}
._21{margin-left:-174.878720pt;}
._20{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._26{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._25{margin-left:-129.237333pt;}
._10{margin-left:-126.263467pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._11{margin-left:-103.326720pt;}
._24{margin-left:-97.125547pt;}
._1c{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-73.182720pt;}
._22{margin-left:-71.437653pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.993387pt;}
._23{margin-left:-31.226880pt;}
._19{margin-left:-28.861013pt;}
._29{margin-left:-3.815253pt;}
._27{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._28{width:1.170880pt;}
._2c{width:2.542293pt;}
._2d{width:3.706773pt;}
._30{width:4.695573pt;}
._3b{width:5.658667pt;}
._35{width:6.670827pt;}
._2f{width:7.808640pt;}
._31{width:8.959360pt;}
._2e{width:9.878080pt;}
._3a{width:10.942720pt;}
._32{width:13.437120pt;}
._33{width:14.909760pt;}
._34{width:16.199360pt;}
._39{width:17.293440pt;}
._38{width:18.273280pt;}
._3c{width:19.170347pt;}
._36{width:20.079360pt;}
._37{width:21.046187pt;}
._2a{width:22.812160pt;}
._2b{width:24.140800pt;}
.fs2{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9f{bottom:2.400000pt;}
.yb2{bottom:5.920000pt;}
.ya1{bottom:6.720000pt;}
.y9e{bottom:8.320000pt;}
.y5b{bottom:19.520000pt;}
.y5a{bottom:38.280000pt;}
.yb4{bottom:39.520000pt;}
.y6{bottom:54.560000pt;}
.y59{bottom:57.000000pt;}
.y58{bottom:75.720000pt;}
.ycc{bottom:79.680000pt;}
.y30{bottom:80.000000pt;}
.yc5{bottom:80.640000pt;}
.y89{bottom:83.840000pt;}
.y55{bottom:88.160000pt;}
.y57{bottom:94.440000pt;}
.ycb{bottom:98.400000pt;}
.y2f{bottom:98.720000pt;}
.yc4{bottom:99.360000pt;}
.yc9{bottom:99.840000pt;}
.y88{bottom:102.560000pt;}
.y54{bottom:106.880000pt;}
.yb1{bottom:108.480000pt;}
.yca{bottom:113.600000pt;}
.yc3{bottom:114.560000pt;}
.y2e{bottom:117.440000pt;}
.yc8{bottom:118.560000pt;}
.y87{bottom:121.280000pt;}
.y53{bottom:125.600000pt;}
.y56{bottom:126.760000pt;}
.y2d{bottom:136.186667pt;}
.yc7{bottom:137.306667pt;}
.y86{bottom:140.026667pt;}
.y52{bottom:144.346667pt;}
.y2c{bottom:154.906667pt;}
.yc6{bottom:156.026667pt;}
.y85{bottom:158.746667pt;}
.y51{bottom:163.066667pt;}
.y2b{bottom:173.626667pt;}
.y9c{bottom:174.746667pt;}
.y84{bottom:177.466667pt;}
.y50{bottom:181.786667pt;}
.y2a{bottom:192.346667pt;}
.y9b{bottom:193.466667pt;}
.y83{bottom:196.186667pt;}
.y4f{bottom:200.506667pt;}
.y29{bottom:211.066667pt;}
.y9a{bottom:212.186667pt;}
.y82{bottom:214.906667pt;}
.y4e{bottom:215.706667pt;}
.y28{bottom:229.786667pt;}
.y99{bottom:230.906667pt;}
.y81{bottom:233.626667pt;}
.y27{bottom:248.506667pt;}
.y98{bottom:249.626667pt;}
.y80{bottom:252.346667pt;}
.y26{bottom:267.226667pt;}
.y97{bottom:268.346667pt;}
.y7f{bottom:271.066667pt;}
.y25{bottom:285.946667pt;}
.y96{bottom:287.066667pt;}
.y7e{bottom:289.786667pt;}
.y24{bottom:304.666667pt;}
.y95{bottom:305.786667pt;}
.y7d{bottom:308.506667pt;}
.y23{bottom:323.386667pt;}
.y94{bottom:324.506667pt;}
.y7c{bottom:327.226667pt;}
.y22{bottom:342.106667pt;}
.y93{bottom:343.226667pt;}
.y7b{bottom:345.946667pt;}
.y21{bottom:360.866667pt;}
.y92{bottom:361.986667pt;}
.y7a{bottom:364.706667pt;}
.y20{bottom:379.586667pt;}
.y91{bottom:380.706667pt;}
.y79{bottom:383.426667pt;}
.y1f{bottom:398.306667pt;}
.y90{bottom:399.426667pt;}
.y78{bottom:402.146667pt;}
.yc2{bottom:409.986667pt;}
.y1e{bottom:417.026667pt;}
.y8f{bottom:418.146667pt;}
.y77{bottom:420.866667pt;}
.yc1{bottom:428.706667pt;}
.y1d{bottom:435.746667pt;}
.y8e{bottom:436.866667pt;}
.y76{bottom:439.586667pt;}
.yc0{bottom:447.426667pt;}
.y1c{bottom:454.466667pt;}
.y8d{bottom:455.586667pt;}
.y75{bottom:458.306667pt;}
.yb0{bottom:463.426667pt;}
.ybf{bottom:466.146667pt;}
.y1b{bottom:473.186667pt;}
.y8c{bottom:474.306667pt;}
.y74{bottom:477.026667pt;}
.yaf{bottom:482.146667pt;}
.ybe{bottom:484.866667pt;}
.y1a{bottom:491.906667pt;}
.y8b{bottom:493.026667pt;}
.y73{bottom:495.746667pt;}
.yae{bottom:500.866667pt;}
.ybd{bottom:503.586667pt;}
.y8a{bottom:511.746667pt;}
.y72{bottom:514.466667pt;}
.yad{bottom:519.586667pt;}
.ybc{bottom:522.306667pt;}
.y4d{bottom:530.466667pt;}
.y19{bottom:531.426667pt;}
.y71{bottom:533.186667pt;}
.yac{bottom:538.306667pt;}
.ybb{bottom:541.026667pt;}
.y4c{bottom:549.186667pt;}
.yab{bottom:557.026667pt;}
.y18{bottom:557.986667pt;}
.yba{bottom:559.746667pt;}
.y70{bottom:559.906667pt;}
.y4b{bottom:567.906667pt;}
.yaa{bottom:575.746667pt;}
.y17{bottom:576.706667pt;}
.yb9{bottom:578.333333pt;}
.y6f{bottom:578.493333pt;}
.y4a{bottom:586.493333pt;}
.ya9{bottom:594.493333pt;}
.y16{bottom:595.453333pt;}
.yb8{bottom:597.053333pt;}
.y6e{bottom:597.213333pt;}
.y49{bottom:605.213333pt;}
.ya8{bottom:613.213333pt;}
.y15{bottom:614.173333pt;}
.yb7{bottom:615.773333pt;}
.y6d{bottom:615.933333pt;}
.y48{bottom:623.933333pt;}
.ya7{bottom:631.933333pt;}
.y14{bottom:632.893333pt;}
.yb6{bottom:634.493333pt;}
.y6c{bottom:634.653333pt;}
.y47{bottom:642.653333pt;}
.ya6{bottom:650.653333pt;}
.y13{bottom:651.613333pt;}
.yb5{bottom:653.213333pt;}
.y6b{bottom:653.373333pt;}
.y46{bottom:661.373333pt;}
.yb3{bottom:666.013333pt;}
.ya5{bottom:669.373333pt;}
.y12{bottom:670.333333pt;}
.y6a{bottom:672.093333pt;}
.y45{bottom:680.093333pt;}
.ya4{bottom:688.093333pt;}
.y11{bottom:689.053333pt;}
.y69{bottom:690.813333pt;}
.y44{bottom:698.813333pt;}
.ya3{bottom:706.813333pt;}
.y10{bottom:707.773333pt;}
.y68{bottom:709.533333pt;}
.y43{bottom:717.533333pt;}
.ya2{bottom:725.533333pt;}
.yf{bottom:726.493333pt;}
.y67{bottom:728.253333pt;}
.y42{bottom:736.253333pt;}
.ya0{bottom:738.333333pt;}
.ye{bottom:745.373333pt;}
.y66{bottom:746.973333pt;}
.y41{bottom:754.973333pt;}
.y65{bottom:765.693333pt;}
.yd{bottom:766.013333pt;}
.y40{bottom:773.693333pt;}
.y64{bottom:784.413333pt;}
.yc{bottom:789.373333pt;}
.y3f{bottom:792.413333pt;}
.y63{bottom:803.173333pt;}
.yb{bottom:804.133333pt;}
.y3e{bottom:811.173333pt;}
.y62{bottom:821.893333pt;}
.ya{bottom:824.773333pt;}
.y3d{bottom:829.893333pt;}
.y61{bottom:840.613333pt;}
.y9{bottom:844.613333pt;}
.y3c{bottom:848.613333pt;}
.y60{bottom:859.333333pt;}
.y8{bottom:867.013333pt;}
.y3b{bottom:867.333333pt;}
.y5f{bottom:878.053333pt;}
.y3a{bottom:886.053333pt;}
.y9d{bottom:891.973333pt;}
.y5e{bottom:896.773333pt;}
.y7{bottom:896.933333pt;}
.y39{bottom:904.773333pt;}
.y5d{bottom:915.493333pt;}
.y38{bottom:923.493333pt;}
.y5{bottom:932.613333pt;}
.y5c{bottom:934.213333pt;}
.y37{bottom:942.213333pt;}
.y36{bottom:960.933333pt;}
.y4{bottom:961.253333pt;}
.y35{bottom:979.653333pt;}
.y3{bottom:989.893333pt;}
.y34{bottom:998.373333pt;}
.y33{bottom:1017.093333pt;}
.y2{bottom:1018.373333pt;}
.y32{bottom:1035.840000pt;}
.y1{bottom:1048.640000pt;}
.y31{bottom:1060.640000pt;}
.h7{height:34.374375pt;}
.h8{height:46.454062pt;}
.h9{height:52.834688pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.ha{height:139.386667pt;}
.hc{height:153.626667pt;}
.hb{height:156.666667pt;}
.hd{height:349.026667pt;}
.he{height:382.626667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:197.946667pt;}
.w6{width:300.506667pt;}
.w4{width:300.546667pt;}
.w5{width:300.666667pt;}
.w7{width:301.506667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:10.400000pt;}
.xe{left:16.000000pt;}
.xc{left:24.480000pt;}
.xf{left:26.080000pt;}
.x10{left:42.880000pt;}
.x6{left:47.999988pt;}
.x7{left:67.199988pt;}
.x1c{left:71.999988pt;}
.x1d{left:91.231988pt;}
.x11{left:96.352000pt;}
.xb{left:99.080000pt;}
.x5{left:157.306655pt;}
.x9{left:239.586655pt;}
.x3{left:241.986655pt;}
.x19{left:267.426655pt;}
.x8{left:273.026655pt;}
.x15{left:275.240000pt;}
.x12{left:289.474667pt;}
.x14{left:296.680000pt;}
.x1b{left:298.466655pt;}
.x17{left:305.501333pt;}
.x2{left:311.586655pt;}
.x18{left:313.346667pt;}
.x16{left:320.386655pt;}
.x4{left:372.546655pt;}
.x13{left:396.893333pt;}
.x1{left:426.013322pt;}
.xa{left:477.693333pt;}
.x1a{left:647.173322pt;}
.x1e{left:745.279988pt;}
}




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