
    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_c08fddd3af74a1671d7f3058.woff')format("woff");}.ff1{font-family:ff1;line-height:0.962402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4f475405b8fcb0e149f2f610.woff')format("woff");}.ff2{font-family:ff2;line-height:0.809082;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_351c8ece08a81b4b7dce36f9.woff')format("woff");}.ff3{font-family:ff3;line-height:0.969238;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_7ddb7e41697ddb88f7cd16f9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_aa19c1df1da00c8624424c05.woff')format("woff");}.ff5{font-family:ff5;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c61c26192d79dc5c3ebbf809.woff')format("woff");}.ff6{font-family:ff6;line-height:0.986328;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_17fde784b2f643a3e4f2e2e2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.986816;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_325d24abfe43cbd83a1353e0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_99a86139917e91d81b8bcbb2.woff')format("woff");}.ff9{font-family:ff9;line-height:0.986328;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_aa5f93aba1235862cf0bed68.woff')format("woff");}.ffa{font-family:ffa;line-height:0.958008;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.v1{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.780000px;}
.ls8{letter-spacing:-0.169200px;}
.lsa{letter-spacing:-0.147000px;}
.lsb{letter-spacing:-0.114600px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.044640px;}
.ls6{letter-spacing:0.126000px;}
.ls5{letter-spacing:0.163800px;}
.ls1{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.259920px;}
.ls7{letter-spacing:0.288000px;}
.ls3{letter-spacing:26.280000px;}
.ls2{letter-spacing:101.844000px;}
.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:-33.667200px;}
.ws18{word-spacing:-26.429760px;}
.ws15{word-spacing:-26.238240px;}
.ws4{word-spacing:-23.418720px;}
.ws3{word-spacing:-20.016000px;}
.ws1a{word-spacing:-17.385776px;}
.ws1b{word-spacing:-17.259792px;}
.ws2{word-spacing:-16.613280px;}
.ws0{word-spacing:-13.811040px;}
.ws7{word-spacing:-11.609280px;}
.ws9{word-spacing:-2.728080px;}
.ws6{word-spacing:-1.680000px;}
.ws5{word-spacing:-1.152000px;}
.ws12{word-spacing:-0.777600px;}
.wsa{word-spacing:-0.683280px;}
.wsb{word-spacing:-0.263520px;}
.wsd{word-spacing:-0.048240px;}
.ws1c{word-spacing:0.000000px;}
.ws13{word-spacing:0.020880px;}
.ws11{word-spacing:0.052560px;}
.wse{word-spacing:0.092880px;}
.ws10{word-spacing:0.293400px;}
.wsf{word-spacing:0.300240px;}
.ws1{word-spacing:0.439200px;}
.ws17{word-spacing:0.463560px;}
.ws19{word-spacing:0.828000px;}
.ws16{word-spacing:1.206720px;}
.wsc{word-spacing:2.003760px;}
.ws14{word-spacing:2.458080px;}
._9{margin-left:-7.529760px;}
._6{margin-left:-5.896800px;}
._a{margin-left:-4.842720px;}
._5{margin-left:-2.838240px;}
._0{margin-left:-1.205280px;}
._2{width:1.049040px;}
._1{width:2.856960px;}
._c{width:25.206240px;}
._3{width:27.972000px;}
._8{width:33.320880px;}
._4{width:34.884000px;}
._7{width:36.779040px;}
._b{width:3098.793600px;}
.fc9{color:transparent;}
.fc7{color:rgb(34,94,172);}
.fc4{color:rgb(255,192,0);}
.fc6{color:rgb(32,56,100);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(31,58,78);}
.fc8{color:rgb(0,0,0);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(217,217,217);}
.fc0{color:rgb(191,191,191);}
.fs0{font-size:22.320000px;}
.fse{font-size:41.760000px;}
.fs1{font-size:49.680000px;}
.fsa{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs12{font-size:62.991941px;}
.fs13{font-size:63.143729px;}
.fs5{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fsb{font-size:72.144000px;}
.fs3{font-size:84.240000px;}
.fsc{font-size:95.760000px;}
.fsf{font-size:95.904000px;}
.fs2{font-size:108.000000px;}
.fs6{font-size:108.144000px;}
.fs9{font-size:120.240000px;}
.fs10{font-size:167.760000px;}
.fs11{font-size:239.760000px;}
.fsd{font-size:347.904000px;}
.y0{bottom:0.000000px;}
.y2{bottom:13.716000px;}
.y1{bottom:29.556000px;}
.y64{bottom:37.620000px;}
.y63{bottom:76.680000px;}
.y82{bottom:86.004000px;}
.yb6{bottom:95.184000px;}
.ya6{bottom:106.380000px;}
.y9c{bottom:107.244000px;}
.yb5{bottom:113.184000px;}
.y62{bottom:115.560000px;}
.y66{bottom:118.800000px;}
.y81{bottom:129.204000px;}
.y65{bottom:131.760000px;}
.y9b{bottom:136.044000px;}
.ya5{bottom:149.580000px;}
.yb4{bottom:168.945000px;}
.y80{bottom:178.170000px;}
.yb0{bottom:185.145000px;}
.yb3{bottom:186.945000px;}
.ya4{bottom:192.780000px;}
.yaf{bottom:203.145000px;}
.yb2{bottom:204.945000px;}
.y2d{bottom:218.190000px;}
.yae{bottom:221.145000px;}
.y7f{bottom:221.370000px;}
.yb1{bottom:222.945000px;}
.ya3{bottom:235.980000px;}
.y2c{bottom:236.190000px;}
.y7e{bottom:270.330000px;}
.y2b{bottom:272.190000px;}
.ya2{bottom:279.180000px;}
.y2a{bottom:290.955000px;}
.y61{bottom:298.800000px;}
.y7d{bottom:313.560000px;}
.y60{bottom:320.400000px;}
.ya1{bottom:322.380000px;}
.y7c{bottom:356.760000px;}
.y5f{bottom:363.600000px;}
.ya0{bottom:365.580000px;}
.y9a{bottom:373.860000px;}
.y7b{bottom:405.720000px;}
.y5e{bottom:406.800000px;}
.y9f{bottom:408.810000px;}
.y5d{bottom:428.400000px;}
.y99{bottom:435.345000px;}
.y7a{bottom:448.920000px;}
.y5c{bottom:450.000000px;}
.y9e{bottom:452.010000px;}
.y29{bottom:466.815000px;}
.y5b{bottom:472.320000px;}
.y98{bottom:478.545000px;}
.y28{bottom:484.815000px;}
.y79{bottom:492.120000px;}
.y9d{bottom:495.210000px;}
.y27{bottom:520.815000px;}
.y97{bottom:521.745000px;}
.y26{bottom:538.815000px;}
.y78{bottom:541.080000px;}
.y25{bottom:557.535000px;}
.y5a{bottom:558.690000px;}
.y96{bottom:564.945000px;}
.y73{bottom:566.925000px;}
.y77{bottom:584.280000px;}
.y59{bottom:601.890000px;}
.yab{bottom:607.860000px;}
.y95{bottom:608.190000px;}
.yad{bottom:610.770000px;}
.y58{bottom:623.490000px;}
.yaa{bottom:625.860000px;}
.y76{bottom:627.480000px;}
.yac{bottom:628.770000px;}
.y57{bottom:645.090000px;}
.y94{bottom:651.390000px;}
.ybb{bottom:670.470000px;}
.y75{bottom:670.710000px;}
.y56{bottom:688.290000px;}
.yba{bottom:688.470000px;}
.y93{bottom:694.590000px;}
.yb9{bottom:706.470000px;}
.y55{bottom:709.890000px;}
.y74{bottom:713.910000px;}
.yb8{bottom:724.470000px;}
.y54{bottom:731.490000px;}
.yb7{bottom:742.470000px;}
.y53{bottom:753.810000px;}
.y92{bottom:757.230000px;}
.y24{bottom:831.930000px;}
.y52{bottom:833.010000px;}
.y23{bottom:849.930000px;}
.y4e{bottom:853.890000px;}
.y51{bottom:858.210000px;}
.y22{bottom:867.930000px;}
.y4d{bottom:875.490000px;}
.y50{bottom:883.410000px;}
.y21{bottom:903.930000px;}
.y4c{bottom:918.720000px;}
.y4f{bottom:923.580000px;}
.y20{bottom:939.930000px;}
.y4b{bottom:940.320000px;}
.y1f{bottom:957.930000px;}
.y4a{bottom:961.920000px;}
.y1e{bottom:976.680000px;}
.y49{bottom:983.520000px;}
.y48{bottom:1005.840000px;}
.y47{bottom:1031.040000px;}
.y71{bottom:1070.355000px;}
.y46{bottom:1087.920000px;}
.y45{bottom:1109.520000px;}
.y70{bottom:1113.555000px;}
.y8d{bottom:1116.930000px;}
.y44{bottom:1131.120000px;}
.y43{bottom:1152.720000px;}
.y6f{bottom:1156.755000px;}
.y8c{bottom:1160.130000px;}
.y42{bottom:1174.320000px;}
.y1d{bottom:1179.360000px;}
.y41{bottom:1195.920000px;}
.y1c{bottom:1197.360000px;}
.y6e{bottom:1199.955000px;}
.y8b{bottom:1203.330000px;}
.y40{bottom:1213.485000px;}
.y1b{bottom:1215.360000px;}
.y1a{bottom:1233.360000px;}
.y3f{bottom:1235.085000px;}
.y6d{bottom:1243.155000px;}
.y8a{bottom:1246.530000px;}
.y19{bottom:1269.360000px;}
.y3e{bottom:1278.285000px;}
.y6c{bottom:1286.355000px;}
.y18{bottom:1287.360000px;}
.y89{bottom:1289.730000px;}
.y3d{bottom:1299.885000px;}
.y17{bottom:1305.360000px;}
.y16{bottom:1326.780000px;}
.y39{bottom:1328.685000px;}
.y6b{bottom:1329.555000px;}
.y88{bottom:1332.930000px;}
.y3c{bottom:1343.085000px;}
.y38{bottom:1350.285000px;}
.y3b{bottom:1364.685000px;}
.y6a{bottom:1372.755000px;}
.y91{bottom:1375.125000px;}
.y87{bottom:1376.175000px;}
.y3a{bottom:1408.605000px;}
.y69{bottom:1415.985000px;}
.y90{bottom:1418.325000px;}
.y86{bottom:1419.375000px;}
.yf{bottom:1455.630000px;}
.y68{bottom:1459.185000px;}
.y8f{bottom:1461.525000px;}
.y85{bottom:1462.575000px;}
.y15{bottom:1472.730000px;}
.ye{bottom:1488.060000px;}
.y14{bottom:1490.760000px;}
.y67{bottom:1502.385000px;}
.y8e{bottom:1504.725000px;}
.y84{bottom:1505.775000px;}
.y13{bottom:1508.760000px;}
.yd{bottom:1520.460000px;}
.y12{bottom:1526.760000px;}
.yc{bottom:1550.520000px;}
.y11{bottom:1562.760000px;}
.y83{bottom:1566.570000px;}
.y72{bottom:1566.930000px;}
.yb{bottom:1570.320000px;}
.y10{bottom:1599.480000px;}
.y37{bottom:1678.830000px;}
.y36{bottom:1699.890000px;}
.ya7{bottom:1708.815000px;}
.ya{bottom:1716.450000px;}
.y35{bottom:1721.490000px;}
.y9{bottom:1734.450000px;}
.y34{bottom:1743.090000px;}
.y33{bottom:1764.690000px;}
.ya8{bottom:1764.930000px;}
.y8{bottom:1770.450000px;}
.y32{bottom:1786.290000px;}
.y7{bottom:1788.450000px;}
.y31{bottom:1808.610000px;}
.y6{bottom:1824.450000px;}
.y30{bottom:1833.810000px;}
.ya9{bottom:1835.895000px;}
.y5{bottom:1842.450000px;}
.y2f{bottom:1876.680000px;}
.y4{bottom:1880.130000px;}
.y3{bottom:1907.490000px;}
.y2e{bottom:1907.820000px;}
.h1{height:16.783594px;}
.h14{height:30.524766px;}
.h2{height:37.357031px;}
.h13{height:39.471680px;}
.h6{height:43.681992px;}
.hb{height:43.787250px;}
.h5{height:44.936719px;}
.h1c{height:47.305471px;}
.h1d{height:47.366987px;}
.h1e{height:47.419460px;}
.h7{height:48.418594px;}
.h11{height:52.628906px;}
.ha{height:54.140625px;}
.hd{height:54.248906px;}
.h4{height:62.933203px;}
.h10{height:63.344531px;}
.hf{height:71.539453px;}
.h15{height:71.913516px;}
.h16{height:72.007031px;}
.h18{height:72.021656px;}
.h3{height:78.679688px;}
.h19{height:81.000000px;}
.h8{height:81.210938px;}
.h9{height:81.319219px;}
.he{height:87.596719px;}
.h17{height:90.180000px;}
.hc{height:90.414844px;}
.h1a{height:125.820000px;}
.h1b{height:179.820000px;}
.h12{height:261.607500px;}
.h0{height:1944.000000px;}
.w1{width:3887.999942px;}
.w0{width:3888.000000px;}
.x4{left:-785.520058px;}
.x8{left:-745.815058px;}
.x7{left:-735.195058px;}
.x5{left:-733.575058px;}
.x6{left:-720.975058px;}
.x2{left:-677.055058px;}
.x3{left:-666.615058px;}
.x9{left:-482.835058px;}
.x0{left:0.000000px;}
.x1f{left:48.779942px;}
.x13{left:52.019942px;}
.x1{left:64.439942px;}
.x26{left:205.529942px;}
.x15{left:331.274942px;}
.x14{left:429.554942px;}
.x22{left:755.279942px;}
.x16{left:1030.964942px;}
.x17{left:1064.804942px;}
.x18{left:1273.529942px;}
.x20{left:1544.249942px;}
.x21{left:1822.169942px;}
.x19{left:1986.014942px;}
.x23{left:2044.409942px;}
.x25{left:2223.899942px;}
.x1a{left:2314.514942px;}
.x24{left:2481.554942px;}
.x1b{left:2950.559942px;}
.x1d{left:2952.509942px;}
.x1e{left:3221.249942px;}
.x1c{left:3302.204942px;}
.xd{left:3997.769942px;}
.xb{left:4114.469942px;}
.xa{left:4118.069942px;}
.xc{left:4339.439942px;}
.x10{left:4353.509942px;}
.x12{left:4391.609942px;}
.x11{left:4467.269942px;}
.xf{left:4485.269942px;}
.xe{left:4487.609942px;}
@media print{
.v1{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.693333pt;}
.ls8{letter-spacing:-0.150400pt;}
.lsa{letter-spacing:-0.130667pt;}
.lsb{letter-spacing:-0.101867pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.039680pt;}
.ls6{letter-spacing:0.112000pt;}
.ls5{letter-spacing:0.145600pt;}
.ls1{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.231040pt;}
.ls7{letter-spacing:0.256000pt;}
.ls3{letter-spacing:23.360000pt;}
.ls2{letter-spacing:90.528000pt;}
.ws8{word-spacing:-29.926400pt;}
.ws18{word-spacing:-23.493120pt;}
.ws15{word-spacing:-23.322880pt;}
.ws4{word-spacing:-20.816640pt;}
.ws3{word-spacing:-17.792000pt;}
.ws1a{word-spacing:-15.454023pt;}
.ws1b{word-spacing:-15.342037pt;}
.ws2{word-spacing:-14.767360pt;}
.ws0{word-spacing:-12.276480pt;}
.ws7{word-spacing:-10.319360pt;}
.ws9{word-spacing:-2.424960pt;}
.ws6{word-spacing:-1.493333pt;}
.ws5{word-spacing:-1.024000pt;}
.ws12{word-spacing:-0.691200pt;}
.wsa{word-spacing:-0.607360pt;}
.wsb{word-spacing:-0.234240pt;}
.wsd{word-spacing:-0.042880pt;}
.ws1c{word-spacing:0.000000pt;}
.ws13{word-spacing:0.018560pt;}
.ws11{word-spacing:0.046720pt;}
.wse{word-spacing:0.082560pt;}
.ws10{word-spacing:0.260800pt;}
.wsf{word-spacing:0.266880pt;}
.ws1{word-spacing:0.390400pt;}
.ws17{word-spacing:0.412053pt;}
.ws19{word-spacing:0.736000pt;}
.ws16{word-spacing:1.072640pt;}
.wsc{word-spacing:1.781120pt;}
.ws14{word-spacing:2.184960pt;}
._9{margin-left:-6.693120pt;}
._6{margin-left:-5.241600pt;}
._a{margin-left:-4.304640pt;}
._5{margin-left:-2.522880pt;}
._0{margin-left:-1.071360pt;}
._2{width:0.932480pt;}
._1{width:2.539520pt;}
._c{width:22.405547pt;}
._3{width:24.864000pt;}
._8{width:29.618560pt;}
._4{width:31.008000pt;}
._7{width:32.692480pt;}
._b{width:2754.483200pt;}
.fs0{font-size:19.840000pt;}
.fse{font-size:37.120000pt;}
.fs1{font-size:44.160000pt;}
.fsa{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs12{font-size:55.992837pt;}
.fs13{font-size:56.127759pt;}
.fs5{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fsb{font-size:64.128000pt;}
.fs3{font-size:74.880000pt;}
.fsc{font-size:85.120000pt;}
.fsf{font-size:85.248000pt;}
.fs2{font-size:96.000000pt;}
.fs6{font-size:96.128000pt;}
.fs9{font-size:106.880000pt;}
.fs10{font-size:149.120000pt;}
.fs11{font-size:213.120000pt;}
.fsd{font-size:309.248000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:12.192000pt;}
.y1{bottom:26.272000pt;}
.y64{bottom:33.440000pt;}
.y63{bottom:68.160000pt;}
.y82{bottom:76.448000pt;}
.yb6{bottom:84.608000pt;}
.ya6{bottom:94.560000pt;}
.y9c{bottom:95.328000pt;}
.yb5{bottom:100.608000pt;}
.y62{bottom:102.720000pt;}
.y66{bottom:105.600000pt;}
.y81{bottom:114.848000pt;}
.y65{bottom:117.120000pt;}
.y9b{bottom:120.928000pt;}
.ya5{bottom:132.960000pt;}
.yb4{bottom:150.173333pt;}
.y80{bottom:158.373333pt;}
.yb0{bottom:164.573333pt;}
.yb3{bottom:166.173333pt;}
.ya4{bottom:171.360000pt;}
.yaf{bottom:180.573333pt;}
.yb2{bottom:182.173333pt;}
.y2d{bottom:193.946667pt;}
.yae{bottom:196.573333pt;}
.y7f{bottom:196.773333pt;}
.yb1{bottom:198.173333pt;}
.ya3{bottom:209.760000pt;}
.y2c{bottom:209.946667pt;}
.y7e{bottom:240.293333pt;}
.y2b{bottom:241.946667pt;}
.ya2{bottom:248.160000pt;}
.y2a{bottom:258.626667pt;}
.y61{bottom:265.600000pt;}
.y7d{bottom:278.720000pt;}
.y60{bottom:284.800000pt;}
.ya1{bottom:286.560000pt;}
.y7c{bottom:317.120000pt;}
.y5f{bottom:323.200000pt;}
.ya0{bottom:324.960000pt;}
.y9a{bottom:332.320000pt;}
.y7b{bottom:360.640000pt;}
.y5e{bottom:361.600000pt;}
.y9f{bottom:363.386667pt;}
.y5d{bottom:380.800000pt;}
.y99{bottom:386.973333pt;}
.y7a{bottom:399.040000pt;}
.y5c{bottom:400.000000pt;}
.y9e{bottom:401.786667pt;}
.y29{bottom:414.946667pt;}
.y5b{bottom:419.840000pt;}
.y98{bottom:425.373333pt;}
.y28{bottom:430.946667pt;}
.y79{bottom:437.440000pt;}
.y9d{bottom:440.186667pt;}
.y27{bottom:462.946667pt;}
.y97{bottom:463.773333pt;}
.y26{bottom:478.946667pt;}
.y78{bottom:480.960000pt;}
.y25{bottom:495.586667pt;}
.y5a{bottom:496.613333pt;}
.y96{bottom:502.173333pt;}
.y73{bottom:503.933333pt;}
.y77{bottom:519.360000pt;}
.y59{bottom:535.013333pt;}
.yab{bottom:540.320000pt;}
.y95{bottom:540.613333pt;}
.yad{bottom:542.906667pt;}
.y58{bottom:554.213333pt;}
.yaa{bottom:556.320000pt;}
.y76{bottom:557.760000pt;}
.yac{bottom:558.906667pt;}
.y57{bottom:573.413333pt;}
.y94{bottom:579.013333pt;}
.ybb{bottom:595.973333pt;}
.y75{bottom:596.186667pt;}
.y56{bottom:611.813333pt;}
.yba{bottom:611.973333pt;}
.y93{bottom:617.413333pt;}
.yb9{bottom:627.973333pt;}
.y55{bottom:631.013333pt;}
.y74{bottom:634.586667pt;}
.yb8{bottom:643.973333pt;}
.y54{bottom:650.213333pt;}
.yb7{bottom:659.973333pt;}
.y53{bottom:670.053333pt;}
.y92{bottom:673.093333pt;}
.y24{bottom:739.493333pt;}
.y52{bottom:740.453333pt;}
.y23{bottom:755.493333pt;}
.y4e{bottom:759.013333pt;}
.y51{bottom:762.853333pt;}
.y22{bottom:771.493333pt;}
.y4d{bottom:778.213333pt;}
.y50{bottom:785.253333pt;}
.y21{bottom:803.493333pt;}
.y4c{bottom:816.640000pt;}
.y4f{bottom:820.960000pt;}
.y20{bottom:835.493333pt;}
.y4b{bottom:835.840000pt;}
.y1f{bottom:851.493333pt;}
.y4a{bottom:855.040000pt;}
.y1e{bottom:868.160000pt;}
.y49{bottom:874.240000pt;}
.y48{bottom:894.080000pt;}
.y47{bottom:916.480000pt;}
.y71{bottom:951.426667pt;}
.y46{bottom:967.040000pt;}
.y45{bottom:986.240000pt;}
.y70{bottom:989.826667pt;}
.y8d{bottom:992.826667pt;}
.y44{bottom:1005.440000pt;}
.y43{bottom:1024.640000pt;}
.y6f{bottom:1028.226667pt;}
.y8c{bottom:1031.226667pt;}
.y42{bottom:1043.840000pt;}
.y1d{bottom:1048.320000pt;}
.y41{bottom:1063.040000pt;}
.y1c{bottom:1064.320000pt;}
.y6e{bottom:1066.626667pt;}
.y8b{bottom:1069.626667pt;}
.y40{bottom:1078.653333pt;}
.y1b{bottom:1080.320000pt;}
.y1a{bottom:1096.320000pt;}
.y3f{bottom:1097.853333pt;}
.y6d{bottom:1105.026667pt;}
.y8a{bottom:1108.026667pt;}
.y19{bottom:1128.320000pt;}
.y3e{bottom:1136.253333pt;}
.y6c{bottom:1143.426667pt;}
.y18{bottom:1144.320000pt;}
.y89{bottom:1146.426667pt;}
.y3d{bottom:1155.453333pt;}
.y17{bottom:1160.320000pt;}
.y16{bottom:1179.360000pt;}
.y39{bottom:1181.053333pt;}
.y6b{bottom:1181.826667pt;}
.y88{bottom:1184.826667pt;}
.y3c{bottom:1193.853333pt;}
.y38{bottom:1200.253333pt;}
.y3b{bottom:1213.053333pt;}
.y6a{bottom:1220.226667pt;}
.y91{bottom:1222.333333pt;}
.y87{bottom:1223.266667pt;}
.y3a{bottom:1252.093333pt;}
.y69{bottom:1258.653333pt;}
.y90{bottom:1260.733333pt;}
.y86{bottom:1261.666667pt;}
.yf{bottom:1293.893333pt;}
.y68{bottom:1297.053333pt;}
.y8f{bottom:1299.133333pt;}
.y85{bottom:1300.066667pt;}
.y15{bottom:1309.093333pt;}
.ye{bottom:1322.720000pt;}
.y14{bottom:1325.120000pt;}
.y67{bottom:1335.453333pt;}
.y8e{bottom:1337.533333pt;}
.y84{bottom:1338.466667pt;}
.y13{bottom:1341.120000pt;}
.yd{bottom:1351.520000pt;}
.y12{bottom:1357.120000pt;}
.yc{bottom:1378.240000pt;}
.y11{bottom:1389.120000pt;}
.y83{bottom:1392.506667pt;}
.y72{bottom:1392.826667pt;}
.yb{bottom:1395.840000pt;}
.y10{bottom:1421.760000pt;}
.y37{bottom:1492.293333pt;}
.y36{bottom:1511.013333pt;}
.ya7{bottom:1518.946667pt;}
.ya{bottom:1525.733333pt;}
.y35{bottom:1530.213333pt;}
.y9{bottom:1541.733333pt;}
.y34{bottom:1549.413333pt;}
.y33{bottom:1568.613333pt;}
.ya8{bottom:1568.826667pt;}
.y8{bottom:1573.733333pt;}
.y32{bottom:1587.813333pt;}
.y7{bottom:1589.733333pt;}
.y31{bottom:1607.653333pt;}
.y6{bottom:1621.733333pt;}
.y30{bottom:1630.053333pt;}
.ya9{bottom:1631.906667pt;}
.y5{bottom:1637.733333pt;}
.y2f{bottom:1668.160000pt;}
.y4{bottom:1671.226667pt;}
.y3{bottom:1695.546667pt;}
.y2e{bottom:1695.840000pt;}
.h1{height:14.918750pt;}
.h14{height:27.133125pt;}
.h2{height:33.206250pt;}
.h13{height:35.085938pt;}
.h6{height:38.828437pt;}
.hb{height:38.922000pt;}
.h5{height:39.943750pt;}
.h1c{height:42.049308pt;}
.h1d{height:42.103988pt;}
.h1e{height:42.150632pt;}
.h7{height:43.038750pt;}
.h11{height:46.781250pt;}
.ha{height:48.125000pt;}
.hd{height:48.221250pt;}
.h4{height:55.940625pt;}
.h10{height:56.306250pt;}
.hf{height:63.590625pt;}
.h15{height:63.923125pt;}
.h16{height:64.006250pt;}
.h18{height:64.019250pt;}
.h3{height:69.937500pt;}
.h19{height:72.000000pt;}
.h8{height:72.187500pt;}
.h9{height:72.283750pt;}
.he{height:77.863750pt;}
.h17{height:80.160000pt;}
.hc{height:80.368750pt;}
.h1a{height:111.840000pt;}
.h1b{height:159.840000pt;}
.h12{height:232.540000pt;}
.h0{height:1728.000000pt;}
.w1{width:3455.999949pt;}
.w0{width:3456.000000pt;}
.x4{left:-698.240051pt;}
.x8{left:-662.946718pt;}
.x7{left:-653.506718pt;}
.x5{left:-652.066718pt;}
.x6{left:-640.866718pt;}
.x2{left:-601.826718pt;}
.x3{left:-592.546718pt;}
.x9{left:-429.186718pt;}
.x0{left:0.000000pt;}
.x1f{left:43.359949pt;}
.x13{left:46.239949pt;}
.x1{left:57.279949pt;}
.x26{left:182.693282pt;}
.x15{left:294.466615pt;}
.x14{left:381.826615pt;}
.x22{left:671.359949pt;}
.x16{left:916.413282pt;}
.x17{left:946.493282pt;}
.x18{left:1132.026615pt;}
.x20{left:1372.666615pt;}
.x21{left:1619.706615pt;}
.x19{left:1765.346615pt;}
.x23{left:1817.253282pt;}
.x25{left:1976.799949pt;}
.x1a{left:2057.346615pt;}
.x24{left:2205.826615pt;}
.x1b{left:2622.719949pt;}
.x1d{left:2624.453282pt;}
.x1e{left:2863.333282pt;}
.x1c{left:2935.293282pt;}
.xd{left:3553.573282pt;}
.xb{left:3657.306615pt;}
.xa{left:3660.506615pt;}
.xc{left:3857.279949pt;}
.x10{left:3869.786615pt;}
.x12{left:3903.653282pt;}
.x11{left:3970.906615pt;}
.xf{left:3986.906615pt;}
.xe{left:3988.986615pt;}
}




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