
    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_a9359b723bc137260bd6037f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.207031;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_7ef6da38a16b6226f2c65189.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.024902;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_49dabae555225c964a5bf1ce.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.208008;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_25506b7a6a7c922879f63ba8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.017090;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_edfad1efa1d6c1648d349e8b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_1f36b65f7233fb03694443b9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740234;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_cd8ac33a1eed789f00caaea4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.186000px;}
.ls3{letter-spacing:30.600000px;}
.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;}
}
.ws6{word-spacing:-66.000000px;}
.ws2{word-spacing:-28.644000px;}
.ws7{word-spacing:-23.166000px;}
.ws0{word-spacing:-21.060000px;}
.ws4{word-spacing:-18.954000px;}
.ws3{word-spacing:-18.414000px;}
.ws1{word-spacing:-12.636000px;}
.ws8{word-spacing:-0.060000px;}
.ws5{word-spacing:0.000000px;}
._25{margin-left:-2.286000px;}
._4{margin-left:-1.014000px;}
._1{width:1.848000px;}
._5{width:3.084000px;}
._0{width:4.116000px;}
._b{width:5.298000px;}
._2{width:6.996000px;}
._3{width:8.286000px;}
._6{width:9.360000px;}
._7{width:10.398000px;}
._13{width:11.814000px;}
._d{width:12.870000px;}
._e{width:13.980000px;}
._c{width:14.994000px;}
._9{width:16.434000px;}
._8{width:17.622000px;}
._a{width:18.810000px;}
._11{width:19.890000px;}
._10{width:21.120000px;}
._20{width:22.140000px;}
._14{width:24.816000px;}
._15{width:26.028000px;}
._16{width:27.516000px;}
._12{width:28.932000px;}
._18{width:30.888000px;}
._26{width:33.498000px;}
._17{width:39.312000px;}
._24{width:40.404000px;}
._1f{width:42.456000px;}
._1e{width:44.376000px;}
._1c{width:45.474000px;}
._1d{width:46.536000px;}
._1a{width:49.236000px;}
._1b{width:50.424000px;}
._f{width:58.032000px;}
._19{width:59.382000px;}
._21{width:62.034000px;}
._22{width:108.372000px;}
._23{width:109.560000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:88.650000px;}
.y2e{bottom:105.000000px;}
.y5e{bottom:131.700000px;}
.y8d{bottom:135.150000px;}
.y2d{bottom:138.600000px;}
.yb7{bottom:139.950000px;}
.y127{bottom:147.300000px;}
.yea{bottom:149.550000px;}
.y10c{bottom:149.700000px;}
.y5d{bottom:151.800000px;}
.yc3{bottom:153.300000px;}
.y8c{bottom:155.250000px;}
.y2c{bottom:158.550000px;}
.yb6{bottom:159.900000px;}
.y126{bottom:167.250000px;}
.ye9{bottom:169.650000px;}
.y10b{bottom:169.800000px;}
.y5c{bottom:171.750000px;}
.yc2{bottom:173.400000px;}
.y8b{bottom:175.200000px;}
.y2b{bottom:178.650000px;}
.yb5{bottom:180.000000px;}
.y125{bottom:187.350000px;}
.ye8{bottom:189.600000px;}
.y10a{bottom:189.750000px;}
.y5b{bottom:191.850000px;}
.yc1{bottom:193.350000px;}
.y8a{bottom:195.300000px;}
.y2a{bottom:198.600000px;}
.yb4{bottom:199.950000px;}
.y124{bottom:207.300000px;}
.ye7{bottom:209.700000px;}
.y109{bottom:209.850000px;}
.y5a{bottom:211.800000px;}
.yc0{bottom:213.450000px;}
.y89{bottom:215.250000px;}
.y29{bottom:218.700000px;}
.yb3{bottom:220.050000px;}
.ye6{bottom:229.650000px;}
.y108{bottom:229.800000px;}
.y59{bottom:231.900000px;}
.ybf{bottom:233.400000px;}
.y88{bottom:235.350000px;}
.y28{bottom:238.650000px;}
.yb2{bottom:240.000000px;}
.y123{bottom:247.350000px;}
.ye5{bottom:249.750000px;}
.y107{bottom:249.900000px;}
.y58{bottom:251.850000px;}
.ybe{bottom:253.500000px;}
.y87{bottom:255.300000px;}
.y27{bottom:258.750000px;}
.yb1{bottom:260.100000px;}
.y122{bottom:267.450000px;}
.ye4{bottom:269.700000px;}
.y106{bottom:269.850000px;}
.y57{bottom:271.950000px;}
.ybd{bottom:273.450000px;}
.y86{bottom:275.400000px;}
.y26{bottom:278.700000px;}
.yb0{bottom:280.050000px;}
.ye3{bottom:289.800000px;}
.y105{bottom:289.950000px;}
.y56{bottom:291.900000px;}
.ybc{bottom:293.550000px;}
.y85{bottom:295.350000px;}
.y25{bottom:298.800000px;}
.yaf{bottom:300.450000px;}
.y121{bottom:307.500000px;}
.ye2{bottom:309.750000px;}
.y104{bottom:309.900000px;}
.y55{bottom:312.000000px;}
.ybb{bottom:313.500000px;}
.y84{bottom:315.450000px;}
.y24{bottom:318.750000px;}
.y120{bottom:327.450000px;}
.ye1{bottom:329.850000px;}
.y103{bottom:330.000000px;}
.y54{bottom:331.950000px;}
.yba{bottom:333.600000px;}
.y83{bottom:335.400000px;}
.y23{bottom:338.850000px;}
.yae{bottom:342.000000px;}
.y11f{bottom:347.550000px;}
.ye0{bottom:349.800000px;}
.y102{bottom:349.950000px;}
.y53{bottom:352.050000px;}
.yb9{bottom:353.550000px;}
.y82{bottom:355.500000px;}
.y22{bottom:358.800000px;}
.yad{bottom:362.100000px;}
.ydf{bottom:369.900000px;}
.y101{bottom:370.050000px;}
.y52{bottom:372.000000px;}
.yb8{bottom:373.950000px;}
.y81{bottom:375.450000px;}
.y21{bottom:378.900000px;}
.yac{bottom:382.050000px;}
.y11e{bottom:387.600000px;}
.yde{bottom:389.850000px;}
.y100{bottom:390.000000px;}
.y51{bottom:392.100000px;}
.y80{bottom:395.550000px;}
.y20{bottom:398.850000px;}
.yab{bottom:402.150000px;}
.y11d{bottom:407.550000px;}
.ydd{bottom:409.950000px;}
.yff{bottom:410.100000px;}
.y50{bottom:412.050000px;}
.y7f{bottom:415.500000px;}
.y1f{bottom:418.950000px;}
.yaa{bottom:422.100000px;}
.y11c{bottom:427.650000px;}
.ydc{bottom:429.900000px;}
.yfe{bottom:430.050000px;}
.y4f{bottom:432.150000px;}
.y7e{bottom:435.600000px;}
.y1e{bottom:438.900000px;}
.ya9{bottom:442.200000px;}
.y11b{bottom:447.600000px;}
.ydb{bottom:450.000000px;}
.yfd{bottom:450.150000px;}
.y4e{bottom:452.100000px;}
.y7d{bottom:455.550000px;}
.y1d{bottom:459.000000px;}
.ya8{bottom:462.150000px;}
.y11a{bottom:467.700000px;}
.yda{bottom:469.950000px;}
.yfc{bottom:470.100000px;}
.y4d{bottom:472.200000px;}
.y7c{bottom:475.650000px;}
.y1c{bottom:478.950000px;}
.ya7{bottom:482.250000px;}
.y119{bottom:487.650000px;}
.yd9{bottom:490.050000px;}
.yfb{bottom:490.200000px;}
.y4c{bottom:492.150000px;}
.y7b{bottom:495.600000px;}
.y1b{bottom:499.050000px;}
.ya6{bottom:502.200000px;}
.y118{bottom:507.750000px;}
.yd8{bottom:510.000000px;}
.yfa{bottom:510.150000px;}
.y4b{bottom:512.250000px;}
.y7a{bottom:515.700000px;}
.y1a{bottom:519.000000px;}
.ya5{bottom:522.300000px;}
.y117{bottom:527.700000px;}
.yd7{bottom:530.100000px;}
.yf9{bottom:530.250000px;}
.y4a{bottom:532.200000px;}
.y79{bottom:535.650000px;}
.y19{bottom:539.100000px;}
.ya4{bottom:542.250000px;}
.y116{bottom:547.800000px;}
.yd6{bottom:550.050000px;}
.yf8{bottom:550.200000px;}
.y49{bottom:552.300000px;}
.y78{bottom:555.750000px;}
.y18{bottom:559.050000px;}
.ya3{bottom:562.350000px;}
.yd5{bottom:570.150000px;}
.yf7{bottom:570.300000px;}
.y48{bottom:572.250000px;}
.y77{bottom:575.700000px;}
.ya2{bottom:582.300000px;}
.y17{bottom:584.550000px;}
.y115{bottom:587.850000px;}
.yd4{bottom:590.100000px;}
.yf6{bottom:590.250000px;}
.y47{bottom:592.350000px;}
.y76{bottom:595.800000px;}
.ya1{bottom:602.400000px;}
.y114{bottom:607.800000px;}
.yf5{bottom:610.350000px;}
.yd3{bottom:610.500000px;}
.y46{bottom:612.300000px;}
.y75{bottom:615.750000px;}
.ya0{bottom:622.350000px;}
.y16{bottom:627.150000px;}
.y113{bottom:627.900000px;}
.yf4{bottom:630.300000px;}
.y45{bottom:632.400000px;}
.y74{bottom:635.850000px;}
.y9f{bottom:642.450000px;}
.yf3{bottom:650.400000px;}
.y44{bottom:652.350000px;}
.yd2{bottom:654.000000px;}
.y73{bottom:655.800000px;}
.y9e{bottom:662.400000px;}
.y15{bottom:667.200000px;}
.y112{bottom:667.950000px;}
.yf2{bottom:670.350000px;}
.y43{bottom:672.450000px;}
.yd1{bottom:673.950000px;}
.y72{bottom:675.900000px;}
.y9d{bottom:682.500000px;}
.y14{bottom:687.150000px;}
.y111{bottom:687.900000px;}
.yf1{bottom:690.450000px;}
.y42{bottom:692.400000px;}
.yd0{bottom:694.050000px;}
.y71{bottom:695.850000px;}
.y9c{bottom:702.450000px;}
.y13{bottom:707.250000px;}
.yf0{bottom:710.400000px;}
.y41{bottom:712.500000px;}
.ycf{bottom:714.000000px;}
.y70{bottom:715.950000px;}
.y9b{bottom:722.550000px;}
.y12{bottom:727.200000px;}
.y110{bottom:727.950000px;}
.yef{bottom:730.500000px;}
.y40{bottom:732.450000px;}
.yce{bottom:734.100000px;}
.y6f{bottom:735.900000px;}
.y9a{bottom:742.500000px;}
.y11{bottom:747.300000px;}
.y10f{bottom:748.050000px;}
.yee{bottom:750.450000px;}
.y3f{bottom:752.550000px;}
.ycd{bottom:754.050000px;}
.y6e{bottom:756.000000px;}
.y99{bottom:762.600000px;}
.y10{bottom:767.250000px;}
.y10e{bottom:768.000000px;}
.yed{bottom:770.550000px;}
.y3e{bottom:772.500000px;}
.ycc{bottom:774.150000px;}
.y6d{bottom:775.950000px;}
.y98{bottom:782.550000px;}
.yf{bottom:787.350000px;}
.yec{bottom:790.500000px;}
.y3d{bottom:792.600000px;}
.y10d{bottom:793.500000px;}
.ycb{bottom:794.100000px;}
.y6c{bottom:796.050000px;}
.y97{bottom:802.650000px;}
.ye{bottom:807.300000px;}
.yeb{bottom:811.500000px;}
.y3c{bottom:812.550000px;}
.yca{bottom:814.200000px;}
.y6b{bottom:816.000000px;}
.y96{bottom:822.600000px;}
.yd{bottom:827.400000px;}
.y3b{bottom:832.650000px;}
.yc9{bottom:834.150000px;}
.y6a{bottom:836.100000px;}
.y95{bottom:842.700000px;}
.y3a{bottom:852.600000px;}
.yc{bottom:852.750000px;}
.yc8{bottom:854.250000px;}
.y69{bottom:856.050000px;}
.y94{bottom:862.650000px;}
.y39{bottom:872.700000px;}
.yc7{bottom:874.200000px;}
.y68{bottom:876.150000px;}
.y93{bottom:882.750000px;}
.y38{bottom:892.650000px;}
.yc6{bottom:894.300000px;}
.y67{bottom:896.100000px;}
.y92{bottom:902.700000px;}
.y37{bottom:912.750000px;}
.yc5{bottom:914.250000px;}
.y66{bottom:916.200000px;}
.y91{bottom:922.800000px;}
.y36{bottom:932.700000px;}
.yc4{bottom:934.650000px;}
.yb{bottom:935.400000px;}
.y65{bottom:936.150000px;}
.y90{bottom:942.750000px;}
.y35{bottom:952.800000px;}
.ya{bottom:955.500000px;}
.y64{bottom:956.250000px;}
.y8f{bottom:968.250000px;}
.y34{bottom:972.750000px;}
.y9{bottom:975.450000px;}
.y63{bottom:976.200000px;}
.y33{bottom:992.850000px;}
.y8e{bottom:993.750000px;}
.y8{bottom:995.550000px;}
.y62{bottom:996.300000px;}
.y61{bottom:1016.250000px;}
.y32{bottom:1018.200000px;}
.y60{bottom:1036.350000px;}
.y7{bottom:1041.600000px;}
.y5f{bottom:1056.300000px;}
.y6{bottom:1070.850000px;}
.y31{bottom:1076.400000px;}
.y30{bottom:1096.350000px;}
.y5{bottom:1131.900000px;}
.y4{bottom:1142.850000px;}
.y3{bottom:1153.800000px;}
.y2{bottom:1173.600000px;}
.y1{bottom:1193.400000px;}
.h3{height:29.460938px;}
.h5{height:54.011719px;}
.h7{height:54.026367px;}
.h1{height:60.029297px;}
.h2{height:66.032227px;}
.h8{height:72.035156px;}
.h6{height:84.041016px;}
.h4{height:96.046875px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xa{left:106.500000px;}
.xb{left:127.800000px;}
.x5{left:131.250000px;}
.xd{left:133.350000px;}
.x8{left:139.800000px;}
.x7{left:176.550000px;}
.x2{left:199.500000px;}
.x3{left:205.950000px;}
.x6{left:209.100000px;}
.x1{left:214.350000px;}
.x4{left:232.650000px;}
.x9{left:377.850000px;}
.xc{left:731.100000px;}
.xe{left:746.700000px;}
.xf{left:766.350000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.165333pt;}
.ls3{letter-spacing:27.200000pt;}
.ws6{word-spacing:-58.666667pt;}
.ws2{word-spacing:-25.461333pt;}
.ws7{word-spacing:-20.592000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws4{word-spacing:-16.848000pt;}
.ws3{word-spacing:-16.368000pt;}
.ws1{word-spacing:-11.232000pt;}
.ws8{word-spacing:-0.053333pt;}
.ws5{word-spacing:0.000000pt;}
._25{margin-left:-2.032000pt;}
._4{margin-left:-0.901333pt;}
._1{width:1.642667pt;}
._5{width:2.741333pt;}
._0{width:3.658667pt;}
._b{width:4.709333pt;}
._2{width:6.218667pt;}
._3{width:7.365333pt;}
._6{width:8.320000pt;}
._7{width:9.242667pt;}
._13{width:10.501333pt;}
._d{width:11.440000pt;}
._e{width:12.426667pt;}
._c{width:13.328000pt;}
._9{width:14.608000pt;}
._8{width:15.664000pt;}
._a{width:16.720000pt;}
._11{width:17.680000pt;}
._10{width:18.773333pt;}
._20{width:19.680000pt;}
._14{width:22.058667pt;}
._15{width:23.136000pt;}
._16{width:24.458667pt;}
._12{width:25.717333pt;}
._18{width:27.456000pt;}
._26{width:29.776000pt;}
._17{width:34.944000pt;}
._24{width:35.914667pt;}
._1f{width:37.738667pt;}
._1e{width:39.445333pt;}
._1c{width:40.421333pt;}
._1d{width:41.365333pt;}
._1a{width:43.765333pt;}
._1b{width:44.821333pt;}
._f{width:51.584000pt;}
._19{width:52.784000pt;}
._21{width:55.141333pt;}
._22{width:96.330667pt;}
._23{width:97.386667pt;}
.fs2{font-size:32.000000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:78.800000pt;}
.y2e{bottom:93.333333pt;}
.y5e{bottom:117.066667pt;}
.y8d{bottom:120.133333pt;}
.y2d{bottom:123.200000pt;}
.yb7{bottom:124.400000pt;}
.y127{bottom:130.933333pt;}
.yea{bottom:132.933333pt;}
.y10c{bottom:133.066667pt;}
.y5d{bottom:134.933333pt;}
.yc3{bottom:136.266667pt;}
.y8c{bottom:138.000000pt;}
.y2c{bottom:140.933333pt;}
.yb6{bottom:142.133333pt;}
.y126{bottom:148.666667pt;}
.ye9{bottom:150.800000pt;}
.y10b{bottom:150.933333pt;}
.y5c{bottom:152.666667pt;}
.yc2{bottom:154.133333pt;}
.y8b{bottom:155.733333pt;}
.y2b{bottom:158.800000pt;}
.yb5{bottom:160.000000pt;}
.y125{bottom:166.533333pt;}
.ye8{bottom:168.533333pt;}
.y10a{bottom:168.666667pt;}
.y5b{bottom:170.533333pt;}
.yc1{bottom:171.866667pt;}
.y8a{bottom:173.600000pt;}
.y2a{bottom:176.533333pt;}
.yb4{bottom:177.733333pt;}
.y124{bottom:184.266667pt;}
.ye7{bottom:186.400000pt;}
.y109{bottom:186.533333pt;}
.y5a{bottom:188.266667pt;}
.yc0{bottom:189.733333pt;}
.y89{bottom:191.333333pt;}
.y29{bottom:194.400000pt;}
.yb3{bottom:195.600000pt;}
.ye6{bottom:204.133333pt;}
.y108{bottom:204.266667pt;}
.y59{bottom:206.133333pt;}
.ybf{bottom:207.466667pt;}
.y88{bottom:209.200000pt;}
.y28{bottom:212.133333pt;}
.yb2{bottom:213.333333pt;}
.y123{bottom:219.866667pt;}
.ye5{bottom:222.000000pt;}
.y107{bottom:222.133333pt;}
.y58{bottom:223.866667pt;}
.ybe{bottom:225.333333pt;}
.y87{bottom:226.933333pt;}
.y27{bottom:230.000000pt;}
.yb1{bottom:231.200000pt;}
.y122{bottom:237.733333pt;}
.ye4{bottom:239.733333pt;}
.y106{bottom:239.866667pt;}
.y57{bottom:241.733333pt;}
.ybd{bottom:243.066667pt;}
.y86{bottom:244.800000pt;}
.y26{bottom:247.733333pt;}
.yb0{bottom:248.933333pt;}
.ye3{bottom:257.600000pt;}
.y105{bottom:257.733333pt;}
.y56{bottom:259.466667pt;}
.ybc{bottom:260.933333pt;}
.y85{bottom:262.533333pt;}
.y25{bottom:265.600000pt;}
.yaf{bottom:267.066667pt;}
.y121{bottom:273.333333pt;}
.ye2{bottom:275.333333pt;}
.y104{bottom:275.466667pt;}
.y55{bottom:277.333333pt;}
.ybb{bottom:278.666667pt;}
.y84{bottom:280.400000pt;}
.y24{bottom:283.333333pt;}
.y120{bottom:291.066667pt;}
.ye1{bottom:293.200000pt;}
.y103{bottom:293.333333pt;}
.y54{bottom:295.066667pt;}
.yba{bottom:296.533333pt;}
.y83{bottom:298.133333pt;}
.y23{bottom:301.200000pt;}
.yae{bottom:304.000000pt;}
.y11f{bottom:308.933333pt;}
.ye0{bottom:310.933333pt;}
.y102{bottom:311.066667pt;}
.y53{bottom:312.933333pt;}
.yb9{bottom:314.266667pt;}
.y82{bottom:316.000000pt;}
.y22{bottom:318.933333pt;}
.yad{bottom:321.866667pt;}
.ydf{bottom:328.800000pt;}
.y101{bottom:328.933333pt;}
.y52{bottom:330.666667pt;}
.yb8{bottom:332.400000pt;}
.y81{bottom:333.733333pt;}
.y21{bottom:336.800000pt;}
.yac{bottom:339.600000pt;}
.y11e{bottom:344.533333pt;}
.yde{bottom:346.533333pt;}
.y100{bottom:346.666667pt;}
.y51{bottom:348.533333pt;}
.y80{bottom:351.600000pt;}
.y20{bottom:354.533333pt;}
.yab{bottom:357.466667pt;}
.y11d{bottom:362.266667pt;}
.ydd{bottom:364.400000pt;}
.yff{bottom:364.533333pt;}
.y50{bottom:366.266667pt;}
.y7f{bottom:369.333333pt;}
.y1f{bottom:372.400000pt;}
.yaa{bottom:375.200000pt;}
.y11c{bottom:380.133333pt;}
.ydc{bottom:382.133333pt;}
.yfe{bottom:382.266667pt;}
.y4f{bottom:384.133333pt;}
.y7e{bottom:387.200000pt;}
.y1e{bottom:390.133333pt;}
.ya9{bottom:393.066667pt;}
.y11b{bottom:397.866667pt;}
.ydb{bottom:400.000000pt;}
.yfd{bottom:400.133333pt;}
.y4e{bottom:401.866667pt;}
.y7d{bottom:404.933333pt;}
.y1d{bottom:408.000000pt;}
.ya8{bottom:410.800000pt;}
.y11a{bottom:415.733333pt;}
.yda{bottom:417.733333pt;}
.yfc{bottom:417.866667pt;}
.y4d{bottom:419.733333pt;}
.y7c{bottom:422.800000pt;}
.y1c{bottom:425.733333pt;}
.ya7{bottom:428.666667pt;}
.y119{bottom:433.466667pt;}
.yd9{bottom:435.600000pt;}
.yfb{bottom:435.733333pt;}
.y4c{bottom:437.466667pt;}
.y7b{bottom:440.533333pt;}
.y1b{bottom:443.600000pt;}
.ya6{bottom:446.400000pt;}
.y118{bottom:451.333333pt;}
.yd8{bottom:453.333333pt;}
.yfa{bottom:453.466667pt;}
.y4b{bottom:455.333333pt;}
.y7a{bottom:458.400000pt;}
.y1a{bottom:461.333333pt;}
.ya5{bottom:464.266667pt;}
.y117{bottom:469.066667pt;}
.yd7{bottom:471.200000pt;}
.yf9{bottom:471.333333pt;}
.y4a{bottom:473.066667pt;}
.y79{bottom:476.133333pt;}
.y19{bottom:479.200000pt;}
.ya4{bottom:482.000000pt;}
.y116{bottom:486.933333pt;}
.yd6{bottom:488.933333pt;}
.yf8{bottom:489.066667pt;}
.y49{bottom:490.933333pt;}
.y78{bottom:494.000000pt;}
.y18{bottom:496.933333pt;}
.ya3{bottom:499.866667pt;}
.yd5{bottom:506.800000pt;}
.yf7{bottom:506.933333pt;}
.y48{bottom:508.666667pt;}
.y77{bottom:511.733333pt;}
.ya2{bottom:517.600000pt;}
.y17{bottom:519.600000pt;}
.y115{bottom:522.533333pt;}
.yd4{bottom:524.533333pt;}
.yf6{bottom:524.666667pt;}
.y47{bottom:526.533333pt;}
.y76{bottom:529.600000pt;}
.ya1{bottom:535.466667pt;}
.y114{bottom:540.266667pt;}
.yf5{bottom:542.533333pt;}
.yd3{bottom:542.666667pt;}
.y46{bottom:544.266667pt;}
.y75{bottom:547.333333pt;}
.ya0{bottom:553.200000pt;}
.y16{bottom:557.466667pt;}
.y113{bottom:558.133333pt;}
.yf4{bottom:560.266667pt;}
.y45{bottom:562.133333pt;}
.y74{bottom:565.200000pt;}
.y9f{bottom:571.066667pt;}
.yf3{bottom:578.133333pt;}
.y44{bottom:579.866667pt;}
.yd2{bottom:581.333333pt;}
.y73{bottom:582.933333pt;}
.y9e{bottom:588.800000pt;}
.y15{bottom:593.066667pt;}
.y112{bottom:593.733333pt;}
.yf2{bottom:595.866667pt;}
.y43{bottom:597.733333pt;}
.yd1{bottom:599.066667pt;}
.y72{bottom:600.800000pt;}
.y9d{bottom:606.666667pt;}
.y14{bottom:610.800000pt;}
.y111{bottom:611.466667pt;}
.yf1{bottom:613.733333pt;}
.y42{bottom:615.466667pt;}
.yd0{bottom:616.933333pt;}
.y71{bottom:618.533333pt;}
.y9c{bottom:624.400000pt;}
.y13{bottom:628.666667pt;}
.yf0{bottom:631.466667pt;}
.y41{bottom:633.333333pt;}
.ycf{bottom:634.666667pt;}
.y70{bottom:636.400000pt;}
.y9b{bottom:642.266667pt;}
.y12{bottom:646.400000pt;}
.y110{bottom:647.066667pt;}
.yef{bottom:649.333333pt;}
.y40{bottom:651.066667pt;}
.yce{bottom:652.533333pt;}
.y6f{bottom:654.133333pt;}
.y9a{bottom:660.000000pt;}
.y11{bottom:664.266667pt;}
.y10f{bottom:664.933333pt;}
.yee{bottom:667.066667pt;}
.y3f{bottom:668.933333pt;}
.ycd{bottom:670.266667pt;}
.y6e{bottom:672.000000pt;}
.y99{bottom:677.866667pt;}
.y10{bottom:682.000000pt;}
.y10e{bottom:682.666667pt;}
.yed{bottom:684.933333pt;}
.y3e{bottom:686.666667pt;}
.ycc{bottom:688.133333pt;}
.y6d{bottom:689.733333pt;}
.y98{bottom:695.600000pt;}
.yf{bottom:699.866667pt;}
.yec{bottom:702.666667pt;}
.y3d{bottom:704.533333pt;}
.y10d{bottom:705.333333pt;}
.ycb{bottom:705.866667pt;}
.y6c{bottom:707.600000pt;}
.y97{bottom:713.466667pt;}
.ye{bottom:717.600000pt;}
.yeb{bottom:721.333333pt;}
.y3c{bottom:722.266667pt;}
.yca{bottom:723.733333pt;}
.y6b{bottom:725.333333pt;}
.y96{bottom:731.200000pt;}
.yd{bottom:735.466667pt;}
.y3b{bottom:740.133333pt;}
.yc9{bottom:741.466667pt;}
.y6a{bottom:743.200000pt;}
.y95{bottom:749.066667pt;}
.y3a{bottom:757.866667pt;}
.yc{bottom:758.000000pt;}
.yc8{bottom:759.333333pt;}
.y69{bottom:760.933333pt;}
.y94{bottom:766.800000pt;}
.y39{bottom:775.733333pt;}
.yc7{bottom:777.066667pt;}
.y68{bottom:778.800000pt;}
.y93{bottom:784.666667pt;}
.y38{bottom:793.466667pt;}
.yc6{bottom:794.933333pt;}
.y67{bottom:796.533333pt;}
.y92{bottom:802.400000pt;}
.y37{bottom:811.333333pt;}
.yc5{bottom:812.666667pt;}
.y66{bottom:814.400000pt;}
.y91{bottom:820.266667pt;}
.y36{bottom:829.066667pt;}
.yc4{bottom:830.800000pt;}
.yb{bottom:831.466667pt;}
.y65{bottom:832.133333pt;}
.y90{bottom:838.000000pt;}
.y35{bottom:846.933333pt;}
.ya{bottom:849.333333pt;}
.y64{bottom:850.000000pt;}
.y8f{bottom:860.666667pt;}
.y34{bottom:864.666667pt;}
.y9{bottom:867.066667pt;}
.y63{bottom:867.733333pt;}
.y33{bottom:882.533333pt;}
.y8e{bottom:883.333333pt;}
.y8{bottom:884.933333pt;}
.y62{bottom:885.600000pt;}
.y61{bottom:903.333333pt;}
.y32{bottom:905.066667pt;}
.y60{bottom:921.200000pt;}
.y7{bottom:925.866667pt;}
.y5f{bottom:938.933333pt;}
.y6{bottom:951.866667pt;}
.y31{bottom:956.800000pt;}
.y30{bottom:974.533333pt;}
.y5{bottom:1006.133333pt;}
.y4{bottom:1015.866667pt;}
.y3{bottom:1025.600000pt;}
.y2{bottom:1043.200000pt;}
.y1{bottom:1060.800000pt;}
.h3{height:26.187500pt;}
.h5{height:48.010417pt;}
.h7{height:48.023438pt;}
.h1{height:53.359375pt;}
.h2{height:58.695312pt;}
.h8{height:64.031250pt;}
.h6{height:74.703125pt;}
.h4{height:85.375000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xa{left:94.666667pt;}
.xb{left:113.600000pt;}
.x5{left:116.666667pt;}
.xd{left:118.533333pt;}
.x8{left:124.266667pt;}
.x7{left:156.933333pt;}
.x2{left:177.333333pt;}
.x3{left:183.066667pt;}
.x6{left:185.866667pt;}
.x1{left:190.533333pt;}
.x4{left:206.800000pt;}
.x9{left:335.866667pt;}
.xc{left:649.866667pt;}
.xe{left:663.733333pt;}
.xf{left:681.200000pt;}
}




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