
    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_6c7dc93327921d296a868cff.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9f2dd154b42f0bab7f442629.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123047;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_dae34e0f17aa1094fe3864fa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_7f315e4f8a7470f9fceb3c4a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_1c4dfc0ab37e0209745ec187.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_497451dad50e67b96647b259.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_f618b4802d0bb0d7e3721145.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_8e9804ff3129a867288a3845.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_0f2502fbd9b0ba6c3e462434.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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_bbf895394962e7f449b605dd.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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);}
.v2{vertical-align:-6.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls12{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.220200px;}
.ls13{letter-spacing:-0.180000px;}
.ls10{letter-spacing:-0.108000px;}
.ls11{letter-spacing:-0.018000px;}
.lsa{letter-spacing:-0.009360px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.013320px;}
.ls1{letter-spacing:0.018000px;}
.ls3{letter-spacing:0.090000px;}
.ls2{letter-spacing:0.108000px;}
.lsc{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.140040px;}
.lse{letter-spacing:0.153600px;}
.ls5{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.540000px;}
.lsb{letter-spacing:24.228000px;}
.lsd{letter-spacing:25.668000px;}
.ls6{letter-spacing:47.366640px;}
.ls4{letter-spacing:70.406640px;}
.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;}
}
.ws5{word-spacing:-15.210000px;}
.ws6{word-spacing:-15.183600px;}
.ws4{word-spacing:-15.030000px;}
.ws2{word-spacing:-13.608000px;}
.ws0{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.482000px;}
.ws7{word-spacing:-13.392000px;}
.ws9{word-spacing:-12.780000px;}
.ws3{word-spacing:0.000000px;}
._3{margin-left:-3.939840px;}
._2{margin-left:-2.808000px;}
._1{margin-left:-1.082160px;}
._0{width:1.119960px;}
._4{width:2.336040px;}
._5{width:3.747960px;}
._6{width:4.768560px;}
._a{width:6.372720px;}
._d{width:7.394760px;}
._8{width:8.897760px;}
._7{width:10.160280px;}
._c{width:412.278000px;}
._9{width:423.660000px;}
._b{width:508.620000px;}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:29.880000px;}
.fs5{font-size:42.120000px;}
.fs3{font-size:47.880000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000092px;}
.y6a{bottom:4.680000px;}
.y68{bottom:4.770000px;}
.y3{bottom:73.349908px;}
.y2c{bottom:98.369908px;}
.y64{bottom:103.319908px;}
.y8e{bottom:117.629908px;}
.y2b{bottom:118.169908px;}
.y63{bottom:123.119908px;}
.y53{bottom:123.659908px;}
.yb8{bottom:129.509908px;}
.y8d{bottom:137.519908px;}
.y2a{bottom:137.969908px;}
.y62{bottom:142.919908px;}
.yb7{bottom:147.419908px;}
.y52{bottom:152.549908px;}
.y8c{bottom:157.319908px;}
.y29{bottom:157.859908px;}
.y61{bottom:162.809908px;}
.yb6{bottom:165.239908px;}
.y8b{bottom:177.119908px;}
.y28{bottom:177.659908px;}
.y60{bottom:182.609908px;}
.yb5{bottom:187.559908px;}
.y51{bottom:190.349908px;}
.y8a{bottom:197.009908px;}
.y27{bottom:197.549908px;}
.y5f{bottom:202.499908px;}
.yb4{bottom:205.469908px;}
.y50{bottom:210.149908px;}
.y89{bottom:216.809908px;}
.y26{bottom:217.349908px;}
.yb3{bottom:227.789908px;}
.y4f{bottom:230.039908px;}
.y88{bottom:236.699908px;}
.y25{bottom:237.149908px;}
.y5e{bottom:239.219908px;}
.yb2{bottom:245.699908px;}
.y87{bottom:256.499908px;}
.y24{bottom:257.039908px;}
.y4e{bottom:258.839908px;}
.y5d{bottom:261.989908px;}
.yb1{bottom:263.519908px;}
.y86{bottom:276.299908px;}
.y23{bottom:276.839908px;}
.y4d{bottom:278.729908px;}
.yb0{bottom:285.839908px;}
.y85{bottom:296.189908px;}
.y22{bottom:296.729908px;}
.y4c{bottom:298.529908px;}
.yaf{bottom:303.749908px;}
.y84{bottom:315.989908px;}
.y21{bottom:316.529908px;}
.y4b{bottom:318.329908px;}
.yae{bottom:326.069908px;}
.y83{bottom:335.909908px;}
.y20{bottom:336.359908px;}
.yad{bottom:343.919908px;}
.y4a{bottom:347.249908px;}
.y82{bottom:355.709908px;}
.y1f{bottom:356.249908px;}
.yac{bottom:366.329908px;}
.y49{bottom:367.049908px;}
.y81{bottom:375.509908px;}
.y1e{bottom:376.049908px;}
.yab{bottom:384.149908px;}
.y48{bottom:386.939908px;}
.y80{bottom:395.399908px;}
.y1d{bottom:395.939908px;}
.yaa{bottom:406.469908px;}
.y47{bottom:406.739908px;}
.y7f{bottom:415.199908px;}
.y1c{bottom:415.829908px;}
.ya9{bottom:424.379908px;}
.y46{bottom:426.539908px;}
.y7e{bottom:435.089908px;}
.y1b{bottom:435.629908px;}
.y45{bottom:446.429908px;}
.ya8{bottom:446.699908px;}
.y7d{bottom:454.889908px;}
.y1a{bottom:455.519908px;}
.ya7{bottom:464.519908px;}
.y44{bottom:466.229908px;}
.y7c{bottom:474.689908px;}
.ya6{bottom:482.429908px;}
.y19{bottom:484.319908px;}
.y43{bottom:486.119908px;}
.y7b{bottom:494.579908px;}
.ya5{bottom:500.249908px;}
.y42{bottom:505.919908px;}
.y7a{bottom:514.379908px;}
.ya4{bottom:520.319908px;}
.y18{bottom:521.579908px;}
.y41{bottom:525.719908px;}
.y79{bottom:534.269908px;}
.ya3{bottom:535.799908px;}
.y17{bottom:539.489908px;}
.y5c{bottom:544.529908px;}
.y40{bottom:545.609908px;}
.ya2{bottom:551.369908px;}
.y78{bottom:554.069908px;}
.y5b{bottom:564.419908px;}
.y3f{bottom:565.409908px;}
.y16{bottom:566.309908px;}
.ya1{bottom:566.849908px;}
.y77{bottom:573.869908px;}
.y15{bottom:584.129908px;}
.y5a{bottom:584.219908px;}
.y3e{bottom:585.299908px;}
.ya0{bottom:589.799908px;}
.y76{bottom:593.759908px;}
.y14{bottom:602.039908px;}
.y59{bottom:604.019908px;}
.y3d{bottom:605.099908px;}
.y75{bottom:613.559908px;}
.y9f{bottom:618.599908px;}
.y13{bottom:619.859908px;}
.y58{bottom:623.909908px;}
.y3c{bottom:624.899908px;}
.y74{bottom:633.479908px;}
.y12{bottom:637.709908px;}
.y9e{bottom:638.429908px;}
.y57{bottom:643.739908px;}
.y3b{bottom:644.819908px;}
.y73{bottom:653.279908px;}
.y11{bottom:655.619908px;}
.y9d{bottom:658.319908px;}
.y56{bottom:663.539908px;}
.y3a{bottom:664.619908px;}
.y72{bottom:673.079908px;}
.y10{bottom:673.439908px;}
.y9c{bottom:678.119908px;}
.y39{bottom:684.509908px;}
.yf{bottom:691.349908px;}
.y71{bottom:692.969908px;}
.y9b{bottom:698.009908px;}
.y55{bottom:700.349908px;}
.y38{bottom:704.309908px;}
.ye{bottom:709.169908px;}
.y70{bottom:712.769908px;}
.y9a{bottom:717.809908px;}
.y54{bottom:722.579908px;}
.yd{bottom:726.989908px;}
.y37{bottom:733.109908px;}
.y6f{bottom:741.659908px;}
.yc3{bottom:743.819908px;}
.yc{bottom:744.899908px;}
.y99{bottom:746.609908px;}
.y36{bottom:752.999908px;}
.yc2{bottom:763.439908px;}
.y35{bottom:772.799908px;}
.y6e{bottom:774.420000px;}
.yb{bottom:781.259908px;}
.y98{bottom:784.499908px;}
.y6d{bottom:791.070000px;}
.y34{bottom:792.689908px;}
.ya{bottom:801.059908px;}
.yc1{bottom:803.579908px;}
.y97{bottom:804.299908px;}
.y6c{bottom:807.630000px;}
.y33{bottom:812.489908px;}
.y9{bottom:820.949908px;}
.yc0{bottom:821.489908px;}
.y96{bottom:824.189908px;}
.y6b{bottom:824.280000px;}
.ybf{bottom:839.309908px;}
.y8{bottom:840.749908px;}
.y69{bottom:840.930000px;}
.y32{bottom:841.289908px;}
.y95{bottom:843.989908px;}
.y67{bottom:857.490000px;}
.ybe{bottom:861.719908px;}
.y94{bottom:863.789908px;}
.y31{bottom:879.179908px;}
.y7{bottom:879.269908px;}
.ybd{bottom:879.539908px;}
.y93{bottom:883.679908px;}
.y66{bottom:887.819908px;}
.y30{bottom:898.979908px;}
.ybc{bottom:901.859908px;}
.y92{bottom:903.479908px;}
.y65{bottom:903.749908px;}
.y2f{bottom:918.869908px;}
.y6{bottom:919.049908px;}
.ybb{bottom:919.769908px;}
.y91{bottom:923.369908px;}
.y2e{bottom:938.699908px;}
.y5{bottom:940.949908px;}
.yba{bottom:942.119908px;}
.y90{bottom:943.199908px;}
.y2d{bottom:958.499908px;}
.yb9{bottom:959.939908px;}
.y4{bottom:962.729908px;}
.y8f{bottom:962.999908px;}
.y2{bottom:999.539908px;}
.he{height:15.840000px;}
.hd{height:15.930000px;}
.h12{height:41.338477px;}
.hf{height:46.991602px;}
.hc{height:48.254063px;}
.h11{height:52.971680px;}
.h8{height:52.998047px;}
.hb{height:53.896641px;}
.h7{height:54.421875px;}
.h10{height:56.320312px;}
.h5{height:58.975137px;}
.h6{height:59.004492px;}
.h9{height:60.589687px;}
.ha{height:62.703281px;}
.h3{height:65.526152px;}
.h4{height:66.394687px;}
.h2{height:1063.169908px;}
.h0{height:1063.170000px;}
.h1{height:1063.500000px;}
.w3{width:148.980000px;}
.w4{width:172.260000px;}
.w1{width:744.000000px;}
.w2{width:744.209989px;}
.w0{width:744.210000px;}
.x0{left:0.000000px;}
.x17{left:8.100000px;}
.x18{left:13.050000px;}
.x15{left:49.410000px;}
.x1c{left:55.800000px;}
.x19{left:58.860000px;}
.x1b{left:61.830000px;}
.x1a{left:63.360000px;}
.x2{left:76.589989px;}
.x3{left:81.089989px;}
.xe{left:82.889989px;}
.x10{left:86.309989px;}
.x12{left:99.629989px;}
.x1{left:101.249989px;}
.xa{left:108.299989px;}
.xc{left:110.639989px;}
.x4{left:114.599989px;}
.x1d{left:129.809989px;}
.xd{left:137.639989px;}
.x7{left:139.079989px;}
.x6{left:142.769989px;}
.x9{left:172.829989px;}
.x14{left:211.530000px;}
.x11{left:266.789989px;}
.x13{left:290.999989px;}
.x8{left:300.719989px;}
.x5{left:323.159989px;}
.xb{left:335.399989px;}
.x16{left:360.510000px;}
.xf{left:606.239989px;}
@media print{
.v2{vertical-align:-5.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls12{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.195733pt;}
.ls13{letter-spacing:-0.160000pt;}
.ls10{letter-spacing:-0.096000pt;}
.ls11{letter-spacing:-0.016000pt;}
.lsa{letter-spacing:-0.008320pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.011840pt;}
.ls1{letter-spacing:0.016000pt;}
.ls3{letter-spacing:0.080000pt;}
.ls2{letter-spacing:0.096000pt;}
.lsc{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.124480pt;}
.lse{letter-spacing:0.136533pt;}
.ls5{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.480000pt;}
.lsb{letter-spacing:21.536000pt;}
.lsd{letter-spacing:22.816000pt;}
.ls6{letter-spacing:42.103680pt;}
.ls4{letter-spacing:62.583680pt;}
.ws5{word-spacing:-13.520000pt;}
.ws6{word-spacing:-13.496533pt;}
.ws4{word-spacing:-13.360000pt;}
.ws2{word-spacing:-12.096000pt;}
.ws0{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.984000pt;}
.ws7{word-spacing:-11.904000pt;}
.ws9{word-spacing:-11.360000pt;}
.ws3{word-spacing:0.000000pt;}
._3{margin-left:-3.502080pt;}
._2{margin-left:-2.496000pt;}
._1{margin-left:-0.961920pt;}
._0{width:0.995520pt;}
._4{width:2.076480pt;}
._5{width:3.331520pt;}
._6{width:4.238720pt;}
._a{width:5.664640pt;}
._d{width:6.573120pt;}
._8{width:7.909120pt;}
._7{width:9.031360pt;}
._c{width:366.469333pt;}
._9{width:376.586667pt;}
._b{width:452.106667pt;}
.fs4{font-size:26.560000pt;}
.fs5{font-size:37.440000pt;}
.fs3{font-size:42.560000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000081pt;}
.y6a{bottom:4.160000pt;}
.y68{bottom:4.240000pt;}
.y3{bottom:65.199919pt;}
.y2c{bottom:87.439919pt;}
.y64{bottom:91.839919pt;}
.y8e{bottom:104.559919pt;}
.y2b{bottom:105.039919pt;}
.y63{bottom:109.439919pt;}
.y53{bottom:109.919919pt;}
.yb8{bottom:115.119919pt;}
.y8d{bottom:122.239919pt;}
.y2a{bottom:122.639919pt;}
.y62{bottom:127.039919pt;}
.yb7{bottom:131.039919pt;}
.y52{bottom:135.599919pt;}
.y8c{bottom:139.839919pt;}
.y29{bottom:140.319919pt;}
.y61{bottom:144.719919pt;}
.yb6{bottom:146.879919pt;}
.y8b{bottom:157.439919pt;}
.y28{bottom:157.919919pt;}
.y60{bottom:162.319919pt;}
.yb5{bottom:166.719919pt;}
.y51{bottom:169.199919pt;}
.y8a{bottom:175.119919pt;}
.y27{bottom:175.599919pt;}
.y5f{bottom:179.999919pt;}
.yb4{bottom:182.639919pt;}
.y50{bottom:186.799919pt;}
.y89{bottom:192.719919pt;}
.y26{bottom:193.199919pt;}
.yb3{bottom:202.479919pt;}
.y4f{bottom:204.479919pt;}
.y88{bottom:210.399919pt;}
.y25{bottom:210.799919pt;}
.y5e{bottom:212.639919pt;}
.yb2{bottom:218.399919pt;}
.y87{bottom:227.999919pt;}
.y24{bottom:228.479919pt;}
.y4e{bottom:230.079919pt;}
.y5d{bottom:232.879919pt;}
.yb1{bottom:234.239919pt;}
.y86{bottom:245.599919pt;}
.y23{bottom:246.079919pt;}
.y4d{bottom:247.759919pt;}
.yb0{bottom:254.079919pt;}
.y85{bottom:263.279919pt;}
.y22{bottom:263.759919pt;}
.y4c{bottom:265.359919pt;}
.yaf{bottom:269.999919pt;}
.y84{bottom:280.879919pt;}
.y21{bottom:281.359919pt;}
.y4b{bottom:282.959919pt;}
.yae{bottom:289.839919pt;}
.y83{bottom:298.586585pt;}
.y20{bottom:298.986585pt;}
.yad{bottom:305.706585pt;}
.y4a{bottom:308.666585pt;}
.y82{bottom:316.186585pt;}
.y1f{bottom:316.666585pt;}
.yac{bottom:325.626585pt;}
.y49{bottom:326.266585pt;}
.y81{bottom:333.786585pt;}
.y1e{bottom:334.266585pt;}
.yab{bottom:341.466585pt;}
.y48{bottom:343.946585pt;}
.y80{bottom:351.466585pt;}
.y1d{bottom:351.946585pt;}
.yaa{bottom:361.306585pt;}
.y47{bottom:361.546585pt;}
.y7f{bottom:369.066585pt;}
.y1c{bottom:369.626585pt;}
.ya9{bottom:377.226585pt;}
.y46{bottom:379.146585pt;}
.y7e{bottom:386.746585pt;}
.y1b{bottom:387.226585pt;}
.y45{bottom:396.826585pt;}
.ya8{bottom:397.066585pt;}
.y7d{bottom:404.346585pt;}
.y1a{bottom:404.906585pt;}
.ya7{bottom:412.906585pt;}
.y44{bottom:414.426585pt;}
.y7c{bottom:421.946585pt;}
.ya6{bottom:428.826585pt;}
.y19{bottom:430.506585pt;}
.y43{bottom:432.106585pt;}
.y7b{bottom:439.626585pt;}
.ya5{bottom:444.666585pt;}
.y42{bottom:449.706585pt;}
.y7a{bottom:457.226585pt;}
.ya4{bottom:462.506585pt;}
.y18{bottom:463.626585pt;}
.y41{bottom:467.306585pt;}
.y79{bottom:474.906585pt;}
.ya3{bottom:476.266585pt;}
.y17{bottom:479.546585pt;}
.y5c{bottom:484.026585pt;}
.y40{bottom:484.986585pt;}
.ya2{bottom:490.106585pt;}
.y78{bottom:492.506585pt;}
.y5b{bottom:501.706585pt;}
.y3f{bottom:502.586585pt;}
.y16{bottom:503.386585pt;}
.ya1{bottom:503.866585pt;}
.y77{bottom:510.106585pt;}
.y15{bottom:519.226585pt;}
.y5a{bottom:519.306585pt;}
.y3e{bottom:520.266585pt;}
.ya0{bottom:524.266585pt;}
.y76{bottom:527.786585pt;}
.y14{bottom:535.146585pt;}
.y59{bottom:536.906585pt;}
.y3d{bottom:537.866585pt;}
.y75{bottom:545.386585pt;}
.y9f{bottom:549.866585pt;}
.y13{bottom:550.986585pt;}
.y58{bottom:554.586585pt;}
.y3c{bottom:555.466585pt;}
.y74{bottom:563.093252pt;}
.y12{bottom:566.853252pt;}
.y9e{bottom:567.493252pt;}
.y57{bottom:572.213252pt;}
.y3b{bottom:573.173252pt;}
.y73{bottom:580.693252pt;}
.y11{bottom:582.773252pt;}
.y9d{bottom:585.173252pt;}
.y56{bottom:589.813252pt;}
.y3a{bottom:590.773252pt;}
.y72{bottom:598.293252pt;}
.y10{bottom:598.613252pt;}
.y9c{bottom:602.773252pt;}
.y39{bottom:608.453252pt;}
.yf{bottom:614.533252pt;}
.y71{bottom:615.973252pt;}
.y9b{bottom:620.453252pt;}
.y55{bottom:622.533252pt;}
.y38{bottom:626.053252pt;}
.ye{bottom:630.373252pt;}
.y70{bottom:633.573252pt;}
.y9a{bottom:638.053252pt;}
.y54{bottom:642.293252pt;}
.yd{bottom:646.213252pt;}
.y37{bottom:651.653252pt;}
.y6f{bottom:659.253252pt;}
.yc3{bottom:661.173252pt;}
.yc{bottom:662.133252pt;}
.y99{bottom:663.653252pt;}
.y36{bottom:669.333252pt;}
.yc2{bottom:678.613252pt;}
.y35{bottom:686.933252pt;}
.y6e{bottom:688.373333pt;}
.yb{bottom:694.453252pt;}
.y98{bottom:697.333252pt;}
.y6d{bottom:703.173333pt;}
.y34{bottom:704.613252pt;}
.ya{bottom:712.053252pt;}
.yc1{bottom:714.293252pt;}
.y97{bottom:714.933252pt;}
.y6c{bottom:717.893333pt;}
.y33{bottom:722.213252pt;}
.y9{bottom:729.733252pt;}
.yc0{bottom:730.213252pt;}
.y96{bottom:732.613252pt;}
.y6b{bottom:732.693333pt;}
.ybf{bottom:746.053252pt;}
.y8{bottom:747.333252pt;}
.y69{bottom:747.493333pt;}
.y32{bottom:747.813252pt;}
.y95{bottom:750.213252pt;}
.y67{bottom:762.213333pt;}
.ybe{bottom:765.973252pt;}
.y94{bottom:767.813252pt;}
.y31{bottom:781.493252pt;}
.y7{bottom:781.573252pt;}
.ybd{bottom:781.813252pt;}
.y93{bottom:785.493252pt;}
.y66{bottom:789.173252pt;}
.y30{bottom:799.093252pt;}
.ybc{bottom:801.653252pt;}
.y92{bottom:803.093252pt;}
.y65{bottom:803.333252pt;}
.y2f{bottom:816.773252pt;}
.y6{bottom:816.933252pt;}
.ybb{bottom:817.573252pt;}
.y91{bottom:820.773252pt;}
.y2e{bottom:834.399919pt;}
.y5{bottom:836.399919pt;}
.yba{bottom:837.439919pt;}
.y90{bottom:838.399919pt;}
.y2d{bottom:851.999919pt;}
.yb9{bottom:853.279919pt;}
.y4{bottom:855.759919pt;}
.y8f{bottom:855.999919pt;}
.y2{bottom:888.479919pt;}
.he{height:14.080000pt;}
.hd{height:14.160000pt;}
.h12{height:36.745312pt;}
.hf{height:41.770312pt;}
.hc{height:42.892500pt;}
.h11{height:47.085938pt;}
.h8{height:47.109375pt;}
.hb{height:47.908125pt;}
.h7{height:48.375000pt;}
.h10{height:50.062500pt;}
.h5{height:52.422344pt;}
.h6{height:52.448437pt;}
.h9{height:53.857500pt;}
.ha{height:55.736250pt;}
.h3{height:58.245469pt;}
.h4{height:59.017500pt;}
.h2{height:945.039919pt;}
.h0{height:945.040000pt;}
.h1{height:945.333333pt;}
.w3{width:132.426667pt;}
.w4{width:153.120000pt;}
.w1{width:661.333333pt;}
.w2{width:661.519990pt;}
.w0{width:661.520000pt;}
.x0{left:0.000000pt;}
.x17{left:7.200000pt;}
.x18{left:11.600000pt;}
.x15{left:43.920000pt;}
.x1c{left:49.600000pt;}
.x19{left:52.320000pt;}
.x1b{left:54.960000pt;}
.x1a{left:56.320000pt;}
.x2{left:68.079990pt;}
.x3{left:72.079990pt;}
.xe{left:73.679990pt;}
.x10{left:76.719990pt;}
.x12{left:88.559990pt;}
.x1{left:89.999990pt;}
.xa{left:96.266657pt;}
.xc{left:98.346657pt;}
.x4{left:101.866657pt;}
.x1d{left:115.386657pt;}
.xd{left:122.346657pt;}
.x7{left:123.626657pt;}
.x6{left:126.906657pt;}
.x9{left:153.626657pt;}
.x14{left:188.026667pt;}
.x11{left:237.146657pt;}
.x13{left:258.666657pt;}
.x8{left:267.306657pt;}
.x5{left:287.253323pt;}
.xb{left:298.133323pt;}
.x16{left:320.453333pt;}
.xf{left:538.879990pt;}
}




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