
    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_52b5bd3671c1460dc6d25f8b.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c4aec2b28213a5eb7d802632.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_39f99a058120b70a8e5bb866.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_c90ef95569f3323098fbd1b9.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_bdd181b29c3ee7a75552f13e.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_11fdff87ffa75c8289acaff1.woff')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_51948cecf760d1549dcfc40f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.088379;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_a8eb4e631bc15bdfb9d19841.woff')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_a8eb4e631bc15bdfb9d19841.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2252b21531daa3a09a092688.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_0c1df2c16cd234b8ac85359f.woff')format("woff");}.ffb{font-family:ffb;line-height:1.372070;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:ffc;src:url('chunks/assets/font_d5a207ea9379ad3962e7e840.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_b7fcf9de1a065dde1457828a.woff')format("woff");}.ffd{font-family:ffd;line-height:0.773926;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:ffe;src:url('chunks/assets/font_e6744905ffb1a794e35b36b9.woff')format("woff");}.ffe{font-family:ffe;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls20{letter-spacing:-0.365400px;}
.ls1f{letter-spacing:-0.246000px;}
.ls19{letter-spacing:-0.186600px;}
.ls24{letter-spacing:-0.151200px;}
.lsa{letter-spacing:-0.135000px;}
.ls22{letter-spacing:-0.133800px;}
.ls11{letter-spacing:-0.121200px;}
.ls9{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.ls1d{letter-spacing:-0.063600px;}
.ls29{letter-spacing:-0.040320px;}
.ls10{letter-spacing:-0.031800px;}
.ls1b{letter-spacing:-0.014760px;}
.lsd{letter-spacing:-0.011400px;}
.lsb{letter-spacing:-0.008400px;}
.ls7{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.023040px;}
.ls17{letter-spacing:0.045360px;}
.ls18{letter-spacing:0.048960px;}
.ls21{letter-spacing:0.049200px;}
.ls2b{letter-spacing:0.060600px;}
.ls15{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.lsf{letter-spacing:0.074400px;}
.ls12{letter-spacing:0.086400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls23{letter-spacing:0.098400px;}
.ls1e{letter-spacing:0.114000px;}
.ls4{letter-spacing:0.119400px;}
.ls1c{letter-spacing:0.138600px;}
.ls8{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.154200px;}
.ls1a{letter-spacing:0.173400px;}
.ls5{letter-spacing:0.180000px;}
.lse{letter-spacing:0.267600px;}
.ls2a{letter-spacing:0.319800px;}
.ls0{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.446400px;}
.ls27{letter-spacing:1.166400px;}
.ls13{letter-spacing:1.533600px;}
.ls14{letter-spacing:27.093600px;}
.ls2c{letter-spacing:47.726640px;}
.ls16{letter-spacing:63.566640px;}
.ls28{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws15{word-spacing:-47.880000px;}
.ws7{word-spacing:-14.493600px;}
.wsc{word-spacing:-14.372400px;}
.wsa{word-spacing:-13.399800px;}
.ws14{word-spacing:-13.324800px;}
.ws5{word-spacing:-13.300800px;}
.ws10{word-spacing:-13.275600px;}
.wse{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws4{word-spacing:-13.215000px;}
.wsd{word-spacing:-13.211640px;}
.wsf{word-spacing:-13.162800px;}
.ws9{word-spacing:-13.039800px;}
.ws11{word-spacing:-10.399800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws13{word-spacing:-8.707800px;}
.ws16{word-spacing:-8.614200px;}
.wsb{word-spacing:-8.576640px;}
.ws2{word-spacing:-8.553600px;}
.ws12{word-spacing:-8.402400px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._4{margin-left:-3.547200px;}
._5{margin-left:-2.523597px;}
._0{margin-left:-1.050000px;}
._1{width:1.056360px;}
._a{width:2.069880px;}
._7{width:3.727200px;}
._8{width:4.810088px;}
._6{width:5.831400px;}
._3{width:7.215001px;}
._2{width:8.236200px;}
._10{width:9.498960px;}
._11{width:10.547281px;}
._16{width:11.720879px;}
._9{width:15.090000px;}
._12{width:16.232400px;}
._13{width:17.314560px;}
._15{width:18.360360px;}
._f{width:20.440800px;}
._e{width:21.703320px;}
._14{width:22.873560px;}
._b{width:25.971840px;}
._c{width:28.476480px;}
._d{width:35.530920px;}
._17{width:42.228000px;}
._18{width:43.743600px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs9{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.fs8{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y39{bottom:7.830000px;}
.y42{bottom:7.860000px;}
.y3c{bottom:7.920000px;}
.y3f{bottom:25.470000px;}
.y46{bottom:29.970000px;}
.y85{bottom:35.190000px;}
.y83{bottom:62.550000px;}
.y2{bottom:73.380000px;}
.y25{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y50{bottom:117.750000px;}
.y4f{bottom:135.300000px;}
.yb6{bottom:147.900000px;}
.y23{bottom:148.530000px;}
.y4e{bottom:152.940000px;}
.y22{bottom:166.080000px;}
.yb5{bottom:174.810000px;}
.y4d{bottom:179.490000px;}
.y72{bottom:184.170000px;}
.y99{bottom:197.940000px;}
.y21{bottom:201.630000px;}
.y4c{bottom:215.040000px;}
.y20{bottom:219.270000px;}
.y71{bottom:219.810000px;}
.yb4{bottom:223.050000px;}
.y4b{bottom:232.680000px;}
.y98{bottom:233.490000px;}
.y1f{bottom:236.820000px;}
.yb3{bottom:249.960000px;}
.y4a{bottom:250.230000px;}
.y97{bottom:251.130000px;}
.y1e{bottom:254.460000px;}
.y70{bottom:255.360000px;}
.y96{bottom:268.680000px;}
.y6f{bottom:272.910000px;}
.y49{bottom:276.870000px;}
.y1d{bottom:281.370000px;}
.yb2{bottom:287.040000px;}
.y6e{bottom:290.550000px;}
.y95{bottom:303.510000px;}
.y48{bottom:309.810000px;}
.yb1{bottom:313.950000px;}
.y94{bottom:317.640000px;}
.y6d{bottom:326.100000px;}
.y93{bottom:329.070000px;}
.y1c{bottom:329.970000px;}
.y80{bottom:334.110000px;}
.y47{bottom:337.170000px;}
.y6c{bottom:343.740000px;}
.yb0{bottom:351.300000px;}
.y7f{bottom:351.750000px;}
.y6b{bottom:361.290000px;}
.y45{bottom:364.440000px;}
.y1b{bottom:366.960000px;}
.y6a{bottom:378.840000px;}
.yd5{bottom:380.730000px;}
.y1a{bottom:384.510000px;}
.y7e{bottom:386.580000px;}
.yd4{bottom:398.370000px;}
.yaf{bottom:399.540000px;}
.y7d{bottom:400.710000px;}
.y69{bottom:405.480000px;}
.y44{bottom:413.940000px;}
.yd3{bottom:415.920000px;}
.yae{bottom:417.090000px;}
.y19{bottom:420.150000px;}
.y18{bottom:437.700000px;}
.y68{bottom:441.030000px;}
.y43{bottom:441.210000px;}
.yd2{bottom:442.470000px;}
.yad{bottom:444.000000px;}
.y67{bottom:458.670000px;}
.yd1{bottom:460.110000px;}
.y41{bottom:468.570000px;}
.y17{bottom:473.370000px;}
.y66{bottom:485.250000px;}
.yd0{bottom:486.690000px;}
.y16{bottom:490.920000px;}
.yac{bottom:492.360000px;}
.y40{bottom:495.960000px;}
.ycf{bottom:504.330000px;}
.y15{bottom:508.470000px;}
.yab{bottom:509.910000px;}
.y65{bottom:520.800000px;}
.y3e{bottom:523.230000px;}
.yaa{bottom:527.460000px;}
.yce{bottom:530.880000px;}
.y64{bottom:539.250000px;}
.y14{bottom:544.110000px;}
.ycd{bottom:548.430000px;}
.y63{bottom:557.610000px;}
.y13{bottom:561.660000px;}
.ya9{bottom:563.100000px;}
.y3d{bottom:568.230000px;}
.ycc{bottom:575.070000px;}
.y12{bottom:579.210000px;}
.ya8{bottom:580.650000px;}
.y62{bottom:585.060000px;}
.y3b{bottom:595.500000px;}
.y11{bottom:596.850000px;}
.ya7{bottom:598.290000px;}
.ycb{bottom:601.620000px;}
.y10{bottom:614.400000px;}
.yca{bottom:619.260000px;}
.y61{bottom:620.610000px;}
.y3a{bottom:622.860000px;}
.yf{bottom:632.040000px;}
.ya6{bottom:633.840000px;}
.y60{bottom:639.060000px;}
.yc9{bottom:645.810000px;}
.ye{bottom:649.590000px;}
.y38{bottom:650.220000px;}
.ya5{bottom:651.390000px;}
.y5f{bottom:657.420000px;}
.yc8{bottom:663.360000px;}
.ya4{bottom:669.030000px;}
.y5e{bottom:684.870000px;}
.yd{bottom:685.140000px;}
.ya3{bottom:686.580000px;}
.yc7{bottom:690.000000px;}
.y37{bottom:698.910000px;}
.ya2{bottom:704.220000px;}
.yc6{bottom:707.550000px;}
.y92{bottom:717.180000px;}
.y5d{bottom:720.510000px;}
.yc{bottom:720.780000px;}
.yc5{bottom:725.190000px;}
.y36{bottom:734.460000px;}
.y91{bottom:734.730000px;}
.yb{bottom:738.330000px;}
.ya1{bottom:739.770000px;}
.yc4{bottom:751.740000px;}
.y5c{bottom:756.060000px;}
.ya0{bottom:757.320000px;}
.y35{bottom:761.370000px;}
.ya{bottom:765.330000px;}
.yc3{bottom:769.290000px;}
.y90{bottom:770.370000px;}
.y5b{bottom:773.700000px;}
.y9f{bottom:774.960000px;}
.y8f{bottom:787.920000px;}
.yc2{bottom:795.930000px;}
.y5a{bottom:809.250000px;}
.y34{bottom:809.610000px;}
.y9e{bottom:810.510000px;}
.y9{bottom:812.040000px;}
.yc1{bottom:813.480000px;}
.y8e{bottom:823.560000px;}
.y33{bottom:828.060000px;}
.y9d{bottom:828.150000px;}
.yc0{bottom:840.030000px;}
.y8d{bottom:841.110000px;}
.y59{bottom:844.800000px;}
.y32{bottom:845.610000px;}
.y9c{bottom:845.700000px;}
.y8{bottom:847.860000px;}
.ybf{bottom:857.670000px;}
.y8c{bottom:858.660000px;}
.y58{bottom:862.440000px;}
.y9b{bottom:863.250000px;}
.y8b{bottom:876.300000px;}
.y31{bottom:882.060000px;}
.y7{bottom:883.860000px;}
.ybe{bottom:884.220000px;}
.y57{bottom:888.990000px;}
.y9a{bottom:890.160000px;}
.ybd{bottom:901.860000px;}
.y8a{bottom:902.850000px;}
.y7c{bottom:906.000000px;}
.y30{bottom:908.970000px;}
.y56{bottom:921.930000px;}
.y7b{bottom:923.550000px;}
.y6{bottom:923.640000px;}
.ybc{bottom:928.410000px;}
.y89{bottom:937.770000px;}
.y5{bottom:941.640000px;}
.y2f{bottom:945.960000px;}
.y55{bottom:949.290000px;}
.y88{bottom:951.900000px;}
.y7a{bottom:959.190000px;}
.y2e{bottom:963.600000px;}
.y87{bottom:964.680000px;}
.ybb{bottom:972.600000px;}
.y4{bottom:973.950000px;}
.y54{bottom:976.650000px;}
.y79{bottom:976.740000px;}
.y2d{bottom:981.150000px;}
.yba{bottom:990.150000px;}
.y86{bottom:991.950000px;}
.yb9{bottom:1007.790000px;}
.y3{bottom:1012.230000px;}
.y78{bottom:1012.320000px;}
.y2c{bottom:1016.820000px;}
.y82{bottom:1019.340000px;}
.y53{bottom:1025.370000px;}
.y77{bottom:1029.960000px;}
.y2b{bottom:1034.370000px;}
.y84{bottom:1046.700000px;}
.y76{bottom:1047.510000px;}
.y2a{bottom:1051.920000px;}
.y75{bottom:1065.150000px;}
.y29{bottom:1069.560000px;}
.y81{bottom:1073.970000px;}
.yb8{bottom:1078.560000px;}
.y28{bottom:1087.110000px;}
.y52{bottom:1087.560000px;}
.y74{bottom:1091.700000px;}
.yb7{bottom:1096.110000px;}
.y51{bottom:1105.110000px;}
.y27{bottom:1122.750000px;}
.y73{bottom:1127.610000px;}
.y26{bottom:1140.300000px;}
.y24{bottom:1194.300000px;}
.hd{height:26.550000px;}
.h11{height:26.580000px;}
.hf{height:26.640000px;}
.h1a{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h17{height:41.661211px;}
.h10{height:44.190000px;}
.h12{height:48.690000px;}
.he{height:50.902383px;}
.h8{height:52.311445px;}
.h19{height:53.910000px;}
.h9{height:55.779258px;}
.h7{height:56.704219px;}
.h5{height:57.323320px;}
.h16{height:59.004492px;}
.h15{height:59.973223px;}
.ha{height:61.793886px;}
.h13{height:62.585859px;}
.hb{height:67.714259px;}
.hc{height:68.582109px;}
.h4{height:72.985430px;}
.h18{height:81.270000px;}
.h14{height:81.382852px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wc{width:52.200000px;}
.w8{width:101.700000px;}
.w9{width:105.750000px;}
.wb{width:108.750000px;}
.w6{width:131.250000px;}
.wa{width:158.130000px;}
.w5{width:163.980000px;}
.w7{width:267.600000px;}
.w3{width:308.550000px;}
.w4{width:446.430000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:3.960000px;}
.x9{left:7.740000px;}
.x1{left:68.040000px;}
.xb{left:71.460000px;}
.x18{left:78.479987px;}
.x16{left:93.599987px;}
.x4{left:95.039987px;}
.x19{left:111.239987px;}
.x5{left:122.039987px;}
.x2{left:192.719987px;}
.x10{left:207.930000px;}
.xc{left:269.760000px;}
.x8{left:298.650000px;}
.xf{left:314.490000px;}
.xd{left:324.030000px;}
.x17{left:361.559987px;}
.x7{left:378.030000px;}
.xe{left:416.910000px;}
.x14{left:430.139987px;}
.xa{left:463.350000px;}
.x11{left:526.380000px;}
.x13{left:579.300000px;}
.x12{left:632.310000px;}
.x15{left:696.389987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls20{letter-spacing:-0.324800pt;}
.ls1f{letter-spacing:-0.218667pt;}
.ls19{letter-spacing:-0.165867pt;}
.ls24{letter-spacing:-0.134400pt;}
.lsa{letter-spacing:-0.120000pt;}
.ls22{letter-spacing:-0.118933pt;}
.ls11{letter-spacing:-0.107733pt;}
.ls9{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.ls1d{letter-spacing:-0.056533pt;}
.ls29{letter-spacing:-0.035840pt;}
.ls10{letter-spacing:-0.028267pt;}
.ls1b{letter-spacing:-0.013120pt;}
.lsd{letter-spacing:-0.010133pt;}
.lsb{letter-spacing:-0.007467pt;}
.ls7{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.020480pt;}
.ls17{letter-spacing:0.040320pt;}
.ls18{letter-spacing:0.043520pt;}
.ls21{letter-spacing:0.043733pt;}
.ls2b{letter-spacing:0.053867pt;}
.ls15{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.lsf{letter-spacing:0.066133pt;}
.ls12{letter-spacing:0.076800pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls23{letter-spacing:0.087467pt;}
.ls1e{letter-spacing:0.101333pt;}
.ls4{letter-spacing:0.106133pt;}
.ls1c{letter-spacing:0.123200pt;}
.ls8{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.137067pt;}
.ls1a{letter-spacing:0.154133pt;}
.ls5{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.237867pt;}
.ls2a{letter-spacing:0.284267pt;}
.ls0{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.396800pt;}
.ls27{letter-spacing:1.036800pt;}
.ls13{letter-spacing:1.363200pt;}
.ls14{letter-spacing:24.083200pt;}
.ls2c{letter-spacing:42.423680pt;}
.ls16{letter-spacing:56.503680pt;}
.ls28{letter-spacing:71.863680pt;}
.ws15{word-spacing:-42.560000pt;}
.ws7{word-spacing:-12.883200pt;}
.wsc{word-spacing:-12.775467pt;}
.wsa{word-spacing:-11.910933pt;}
.ws14{word-spacing:-11.844267pt;}
.ws5{word-spacing:-11.822933pt;}
.ws10{word-spacing:-11.800533pt;}
.wse{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws4{word-spacing:-11.746667pt;}
.wsd{word-spacing:-11.743680pt;}
.wsf{word-spacing:-11.700267pt;}
.ws9{word-spacing:-11.590933pt;}
.ws11{word-spacing:-9.244267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws13{word-spacing:-7.740267pt;}
.ws16{word-spacing:-7.657067pt;}
.wsb{word-spacing:-7.623680pt;}
.ws2{word-spacing:-7.603200pt;}
.ws12{word-spacing:-7.468800pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._4{margin-left:-3.153067pt;}
._5{margin-left:-2.243197pt;}
._0{margin-left:-0.933333pt;}
._1{width:0.938987pt;}
._a{width:1.839893pt;}
._7{width:3.313066pt;}
._8{width:4.275633pt;}
._6{width:5.183466pt;}
._3{width:6.413334pt;}
._2{width:7.321066pt;}
._10{width:8.443520pt;}
._11{width:9.375361pt;}
._16{width:10.418559pt;}
._9{width:13.413333pt;}
._12{width:14.428800pt;}
._13{width:15.390720pt;}
._15{width:16.320320pt;}
._f{width:18.169600pt;}
._e{width:19.291840pt;}
._14{width:20.332053pt;}
._b{width:23.086080pt;}
._c{width:25.312427pt;}
._d{width:31.583040pt;}
._17{width:37.536000pt;}
._18{width:38.883200pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs9{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.fs8{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:6.960000pt;}
.y42{bottom:6.986667pt;}
.y3c{bottom:7.040000pt;}
.y3f{bottom:22.640000pt;}
.y46{bottom:26.640000pt;}
.y85{bottom:31.280000pt;}
.y83{bottom:55.600000pt;}
.y2{bottom:65.226667pt;}
.y25{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y50{bottom:104.666667pt;}
.y4f{bottom:120.266667pt;}
.yb6{bottom:131.466667pt;}
.y23{bottom:132.026667pt;}
.y4e{bottom:135.946667pt;}
.y22{bottom:147.626667pt;}
.yb5{bottom:155.386667pt;}
.y4d{bottom:159.546667pt;}
.y72{bottom:163.706667pt;}
.y99{bottom:175.946667pt;}
.y21{bottom:179.226667pt;}
.y4c{bottom:191.146667pt;}
.y20{bottom:194.906667pt;}
.y71{bottom:195.386667pt;}
.yb4{bottom:198.266667pt;}
.y4b{bottom:206.826667pt;}
.y98{bottom:207.546667pt;}
.y1f{bottom:210.506667pt;}
.yb3{bottom:222.186667pt;}
.y4a{bottom:222.426667pt;}
.y97{bottom:223.226667pt;}
.y1e{bottom:226.186667pt;}
.y70{bottom:226.986667pt;}
.y96{bottom:238.826667pt;}
.y6f{bottom:242.586667pt;}
.y49{bottom:246.106667pt;}
.y1d{bottom:250.106667pt;}
.yb2{bottom:255.146667pt;}
.y6e{bottom:258.266667pt;}
.y95{bottom:269.786667pt;}
.y48{bottom:275.386667pt;}
.yb1{bottom:279.066667pt;}
.y94{bottom:282.346667pt;}
.y6d{bottom:289.866667pt;}
.y93{bottom:292.506667pt;}
.y1c{bottom:293.306667pt;}
.y80{bottom:296.986667pt;}
.y47{bottom:299.706667pt;}
.y6c{bottom:305.546667pt;}
.yb0{bottom:312.266667pt;}
.y7f{bottom:312.666667pt;}
.y6b{bottom:321.146667pt;}
.y45{bottom:323.946667pt;}
.y1b{bottom:326.186667pt;}
.y6a{bottom:336.746667pt;}
.yd5{bottom:338.426667pt;}
.y1a{bottom:341.786667pt;}
.y7e{bottom:343.626667pt;}
.yd4{bottom:354.106667pt;}
.yaf{bottom:355.146667pt;}
.y7d{bottom:356.186667pt;}
.y69{bottom:360.426667pt;}
.y44{bottom:367.946667pt;}
.yd3{bottom:369.706667pt;}
.yae{bottom:370.746667pt;}
.y19{bottom:373.466667pt;}
.y18{bottom:389.066667pt;}
.y68{bottom:392.026667pt;}
.y43{bottom:392.186667pt;}
.yd2{bottom:393.306667pt;}
.yad{bottom:394.666667pt;}
.y67{bottom:407.706667pt;}
.yd1{bottom:408.986667pt;}
.y41{bottom:416.506667pt;}
.y17{bottom:420.773333pt;}
.y66{bottom:431.333333pt;}
.yd0{bottom:432.613333pt;}
.y16{bottom:436.373333pt;}
.yac{bottom:437.653333pt;}
.y40{bottom:440.853333pt;}
.ycf{bottom:448.293333pt;}
.y15{bottom:451.973333pt;}
.yab{bottom:453.253333pt;}
.y65{bottom:462.933333pt;}
.y3e{bottom:465.093333pt;}
.yaa{bottom:468.853333pt;}
.yce{bottom:471.893333pt;}
.y64{bottom:479.333333pt;}
.y14{bottom:483.653333pt;}
.ycd{bottom:487.493333pt;}
.y63{bottom:495.653333pt;}
.y13{bottom:499.253333pt;}
.ya9{bottom:500.533333pt;}
.y3d{bottom:505.093333pt;}
.ycc{bottom:511.173333pt;}
.y12{bottom:514.853333pt;}
.ya8{bottom:516.133333pt;}
.y62{bottom:520.053333pt;}
.y3b{bottom:529.333333pt;}
.y11{bottom:530.533333pt;}
.ya7{bottom:531.813333pt;}
.ycb{bottom:534.773333pt;}
.y10{bottom:546.133333pt;}
.yca{bottom:550.453333pt;}
.y61{bottom:551.653333pt;}
.y3a{bottom:553.653333pt;}
.yf{bottom:561.813333pt;}
.ya6{bottom:563.413333pt;}
.y60{bottom:568.053333pt;}
.yc9{bottom:574.053333pt;}
.ye{bottom:577.413333pt;}
.y38{bottom:577.973333pt;}
.ya5{bottom:579.013333pt;}
.y5f{bottom:584.373333pt;}
.yc8{bottom:589.653333pt;}
.ya4{bottom:594.693333pt;}
.y5e{bottom:608.773333pt;}
.yd{bottom:609.013333pt;}
.ya3{bottom:610.293333pt;}
.yc7{bottom:613.333333pt;}
.y37{bottom:621.253333pt;}
.ya2{bottom:625.973333pt;}
.yc6{bottom:628.933333pt;}
.y92{bottom:637.493333pt;}
.y5d{bottom:640.453333pt;}
.yc{bottom:640.693333pt;}
.yc5{bottom:644.613333pt;}
.y36{bottom:652.853333pt;}
.y91{bottom:653.093333pt;}
.yb{bottom:656.293333pt;}
.ya1{bottom:657.573333pt;}
.yc4{bottom:668.213333pt;}
.y5c{bottom:672.053333pt;}
.ya0{bottom:673.173333pt;}
.y35{bottom:676.773333pt;}
.ya{bottom:680.293333pt;}
.yc3{bottom:683.813333pt;}
.y90{bottom:684.773333pt;}
.y5b{bottom:687.733333pt;}
.y9f{bottom:688.853333pt;}
.y8f{bottom:700.373333pt;}
.yc2{bottom:707.493333pt;}
.y5a{bottom:719.333333pt;}
.y34{bottom:719.653333pt;}
.y9e{bottom:720.453333pt;}
.y9{bottom:721.813333pt;}
.yc1{bottom:723.093333pt;}
.y8e{bottom:732.053333pt;}
.y33{bottom:736.053333pt;}
.y9d{bottom:736.133333pt;}
.yc0{bottom:746.693333pt;}
.y8d{bottom:747.653333pt;}
.y59{bottom:750.933333pt;}
.y32{bottom:751.653333pt;}
.y9c{bottom:751.733333pt;}
.y8{bottom:753.653333pt;}
.ybf{bottom:762.373333pt;}
.y8c{bottom:763.253333pt;}
.y58{bottom:766.613333pt;}
.y9b{bottom:767.333333pt;}
.y8b{bottom:778.933333pt;}
.y31{bottom:784.053333pt;}
.y7{bottom:785.653333pt;}
.ybe{bottom:785.973333pt;}
.y57{bottom:790.213333pt;}
.y9a{bottom:791.253333pt;}
.ybd{bottom:801.653333pt;}
.y8a{bottom:802.533333pt;}
.y7c{bottom:805.333333pt;}
.y30{bottom:807.973333pt;}
.y56{bottom:819.493333pt;}
.y7b{bottom:820.933333pt;}
.y6{bottom:821.013333pt;}
.ybc{bottom:825.253333pt;}
.y89{bottom:833.573333pt;}
.y5{bottom:837.013333pt;}
.y2f{bottom:840.853333pt;}
.y55{bottom:843.813333pt;}
.y88{bottom:846.133333pt;}
.y7a{bottom:852.613333pt;}
.y2e{bottom:856.533333pt;}
.y87{bottom:857.493333pt;}
.ybb{bottom:864.533333pt;}
.y4{bottom:865.733333pt;}
.y54{bottom:868.133333pt;}
.y79{bottom:868.213333pt;}
.y2d{bottom:872.133333pt;}
.yba{bottom:880.133333pt;}
.y86{bottom:881.733333pt;}
.yb9{bottom:895.813333pt;}
.y3{bottom:899.760000pt;}
.y78{bottom:899.840000pt;}
.y2c{bottom:903.840000pt;}
.y82{bottom:906.080000pt;}
.y53{bottom:911.440000pt;}
.y77{bottom:915.520000pt;}
.y2b{bottom:919.440000pt;}
.y84{bottom:930.400000pt;}
.y76{bottom:931.120000pt;}
.y2a{bottom:935.040000pt;}
.y75{bottom:946.800000pt;}
.y29{bottom:950.720000pt;}
.y81{bottom:954.640000pt;}
.yb8{bottom:958.720000pt;}
.y28{bottom:966.320000pt;}
.y52{bottom:966.720000pt;}
.y74{bottom:970.400000pt;}
.yb7{bottom:974.320000pt;}
.y51{bottom:982.320000pt;}
.y27{bottom:998.000000pt;}
.y73{bottom:1002.320000pt;}
.y26{bottom:1013.600000pt;}
.y24{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.h11{height:23.626667pt;}
.hf{height:23.680000pt;}
.h1a{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h17{height:37.032187pt;}
.h10{height:39.280000pt;}
.h12{height:43.280000pt;}
.he{height:45.246562pt;}
.h8{height:46.499062pt;}
.h19{height:47.920000pt;}
.h9{height:49.581562pt;}
.h7{height:50.403750pt;}
.h5{height:50.954062pt;}
.h16{height:52.448437pt;}
.h15{height:53.309531pt;}
.ha{height:54.927899pt;}
.h13{height:55.631875pt;}
.hb{height:60.190452pt;}
.hc{height:60.961875pt;}
.h4{height:64.875937pt;}
.h18{height:72.240000pt;}
.h14{height:72.340312pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wc{width:46.400000pt;}
.w8{width:90.400000pt;}
.w9{width:94.000000pt;}
.wb{width:96.666667pt;}
.w6{width:116.666667pt;}
.wa{width:140.560000pt;}
.w5{width:145.760000pt;}
.w7{width:237.866667pt;}
.w3{width:274.266667pt;}
.w4{width:396.826667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:3.520000pt;}
.x9{left:6.880000pt;}
.x1{left:60.480000pt;}
.xb{left:63.520000pt;}
.x18{left:69.759988pt;}
.x16{left:83.199988pt;}
.x4{left:84.479988pt;}
.x19{left:98.879988pt;}
.x5{left:108.479988pt;}
.x2{left:171.306655pt;}
.x10{left:184.826667pt;}
.xc{left:239.786667pt;}
.x8{left:265.466667pt;}
.xf{left:279.546667pt;}
.xd{left:288.026667pt;}
.x17{left:321.386655pt;}
.x7{left:336.026667pt;}
.xe{left:370.586667pt;}
.x14{left:382.346655pt;}
.xa{left:411.866667pt;}
.x11{left:467.893333pt;}
.x13{left:514.933333pt;}
.x12{left:562.053333pt;}
.x15{left:619.013322pt;}
.x3{left:711.413322pt;}
}




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