
    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_103ce72ab989d8e21efe1250.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.052734;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_28a49e1e1cfbae8821336259.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.052734;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_921a317a718adfe90c9550ce.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.051270;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_9504c470932a0ca71f241a29.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.051270;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_837df6030006e0d3bbbf3ea5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.982910;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_095d396eec5af971e9ea6828.woff2')format("woff");}.ff6{font-family:ff6;line-height:3.333984;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_20b2ed862ed929ba354090b1.woff2')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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1fc46feffe2579138e52222f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933594;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_c66c8f3ee6af80a1ae0518de.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.982910;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;}
.m2{transform:matrix(0.000000,-0.249657,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249657,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249657,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);}
.m1{transform:matrix(0.250344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250344,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v7{vertical-align:-152.640000px;}
.v1{vertical-align:-141.840000px;}
.vd{vertical-align:-100.080000px;}
.v6{vertical-align:-95.040000px;}
.ve{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.440000px;}
.v8{vertical-align:26.640000px;}
.v3{vertical-align:48.216000px;}
.v5{vertical-align:53.280000px;}
.v2{vertical-align:54.720000px;}
.v9{vertical-align:81.360000px;}
.va{vertical-align:102.960000px;}
.vb{vertical-align:105.840000px;}
.vc{vertical-align:129.600000px;}
.ls13{letter-spacing:-0.792000px;}
.ls20{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.576000px;}
.ls8{letter-spacing:-0.463800px;}
.ls12{letter-spacing:-0.193200px;}
.ls1e{letter-spacing:-0.020798px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.256200px;}
.ls1d{letter-spacing:0.288000px;}
.ls16{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.864000px;}
.lsc{letter-spacing:1.152000px;}
.ls1b{letter-spacing:1.296000px;}
.ls5{letter-spacing:1.512000px;}
.ls4{letter-spacing:1.656000px;}
.ls19{letter-spacing:2.081520px;}
.ls6{letter-spacing:2.160000px;}
.ls1c{letter-spacing:2.304000px;}
.ls10{letter-spacing:2.801520px;}
.ls14{letter-spacing:3.600000px;}
.ls1f{letter-spacing:11.808000px;}
.ls18{letter-spacing:17.921520px;}
.ls15{letter-spacing:18.144000px;}
.lsa{letter-spacing:45.072000px;}
.ls3{letter-spacing:135.972000px;}
.ls11{letter-spacing:231.732000px;}
.ls2{letter-spacing:252.264000px;}
.ls17{letter-spacing:327.288000px;}
.lsf{letter-spacing:361.560000px;}
.lse{letter-spacing:399.144000px;}
.ls1a{letter-spacing:489.000000px;}
.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;}
}
.wsb{word-spacing:-16.488000px;}
.wsa{word-spacing:-16.272000px;}
.ws6{word-spacing:-16.128000px;}
.ws3{word-spacing:-15.840000px;}
.ws2{word-spacing:-15.226440px;}
.ws1{word-spacing:-14.970240px;}
.ws0{word-spacing:-14.506440px;}
.ws8{word-spacing:-11.246400px;}
.ws4{word-spacing:0.000000px;}
.ws5{word-spacing:38.352000px;}
.ws7{word-spacing:50.112000px;}
.ws9{word-spacing:346.577521px;}
._22{margin-left:-38.064000px;}
._27{margin-left:-15.886080px;}
._1c{margin-left:-4.320000px;}
._14{margin-left:-2.479680px;}
._0{margin-left:-1.192320px;}
._7{width:1.056000px;}
._f{width:2.952000px;}
._10{width:4.248000px;}
._19{width:6.168000px;}
._c{width:7.528320px;}
._b{width:8.568000px;}
._12{width:9.632640px;}
._5{width:10.752000px;}
._4{width:11.856000px;}
._6{width:13.608000px;}
._17{width:15.168960px;}
._1f{width:16.248960px;}
._18{width:17.496000px;}
._16{width:18.671040px;}
._20{width:19.848960px;}
._1a{width:21.623040px;}
._9{width:23.160960px;}
._8{width:24.192000px;}
._15{width:25.992000px;}
._24{width:28.080000px;}
._26{width:30.167040px;}
._1b{width:31.456320px;}
._11{width:32.616000px;}
._21{width:34.920000px;}
._13{width:36.432000px;}
._1d{width:38.880000px;}
._1e{width:40.620000px;}
._a{width:42.120000px;}
._28{width:47.319360px;}
._e{width:49.016640px;}
._d{width:50.880000px;}
._23{width:54.000000px;}
._3{width:57.816000px;}
._30{width:63.972000px;}
._2e{width:67.176000px;}
._2b{width:68.808000px;}
._2a{width:70.488000px;}
._33{width:74.952000px;}
._32{width:77.548320px;}
._25{width:80.064000px;}
._2d{width:104.544000px;}
._31{width:106.464000px;}
._2f{width:277.344000px;}
._1{width:365.752080px;}
._2c{width:851.184000px;}
._2{width:1430.369760px;}
._29{width:1603.884000px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc2{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:51.120000px;}
.fs5{font-size:62.392689px;}
.fs4{font-size:62.475879px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:83.273442px;}
.fs6{font-size:83.304663px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ya9{bottom:6.738376px;}
.ya7{bottom:42.801696px;}
.y2{bottom:58.536000px;}
.ya0{bottom:63.100118px;}
.ya1{bottom:104.154507px;}
.y61{bottom:113.256000px;}
.y9e{bottom:113.796000px;}
.yb5{bottom:114.516000px;}
.y28{bottom:121.896000px;}
.ya8{bottom:125.350690px;}
.y32{bottom:133.236000px;}
.y71{bottom:134.496000px;}
.y60{bottom:137.016000px;}
.yb4{bottom:138.096000px;}
.y27{bottom:142.416000px;}
.ya2{bottom:145.212363px;}
.y4d{bottom:153.570000px;}
.y9d{bottom:154.290000px;}
.y9f{bottom:154.682572px;}
.y31{bottom:156.990000px;}
.y86{bottom:157.530000px;}
.y70{bottom:158.250000px;}
.y5f{bottom:160.590000px;}
.yb3{bottom:161.850000px;}
.y4c{bottom:177.330000px;}
.y85{bottom:179.310000px;}
.y30{bottom:180.570000px;}
.y6f{bottom:182.010000px;}
.y5e{bottom:184.350000px;}
.yb2{bottom:185.610000px;}
.ya3{bottom:186.261552px;}
.y26{bottom:189.930000px;}
.y4b{bottom:201.090000px;}
.y2f{bottom:204.330000px;}
.y6e{bottom:205.590000px;}
.y5d{bottom:208.110000px;}
.yb1{bottom:209.370000px;}
.y25{bottom:213.510000px;}
.y84{bottom:218.550000px;}
.y4a{bottom:224.670000px;}
.ya4{bottom:227.319408px;}
.y2e{bottom:228.090000px;}
.y6d{bottom:229.350000px;}
.y5c{bottom:231.870000px;}
.yb0{bottom:232.950000px;}
.y24{bottom:237.270000px;}
.y49{bottom:248.430000px;}
.y2d{bottom:251.850000px;}
.y6c{bottom:253.110000px;}
.y5b{bottom:255.450000px;}
.yaf{bottom:256.710000px;}
.y23{bottom:261.030000px;}
.ya5{bottom:268.368598px;}
.y48{bottom:272.190000px;}
.y2c{bottom:275.430000px;}
.y6b{bottom:276.870000px;}
.y5a{bottom:279.210000px;}
.yae{bottom:280.470000px;}
.y22{bottom:284.610000px;}
.y47{bottom:295.995000px;}
.y2b{bottom:298.695000px;}
.y6a{bottom:300.495000px;}
.y59{bottom:303.015000px;}
.yad{bottom:304.275000px;}
.y21{bottom:308.415000px;}
.ya6{bottom:309.426453px;}
.y46{bottom:319.575000px;}
.y2a{bottom:320.475000px;}
.y69{bottom:324.255000px;}
.y58{bottom:326.235000px;}
.yac{bottom:327.855000px;}
.y20{bottom:332.175000px;}
.y29{bottom:337.755000px;}
.y45{bottom:343.335000px;}
.y57{bottom:343.515000px;}
.y68{bottom:348.015000px;}
.yab{bottom:351.615000px;}
.y1f{bottom:355.935000px;}
.y44{bottom:367.095000px;}
.y67{bottom:371.235000px;}
.yaa{bottom:375.375000px;}
.y1e{bottom:379.515000px;}
.y43{bottom:390.855000px;}
.y66{bottom:392.835000px;}
.y83{bottom:398.955000px;}
.y1d{bottom:403.275000px;}
.y42{bottom:414.435000px;}
.y65{bottom:414.615000px;}
.y82{bottom:422.715000px;}
.y1c{bottom:427.035000px;}
.y64{bottom:432.075000px;}
.y41{bottom:437.655000px;}
.y81{bottom:446.475000px;}
.y1b{bottom:450.795000px;}
.y40{bottom:459.435000px;}
.y80{bottom:470.235000px;}
.y1a{bottom:474.375000px;}
.y3f{bottom:476.715000px;}
.y9c{bottom:489.495000px;}
.y7f{bottom:493.815000px;}
.y19{bottom:498.135000px;}
.y88{bottom:515.415000px;}
.y7e{bottom:517.575000px;}
.y18{bottom:521.895000px;}
.y87{bottom:527.475000px;}
.y9b{bottom:538.995000px;}
.y7d{bottom:541.335000px;}
.y17{bottom:545.655000px;}
.y9a{bottom:562.605000px;}
.y7c{bottom:565.125000px;}
.y16{bottom:569.265000px;}
.y99{bottom:586.365000px;}
.y7b{bottom:588.705000px;}
.y15{bottom:593.025000px;}
.y98{bottom:610.125000px;}
.y7a{bottom:612.465000px;}
.y14{bottom:616.785000px;}
.y97{bottom:633.705000px;}
.y79{bottom:636.225000px;}
.y13{bottom:640.365000px;}
.y96{bottom:657.465000px;}
.y78{bottom:659.985000px;}
.y12{bottom:664.125000px;}
.y95{bottom:681.225000px;}
.y77{bottom:683.565000px;}
.y11{bottom:687.885000px;}
.y94{bottom:704.985000px;}
.y76{bottom:707.325000px;}
.y10{bottom:711.645000px;}
.y93{bottom:728.565000px;}
.y75{bottom:731.085000px;}
.yf{bottom:735.225000px;}
.y92{bottom:752.325000px;}
.y74{bottom:754.665000px;}
.ye{bottom:758.985000px;}
.y91{bottom:776.085000px;}
.y73{bottom:778.425000px;}
.yd{bottom:782.745000px;}
.y90{bottom:799.845000px;}
.y72{bottom:802.185000px;}
.yc{bottom:806.550000px;}
.y8f{bottom:823.470000px;}
.y3e{bottom:825.990000px;}
.yb{bottom:830.130000px;}
.y8e{bottom:847.230000px;}
.y3d{bottom:849.570000px;}
.ya{bottom:853.350000px;}
.y56{bottom:853.710000px;}
.y8d{bottom:870.990000px;}
.y3c{bottom:873.330000px;}
.y9{bottom:875.130000px;}
.y55{bottom:877.470000px;}
.y8c{bottom:894.750000px;}
.y3b{bottom:897.090000px;}
.y8{bottom:897.450000px;}
.y63{bottom:897.810000px;}
.y54{bottom:901.230000px;}
.y62{bottom:917.970000px;}
.y8b{bottom:918.870000px;}
.y3a{bottom:920.850000px;}
.y7{bottom:921.030000px;}
.y53{bottom:924.990000px;}
.y39{bottom:944.430000px;}
.y6{bottom:947.850000px;}
.y52{bottom:948.570000px;}
.y8a{bottom:966.570000px;}
.y38{bottom:968.190000px;}
.y51{bottom:972.330000px;}
.y5{bottom:983.490000px;}
.y37{bottom:991.950000px;}
.y50{bottom:996.090000px;}
.y89{bottom:1015.530000px;}
.y36{bottom:1015.710000px;}
.y4{bottom:1015.890000px;}
.y4f{bottom:1028.130000px;}
.y35{bottom:1039.290000px;}
.y3{bottom:1039.650000px;}
.y4e{bottom:1040.190000px;}
.y1{bottom:1056.570000px;}
.y34{bottom:1063.080000px;}
.y33{bottom:1118.340000px;}
.h5{height:53.302500px;}
.he{height:54.563137px;}
.hd{height:54.635888px;}
.h1{height:57.927656px;}
.h2{height:62.859375px;}
.h4{height:62.964844px;}
.h10{height:72.701618px;}
.hf{height:72.728875px;}
.h8{height:74.004654px;}
.h3{height:94.289062px;}
.h6{height:143.542969px;}
.hb{height:191.782969px;}
.h7{height:198.262969px;}
.h9{height:246.502969px;}
.ha{height:249.382969px;}
.hc{height:327.873579px;}
.h0{height:1188.000000px;}
.w1{width:569.699761px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1c{left:28.094489px;}
.x1a{left:38.882443px;}
.x19{left:46.796386px;}
.x2{left:81.000000px;}
.x13{left:88.200000px;}
.x4{left:94.860000px;}
.x9{left:108.036000px;}
.x1b{left:114.379029px;}
.x14{left:164.730000px;}
.x18{left:173.652401px;}
.x12{left:269.130000px;}
.x1d{left:278.029303px;}
.x15{left:286.050000px;}
.xa{left:293.790000px;}
.x7{left:308.910000px;}
.x8{left:365.475000px;}
.x6{left:385.095000px;}
.x5{left:389.055000px;}
.xe{left:432.075000px;}
.x3{left:459.075000px;}
.xc{left:486.075000px;}
.xb{left:513.075000px;}
.x11{left:583.665000px;}
.xf{left:622.185000px;}
.x16{left:663.405000px;}
.x10{left:679.425000px;}
.x17{left:744.810000px;}
.xd{left:837.150000px;}
.x1{left:918.150000px;}
@media print{
.v7{vertical-align:-135.680000pt;}
.v1{vertical-align:-126.080000pt;}
.vd{vertical-align:-88.960000pt;}
.v6{vertical-align:-84.480000pt;}
.ve{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.280000pt;}
.v8{vertical-align:23.680000pt;}
.v3{vertical-align:42.858667pt;}
.v5{vertical-align:47.360000pt;}
.v2{vertical-align:48.640000pt;}
.v9{vertical-align:72.320000pt;}
.va{vertical-align:91.520000pt;}
.vb{vertical-align:94.080000pt;}
.vc{vertical-align:115.200000pt;}
.ls13{letter-spacing:-0.704000pt;}
.ls20{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.512000pt;}
.ls8{letter-spacing:-0.412267pt;}
.ls12{letter-spacing:-0.171733pt;}
.ls1e{letter-spacing:-0.018487pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.227733pt;}
.ls1d{letter-spacing:0.256000pt;}
.ls16{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.768000pt;}
.lsc{letter-spacing:1.024000pt;}
.ls1b{letter-spacing:1.152000pt;}
.ls5{letter-spacing:1.344000pt;}
.ls4{letter-spacing:1.472000pt;}
.ls19{letter-spacing:1.850240pt;}
.ls6{letter-spacing:1.920000pt;}
.ls1c{letter-spacing:2.048000pt;}
.ls10{letter-spacing:2.490240pt;}
.ls14{letter-spacing:3.200000pt;}
.ls1f{letter-spacing:10.496000pt;}
.ls18{letter-spacing:15.930240pt;}
.ls15{letter-spacing:16.128000pt;}
.lsa{letter-spacing:40.064000pt;}
.ls3{letter-spacing:120.864000pt;}
.ls11{letter-spacing:205.984000pt;}
.ls2{letter-spacing:224.234667pt;}
.ls17{letter-spacing:290.922667pt;}
.lsf{letter-spacing:321.386667pt;}
.lse{letter-spacing:354.794667pt;}
.ls1a{letter-spacing:434.666667pt;}
.wsb{word-spacing:-14.656000pt;}
.wsa{word-spacing:-14.464000pt;}
.ws6{word-spacing:-14.336000pt;}
.ws3{word-spacing:-14.080000pt;}
.ws2{word-spacing:-13.534613pt;}
.ws1{word-spacing:-13.306880pt;}
.ws0{word-spacing:-12.894613pt;}
.ws8{word-spacing:-9.996800pt;}
.ws4{word-spacing:0.000000pt;}
.ws5{word-spacing:34.090667pt;}
.ws7{word-spacing:44.544000pt;}
.ws9{word-spacing:308.068908pt;}
._22{margin-left:-33.834667pt;}
._27{margin-left:-14.120960pt;}
._1c{margin-left:-3.840000pt;}
._14{margin-left:-2.204160pt;}
._0{margin-left:-1.059840pt;}
._7{width:0.938667pt;}
._f{width:2.624000pt;}
._10{width:3.776000pt;}
._19{width:5.482667pt;}
._c{width:6.691840pt;}
._b{width:7.616000pt;}
._12{width:8.562347pt;}
._5{width:9.557333pt;}
._4{width:10.538667pt;}
._6{width:12.096000pt;}
._17{width:13.483520pt;}
._1f{width:14.443520pt;}
._18{width:15.552000pt;}
._16{width:16.596480pt;}
._20{width:17.643520pt;}
._1a{width:19.220480pt;}
._9{width:20.587520pt;}
._8{width:21.504000pt;}
._15{width:23.104000pt;}
._24{width:24.960000pt;}
._26{width:26.815147pt;}
._1b{width:27.961173pt;}
._11{width:28.992000pt;}
._21{width:31.040000pt;}
._13{width:32.384000pt;}
._1d{width:34.560000pt;}
._1e{width:36.106667pt;}
._a{width:37.440000pt;}
._28{width:42.061653pt;}
._e{width:43.570347pt;}
._d{width:45.226667pt;}
._23{width:48.000000pt;}
._3{width:51.392000pt;}
._30{width:56.864000pt;}
._2e{width:59.712000pt;}
._2b{width:61.162667pt;}
._2a{width:62.656000pt;}
._33{width:66.624000pt;}
._32{width:68.931840pt;}
._25{width:71.168000pt;}
._2d{width:92.928000pt;}
._31{width:94.634667pt;}
._2f{width:246.528000pt;}
._1{width:325.112960pt;}
._2c{width:756.608000pt;}
._2{width:1271.439787pt;}
._29{width:1425.674667pt;}
.fs3{font-size:45.440000pt;}
.fs5{font-size:55.460168pt;}
.fs4{font-size:55.534115pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.020837pt;}
.fs6{font-size:74.048589pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ya9{bottom:5.989667pt;}
.ya7{bottom:38.045952pt;}
.y2{bottom:52.032000pt;}
.ya0{bottom:56.088994pt;}
.ya1{bottom:92.581784pt;}
.y61{bottom:100.672000pt;}
.y9e{bottom:101.152000pt;}
.yb5{bottom:101.792000pt;}
.y28{bottom:108.352000pt;}
.ya8{bottom:111.422835pt;}
.y32{bottom:118.432000pt;}
.y71{bottom:119.552000pt;}
.y60{bottom:121.792000pt;}
.yb4{bottom:122.752000pt;}
.y27{bottom:126.592000pt;}
.ya2{bottom:129.077656pt;}
.y4d{bottom:136.506667pt;}
.y9d{bottom:137.146667pt;}
.y9f{bottom:137.495619pt;}
.y31{bottom:139.546667pt;}
.y86{bottom:140.026667pt;}
.y70{bottom:140.666667pt;}
.y5f{bottom:142.746667pt;}
.yb3{bottom:143.866667pt;}
.y4c{bottom:157.626667pt;}
.y85{bottom:159.386667pt;}
.y30{bottom:160.506667pt;}
.y6f{bottom:161.786667pt;}
.y5e{bottom:163.866667pt;}
.yb2{bottom:164.986667pt;}
.ya3{bottom:165.565824pt;}
.y26{bottom:168.826667pt;}
.y4b{bottom:178.746667pt;}
.y2f{bottom:181.626667pt;}
.y6e{bottom:182.746667pt;}
.y5d{bottom:184.986667pt;}
.yb1{bottom:186.106667pt;}
.y25{bottom:189.786667pt;}
.y84{bottom:194.266667pt;}
.y4a{bottom:199.706667pt;}
.ya4{bottom:202.061696pt;}
.y2e{bottom:202.746667pt;}
.y6d{bottom:203.866667pt;}
.y5c{bottom:206.106667pt;}
.yb0{bottom:207.066667pt;}
.y24{bottom:210.906667pt;}
.y49{bottom:220.826667pt;}
.y2d{bottom:223.866667pt;}
.y6c{bottom:224.986667pt;}
.y5b{bottom:227.066667pt;}
.yaf{bottom:228.186667pt;}
.y23{bottom:232.026667pt;}
.ya5{bottom:238.549865pt;}
.y48{bottom:241.946667pt;}
.y2c{bottom:244.826667pt;}
.y6b{bottom:246.106667pt;}
.y5a{bottom:248.186667pt;}
.yae{bottom:249.306667pt;}
.y22{bottom:252.986667pt;}
.y47{bottom:263.106667pt;}
.y2b{bottom:265.506667pt;}
.y6a{bottom:267.106667pt;}
.y59{bottom:269.346667pt;}
.yad{bottom:270.466667pt;}
.y21{bottom:274.146667pt;}
.ya6{bottom:275.045736pt;}
.y46{bottom:284.066667pt;}
.y2a{bottom:284.866667pt;}
.y69{bottom:288.226667pt;}
.y58{bottom:289.986667pt;}
.yac{bottom:291.426667pt;}
.y20{bottom:295.266667pt;}
.y29{bottom:300.226667pt;}
.y45{bottom:305.186667pt;}
.y57{bottom:305.346667pt;}
.y68{bottom:309.346667pt;}
.yab{bottom:312.546667pt;}
.y1f{bottom:316.386667pt;}
.y44{bottom:326.306667pt;}
.y67{bottom:329.986667pt;}
.yaa{bottom:333.666667pt;}
.y1e{bottom:337.346667pt;}
.y43{bottom:347.426667pt;}
.y66{bottom:349.186667pt;}
.y83{bottom:354.626667pt;}
.y1d{bottom:358.466667pt;}
.y42{bottom:368.386667pt;}
.y65{bottom:368.546667pt;}
.y82{bottom:375.746667pt;}
.y1c{bottom:379.586667pt;}
.y64{bottom:384.066667pt;}
.y41{bottom:389.026667pt;}
.y81{bottom:396.866667pt;}
.y1b{bottom:400.706667pt;}
.y40{bottom:408.386667pt;}
.y80{bottom:417.986667pt;}
.y1a{bottom:421.666667pt;}
.y3f{bottom:423.746667pt;}
.y9c{bottom:435.106667pt;}
.y7f{bottom:438.946667pt;}
.y19{bottom:442.786667pt;}
.y88{bottom:458.146667pt;}
.y7e{bottom:460.066667pt;}
.y18{bottom:463.906667pt;}
.y87{bottom:468.866667pt;}
.y9b{bottom:479.106667pt;}
.y7d{bottom:481.186667pt;}
.y17{bottom:485.026667pt;}
.y9a{bottom:500.093333pt;}
.y7c{bottom:502.333333pt;}
.y16{bottom:506.013333pt;}
.y99{bottom:521.213333pt;}
.y7b{bottom:523.293333pt;}
.y15{bottom:527.133333pt;}
.y98{bottom:542.333333pt;}
.y7a{bottom:544.413333pt;}
.y14{bottom:548.253333pt;}
.y97{bottom:563.293333pt;}
.y79{bottom:565.533333pt;}
.y13{bottom:569.213333pt;}
.y96{bottom:584.413333pt;}
.y78{bottom:586.653333pt;}
.y12{bottom:590.333333pt;}
.y95{bottom:605.533333pt;}
.y77{bottom:607.613333pt;}
.y11{bottom:611.453333pt;}
.y94{bottom:626.653333pt;}
.y76{bottom:628.733333pt;}
.y10{bottom:632.573333pt;}
.y93{bottom:647.613333pt;}
.y75{bottom:649.853333pt;}
.yf{bottom:653.533333pt;}
.y92{bottom:668.733333pt;}
.y74{bottom:670.813333pt;}
.ye{bottom:674.653333pt;}
.y91{bottom:689.853333pt;}
.y73{bottom:691.933333pt;}
.yd{bottom:695.773333pt;}
.y90{bottom:710.973333pt;}
.y72{bottom:713.053333pt;}
.yc{bottom:716.933333pt;}
.y8f{bottom:731.973333pt;}
.y3e{bottom:734.213333pt;}
.yb{bottom:737.893333pt;}
.y8e{bottom:753.093333pt;}
.y3d{bottom:755.173333pt;}
.ya{bottom:758.533333pt;}
.y56{bottom:758.853333pt;}
.y8d{bottom:774.213333pt;}
.y3c{bottom:776.293333pt;}
.y9{bottom:777.893333pt;}
.y55{bottom:779.973333pt;}
.y8c{bottom:795.333333pt;}
.y3b{bottom:797.413333pt;}
.y8{bottom:797.733333pt;}
.y63{bottom:798.053333pt;}
.y54{bottom:801.093333pt;}
.y62{bottom:815.973333pt;}
.y8b{bottom:816.773333pt;}
.y3a{bottom:818.533333pt;}
.y7{bottom:818.693333pt;}
.y53{bottom:822.213333pt;}
.y39{bottom:839.493333pt;}
.y6{bottom:842.533333pt;}
.y52{bottom:843.173333pt;}
.y8a{bottom:859.173333pt;}
.y38{bottom:860.613333pt;}
.y51{bottom:864.293333pt;}
.y5{bottom:874.213333pt;}
.y37{bottom:881.733333pt;}
.y50{bottom:885.413333pt;}
.y89{bottom:902.693333pt;}
.y36{bottom:902.853333pt;}
.y4{bottom:903.013333pt;}
.y4f{bottom:913.893333pt;}
.y35{bottom:923.813333pt;}
.y3{bottom:924.133333pt;}
.y4e{bottom:924.613333pt;}
.y1{bottom:939.173333pt;}
.y34{bottom:944.960000pt;}
.y33{bottom:994.080000pt;}
.h5{height:47.380000pt;}
.he{height:48.500567pt;}
.hd{height:48.565234pt;}
.h1{height:51.491250pt;}
.h2{height:55.875000pt;}
.h4{height:55.968750pt;}
.h10{height:64.623661pt;}
.hf{height:64.647889pt;}
.h8{height:65.781915pt;}
.h3{height:83.812500pt;}
.h6{height:127.593750pt;}
.hb{height:170.473750pt;}
.h7{height:176.233750pt;}
.h9{height:219.113750pt;}
.ha{height:221.673750pt;}
.hc{height:291.443182pt;}
.h0{height:1056.000000pt;}
.w1{width:506.399788pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:24.972879pt;}
.x1a{left:34.562171pt;}
.x19{left:41.596787pt;}
.x2{left:72.000000pt;}
.x13{left:78.400000pt;}
.x4{left:84.320000pt;}
.x9{left:96.032000pt;}
.x1b{left:101.670248pt;}
.x14{left:146.426667pt;}
.x18{left:154.357690pt;}
.x12{left:239.226667pt;}
.x1d{left:247.137158pt;}
.x15{left:254.266667pt;}
.xa{left:261.146667pt;}
.x7{left:274.586667pt;}
.x8{left:324.866667pt;}
.x6{left:342.306667pt;}
.x5{left:345.826667pt;}
.xe{left:384.066667pt;}
.x3{left:408.066667pt;}
.xc{left:432.066667pt;}
.xb{left:456.066667pt;}
.x11{left:518.813333pt;}
.xf{left:553.053333pt;}
.x16{left:589.693333pt;}
.x10{left:603.933333pt;}
.x17{left:662.053333pt;}
.xd{left:744.133333pt;}
.x1{left:816.133333pt;}
}




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