
    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_a457043c5366ec41d5469fa8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.074219;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_0f503e48209b6357ddb8d6e0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_db342848928c115990eb9204.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.867676;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_50578548b40fca5f1e1f3059.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_5312a57c2f112fbab73824cd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.919922;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_b2893c49bd00f172b046f298.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;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:-27.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.600000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:3.600000px;}
.ls1{letter-spacing:4.800000px;}
.ls3{letter-spacing:21.000000px;}
.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:-18.000000px;}
.ws8{word-spacing:-15.750000px;}
.ws7{word-spacing:-10.500000px;}
.ws2{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:3.024000px;}
.ws3{word-spacing:36.000000px;}
.ws9{word-spacing:317.568000px;}
.wsb{word-spacing:365.280000px;}
.wsa{word-spacing:469.104000px;}
.wsc{word-spacing:669.000000px;}
.ws6{word-spacing:2061.360000px;}
.ws4{word-spacing:2244.888000px;}
._20{margin-left:-8.820000px;}
._24{margin-left:-7.560000px;}
._25{margin-left:-5.688000px;}
._1{margin-left:-3.960000px;}
._0{margin-left:-2.520000px;}
._1e{margin-left:-1.008000px;}
._15{width:1.224000px;}
._1c{width:2.448000px;}
._1b{width:3.528000px;}
._1d{width:4.896000px;}
._1a{width:6.336000px;}
._19{width:7.776000px;}
._17{width:9.216000px;}
._18{width:10.368000px;}
._1f{width:12.096000px;}
._21{width:13.680000px;}
._26{width:14.832000px;}
._28{width:15.840000px;}
._27{width:16.992000px;}
._23{width:19.512000px;}
._22{width:20.808000px;}
._2b{width:21.816000px;}
._2a{width:23.256000px;}
._29{width:25.560000px;}
._33{width:36.888000px;}
._3{width:54.000000px;}
._2e{width:82.896000px;}
._2c{width:418.992000px;}
._2d{width:451.272000px;}
._32{width:546.576000px;}
._35{width:576.984000px;}
._34{width:597.000000px;}
._31{width:614.784000px;}
._30{width:651.000000px;}
._2f{width:687.000000px;}
._e{width:1617.696000px;}
._5{width:1633.968000px;}
._6{width:1651.752000px;}
._9{width:1737.360000px;}
._8{width:1783.224000px;}
._13{width:1795.032000px;}
._12{width:1819.224000px;}
._c{width:1829.376000px;}
._a{width:1835.136000px;}
._14{width:1855.656000px;}
._b{width:1857.168000px;}
._16{width:1899.072000px;}
._d{width:1949.112000px;}
._10{width:1971.144000px;}
._f{width:1983.456000px;}
._7{width:1994.832000px;}
._4{width:2157.120000px;}
._11{width:2254.752000px;}
._2{width:2302.704000px;}
.fc1{color:rgb(129,129,129);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:42.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.y25{bottom:88.950000px;}
.y4b{bottom:94.200000px;}
.y34{bottom:130.350000px;}
.y2d{bottom:130.800000px;}
.y1e{bottom:136.350000px;}
.yd3{bottom:138.000000px;}
.ydd{bottom:140.550000px;}
.y8d{bottom:145.800000px;}
.yd8{bottom:147.750000px;}
.y37{bottom:148.500000px;}
.y33{bottom:148.950000px;}
.yc0{bottom:149.700000px;}
.y6e{bottom:150.450000px;}
.y2c{bottom:151.050000px;}
.yce{bottom:151.200000px;}
.y31{bottom:151.500000px;}
.y39{bottom:152.100000px;}
.y38{bottom:152.550000px;}
.y93{bottom:153.450000px;}
.y76{bottom:155.550000px;}
.y36{bottom:166.650000px;}
.y30{bottom:167.400000px;}
.y2b{bottom:169.200000px;}
.y3a{bottom:169.650000px;}
.y84{bottom:171.750000px;}
.y3d{bottom:178.350000px;}
.y6d{bottom:181.500000px;}
.y92{bottom:184.500000px;}
.y35{bottom:185.250000px;}
.y75{bottom:186.600000px;}
.y2a{bottom:187.350000px;}
.y32{bottom:187.800000px;}
.yd2{bottom:189.750000px;}
.ydc{bottom:192.300000px;}
.yb3{bottom:192.450000px;}
.y1d{bottom:198.450000px;}
.yd7{bottom:199.500000px;}
.y83{bottom:202.800000px;}
.ycd{bottom:202.950000px;}
.y29{bottom:205.950000px;}
.ybf{bottom:211.800000px;}
.y6c{bottom:212.550000px;}
.y91{bottom:215.550000px;}
.y61{bottom:217.650000px;}
.y3c{bottom:226.650000px;}
.y2f{bottom:229.500000px;}
.yd1{bottom:231.150000px;}
.ydb{bottom:233.700000px;}
.y82{bottom:233.850000px;}
.yd6{bottom:240.900000px;}
.yb2{bottom:242.100000px;}
.ybe{bottom:242.850000px;}
.y6b{bottom:243.600000px;}
.ycc{bottom:244.350000px;}
.y90{bottom:246.600000px;}
.y60{bottom:248.700000px;}
.y1c{bottom:260.550000px;}
.y81{bottom:264.900000px;}
.yb1{bottom:271.200000px;}
.yd0{bottom:272.550000px;}
.y6a{bottom:274.650000px;}
.yda{bottom:275.100000px;}
.y8f{bottom:277.650000px;}
.y74{bottom:279.750000px;}
.yd5{bottom:282.300000px;}
.ybd{bottom:284.400000px;}
.ycb{bottom:285.750000px;}
.y24{bottom:291.600000px;}
.y80{bottom:295.950000px;}
.yb0{bottom:300.150000px;}
.y8e{bottom:308.700000px;}
.y73{bottom:310.800000px;}
.ybc{bottom:315.450000px;}
.y70{bottom:319.800000px;}
.y1b{bottom:322.650000px;}
.ycf{bottom:324.300000px;}
.yd9{bottom:326.850000px;}
.yaf{bottom:329.250000px;}
.y5f{bottom:331.800000px;}
.yd4{bottom:334.050000px;}
.yca{bottom:337.500000px;}
.y72{bottom:341.850000px;}
.y23{bottom:353.700000px;}
.y7f{bottom:358.050000px;}
.yae{bottom:358.200000px;}
.y5e{bottom:362.850000px;}
.y71{bottom:372.900000px;}
.y1a{bottom:384.750000px;}
.yad{bottom:387.300000px;}
.ybb{bottom:388.050000px;}
.y7e{bottom:389.100000px;}
.y5d{bottom:393.900000px;}
.yc9{bottom:394.800000px;}
.y8c{bottom:399.750000px;}
.y8{bottom:405.450000px;}
.y22{bottom:415.800000px;}
.yba{bottom:419.100000px;}
.y7d{bottom:420.150000px;}
.y5c{bottom:424.950000px;}
.yc8{bottom:425.850000px;}
.y7{bottom:426.150000px;}
.y49{bottom:440.850000px;}
.y19{bottom:446.850000px;}
.y7c{bottom:451.200000px;}
.yac{bottom:453.600000px;}
.y5b{bottom:456.000000px;}
.yc7{bottom:456.900000px;}
.y4a{bottom:460.200000px;}
.y48{bottom:461.550000px;}
.y6{bottom:467.550000px;}
.y28{bottom:477.900000px;}
.yb9{bottom:481.200000px;}
.y7b{bottom:482.250000px;}
.y5a{bottom:487.050000px;}
.yc6{bottom:487.950000px;}
.y5{bottom:488.250000px;}
.y18{bottom:508.950000px;}
.y8a{bottom:511.500000px;}
.y7a{bottom:513.300000px;}
.y59{bottom:518.100000px;}
.yc5{bottom:519.000000px;}
.y4{bottom:529.650000px;}
.yb8{bottom:539.550000px;}
.y17{bottom:540.000000px;}
.yab{bottom:540.450000px;}
.y89{bottom:542.550000px;}
.y79{bottom:544.350000px;}
.y58{bottom:549.150000px;}
.yc4{bottom:550.050000px;}
.y9a{bottom:550.350000px;}
.y3{bottom:560.700000px;}
.yaa{bottom:569.400000px;}
.yb7{bottom:570.600000px;}
.y16{bottom:571.050000px;}
.y88{bottom:573.600000px;}
.y78{bottom:575.400000px;}
.y57{bottom:580.200000px;}
.yc3{bottom:581.100000px;}
.y99{bottom:581.400000px;}
.ya9{bottom:598.350000px;}
.y21{bottom:602.100000px;}
.y87{bottom:604.650000px;}
.y77{bottom:606.450000px;}
.y56{bottom:611.250000px;}
.yc2{bottom:612.150000px;}
.y98{bottom:612.450000px;}
.y8b{bottom:614.850000px;}
.ya8{bottom:627.300000px;}
.yb6{bottom:632.700000px;}
.y15{bottom:633.150000px;}
.y86{bottom:635.700000px;}
.y97{bottom:643.500000px;}
.y69{bottom:647.250000px;}
.y3b{bottom:650.250000px;}
.y55{bottom:652.800000px;}
.y20{bottom:664.200000px;}
.y85{bottom:666.750000px;}
.yc1{bottom:674.250000px;}
.y96{bottom:674.550000px;}
.y68{bottom:678.300000px;}
.ya7{bottom:687.300000px;}
.y14{bottom:695.250000px;}
.y95{bottom:705.600000px;}
.y67{bottom:709.350000px;}
.yb5{bottom:715.800000px;}
.ya6{bottom:716.250000px;}
.y13{bottom:726.300000px;}
.y54{bottom:735.900000px;}
.y94{bottom:736.650000px;}
.y66{bottom:740.400000px;}
.ya5{bottom:745.200000px;}
.yb4{bottom:746.850000px;}
.y47{bottom:756.900000px;}
.y12{bottom:757.350000px;}
.y65{bottom:771.450000px;}
.ya4{bottom:774.150000px;}
.y2{bottom:787.500000px;}
.y46{bottom:787.950000px;}
.y11{bottom:788.400000px;}
.y64{bottom:802.500000px;}
.ya3{bottom:803.100000px;}
.y45{bottom:819.000000px;}
.y10{bottom:819.450000px;}
.ya2{bottom:832.050000px;}
.y63{bottom:833.550000px;}
.y44{bottom:850.050000px;}
.yf{bottom:850.500000px;}
.y53{bottom:860.550000px;}
.ya1{bottom:861.000000px;}
.y62{bottom:864.600000px;}
.y43{bottom:881.100000px;}
.ye{bottom:881.550000px;}
.ya0{bottom:889.950000px;}
.y52{bottom:891.600000px;}
.y6f{bottom:895.800000px;}
.yd{bottom:912.600000px;}
.y9f{bottom:918.900000px;}
.y51{bottom:922.650000px;}
.y27{bottom:943.650000px;}
.y9e{bottom:947.850000px;}
.y50{bottom:953.700000px;}
.y42{bottom:964.200000px;}
.yc{bottom:974.700000px;}
.y9d{bottom:976.800000px;}
.y4f{bottom:984.750000px;}
.y41{bottom:995.250000px;}
.y1f{bottom:1005.750000px;}
.y4e{bottom:1015.800000px;}
.y40{bottom:1026.300000px;}
.y9c{bottom:1034.700000px;}
.yb{bottom:1036.800000px;}
.y4d{bottom:1046.850000px;}
.y3f{bottom:1057.350000px;}
.y9b{bottom:1063.650000px;}
.y26{bottom:1067.850000px;}
.y4c{bottom:1077.900000px;}
.y3e{bottom:1088.400000px;}
.ya{bottom:1098.900000px;}
.y2e{bottom:1129.950000px;}
.y9{bottom:1161.000000px;}
.h6{height:49.289062px;}
.hc{height:50.695312px;}
.h8{height:54.079102px;}
.hb{height:55.432617px;}
.h4{height:61.769531px;}
.h5{height:61.804688px;}
.h3{height:63.175781px;}
.h9{height:63.351562px;}
.h7{height:64.452539px;}
.ha{height:64.555078px;}
.h2{height:103.007812px;}
.h1{height:1262.850000px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xf{left:54.600000px;}
.x13{left:81.300000px;}
.x8{left:85.200000px;}
.x17{left:89.400000px;}
.x1c{left:91.350000px;}
.x1b{left:93.000000px;}
.x1a{left:101.550000px;}
.x9{left:117.600000px;}
.xe{left:129.450000px;}
.xc{left:139.200000px;}
.xa{left:144.600000px;}
.x19{left:201.300000px;}
.x11{left:212.400000px;}
.x14{left:238.650000px;}
.x6{left:319.050000px;}
.x16{left:328.050000px;}
.x15{left:331.350000px;}
.x3{left:349.650000px;}
.x1{left:352.950000px;}
.x2{left:369.300000px;}
.x5{left:391.950000px;}
.x4{left:393.300000px;}
.x7{left:408.150000px;}
.x12{left:429.600000px;}
.x18{left:450.750000px;}
.x10{left:479.850000px;}
.xd{left:790.200000px;}
.xb{left:799.200000px;}
@media print{
.v2{vertical-align:-24.533333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.533333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:3.200000pt;}
.ls1{letter-spacing:4.266667pt;}
.ls3{letter-spacing:18.666667pt;}
.ws0{word-spacing:-16.000000pt;}
.ws8{word-spacing:-14.000000pt;}
.ws7{word-spacing:-9.333333pt;}
.ws2{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:2.688000pt;}
.ws3{word-spacing:32.000000pt;}
.ws9{word-spacing:282.282667pt;}
.wsb{word-spacing:324.693333pt;}
.wsa{word-spacing:416.981333pt;}
.wsc{word-spacing:594.666667pt;}
.ws6{word-spacing:1832.320000pt;}
.ws4{word-spacing:1995.456000pt;}
._20{margin-left:-7.840000pt;}
._24{margin-left:-6.720000pt;}
._25{margin-left:-5.056000pt;}
._1{margin-left:-3.520000pt;}
._0{margin-left:-2.240000pt;}
._1e{margin-left:-0.896000pt;}
._15{width:1.088000pt;}
._1c{width:2.176000pt;}
._1b{width:3.136000pt;}
._1d{width:4.352000pt;}
._1a{width:5.632000pt;}
._19{width:6.912000pt;}
._17{width:8.192000pt;}
._18{width:9.216000pt;}
._1f{width:10.752000pt;}
._21{width:12.160000pt;}
._26{width:13.184000pt;}
._28{width:14.080000pt;}
._27{width:15.104000pt;}
._23{width:17.344000pt;}
._22{width:18.496000pt;}
._2b{width:19.392000pt;}
._2a{width:20.672000pt;}
._29{width:22.720000pt;}
._33{width:32.789333pt;}
._3{width:48.000000pt;}
._2e{width:73.685333pt;}
._2c{width:372.437333pt;}
._2d{width:401.130667pt;}
._32{width:485.845333pt;}
._35{width:512.874667pt;}
._34{width:530.666667pt;}
._31{width:546.474667pt;}
._30{width:578.666667pt;}
._2f{width:610.666667pt;}
._e{width:1437.952000pt;}
._5{width:1452.416000pt;}
._6{width:1468.224000pt;}
._9{width:1544.320000pt;}
._8{width:1585.088000pt;}
._13{width:1595.584000pt;}
._12{width:1617.088000pt;}
._c{width:1626.112000pt;}
._a{width:1631.232000pt;}
._14{width:1649.472000pt;}
._b{width:1650.816000pt;}
._16{width:1688.064000pt;}
._d{width:1732.544000pt;}
._10{width:1752.128000pt;}
._f{width:1763.072000pt;}
._7{width:1773.184000pt;}
._4{width:1917.440000pt;}
._11{width:2004.224000pt;}
._2{width:2046.848000pt;}
.fs2{font-size:37.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.y25{bottom:79.066667pt;}
.y4b{bottom:83.733333pt;}
.y34{bottom:115.866667pt;}
.y2d{bottom:116.266667pt;}
.y1e{bottom:121.200000pt;}
.yd3{bottom:122.666667pt;}
.ydd{bottom:124.933333pt;}
.y8d{bottom:129.600000pt;}
.yd8{bottom:131.333333pt;}
.y37{bottom:132.000000pt;}
.y33{bottom:132.400000pt;}
.yc0{bottom:133.066667pt;}
.y6e{bottom:133.733333pt;}
.y2c{bottom:134.266667pt;}
.yce{bottom:134.400000pt;}
.y31{bottom:134.666667pt;}
.y39{bottom:135.200000pt;}
.y38{bottom:135.600000pt;}
.y93{bottom:136.400000pt;}
.y76{bottom:138.266667pt;}
.y36{bottom:148.133333pt;}
.y30{bottom:148.800000pt;}
.y2b{bottom:150.400000pt;}
.y3a{bottom:150.800000pt;}
.y84{bottom:152.666667pt;}
.y3d{bottom:158.533333pt;}
.y6d{bottom:161.333333pt;}
.y92{bottom:164.000000pt;}
.y35{bottom:164.666667pt;}
.y75{bottom:165.866667pt;}
.y2a{bottom:166.533333pt;}
.y32{bottom:166.933333pt;}
.yd2{bottom:168.666667pt;}
.ydc{bottom:170.933333pt;}
.yb3{bottom:171.066667pt;}
.y1d{bottom:176.400000pt;}
.yd7{bottom:177.333333pt;}
.y83{bottom:180.266667pt;}
.ycd{bottom:180.400000pt;}
.y29{bottom:183.066667pt;}
.ybf{bottom:188.266667pt;}
.y6c{bottom:188.933333pt;}
.y91{bottom:191.600000pt;}
.y61{bottom:193.466667pt;}
.y3c{bottom:201.466667pt;}
.y2f{bottom:204.000000pt;}
.yd1{bottom:205.466667pt;}
.ydb{bottom:207.733333pt;}
.y82{bottom:207.866667pt;}
.yd6{bottom:214.133333pt;}
.yb2{bottom:215.200000pt;}
.ybe{bottom:215.866667pt;}
.y6b{bottom:216.533333pt;}
.ycc{bottom:217.200000pt;}
.y90{bottom:219.200000pt;}
.y60{bottom:221.066667pt;}
.y1c{bottom:231.600000pt;}
.y81{bottom:235.466667pt;}
.yb1{bottom:241.066667pt;}
.yd0{bottom:242.266667pt;}
.y6a{bottom:244.133333pt;}
.yda{bottom:244.533333pt;}
.y8f{bottom:246.800000pt;}
.y74{bottom:248.666667pt;}
.yd5{bottom:250.933333pt;}
.ybd{bottom:252.800000pt;}
.ycb{bottom:254.000000pt;}
.y24{bottom:259.200000pt;}
.y80{bottom:263.066667pt;}
.yb0{bottom:266.800000pt;}
.y8e{bottom:274.400000pt;}
.y73{bottom:276.266667pt;}
.ybc{bottom:280.400000pt;}
.y70{bottom:284.266667pt;}
.y1b{bottom:286.800000pt;}
.ycf{bottom:288.266667pt;}
.yd9{bottom:290.533333pt;}
.yaf{bottom:292.666667pt;}
.y5f{bottom:294.933333pt;}
.yd4{bottom:296.933333pt;}
.yca{bottom:300.000000pt;}
.y72{bottom:303.866667pt;}
.y23{bottom:314.400000pt;}
.y7f{bottom:318.266667pt;}
.yae{bottom:318.400000pt;}
.y5e{bottom:322.533333pt;}
.y71{bottom:331.466667pt;}
.y1a{bottom:342.000000pt;}
.yad{bottom:344.266667pt;}
.ybb{bottom:344.933333pt;}
.y7e{bottom:345.866667pt;}
.y5d{bottom:350.133333pt;}
.yc9{bottom:350.933333pt;}
.y8c{bottom:355.333333pt;}
.y8{bottom:360.400000pt;}
.y22{bottom:369.600000pt;}
.yba{bottom:372.533333pt;}
.y7d{bottom:373.466667pt;}
.y5c{bottom:377.733333pt;}
.yc8{bottom:378.533333pt;}
.y7{bottom:378.800000pt;}
.y49{bottom:391.866667pt;}
.y19{bottom:397.200000pt;}
.y7c{bottom:401.066667pt;}
.yac{bottom:403.200000pt;}
.y5b{bottom:405.333333pt;}
.yc7{bottom:406.133333pt;}
.y4a{bottom:409.066667pt;}
.y48{bottom:410.266667pt;}
.y6{bottom:415.600000pt;}
.y28{bottom:424.800000pt;}
.yb9{bottom:427.733333pt;}
.y7b{bottom:428.666667pt;}
.y5a{bottom:432.933333pt;}
.yc6{bottom:433.733333pt;}
.y5{bottom:434.000000pt;}
.y18{bottom:452.400000pt;}
.y8a{bottom:454.666667pt;}
.y7a{bottom:456.266667pt;}
.y59{bottom:460.533333pt;}
.yc5{bottom:461.333333pt;}
.y4{bottom:470.800000pt;}
.yb8{bottom:479.600000pt;}
.y17{bottom:480.000000pt;}
.yab{bottom:480.400000pt;}
.y89{bottom:482.266667pt;}
.y79{bottom:483.866667pt;}
.y58{bottom:488.133333pt;}
.yc4{bottom:488.933333pt;}
.y9a{bottom:489.200000pt;}
.y3{bottom:498.400000pt;}
.yaa{bottom:506.133333pt;}
.yb7{bottom:507.200000pt;}
.y16{bottom:507.600000pt;}
.y88{bottom:509.866667pt;}
.y78{bottom:511.466667pt;}
.y57{bottom:515.733333pt;}
.yc3{bottom:516.533333pt;}
.y99{bottom:516.800000pt;}
.ya9{bottom:531.866667pt;}
.y21{bottom:535.200000pt;}
.y87{bottom:537.466667pt;}
.y77{bottom:539.066667pt;}
.y56{bottom:543.333333pt;}
.yc2{bottom:544.133333pt;}
.y98{bottom:544.400000pt;}
.y8b{bottom:546.533333pt;}
.ya8{bottom:557.600000pt;}
.yb6{bottom:562.400000pt;}
.y15{bottom:562.800000pt;}
.y86{bottom:565.066667pt;}
.y97{bottom:572.000000pt;}
.y69{bottom:575.333333pt;}
.y3b{bottom:578.000000pt;}
.y55{bottom:580.266667pt;}
.y20{bottom:590.400000pt;}
.y85{bottom:592.666667pt;}
.yc1{bottom:599.333333pt;}
.y96{bottom:599.600000pt;}
.y68{bottom:602.933333pt;}
.ya7{bottom:610.933333pt;}
.y14{bottom:618.000000pt;}
.y95{bottom:627.200000pt;}
.y67{bottom:630.533333pt;}
.yb5{bottom:636.266667pt;}
.ya6{bottom:636.666667pt;}
.y13{bottom:645.600000pt;}
.y54{bottom:654.133333pt;}
.y94{bottom:654.800000pt;}
.y66{bottom:658.133333pt;}
.ya5{bottom:662.400000pt;}
.yb4{bottom:663.866667pt;}
.y47{bottom:672.800000pt;}
.y12{bottom:673.200000pt;}
.y65{bottom:685.733333pt;}
.ya4{bottom:688.133333pt;}
.y2{bottom:700.000000pt;}
.y46{bottom:700.400000pt;}
.y11{bottom:700.800000pt;}
.y64{bottom:713.333333pt;}
.ya3{bottom:713.866667pt;}
.y45{bottom:728.000000pt;}
.y10{bottom:728.400000pt;}
.ya2{bottom:739.600000pt;}
.y63{bottom:740.933333pt;}
.y44{bottom:755.600000pt;}
.yf{bottom:756.000000pt;}
.y53{bottom:764.933333pt;}
.ya1{bottom:765.333333pt;}
.y62{bottom:768.533333pt;}
.y43{bottom:783.200000pt;}
.ye{bottom:783.600000pt;}
.ya0{bottom:791.066667pt;}
.y52{bottom:792.533333pt;}
.y6f{bottom:796.266667pt;}
.yd{bottom:811.200000pt;}
.y9f{bottom:816.800000pt;}
.y51{bottom:820.133333pt;}
.y27{bottom:838.800000pt;}
.y9e{bottom:842.533333pt;}
.y50{bottom:847.733333pt;}
.y42{bottom:857.066667pt;}
.yc{bottom:866.400000pt;}
.y9d{bottom:868.266667pt;}
.y4f{bottom:875.333333pt;}
.y41{bottom:884.666667pt;}
.y1f{bottom:894.000000pt;}
.y4e{bottom:902.933333pt;}
.y40{bottom:912.266667pt;}
.y9c{bottom:919.733333pt;}
.yb{bottom:921.600000pt;}
.y4d{bottom:930.533333pt;}
.y3f{bottom:939.866667pt;}
.y9b{bottom:945.466667pt;}
.y26{bottom:949.200000pt;}
.y4c{bottom:958.133333pt;}
.y3e{bottom:967.466667pt;}
.ya{bottom:976.800000pt;}
.y2e{bottom:1004.400000pt;}
.y9{bottom:1032.000000pt;}
.h6{height:43.812500pt;}
.hc{height:45.062500pt;}
.h8{height:48.070312pt;}
.hb{height:49.273438pt;}
.h4{height:54.906250pt;}
.h5{height:54.937500pt;}
.h3{height:56.156250pt;}
.h9{height:56.312500pt;}
.h7{height:57.291146pt;}
.ha{height:57.382292pt;}
.h2{height:91.562500pt;}
.h1{height:1122.533333pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xf{left:48.533333pt;}
.x13{left:72.266667pt;}
.x8{left:75.733333pt;}
.x17{left:79.466667pt;}
.x1c{left:81.200000pt;}
.x1b{left:82.666667pt;}
.x1a{left:90.266667pt;}
.x9{left:104.533333pt;}
.xe{left:115.066667pt;}
.xc{left:123.733333pt;}
.xa{left:128.533333pt;}
.x19{left:178.933333pt;}
.x11{left:188.800000pt;}
.x14{left:212.133333pt;}
.x6{left:283.600000pt;}
.x16{left:291.600000pt;}
.x15{left:294.533333pt;}
.x3{left:310.800000pt;}
.x1{left:313.733333pt;}
.x2{left:328.266667pt;}
.x5{left:348.400000pt;}
.x4{left:349.600000pt;}
.x7{left:362.800000pt;}
.x12{left:381.866667pt;}
.x18{left:400.666667pt;}
.x10{left:426.533333pt;}
.xd{left:702.400000pt;}
.xb{left:710.400000pt;}
}




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