
    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_5a28cba29da43d5d63507dc8.woff')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_bfb5fa10b92f48aa9a045078.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_24803d6be39feec3d3e1f268.woff')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_acdad122e3f210d5678bda62.woff')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_007515702ca8f02fca279d15.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_c46d2a6e339eb9231018c3cd.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_767cf6418a14a3940fa64317.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_5ee9cfc7cc23c2f355771832.woff')format("woff");}.ff9{font-family:ff9;line-height:0.901855;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);}
.v1{vertical-align:-99.660000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:67.200000px;}
.v3{vertical-align:74.820000px;}
.v4{vertical-align:81.480000px;}
.ls2d{letter-spacing:-1.296000px;}
.ls27{letter-spacing:-1.200000px;}
.ls2c{letter-spacing:-0.828000px;}
.ls2e{letter-spacing:-0.600000px;}
.ls26{letter-spacing:-0.552000px;}
.lsb{letter-spacing:-0.516000px;}
.ls2b{letter-spacing:-0.372000px;}
.ls29{letter-spacing:-0.276000px;}
.ls2a{letter-spacing:-0.096000px;}
.ls3{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.120000px;}
.lsa{letter-spacing:0.150000px;}
.ls25{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.372000px;}
.ls24{letter-spacing:0.480000px;}
.ls19{letter-spacing:0.588000px;}
.ls4{letter-spacing:0.600000px;}
.ls21{letter-spacing:0.618000px;}
.ls5{letter-spacing:0.648000px;}
.ls1{letter-spacing:0.768000px;}
.ls30{letter-spacing:0.780000px;}
.ls2{letter-spacing:0.828000px;}
.ls7{letter-spacing:0.888000px;}
.ls6{letter-spacing:0.948000px;}
.ls20{letter-spacing:1.008000px;}
.ls23{letter-spacing:1.140000px;}
.ls22{letter-spacing:1.170000px;}
.ls11{letter-spacing:1.200000px;}
.ls10{letter-spacing:1.260000px;}
.ls17{letter-spacing:1.380000px;}
.ls1c{letter-spacing:1.788000px;}
.ls28{letter-spacing:1.800000px;}
.ls31{letter-spacing:4.200000px;}
.ls15{letter-spacing:5.400000px;}
.ls13{letter-spacing:7.980000px;}
.ls18{letter-spacing:11.400000px;}
.ls9{letter-spacing:13.200000px;}
.ls8{letter-spacing:16.200000px;}
.ls1b{letter-spacing:18.540000px;}
.ls12{letter-spacing:27.000000px;}
.lsd{letter-spacing:31.800000px;}
.lsf{letter-spacing:34.800000px;}
.ls14{letter-spacing:45.000000px;}
.ls1d{letter-spacing:48.600000px;}
.ls1a{letter-spacing:52.260000px;}
.ls1f{letter-spacing:53.400000px;}
.lsc{letter-spacing:90.600000px;}
.lse{letter-spacing:165.120000px;}
.ls2f{letter-spacing:167.598000px;}
.ls0{letter-spacing:855.330000px;}
.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:-22.200000px;}
.ws6{word-spacing:-21.648000px;}
.ws0{word-spacing:-21.000000px;}
.wsa{word-spacing:-20.904000px;}
.ws9{word-spacing:-20.724000px;}
.wsb{word-spacing:-20.628000px;}
.ws5{word-spacing:-20.448000px;}
.wsc{word-spacing:-20.172000px;}
.ws7{word-spacing:-19.800000px;}
.wsd{word-spacing:-19.704000px;}
.wse{word-spacing:-18.000000px;}
.ws2{word-spacing:-0.084000px;}
.ws1{word-spacing:0.000000px;}
.ws3{word-spacing:293.850000px;}
.ws4{word-spacing:294.420000px;}
._3{margin-left:-5.712000px;}
._4{margin-left:-2.412000px;}
._1{margin-left:-1.008000px;}
._0{width:1.092000px;}
._2{width:2.208000px;}
._16{width:4.116000px;}
._1c{width:5.124000px;}
._2c{width:6.132000px;}
._28{width:7.158000px;}
._8{width:8.448000px;}
._7{width:10.392000px;}
._1e{width:11.700000px;}
._9{width:12.720000px;}
._1f{width:13.914000px;}
._a{width:15.120000px;}
._19{width:17.178000px;}
._18{width:19.104000px;}
._c{width:22.512000px;}
._15{width:23.688000px;}
._17{width:25.482000px;}
._1d{width:26.658000px;}
._b{width:28.224000px;}
._13{width:29.880000px;}
._11{width:31.164000px;}
._12{width:32.592000px;}
._d{width:34.020000px;}
._e{width:35.034000px;}
._23{width:36.162000px;}
._1a{width:37.212000px;}
._1b{width:38.304000px;}
._20{width:39.348000px;}
._5{width:40.488000px;}
._24{width:41.916000px;}
._25{width:43.008000px;}
._22{width:44.184000px;}
._21{width:45.252000px;}
._3b{width:47.652000px;}
._3a{width:49.662000px;}
._39{width:51.042000px;}
._35{width:52.080000px;}
._38{width:53.166000px;}
._f{width:61.068000px;}
._10{width:62.640000px;}
._3c{width:64.626000px;}
._6{width:69.384000px;}
._40{width:72.048000px;}
._41{width:73.164000px;}
._42{width:74.844000px;}
._14{width:79.944000px;}
._29{width:90.468000px;}
._3d{width:93.882000px;}
._3f{width:95.088000px;}
._3e{width:96.816000px;}
._2a{width:120.936000px;}
._32{width:123.264000px;}
._30{width:132.276000px;}
._2f{width:133.392000px;}
._2e{width:139.332000px;}
._37{width:152.628000px;}
._36{width:154.140000px;}
._2d{width:156.324000px;}
._34{width:164.112000px;}
._31{width:257.124000px;}
._26{width:276.600000px;}
._27{width:303.900000px;}
._2b{width:314.640000px;}
._33{width:362.880000px;}
._43{width:843.330000px;}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:4.785000px;}
.y57{bottom:5.070000px;}
.y53{bottom:5.370000px;}
.y61{bottom:5.385000px;}
.y5d{bottom:5.430000px;}
.y59{bottom:17.070000px;}
.y51{bottom:17.370000px;}
.y5f{bottom:17.385000px;}
.y4a{bottom:17.625000px;}
.y55{bottom:29.370000px;}
.y60{bottom:29.385000px;}
.y52{bottom:29.415000px;}
.y5b{bottom:29.430000px;}
.y58{bottom:41.370000px;}
.y49{bottom:51.225000px;}
.y2{bottom:53.137500px;}
.y56{bottom:53.370000px;}
.y5c{bottom:53.715000px;}
.y1{bottom:59.137500px;}
.y43{bottom:72.375000px;}
.y3f{bottom:89.137500px;}
.y3e{bottom:109.837500px;}
.y44{bottom:110.880000px;}
.y2d{bottom:120.037500px;}
.y3d{bottom:130.537500px;}
.y2c{bottom:144.337500px;}
.y45{bottom:149.355000px;}
.y65{bottom:151.245000px;}
.y41{bottom:159.450000px;}
.y2b{bottom:168.375000px;}
.y3c{bottom:170.175000px;}
.y64{bottom:171.975000px;}
.y46{bottom:187.830000px;}
.y2a{bottom:192.675000px;}
.y3b{bottom:194.475000px;}
.y63{bottom:213.375000px;}
.y29{bottom:216.675000px;}
.y3a{bottom:218.475000px;}
.y47{bottom:226.350000px;}
.y62{bottom:235.590000px;}
.y28{bottom:240.975000px;}
.y39{bottom:242.775000px;}
.y42{bottom:258.975000px;}
.y48{bottom:264.825000px;}
.y27{bottom:264.975000px;}
.y38{bottom:266.775000px;}
.y5e{bottom:283.890000px;}
.y26{bottom:289.275000px;}
.y37{bottom:291.075000px;}
.y25{bottom:313.275000px;}
.y36{bottom:315.075000px;}
.y5a{bottom:332.190000px;}
.y24{bottom:337.620000px;}
.y35{bottom:339.405000px;}
.y34{bottom:358.320000px;}
.y40{bottom:358.500000px;}
.y23{bottom:361.620000px;}
.y22{bottom:385.905000px;}
.y54{bottom:404.835000px;}
.y21{bottom:409.905000px;}
.y20{bottom:434.205000px;}
.y1f{bottom:458.205000px;}
.y50{bottom:477.135000px;}
.y6c{bottom:481.905000px;}
.y1e{bottom:482.505000px;}
.y1d{bottom:505.950000px;}
.y6a{bottom:506.550000px;}
.y4e{bottom:525.465000px;}
.y1c{bottom:530.250000px;}
.y69{bottom:530.850000px;}
.y4d{bottom:554.250000px;}
.y1b{bottom:554.850000px;}
.y4c{bottom:578.550000px;}
.y1a{bottom:579.150000px;}
.y4b{bottom:602.550000px;}
.y19{bottom:603.150000px;}
.y18{bottom:627.450000px;}
.y17{bottom:651.450000px;}
.y16{bottom:675.780000px;}
.y15{bottom:699.780000px;}
.y14{bottom:724.080000px;}
.y13{bottom:748.080000px;}
.y12{bottom:772.380000px;}
.y11{bottom:796.380000px;}
.y10{bottom:820.695000px;}
.yf{bottom:844.725000px;}
.ye{bottom:869.025000px;}
.yd{bottom:893.025000px;}
.yc{bottom:916.725000px;}
.y33{bottom:917.325000px;}
.yb{bottom:940.725000px;}
.y32{bottom:941.325000px;}
.ya{bottom:965.625000px;}
.y9{bottom:989.625000px;}
.y8{bottom:1013.355000px;}
.y31{bottom:1013.955000px;}
.y7{bottom:1037.955000px;}
.y68{bottom:1056.885000px;}
.y6b{bottom:1061.670000px;}
.y6{bottom:1062.255000px;}
.y30{bottom:1086.255000px;}
.y67{bottom:1105.185000px;}
.y5{bottom:1110.570000px;}
.y4{bottom:1133.955000px;}
.y2f{bottom:1134.570000px;}
.y66{bottom:1153.485000px;}
.y3{bottom:1158.255000px;}
.y2e{bottom:1158.870000px;}
.h12{height:24.270000px;}
.hc{height:24.285000px;}
.h13{height:48.270000px;}
.h10{height:48.285000px;}
.hd{height:48.307500px;}
.h11{height:50.273438px;}
.h5{height:58.652344px;}
.hb{height:59.267578px;}
.h3{height:61.670545px;}
.h7{height:65.645508px;}
.h8{height:70.664062px;}
.he{height:72.285000px;}
.hf{height:72.622500px;}
.h2{height:82.441406px;}
.h4{height:84.656250px;}
.h14{height:86.338763px;}
.h9{height:288.000000px;}
.ha{height:294.164062px;}
.h6{height:1262.681100px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w4{width:153.927000px;}
.w6{width:276.105000px;}
.w5{width:287.160000px;}
.w3{width:648.000000px;}
.w2{width:893.081250px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:8.100000px;}
.x14{left:9.862500px;}
.x13{left:18.862500px;}
.x1e{left:34.500000px;}
.x12{left:36.855000px;}
.x20{left:38.430000px;}
.x1d{left:77.137500px;}
.x2{left:84.937500px;}
.x10{left:97.845000px;}
.x15{left:100.245000px;}
.xf{left:111.937500px;}
.x5{left:127.537500px;}
.x1b{left:153.911250px;}
.x6{left:155.430000px;}
.x3{left:167.430000px;}
.x1c{left:185.475000px;}
.x7{left:220.575000px;}
.x16{left:225.000000px;}
.x9{left:230.175000px;}
.xa{left:248.175000px;}
.x4{left:268.575000px;}
.xe{left:301.020000px;}
.x8{left:353.520000px;}
.x24{left:367.620000px;}
.x1{left:430.650000px;}
.x1f{left:517.950000px;}
.x19{left:545.261250px;}
.x11{left:554.370000px;}
.x1a{left:576.780000px;}
.x17{left:657.806250px;}
.x22{left:665.306250px;}
.x18{left:689.325000px;}
.x23{left:696.825000px;}
.xc{left:716.906250px;}
.xd{left:748.425000px;}
.xb{left:775.725000px;}
@media print{
.v1{vertical-align:-88.586667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:59.733333pt;}
.v3{vertical-align:66.506667pt;}
.v4{vertical-align:72.426667pt;}
.ls2d{letter-spacing:-1.152000pt;}
.ls27{letter-spacing:-1.066667pt;}
.ls2c{letter-spacing:-0.736000pt;}
.ls2e{letter-spacing:-0.533333pt;}
.ls26{letter-spacing:-0.490667pt;}
.lsb{letter-spacing:-0.458667pt;}
.ls2b{letter-spacing:-0.330667pt;}
.ls29{letter-spacing:-0.245333pt;}
.ls2a{letter-spacing:-0.085333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.106667pt;}
.lsa{letter-spacing:0.133333pt;}
.ls25{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.330667pt;}
.ls24{letter-spacing:0.426667pt;}
.ls19{letter-spacing:0.522667pt;}
.ls4{letter-spacing:0.533333pt;}
.ls21{letter-spacing:0.549333pt;}
.ls5{letter-spacing:0.576000pt;}
.ls1{letter-spacing:0.682667pt;}
.ls30{letter-spacing:0.693333pt;}
.ls2{letter-spacing:0.736000pt;}
.ls7{letter-spacing:0.789333pt;}
.ls6{letter-spacing:0.842667pt;}
.ls20{letter-spacing:0.896000pt;}
.ls23{letter-spacing:1.013333pt;}
.ls22{letter-spacing:1.040000pt;}
.ls11{letter-spacing:1.066667pt;}
.ls10{letter-spacing:1.120000pt;}
.ls17{letter-spacing:1.226667pt;}
.ls1c{letter-spacing:1.589333pt;}
.ls28{letter-spacing:1.600000pt;}
.ls31{letter-spacing:3.733333pt;}
.ls15{letter-spacing:4.800000pt;}
.ls13{letter-spacing:7.093333pt;}
.ls18{letter-spacing:10.133333pt;}
.ls9{letter-spacing:11.733333pt;}
.ls8{letter-spacing:14.400000pt;}
.ls1b{letter-spacing:16.480000pt;}
.ls12{letter-spacing:24.000000pt;}
.lsd{letter-spacing:28.266667pt;}
.lsf{letter-spacing:30.933333pt;}
.ls14{letter-spacing:40.000000pt;}
.ls1d{letter-spacing:43.200000pt;}
.ls1a{letter-spacing:46.453333pt;}
.ls1f{letter-spacing:47.466667pt;}
.lsc{letter-spacing:80.533333pt;}
.lse{letter-spacing:146.773333pt;}
.ls2f{letter-spacing:148.976000pt;}
.ls0{letter-spacing:760.293333pt;}
.ws8{word-spacing:-19.733333pt;}
.ws6{word-spacing:-19.242667pt;}
.ws0{word-spacing:-18.666667pt;}
.wsa{word-spacing:-18.581333pt;}
.ws9{word-spacing:-18.421333pt;}
.wsb{word-spacing:-18.336000pt;}
.ws5{word-spacing:-18.176000pt;}
.wsc{word-spacing:-17.930667pt;}
.ws7{word-spacing:-17.600000pt;}
.wsd{word-spacing:-17.514667pt;}
.wse{word-spacing:-16.000000pt;}
.ws2{word-spacing:-0.074667pt;}
.ws1{word-spacing:0.000000pt;}
.ws3{word-spacing:261.200000pt;}
.ws4{word-spacing:261.706667pt;}
._3{margin-left:-5.077333pt;}
._4{margin-left:-2.144000pt;}
._1{margin-left:-0.896000pt;}
._0{width:0.970667pt;}
._2{width:1.962667pt;}
._16{width:3.658667pt;}
._1c{width:4.554667pt;}
._2c{width:5.450667pt;}
._28{width:6.362667pt;}
._8{width:7.509333pt;}
._7{width:9.237333pt;}
._1e{width:10.400000pt;}
._9{width:11.306667pt;}
._1f{width:12.368000pt;}
._a{width:13.440000pt;}
._19{width:15.269333pt;}
._18{width:16.981333pt;}
._c{width:20.010667pt;}
._15{width:21.056000pt;}
._17{width:22.650667pt;}
._1d{width:23.696000pt;}
._b{width:25.088000pt;}
._13{width:26.560000pt;}
._11{width:27.701333pt;}
._12{width:28.970667pt;}
._d{width:30.240000pt;}
._e{width:31.141333pt;}
._23{width:32.144000pt;}
._1a{width:33.077333pt;}
._1b{width:34.048000pt;}
._20{width:34.976000pt;}
._5{width:35.989333pt;}
._24{width:37.258667pt;}
._25{width:38.229333pt;}
._22{width:39.274667pt;}
._21{width:40.224000pt;}
._3b{width:42.357333pt;}
._3a{width:44.144000pt;}
._39{width:45.370667pt;}
._35{width:46.293333pt;}
._38{width:47.258667pt;}
._f{width:54.282667pt;}
._10{width:55.680000pt;}
._3c{width:57.445333pt;}
._6{width:61.674667pt;}
._40{width:64.042667pt;}
._41{width:65.034667pt;}
._42{width:66.528000pt;}
._14{width:71.061333pt;}
._29{width:80.416000pt;}
._3d{width:83.450667pt;}
._3f{width:84.522667pt;}
._3e{width:86.058667pt;}
._2a{width:107.498667pt;}
._32{width:109.568000pt;}
._30{width:117.578667pt;}
._2f{width:118.570667pt;}
._2e{width:123.850667pt;}
._37{width:135.669333pt;}
._36{width:137.013333pt;}
._2d{width:138.954667pt;}
._34{width:145.877333pt;}
._31{width:228.554667pt;}
._26{width:245.866667pt;}
._27{width:270.133333pt;}
._2b{width:279.680000pt;}
._33{width:322.560000pt;}
._43{width:749.626667pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:4.253333pt;}
.y57{bottom:4.506667pt;}
.y53{bottom:4.773333pt;}
.y61{bottom:4.786667pt;}
.y5d{bottom:4.826667pt;}
.y59{bottom:15.173333pt;}
.y51{bottom:15.440000pt;}
.y5f{bottom:15.453333pt;}
.y4a{bottom:15.666667pt;}
.y55{bottom:26.106667pt;}
.y60{bottom:26.120000pt;}
.y52{bottom:26.146667pt;}
.y5b{bottom:26.160000pt;}
.y58{bottom:36.773333pt;}
.y49{bottom:45.533333pt;}
.y2{bottom:47.233333pt;}
.y56{bottom:47.440000pt;}
.y5c{bottom:47.746667pt;}
.y1{bottom:52.566667pt;}
.y43{bottom:64.333333pt;}
.y3f{bottom:79.233333pt;}
.y3e{bottom:97.633333pt;}
.y44{bottom:98.560000pt;}
.y2d{bottom:106.700000pt;}
.y3d{bottom:116.033333pt;}
.y2c{bottom:128.300000pt;}
.y45{bottom:132.760000pt;}
.y65{bottom:134.440000pt;}
.y41{bottom:141.733333pt;}
.y2b{bottom:149.666667pt;}
.y3c{bottom:151.266667pt;}
.y64{bottom:152.866667pt;}
.y46{bottom:166.960000pt;}
.y2a{bottom:171.266667pt;}
.y3b{bottom:172.866667pt;}
.y63{bottom:189.666667pt;}
.y29{bottom:192.600000pt;}
.y3a{bottom:194.200000pt;}
.y47{bottom:201.200000pt;}
.y62{bottom:209.413333pt;}
.y28{bottom:214.200000pt;}
.y39{bottom:215.800000pt;}
.y42{bottom:230.200000pt;}
.y48{bottom:235.400000pt;}
.y27{bottom:235.533333pt;}
.y38{bottom:237.133333pt;}
.y5e{bottom:252.346667pt;}
.y26{bottom:257.133333pt;}
.y37{bottom:258.733333pt;}
.y25{bottom:278.466667pt;}
.y36{bottom:280.066667pt;}
.y5a{bottom:295.280000pt;}
.y24{bottom:300.106667pt;}
.y35{bottom:301.693333pt;}
.y34{bottom:318.506667pt;}
.y40{bottom:318.666667pt;}
.y23{bottom:321.440000pt;}
.y22{bottom:343.026667pt;}
.y54{bottom:359.853333pt;}
.y21{bottom:364.360000pt;}
.y20{bottom:385.960000pt;}
.y1f{bottom:407.293333pt;}
.y50{bottom:424.120000pt;}
.y6c{bottom:428.360000pt;}
.y1e{bottom:428.893333pt;}
.y1d{bottom:449.733333pt;}
.y6a{bottom:450.266667pt;}
.y4e{bottom:467.080000pt;}
.y1c{bottom:471.333333pt;}
.y69{bottom:471.866667pt;}
.y4d{bottom:492.666667pt;}
.y1b{bottom:493.200000pt;}
.y4c{bottom:514.266667pt;}
.y1a{bottom:514.800000pt;}
.y4b{bottom:535.600000pt;}
.y19{bottom:536.133333pt;}
.y18{bottom:557.733333pt;}
.y17{bottom:579.066667pt;}
.y16{bottom:600.693333pt;}
.y15{bottom:622.026667pt;}
.y14{bottom:643.626667pt;}
.y13{bottom:664.960000pt;}
.y12{bottom:686.560000pt;}
.y11{bottom:707.893333pt;}
.y10{bottom:729.506667pt;}
.yf{bottom:750.866667pt;}
.ye{bottom:772.466667pt;}
.yd{bottom:793.800000pt;}
.yc{bottom:814.866667pt;}
.y33{bottom:815.400000pt;}
.yb{bottom:836.200000pt;}
.y32{bottom:836.733333pt;}
.ya{bottom:858.333333pt;}
.y9{bottom:879.666667pt;}
.y8{bottom:900.760000pt;}
.y31{bottom:901.293333pt;}
.y7{bottom:922.626667pt;}
.y68{bottom:939.453333pt;}
.y6b{bottom:943.706667pt;}
.y6{bottom:944.226667pt;}
.y30{bottom:965.560000pt;}
.y67{bottom:982.386667pt;}
.y5{bottom:987.173333pt;}
.y4{bottom:1007.960000pt;}
.y2f{bottom:1008.506667pt;}
.y66{bottom:1025.320000pt;}
.y3{bottom:1029.560000pt;}
.y2e{bottom:1030.106667pt;}
.h12{height:21.573333pt;}
.hc{height:21.586667pt;}
.h13{height:42.906667pt;}
.h10{height:42.920000pt;}
.hd{height:42.940000pt;}
.h11{height:44.687500pt;}
.h5{height:52.135417pt;}
.hb{height:52.682292pt;}
.h3{height:54.818262pt;}
.h7{height:58.351562pt;}
.h8{height:62.812500pt;}
.he{height:64.253333pt;}
.hf{height:64.553333pt;}
.h2{height:73.281250pt;}
.h4{height:75.250000pt;}
.h14{height:76.745567pt;}
.h9{height:256.000000pt;}
.ha{height:261.479167pt;}
.h6{height:1122.383200pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w4{width:136.824000pt;}
.w6{width:245.426667pt;}
.w5{width:255.253333pt;}
.w3{width:576.000000pt;}
.w2{width:793.850000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:7.200000pt;}
.x14{left:8.766667pt;}
.x13{left:16.766667pt;}
.x1e{left:30.666667pt;}
.x12{left:32.760000pt;}
.x20{left:34.160000pt;}
.x1d{left:68.566667pt;}
.x2{left:75.500000pt;}
.x10{left:86.973333pt;}
.x15{left:89.106667pt;}
.xf{left:99.500000pt;}
.x5{left:113.366667pt;}
.x1b{left:136.810000pt;}
.x6{left:138.160000pt;}
.x3{left:148.826667pt;}
.x1c{left:164.866667pt;}
.x7{left:196.066667pt;}
.x16{left:200.000000pt;}
.x9{left:204.600000pt;}
.xa{left:220.600000pt;}
.x4{left:238.733333pt;}
.xe{left:267.573333pt;}
.x8{left:314.240000pt;}
.x24{left:326.773333pt;}
.x1{left:382.800000pt;}
.x1f{left:460.400000pt;}
.x19{left:484.676667pt;}
.x11{left:492.773333pt;}
.x1a{left:512.693333pt;}
.x17{left:584.716667pt;}
.x22{left:591.383333pt;}
.x18{left:612.733333pt;}
.x23{left:619.400000pt;}
.xc{left:637.250000pt;}
.xd{left:665.266667pt;}
.xb{left:689.533333pt;}
}




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