
    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_bf2a023b5ca6da22b5c685b9.woff2')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_433ea4ca8f1809230436714c.woff2')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_eb17d9782f016655ec86effd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.960449;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_086c80d1d2e968b1f9fd9218.woff2')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_58985701b4c755d552b4c977.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8e1bf6bd6eb959102e39aae5.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4971bd13594e7157abd54c2e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_97dbdd6d9d051042f44fa935.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_83fca05a1f7138c5e94eda1e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.346200px;}
.ls16{letter-spacing:-0.326400px;}
.lsa{letter-spacing:-0.175800px;}
.ls12{letter-spacing:-0.107400px;}
.ls15{letter-spacing:-0.064800px;}
.ls9{letter-spacing:-0.058320px;}
.ls11{letter-spacing:-0.018000px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.060600px;}
.ls13{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.140400px;}
.lsc{letter-spacing:0.169200px;}
.ls17{letter-spacing:0.174240px;}
.ls10{letter-spacing:0.175200px;}
.ls7{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.186600px;}
.ls5{letter-spacing:0.208800px;}
.ls18{letter-spacing:0.209400px;}
.ls6{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.220200px;}
.lse{letter-spacing:0.306000px;}
.ls0{letter-spacing:0.894240px;}
.lsd{letter-spacing:0.900000px;}
.ls1{letter-spacing:20.106720px;}
.ls2{letter-spacing:22.266720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(46,116,181),0 0.015em rgb(46,116,181),0.015em 0 rgb(46,116,181),0 -0.015em  rgb(46,116,181);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(46,116,181);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-59.760000px;}
.ws0{word-spacing:-19.247040px;}
.ws2{word-spacing:-19.038240px;}
.ws8{word-spacing:-13.811760px;}
.wse{word-spacing:-13.725960px;}
.ws9{word-spacing:-13.692360px;}
.wsa{word-spacing:-13.680960px;}
.ws6{word-spacing:-13.646160px;}
.ws3{word-spacing:-13.505760px;}
.ws4{word-spacing:-13.447440px;}
.wsd{word-spacing:-13.440960px;}
.wsc{word-spacing:-13.159560px;}
.ws1{word-spacing:-12.204000px;}
.wsb{word-spacing:-12.186000px;}
.ws7{word-spacing:0.000000px;}
._3{margin-left:-3.132000px;}
._f{margin-left:-2.122800px;}
._0{margin-left:-1.109040px;}
._1{width:1.374480px;}
._9{width:2.439840px;}
._5{width:3.539040px;}
._4{width:4.590000px;}
._6{width:5.994000px;}
._2{width:7.373040px;}
._e{width:8.686560px;}
._a{width:10.697040px;}
._b{width:11.952000px;}
._c{width:14.732400px;}
._d{width:16.070880px;}
._8{width:18.645120px;}
._7{width:19.959840px;}
._13{width:21.067920px;}
._10{width:25.187760px;}
._12{width:27.940560px;}
._11{width:29.010720px;}
.fc1{color:rgb(46,116,181);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y68{bottom:119.016000px;}
.y7d{bottom:119.196000px;}
.y32{bottom:121.356000px;}
.y67{bottom:135.576000px;}
.y31{bottom:137.736000px;}
.y7c{bottom:145.836000px;}
.y66{bottom:151.950000px;}
.yc0{bottom:154.110000px;}
.y30{bottom:154.290000px;}
.y65{bottom:168.510000px;}
.y2f{bottom:170.850000px;}
.ybf{bottom:172.470000px;}
.y64{bottom:184.890000px;}
.y2e{bottom:187.230000px;}
.ybe{bottom:190.650000px;}
.y2d{bottom:203.790000px;}
.ybd{bottom:209.010000px;}
.y63{bottom:210.450000px;}
.y2c{bottom:220.170000px;}
.y62{bottom:227.010000px;}
.ybc{bottom:227.370000px;}
.y2b{bottom:241.230000px;}
.y61{bottom:243.390000px;}
.ybb{bottom:245.550000px;}
.y9e{bottom:263.910000px;}
.y60{bottom:266.430000px;}
.y2a{bottom:266.610000px;}
.y9d{bottom:280.470000px;}
.yba{bottom:282.270000px;}
.y29{bottom:289.110000px;}
.y5f{bottom:291.990000px;}
.y9c{bottom:297.030000px;}
.yb9{bottom:300.630000px;}
.y9b{bottom:313.410000px;}
.yb8{bottom:318.810000px;}
.y28{bottom:319.710000px;}
.y5e{bottom:329.250000px;}
.y27{bottom:336.270000px;}
.yb7{bottom:337.215000px;}
.y9a{bottom:339.015000px;}
.y5d{bottom:345.675000px;}
.y99{bottom:355.395000px;}
.yb6{bottom:355.575000px;}
.y26{bottom:362.595000px;}
.y7b{bottom:370.335000px;}
.y5c{bottom:371.955000px;}
.yb5{bottom:373.935000px;}
.y7a{bottom:386.895000px;}
.y98{bottom:388.335000px;}
.y5b{bottom:388.515000px;}
.y25{bottom:388.875000px;}
.yb4{bottom:392.115000px;}
.y79{bottom:403.455000px;}
.y97{bottom:404.895000px;}
.y24{bottom:405.435000px;}
.yb3{bottom:410.475000px;}
.y5a{bottom:414.795000px;}
.y78{bottom:419.835000px;}
.y96{bottom:421.275000px;}
.yb2{bottom:428.835000px;}
.y23{bottom:431.535000px;}
.y77{bottom:436.395000px;}
.y59{bottom:441.075000px;}
.y95{bottom:446.835000px;}
.yb1{bottom:447.015000px;}
.y22{bottom:448.095000px;}
.y76{bottom:452.775000px;}
.y58{bottom:457.455000px;}
.y94{bottom:463.395000px;}
.yb0{bottom:465.375000px;}
.y21{bottom:474.375000px;}
.y75{bottom:478.335000px;}
.y57{bottom:478.515000px;}
.y93{bottom:479.775000px;}
.yaf{bottom:483.735000px;}
.y20{bottom:490.755000px;}
.y74{bottom:494.715000px;}
.y92{bottom:496.335000px;}
.yae{bottom:502.095000px;}
.y56{bottom:503.895000px;}
.y73{bottom:511.275000px;}
.y91{bottom:512.715000px;}
.y1f{bottom:513.795000px;}
.yad{bottom:520.275000px;}
.y55{bottom:520.455000px;}
.y90{bottom:529.275000px;}
.y72{bottom:534.135000px;}
.y54{bottom:536.835000px;}
.yac{bottom:538.635000px;}
.y8f{bottom:545.655000px;}
.y1e{bottom:550.875000px;}
.y53{bottom:553.395000px;}
.yab{bottom:556.995000px;}
.y8e{bottom:562.215000px;}
.y1d{bottom:567.435000px;}
.y52{bottom:569.775000px;}
.y71{bottom:571.395000px;}
.yaa{bottom:575.355000px;}
.y1c{bottom:583.815000px;}
.y8d{bottom:585.075000px;}
.ya9{bottom:593.535000px;}
.y51{bottom:595.335000px;}
.y70{bottom:596.775000px;}
.y1b{bottom:609.405000px;}
.y50{bottom:611.925000px;}
.y6f{bottom:613.365000px;}
.y8c{bottom:622.365000px;}
.y1a{bottom:625.785000px;}
.y4f{bottom:628.305000px;}
.y6e{bottom:629.745000px;}
.ya8{bottom:630.285000px;}
.y19{bottom:642.345000px;}
.y4e{bottom:644.865000px;}
.y6d{bottom:646.305000px;}
.y8b{bottom:647.745000px;}
.ya7{bottom:658.545000px;}
.y18{bottom:658.905000px;}
.y4d{bottom:665.745000px;}
.y8a{bottom:673.305000px;}
.y17{bottom:675.285000px;}
.y6c{bottom:676.005000px;}
.y4c{bottom:682.305000px;}
.ya6{bottom:689.145000px;}
.y16{bottom:691.845000px;}
.y6b{bottom:693.825000px;}
.y89{bottom:695.085000px;}
.y4b{bottom:707.685000px;}
.ya5{bottom:714.705000px;}
.y6a{bottom:715.605000px;}
.y15{bottom:717.225000px;}
.y4a{bottom:724.245000px;}
.ya4{bottom:731.265000px;}
.y14{bottom:733.785000px;}
.ya3{bottom:747.645000px;}
.y49{bottom:749.625000px;}
.y13{bottom:750.165000px;}
.y48{bottom:766.185000px;}
.ya2{bottom:770.505000px;}
.y12{bottom:775.725000px;}
.y47{bottom:782.745000px;}
.y11{bottom:792.105000px;}
.y46{bottom:799.125000px;}
.ya1{bottom:807.765000px;}
.y10{bottom:808.665000px;}
.y45{bottom:815.685000px;}
.yf{bottom:831.525000px;}
.y44{bottom:832.065000px;}
.ya0{bottom:833.325000px;}
.y9f{bottom:855.105000px;}
.y43{bottom:857.625000px;}
.ye{bottom:868.785000px;}
.y42{bottom:874.050000px;}
.yd{bottom:885.210000px;}
.y41{bottom:890.610000px;}
.yc{bottom:910.410000px;}
.y40{bottom:911.490000px;}
.yb{bottom:925.170000px;}
.y3f{bottom:928.050000px;}
.y88{bottom:939.930000px;}
.ya{bottom:940.110000px;}
.y3e{bottom:953.610000px;}
.y9{bottom:954.870000px;}
.y87{bottom:956.310000px;}
.y8{bottom:969.630000px;}
.y3d{bottom:969.990000px;}
.y86{bottom:972.870000px;}
.y7{bottom:984.570000px;}
.y3c{bottom:986.550000px;}
.y85{bottom:989.250000px;}
.y6{bottom:999.330000px;}
.y3b{bottom:1002.930000px;}
.y84{bottom:1005.810000px;}
.y5{bottom:1014.270000px;}
.y3a{bottom:1019.490000px;}
.y83{bottom:1022.190000px;}
.y39{bottom:1035.870000px;}
.y82{bottom:1038.750000px;}
.y4{bottom:1043.250000px;}
.y38{bottom:1052.430000px;}
.y81{bottom:1055.310000px;}
.y69{bottom:1061.430000px;}
.y3{bottom:1075.110000px;}
.y37{bottom:1077.810000px;}
.y80{bottom:1080.690000px;}
.y36{bottom:1094.370000px;}
.y7f{bottom:1097.250000px;}
.y2{bottom:1108.950000px;}
.y35{bottom:1110.750000px;}
.y7e{bottom:1113.630000px;}
.y34{bottom:1127.310000px;}
.y1{bottom:1136.670000px;}
.y33{bottom:1143.900000px;}
.ha{height:43.453125px;}
.h9{height:45.578672px;}
.h5{height:53.709961px;}
.h4{height:55.291992px;}
.h6{height:59.439023px;}
.h8{height:60.226875px;}
.h3{height:61.189805px;}
.h7{height:61.423863px;}
.hb{height:65.884219px;}
.hc{height:67.786875px;}
.h2{height:86.255508px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:127.656000px;}
.xa{left:129.096000px;}
.x1{left:136.296000px;}
.x12{left:138.276000px;}
.x5{left:148.896000px;}
.x7{left:154.110000px;}
.x13{left:159.690000px;}
.x8{left:170.130000px;}
.x3{left:196.230000px;}
.xc{left:199.650000px;}
.xe{left:204.690000px;}
.x4{left:225.030000px;}
.x11{left:248.070000px;}
.x2{left:272.730000px;}
.xf{left:446.475000px;}
.xb{left:617.505000px;}
.x10{left:654.585000px;}
.xd{left:663.630000px;}
.x9{left:668.310000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.307733pt;}
.ls16{letter-spacing:-0.290133pt;}
.lsa{letter-spacing:-0.156267pt;}
.ls12{letter-spacing:-0.095467pt;}
.ls15{letter-spacing:-0.057600pt;}
.ls9{letter-spacing:-0.051840pt;}
.ls11{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.053867pt;}
.ls13{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.124800pt;}
.lsc{letter-spacing:0.150400pt;}
.ls17{letter-spacing:0.154880pt;}
.ls10{letter-spacing:0.155733pt;}
.ls7{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.165867pt;}
.ls5{letter-spacing:0.185600pt;}
.ls18{letter-spacing:0.186133pt;}
.ls6{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.195733pt;}
.lse{letter-spacing:0.272000pt;}
.ls0{letter-spacing:0.794880pt;}
.lsd{letter-spacing:0.800000pt;}
.ls1{letter-spacing:17.872640pt;}
.ls2{letter-spacing:19.792640pt;}
.ws5{word-spacing:-53.120000pt;}
.ws0{word-spacing:-17.108480pt;}
.ws2{word-spacing:-16.922880pt;}
.ws8{word-spacing:-12.277120pt;}
.wse{word-spacing:-12.200853pt;}
.ws9{word-spacing:-12.170987pt;}
.wsa{word-spacing:-12.160853pt;}
.ws6{word-spacing:-12.129920pt;}
.ws3{word-spacing:-12.005120pt;}
.ws4{word-spacing:-11.953280pt;}
.wsd{word-spacing:-11.947520pt;}
.wsc{word-spacing:-11.697387pt;}
.ws1{word-spacing:-10.848000pt;}
.wsb{word-spacing:-10.832000pt;}
.ws7{word-spacing:0.000000pt;}
._3{margin-left:-2.784000pt;}
._f{margin-left:-1.886933pt;}
._0{margin-left:-0.985813pt;}
._1{width:1.221760pt;}
._9{width:2.168747pt;}
._5{width:3.145813pt;}
._4{width:4.080000pt;}
._6{width:5.328000pt;}
._2{width:6.553813pt;}
._e{width:7.721387pt;}
._a{width:9.508480pt;}
._b{width:10.624000pt;}
._c{width:13.095467pt;}
._d{width:14.285227pt;}
._8{width:16.573440pt;}
._7{width:17.742080pt;}
._13{width:18.727040pt;}
._10{width:22.389120pt;}
._12{width:24.836053pt;}
._11{width:25.787307pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:105.792000pt;}
.y7d{bottom:105.952000pt;}
.y32{bottom:107.872000pt;}
.y67{bottom:120.512000pt;}
.y31{bottom:122.432000pt;}
.y7c{bottom:129.632000pt;}
.y66{bottom:135.066667pt;}
.yc0{bottom:136.986667pt;}
.y30{bottom:137.146667pt;}
.y65{bottom:149.786667pt;}
.y2f{bottom:151.866667pt;}
.ybf{bottom:153.306667pt;}
.y64{bottom:164.346667pt;}
.y2e{bottom:166.426667pt;}
.ybe{bottom:169.466667pt;}
.y2d{bottom:181.146667pt;}
.ybd{bottom:185.786667pt;}
.y63{bottom:187.066667pt;}
.y2c{bottom:195.706667pt;}
.y62{bottom:201.786667pt;}
.ybc{bottom:202.106667pt;}
.y2b{bottom:214.426667pt;}
.y61{bottom:216.346667pt;}
.ybb{bottom:218.266667pt;}
.y9e{bottom:234.586667pt;}
.y60{bottom:236.826667pt;}
.y2a{bottom:236.986667pt;}
.y9d{bottom:249.306667pt;}
.yba{bottom:250.906667pt;}
.y29{bottom:256.986667pt;}
.y5f{bottom:259.546667pt;}
.y9c{bottom:264.026667pt;}
.yb9{bottom:267.226667pt;}
.y9b{bottom:278.586667pt;}
.yb8{bottom:283.386667pt;}
.y28{bottom:284.186667pt;}
.y5e{bottom:292.666667pt;}
.y27{bottom:298.906667pt;}
.yb7{bottom:299.746667pt;}
.y9a{bottom:301.346667pt;}
.y5d{bottom:307.266667pt;}
.y99{bottom:315.906667pt;}
.yb6{bottom:316.066667pt;}
.y26{bottom:322.306667pt;}
.y7b{bottom:329.186667pt;}
.y5c{bottom:330.626667pt;}
.yb5{bottom:332.386667pt;}
.y7a{bottom:343.906667pt;}
.y98{bottom:345.186667pt;}
.y5b{bottom:345.346667pt;}
.y25{bottom:345.666667pt;}
.yb4{bottom:348.546667pt;}
.y79{bottom:358.626667pt;}
.y97{bottom:359.906667pt;}
.y24{bottom:360.386667pt;}
.yb3{bottom:364.866667pt;}
.y5a{bottom:368.706667pt;}
.y78{bottom:373.186667pt;}
.y96{bottom:374.466667pt;}
.yb2{bottom:381.186667pt;}
.y23{bottom:383.586667pt;}
.y77{bottom:387.906667pt;}
.y59{bottom:392.066667pt;}
.y95{bottom:397.186667pt;}
.yb1{bottom:397.346667pt;}
.y22{bottom:398.306667pt;}
.y76{bottom:402.466667pt;}
.y58{bottom:406.626667pt;}
.y94{bottom:411.906667pt;}
.yb0{bottom:413.666667pt;}
.y21{bottom:421.666667pt;}
.y75{bottom:425.186667pt;}
.y57{bottom:425.346667pt;}
.y93{bottom:426.466667pt;}
.yaf{bottom:429.986667pt;}
.y20{bottom:436.226667pt;}
.y74{bottom:439.746667pt;}
.y92{bottom:441.186667pt;}
.yae{bottom:446.306667pt;}
.y56{bottom:447.906667pt;}
.y73{bottom:454.466667pt;}
.y91{bottom:455.746667pt;}
.y1f{bottom:456.706667pt;}
.yad{bottom:462.466667pt;}
.y55{bottom:462.626667pt;}
.y90{bottom:470.466667pt;}
.y72{bottom:474.786667pt;}
.y54{bottom:477.186667pt;}
.yac{bottom:478.786667pt;}
.y8f{bottom:485.026667pt;}
.y1e{bottom:489.666667pt;}
.y53{bottom:491.906667pt;}
.yab{bottom:495.106667pt;}
.y8e{bottom:499.746667pt;}
.y1d{bottom:504.386667pt;}
.y52{bottom:506.466667pt;}
.y71{bottom:507.906667pt;}
.yaa{bottom:511.426667pt;}
.y1c{bottom:518.946667pt;}
.y8d{bottom:520.066667pt;}
.ya9{bottom:527.586667pt;}
.y51{bottom:529.186667pt;}
.y70{bottom:530.466667pt;}
.y1b{bottom:541.693333pt;}
.y50{bottom:543.933333pt;}
.y6f{bottom:545.213333pt;}
.y8c{bottom:553.213333pt;}
.y1a{bottom:556.253333pt;}
.y4f{bottom:558.493333pt;}
.y6e{bottom:559.773333pt;}
.ya8{bottom:560.253333pt;}
.y19{bottom:570.973333pt;}
.y4e{bottom:573.213333pt;}
.y6d{bottom:574.493333pt;}
.y8b{bottom:575.773333pt;}
.ya7{bottom:585.373333pt;}
.y18{bottom:585.693333pt;}
.y4d{bottom:591.773333pt;}
.y8a{bottom:598.493333pt;}
.y17{bottom:600.253333pt;}
.y6c{bottom:600.893333pt;}
.y4c{bottom:606.493333pt;}
.ya6{bottom:612.573333pt;}
.y16{bottom:614.973333pt;}
.y6b{bottom:616.733333pt;}
.y89{bottom:617.853333pt;}
.y4b{bottom:629.053333pt;}
.ya5{bottom:635.293333pt;}
.y6a{bottom:636.093333pt;}
.y15{bottom:637.533333pt;}
.y4a{bottom:643.773333pt;}
.ya4{bottom:650.013333pt;}
.y14{bottom:652.253333pt;}
.ya3{bottom:664.573333pt;}
.y49{bottom:666.333333pt;}
.y13{bottom:666.813333pt;}
.y48{bottom:681.053333pt;}
.ya2{bottom:684.893333pt;}
.y12{bottom:689.533333pt;}
.y47{bottom:695.773333pt;}
.y11{bottom:704.093333pt;}
.y46{bottom:710.333333pt;}
.ya1{bottom:718.013333pt;}
.y10{bottom:718.813333pt;}
.y45{bottom:725.053333pt;}
.yf{bottom:739.133333pt;}
.y44{bottom:739.613333pt;}
.ya0{bottom:740.733333pt;}
.y9f{bottom:760.093333pt;}
.y43{bottom:762.333333pt;}
.ye{bottom:772.253333pt;}
.y42{bottom:776.933333pt;}
.yd{bottom:786.853333pt;}
.y41{bottom:791.653333pt;}
.yc{bottom:809.253333pt;}
.y40{bottom:810.213333pt;}
.yb{bottom:822.373333pt;}
.y3f{bottom:824.933333pt;}
.y88{bottom:835.493333pt;}
.ya{bottom:835.653333pt;}
.y3e{bottom:847.653333pt;}
.y9{bottom:848.773333pt;}
.y87{bottom:850.053333pt;}
.y8{bottom:861.893333pt;}
.y3d{bottom:862.213333pt;}
.y86{bottom:864.773333pt;}
.y7{bottom:875.173333pt;}
.y3c{bottom:876.933333pt;}
.y85{bottom:879.333333pt;}
.y6{bottom:888.293333pt;}
.y3b{bottom:891.493333pt;}
.y84{bottom:894.053333pt;}
.y5{bottom:901.573333pt;}
.y3a{bottom:906.213333pt;}
.y83{bottom:908.613333pt;}
.y39{bottom:920.773333pt;}
.y82{bottom:923.333333pt;}
.y4{bottom:927.333333pt;}
.y38{bottom:935.493333pt;}
.y81{bottom:938.053333pt;}
.y69{bottom:943.493333pt;}
.y3{bottom:955.653333pt;}
.y37{bottom:958.053333pt;}
.y80{bottom:960.613333pt;}
.y36{bottom:972.773333pt;}
.y7f{bottom:975.333333pt;}
.y2{bottom:985.733333pt;}
.y35{bottom:987.333333pt;}
.y7e{bottom:989.893333pt;}
.y34{bottom:1002.053333pt;}
.y1{bottom:1010.373333pt;}
.y33{bottom:1016.800000pt;}
.ha{height:38.625000pt;}
.h9{height:40.514375pt;}
.h5{height:47.742188pt;}
.h4{height:49.148438pt;}
.h6{height:52.834688pt;}
.h8{height:53.535000pt;}
.h3{height:54.390938pt;}
.h7{height:54.598989pt;}
.hb{height:58.563750pt;}
.hc{height:60.255000pt;}
.h2{height:76.671562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:113.472000pt;}
.xa{left:114.752000pt;}
.x1{left:121.152000pt;}
.x12{left:122.912000pt;}
.x5{left:132.352000pt;}
.x7{left:136.986667pt;}
.x13{left:141.946667pt;}
.x8{left:151.226667pt;}
.x3{left:174.426667pt;}
.xc{left:177.466667pt;}
.xe{left:181.946667pt;}
.x4{left:200.026667pt;}
.x11{left:220.506667pt;}
.x2{left:242.426667pt;}
.xf{left:396.866667pt;}
.xb{left:548.893333pt;}
.x10{left:581.853333pt;}
.xd{left:589.893333pt;}
.x9{left:594.053333pt;}
}




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