
    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_1cb1629d8a2ec5a219cba4b3.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8dd9ed89d9f539b71be9b0c1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.050293;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_59c2083a91d0e2e8270c0285.woff')format("woff");}.ff3{font-family:ff3;line-height:1.041504;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_1c16acb51e2c2314e8873904.woff')format("woff");}.ff4{font-family:ff4;line-height:1.041504;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_b9aa8438b09be2d64650df57.woff')format("woff");}.ff5{font-family:ff5;line-height:1.082031;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_bc80870471fced858043ae72.woff')format("woff");}.ff6{font-family:ff6;line-height:1.082031;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_4fec1bf152c8481bd7a5cde6.woff')format("woff");}.ff7{font-family:ff7;line-height:1.090332;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_fa2d08aa226df71c7ae790bb.woff')format("woff");}.ff8{font-family:ff8;line-height:1.090332;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);}
.v0{vertical-align:0.000000px;}
.ls1a{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.288000px;}
.ls25{letter-spacing:-0.253200px;}
.ls19{letter-spacing:-0.232800px;}
.ls1e{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.072000px;}
.ls1b{letter-spacing:-0.000003px;}
.ls6{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.000001px;}
.ls7{letter-spacing:0.072000px;}
.ls1f{letter-spacing:0.144000px;}
.ls21{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls36{letter-spacing:0.432000px;}
.ls1d{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.648000px;}
.ls8{letter-spacing:0.792000px;}
.ls31{letter-spacing:1.368000px;}
.lsa{letter-spacing:2.376000px;}
.ls2e{letter-spacing:2.808000px;}
.ls16{letter-spacing:4.968000px;}
.ls15{letter-spacing:5.688000px;}
.lsd{letter-spacing:5.976000px;}
.ls34{letter-spacing:6.408000px;}
.ls33{letter-spacing:6.588000px;}
.ls3{letter-spacing:7.128000px;}
.ls2a{letter-spacing:7.308000px;}
.ls2{letter-spacing:7.848000px;}
.ls30{letter-spacing:8.568000px;}
.lse{letter-spacing:9.288000px;}
.ls27{letter-spacing:10.008000px;}
.ls2b{letter-spacing:10.728000px;}
.ls17{letter-spacing:11.016000px;}
.ls10{letter-spacing:11.448000px;}
.lsf{letter-spacing:12.168000px;}
.ls4{letter-spacing:13.608000px;}
.ls12{letter-spacing:14.328000px;}
.ls11{letter-spacing:14.616000px;}
.ls13{letter-spacing:15.048000px;}
.ls2c{letter-spacing:16.056000px;}
.lsb{letter-spacing:16.488000px;}
.ls2f{letter-spacing:17.208000px;}
.lsc{letter-spacing:17.928000px;}
.ls35{letter-spacing:18.648000px;}
.ls23{letter-spacing:19.368000px;}
.ls18{letter-spacing:21.528000px;}
.ls5{letter-spacing:22.248000px;}
.ls29{letter-spacing:23.976000px;}
.ls32{letter-spacing:26.136000px;}
.ls24{letter-spacing:26.568000px;}
.ls2d{letter-spacing:28.728000px;}
.ls28{letter-spacing:43.848000px;}
.ls26{letter-spacing:70.488000px;}
.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;}
}
.ws0{word-spacing:-23.671440px;}
.ws4{word-spacing:-21.024000px;}
.ws10{word-spacing:-20.736000px;}
.wsd{word-spacing:-20.592000px;}
.wse{word-spacing:-20.448000px;}
.wsa{word-spacing:-20.376000px;}
.ws3{word-spacing:-20.304000px;}
.wsf{word-spacing:-20.232001px;}
.ws2{word-spacing:-20.232000px;}
.ws11{word-spacing:-20.231997px;}
.ws8{word-spacing:-20.160000px;}
.ws12{word-spacing:-19.944000px;}
.ws7{word-spacing:-19.872000px;}
.wsc{word-spacing:-18.360240px;}
.ws9{word-spacing:-17.784000px;}
.ws1{word-spacing:-16.792560px;}
.ws6{word-spacing:-16.432560px;}
.ws13{word-spacing:-0.600000px;}
.ws5{word-spacing:0.000000px;}
.wsb{word-spacing:12.744000px;}
._3{margin-left:-1.296000px;}
._0{width:1.015920px;}
._d{width:2.272320px;}
._6{width:4.224000px;}
._5{width:5.400000px;}
._7{width:6.684000px;}
._8{width:7.968000px;}
._b{width:9.360000px;}
._c{width:10.512000px;}
._4{width:12.024000px;}
._f{width:13.608000px;}
._15{width:14.832000px;}
._13{width:16.632000px;}
._12{width:18.336000px;}
._1c{width:19.512000px;}
._1b{width:20.748000px;}
._10{width:21.888000px;}
._11{width:23.452080px;}
._24{width:24.479760px;}
._1a{width:25.500000px;}
._14{width:27.288000px;}
._19{width:28.488000px;}
._e{width:30.240000px;}
._a{width:31.680000px;}
._9{width:32.760000px;}
._21{width:36.216000px;}
._18{width:38.028240px;}
._1f{width:43.560000px;}
._20{width:45.012000px;}
._22{width:46.224000px;}
._23{width:47.232000px;}
._16{width:63.696000px;}
._17{width:64.752000px;}
._1e{width:69.508080px;}
._1d{width:70.632000px;}
._1{width:246.447840px;}
._2{width:488.212320px;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:46.296000px;}
.y3{bottom:66.276000px;}
.y2{bottom:83.556000px;}
.y1{bottom:103.356000px;}
.y28{bottom:123.156000px;}
.y4d{bottom:131.256000px;}
.ya1{bottom:136.116000px;}
.y63{bottom:143.676000px;}
.y27{bottom:153.390000px;}
.y4c{bottom:161.490000px;}
.y86{bottom:162.570000px;}
.ya0{bottom:163.830000px;}
.y62{bottom:169.770000px;}
.y6a{bottom:171.390000px;}
.y26{bottom:183.630000px;}
.y4b{bottom:191.550000px;}
.y85{bottom:192.810000px;}
.y61{bottom:196.050000px;}
.y69{bottom:201.630000px;}
.y25{bottom:213.690000px;}
.y4a{bottom:221.970000px;}
.y60{bottom:222.330000px;}
.y84{bottom:223.050000px;}
.y68{bottom:231.870000px;}
.y24{bottom:243.930000px;}
.y5f{bottom:248.610000px;}
.y49{bottom:252.390000px;}
.y9f{bottom:253.290000px;}
.y83{bottom:253.470000px;}
.y67{bottom:262.110000px;}
.y23{bottom:274.215000px;}
.y5e{bottom:275.115000px;}
.y48{bottom:282.855000px;}
.y9e{bottom:283.395000px;}
.y82{bottom:283.935000px;}
.y66{bottom:287.355000px;}
.y5d{bottom:301.215000px;}
.y22{bottom:304.455000px;}
.y65{bottom:311.295000px;}
.y47{bottom:313.275000px;}
.y9d{bottom:313.635000px;}
.y81{bottom:314.355000px;}
.y5c{bottom:327.315000px;}
.y21{bottom:334.695000px;}
.y64{bottom:335.415000px;}
.y46{bottom:343.695000px;}
.y9c{bottom:343.875000px;}
.y80{bottom:344.595000px;}
.y5b{bottom:353.595000px;}
.y20{bottom:364.935000px;}
.y45{bottom:374.115000px;}
.y7f{bottom:375.015000px;}
.y5a{bottom:378.795000px;}
.y1f{bottom:395.175000px;}
.y59{bottom:402.915000px;}
.y44{bottom:404.355000px;}
.y7e{bottom:405.255000px;}
.y1e{bottom:425.235000px;}
.y58{bottom:432.075000px;}
.y9b{bottom:434.595000px;}
.y43{bottom:434.775000px;}
.y7d{bottom:435.495000px;}
.y1d{bottom:455.475000px;}
.y57{bottom:457.455000px;}
.y9a{bottom:464.835000px;}
.y42{bottom:465.015000px;}
.y7c{bottom:465.735000px;}
.y1c{bottom:485.715000px;}
.y99{bottom:494.895000px;}
.y41{bottom:495.435000px;}
.y7b{bottom:495.975000px;}
.y1b{bottom:515.955000px;}
.y98{bottom:525.135000px;}
.y40{bottom:525.675000px;}
.y7a{bottom:526.395000px;}
.y1a{bottom:546.195000px;}
.y97{bottom:555.375000px;}
.y3f{bottom:556.125000px;}
.yac{bottom:556.305000px;}
.y79{bottom:556.845000px;}
.y19{bottom:572.145000px;}
.yab{bottom:582.045000px;}
.y96{bottom:585.645000px;}
.y3e{bottom:586.365000px;}
.y18{bottom:587.085000px;}
.yaa{bottom:607.965000px;}
.y17{bottom:612.285000px;}
.y95{bottom:615.885000px;}
.y3d{bottom:616.785000px;}
.y78{bottom:617.325000px;}
.ya9{bottom:634.245000px;}
.y16{bottom:642.345000px;}
.y94{bottom:646.305000px;}
.y3c{bottom:647.025000px;}
.y77{bottom:647.385000px;}
.y56{bottom:655.125000px;}
.ya8{bottom:660.525000px;}
.y15{bottom:672.585000px;}
.y93{bottom:676.725000px;}
.y3b{bottom:677.445000px;}
.y76{bottom:677.805000px;}
.ya7{bottom:686.625000px;}
.y14{bottom:702.825000px;}
.y92{bottom:706.965000px;}
.y3a{bottom:707.865000px;}
.y75{bottom:708.045000px;}
.ya6{bottom:712.905000px;}
.y13{bottom:733.065000px;}
.y91{bottom:737.205000px;}
.y39{bottom:738.285000px;}
.ya5{bottom:739.005000px;}
.y12{bottom:753.225000px;}
.y90{bottom:767.445000px;}
.y38{bottom:768.525000px;}
.ya4{bottom:769.245000px;}
.y11{bottom:772.485000px;}
.y10{bottom:793.725000px;}
.y8f{bottom:797.685000px;}
.y37{bottom:798.765000px;}
.ya3{bottom:799.485000px;}
.yf{bottom:817.485000px;}
.y8e{bottom:827.925000px;}
.y74{bottom:829.005000px;}
.y36{bottom:829.185000px;}
.ya2{bottom:829.725000px;}
.ye{bottom:837.825000px;}
.y8d{bottom:858.390000px;}
.y73{bottom:859.290000px;}
.y35{bottom:859.650000px;}
.y55{bottom:860.010000px;}
.yd{bottom:868.110000px;}
.y8c{bottom:888.810000px;}
.y72{bottom:889.530000px;}
.y34{bottom:889.890000px;}
.y54{bottom:890.070000px;}
.yc{bottom:895.830000px;}
.y8b{bottom:919.050000px;}
.y71{bottom:919.770000px;}
.y33{bottom:920.130000px;}
.y53{bottom:920.310000px;}
.yb{bottom:923.550000px;}
.y8a{bottom:949.290000px;}
.y70{bottom:949.830000px;}
.y32{bottom:950.370000px;}
.y52{bottom:950.550000px;}
.ya{bottom:956.130000px;}
.y89{bottom:979.710000px;}
.y6f{bottom:980.250000px;}
.y31{bottom:980.610000px;}
.y51{bottom:980.790000px;}
.y9{bottom:991.410000px;}
.y88{bottom:1010.130000px;}
.y6e{bottom:1010.490000px;}
.y30{bottom:1010.850000px;}
.y50{bottom:1011.030000px;}
.y8{bottom:1026.690000px;}
.y87{bottom:1040.550000px;}
.y6d{bottom:1040.730000px;}
.y2f{bottom:1041.090000px;}
.y4f{bottom:1041.270000px;}
.y7{bottom:1059.450000px;}
.y6c{bottom:1070.970000px;}
.y2e{bottom:1071.330000px;}
.y4e{bottom:1071.510000px;}
.y6{bottom:1089.690000px;}
.y6b{bottom:1101.570000px;}
.y2d{bottom:1101.750000px;}
.y5{bottom:1119.930000px;}
.y2c{bottom:1129.320000px;}
.y2b{bottom:1157.220000px;}
.y2a{bottom:1182.420000px;}
.y29{bottom:1207.620000px;}
.h8{height:40.961602px;}
.h9{height:45.852539px;}
.h7{height:48.321563px;}
.ha{height:50.743477px;}
.hb{height:56.245781px;}
.h4{height:58.218750px;}
.h2{height:58.651172px;}
.h5{height:61.136719px;}
.h3{height:70.664062px;}
.h6{height:71.529961px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.655987px;}
.x8{left:180.749987px;}
.x13{left:251.669987px;}
.x12{left:259.049987px;}
.xf{left:314.174987px;}
.x9{left:329.834987px;}
.x10{left:335.414987px;}
.x16{left:341.174987px;}
.x3{left:353.054987px;}
.x15{left:378.434987px;}
.xa{left:382.394987px;}
.x4{left:384.914987px;}
.x14{left:499.784987px;}
.x1b{left:545.144987px;}
.x5{left:567.104987px;}
.x6{left:573.224987px;}
.xb{left:593.384987px;}
.x1c{left:594.824987px;}
.x18{left:602.564987px;}
.x19{left:620.924987px;}
.x1a{left:635.324987px;}
.x1d{left:645.944987px;}
.x2{left:652.064987px;}
.x7{left:674.789987px;}
.x17{left:688.649987px;}
.x11{left:734.549987px;}
.xe{left:756.329987px;}
.xd{left:758.849987px;}
.xc{left:818.789987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.256000pt;}
.ls25{letter-spacing:-0.225067pt;}
.ls19{letter-spacing:-0.206933pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.064000pt;}
.ls1b{letter-spacing:-0.000003pt;}
.ls6{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.000001pt;}
.ls7{letter-spacing:0.064000pt;}
.ls1f{letter-spacing:0.128000pt;}
.ls21{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls36{letter-spacing:0.384000pt;}
.ls1d{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.576000pt;}
.ls8{letter-spacing:0.704000pt;}
.ls31{letter-spacing:1.216000pt;}
.lsa{letter-spacing:2.112000pt;}
.ls2e{letter-spacing:2.496000pt;}
.ls16{letter-spacing:4.416000pt;}
.ls15{letter-spacing:5.056000pt;}
.lsd{letter-spacing:5.312000pt;}
.ls34{letter-spacing:5.696000pt;}
.ls33{letter-spacing:5.856000pt;}
.ls3{letter-spacing:6.336000pt;}
.ls2a{letter-spacing:6.496000pt;}
.ls2{letter-spacing:6.976000pt;}
.ls30{letter-spacing:7.616000pt;}
.lse{letter-spacing:8.256000pt;}
.ls27{letter-spacing:8.896000pt;}
.ls2b{letter-spacing:9.536000pt;}
.ls17{letter-spacing:9.792000pt;}
.ls10{letter-spacing:10.176000pt;}
.lsf{letter-spacing:10.816000pt;}
.ls4{letter-spacing:12.096000pt;}
.ls12{letter-spacing:12.736000pt;}
.ls11{letter-spacing:12.992000pt;}
.ls13{letter-spacing:13.376000pt;}
.ls2c{letter-spacing:14.272000pt;}
.lsb{letter-spacing:14.656000pt;}
.ls2f{letter-spacing:15.296000pt;}
.lsc{letter-spacing:15.936000pt;}
.ls35{letter-spacing:16.576000pt;}
.ls23{letter-spacing:17.216000pt;}
.ls18{letter-spacing:19.136000pt;}
.ls5{letter-spacing:19.776000pt;}
.ls29{letter-spacing:21.312000pt;}
.ls32{letter-spacing:23.232000pt;}
.ls24{letter-spacing:23.616000pt;}
.ls2d{letter-spacing:25.536000pt;}
.ls28{letter-spacing:38.976000pt;}
.ls26{letter-spacing:62.656000pt;}
.ws0{word-spacing:-21.041280pt;}
.ws4{word-spacing:-18.688000pt;}
.ws10{word-spacing:-18.432000pt;}
.wsd{word-spacing:-18.304000pt;}
.wse{word-spacing:-18.176000pt;}
.wsa{word-spacing:-18.112000pt;}
.ws3{word-spacing:-18.048000pt;}
.wsf{word-spacing:-17.984001pt;}
.ws2{word-spacing:-17.984000pt;}
.ws11{word-spacing:-17.983997pt;}
.ws8{word-spacing:-17.920000pt;}
.ws12{word-spacing:-17.728000pt;}
.ws7{word-spacing:-17.664000pt;}
.wsc{word-spacing:-16.320213pt;}
.ws9{word-spacing:-15.808000pt;}
.ws1{word-spacing:-14.926720pt;}
.ws6{word-spacing:-14.606720pt;}
.ws13{word-spacing:-0.533333pt;}
.ws5{word-spacing:0.000000pt;}
.wsb{word-spacing:11.328000pt;}
._3{margin-left:-1.152000pt;}
._0{width:0.903040pt;}
._d{width:2.019840pt;}
._6{width:3.754667pt;}
._5{width:4.800000pt;}
._7{width:5.941333pt;}
._8{width:7.082667pt;}
._b{width:8.320000pt;}
._c{width:9.344000pt;}
._4{width:10.688000pt;}
._f{width:12.096000pt;}
._15{width:13.184000pt;}
._13{width:14.784000pt;}
._12{width:16.298667pt;}
._1c{width:17.344000pt;}
._1b{width:18.442667pt;}
._10{width:19.456000pt;}
._11{width:20.846293pt;}
._24{width:21.759787pt;}
._1a{width:22.666667pt;}
._14{width:24.256000pt;}
._19{width:25.322667pt;}
._e{width:26.880000pt;}
._a{width:28.160000pt;}
._9{width:29.120000pt;}
._21{width:32.192000pt;}
._18{width:33.802880pt;}
._1f{width:38.720000pt;}
._20{width:40.010667pt;}
._22{width:41.088000pt;}
._23{width:41.984000pt;}
._16{width:56.618667pt;}
._17{width:57.557333pt;}
._1e{width:61.784960pt;}
._1d{width:62.784000pt;}
._1{width:219.064747pt;}
._2{width:433.966507pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:41.152000pt;}
.y3{bottom:58.912000pt;}
.y2{bottom:74.272000pt;}
.y1{bottom:91.872000pt;}
.y28{bottom:109.472000pt;}
.y4d{bottom:116.672000pt;}
.ya1{bottom:120.992000pt;}
.y63{bottom:127.712000pt;}
.y27{bottom:136.346667pt;}
.y4c{bottom:143.546667pt;}
.y86{bottom:144.506667pt;}
.ya0{bottom:145.626667pt;}
.y62{bottom:150.906667pt;}
.y6a{bottom:152.346667pt;}
.y26{bottom:163.226667pt;}
.y4b{bottom:170.266667pt;}
.y85{bottom:171.386667pt;}
.y61{bottom:174.266667pt;}
.y69{bottom:179.226667pt;}
.y25{bottom:189.946667pt;}
.y4a{bottom:197.306667pt;}
.y60{bottom:197.626667pt;}
.y84{bottom:198.266667pt;}
.y68{bottom:206.106667pt;}
.y24{bottom:216.826667pt;}
.y5f{bottom:220.986667pt;}
.y49{bottom:224.346667pt;}
.y9f{bottom:225.146667pt;}
.y83{bottom:225.306667pt;}
.y67{bottom:232.986667pt;}
.y23{bottom:243.746667pt;}
.y5e{bottom:244.546667pt;}
.y48{bottom:251.426667pt;}
.y9e{bottom:251.906667pt;}
.y82{bottom:252.386667pt;}
.y66{bottom:255.426667pt;}
.y5d{bottom:267.746667pt;}
.y22{bottom:270.626667pt;}
.y65{bottom:276.706667pt;}
.y47{bottom:278.466667pt;}
.y9d{bottom:278.786667pt;}
.y81{bottom:279.426667pt;}
.y5c{bottom:290.946667pt;}
.y21{bottom:297.506667pt;}
.y64{bottom:298.146667pt;}
.y46{bottom:305.506667pt;}
.y9c{bottom:305.666667pt;}
.y80{bottom:306.306667pt;}
.y5b{bottom:314.306667pt;}
.y20{bottom:324.386667pt;}
.y45{bottom:332.546667pt;}
.y7f{bottom:333.346667pt;}
.y5a{bottom:336.706667pt;}
.y1f{bottom:351.266667pt;}
.y59{bottom:358.146667pt;}
.y44{bottom:359.426667pt;}
.y7e{bottom:360.226667pt;}
.y1e{bottom:377.986667pt;}
.y58{bottom:384.066667pt;}
.y9b{bottom:386.306667pt;}
.y43{bottom:386.466667pt;}
.y7d{bottom:387.106667pt;}
.y1d{bottom:404.866667pt;}
.y57{bottom:406.626667pt;}
.y9a{bottom:413.186667pt;}
.y42{bottom:413.346667pt;}
.y7c{bottom:413.986667pt;}
.y1c{bottom:431.746667pt;}
.y99{bottom:439.906667pt;}
.y41{bottom:440.386667pt;}
.y7b{bottom:440.866667pt;}
.y1b{bottom:458.626667pt;}
.y98{bottom:466.786667pt;}
.y40{bottom:467.266667pt;}
.y7a{bottom:467.906667pt;}
.y1a{bottom:485.506667pt;}
.y97{bottom:493.666667pt;}
.y3f{bottom:494.333333pt;}
.yac{bottom:494.493333pt;}
.y79{bottom:494.973333pt;}
.y19{bottom:508.573333pt;}
.yab{bottom:517.373333pt;}
.y96{bottom:520.573333pt;}
.y3e{bottom:521.213333pt;}
.y18{bottom:521.853333pt;}
.yaa{bottom:540.413333pt;}
.y17{bottom:544.253333pt;}
.y95{bottom:547.453333pt;}
.y3d{bottom:548.253333pt;}
.y78{bottom:548.733333pt;}
.ya9{bottom:563.773333pt;}
.y16{bottom:570.973333pt;}
.y94{bottom:574.493333pt;}
.y3c{bottom:575.133333pt;}
.y77{bottom:575.453333pt;}
.y56{bottom:582.333333pt;}
.ya8{bottom:587.133333pt;}
.y15{bottom:597.853333pt;}
.y93{bottom:601.533333pt;}
.y3b{bottom:602.173333pt;}
.y76{bottom:602.493333pt;}
.ya7{bottom:610.333333pt;}
.y14{bottom:624.733333pt;}
.y92{bottom:628.413333pt;}
.y3a{bottom:629.213333pt;}
.y75{bottom:629.373333pt;}
.ya6{bottom:633.693333pt;}
.y13{bottom:651.613333pt;}
.y91{bottom:655.293333pt;}
.y39{bottom:656.253333pt;}
.ya5{bottom:656.893333pt;}
.y12{bottom:669.533333pt;}
.y90{bottom:682.173333pt;}
.y38{bottom:683.133333pt;}
.ya4{bottom:683.773333pt;}
.y11{bottom:686.653333pt;}
.y10{bottom:705.533333pt;}
.y8f{bottom:709.053333pt;}
.y37{bottom:710.013333pt;}
.ya3{bottom:710.653333pt;}
.yf{bottom:726.653333pt;}
.y8e{bottom:735.933333pt;}
.y74{bottom:736.893333pt;}
.y36{bottom:737.053333pt;}
.ya2{bottom:737.533333pt;}
.ye{bottom:744.733333pt;}
.y8d{bottom:763.013333pt;}
.y73{bottom:763.813333pt;}
.y35{bottom:764.133333pt;}
.y55{bottom:764.453333pt;}
.yd{bottom:771.653333pt;}
.y8c{bottom:790.053333pt;}
.y72{bottom:790.693333pt;}
.y34{bottom:791.013333pt;}
.y54{bottom:791.173333pt;}
.yc{bottom:796.293333pt;}
.y8b{bottom:816.933333pt;}
.y71{bottom:817.573333pt;}
.y33{bottom:817.893333pt;}
.y53{bottom:818.053333pt;}
.yb{bottom:820.933333pt;}
.y8a{bottom:843.813333pt;}
.y70{bottom:844.293333pt;}
.y32{bottom:844.773333pt;}
.y52{bottom:844.933333pt;}
.ya{bottom:849.893333pt;}
.y89{bottom:870.853333pt;}
.y6f{bottom:871.333333pt;}
.y31{bottom:871.653333pt;}
.y51{bottom:871.813333pt;}
.y9{bottom:881.253333pt;}
.y88{bottom:897.893333pt;}
.y6e{bottom:898.213333pt;}
.y30{bottom:898.533333pt;}
.y50{bottom:898.693333pt;}
.y8{bottom:912.613333pt;}
.y87{bottom:924.933333pt;}
.y6d{bottom:925.093333pt;}
.y2f{bottom:925.413333pt;}
.y4f{bottom:925.573333pt;}
.y7{bottom:941.733333pt;}
.y6c{bottom:951.973333pt;}
.y2e{bottom:952.293333pt;}
.y4e{bottom:952.453333pt;}
.y6{bottom:968.613333pt;}
.y6b{bottom:979.173333pt;}
.y2d{bottom:979.333333pt;}
.y5{bottom:995.493333pt;}
.y2c{bottom:1003.840000pt;}
.y2b{bottom:1028.640000pt;}
.y2a{bottom:1051.040000pt;}
.y29{bottom:1073.440000pt;}
.h8{height:36.410312pt;}
.h9{height:40.757812pt;}
.h7{height:42.952500pt;}
.ha{height:45.105313pt;}
.hb{height:49.996250pt;}
.h4{height:51.750000pt;}
.h2{height:52.134375pt;}
.h5{height:54.343750pt;}
.h3{height:62.812500pt;}
.h6{height:63.582187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.471988pt;}
.x8{left:160.666655pt;}
.x13{left:223.706655pt;}
.x12{left:230.266655pt;}
.xf{left:279.266655pt;}
.x9{left:293.186655pt;}
.x10{left:298.146655pt;}
.x16{left:303.266655pt;}
.x3{left:313.826655pt;}
.x15{left:336.386655pt;}
.xa{left:339.906655pt;}
.x4{left:342.146655pt;}
.x14{left:444.253322pt;}
.x1b{left:484.573322pt;}
.x5{left:504.093322pt;}
.x6{left:509.533322pt;}
.xb{left:527.453322pt;}
.x1c{left:528.733322pt;}
.x18{left:535.613322pt;}
.x19{left:551.933322pt;}
.x1a{left:564.733322pt;}
.x1d{left:574.173322pt;}
.x2{left:579.613322pt;}
.x7{left:599.813322pt;}
.x17{left:612.133322pt;}
.x11{left:652.933322pt;}
.xe{left:672.293322pt;}
.xd{left:674.533322pt;}
.xc{left:727.813322pt;}
}




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