
    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_794d75b686d7136b5eedbf12.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_e4cb613996cabdd64d7e44ab.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_c7c04896c9f87a9830aac7f3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.008301;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_30d01897a1feb7f809f27277.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_26217ce4ead6ac0c7d621960.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7dcacfcb3e389ccd878a258e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908203;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_57ed4ccdc62bb5bd900e0c8b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_31ba75e1c6c71ef61472a0ad.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.986328;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_17a6d099b600e5dc136938bd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3ba45ad2995de53baee75361.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.776855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;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;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls6{letter-spacing:-0.360000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.135600px;}
.ls0{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.206400px;}
.ls1{letter-spacing:0.206640px;}
.ls7{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.lsc{letter-spacing:16.506720px;}
.ls9{letter-spacing:17.460000px;}
.lsa{letter-spacing:46.026720px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.199800px;}
.ws6{word-spacing:-15.146400px;}
.ws8{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws9{word-spacing:-13.500000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._2a{margin-left:-6.362640px;}
._16{margin-left:-3.706080px;}
._b{margin-left:-2.030880px;}
._0{margin-left:-1.010880px;}
._1{width:1.803840px;}
._10{width:3.586080px;}
._d{width:4.829280px;}
._e{width:6.091680px;}
._18{width:7.141200px;}
._f{width:8.530800px;}
._8{width:9.550560px;}
._9{width:10.995840px;}
._5{width:12.960000px;}
._12{width:16.901040px;}
._c{width:18.091200px;}
._11{width:19.481760px;}
._19{width:20.916240px;}
._15{width:22.876080px;}
._a{width:24.262560px;}
._17{width:25.805280px;}
._1c{width:27.788400px;}
._1b{width:29.640960px;}
._32{width:30.776400px;}
._1a{width:31.792320px;}
._22{width:32.971440px;}
._1e{width:34.143840px;}
._1f{width:35.186640px;}
._1d{width:36.274320px;}
._27{width:37.745280px;}
._37{width:40.457520px;}
._21{width:42.250320px;}
._20{width:43.624800px;}
._24{width:44.671440px;}
._23{width:45.765120px;}
._29{width:47.270160px;}
._28{width:48.525120px;}
._33{width:50.545920px;}
._30{width:51.621600px;}
._2f{width:52.827840px;}
._25{width:54.191280px;}
._26{width:55.348800px;}
._4{width:57.204000px;}
._36{width:58.206240px;}
._2b{width:63.226080px;}
._34{width:68.653200px;}
._35{width:69.806640px;}
._3{width:87.120000px;}
._39{width:91.302240px;}
._2c{width:98.055120px;}
._38{width:120.356640px;}
._2d{width:124.958160px;}
._2e{width:128.364480px;}
._31{width:143.448240px;}
._14{width:158.662800px;}
._13{width:161.586480px;}
._6{width:199.416000px;}
._2{width:233.273760px;}
._7{width:1023.282960px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(47,84,150);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:1.440000px;}
.y28{bottom:5.760000px;}
.yb2{bottom:5.805000px;}
.y80{bottom:5.940000px;}
.y11{bottom:7.560000px;}
.y6{bottom:13.860000px;}
.y27{bottom:25.560000px;}
.yb0{bottom:25.605000px;}
.y86{bottom:25.740000px;}
.y5{bottom:45.000000px;}
.y26{bottom:45.360000px;}
.ya4{bottom:45.390000px;}
.y7d{bottom:45.540000px;}
.y98{bottom:45.585000px;}
.y9{bottom:60.480000px;}
.y25{bottom:65.160000px;}
.ya3{bottom:65.190000px;}
.y9a{bottom:65.340000px;}
.y97{bottom:65.385000px;}
.y4{bottom:76.320000px;}
.y3f{bottom:83.880000px;}
.y8c{bottom:84.420000px;}
.y24{bottom:85.140000px;}
.y96{bottom:85.185000px;}
.yd4{bottom:86.400000px;}
.y77{bottom:91.260000px;}
.y38{bottom:98.640000px;}
.y3e{bottom:103.680000px;}
.y8d{bottom:104.220000px;}
.y23{bottom:104.940000px;}
.y88{bottom:104.970000px;}
.yd3{bottom:106.200000px;}
.y3{bottom:107.670000px;}
.y76{bottom:111.060000px;}
.y37{bottom:117.180000px;}
.ybc{bottom:123.480000px;}
.y3d{bottom:123.660000px;}
.y87{bottom:124.020000px;}
.y22{bottom:124.740000px;}
.yd2{bottom:126.000000px;}
.y75{bottom:131.040000px;}
.y36{bottom:135.900000px;}
.y2{bottom:140.430000px;}
.ybb{bottom:143.280000px;}
.y3c{bottom:143.460000px;}
.y21{bottom:144.540000px;}
.yd1{bottom:145.980000px;}
.y74{bottom:150.840000px;}
.y35{bottom:154.470000px;}
.yba{bottom:163.110000px;}
.y3b{bottom:163.290000px;}
.y8b{bottom:163.650000px;}
.y20{bottom:164.340000px;}
.yd0{bottom:165.810000px;}
.y73{bottom:170.670000px;}
.y34{bottom:173.190000px;}
.y3a{bottom:183.090000px;}
.y1f{bottom:184.320000px;}
.ycf{bottom:185.610000px;}
.y72{bottom:190.470000px;}
.y33{bottom:200.550000px;}
.y39{bottom:202.890000px;}
.y8a{bottom:203.430000px;}
.y1e{bottom:204.120000px;}
.yce{bottom:205.410000px;}
.y71{bottom:210.270000px;}
.yb9{bottom:222.690000px;}
.y32{bottom:222.870000px;}
.y89{bottom:223.230000px;}
.y1d{bottom:223.920000px;}
.y70{bottom:230.250000px;}
.ycd{bottom:239.970000px;}
.yb8{bottom:242.490000px;}
.y31{bottom:242.670000px;}
.y1c{bottom:243.750000px;}
.y6f{bottom:250.050000px;}
.ycc{bottom:257.250000px;}
.yb7{bottom:262.290000px;}
.y30{bottom:262.470000px;}
.y1b{bottom:263.550000px;}
.y6e{bottom:269.850000px;}
.ycb{bottom:274.530000px;}
.y2f{bottom:282.270000px;}
.y1a{bottom:283.530000px;}
.y6d{bottom:289.650000px;}
.yca{bottom:291.630000px;}
.y2e{bottom:302.070000px;}
.y19{bottom:303.330000px;}
.y6c{bottom:309.450000px;}
.y85{bottom:309.810000px;}
.yc9{bottom:311.430000px;}
.yb6{bottom:321.870000px;}
.y2d{bottom:322.050000px;}
.y18{bottom:323.130000px;}
.y6b{bottom:329.430000px;}
.y84{bottom:329.610000px;}
.yc8{bottom:331.410000px;}
.yb5{bottom:341.670000px;}
.y2c{bottom:341.850000px;}
.y17{bottom:342.930000px;}
.y81{bottom:344.550000px;}
.y6a{bottom:349.230000px;}
.yc7{bottom:351.210000px;}
.yb3{bottom:356.430000px;}
.y2b{bottom:361.650000px;}
.y16{bottom:362.730000px;}
.y83{bottom:364.350000px;}
.y69{bottom:369.030000px;}
.yc6{bottom:371.010000px;}
.yb4{bottom:376.410000px;}
.y2a{bottom:381.450000px;}
.y15{bottom:382.710000px;}
.y82{bottom:384.150000px;}
.y68{bottom:388.830000px;}
.yc5{bottom:390.810000px;}
.yaf{bottom:396.210000px;}
.y29{bottom:401.295000px;}
.y14{bottom:402.510000px;}
.y7c{bottom:403.995000px;}
.y67{bottom:408.675000px;}
.yc4{bottom:410.655000px;}
.yb1{bottom:416.055000px;}
.y12{bottom:416.235000px;}
.y13{bottom:422.310000px;}
.y7f{bottom:423.795000px;}
.y66{bottom:428.655000px;}
.yc3{bottom:430.635000px;}
.yad{bottom:435.855000px;}
.y7e{bottom:443.775000px;}
.y65{bottom:448.455000px;}
.yc2{bottom:450.435000px;}
.yae{bottom:455.655000px;}
.y79{bottom:463.575000px;}
.y64{bottom:468.255000px;}
.yc1{bottom:470.235000px;}
.yac{bottom:476.355000px;}
.y7b{bottom:483.375000px;}
.y63{bottom:488.055000px;}
.yc0{bottom:490.035000px;}
.y7a{bottom:503.175000px;}
.y62{bottom:507.855000px;}
.ybf{bottom:509.835000px;}
.y78{bottom:523.875000px;}
.y61{bottom:527.835000px;}
.ybe{bottom:529.815000px;}
.yab{bottom:535.755000px;}
.y60{bottom:547.635000px;}
.ybd{bottom:549.075000px;}
.yaa{bottom:556.455000px;}
.y5f{bottom:567.435000px;}
.ya9{bottom:582.735000px;}
.y5e{bottom:587.235000px;}
.ya8{bottom:602.535000px;}
.y5d{bottom:607.035000px;}
.ya2{bottom:617.475000px;}
.y5c{bottom:627.015000px;}
.ya7{bottom:637.275000px;}
.y5b{bottom:646.815000px;}
.ya6{bottom:657.105000px;}
.y5a{bottom:666.645000px;}
.ya5{bottom:676.905000px;}
.y59{bottom:686.445000px;}
.y9e{bottom:696.705000px;}
.y58{bottom:706.245000px;}
.ya1{bottom:716.685000px;}
.y57{bottom:726.225000px;}
.ya0{bottom:736.485000px;}
.y56{bottom:746.025000px;}
.y9f{bottom:756.285000px;}
.y55{bottom:765.825000px;}
.y99{bottom:776.085000px;}
.y54{bottom:785.625000px;}
.y9d{bottom:795.885000px;}
.y53{bottom:805.425000px;}
.y9c{bottom:815.865000px;}
.y52{bottom:825.405000px;}
.y9b{bottom:835.665000px;}
.y51{bottom:845.205000px;}
.y10{bottom:853.305000px;}
.y95{bottom:856.185000px;}
.y50{bottom:865.005000px;}
.y4f{bottom:884.805000px;}
.yf{bottom:886.065000px;}
.y4e{bottom:904.650000px;}
.ye{bottom:911.130000px;}
.y4d{bottom:924.630000px;}
.yd{bottom:926.250000px;}
.y4c{bottom:944.430000px;}
.yc{bottom:947.490000px;}
.y94{bottom:956.130000px;}
.y4b{bottom:964.230000px;}
.yb{bottom:970.890000px;}
.y93{bottom:982.590000px;}
.y4a{bottom:984.030000px;}
.y92{bottom:1002.390000px;}
.ya{bottom:1002.750000px;}
.y49{bottom:1003.830000px;}
.y91{bottom:1017.150000px;}
.y48{bottom:1023.810000px;}
.y8{bottom:1029.030000px;}
.y90{bottom:1036.950000px;}
.y47{bottom:1043.610000px;}
.y1{bottom:1046.490000px;}
.y46{bottom:1063.410000px;}
.y8f{bottom:1076.730000px;}
.y45{bottom:1083.210000px;}
.y44{bottom:1103.010000px;}
.y8e{bottom:1116.330000px;}
.y43{bottom:1122.990000px;}
.y42{bottom:1142.790000px;}
.y41{bottom:1171.080000px;}
.y40{bottom:1192.680000px;}
.h10{height:19.800000px;}
.h15{height:19.836000px;}
.h13{height:19.980000px;}
.hb{height:26.100000px;}
.ha{height:28.115859px;}
.h1c{height:39.600000px;}
.h1a{height:39.636000px;}
.h19{height:39.780000px;}
.h1d{height:39.816000px;}
.h16{height:41.493516px;}
.hd{height:42.164648px;}
.h8{height:43.215117px;}
.h21{height:43.506914px;}
.he{height:45.024258px;}
.h4{height:48.774375px;}
.h18{height:48.995859px;}
.h1b{height:49.115859px;}
.hf{height:51.706406px;}
.h5{height:52.066406px;}
.h9{height:53.224453px;}
.h11{height:59.400000px;}
.h14{height:59.436000px;}
.h12{height:59.580000px;}
.h3{height:62.028281px;}
.h7{height:67.565039px;}
.h6{height:74.039062px;}
.h20{height:79.236000px;}
.h1f{height:79.380000px;}
.h1e{height:99.216000px;}
.h17{height:119.016000px;}
.h2{height:162.390000px;}
.hc{height:436.350000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:21.060000px;}
.w24{width:52.956000px;}
.w13{width:63.540000px;}
.w1e{width:68.076000px;}
.w1d{width:72.900000px;}
.w1c{width:73.476000px;}
.w1a{width:73.620000px;}
.w27{width:75.420000px;}
.wf{width:75.600000px;}
.w12{width:83.556000px;}
.w26{width:86.616000px;}
.w11{width:90.180000px;}
.w10{width:90.396000px;}
.w28{width:90.936000px;}
.w25{width:94.320000px;}
.w14{width:95.256000px;}
.w19{width:103.536000px;}
.w1b{width:103.680000px;}
.w1f{width:105.696000px;}
.w22{width:107.496000px;}
.w23{width:120.780000px;}
.w15{width:131.796000px;}
.wa{width:138.636000px;}
.w4{width:144.576000px;}
.wb{width:146.556000px;}
.w8{width:153.390000px;}
.w16{width:155.010000px;}
.w21{width:156.630000px;}
.wc{width:177.870000px;}
.wd{width:183.450000px;}
.w20{width:184.170000px;}
.we{width:286.815000px;}
.w18{width:289.875000px;}
.w9{width:361.335000px;}
.w2{width:619.530000px;}
.w7{width:626.730000px;}
.w6{width:780.120000px;}
.w17{width:785.160000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.xf{left:12.600000px;}
.x1{left:54.000000px;}
.x6{left:56.520000px;}
.x24{left:85.895987px;}
.xa{left:108.035987px;}
.x25{left:112.895987px;}
.x5{left:136.290000px;}
.x1d{left:159.690000px;}
.x16{left:185.790000px;}
.x1e{left:210.630000px;}
.xe{left:231.870000px;}
.x1f{left:318.135000px;}
.x10{left:340.815000px;}
.x17{left:343.875000px;}
.xb{left:415.335000px;}
.x11{left:416.415000px;}
.x20{left:438.915000px;}
.x18{left:447.405000px;}
.x8{left:473.504987px;}
.x21{left:491.865000px;}
.x26{left:505.364987px;}
.x12{left:506.805000px;}
.x19{left:521.025000px;}
.x9{left:527.504987px;}
.x27{left:532.364987px;}
.xc{left:553.965000px;}
.x22{left:586.185000px;}
.x13{left:596.985000px;}
.x1a{left:624.705000px;}
.x3{left:673.530000px;}
.x14{left:680.550000px;}
.x7{left:683.250000px;}
.xd{left:692.610000px;}
.x4{left:694.590000px;}
.x1b{left:698.190000px;}
.x15{left:743.910000px;}
.x23{left:748.230000px;}
.x1c{left:771.090000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.120533pt;}
.ls0{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.183467pt;}
.ls1{letter-spacing:0.183680pt;}
.ls7{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.lsc{letter-spacing:14.672640pt;}
.ls9{letter-spacing:15.520000pt;}
.lsa{letter-spacing:40.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.463467pt;}
.ws8{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._2a{margin-left:-5.655680pt;}
._16{margin-left:-3.294293pt;}
._b{margin-left:-1.805227pt;}
._0{margin-left:-0.898560pt;}
._1{width:1.603413pt;}
._10{width:3.187627pt;}
._d{width:4.292693pt;}
._e{width:5.414827pt;}
._18{width:6.347733pt;}
._f{width:7.582933pt;}
._8{width:8.489387pt;}
._9{width:9.774080pt;}
._5{width:11.520000pt;}
._12{width:15.023147pt;}
._c{width:16.081067pt;}
._11{width:17.317120pt;}
._19{width:18.592213pt;}
._15{width:20.334293pt;}
._a{width:21.566720pt;}
._17{width:22.938027pt;}
._1c{width:24.700800pt;}
._1b{width:26.347520pt;}
._32{width:27.356800pt;}
._1a{width:28.259840pt;}
._22{width:29.307947pt;}
._1e{width:30.350080pt;}
._1f{width:31.277013pt;}
._1d{width:32.243840pt;}
._27{width:33.551360pt;}
._37{width:35.962240pt;}
._21{width:37.555840pt;}
._20{width:38.777600pt;}
._24{width:39.707947pt;}
._23{width:40.680107pt;}
._29{width:42.017920pt;}
._28{width:43.133440pt;}
._33{width:44.929707pt;}
._30{width:45.885867pt;}
._2f{width:46.958080pt;}
._25{width:48.170027pt;}
._26{width:49.198933pt;}
._4{width:50.848000pt;}
._36{width:51.738880pt;}
._2b{width:56.200960pt;}
._34{width:61.025067pt;}
._35{width:62.050347pt;}
._3{width:77.440000pt;}
._39{width:81.157547pt;}
._2c{width:87.160107pt;}
._38{width:106.983680pt;}
._2d{width:111.073920pt;}
._2e{width:114.101760pt;}
._31{width:127.509547pt;}
._14{width:141.033600pt;}
._13{width:143.632427pt;}
._6{width:177.258667pt;}
._2{width:207.354453pt;}
._7{width:909.584853pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:1.280000pt;}
.y28{bottom:5.120000pt;}
.yb2{bottom:5.160000pt;}
.y80{bottom:5.280000pt;}
.y11{bottom:6.720000pt;}
.y6{bottom:12.320000pt;}
.y27{bottom:22.720000pt;}
.yb0{bottom:22.760000pt;}
.y86{bottom:22.880000pt;}
.y5{bottom:40.000000pt;}
.y26{bottom:40.320000pt;}
.ya4{bottom:40.346667pt;}
.y7d{bottom:40.480000pt;}
.y98{bottom:40.520000pt;}
.y9{bottom:53.760000pt;}
.y25{bottom:57.920000pt;}
.ya3{bottom:57.946667pt;}
.y9a{bottom:58.080000pt;}
.y97{bottom:58.120000pt;}
.y4{bottom:67.840000pt;}
.y3f{bottom:74.560000pt;}
.y8c{bottom:75.040000pt;}
.y24{bottom:75.680000pt;}
.y96{bottom:75.720000pt;}
.yd4{bottom:76.800000pt;}
.y77{bottom:81.120000pt;}
.y38{bottom:87.680000pt;}
.y3e{bottom:92.160000pt;}
.y8d{bottom:92.640000pt;}
.y23{bottom:93.280000pt;}
.y88{bottom:93.306667pt;}
.yd3{bottom:94.400000pt;}
.y3{bottom:95.706667pt;}
.y76{bottom:98.720000pt;}
.y37{bottom:104.160000pt;}
.ybc{bottom:109.760000pt;}
.y3d{bottom:109.920000pt;}
.y87{bottom:110.240000pt;}
.y22{bottom:110.880000pt;}
.yd2{bottom:112.000000pt;}
.y75{bottom:116.480000pt;}
.y36{bottom:120.800000pt;}
.y2{bottom:124.826667pt;}
.ybb{bottom:127.360000pt;}
.y3c{bottom:127.520000pt;}
.y21{bottom:128.480000pt;}
.yd1{bottom:129.760000pt;}
.y74{bottom:134.080000pt;}
.y35{bottom:137.306667pt;}
.yba{bottom:144.986667pt;}
.y3b{bottom:145.146667pt;}
.y8b{bottom:145.466667pt;}
.y20{bottom:146.080000pt;}
.yd0{bottom:147.386667pt;}
.y73{bottom:151.706667pt;}
.y34{bottom:153.946667pt;}
.y3a{bottom:162.746667pt;}
.y1f{bottom:163.840000pt;}
.ycf{bottom:164.986667pt;}
.y72{bottom:169.306667pt;}
.y33{bottom:178.266667pt;}
.y39{bottom:180.346667pt;}
.y8a{bottom:180.826667pt;}
.y1e{bottom:181.440000pt;}
.yce{bottom:182.586667pt;}
.y71{bottom:186.906667pt;}
.yb9{bottom:197.946667pt;}
.y32{bottom:198.106667pt;}
.y89{bottom:198.426667pt;}
.y1d{bottom:199.040000pt;}
.y70{bottom:204.666667pt;}
.ycd{bottom:213.306667pt;}
.yb8{bottom:215.546667pt;}
.y31{bottom:215.706667pt;}
.y1c{bottom:216.666667pt;}
.y6f{bottom:222.266667pt;}
.ycc{bottom:228.666667pt;}
.yb7{bottom:233.146667pt;}
.y30{bottom:233.306667pt;}
.y1b{bottom:234.266667pt;}
.y6e{bottom:239.866667pt;}
.ycb{bottom:244.026667pt;}
.y2f{bottom:250.906667pt;}
.y1a{bottom:252.026667pt;}
.y6d{bottom:257.466667pt;}
.yca{bottom:259.226667pt;}
.y2e{bottom:268.506667pt;}
.y19{bottom:269.626667pt;}
.y6c{bottom:275.066667pt;}
.y85{bottom:275.386667pt;}
.yc9{bottom:276.826667pt;}
.yb6{bottom:286.106667pt;}
.y2d{bottom:286.266667pt;}
.y18{bottom:287.226667pt;}
.y6b{bottom:292.826667pt;}
.y84{bottom:292.986667pt;}
.yc8{bottom:294.586667pt;}
.yb5{bottom:303.706667pt;}
.y2c{bottom:303.866667pt;}
.y17{bottom:304.826667pt;}
.y81{bottom:306.266667pt;}
.y6a{bottom:310.426667pt;}
.yc7{bottom:312.186667pt;}
.yb3{bottom:316.826667pt;}
.y2b{bottom:321.466667pt;}
.y16{bottom:322.426667pt;}
.y83{bottom:323.866667pt;}
.y69{bottom:328.026667pt;}
.yc6{bottom:329.786667pt;}
.yb4{bottom:334.586667pt;}
.y2a{bottom:339.066667pt;}
.y15{bottom:340.186667pt;}
.y82{bottom:341.466667pt;}
.y68{bottom:345.626667pt;}
.yc5{bottom:347.386667pt;}
.yaf{bottom:352.186667pt;}
.y29{bottom:356.706667pt;}
.y14{bottom:357.786667pt;}
.y7c{bottom:359.106667pt;}
.y67{bottom:363.266667pt;}
.yc4{bottom:365.026667pt;}
.yb1{bottom:369.826667pt;}
.y12{bottom:369.986667pt;}
.y13{bottom:375.386667pt;}
.y7f{bottom:376.706667pt;}
.y66{bottom:381.026667pt;}
.yc3{bottom:382.786667pt;}
.yad{bottom:387.426667pt;}
.y7e{bottom:394.466667pt;}
.y65{bottom:398.626667pt;}
.yc2{bottom:400.386667pt;}
.yae{bottom:405.026667pt;}
.y79{bottom:412.066667pt;}
.y64{bottom:416.226667pt;}
.yc1{bottom:417.986667pt;}
.yac{bottom:423.426667pt;}
.y7b{bottom:429.666667pt;}
.y63{bottom:433.826667pt;}
.yc0{bottom:435.586667pt;}
.y7a{bottom:447.266667pt;}
.y62{bottom:451.426667pt;}
.ybf{bottom:453.186667pt;}
.y78{bottom:465.666667pt;}
.y61{bottom:469.186667pt;}
.ybe{bottom:470.946667pt;}
.yab{bottom:476.226667pt;}
.y60{bottom:486.786667pt;}
.ybd{bottom:488.066667pt;}
.yaa{bottom:494.626667pt;}
.y5f{bottom:504.386667pt;}
.ya9{bottom:517.986667pt;}
.y5e{bottom:521.986667pt;}
.ya8{bottom:535.586667pt;}
.y5d{bottom:539.586667pt;}
.ya2{bottom:548.866667pt;}
.y5c{bottom:557.346667pt;}
.ya7{bottom:566.466667pt;}
.y5b{bottom:574.946667pt;}
.ya6{bottom:584.093333pt;}
.y5a{bottom:592.573333pt;}
.ya5{bottom:601.693333pt;}
.y59{bottom:610.173333pt;}
.y9e{bottom:619.293333pt;}
.y58{bottom:627.773333pt;}
.ya1{bottom:637.053333pt;}
.y57{bottom:645.533333pt;}
.ya0{bottom:654.653333pt;}
.y56{bottom:663.133333pt;}
.y9f{bottom:672.253333pt;}
.y55{bottom:680.733333pt;}
.y99{bottom:689.853333pt;}
.y54{bottom:698.333333pt;}
.y9d{bottom:707.453333pt;}
.y53{bottom:715.933333pt;}
.y9c{bottom:725.213333pt;}
.y52{bottom:733.693333pt;}
.y9b{bottom:742.813333pt;}
.y51{bottom:751.293333pt;}
.y10{bottom:758.493333pt;}
.y95{bottom:761.053333pt;}
.y50{bottom:768.893333pt;}
.y4f{bottom:786.493333pt;}
.yf{bottom:787.613333pt;}
.y4e{bottom:804.133333pt;}
.ye{bottom:809.893333pt;}
.y4d{bottom:821.893333pt;}
.yd{bottom:823.333333pt;}
.y4c{bottom:839.493333pt;}
.yc{bottom:842.213333pt;}
.y94{bottom:849.893333pt;}
.y4b{bottom:857.093333pt;}
.yb{bottom:863.013333pt;}
.y93{bottom:873.413333pt;}
.y4a{bottom:874.693333pt;}
.y92{bottom:891.013333pt;}
.ya{bottom:891.333333pt;}
.y49{bottom:892.293333pt;}
.y91{bottom:904.133333pt;}
.y48{bottom:910.053333pt;}
.y8{bottom:914.693333pt;}
.y90{bottom:921.733333pt;}
.y47{bottom:927.653333pt;}
.y1{bottom:930.213333pt;}
.y46{bottom:945.253333pt;}
.y8f{bottom:957.093333pt;}
.y45{bottom:962.853333pt;}
.y44{bottom:980.453333pt;}
.y8e{bottom:992.293333pt;}
.y43{bottom:998.213333pt;}
.y42{bottom:1015.813333pt;}
.y41{bottom:1040.960000pt;}
.y40{bottom:1060.160000pt;}
.h10{height:17.600000pt;}
.h15{height:17.632000pt;}
.h13{height:17.760000pt;}
.hb{height:23.200000pt;}
.ha{height:24.991875pt;}
.h1c{height:35.200000pt;}
.h1a{height:35.232000pt;}
.h19{height:35.360000pt;}
.h1d{height:35.392000pt;}
.h16{height:36.883125pt;}
.hd{height:37.479688pt;}
.h8{height:38.413438pt;}
.h21{height:38.672812pt;}
.he{height:40.021563pt;}
.h4{height:43.355000pt;}
.h18{height:43.551875pt;}
.h1b{height:43.658542pt;}
.hf{height:45.961250pt;}
.h5{height:46.281250pt;}
.h9{height:47.310625pt;}
.h11{height:52.800000pt;}
.h14{height:52.832000pt;}
.h12{height:52.960000pt;}
.h3{height:55.136250pt;}
.h7{height:60.057813pt;}
.h6{height:65.812500pt;}
.h20{height:70.432000pt;}
.h1f{height:70.560000pt;}
.h1e{height:88.192000pt;}
.h17{height:105.792000pt;}
.h2{height:144.346667pt;}
.hc{height:387.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:18.720000pt;}
.w24{width:47.072000pt;}
.w13{width:56.480000pt;}
.w1e{width:60.512000pt;}
.w1d{width:64.800000pt;}
.w1c{width:65.312000pt;}
.w1a{width:65.440000pt;}
.w27{width:67.040000pt;}
.wf{width:67.200000pt;}
.w12{width:74.272000pt;}
.w26{width:76.992000pt;}
.w11{width:80.160000pt;}
.w10{width:80.352000pt;}
.w28{width:80.832000pt;}
.w25{width:83.840000pt;}
.w14{width:84.672000pt;}
.w19{width:92.032000pt;}
.w1b{width:92.160000pt;}
.w1f{width:93.952000pt;}
.w22{width:95.552000pt;}
.w23{width:107.360000pt;}
.w15{width:117.152000pt;}
.wa{width:123.232000pt;}
.w4{width:128.512000pt;}
.wb{width:130.272000pt;}
.w8{width:136.346667pt;}
.w16{width:137.786667pt;}
.w21{width:139.226667pt;}
.wc{width:158.106667pt;}
.wd{width:163.066667pt;}
.w20{width:163.706667pt;}
.we{width:254.946667pt;}
.w18{width:257.666667pt;}
.w9{width:321.186667pt;}
.w2{width:550.693333pt;}
.w7{width:557.093333pt;}
.w6{width:693.440000pt;}
.w17{width:697.920000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.xf{left:11.200000pt;}
.x1{left:48.000000pt;}
.x6{left:50.240000pt;}
.x24{left:76.351988pt;}
.xa{left:96.031988pt;}
.x25{left:100.351988pt;}
.x5{left:121.146667pt;}
.x1d{left:141.946667pt;}
.x16{left:165.146667pt;}
.x1e{left:187.226667pt;}
.xe{left:206.106667pt;}
.x1f{left:282.786667pt;}
.x10{left:302.946667pt;}
.x17{left:305.666667pt;}
.xb{left:369.186667pt;}
.x11{left:370.146667pt;}
.x20{left:390.146667pt;}
.x18{left:397.693333pt;}
.x8{left:420.893322pt;}
.x21{left:437.213333pt;}
.x26{left:449.213322pt;}
.x12{left:450.493333pt;}
.x19{left:463.133333pt;}
.x9{left:468.893322pt;}
.x27{left:473.213322pt;}
.xc{left:492.413333pt;}
.x22{left:521.053333pt;}
.x13{left:530.653333pt;}
.x1a{left:555.293333pt;}
.x3{left:598.693333pt;}
.x14{left:604.933333pt;}
.x7{left:607.333333pt;}
.xd{left:615.653333pt;}
.x4{left:617.413333pt;}
.x1b{left:620.613333pt;}
.x15{left:661.253333pt;}
.x23{left:665.093333pt;}
.x1c{left:685.413333pt;}
}




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