
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b09665082fa1761c2c73c683.woff')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_5bcb050848ccc2e01960078b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_fb664d16ba22882d8ba22d2a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.096680;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_7cb1f667b5d83862dc3ce14f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_3fc219c9b672ca54379bd3a5.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_5d66717c5e24564bbbc9dae5.woff')format("woff");}.ff7{font-family:ff7;line-height:0.995117;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_be8ad12f04bd1d96ab68837a.woff')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_042f739540692b2344feb494.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls10{letter-spacing:-0.318000px;}
.lsd{letter-spacing:-0.186600px;}
.ls13{letter-spacing:-0.160800px;}
.ls6{letter-spacing:-0.135000px;}
.ls8{letter-spacing:-0.121200px;}
.ls5{letter-spacing:-0.090000px;}
.ls7{letter-spacing:-0.084600px;}
.ls12{letter-spacing:-0.014760px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.041760px;}
.lsa{letter-spacing:0.045360px;}
.lsb{letter-spacing:0.048960px;}
.ls2{letter-spacing:0.065520px;}
.ls9{letter-spacing:0.074160px;}
.ls1{letter-spacing:0.090000px;}
.ls4{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.173400px;}
.ls11{letter-spacing:0.189360px;}
.lsf{letter-spacing:0.206640px;}
.ls0{letter-spacing:0.360000px;}
.ls14{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.wsa{word-spacing:-13.275360px;}
.wsb{word-spacing:-13.268160px;}
.ws3{word-spacing:-13.226400px;}
.wsd{word-spacing:-13.211640px;}
.wse{word-spacing:-13.065600px;}
.ws8{word-spacing:-13.039800px;}
.wsc{word-spacing:-12.908400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._43{margin-left:-4.197000px;}
._4{margin-left:-3.017400px;}
._0{margin-left:-1.140000px;}
._1{width:1.270560px;}
._2{width:3.126000px;}
._3{width:4.218125px;}
._c{width:5.225519px;}
._5{width:6.252600px;}
._b{width:7.424640px;}
._8{width:8.910720px;}
._d{width:10.023600px;}
._2e{width:11.062080px;}
._e{width:12.128520px;}
._6{width:16.292400px;}
._7{width:17.555401px;}
._a{width:18.632640px;}
._9{width:19.959840px;}
._17{width:21.342600px;}
._19{width:22.484880px;}
._46{width:23.717160px;}
._16{width:24.769440px;}
._3b{width:26.873640px;}
._39{width:28.857600px;}
._14{width:30.540960px;}
._2d{width:32.164200px;}
._44{width:33.568800px;}
._45{width:34.614720px;}
._33{width:36.733320px;}
._27{width:38.777400px;}
._12{width:42.204240px;}
._15{width:44.067960px;}
._20{width:45.150120px;}
._25{width:46.352520px;}
._41{width:47.855520px;}
._1e{width:53.687160px;}
._10{width:56.332440px;}
._35{width:63.606960px;}
._1a{width:65.951640px;}
._3a{width:68.957640px;}
._11{width:70.039800px;}
._22{width:71.422560px;}
._13{width:74.789280px;}
._36{width:77.855400px;}
._29{width:81.763200px;}
._42{width:83.145960px;}
._2b{width:84.468600px;}
._23{width:88.917480px;}
._3e{width:90.180000px;}
._2f{width:92.043720px;}
._32{width:94.147920px;}
._24{width:96.252120px;}
._1b{width:98.296200px;}
._38{width:99.796920px;}
._31{width:103.827240px;}
._3d{width:105.811200px;}
._34{width:110.139840px;}
._28{width:111.883320px;}
._1c{width:114.288120px;}
._18{width:116.512560px;}
._3c{width:118.917360px;}
._3f{width:132.985440px;}
._1d{width:156.251880px;}
._2c{width:158.235840px;}
._1f{width:160.159680px;}
._37{width:164.307960px;}
._21{width:171.883080px;}
._f{width:189.378000px;}
._2a{width:201.822840px;}
._26{width:204.888960px;}
._40{width:225.870840px;}
._30{width:227.313720px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y84{bottom:7.830000px;}
.y7e{bottom:7.920000px;}
.y8b{bottom:25.380000px;}
.y7d{bottom:25.470000px;}
.y83{bottom:43.020000px;}
.y93{bottom:43.110000px;}
.y82{bottom:60.570000px;}
.y91{bottom:60.600000px;}
.y86{bottom:60.660000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y81{bottom:78.210000px;}
.y90{bottom:78.240000px;}
.y80{bottom:95.760000px;}
.y8a{bottom:95.790000px;}
.y88{bottom:95.850000px;}
.y1{bottom:101.640000px;}
.y4e{bottom:116.580000px;}
.y9c{bottom:124.590000px;}
.y26{bottom:128.370000px;}
.y9b{bottom:142.230000px;}
.y25{bottom:146.010000px;}
.y85{bottom:147.720000px;}
.y4d{bottom:152.130000px;}
.y9a{bottom:159.780000px;}
.y24{bottom:163.560000px;}
.y4c{bottom:169.770000px;}
.y99{bottom:177.420000px;}
.y23{bottom:181.200000px;}
.y6c{bottom:189.840000px;}
.y98{bottom:194.970000px;}
.y4b{bottom:196.320000px;}
.y6b{bottom:207.390000px;}
.y97{bottom:212.520000px;}
.y22{bottom:216.750000px;}
.y6a{bottom:225.030000px;}
.y96{bottom:230.160000px;}
.y4a{bottom:231.870000px;}
.y21{bottom:234.300000px;}
.y69{bottom:242.580000px;}
.y95{bottom:247.710000px;}
.y49{bottom:249.510000px;}
.y20{bottom:251.940000px;}
.y7f{bottom:263.010000px;}
.y68{bottom:269.130000px;}
.y1f{bottom:269.490000px;}
.y94{bottom:274.620000px;}
.y48{bottom:285.060000px;}
.y47{bottom:302.700000px;}
.y67{bottom:304.770000px;}
.y1e{bottom:305.130000px;}
.y92{bottom:320.250000px;}
.y1d{bottom:322.680000px;}
.y46{bottom:329.250000px;}
.y66{bottom:336.990000px;}
.y1c{bottom:340.230000px;}
.y45{bottom:364.800000px;}
.y1b{bottom:375.870000px;}
.y7c{bottom:378.210000px;}
.y1a{bottom:393.420000px;}
.y44{bottom:400.440000px;}
.y19{bottom:411.060000px;}
.y43{bottom:417.990000px;}
.y18{bottom:428.610000px;}
.y7b{bottom:444.540000px;}
.y42{bottom:444.630000px;}
.y17{bottom:464.160000px;}
.y7a{bottom:480.120000px;}
.y41{bottom:480.210000px;}
.y16{bottom:481.830000px;}
.y79{bottom:497.760000px;}
.y15{bottom:499.380000px;}
.y78{bottom:515.310000px;}
.y8f{bottom:515.670000px;}
.y40{bottom:515.760000px;}
.y14{bottom:526.290000px;}
.y77{bottom:532.950000px;}
.y3f{bottom:533.400000px;}
.y76{bottom:550.500000px;}
.y3e{bottom:559.950000px;}
.y75{bottom:568.050000px;}
.y13{bottom:574.530000px;}
.yb1{bottom:581.640000px;}
.y74{bottom:585.690000px;}
.y12{bottom:592.440000px;}
.y3d{bottom:595.590000px;}
.yb0{bottom:599.190000px;}
.y65{bottom:601.350000px;}
.y73{bottom:612.240000px;}
.y3c{bottom:613.140000px;}
.y8e{bottom:613.320000px;}
.y64{bottom:618.990000px;}
.yaf{bottom:625.830000px;}
.y11{bottom:629.520000px;}
.y63{bottom:636.540000px;}
.yae{bottom:643.380000px;}
.y10{bottom:647.070000px;}
.y72{bottom:647.790000px;}
.y3b{bottom:648.690000px;}
.y62{bottom:663.450000px;}
.yf{bottom:664.710000px;}
.y3a{bottom:666.330000px;}
.yad{bottom:669.930000px;}
.y71{bottom:680.010000px;}
.ye{bottom:682.260000px;}
.y39{bottom:692.880000px;}
.yac{bottom:696.570000px;}
.yd{bottom:699.810000px;}
.y8d{bottom:711.060000px;}
.y61{bottom:711.690000px;}
.yc{bottom:717.450000px;}
.yab{bottom:723.120000px;}
.y38{bottom:728.520000px;}
.y60{bottom:729.330000px;}
.yb{bottom:735.000000px;}
.yaa{bottom:740.670000px;}
.y37{bottom:746.070000px;}
.y5f{bottom:746.880000px;}
.ya{bottom:761.910000px;}
.y5e{bottom:764.520000px;}
.ya9{bottom:767.310000px;}
.y36{bottom:781.620000px;}
.y5d{bottom:782.070000px;}
.ya8{bottom:784.860000px;}
.y35{bottom:799.260000px;}
.y5c{bottom:799.620000px;}
.y8c{bottom:808.710000px;}
.y9{bottom:810.240000px;}
.ya7{bottom:811.500000px;}
.y5b{bottom:817.260000px;}
.y34{bottom:825.810000px;}
.ya6{bottom:829.050000px;}
.y5a{bottom:834.810000px;}
.y8{bottom:845.790000px;}
.y59{bottom:852.450000px;}
.ya5{bottom:855.600000px;}
.y33{bottom:861.450000px;}
.y58{bottom:870.000000px;}
.y32{bottom:879.000000px;}
.y7{bottom:881.610000px;}
.ya4{bottom:882.240000px;}
.y57{bottom:896.910000px;}
.ya3{bottom:899.790000px;}
.y31{bottom:914.550000px;}
.y6{bottom:921.390000px;}
.y89{bottom:924.000000px;}
.ya2{bottom:926.700000px;}
.y30{bottom:932.190000px;}
.y5{bottom:939.390000px;}
.y56{bottom:945.150000px;}
.y2f{bottom:958.740000px;}
.y4{bottom:971.700000px;}
.ya1{bottom:975.030000px;}
.y55{bottom:980.790000px;}
.y2e{bottom:994.290000px;}
.y54{bottom:998.340000px;}
.ya0{bottom:1001.850000px;}
.y3{bottom:1009.980000px;}
.y2d{bottom:1011.960000px;}
.y53{bottom:1024.920000px;}
.y87{bottom:1039.230000px;}
.y2c{bottom:1047.510000px;}
.y70{bottom:1047.960000px;}
.y52{bottom:1060.560000px;}
.y2b{bottom:1065.150000px;}
.y6f{bottom:1065.510000px;}
.y6e{bottom:1083.150000px;}
.y9f{bottom:1087.560000px;}
.y2a{bottom:1091.700000px;}
.y51{bottom:1096.110000px;}
.y6d{bottom:1100.700000px;}
.y9e{bottom:1105.110000px;}
.y50{bottom:1113.750000px;}
.y9d{bottom:1122.750000px;}
.y29{bottom:1127.610000px;}
.y4f{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h2{height:26.995781px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.hd{height:44.190000px;}
.h7{height:52.311445px;}
.hb{height:52.781133px;}
.h13{height:55.779258px;}
.h5{height:57.323320px;}
.h8{height:57.838008px;}
.hc{height:60.589687px;}
.h14{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h11{height:96.930000px;}
.h12{height:96.960000px;}
.he{height:114.480000px;}
.h10{height:114.510000px;}
.hf{height:114.570000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:79.290000px;}
.w7{width:131.850000px;}
.w6{width:131.940000px;}
.w5{width:135.000000px;}
.w4{width:135.030000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.x1{left:68.040000px;}
.xe{left:111.239987px;}
.x9{left:148.770000px;}
.x2{left:202.799987px;}
.xa{left:284.610000px;}
.x7{left:336.539987px;}
.x5{left:354.449987px;}
.xb{left:420.330000px;}
.xc{left:556.080000px;}
.x4{left:633.389987px;}
.x6{left:637.889987px;}
.xd{left:688.830000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls10{letter-spacing:-0.282667pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls13{letter-spacing:-0.142933pt;}
.ls6{letter-spacing:-0.120000pt;}
.ls8{letter-spacing:-0.107733pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls7{letter-spacing:-0.075200pt;}
.ls12{letter-spacing:-0.013120pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.037120pt;}
.lsa{letter-spacing:0.040320pt;}
.lsb{letter-spacing:0.043520pt;}
.ls2{letter-spacing:0.058240pt;}
.ls9{letter-spacing:0.065920pt;}
.ls1{letter-spacing:0.080000pt;}
.ls4{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.154133pt;}
.ls11{letter-spacing:0.168320pt;}
.lsf{letter-spacing:0.183680pt;}
.ls0{letter-spacing:0.320000pt;}
.ls14{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.wsa{word-spacing:-11.800320pt;}
.wsb{word-spacing:-11.793920pt;}
.ws3{word-spacing:-11.756800pt;}
.wsd{word-spacing:-11.743680pt;}
.wse{word-spacing:-11.613867pt;}
.ws8{word-spacing:-11.590933pt;}
.wsc{word-spacing:-11.474133pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._43{margin-left:-3.730667pt;}
._4{margin-left:-2.682133pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.129387pt;}
._2{width:2.778666pt;}
._3{width:3.749444pt;}
._c{width:4.644906pt;}
._5{width:5.557867pt;}
._b{width:6.599680pt;}
._8{width:7.920640pt;}
._d{width:8.909867pt;}
._2e{width:9.832960pt;}
._e{width:10.780907pt;}
._6{width:14.482133pt;}
._7{width:15.604801pt;}
._a{width:16.562347pt;}
._9{width:17.742080pt;}
._17{width:18.971200pt;}
._19{width:19.986560pt;}
._46{width:21.081920pt;}
._16{width:22.017280pt;}
._3b{width:23.887680pt;}
._39{width:25.651200pt;}
._14{width:27.147520pt;}
._2d{width:28.590400pt;}
._44{width:29.838933pt;}
._45{width:30.768640pt;}
._33{width:32.651840pt;}
._27{width:34.468800pt;}
._12{width:37.514880pt;}
._15{width:39.171520pt;}
._20{width:40.133440pt;}
._25{width:41.202240pt;}
._41{width:42.538240pt;}
._1e{width:47.721920pt;}
._10{width:50.073280pt;}
._35{width:56.539520pt;}
._1a{width:58.623680pt;}
._3a{width:61.295680pt;}
._11{width:62.257600pt;}
._22{width:63.486720pt;}
._13{width:66.479360pt;}
._36{width:69.204800pt;}
._29{width:72.678400pt;}
._42{width:73.907520pt;}
._2b{width:75.083200pt;}
._23{width:79.037760pt;}
._3e{width:80.160000pt;}
._2f{width:81.816640pt;}
._32{width:83.687040pt;}
._24{width:85.557440pt;}
._1b{width:87.374400pt;}
._38{width:88.708373pt;}
._31{width:92.290880pt;}
._3d{width:94.054400pt;}
._34{width:97.902080pt;}
._28{width:99.451840pt;}
._1c{width:101.589440pt;}
._18{width:103.566720pt;}
._3c{width:105.704320pt;}
._3f{width:118.209280pt;}
._1d{width:138.890560pt;}
._2c{width:140.654080pt;}
._1f{width:142.364160pt;}
._37{width:146.051520pt;}
._21{width:152.784960pt;}
._f{width:168.336000pt;}
._2a{width:179.398080pt;}
._26{width:182.123520pt;}
._40{width:200.774080pt;}
._30{width:202.056640pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:6.960000pt;}
.y7e{bottom:7.040000pt;}
.y8b{bottom:22.560000pt;}
.y7d{bottom:22.640000pt;}
.y83{bottom:38.240000pt;}
.y93{bottom:38.320000pt;}
.y82{bottom:53.840000pt;}
.y91{bottom:53.866667pt;}
.y86{bottom:53.920000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y81{bottom:69.520000pt;}
.y90{bottom:69.546667pt;}
.y80{bottom:85.120000pt;}
.y8a{bottom:85.146667pt;}
.y88{bottom:85.200000pt;}
.y1{bottom:90.346667pt;}
.y4e{bottom:103.626667pt;}
.y9c{bottom:110.746667pt;}
.y26{bottom:114.106667pt;}
.y9b{bottom:126.426667pt;}
.y25{bottom:129.786667pt;}
.y85{bottom:131.306667pt;}
.y4d{bottom:135.226667pt;}
.y9a{bottom:142.026667pt;}
.y24{bottom:145.386667pt;}
.y4c{bottom:150.906667pt;}
.y99{bottom:157.706667pt;}
.y23{bottom:161.066667pt;}
.y6c{bottom:168.746667pt;}
.y98{bottom:173.306667pt;}
.y4b{bottom:174.506667pt;}
.y6b{bottom:184.346667pt;}
.y97{bottom:188.906667pt;}
.y22{bottom:192.666667pt;}
.y6a{bottom:200.026667pt;}
.y96{bottom:204.586667pt;}
.y4a{bottom:206.106667pt;}
.y21{bottom:208.266667pt;}
.y69{bottom:215.626667pt;}
.y95{bottom:220.186667pt;}
.y49{bottom:221.786667pt;}
.y20{bottom:223.946667pt;}
.y7f{bottom:233.786667pt;}
.y68{bottom:239.226667pt;}
.y1f{bottom:239.546667pt;}
.y94{bottom:244.106667pt;}
.y48{bottom:253.386667pt;}
.y47{bottom:269.066667pt;}
.y67{bottom:270.906667pt;}
.y1e{bottom:271.226667pt;}
.y92{bottom:284.666667pt;}
.y1d{bottom:286.826667pt;}
.y46{bottom:292.666667pt;}
.y66{bottom:299.546667pt;}
.y1c{bottom:302.426667pt;}
.y45{bottom:324.266667pt;}
.y1b{bottom:334.106667pt;}
.y7c{bottom:336.186667pt;}
.y1a{bottom:349.706667pt;}
.y44{bottom:355.946667pt;}
.y19{bottom:365.386667pt;}
.y43{bottom:371.546667pt;}
.y18{bottom:380.986667pt;}
.y7b{bottom:395.146667pt;}
.y42{bottom:395.226667pt;}
.y17{bottom:412.586667pt;}
.y7a{bottom:426.773333pt;}
.y41{bottom:426.853333pt;}
.y16{bottom:428.293333pt;}
.y79{bottom:442.453333pt;}
.y15{bottom:443.893333pt;}
.y78{bottom:458.053333pt;}
.y8f{bottom:458.373333pt;}
.y40{bottom:458.453333pt;}
.y14{bottom:467.813333pt;}
.y77{bottom:473.733333pt;}
.y3f{bottom:474.133333pt;}
.y76{bottom:489.333333pt;}
.y3e{bottom:497.733333pt;}
.y75{bottom:504.933333pt;}
.y13{bottom:510.693333pt;}
.yb1{bottom:517.013333pt;}
.y74{bottom:520.613333pt;}
.y12{bottom:526.613333pt;}
.y3d{bottom:529.413333pt;}
.yb0{bottom:532.613333pt;}
.y65{bottom:534.533333pt;}
.y73{bottom:544.213333pt;}
.y3c{bottom:545.013333pt;}
.y8e{bottom:545.173333pt;}
.y64{bottom:550.213333pt;}
.yaf{bottom:556.293333pt;}
.y11{bottom:559.573333pt;}
.y63{bottom:565.813333pt;}
.yae{bottom:571.893333pt;}
.y10{bottom:575.173333pt;}
.y72{bottom:575.813333pt;}
.y3b{bottom:576.613333pt;}
.y62{bottom:589.733333pt;}
.yf{bottom:590.853333pt;}
.y3a{bottom:592.293333pt;}
.yad{bottom:595.493333pt;}
.y71{bottom:604.453333pt;}
.ye{bottom:606.453333pt;}
.y39{bottom:615.893333pt;}
.yac{bottom:619.173333pt;}
.yd{bottom:622.053333pt;}
.y8d{bottom:632.053333pt;}
.y61{bottom:632.613333pt;}
.yc{bottom:637.733333pt;}
.yab{bottom:642.773333pt;}
.y38{bottom:647.573333pt;}
.y60{bottom:648.293333pt;}
.yb{bottom:653.333333pt;}
.yaa{bottom:658.373333pt;}
.y37{bottom:663.173333pt;}
.y5f{bottom:663.893333pt;}
.ya{bottom:677.253333pt;}
.y5e{bottom:679.573333pt;}
.ya9{bottom:682.053333pt;}
.y36{bottom:694.773333pt;}
.y5d{bottom:695.173333pt;}
.ya8{bottom:697.653333pt;}
.y35{bottom:710.453333pt;}
.y5c{bottom:710.773333pt;}
.y8c{bottom:718.853333pt;}
.y9{bottom:720.213333pt;}
.ya7{bottom:721.333333pt;}
.y5b{bottom:726.453333pt;}
.y34{bottom:734.053333pt;}
.ya6{bottom:736.933333pt;}
.y5a{bottom:742.053333pt;}
.y8{bottom:751.813333pt;}
.y59{bottom:757.733333pt;}
.ya5{bottom:760.533333pt;}
.y33{bottom:765.733333pt;}
.y58{bottom:773.333333pt;}
.y32{bottom:781.333333pt;}
.y7{bottom:783.653333pt;}
.ya4{bottom:784.213333pt;}
.y57{bottom:797.253333pt;}
.ya3{bottom:799.813333pt;}
.y31{bottom:812.933333pt;}
.y6{bottom:819.013333pt;}
.y89{bottom:821.333333pt;}
.ya2{bottom:823.733333pt;}
.y30{bottom:828.613333pt;}
.y5{bottom:835.013333pt;}
.y56{bottom:840.133333pt;}
.y2f{bottom:852.213333pt;}
.y4{bottom:863.733333pt;}
.ya1{bottom:866.693333pt;}
.y55{bottom:871.813333pt;}
.y2e{bottom:883.813333pt;}
.y54{bottom:887.413333pt;}
.ya0{bottom:890.533333pt;}
.y3{bottom:897.760000pt;}
.y2d{bottom:899.520000pt;}
.y53{bottom:911.040000pt;}
.y87{bottom:923.760000pt;}
.y2c{bottom:931.120000pt;}
.y70{bottom:931.520000pt;}
.y52{bottom:942.720000pt;}
.y2b{bottom:946.800000pt;}
.y6f{bottom:947.120000pt;}
.y6e{bottom:962.800000pt;}
.y9f{bottom:966.720000pt;}
.y2a{bottom:970.400000pt;}
.y51{bottom:974.320000pt;}
.y6d{bottom:978.400000pt;}
.y9e{bottom:982.320000pt;}
.y50{bottom:990.000000pt;}
.y9d{bottom:998.000000pt;}
.y29{bottom:1002.320000pt;}
.y4f{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h2{height:23.996250pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.hd{height:39.280000pt;}
.h7{height:46.499062pt;}
.hb{height:46.916562pt;}
.h13{height:49.581562pt;}
.h5{height:50.954062pt;}
.h8{height:51.411562pt;}
.hc{height:53.857500pt;}
.h14{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h11{height:86.160000pt;}
.h12{height:86.186667pt;}
.he{height:101.760000pt;}
.h10{height:101.786667pt;}
.hf{height:101.840000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:70.480000pt;}
.w7{width:117.200000pt;}
.w6{width:117.280000pt;}
.w5{width:120.000000pt;}
.w4{width:120.026667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.x1{left:60.480000pt;}
.xe{left:98.879988pt;}
.x9{left:132.240000pt;}
.x2{left:180.266655pt;}
.xa{left:252.986667pt;}
.x7{left:299.146655pt;}
.x5{left:315.066655pt;}
.xb{left:373.626667pt;}
.xc{left:494.293333pt;}
.x4{left:563.013322pt;}
.x6{left:567.013322pt;}
.xd{left:612.293333pt;}
.x3{left:704.053322pt;}
}




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