
    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_1fa00a6f158faedc284e5aa3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a347509ee3602f6283bd62c2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_c0190932952dc5e8b4af5c7c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_aab12189b5afbda082aea1eb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_e20c709d9431eb1b4e92ff96.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4be206311cb65ecf628e8f51.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d964d497c9f20579c2297884.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c681922adac60e7c42db4f48.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0aa284708c6930a9a40e523e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.090820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-24.000000px;}
.v3{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:21.600000px;}
.v2{vertical-align:24.000000px;}
.lsa{letter-spacing:-1.200000px;}
.ls8{letter-spacing:-1.080000px;}
.lsb{letter-spacing:-0.240000px;}
.ls5{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.264000px;}
.ls4{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.420000px;}
.ls1{letter-spacing:0.600000px;}
.ls6{letter-spacing:1.170000px;}
.ls9{letter-spacing:1.200000px;}
.ls7{letter-spacing:3.000000px;}
.lse{letter-spacing:63.720000px;}
.lsd{letter-spacing:185.100000px;}
.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;}
}
.wsb{word-spacing:-60.000000px;}
.ws4{word-spacing:-16.500000px;}
.wsa{word-spacing:-16.200000px;}
.ws8{word-spacing:-15.420000px;}
.wsc{word-spacing:-15.120000px;}
.ws6{word-spacing:-15.000000px;}
.ws9{word-spacing:-14.760000px;}
.ws7{word-spacing:-13.920000px;}
.ws1{word-spacing:-13.560000px;}
.ws0{word-spacing:-13.200000px;}
.ws2{word-spacing:-11.100000px;}
.ws3{word-spacing:-9.900000px;}
.ws5{word-spacing:0.000000px;}
._f{margin-left:-7.800000px;}
._c{margin-left:-3.324000px;}
._3{margin-left:-2.232000px;}
._1{margin-left:-1.200000px;}
._0{width:1.080000px;}
._2{width:2.400000px;}
._6{width:3.816000px;}
._7{width:4.980000px;}
._b{width:6.384000px;}
._5{width:8.124000px;}
._9{width:9.156000px;}
._4{width:10.464000px;}
._a{width:11.736000px;}
._e{width:12.960000px;}
._17{width:13.992000px;}
._8{width:17.016000px;}
._d{width:18.036000px;}
._13{width:19.332000px;}
._12{width:20.520000px;}
._10{width:21.612000px;}
._11{width:23.328000px;}
._16{width:24.852000px;}
._19{width:35.580000px;}
._18{width:37.080000px;}
._1a{width:38.400000px;}
._15{width:131.220000px;}
._1b{width:148.980000px;}
._14{width:186.780000px;}
.fc5{color:transparent;}
.fc4{color:rgb(238,0,0);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(32,87,104);}
.fs1{font-size:30.000000px;}
.fs5{font-size:39.600000px;}
.fs3{font-size:42.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:1.837500px;}
.y3{bottom:5.400000px;}
.y2{bottom:9.637500px;}
.ya0{bottom:33.937500px;}
.ye3{bottom:40.537500px;}
.yf8{bottom:47.137500px;}
.y38{bottom:49.837500px;}
.yc7{bottom:51.337500px;}
.y9f{bottom:52.537500px;}
.ye2{bottom:59.137500px;}
.y20{bottom:59.400000px;}
.y37{bottom:68.437500px;}
.yc6{bottom:69.937500px;}
.y121{bottom:70.237500px;}
.y9e{bottom:71.137500px;}
.ye1{bottom:77.737500px;}
.y1f{bottom:78.300000px;}
.y6f{bottom:81.937500px;}
.y36{bottom:87.037500px;}
.yc5{bottom:88.537500px;}
.y9d{bottom:89.737500px;}
.ye0{bottom:96.337500px;}
.y6e{bottom:100.537500px;}
.y120{bottom:102.037500px;}
.yc4{bottom:107.137500px;}
.y9c{bottom:108.337500px;}
.y1e{bottom:110.400000px;}
.ydf{bottom:114.937500px;}
.y35{bottom:117.637500px;}
.y6d{bottom:119.137500px;}
.yc3{bottom:125.737500px;}
.y9b{bottom:126.937500px;}
.y1d{bottom:129.000000px;}
.yde{bottom:133.537500px;}
.y34{bottom:136.237500px;}
.yf7{bottom:145.537500px;}
.y1c{bottom:147.645000px;}
.y6c{bottom:149.737500px;}
.y11f{bottom:152.430000px;}
.y33{bottom:154.830000px;}
.yc2{bottom:156.045000px;}
.y9a{bottom:157.245000px;}
.ydd{bottom:164.430000px;}
.y1b{bottom:166.230000px;}
.y6b{bottom:168.330000px;}
.y32{bottom:173.475000px;}
.yf6{bottom:176.475000px;}
.ydc{bottom:183.075000px;}
.y11e{bottom:183.975000px;}
.y1a{bottom:184.830000px;}
.y6a{bottom:186.975000px;}
.y99{bottom:188.475000px;}
.y31{bottom:192.075000px;}
.yf5{bottom:195.075000px;}
.ydb{bottom:201.675000px;}
.y11d{bottom:202.575000px;}
.y19{bottom:203.445000px;}
.y69{bottom:205.575000px;}
.y98{bottom:207.075000px;}
.y30{bottom:210.675000px;}
.yda{bottom:220.275000px;}
.y11c{bottom:221.175000px;}
.y18{bottom:222.045000px;}
.yc1{bottom:224.475000px;}
.yf4{bottom:225.375000px;}
.y97{bottom:225.675000px;}
.y2f{bottom:229.275000px;}
.y68{bottom:236.475000px;}
.yd9{bottom:238.875000px;}
.y17{bottom:240.645000px;}
.y96{bottom:244.275000px;}
.y2e{bottom:247.875000px;}
.y11b{bottom:252.675000px;}
.y67{bottom:255.075000px;}
.yf3{bottom:256.275000px;}
.y16{bottom:259.245000px;}
.y95{bottom:262.875000px;}
.y2d{bottom:266.475000px;}
.yd8{bottom:269.475000px;}
.y11a{bottom:271.275000px;}
.y66{bottom:273.675000px;}
.yf2{bottom:274.875000px;}
.y15{bottom:277.830000px;}
.y2c{bottom:285.075000px;}
.yd7{bottom:288.075000px;}
.y119{bottom:290.175000px;}
.y65{bottom:292.275000px;}
.y94{bottom:293.475000px;}
.y14{bottom:296.745000px;}
.y2b{bottom:303.675000px;}
.yc0{bottom:304.275000px;}
.y64{bottom:310.875000px;}
.y93{bottom:312.075000px;}
.y13{bottom:315.375000px;}
.yd6{bottom:318.675000px;}
.y118{bottom:321.975000px;}
.y2a{bottom:322.275000px;}
.ybf{bottom:322.875000px;}
.y63{bottom:329.475000px;}
.y92{bottom:330.675000px;}
.y12{bottom:333.975000px;}
.yd5{bottom:337.275000px;}
.y29{bottom:340.905000px;}
.ybe{bottom:341.505000px;}
.yf1{bottom:349.320000px;}
.y11{bottom:352.575000px;}
.y117{bottom:353.505000px;}
.yd4{bottom:355.920000px;}
.y28{bottom:359.505000px;}
.y62{bottom:359.820000px;}
.y91{bottom:361.305000px;}
.y10{bottom:371.175000px;}
.y116{bottom:371.805000px;}
.ybd{bottom:372.120000px;}
.yd3{bottom:374.505000px;}
.y27{bottom:378.105000px;}
.y90{bottom:379.905000px;}
.yf{bottom:389.775000px;}
.y61{bottom:390.705000px;}
.y26{bottom:396.705000px;}
.y8f{bottom:398.505000px;}
.y115{bottom:403.605000px;}
.yd2{bottom:404.820000px;}
.y60{bottom:409.320000px;}
.y25{bottom:415.320000px;}
.y8e{bottom:417.105000px;}
.ye{bottom:420.075000px;}
.ybc{bottom:421.320000px;}
.y114{bottom:422.505000px;}
.yd1{bottom:423.405000px;}
.y24{bottom:434.205000px;}
.y8d{bottom:435.705000px;}
.y5f{bottom:439.620000px;}
.ybb{bottom:439.905000px;}
.y23{bottom:452.820000px;}
.yd0{bottom:454.005000px;}
.yf0{bottom:454.320000px;}
.yba{bottom:458.505000px;}
.y8c{bottom:466.320000px;}
.y5e{bottom:470.505000px;}
.y113{bottom:472.905000px;}
.y22{bottom:483.120000px;}
.y8b{bottom:484.920000px;}
.y5d{bottom:489.120000px;}
.y8a{bottom:503.505000px;}
.y112{bottom:504.405000px;}
.y5c{bottom:507.750000px;}
.y21{bottom:514.950000px;}
.y89{bottom:522.150000px;}
.y5b{bottom:526.350000px;}
.yd{bottom:530.550000px;}
.y111{bottom:535.950000px;}
.y88{bottom:540.750000px;}
.y5a{bottom:544.950000px;}
.y110{bottom:554.550000px;}
.y87{bottom:559.350000px;}
.y59{bottom:563.550000px;}
.yef{bottom:571.050000px;}
.ycf{bottom:571.350000px;}
.y10f{bottom:573.450000px;}
.y86{bottom:577.950000px;}
.y58{bottom:582.150000px;}
.yce{bottom:589.950000px;}
.y85{bottom:596.550000px;}
.y57{bottom:600.750000px;}
.yee{bottom:601.950000px;}
.y10e{bottom:604.950000px;}
.ycd{bottom:608.550000px;}
.yb9{bottom:612.750000px;}
.y56{bottom:619.350000px;}
.yed{bottom:620.550000px;}
.y10d{bottom:623.850000px;}
.y84{bottom:627.450000px;}
.yb8{bottom:631.350000px;}
.y55{bottom:637.950000px;}
.yec{bottom:639.450000px;}
.yb7{bottom:649.950000px;}
.y10c{bottom:655.350000px;}
.y54{bottom:656.550000px;}
.y83{bottom:658.050000px;}
.yb6{bottom:668.550000px;}
.yeb{bottom:670.050000px;}
.y10b{bottom:673.950000px;}
.y53{bottom:675.450000px;}
.y82{bottom:676.695000px;}
.yb5{bottom:687.480000px;}
.yea{bottom:688.695000px;}
.y52{bottom:694.080000px;}
.y81{bottom:695.280000px;}
.y10a{bottom:705.780000px;}
.yb4{bottom:706.080000px;}
.ye9{bottom:707.280000px;}
.y51{bottom:712.695000px;}
.ycc{bottom:713.880000px;}
.y109{bottom:724.380000px;}
.yb3{bottom:724.680000px;}
.y80{bottom:725.880000px;}
.y50{bottom:731.280000px;}
.y7f{bottom:744.480000px;}
.yb2{bottom:755.280000px;}
.y108{bottom:755.880000px;}
.y4f{bottom:761.880000px;}
.y7e{bottom:763.080000px;}
.yb1{bottom:773.880000px;}
.y107{bottom:774.795000px;}
.ye8{bottom:775.080000px;}
.y4e{bottom:780.480000px;}
.y7d{bottom:781.695000px;}
.yb0{bottom:792.480000px;}
.ycb{bottom:793.695000px;}
.y4d{bottom:799.080000px;}
.y106{bottom:806.280000px;}
.yaf{bottom:811.080000px;}
.y7c{bottom:811.980000px;}
.ye7{bottom:812.295000px;}
.y4c{bottom:817.695000px;}
.yca{bottom:824.295000px;}
.yae{bottom:829.695000px;}
.ye6{bottom:830.880000px;}
.y4b{bottom:836.295000px;}
.y105{bottom:838.080000px;}
.y7b{bottom:842.880000px;}
.yad{bottom:848.325000px;}
.y4a{bottom:854.925000px;}
.y104{bottom:857.025000px;}
.y7a{bottom:861.525000px;}
.yac{bottom:866.925000px;}
.y49{bottom:873.525000px;}
.y103{bottom:878.325000px;}
.y79{bottom:880.125000px;}
.yab{bottom:885.525000px;}
.y78{bottom:898.725000px;}
.y48{bottom:904.125000px;}
.y102{bottom:909.825000px;}
.ye5{bottom:910.725000px;}
.y77{bottom:917.325000px;}
.y47{bottom:922.725000px;}
.y101{bottom:928.725000px;}
.ye4{bottom:929.325000px;}
.yaa{bottom:934.725000px;}
.y46{bottom:941.325000px;}
.y76{bottom:947.925000px;}
.ya9{bottom:953.325000px;}
.y45{bottom:959.925000px;}
.y100{bottom:960.225000px;}
.y75{bottom:966.525000px;}
.ya8{bottom:971.925000px;}
.yc9{bottom:978.225000px;}
.y44{bottom:978.525000px;}
.yff{bottom:978.825000px;}
.y74{bottom:985.125000px;}
.yc{bottom:987.225000px;}
.ya7{bottom:990.525000px;}
.y43{bottom:997.125000px;}
.yb{bottom:1007.625000px;}
.ya6{bottom:1009.125000px;}
.yfe{bottom:1010.025000px;}
.y42{bottom:1015.755000px;}
.ya5{bottom:1027.755000px;}
.ya{bottom:1028.355000px;}
.y41{bottom:1034.355000px;}
.yfd{bottom:1040.670000px;}
.yc8{bottom:1046.370000px;}
.y9{bottom:1048.455000px;}
.y40{bottom:1052.955000px;}
.ya4{bottom:1058.355000px;}
.y73{bottom:1064.955000px;}
.y8{bottom:1067.070000px;}
.y3f{bottom:1071.570000px;}
.ya3{bottom:1076.955000px;}
.y72{bottom:1083.570000px;}
.y7{bottom:1086.255000px;}
.yfc{bottom:1090.455000px;}
.ya2{bottom:1095.570000px;}
.y3e{bottom:1102.170000px;}
.y71{bottom:1102.455000px;}
.yfb{bottom:1109.070000px;}
.ya1{bottom:1114.455000px;}
.y70{bottom:1121.070000px;}
.y6{bottom:1130.955000px;}
.y3d{bottom:1133.070000px;}
.yfa{bottom:1139.655000px;}
.y3c{bottom:1151.655000px;}
.yf9{bottom:1158.255000px;}
.y3b{bottom:1170.255000px;}
.y5{bottom:1175.655000px;}
.y3a{bottom:1188.900000px;}
.y39{bottom:1207.500000px;}
.y1{bottom:1237.800000px;}
.h3{height:19.500000px;}
.h4{height:29.838867px;}
.h7{height:38.865234px;}
.hf{height:41.894531px;}
.h6{height:42.515625px;}
.h8{height:43.175391px;}
.h2{height:50.800781px;}
.ha{height:58.857422px;}
.hb{height:58.886719px;}
.he{height:60.468750px;}
.h10{height:61.670545px;}
.hc{height:64.775391px;}
.hd{height:65.645508px;}
.h5{height:145.125000px;}
.h9{height:433.875000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w5{width:54.337500px;}
.w3{width:138.037500px;}
.w4{width:566.850000px;}
.w6{width:794.370000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:8.100000px;}
.x7{left:10.530000px;}
.x3{left:23.700000px;}
.x10{left:39.300000px;}
.x8{left:47.399987px;}
.x5{left:52.800000px;}
.x2{left:62.137500px;}
.x17{left:74.437487px;}
.x12{left:101.437487px;}
.x9{left:113.737487px;}
.x13{left:153.629987px;}
.x14{left:155.429987px;}
.x16{left:163.229987px;}
.x4{left:200.775000px;}
.x15{left:209.474987px;}
.xa{left:258.374987px;}
.xd{left:280.274987px;}
.xc{left:284.174987px;}
.xe{left:289.274987px;}
.xb{left:315.419987px;}
.xf{left:405.404987px;}
.x1{left:415.949987px;}
.x6{left:768.225000px;}
@media print{
.v1{vertical-align:-21.333333pt;}
.v3{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:19.200000pt;}
.v2{vertical-align:21.333333pt;}
.lsa{letter-spacing:-1.066667pt;}
.ls8{letter-spacing:-0.960000pt;}
.lsb{letter-spacing:-0.213333pt;}
.ls5{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.234667pt;}
.ls4{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.373333pt;}
.ls1{letter-spacing:0.533333pt;}
.ls6{letter-spacing:1.040000pt;}
.ls9{letter-spacing:1.066667pt;}
.ls7{letter-spacing:2.666667pt;}
.lse{letter-spacing:56.640000pt;}
.lsd{letter-spacing:164.533333pt;}
.wsb{word-spacing:-53.333333pt;}
.ws4{word-spacing:-14.666667pt;}
.wsa{word-spacing:-14.400000pt;}
.ws8{word-spacing:-13.706667pt;}
.wsc{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.333333pt;}
.ws9{word-spacing:-13.120000pt;}
.ws7{word-spacing:-12.373333pt;}
.ws1{word-spacing:-12.053333pt;}
.ws0{word-spacing:-11.733333pt;}
.ws2{word-spacing:-9.866667pt;}
.ws3{word-spacing:-8.800000pt;}
.ws5{word-spacing:0.000000pt;}
._f{margin-left:-6.933333pt;}
._c{margin-left:-2.954667pt;}
._3{margin-left:-1.984000pt;}
._1{margin-left:-1.066667pt;}
._0{width:0.960000pt;}
._2{width:2.133333pt;}
._6{width:3.392000pt;}
._7{width:4.426667pt;}
._b{width:5.674667pt;}
._5{width:7.221333pt;}
._9{width:8.138667pt;}
._4{width:9.301333pt;}
._a{width:10.432000pt;}
._e{width:11.520000pt;}
._17{width:12.437333pt;}
._8{width:15.125333pt;}
._d{width:16.032000pt;}
._13{width:17.184000pt;}
._12{width:18.240000pt;}
._10{width:19.210667pt;}
._11{width:20.736000pt;}
._16{width:22.090667pt;}
._19{width:31.626667pt;}
._18{width:32.960000pt;}
._1a{width:34.133333pt;}
._15{width:116.640000pt;}
._1b{width:132.426667pt;}
._14{width:166.026667pt;}
.fs1{font-size:26.666667pt;}
.fs5{font-size:35.200000pt;}
.fs3{font-size:37.333333pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:1.633333pt;}
.y3{bottom:4.800000pt;}
.y2{bottom:8.566667pt;}
.ya0{bottom:30.166667pt;}
.ye3{bottom:36.033333pt;}
.yf8{bottom:41.900000pt;}
.y38{bottom:44.300000pt;}
.yc7{bottom:45.633333pt;}
.y9f{bottom:46.700000pt;}
.ye2{bottom:52.566667pt;}
.y20{bottom:52.800000pt;}
.y37{bottom:60.833333pt;}
.yc6{bottom:62.166667pt;}
.y121{bottom:62.433333pt;}
.y9e{bottom:63.233333pt;}
.ye1{bottom:69.100000pt;}
.y1f{bottom:69.600000pt;}
.y6f{bottom:72.833333pt;}
.y36{bottom:77.366667pt;}
.yc5{bottom:78.700000pt;}
.y9d{bottom:79.766667pt;}
.ye0{bottom:85.633333pt;}
.y6e{bottom:89.366667pt;}
.y120{bottom:90.700000pt;}
.yc4{bottom:95.233333pt;}
.y9c{bottom:96.300000pt;}
.y1e{bottom:98.133333pt;}
.ydf{bottom:102.166667pt;}
.y35{bottom:104.566667pt;}
.y6d{bottom:105.900000pt;}
.yc3{bottom:111.766667pt;}
.y9b{bottom:112.833333pt;}
.y1d{bottom:114.666667pt;}
.yde{bottom:118.700000pt;}
.y34{bottom:121.100000pt;}
.yf7{bottom:129.366667pt;}
.y1c{bottom:131.240000pt;}
.y6c{bottom:133.100000pt;}
.y11f{bottom:135.493333pt;}
.y33{bottom:137.626667pt;}
.yc2{bottom:138.706667pt;}
.y9a{bottom:139.773333pt;}
.ydd{bottom:146.160000pt;}
.y1b{bottom:147.760000pt;}
.y6b{bottom:149.626667pt;}
.y32{bottom:154.200000pt;}
.yf6{bottom:156.866667pt;}
.ydc{bottom:162.733333pt;}
.y11e{bottom:163.533333pt;}
.y1a{bottom:164.293333pt;}
.y6a{bottom:166.200000pt;}
.y99{bottom:167.533333pt;}
.y31{bottom:170.733333pt;}
.yf5{bottom:173.400000pt;}
.ydb{bottom:179.266667pt;}
.y11d{bottom:180.066667pt;}
.y19{bottom:180.840000pt;}
.y69{bottom:182.733333pt;}
.y98{bottom:184.066667pt;}
.y30{bottom:187.266667pt;}
.yda{bottom:195.800000pt;}
.y11c{bottom:196.600000pt;}
.y18{bottom:197.373333pt;}
.yc1{bottom:199.533333pt;}
.yf4{bottom:200.333333pt;}
.y97{bottom:200.600000pt;}
.y2f{bottom:203.800000pt;}
.y68{bottom:210.200000pt;}
.yd9{bottom:212.333333pt;}
.y17{bottom:213.906667pt;}
.y96{bottom:217.133333pt;}
.y2e{bottom:220.333333pt;}
.y11b{bottom:224.600000pt;}
.y67{bottom:226.733333pt;}
.yf3{bottom:227.800000pt;}
.y16{bottom:230.440000pt;}
.y95{bottom:233.666667pt;}
.y2d{bottom:236.866667pt;}
.yd8{bottom:239.533333pt;}
.y11a{bottom:241.133333pt;}
.y66{bottom:243.266667pt;}
.yf2{bottom:244.333333pt;}
.y15{bottom:246.960000pt;}
.y2c{bottom:253.400000pt;}
.yd7{bottom:256.066667pt;}
.y119{bottom:257.933333pt;}
.y65{bottom:259.800000pt;}
.y94{bottom:260.866667pt;}
.y14{bottom:263.773333pt;}
.y2b{bottom:269.933333pt;}
.yc0{bottom:270.466667pt;}
.y64{bottom:276.333333pt;}
.y93{bottom:277.400000pt;}
.y13{bottom:280.333333pt;}
.yd6{bottom:283.266667pt;}
.y118{bottom:286.200000pt;}
.y2a{bottom:286.466667pt;}
.ybf{bottom:287.000000pt;}
.y63{bottom:292.866667pt;}
.y92{bottom:293.933333pt;}
.y12{bottom:296.866667pt;}
.yd5{bottom:299.800000pt;}
.y29{bottom:303.026667pt;}
.ybe{bottom:303.560000pt;}
.yf1{bottom:310.506667pt;}
.y11{bottom:313.400000pt;}
.y117{bottom:314.226667pt;}
.yd4{bottom:316.373333pt;}
.y28{bottom:319.560000pt;}
.y62{bottom:319.840000pt;}
.y91{bottom:321.160000pt;}
.y10{bottom:329.933333pt;}
.y116{bottom:330.493333pt;}
.ybd{bottom:330.773333pt;}
.yd3{bottom:332.893333pt;}
.y27{bottom:336.093333pt;}
.y90{bottom:337.693333pt;}
.yf{bottom:346.466667pt;}
.y61{bottom:347.293333pt;}
.y26{bottom:352.626667pt;}
.y8f{bottom:354.226667pt;}
.y115{bottom:358.760000pt;}
.yd2{bottom:359.840000pt;}
.y60{bottom:363.840000pt;}
.y25{bottom:369.173333pt;}
.y8e{bottom:370.760000pt;}
.ye{bottom:373.400000pt;}
.ybc{bottom:374.506667pt;}
.y114{bottom:375.560000pt;}
.yd1{bottom:376.360000pt;}
.y24{bottom:385.960000pt;}
.y8d{bottom:387.293333pt;}
.y5f{bottom:390.773333pt;}
.ybb{bottom:391.026667pt;}
.y23{bottom:402.506667pt;}
.yd0{bottom:403.560000pt;}
.yf0{bottom:403.840000pt;}
.yba{bottom:407.560000pt;}
.y8c{bottom:414.506667pt;}
.y5e{bottom:418.226667pt;}
.y113{bottom:420.360000pt;}
.y22{bottom:429.440000pt;}
.y8b{bottom:431.040000pt;}
.y5d{bottom:434.773333pt;}
.y8a{bottom:447.560000pt;}
.y112{bottom:448.360000pt;}
.y5c{bottom:451.333333pt;}
.y21{bottom:457.733333pt;}
.y89{bottom:464.133333pt;}
.y5b{bottom:467.866667pt;}
.yd{bottom:471.600000pt;}
.y111{bottom:476.400000pt;}
.y88{bottom:480.666667pt;}
.y5a{bottom:484.400000pt;}
.y110{bottom:492.933333pt;}
.y87{bottom:497.200000pt;}
.y59{bottom:500.933333pt;}
.yef{bottom:507.600000pt;}
.ycf{bottom:507.866667pt;}
.y10f{bottom:509.733333pt;}
.y86{bottom:513.733333pt;}
.y58{bottom:517.466667pt;}
.yce{bottom:524.400000pt;}
.y85{bottom:530.266667pt;}
.y57{bottom:534.000000pt;}
.yee{bottom:535.066667pt;}
.y10e{bottom:537.733333pt;}
.ycd{bottom:540.933333pt;}
.yb9{bottom:544.666667pt;}
.y56{bottom:550.533333pt;}
.yed{bottom:551.600000pt;}
.y10d{bottom:554.533333pt;}
.y84{bottom:557.733333pt;}
.yb8{bottom:561.200000pt;}
.y55{bottom:567.066667pt;}
.yec{bottom:568.400000pt;}
.yb7{bottom:577.733333pt;}
.y10c{bottom:582.533333pt;}
.y54{bottom:583.600000pt;}
.y83{bottom:584.933333pt;}
.yb6{bottom:594.266667pt;}
.yeb{bottom:595.600000pt;}
.y10b{bottom:599.066667pt;}
.y53{bottom:600.400000pt;}
.y82{bottom:601.506667pt;}
.yb5{bottom:611.093333pt;}
.yea{bottom:612.173333pt;}
.y52{bottom:616.960000pt;}
.y81{bottom:618.026667pt;}
.y10a{bottom:627.360000pt;}
.yb4{bottom:627.626667pt;}
.ye9{bottom:628.693333pt;}
.y51{bottom:633.506667pt;}
.ycc{bottom:634.560000pt;}
.y109{bottom:643.893333pt;}
.yb3{bottom:644.160000pt;}
.y80{bottom:645.226667pt;}
.y50{bottom:650.026667pt;}
.y7f{bottom:661.760000pt;}
.yb2{bottom:671.360000pt;}
.y108{bottom:671.893333pt;}
.y4f{bottom:677.226667pt;}
.y7e{bottom:678.293333pt;}
.yb1{bottom:687.893333pt;}
.y107{bottom:688.706667pt;}
.ye8{bottom:688.960000pt;}
.y4e{bottom:693.760000pt;}
.y7d{bottom:694.840000pt;}
.yb0{bottom:704.426667pt;}
.ycb{bottom:705.506667pt;}
.y4d{bottom:710.293333pt;}
.y106{bottom:716.693333pt;}
.yaf{bottom:720.960000pt;}
.y7c{bottom:721.760000pt;}
.ye7{bottom:722.040000pt;}
.y4c{bottom:726.840000pt;}
.yca{bottom:732.706667pt;}
.yae{bottom:737.506667pt;}
.ye6{bottom:738.560000pt;}
.y4b{bottom:743.373333pt;}
.y105{bottom:744.960000pt;}
.y7b{bottom:749.226667pt;}
.yad{bottom:754.066667pt;}
.y4a{bottom:759.933333pt;}
.y104{bottom:761.800000pt;}
.y7a{bottom:765.800000pt;}
.yac{bottom:770.600000pt;}
.y49{bottom:776.466667pt;}
.y103{bottom:780.733333pt;}
.y79{bottom:782.333333pt;}
.yab{bottom:787.133333pt;}
.y78{bottom:798.866667pt;}
.y48{bottom:803.666667pt;}
.y102{bottom:808.733333pt;}
.ye5{bottom:809.533333pt;}
.y77{bottom:815.400000pt;}
.y47{bottom:820.200000pt;}
.y101{bottom:825.533333pt;}
.ye4{bottom:826.066667pt;}
.yaa{bottom:830.866667pt;}
.y46{bottom:836.733333pt;}
.y76{bottom:842.600000pt;}
.ya9{bottom:847.400000pt;}
.y45{bottom:853.266667pt;}
.y100{bottom:853.533333pt;}
.y75{bottom:859.133333pt;}
.ya8{bottom:863.933333pt;}
.yc9{bottom:869.533333pt;}
.y44{bottom:869.800000pt;}
.yff{bottom:870.066667pt;}
.y74{bottom:875.666667pt;}
.yc{bottom:877.533333pt;}
.ya7{bottom:880.466667pt;}
.y43{bottom:886.333333pt;}
.yb{bottom:895.666667pt;}
.ya6{bottom:897.000000pt;}
.yfe{bottom:897.800000pt;}
.y42{bottom:902.893333pt;}
.ya5{bottom:913.560000pt;}
.ya{bottom:914.093333pt;}
.y41{bottom:919.426667pt;}
.yfd{bottom:925.040000pt;}
.yc8{bottom:930.106667pt;}
.y9{bottom:931.960000pt;}
.y40{bottom:935.960000pt;}
.ya4{bottom:940.760000pt;}
.y73{bottom:946.626667pt;}
.y8{bottom:948.506667pt;}
.y3f{bottom:952.506667pt;}
.ya3{bottom:957.293333pt;}
.y72{bottom:963.173333pt;}
.y7{bottom:965.560000pt;}
.yfc{bottom:969.293333pt;}
.ya2{bottom:973.840000pt;}
.y3e{bottom:979.706667pt;}
.y71{bottom:979.960000pt;}
.yfb{bottom:985.840000pt;}
.ya1{bottom:990.626667pt;}
.y70{bottom:996.506667pt;}
.y6{bottom:1005.293333pt;}
.y3d{bottom:1007.173333pt;}
.yfa{bottom:1013.026667pt;}
.y3c{bottom:1023.693333pt;}
.yf9{bottom:1029.560000pt;}
.y3b{bottom:1040.226667pt;}
.y5{bottom:1045.026667pt;}
.y3a{bottom:1056.800000pt;}
.y39{bottom:1073.333333pt;}
.y1{bottom:1100.266667pt;}
.h3{height:17.333333pt;}
.h4{height:26.523438pt;}
.h7{height:34.546875pt;}
.hf{height:37.239583pt;}
.h6{height:37.791667pt;}
.h8{height:38.378125pt;}
.h2{height:45.156250pt;}
.ha{height:52.317708pt;}
.hb{height:52.343750pt;}
.he{height:53.750000pt;}
.h10{height:54.818262pt;}
.hc{height:57.578125pt;}
.hd{height:58.351562pt;}
.h5{height:129.000000pt;}
.h9{height:385.666667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w5{width:48.300000pt;}
.w3{width:122.700000pt;}
.w4{width:503.866667pt;}
.w6{width:706.106667pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:7.200000pt;}
.x7{left:9.360000pt;}
.x3{left:21.066667pt;}
.x10{left:34.933333pt;}
.x8{left:42.133322pt;}
.x5{left:46.933333pt;}
.x2{left:55.233333pt;}
.x17{left:66.166655pt;}
.x12{left:90.166655pt;}
.x9{left:101.099988pt;}
.x13{left:136.559988pt;}
.x14{left:138.159988pt;}
.x16{left:145.093322pt;}
.x4{left:178.466667pt;}
.x15{left:186.199988pt;}
.xa{left:229.666655pt;}
.xd{left:249.133322pt;}
.xc{left:252.599988pt;}
.xe{left:257.133322pt;}
.xb{left:280.373322pt;}
.xf{left:360.359988pt;}
.x1{left:369.733322pt;}
.x6{left:682.866667pt;}
}




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