
    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_1d30b6d04f4d4d03ad4a71f0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_edeeada410fe590bee581808.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.073000;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_15657025250653e7a8cb560d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.085000;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_58853fd9c180f7bab136b690.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.075000;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_e9cabc4acdbf430b727e9843.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.073000;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_e25c817f63d3aed205764f53.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.841000;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;}
.ls12{letter-spacing:-1.002000px;}
.ls19{letter-spacing:-0.948000px;}
.ls20{letter-spacing:-0.542400px;}
.ls18{letter-spacing:-0.294600px;}
.ls15{letter-spacing:-0.284400px;}
.ls21{letter-spacing:-0.162000px;}
.lsa{letter-spacing:-0.115800px;}
.ls9{letter-spacing:-0.094800px;}
.lsb{letter-spacing:-0.069600px;}
.ls8{letter-spacing:-0.057240px;}
.ls22{letter-spacing:-0.030960px;}
.ls7{letter-spacing:-0.026640px;}
.ls1b{letter-spacing:-0.020880px;}
.ls23{letter-spacing:-0.015480px;}
.ls1a{letter-spacing:-0.004320px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.019440px;}
.ls10{letter-spacing:0.045000px;}
.lsd{letter-spacing:0.065400px;}
.ls5{letter-spacing:0.065520px;}
.ls16{letter-spacing:0.066000px;}
.ls14{letter-spacing:0.074400px;}
.lsc{letter-spacing:0.075600px;}
.lsf{letter-spacing:0.090000px;}
.ls1f{letter-spacing:0.121680px;}
.ls2{letter-spacing:0.127200px;}
.ls3{letter-spacing:0.130800px;}
.ls1{letter-spacing:0.132000px;}
.ls1d{letter-spacing:0.137400px;}
.ls4{letter-spacing:0.155400px;}
.ls11{letter-spacing:0.174000px;}
.ls6{letter-spacing:0.177600px;}
.ls1e{letter-spacing:0.180600px;}
.ls1c{letter-spacing:0.490800px;}
.ls13{letter-spacing:0.515400px;}
.ls17{letter-spacing:2544.165000px;}
.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;}
}
.ws3{word-spacing:-18.731520px;}
.wsd{word-spacing:-15.929880px;}
.ws13{word-spacing:-15.905280px;}
.ws8{word-spacing:-15.592080px;}
.wsb{word-spacing:-15.588480px;}
.ws4{word-spacing:-15.569880px;}
.ws2{word-spacing:-15.545280px;}
.wse{word-spacing:-15.490080px;}
.wsf{word-spacing:-15.488880px;}
.ws11{word-spacing:-15.480480px;}
.ws9{word-spacing:-15.433920px;}
.ws7{word-spacing:-15.414480px;}
.ws12{word-spacing:-15.410160px;}
.ws14{word-spacing:-15.393600px;}
.ws1{word-spacing:-15.387840px;}
.ws6{word-spacing:-15.344880px;}
.ws5{word-spacing:-15.298680px;}
.ws15{word-spacing:-15.252480px;}
.ws10{word-spacing:-15.130080px;}
.wsc{word-spacing:-14.412480px;}
.ws19{word-spacing:-13.156080px;}
.ws16{word-spacing:-13.112880px;}
.ws17{word-spacing:-12.975480px;}
.ws18{word-spacing:-12.944520px;}
.wsa{word-spacing:-12.285000px;}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-1.933920px;}
._0{width:1.020360px;}
._2{width:2507.445000px;}
._3{width:3398.465520px;}
.fc3{color:rgb(0,71,120);}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fsa{font-size:42.120000px;}
.fs9{font-size:45.000000px;}
.fs5{font-size:47.880000px;}
.fs6{font-size:56.880000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:119.880000px;}
.y0{bottom:0.000000px;}
.y85{bottom:2.520000px;}
.y82{bottom:3.240000px;}
.y28{bottom:3.870000px;}
.y83{bottom:34.020000px;}
.yab{bottom:40.170000px;}
.y4d{bottom:54.900000px;}
.y24{bottom:56.610000px;}
.yaa{bottom:56.640000px;}
.y5{bottom:66.525004px;}
.ya9{bottom:89.670000px;}
.y84{bottom:91.440000px;}
.y4{bottom:97.125005px;}
.ya8{bottom:106.140000px;}
.y4c{bottom:112.950000px;}
.ya7{bottom:122.700000px;}
.y4b{bottom:126.450000px;}
.y22{bottom:139.264499px;}
.y81{bottom:142.470000px;}
.ya6{bottom:155.640000px;}
.y4a{bottom:165.600000px;}
.y7d{bottom:165.780000px;}
.ya5{bottom:172.200000px;}
.y49{bottom:185.040000px;}
.y7c{bottom:185.310000px;}
.ya4{bottom:188.670000px;}
.y86{bottom:189.900000px;}
.y19{bottom:196.933500px;}
.y48{bottom:204.570000px;}
.y7b{bottom:204.840000px;}
.ya3{bottom:205.140000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.ya2{bottom:221.700000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y47{bottom:224.130000px;}
.y7a{bottom:224.310000px;}
.y26{bottom:228.810000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.ya1{bottom:238.170000px;}
.y46{bottom:243.570000px;}
.y79{bottom:243.840000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y45{bottom:263.100000px;}
.y78{bottom:263.370000px;}
.ya0{bottom:271.200000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y44{bottom:282.630000px;}
.y77{bottom:282.810000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y9f{bottom:287.670000px;}
.y43{bottom:302.070000px;}
.y76{bottom:302.340000px;}
.y9e{bottom:304.140000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y9d{bottom:320.700000px;}
.y42{bottom:321.600000px;}
.y75{bottom:321.870000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y9c{bottom:337.170000px;}
.y41{bottom:341.130000px;}
.y74{bottom:341.310000px;}
.y10{bottom:348.133500px;}
.y9b{bottom:353.640000px;}
.y40{bottom:360.570000px;}
.y73{bottom:360.840000px;}
.y3f{bottom:380.100000px;}
.y72{bottom:380.370000px;}
.y9a{bottom:386.670000px;}
.yf{bottom:386.785499px;}
.y3e{bottom:399.630000px;}
.y71{bottom:399.810000px;}
.y99{bottom:403.140000px;}
.ye{bottom:408.044999px;}
.y3d{bottom:419.070000px;}
.y70{bottom:419.340000px;}
.y98{bottom:419.700000px;}
.y97{bottom:436.170000px;}
.y3c{bottom:438.600000px;}
.y6f{bottom:438.870000px;}
.y96{bottom:452.670000px;}
.y3b{bottom:458.130000px;}
.y6e{bottom:458.310000px;}
.y95{bottom:469.230000px;}
.y3a{bottom:477.570000px;}
.y6d{bottom:477.840000px;}
.y94{bottom:485.700000px;}
.y39{bottom:497.100000px;}
.y6c{bottom:497.370000px;}
.y93{bottom:502.170000px;}
.yd{bottom:502.864502px;}
.y38{bottom:516.630000px;}
.y6b{bottom:516.810000px;}
.y92{bottom:518.730000px;}
.yc{bottom:520.864502px;}
.y91{bottom:535.200000px;}
.y37{bottom:536.070000px;}
.y6a{bottom:536.340000px;}
.yb{bottom:538.864499px;}
.y36{bottom:555.600000px;}
.y69{bottom:555.870000px;}
.ya{bottom:556.864499px;}
.y90{bottom:568.230000px;}
.y35{bottom:575.130000px;}
.y68{bottom:575.310000px;}
.y8f{bottom:584.700000px;}
.y34{bottom:594.570000px;}
.y67{bottom:594.840000px;}
.y8e{bottom:601.170000px;}
.y33{bottom:614.100000px;}
.y66{bottom:614.370000px;}
.y8d{bottom:617.730000px;}
.y9{bottom:626.610001px;}
.y32{bottom:633.660000px;}
.y65{bottom:633.840000px;}
.y8c{bottom:634.200000px;}
.y8{bottom:645.510000px;}
.y31{bottom:653.100000px;}
.y64{bottom:653.370000px;}
.y7{bottom:666.771000px;}
.y8b{bottom:667.230000px;}
.y30{bottom:672.630000px;}
.y80{bottom:672.900000px;}
.y8a{bottom:683.700000px;}
.y2f{bottom:692.160000px;}
.y63{bottom:692.340000px;}
.y2e{bottom:711.600000px;}
.y7f{bottom:711.870000px;}
.y89{bottom:716.370000px;}
.y6{bottom:726.298500px;}
.y2d{bottom:731.130000px;}
.y7e{bottom:731.400000px;}
.y88{bottom:733.110000px;}
.y87{bottom:746.880000px;}
.y2c{bottom:750.660000px;}
.y62{bottom:750.840000px;}
.y3{bottom:752.599495px;}
.y61{bottom:770.370000px;}
.y60{bottom:789.900000px;}
.y2b{bottom:790.350000px;}
.y5f{bottom:809.340000px;}
.y2a{bottom:809.880000px;}
.y5e{bottom:828.870000px;}
.y29{bottom:837.240000px;}
.y5d{bottom:848.400000px;}
.y5c{bottom:867.840000px;}
.y2{bottom:879.369000px;}
.y5b{bottom:887.370000px;}
.y27{bottom:891.690000px;}
.y5a{bottom:906.900000px;}
.y25{bottom:912.030000px;}
.y59{bottom:926.340000px;}
.y58{bottom:945.870000px;}
.y57{bottom:965.400000px;}
.y1{bottom:966.726000px;}
.y56{bottom:984.840000px;}
.y55{bottom:1004.370000px;}
.y54{bottom:1023.900000px;}
.y53{bottom:1043.340000px;}
.y52{bottom:1062.900000px;}
.y51{bottom:1082.430000px;}
.y50{bottom:1101.870000px;}
.y4f{bottom:1121.400000px;}
.y4e{bottom:1140.930000px;}
.y23{bottom:1203.390000px;}
.h13{height:16.470000px;}
.hc{height:19.530000px;}
.h7{height:32.130000px;}
.h12{height:32.400000px;}
.h17{height:34.020003px;}
.h19{height:34.473600px;}
.h16{height:35.212320px;}
.h11{height:37.800000px;}
.h14{height:40.027680px;}
.h9{height:40.219200px;}
.h6{height:45.900000px;}
.h10{height:47.551680px;}
.ha{height:47.779200px;}
.h3{height:48.195000px;}
.hf{height:48.746160px;}
.h2{height:55.080000px;}
.hd{height:59.235840px;}
.h5{height:78.030000px;}
.he{height:102.737160px;}
.h15{height:108.450000px;}
.h4{height:119.055004px;}
.hb{height:244.470000px;}
.h18{height:765.510000px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:1.530000px;}
.w7{width:19.740000px;}
.w6{width:25.470000px;}
.w8{width:109.620000px;}
.wa{width:173.280000px;}
.wc{width:178.680000px;}
.wb{width:578.400000px;}
.w5{width:599.760000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w4{width:892.979987px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x6{left:-63.720013px;}
.x0{left:0.000000px;}
.x8{left:10.710000px;}
.x16{left:49.680000px;}
.x15{left:51.030000px;}
.x7{left:65.880000px;}
.xc{left:67.770000px;}
.x5{left:76.589987px;}
.xd{left:93.599987px;}
.x10{left:97.829987px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x9{left:121.800000px;}
.x4{left:203.484001px;}
.xa{left:231.420000px;}
.xb{left:232.950000px;}
.x11{left:238.169987px;}
.x12{left:255.179987px;}
.xe{left:374.189987px;}
.xf{left:391.199987px;}
.x3{left:454.959000px;}
.x13{left:535.739987px;}
.x14{left:552.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.890667pt;}
.ls19{letter-spacing:-0.842667pt;}
.ls20{letter-spacing:-0.482133pt;}
.ls18{letter-spacing:-0.261867pt;}
.ls15{letter-spacing:-0.252800pt;}
.ls21{letter-spacing:-0.144000pt;}
.lsa{letter-spacing:-0.102933pt;}
.ls9{letter-spacing:-0.084267pt;}
.lsb{letter-spacing:-0.061867pt;}
.ls8{letter-spacing:-0.050880pt;}
.ls22{letter-spacing:-0.027520pt;}
.ls7{letter-spacing:-0.023680pt;}
.ls1b{letter-spacing:-0.018560pt;}
.ls23{letter-spacing:-0.013760pt;}
.ls1a{letter-spacing:-0.003840pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.017280pt;}
.ls10{letter-spacing:0.040000pt;}
.lsd{letter-spacing:0.058133pt;}
.ls5{letter-spacing:0.058240pt;}
.ls16{letter-spacing:0.058667pt;}
.ls14{letter-spacing:0.066133pt;}
.lsc{letter-spacing:0.067200pt;}
.lsf{letter-spacing:0.080000pt;}
.ls1f{letter-spacing:0.108160pt;}
.ls2{letter-spacing:0.113067pt;}
.ls3{letter-spacing:0.116267pt;}
.ls1{letter-spacing:0.117333pt;}
.ls1d{letter-spacing:0.122133pt;}
.ls4{letter-spacing:0.138133pt;}
.ls11{letter-spacing:0.154667pt;}
.ls6{letter-spacing:0.157867pt;}
.ls1e{letter-spacing:0.160533pt;}
.ls1c{letter-spacing:0.436267pt;}
.ls13{letter-spacing:0.458133pt;}
.ls17{letter-spacing:2261.480000pt;}
.ws3{word-spacing:-16.650240pt;}
.wsd{word-spacing:-14.159893pt;}
.ws13{word-spacing:-14.138027pt;}
.ws8{word-spacing:-13.859627pt;}
.wsb{word-spacing:-13.856427pt;}
.ws4{word-spacing:-13.839893pt;}
.ws2{word-spacing:-13.818027pt;}
.wse{word-spacing:-13.768960pt;}
.wsf{word-spacing:-13.767893pt;}
.ws11{word-spacing:-13.760427pt;}
.ws9{word-spacing:-13.719040pt;}
.ws7{word-spacing:-13.701760pt;}
.ws12{word-spacing:-13.697920pt;}
.ws14{word-spacing:-13.683200pt;}
.ws1{word-spacing:-13.678080pt;}
.ws6{word-spacing:-13.639893pt;}
.ws5{word-spacing:-13.598827pt;}
.ws15{word-spacing:-13.557760pt;}
.ws10{word-spacing:-13.448960pt;}
.wsc{word-spacing:-12.811093pt;}
.ws19{word-spacing:-11.694293pt;}
.ws16{word-spacing:-11.655893pt;}
.ws17{word-spacing:-11.533760pt;}
.ws18{word-spacing:-11.506240pt;}
.wsa{word-spacing:-10.920000pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-1.719040pt;}
._0{width:0.906987pt;}
._2{width:2228.840000pt;}
._3{width:3020.858240pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:37.440000pt;}
.fs9{font-size:40.000000pt;}
.fs5{font-size:42.560000pt;}
.fs6{font-size:50.560000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:106.560000pt;}
.y0{bottom:0.000000pt;}
.y85{bottom:2.240000pt;}
.y82{bottom:2.880000pt;}
.y28{bottom:3.440000pt;}
.y83{bottom:30.240000pt;}
.yab{bottom:35.706667pt;}
.y4d{bottom:48.800000pt;}
.y24{bottom:50.320000pt;}
.yaa{bottom:50.346667pt;}
.y5{bottom:59.133337pt;}
.ya9{bottom:79.706667pt;}
.y84{bottom:81.280000pt;}
.y4{bottom:86.333337pt;}
.ya8{bottom:94.346667pt;}
.y4c{bottom:100.400000pt;}
.ya7{bottom:109.066667pt;}
.y4b{bottom:112.400000pt;}
.y22{bottom:123.790666pt;}
.y81{bottom:126.640000pt;}
.ya6{bottom:138.346667pt;}
.y4a{bottom:147.200000pt;}
.y7d{bottom:147.360000pt;}
.ya5{bottom:153.066667pt;}
.y49{bottom:164.480000pt;}
.y7c{bottom:164.720000pt;}
.ya4{bottom:167.706667pt;}
.y86{bottom:168.800000pt;}
.y19{bottom:175.052000pt;}
.y48{bottom:181.840000pt;}
.y7b{bottom:182.080000pt;}
.ya3{bottom:182.346667pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.ya2{bottom:197.066667pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y47{bottom:199.226667pt;}
.y7a{bottom:199.386667pt;}
.y26{bottom:203.386667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.ya1{bottom:211.706667pt;}
.y46{bottom:216.506667pt;}
.y79{bottom:216.746667pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y45{bottom:233.866667pt;}
.y78{bottom:234.106667pt;}
.ya0{bottom:241.066667pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y44{bottom:251.226667pt;}
.y77{bottom:251.386667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y9f{bottom:255.706667pt;}
.y43{bottom:268.506667pt;}
.y76{bottom:268.746667pt;}
.y9e{bottom:270.346667pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y9d{bottom:285.066667pt;}
.y42{bottom:285.866667pt;}
.y75{bottom:286.106667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y9c{bottom:299.706667pt;}
.y41{bottom:303.226667pt;}
.y74{bottom:303.386667pt;}
.y10{bottom:309.452000pt;}
.y9b{bottom:314.346667pt;}
.y40{bottom:320.506667pt;}
.y73{bottom:320.746667pt;}
.y3f{bottom:337.866667pt;}
.y72{bottom:338.106667pt;}
.y9a{bottom:343.706667pt;}
.yf{bottom:343.809333pt;}
.y3e{bottom:355.226667pt;}
.y71{bottom:355.386667pt;}
.y99{bottom:358.346667pt;}
.ye{bottom:362.706666pt;}
.y3d{bottom:372.506667pt;}
.y70{bottom:372.746667pt;}
.y98{bottom:373.066667pt;}
.y97{bottom:387.706667pt;}
.y3c{bottom:389.866667pt;}
.y6f{bottom:390.106667pt;}
.y96{bottom:402.373333pt;}
.y3b{bottom:407.226667pt;}
.y6e{bottom:407.386667pt;}
.y95{bottom:417.093333pt;}
.y3a{bottom:424.506667pt;}
.y6d{bottom:424.746667pt;}
.y94{bottom:431.733333pt;}
.y39{bottom:441.866667pt;}
.y6c{bottom:442.106667pt;}
.y93{bottom:446.373333pt;}
.yd{bottom:446.990669pt;}
.y38{bottom:459.226667pt;}
.y6b{bottom:459.386667pt;}
.y92{bottom:461.093333pt;}
.yc{bottom:462.990669pt;}
.y91{bottom:475.733333pt;}
.y37{bottom:476.506667pt;}
.y6a{bottom:476.746667pt;}
.yb{bottom:478.990666pt;}
.y36{bottom:493.866667pt;}
.y69{bottom:494.106667pt;}
.ya{bottom:494.990666pt;}
.y90{bottom:505.093333pt;}
.y35{bottom:511.226667pt;}
.y68{bottom:511.386667pt;}
.y8f{bottom:519.733333pt;}
.y34{bottom:528.506667pt;}
.y67{bottom:528.746667pt;}
.y8e{bottom:534.373333pt;}
.y33{bottom:545.866667pt;}
.y66{bottom:546.106667pt;}
.y8d{bottom:549.093333pt;}
.y9{bottom:556.986668pt;}
.y32{bottom:563.253333pt;}
.y65{bottom:563.413333pt;}
.y8c{bottom:563.733333pt;}
.y8{bottom:573.786667pt;}
.y31{bottom:580.533333pt;}
.y64{bottom:580.773333pt;}
.y7{bottom:592.685334pt;}
.y8b{bottom:593.093333pt;}
.y30{bottom:597.893333pt;}
.y80{bottom:598.133333pt;}
.y8a{bottom:607.733333pt;}
.y2f{bottom:615.253333pt;}
.y63{bottom:615.413333pt;}
.y2e{bottom:632.533333pt;}
.y7f{bottom:632.773333pt;}
.y89{bottom:636.773333pt;}
.y6{bottom:645.598667pt;}
.y2d{bottom:649.893333pt;}
.y7e{bottom:650.133333pt;}
.y88{bottom:651.653333pt;}
.y87{bottom:663.893333pt;}
.y2c{bottom:667.253333pt;}
.y62{bottom:667.413333pt;}
.y3{bottom:668.977329pt;}
.y61{bottom:684.773333pt;}
.y60{bottom:702.133333pt;}
.y2b{bottom:702.533333pt;}
.y5f{bottom:719.413333pt;}
.y2a{bottom:719.893333pt;}
.y5e{bottom:736.773333pt;}
.y29{bottom:744.213333pt;}
.y5d{bottom:754.133333pt;}
.y5c{bottom:771.413333pt;}
.y2{bottom:781.661334pt;}
.y5b{bottom:788.773333pt;}
.y27{bottom:792.613333pt;}
.y5a{bottom:806.133333pt;}
.y25{bottom:810.693333pt;}
.y59{bottom:823.413333pt;}
.y58{bottom:840.773333pt;}
.y57{bottom:858.133333pt;}
.y1{bottom:859.312000pt;}
.y56{bottom:875.413333pt;}
.y55{bottom:892.773333pt;}
.y54{bottom:910.133333pt;}
.y53{bottom:927.413333pt;}
.y52{bottom:944.800000pt;}
.y51{bottom:962.160000pt;}
.y50{bottom:979.440000pt;}
.y4f{bottom:996.800000pt;}
.y4e{bottom:1014.160000pt;}
.y23{bottom:1069.680000pt;}
.h13{height:14.640000pt;}
.hc{height:17.360000pt;}
.h7{height:28.560000pt;}
.h12{height:28.800000pt;}
.h17{height:30.240003pt;}
.h19{height:30.643200pt;}
.h16{height:31.299840pt;}
.h11{height:33.600000pt;}
.h14{height:35.580160pt;}
.h9{height:35.750400pt;}
.h6{height:40.800000pt;}
.h10{height:42.268160pt;}
.ha{height:42.470400pt;}
.h3{height:42.840000pt;}
.hf{height:43.329920pt;}
.h2{height:48.960000pt;}
.hd{height:52.654080pt;}
.h5{height:69.360000pt;}
.he{height:91.321920pt;}
.h15{height:96.400000pt;}
.h4{height:105.826671pt;}
.hb{height:217.306667pt;}
.h18{height:680.453333pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:1.360000pt;}
.w7{width:17.546667pt;}
.w6{width:22.640000pt;}
.w8{width:97.440000pt;}
.wa{width:154.026667pt;}
.wc{width:158.826667pt;}
.wb{width:514.133333pt;}
.w5{width:533.120000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w4{width:793.759988pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x6{left:-56.640012pt;}
.x0{left:0.000000pt;}
.x8{left:9.520000pt;}
.x16{left:44.160000pt;}
.x15{left:45.360000pt;}
.x7{left:58.560000pt;}
.xc{left:60.240000pt;}
.x5{left:68.079988pt;}
.xd{left:83.199988pt;}
.x10{left:86.959988pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x9{left:108.266667pt;}
.x4{left:180.874667pt;}
.xa{left:205.706667pt;}
.xb{left:207.066667pt;}
.x11{left:211.706655pt;}
.x12{left:226.826655pt;}
.xe{left:332.613322pt;}
.xf{left:347.733322pt;}
.x3{left:404.408000pt;}
.x13{left:476.213322pt;}
.x14{left:491.333322pt;}
}




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