
    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_ceb2bb832aa3732dadf19ff9.woff')format("woff");}.ff1{font-family:ff1;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c529f4d51cee6f0d6b1a38f8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_62f914978a93f48e280e52be.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2f294090595906900d9e221b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_931c613113b8c782333911f7.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_280b2a58f615ba8ba0352c94.woff')format("woff");}.ff6{font-family:ff6;line-height:1.063477;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_9691de6cfa6d87888fb89185.woff')format("woff");}.ff7{font-family:ff7;line-height:1.056641;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_310576626060fb27908a0dc8.woff')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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_91fd64d906184ef7e9d4c9c8.woff')format("woff");}.ff9{font-family:ff9;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d774e40b9b960386b6fd2514.woff')format("woff");}.ffa{font-family:ffa;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;}
.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:-15.120000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v8{vertical-align:30.600000px;}
.v7{vertical-align:35.280000px;}
.v5{vertical-align:40.320000px;}
.v4{vertical-align:45.360000px;}
.v6{vertical-align:57.240000px;}
.ls15{letter-spacing:-0.339600px;}
.ls11{letter-spacing:-0.299400px;}
.ls19{letter-spacing:-0.291600px;}
.lsb{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls18{letter-spacing:-0.093000px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls9{letter-spacing:-0.008400px;}
.ls5{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.019440px;}
.ls16{letter-spacing:0.020160px;}
.ls1a{letter-spacing:0.041760px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.060480px;}
.ls10{letter-spacing:0.060600px;}
.ls2{letter-spacing:0.065520px;}
.ls1f{letter-spacing:0.074160px;}
.ls1b{letter-spacing:0.086400px;}
.ls1{letter-spacing:0.090000px;}
.ls17{letter-spacing:0.101640px;}
.ls6{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.173400px;}
.ls1e{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.180480px;}
.ls14{letter-spacing:0.199200px;}
.ls20{letter-spacing:0.533400px;}
.ls12{letter-spacing:9.900000px;}
.ls0{letter-spacing:13.347360px;}
.ls1d{letter-spacing:47.726640px;}
.ls1c{letter-spacing:80.846640px;}
.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;}
}
.ws6{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws15{word-spacing:-13.759800px;}
.wsf{word-spacing:-13.425600px;}
.ws4{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.275360px;}
.ws14{word-spacing:-13.268160px;}
.ws11{word-spacing:-13.246560px;}
.wsd{word-spacing:-13.245840px;}
.ws2{word-spacing:-13.226400px;}
.ws12{word-spacing:-13.133400px;}
.ws3{word-spacing:-13.039800px;}
.ws13{word-spacing:-12.934800px;}
.ws10{word-spacing:-12.886800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws9{word-spacing:-8.614200px;}
.ws7{word-spacing:-8.553600px;}
.wsa{word-spacing:-8.254200px;}
.ws8{word-spacing:0.000000px;}
.wse{word-spacing:3.223800px;}
.ws5{word-spacing:4.304880px;}
._a{margin-left:-3.547200px;}
._7{margin-left:-2.233200px;}
._0{margin-left:-1.110000px;}
._2{width:1.244628px;}
._5{width:2.585400px;}
._6{width:4.454040px;}
._3{width:5.854560px;}
._4{width:7.755600px;}
._9{width:9.075729px;}
._8{width:10.100400px;}
._e{width:11.944800px;}
._b{width:14.412612px;}
._f{width:15.450840px;}
._13{width:17.975880px;}
._1{width:19.711800px;}
._14{width:21.216240px;}
._11{width:22.869503px;}
._c{width:24.829560px;}
._d{width:26.318532px;}
._16{width:34.652520px;}
._15{width:35.771400px;}
._17{width:48.905400px;}
._12{width:100.077480px;}
._10{width:304.281120px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ya4{bottom:7.830000px;}
.ya6{bottom:29.970000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:100.200000px;}
.ya2{bottom:114.420000px;}
.yf4{bottom:115.680000px;}
.y58{bottom:129.270000px;}
.ya1{bottom:131.970000px;}
.yf3{bottom:133.320000px;}
.ycb{bottom:143.220000px;}
.ya0{bottom:149.610000px;}
.y27{bottom:158.340000px;}
.yf2{bottom:159.870000px;}
.yca{bottom:160.770000px;}
.y57{bottom:164.910000px;}
.y9f{bottom:167.160000px;}
.y7f{bottom:172.920000px;}
.y26{bottom:175.980000px;}
.yf1{bottom:177.510000px;}
.y9e{bottom:184.800000px;}
.yc9{bottom:187.680000px;}
.y25{bottom:193.530000px;}
.y56{bottom:200.460000px;}
.yf0{bottom:204.060000px;}
.y7e{bottom:208.470000px;}
.y24{bottom:211.170000px;}
.y9d{bottom:211.350000px;}
.y55{bottom:218.100000px;}
.yef{bottom:221.610000px;}
.y23{bottom:228.720000px;}
.y9c{bottom:228.900000px;}
.y54{bottom:235.650000px;}
.yc8{bottom:235.920000px;}
.y7d{bottom:244.020000px;}
.yee{bottom:248.250000px;}
.y53{bottom:253.200000px;}
.yc7{bottom:253.560000px;}
.y22{bottom:264.270000px;}
.y9b{bottom:264.540000px;}
.yed{bottom:265.800000px;}
.y52{bottom:270.840000px;}
.y7c{bottom:279.660000px;}
.yc6{bottom:280.470000px;}
.y21{bottom:281.910000px;}
.y9a{bottom:282.090000px;}
.yec{bottom:292.440000px;}
.y51{bottom:297.390000px;}
.y20{bottom:299.460000px;}
.y99{bottom:299.730000px;}
.yeb{bottom:309.990000px;}
.y7b{bottom:315.210000px;}
.y1f{bottom:317.100000px;}
.yc5{bottom:317.460000px;}
.y50{bottom:332.940000px;}
.y98{bottom:335.280000px;}
.yea{bottom:336.540000px;}
.y1e{bottom:344.010000px;}
.yc4{bottom:344.370000px;}
.y4f{bottom:350.580000px;}
.y7a{bottom:350.850000px;}
.y97{bottom:352.830000px;}
.ye9{bottom:354.180000px;}
.y4e{bottom:368.130000px;}
.y79{bottom:368.400000px;}
.y96{bottom:370.470000px;}
.ye8{bottom:380.730000px;}
.yc3{bottom:381.360000px;}
.y4d{bottom:385.770000px;}
.y78{bottom:385.950000px;}
.y95{bottom:388.020000px;}
.y1d{bottom:392.610000px;}
.ye7{bottom:398.370000px;}
.yc2{bottom:399.000000px;}
.y4c{bottom:403.320000px;}
.y94{bottom:405.660000px;}
.y77{bottom:412.590000px;}
.yc1{bottom:416.550000px;}
.y4b{bottom:420.870000px;}
.y93{bottom:423.210000px;}
.ye6{bottom:424.920000px;}
.y1c{bottom:429.600000px;}
.yc0{bottom:434.190000px;}
.y92{bottom:440.760000px;}
.ye5{bottom:442.470000px;}
.y1b{bottom:447.150000px;}
.y4a{bottom:447.510000px;}
.y76{bottom:448.500000px;}
.ybf{bottom:451.740000px;}
.y91{bottom:458.400000px;}
.y1a{bottom:464.790000px;}
.ye4{bottom:469.110000px;}
.ybe{bottom:469.290000px;}
.y90{bottom:475.980000px;}
.y19{bottom:482.370000px;}
.y49{bottom:483.090000px;}
.ye3{bottom:486.690000px;}
.y8f{bottom:493.530000px;}
.ybd{bottom:496.230000px;}
.y75{bottom:496.770000px;}
.y18{bottom:499.920000px;}
.y48{bottom:500.730000px;}
.y8e{bottom:511.170000px;}
.ye2{bottom:513.330000px;}
.y74{bottom:514.410000px;}
.y17{bottom:517.560000px;}
.y47{bottom:518.280000px;}
.y8d{bottom:528.720000px;}
.ye1{bottom:530.880000px;}
.y73{bottom:531.960000px;}
.ybc{bottom:533.580000px;}
.y16{bottom:535.110000px;}
.y46{bottom:535.830000px;}
.y8c{bottom:546.360000px;}
.ye0{bottom:548.430000px;}
.y72{bottom:549.510000px;}
.y15{bottom:552.750000px;}
.y45{bottom:553.470000px;}
.y8b{bottom:563.910000px;}
.y71{bottom:567.150000px;}
.y14{bottom:570.300000px;}
.y44{bottom:571.020000px;}
.ydf{bottom:575.070000px;}
.y8a{bottom:581.460000px;}
.ybb{bottom:581.910000px;}
.y13{bottom:587.850000px;}
.y43{bottom:588.660000px;}
.yde{bottom:592.620000px;}
.y89{bottom:599.100000px;}
.yba{bottom:599.460000px;}
.y70{bottom:602.700000px;}
.y12{bottom:605.490000px;}
.y42{bottom:615.210000px;}
.yb9{bottom:617.010000px;}
.ydd{bottom:619.260000px;}
.y6f{bottom:620.340000px;}
.y11{bottom:623.040000px;}
.y88{bottom:634.650000px;}
.ydc{bottom:636.810000px;}
.y6e{bottom:637.890000px;}
.y10{bottom:640.680000px;}
.y41{bottom:651.120000px;}
.y87{bottom:652.290000px;}
.y6d{bottom:655.440000px;}
.yb8{bottom:661.560000px;}
.ydb{bottom:663.360000px;}
.yf{bottom:667.590000px;}
.y86{bottom:669.840000px;}
.yda{bottom:681.000000px;}
.y6c{bottom:682.080000px;}
.y85{bottom:687.390000px;}
.y40{bottom:699.360000px;}
.y84{bottom:705.030000px;}
.yd9{bottom:707.550000px;}
.yb7{bottom:709.800000px;}
.y6b{bottom:714.300000px;}
.ye{bottom:715.830000px;}
.y3f{bottom:717.000000px;}
.y6a{bottom:721.950000px;}
.y83{bottom:722.580000px;}
.yd8{bottom:725.190000px;}
.y68{bottom:726.090000px;}
.yb6{bottom:727.440000px;}
.y3e{bottom:734.550000px;}
.y67{bottom:736.170000px;}
.yd7{bottom:742.740000px;}
.y69{bottom:742.830000px;}
.yb5{bottom:744.990000px;}
.yd{bottom:751.380000px;}
.y3d{bottom:752.190000px;}
.y82{bottom:758.220000px;}
.yb4{bottom:762.540000px;}
.yd6{bottom:769.290000px;}
.y81{bottom:775.770000px;}
.yb3{bottom:780.180000px;}
.yd5{bottom:786.930000px;}
.yc{bottom:787.200000px;}
.y3c{bottom:787.740000px;}
.y66{bottom:792.870000px;}
.yb2{bottom:797.730000px;}
.y3b{bottom:805.290000px;}
.y80{bottom:807.990000px;}
.yd4{bottom:813.480000px;}
.yb1{bottom:815.280000px;}
.y3a{bottom:822.930000px;}
.yb{bottom:823.200000px;}
.y65{bottom:828.420000px;}
.yd3{bottom:831.030000px;}
.yb0{bottom:832.920000px;}
.y39{bottom:840.480000px;}
.ya{bottom:844.980000px;}
.y64{bottom:846.060000px;}
.yd2{bottom:857.670000px;}
.y38{bottom:858.030000px;}
.y9{bottom:859.200000px;}
.y63{bottom:863.610000px;}
.yaf{bottom:868.470000px;}
.y37{bottom:875.670000px;}
.y8{bottom:880.980000px;}
.yd1{bottom:884.220000px;}
.yae{bottom:886.110000px;}
.y36{bottom:893.220000px;}
.y7{bottom:895.200000px;}
.y62{bottom:898.980000px;}
.yd0{bottom:901.860000px;}
.yad{bottom:903.660000px;}
.y61{bottom:909.060000px;}
.y35{bottom:910.860000px;}
.y6{bottom:916.980000px;}
.ycf{bottom:919.410000px;}
.yac{bottom:921.210000px;}
.y34{bottom:928.410000px;}
.yce{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.y60{bottom:954.600000px;}
.yab{bottom:956.850000px;}
.ycd{bottom:963.600000px;}
.y33{bottom:963.960000px;}
.yaa{bottom:974.400000px;}
.y32{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.y5f{bottom:990.150000px;}
.ya9{bottom:992.040000px;}
.y31{bottom:999.150000px;}
.y5e{bottom:1007.790000px;}
.ya8{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.y30{bottom:1016.820000px;}
.y5d{bottom:1025.370000px;}
.ya7{bottom:1027.170000px;}
.y2f{bottom:1034.370000px;}
.ya5{bottom:1042.200000px;}
.y5c{bottom:1042.920000px;}
.ycc{bottom:1051.920000px;}
.yf5{bottom:1060.920000px;}
.y2e{bottom:1069.920000px;}
.y5b{bottom:1078.560000px;}
.y2d{bottom:1087.560000px;}
.ya3{bottom:1091.610000px;}
.y5a{bottom:1096.110000px;}
.y2c{bottom:1105.110000px;}
.y59{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h14{height:26.550000px;}
.h2{height:32.918906px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h15{height:48.690000px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.h13{height:60.589687px;}
.h16{height:61.793886px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h10{height:81.267539px;}
.h11{height:86.667539px;}
.he{height:92.631445px;}
.hc{height:96.027539px;}
.hd{height:136.347539px;}
.h12{height:139.791445px;}
.hf{height:183.507539px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:82.620000px;}
.w5{width:82.710000px;}
.w3{width:477.600000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:7.740000px;}
.x1{left:68.040000px;}
.xd{left:81.629987px;}
.xf{left:82.710000px;}
.x14{left:111.239987px;}
.x2{left:192.719987px;}
.x4{left:204.149987px;}
.x7{left:241.319987px;}
.x5{left:329.789987px;}
.xe{left:374.969987px;}
.x8{left:425.009987px;}
.x6{left:447.059987px;}
.xa{left:472.799987px;}
.x11{left:561.120000px;}
.x9{left:605.399987px;}
.xb{left:624.209987px;}
.x12{left:644.460000px;}
.x13{left:727.890000px;}
.xc{left:770.639987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v8{vertical-align:27.200000pt;}
.v7{vertical-align:31.360000pt;}
.v5{vertical-align:35.840000pt;}
.v4{vertical-align:40.320000pt;}
.v6{vertical-align:50.880000pt;}
.ls15{letter-spacing:-0.301867pt;}
.ls11{letter-spacing:-0.266133pt;}
.ls19{letter-spacing:-0.259200pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls18{letter-spacing:-0.082667pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls9{letter-spacing:-0.007467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.017280pt;}
.ls16{letter-spacing:0.017920pt;}
.ls1a{letter-spacing:0.037120pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.053760pt;}
.ls10{letter-spacing:0.053867pt;}
.ls2{letter-spacing:0.058240pt;}
.ls1f{letter-spacing:0.065920pt;}
.ls1b{letter-spacing:0.076800pt;}
.ls1{letter-spacing:0.080000pt;}
.ls17{letter-spacing:0.090347pt;}
.ls6{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.154133pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.160427pt;}
.ls14{letter-spacing:0.177067pt;}
.ls20{letter-spacing:0.474133pt;}
.ls12{letter-spacing:8.800000pt;}
.ls0{letter-spacing:11.864320pt;}
.ls1d{letter-spacing:42.423680pt;}
.ls1c{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws15{word-spacing:-12.230933pt;}
.wsf{word-spacing:-11.933867pt;}
.ws4{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.800320pt;}
.ws14{word-spacing:-11.793920pt;}
.ws11{word-spacing:-11.774720pt;}
.wsd{word-spacing:-11.774080pt;}
.ws2{word-spacing:-11.756800pt;}
.ws12{word-spacing:-11.674133pt;}
.ws3{word-spacing:-11.590933pt;}
.ws13{word-spacing:-11.497600pt;}
.ws10{word-spacing:-11.454933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws9{word-spacing:-7.657067pt;}
.ws7{word-spacing:-7.603200pt;}
.wsa{word-spacing:-7.337067pt;}
.ws8{word-spacing:0.000000pt;}
.wse{word-spacing:2.865600pt;}
.ws5{word-spacing:3.826560pt;}
._a{margin-left:-3.153067pt;}
._7{margin-left:-1.985066pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.106336pt;}
._5{width:2.298134pt;}
._6{width:3.959147pt;}
._3{width:5.204053pt;}
._4{width:6.893867pt;}
._9{width:8.067314pt;}
._8{width:8.978134pt;}
._e{width:10.617600pt;}
._b{width:12.811210pt;}
._f{width:13.734080pt;}
._13{width:15.978560pt;}
._1{width:17.521600pt;}
._14{width:18.858880pt;}
._11{width:20.328447pt;}
._c{width:22.070720pt;}
._d{width:23.394250pt;}
._16{width:30.802240pt;}
._15{width:31.796800pt;}
._17{width:43.471467pt;}
._12{width:88.957760pt;}
._10{width:270.472107pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ya4{bottom:6.960000pt;}
.ya6{bottom:26.640000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:89.066667pt;}
.ya2{bottom:101.706667pt;}
.yf4{bottom:102.826667pt;}
.y58{bottom:114.906667pt;}
.ya1{bottom:117.306667pt;}
.yf3{bottom:118.506667pt;}
.ycb{bottom:127.306667pt;}
.ya0{bottom:132.986667pt;}
.y27{bottom:140.746667pt;}
.yf2{bottom:142.106667pt;}
.yca{bottom:142.906667pt;}
.y57{bottom:146.586667pt;}
.y9f{bottom:148.586667pt;}
.y7f{bottom:153.706667pt;}
.y26{bottom:156.426667pt;}
.yf1{bottom:157.786667pt;}
.y9e{bottom:164.266667pt;}
.yc9{bottom:166.826667pt;}
.y25{bottom:172.026667pt;}
.y56{bottom:178.186667pt;}
.yf0{bottom:181.386667pt;}
.y7e{bottom:185.306667pt;}
.y24{bottom:187.706667pt;}
.y9d{bottom:187.866667pt;}
.y55{bottom:193.866667pt;}
.yef{bottom:196.986667pt;}
.y23{bottom:203.306667pt;}
.y9c{bottom:203.466667pt;}
.y54{bottom:209.466667pt;}
.yc8{bottom:209.706667pt;}
.y7d{bottom:216.906667pt;}
.yee{bottom:220.666667pt;}
.y53{bottom:225.066667pt;}
.yc7{bottom:225.386667pt;}
.y22{bottom:234.906667pt;}
.y9b{bottom:235.146667pt;}
.yed{bottom:236.266667pt;}
.y52{bottom:240.746667pt;}
.y7c{bottom:248.586667pt;}
.yc6{bottom:249.306667pt;}
.y21{bottom:250.586667pt;}
.y9a{bottom:250.746667pt;}
.yec{bottom:259.946667pt;}
.y51{bottom:264.346667pt;}
.y20{bottom:266.186667pt;}
.y99{bottom:266.426667pt;}
.yeb{bottom:275.546667pt;}
.y7b{bottom:280.186667pt;}
.y1f{bottom:281.866667pt;}
.yc5{bottom:282.186667pt;}
.y50{bottom:295.946667pt;}
.y98{bottom:298.026667pt;}
.yea{bottom:299.146667pt;}
.y1e{bottom:305.786667pt;}
.yc4{bottom:306.106667pt;}
.y4f{bottom:311.626667pt;}
.y7a{bottom:311.866667pt;}
.y97{bottom:313.626667pt;}
.ye9{bottom:314.826667pt;}
.y4e{bottom:327.226667pt;}
.y79{bottom:327.466667pt;}
.y96{bottom:329.306667pt;}
.ye8{bottom:338.426667pt;}
.yc3{bottom:338.986667pt;}
.y4d{bottom:342.906667pt;}
.y78{bottom:343.066667pt;}
.y95{bottom:344.906667pt;}
.y1d{bottom:348.986667pt;}
.ye7{bottom:354.106667pt;}
.yc2{bottom:354.666667pt;}
.y4c{bottom:358.506667pt;}
.y94{bottom:360.586667pt;}
.y77{bottom:366.746667pt;}
.yc1{bottom:370.266667pt;}
.y4b{bottom:374.106667pt;}
.y93{bottom:376.186667pt;}
.ye6{bottom:377.706667pt;}
.y1c{bottom:381.866667pt;}
.yc0{bottom:385.946667pt;}
.y92{bottom:391.786667pt;}
.ye5{bottom:393.306667pt;}
.y1b{bottom:397.466667pt;}
.y4a{bottom:397.786667pt;}
.y76{bottom:398.666667pt;}
.ybf{bottom:401.546667pt;}
.y91{bottom:407.466667pt;}
.y1a{bottom:413.146667pt;}
.ye4{bottom:416.986667pt;}
.ybe{bottom:417.146667pt;}
.y90{bottom:423.093333pt;}
.y19{bottom:428.773333pt;}
.y49{bottom:429.413333pt;}
.ye3{bottom:432.613333pt;}
.y8f{bottom:438.693333pt;}
.ybd{bottom:441.093333pt;}
.y75{bottom:441.573333pt;}
.y18{bottom:444.373333pt;}
.y48{bottom:445.093333pt;}
.y8e{bottom:454.373333pt;}
.ye2{bottom:456.293333pt;}
.y74{bottom:457.253333pt;}
.y17{bottom:460.053333pt;}
.y47{bottom:460.693333pt;}
.y8d{bottom:469.973333pt;}
.ye1{bottom:471.893333pt;}
.y73{bottom:472.853333pt;}
.ybc{bottom:474.293333pt;}
.y16{bottom:475.653333pt;}
.y46{bottom:476.293333pt;}
.y8c{bottom:485.653333pt;}
.ye0{bottom:487.493333pt;}
.y72{bottom:488.453333pt;}
.y15{bottom:491.333333pt;}
.y45{bottom:491.973333pt;}
.y8b{bottom:501.253333pt;}
.y71{bottom:504.133333pt;}
.y14{bottom:506.933333pt;}
.y44{bottom:507.573333pt;}
.ydf{bottom:511.173333pt;}
.y8a{bottom:516.853333pt;}
.ybb{bottom:517.253333pt;}
.y13{bottom:522.533333pt;}
.y43{bottom:523.253333pt;}
.yde{bottom:526.773333pt;}
.y89{bottom:532.533333pt;}
.yba{bottom:532.853333pt;}
.y70{bottom:535.733333pt;}
.y12{bottom:538.213333pt;}
.y42{bottom:546.853333pt;}
.yb9{bottom:548.453333pt;}
.ydd{bottom:550.453333pt;}
.y6f{bottom:551.413333pt;}
.y11{bottom:553.813333pt;}
.y88{bottom:564.133333pt;}
.ydc{bottom:566.053333pt;}
.y6e{bottom:567.013333pt;}
.y10{bottom:569.493333pt;}
.y41{bottom:578.773333pt;}
.y87{bottom:579.813333pt;}
.y6d{bottom:582.613333pt;}
.yb8{bottom:588.053333pt;}
.ydb{bottom:589.653333pt;}
.yf{bottom:593.413333pt;}
.y86{bottom:595.413333pt;}
.yda{bottom:605.333333pt;}
.y6c{bottom:606.293333pt;}
.y85{bottom:611.013333pt;}
.y40{bottom:621.653333pt;}
.y84{bottom:626.693333pt;}
.yd9{bottom:628.933333pt;}
.yb7{bottom:630.933333pt;}
.y6b{bottom:634.933333pt;}
.ye{bottom:636.293333pt;}
.y3f{bottom:637.333333pt;}
.y6a{bottom:641.733333pt;}
.y83{bottom:642.293333pt;}
.yd8{bottom:644.613333pt;}
.y68{bottom:645.413333pt;}
.yb6{bottom:646.613333pt;}
.y3e{bottom:652.933333pt;}
.y67{bottom:654.373333pt;}
.yd7{bottom:660.213333pt;}
.y69{bottom:660.293333pt;}
.yb5{bottom:662.213333pt;}
.yd{bottom:667.893333pt;}
.y3d{bottom:668.613333pt;}
.y82{bottom:673.973333pt;}
.yb4{bottom:677.813333pt;}
.yd6{bottom:683.813333pt;}
.y81{bottom:689.573333pt;}
.yb3{bottom:693.493333pt;}
.yd5{bottom:699.493333pt;}
.yc{bottom:699.733333pt;}
.y3c{bottom:700.213333pt;}
.y66{bottom:704.773333pt;}
.yb2{bottom:709.093333pt;}
.y3b{bottom:715.813333pt;}
.y80{bottom:718.213333pt;}
.yd4{bottom:723.093333pt;}
.yb1{bottom:724.693333pt;}
.y3a{bottom:731.493333pt;}
.yb{bottom:731.733333pt;}
.y65{bottom:736.373333pt;}
.yd3{bottom:738.693333pt;}
.yb0{bottom:740.373333pt;}
.y39{bottom:747.093333pt;}
.ya{bottom:751.093333pt;}
.y64{bottom:752.053333pt;}
.yd2{bottom:762.373333pt;}
.y38{bottom:762.693333pt;}
.y9{bottom:763.733333pt;}
.y63{bottom:767.653333pt;}
.yaf{bottom:771.973333pt;}
.y37{bottom:778.373333pt;}
.y8{bottom:783.093333pt;}
.yd1{bottom:785.973333pt;}
.yae{bottom:787.653333pt;}
.y36{bottom:793.973333pt;}
.y7{bottom:795.733333pt;}
.y62{bottom:799.093333pt;}
.yd0{bottom:801.653333pt;}
.yad{bottom:803.253333pt;}
.y61{bottom:808.053333pt;}
.y35{bottom:809.653333pt;}
.y6{bottom:815.093333pt;}
.ycf{bottom:817.253333pt;}
.yac{bottom:818.853333pt;}
.y34{bottom:825.253333pt;}
.yce{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.y60{bottom:848.533333pt;}
.yab{bottom:850.533333pt;}
.ycd{bottom:856.533333pt;}
.y33{bottom:856.853333pt;}
.yaa{bottom:866.133333pt;}
.y32{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.y5f{bottom:880.133333pt;}
.ya9{bottom:881.813333pt;}
.y31{bottom:888.133333pt;}
.y5e{bottom:895.813333pt;}
.ya8{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.y30{bottom:903.840000pt;}
.y5d{bottom:911.440000pt;}
.ya7{bottom:913.040000pt;}
.y2f{bottom:919.440000pt;}
.ya5{bottom:926.400000pt;}
.y5c{bottom:927.040000pt;}
.ycc{bottom:935.040000pt;}
.yf5{bottom:943.040000pt;}
.y2e{bottom:951.040000pt;}
.y5b{bottom:958.720000pt;}
.y2d{bottom:966.720000pt;}
.ya3{bottom:970.320000pt;}
.y5a{bottom:974.320000pt;}
.y2c{bottom:982.320000pt;}
.y59{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h14{height:23.600000pt;}
.h2{height:29.261250pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h15{height:43.280000pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.h13{height:53.857500pt;}
.h16{height:54.927899pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h10{height:72.237813pt;}
.h11{height:77.037812pt;}
.he{height:82.339063pt;}
.hc{height:85.357813pt;}
.hd{height:121.197813pt;}
.h12{height:124.259062pt;}
.hf{height:163.117812pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:73.440000pt;}
.w5{width:73.520000pt;}
.w3{width:424.533333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.880000pt;}
.x1{left:60.480000pt;}
.xd{left:72.559988pt;}
.xf{left:73.520000pt;}
.x14{left:98.879988pt;}
.x2{left:171.306655pt;}
.x4{left:181.466655pt;}
.x7{left:214.506655pt;}
.x5{left:293.146655pt;}
.xe{left:333.306655pt;}
.x8{left:377.786655pt;}
.x6{left:397.386655pt;}
.xa{left:420.266655pt;}
.x11{left:498.773333pt;}
.x9{left:538.133322pt;}
.xb{left:554.853322pt;}
.x12{left:572.853333pt;}
.x13{left:647.013333pt;}
.xc{left:685.013322pt;}
.x3{left:711.413322pt;}
}




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