
    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_9be68a64d47932eb521099e9.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_c41a1b76319889fcf770a5c0.woff')format("woff");}.ff2{font-family:ff2;line-height:0.932129;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_6e9107920f1e1977381e2953.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_eb108351f754a94d19ee5a29.woff')format("woff");}.ff4{font-family:ff4;line-height:0.932129;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_e43ae9ff838226651e121011.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fb68d96f0480e1052478b704.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls4{letter-spacing:-1.440000px;}
.ls13{letter-spacing:-0.924000px;}
.ls8{letter-spacing:-0.612000px;}
.ls10{letter-spacing:-0.460200px;}
.ls6{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.208200px;}
.ls16{letter-spacing:-0.206400px;}
.lsc{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.037440px;}
.lsa{letter-spacing:0.106800px;}
.ls14{letter-spacing:0.120000px;}
.ls11{letter-spacing:0.153600px;}
.ls7{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.208080px;}
.lse{letter-spacing:0.259800px;}
.ls15{letter-spacing:0.259920px;}
.ls1a{letter-spacing:0.298800px;}
.ls12{letter-spacing:0.306600px;}
.lsf{letter-spacing:0.336000px;}
.ls2{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.720000px;}
.ls17{letter-spacing:0.828000px;}
.ls9{letter-spacing:5.220000px;}
.lsd{letter-spacing:7.380000px;}
.ls19{letter-spacing:11.466720px;}
.ls18{letter-spacing:41.850720px;}
.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;}
}
.ws1{word-spacing:-23.977440px;}
.ws0{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.246600px;}
.wse{word-spacing:-15.238800px;}
.ws8{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.093600px;}
.ws6{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.733600px;}
.wsd{word-spacing:-14.580000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-2848.081680px;}
._3{margin-left:-1378.848960px;}
._5{margin-left:-991.969920px;}
._4{margin-left:-939.507840px;}
._6{margin-left:-512.988480px;}
._8{margin-left:-6.091200px;}
._e{margin-left:-3.667680px;}
._7{margin-left:-2.583360px;}
._2{margin-left:-1.059840px;}
._0{width:1.244880px;}
._9{width:2.652720px;}
._a{width:3.713280px;}
._b{width:5.149440px;}
._c{width:6.607440px;}
._f{width:7.621920px;}
._13{width:8.724960px;}
._15{width:10.218960px;}
._16{width:12.030000px;}
._12{width:13.804560px;}
._d{width:15.966000px;}
._14{width:17.509680px;}
._18{width:18.512880px;}
._10{width:20.388240px;}
._11{width:22.025520px;}
._17{width:23.163120px;}
._19{width:24.481440px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,35,35);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:5.760000px;}
.ye{bottom:6.300000px;}
.y2a{bottom:9.360000px;}
.y29{bottom:31.140000px;}
.y1c{bottom:34.560000px;}
.y28{bottom:53.100000px;}
.y1b{bottom:54.540000px;}
.y6{bottom:60.156000px;}
.y1a{bottom:74.340000px;}
.y27{bottom:74.880000px;}
.y7b{bottom:81.576000px;}
.yaa{bottom:83.376000px;}
.y43{bottom:86.256000px;}
.yc2{bottom:90.576000px;}
.y19{bottom:94.140000px;}
.ybb{bottom:94.176000px;}
.y26{bottom:96.660000px;}
.y7a{bottom:101.376000px;}
.ya9{bottom:103.176000px;}
.y42{bottom:106.056000px;}
.yc1{bottom:110.376000px;}
.y18{bottom:113.940000px;}
.yba{bottom:113.976000px;}
.y25{bottom:118.440000px;}
.y79{bottom:121.176000px;}
.ya8{bottom:122.976000px;}
.y41{bottom:125.856000px;}
.yc0{bottom:130.176000px;}
.y17{bottom:133.740000px;}
.yb9{bottom:133.776000px;}
.y24{bottom:140.220000px;}
.y78{bottom:140.976000px;}
.ya7{bottom:142.776000px;}
.y40{bottom:145.656000px;}
.ybf{bottom:149.976000px;}
.y16{bottom:153.720000px;}
.yb8{bottom:153.750000px;}
.y77{bottom:160.770000px;}
.y23{bottom:162.180000px;}
.ya6{bottom:162.750000px;}
.y3f{bottom:165.450000px;}
.ybe{bottom:169.770000px;}
.y15{bottom:173.520000px;}
.yb7{bottom:173.550000px;}
.y76{bottom:180.750000px;}
.ya5{bottom:182.550000px;}
.y22{bottom:183.960000px;}
.ybd{bottom:189.750000px;}
.y14{bottom:193.320000px;}
.yb6{bottom:193.350000px;}
.y3e{bottom:194.430000px;}
.y75{bottom:200.550000px;}
.ya4{bottom:202.350000px;}
.y21{bottom:205.740000px;}
.ybc{bottom:209.550000px;}
.y13{bottom:213.120000px;}
.yb5{bottom:213.150000px;}
.y3d{bottom:214.230000px;}
.ya3{bottom:222.150000px;}
.y20{bottom:227.520000px;}
.y74{bottom:229.350000px;}
.y12{bottom:232.920000px;}
.yb4{bottom:232.950000px;}
.y3c{bottom:234.030000px;}
.ya2{bottom:241.950000px;}
.y73{bottom:249.150000px;}
.y1f{bottom:249.480000px;}
.yb3{bottom:252.930000px;}
.y11{bottom:252.945000px;}
.y3b{bottom:253.830000px;}
.ya1{bottom:261.930000px;}
.y72{bottom:268.950000px;}
.y1e{bottom:271.305000px;}
.y10{bottom:272.745000px;}
.yb2{bottom:272.775000px;}
.y3a{bottom:273.675000px;}
.ya0{bottom:281.775000px;}
.y71{bottom:288.975000px;}
.yb1{bottom:292.575000px;}
.y39{bottom:293.655000px;}
.y9f{bottom:301.575000px;}
.y70{bottom:308.775000px;}
.yb0{bottom:312.375000px;}
.y38{bottom:313.455000px;}
.y9e{bottom:321.375000px;}
.y6f{bottom:328.575000px;}
.y37{bottom:333.255000px;}
.y9d{bottom:341.175000px;}
.y6e{bottom:348.375000px;}
.y36{bottom:353.055000px;}
.y9c{bottom:361.155000px;}
.y6d{bottom:368.175000px;}
.y35{bottom:372.855000px;}
.y9b{bottom:380.955000px;}
.y6c{bottom:388.155000px;}
.y34{bottom:392.835000px;}
.y9a{bottom:400.755000px;}
.y6b{bottom:407.955000px;}
.y33{bottom:412.635000px;}
.y99{bottom:420.555000px;}
.y6a{bottom:427.755000px;}
.y32{bottom:432.435000px;}
.y98{bottom:440.355000px;}
.y69{bottom:447.555000px;}
.y31{bottom:452.235000px;}
.yaf{bottom:460.335000px;}
.y68{bottom:467.355000px;}
.y97{bottom:469.335000px;}
.y30{bottom:472.035000px;}
.yae{bottom:480.135000px;}
.y67{bottom:487.335000px;}
.y96{bottom:489.135000px;}
.y2f{bottom:492.015000px;}
.yad{bottom:499.935000px;}
.y66{bottom:507.135000px;}
.y95{bottom:508.935000px;}
.y2e{bottom:511.815000px;}
.yac{bottom:519.735000px;}
.y65{bottom:526.935000px;}
.y94{bottom:528.735000px;}
.y2d{bottom:531.615000px;}
.y64{bottom:546.735000px;}
.y93{bottom:548.535000px;}
.y2c{bottom:551.415000px;}
.y63{bottom:566.565000px;}
.y92{bottom:568.545000px;}
.y2b{bottom:571.245000px;}
.y62{bottom:586.545000px;}
.yf{bottom:587.625000px;}
.y91{bottom:588.345000px;}
.y61{bottom:606.345000px;}
.y90{bottom:608.145000px;}
.y60{bottom:626.145000px;}
.y8f{bottom:627.945000px;}
.y5f{bottom:645.945000px;}
.y8e{bottom:647.745000px;}
.y5e{bottom:665.745000px;}
.y8d{bottom:667.725000px;}
.y5d{bottom:685.725000px;}
.y8c{bottom:687.525000px;}
.y5c{bottom:705.525000px;}
.y8b{bottom:707.325000px;}
.y5b{bottom:725.325000px;}
.y8a{bottom:727.125000px;}
.y5a{bottom:745.125000px;}
.y89{bottom:746.925000px;}
.yab{bottom:755.925000px;}
.y59{bottom:764.925000px;}
.y88{bottom:775.725000px;}
.y58{bottom:784.725000px;}
.y87{bottom:795.705000px;}
.y57{bottom:804.705000px;}
.y86{bottom:815.505000px;}
.y56{bottom:824.505000px;}
.y85{bottom:835.305000px;}
.y55{bottom:844.350000px;}
.y84{bottom:855.150000px;}
.y54{bottom:864.150000px;}
.y83{bottom:874.950000px;}
.yd{bottom:876.570000px;}
.y53{bottom:883.950000px;}
.y82{bottom:894.930000px;}
.y52{bottom:903.930000px;}
.yc{bottom:906.450000px;}
.y81{bottom:914.730000px;}
.y51{bottom:923.730000px;}
.yb{bottom:931.470000px;}
.y80{bottom:934.530000px;}
.y50{bottom:943.530000px;}
.ya{bottom:951.450000px;}
.y7f{bottom:954.330000px;}
.y4f{bottom:963.330000px;}
.y9{bottom:966.570000px;}
.y7e{bottom:974.130000px;}
.y4e{bottom:983.130000px;}
.y8{bottom:987.810000px;}
.y7d{bottom:994.110000px;}
.y4d{bottom:1003.110000px;}
.y7{bottom:1011.210000px;}
.y7c{bottom:1013.910000px;}
.y4c{bottom:1022.910000px;}
.y4b{bottom:1042.710000px;}
.y5{bottom:1051.170000px;}
.y4a{bottom:1062.510000px;}
.y4{bottom:1081.950000px;}
.y49{bottom:1082.310000px;}
.y48{bottom:1102.290000px;}
.y3{bottom:1112.730000px;}
.y47{bottom:1122.120000px;}
.y46{bottom:1141.920000px;}
.y2{bottom:1143.720000px;}
.y45{bottom:1161.720000px;}
.y1{bottom:1177.560000px;}
.y44{bottom:1193.400000px;}
.ha{height:21.780000px;}
.h8{height:27.850078px;}
.h6{height:42.164648px;}
.h9{height:42.806602px;}
.he{height:43.506914px;}
.hc{height:46.736719px;}
.h4{height:47.448281px;}
.hd{height:49.255313px;}
.h7{height:53.224453px;}
.h3{height:60.341836px;}
.h2{height:67.565039px;}
.h5{height:68.593711px;}
.hb{height:286.770000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:175.530000px;}
.w3{width:614.445000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:54.179987px;}
.x4{left:80.999987px;}
.x5{left:108.035987px;}
.x3{left:668.445000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls4{letter-spacing:-1.280000pt;}
.ls13{letter-spacing:-0.821333pt;}
.ls8{letter-spacing:-0.544000pt;}
.ls10{letter-spacing:-0.409067pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.185067pt;}
.ls16{letter-spacing:-0.183467pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.033280pt;}
.lsa{letter-spacing:0.094933pt;}
.ls14{letter-spacing:0.106667pt;}
.ls11{letter-spacing:0.136533pt;}
.ls7{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.184960pt;}
.lse{letter-spacing:0.230933pt;}
.ls15{letter-spacing:0.231040pt;}
.ls1a{letter-spacing:0.265600pt;}
.ls12{letter-spacing:0.272533pt;}
.lsf{letter-spacing:0.298667pt;}
.ls2{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls17{letter-spacing:0.736000pt;}
.ls9{letter-spacing:4.640000pt;}
.lsd{letter-spacing:6.560000pt;}
.ls19{letter-spacing:10.192640pt;}
.ls18{letter-spacing:37.200640pt;}
.ws1{word-spacing:-21.313280pt;}
.ws0{word-spacing:-14.720000pt;}
.ws9{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.552533pt;}
.wse{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.416533pt;}
.ws6{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.096533pt;}
.wsd{word-spacing:-12.960000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-2531.628160pt;}
._3{margin-left:-1225.643520pt;}
._5{margin-left:-881.751040pt;}
._4{margin-left:-835.118080pt;}
._6{margin-left:-455.989760pt;}
._8{margin-left:-5.414400pt;}
._e{margin-left:-3.260160pt;}
._7{margin-left:-2.296320pt;}
._2{margin-left:-0.942080pt;}
._0{width:1.106560pt;}
._9{width:2.357973pt;}
._a{width:3.300693pt;}
._b{width:4.577280pt;}
._c{width:5.873280pt;}
._f{width:6.775040pt;}
._13{width:7.755520pt;}
._15{width:9.083520pt;}
._16{width:10.693333pt;}
._12{width:12.270720pt;}
._d{width:14.192000pt;}
._14{width:15.564160pt;}
._18{width:16.455893pt;}
._10{width:18.122880pt;}
._11{width:19.578240pt;}
._17{width:20.589440pt;}
._19{width:21.761280pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:5.120000pt;}
.ye{bottom:5.600000pt;}
.y2a{bottom:8.320000pt;}
.y29{bottom:27.680000pt;}
.y1c{bottom:30.720000pt;}
.y28{bottom:47.200000pt;}
.y1b{bottom:48.480000pt;}
.y6{bottom:53.472000pt;}
.y1a{bottom:66.080000pt;}
.y27{bottom:66.560000pt;}
.y7b{bottom:72.512000pt;}
.yaa{bottom:74.112000pt;}
.y43{bottom:76.672000pt;}
.yc2{bottom:80.512000pt;}
.y19{bottom:83.680000pt;}
.ybb{bottom:83.712000pt;}
.y26{bottom:85.920000pt;}
.y7a{bottom:90.112000pt;}
.ya9{bottom:91.712000pt;}
.y42{bottom:94.272000pt;}
.yc1{bottom:98.112000pt;}
.y18{bottom:101.280000pt;}
.yba{bottom:101.312000pt;}
.y25{bottom:105.280000pt;}
.y79{bottom:107.712000pt;}
.ya8{bottom:109.312000pt;}
.y41{bottom:111.872000pt;}
.yc0{bottom:115.712000pt;}
.y17{bottom:118.880000pt;}
.yb9{bottom:118.912000pt;}
.y24{bottom:124.640000pt;}
.y78{bottom:125.312000pt;}
.ya7{bottom:126.912000pt;}
.y40{bottom:129.472000pt;}
.ybf{bottom:133.312000pt;}
.y16{bottom:136.640000pt;}
.yb8{bottom:136.666667pt;}
.y77{bottom:142.906667pt;}
.y23{bottom:144.160000pt;}
.ya6{bottom:144.666667pt;}
.y3f{bottom:147.066667pt;}
.ybe{bottom:150.906667pt;}
.y15{bottom:154.240000pt;}
.yb7{bottom:154.266667pt;}
.y76{bottom:160.666667pt;}
.ya5{bottom:162.266667pt;}
.y22{bottom:163.520000pt;}
.ybd{bottom:168.666667pt;}
.y14{bottom:171.840000pt;}
.yb6{bottom:171.866667pt;}
.y3e{bottom:172.826667pt;}
.y75{bottom:178.266667pt;}
.ya4{bottom:179.866667pt;}
.y21{bottom:182.880000pt;}
.ybc{bottom:186.266667pt;}
.y13{bottom:189.440000pt;}
.yb5{bottom:189.466667pt;}
.y3d{bottom:190.426667pt;}
.ya3{bottom:197.466667pt;}
.y20{bottom:202.240000pt;}
.y74{bottom:203.866667pt;}
.y12{bottom:207.040000pt;}
.yb4{bottom:207.066667pt;}
.y3c{bottom:208.026667pt;}
.ya2{bottom:215.066667pt;}
.y73{bottom:221.466667pt;}
.y1f{bottom:221.760000pt;}
.yb3{bottom:224.826667pt;}
.y11{bottom:224.840000pt;}
.y3b{bottom:225.626667pt;}
.ya1{bottom:232.826667pt;}
.y72{bottom:239.066667pt;}
.y1e{bottom:241.160000pt;}
.y10{bottom:242.440000pt;}
.yb2{bottom:242.466667pt;}
.y3a{bottom:243.266667pt;}
.ya0{bottom:250.466667pt;}
.y71{bottom:256.866667pt;}
.yb1{bottom:260.066667pt;}
.y39{bottom:261.026667pt;}
.y9f{bottom:268.066667pt;}
.y70{bottom:274.466667pt;}
.yb0{bottom:277.666667pt;}
.y38{bottom:278.626667pt;}
.y9e{bottom:285.666667pt;}
.y6f{bottom:292.066667pt;}
.y37{bottom:296.226667pt;}
.y9d{bottom:303.266667pt;}
.y6e{bottom:309.666667pt;}
.y36{bottom:313.826667pt;}
.y9c{bottom:321.026667pt;}
.y6d{bottom:327.266667pt;}
.y35{bottom:331.426667pt;}
.y9b{bottom:338.626667pt;}
.y6c{bottom:345.026667pt;}
.y34{bottom:349.186667pt;}
.y9a{bottom:356.226667pt;}
.y6b{bottom:362.626667pt;}
.y33{bottom:366.786667pt;}
.y99{bottom:373.826667pt;}
.y6a{bottom:380.226667pt;}
.y32{bottom:384.386667pt;}
.y98{bottom:391.426667pt;}
.y69{bottom:397.826667pt;}
.y31{bottom:401.986667pt;}
.yaf{bottom:409.186667pt;}
.y68{bottom:415.426667pt;}
.y97{bottom:417.186667pt;}
.y30{bottom:419.586667pt;}
.yae{bottom:426.786667pt;}
.y67{bottom:433.186667pt;}
.y96{bottom:434.786667pt;}
.y2f{bottom:437.346667pt;}
.yad{bottom:444.386667pt;}
.y66{bottom:450.786667pt;}
.y95{bottom:452.386667pt;}
.y2e{bottom:454.946667pt;}
.yac{bottom:461.986667pt;}
.y65{bottom:468.386667pt;}
.y94{bottom:469.986667pt;}
.y2d{bottom:472.546667pt;}
.y64{bottom:485.986667pt;}
.y93{bottom:487.586667pt;}
.y2c{bottom:490.146667pt;}
.y63{bottom:503.613333pt;}
.y92{bottom:505.373333pt;}
.y2b{bottom:507.773333pt;}
.y62{bottom:521.373333pt;}
.yf{bottom:522.333333pt;}
.y91{bottom:522.973333pt;}
.y61{bottom:538.973333pt;}
.y90{bottom:540.573333pt;}
.y60{bottom:556.573333pt;}
.y8f{bottom:558.173333pt;}
.y5f{bottom:574.173333pt;}
.y8e{bottom:575.773333pt;}
.y5e{bottom:591.773333pt;}
.y8d{bottom:593.533333pt;}
.y5d{bottom:609.533333pt;}
.y8c{bottom:611.133333pt;}
.y5c{bottom:627.133333pt;}
.y8b{bottom:628.733333pt;}
.y5b{bottom:644.733333pt;}
.y8a{bottom:646.333333pt;}
.y5a{bottom:662.333333pt;}
.y89{bottom:663.933333pt;}
.yab{bottom:671.933333pt;}
.y59{bottom:679.933333pt;}
.y88{bottom:689.533333pt;}
.y58{bottom:697.533333pt;}
.y87{bottom:707.293333pt;}
.y57{bottom:715.293333pt;}
.y86{bottom:724.893333pt;}
.y56{bottom:732.893333pt;}
.y85{bottom:742.493333pt;}
.y55{bottom:750.533333pt;}
.y84{bottom:760.133333pt;}
.y54{bottom:768.133333pt;}
.y83{bottom:777.733333pt;}
.yd{bottom:779.173333pt;}
.y53{bottom:785.733333pt;}
.y82{bottom:795.493333pt;}
.y52{bottom:803.493333pt;}
.yc{bottom:805.733333pt;}
.y81{bottom:813.093333pt;}
.y51{bottom:821.093333pt;}
.yb{bottom:827.973333pt;}
.y80{bottom:830.693333pt;}
.y50{bottom:838.693333pt;}
.ya{bottom:845.733333pt;}
.y7f{bottom:848.293333pt;}
.y4f{bottom:856.293333pt;}
.y9{bottom:859.173333pt;}
.y7e{bottom:865.893333pt;}
.y4e{bottom:873.893333pt;}
.y8{bottom:878.053333pt;}
.y7d{bottom:883.653333pt;}
.y4d{bottom:891.653333pt;}
.y7{bottom:898.853333pt;}
.y7c{bottom:901.253333pt;}
.y4c{bottom:909.253333pt;}
.y4b{bottom:926.853333pt;}
.y5{bottom:934.373333pt;}
.y4a{bottom:944.453333pt;}
.y4{bottom:961.733333pt;}
.y49{bottom:962.053333pt;}
.y48{bottom:979.813333pt;}
.y3{bottom:989.093333pt;}
.y47{bottom:997.440000pt;}
.y46{bottom:1015.040000pt;}
.y2{bottom:1016.640000pt;}
.y45{bottom:1032.640000pt;}
.y1{bottom:1046.720000pt;}
.y44{bottom:1060.800000pt;}
.ha{height:19.360000pt;}
.h8{height:24.755625pt;}
.h6{height:37.479688pt;}
.h9{height:38.050313pt;}
.he{height:38.672812pt;}
.hc{height:41.543750pt;}
.h4{height:42.176250pt;}
.hd{height:43.782500pt;}
.h7{height:47.310625pt;}
.h3{height:53.637187pt;}
.h2{height:60.057813pt;}
.h5{height:60.972188pt;}
.hb{height:254.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:156.026667pt;}
.w3{width:546.173333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:48.159988pt;}
.x4{left:71.999988pt;}
.x5{left:96.031988pt;}
.x3{left:594.173333pt;}
}




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