
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_72727bab5fcd105273e6ef33.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_f4b8600663e5253fe6f5316a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_201a4ab41fb5b6f0cd44d91c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_1123464a5db12aa10b88d2c5.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_8e5742eab59bd2ee6f46cded.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_eef132cc726042513a256845.woff')format("woff");}.ff7{font-family:ff7;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;}
.m3{transform:matrix(0.000000,0.249508,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.249508,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.249508,-0.250000,0.000000,0,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);}
.m2{transform:matrix(0.250493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250493,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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsd{letter-spacing:-0.243600px;}
.lsc{letter-spacing:-0.186600px;}
.ls13{letter-spacing:-0.160800px;}
.ls19{letter-spacing:-0.153600px;}
.ls9{letter-spacing:-0.135000px;}
.lsf{letter-spacing:-0.121200px;}
.ls1b{letter-spacing:-0.093000px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls12{letter-spacing:-0.067200px;}
.lse{letter-spacing:-0.039000px;}
.ls6{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.045360px;}
.ls4{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls7{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.173400px;}
.ls5{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.181200px;}
.ls18{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls1a{letter-spacing:11.640000px;}
.ls16{letter-spacing:46.920000px;}
.ls17{letter-spacing:47.726640px;}
.ls15{letter-spacing:78.960000px;}
.ls14{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws8{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.wse{word-spacing:-13.425600px;}
.ws9{word-spacing:-13.407600px;}
.ws3{word-spacing:-13.399800px;}
.ws2{word-spacing:-13.226400px;}
.ws6{word-spacing:-13.187400px;}
.wsc{word-spacing:-13.159200px;}
.ws10{word-spacing:-13.133400px;}
.wsf{word-spacing:-13.072800px;}
.wsd{word-spacing:-13.065600px;}
.ws4{word-spacing:-13.039800px;}
.ws5{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsa{word-spacing:0.000000px;}
.ws7{word-spacing:4.304880px;}
._7{margin-left:-3.547200px;}
._b{margin-left:-2.464800px;}
._0{margin-left:-1.110000px;}
._1{width:1.114788px;}
._3{width:2.803078px;}
._2{width:4.088400px;}
._a{width:5.120879px;}
._8{width:6.460199px;}
._6{width:7.695600px;}
._9{width:9.017399px;}
._5{width:10.068000px;}
._4{width:11.122200px;}
._21{width:14.576880px;}
._11{width:15.751440px;}
._12{width:17.194320px;}
._d{width:18.877680px;}
._c{width:20.080080px;}
._10{width:21.703320px;}
._e{width:23.206320px;}
._f{width:24.528960px;}
._18{width:25.551000px;}
._1c{width:27.114120px;}
._19{width:31.563000px;}
._25{width:36.817200px;}
._26{width:38.177640px;}
._24{width:46.693200px;}
._1f{width:59.398560px;}
._16{width:77.855400px;}
._22{width:79.869240px;}
._23{width:81.102240px;}
._17{width:82.604880px;}
._14{width:142.304040px;}
._13{width:152.404200px;}
._1a{width:165.750840px;}
._1b{width:185.590440px;}
._15{width:190.640520px;}
._1d{width:205.490160px;}
._1e{width:214.628400px;}
._20{width:215.770680px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:59.440540px;}
.fs8{font-size:59.557850px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y6f{bottom:7.830000px;}
.y75{bottom:7.920000px;}
.ya3{bottom:10.420730px;}
.yac{bottom:13.406750px;}
.yb5{bottom:13.466072px;}
.ybf{bottom:13.555055px;}
.ybd{bottom:15.423694px;}
.yaa{bottom:15.453355px;}
.y6e{bottom:25.470000px;}
.yb1{bottom:37.699100px;}
.y73{bottom:43.020000px;}
.y78{bottom:43.110000px;}
.yc4{bottom:49.840756px;}
.yb0{bottom:53.271098px;}
.y72{bottom:60.600000px;}
.y77{bottom:60.660000px;}
.yc2{bottom:61.220232px;}
.yc0{bottom:64.878871px;}
.yc3{bottom:65.412767px;}
.yaf{bottom:68.843095px;}
.yb8{bottom:68.991400px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y71{bottom:78.240000px;}
.y1{bottom:101.640000px;}
.y5a{bottom:111.720000px;}
.y59{bottom:129.270000px;}
.y28{bottom:142.500000px;}
.ya1{bottom:151.410000px;}
.ye6{bottom:151.860000px;}
.y27{bottom:160.050000px;}
.y58{bottom:164.910000px;}
.ya0{bottom:168.960000px;}
.ye5{bottom:169.500000px;}
.y26{bottom:177.600000px;}
.y57{bottom:182.460000px;}
.y9f{bottom:186.510000px;}
.ye4{bottom:187.050000px;}
.ybb{bottom:191.535564px;}
.y25{bottom:195.240000px;}
.y56{bottom:200.100000px;}
.y9e{bottom:204.150000px;}
.yba{bottom:207.107564px;}
.y24{bottom:212.790000px;}
.ye3{bottom:213.600000px;}
.yb6{bottom:214.315177px;}
.y6c{bottom:214.410000px;}
.y55{bottom:217.650000px;}
.y9d{bottom:221.700000px;}
.yb9{bottom:222.679564px;}
.ye2{bottom:231.240000px;}
.y8d{bottom:233.580000px;}
.y54{bottom:235.200000px;}
.y23{bottom:248.340000px;}
.ye1{bottom:248.790000px;}
.y6b{bottom:250.050000px;}
.y8c{bottom:251.130000px;}
.y9c{bottom:257.250000px;}
.y22{bottom:265.980000px;}
.y8b{bottom:268.770000px;}
.y53{bottom:270.840000px;}
.y9b{bottom:274.890000px;}
.ye0{bottom:275.430000px;}
.y6a{bottom:282.270000px;}
.y21{bottom:283.530000px;}
.y8a{bottom:286.320000px;}
.y52{bottom:288.390000px;}
.ya4{bottom:288.882812px;}
.y9a{bottom:292.440000px;}
.ydf{bottom:292.980000px;}
.y20{bottom:301.170000px;}
.y89{bottom:303.870000px;}
.y51{bottom:305.940000px;}
.y99{bottom:310.080000px;}
.yde{bottom:310.530000px;}
.y1f{bottom:318.720000px;}
.y50{bottom:323.580000px;}
.y1e{bottom:336.270000px;}
.ydd{bottom:337.170000px;}
.y88{bottom:339.510000px;}
.yb2{bottom:340.878429px;}
.y4f{bottom:341.130000px;}
.y98{bottom:345.630000px;}
.y1d{bottom:353.910000px;}
.ydc{bottom:354.720000px;}
.y87{bottom:357.060000px;}
.y97{bottom:363.180000px;}
.yad{bottom:363.747034px;}
.y1c{bottom:371.460000px;}
.ydb{bottom:372.360000px;}
.y4e{bottom:376.770000px;}
.y96{bottom:380.820000px;}
.y86{bottom:392.700000px;}
.y4d{bottom:394.320000px;}
.y1b{bottom:398.370000px;}
.yda{bottom:398.910000px;}
.y85{bottom:410.250000px;}
.y4c{bottom:411.870000px;}
.y95{bottom:416.010000px;}
.yd9{bottom:416.460000px;}
.y4b{bottom:429.510000px;}
.yd8{bottom:434.100000px;}
.y84{bottom:445.800000px;}
.y1a{bottom:446.700000px;}
.y4a{bottom:447.060000px;}
.y94{bottom:451.560000px;}
.yd7{bottom:460.650000px;}
.y83{bottom:463.440000px;}
.y19{bottom:464.610000px;}
.y49{bottom:464.700000px;}
.y93{bottom:469.110000px;}
.yd6{bottom:478.230000px;}
.y82{bottom:481.020000px;}
.y48{bottom:482.280000px;}
.y92{bottom:486.780000px;}
.yd5{bottom:495.870000px;}
.ya8{bottom:498.140782px;}
.y18{bottom:501.630000px;}
.y91{bottom:504.330000px;}
.ya5{bottom:513.178890px;}
.ya7{bottom:513.712786px;}
.y81{bottom:516.660000px;}
.y47{bottom:517.830000px;}
.y17{bottom:519.180000px;}
.y90{bottom:521.970000px;}
.yd4{bottom:522.780000px;}
.ya6{bottom:529.284782px;}
.y80{bottom:534.210000px;}
.y46{bottom:535.470000px;}
.y16{bottom:536.820000px;}
.y45{bottom:553.020000px;}
.y15{bottom:554.370000px;}
.y8f{bottom:557.520000px;}
.y7f{bottom:569.760000px;}
.y44{bottom:570.660000px;}
.yd3{bottom:571.020000px;}
.y14{bottom:571.920000px;}
.y7e{bottom:587.400000px;}
.y43{bottom:588.210000px;}
.yd2{bottom:588.660000px;}
.y13{bottom:589.560000px;}
.y8e{bottom:589.740000px;}
.ya2{bottom:592.575000px;}
.y7d{bottom:604.950000px;}
.yd1{bottom:606.210000px;}
.y12{bottom:607.110000px;}
.yc1{bottom:612.339533px;}
.y42{bottom:623.760000px;}
.y11{bottom:624.750000px;}
.y7c{bottom:640.590000px;}
.y41{bottom:641.400000px;}
.yd0{bottom:641.760000px;}
.y10{bottom:642.300000px;}
.y40{bottom:658.950000px;}
.ycf{bottom:659.400000px;}
.yf{bottom:659.850000px;}
.y7b{bottom:676.140000px;}
.y3f{bottom:676.590000px;}
.yce{bottom:676.950000px;}
.ye{bottom:677.490000px;}
.y7a{bottom:691.080000px;}
.y3e{bottom:694.140000px;}
.ycd{bottom:694.590000px;}
.yd{bottom:695.040000px;}
.y3d{bottom:711.690000px;}
.ycc{bottom:712.140000px;}
.yc{bottom:712.680000px;}
.ybe{bottom:721.165569px;}
.ybc{bottom:721.254553px;}
.y3c{bottom:729.330000px;}
.ycb{bottom:729.690000px;}
.yb{bottom:730.230000px;}
.y79{bottom:753.630000px;}
.y3b{bottom:756.240000px;}
.ya{bottom:757.140000px;}
.yb7{bottom:761.835161px;}
.y69{bottom:764.880000px;}
.yca{bottom:765.330000px;}
.yc9{bottom:782.880000px;}
.y68{bottom:800.520000px;}
.y3a{bottom:804.480000px;}
.y9{bottom:805.380000px;}
.y76{bottom:816.090000px;}
.y67{bottom:818.070000px;}
.y39{bottom:822.030000px;}
.y66{bottom:835.620000px;}
.y38{bottom:839.670000px;}
.y8{bottom:841.200000px;}
.yf0{bottom:858.030000px;}
.yc8{bottom:862.530000px;}
.yb4{bottom:870.661197px;}
.yb3{bottom:870.661198px;}
.y65{bottom:871.260000px;}
.y37{bottom:875.220000px;}
.yef{bottom:875.670000px;}
.y7{bottom:877.200000px;}
.y64{bottom:888.810000px;}
.y36{bottom:892.860000px;}
.yee{bottom:893.220000px;}
.y74{bottom:896.190000px;}
.y35{bottom:910.410000px;}
.yc7{bottom:910.860000px;}
.yae{bottom:911.326340px;}
.y6{bottom:913.200000px;}
.yed{bottom:919.860000px;}
.y63{bottom:924.450000px;}
.yc6{bottom:928.410000px;}
.yec{bottom:937.410000px;}
.y62{bottom:942.000000px;}
.y34{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.yeb{bottom:954.960000px;}
.y70{bottom:958.740000px;}
.y61{bottom:959.550000px;}
.y33{bottom:963.600000px;}
.y32{bottom:981.150000px;}
.yea{bottom:981.600000px;}
.y60{bottom:986.460000px;}
.y4{bottom:987.630000px;}
.yc5{bottom:999.150000px;}
.y3{bottom:1012.320000px;}
.y31{bottom:1016.820000px;}
.yab{bottom:1020.063393px;}
.ya9{bottom:1020.063394px;}
.y30{bottom:1034.370000px;}
.y5f{bottom:1034.820000px;}
.ye9{bottom:1043.370000px;}
.y2f{bottom:1051.920000px;}
.y5e{bottom:1052.370000px;}
.y6d{bottom:1056.420000px;}
.ye8{bottom:1060.920000px;}
.y2e{bottom:1069.560000px;}
.y5d{bottom:1069.920000px;}
.ye7{bottom:1078.560000px;}
.y2d{bottom:1087.110000px;}
.y5c{bottom:1087.560000px;}
.y5b{bottom:1105.110000px;}
.y2c{bottom:1122.750000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h11{height:26.160959px;}
.hf{height:26.249940px;}
.h13{height:26.249942px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h8{height:44.190000px;}
.he{height:50.327098px;}
.h10{height:50.426422px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.ha{height:61.740000px;}
.h15{height:61.793886px;}
.hc{height:61.830000px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.hb{height:79.380000px;}
.h12{height:83.110013px;}
.h14{height:83.287979px;}
.h9{height:96.960000px;}
.hd{height:559.695000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w8{width:5.616983px;}
.wb{width:5.706141px;}
.wc{width:5.795300px;}
.w9{width:27.193330px;}
.w3{width:113.970000px;}
.w5{width:141.210000px;}
.w4{width:144.270000px;}
.w6{width:354.000000px;}
.wa{width:361.715863px;}
.w7{width:404.625000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.xe{left:-74.863385px;}
.x14{left:-8.499773px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x19{left:11.592085px;}
.x16{left:13.492647px;}
.x1b{left:16.228325px;}
.x18{left:20.686248px;}
.xf{left:42.201670px;}
.x1c{left:44.876424px;}
.x1e{left:46.481276px;}
.x11{left:59.676728px;}
.x1{left:68.040000px;}
.x10{left:71.623961px;}
.x1d{left:82.233817px;}
.x20{left:111.239987px;}
.x5{left:114.839987px;}
.x12{left:116.589543px;}
.xb{left:138.239987px;}
.x1a{left:180.783633px;}
.x1f{left:182.031851px;}
.x7{left:183.450000px;}
.x2{left:201.539987px;}
.xc{left:244.095000px;}
.x17{left:274.526268px;}
.x8{left:328.440000px;}
.x15{left:441.789020px;}
.x13{left:452.577194px;}
.x9{left:470.460000px;}
.xd{left:508.084331px;}
.x4{left:573.809987px;}
.xa{left:651.389987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsd{letter-spacing:-0.216533pt;}
.lsc{letter-spacing:-0.165867pt;}
.ls13{letter-spacing:-0.142933pt;}
.ls19{letter-spacing:-0.136533pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsf{letter-spacing:-0.107733pt;}
.ls1b{letter-spacing:-0.082667pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls12{letter-spacing:-0.059733pt;}
.lse{letter-spacing:-0.034667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.040320pt;}
.ls4{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls7{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.154133pt;}
.ls5{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.161067pt;}
.ls18{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls1a{letter-spacing:10.346667pt;}
.ls16{letter-spacing:41.706667pt;}
.ls17{letter-spacing:42.423680pt;}
.ls15{letter-spacing:70.186667pt;}
.ls14{letter-spacing:71.863680pt;}
.ws8{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.wse{word-spacing:-11.933867pt;}
.ws9{word-spacing:-11.917867pt;}
.ws3{word-spacing:-11.910933pt;}
.ws2{word-spacing:-11.756800pt;}
.ws6{word-spacing:-11.722133pt;}
.wsc{word-spacing:-11.697067pt;}
.ws10{word-spacing:-11.674133pt;}
.wsf{word-spacing:-11.620267pt;}
.wsd{word-spacing:-11.613867pt;}
.ws4{word-spacing:-11.590933pt;}
.ws5{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsa{word-spacing:0.000000pt;}
.ws7{word-spacing:3.826560pt;}
._7{margin-left:-3.153067pt;}
._b{margin-left:-2.190933pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.990923pt;}
._3{width:2.491625pt;}
._2{width:3.634134pt;}
._a{width:4.551892pt;}
._8{width:5.742399pt;}
._6{width:6.840534pt;}
._9{width:8.015466pt;}
._5{width:8.949334pt;}
._4{width:9.886400pt;}
._21{width:12.957227pt;}
._11{width:14.001280pt;}
._12{width:15.283840pt;}
._d{width:16.780160pt;}
._c{width:17.848960pt;}
._10{width:19.291840pt;}
._e{width:20.627840pt;}
._f{width:21.803520pt;}
._18{width:22.712000pt;}
._1c{width:24.101440pt;}
._19{width:28.056000pt;}
._25{width:32.726400pt;}
._26{width:33.935680pt;}
._24{width:41.505067pt;}
._1f{width:52.798720pt;}
._16{width:69.204800pt;}
._22{width:70.994880pt;}
._23{width:72.090880pt;}
._17{width:73.426560pt;}
._14{width:126.492480pt;}
._13{width:135.470400pt;}
._1a{width:147.334080pt;}
._1b{width:164.969280pt;}
._15{width:169.458240pt;}
._1d{width:182.657920pt;}
._1e{width:190.780800pt;}
._20{width:191.796160pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:52.836036pt;}
.fs8{font-size:52.940311pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y6f{bottom:6.960000pt;}
.y75{bottom:7.040000pt;}
.ya3{bottom:9.262871pt;}
.yac{bottom:11.917111pt;}
.yb5{bottom:11.969842pt;}
.ybf{bottom:12.048938pt;}
.ybd{bottom:13.709951pt;}
.yaa{bottom:13.736316pt;}
.y6e{bottom:22.640000pt;}
.yb1{bottom:33.510311pt;}
.y73{bottom:38.240000pt;}
.y78{bottom:38.320000pt;}
.yc4{bottom:44.302894pt;}
.yb0{bottom:47.352087pt;}
.y72{bottom:53.866667pt;}
.y77{bottom:53.920000pt;}
.yc2{bottom:54.417984pt;}
.yc0{bottom:57.670107pt;}
.yc3{bottom:58.144682pt;}
.yaf{bottom:61.193862pt;}
.yb8{bottom:61.325689pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y71{bottom:69.546667pt;}
.y1{bottom:90.346667pt;}
.y5a{bottom:99.306667pt;}
.y59{bottom:114.906667pt;}
.y28{bottom:126.666667pt;}
.ya1{bottom:134.586667pt;}
.ye6{bottom:134.986667pt;}
.y27{bottom:142.266667pt;}
.y58{bottom:146.586667pt;}
.ya0{bottom:150.186667pt;}
.ye5{bottom:150.666667pt;}
.y26{bottom:157.866667pt;}
.y57{bottom:162.186667pt;}
.y9f{bottom:165.786667pt;}
.ye4{bottom:166.266667pt;}
.ybb{bottom:170.253835pt;}
.y25{bottom:173.546667pt;}
.y56{bottom:177.866667pt;}
.y9e{bottom:181.466667pt;}
.yba{bottom:184.095613pt;}
.y24{bottom:189.146667pt;}
.ye3{bottom:189.866667pt;}
.yb6{bottom:190.502379pt;}
.y6c{bottom:190.586667pt;}
.y55{bottom:193.466667pt;}
.y9d{bottom:197.066667pt;}
.yb9{bottom:197.937390pt;}
.ye2{bottom:205.546667pt;}
.y8d{bottom:207.626667pt;}
.y54{bottom:209.066667pt;}
.y23{bottom:220.746667pt;}
.ye1{bottom:221.146667pt;}
.y6b{bottom:222.266667pt;}
.y8c{bottom:223.226667pt;}
.y9c{bottom:228.666667pt;}
.y22{bottom:236.426667pt;}
.y8b{bottom:238.906667pt;}
.y53{bottom:240.746667pt;}
.y9b{bottom:244.346667pt;}
.ye0{bottom:244.826667pt;}
.y6a{bottom:250.906667pt;}
.y21{bottom:252.026667pt;}
.y8a{bottom:254.506667pt;}
.y52{bottom:256.346667pt;}
.ya4{bottom:256.784722pt;}
.y9a{bottom:259.946667pt;}
.ydf{bottom:260.426667pt;}
.y20{bottom:267.706667pt;}
.y89{bottom:270.106667pt;}
.y51{bottom:271.946667pt;}
.y99{bottom:275.626667pt;}
.yde{bottom:276.026667pt;}
.y1f{bottom:283.306667pt;}
.y50{bottom:287.626667pt;}
.y1e{bottom:298.906667pt;}
.ydd{bottom:299.706667pt;}
.y88{bottom:301.786667pt;}
.yb2{bottom:303.003048pt;}
.y4f{bottom:303.226667pt;}
.y98{bottom:307.226667pt;}
.y1d{bottom:314.586667pt;}
.ydc{bottom:315.306667pt;}
.y87{bottom:317.386667pt;}
.y97{bottom:322.826667pt;}
.yad{bottom:323.330696pt;}
.y1c{bottom:330.186667pt;}
.ydb{bottom:330.986667pt;}
.y4e{bottom:334.906667pt;}
.y96{bottom:338.506667pt;}
.y86{bottom:349.066667pt;}
.y4d{bottom:350.506667pt;}
.y1b{bottom:354.106667pt;}
.yda{bottom:354.586667pt;}
.y85{bottom:364.666667pt;}
.y4c{bottom:366.106667pt;}
.y95{bottom:369.786667pt;}
.yd9{bottom:370.186667pt;}
.y4b{bottom:381.786667pt;}
.yd8{bottom:385.866667pt;}
.y84{bottom:396.266667pt;}
.y1a{bottom:397.066667pt;}
.y4a{bottom:397.386667pt;}
.y94{bottom:401.386667pt;}
.yd7{bottom:409.466667pt;}
.y83{bottom:411.946667pt;}
.y19{bottom:412.986667pt;}
.y49{bottom:413.066667pt;}
.y93{bottom:416.986667pt;}
.yd6{bottom:425.093333pt;}
.y82{bottom:427.573333pt;}
.y48{bottom:428.693333pt;}
.y92{bottom:432.693333pt;}
.yd5{bottom:440.773333pt;}
.ya8{bottom:442.791806pt;}
.y18{bottom:445.893333pt;}
.y91{bottom:448.293333pt;}
.ya5{bottom:456.159014pt;}
.ya7{bottom:456.633587pt;}
.y81{bottom:459.253333pt;}
.y47{bottom:460.293333pt;}
.y17{bottom:461.493333pt;}
.y90{bottom:463.973333pt;}
.yd4{bottom:464.693333pt;}
.ya6{bottom:470.475362pt;}
.y80{bottom:474.853333pt;}
.y46{bottom:475.973333pt;}
.y16{bottom:477.173333pt;}
.y45{bottom:491.573333pt;}
.y15{bottom:492.773333pt;}
.y8f{bottom:495.573333pt;}
.y7f{bottom:506.453333pt;}
.y44{bottom:507.253333pt;}
.yd3{bottom:507.573333pt;}
.y14{bottom:508.373333pt;}
.y7e{bottom:522.133333pt;}
.y43{bottom:522.853333pt;}
.yd2{bottom:523.253333pt;}
.y13{bottom:524.053333pt;}
.y8e{bottom:524.213333pt;}
.ya2{bottom:526.733333pt;}
.y7d{bottom:537.733333pt;}
.yd1{bottom:538.853333pt;}
.y12{bottom:539.653333pt;}
.yc1{bottom:544.301807pt;}
.y42{bottom:554.453333pt;}
.y11{bottom:555.333333pt;}
.y7c{bottom:569.413333pt;}
.y41{bottom:570.133333pt;}
.yd0{bottom:570.453333pt;}
.y10{bottom:570.933333pt;}
.y40{bottom:585.733333pt;}
.ycf{bottom:586.133333pt;}
.yf{bottom:586.533333pt;}
.y7b{bottom:601.013333pt;}
.y3f{bottom:601.413333pt;}
.yce{bottom:601.733333pt;}
.ye{bottom:602.213333pt;}
.y7a{bottom:614.293333pt;}
.y3e{bottom:617.013333pt;}
.ycd{bottom:617.413333pt;}
.yd{bottom:617.813333pt;}
.y3d{bottom:632.613333pt;}
.ycc{bottom:633.013333pt;}
.yc{bottom:633.493333pt;}
.ybe{bottom:641.036061pt;}
.ybc{bottom:641.115158pt;}
.y3c{bottom:648.293333pt;}
.ycb{bottom:648.613333pt;}
.yb{bottom:649.093333pt;}
.y79{bottom:669.893333pt;}
.y3b{bottom:672.213333pt;}
.ya{bottom:673.013333pt;}
.yb7{bottom:677.186810pt;}
.y69{bottom:679.893333pt;}
.yca{bottom:680.293333pt;}
.yc9{bottom:695.893333pt;}
.y68{bottom:711.573333pt;}
.y3a{bottom:715.093333pt;}
.y9{bottom:715.893333pt;}
.y76{bottom:725.413333pt;}
.y67{bottom:727.173333pt;}
.y39{bottom:730.693333pt;}
.y66{bottom:742.773333pt;}
.y38{bottom:746.373333pt;}
.y8{bottom:747.733333pt;}
.yf0{bottom:762.693333pt;}
.yc8{bottom:766.693333pt;}
.yb4{bottom:773.921064pt;}
.yb3{bottom:773.921065pt;}
.y65{bottom:774.453333pt;}
.y37{bottom:777.973333pt;}
.yef{bottom:778.373333pt;}
.y7{bottom:779.733333pt;}
.y64{bottom:790.053333pt;}
.y36{bottom:793.653333pt;}
.yee{bottom:793.973333pt;}
.y74{bottom:796.613333pt;}
.y35{bottom:809.253333pt;}
.yc7{bottom:809.653333pt;}
.yae{bottom:810.067858pt;}
.y6{bottom:811.733333pt;}
.yed{bottom:817.653333pt;}
.y63{bottom:821.733333pt;}
.yc6{bottom:825.253333pt;}
.yec{bottom:833.253333pt;}
.y62{bottom:837.333333pt;}
.y34{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.yeb{bottom:848.853333pt;}
.y70{bottom:852.213333pt;}
.y61{bottom:852.933333pt;}
.y33{bottom:856.533333pt;}
.y32{bottom:872.133333pt;}
.yea{bottom:872.533333pt;}
.y60{bottom:876.853333pt;}
.y4{bottom:877.893333pt;}
.yc5{bottom:888.133333pt;}
.y3{bottom:899.840000pt;}
.y31{bottom:903.840000pt;}
.yab{bottom:906.723016pt;}
.ya9{bottom:906.723017pt;}
.y30{bottom:919.440000pt;}
.y5f{bottom:919.840000pt;}
.ye9{bottom:927.440000pt;}
.y2f{bottom:935.040000pt;}
.y5e{bottom:935.440000pt;}
.y6d{bottom:939.040000pt;}
.ye8{bottom:943.040000pt;}
.y2e{bottom:950.720000pt;}
.y5d{bottom:951.040000pt;}
.ye7{bottom:958.720000pt;}
.y2d{bottom:966.320000pt;}
.y5c{bottom:966.720000pt;}
.y5b{bottom:982.320000pt;}
.y2c{bottom:998.000000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h11{height:23.254186pt;}
.hf{height:23.333280pt;}
.h13{height:23.333282pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h8{height:39.280000pt;}
.he{height:44.735198pt;}
.h10{height:44.823486pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.ha{height:54.880000pt;}
.h15{height:54.927899pt;}
.hc{height:54.960000pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.hb{height:70.560000pt;}
.h12{height:73.875567pt;}
.h14{height:74.033759pt;}
.h9{height:86.186667pt;}
.hd{height:497.506667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w8{width:4.992874pt;}
.wb{width:5.072126pt;}
.wc{width:5.151378pt;}
.w9{width:24.171849pt;}
.w3{width:101.306667pt;}
.w5{width:125.520000pt;}
.w4{width:128.240000pt;}
.w6{width:314.666667pt;}
.wa{width:321.525211pt;}
.w7{width:359.666667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.xe{left:-66.545231pt;}
.x14{left:-7.555354pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x19{left:10.304076pt;}
.x16{left:11.993464pt;}
.x1b{left:14.425178pt;}
.x18{left:18.387776pt;}
.xf{left:37.512596pt;}
.x1c{left:39.890154pt;}
.x1e{left:41.316690pt;}
.x11{left:53.045980pt;}
.x1{left:60.480000pt;}
.x10{left:63.665743pt;}
.x1d{left:73.096727pt;}
.x20{left:98.879988pt;}
.x5{left:102.079988pt;}
.x12{left:103.635149pt;}
.xb{left:122.879988pt;}
.x1a{left:160.696562pt;}
.x1f{left:161.806090pt;}
.x7{left:163.066667pt;}
.x2{left:179.146655pt;}
.xc{left:216.973333pt;}
.x17{left:244.023349pt;}
.x8{left:291.946667pt;}
.x15{left:392.701351pt;}
.x13{left:402.290839pt;}
.x9{left:418.186667pt;}
.xd{left:451.630516pt;}
.x4{left:510.053322pt;}
.xa{left:579.013322pt;}
.x3{left:704.053322pt;}
}




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