
    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_3ae19e5ccbd8c731b8a70122.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_ffc1a49389117b6cd987baaf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.085000;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_518f678b9965c7c027c8f9c1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.715000;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_4bb98e97a1ac0a78ffb83970.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.731445;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_e5499b6785bbe8c6f14ff3b9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_428beafd8e70ab2a3b4bf587.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d612c13b41334e4d1d9176b5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_de57fb643d68ea4d4349cdfc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.364258;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_24179e3284c68fdd3c4f6664.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_52ab86c3054a4b9a291f96fc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.075000;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;}
.v1{vertical-align:26.778600px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:2.730000px;}
.ls0{letter-spacing:3.570000px;}
.ls2{letter-spacing:3.588000px;}
.ls3{letter-spacing:8.112000px;}
.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;}
}
.wsd{word-spacing:-19.500000px;}
.ws8{word-spacing:-11.368500px;}
.ws4{word-spacing:-7.446000px;}
.ws17{word-spacing:-7.410000px;}
.ws10{word-spacing:-3.744000px;}
.ws5{word-spacing:-3.570000px;}
.ws18{word-spacing:-3.276000px;}
.ws20{word-spacing:-3.198000px;}
.ws15{word-spacing:-2.730000px;}
.ws16{word-spacing:-2.340000px;}
.ws3{word-spacing:-1.734000px;}
.ws14{word-spacing:-1.092000px;}
.wsc{word-spacing:-0.546000px;}
.ws0{word-spacing:0.000000px;}
.ws9{word-spacing:0.390000px;}
.ws7{word-spacing:1.794000px;}
.ws11{word-spacing:4.212000px;}
.ws21{word-spacing:5.070000px;}
.ws1b{word-spacing:6.318000px;}
.ws13{word-spacing:7.332000px;}
.ws12{word-spacing:7.566000px;}
.ws1d{word-spacing:7.644000px;}
.ws1e{word-spacing:8.112000px;}
.ws23{word-spacing:8.970000px;}
.wsa{word-spacing:9.906000px;}
.ws1c{word-spacing:10.920000px;}
.ws6{word-spacing:11.466000px;}
.wse{word-spacing:12.480000px;}
.wsf{word-spacing:12.558000px;}
.ws19{word-spacing:14.040000px;}
.wsb{word-spacing:14.352000px;}
.ws1f{word-spacing:15.366000px;}
.ws22{word-spacing:15.912000px;}
.ws1a{word-spacing:20.670000px;}
.ws2{word-spacing:23.256000px;}
.ws1{word-spacing:112.404000px;}
._17{margin-left:-10.974000px;}
._e{margin-left:-9.870000px;}
._4{margin-left:-8.796000px;}
._2{margin-left:-7.344000px;}
._16{margin-left:-6.330000px;}
._0{margin-left:-5.328000px;}
._3{margin-left:-4.158000px;}
._1{margin-left:-2.664000px;}
._6{margin-left:-1.008000px;}
._8{width:1.872000px;}
._b{width:2.880000px;}
._c{width:4.062000px;}
._5{width:5.556000px;}
._7{width:7.254000px;}
._11{width:8.268000px;}
._d{width:9.438000px;}
._9{width:11.310000px;}
._13{width:13.182000px;}
._f{width:14.586000px;}
._12{width:16.068000px;}
._a{width:17.472000px;}
._15{width:18.486000px;}
._10{width:21.060000px;}
._14{width:24.804000px;}
._18{width:26.676000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:45.474000px;}
.fs4{font-size:48.000000px;}
.fs1{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:2.526000px;}
.y1a{bottom:40.800110px;}
.ycf{bottom:105.478350px;}
.y19{bottom:115.973250px;}
.yc8{bottom:118.231350px;}
.y5a{bottom:118.819200px;}
.y3c{bottom:122.755350px;}
.ya8{bottom:132.485850px;}
.y107{bottom:132.800100px;}
.y18{bottom:142.980750px;}
.yea{bottom:143.737350px;}
.yc7{bottom:145.238850px;}
.y59{bottom:145.813200px;}
.y7a{bottom:148.818750px;}
.y9f{bottom:149.160450px;}
.y3b{bottom:149.762850px;}
.y11f{bottom:158.552100px;}
.ya7{bottom:159.493350px;}
.y106{bottom:159.807600px;}
.y17{bottom:169.988250px;}
.ye9{bottom:170.744850px;}
.y9e{bottom:170.758950px;}
.yc6{bottom:172.246350px;}
.y58{bottom:172.807200px;}
.y3a{bottom:176.770350px;}
.y11e{bottom:185.559600px;}
.ya6{bottom:186.500850px;}
.y105{bottom:186.815100px;}
.y16{bottom:196.995750px;}
.ye8{bottom:197.752350px;}
.yc5{bottom:199.253850px;}
.y57{bottom:199.801200px;}
.y39{bottom:203.777850px;}
.y9d{bottom:212.370750px;}
.ya5{bottom:213.508350px;}
.y79{bottom:213.530850px;}
.y104{bottom:213.822600px;}
.y15{bottom:224.003250px;}
.ye7{bottom:224.759850px;}
.yc4{bottom:226.261350px;}
.y56{bottom:226.795200px;}
.y38{bottom:230.785350px;}
.y9c{bottom:239.378250px;}
.y11d{bottom:239.555100px;}
.ya4{bottom:240.515850px;}
.y78{bottom:240.538350px;}
.y103{bottom:240.830100px;}
.y14{bottom:251.010750px;}
.ye6{bottom:251.767350px;}
.yc3{bottom:253.268850px;}
.y37{bottom:257.792850px;}
.y9b{bottom:266.385750px;}
.y11c{bottom:266.562600px;}
.ya3{bottom:267.523350px;}
.y77{bottom:267.545850px;}
.y55{bottom:267.724500px;}
.y102{bottom:267.837600px;}
.y13{bottom:278.018250px;}
.ye5{bottom:278.774850px;}
.yc2{bottom:280.276350px;}
.y36{bottom:284.800350px;}
.y9a{bottom:293.393250px;}
.ya2{bottom:294.530850px;}
.y76{bottom:294.553350px;}
.y54{bottom:294.732000px;}
.y101{bottom:294.845100px;}
.y12{bottom:305.025750px;}
.ye4{bottom:305.782350px;}
.yc1{bottom:307.283850px;}
.y35{bottom:311.807850px;}
.y99{bottom:320.400750px;}
.y11b{bottom:320.558100px;}
.ya1{bottom:321.538350px;}
.y75{bottom:321.560850px;}
.y53{bottom:321.739500px;}
.y11{bottom:332.033250px;}
.ye3{bottom:332.789850px;}
.yc0{bottom:334.291350px;}
.y100{bottom:334.605600px;}
.y34{bottom:338.815350px;}
.y98{bottom:347.408250px;}
.y11a{bottom:347.565600px;}
.y52{bottom:348.545850px;}
.y74{bottom:348.568350px;}
.y10{bottom:359.040750px;}
.ye2{bottom:359.797350px;}
.ybf{bottom:361.298850px;}
.yff{bottom:361.613100px;}
.y33{bottom:365.822850px;}
.y97{bottom:374.415750px;}
.y119{bottom:374.573100px;}
.y51{bottom:375.553350px;}
.y73{bottom:375.575850px;}
.yf{bottom:386.048250px;}
.ye1{bottom:386.804850px;}
.ya0{bottom:388.306350px;}
.yfe{bottom:388.620600px;}
.y32{bottom:392.830350px;}
.y96{bottom:401.423250px;}
.yce{bottom:402.560850px;}
.y72{bottom:402.583350px;}
.ye{bottom:413.055750px;}
.ye0{bottom:413.812350px;}
.y50{bottom:415.313850px;}
.yfd{bottom:415.628100px;}
.y31{bottom:419.837850px;}
.y95{bottom:428.430750px;}
.y118{bottom:428.573100px;}
.ycd{bottom:429.568350px;}
.y71{bottom:429.590850px;}
.ydf{bottom:440.819850px;}
.y4f{bottom:442.321350px;}
.yfc{bottom:442.635600px;}
.y30{bottom:446.845350px;}
.yd{bottom:452.816250px;}
.ybe{bottom:455.074350px;}
.y94{bottom:455.438250px;}
.y117{bottom:455.525100px;}
.ycc{bottom:456.575850px;}
.y70{bottom:456.598350px;}
.yde{bottom:467.827350px;}
.y4e{bottom:469.328850px;}
.yfb{bottom:469.643100px;}
.y2f{bottom:473.852850px;}
.ybd{bottom:482.081850px;}
.y93{bottom:482.445750px;}
.y116{bottom:482.532600px;}
.ycb{bottom:483.583350px;}
.y6f{bottom:483.605850px;}
.ydd{bottom:494.834850px;}
.y12f{bottom:494.995350px;}
.y4d{bottom:496.336350px;}
.yfa{bottom:496.650600px;}
.y2e{bottom:500.860350px;}
.yc{bottom:506.811750px;}
.ybc{bottom:509.089350px;}
.y92{bottom:509.453250px;}
.yca{bottom:510.590850px;}
.y6e{bottom:510.613350px;}
.ydc{bottom:521.842350px;}
.y12e{bottom:522.002850px;}
.y4c{bottom:523.343850px;}
.yf9{bottom:523.658100px;}
.yb{bottom:533.819250px;}
.ybb{bottom:536.096850px;}
.y91{bottom:536.460750px;}
.y115{bottom:536.528100px;}
.y6d{bottom:537.620850px;}
.y2d{bottom:540.620850px;}
.ydb{bottom:548.849850px;}
.y4b{bottom:550.351350px;}
.yf8{bottom:550.665600px;}
.yba{bottom:563.104350px;}
.y90{bottom:563.468250px;}
.y114{bottom:563.535600px;}
.y6c{bottom:564.628350px;}
.yda{bottom:575.857350px;}
.y12d{bottom:575.998350px;}
.y4a{bottom:577.358850px;}
.yf7{bottom:577.673100px;}
.ya{bottom:587.838750px;}
.yb9{bottom:590.111850px;}
.y8f{bottom:590.475750px;}
.y113{bottom:590.543100px;}
.yd9{bottom:602.864850px;}
.y12c{bottom:603.005850px;}
.y49{bottom:604.366350px;}
.y6b{bottom:604.388850px;}
.yf6{bottom:604.680600px;}
.yb8{bottom:617.119350px;}
.y8e{bottom:617.483250px;}
.y9{bottom:619.331250px;}
.yd8{bottom:629.872350px;}
.y48{bottom:631.373850px;}
.y6a{bottom:631.396350px;}
.yf5{bottom:631.688100px;}
.yb7{bottom:644.126850px;}
.y8d{bottom:644.490750px;}
.y112{bottom:644.538600px;}
.y8{bottom:650.823750px;}
.yd7{bottom:656.879850px;}
.y12b{bottom:657.001350px;}
.y47{bottom:658.381350px;}
.y69{bottom:658.403850px;}
.y2c{bottom:659.882850px;}
.yb6{bottom:671.134350px;}
.yf4{bottom:671.448600px;}
.y8c{bottom:671.498250px;}
.y111{bottom:671.546100px;}
.yd6{bottom:683.887350px;}
.y46{bottom:685.388850px;}
.y68{bottom:685.411350px;}
.yb5{bottom:698.141850px;}
.yf3{bottom:698.456100px;}
.y8b{bottom:698.505750px;}
.y2b{bottom:699.643350px;}
.yd5{bottom:710.894850px;}
.y12a{bottom:710.996850px;}
.y45{bottom:712.396350px;}
.y67{bottom:712.418850px;}
.y7{bottom:713.834250px;}
.yb4{bottom:725.149350px;}
.yf2{bottom:725.463600px;}
.y8a{bottom:725.513250px;}
.y110{bottom:725.541600px;}
.yd4{bottom:737.902350px;}
.y129{bottom:738.004350px;}
.y2a{bottom:739.403850px;}
.y66{bottom:739.426350px;}
.y6{bottom:745.326750px;}
.yb3{bottom:752.156850px;}
.yf1{bottom:752.471100px;}
.y89{bottom:752.520750px;}
.y10f{bottom:752.549100px;}
.yd3{bottom:764.909850px;}
.y128{bottom:765.011850px;}
.y29{bottom:766.411350px;}
.y65{bottom:766.433850px;}
.y5{bottom:776.819250px;}
.yb2{bottom:779.164350px;}
.yf0{bottom:779.478600px;}
.y88{bottom:779.528250px;}
.y10e{bottom:779.556600px;}
.yd2{bottom:791.917350px;}
.y28{bottom:793.418850px;}
.yb1{bottom:806.171850px;}
.y64{bottom:806.194350px;}
.yef{bottom:806.486100px;}
.y87{bottom:806.535750px;}
.yd1{bottom:818.924850px;}
.y127{bottom:819.007350px;}
.y27{bottom:820.426350px;}
.yb0{bottom:833.179350px;}
.y63{bottom:833.201850px;}
.yee{bottom:833.493600px;}
.y86{bottom:833.543250px;}
.y10d{bottom:833.552100px;}
.yd0{bottom:845.932350px;}
.y126{bottom:846.007350px;}
.y26{bottom:847.433850px;}
.yc9{bottom:860.186850px;}
.yed{bottom:860.501100px;}
.y85{bottom:860.550750px;}
.y10c{bottom:860.559600px;}
.yaf{bottom:872.939850px;}
.y62{bottom:872.962350px;}
.y125{bottom:873.014850px;}
.y25{bottom:874.441350px;}
.y44{bottom:887.194350px;}
.yec{bottom:887.508600px;}
.y84{bottom:887.558250px;}
.yae{bottom:899.947350px;}
.y61{bottom:899.969850px;}
.y24{bottom:901.448850px;}
.y43{bottom:914.201850px;}
.yeb{bottom:914.516100px;}
.y10b{bottom:914.555100px;}
.y83{bottom:914.565750px;}
.yad{bottom:926.954850px;}
.y60{bottom:926.977350px;}
.y124{bottom:926.993850px;}
.y23{bottom:928.456350px;}
.y42{bottom:941.209350px;}
.y82{bottom:941.523600px;}
.y10a{bottom:941.562600px;}
.y4{bottom:950.830950px;}
.yac{bottom:953.962350px;}
.y5f{bottom:953.984850px;}
.y123{bottom:954.001350px;}
.y22{bottom:955.463850px;}
.y41{bottom:968.216850px;}
.y81{bottom:968.531100px;}
.yab{bottom:980.969850px;}
.y5e{bottom:980.992350px;}
.y122{bottom:981.008850px;}
.y21{bottom:982.471350px;}
.y40{bottom:995.224350px;}
.y80{bottom:995.538600px;}
.y109{bottom:995.558100px;}
.yaa{bottom:1007.977350px;}
.y5d{bottom:1007.999850px;}
.y20{bottom:1009.478850px;}
.y3{bottom:1013.830950px;}
.y3f{bottom:1022.231850px;}
.y7f{bottom:1022.546100px;}
.y108{bottom:1022.565600px;}
.ya9{bottom:1034.984850px;}
.y121{bottom:1035.004350px;}
.y5c{bottom:1035.007350px;}
.y1f{bottom:1036.486350px;}
.y3e{bottom:1049.239350px;}
.y7e{bottom:1049.553600px;}
.y5b{bottom:1061.992350px;}
.y120{bottom:1062.011850px;}
.y1e{bottom:1076.246850px;}
.y7d{bottom:1076.561100px;}
.y2{bottom:1078.630950px;}
.y3d{bottom:1088.999850px;}
.y7c{bottom:1103.568600px;}
.y1d{bottom:1116.007350px;}
.y1{bottom:1121.830950px;}
.y1c{bottom:1143.014850px;}
.y7b{bottom:1143.329100px;}
.h7{height:13.200074px;}
.h8{height:49.898438px;}
.h3{height:50.460000px;}
.h2{height:52.417969px;}
.ha{height:57.911133px;}
.h6{height:68.440430px;}
.hd{height:68.470430px;}
.hb{height:68.530430px;}
.hc{height:68.639030px;}
.h9{height:69.245030px;}
.h5{height:69.278320px;}
.h4{height:90.594727px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:13.348500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:106.299150px;}
.x2{left:239.854650px;}
.x1{left:242.374650px;}
.x4{left:404.465700px;}
.x5{left:439.782761px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.803200pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:2.426667pt;}
.ls0{letter-spacing:3.173333pt;}
.ls2{letter-spacing:3.189333pt;}
.ls3{letter-spacing:7.210667pt;}
.wsd{word-spacing:-17.333333pt;}
.ws8{word-spacing:-10.105333pt;}
.ws4{word-spacing:-6.618667pt;}
.ws17{word-spacing:-6.586667pt;}
.ws10{word-spacing:-3.328000pt;}
.ws5{word-spacing:-3.173333pt;}
.ws18{word-spacing:-2.912000pt;}
.ws20{word-spacing:-2.842667pt;}
.ws15{word-spacing:-2.426667pt;}
.ws16{word-spacing:-2.080000pt;}
.ws3{word-spacing:-1.541333pt;}
.ws14{word-spacing:-0.970667pt;}
.wsc{word-spacing:-0.485333pt;}
.ws0{word-spacing:0.000000pt;}
.ws9{word-spacing:0.346667pt;}
.ws7{word-spacing:1.594667pt;}
.ws11{word-spacing:3.744000pt;}
.ws21{word-spacing:4.506667pt;}
.ws1b{word-spacing:5.616000pt;}
.ws13{word-spacing:6.517333pt;}
.ws12{word-spacing:6.725333pt;}
.ws1d{word-spacing:6.794667pt;}
.ws1e{word-spacing:7.210667pt;}
.ws23{word-spacing:7.973333pt;}
.wsa{word-spacing:8.805333pt;}
.ws1c{word-spacing:9.706667pt;}
.ws6{word-spacing:10.192000pt;}
.wse{word-spacing:11.093333pt;}
.wsf{word-spacing:11.162667pt;}
.ws19{word-spacing:12.480000pt;}
.wsb{word-spacing:12.757333pt;}
.ws1f{word-spacing:13.658667pt;}
.ws22{word-spacing:14.144000pt;}
.ws1a{word-spacing:18.373333pt;}
.ws2{word-spacing:20.672000pt;}
.ws1{word-spacing:99.914667pt;}
._17{margin-left:-9.754667pt;}
._e{margin-left:-8.773333pt;}
._4{margin-left:-7.818667pt;}
._2{margin-left:-6.528000pt;}
._16{margin-left:-5.626667pt;}
._0{margin-left:-4.736000pt;}
._3{margin-left:-3.696000pt;}
._1{margin-left:-2.368000pt;}
._6{margin-left:-0.896000pt;}
._8{width:1.664000pt;}
._b{width:2.560000pt;}
._c{width:3.610667pt;}
._5{width:4.938667pt;}
._7{width:6.448000pt;}
._11{width:7.349333pt;}
._d{width:8.389333pt;}
._9{width:10.053333pt;}
._13{width:11.717333pt;}
._f{width:12.965333pt;}
._12{width:14.282667pt;}
._a{width:15.530667pt;}
._15{width:16.432000pt;}
._10{width:18.720000pt;}
._14{width:22.048000pt;}
._18{width:23.712000pt;}
.fs5{font-size:40.421333pt;}
.fs4{font-size:42.666667pt;}
.fs1{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:2.245333pt;}
.y1a{bottom:36.266764pt;}
.ycf{bottom:93.758533pt;}
.y19{bottom:103.087333pt;}
.yc8{bottom:105.094533pt;}
.y5a{bottom:105.617067pt;}
.y3c{bottom:109.115867pt;}
.ya8{bottom:117.765200pt;}
.y107{bottom:118.044533pt;}
.y18{bottom:127.094000pt;}
.yea{bottom:127.766533pt;}
.yc7{bottom:129.101200pt;}
.y59{bottom:129.611733pt;}
.y7a{bottom:132.283333pt;}
.y9f{bottom:132.587067pt;}
.y3b{bottom:133.122533pt;}
.y11f{bottom:140.935200pt;}
.ya7{bottom:141.771867pt;}
.y106{bottom:142.051200pt;}
.y17{bottom:151.100667pt;}
.ye9{bottom:151.773200pt;}
.y9e{bottom:151.785733pt;}
.yc6{bottom:153.107867pt;}
.y58{bottom:153.606400pt;}
.y3a{bottom:157.129200pt;}
.y11e{bottom:164.941867pt;}
.ya6{bottom:165.778533pt;}
.y105{bottom:166.057867pt;}
.y16{bottom:175.107333pt;}
.ye8{bottom:175.779867pt;}
.yc5{bottom:177.114533pt;}
.y57{bottom:177.601067pt;}
.y39{bottom:181.135867pt;}
.y9d{bottom:188.774000pt;}
.ya5{bottom:189.785200pt;}
.y79{bottom:189.805200pt;}
.y104{bottom:190.064533pt;}
.y15{bottom:199.114000pt;}
.ye7{bottom:199.786533pt;}
.yc4{bottom:201.121200pt;}
.y56{bottom:201.595733pt;}
.y38{bottom:205.142533pt;}
.y9c{bottom:212.780667pt;}
.y11d{bottom:212.937867pt;}
.ya4{bottom:213.791867pt;}
.y78{bottom:213.811867pt;}
.y103{bottom:214.071200pt;}
.y14{bottom:223.120667pt;}
.ye6{bottom:223.793200pt;}
.yc3{bottom:225.127867pt;}
.y37{bottom:229.149200pt;}
.y9b{bottom:236.787333pt;}
.y11c{bottom:236.944533pt;}
.ya3{bottom:237.798533pt;}
.y77{bottom:237.818533pt;}
.y55{bottom:237.977333pt;}
.y102{bottom:238.077867pt;}
.y13{bottom:247.127333pt;}
.ye5{bottom:247.799867pt;}
.yc2{bottom:249.134533pt;}
.y36{bottom:253.155867pt;}
.y9a{bottom:260.794000pt;}
.ya2{bottom:261.805200pt;}
.y76{bottom:261.825200pt;}
.y54{bottom:261.984000pt;}
.y101{bottom:262.084533pt;}
.y12{bottom:271.134000pt;}
.ye4{bottom:271.806533pt;}
.yc1{bottom:273.141200pt;}
.y35{bottom:277.162533pt;}
.y99{bottom:284.800667pt;}
.y11b{bottom:284.940533pt;}
.ya1{bottom:285.811867pt;}
.y75{bottom:285.831867pt;}
.y53{bottom:285.990667pt;}
.y11{bottom:295.140667pt;}
.ye3{bottom:295.813200pt;}
.yc0{bottom:297.147867pt;}
.y100{bottom:297.427200pt;}
.y34{bottom:301.169200pt;}
.y98{bottom:308.807333pt;}
.y11a{bottom:308.947200pt;}
.y52{bottom:309.818533pt;}
.y74{bottom:309.838533pt;}
.y10{bottom:319.147333pt;}
.ye2{bottom:319.819867pt;}
.ybf{bottom:321.154533pt;}
.yff{bottom:321.433867pt;}
.y33{bottom:325.175867pt;}
.y97{bottom:332.814000pt;}
.y119{bottom:332.953867pt;}
.y51{bottom:333.825200pt;}
.y73{bottom:333.845200pt;}
.yf{bottom:343.154000pt;}
.ye1{bottom:343.826533pt;}
.ya0{bottom:345.161200pt;}
.yfe{bottom:345.440533pt;}
.y32{bottom:349.182533pt;}
.y96{bottom:356.820667pt;}
.yce{bottom:357.831867pt;}
.y72{bottom:357.851867pt;}
.ye{bottom:367.160667pt;}
.ye0{bottom:367.833200pt;}
.y50{bottom:369.167867pt;}
.yfd{bottom:369.447200pt;}
.y31{bottom:373.189200pt;}
.y95{bottom:380.827333pt;}
.y118{bottom:380.953867pt;}
.ycd{bottom:381.838533pt;}
.y71{bottom:381.858533pt;}
.ydf{bottom:391.839867pt;}
.y4f{bottom:393.174533pt;}
.yfc{bottom:393.453867pt;}
.y30{bottom:397.195867pt;}
.yd{bottom:402.503333pt;}
.ybe{bottom:404.510533pt;}
.y94{bottom:404.834000pt;}
.y117{bottom:404.911200pt;}
.ycc{bottom:405.845200pt;}
.y70{bottom:405.865200pt;}
.yde{bottom:415.846533pt;}
.y4e{bottom:417.181200pt;}
.yfb{bottom:417.460533pt;}
.y2f{bottom:421.202533pt;}
.ybd{bottom:428.517200pt;}
.y93{bottom:428.840667pt;}
.y116{bottom:428.917867pt;}
.ycb{bottom:429.851867pt;}
.y6f{bottom:429.871867pt;}
.ydd{bottom:439.853200pt;}
.y12f{bottom:439.995867pt;}
.y4d{bottom:441.187867pt;}
.yfa{bottom:441.467200pt;}
.y2e{bottom:445.209200pt;}
.yc{bottom:450.499333pt;}
.ybc{bottom:452.523867pt;}
.y92{bottom:452.847333pt;}
.yca{bottom:453.858533pt;}
.y6e{bottom:453.878533pt;}
.ydc{bottom:463.859867pt;}
.y12e{bottom:464.002533pt;}
.y4c{bottom:465.194533pt;}
.yf9{bottom:465.473867pt;}
.yb{bottom:474.506000pt;}
.ybb{bottom:476.530533pt;}
.y91{bottom:476.854000pt;}
.y115{bottom:476.913867pt;}
.y6d{bottom:477.885200pt;}
.y2d{bottom:480.551867pt;}
.ydb{bottom:487.866533pt;}
.y4b{bottom:489.201200pt;}
.yf8{bottom:489.480533pt;}
.yba{bottom:500.537200pt;}
.y90{bottom:500.860667pt;}
.y114{bottom:500.920533pt;}
.y6c{bottom:501.891867pt;}
.yda{bottom:511.873200pt;}
.y12d{bottom:511.998533pt;}
.y4a{bottom:513.207867pt;}
.yf7{bottom:513.487200pt;}
.ya{bottom:522.523333pt;}
.yb9{bottom:524.543867pt;}
.y8f{bottom:524.867333pt;}
.y113{bottom:524.927200pt;}
.yd9{bottom:535.879867pt;}
.y12c{bottom:536.005200pt;}
.y49{bottom:537.214533pt;}
.y6b{bottom:537.234533pt;}
.yf6{bottom:537.493867pt;}
.yb8{bottom:548.550533pt;}
.y8e{bottom:548.874000pt;}
.y9{bottom:550.516667pt;}
.yd8{bottom:559.886533pt;}
.y48{bottom:561.221200pt;}
.y6a{bottom:561.241200pt;}
.yf5{bottom:561.500533pt;}
.yb7{bottom:572.557200pt;}
.y8d{bottom:572.880667pt;}
.y112{bottom:572.923200pt;}
.y8{bottom:578.510000pt;}
.yd7{bottom:583.893200pt;}
.y12b{bottom:584.001200pt;}
.y47{bottom:585.227867pt;}
.y69{bottom:585.247867pt;}
.y2c{bottom:586.562533pt;}
.yb6{bottom:596.563867pt;}
.yf4{bottom:596.843200pt;}
.y8c{bottom:596.887333pt;}
.y111{bottom:596.929867pt;}
.yd6{bottom:607.899867pt;}
.y46{bottom:609.234533pt;}
.y68{bottom:609.254533pt;}
.yb5{bottom:620.570533pt;}
.yf3{bottom:620.849867pt;}
.y8b{bottom:620.894000pt;}
.y2b{bottom:621.905200pt;}
.yd5{bottom:631.906533pt;}
.y12a{bottom:631.997200pt;}
.y45{bottom:633.241200pt;}
.y67{bottom:633.261200pt;}
.y7{bottom:634.519333pt;}
.yb4{bottom:644.577200pt;}
.yf2{bottom:644.856533pt;}
.y8a{bottom:644.900667pt;}
.y110{bottom:644.925867pt;}
.yd4{bottom:655.913200pt;}
.y129{bottom:656.003867pt;}
.y2a{bottom:657.247867pt;}
.y66{bottom:657.267867pt;}
.y6{bottom:662.512667pt;}
.yb3{bottom:668.583867pt;}
.yf1{bottom:668.863200pt;}
.y89{bottom:668.907333pt;}
.y10f{bottom:668.932533pt;}
.yd3{bottom:679.919867pt;}
.y128{bottom:680.010533pt;}
.y29{bottom:681.254533pt;}
.y65{bottom:681.274533pt;}
.y5{bottom:690.506000pt;}
.yb2{bottom:692.590533pt;}
.yf0{bottom:692.869867pt;}
.y88{bottom:692.914000pt;}
.y10e{bottom:692.939200pt;}
.yd2{bottom:703.926533pt;}
.y28{bottom:705.261200pt;}
.yb1{bottom:716.597200pt;}
.y64{bottom:716.617200pt;}
.yef{bottom:716.876533pt;}
.y87{bottom:716.920667pt;}
.yd1{bottom:727.933200pt;}
.y127{bottom:728.006533pt;}
.y27{bottom:729.267867pt;}
.yb0{bottom:740.603867pt;}
.y63{bottom:740.623867pt;}
.yee{bottom:740.883200pt;}
.y86{bottom:740.927333pt;}
.y10d{bottom:740.935200pt;}
.yd0{bottom:751.939867pt;}
.y126{bottom:752.006533pt;}
.y26{bottom:753.274533pt;}
.yc9{bottom:764.610533pt;}
.yed{bottom:764.889867pt;}
.y85{bottom:764.934000pt;}
.y10c{bottom:764.941867pt;}
.yaf{bottom:775.946533pt;}
.y62{bottom:775.966533pt;}
.y125{bottom:776.013200pt;}
.y25{bottom:777.281200pt;}
.y44{bottom:788.617200pt;}
.yec{bottom:788.896533pt;}
.y84{bottom:788.940667pt;}
.yae{bottom:799.953200pt;}
.y61{bottom:799.973200pt;}
.y24{bottom:801.287867pt;}
.y43{bottom:812.623867pt;}
.yeb{bottom:812.903200pt;}
.y10b{bottom:812.937867pt;}
.y83{bottom:812.947333pt;}
.yad{bottom:823.959867pt;}
.y60{bottom:823.979867pt;}
.y124{bottom:823.994533pt;}
.y23{bottom:825.294533pt;}
.y42{bottom:836.630533pt;}
.y82{bottom:836.909867pt;}
.y10a{bottom:836.944533pt;}
.y4{bottom:845.183067pt;}
.yac{bottom:847.966533pt;}
.y5f{bottom:847.986533pt;}
.y123{bottom:848.001200pt;}
.y22{bottom:849.301200pt;}
.y41{bottom:860.637200pt;}
.y81{bottom:860.916533pt;}
.yab{bottom:871.973200pt;}
.y5e{bottom:871.993200pt;}
.y122{bottom:872.007867pt;}
.y21{bottom:873.307867pt;}
.y40{bottom:884.643867pt;}
.y80{bottom:884.923200pt;}
.y109{bottom:884.940533pt;}
.yaa{bottom:895.979867pt;}
.y5d{bottom:895.999867pt;}
.y20{bottom:897.314533pt;}
.y3{bottom:901.183067pt;}
.y3f{bottom:908.650533pt;}
.y7f{bottom:908.929867pt;}
.y108{bottom:908.947200pt;}
.ya9{bottom:919.986533pt;}
.y121{bottom:920.003867pt;}
.y5c{bottom:920.006533pt;}
.y1f{bottom:921.321200pt;}
.y3e{bottom:932.657200pt;}
.y7e{bottom:932.936533pt;}
.y5b{bottom:943.993200pt;}
.y120{bottom:944.010533pt;}
.y1e{bottom:956.663867pt;}
.y7d{bottom:956.943200pt;}
.y2{bottom:958.783067pt;}
.y3d{bottom:967.999867pt;}
.y7c{bottom:980.949867pt;}
.y1d{bottom:992.006533pt;}
.y1{bottom:997.183067pt;}
.y1c{bottom:1016.013200pt;}
.y7b{bottom:1016.292533pt;}
.h7{height:11.733399pt;}
.h8{height:44.354167pt;}
.h3{height:44.853333pt;}
.h2{height:46.593750pt;}
.ha{height:51.476562pt;}
.h6{height:60.835938pt;}
.hd{height:60.862604pt;}
.hb{height:60.915938pt;}
.hc{height:61.012471pt;}
.h9{height:61.551138pt;}
.h5{height:61.580729pt;}
.h4{height:80.528646pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:11.865333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:94.488133pt;}
.x2{left:213.204133pt;}
.x1{left:215.444133pt;}
.x4{left:359.525067pt;}
.x5{left:390.918009pt;}
}




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