
    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_77ef90caae30f8b6ed3e480b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.741500;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_c065c6d06288ad75b32f8144.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f03f049f9a14930ce043c112.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958000;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_4ac5905f094b1403c584b1c7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.925500;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_09b9b597c93e7da26d724af5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.751000;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_65ef6cd5389b0a2c3e8356a9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.965500;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_a05946e9218df7f84c442308.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739000;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_afe4712b22c14e4f438c640f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.919000;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_56d5eb68dd00336b280c437b.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_362c605cd79ed069d13c7296.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.878000;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_4ef74723de88966ffee5f636.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.919000;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_fc8ad9dbb2728d4c12f4b919.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.958000;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_13d685093ec5cac1e221ad9f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.946000;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_6eadd2c1546a8b8c0fdc1b17.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.747000;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:fff;src:url('chunks/assets/font_5e7dae32830fd33fea1bb1a7.woff2')format("woff");}.fff{font-family:fff;line-height:0.863500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:174.240000px;}
.ls1e{letter-spacing:-2.016000px;}
.ls1c{letter-spacing:-1.094400px;}
.ls1d{letter-spacing:-0.889200px;}
.ls28{letter-spacing:-0.460800px;}
.ls21{letter-spacing:-0.410400px;}
.ls10{letter-spacing:-0.384000px;}
.ls1a{letter-spacing:-0.378000px;}
.ls23{letter-spacing:-0.364800px;}
.ls9{letter-spacing:-0.360000px;}
.ls29{letter-spacing:-0.345600px;}
.ls11{letter-spacing:-0.336000px;}
.ls27{letter-spacing:-0.268800px;}
.ls16{letter-spacing:-0.264000px;}
.ls1b{letter-spacing:-0.252000px;}
.lsb{letter-spacing:-0.240000px;}
.lsd{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.144000px;}
.ls20{letter-spacing:-0.129600px;}
.ls1f{letter-spacing:-0.120000px;}
.ls18{letter-spacing:-0.096000px;}
.ls22{letter-spacing:-0.064800px;}
.ls13{letter-spacing:-0.024000px;}
.ls26{letter-spacing:-0.021600px;}
.ls8{letter-spacing:0.000000px;}
.lse{letter-spacing:0.024000px;}
.ls17{letter-spacing:0.048000px;}
.ls1{letter-spacing:0.059988px;}
.ls2{letter-spacing:0.096000px;}
.ls24{letter-spacing:0.115200px;}
.ls14{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.192000px;}
.ls4{letter-spacing:0.239974px;}
.ls25{letter-spacing:0.240000px;}
.ls12{letter-spacing:0.264000px;}
.ls7{letter-spacing:0.300000px;}
.ls6{letter-spacing:0.302400px;}
.ls15{letter-spacing:0.312000px;}
.lsa{letter-spacing:0.336000px;}
.lsc{letter-spacing:0.360000px;}
.ls3{letter-spacing:120.299983px;}
.ls0{letter-spacing:171.299983px;}
.ls5{letter-spacing:185.999983px;}
.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;}
}
.wsa{word-spacing:-102.060012px;}
.wsb{word-spacing:-101.808012px;}
.wsc{word-spacing:-82.216800px;}
.ws11{word-spacing:-79.502400px;}
.wsf{word-spacing:-79.500000px;}
.ws10{word-spacing:-79.200000px;}
.ws2{word-spacing:-61.776012px;}
.ws6{word-spacing:-61.536012px;}
.ws3{word-spacing:-61.464012px;}
.ws1{word-spacing:-61.440012px;}
.wse{word-spacing:-61.320012px;}
.ws5{word-spacing:-61.296012px;}
.ws7{word-spacing:-61.104012px;}
.ws4{word-spacing:-61.056012px;}
.wsd{word-spacing:-58.320012px;}
.ws9{word-spacing:-57.936012px;}
.ws0{word-spacing:-57.120011px;}
.ws14{word-spacing:-55.231200px;}
.ws16{word-spacing:-49.267188px;}
.ws15{word-spacing:-49.151988px;}
.ws1b{word-spacing:-49.055988px;}
.ws1c{word-spacing:-48.883188px;}
.ws1d{word-spacing:-48.691188px;}
.ws19{word-spacing:-0.480000px;}
.ws20{word-spacing:-0.403200px;}
.ws17{word-spacing:-0.384000px;}
.ws1f{word-spacing:-0.288000px;}
.ws21{word-spacing:-0.252000px;}
.ws18{word-spacing:-0.240000px;}
.ws22{word-spacing:0.000000px;}
.ws1e{word-spacing:0.057600px;}
.ws1a{word-spacing:0.120000px;}
.ws8{word-spacing:73.883948px;}
.ws12{word-spacing:510.276600px;}
.ws13{word-spacing:525.580800px;}
._1{margin-left:-1.290357px;}
._0{width:1.200000px;}
._2{width:453.351000px;}
.fc4{color:transparent;}
.fc3{color:rgb(208,206,206);}
.fc2{color:rgb(142,250,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:144.000000px;}
.fs7{font-size:191.999952px;}
.fs6{font-size:216.000000px;}
.fs0{font-size:240.000048px;}
.fs4{font-size:252.000000px;}
.fs8{font-size:288.000000px;}
.fs3{font-size:342.000000px;}
.fs2{font-size:420.000048px;}
.fs1{font-size:690.000048px;}
.y0{bottom:0.000000px;}
.y5e{bottom:68.520000px;}
.y45{bottom:82.560000px;}
.y4a{bottom:161.040000px;}
.y49{bottom:233.040000px;}
.y5d{bottom:276.600000px;}
.y48{bottom:305.040000px;}
.y47{bottom:377.040000px;}
.y46{bottom:449.040000px;}
.y1e{bottom:911.280000px;}
.y2f{bottom:911.640000px;}
.y1d{bottom:996.600000px;}
.y2e{bottom:998.400000px;}
.y1c{bottom:1083.720000px;}
.y2d{bottom:1084.080000px;}
.y5b{bottom:1122.960000px;}
.y1b{bottom:1170.480000px;}
.y2c{bottom:1170.840000px;}
.y1a{bottom:1256.160000px;}
.y2b{bottom:1256.520000px;}
.y19{bottom:1343.280000px;}
.y2a{bottom:1343.640000px;}
.y18{bottom:1428.600000px;}
.y29{bottom:1430.400000px;}
.y5a{bottom:1505.640000px;}
.y17{bottom:1515.720000px;}
.y28{bottom:1516.080000px;}
.y16{bottom:1602.480000px;}
.y27{bottom:1602.840000px;}
.y15{bottom:1688.160000px;}
.y26{bottom:1688.520000px;}
.y14{bottom:1775.280000px;}
.y25{bottom:1775.640000px;}
.y24{bottom:1862.400000px;}
.y59{bottom:1894.080000px;}
.y13{bottom:1947.720000px;}
.y23{bottom:1948.080000px;}
.y12{bottom:2034.480000px;}
.y22{bottom:2034.840000px;}
.y11{bottom:2120.160000px;}
.y44{bottom:2142.120000px;}
.y10{bottom:2207.280000px;}
.y5c{bottom:2236.440000px;}
.y43{bottom:2286.120000px;}
.yf{bottom:2292.600000px;}
.y52{bottom:2322.840000px;}
.y42{bottom:2358.120000px;}
.y51{bottom:2366.040000px;}
.ye{bottom:2379.720000px;}
.y57{bottom:2384.760000px;}
.y50{bottom:2408.160000px;}
.y41{bottom:2430.120000px;}
.y56{bottom:2441.640000px;}
.y4f{bottom:2451.720000px;}
.yd{bottom:2466.480000px;}
.y4e{bottom:2495.280000px;}
.y55{bottom:2498.880000px;}
.y40{bottom:2502.120000px;}
.y4d{bottom:2538.840000px;}
.yc{bottom:2552.160000px;}
.y3f{bottom:2574.120000px;}
.y4c{bottom:2582.040000px;}
.y4b{bottom:2624.160000px;}
.yb{bottom:2639.280000px;}
.y3e{bottom:2646.120000px;}
.y3d{bottom:2718.120000px;}
.ya{bottom:2724.600000px;}
.y54{bottom:2752.680000px;}
.y9{bottom:2811.720000px;}
.y3c{bottom:2862.120000px;}
.y8{bottom:2898.480000px;}
.y3b{bottom:2934.120000px;}
.y7{bottom:2984.160000px;}
.y3a{bottom:3006.120000px;}
.y6{bottom:3071.280000px;}
.y39{bottom:3078.120000px;}
.y53{bottom:3124.560000px;}
.y5{bottom:3156.600000px;}
.y38{bottom:3231.120000px;}
.y4{bottom:3243.720000px;}
.y37{bottom:3316.800000px;}
.y3{bottom:3330.480000px;}
.y36{bottom:3403.560000px;}
.y2{bottom:3416.160000px;}
.y35{bottom:3489.240000px;}
.y1{bottom:3503.280000px;}
.y34{bottom:3567.360150px;}
.y31{bottom:3720.000150px;}
.y33{bottom:3747.360150px;}
.y30{bottom:3846.000150px;}
.y32{bottom:3849.240150px;}
.y58{bottom:3959.040150px;}
.y21{bottom:4302.840150px;}
.y20{bottom:4529.280150px;}
.y1f{bottom:4757.160150px;}
.h8{height:101.812500px;}
.hb{height:148.895963px;}
.ha{height:159.084000px;}
.h1{height:176.040035px;}
.h4{height:178.320036px;}
.h7{height:185.598000px;}
.h2{height:186.120037px;}
.hc{height:186.840037px;}
.he{height:187.236000px;}
.hd{height:210.528000px;}
.h6{height:250.002000px;}
.h5{height:329.700038px;}
.h9{height:333.324000px;}
.h3{height:514.740036px;}
.h0{height:5052.000000px;}
.w0{width:3576.000000px;}
.x0{left:0.000000px;}
.x1{left:176.377500px;}
.xa{left:177.437550px;}
.x18{left:190.742100px;}
.x4{left:194.377500px;}
.x2{left:240.202500px;}
.x3{left:259.402500px;}
.x10{left:1045.328250px;}
.x13{left:1140.297750px;}
.x1b{left:1339.337400px;}
.x5{left:1343.470200px;}
.x7{left:1394.545200px;}
.x8{left:1397.470200px;}
.x6{left:1407.295200px;}
.x14{left:1429.415550px;}
.x9{left:1448.545200px;}
.x17{left:1562.803500px;}
.x16{left:1589.518500px;}
.x15{left:1600.018500px;}
.x1c{left:2081.949000px;}
.x11{left:2083.281000px;}
.x12{left:2137.281000px;}
.xb{left:2590.800000px;}
.xc{left:2644.800000px;}
.xd{left:2698.800000px;}
.xe{left:2766.300000px;}
.xf{left:2966.862000px;}
.x19{left:3267.151500px;}
.x1a{left:3329.046000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:154.880000pt;}
.ls1e{letter-spacing:-1.792000pt;}
.ls1c{letter-spacing:-0.972800pt;}
.ls1d{letter-spacing:-0.790400pt;}
.ls28{letter-spacing:-0.409600pt;}
.ls21{letter-spacing:-0.364800pt;}
.ls10{letter-spacing:-0.341333pt;}
.ls1a{letter-spacing:-0.336000pt;}
.ls23{letter-spacing:-0.324267pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls29{letter-spacing:-0.307200pt;}
.ls11{letter-spacing:-0.298667pt;}
.ls27{letter-spacing:-0.238933pt;}
.ls16{letter-spacing:-0.234667pt;}
.ls1b{letter-spacing:-0.224000pt;}
.lsb{letter-spacing:-0.213333pt;}
.lsd{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls20{letter-spacing:-0.115200pt;}
.ls1f{letter-spacing:-0.106667pt;}
.ls18{letter-spacing:-0.085333pt;}
.ls22{letter-spacing:-0.057600pt;}
.ls13{letter-spacing:-0.021333pt;}
.ls26{letter-spacing:-0.019200pt;}
.ls8{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.021333pt;}
.ls17{letter-spacing:0.042667pt;}
.ls1{letter-spacing:0.053322pt;}
.ls2{letter-spacing:0.085333pt;}
.ls24{letter-spacing:0.102400pt;}
.ls14{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.170667pt;}
.ls4{letter-spacing:0.213310pt;}
.ls25{letter-spacing:0.213333pt;}
.ls12{letter-spacing:0.234667pt;}
.ls7{letter-spacing:0.266667pt;}
.ls6{letter-spacing:0.268800pt;}
.ls15{letter-spacing:0.277333pt;}
.lsa{letter-spacing:0.298667pt;}
.lsc{letter-spacing:0.320000pt;}
.ls3{letter-spacing:106.933318pt;}
.ls0{letter-spacing:152.266652pt;}
.ls5{letter-spacing:165.333318pt;}
.wsa{word-spacing:-90.720010pt;}
.wsb{word-spacing:-90.496010pt;}
.wsc{word-spacing:-73.081600pt;}
.ws11{word-spacing:-70.668800pt;}
.wsf{word-spacing:-70.666667pt;}
.ws10{word-spacing:-70.400000pt;}
.ws2{word-spacing:-54.912011pt;}
.ws6{word-spacing:-54.698678pt;}
.ws3{word-spacing:-54.634678pt;}
.ws1{word-spacing:-54.613344pt;}
.wse{word-spacing:-54.506678pt;}
.ws5{word-spacing:-54.485344pt;}
.ws7{word-spacing:-54.314678pt;}
.ws4{word-spacing:-54.272011pt;}
.wsd{word-spacing:-51.840010pt;}
.ws9{word-spacing:-51.498677pt;}
.ws0{word-spacing:-50.773343pt;}
.ws14{word-spacing:-49.094400pt;}
.ws16{word-spacing:-43.793056pt;}
.ws15{word-spacing:-43.690656pt;}
.ws1b{word-spacing:-43.605322pt;}
.ws1c{word-spacing:-43.451722pt;}
.ws1d{word-spacing:-43.281056pt;}
.ws19{word-spacing:-0.426667pt;}
.ws20{word-spacing:-0.358400pt;}
.ws17{word-spacing:-0.341333pt;}
.ws1f{word-spacing:-0.256000pt;}
.ws21{word-spacing:-0.224000pt;}
.ws18{word-spacing:-0.213333pt;}
.ws22{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.051200pt;}
.ws1a{word-spacing:0.106667pt;}
.ws8{word-spacing:65.674621pt;}
.ws12{word-spacing:453.579200pt;}
.ws13{word-spacing:467.182933pt;}
._1{margin-left:-1.146984pt;}
._0{width:1.066667pt;}
._2{width:402.978667pt;}
.fs5{font-size:128.000000pt;}
.fs7{font-size:170.666624pt;}
.fs6{font-size:192.000000pt;}
.fs0{font-size:213.333376pt;}
.fs4{font-size:224.000000pt;}
.fs8{font-size:256.000000pt;}
.fs3{font-size:304.000000pt;}
.fs2{font-size:373.333376pt;}
.fs1{font-size:613.333376pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:60.906667pt;}
.y45{bottom:73.386667pt;}
.y4a{bottom:143.146667pt;}
.y49{bottom:207.146667pt;}
.y5d{bottom:245.866667pt;}
.y48{bottom:271.146667pt;}
.y47{bottom:335.146667pt;}
.y46{bottom:399.146667pt;}
.y1e{bottom:810.026667pt;}
.y2f{bottom:810.346667pt;}
.y1d{bottom:885.866667pt;}
.y2e{bottom:887.466667pt;}
.y1c{bottom:963.306667pt;}
.y2d{bottom:963.626667pt;}
.y5b{bottom:998.186667pt;}
.y1b{bottom:1040.426667pt;}
.y2c{bottom:1040.746667pt;}
.y1a{bottom:1116.586667pt;}
.y2b{bottom:1116.906667pt;}
.y19{bottom:1194.026667pt;}
.y2a{bottom:1194.346667pt;}
.y18{bottom:1269.866667pt;}
.y29{bottom:1271.466667pt;}
.y5a{bottom:1338.346667pt;}
.y17{bottom:1347.306667pt;}
.y28{bottom:1347.626667pt;}
.y16{bottom:1424.426667pt;}
.y27{bottom:1424.746667pt;}
.y15{bottom:1500.586667pt;}
.y26{bottom:1500.906667pt;}
.y14{bottom:1578.026667pt;}
.y25{bottom:1578.346667pt;}
.y24{bottom:1655.466667pt;}
.y59{bottom:1683.626667pt;}
.y13{bottom:1731.306667pt;}
.y23{bottom:1731.626667pt;}
.y12{bottom:1808.426667pt;}
.y22{bottom:1808.746667pt;}
.y11{bottom:1884.586667pt;}
.y44{bottom:1904.106667pt;}
.y10{bottom:1962.026667pt;}
.y5c{bottom:1987.946667pt;}
.y43{bottom:2032.106667pt;}
.yf{bottom:2037.866667pt;}
.y52{bottom:2064.746667pt;}
.y42{bottom:2096.106667pt;}
.y51{bottom:2103.146667pt;}
.ye{bottom:2115.306667pt;}
.y57{bottom:2119.786667pt;}
.y50{bottom:2140.586667pt;}
.y41{bottom:2160.106667pt;}
.y56{bottom:2170.346667pt;}
.y4f{bottom:2179.306667pt;}
.yd{bottom:2192.426667pt;}
.y4e{bottom:2218.026667pt;}
.y55{bottom:2221.226667pt;}
.y40{bottom:2224.106667pt;}
.y4d{bottom:2256.746667pt;}
.yc{bottom:2268.586667pt;}
.y3f{bottom:2288.106667pt;}
.y4c{bottom:2295.146667pt;}
.y4b{bottom:2332.586667pt;}
.yb{bottom:2346.026667pt;}
.y3e{bottom:2352.106667pt;}
.y3d{bottom:2416.106667pt;}
.ya{bottom:2421.866667pt;}
.y54{bottom:2446.826667pt;}
.y9{bottom:2499.306667pt;}
.y3c{bottom:2544.106667pt;}
.y8{bottom:2576.426667pt;}
.y3b{bottom:2608.106667pt;}
.y7{bottom:2652.586667pt;}
.y3a{bottom:2672.106667pt;}
.y6{bottom:2730.026667pt;}
.y39{bottom:2736.106667pt;}
.y53{bottom:2777.386667pt;}
.y5{bottom:2805.866667pt;}
.y38{bottom:2872.106667pt;}
.y4{bottom:2883.306667pt;}
.y37{bottom:2948.266667pt;}
.y3{bottom:2960.426667pt;}
.y36{bottom:3025.386667pt;}
.y2{bottom:3036.586667pt;}
.y35{bottom:3101.546667pt;}
.y1{bottom:3114.026667pt;}
.y34{bottom:3170.986800pt;}
.y31{bottom:3306.666800pt;}
.y33{bottom:3330.986800pt;}
.y30{bottom:3418.666800pt;}
.y32{bottom:3421.546800pt;}
.y58{bottom:3519.146800pt;}
.y21{bottom:3824.746800pt;}
.y20{bottom:4026.026800pt;}
.y1f{bottom:4228.586800pt;}
.h8{height:90.500000pt;}
.hb{height:132.351967pt;}
.ha{height:141.408000pt;}
.h1{height:156.480031pt;}
.h4{height:158.506698pt;}
.h7{height:164.976000pt;}
.h2{height:165.440033pt;}
.hc{height:166.080033pt;}
.he{height:166.432000pt;}
.hd{height:187.136000pt;}
.h6{height:222.224000pt;}
.h5{height:293.066700pt;}
.h9{height:296.288000pt;}
.h3{height:457.546698pt;}
.h0{height:4490.666667pt;}
.w0{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x1{left:156.780000pt;}
.xa{left:157.722267pt;}
.x18{left:169.548533pt;}
.x4{left:172.780000pt;}
.x2{left:213.513333pt;}
.x3{left:230.580000pt;}
.x10{left:929.180667pt;}
.x13{left:1013.598000pt;}
.x1b{left:1190.522133pt;}
.x5{left:1194.195733pt;}
.x7{left:1239.595733pt;}
.x8{left:1242.195733pt;}
.x6{left:1250.929067pt;}
.x14{left:1270.591600pt;}
.x9{left:1287.595733pt;}
.x17{left:1389.158667pt;}
.x16{left:1412.905333pt;}
.x15{left:1422.238667pt;}
.x1c{left:1850.621333pt;}
.x11{left:1851.805333pt;}
.x12{left:1899.805333pt;}
.xb{left:2302.933333pt;}
.xc{left:2350.933333pt;}
.xd{left:2398.933333pt;}
.xe{left:2458.933333pt;}
.xf{left:2637.210667pt;}
.x19{left:2904.134667pt;}
.x1a{left:2959.152000pt;}
}




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