
    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_fc09ac22458120ff8c125242.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.086426;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_56945ea860db21585fc3fc1b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_94ecfc35e3e5bf9a8d47b264.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f9ac5c3a74db8cf4071d8413.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fed09b4cc35927392a8669cb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_b7009769df60221fe36ca075.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_c76098ae173c61c3fed3a1df.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_0f28ad816793ef1c27e65793.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_85e69a47ea0751138ba8cfbb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.783691;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_7c67eb2ffb15bc23ef22d70a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.095703;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:-82.860000px;}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-3.192000px;}
.lsb{letter-spacing:-2.400000px;}
.ls14{letter-spacing:-2.016000px;}
.lsa{letter-spacing:-1.200000px;}
.ls17{letter-spacing:-0.768000px;}
.ls5{letter-spacing:-0.540000px;}
.ls1c{letter-spacing:-0.384000px;}
.ls13{letter-spacing:-0.024000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.024000px;}
.ls7{letter-spacing:0.384000px;}
.ls0{letter-spacing:0.408000px;}
.ls6{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.480000px;}
.ls19{letter-spacing:0.492000px;}
.ls4{letter-spacing:0.600000px;}
.ls9{letter-spacing:1.200000px;}
.ls15{letter-spacing:1.632000px;}
.ls1b{letter-spacing:1.992000px;}
.ls1a{letter-spacing:7.200000px;}
.lse{letter-spacing:8.964000px;}
.ls1{letter-spacing:11.184000px;}
.ls18{letter-spacing:13.200000px;}
.lsd{letter-spacing:31.704000px;}
.lsf{letter-spacing:43.764000px;}
.ls12{letter-spacing:92.784000px;}
.ls10{letter-spacing:95.184000px;}
.ls11{letter-spacing:152.400000px;}
.ls2{letter-spacing:194.430000px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.wsd{word-spacing:-19.992000px;}
.ws4{word-spacing:-18.432000px;}
.ws9{word-spacing:-18.408000px;}
.ws6{word-spacing:-18.384000px;}
.ws5{word-spacing:-18.024000px;}
.ws0{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.976000px;}
.wse{word-spacing:-17.616000px;}
.wsb{word-spacing:-17.232000px;}
.wsa{word-spacing:-14.808000px;}
.ws3{word-spacing:-14.460000px;}
.ws1{word-spacing:-14.400000px;}
.wsc{word-spacing:-14.100000px;}
.ws2{word-spacing:0.000000px;}
._5{margin-left:-2.376000px;}
._1{margin-left:-1.008000px;}
._0{width:1.008000px;}
._2{width:2.082000px;}
._a{width:3.672000px;}
._b{width:4.908000px;}
._7{width:6.048000px;}
._10{width:7.074000px;}
._6{width:8.184000px;}
._4{width:9.408000px;}
._3{width:10.560000px;}
._e{width:12.528000px;}
._16{width:13.722000px;}
._f{width:15.048000px;}
._c{width:16.344000px;}
._d{width:19.248000px;}
._9{width:20.712000px;}
._8{width:21.768000px;}
._19{width:22.878000px;}
._1a{width:24.072000px;}
._11{width:25.416000px;}
._12{width:26.568000px;}
._15{width:28.152000px;}
._1b{width:29.610000px;}
._17{width:31.464000px;}
._18{width:32.568000px;}
._13{width:34.128000px;}
._14{width:35.568000px;}
._1d{width:39.984000px;}
._1c{width:41.472000px;}
._1e{width:43.380000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:57.600000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2e{bottom:3.615000px;}
.y50{bottom:109.537500px;}
.y2b{bottom:119.437500px;}
.y62{bottom:122.437500px;}
.yf8{bottom:123.337500px;}
.ybe{bottom:124.537500px;}
.y4f{bottom:125.137500px;}
.yaa{bottom:132.337500px;}
.y2a{bottom:140.137500px;}
.ydd{bottom:141.937500px;}
.y4e{bottom:142.537500px;}
.yf7{bottom:144.037500px;}
.ybd{bottom:145.237500px;}
.y61{bottom:148.837500px;}
.ya9{bottom:153.045000px;}
.y4d{bottom:159.630000px;}
.y29{bottom:160.830000px;}
.ydc{bottom:162.630000px;}
.yf6{bottom:164.775000px;}
.ybc{bottom:165.975000px;}
.ya8{bottom:173.775000px;}
.y60{bottom:174.975000px;}
.y4c{bottom:177.075000px;}
.y28{bottom:181.575000px;}
.ydb{bottom:183.375000px;}
.yf5{bottom:185.475000px;}
.ybb{bottom:186.675000px;}
.y4b{bottom:194.175000px;}
.ya7{bottom:194.475000px;}
.y5f{bottom:201.375000px;}
.y27{bottom:202.275000px;}
.yda{bottom:204.075000px;}
.yf4{bottom:206.175000px;}
.yba{bottom:207.375000px;}
.ya6{bottom:215.175000px;}
.y4a{bottom:220.575000px;}
.y5e{bottom:223.875000px;}
.y8a{bottom:226.575000px;}
.yf3{bottom:226.875000px;}
.yb9{bottom:228.075000px;}
.y26{bottom:243.675000px;}
.ya5{bottom:244.275000px;}
.yd9{bottom:245.475000px;}
.y49{bottom:246.675000px;}
.y89{bottom:247.275000px;}
.yf2{bottom:247.575000px;}
.yb8{bottom:248.775000px;}
.ya4{bottom:261.975000px;}
.y25{bottom:264.375000px;}
.y48{bottom:265.875000px;}
.yd8{bottom:266.175000px;}
.y88{bottom:267.975000px;}
.yf1{bottom:268.275000px;}
.yb7{bottom:269.475000px;}
.ya3{bottom:283.875000px;}
.y24{bottom:285.075000px;}
.y46{bottom:286.275000px;}
.yd7{bottom:286.875000px;}
.y87{bottom:288.675000px;}
.yf0{bottom:288.975000px;}
.yb6{bottom:290.175000px;}
.y47{bottom:293.175000px;}
.y23{bottom:305.775000px;}
.ya2{bottom:306.075000px;}
.y45{bottom:306.975000px;}
.yd6{bottom:307.575000px;}
.y86{bottom:309.375000px;}
.yef{bottom:309.675000px;}
.yb5{bottom:310.875000px;}
.y22{bottom:326.475000px;}
.y44{bottom:327.675000px;}
.ya1{bottom:327.975000px;}
.y85{bottom:330.075000px;}
.yee{bottom:330.375000px;}
.yb4{bottom:331.575000px;}
.y21{bottom:347.205000px;}
.y43{bottom:348.420000px;}
.yd5{bottom:349.005000px;}
.ya0{bottom:349.905000px;}
.y84{bottom:350.805000px;}
.yed{bottom:351.105000px;}
.yb3{bottom:352.320000px;}
.y20{bottom:367.905000px;}
.y42{bottom:369.120000px;}
.yd4{bottom:369.705000px;}
.y83{bottom:371.505000px;}
.yec{bottom:371.805000px;}
.y9f{bottom:372.120000px;}
.yb2{bottom:373.005000px;}
.y1f{bottom:388.620000px;}
.y41{bottom:389.820000px;}
.yd3{bottom:390.405000px;}
.y82{bottom:392.220000px;}
.yeb{bottom:392.505000px;}
.yb1{bottom:393.705000px;}
.y9e{bottom:394.005000px;}
.y1e{bottom:409.320000px;}
.yd2{bottom:411.120000px;}
.y81{bottom:412.905000px;}
.yea{bottom:413.205000px;}
.yb0{bottom:414.405000px;}
.y9d{bottom:415.920000px;}
.y40{bottom:421.320000px;}
.y1d{bottom:430.005000px;}
.yd1{bottom:431.820000px;}
.y80{bottom:433.620000px;}
.ye9{bottom:433.905000px;}
.yaf{bottom:435.120000px;}
.y9c{bottom:438.120000px;}
.y3f{bottom:442.320000px;}
.y7f{bottom:454.320000px;}
.ye8{bottom:454.620000px;}
.yae{bottom:455.820000px;}
.y9b{bottom:458.820000px;}
.y1c{bottom:471.420000px;}
.yd0{bottom:473.205000px;}
.y7e{bottom:475.005000px;}
.ye7{bottom:475.320000px;}
.yad{bottom:476.505000px;}
.y9a{bottom:480.705000px;}
.ycf{bottom:493.620000px;}
.y3e{bottom:494.205000px;}
.y7d{bottom:495.705000px;}
.ye6{bottom:496.005000px;}
.yac{bottom:497.205000px;}
.y99{bottom:501.405000px;}
.y1b{bottom:502.950000px;}
.yce{bottom:514.650000px;}
.y7c{bottom:516.450000px;}
.ye5{bottom:516.750000px;}
.y5d{bottom:517.950000px;}
.y98{bottom:522.150000px;}
.y1a{bottom:532.950000px;}
.ycd{bottom:535.350000px;}
.y7b{bottom:537.150000px;}
.ye4{bottom:537.450000px;}
.y5c{bottom:538.650000px;}
.y97{bottom:542.850000px;}
.ycc{bottom:556.050000px;}
.y7a{bottom:557.850000px;}
.ye3{bottom:558.150000px;}
.y5b{bottom:559.350000px;}
.y19{bottom:562.650000px;}
.y96{bottom:563.550000px;}
.ycb{bottom:576.750000px;}
.y79{bottom:578.550000px;}
.y5a{bottom:580.050000px;}
.y18{bottom:583.350000px;}
.y95{bottom:584.250000px;}
.ye2{bottom:589.650000px;}
.yca{bottom:597.450000px;}
.y78{bottom:599.250000px;}
.y59{bottom:600.750000px;}
.y17{bottom:604.050000px;}
.y94{bottom:604.950000px;}
.yc9{bottom:618.150000px;}
.ye1{bottom:618.750000px;}
.y77{bottom:619.950000px;}
.y58{bottom:621.450000px;}
.y93{bottom:625.650000px;}
.y16{bottom:633.450000px;}
.yab{bottom:642.150000px;}
.ye0{bottom:645.150000px;}
.y92{bottom:646.350000px;}
.yc8{bottom:647.250000px;}
.y76{bottom:661.350000px;}
.y15{bottom:662.550000px;}
.y57{bottom:662.850000px;}
.ydf{bottom:663.150000px;}
.yc7{bottom:665.250000px;}
.y91{bottom:667.050000px;}
.yde{bottom:679.380000px;}
.y14{bottom:680.580000px;}
.y75{bottom:682.080000px;}
.y56{bottom:683.595000px;}
.yc6{bottom:685.980000px;}
.y90{bottom:687.780000px;}
.y13{bottom:701.280000px;}
.y74{bottom:702.780000px;}
.y55{bottom:704.280000px;}
.yc5{bottom:706.695000px;}
.y8f{bottom:708.495000px;}
.y12{bottom:721.995000px;}
.y73{bottom:723.495000px;}
.y54{bottom:724.980000px;}
.yc4{bottom:727.380000px;}
.y8e{bottom:729.195000px;}
.y11{bottom:742.695000px;}
.y72{bottom:744.195000px;}
.y53{bottom:745.695000px;}
.yc3{bottom:748.080000px;}
.y10{bottom:763.380000px;}
.y71{bottom:764.880000px;}
.y52{bottom:766.380000px;}
.yc2{bottom:768.780000px;}
.y8d{bottom:770.580000px;}
.yf{bottom:784.080000px;}
.y70{bottom:785.580000px;}
.y3d{bottom:787.080000px;}
.yc1{bottom:789.495000px;}
.y8c{bottom:799.695000px;}
.ye{bottom:804.795000px;}
.y6f{bottom:806.280000px;}
.y3c{bottom:807.780000px;}
.yc0{bottom:818.295000px;}
.y8b{bottom:822.480000px;}
.y6e{bottom:826.980000px;}
.y3b{bottom:828.495000px;}
.yd{bottom:834.195000px;}
.ybf{bottom:841.125000px;}
.y6d{bottom:847.725000px;}
.y3a{bottom:849.225000px;}
.yc{bottom:863.925000px;}
.y6c{bottom:868.425000px;}
.y39{bottom:869.925000px;}
.y6b{bottom:889.125000px;}
.y38{bottom:890.625000px;}
.yb{bottom:893.625000px;}
.y6a{bottom:909.825000px;}
.y37{bottom:911.325000px;}
.ya{bottom:914.025000px;}
.y69{bottom:930.525000px;}
.y9{bottom:931.125000px;}
.y36{bottom:932.025000px;}
.y8{bottom:949.125000px;}
.y68{bottom:951.225000px;}
.y51{bottom:952.725000px;}
.y7{bottom:969.825000px;}
.y67{bottom:971.925000px;}
.y35{bottom:973.425000px;}
.y6{bottom:989.925000px;}
.y34{bottom:994.125000px;}
.y5{bottom:1007.025000px;}
.y66{bottom:1013.355000px;}
.y33{bottom:1014.855000px;}
.y4{bottom:1025.070000px;}
.y32{bottom:1035.570000px;}
.y65{bottom:1044.870000px;}
.y3{bottom:1046.670000px;}
.y31{bottom:1056.255000px;}
.y2{bottom:1070.655000px;}
.y64{bottom:1073.955000px;}
.y30{bottom:1076.955000px;}
.y1{bottom:1094.370000px;}
.y2f{bottom:1097.655000px;}
.y63{bottom:1100.370000px;}
.y2d{bottom:1149.255000px;}
.y2c{bottom:1152.870000px;}
.hb{height:15.600000px;}
.he{height:47.109375px;}
.ha{height:52.971680px;}
.hc{height:52.998047px;}
.h6{height:58.857422px;}
.h8{height:58.886719px;}
.h11{height:64.546875px;}
.h10{height:70.628906px;}
.h5{height:70.664062px;}
.h7{height:72.562500px;}
.hf{height:74.004654px;}
.h2{height:74.607422px;}
.h9{height:74.953125px;}
.h4{height:82.441406px;}
.h3{height:84.656250px;}
.hd{height:1262.662335px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:6.900000px;}
.w4{width:13.800000px;}
.w3{width:893.062500px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:106.237500px;}
.x10{left:113.737500px;}
.x1{left:126.037500px;}
.x11{left:127.537500px;}
.x2{left:143.137500px;}
.xa{left:159.345000px;}
.x12{left:177.330000px;}
.x15{left:180.675000px;}
.x16{left:191.175000px;}
.x17{left:233.775000px;}
.xb{left:271.275000px;}
.xd{left:319.282500px;}
.xf{left:322.320000px;}
.xe{left:325.320000px;}
.x4{left:337.320000px;}
.x7{left:345.120000px;}
.x5{left:349.320000px;}
.x6{left:360.720000px;}
.x8{left:364.320000px;}
.x3{left:446.550000px;}
.x18{left:471.450000px;}
.xc{left:491.250000px;}
.x14{left:492.450000px;}
.x13{left:779.970000px;}
@media print{
.v1{vertical-align:-73.653333pt;}
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-2.837333pt;}
.lsb{letter-spacing:-2.133333pt;}
.ls14{letter-spacing:-1.792000pt;}
.lsa{letter-spacing:-1.066667pt;}
.ls17{letter-spacing:-0.682667pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls1c{letter-spacing:-0.341333pt;}
.ls13{letter-spacing:-0.021333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.021333pt;}
.ls7{letter-spacing:0.341333pt;}
.ls0{letter-spacing:0.362667pt;}
.ls6{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.426667pt;}
.ls19{letter-spacing:0.437333pt;}
.ls4{letter-spacing:0.533333pt;}
.ls9{letter-spacing:1.066667pt;}
.ls15{letter-spacing:1.450667pt;}
.ls1b{letter-spacing:1.770667pt;}
.ls1a{letter-spacing:6.400000pt;}
.lse{letter-spacing:7.968000pt;}
.ls1{letter-spacing:9.941333pt;}
.ls18{letter-spacing:11.733333pt;}
.lsd{letter-spacing:28.181333pt;}
.lsf{letter-spacing:38.901333pt;}
.ls12{letter-spacing:82.474667pt;}
.ls10{letter-spacing:84.608000pt;}
.ls11{letter-spacing:135.466667pt;}
.ls2{letter-spacing:172.826667pt;}
.ws7{word-spacing:-64.000000pt;}
.wsd{word-spacing:-17.770667pt;}
.ws4{word-spacing:-16.384000pt;}
.ws9{word-spacing:-16.362667pt;}
.ws6{word-spacing:-16.341333pt;}
.ws5{word-spacing:-16.021333pt;}
.ws0{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.978667pt;}
.wse{word-spacing:-15.658667pt;}
.wsb{word-spacing:-15.317333pt;}
.wsa{word-spacing:-13.162667pt;}
.ws3{word-spacing:-12.853333pt;}
.ws1{word-spacing:-12.800000pt;}
.wsc{word-spacing:-12.533333pt;}
.ws2{word-spacing:0.000000pt;}
._5{margin-left:-2.112000pt;}
._1{margin-left:-0.896000pt;}
._0{width:0.896000pt;}
._2{width:1.850667pt;}
._a{width:3.264000pt;}
._b{width:4.362667pt;}
._7{width:5.376000pt;}
._10{width:6.288000pt;}
._6{width:7.274667pt;}
._4{width:8.362667pt;}
._3{width:9.386667pt;}
._e{width:11.136000pt;}
._16{width:12.197333pt;}
._f{width:13.376000pt;}
._c{width:14.528000pt;}
._d{width:17.109333pt;}
._9{width:18.410667pt;}
._8{width:19.349333pt;}
._19{width:20.336000pt;}
._1a{width:21.397333pt;}
._11{width:22.592000pt;}
._12{width:23.616000pt;}
._15{width:25.024000pt;}
._1b{width:26.320000pt;}
._17{width:27.968000pt;}
._18{width:28.949333pt;}
._13{width:30.336000pt;}
._14{width:31.616000pt;}
._1d{width:35.541333pt;}
._1c{width:36.864000pt;}
._1e{width:38.560000pt;}
.fs5{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:51.200000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:3.213333pt;}
.y50{bottom:97.366667pt;}
.y2b{bottom:106.166667pt;}
.y62{bottom:108.833333pt;}
.yf8{bottom:109.633333pt;}
.ybe{bottom:110.700000pt;}
.y4f{bottom:111.233333pt;}
.yaa{bottom:117.633333pt;}
.y2a{bottom:124.566667pt;}
.ydd{bottom:126.166667pt;}
.y4e{bottom:126.700000pt;}
.yf7{bottom:128.033333pt;}
.ybd{bottom:129.100000pt;}
.y61{bottom:132.300000pt;}
.ya9{bottom:136.040000pt;}
.y4d{bottom:141.893333pt;}
.y29{bottom:142.960000pt;}
.ydc{bottom:144.560000pt;}
.yf6{bottom:146.466667pt;}
.ybc{bottom:147.533333pt;}
.ya8{bottom:154.466667pt;}
.y60{bottom:155.533333pt;}
.y4c{bottom:157.400000pt;}
.y28{bottom:161.400000pt;}
.ydb{bottom:163.000000pt;}
.yf5{bottom:164.866667pt;}
.ybb{bottom:165.933333pt;}
.y4b{bottom:172.600000pt;}
.ya7{bottom:172.866667pt;}
.y5f{bottom:179.000000pt;}
.y27{bottom:179.800000pt;}
.yda{bottom:181.400000pt;}
.yf4{bottom:183.266667pt;}
.yba{bottom:184.333333pt;}
.ya6{bottom:191.266667pt;}
.y4a{bottom:196.066667pt;}
.y5e{bottom:199.000000pt;}
.y8a{bottom:201.400000pt;}
.yf3{bottom:201.666667pt;}
.yb9{bottom:202.733333pt;}
.y26{bottom:216.600000pt;}
.ya5{bottom:217.133333pt;}
.yd9{bottom:218.200000pt;}
.y49{bottom:219.266667pt;}
.y89{bottom:219.800000pt;}
.yf2{bottom:220.066667pt;}
.yb8{bottom:221.133333pt;}
.ya4{bottom:232.866667pt;}
.y25{bottom:235.000000pt;}
.y48{bottom:236.333333pt;}
.yd8{bottom:236.600000pt;}
.y88{bottom:238.200000pt;}
.yf1{bottom:238.466667pt;}
.yb7{bottom:239.533333pt;}
.ya3{bottom:252.333333pt;}
.y24{bottom:253.400000pt;}
.y46{bottom:254.466667pt;}
.yd7{bottom:255.000000pt;}
.y87{bottom:256.600000pt;}
.yf0{bottom:256.866667pt;}
.yb6{bottom:257.933333pt;}
.y47{bottom:260.600000pt;}
.y23{bottom:271.800000pt;}
.ya2{bottom:272.066667pt;}
.y45{bottom:272.866667pt;}
.yd6{bottom:273.400000pt;}
.y86{bottom:275.000000pt;}
.yef{bottom:275.266667pt;}
.yb5{bottom:276.333333pt;}
.y22{bottom:290.200000pt;}
.y44{bottom:291.266667pt;}
.ya1{bottom:291.533333pt;}
.y85{bottom:293.400000pt;}
.yee{bottom:293.666667pt;}
.yb4{bottom:294.733333pt;}
.y21{bottom:308.626667pt;}
.y43{bottom:309.706667pt;}
.yd5{bottom:310.226667pt;}
.ya0{bottom:311.026667pt;}
.y84{bottom:311.826667pt;}
.yed{bottom:312.093333pt;}
.yb3{bottom:313.173333pt;}
.y20{bottom:327.026667pt;}
.y42{bottom:328.106667pt;}
.yd4{bottom:328.626667pt;}
.y83{bottom:330.226667pt;}
.yec{bottom:330.493333pt;}
.y9f{bottom:330.773333pt;}
.yb2{bottom:331.560000pt;}
.y1f{bottom:345.440000pt;}
.y41{bottom:346.506667pt;}
.yd3{bottom:347.026667pt;}
.y82{bottom:348.640000pt;}
.yeb{bottom:348.893333pt;}
.yb1{bottom:349.960000pt;}
.y9e{bottom:350.226667pt;}
.y1e{bottom:363.840000pt;}
.yd2{bottom:365.440000pt;}
.y81{bottom:367.026667pt;}
.yea{bottom:367.293333pt;}
.yb0{bottom:368.360000pt;}
.y9d{bottom:369.706667pt;}
.y40{bottom:374.506667pt;}
.y1d{bottom:382.226667pt;}
.yd1{bottom:383.840000pt;}
.y80{bottom:385.440000pt;}
.ye9{bottom:385.693333pt;}
.yaf{bottom:386.773333pt;}
.y9c{bottom:389.440000pt;}
.y3f{bottom:393.173333pt;}
.y7f{bottom:403.840000pt;}
.ye8{bottom:404.106667pt;}
.yae{bottom:405.173333pt;}
.y9b{bottom:407.840000pt;}
.y1c{bottom:419.040000pt;}
.yd0{bottom:420.626667pt;}
.y7e{bottom:422.226667pt;}
.ye7{bottom:422.506667pt;}
.yad{bottom:423.560000pt;}
.y9a{bottom:427.293333pt;}
.ycf{bottom:438.773333pt;}
.y3e{bottom:439.293333pt;}
.y7d{bottom:440.626667pt;}
.ye6{bottom:440.893333pt;}
.yac{bottom:441.960000pt;}
.y99{bottom:445.693333pt;}
.y1b{bottom:447.066667pt;}
.yce{bottom:457.466667pt;}
.y7c{bottom:459.066667pt;}
.ye5{bottom:459.333333pt;}
.y5d{bottom:460.400000pt;}
.y98{bottom:464.133333pt;}
.y1a{bottom:473.733333pt;}
.ycd{bottom:475.866667pt;}
.y7b{bottom:477.466667pt;}
.ye4{bottom:477.733333pt;}
.y5c{bottom:478.800000pt;}
.y97{bottom:482.533333pt;}
.ycc{bottom:494.266667pt;}
.y7a{bottom:495.866667pt;}
.ye3{bottom:496.133333pt;}
.y5b{bottom:497.200000pt;}
.y19{bottom:500.133333pt;}
.y96{bottom:500.933333pt;}
.ycb{bottom:512.666667pt;}
.y79{bottom:514.266667pt;}
.y5a{bottom:515.600000pt;}
.y18{bottom:518.533333pt;}
.y95{bottom:519.333333pt;}
.ye2{bottom:524.133333pt;}
.yca{bottom:531.066667pt;}
.y78{bottom:532.666667pt;}
.y59{bottom:534.000000pt;}
.y17{bottom:536.933333pt;}
.y94{bottom:537.733333pt;}
.yc9{bottom:549.466667pt;}
.ye1{bottom:550.000000pt;}
.y77{bottom:551.066667pt;}
.y58{bottom:552.400000pt;}
.y93{bottom:556.133333pt;}
.y16{bottom:563.066667pt;}
.yab{bottom:570.800000pt;}
.ye0{bottom:573.466667pt;}
.y92{bottom:574.533333pt;}
.yc8{bottom:575.333333pt;}
.y76{bottom:587.866667pt;}
.y15{bottom:588.933333pt;}
.y57{bottom:589.200000pt;}
.ydf{bottom:589.466667pt;}
.yc7{bottom:591.333333pt;}
.y91{bottom:592.933333pt;}
.yde{bottom:603.893333pt;}
.y14{bottom:604.960000pt;}
.y75{bottom:606.293333pt;}
.y56{bottom:607.640000pt;}
.yc6{bottom:609.760000pt;}
.y90{bottom:611.360000pt;}
.y13{bottom:623.360000pt;}
.y74{bottom:624.693333pt;}
.y55{bottom:626.026667pt;}
.yc5{bottom:628.173333pt;}
.y8f{bottom:629.773333pt;}
.y12{bottom:641.773333pt;}
.y73{bottom:643.106667pt;}
.y54{bottom:644.426667pt;}
.yc4{bottom:646.560000pt;}
.y8e{bottom:648.173333pt;}
.y11{bottom:660.173333pt;}
.y72{bottom:661.506667pt;}
.y53{bottom:662.840000pt;}
.yc3{bottom:664.960000pt;}
.y10{bottom:678.560000pt;}
.y71{bottom:679.893333pt;}
.y52{bottom:681.226667pt;}
.yc2{bottom:683.360000pt;}
.y8d{bottom:684.960000pt;}
.yf{bottom:696.960000pt;}
.y70{bottom:698.293333pt;}
.y3d{bottom:699.626667pt;}
.yc1{bottom:701.773333pt;}
.y8c{bottom:710.840000pt;}
.ye{bottom:715.373333pt;}
.y6f{bottom:716.693333pt;}
.y3c{bottom:718.026667pt;}
.yc0{bottom:727.373333pt;}
.y8b{bottom:731.093333pt;}
.y6e{bottom:735.093333pt;}
.y3b{bottom:736.440000pt;}
.yd{bottom:741.506667pt;}
.ybf{bottom:747.666667pt;}
.y6d{bottom:753.533333pt;}
.y3a{bottom:754.866667pt;}
.yc{bottom:767.933333pt;}
.y6c{bottom:771.933333pt;}
.y39{bottom:773.266667pt;}
.y6b{bottom:790.333333pt;}
.y38{bottom:791.666667pt;}
.yb{bottom:794.333333pt;}
.y6a{bottom:808.733333pt;}
.y37{bottom:810.066667pt;}
.ya{bottom:812.466667pt;}
.y69{bottom:827.133333pt;}
.y9{bottom:827.666667pt;}
.y36{bottom:828.466667pt;}
.y8{bottom:843.666667pt;}
.y68{bottom:845.533333pt;}
.y51{bottom:846.866667pt;}
.y7{bottom:862.066667pt;}
.y67{bottom:863.933333pt;}
.y35{bottom:865.266667pt;}
.y6{bottom:879.933333pt;}
.y34{bottom:883.666667pt;}
.y5{bottom:895.133333pt;}
.y66{bottom:900.760000pt;}
.y33{bottom:902.093333pt;}
.y4{bottom:911.173333pt;}
.y32{bottom:920.506667pt;}
.y65{bottom:928.773333pt;}
.y3{bottom:930.373333pt;}
.y31{bottom:938.893333pt;}
.y2{bottom:951.693333pt;}
.y64{bottom:954.626667pt;}
.y30{bottom:957.293333pt;}
.y1{bottom:972.773333pt;}
.y2f{bottom:975.693333pt;}
.y63{bottom:978.106667pt;}
.y2d{bottom:1021.560000pt;}
.y2c{bottom:1024.773333pt;}
.hb{height:13.866667pt;}
.he{height:41.875000pt;}
.ha{height:47.085938pt;}
.hc{height:47.109375pt;}
.h6{height:52.317708pt;}
.h8{height:52.343750pt;}
.h11{height:57.375000pt;}
.h10{height:62.781250pt;}
.h5{height:62.812500pt;}
.h7{height:64.500000pt;}
.hf{height:65.781915pt;}
.h2{height:66.317708pt;}
.h9{height:66.625000pt;}
.h4{height:73.281250pt;}
.h3{height:75.250000pt;}
.hd{height:1122.366520pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:6.133333pt;}
.w4{width:12.266667pt;}
.w3{width:793.833333pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:94.433333pt;}
.x10{left:101.100000pt;}
.x1{left:112.033333pt;}
.x11{left:113.366667pt;}
.x2{left:127.233333pt;}
.xa{left:141.640000pt;}
.x12{left:157.626667pt;}
.x15{left:160.600000pt;}
.x16{left:169.933333pt;}
.x17{left:207.800000pt;}
.xb{left:241.133333pt;}
.xd{left:283.806667pt;}
.xf{left:286.506667pt;}
.xe{left:289.173333pt;}
.x4{left:299.840000pt;}
.x7{left:306.773333pt;}
.x5{left:310.506667pt;}
.x6{left:320.640000pt;}
.x8{left:323.840000pt;}
.x3{left:396.933333pt;}
.x18{left:419.066667pt;}
.xc{left:436.666667pt;}
.x14{left:437.733333pt;}
.x13{left:693.306667pt;}
}




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