
    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_f949cd1afd0888340a1c25f0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.117188;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_9c1700b1986e6d0021efd039.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_2266ec54ea7555f782da672e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_aebbf47c769e7cb7bccea735.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.897461;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_cd52cb0ef41e779fc3b38fbe.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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;}
.ls3{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.720000px;}
.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;}
}
.ws3{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.ws0{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.940000px;}
.ws1{word-spacing:-13.500000px;}
.ws2{word-spacing:0.000000px;}
._1a{margin-left:-4.392000px;}
._4{margin-left:-3.024000px;}
._3{margin-left:-1.023120px;}
._0{width:1.221120px;}
._8{width:2.320560px;}
._7{width:3.764880px;}
._a{width:4.840560px;}
._f{width:6.812640px;}
._1b{width:8.091360px;}
._e{width:9.270000px;}
._d{width:10.338480px;}
._42{width:11.343600px;}
._10{width:12.344400px;}
._9{width:13.539600px;}
._27{width:14.919120px;}
._20{width:16.848000px;}
._c{width:18.585360px;}
._b{width:19.900080px;}
._2c{width:21.096000px;}
._23{width:22.968000px;}
._4e{width:23.976000px;}
._11{width:25.013520px;}
._2d{width:26.017920px;}
._13{width:27.072000px;}
._29{width:28.110240px;}
._17{width:29.160000px;}
._2e{width:30.717360px;}
._25{width:31.824000px;}
._1d{width:33.048000px;}
._1e{width:34.128000px;}
._1f{width:35.210880px;}
._14{width:36.648000px;}
._16{width:37.800000px;}
._28{width:39.240000px;}
._3e{width:40.536000px;}
._3d{width:41.919120px;}
._2f{width:42.984000px;}
._24{width:44.496000px;}
._39{width:45.864000px;}
._45{width:47.880000px;}
._5{width:49.680000px;}
._6{width:50.688000px;}
._37{width:51.696000px;}
._38{width:52.776000px;}
._43{width:54.720000px;}
._34{width:55.920000px;}
._3b{width:57.096000px;}
._3c{width:58.250880px;}
._4a{width:59.676480px;}
._40{width:60.840000px;}
._35{width:62.151120px;}
._49{width:63.488880px;}
._26{width:64.584000px;}
._52{width:66.456000px;}
._36{width:68.415120px;}
._32{width:69.624000px;}
._4c{width:70.632000px;}
._18{width:71.712000px;}
._19{width:72.720000px;}
._4b{width:74.160000px;}
._46{width:75.312000px;}
._22{width:76.752000px;}
._54{width:77.760000px;}
._55{width:78.840000px;}
._4d{width:82.152000px;}
._15{width:83.304000px;}
._21{width:84.312000px;}
._31{width:85.536000px;}
._44{width:86.544000px;}
._53{width:88.272000px;}
._47{width:90.648000px;}
._48{width:91.946880px;}
._3a{width:93.960000px;}
._33{width:97.128000px;}
._30{width:98.280000px;}
._3f{width:99.792000px;}
._1c{width:114.624000px;}
._41{width:119.823120px;}
._2a{width:121.968000px;}
._2b{width:123.120000px;}
._4f{width:126.792000px;}
._56{width:154.599120px;}
._50{width:161.280000px;}
._51{width:162.504000px;}
._1{width:741.949680px;}
._12{width:846.120000px;}
._2{width:1371.360000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:45.540000px;}
.ya5{bottom:89.856000px;}
.ya4{bottom:110.916000px;}
.ybc{bottom:112.176000px;}
.ybb{bottom:129.456000px;}
.ya3{bottom:131.796000px;}
.y72{bottom:134.676000px;}
.yba{bottom:146.736000px;}
.ya2{bottom:152.850000px;}
.y71{bottom:155.370000px;}
.yb9{bottom:164.010000px;}
.ya1{bottom:173.910000px;}
.y70{bottom:175.350000px;}
.yb8{bottom:181.110000px;}
.y35{bottom:183.990000px;}
.y6f{bottom:192.630000px;}
.ya0{bottom:194.790000px;}
.yb7{bottom:198.390000px;}
.y34{bottom:200.910000px;}
.y6e{bottom:209.910000px;}
.yb6{bottom:215.670000px;}
.y9f{bottom:215.850000px;}
.y33{bottom:216.390000px;}
.y6d{bottom:227.010000px;}
.y32{bottom:232.230000px;}
.yb5{bottom:232.950000px;}
.y9e{bottom:236.910000px;}
.y6c{bottom:244.290000px;}
.y31{bottom:249.510000px;}
.yb4{bottom:250.230000px;}
.y9d{bottom:257.790000px;}
.y6b{bottom:261.570000px;}
.y30{bottom:266.790000px;}
.yb3{bottom:267.510000px;}
.y6a{bottom:278.850000px;}
.y2f{bottom:284.070000px;}
.yb2{bottom:284.610000px;}
.y69{bottom:296.130000px;}
.y9c{bottom:299.910000px;}
.y2e{bottom:301.170000px;}
.yb1{bottom:301.890000px;}
.y68{bottom:313.230000px;}
.y2d{bottom:318.450000px;}
.yb0{bottom:319.170000px;}
.y9b{bottom:320.790000px;}
.y67{bottom:330.510000px;}
.y2c{bottom:335.730000px;}
.yaf{bottom:336.495000px;}
.y9a{bottom:341.895000px;}
.y66{bottom:347.835000px;}
.y2b{bottom:353.055000px;}
.yae{bottom:353.775000px;}
.y99{bottom:362.955000px;}
.y65{bottom:365.115000px;}
.y2a{bottom:370.335000px;}
.yad{bottom:371.055000px;}
.y64{bottom:382.395000px;}
.y98{bottom:383.835000px;}
.y29{bottom:387.615000px;}
.yac{bottom:388.155000px;}
.y63{bottom:399.675000px;}
.y28{bottom:404.715000px;}
.y97{bottom:404.895000px;}
.yab{bottom:405.435000px;}
.y62{bottom:416.775000px;}
.y27{bottom:421.995000px;}
.yaa{bottom:422.715000px;}
.y96{bottom:425.955000px;}
.y61{bottom:434.055000px;}
.y26{bottom:439.275000px;}
.ya9{bottom:439.995000px;}
.y95{bottom:446.835000px;}
.y60{bottom:451.335000px;}
.y25{bottom:456.555000px;}
.ya8{bottom:457.275000px;}
.y94{bottom:467.895000px;}
.y5f{bottom:468.615000px;}
.y24{bottom:473.835000px;}
.ya7{bottom:474.555000px;}
.y5e{bottom:485.895000px;}
.y93{bottom:488.955000px;}
.y23{bottom:490.755000px;}
.ya6{bottom:491.655000px;}
.y5d{bottom:503.175000px;}
.y22{bottom:506.235000px;}
.y92{bottom:509.835000px;}
.y5c{bottom:520.275000px;}
.y21{bottom:522.795000px;}
.y91{bottom:530.895000px;}
.y5b{bottom:537.555000px;}
.y20{bottom:543.495000px;}
.y90{bottom:551.955000px;}
.y5a{bottom:554.835000px;}
.y1f{bottom:564.195000px;}
.y59{bottom:572.115000px;}
.y8f{bottom:572.835000px;}
.y1e{bottom:584.895000px;}
.y58{bottom:589.395000px;}
.y8e{bottom:593.895000px;}
.y1d{bottom:605.625000px;}
.y57{bottom:606.705000px;}
.y8d{bottom:614.985000px;}
.y56{bottom:623.805000px;}
.y1c{bottom:626.325000px;}
.y8c{bottom:635.865000px;}
.y55{bottom:641.085000px;}
.y1b{bottom:647.025000px;}
.y8b{bottom:656.925000px;}
.y54{bottom:658.365000px;}
.y1a{bottom:667.725000px;}
.y53{bottom:675.645000px;}
.y8a{bottom:677.985000px;}
.y19{bottom:688.425000px;}
.y52{bottom:692.925000px;}
.y89{bottom:698.865000px;}
.y18{bottom:709.125000px;}
.y51{bottom:710.025000px;}
.y88{bottom:719.925000px;}
.y50{bottom:727.305000px;}
.y17{bottom:729.825000px;}
.y87{bottom:740.985000px;}
.y4f{bottom:744.225000px;}
.y16{bottom:750.525000px;}
.y4e{bottom:759.885000px;}
.y86{bottom:761.865000px;}
.y15{bottom:771.225000px;}
.y4d{bottom:775.365000px;}
.y85{bottom:782.925000px;}
.y4c{bottom:790.845000px;}
.y14{bottom:791.925000px;}
.y84{bottom:803.985000px;}
.y4b{bottom:806.325000px;}
.y13{bottom:812.625000px;}
.y4a{bottom:822.165000px;}
.y83{bottom:824.865000px;}
.y12{bottom:833.325000px;}
.y49{bottom:839.085000px;}
.y82{bottom:845.925000px;}
.y11{bottom:854.025000px;}
.y48{bottom:854.745000px;}
.y81{bottom:866.985000px;}
.y47{bottom:870.225000px;}
.y10{bottom:874.770000px;}
.y46{bottom:886.110000px;}
.y80{bottom:887.910000px;}
.yf{bottom:895.470000px;}
.y45{bottom:903.030000px;}
.y7f{bottom:908.970000px;}
.ye{bottom:916.170000px;}
.y44{bottom:918.510000px;}
.y7e{bottom:930.030000px;}
.y43{bottom:933.990000px;}
.yd{bottom:936.870000px;}
.y42{bottom:949.650000px;}
.y7d{bottom:950.910000px;}
.yc{bottom:957.570000px;}
.y41{bottom:965.490000px;}
.y7c{bottom:971.970000px;}
.yb{bottom:978.270000px;}
.y40{bottom:982.410000px;}
.y7b{bottom:993.030000px;}
.y3f{bottom:997.890000px;}
.ya{bottom:998.970000px;}
.yc5{bottom:1008.510000px;}
.y3e{bottom:1013.370000px;}
.y7a{bottom:1013.910000px;}
.y9{bottom:1019.670000px;}
.yc4{bottom:1025.790000px;}
.y3d{bottom:1028.850000px;}
.y79{bottom:1034.970000px;}
.y8{bottom:1040.370000px;}
.yc3{bottom:1043.070000px;}
.y3c{bottom:1044.690000px;}
.y78{bottom:1056.030000px;}
.yc2{bottom:1060.350000px;}
.y7{bottom:1061.070000px;}
.y3b{bottom:1061.790000px;}
.y77{bottom:1076.910000px;}
.yc1{bottom:1077.630000px;}
.y3a{bottom:1078.350000px;}
.y6{bottom:1081.770000px;}
.yc0{bottom:1094.730000px;}
.y76{bottom:1097.970000px;}
.y39{bottom:1099.050000px;}
.y5{bottom:1102.470000px;}
.ybf{bottom:1112.010000px;}
.y75{bottom:1119.030000px;}
.y38{bottom:1119.750000px;}
.y4{bottom:1123.170000px;}
.ybe{bottom:1129.290000px;}
.y74{bottom:1139.940000px;}
.y37{bottom:1140.480000px;}
.y3{bottom:1143.900000px;}
.ybd{bottom:1146.600000px;}
.y73{bottom:1161.000000px;}
.y36{bottom:1161.180000px;}
.y2{bottom:1163.880000px;}
.h6{height:40.472227px;}
.h7{height:48.410156px;}
.h5{height:48.673828px;}
.h4{height:48.761719px;}
.h8{height:53.077852px;}
.h9{height:53.573906px;}
.h2{height:53.865703px;}
.h3{height:63.949219px;}
.ha{height:64.546875px;}
.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;}
.x3{left:106.235987px;}
.x6{left:116.855987px;}
.x2{left:318.854987px;}
.x5{left:457.274987px;}
.x4{left:478.544987px;}
.x7{left:489.164987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.640000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws2{word-spacing:0.000000pt;}
._1a{margin-left:-3.904000pt;}
._4{margin-left:-2.688000pt;}
._3{margin-left:-0.909440pt;}
._0{width:1.085440pt;}
._8{width:2.062720pt;}
._7{width:3.346560pt;}
._a{width:4.302720pt;}
._f{width:6.055680pt;}
._1b{width:7.192320pt;}
._e{width:8.240000pt;}
._d{width:9.189760pt;}
._42{width:10.083200pt;}
._10{width:10.972800pt;}
._9{width:12.035200pt;}
._27{width:13.261440pt;}
._20{width:14.976000pt;}
._c{width:16.520320pt;}
._b{width:17.688960pt;}
._2c{width:18.752000pt;}
._23{width:20.416000pt;}
._4e{width:21.312000pt;}
._11{width:22.234240pt;}
._2d{width:23.127040pt;}
._13{width:24.064000pt;}
._29{width:24.986880pt;}
._17{width:25.920000pt;}
._2e{width:27.304320pt;}
._25{width:28.288000pt;}
._1d{width:29.376000pt;}
._1e{width:30.336000pt;}
._1f{width:31.298560pt;}
._14{width:32.576000pt;}
._16{width:33.600000pt;}
._28{width:34.880000pt;}
._3e{width:36.032000pt;}
._3d{width:37.261440pt;}
._2f{width:38.208000pt;}
._24{width:39.552000pt;}
._39{width:40.768000pt;}
._45{width:42.560000pt;}
._5{width:44.160000pt;}
._6{width:45.056000pt;}
._37{width:45.952000pt;}
._38{width:46.912000pt;}
._43{width:48.640000pt;}
._34{width:49.706667pt;}
._3b{width:50.752000pt;}
._3c{width:51.778560pt;}
._4a{width:53.045760pt;}
._40{width:54.080000pt;}
._35{width:55.245440pt;}
._49{width:56.434560pt;}
._26{width:57.408000pt;}
._52{width:59.072000pt;}
._36{width:60.813440pt;}
._32{width:61.888000pt;}
._4c{width:62.784000pt;}
._18{width:63.744000pt;}
._19{width:64.640000pt;}
._4b{width:65.920000pt;}
._46{width:66.944000pt;}
._22{width:68.224000pt;}
._54{width:69.120000pt;}
._55{width:70.080000pt;}
._4d{width:73.024000pt;}
._15{width:74.048000pt;}
._21{width:74.944000pt;}
._31{width:76.032000pt;}
._44{width:76.928000pt;}
._53{width:78.464000pt;}
._47{width:80.576000pt;}
._48{width:81.730560pt;}
._3a{width:83.520000pt;}
._33{width:86.336000pt;}
._30{width:87.360000pt;}
._3f{width:88.704000pt;}
._1c{width:101.888000pt;}
._41{width:106.509440pt;}
._2a{width:108.416000pt;}
._2b{width:109.440000pt;}
._4f{width:112.704000pt;}
._56{width:137.421440pt;}
._50{width:143.360000pt;}
._51{width:144.448000pt;}
._1{width:659.510827pt;}
._12{width:752.106667pt;}
._2{width:1218.986667pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:40.480000pt;}
.ya5{bottom:79.872000pt;}
.ya4{bottom:98.592000pt;}
.ybc{bottom:99.712000pt;}
.ybb{bottom:115.072000pt;}
.ya3{bottom:117.152000pt;}
.y72{bottom:119.712000pt;}
.yba{bottom:130.432000pt;}
.ya2{bottom:135.866667pt;}
.y71{bottom:138.106667pt;}
.yb9{bottom:145.786667pt;}
.ya1{bottom:154.586667pt;}
.y70{bottom:155.866667pt;}
.yb8{bottom:160.986667pt;}
.y35{bottom:163.546667pt;}
.y6f{bottom:171.226667pt;}
.ya0{bottom:173.146667pt;}
.yb7{bottom:176.346667pt;}
.y34{bottom:178.586667pt;}
.y6e{bottom:186.586667pt;}
.yb6{bottom:191.706667pt;}
.y9f{bottom:191.866667pt;}
.y33{bottom:192.346667pt;}
.y6d{bottom:201.786667pt;}
.y32{bottom:206.426667pt;}
.yb5{bottom:207.066667pt;}
.y9e{bottom:210.586667pt;}
.y6c{bottom:217.146667pt;}
.y31{bottom:221.786667pt;}
.yb4{bottom:222.426667pt;}
.y9d{bottom:229.146667pt;}
.y6b{bottom:232.506667pt;}
.y30{bottom:237.146667pt;}
.yb3{bottom:237.786667pt;}
.y6a{bottom:247.866667pt;}
.y2f{bottom:252.506667pt;}
.yb2{bottom:252.986667pt;}
.y69{bottom:263.226667pt;}
.y9c{bottom:266.586667pt;}
.y2e{bottom:267.706667pt;}
.yb1{bottom:268.346667pt;}
.y68{bottom:278.426667pt;}
.y2d{bottom:283.066667pt;}
.yb0{bottom:283.706667pt;}
.y9b{bottom:285.146667pt;}
.y67{bottom:293.786667pt;}
.y2c{bottom:298.426667pt;}
.yaf{bottom:299.106667pt;}
.y9a{bottom:303.906667pt;}
.y66{bottom:309.186667pt;}
.y2b{bottom:313.826667pt;}
.yae{bottom:314.466667pt;}
.y99{bottom:322.626667pt;}
.y65{bottom:324.546667pt;}
.y2a{bottom:329.186667pt;}
.yad{bottom:329.826667pt;}
.y64{bottom:339.906667pt;}
.y98{bottom:341.186667pt;}
.y29{bottom:344.546667pt;}
.yac{bottom:345.026667pt;}
.y63{bottom:355.266667pt;}
.y28{bottom:359.746667pt;}
.y97{bottom:359.906667pt;}
.yab{bottom:360.386667pt;}
.y62{bottom:370.466667pt;}
.y27{bottom:375.106667pt;}
.yaa{bottom:375.746667pt;}
.y96{bottom:378.626667pt;}
.y61{bottom:385.826667pt;}
.y26{bottom:390.466667pt;}
.ya9{bottom:391.106667pt;}
.y95{bottom:397.186667pt;}
.y60{bottom:401.186667pt;}
.y25{bottom:405.826667pt;}
.ya8{bottom:406.466667pt;}
.y94{bottom:415.906667pt;}
.y5f{bottom:416.546667pt;}
.y24{bottom:421.186667pt;}
.ya7{bottom:421.826667pt;}
.y5e{bottom:431.906667pt;}
.y93{bottom:434.626667pt;}
.y23{bottom:436.226667pt;}
.ya6{bottom:437.026667pt;}
.y5d{bottom:447.266667pt;}
.y22{bottom:449.986667pt;}
.y92{bottom:453.186667pt;}
.y5c{bottom:462.466667pt;}
.y21{bottom:464.706667pt;}
.y91{bottom:471.906667pt;}
.y5b{bottom:477.826667pt;}
.y20{bottom:483.106667pt;}
.y90{bottom:490.626667pt;}
.y5a{bottom:493.186667pt;}
.y1f{bottom:501.506667pt;}
.y59{bottom:508.546667pt;}
.y8f{bottom:509.186667pt;}
.y1e{bottom:519.906667pt;}
.y58{bottom:523.906667pt;}
.y8e{bottom:527.906667pt;}
.y1d{bottom:538.333333pt;}
.y57{bottom:539.293333pt;}
.y8d{bottom:546.653333pt;}
.y56{bottom:554.493333pt;}
.y1c{bottom:556.733333pt;}
.y8c{bottom:565.213333pt;}
.y55{bottom:569.853333pt;}
.y1b{bottom:575.133333pt;}
.y8b{bottom:583.933333pt;}
.y54{bottom:585.213333pt;}
.y1a{bottom:593.533333pt;}
.y53{bottom:600.573333pt;}
.y8a{bottom:602.653333pt;}
.y19{bottom:611.933333pt;}
.y52{bottom:615.933333pt;}
.y89{bottom:621.213333pt;}
.y18{bottom:630.333333pt;}
.y51{bottom:631.133333pt;}
.y88{bottom:639.933333pt;}
.y50{bottom:646.493333pt;}
.y17{bottom:648.733333pt;}
.y87{bottom:658.653333pt;}
.y4f{bottom:661.533333pt;}
.y16{bottom:667.133333pt;}
.y4e{bottom:675.453333pt;}
.y86{bottom:677.213333pt;}
.y15{bottom:685.533333pt;}
.y4d{bottom:689.213333pt;}
.y85{bottom:695.933333pt;}
.y4c{bottom:702.973333pt;}
.y14{bottom:703.933333pt;}
.y84{bottom:714.653333pt;}
.y4b{bottom:716.733333pt;}
.y13{bottom:722.333333pt;}
.y4a{bottom:730.813333pt;}
.y83{bottom:733.213333pt;}
.y12{bottom:740.733333pt;}
.y49{bottom:745.853333pt;}
.y82{bottom:751.933333pt;}
.y11{bottom:759.133333pt;}
.y48{bottom:759.773333pt;}
.y81{bottom:770.653333pt;}
.y47{bottom:773.533333pt;}
.y10{bottom:777.573333pt;}
.y46{bottom:787.653333pt;}
.y80{bottom:789.253333pt;}
.yf{bottom:795.973333pt;}
.y45{bottom:802.693333pt;}
.y7f{bottom:807.973333pt;}
.ye{bottom:814.373333pt;}
.y44{bottom:816.453333pt;}
.y7e{bottom:826.693333pt;}
.y43{bottom:830.213333pt;}
.yd{bottom:832.773333pt;}
.y42{bottom:844.133333pt;}
.y7d{bottom:845.253333pt;}
.yc{bottom:851.173333pt;}
.y41{bottom:858.213333pt;}
.y7c{bottom:863.973333pt;}
.yb{bottom:869.573333pt;}
.y40{bottom:873.253333pt;}
.y7b{bottom:882.693333pt;}
.y3f{bottom:887.013333pt;}
.ya{bottom:887.973333pt;}
.yc5{bottom:896.453333pt;}
.y3e{bottom:900.773333pt;}
.y7a{bottom:901.253333pt;}
.y9{bottom:906.373333pt;}
.yc4{bottom:911.813333pt;}
.y3d{bottom:914.533333pt;}
.y79{bottom:919.973333pt;}
.y8{bottom:924.773333pt;}
.yc3{bottom:927.173333pt;}
.y3c{bottom:928.613333pt;}
.y78{bottom:938.693333pt;}
.yc2{bottom:942.533333pt;}
.y7{bottom:943.173333pt;}
.y3b{bottom:943.813333pt;}
.y77{bottom:957.253333pt;}
.yc1{bottom:957.893333pt;}
.y3a{bottom:958.533333pt;}
.y6{bottom:961.573333pt;}
.yc0{bottom:973.093333pt;}
.y76{bottom:975.973333pt;}
.y39{bottom:976.933333pt;}
.y5{bottom:979.973333pt;}
.ybf{bottom:988.453333pt;}
.y75{bottom:994.693333pt;}
.y38{bottom:995.333333pt;}
.y4{bottom:998.373333pt;}
.ybe{bottom:1003.813333pt;}
.y74{bottom:1013.280000pt;}
.y37{bottom:1013.760000pt;}
.y3{bottom:1016.800000pt;}
.ybd{bottom:1019.200000pt;}
.y73{bottom:1032.000000pt;}
.y36{bottom:1032.160000pt;}
.y2{bottom:1034.560000pt;}
.h6{height:35.975313pt;}
.h7{height:43.031250pt;}
.h5{height:43.265625pt;}
.h4{height:43.343750pt;}
.h8{height:47.180312pt;}
.h9{height:47.621250pt;}
.h2{height:47.880625pt;}
.h3{height:56.843750pt;}
.ha{height:57.375000pt;}
.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;}
.x3{left:94.431988pt;}
.x6{left:103.871988pt;}
.x2{left:283.426655pt;}
.x5{left:406.466655pt;}
.x4{left:425.373322pt;}
.x7{left:434.813322pt;}
}




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