
    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_1678acb2e3600a0ae0263fca.woff')format("woff");}.ff1{font-family:ff1;line-height:0.976562;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_736ed3d3aa7f3894dd88a470.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_9cbe262d9804c5758bf52010.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f20c2f50fa751b561a6d5d66.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fbf12e0e863b41e270118da6.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c4e134fefbaf3d3c706ad413.woff')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_17ba62e766cb17e69700487f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff9{font-family:ff9;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);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls7{letter-spacing:-0.600000px;}
.lsb{letter-spacing:-0.480000px;}
.ls6{letter-spacing:-0.384000px;}
.lsa{letter-spacing:-0.048000px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.060000px;}
.lsc{letter-spacing:0.120000px;}
.lse{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.240000px;}
.ls3{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.384000px;}
.ls1{letter-spacing:0.600000px;}
.lsf{letter-spacing:15.720000px;}
.lsd{letter-spacing:45.720000px;}
.ls8{letter-spacing:63.720000px;}
.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;}
}
.ws8{word-spacing:-60.000000px;}
.ws2{word-spacing:-48.000000px;}
.ws1{word-spacing:-18.384000px;}
.ws3{word-spacing:-17.616000px;}
.ws0{word-spacing:-15.204000px;}
.ws7{word-spacing:-15.120000px;}
.ws9{word-spacing:-15.000000px;}
.ws6{word-spacing:-14.100000px;}
.ws4{word-spacing:-9.900000px;}
.ws5{word-spacing:0.000000px;}
._b{margin-left:-2.148000px;}
._0{margin-left:-1.056000px;}
._1{width:1.302000px;}
._7{width:2.538000px;}
._2{width:3.990000px;}
._f{width:5.820000px;}
._d{width:6.960000px;}
._8{width:8.340000px;}
._a{width:9.528000px;}
._9{width:11.220000px;}
._c{width:12.228000px;}
._10{width:13.890000px;}
._e{width:16.380000px;}
._12{width:17.778000px;}
._11{width:18.780000px;}
._6{width:20.506800px;}
._5{width:21.688800px;}
._3{width:336.180000px;}
._4{width:1200.420000px;}
.fc7{color:transparent;}
.fc4{color:rgb(34,122,203);}
.fc6{color:rgb(31,73,125);}
.fc2{color:rgb(192,0,0);}
.fc5{color:rgb(35,31,32);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(127,127,127);}
.fsa{font-size:9.600000px;}
.fs6{font-size:12.000000px;}
.fs4{font-size:18.000000px;}
.fs7{font-size:30.000000px;}
.fs9{font-size:39.600000px;}
.fs2{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs8{font-size:75.600000px;}
.y44{bottom:-7.500000px;}
.y0{bottom:0.000000px;}
.yc8{bottom:3.285000px;}
.ycd{bottom:3.300000px;}
.yc4{bottom:3.585000px;}
.ycb{bottom:3.600000px;}
.y10{bottom:3.915000px;}
.yf{bottom:5.115000px;}
.y3{bottom:5.400000px;}
.y43{bottom:10.200000px;}
.y6{bottom:12.337500px;}
.ycf{bottom:20.400000px;}
.yc7{bottom:20.700000px;}
.yca{bottom:20.715000px;}
.y42{bottom:29.700000px;}
.yef{bottom:37.800000px;}
.yec{bottom:38.100000px;}
.y41{bottom:44.400000px;}
.y5{bottom:46.800000px;}
.yee{bottom:55.200000px;}
.y2{bottom:57.037500px;}
.y40{bottom:61.500000px;}
.y45{bottom:74.137500px;}
.y3f{bottom:78.900000px;}
.y4{bottom:81.337500px;}
.y3e{bottom:96.000000px;}
.ybd{bottom:113.137500px;}
.y3d{bottom:113.445000px;}
.y80{bottom:117.337500px;}
.y36{bottom:117.637500px;}
.ybc{bottom:130.537500px;}
.y3c{bottom:130.545000px;}
.y7f{bottom:134.437500px;}
.y35{bottom:134.737500px;}
.ybb{bottom:147.637500px;}
.y3b{bottom:147.945000px;}
.y34{bottom:152.130000px;}
.y7e{bottom:152.730000px;}
.y3a{bottom:165.045000px;}
.yba{bottom:165.330000px;}
.y33{bottom:169.230000px;}
.y7d{bottom:171.045000px;}
.ye9{bottom:171.930000px;}
.y39{bottom:182.445000px;}
.y11b{bottom:184.275000px;}
.yb9{bottom:184.875000px;}
.y32{bottom:186.675000px;}
.ye8{bottom:189.375000px;}
.y7c{bottom:189.675000px;}
.yb8{bottom:199.275000px;}
.y38{bottom:200.145000px;}
.y11a{bottom:201.675000px;}
.y31{bottom:203.775000px;}
.y7b{bottom:206.775000px;}
.yb7{bottom:216.675000px;}
.ye7{bottom:218.475000px;}
.y119{bottom:218.775000px;}
.y30{bottom:221.175000px;}
.y7a{bottom:225.075000px;}
.yb6{bottom:233.775000px;}
.ye6{bottom:235.875000px;}
.y118{bottom:236.175000px;}
.y2f{bottom:238.275000px;}
.y79{bottom:242.175000px;}
.yb5{bottom:251.175000px;}
.ye5{bottom:253.275000px;}
.y2e{bottom:254.775000px;}
.y78{bottom:261.075000px;}
.yb4{bottom:268.275000px;}
.y2d{bottom:269.475000px;}
.ye4{bottom:269.775000px;}
.y117{bottom:270.675000px;}
.y77{bottom:280.575000px;}
.ye3{bottom:284.175000px;}
.yb3{bottom:285.675000px;}
.y2c{bottom:286.575000px;}
.y116{bottom:287.775000px;}
.y76{bottom:295.275000px;}
.ye2{bottom:301.575000px;}
.yb2{bottom:303.375000px;}
.y2b{bottom:303.975000px;}
.y115{bottom:305.175000px;}
.y75{bottom:312.375000px;}
.ye1{bottom:318.675000px;}
.y2a{bottom:321.075000px;}
.y114{bottom:322.275000px;}
.yb1{bottom:322.875000px;}
.y74{bottom:329.775000px;}
.ye0{bottom:336.075000px;}
.yb0{bottom:337.275000px;}
.y29{bottom:338.475000px;}
.y113{bottom:339.675000px;}
.y73{bottom:346.920000px;}
.ydf{bottom:352.620000px;}
.yaf{bottom:354.705000px;}
.y28{bottom:355.020000px;}
.y112{bottom:356.820000px;}
.y72{bottom:364.320000px;}
.yde{bottom:367.005000px;}
.y27{bottom:369.420000px;}
.yae{bottom:371.820000px;}
.y111{bottom:374.205000px;}
.y71{bottom:382.020000px;}
.ydd{bottom:384.405000px;}
.y26{bottom:386.505000px;}
.yad{bottom:388.320000px;}
.y110{bottom:391.320000px;}
.y70{bottom:401.505000px;}
.yac{bottom:403.005000px;}
.y25{bottom:403.905000px;}
.y10f{bottom:408.705000px;}
.y6f{bottom:415.920000px;}
.ydc{bottom:418.905000px;}
.yab{bottom:420.120000px;}
.y24{bottom:421.005000px;}
.y10e{bottom:425.820000px;}
.y6e{bottom:433.320000px;}
.ydb{bottom:435.420000px;}
.yaa{bottom:437.505000px;}
.y23{bottom:438.420000px;}
.y10d{bottom:443.220000px;}
.yda{bottom:449.820000px;}
.y6d{bottom:451.005000px;}
.ya9{bottom:454.620000px;}
.y22{bottom:455.505000px;}
.y10c{bottom:460.320000px;}
.yd9{bottom:467.205000px;}
.y6c{bottom:470.505000px;}
.ya8{bottom:471.120000px;}
.y21{bottom:472.905000px;}
.y10b{bottom:477.705000px;}
.yd8{bottom:484.320000px;}
.y6b{bottom:484.905000px;}
.ya7{bottom:485.820000px;}
.y20{bottom:490.620000px;}
.y10a{bottom:494.820000px;}
.yd7{bottom:500.820000px;}
.y6a{bottom:502.320000px;}
.ya6{bottom:502.920000px;}
.y1f{bottom:511.320000px;}
.y109{bottom:512.220000px;}
.yd6{bottom:515.550000px;}
.y69{bottom:519.450000px;}
.ya5{bottom:520.350000px;}
.y108{bottom:529.350000px;}
.yd5{bottom:532.650000px;}
.y68{bottom:536.850000px;}
.y107{bottom:546.750000px;}
.yd4{bottom:550.350000px;}
.ya4{bottom:551.250000px;}
.y67{bottom:553.950000px;}
.y106{bottom:563.850000px;}
.ya3{bottom:568.650000px;}
.yd3{bottom:570.750000px;}
.y66{bottom:571.650000px;}
.y37{bottom:578.550000px;}
.y105{bottom:581.250000px;}
.ya2{bottom:585.750000px;}
.yd2{bottom:587.850000px;}
.y65{bottom:591.150000px;}
.y104{bottom:598.350000px;}
.ya1{bottom:602.250000px;}
.yd1{bottom:605.250000px;}
.y64{bottom:605.850000px;}
.y103{bottom:615.750000px;}
.ya0{bottom:616.950000px;}
.yd0{bottom:619.650000px;}
.y63{bottom:622.950000px;}
.y102{bottom:632.850000px;}
.y9f{bottom:634.050000px;}
.y62{bottom:640.350000px;}
.y101{bottom:650.250000px;}
.y9e{bottom:651.450000px;}
.yce{bottom:655.050000px;}
.y61{bottom:657.450000px;}
.y100{bottom:667.350000px;}
.y9d{bottom:668.550000px;}
.y60{bottom:675.150000px;}
.yff{bottom:684.780000px;}
.y9c{bottom:685.080000px;}
.ycc{bottom:690.195000px;}
.y5f{bottom:695.880000px;}
.y9b{bottom:699.780000px;}
.yfe{bottom:701.880000px;}
.y5e{bottom:715.380000px;}
.y9a{bottom:716.880000px;}
.yfd{bottom:719.280000px;}
.yc9{bottom:725.280000px;}
.y5d{bottom:730.095000px;}
.y99{bottom:734.295000px;}
.yfc{bottom:736.380000px;}
.y5c{bottom:747.195000px;}
.y98{bottom:751.395000px;}
.yfb{bottom:754.080000px;}
.yc6{bottom:760.695000px;}
.y97{bottom:767.895000px;}
.y5b{bottom:771.795000px;}
.y96{bottom:782.580000px;}
.y5a{bottom:789.195000px;}
.yc5{bottom:795.795000px;}
.y95{bottom:799.695000px;}
.y59{bottom:806.580000px;}
.yc3{bottom:813.795000px;}
.y94{bottom:817.080000px;}
.y58{bottom:823.695000px;}
.yfa{bottom:823.995000px;}
.y1e{bottom:826.695000px;}
.y93{bottom:834.195000px;}
.y57{bottom:841.080000px;}
.y1d{bottom:844.695000px;}
.yc2{bottom:845.295000px;}
.y92{bottom:851.625000px;}
.yf9{bottom:852.825000px;}
.y56{bottom:857.625000px;}
.y1c{bottom:861.825000px;}
.yc1{bottom:863.325000px;}
.y91{bottom:868.725000px;}
.yf8{bottom:870.525000px;}
.y55{bottom:872.025000px;}
.y1b{bottom:879.225000px;}
.yc0{bottom:883.425000px;}
.y90{bottom:886.125000px;}
.yf7{bottom:887.625000px;}
.y54{bottom:889.425000px;}
.y1a{bottom:896.325000px;}
.yed{bottom:898.125000px;}
.y8f{bottom:902.625000px;}
.y53{bottom:906.525000px;}
.y19{bottom:911.025000px;}
.yf6{bottom:916.725000px;}
.y8e{bottom:917.025000px;}
.y18{bottom:918.225000px;}
.y52{bottom:923.925000px;}
.y17{bottom:929.025000px;}
.yf5{bottom:934.125000px;}
.y8d{bottom:934.425000px;}
.y51{bottom:940.425000px;}
.y16{bottom:946.125000px;}
.y8c{bottom:951.525000px;}
.y50{bottom:954.825000px;}
.y15{bottom:963.525000px;}
.yeb{bottom:967.725000px;}
.yf4{bottom:968.625000px;}
.y8b{bottom:968.925000px;}
.y4f{bottom:972.225000px;}
.y14{bottom:975.225000px;}
.y8a{bottom:986.025000px;}
.y4e{bottom:989.325000px;}
.y13{bottom:993.225000px;}
.y89{bottom:1002.525000px;}
.yf3{bottom:1003.725000px;}
.y4d{bottom:1006.725000px;}
.y12{bottom:1014.825000px;}
.y88{bottom:1017.255000px;}
.yea{bottom:1020.270000px;}
.yf2{bottom:1023.255000px;}
.y4c{bottom:1023.870000px;}
.y11{bottom:1033.755000px;}
.y87{bottom:1034.370000px;}
.yf1{bottom:1037.670000px;}
.ye{bottom:1040.955000px;}
.y4b{bottom:1041.255000px;}
.y86{bottom:1051.755000px;}
.yf0{bottom:1055.070000px;}
.ybf{bottom:1055.370000px;}
.y4a{bottom:1057.755000px;}
.yd{bottom:1062.570000px;}
.yc{bottom:1068.255000px;}
.y85{bottom:1069.455000px;}
.y49{bottom:1072.170000px;}
.ybe{bottom:1074.870000px;}
.yb{bottom:1083.570000px;}
.y84{bottom:1088.955000px;}
.y48{bottom:1089.570000px;}
.ya{bottom:1097.955000px;}
.y83{bottom:1103.370000px;}
.y47{bottom:1106.670000px;}
.y9{bottom:1115.670000px;}
.y82{bottom:1121.670000px;}
.y46{bottom:1124.070000px;}
.y8{bottom:1133.670000px;}
.y81{bottom:1139.955000px;}
.y7{bottom:1141.170000px;}
.y1{bottom:1196.400000px;}
.h10{height:6.703125px;}
.ha{height:8.378906px;}
.h11{height:8.466797px;}
.h6{height:12.700195px;}
.h1b{height:17.400000px;}
.hc{height:20.947266px;}
.hb{height:21.000000px;}
.hf{height:27.650391px;}
.h16{height:33.515625px;}
.h8{height:33.867188px;}
.h1d{height:34.237500px;}
.h1c{height:34.500000px;}
.h19{height:34.664062px;}
.h4{height:36.000000px;}
.h9{height:37.705078px;}
.h1{height:41.080078px;}
.h15{height:41.894531px;}
.h5{height:42.333984px;}
.h1a{height:43.681641px;}
.h13{height:45.644531px;}
.he{height:49.250391px;}
.h7{height:50.800781px;}
.h1e{height:51.937500px;}
.h18{height:51.996094px;}
.hd{height:53.340820px;}
.h12{height:54.773438px;}
.h14{height:59.677734px;}
.h2{height:65.645508px;}
.h1f{height:69.000000px;}
.h3{height:97.200000px;}
.h17{height:216.945000px;}
.h0{height:1263.000000px;}
.w4{width:72.300000px;}
.wb{width:101.437500px;}
.w3{width:108.000000px;}
.w8{width:154.530000px;}
.wa{width:250.275000px;}
.w6{width:253.875000px;}
.w9{width:257.475000px;}
.wd{width:294.720000px;}
.wc{width:298.275000px;}
.w5{width:483.450000px;}
.w7{width:732.225000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:7.800000px;}
.x3{left:10.799998px;}
.x10{left:16.200000px;}
.x4{left:22.200000px;}
.x5{left:27.600000px;}
.xb{left:78.037500px;}
.x2{left:81.037487px;}
.xf{left:84.937500px;}
.x12{left:108.037487px;}
.xe{left:132.330000px;}
.xa{left:153.629987px;}
.x16{left:183.675000px;}
.x14{left:236.475000px;}
.xc{left:241.582500px;}
.x6{left:388.619987px;}
.x8{left:457.349987px;}
.x17{left:482.850000px;}
.x15{left:494.550000px;}
.xd{left:561.495000px;}
.x11{left:590.594987px;}
.x9{left:607.094987px;}
.x7{left:696.524987px;}
.x1{left:812.369987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls7{letter-spacing:-0.533333pt;}
.lsb{letter-spacing:-0.426667pt;}
.ls6{letter-spacing:-0.341333pt;}
.lsa{letter-spacing:-0.042667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.053333pt;}
.lsc{letter-spacing:0.106667pt;}
.lse{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.213333pt;}
.ls3{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.341333pt;}
.ls1{letter-spacing:0.533333pt;}
.lsf{letter-spacing:13.973333pt;}
.lsd{letter-spacing:40.640000pt;}
.ls8{letter-spacing:56.640000pt;}
.ws8{word-spacing:-53.333333pt;}
.ws2{word-spacing:-42.666667pt;}
.ws1{word-spacing:-16.341333pt;}
.ws3{word-spacing:-15.658667pt;}
.ws0{word-spacing:-13.514667pt;}
.ws7{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.333333pt;}
.ws6{word-spacing:-12.533333pt;}
.ws4{word-spacing:-8.800000pt;}
.ws5{word-spacing:0.000000pt;}
._b{margin-left:-1.909333pt;}
._0{margin-left:-0.938667pt;}
._1{width:1.157333pt;}
._7{width:2.256000pt;}
._2{width:3.546667pt;}
._f{width:5.173333pt;}
._d{width:6.186667pt;}
._8{width:7.413333pt;}
._a{width:8.469333pt;}
._9{width:9.973333pt;}
._c{width:10.869333pt;}
._10{width:12.346667pt;}
._e{width:14.560000pt;}
._12{width:15.802667pt;}
._11{width:16.693333pt;}
._6{width:18.228267pt;}
._5{width:19.278933pt;}
._3{width:298.826667pt;}
._4{width:1067.040000pt;}
.fsa{font-size:8.533333pt;}
.fs6{font-size:10.666667pt;}
.fs4{font-size:16.000000pt;}
.fs7{font-size:26.666667pt;}
.fs9{font-size:35.200000pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs8{font-size:67.200000pt;}
.y44{bottom:-6.666667pt;}
.y0{bottom:0.000000pt;}
.yc8{bottom:2.920000pt;}
.ycd{bottom:2.933333pt;}
.yc4{bottom:3.186667pt;}
.ycb{bottom:3.200000pt;}
.y10{bottom:3.480000pt;}
.yf{bottom:4.546667pt;}
.y3{bottom:4.800000pt;}
.y43{bottom:9.066667pt;}
.y6{bottom:10.966667pt;}
.ycf{bottom:18.133333pt;}
.yc7{bottom:18.400000pt;}
.yca{bottom:18.413333pt;}
.y42{bottom:26.400000pt;}
.yef{bottom:33.600000pt;}
.yec{bottom:33.866667pt;}
.y41{bottom:39.466667pt;}
.y5{bottom:41.600000pt;}
.yee{bottom:49.066667pt;}
.y2{bottom:50.700000pt;}
.y40{bottom:54.666667pt;}
.y45{bottom:65.900000pt;}
.y3f{bottom:70.133333pt;}
.y4{bottom:72.300000pt;}
.y3e{bottom:85.333333pt;}
.ybd{bottom:100.566667pt;}
.y3d{bottom:100.840000pt;}
.y80{bottom:104.300000pt;}
.y36{bottom:104.566667pt;}
.ybc{bottom:116.033333pt;}
.y3c{bottom:116.040000pt;}
.y7f{bottom:119.500000pt;}
.y35{bottom:119.766667pt;}
.ybb{bottom:131.233333pt;}
.y3b{bottom:131.506667pt;}
.y34{bottom:135.226667pt;}
.y7e{bottom:135.760000pt;}
.y3a{bottom:146.706667pt;}
.yba{bottom:146.960000pt;}
.y33{bottom:150.426667pt;}
.y7d{bottom:152.040000pt;}
.ye9{bottom:152.826667pt;}
.y39{bottom:162.173333pt;}
.y11b{bottom:163.800000pt;}
.yb9{bottom:164.333333pt;}
.y32{bottom:165.933333pt;}
.ye8{bottom:168.333333pt;}
.y7c{bottom:168.600000pt;}
.yb8{bottom:177.133333pt;}
.y38{bottom:177.906667pt;}
.y11a{bottom:179.266667pt;}
.y31{bottom:181.133333pt;}
.y7b{bottom:183.800000pt;}
.yb7{bottom:192.600000pt;}
.ye7{bottom:194.200000pt;}
.y119{bottom:194.466667pt;}
.y30{bottom:196.600000pt;}
.y7a{bottom:200.066667pt;}
.yb6{bottom:207.800000pt;}
.ye6{bottom:209.666667pt;}
.y118{bottom:209.933333pt;}
.y2f{bottom:211.800000pt;}
.y79{bottom:215.266667pt;}
.yb5{bottom:223.266667pt;}
.ye5{bottom:225.133333pt;}
.y2e{bottom:226.466667pt;}
.y78{bottom:232.066667pt;}
.yb4{bottom:238.466667pt;}
.y2d{bottom:239.533333pt;}
.ye4{bottom:239.800000pt;}
.y117{bottom:240.600000pt;}
.y77{bottom:249.400000pt;}
.ye3{bottom:252.600000pt;}
.yb3{bottom:253.933333pt;}
.y2c{bottom:254.733333pt;}
.y116{bottom:255.800000pt;}
.y76{bottom:262.466667pt;}
.ye2{bottom:268.066667pt;}
.yb2{bottom:269.666667pt;}
.y2b{bottom:270.200000pt;}
.y115{bottom:271.266667pt;}
.y75{bottom:277.666667pt;}
.ye1{bottom:283.266667pt;}
.y2a{bottom:285.400000pt;}
.y114{bottom:286.466667pt;}
.yb1{bottom:287.000000pt;}
.y74{bottom:293.133333pt;}
.ye0{bottom:298.733333pt;}
.yb0{bottom:299.800000pt;}
.y29{bottom:300.866667pt;}
.y113{bottom:301.933333pt;}
.y73{bottom:308.373333pt;}
.ydf{bottom:313.440000pt;}
.yaf{bottom:315.293333pt;}
.y28{bottom:315.573333pt;}
.y112{bottom:317.173333pt;}
.y72{bottom:323.840000pt;}
.yde{bottom:326.226667pt;}
.y27{bottom:328.373333pt;}
.yae{bottom:330.506667pt;}
.y111{bottom:332.626667pt;}
.y71{bottom:339.573333pt;}
.ydd{bottom:341.693333pt;}
.y26{bottom:343.560000pt;}
.yad{bottom:345.173333pt;}
.y110{bottom:347.840000pt;}
.y70{bottom:356.893333pt;}
.yac{bottom:358.226667pt;}
.y25{bottom:359.026667pt;}
.y10f{bottom:363.293333pt;}
.y6f{bottom:369.706667pt;}
.ydc{bottom:372.360000pt;}
.yab{bottom:373.440000pt;}
.y24{bottom:374.226667pt;}
.y10e{bottom:378.506667pt;}
.y6e{bottom:385.173333pt;}
.ydb{bottom:387.040000pt;}
.yaa{bottom:388.893333pt;}
.y23{bottom:389.706667pt;}
.y10d{bottom:393.973333pt;}
.yda{bottom:399.840000pt;}
.y6d{bottom:400.893333pt;}
.ya9{bottom:404.106667pt;}
.y22{bottom:404.893333pt;}
.y10c{bottom:409.173333pt;}
.yd9{bottom:415.293333pt;}
.y6c{bottom:418.226667pt;}
.ya8{bottom:418.773333pt;}
.y21{bottom:420.360000pt;}
.y10b{bottom:424.626667pt;}
.yd8{bottom:430.506667pt;}
.y6b{bottom:431.026667pt;}
.ya7{bottom:431.840000pt;}
.y20{bottom:436.106667pt;}
.y10a{bottom:439.840000pt;}
.yd7{bottom:445.173333pt;}
.y6a{bottom:446.506667pt;}
.ya6{bottom:447.040000pt;}
.y1f{bottom:454.506667pt;}
.y109{bottom:455.306667pt;}
.yd6{bottom:458.266667pt;}
.y69{bottom:461.733333pt;}
.ya5{bottom:462.533333pt;}
.y108{bottom:470.533333pt;}
.yd5{bottom:473.466667pt;}
.y68{bottom:477.200000pt;}
.y107{bottom:486.000000pt;}
.yd4{bottom:489.200000pt;}
.ya4{bottom:490.000000pt;}
.y67{bottom:492.400000pt;}
.y106{bottom:501.200000pt;}
.ya3{bottom:505.466667pt;}
.yd3{bottom:507.333333pt;}
.y66{bottom:508.133333pt;}
.y37{bottom:514.266667pt;}
.y105{bottom:516.666667pt;}
.ya2{bottom:520.666667pt;}
.yd2{bottom:522.533333pt;}
.y65{bottom:525.466667pt;}
.y104{bottom:531.866667pt;}
.ya1{bottom:535.333333pt;}
.yd1{bottom:538.000000pt;}
.y64{bottom:538.533333pt;}
.y103{bottom:547.333333pt;}
.ya0{bottom:548.400000pt;}
.yd0{bottom:550.800000pt;}
.y63{bottom:553.733333pt;}
.y102{bottom:562.533333pt;}
.y9f{bottom:563.600000pt;}
.y62{bottom:569.200000pt;}
.y101{bottom:578.000000pt;}
.y9e{bottom:579.066667pt;}
.yce{bottom:582.266667pt;}
.y61{bottom:584.400000pt;}
.y100{bottom:593.200000pt;}
.y9d{bottom:594.266667pt;}
.y60{bottom:600.133333pt;}
.yff{bottom:608.693333pt;}
.y9c{bottom:608.960000pt;}
.ycc{bottom:613.506667pt;}
.y5f{bottom:618.560000pt;}
.y9b{bottom:622.026667pt;}
.yfe{bottom:623.893333pt;}
.y5e{bottom:635.893333pt;}
.y9a{bottom:637.226667pt;}
.yfd{bottom:639.360000pt;}
.yc9{bottom:644.693333pt;}
.y5d{bottom:648.973333pt;}
.y99{bottom:652.706667pt;}
.yfc{bottom:654.560000pt;}
.y5c{bottom:664.173333pt;}
.y98{bottom:667.906667pt;}
.yfb{bottom:670.293333pt;}
.yc6{bottom:676.173333pt;}
.y97{bottom:682.573333pt;}
.y5b{bottom:686.040000pt;}
.y96{bottom:695.626667pt;}
.y5a{bottom:701.506667pt;}
.yc5{bottom:707.373333pt;}
.y95{bottom:710.840000pt;}
.y59{bottom:716.960000pt;}
.yc3{bottom:723.373333pt;}
.y94{bottom:726.293333pt;}
.y58{bottom:732.173333pt;}
.yfa{bottom:732.440000pt;}
.y1e{bottom:734.840000pt;}
.y93{bottom:741.506667pt;}
.y57{bottom:747.626667pt;}
.y1d{bottom:750.840000pt;}
.yc2{bottom:751.373333pt;}
.y92{bottom:757.000000pt;}
.yf9{bottom:758.066667pt;}
.y56{bottom:762.333333pt;}
.y1c{bottom:766.066667pt;}
.yc1{bottom:767.400000pt;}
.y91{bottom:772.200000pt;}
.yf8{bottom:773.800000pt;}
.y55{bottom:775.133333pt;}
.y1b{bottom:781.533333pt;}
.yc0{bottom:785.266667pt;}
.y90{bottom:787.666667pt;}
.yf7{bottom:789.000000pt;}
.y54{bottom:790.600000pt;}
.y1a{bottom:796.733333pt;}
.yed{bottom:798.333333pt;}
.y8f{bottom:802.333333pt;}
.y53{bottom:805.800000pt;}
.y19{bottom:809.800000pt;}
.yf6{bottom:814.866667pt;}
.y8e{bottom:815.133333pt;}
.y18{bottom:816.200000pt;}
.y52{bottom:821.266667pt;}
.y17{bottom:825.800000pt;}
.yf5{bottom:830.333333pt;}
.y8d{bottom:830.600000pt;}
.y51{bottom:835.933333pt;}
.y16{bottom:841.000000pt;}
.y8c{bottom:845.800000pt;}
.y50{bottom:848.733333pt;}
.y15{bottom:856.466667pt;}
.yeb{bottom:860.200000pt;}
.yf4{bottom:861.000000pt;}
.y8b{bottom:861.266667pt;}
.y4f{bottom:864.200000pt;}
.y14{bottom:866.866667pt;}
.y8a{bottom:876.466667pt;}
.y4e{bottom:879.400000pt;}
.y13{bottom:882.866667pt;}
.y89{bottom:891.133333pt;}
.yf3{bottom:892.200000pt;}
.y4d{bottom:894.866667pt;}
.y12{bottom:902.066667pt;}
.y88{bottom:904.226667pt;}
.yea{bottom:906.906667pt;}
.yf2{bottom:909.560000pt;}
.y4c{bottom:910.106667pt;}
.y11{bottom:918.893333pt;}
.y87{bottom:919.440000pt;}
.yf1{bottom:922.373333pt;}
.ye{bottom:925.293333pt;}
.y4b{bottom:925.560000pt;}
.y86{bottom:934.893333pt;}
.yf0{bottom:937.840000pt;}
.ybf{bottom:938.106667pt;}
.y4a{bottom:940.226667pt;}
.yd{bottom:944.506667pt;}
.yc{bottom:949.560000pt;}
.y85{bottom:950.626667pt;}
.y49{bottom:953.040000pt;}
.ybe{bottom:955.440000pt;}
.yb{bottom:963.173333pt;}
.y84{bottom:967.960000pt;}
.y48{bottom:968.506667pt;}
.ya{bottom:975.960000pt;}
.y83{bottom:980.773333pt;}
.y47{bottom:983.706667pt;}
.y9{bottom:991.706667pt;}
.y82{bottom:997.040000pt;}
.y46{bottom:999.173333pt;}
.y8{bottom:1007.706667pt;}
.y81{bottom:1013.293333pt;}
.y7{bottom:1014.373333pt;}
.y1{bottom:1063.466667pt;}
.h10{height:5.958333pt;}
.ha{height:7.447917pt;}
.h11{height:7.526042pt;}
.h6{height:11.289062pt;}
.h1b{height:15.466667pt;}
.hc{height:18.619792pt;}
.hb{height:18.666667pt;}
.hf{height:24.578125pt;}
.h16{height:29.791667pt;}
.h8{height:30.104167pt;}
.h1d{height:30.433333pt;}
.h1c{height:30.666667pt;}
.h19{height:30.812500pt;}
.h4{height:32.000000pt;}
.h9{height:33.515625pt;}
.h1{height:36.515625pt;}
.h15{height:37.239583pt;}
.h5{height:37.630208pt;}
.h1a{height:38.828125pt;}
.h13{height:40.572917pt;}
.he{height:43.778125pt;}
.h7{height:45.156250pt;}
.h1e{height:46.166667pt;}
.h18{height:46.218750pt;}
.hd{height:47.414062pt;}
.h12{height:48.687500pt;}
.h14{height:53.046875pt;}
.h2{height:58.351562pt;}
.h1f{height:61.333333pt;}
.h3{height:86.400000pt;}
.h17{height:192.840000pt;}
.h0{height:1122.666667pt;}
.w4{width:64.266667pt;}
.wb{width:90.166667pt;}
.w3{width:96.000000pt;}
.w8{width:137.360000pt;}
.wa{width:222.466667pt;}
.w6{width:225.666667pt;}
.w9{width:228.866667pt;}
.wd{width:261.973333pt;}
.wc{width:265.133333pt;}
.w5{width:429.733333pt;}
.w7{width:650.866667pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:6.933333pt;}
.x3{left:9.599999pt;}
.x10{left:14.400000pt;}
.x4{left:19.733333pt;}
.x5{left:24.533333pt;}
.xb{left:69.366667pt;}
.x2{left:72.033322pt;}
.xf{left:75.500000pt;}
.x12{left:96.033322pt;}
.xe{left:117.626667pt;}
.xa{left:136.559988pt;}
.x16{left:163.266667pt;}
.x14{left:210.200000pt;}
.xc{left:214.740000pt;}
.x6{left:345.439988pt;}
.x8{left:406.533322pt;}
.x17{left:429.200000pt;}
.x15{left:439.600000pt;}
.xd{left:499.106667pt;}
.x11{left:524.973322pt;}
.x9{left:539.639988pt;}
.x7{left:619.133322pt;}
.x1{left:722.106655pt;}
}




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