
    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_c84383280724c86398bf1900.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.857910;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_c35930687b94529a5e5f4ae9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_742ed01c8bbeaa6d19333c48.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_a53d0ecad8ec013712048354.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9454805ea0713d7317dc2b08.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_618f58e8059ae19958036793.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_addd1d1b41e50e5730c9f92e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.695801;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_621fcaa00428649b5a34ed4b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.871094;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_607129675435863a7a2881ad.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_e9558fdddcdaefa94b79a8b1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.926270;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_791fa9a93a919f9d467f042b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.909180;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_331dc2229188597f034dcf21.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.854980;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_1df42d018b9471a67d44575b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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);}
.v2{vertical-align:-14.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:14.760000px;}
.v1{vertical-align:24.120000px;}
.v4{vertical-align:54.360000px;}
.v5{vertical-align:63.000000px;}
.lsc{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.072000px;}
.ls8{letter-spacing:-0.060120px;}
.ls5{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.060120px;}
.ls7{letter-spacing:0.072000px;}
.ls1c{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.120240px;}
.ls3{letter-spacing:0.136800px;}
.ls2{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.151200px;}
.ls0{letter-spacing:0.162000px;}
.ls1{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.216000px;}
.ls10{letter-spacing:1.584000px;}
.ls17{letter-spacing:2.880000px;}
.ls14{letter-spacing:3.161520px;}
.ls13{letter-spacing:4.147200px;}
.ls16{letter-spacing:4.712400px;}
.lsd{letter-spacing:4.736880px;}
.ls15{letter-spacing:11.880000px;}
.ls1a{letter-spacing:20.016000px;}
.ls18{letter-spacing:24.536880px;}
.lsf{letter-spacing:24.896880px;}
.ls4{letter-spacing:33.984000px;}
.lse{letter-spacing:37.224000px;}
.ls19{letter-spacing:37.584000px;}
.lsb{letter-spacing:63.571320px;}
.ls12{letter-spacing:63.595800px;}
.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;}
}
.ws13{word-spacing:-72.000000px;}
.ws1b{word-spacing:-51.120000px;}
.ws1a{word-spacing:-49.608000px;}
.ws1c{word-spacing:-49.320000px;}
.ws0{word-spacing:-36.144000px;}
.ws15{word-spacing:-36.072000px;}
.ws16{word-spacing:-27.720000px;}
.ws4{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.928000px;}
.ws11{word-spacing:-17.856000px;}
.ws17{word-spacing:-15.840000px;}
.ws5{word-spacing:-13.587120px;}
.ws12{word-spacing:-0.504000px;}
.wsa{word-spacing:-0.432000px;}
.wsf{word-spacing:-0.360720px;}
.wsb{word-spacing:-0.360000px;}
.ws7{word-spacing:-0.243000px;}
.ws8{word-spacing:-0.144000px;}
.wse{word-spacing:-0.120240px;}
.ws1d{word-spacing:-0.108000px;}
.ws9{word-spacing:-0.072000px;}
.ws19{word-spacing:-0.060120px;}
.ws6{word-spacing:0.000000px;}
.wsc{word-spacing:0.060120px;}
.ws18{word-spacing:0.072000px;}
.ws10{word-spacing:0.120240px;}
.wsd{word-spacing:0.180360px;}
.ws14{word-spacing:3.960000px;}
._1{margin-left:-13.248000px;}
._7{margin-left:-11.736000px;}
._8{margin-left:-7.560000px;}
._4{margin-left:-5.419656px;}
._5{margin-left:-4.273344px;}
._0{margin-left:-2.736000px;}
._2{margin-left:-1.174500px;}
._6{width:1.027656px;}
._3{width:3.600000px;}
._9{width:11.808000px;}
._a{width:19.944000px;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.880000px;}
.fs6{font-size:51.120000px;}
.fs5{font-size:60.120000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:81.000000px;}
.fs4{font-size:108.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y31{bottom:3.870000px;}
.y2{bottom:57.960000px;}
.y1{bottom:79.920000px;}
.y22{bottom:112.050000px;}
.y21{bottom:130.390380px;}
.y42{bottom:144.000000px;}
.y20{bottom:148.666860px;}
.y5f{bottom:151.020000px;}
.y41{bottom:164.700000px;}
.y1f{bottom:167.033520px;}
.y7d{bottom:169.920000px;}
.y1e{bottom:185.310000px;}
.y40{bottom:185.400000px;}
.y7c{bottom:190.620000px;}
.y5e{bottom:192.780000px;}
.y1d{bottom:204.390000px;}
.y5d{bottom:213.390000px;}
.y5c{bottom:225.450000px;}
.y3f{bottom:227.160000px;}
.y1c{bottom:229.050000px;}
.y7b{bottom:232.290000px;}
.y3e{bottom:247.860000px;}
.y1b{bottom:249.750000px;}
.y3d{bottom:268.560000px;}
.y7a{bottom:273.960000px;}
.y5b{bottom:279.180000px;}
.y1a{bottom:291.420000px;}
.y79{bottom:294.660000px;}
.y3c{bottom:310.230000px;}
.y78{bottom:315.360000px;}
.y5a{bottom:320.940000px;}
.y3b{bottom:330.930000px;}
.y19{bottom:335.070000px;}
.y77{bottom:336.060000px;}
.y59{bottom:342.090000px;}
.y3a{bottom:351.630000px;}
.y76{bottom:356.760000px;}
.y58{bottom:363.240000px;}
.y75{bottom:377.460000px;}
.y18{bottom:385.200000px;}
.y39{bottom:395.280000px;}
.y57{bottom:405.180000px;}
.y17{bottom:405.900000px;}
.y74{bottom:419.220000px;}
.y16{bottom:426.600000px;}
.y38{bottom:445.320000px;}
.y56{bottom:448.920000px;}
.y73{bottom:462.870000px;}
.y37{bottom:466.020000px;}
.y15{bottom:468.270000px;}
.y8f{bottom:481.230000px;}
.y36{bottom:486.810000px;}
.y14{bottom:488.970000px;}
.y55{bottom:498.960000px;}
.y8e{bottom:501.930000px;}
.y13{bottom:509.670000px;}
.y72{bottom:512.910000px;}
.y54{bottom:519.660000px;}
.y8d{bottom:522.630000px;}
.y35{bottom:525.330000px;}
.y12{bottom:530.370000px;}
.y71{bottom:533.610000px;}
.y8c{bottom:543.330000px;}
.y34{bottom:546.750000px;}
.y70{bottom:554.310000px;}
.y53{bottom:561.330000px;}
.y8b{bottom:564.030000px;}
.y33{bottom:568.260000px;}
.y11{bottom:572.040000px;}
.y52{bottom:582.030000px;}
.y8a{bottom:584.730000px;}
.y32{bottom:589.680000px;}
.y10{bottom:592.740000px;}
.y6f{bottom:595.980000px;}
.y51{bottom:602.727660px;}
.y30{bottom:611.100000px;}
.yf{bottom:613.440000px;}
.y6e{bottom:616.680000px;}
.y89{bottom:628.380000px;}
.y6d{bottom:637.380000px;}
.y50{bottom:645.022080px;}
.ye{bottom:655.200000px;}
.y2f{bottom:657.450000px;}
.y4f{bottom:662.036040px;}
.y88{bottom:678.420000px;}
.y4e{bottom:679.050000px;}
.y6c{bottom:679.140000px;}
.yd{bottom:696.870000px;}
.y87{bottom:699.120000px;}
.y2e{bottom:701.100000px;}
.y4d{bottom:716.400000px;}
.yc{bottom:717.570000px;}
.y86{bottom:719.820000px;}
.y6b{bottom:720.810000px;}
.y4c{bottom:737.100000px;}
.yb{bottom:738.270000px;}
.y6a{bottom:741.510000px;}
.y2d{bottom:751.230000px;}
.y4b{bottom:757.800000px;}
.ya{bottom:758.970000px;}
.y85{bottom:761.580000px;}
.y69{bottom:762.210000px;}
.y4a{bottom:778.500000px;}
.y9{bottom:779.670000px;}
.y2c{bottom:792.900000px;}
.y49{bottom:799.200000px;}
.y84{bottom:803.250000px;}
.y68{bottom:803.880000px;}
.y2b{bottom:813.600000px;}
.y8{bottom:823.230000px;}
.y83{bottom:823.950000px;}
.y2a{bottom:834.300000px;}
.y48{bottom:842.850000px;}
.y82{bottom:844.650000px;}
.y67{bottom:847.620000px;}
.y7{bottom:869.490000px;}
.y29{bottom:875.970000px;}
.y81{bottom:888.300000px;}
.y47{bottom:892.980000px;}
.y28{bottom:896.670000px;}
.y66{bottom:897.660000px;}
.y6{bottom:915.120000px;}
.y65{bottom:918.360000px;}
.y46{bottom:934.740000px;}
.y27{bottom:938.340000px;}
.y5{bottom:957.330000px;}
.y26{bottom:959.040000px;}
.y64{bottom:960.120000px;}
.y45{bottom:976.770000px;}
.y25{bottom:979.740000px;}
.y80{bottom:980.100000px;}
.y44{bottom:997.380000px;}
.y63{bottom:1002.150000px;}
.y4{bottom:1005.030000px;}
.y43{bottom:1009.440000px;}
.y62{bottom:1019.070540px;}
.y24{bottom:1021.500000px;}
.y7f{bottom:1021.770000px;}
.y60{bottom:1042.020000px;}
.y7e{bottom:1042.470000px;}
.y3{bottom:1046.430000px;}
.y23{bottom:1063.170000px;}
.y61{bottom:1068.835860px;}
.ha{height:20.700000px;}
.hc{height:20.701500px;}
.h10{height:40.070215px;}
.h9{height:40.892168px;}
.h8{height:41.655410px;}
.h7{height:41.831543px;}
.hb{height:48.796875px;}
.h1{height:48.972656px;}
.h13{height:49.992188px;}
.h5{height:50.027344px;}
.h11{height:50.036704px;}
.h3{height:54.896484px;}
.h4{height:56.569922px;}
.h12{height:63.400781px;}
.h6{height:73.195312px;}
.hf{height:89.296875px;}
.h2{height:97.593750px;}
.he{height:137.536875px;}
.hd{height:143.656875px;}
.h0{height:1188.000000px;}
.w1{width:67.411500px;}
.w2{width:96.478500px;}
.w4{width:143.910000px;}
.w5{width:179.098500px;}
.w3{width:190.440000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:7.740000px;}
.xc{left:22.230000px;}
.x10{left:50.400000px;}
.xe{left:56.610000px;}
.x2{left:108.000000px;}
.x8{left:135.000000px;}
.x5{left:138.150000px;}
.x3{left:149.400000px;}
.xb{left:176.940000px;}
.xd{left:274.230000px;}
.x9{left:324.000000px;}
.x6{left:364.050000px;}
.x12{left:366.210000px;}
.x16{left:381.870000px;}
.x4{left:405.000000px;}
.x14{left:417.420000px;}
.x17{left:446.942880px;}
.x1{left:454.410000px;}
.x15{left:460.620000px;}
.xf{left:465.390000px;}
.x18{left:490.140000px;}
.x13{left:511.740000px;}
.x11{left:610.020000px;}
.x7{left:810.000000px;}
@media print{
.v2{vertical-align:-13.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.120000pt;}
.v1{vertical-align:21.440000pt;}
.v4{vertical-align:48.320000pt;}
.v5{vertical-align:56.000000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:-0.053440pt;}
.ls5{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.053440pt;}
.ls7{letter-spacing:0.064000pt;}
.ls1c{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.106880pt;}
.ls3{letter-spacing:0.121600pt;}
.ls2{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.134400pt;}
.ls0{letter-spacing:0.144000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.192000pt;}
.ls10{letter-spacing:1.408000pt;}
.ls17{letter-spacing:2.560000pt;}
.ls14{letter-spacing:2.810240pt;}
.ls13{letter-spacing:3.686400pt;}
.ls16{letter-spacing:4.188800pt;}
.lsd{letter-spacing:4.210560pt;}
.ls15{letter-spacing:10.560000pt;}
.ls1a{letter-spacing:17.792000pt;}
.ls18{letter-spacing:21.810560pt;}
.lsf{letter-spacing:22.130560pt;}
.ls4{letter-spacing:30.208000pt;}
.lse{letter-spacing:33.088000pt;}
.ls19{letter-spacing:33.408000pt;}
.lsb{letter-spacing:56.507840pt;}
.ls12{letter-spacing:56.529600pt;}
.ws13{word-spacing:-64.000000pt;}
.ws1b{word-spacing:-45.440000pt;}
.ws1a{word-spacing:-44.096000pt;}
.ws1c{word-spacing:-43.840000pt;}
.ws0{word-spacing:-32.128000pt;}
.ws15{word-spacing:-32.064000pt;}
.ws16{word-spacing:-24.640000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.936000pt;}
.ws11{word-spacing:-15.872000pt;}
.ws17{word-spacing:-14.080000pt;}
.ws5{word-spacing:-12.077440pt;}
.ws12{word-spacing:-0.448000pt;}
.wsa{word-spacing:-0.384000pt;}
.wsf{word-spacing:-0.320640pt;}
.wsb{word-spacing:-0.320000pt;}
.ws7{word-spacing:-0.216000pt;}
.ws8{word-spacing:-0.128000pt;}
.wse{word-spacing:-0.106880pt;}
.ws1d{word-spacing:-0.096000pt;}
.ws9{word-spacing:-0.064000pt;}
.ws19{word-spacing:-0.053440pt;}
.ws6{word-spacing:0.000000pt;}
.wsc{word-spacing:0.053440pt;}
.ws18{word-spacing:0.064000pt;}
.ws10{word-spacing:0.106880pt;}
.wsd{word-spacing:0.160320pt;}
.ws14{word-spacing:3.520000pt;}
._1{margin-left:-11.776000pt;}
._7{margin-left:-10.432000pt;}
._8{margin-left:-6.720000pt;}
._4{margin-left:-4.817472pt;}
._5{margin-left:-3.798528pt;}
._0{margin-left:-2.432000pt;}
._2{margin-left:-1.044000pt;}
._6{width:0.913472pt;}
._3{width:3.200000pt;}
._9{width:10.496000pt;}
._a{width:17.728000pt;}
.fs3{font-size:42.560000pt;}
.fs6{font-size:45.440000pt;}
.fs5{font-size:53.440000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:72.000000pt;}
.fs4{font-size:96.000000pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:3.440000pt;}
.y2{bottom:51.520000pt;}
.y1{bottom:71.040000pt;}
.y22{bottom:99.600000pt;}
.y21{bottom:115.902560pt;}
.y42{bottom:128.000000pt;}
.y20{bottom:132.148320pt;}
.y5f{bottom:134.240000pt;}
.y41{bottom:146.400000pt;}
.y1f{bottom:148.474240pt;}
.y7d{bottom:151.040000pt;}
.y1e{bottom:164.720000pt;}
.y40{bottom:164.800000pt;}
.y7c{bottom:169.440000pt;}
.y5e{bottom:171.360000pt;}
.y1d{bottom:181.680000pt;}
.y5d{bottom:189.680000pt;}
.y5c{bottom:200.400000pt;}
.y3f{bottom:201.920000pt;}
.y1c{bottom:203.600000pt;}
.y7b{bottom:206.480000pt;}
.y3e{bottom:220.320000pt;}
.y1b{bottom:222.000000pt;}
.y3d{bottom:238.720000pt;}
.y7a{bottom:243.520000pt;}
.y5b{bottom:248.160000pt;}
.y1a{bottom:259.040000pt;}
.y79{bottom:261.920000pt;}
.y3c{bottom:275.760000pt;}
.y78{bottom:280.320000pt;}
.y5a{bottom:285.280000pt;}
.y3b{bottom:294.160000pt;}
.y19{bottom:297.840000pt;}
.y77{bottom:298.720000pt;}
.y59{bottom:304.080000pt;}
.y3a{bottom:312.560000pt;}
.y76{bottom:317.120000pt;}
.y58{bottom:322.880000pt;}
.y75{bottom:335.520000pt;}
.y18{bottom:342.400000pt;}
.y39{bottom:351.360000pt;}
.y57{bottom:360.160000pt;}
.y17{bottom:360.800000pt;}
.y74{bottom:372.640000pt;}
.y16{bottom:379.200000pt;}
.y38{bottom:395.840000pt;}
.y56{bottom:399.040000pt;}
.y73{bottom:411.440000pt;}
.y37{bottom:414.240000pt;}
.y15{bottom:416.240000pt;}
.y8f{bottom:427.760000pt;}
.y36{bottom:432.720000pt;}
.y14{bottom:434.640000pt;}
.y55{bottom:443.520000pt;}
.y8e{bottom:446.160000pt;}
.y13{bottom:453.040000pt;}
.y72{bottom:455.920000pt;}
.y54{bottom:461.920000pt;}
.y8d{bottom:464.560000pt;}
.y35{bottom:466.960000pt;}
.y12{bottom:471.440000pt;}
.y71{bottom:474.320000pt;}
.y8c{bottom:482.960000pt;}
.y34{bottom:486.000000pt;}
.y70{bottom:492.720000pt;}
.y53{bottom:498.960000pt;}
.y8b{bottom:501.360000pt;}
.y33{bottom:505.120000pt;}
.y11{bottom:508.480000pt;}
.y52{bottom:517.360000pt;}
.y8a{bottom:519.760000pt;}
.y32{bottom:524.160000pt;}
.y10{bottom:526.880000pt;}
.y6f{bottom:529.760000pt;}
.y51{bottom:535.757920pt;}
.y30{bottom:543.200000pt;}
.yf{bottom:545.280000pt;}
.y6e{bottom:548.160000pt;}
.y89{bottom:558.560000pt;}
.y6d{bottom:566.560000pt;}
.y50{bottom:573.352960pt;}
.ye{bottom:582.400000pt;}
.y2f{bottom:584.400000pt;}
.y4f{bottom:588.476480pt;}
.y88{bottom:603.040000pt;}
.y4e{bottom:603.600000pt;}
.y6c{bottom:603.680000pt;}
.yd{bottom:619.440000pt;}
.y87{bottom:621.440000pt;}
.y2e{bottom:623.200000pt;}
.y4d{bottom:636.800000pt;}
.yc{bottom:637.840000pt;}
.y86{bottom:639.840000pt;}
.y6b{bottom:640.720000pt;}
.y4c{bottom:655.200000pt;}
.yb{bottom:656.240000pt;}
.y6a{bottom:659.120000pt;}
.y2d{bottom:667.760000pt;}
.y4b{bottom:673.600000pt;}
.ya{bottom:674.640000pt;}
.y85{bottom:676.960000pt;}
.y69{bottom:677.520000pt;}
.y4a{bottom:692.000000pt;}
.y9{bottom:693.040000pt;}
.y2c{bottom:704.800000pt;}
.y49{bottom:710.400000pt;}
.y84{bottom:714.000000pt;}
.y68{bottom:714.560000pt;}
.y2b{bottom:723.200000pt;}
.y8{bottom:731.760000pt;}
.y83{bottom:732.400000pt;}
.y2a{bottom:741.600000pt;}
.y48{bottom:749.200000pt;}
.y82{bottom:750.800000pt;}
.y67{bottom:753.440000pt;}
.y7{bottom:772.880000pt;}
.y29{bottom:778.640000pt;}
.y81{bottom:789.600000pt;}
.y47{bottom:793.760000pt;}
.y28{bottom:797.040000pt;}
.y66{bottom:797.920000pt;}
.y6{bottom:813.440000pt;}
.y65{bottom:816.320000pt;}
.y46{bottom:830.880000pt;}
.y27{bottom:834.080000pt;}
.y5{bottom:850.960000pt;}
.y26{bottom:852.480000pt;}
.y64{bottom:853.440000pt;}
.y45{bottom:868.240000pt;}
.y25{bottom:870.880000pt;}
.y80{bottom:871.200000pt;}
.y44{bottom:886.560000pt;}
.y63{bottom:890.800000pt;}
.y4{bottom:893.360000pt;}
.y43{bottom:897.280000pt;}
.y62{bottom:905.840480pt;}
.y24{bottom:908.000000pt;}
.y7f{bottom:908.240000pt;}
.y60{bottom:926.240000pt;}
.y7e{bottom:926.640000pt;}
.y3{bottom:930.160000pt;}
.y23{bottom:945.040000pt;}
.y61{bottom:950.076320pt;}
.ha{height:18.400000pt;}
.hc{height:18.401333pt;}
.h10{height:35.617969pt;}
.h9{height:36.348594pt;}
.h8{height:37.027031pt;}
.h7{height:37.183594pt;}
.hb{height:43.375000pt;}
.h1{height:43.531250pt;}
.h13{height:44.437500pt;}
.h5{height:44.468750pt;}
.h11{height:44.477070pt;}
.h3{height:48.796875pt;}
.h4{height:50.284375pt;}
.h12{height:56.356250pt;}
.h6{height:65.062500pt;}
.hf{height:79.375000pt;}
.h2{height:86.750000pt;}
.he{height:122.255000pt;}
.hd{height:127.695000pt;}
.h0{height:1056.000000pt;}
.w1{width:59.921333pt;}
.w2{width:85.758667pt;}
.w4{width:127.920000pt;}
.w5{width:159.198667pt;}
.w3{width:169.280000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:6.880000pt;}
.xc{left:19.760000pt;}
.x10{left:44.800000pt;}
.xe{left:50.320000pt;}
.x2{left:96.000000pt;}
.x8{left:120.000000pt;}
.x5{left:122.800000pt;}
.x3{left:132.800000pt;}
.xb{left:157.280000pt;}
.xd{left:243.760000pt;}
.x9{left:288.000000pt;}
.x6{left:323.600000pt;}
.x12{left:325.520000pt;}
.x16{left:339.440000pt;}
.x4{left:360.000000pt;}
.x14{left:371.040000pt;}
.x17{left:397.282560pt;}
.x1{left:403.920000pt;}
.x15{left:409.440000pt;}
.xf{left:413.680000pt;}
.x18{left:435.680000pt;}
.x13{left:454.880000pt;}
.x11{left:542.240000pt;}
.x7{left:720.000000pt;}
}




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