
    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_8bb0091b9032d47618f9db1e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909180;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_45c8f5a95262f7ef53033c16.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_771593a350bc477e5b94d929.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_0fcbc51ec782fddc71839b3a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_0ec2d204770ff63aa92bd91f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_9ca42f99446a268698505bfc.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2283c59ce354b2e182e79376.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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:-15.120000px;}
.v3{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls17{letter-spacing:-0.960000px;}
.ls7{letter-spacing:-0.792000px;}
.ls4{letter-spacing:-0.540000px;}
.ls18{letter-spacing:-0.532800px;}
.ls5{letter-spacing:-0.529200px;}
.ls9{letter-spacing:-0.478200px;}
.ls14{letter-spacing:-0.233400px;}
.ls6{letter-spacing:-0.172800px;}
.lsa{letter-spacing:-0.094800px;}
.ls16{letter-spacing:-0.043200px;}
.ls8{letter-spacing:-0.036000px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.023040px;}
.ls13{letter-spacing:0.075000px;}
.lsb{letter-spacing:0.100800px;}
.lse{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.308400px;}
.ls19{letter-spacing:0.328320px;}
.ls0{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.892800px;}
.ls12{letter-spacing:27.665280px;}
.ls10{letter-spacing:28.385280px;}
.lsf{letter-spacing:31.985280px;}
.ls11{letter-spacing:35.585280px;}
.lsc{letter-spacing:39.161280px;}
.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:-17.107200px;}
.ws12{word-spacing:-15.840000px;}
.wsf{word-spacing:-14.881200px;}
.wsd{word-spacing:-14.647800px;}
.wsb{word-spacing:-14.595840px;}
.wsc{word-spacing:-14.572800px;}
.ws10{word-spacing:-14.529600px;}
.wse{word-spacing:-14.339400px;}
.ws11{word-spacing:-14.040000px;}
.ws1{word-spacing:-13.860000px;}
.ws0{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.147200px;}
.ws2{word-spacing:-10.612800px;}
.ws9{word-spacing:-10.134600px;}
.ws4{word-spacing:-9.187200px;}
.wsa{word-spacing:-9.092400px;}
.ws5{word-spacing:-7.920000px;}
.ws7{word-spacing:-7.884000px;}
.ws8{word-spacing:0.000000px;}
._2f{margin-left:-6.174720px;}
._1a{margin-left:-4.305600px;}
._14{margin-left:-2.529120px;}
._2{margin-left:-1.350000px;}
._1{width:1.488000px;}
._a{width:2.876160px;}
._19{width:4.305600px;}
._18{width:5.844960px;}
._25{width:7.021440px;}
._17{width:8.040240px;}
._8{width:9.800640px;}
._7{width:10.876320px;}
._9{width:11.892240px;}
._1b{width:13.248000px;}
._10{width:14.282640px;}
._26{width:15.683040px;}
._6{width:17.336400px;}
._1f{width:18.944640px;}
._f{width:20.025600px;}
._e{width:21.035520px;}
._28{width:22.105440px;}
._d{width:23.551440px;}
._11{width:24.979680px;}
._21{width:26.253360px;}
._20{width:27.382320px;}
._27{width:28.445040px;}
._b{width:29.760480px;}
._c{width:30.836160px;}
._29{width:32.391360px;}
._1e{width:33.608880px;}
._2b{width:34.996560px;}
._2d{width:36.680400px;}
._1c{width:37.756800px;}
._1d{width:39.239280px;}
._2a{width:41.002560px;}
._23{width:42.113520px;}
._22{width:43.279200px;}
._12{width:46.798080px;}
._13{width:48.106800px;}
._15{width:51.393600px;}
._16{width:52.529040px;}
._0{width:75.000000px;}
._2e{width:81.408960px;}
._3{width:181.332000px;}
._4{width:198.429840px;}
._2c{width:201.403200px;}
._5{width:202.852800px;}
._24{width:1084.961520px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs8{font-size:84.240000px;}
.y56{bottom:-23.040000px;}
.y55{bottom:-2.340000px;}
.y0{bottom:0.000000px;}
.y54{bottom:16.380000px;}
.y53{bottom:27.000000px;}
.y52{bottom:37.440000px;}
.y51{bottom:48.060000px;}
.yb{bottom:56.520000px;}
.y50{bottom:69.660000px;}
.ya{bottom:70.596000px;}
.y9{bottom:84.636000px;}
.y4f{bottom:91.830000px;}
.y8{bottom:98.676000px;}
.y7{bottom:112.896000px;}
.y88{bottom:114.156000px;}
.y6{bottom:126.936000px;}
.yb3{bottom:130.356000px;}
.ya7{bottom:134.316000px;}
.y87{bottom:136.296000px;}
.y3e{bottom:145.836000px;}
.y4e{bottom:146.910000px;}
.yb2{bottom:152.490000px;}
.ya6{bottom:156.630000px;}
.y86{bottom:158.610000px;}
.y4d{bottom:163.110000px;}
.y3d{bottom:168.150000px;}
.yb1{bottom:174.810000px;}
.ya5{bottom:178.770000px;}
.y4c{bottom:179.130000px;}
.y85{bottom:180.930000px;}
.y3c{bottom:190.290000px;}
.y4b{bottom:195.330000px;}
.yb0{bottom:197.130000px;}
.ya4{bottom:201.090000px;}
.y84{bottom:203.070000px;}
.y4a{bottom:209.370000px;}
.y3b{bottom:212.610000px;}
.yaf{bottom:219.270000px;}
.ya3{bottom:223.410000px;}
.y49{bottom:224.130000px;}
.y83{bottom:225.390000px;}
.y3a{bottom:234.750000px;}
.yae{bottom:241.590000px;}
.y48{bottom:241.770000px;}
.ya2{bottom:245.550000px;}
.y82{bottom:247.530000px;}
.y39{bottom:257.070000px;}
.y47{bottom:258.690000px;}
.yad{bottom:263.730000px;}
.ya1{bottom:267.870000px;}
.y81{bottom:269.850000px;}
.y46{bottom:273.990000px;}
.y38{bottom:279.390000px;}
.yac{bottom:286.050000px;}
.ya0{bottom:290.010000px;}
.y80{bottom:292.170000px;}
.y45{bottom:293.430000px;}
.y37{bottom:301.530000px;}
.y44{bottom:307.470000px;}
.yab{bottom:308.190000px;}
.y9f{bottom:312.330000px;}
.y7f{bottom:314.310000px;}
.y43{bottom:321.690000px;}
.y36{bottom:323.850000px;}
.yaa{bottom:331.230000px;}
.y9e{bottom:334.650000px;}
.y42{bottom:335.730000px;}
.y7e{bottom:336.675000px;}
.y35{bottom:346.035000px;}
.y41{bottom:349.815000px;}
.ya9{bottom:355.575000px;}
.y9d{bottom:356.835000px;}
.y7d{bottom:358.815000px;}
.y40{bottom:364.215000px;}
.y34{bottom:368.355000px;}
.y9c{bottom:379.155000px;}
.y7c{bottom:381.135000px;}
.y33{bottom:390.675000px;}
.y9b{bottom:401.295000px;}
.y7b{bottom:403.455000px;}
.y32{bottom:412.815000px;}
.y9a{bottom:423.615000px;}
.y7a{bottom:425.595000px;}
.y31{bottom:435.135000px;}
.y99{bottom:445.755000px;}
.y79{bottom:447.915000px;}
.y30{bottom:457.275000px;}
.y98{bottom:468.075000px;}
.y78{bottom:470.055000px;}
.y2f{bottom:479.595000px;}
.y97{bottom:490.395000px;}
.y77{bottom:492.375000px;}
.y2e{bottom:498.855000px;}
.y96{bottom:512.535000px;}
.y76{bottom:514.515000px;}
.y2d{bottom:516.495000px;}
.y3f{bottom:523.875000px;}
.y2c{bottom:533.955000px;}
.y95{bottom:534.855000px;}
.y75{bottom:536.835000px;}
.y2b{bottom:551.595000px;}
.y94{bottom:556.995000px;}
.y74{bottom:559.155000px;}
.y2a{bottom:569.235000px;}
.y93{bottom:579.315000px;}
.y73{bottom:581.295000px;}
.y29{bottom:586.695000px;}
.y92{bottom:601.635000px;}
.y72{bottom:603.645000px;}
.y28{bottom:604.365000px;}
.y27{bottom:622.005000px;}
.y91{bottom:623.805000px;}
.y71{bottom:625.785000px;}
.y26{bottom:639.465000px;}
.y90{bottom:646.125000px;}
.ya8{bottom:646.845000px;}
.y70{bottom:648.105000px;}
.y25{bottom:657.105000px;}
.y8f{bottom:668.265000px;}
.y6f{bottom:670.425000px;}
.y24{bottom:676.905000px;}
.y8e{bottom:690.585000px;}
.y6e{bottom:692.565000px;}
.y23{bottom:694.545000px;}
.y22{bottom:712.185000px;}
.y8d{bottom:712.725000px;}
.y6d{bottom:714.885000px;}
.y21{bottom:729.645000px;}
.y8c{bottom:735.045000px;}
.y6c{bottom:737.025000px;}
.y20{bottom:747.285000px;}
.y8b{bottom:757.365000px;}
.y6b{bottom:759.345000px;}
.y1f{bottom:764.925000px;}
.y8a{bottom:779.505000px;}
.y6a{bottom:781.485000px;}
.y1e{bottom:782.565000px;}
.y1d{bottom:800.025000px;}
.y89{bottom:802.545000px;}
.y69{bottom:803.805000px;}
.y1c{bottom:817.665000px;}
.y68{bottom:826.125000px;}
.y1b{bottom:835.305000px;}
.y67{bottom:848.265000px;}
.y1a{bottom:852.765000px;}
.y19{bottom:870.405000px;}
.y66{bottom:870.630000px;}
.y18{bottom:888.090000px;}
.y65{bottom:892.770000px;}
.y17{bottom:905.910000px;}
.y64{bottom:915.090000px;}
.y16{bottom:924.630000px;}
.y63{bottom:937.410000px;}
.y15{bottom:943.530000px;}
.y14{bottom:956.850000px;}
.y62{bottom:959.550000px;}
.y13{bottom:980.070000px;}
.y61{bottom:981.870000px;}
.y12{bottom:994.650000px;}
.y60{bottom:1004.010000px;}
.y11{bottom:1009.590000px;}
.y5f{bottom:1026.330000px;}
.y10{bottom:1029.030000px;}
.yf{bottom:1047.390000px;}
.y5e{bottom:1048.650000px;}
.ye{bottom:1063.050000px;}
.y5d{bottom:1070.790000px;}
.yd{bottom:1085.910000px;}
.y5c{bottom:1093.110000px;}
.yc{bottom:1110.930000px;}
.y5b{bottom:1115.250000px;}
.y5{bottom:1133.250000px;}
.y5a{bottom:1137.570000px;}
.y4{bottom:1147.500000px;}
.y59{bottom:1157.400000px;}
.y3{bottom:1162.980000px;}
.y58{bottom:1178.100000px;}
.y2{bottom:1178.460000px;}
.y1{bottom:1193.940000px;}
.y57{bottom:1197.540000px;}
.hd{height:30.480469px;}
.h9{height:33.480703px;}
.h3{height:38.100586px;}
.h4{height:40.843828px;}
.h8{height:40.964062px;}
.h2{height:45.720703px;}
.hc{height:50.273438px;}
.ha{height:50.597578px;}
.h5{height:56.084062px;}
.he{height:58.819922px;}
.h7{height:60.960938px;}
.h6{height:65.837812px;}
.hb{height:376.995000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:208.110000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.x6{left:112.895987px;}
.x3{left:114.335987px;}
.x2{left:116.135987px;}
.x8{left:132.515987px;}
.xd{left:134.994000px;}
.x11{left:140.075987px;}
.x4{left:146.555987px;}
.xc{left:162.029987px;}
.x10{left:189.029987px;}
.xf{left:216.029987px;}
.x7{left:267.689987px;}
.xb{left:335.414987px;}
.x9{left:404.534987px;}
.xa{left:412.994987px;}
.x5{left:446.474987px;}
.xe{left:537.044987px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v3{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls17{letter-spacing:-0.853333pt;}
.ls7{letter-spacing:-0.704000pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls18{letter-spacing:-0.473600pt;}
.ls5{letter-spacing:-0.470400pt;}
.ls9{letter-spacing:-0.425067pt;}
.ls14{letter-spacing:-0.207467pt;}
.ls6{letter-spacing:-0.153600pt;}
.lsa{letter-spacing:-0.084267pt;}
.ls16{letter-spacing:-0.038400pt;}
.ls8{letter-spacing:-0.032000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.020480pt;}
.ls13{letter-spacing:0.066667pt;}
.lsb{letter-spacing:0.089600pt;}
.lse{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.274133pt;}
.ls19{letter-spacing:0.291840pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.793600pt;}
.ls12{letter-spacing:24.591360pt;}
.ls10{letter-spacing:25.231360pt;}
.lsf{letter-spacing:28.431360pt;}
.ls11{letter-spacing:31.631360pt;}
.lsc{letter-spacing:34.810027pt;}
.ws3{word-spacing:-15.206400pt;}
.ws12{word-spacing:-14.080000pt;}
.wsf{word-spacing:-13.227733pt;}
.wsd{word-spacing:-13.020267pt;}
.wsb{word-spacing:-12.974080pt;}
.wsc{word-spacing:-12.953600pt;}
.ws10{word-spacing:-12.915200pt;}
.wse{word-spacing:-12.746133pt;}
.ws11{word-spacing:-12.480000pt;}
.ws1{word-spacing:-12.320000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.686400pt;}
.ws2{word-spacing:-9.433600pt;}
.ws9{word-spacing:-9.008533pt;}
.ws4{word-spacing:-8.166400pt;}
.wsa{word-spacing:-8.082133pt;}
.ws5{word-spacing:-7.040000pt;}
.ws7{word-spacing:-7.008000pt;}
.ws8{word-spacing:0.000000pt;}
._2f{margin-left:-5.488640pt;}
._1a{margin-left:-3.827200pt;}
._14{margin-left:-2.248107pt;}
._2{margin-left:-1.200000pt;}
._1{width:1.322667pt;}
._a{width:2.556587pt;}
._19{width:3.827200pt;}
._18{width:5.195520pt;}
._25{width:6.241280pt;}
._17{width:7.146880pt;}
._8{width:8.711680pt;}
._7{width:9.667840pt;}
._9{width:10.570880pt;}
._1b{width:11.776000pt;}
._10{width:12.695680pt;}
._26{width:13.940480pt;}
._6{width:15.410133pt;}
._1f{width:16.839680pt;}
._f{width:17.800533pt;}
._e{width:18.698240pt;}
._28{width:19.649280pt;}
._d{width:20.934613pt;}
._11{width:22.204160pt;}
._21{width:23.336320pt;}
._20{width:24.339840pt;}
._27{width:25.284480pt;}
._b{width:26.453760pt;}
._c{width:27.409920pt;}
._29{width:28.792320pt;}
._1e{width:29.874560pt;}
._2b{width:31.108053pt;}
._2d{width:32.604800pt;}
._1c{width:33.561600pt;}
._1d{width:34.879360pt;}
._2a{width:36.446720pt;}
._23{width:37.434240pt;}
._22{width:38.470400pt;}
._12{width:41.598293pt;}
._13{width:42.761600pt;}
._15{width:45.683200pt;}
._16{width:46.692480pt;}
._0{width:66.666667pt;}
._2e{width:72.363520pt;}
._3{width:161.184000pt;}
._4{width:176.382080pt;}
._2c{width:179.025067pt;}
._5{width:180.313600pt;}
._24{width:964.410240pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs8{font-size:74.880000pt;}
.y56{bottom:-20.480000pt;}
.y55{bottom:-2.080000pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:14.560000pt;}
.y53{bottom:24.000000pt;}
.y52{bottom:33.280000pt;}
.y51{bottom:42.720000pt;}
.yb{bottom:50.240000pt;}
.y50{bottom:61.920000pt;}
.ya{bottom:62.752000pt;}
.y9{bottom:75.232000pt;}
.y4f{bottom:81.626667pt;}
.y8{bottom:87.712000pt;}
.y7{bottom:100.352000pt;}
.y88{bottom:101.472000pt;}
.y6{bottom:112.832000pt;}
.yb3{bottom:115.872000pt;}
.ya7{bottom:119.392000pt;}
.y87{bottom:121.152000pt;}
.y3e{bottom:129.632000pt;}
.y4e{bottom:130.586667pt;}
.yb2{bottom:135.546667pt;}
.ya6{bottom:139.226667pt;}
.y86{bottom:140.986667pt;}
.y4d{bottom:144.986667pt;}
.y3d{bottom:149.466667pt;}
.yb1{bottom:155.386667pt;}
.ya5{bottom:158.906667pt;}
.y4c{bottom:159.226667pt;}
.y85{bottom:160.826667pt;}
.y3c{bottom:169.146667pt;}
.y4b{bottom:173.626667pt;}
.yb0{bottom:175.226667pt;}
.ya4{bottom:178.746667pt;}
.y84{bottom:180.506667pt;}
.y4a{bottom:186.106667pt;}
.y3b{bottom:188.986667pt;}
.yaf{bottom:194.906667pt;}
.ya3{bottom:198.586667pt;}
.y49{bottom:199.226667pt;}
.y83{bottom:200.346667pt;}
.y3a{bottom:208.666667pt;}
.yae{bottom:214.746667pt;}
.y48{bottom:214.906667pt;}
.ya2{bottom:218.266667pt;}
.y82{bottom:220.026667pt;}
.y39{bottom:228.506667pt;}
.y47{bottom:229.946667pt;}
.yad{bottom:234.426667pt;}
.ya1{bottom:238.106667pt;}
.y81{bottom:239.866667pt;}
.y46{bottom:243.546667pt;}
.y38{bottom:248.346667pt;}
.yac{bottom:254.266667pt;}
.ya0{bottom:257.786667pt;}
.y80{bottom:259.706667pt;}
.y45{bottom:260.826667pt;}
.y37{bottom:268.026667pt;}
.y44{bottom:273.306667pt;}
.yab{bottom:273.946667pt;}
.y9f{bottom:277.626667pt;}
.y7f{bottom:279.386667pt;}
.y43{bottom:285.946667pt;}
.y36{bottom:287.866667pt;}
.yaa{bottom:294.426667pt;}
.y9e{bottom:297.466667pt;}
.y42{bottom:298.426667pt;}
.y7e{bottom:299.266667pt;}
.y35{bottom:307.586667pt;}
.y41{bottom:310.946667pt;}
.ya9{bottom:316.066667pt;}
.y9d{bottom:317.186667pt;}
.y7d{bottom:318.946667pt;}
.y40{bottom:323.746667pt;}
.y34{bottom:327.426667pt;}
.y9c{bottom:337.026667pt;}
.y7c{bottom:338.786667pt;}
.y33{bottom:347.266667pt;}
.y9b{bottom:356.706667pt;}
.y7b{bottom:358.626667pt;}
.y32{bottom:366.946667pt;}
.y9a{bottom:376.546667pt;}
.y7a{bottom:378.306667pt;}
.y31{bottom:386.786667pt;}
.y99{bottom:396.226667pt;}
.y79{bottom:398.146667pt;}
.y30{bottom:406.466667pt;}
.y98{bottom:416.066667pt;}
.y78{bottom:417.826667pt;}
.y2f{bottom:426.306667pt;}
.y97{bottom:435.906667pt;}
.y77{bottom:437.666667pt;}
.y2e{bottom:443.426667pt;}
.y96{bottom:455.586667pt;}
.y76{bottom:457.346667pt;}
.y2d{bottom:459.106667pt;}
.y3f{bottom:465.666667pt;}
.y2c{bottom:474.626667pt;}
.y95{bottom:475.426667pt;}
.y75{bottom:477.186667pt;}
.y2b{bottom:490.306667pt;}
.y94{bottom:495.106667pt;}
.y74{bottom:497.026667pt;}
.y2a{bottom:505.986667pt;}
.y93{bottom:514.946667pt;}
.y73{bottom:516.706667pt;}
.y29{bottom:521.506667pt;}
.y92{bottom:534.786667pt;}
.y72{bottom:536.573333pt;}
.y28{bottom:537.213333pt;}
.y27{bottom:552.893333pt;}
.y91{bottom:554.493333pt;}
.y71{bottom:556.253333pt;}
.y26{bottom:568.413333pt;}
.y90{bottom:574.333333pt;}
.ya8{bottom:574.973333pt;}
.y70{bottom:576.093333pt;}
.y25{bottom:584.093333pt;}
.y8f{bottom:594.013333pt;}
.y6f{bottom:595.933333pt;}
.y24{bottom:601.693333pt;}
.y8e{bottom:613.853333pt;}
.y6e{bottom:615.613333pt;}
.y23{bottom:617.373333pt;}
.y22{bottom:633.053333pt;}
.y8d{bottom:633.533333pt;}
.y6d{bottom:635.453333pt;}
.y21{bottom:648.573333pt;}
.y8c{bottom:653.373333pt;}
.y6c{bottom:655.133333pt;}
.y20{bottom:664.253333pt;}
.y8b{bottom:673.213333pt;}
.y6b{bottom:674.973333pt;}
.y1f{bottom:679.933333pt;}
.y8a{bottom:692.893333pt;}
.y6a{bottom:694.653333pt;}
.y1e{bottom:695.613333pt;}
.y1d{bottom:711.133333pt;}
.y89{bottom:713.373333pt;}
.y69{bottom:714.493333pt;}
.y1c{bottom:726.813333pt;}
.y68{bottom:734.333333pt;}
.y1b{bottom:742.493333pt;}
.y67{bottom:754.013333pt;}
.y1a{bottom:758.013333pt;}
.y19{bottom:773.693333pt;}
.y66{bottom:773.893333pt;}
.y18{bottom:789.413333pt;}
.y65{bottom:793.573333pt;}
.y17{bottom:805.253333pt;}
.y64{bottom:813.413333pt;}
.y16{bottom:821.893333pt;}
.y63{bottom:833.253333pt;}
.y15{bottom:838.693333pt;}
.y14{bottom:850.533333pt;}
.y62{bottom:852.933333pt;}
.y13{bottom:871.173333pt;}
.y61{bottom:872.773333pt;}
.y12{bottom:884.133333pt;}
.y60{bottom:892.453333pt;}
.y11{bottom:897.413333pt;}
.y5f{bottom:912.293333pt;}
.y10{bottom:914.693333pt;}
.yf{bottom:931.013333pt;}
.y5e{bottom:932.133333pt;}
.ye{bottom:944.933333pt;}
.y5d{bottom:951.813333pt;}
.yd{bottom:965.253333pt;}
.y5c{bottom:971.653333pt;}
.yc{bottom:987.493333pt;}
.y5b{bottom:991.333333pt;}
.y5{bottom:1007.333333pt;}
.y5a{bottom:1011.173333pt;}
.y4{bottom:1020.000000pt;}
.y59{bottom:1028.800000pt;}
.y3{bottom:1033.760000pt;}
.y58{bottom:1047.200000pt;}
.y2{bottom:1047.520000pt;}
.y1{bottom:1061.280000pt;}
.y57{bottom:1064.480000pt;}
.hd{height:27.093750pt;}
.h9{height:29.760625pt;}
.h3{height:33.867188pt;}
.h4{height:36.305625pt;}
.h8{height:36.412500pt;}
.h2{height:40.640625pt;}
.hc{height:44.687500pt;}
.ha{height:44.975625pt;}
.h5{height:49.852500pt;}
.he{height:52.284375pt;}
.h7{height:54.187500pt;}
.h6{height:58.522500pt;}
.hb{height:335.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:184.986667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.x6{left:100.351988pt;}
.x3{left:101.631988pt;}
.x2{left:103.231988pt;}
.x8{left:117.791988pt;}
.xd{left:119.994667pt;}
.x11{left:124.511988pt;}
.x4{left:130.271988pt;}
.xc{left:144.026655pt;}
.x10{left:168.026655pt;}
.xf{left:192.026655pt;}
.x7{left:237.946655pt;}
.xb{left:298.146655pt;}
.x9{left:359.586655pt;}
.xa{left:367.106655pt;}
.x5{left:396.866655pt;}
.xe{left:477.373322pt;}
}




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