
    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_c48685d0958ed61e2c13a9d2.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_29d53a7db58cf7fd752eea01.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_9a6b4561749d2d88fdb09dd1.woff2')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_40f5c669726b9f6f33feda0e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a480403690f4eb1c33a02f58.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ec1a08d6366a7cc48f736fe2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_e59244a3e6a171d7e7537497.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6e920ec5fe4bbbc1597eb054.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_dcc06d4677e2effa9f57c1d4.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.lse{letter-spacing:-1.200000px;}
.ls9{letter-spacing:-0.600000px;}
.ls6{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.480000px;}
.ls10{letter-spacing:-0.408000px;}
.ls5{letter-spacing:-0.240000px;}
.ls0{letter-spacing:-0.048000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.018000px;}
.ls7{letter-spacing:0.078000px;}
.lsb{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.240000px;}
.ls2{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.384000px;}
.ls11{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.600000px;}
.lsf{letter-spacing:15.000000px;}
.ls12{letter-spacing:15.720000px;}
.lsc{letter-spacing:45.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:-71.592000px;}
.wsa{word-spacing:-60.000000px;}
.ws3{word-spacing:-59.460000px;}
.ws9{word-spacing:-18.432000px;}
.ws1{word-spacing:-18.384000px;}
.ws0{word-spacing:-15.204000px;}
.ws6{word-spacing:-15.120000px;}
.ws7{word-spacing:-15.000000px;}
.ws2{word-spacing:-14.760000px;}
.ws5{word-spacing:-12.900000px;}
.ws4{word-spacing:0.000000px;}
._f{margin-left:-2.520000px;}
._1{margin-left:-1.392000px;}
._0{width:1.110000px;}
._e{width:2.220000px;}
._10{width:3.420000px;}
._a{width:5.040000px;}
._14{width:6.054000px;}
._b{width:7.080000px;}
._c{width:8.124000px;}
._7{width:9.156000px;}
._6{width:10.380000px;}
._17{width:12.300000px;}
._18{width:13.392000px;}
._1d{width:14.544000px;}
._d{width:16.452000px;}
._9{width:17.556000px;}
._8{width:18.960000px;}
._16{width:20.406000px;}
._15{width:21.900000px;}
._1c{width:23.160000px;}
._19{width:24.180000px;}
._1a{width:25.212000px;}
._1b{width:26.244000px;}
._13{width:27.324000px;}
._11{width:28.500000px;}
._12{width:29.652000px;}
._4{width:336.180000px;}
._2{width:559.950000px;}
._3{width:642.780000px;}
._5{width:1180.080000px;}
.fc5{color:transparent;}
.fc6{color:rgb(127,127,127);}
.fc3{color:rgb(29,29,29);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(31,73,125);}
.fc0{color:rgb(192,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yf{bottom:3.915000px;}
.y40{bottom:4.500000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y5{bottom:12.337500px;}
.y3f{bottom:24.000000px;}
.y3e{bottom:38.400000px;}
.y4{bottom:46.800000px;}
.y3d{bottom:55.800000px;}
.y1{bottom:57.037500px;}
.y3c{bottom:72.945000px;}
.y42{bottom:74.137500px;}
.y3{bottom:81.337500px;}
.y3b{bottom:90.330000px;}
.y3a{bottom:107.445000px;}
.yd4{bottom:112.837500px;}
.y30{bottom:114.637500px;}
.yb0{bottom:116.437500px;}
.ye4{bottom:123.337500px;}
.y39{bottom:124.845000px;}
.y90{bottom:126.637500px;}
.yd3{bottom:130.237500px;}
.y2f{bottom:131.737500px;}
.yaf{bottom:133.537500px;}
.y7c{bottom:137.137500px;}
.ye3{bottom:140.437500px;}
.y38{bottom:141.945000px;}
.y8f{bottom:144.037500px;}
.yd2{bottom:147.337500px;}
.y2e{bottom:149.137500px;}
.yae{bottom:150.930000px;}
.y7b{bottom:154.245000px;}
.ye2{bottom:157.830000px;}
.y37{bottom:159.330000px;}
.y8e{bottom:161.130000px;}
.y10b{bottom:161.745000px;}
.yd1{bottom:164.745000px;}
.y2d{bottom:166.230000px;}
.yad{bottom:168.045000px;}
.y7a{bottom:171.630000px;}
.ye1{bottom:174.930000px;}
.y36{bottom:176.445000px;}
.y8d{bottom:178.575000px;}
.yd0{bottom:181.875000px;}
.y2c{bottom:183.675000px;}
.yac{bottom:185.475000px;}
.y79{bottom:188.775000px;}
.ye0{bottom:192.375000px;}
.y35{bottom:193.830000px;}
.y8c{bottom:195.675000px;}
.ycf{bottom:199.275000px;}
.y2b{bottom:200.775000px;}
.yab{bottom:202.575000px;}
.y78{bottom:206.175000px;}
.ydf{bottom:209.475000px;}
.y34{bottom:210.945000px;}
.y8b{bottom:213.075000px;}
.yce{bottom:216.375000px;}
.y2a{bottom:218.175000px;}
.yaa{bottom:219.975000px;}
.y77{bottom:223.275000px;}
.yde{bottom:226.875000px;}
.y33{bottom:228.375000px;}
.y8a{bottom:230.175000px;}
.ycd{bottom:233.775000px;}
.y29{bottom:235.275000px;}
.ya9{bottom:237.075000px;}
.y76{bottom:240.675000px;}
.ydd{bottom:243.975000px;}
.y32{bottom:246.075000px;}
.y89{bottom:247.575000px;}
.y10a{bottom:250.875000px;}
.ycc{bottom:251.475000px;}
.y28{bottom:252.675000px;}
.ya8{bottom:254.475000px;}
.y75{bottom:257.775000px;}
.ydc{bottom:261.375000px;}
.y88{bottom:265.275000px;}
.y109{bottom:268.275000px;}
.y27{bottom:269.775000px;}
.ya7{bottom:271.575000px;}
.y74{bottom:275.175000px;}
.ydb{bottom:278.475000px;}
.y108{bottom:285.375000px;}
.y87{bottom:285.975000px;}
.y26{bottom:287.175000px;}
.ya6{bottom:288.975000px;}
.y73{bottom:292.275000px;}
.yda{bottom:295.875000px;}
.y107{bottom:302.775000px;}
.y25{bottom:304.275000px;}
.y86{bottom:306.075000px;}
.y72{bottom:309.675000px;}
.yd9{bottom:313.575000px;}
.y106{bottom:319.875000px;}
.y24{bottom:321.675000px;}
.y85{bottom:323.475000px;}
.y71{bottom:326.775000px;}
.yd8{bottom:334.275000px;}
.y105{bottom:337.275000px;}
.y23{bottom:338.775000px;}
.y84{bottom:340.575000px;}
.y70{bottom:344.175000px;}
.y104{bottom:354.405000px;}
.yd7{bottom:355.020000px;}
.y22{bottom:356.220000px;}
.y83{bottom:358.005000px;}
.y6f{bottom:361.320000px;}
.y103{bottom:371.820000px;}
.y21{bottom:373.320000px;}
.ya5{bottom:375.105000px;}
.y82{bottom:375.720000px;}
.y6e{bottom:378.705000px;}
.y102{bottom:388.920000px;}
.y20{bottom:390.705000px;}
.ya4{bottom:392.520000px;}
.y6d{bottom:395.820000px;}
.y101{bottom:406.320000px;}
.y1f{bottom:407.820000px;}
.ya3{bottom:409.620000px;}
.y6c{bottom:413.205000px;}
.y100{bottom:423.420000px;}
.y110{bottom:424.005000px;}
.y1e{bottom:425.205000px;}
.ycb{bottom:427.005000px;}
.ya2{bottom:427.320000px;}
.y6b{bottom:430.320000px;}
.yff{bottom:440.820000px;}
.y1d{bottom:442.320000px;}
.yca{bottom:444.120000px;}
.y6a{bottom:447.705000px;}
.yfe{bottom:457.905000px;}
.y1c{bottom:459.705000px;}
.yc9{bottom:461.505000px;}
.y69{bottom:464.820000px;}
.yfd{bottom:475.320000px;}
.y1b{bottom:476.820000px;}
.yc8{bottom:478.620000px;}
.y68{bottom:482.205000px;}
.yfc{bottom:492.420000px;}
.y1a{bottom:494.205000px;}
.yc7{bottom:496.005000px;}
.yd6{bottom:496.320000px;}
.y67{bottom:499.320000px;}
.yfb{bottom:509.820000px;}
.y19{bottom:511.320000px;}
.yc6{bottom:513.120000px;}
.ye6{bottom:513.750000px;}
.ya1{bottom:516.750000px;}
.y66{bottom:517.050000px;}
.yfa{bottom:526.950000px;}
.y18{bottom:529.050000px;}
.yc5{bottom:530.550000px;}
.ya0{bottom:533.850000px;}
.ye5{bottom:534.450000px;}
.y81{bottom:536.550000px;}
.y65{bottom:537.450000px;}
.yf9{bottom:544.350000px;}
.yc4{bottom:547.650000px;}
.y17{bottom:549.150000px;}
.y80{bottom:551.250000px;}
.y64{bottom:554.550000px;}
.yf8{bottom:561.450000px;}
.yc3{bottom:565.050000px;}
.y7f{bottom:568.350000px;}
.y63{bottom:571.950000px;}
.yf7{bottom:578.850000px;}
.yc2{bottom:582.150000px;}
.y7e{bottom:585.750000px;}
.y62{bottom:589.050000px;}
.yf6{bottom:595.950000px;}
.yc1{bottom:599.550000px;}
.y9f{bottom:602.850000px;}
.y7d{bottom:603.450000px;}
.y61{bottom:606.450000px;}
.yf5{bottom:613.350000px;}
.yc0{bottom:616.650000px;}
.y9e{bottom:620.250000px;}
.y31{bottom:621.750000px;}
.y60{bottom:623.550000px;}
.yf4{bottom:630.450000px;}
.ybf{bottom:634.050000px;}
.y9d{bottom:637.350000px;}
.y5f{bottom:640.950000px;}
.yf3{bottom:647.850000px;}
.ybe{bottom:651.150000px;}
.y9c{bottom:654.750000px;}
.y5e{bottom:658.050000px;}
.yf2{bottom:664.950000px;}
.y10f{bottom:668.550000px;}
.ybd{bottom:668.850000px;}
.y9b{bottom:671.850000px;}
.y5d{bottom:675.450000px;}
.yf1{bottom:682.380000px;}
.y10e{bottom:685.695000px;}
.y9a{bottom:689.280000px;}
.y5c{bottom:692.595000px;}
.yf0{bottom:699.495000px;}
.y10d{bottom:703.380000px;}
.y99{bottom:706.380000px;}
.y5b{bottom:709.980000px;}
.yef{bottom:716.880000px;}
.y98{bottom:723.795000px;}
.y5a{bottom:727.080000px;}
.yee{bottom:733.995000px;}
.y97{bottom:740.895000px;}
.y59{bottom:744.495000px;}
.yed{bottom:751.395000px;}
.y96{bottom:758.280000px;}
.y58{bottom:761.595000px;}
.yec{bottom:768.495000px;}
.y95{bottom:775.380000px;}
.y57{bottom:778.980000px;}
.yeb{bottom:785.880000px;}
.y94{bottom:792.795000px;}
.y56{bottom:796.080000px;}
.yea{bottom:802.980000px;}
.y93{bottom:809.880000px;}
.y55{bottom:813.495000px;}
.ye9{bottom:820.695000px;}
.y92{bottom:827.295000px;}
.y54{bottom:830.580000px;}
.ye8{bottom:841.380000px;}
.ybc{bottom:844.380000px;}
.y91{bottom:844.995000px;}
.y53{bottom:847.995000px;}
.ybb{bottom:861.825000px;}
.ye7{bottom:862.125000px;}
.y52{bottom:865.125000px;}
.yba{bottom:878.925000px;}
.y51{bottom:882.525000px;}
.yb9{bottom:896.325000px;}
.y50{bottom:899.625000px;}
.y16{bottom:911.325000px;}
.yb8{bottom:913.425000px;}
.y4f{bottom:917.025000px;}
.yb7{bottom:930.825000px;}
.y4e{bottom:934.125000px;}
.y15{bottom:934.425000px;}
.yb6{bottom:947.925000px;}
.y10c{bottom:948.525000px;}
.y4d{bottom:951.525000px;}
.y14{bottom:956.025000px;}
.yb5{bottom:965.325000px;}
.yd5{bottom:965.625000px;}
.y4c{bottom:968.625000px;}
.y13{bottom:973.725000px;}
.yb4{bottom:982.425000px;}
.y4b{bottom:986.025000px;}
.y12{bottom:990.825000px;}
.yb3{bottom:999.825000px;}
.y4a{bottom:1003.125000px;}
.y11{bottom:1008.525000px;}
.yb2{bottom:1016.955000px;}
.y49{bottom:1020.570000px;}
.y10{bottom:1028.370000px;}
.yb1{bottom:1034.670000px;}
.y48{bottom:1037.670000px;}
.yd{bottom:1040.955000px;}
.y47{bottom:1055.070000px;}
.yc{bottom:1062.570000px;}
.yb{bottom:1068.255000px;}
.y46{bottom:1072.170000px;}
.ya{bottom:1083.570000px;}
.y45{bottom:1089.570000px;}
.y9{bottom:1097.955000px;}
.y44{bottom:1106.670000px;}
.y8{bottom:1115.670000px;}
.y43{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.y6{bottom:1141.170000px;}
.y41{bottom:1196.400000px;}
.h9{height:8.378906px;}
.h5{height:12.700195px;}
.ha{height:21.000000px;}
.h13{height:33.515625px;}
.h7{height:33.867188px;}
.h10{height:34.664062px;}
.h3{height:36.000000px;}
.h8{height:37.705078px;}
.hc{height:38.100586px;}
.h11{height:39.471680px;}
.hb{height:41.894531px;}
.h4{height:42.333984px;}
.h12{height:43.681641px;}
.hf{height:43.857422px;}
.h6{height:50.800781px;}
.he{height:51.996094px;}
.h1{height:65.645508px;}
.h2{height:97.200000px;}
.hd{height:262.875000px;}
.h0{height:1263.000000px;}
.w4{width:72.300000px;}
.w3{width:108.000000px;}
.w6{width:253.275000px;}
.w5{width:483.450000px;}
.w7{width:730.125000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:10.799998px;}
.x14{left:16.200000px;}
.x3{left:22.200000px;}
.x4{left:27.600000px;}
.xb{left:78.337500px;}
.x1{left:81.037487px;}
.x13{left:84.037500px;}
.x12{left:105.337487px;}
.x16{left:108.037487px;}
.xe{left:116.745000px;}
.x9{left:153.629987px;}
.xf{left:161.429987px;}
.xc{left:241.567500px;}
.x10{left:349.619987px;}
.x6{left:405.119987px;}
.x11{left:446.549987px;}
.xd{left:561.780000px;}
.x15{left:588.494987px;}
.x8{left:616.379987px;}
.x7{left:648.194987px;}
.x5{left:698.624987px;}
.xa{left:812.369987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-1.066667pt;}
.ls9{letter-spacing:-0.533333pt;}
.ls6{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.426667pt;}
.ls10{letter-spacing:-0.362667pt;}
.ls5{letter-spacing:-0.213333pt;}
.ls0{letter-spacing:-0.042667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.016000pt;}
.ls7{letter-spacing:0.069333pt;}
.lsb{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.213333pt;}
.ls2{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.341333pt;}
.ls11{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.533333pt;}
.lsf{letter-spacing:13.333333pt;}
.ls12{letter-spacing:13.973333pt;}
.lsc{letter-spacing:40.640000pt;}
.ws8{word-spacing:-63.637333pt;}
.wsa{word-spacing:-53.333333pt;}
.ws3{word-spacing:-52.853333pt;}
.ws9{word-spacing:-16.384000pt;}
.ws1{word-spacing:-16.341333pt;}
.ws0{word-spacing:-13.514667pt;}
.ws6{word-spacing:-13.440000pt;}
.ws7{word-spacing:-13.333333pt;}
.ws2{word-spacing:-13.120000pt;}
.ws5{word-spacing:-11.466667pt;}
.ws4{word-spacing:0.000000pt;}
._f{margin-left:-2.240000pt;}
._1{margin-left:-1.237333pt;}
._0{width:0.986667pt;}
._e{width:1.973333pt;}
._10{width:3.040000pt;}
._a{width:4.480000pt;}
._14{width:5.381333pt;}
._b{width:6.293333pt;}
._c{width:7.221333pt;}
._7{width:8.138667pt;}
._6{width:9.226667pt;}
._17{width:10.933333pt;}
._18{width:11.904000pt;}
._1d{width:12.928000pt;}
._d{width:14.624000pt;}
._9{width:15.605333pt;}
._8{width:16.853333pt;}
._16{width:18.138667pt;}
._15{width:19.466667pt;}
._1c{width:20.586667pt;}
._19{width:21.493333pt;}
._1a{width:22.410667pt;}
._1b{width:23.328000pt;}
._13{width:24.288000pt;}
._11{width:25.333333pt;}
._12{width:26.357333pt;}
._4{width:298.826667pt;}
._2{width:497.733333pt;}
._3{width:571.360000pt;}
._5{width:1048.960000pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:3.480000pt;}
.y40{bottom:4.000000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y5{bottom:10.966667pt;}
.y3f{bottom:21.333333pt;}
.y3e{bottom:34.133333pt;}
.y4{bottom:41.600000pt;}
.y3d{bottom:49.600000pt;}
.y1{bottom:50.700000pt;}
.y3c{bottom:64.840000pt;}
.y42{bottom:65.900000pt;}
.y3{bottom:72.300000pt;}
.y3b{bottom:80.293333pt;}
.y3a{bottom:95.506667pt;}
.yd4{bottom:100.300000pt;}
.y30{bottom:101.900000pt;}
.yb0{bottom:103.500000pt;}
.ye4{bottom:109.633333pt;}
.y39{bottom:110.973333pt;}
.y90{bottom:112.566667pt;}
.yd3{bottom:115.766667pt;}
.y2f{bottom:117.100000pt;}
.yaf{bottom:118.700000pt;}
.y7c{bottom:121.900000pt;}
.ye3{bottom:124.833333pt;}
.y38{bottom:126.173333pt;}
.y8f{bottom:128.033333pt;}
.yd2{bottom:130.966667pt;}
.y2e{bottom:132.566667pt;}
.yae{bottom:134.160000pt;}
.y7b{bottom:137.106667pt;}
.ye2{bottom:140.293333pt;}
.y37{bottom:141.626667pt;}
.y8e{bottom:143.226667pt;}
.y10b{bottom:143.773333pt;}
.yd1{bottom:146.440000pt;}
.y2d{bottom:147.760000pt;}
.yad{bottom:149.373333pt;}
.y7a{bottom:152.560000pt;}
.ye1{bottom:155.493333pt;}
.y36{bottom:156.840000pt;}
.y8d{bottom:158.733333pt;}
.yd0{bottom:161.666667pt;}
.y2c{bottom:163.266667pt;}
.yac{bottom:164.866667pt;}
.y79{bottom:167.800000pt;}
.ye0{bottom:171.000000pt;}
.y35{bottom:172.293333pt;}
.y8c{bottom:173.933333pt;}
.ycf{bottom:177.133333pt;}
.y2b{bottom:178.466667pt;}
.yab{bottom:180.066667pt;}
.y78{bottom:183.266667pt;}
.ydf{bottom:186.200000pt;}
.y34{bottom:187.506667pt;}
.y8b{bottom:189.400000pt;}
.yce{bottom:192.333333pt;}
.y2a{bottom:193.933333pt;}
.yaa{bottom:195.533333pt;}
.y77{bottom:198.466667pt;}
.yde{bottom:201.666667pt;}
.y33{bottom:203.000000pt;}
.y8a{bottom:204.600000pt;}
.ycd{bottom:207.800000pt;}
.y29{bottom:209.133333pt;}
.ya9{bottom:210.733333pt;}
.y76{bottom:213.933333pt;}
.ydd{bottom:216.866667pt;}
.y32{bottom:218.733333pt;}
.y89{bottom:220.066667pt;}
.y10a{bottom:223.000000pt;}
.ycc{bottom:223.533333pt;}
.y28{bottom:224.600000pt;}
.ya8{bottom:226.200000pt;}
.y75{bottom:229.133333pt;}
.ydc{bottom:232.333333pt;}
.y88{bottom:235.800000pt;}
.y109{bottom:238.466667pt;}
.y27{bottom:239.800000pt;}
.ya7{bottom:241.400000pt;}
.y74{bottom:244.600000pt;}
.ydb{bottom:247.533333pt;}
.y108{bottom:253.666667pt;}
.y87{bottom:254.200000pt;}
.y26{bottom:255.266667pt;}
.ya6{bottom:256.866667pt;}
.y73{bottom:259.800000pt;}
.yda{bottom:263.000000pt;}
.y107{bottom:269.133333pt;}
.y25{bottom:270.466667pt;}
.y86{bottom:272.066667pt;}
.y72{bottom:275.266667pt;}
.yd9{bottom:278.733333pt;}
.y106{bottom:284.333333pt;}
.y24{bottom:285.933333pt;}
.y85{bottom:287.533333pt;}
.y71{bottom:290.466667pt;}
.yd8{bottom:297.133333pt;}
.y105{bottom:299.800000pt;}
.y23{bottom:301.133333pt;}
.y84{bottom:302.733333pt;}
.y70{bottom:305.933333pt;}
.y104{bottom:315.026667pt;}
.yd7{bottom:315.573333pt;}
.y22{bottom:316.640000pt;}
.y83{bottom:318.226667pt;}
.y6f{bottom:321.173333pt;}
.y103{bottom:330.506667pt;}
.y21{bottom:331.840000pt;}
.ya5{bottom:333.426667pt;}
.y82{bottom:333.973333pt;}
.y6e{bottom:336.626667pt;}
.y102{bottom:345.706667pt;}
.y20{bottom:347.293333pt;}
.ya4{bottom:348.906667pt;}
.y6d{bottom:351.840000pt;}
.y101{bottom:361.173333pt;}
.y1f{bottom:362.506667pt;}
.ya3{bottom:364.106667pt;}
.y6c{bottom:367.293333pt;}
.y100{bottom:376.373333pt;}
.y110{bottom:376.893333pt;}
.y1e{bottom:377.960000pt;}
.ycb{bottom:379.560000pt;}
.ya2{bottom:379.840000pt;}
.y6b{bottom:382.506667pt;}
.yff{bottom:391.840000pt;}
.y1d{bottom:393.173333pt;}
.yca{bottom:394.773333pt;}
.y6a{bottom:397.960000pt;}
.yfe{bottom:407.026667pt;}
.y1c{bottom:408.626667pt;}
.yc9{bottom:410.226667pt;}
.y69{bottom:413.173333pt;}
.yfd{bottom:422.506667pt;}
.y1b{bottom:423.840000pt;}
.yc8{bottom:425.440000pt;}
.y68{bottom:428.626667pt;}
.yfc{bottom:437.706667pt;}
.y1a{bottom:439.293333pt;}
.yc7{bottom:440.893333pt;}
.yd6{bottom:441.173333pt;}
.y67{bottom:443.840000pt;}
.yfb{bottom:453.173333pt;}
.y19{bottom:454.506667pt;}
.yc6{bottom:456.106667pt;}
.ye6{bottom:456.666667pt;}
.ya1{bottom:459.333333pt;}
.y66{bottom:459.600000pt;}
.yfa{bottom:468.400000pt;}
.y18{bottom:470.266667pt;}
.yc5{bottom:471.600000pt;}
.ya0{bottom:474.533333pt;}
.ye5{bottom:475.066667pt;}
.y81{bottom:476.933333pt;}
.y65{bottom:477.733333pt;}
.yf9{bottom:483.866667pt;}
.yc4{bottom:486.800000pt;}
.y17{bottom:488.133333pt;}
.y80{bottom:490.000000pt;}
.y64{bottom:492.933333pt;}
.yf8{bottom:499.066667pt;}
.yc3{bottom:502.266667pt;}
.y7f{bottom:505.200000pt;}
.y63{bottom:508.400000pt;}
.yf7{bottom:514.533333pt;}
.yc2{bottom:517.466667pt;}
.y7e{bottom:520.666667pt;}
.y62{bottom:523.600000pt;}
.yf6{bottom:529.733333pt;}
.yc1{bottom:532.933333pt;}
.y9f{bottom:535.866667pt;}
.y7d{bottom:536.400000pt;}
.y61{bottom:539.066667pt;}
.yf5{bottom:545.200000pt;}
.yc0{bottom:548.133333pt;}
.y9e{bottom:551.333333pt;}
.y31{bottom:552.666667pt;}
.y60{bottom:554.266667pt;}
.yf4{bottom:560.400000pt;}
.ybf{bottom:563.600000pt;}
.y9d{bottom:566.533333pt;}
.y5f{bottom:569.733333pt;}
.yf3{bottom:575.866667pt;}
.ybe{bottom:578.800000pt;}
.y9c{bottom:582.000000pt;}
.y5e{bottom:584.933333pt;}
.yf2{bottom:591.066667pt;}
.y10f{bottom:594.266667pt;}
.ybd{bottom:594.533333pt;}
.y9b{bottom:597.200000pt;}
.y5d{bottom:600.400000pt;}
.yf1{bottom:606.560000pt;}
.y10e{bottom:609.506667pt;}
.y9a{bottom:612.693333pt;}
.y5c{bottom:615.640000pt;}
.yf0{bottom:621.773333pt;}
.y10d{bottom:625.226667pt;}
.y99{bottom:627.893333pt;}
.y5b{bottom:631.093333pt;}
.yef{bottom:637.226667pt;}
.y98{bottom:643.373333pt;}
.y5a{bottom:646.293333pt;}
.yee{bottom:652.440000pt;}
.y97{bottom:658.573333pt;}
.y59{bottom:661.773333pt;}
.yed{bottom:667.906667pt;}
.y96{bottom:674.026667pt;}
.y58{bottom:676.973333pt;}
.yec{bottom:683.106667pt;}
.y95{bottom:689.226667pt;}
.y57{bottom:692.426667pt;}
.yeb{bottom:698.560000pt;}
.y94{bottom:704.706667pt;}
.y56{bottom:707.626667pt;}
.yea{bottom:713.760000pt;}
.y93{bottom:719.893333pt;}
.y55{bottom:723.106667pt;}
.ye9{bottom:729.506667pt;}
.y92{bottom:735.373333pt;}
.y54{bottom:738.293333pt;}
.ye8{bottom:747.893333pt;}
.ybc{bottom:750.560000pt;}
.y91{bottom:751.106667pt;}
.y53{bottom:753.773333pt;}
.ybb{bottom:766.066667pt;}
.ye7{bottom:766.333333pt;}
.y52{bottom:769.000000pt;}
.yba{bottom:781.266667pt;}
.y51{bottom:784.466667pt;}
.yb9{bottom:796.733333pt;}
.y50{bottom:799.666667pt;}
.y16{bottom:810.066667pt;}
.yb8{bottom:811.933333pt;}
.y4f{bottom:815.133333pt;}
.yb7{bottom:827.400000pt;}
.y4e{bottom:830.333333pt;}
.y15{bottom:830.600000pt;}
.yb6{bottom:842.600000pt;}
.y10c{bottom:843.133333pt;}
.y4d{bottom:845.800000pt;}
.y14{bottom:849.800000pt;}
.yb5{bottom:858.066667pt;}
.yd5{bottom:858.333333pt;}
.y4c{bottom:861.000000pt;}
.y13{bottom:865.533333pt;}
.yb4{bottom:873.266667pt;}
.y4b{bottom:876.466667pt;}
.y12{bottom:880.733333pt;}
.yb3{bottom:888.733333pt;}
.y4a{bottom:891.666667pt;}
.y11{bottom:896.466667pt;}
.yb2{bottom:903.960000pt;}
.y49{bottom:907.173333pt;}
.y10{bottom:914.106667pt;}
.yb1{bottom:919.706667pt;}
.y48{bottom:922.373333pt;}
.yd{bottom:925.293333pt;}
.y47{bottom:937.840000pt;}
.yc{bottom:944.506667pt;}
.yb{bottom:949.560000pt;}
.y46{bottom:953.040000pt;}
.ya{bottom:963.173333pt;}
.y45{bottom:968.506667pt;}
.y9{bottom:975.960000pt;}
.y44{bottom:983.706667pt;}
.y8{bottom:991.706667pt;}
.y43{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.y6{bottom:1014.373333pt;}
.y41{bottom:1063.466667pt;}
.h9{height:7.447917pt;}
.h5{height:11.289062pt;}
.ha{height:18.666667pt;}
.h13{height:29.791667pt;}
.h7{height:30.104167pt;}
.h10{height:30.812500pt;}
.h3{height:32.000000pt;}
.h8{height:33.515625pt;}
.hc{height:33.867188pt;}
.h11{height:35.085938pt;}
.hb{height:37.239583pt;}
.h4{height:37.630208pt;}
.h12{height:38.828125pt;}
.hf{height:38.984375pt;}
.h6{height:45.156250pt;}
.he{height:46.218750pt;}
.h1{height:58.351562pt;}
.h2{height:86.400000pt;}
.hd{height:233.666667pt;}
.h0{height:1122.666667pt;}
.w4{width:64.266667pt;}
.w3{width:96.000000pt;}
.w6{width:225.133333pt;}
.w5{width:429.733333pt;}
.w7{width:649.000000pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:9.599999pt;}
.x14{left:14.400000pt;}
.x3{left:19.733333pt;}
.x4{left:24.533333pt;}
.xb{left:69.633333pt;}
.x1{left:72.033322pt;}
.x13{left:74.700000pt;}
.x12{left:93.633322pt;}
.x16{left:96.033322pt;}
.xe{left:103.773333pt;}
.x9{left:136.559988pt;}
.xf{left:143.493322pt;}
.xc{left:214.726667pt;}
.x10{left:310.773322pt;}
.x6{left:360.106655pt;}
.x11{left:396.933322pt;}
.xd{left:499.360000pt;}
.x15{left:523.106655pt;}
.x8{left:547.893322pt;}
.x7{left:576.173322pt;}
.x5{left:620.999988pt;}
.xa{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; }
  