
    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_b9de22a4a4b1ef2682d533fb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5e9f4b8f2a7563d7e8205b2b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d2a8087654e36d3b99b9cd1a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.133789;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_47f67864ee45b8ba6475e7f9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.148926;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_70a8e7d7016342b1326e8326.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.222168;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_0872a58375bcb4e064832f63.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.148926;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_aa84268239f1656298afd6dd.woff2')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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a59172a19092f000e97ce7f3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.851562;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:-96.480000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:10.080000px;}
.lsf{letter-spacing:-21.780000px;}
.ls1e{letter-spacing:-0.900000px;}
.ls14{letter-spacing:-0.378600px;}
.lsd{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.018720px;}
.ls9{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.028080px;}
.ls10{letter-spacing:0.037440px;}
.ls12{letter-spacing:0.129600px;}
.ls1b{letter-spacing:0.172080px;}
.ls1c{letter-spacing:0.208080px;}
.ls7{letter-spacing:0.291600px;}
.ls11{letter-spacing:0.341280px;}
.ls1d{letter-spacing:0.341400px;}
.lsc{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.369600px;}
.lsb{letter-spacing:0.378600px;}
.ls0{letter-spacing:0.378720px;}
.ls15{letter-spacing:1.260000px;}
.ls5{letter-spacing:12.780000px;}
.ls6{letter-spacing:13.500000px;}
.ls3{letter-spacing:19.980000px;}
.ls4{letter-spacing:20.700000px;}
.ls1f{letter-spacing:21.221280px;}
.ls8{letter-spacing:37.260000px;}
.ls1{letter-spacing:50.220000px;}
.ls16{letter-spacing:122.021280px;}
.ls13{letter-spacing:146.477280px;}
.ls19{letter-spacing:148.637280px;}
.ls17{letter-spacing:173.117280px;}
.ls2{letter-spacing:2346.720000px;}
.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;}
}
.wsa{word-spacing:-84.240000px;}
.ws1{word-spacing:-21.438600px;}
.ws7{word-spacing:-21.429600px;}
.ws2{word-spacing:-21.420000px;}
.wsb{word-spacing:-21.401400px;}
.ws5{word-spacing:-21.097440px;}
.ws9{word-spacing:-21.088080px;}
.ws4{word-spacing:-21.060000px;}
.ws0{word-spacing:-21.041280px;}
.ws3{word-spacing:-20.700000px;}
.ws8{word-spacing:-20.681400px;}
.ws6{word-spacing:0.000000px;}
._1d{margin-left:-2117.617440px;}
._1e{margin-left:-1758.985680px;}
._12{margin-left:-1650.222000px;}
._13{margin-left:-1618.518720px;}
._c{margin-left:-1503.267840px;}
._16{margin-left:-1243.455120px;}
._14{margin-left:-1174.161600px;}
._b{margin-left:-1118.640000px;}
._f{margin-left:-981.581520px;}
._17{margin-left:-904.764240px;}
._d{margin-left:-733.854960px;}
._15{margin-left:-662.411280px;}
._21{margin-left:-513.540000px;}
._1a{margin-left:-483.947280px;}
._1c{margin-left:-410.632560px;}
._20{margin-left:-346.130640px;}
._a{margin-left:-195.172560px;}
._18{margin-left:-59.940000px;}
._1b{margin-left:-47.700000px;}
._1f{margin-left:-43.252560px;}
._e{margin-left:-21.818160px;}
._7{margin-left:-5.507280px;}
._3{margin-left:-4.296240px;}
._2{margin-left:-3.108480px;}
._0{margin-left:-1.263600px;}
._1{width:1.259760px;}
._6{width:2.467440px;}
._30{width:3.594960px;}
._29{width:4.801680px;}
._37{width:5.863680px;}
._27{width:7.278960px;}
._28{width:8.321040px;}
._32{width:10.108800px;}
._35{width:11.808960px;}
._23{width:12.957600px;}
._4{width:14.638320px;}
._2b{width:16.089840px;}
._31{width:17.184960px;}
._26{width:18.557280px;}
._22{width:19.930080px;}
._2f{width:22.388400px;}
._11{width:24.191280px;}
._25{width:25.316880px;}
._2a{width:26.790720px;}
._3d{width:28.218000px;}
._2e{width:29.399760px;}
._2d{width:30.560880px;}
._36{width:31.774800px;}
._2c{width:34.412160px;}
._24{width:35.914800px;}
._5{width:37.486800px;}
._3b{width:42.245280px;}
._3a{width:43.693200px;}
._38{width:46.247760px;}
._39{width:47.306400px;}
._34{width:48.943440px;}
._8{width:50.291280px;}
._3c{width:51.657120px;}
._42{width:53.758560px;}
._3e{width:56.019600px;}
._3f{width:57.114720px;}
._33{width:68.824080px;}
._40{width:84.071520px;}
._41{width:85.082400px;}
._10{width:951.738240px;}
._9{width:1585.677840px;}
._19{width:1777.080000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:38.376000px;}
.y2{bottom:62.676000px;}
.y8c{bottom:104.796000px;}
.yb3{bottom:107.676000px;}
.y3b{bottom:109.296000px;}
.y64{bottom:115.416000px;}
.y8b{bottom:128.916000px;}
.yb2{bottom:131.796000px;}
.y3a{bottom:133.416000px;}
.y2b{bottom:134.856000px;}
.y63{bottom:139.536000px;}
.y8a{bottom:153.030000px;}
.yb1{bottom:155.910000px;}
.y39{bottom:157.530000px;}
.y2a{bottom:159.150000px;}
.y62{bottom:165.090000px;}
.y89{bottom:177.150000px;}
.yb0{bottom:180.210000px;}
.y38{bottom:181.650000px;}
.y29{bottom:183.270000px;}
.y61{bottom:189.210000px;}
.y88{bottom:201.270000px;}
.yaf{bottom:204.330000px;}
.y37{bottom:205.770000px;}
.y28{bottom:207.390000px;}
.y60{bottom:214.950000px;}
.y87{bottom:225.570000px;}
.yae{bottom:228.450000px;}
.y36{bottom:230.070000px;}
.y27{bottom:231.510000px;}
.y5f{bottom:240.510000px;}
.y86{bottom:249.690000px;}
.yad{bottom:252.570000px;}
.y35{bottom:254.190000px;}
.y26{bottom:255.630000px;}
.y5e{bottom:264.810000px;}
.y85{bottom:273.855000px;}
.yac{bottom:276.735000px;}
.y34{bottom:278.355000px;}
.y25{bottom:279.795000px;}
.y5d{bottom:288.975000px;}
.y84{bottom:297.975000px;}
.yab{bottom:300.855000px;}
.y33{bottom:302.475000px;}
.y24{bottom:303.915000px;}
.y5c{bottom:313.095000px;}
.y83{bottom:322.095000px;}
.yaa{bottom:324.975000px;}
.y32{bottom:326.595000px;}
.y23{bottom:328.215000px;}
.y5b{bottom:337.215000px;}
.y82{bottom:346.215000px;}
.ya9{bottom:349.275000px;}
.y31{bottom:350.715000px;}
.y22{bottom:352.335000px;}
.y5a{bottom:361.335000px;}
.y81{bottom:370.335000px;}
.ya8{bottom:373.395000px;}
.y30{bottom:375.015000px;}
.y21{bottom:376.455000px;}
.y59{bottom:387.075000px;}
.y80{bottom:394.635000px;}
.ya7{bottom:397.515000px;}
.y2f{bottom:399.135000px;}
.y20{bottom:400.575000px;}
.y58{bottom:412.635000px;}
.y7f{bottom:418.755000px;}
.ya6{bottom:421.635000px;}
.y1f{bottom:424.695000px;}
.y57{bottom:436.755000px;}
.y7e{bottom:442.875000px;}
.ya5{bottom:445.755000px;}
.y1e{bottom:448.815000px;}
.y56{bottom:462.495000px;}
.y7d{bottom:466.995000px;}
.ya4{bottom:469.875000px;}
.y1d{bottom:473.115000px;}
.y55{bottom:486.615000px;}
.y7c{bottom:491.115000px;}
.ya3{bottom:494.175000px;}
.y1c{bottom:497.235000px;}
.y54{bottom:510.735000px;}
.y7b{bottom:515.235000px;}
.ya2{bottom:518.295000px;}
.y1b{bottom:521.355000px;}
.y53{bottom:534.855000px;}
.y7a{bottom:539.535000px;}
.ya1{bottom:542.415000px;}
.y1a{bottom:545.475000px;}
.y52{bottom:559.185000px;}
.y79{bottom:563.685000px;}
.ya0{bottom:566.565000px;}
.y2e{bottom:569.625000px;}
.y51{bottom:583.305000px;}
.y78{bottom:587.805000px;}
.y9f{bottom:590.685000px;}
.y2d{bottom:593.745000px;}
.y50{bottom:607.425000px;}
.y77{bottom:611.925000px;}
.y9e{bottom:614.805000px;}
.y19{bottom:618.045000px;}
.y4f{bottom:632.985000px;}
.y76{bottom:636.045000px;}
.y9d{bottom:639.105000px;}
.y18{bottom:642.165000px;}
.y4e{bottom:657.285000px;}
.y75{bottom:660.165000px;}
.y9c{bottom:663.225000px;}
.y17{bottom:666.285000px;}
.y4d{bottom:681.405000px;}
.y74{bottom:684.285000px;}
.y9b{bottom:687.345000px;}
.y2c{bottom:690.405000px;}
.y4c{bottom:705.525000px;}
.y73{bottom:708.585000px;}
.y9a{bottom:711.465000px;}
.y16{bottom:714.525000px;}
.y4b{bottom:729.645000px;}
.y72{bottom:732.705000px;}
.y99{bottom:735.585000px;}
.y15{bottom:738.645000px;}
.y4a{bottom:753.765000px;}
.y71{bottom:756.825000px;}
.y98{bottom:759.705000px;}
.y14{bottom:762.765000px;}
.y49{bottom:777.885000px;}
.y70{bottom:780.945000px;}
.y97{bottom:783.825000px;}
.y13{bottom:787.065000px;}
.y48{bottom:802.005000px;}
.y6f{bottom:805.065000px;}
.y96{bottom:808.125000px;}
.y12{bottom:811.185000px;}
.y47{bottom:826.305000px;}
.y6e{bottom:829.185000px;}
.y95{bottom:832.245000px;}
.y11{bottom:835.305000px;}
.y46{bottom:850.470000px;}
.y6d{bottom:853.350000px;}
.y94{bottom:856.410000px;}
.y10{bottom:859.470000px;}
.y45{bottom:876.030000px;}
.y6c{bottom:879.090000px;}
.y93{bottom:880.530000px;}
.yf{bottom:883.590000px;}
.y44{bottom:900.150000px;}
.y6b{bottom:903.210000px;}
.y92{bottom:904.650000px;}
.ye{bottom:907.710000px;}
.y43{bottom:925.890000px;}
.y6a{bottom:927.330000px;}
.y91{bottom:928.770000px;}
.yd{bottom:932.010000px;}
.y42{bottom:950.010000px;}
.y69{bottom:951.630000px;}
.y90{bottom:953.070000px;}
.yc{bottom:956.130000px;}
.y41{bottom:975.750000px;}
.y8f{bottom:977.190000px;}
.yb{bottom:980.250000px;}
.y40{bottom:999.870000px;}
.y68{bottom:1001.310000px;}
.ya{bottom:1004.370000px;}
.y3f{bottom:1025.430000px;}
.y9{bottom:1028.490000px;}
.y3e{bottom:1049.550000px;}
.y67{bottom:1051.170000px;}
.y8{bottom:1052.610000px;}
.y8e{bottom:1073.670000px;}
.y3d{bottom:1075.290000px;}
.y7{bottom:1076.730000px;}
.y3c{bottom:1099.410000px;}
.y8d{bottom:1099.590000px;}
.y6{bottom:1101.030000px;}
.y66{bottom:1123.560000px;}
.y5{bottom:1125.180000px;}
.y65{bottom:1147.680000px;}
.y4{bottom:1149.300000px;}
.y1{bottom:1190.160000px;}
.h4{height:78.604805px;}
.h2{height:82.676953px;}
.h3{height:84.898125px;}
.h5{height:87.859687px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.319987px;}
.x3{left:111.455987px;}
.x6{left:114.335987px;}
.xd{left:120.995987px;}
.xf{left:132.695987px;}
.x9{left:137.915987px;}
.xb{left:139.355987px;}
.x8{left:263.009987px;}
.xa{left:283.169987px;}
.x4{left:332.354987px;}
.x10{left:351.254987px;}
.x7{left:385.814987px;}
.x2{left:430.814987px;}
.x5{left:446.474987px;}
.xe{left:590.324987px;}
.xc{left:730.334987px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:8.960000pt;}
.lsf{letter-spacing:-19.360000pt;}
.ls1e{letter-spacing:-0.800000pt;}
.ls14{letter-spacing:-0.336533pt;}
.lsd{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.016640pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.024960pt;}
.ls10{letter-spacing:0.033280pt;}
.ls12{letter-spacing:0.115200pt;}
.ls1b{letter-spacing:0.152960pt;}
.ls1c{letter-spacing:0.184960pt;}
.ls7{letter-spacing:0.259200pt;}
.ls11{letter-spacing:0.303360pt;}
.ls1d{letter-spacing:0.303467pt;}
.lsc{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.328533pt;}
.lsb{letter-spacing:0.336533pt;}
.ls0{letter-spacing:0.336640pt;}
.ls15{letter-spacing:1.120000pt;}
.ls5{letter-spacing:11.360000pt;}
.ls6{letter-spacing:12.000000pt;}
.ls3{letter-spacing:17.760000pt;}
.ls4{letter-spacing:18.400000pt;}
.ls1f{letter-spacing:18.863360pt;}
.ls8{letter-spacing:33.120000pt;}
.ls1{letter-spacing:44.640000pt;}
.ls16{letter-spacing:108.463360pt;}
.ls13{letter-spacing:130.202027pt;}
.ls19{letter-spacing:132.122027pt;}
.ls17{letter-spacing:153.882027pt;}
.ls2{letter-spacing:2085.973333pt;}
.wsa{word-spacing:-74.880000pt;}
.ws1{word-spacing:-19.056533pt;}
.ws7{word-spacing:-19.048533pt;}
.ws2{word-spacing:-19.040000pt;}
.wsb{word-spacing:-19.023467pt;}
.ws5{word-spacing:-18.753280pt;}
.ws9{word-spacing:-18.744960pt;}
.ws4{word-spacing:-18.720000pt;}
.ws0{word-spacing:-18.703360pt;}
.ws3{word-spacing:-18.400000pt;}
.ws8{word-spacing:-18.383467pt;}
.ws6{word-spacing:0.000000pt;}
._1d{margin-left:-1882.326613pt;}
._1e{margin-left:-1563.542827pt;}
._12{margin-left:-1466.864000pt;}
._13{margin-left:-1438.683307pt;}
._c{margin-left:-1336.238080pt;}
._16{margin-left:-1105.293440pt;}
._14{margin-left:-1043.699200pt;}
._b{margin-left:-994.346667pt;}
._f{margin-left:-872.516907pt;}
._17{margin-left:-804.234880pt;}
._d{margin-left:-652.315520pt;}
._15{margin-left:-588.810027pt;}
._21{margin-left:-456.480000pt;}
._1a{margin-left:-430.175360pt;}
._1c{margin-left:-365.006720pt;}
._20{margin-left:-307.671680pt;}
._a{margin-left:-173.486720pt;}
._18{margin-left:-53.280000pt;}
._1b{margin-left:-42.400000pt;}
._1f{margin-left:-38.446720pt;}
._e{margin-left:-19.393920pt;}
._7{margin-left:-4.895360pt;}
._3{margin-left:-3.818880pt;}
._2{margin-left:-2.763093pt;}
._0{margin-left:-1.123200pt;}
._1{width:1.119787pt;}
._6{width:2.193280pt;}
._30{width:3.195520pt;}
._29{width:4.268160pt;}
._37{width:5.212160pt;}
._27{width:6.470187pt;}
._28{width:7.396480pt;}
._32{width:8.985600pt;}
._35{width:10.496853pt;}
._23{width:11.517867pt;}
._4{width:13.011840pt;}
._2b{width:14.302080pt;}
._31{width:15.275520pt;}
._26{width:16.495360pt;}
._22{width:17.715627pt;}
._2f{width:19.900800pt;}
._11{width:21.503360pt;}
._25{width:22.503893pt;}
._2a{width:23.813973pt;}
._3d{width:25.082667pt;}
._2e{width:26.133120pt;}
._2d{width:27.165227pt;}
._36{width:28.244267pt;}
._2c{width:30.588587pt;}
._24{width:31.924267pt;}
._5{width:33.321600pt;}
._3b{width:37.551360pt;}
._3a{width:38.838400pt;}
._38{width:41.109120pt;}
._39{width:42.050133pt;}
._34{width:43.505280pt;}
._8{width:44.703360pt;}
._3c{width:45.917440pt;}
._42{width:47.785387pt;}
._3e{width:49.795200pt;}
._3f{width:50.768640pt;}
._33{width:61.176960pt;}
._40{width:74.730240pt;}
._41{width:75.628800pt;}
._10{width:845.989547pt;}
._9{width:1409.491413pt;}
._19{width:1579.626667pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:34.112000pt;}
.y2{bottom:55.712000pt;}
.y8c{bottom:93.152000pt;}
.yb3{bottom:95.712000pt;}
.y3b{bottom:97.152000pt;}
.y64{bottom:102.592000pt;}
.y8b{bottom:114.592000pt;}
.yb2{bottom:117.152000pt;}
.y3a{bottom:118.592000pt;}
.y2b{bottom:119.872000pt;}
.y63{bottom:124.032000pt;}
.y8a{bottom:136.026667pt;}
.yb1{bottom:138.586667pt;}
.y39{bottom:140.026667pt;}
.y2a{bottom:141.466667pt;}
.y62{bottom:146.746667pt;}
.y89{bottom:157.466667pt;}
.yb0{bottom:160.186667pt;}
.y38{bottom:161.466667pt;}
.y29{bottom:162.906667pt;}
.y61{bottom:168.186667pt;}
.y88{bottom:178.906667pt;}
.yaf{bottom:181.626667pt;}
.y37{bottom:182.906667pt;}
.y28{bottom:184.346667pt;}
.y60{bottom:191.066667pt;}
.y87{bottom:200.506667pt;}
.yae{bottom:203.066667pt;}
.y36{bottom:204.506667pt;}
.y27{bottom:205.786667pt;}
.y5f{bottom:213.786667pt;}
.y86{bottom:221.946667pt;}
.yad{bottom:224.506667pt;}
.y35{bottom:225.946667pt;}
.y26{bottom:227.226667pt;}
.y5e{bottom:235.386667pt;}
.y85{bottom:243.426667pt;}
.yac{bottom:245.986667pt;}
.y34{bottom:247.426667pt;}
.y25{bottom:248.706667pt;}
.y5d{bottom:256.866667pt;}
.y84{bottom:264.866667pt;}
.yab{bottom:267.426667pt;}
.y33{bottom:268.866667pt;}
.y24{bottom:270.146667pt;}
.y5c{bottom:278.306667pt;}
.y83{bottom:286.306667pt;}
.yaa{bottom:288.866667pt;}
.y32{bottom:290.306667pt;}
.y23{bottom:291.746667pt;}
.y5b{bottom:299.746667pt;}
.y82{bottom:307.746667pt;}
.ya9{bottom:310.466667pt;}
.y31{bottom:311.746667pt;}
.y22{bottom:313.186667pt;}
.y5a{bottom:321.186667pt;}
.y81{bottom:329.186667pt;}
.ya8{bottom:331.906667pt;}
.y30{bottom:333.346667pt;}
.y21{bottom:334.626667pt;}
.y59{bottom:344.066667pt;}
.y80{bottom:350.786667pt;}
.ya7{bottom:353.346667pt;}
.y2f{bottom:354.786667pt;}
.y20{bottom:356.066667pt;}
.y58{bottom:366.786667pt;}
.y7f{bottom:372.226667pt;}
.ya6{bottom:374.786667pt;}
.y1f{bottom:377.506667pt;}
.y57{bottom:388.226667pt;}
.y7e{bottom:393.666667pt;}
.ya5{bottom:396.226667pt;}
.y1e{bottom:398.946667pt;}
.y56{bottom:411.106667pt;}
.y7d{bottom:415.106667pt;}
.ya4{bottom:417.666667pt;}
.y1d{bottom:420.546667pt;}
.y55{bottom:432.546667pt;}
.y7c{bottom:436.546667pt;}
.ya3{bottom:439.266667pt;}
.y1c{bottom:441.986667pt;}
.y54{bottom:453.986667pt;}
.y7b{bottom:457.986667pt;}
.ya2{bottom:460.706667pt;}
.y1b{bottom:463.426667pt;}
.y53{bottom:475.426667pt;}
.y7a{bottom:479.586667pt;}
.ya1{bottom:482.146667pt;}
.y1a{bottom:484.866667pt;}
.y52{bottom:497.053333pt;}
.y79{bottom:501.053333pt;}
.ya0{bottom:503.613333pt;}
.y2e{bottom:506.333333pt;}
.y51{bottom:518.493333pt;}
.y78{bottom:522.493333pt;}
.y9f{bottom:525.053333pt;}
.y2d{bottom:527.773333pt;}
.y50{bottom:539.933333pt;}
.y77{bottom:543.933333pt;}
.y9e{bottom:546.493333pt;}
.y19{bottom:549.373333pt;}
.y4f{bottom:562.653333pt;}
.y76{bottom:565.373333pt;}
.y9d{bottom:568.093333pt;}
.y18{bottom:570.813333pt;}
.y4e{bottom:584.253333pt;}
.y75{bottom:586.813333pt;}
.y9c{bottom:589.533333pt;}
.y17{bottom:592.253333pt;}
.y4d{bottom:605.693333pt;}
.y74{bottom:608.253333pt;}
.y9b{bottom:610.973333pt;}
.y2c{bottom:613.693333pt;}
.y4c{bottom:627.133333pt;}
.y73{bottom:629.853333pt;}
.y9a{bottom:632.413333pt;}
.y16{bottom:635.133333pt;}
.y4b{bottom:648.573333pt;}
.y72{bottom:651.293333pt;}
.y99{bottom:653.853333pt;}
.y15{bottom:656.573333pt;}
.y4a{bottom:670.013333pt;}
.y71{bottom:672.733333pt;}
.y98{bottom:675.293333pt;}
.y14{bottom:678.013333pt;}
.y49{bottom:691.453333pt;}
.y70{bottom:694.173333pt;}
.y97{bottom:696.733333pt;}
.y13{bottom:699.613333pt;}
.y48{bottom:712.893333pt;}
.y6f{bottom:715.613333pt;}
.y96{bottom:718.333333pt;}
.y12{bottom:721.053333pt;}
.y47{bottom:734.493333pt;}
.y6e{bottom:737.053333pt;}
.y95{bottom:739.773333pt;}
.y11{bottom:742.493333pt;}
.y46{bottom:755.973333pt;}
.y6d{bottom:758.533333pt;}
.y94{bottom:761.253333pt;}
.y10{bottom:763.973333pt;}
.y45{bottom:778.693333pt;}
.y6c{bottom:781.413333pt;}
.y93{bottom:782.693333pt;}
.yf{bottom:785.413333pt;}
.y44{bottom:800.133333pt;}
.y6b{bottom:802.853333pt;}
.y92{bottom:804.133333pt;}
.ye{bottom:806.853333pt;}
.y43{bottom:823.013333pt;}
.y6a{bottom:824.293333pt;}
.y91{bottom:825.573333pt;}
.yd{bottom:828.453333pt;}
.y42{bottom:844.453333pt;}
.y69{bottom:845.893333pt;}
.y90{bottom:847.173333pt;}
.yc{bottom:849.893333pt;}
.y41{bottom:867.333333pt;}
.y8f{bottom:868.613333pt;}
.yb{bottom:871.333333pt;}
.y40{bottom:888.773333pt;}
.y68{bottom:890.053333pt;}
.ya{bottom:892.773333pt;}
.y3f{bottom:911.493333pt;}
.y9{bottom:914.213333pt;}
.y3e{bottom:932.933333pt;}
.y67{bottom:934.373333pt;}
.y8{bottom:935.653333pt;}
.y8e{bottom:954.373333pt;}
.y3d{bottom:955.813333pt;}
.y7{bottom:957.093333pt;}
.y3c{bottom:977.253333pt;}
.y8d{bottom:977.413333pt;}
.y6{bottom:978.693333pt;}
.y66{bottom:998.720000pt;}
.y5{bottom:1000.160000pt;}
.y65{bottom:1020.160000pt;}
.y4{bottom:1021.600000pt;}
.y1{bottom:1057.920000pt;}
.h4{height:69.870937pt;}
.h2{height:73.490625pt;}
.h3{height:75.465000pt;}
.h5{height:78.097500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.839988pt;}
.x3{left:99.071988pt;}
.x6{left:101.631988pt;}
.xd{left:107.551988pt;}
.xf{left:117.951988pt;}
.x9{left:122.591988pt;}
.xb{left:123.871988pt;}
.x8{left:233.786655pt;}
.xa{left:251.706655pt;}
.x4{left:295.426655pt;}
.x10{left:312.226655pt;}
.x7{left:342.946655pt;}
.x2{left:382.946655pt;}
.x5{left:396.866655pt;}
.xe{left:524.733322pt;}
.xc{left:649.186655pt;}
}




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