
    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_7f28b40d383f099377edc5ff.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_10abce38b814195e2ae72699.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_c480669f8e9bffa51d8f6a07.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_fb9cb1b0e6984b37ae7c7536.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5f3306b288ea883b10b686ca.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.120117;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_516cb9793fd34b0c32f3d333.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.120117;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_222797ab5d405d7c022d133b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6d8f442db278d0cbb61b0dc1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.106934;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_df8b465607cb2424d708434b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f734664268fa93976c34d220.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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;}
.lsa{letter-spacing:-0.219000px;}
.lsb{letter-spacing:-0.057600px;}
.ls1e{letter-spacing:-0.051840px;}
.ls8{letter-spacing:-0.018000px;}
.ls18{letter-spacing:-0.017280px;}
.ls9{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.ls3{letter-spacing:0.025920px;}
.lsc{letter-spacing:0.034560px;}
.ls1a{letter-spacing:0.118080px;}
.ls19{letter-spacing:0.158400px;}
.ls5{letter-spacing:0.206400px;}
.lsd{letter-spacing:0.230400px;}
.ls0{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.558720px;}
.ls10{letter-spacing:0.720000px;}
.ls12{letter-spacing:0.745920px;}
.lsf{letter-spacing:0.925920px;}
.ls1d{letter-spacing:3.600000px;}
.ls17{letter-spacing:4.320000px;}
.ls1{letter-spacing:5.040000px;}
.ls13{letter-spacing:5.760000px;}
.ls16{letter-spacing:7.200000px;}
.ls7{letter-spacing:10.800000px;}
.ls1b{letter-spacing:12.240000px;}
.ls11{letter-spacing:12.960000px;}
.lse{letter-spacing:14.520000px;}
.ls14{letter-spacing:16.536000px;}
.ls4{letter-spacing:16.560000px;}
.ls15{letter-spacing:17.280000px;}
.ls6{letter-spacing:26.622720px;}
.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;}
}
.ws2{word-spacing:-20.520000px;}
.ws3{word-spacing:-19.457280px;}
.ws5{word-spacing:-19.440000px;}
.ws1{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.788160px;}
.ws0{word-spacing:-12.294000px;}
.ws4{word-spacing:0.000000px;}
._3{margin-left:-4.118400px;}
._4{margin-left:-2.603760px;}
._1{margin-left:-1.197840px;}
._0{width:1.320000px;}
._12{width:2.322720px;}
._6{width:3.397440px;}
._5{width:4.561920px;}
._a{width:5.783520px;}
._b{width:7.022400px;}
._c{width:8.475840px;}
._7{width:10.321680px;}
._8{width:11.664240px;}
._f{width:13.182960px;}
._10{width:14.232720px;}
._e{width:15.541920px;}
._d{width:16.951680px;}
._11{width:22.006080px;}
._9{width:27.915840px;}
._13{width:111.741120px;}
._14{width:844.716000px;}
._2{width:1283.236080px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:54.000000px;}
.fs3{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs4{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:101.700000px;}
.y6f{bottom:121.860000px;}
.y4b{bottom:126.180000px;}
.y26{bottom:135.720000px;}
.y81{bottom:138.780000px;}
.y6e{bottom:149.940000px;}
.y4a{bottom:154.260000px;}
.y8f{bottom:155.880000px;}
.y25{bottom:163.980000px;}
.y80{bottom:166.860000px;}
.y6d{bottom:178.050000px;}
.y49{bottom:182.190000px;}
.y8e{bottom:183.990000px;}
.y24{bottom:193.170000px;}
.y7f{bottom:194.790000px;}
.y6c{bottom:206.130000px;}
.y48{bottom:210.270000px;}
.y8d{bottom:211.890000px;}
.y23{bottom:221.250000px;}
.y7e{bottom:222.870000px;}
.y6b{bottom:234.210000px;}
.y47{bottom:238.350000px;}
.y8c{bottom:239.970000px;}
.y22{bottom:249.330000px;}
.y7d{bottom:250.950000px;}
.y6a{bottom:263.550000px;}
.y46{bottom:266.250000px;}
.y8b{bottom:268.050000px;}
.y21{bottom:277.230000px;}
.y7c{bottom:279.030000px;}
.y69{bottom:291.630000px;}
.y45{bottom:294.330000px;}
.y8a{bottom:295.950000px;}
.y20{bottom:305.310000px;}
.y7b{bottom:306.930000px;}
.y68{bottom:321.150000px;}
.y44{bottom:322.410000px;}
.y89{bottom:324.030000px;}
.y1f{bottom:333.390000px;}
.y7a{bottom:335.010000px;}
.y43{bottom:350.490000px;}
.y88{bottom:352.110000px;}
.y1e{bottom:361.470000px;}
.y79{bottom:363.090000px;}
.y42{bottom:378.390000px;}
.y67{bottom:380.010000px;}
.y87{bottom:380.190000px;}
.y1d{bottom:389.370000px;}
.y78{bottom:390.990000px;}
.y41{bottom:406.470000px;}
.y86{bottom:408.090000px;}
.y66{bottom:409.350000px;}
.y1c{bottom:417.495000px;}
.y77{bottom:419.115000px;}
.y40{bottom:434.595000px;}
.y85{bottom:436.215000px;}
.y65{bottom:437.295000px;}
.yaf{bottom:445.395000px;}
.y1b{bottom:445.575000px;}
.y76{bottom:447.195000px;}
.y3f{bottom:462.495000px;}
.y84{bottom:464.295000px;}
.y64{bottom:465.375000px;}
.y1a{bottom:473.475000px;}
.y75{bottom:475.275000px;}
.y3e{bottom:490.575000px;}
.y83{bottom:492.195000px;}
.y63{bottom:493.455000px;}
.y19{bottom:501.555000px;}
.y74{bottom:503.175000px;}
.yae{bottom:505.875000px;}
.y3d{bottom:518.655000px;}
.y62{bottom:521.355000px;}
.y18{bottom:529.635000px;}
.y82{bottom:530.175000px;}
.y73{bottom:531.255000px;}
.y3c{bottom:546.735000px;}
.yad{bottom:547.455000px;}
.y61{bottom:549.435000px;}
.y17{bottom:557.715000px;}
.y72{bottom:568.335000px;}
.yac{bottom:569.955000px;}
.y3b{bottom:574.635000px;}
.y60{bottom:577.515000px;}
.y16{bottom:585.615000px;}
.yab{bottom:589.035000px;}
.y71{bottom:596.235000px;}
.y3a{bottom:602.715000px;}
.y5f{bottom:605.595000px;}
.yaa{bottom:608.115000px;}
.y15{bottom:613.695000px;}
.y70{bottom:620.355000px;}
.ya9{bottom:627.015000px;}
.y39{bottom:630.795000px;}
.y5e{bottom:633.495000px;}
.y14{bottom:641.775000px;}
.ya8{bottom:646.095000px;}
.y38{bottom:658.725000px;}
.y5d{bottom:661.605000px;}
.ya7{bottom:665.205000px;}
.y13{bottom:669.705000px;}
.ya6{bottom:684.105000px;}
.y37{bottom:686.805000px;}
.y5c{bottom:689.685000px;}
.y12{bottom:697.785000px;}
.ya5{bottom:703.185000px;}
.y36{bottom:714.885000px;}
.y5b{bottom:717.585000px;}
.ya4{bottom:722.265000px;}
.y11{bottom:725.865000px;}
.ya3{bottom:741.165000px;}
.y35{bottom:742.965000px;}
.y5a{bottom:745.665000px;}
.y10{bottom:753.945000px;}
.ya2{bottom:760.245000px;}
.y34{bottom:770.865000px;}
.y59{bottom:773.745000px;}
.ya1{bottom:779.145000px;}
.yf{bottom:781.845000px;}
.ya0{bottom:798.225000px;}
.y33{bottom:798.945000px;}
.y58{bottom:801.825000px;}
.ye{bottom:809.925000px;}
.y9f{bottom:817.305000px;}
.y32{bottom:827.025000px;}
.y57{bottom:829.725000px;}
.y9e{bottom:836.205000px;}
.yd{bottom:838.005000px;}
.y31{bottom:854.925000px;}
.y9d{bottom:855.285000px;}
.y56{bottom:857.805000px;}
.yc{bottom:865.905000px;}
.y9c{bottom:874.365000px;}
.y30{bottom:883.005000px;}
.y55{bottom:885.885000px;}
.y9b{bottom:893.265000px;}
.yb{bottom:901.185000px;}
.y2f{bottom:911.130000px;}
.y9a{bottom:912.390000px;}
.y54{bottom:913.830000px;}
.ya{bottom:919.410000px;}
.y99{bottom:931.470000px;}
.y9{bottom:937.590000px;}
.y2e{bottom:939.210000px;}
.y53{bottom:941.910000px;}
.y98{bottom:950.370000px;}
.y8{bottom:955.590000px;}
.y2d{bottom:967.110000px;}
.y97{bottom:969.450000px;}
.y52{bottom:969.990000px;}
.y7{bottom:973.770000px;}
.y96{bottom:988.530000px;}
.y2c{bottom:995.190000px;}
.y51{bottom:998.070000px;}
.y95{bottom:1007.430000px;}
.y6{bottom:1022.190000px;}
.y2b{bottom:1023.270000px;}
.y50{bottom:1025.970000px;}
.y94{bottom:1026.510000px;}
.y93{bottom:1045.590000px;}
.y2a{bottom:1051.170000px;}
.y4f{bottom:1054.050000px;}
.y5{bottom:1054.410000px;}
.y92{bottom:1064.490000px;}
.y29{bottom:1079.430000px;}
.y4e{bottom:1082.130000px;}
.y91{bottom:1083.570000px;}
.y4{bottom:1095.630000px;}
.y90{bottom:1102.470000px;}
.y28{bottom:1108.770000px;}
.y4d{bottom:1110.030000px;}
.y27{bottom:1136.850000px;}
.y4c{bottom:1138.110000px;}
.y3{bottom:1141.710000px;}
.y1{bottom:1186.380000px;}
.h8{height:56.460938px;}
.hc{height:56.611406px;}
.h7{height:62.184375px;}
.h4{height:63.855000px;}
.h3{height:65.010937px;}
.h5{height:65.522461px;}
.h9{height:69.292969px;}
.h2{height:76.317188px;}
.hd{height:78.367500px;}
.ha{height:81.101250px;}
.h6{height:81.870117px;}
.hb{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959987px;}
.xb{left:106.415987px;}
.x6{left:127.475987px;}
.x4{left:128.735987px;}
.x11{left:140.435987px;}
.x7{left:148.895987px;}
.xa{left:170.309987px;}
.xd{left:220.349987px;}
.x10{left:267.149987px;}
.xe{left:303.374987px;}
.x5{left:308.414987px;}
.xf{left:415.874987px;}
.x2{left:427.394987px;}
.x9{left:448.994987px;}
.x3{left:676.049987px;}
.x8{left:694.229987px;}
.xc{left:764.249987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.194667pt;}
.lsb{letter-spacing:-0.051200pt;}
.ls1e{letter-spacing:-0.046080pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls18{letter-spacing:-0.015360pt;}
.ls9{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.ls3{letter-spacing:0.023040pt;}
.lsc{letter-spacing:0.030720pt;}
.ls1a{letter-spacing:0.104960pt;}
.ls19{letter-spacing:0.140800pt;}
.ls5{letter-spacing:0.183467pt;}
.lsd{letter-spacing:0.204800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.496640pt;}
.ls10{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.663040pt;}
.lsf{letter-spacing:0.823040pt;}
.ls1d{letter-spacing:3.200000pt;}
.ls17{letter-spacing:3.840000pt;}
.ls1{letter-spacing:4.480000pt;}
.ls13{letter-spacing:5.120000pt;}
.ls16{letter-spacing:6.400000pt;}
.ls7{letter-spacing:9.600000pt;}
.ls1b{letter-spacing:10.880000pt;}
.ls11{letter-spacing:11.520000pt;}
.lse{letter-spacing:12.906667pt;}
.ls14{letter-spacing:14.698667pt;}
.ls4{letter-spacing:14.720000pt;}
.ls15{letter-spacing:15.360000pt;}
.ls6{letter-spacing:23.664640pt;}
.ws2{word-spacing:-18.240000pt;}
.ws3{word-spacing:-17.295360pt;}
.ws5{word-spacing:-17.280000pt;}
.ws1{word-spacing:-14.080000pt;}
.ws6{word-spacing:-14.033920pt;}
.ws0{word-spacing:-10.928000pt;}
.ws4{word-spacing:0.000000pt;}
._3{margin-left:-3.660800pt;}
._4{margin-left:-2.314453pt;}
._1{margin-left:-1.064747pt;}
._0{width:1.173333pt;}
._12{width:2.064640pt;}
._6{width:3.019947pt;}
._5{width:4.055040pt;}
._a{width:5.140907pt;}
._b{width:6.242133pt;}
._c{width:7.534080pt;}
._7{width:9.174827pt;}
._8{width:10.368213pt;}
._f{width:11.718187pt;}
._10{width:12.651307pt;}
._e{width:13.815040pt;}
._d{width:15.068160pt;}
._11{width:19.560960pt;}
._9{width:24.814080pt;}
._13{width:99.325440pt;}
._14{width:750.858667pt;}
._2{width:1140.654293pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs4{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:90.400000pt;}
.y6f{bottom:108.320000pt;}
.y4b{bottom:112.160000pt;}
.y26{bottom:120.640000pt;}
.y81{bottom:123.360000pt;}
.y6e{bottom:133.280000pt;}
.y4a{bottom:137.120000pt;}
.y8f{bottom:138.560000pt;}
.y25{bottom:145.760000pt;}
.y80{bottom:148.320000pt;}
.y6d{bottom:158.266667pt;}
.y49{bottom:161.946667pt;}
.y8e{bottom:163.546667pt;}
.y24{bottom:171.706667pt;}
.y7f{bottom:173.146667pt;}
.y6c{bottom:183.226667pt;}
.y48{bottom:186.906667pt;}
.y8d{bottom:188.346667pt;}
.y23{bottom:196.666667pt;}
.y7e{bottom:198.106667pt;}
.y6b{bottom:208.186667pt;}
.y47{bottom:211.866667pt;}
.y8c{bottom:213.306667pt;}
.y22{bottom:221.626667pt;}
.y7d{bottom:223.066667pt;}
.y6a{bottom:234.266667pt;}
.y46{bottom:236.666667pt;}
.y8b{bottom:238.266667pt;}
.y21{bottom:246.426667pt;}
.y7c{bottom:248.026667pt;}
.y69{bottom:259.226667pt;}
.y45{bottom:261.626667pt;}
.y8a{bottom:263.066667pt;}
.y20{bottom:271.386667pt;}
.y7b{bottom:272.826667pt;}
.y68{bottom:285.466667pt;}
.y44{bottom:286.586667pt;}
.y89{bottom:288.026667pt;}
.y1f{bottom:296.346667pt;}
.y7a{bottom:297.786667pt;}
.y43{bottom:311.546667pt;}
.y88{bottom:312.986667pt;}
.y1e{bottom:321.306667pt;}
.y79{bottom:322.746667pt;}
.y42{bottom:336.346667pt;}
.y67{bottom:337.786667pt;}
.y87{bottom:337.946667pt;}
.y1d{bottom:346.106667pt;}
.y78{bottom:347.546667pt;}
.y41{bottom:361.306667pt;}
.y86{bottom:362.746667pt;}
.y66{bottom:363.866667pt;}
.y1c{bottom:371.106667pt;}
.y77{bottom:372.546667pt;}
.y40{bottom:386.306667pt;}
.y85{bottom:387.746667pt;}
.y65{bottom:388.706667pt;}
.yaf{bottom:395.906667pt;}
.y1b{bottom:396.066667pt;}
.y76{bottom:397.506667pt;}
.y3f{bottom:411.106667pt;}
.y84{bottom:412.706667pt;}
.y64{bottom:413.666667pt;}
.y1a{bottom:420.866667pt;}
.y75{bottom:422.466667pt;}
.y3e{bottom:436.066667pt;}
.y83{bottom:437.506667pt;}
.y63{bottom:438.626667pt;}
.y19{bottom:445.826667pt;}
.y74{bottom:447.266667pt;}
.yae{bottom:449.666667pt;}
.y3d{bottom:461.026667pt;}
.y62{bottom:463.426667pt;}
.y18{bottom:470.786667pt;}
.y82{bottom:471.266667pt;}
.y73{bottom:472.226667pt;}
.y3c{bottom:485.986667pt;}
.yad{bottom:486.626667pt;}
.y61{bottom:488.386667pt;}
.y17{bottom:495.746667pt;}
.y72{bottom:505.186667pt;}
.yac{bottom:506.626667pt;}
.y3b{bottom:510.786667pt;}
.y60{bottom:513.346667pt;}
.y16{bottom:520.546667pt;}
.yab{bottom:523.586667pt;}
.y71{bottom:529.986667pt;}
.y3a{bottom:535.746667pt;}
.y5f{bottom:538.306667pt;}
.yaa{bottom:540.546667pt;}
.y15{bottom:545.506667pt;}
.y70{bottom:551.426667pt;}
.ya9{bottom:557.346667pt;}
.y39{bottom:560.706667pt;}
.y5e{bottom:563.106667pt;}
.y14{bottom:570.466667pt;}
.ya8{bottom:574.306667pt;}
.y38{bottom:585.533333pt;}
.y5d{bottom:588.093333pt;}
.ya7{bottom:591.293333pt;}
.y13{bottom:595.293333pt;}
.ya6{bottom:608.093333pt;}
.y37{bottom:610.493333pt;}
.y5c{bottom:613.053333pt;}
.y12{bottom:620.253333pt;}
.ya5{bottom:625.053333pt;}
.y36{bottom:635.453333pt;}
.y5b{bottom:637.853333pt;}
.ya4{bottom:642.013333pt;}
.y11{bottom:645.213333pt;}
.ya3{bottom:658.813333pt;}
.y35{bottom:660.413333pt;}
.y5a{bottom:662.813333pt;}
.y10{bottom:670.173333pt;}
.ya2{bottom:675.773333pt;}
.y34{bottom:685.213333pt;}
.y59{bottom:687.773333pt;}
.ya1{bottom:692.573333pt;}
.yf{bottom:694.973333pt;}
.ya0{bottom:709.533333pt;}
.y33{bottom:710.173333pt;}
.y58{bottom:712.733333pt;}
.ye{bottom:719.933333pt;}
.y9f{bottom:726.493333pt;}
.y32{bottom:735.133333pt;}
.y57{bottom:737.533333pt;}
.y9e{bottom:743.293333pt;}
.yd{bottom:744.893333pt;}
.y31{bottom:759.933333pt;}
.y9d{bottom:760.253333pt;}
.y56{bottom:762.493333pt;}
.yc{bottom:769.693333pt;}
.y9c{bottom:777.213333pt;}
.y30{bottom:784.893333pt;}
.y55{bottom:787.453333pt;}
.y9b{bottom:794.013333pt;}
.yb{bottom:801.053333pt;}
.y2f{bottom:809.893333pt;}
.y9a{bottom:811.013333pt;}
.y54{bottom:812.293333pt;}
.ya{bottom:817.253333pt;}
.y99{bottom:827.973333pt;}
.y9{bottom:833.413333pt;}
.y2e{bottom:834.853333pt;}
.y53{bottom:837.253333pt;}
.y98{bottom:844.773333pt;}
.y8{bottom:849.413333pt;}
.y2d{bottom:859.653333pt;}
.y97{bottom:861.733333pt;}
.y52{bottom:862.213333pt;}
.y7{bottom:865.573333pt;}
.y96{bottom:878.693333pt;}
.y2c{bottom:884.613333pt;}
.y51{bottom:887.173333pt;}
.y95{bottom:895.493333pt;}
.y6{bottom:908.613333pt;}
.y2b{bottom:909.573333pt;}
.y50{bottom:911.973333pt;}
.y94{bottom:912.453333pt;}
.y93{bottom:929.413333pt;}
.y2a{bottom:934.373333pt;}
.y4f{bottom:936.933333pt;}
.y5{bottom:937.253333pt;}
.y92{bottom:946.213333pt;}
.y29{bottom:959.493333pt;}
.y4e{bottom:961.893333pt;}
.y91{bottom:963.173333pt;}
.y4{bottom:973.893333pt;}
.y90{bottom:979.973333pt;}
.y28{bottom:985.573333pt;}
.y4d{bottom:986.693333pt;}
.y27{bottom:1010.533333pt;}
.y4c{bottom:1011.653333pt;}
.y3{bottom:1014.853333pt;}
.y1{bottom:1054.560000pt;}
.h8{height:50.187500pt;}
.hc{height:50.321250pt;}
.h7{height:55.275000pt;}
.h4{height:56.760000pt;}
.h3{height:57.787500pt;}
.h5{height:58.242188pt;}
.h9{height:61.593750pt;}
.h2{height:67.837500pt;}
.hd{height:69.660000pt;}
.ha{height:72.090000pt;}
.h6{height:72.773438pt;}
.hb{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519988pt;}
.xb{left:94.591988pt;}
.x6{left:113.311988pt;}
.x4{left:114.431988pt;}
.x11{left:124.831988pt;}
.x7{left:132.351988pt;}
.xa{left:151.386655pt;}
.xd{left:195.866655pt;}
.x10{left:237.466655pt;}
.xe{left:269.666655pt;}
.x5{left:274.146655pt;}
.xf{left:369.666655pt;}
.x2{left:379.906655pt;}
.x9{left:399.106655pt;}
.x3{left:600.933322pt;}
.x8{left:617.093322pt;}
.xc{left:679.333322pt;}
}




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