
    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_c52e8a879a29fb2d8a934f50.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941406;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_d2a35a90155813d78180e27b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962402;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_3ce2c4b82d1a402fb97503b7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.752000;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_c9aa9be988c9120b648921c9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107422;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_d82a0949b1bbbc788309fe82.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_c0c69084e53e95084b3b4070.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.107422;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_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.682617;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_c07bb3848e4e1012d8b15f05.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.760254;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_bf29bdf2af00820964cb398e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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_f856eed5b9741753e18e0239.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.962402;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_131962ea3eae491280d213d7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.201172;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_21de1c17523a1508d5a450d5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.929000;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_c998744c76298c6a8cfd5fc3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.932000;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;}
.v3{vertical-align:15.408000px;}
.v2{vertical-align:54.000000px;}
.v1{vertical-align:79.200000px;}
.lsf{letter-spacing:-0.510600px;}
.ls1f{letter-spacing:-0.484800px;}
.lse{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.280200px;}
.lsd{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.144000px;}
.ls1a{letter-spacing:-0.117600px;}
.ls18{letter-spacing:-0.037440px;}
.ls19{letter-spacing:-0.018720px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018720px;}
.ls6{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.037440px;}
.ls10{letter-spacing:0.045360px;}
.ls15{letter-spacing:0.151920px;}
.ls9{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.288000px;}
.ls1c{letter-spacing:0.348600px;}
.ls1b{letter-spacing:0.360000px;}
.ls1e{letter-spacing:12.595104px;}
.ls1d{letter-spacing:12.709440px;}
.ls20{letter-spacing:20.909664px;}
.ls16{letter-spacing:21.024000px;}
.ls17{letter-spacing:39.889440px;}
.ls5{letter-spacing:43.113600px;}
.ls4{letter-spacing:43.200000px;}
.ls11{letter-spacing:50.457600px;}
.ls12{letter-spacing:50.544000px;}
.ls7{letter-spacing:52.864128px;}
.ls3{letter-spacing:52.918080px;}
.ls8{letter-spacing:52.930080px;}
.ls13{letter-spacing:68.359104px;}
.ls14{letter-spacing:68.473440px;}
.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;}
}
.ws8{word-spacing:-53.488080px;}
.ws11{word-spacing:-53.442720px;}
.ws3{word-spacing:-33.146520px;}
.ws12{word-spacing:-32.104080px;}
.ws7{word-spacing:-30.240000px;}
.ws4{word-spacing:-29.880000px;}
.ws5{word-spacing:-29.808000px;}
.ws6{word-spacing:-29.736000px;}
.ws9{word-spacing:-26.640000px;}
.ws2{word-spacing:-26.621280px;}
.wsd{word-spacing:-23.418720px;}
.wse{word-spacing:-23.400000px;}
.ws10{word-spacing:-23.381280px;}
.wsf{word-spacing:-23.341152px;}
.ws15{word-spacing:-20.304000px;}
.wsa{word-spacing:-20.016000px;}
.wsb{word-spacing:-16.272000px;}
.ws13{word-spacing:-1.476000px;}
.ws14{word-spacing:-0.648000px;}
.ws1{word-spacing:-0.095904px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:335.100000px;}
._2{margin-left:-2.808000px;}
._0{margin-left:-1.728000px;}
._1{width:1.728000px;}
._3{width:3.024000px;}
._c{width:18.120000px;}
._d{width:19.716000px;}
._a{width:21.412800px;}
._6{width:27.248064px;}
._5{width:34.470000px;}
._b{width:48.054720px;}
._4{width:60.616320px;}
._8{width:145.260000px;}
._7{width:227.484000px;}
._9{width:2912.103360px;}
.fc7{color:rgb(42,53,78);}
.fc5{color:rgb(175,171,171);}
.fc6{color:rgb(118,113,113);}
.fc2{color:transparent;}
.fc1{color:rgb(115,168,214);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fsa{font-size:72.144000px;}
.fsd{font-size:84.240000px;}
.fse{font-size:84.384000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:95.904000px;}
.fs0{font-size:108.000000px;}
.fs7{font-size:108.144000px;}
.fs6{font-size:120.240000px;}
.fs9{font-size:120.384000px;}
.fsc{font-size:144.000000px;}
.fs1{font-size:144.144000px;}
.fsf{font-size:167.760000px;}
.fs11{font-size:167.904000px;}
.fs2{font-size:192.240000px;}
.fs12{font-size:432.144000px;}
.fs10{font-size:840.360000px;}
.fsb{font-size:960.060000px;}
.y0{bottom:0.000000px;}
.y15{bottom:24.840000px;}
.y55{bottom:31.212000px;}
.yc{bottom:31.788000px;}
.yb{bottom:49.860000px;}
.y4e{bottom:74.808000px;}
.y49{bottom:83.772000px;}
.y5a{bottom:86.832000px;}
.y63{bottom:87.084000px;}
.y39{bottom:99.432000px;}
.y4d{bottom:100.008000px;}
.y4f{bottom:100.260000px;}
.ya{bottom:100.764000px;}
.y20{bottom:103.284000px;}
.y1e{bottom:108.612000px;}
.y48{bottom:108.972000px;}
.y2a{bottom:120.132000px;}
.y62{bottom:123.084000px;}
.y38{bottom:124.632000px;}
.y4c{bottom:125.208000px;}
.y51{bottom:126.720000px;}
.y9{bottom:135.864000px;}
.y37{bottom:149.832000px;}
.y50{bottom:151.950000px;}
.y3c{bottom:154.410000px;}
.y8{bottom:170.970000px;}
.y1d{bottom:176.295000px;}
.y29{bottom:186.555000px;}
.y7{bottom:206.250000px;}
.y3a{bottom:207.390000px;}
.y3b{bottom:208.410000px;}
.y2{bottom:208.980000px;}
.y13{bottom:216.360000px;}
.y1c{bottom:224.895000px;}
.y54{bottom:229.170000px;}
.y28{bottom:237.165000px;}
.y6{bottom:241.380000px;}
.y53{bottom:254.415000px;}
.y1{bottom:257.580000px;}
.y12{bottom:264.990000px;}
.y52{bottom:279.615000px;}
.y1b{bottom:281.085000px;}
.y27{bottom:289.185000px;}
.y61{bottom:290.445000px;}
.y59{bottom:301.575000px;}
.y5{bottom:314.715000px;}
.y11{bottom:320.970000px;}
.y1f{bottom:328.350000px;}
.y42{bottom:328.755000px;}
.y1a{bottom:337.065000px;}
.y24{bottom:340.485000px;}
.y41{bottom:353.955000px;}
.y60{bottom:355.290000px;}
.y22{bottom:357.150000px;}
.y58{bottom:366.915000px;}
.y10{bottom:369.570000px;}
.y2c{bottom:376.950000px;}
.y40{bottom:379.155000px;}
.y19{bottom:394.710000px;}
.y23{bottom:395.970000px;}
.y2b{bottom:398.550000px;}
.y4{bottom:401.145000px;}
.y30{bottom:406.005000px;}
.y3d{bottom:413.850000px;}
.y5f{bottom:420.090000px;}
.y21{bottom:421.950000px;}
.yf{bottom:425.775000px;}
.y32{bottom:428.325000px;}
.y57{bottom:432.465000px;}
.y2e{bottom:445.860000px;}
.y18{bottom:448.710000px;}
.y31{bottom:453.525000px;}
.y3f{bottom:465.015000px;}
.y69{bottom:476.025000px;}
.ye{bottom:481.935000px;}
.y5e{bottom:484.890000px;}
.y4b{bottom:485.310000px;}
.y68{bottom:495.465000px;}
.y2d{bottom:496.875000px;}
.y56{bottom:497.805000px;}
.y4a{bottom:514.110000px;}
.y67{bottom:514.905000px;}
.y17{bottom:517.650000px;}
.y2f{bottom:534.030000px;}
.y47{bottom:536.865000px;}
.yd{bottom:539.355000px;}
.y26{bottom:548.250000px;}
.y66{bottom:549.465000px;}
.y46{bottom:562.110000px;}
.y35{bottom:562.965000px;}
.y65{bottom:568.905000px;}
.y16{bottom:571.680000px;}
.y36{bottom:584.535000px;}
.y45{bottom:587.310000px;}
.y34{bottom:588.165000px;}
.y64{bottom:588.345000px;}
.y25{bottom:605.700000px;}
.y44{bottom:612.510000px;}
.y33{bottom:613.365000px;}
.y5c{bottom:632.595000px;}
.y5d{bottom:635.610000px;}
.y43{bottom:637.710000px;}
.y5b{bottom:682.815000px;}
.y3{bottom:686.775000px;}
.y14{bottom:740.340000px;}
.y3e{bottom:742.140000px;}
.h6{height:52.628906px;}
.ha{height:59.415469px;}
.hf{height:64.582031px;}
.hd{height:65.884219px;}
.h4{height:71.544384px;}
.h12{height:71.613281px;}
.h16{height:75.560977px;}
.h17{height:75.690141px;}
.h1{height:78.943359px;}
.h18{height:81.292219px;}
.h23{height:85.610880px;}
.h5{height:85.894102px;}
.h10{height:86.023266px;}
.h19{height:90.414844px;}
.h1b{height:95.245664px;}
.h8{height:96.873047px;}
.h9{height:97.002211px;}
.h22{height:102.816000px;}
.h20{height:106.664062px;}
.h21{height:106.770727px;}
.h7{height:107.851992px;}
.hb{height:107.981156px;}
.he{height:108.281250px;}
.h2{height:108.389531px;}
.h1d{height:119.780640px;}
.h1e{height:119.883456px;}
.h13{height:126.007031px;}
.h1a{height:126.147656px;}
.h11{height:143.782031px;}
.h3{height:144.555469px;}
.h14{height:147.445312px;}
.h15{height:147.592758px;}
.h1f{height:308.550816px;}
.h1c{height:630.270000px;}
.hc{height:720.045000px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x4{left:58.931979px;}
.x2{left:67.427979px;}
.x3{left:109.799979px;}
.x1{left:123.371979px;}
.x5{left:135.467979px;}
.x1f{left:146.375979px;}
.x1e{left:148.283979px;}
.x14{left:152.489979px;}
.x2b{left:169.664979px;}
.xa{left:176.909979px;}
.x12{left:178.019979px;}
.x6{left:189.464979px;}
.x22{left:195.329979px;}
.xb{left:203.909979px;}
.x15{left:206.489979px;}
.x20{left:224.354979px;}
.xc{left:230.909979px;}
.x10{left:234.284979px;}
.x2f{left:235.874979px;}
.x8{left:243.509979px;}
.x7{left:246.569979px;}
.x21{left:255.674979px;}
.xd{left:257.909979px;}
.x16{left:260.489979px;}
.x29{left:288.569979px;}
.x35{left:305.609979px;}
.x38{left:315.749979px;}
.x2a{left:322.409979px;}
.x26{left:334.544979px;}
.x39{left:435.269979px;}
.x37{left:452.264979px;}
.x11{left:468.104979px;}
.x17{left:477.794979px;}
.x18{left:501.194979px;}
.x24{left:644.939979px;}
.x36{left:654.329979px;}
.x23{left:667.589979px;}
.x25{left:678.779979px;}
.x32{left:701.429979px;}
.x33{left:721.229979px;}
.x34{left:726.989979px;}
.x1a{left:729.434979px;}
.x1b{left:736.739979px;}
.x9{left:849.959979px;}
.x2e{left:866.264979px;}
.x28{left:988.199979px;}
.x27{left:989.669979px;}
.x19{left:1003.424979px;}
.x1c{left:1027.184979px;}
.x31{left:1038.809979px;}
.x1d{left:1049.834979px;}
.x2c{left:1051.559979px;}
.x30{left:1066.889979px;}
.x2d{left:1105.229979px;}
.x13{left:1118.804979px;}
.xe{left:1139.189979px;}
.xf{left:1203.194979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.696000pt;}
.v2{vertical-align:48.000000pt;}
.v1{vertical-align:70.400000pt;}
.lsf{letter-spacing:-0.453867pt;}
.ls1f{letter-spacing:-0.430933pt;}
.lse{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.249067pt;}
.lsd{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls1a{letter-spacing:-0.104533pt;}
.ls18{letter-spacing:-0.033280pt;}
.ls19{letter-spacing:-0.016640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016640pt;}
.ls6{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.033280pt;}
.ls10{letter-spacing:0.040320pt;}
.ls15{letter-spacing:0.135040pt;}
.ls9{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:0.309867pt;}
.ls1b{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:11.195648pt;}
.ls1d{letter-spacing:11.297280pt;}
.ls20{letter-spacing:18.586368pt;}
.ls16{letter-spacing:18.688000pt;}
.ls17{letter-spacing:35.457280pt;}
.ls5{letter-spacing:38.323200pt;}
.ls4{letter-spacing:38.400000pt;}
.ls11{letter-spacing:44.851200pt;}
.ls12{letter-spacing:44.928000pt;}
.ls7{letter-spacing:46.990336pt;}
.ls3{letter-spacing:47.038293pt;}
.ls8{letter-spacing:47.048960pt;}
.ls13{letter-spacing:60.763648pt;}
.ls14{letter-spacing:60.865280pt;}
.ws8{word-spacing:-47.544960pt;}
.ws11{word-spacing:-47.504640pt;}
.ws3{word-spacing:-29.463573pt;}
.ws12{word-spacing:-28.536960pt;}
.ws7{word-spacing:-26.880000pt;}
.ws4{word-spacing:-26.560000pt;}
.ws5{word-spacing:-26.496000pt;}
.ws6{word-spacing:-26.432000pt;}
.ws9{word-spacing:-23.680000pt;}
.ws2{word-spacing:-23.663360pt;}
.wsd{word-spacing:-20.816640pt;}
.wse{word-spacing:-20.800000pt;}
.ws10{word-spacing:-20.783360pt;}
.wsf{word-spacing:-20.747691pt;}
.ws15{word-spacing:-18.048000pt;}
.wsa{word-spacing:-17.792000pt;}
.wsb{word-spacing:-14.464000pt;}
.ws13{word-spacing:-1.312000pt;}
.ws14{word-spacing:-0.576000pt;}
.ws1{word-spacing:-0.085248pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:297.866667pt;}
._2{margin-left:-2.496000pt;}
._0{margin-left:-1.536000pt;}
._1{width:1.536000pt;}
._3{width:2.688000pt;}
._c{width:16.106667pt;}
._d{width:17.525333pt;}
._a{width:19.033600pt;}
._6{width:24.220501pt;}
._5{width:30.640000pt;}
._b{width:42.715307pt;}
._4{width:53.881173pt;}
._8{width:129.120000pt;}
._7{width:202.208000pt;}
._9{width:2588.536320pt;}
.fs8{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fsa{font-size:64.128000pt;}
.fsd{font-size:74.880000pt;}
.fse{font-size:75.008000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:85.248000pt;}
.fs0{font-size:96.000000pt;}
.fs7{font-size:96.128000pt;}
.fs6{font-size:106.880000pt;}
.fs9{font-size:107.008000pt;}
.fsc{font-size:128.000000pt;}
.fs1{font-size:128.128000pt;}
.fsf{font-size:149.120000pt;}
.fs11{font-size:149.248000pt;}
.fs2{font-size:170.880000pt;}
.fs12{font-size:384.128000pt;}
.fs10{font-size:746.986667pt;}
.fsb{font-size:853.386667pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:22.080000pt;}
.y55{bottom:27.744000pt;}
.yc{bottom:28.256000pt;}
.yb{bottom:44.320000pt;}
.y4e{bottom:66.496000pt;}
.y49{bottom:74.464000pt;}
.y5a{bottom:77.184000pt;}
.y63{bottom:77.408000pt;}
.y39{bottom:88.384000pt;}
.y4d{bottom:88.896000pt;}
.y4f{bottom:89.120000pt;}
.ya{bottom:89.568000pt;}
.y20{bottom:91.808000pt;}
.y1e{bottom:96.544000pt;}
.y48{bottom:96.864000pt;}
.y2a{bottom:106.784000pt;}
.y62{bottom:109.408000pt;}
.y38{bottom:110.784000pt;}
.y4c{bottom:111.296000pt;}
.y51{bottom:112.640000pt;}
.y9{bottom:120.768000pt;}
.y37{bottom:133.184000pt;}
.y50{bottom:135.066667pt;}
.y3c{bottom:137.253333pt;}
.y8{bottom:151.973333pt;}
.y1d{bottom:156.706667pt;}
.y29{bottom:165.826667pt;}
.y7{bottom:183.333333pt;}
.y3a{bottom:184.346667pt;}
.y3b{bottom:185.253333pt;}
.y2{bottom:185.760000pt;}
.y13{bottom:192.320000pt;}
.y1c{bottom:199.906667pt;}
.y54{bottom:203.706667pt;}
.y28{bottom:210.813333pt;}
.y6{bottom:214.560000pt;}
.y53{bottom:226.146667pt;}
.y1{bottom:228.960000pt;}
.y12{bottom:235.546667pt;}
.y52{bottom:248.546667pt;}
.y1b{bottom:249.853333pt;}
.y27{bottom:257.053333pt;}
.y61{bottom:258.173333pt;}
.y59{bottom:268.066667pt;}
.y5{bottom:279.746667pt;}
.y11{bottom:285.306667pt;}
.y1f{bottom:291.866667pt;}
.y42{bottom:292.226667pt;}
.y1a{bottom:299.613333pt;}
.y24{bottom:302.653333pt;}
.y41{bottom:314.626667pt;}
.y60{bottom:315.813333pt;}
.y22{bottom:317.466667pt;}
.y58{bottom:326.146667pt;}
.y10{bottom:328.506667pt;}
.y2c{bottom:335.066667pt;}
.y40{bottom:337.026667pt;}
.y19{bottom:350.853333pt;}
.y23{bottom:351.973333pt;}
.y2b{bottom:354.266667pt;}
.y4{bottom:356.573333pt;}
.y30{bottom:360.893333pt;}
.y3d{bottom:367.866667pt;}
.y5f{bottom:373.413333pt;}
.y21{bottom:375.066667pt;}
.yf{bottom:378.466667pt;}
.y32{bottom:380.733333pt;}
.y57{bottom:384.413333pt;}
.y2e{bottom:396.320000pt;}
.y18{bottom:398.853333pt;}
.y31{bottom:403.133333pt;}
.y3f{bottom:413.346667pt;}
.y69{bottom:423.133333pt;}
.ye{bottom:428.386667pt;}
.y5e{bottom:431.013333pt;}
.y4b{bottom:431.386667pt;}
.y68{bottom:440.413333pt;}
.y2d{bottom:441.666667pt;}
.y56{bottom:442.493333pt;}
.y4a{bottom:456.986667pt;}
.y67{bottom:457.693333pt;}
.y17{bottom:460.133333pt;}
.y2f{bottom:474.693333pt;}
.y47{bottom:477.213333pt;}
.yd{bottom:479.426667pt;}
.y26{bottom:487.333333pt;}
.y66{bottom:488.413333pt;}
.y46{bottom:499.653333pt;}
.y35{bottom:500.413333pt;}
.y65{bottom:505.693333pt;}
.y16{bottom:508.160000pt;}
.y36{bottom:519.586667pt;}
.y45{bottom:522.053333pt;}
.y34{bottom:522.813333pt;}
.y64{bottom:522.973333pt;}
.y25{bottom:538.400000pt;}
.y44{bottom:544.453333pt;}
.y33{bottom:545.213333pt;}
.y5c{bottom:562.306667pt;}
.y5d{bottom:564.986667pt;}
.y43{bottom:566.853333pt;}
.y5b{bottom:606.946667pt;}
.y3{bottom:610.466667pt;}
.y14{bottom:658.080000pt;}
.y3e{bottom:659.680000pt;}
.h6{height:46.781250pt;}
.ha{height:52.813750pt;}
.hf{height:57.406250pt;}
.hd{height:58.563750pt;}
.h4{height:63.595008pt;}
.h12{height:63.656250pt;}
.h16{height:67.165312pt;}
.h17{height:67.280125pt;}
.h1{height:70.171875pt;}
.h18{height:72.259750pt;}
.h23{height:76.098560pt;}
.h5{height:76.350312pt;}
.h10{height:76.465125pt;}
.h19{height:80.368750pt;}
.h1b{height:84.662813pt;}
.h8{height:86.109375pt;}
.h9{height:86.224187pt;}
.h22{height:91.392000pt;}
.h20{height:94.812500pt;}
.h21{height:94.907313pt;}
.h7{height:95.868437pt;}
.hb{height:95.983250pt;}
.he{height:96.250000pt;}
.h2{height:96.346250pt;}
.h1d{height:106.471680pt;}
.h1e{height:106.563072pt;}
.h13{height:112.006250pt;}
.h1a{height:112.131250pt;}
.h11{height:127.806250pt;}
.h3{height:128.493750pt;}
.h14{height:131.062500pt;}
.h15{height:131.193562pt;}
.h1f{height:274.267392pt;}
.h1c{height:560.240000pt;}
.hc{height:640.040000pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x4{left:52.383981pt;}
.x2{left:59.935981pt;}
.x3{left:97.599981pt;}
.x1{left:109.663981pt;}
.x5{left:120.415981pt;}
.x1f{left:130.111981pt;}
.x1e{left:131.807981pt;}
.x14{left:135.546648pt;}
.x2b{left:150.813314pt;}
.xa{left:157.253314pt;}
.x12{left:158.239981pt;}
.x6{left:168.413314pt;}
.x22{left:173.626648pt;}
.xb{left:181.253314pt;}
.x15{left:183.546648pt;}
.x20{left:199.426648pt;}
.xc{left:205.253314pt;}
.x10{left:208.253314pt;}
.x2f{left:209.666648pt;}
.x8{left:216.453314pt;}
.x7{left:219.173314pt;}
.x21{left:227.266648pt;}
.xd{left:229.253314pt;}
.x16{left:231.546648pt;}
.x29{left:256.506648pt;}
.x35{left:271.653314pt;}
.x38{left:280.666648pt;}
.x2a{left:286.586648pt;}
.x26{left:297.373314pt;}
.x39{left:386.906648pt;}
.x37{left:402.013314pt;}
.x11{left:416.093314pt;}
.x17{left:424.706648pt;}
.x18{left:445.506648pt;}
.x24{left:573.279981pt;}
.x36{left:581.626648pt;}
.x23{left:593.413314pt;}
.x25{left:603.359981pt;}
.x32{left:623.493314pt;}
.x33{left:641.093314pt;}
.x34{left:646.213314pt;}
.x1a{left:648.386648pt;}
.x1b{left:654.879981pt;}
.x9{left:755.519981pt;}
.x2e{left:770.013314pt;}
.x28{left:878.399981pt;}
.x27{left:879.706648pt;}
.x19{left:891.933314pt;}
.x1c{left:913.053314pt;}
.x31{left:923.386648pt;}
.x1d{left:933.186648pt;}
.x2c{left:934.719981pt;}
.x30{left:948.346648pt;}
.x2d{left:982.426648pt;}
.x13{left:994.493314pt;}
.xe{left:1012.613314pt;}
.xf{left:1069.506648pt;}
}




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