
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1acadebab333f184df8f628a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5ea90ed97f65fc9a429cb391.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_fe38d94117301768ab36eb01.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c56b9c9a2930ea9e3340da24.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_91985f6509b4c7844bf357d5.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_863d14d2dce9bed2ef4d6ec2.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsc{letter-spacing:-0.186600px;}
.lsd{letter-spacing:-0.178800px;}
.ls8{letter-spacing:-0.135000px;}
.lsf{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls9{letter-spacing:-0.063600px;}
.lse{letter-spacing:-0.039000px;}
.ls13{letter-spacing:-0.007560px;}
.ls5{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.048960px;}
.ls14{letter-spacing:0.064800px;}
.ls4{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls12{letter-spacing:0.095400px;}
.ls6{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.173400px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls15{letter-spacing:63.566640px;}
.ls16{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws8{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws2{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.321800px;}
.wsb{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.wsd{word-spacing:-13.218840px;}
.ws6{word-spacing:-13.187400px;}
.ws5{word-spacing:-13.047600px;}
.ws3{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws9{word-spacing:0.000000px;}
.ws7{word-spacing:4.304880px;}
._e{margin-left:-3.487200px;}
._6{margin-left:-2.464800px;}
._0{margin-left:-1.110000px;}
._1{width:1.174236px;}
._3{width:2.341380px;}
._9{width:3.357449px;}
._4{width:4.929600px;}
._b{width:6.372720px;}
._d{width:7.838038px;}
._8{width:8.898000px;}
._5{width:10.280520px;}
._2{width:12.144000px;}
._7{width:14.609400px;}
._c{width:15.930117px;}
._f{width:18.337081px;}
._a{width:19.358400px;}
._10{width:1333.293600px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y61{bottom:7.830000px;}
.y72{bottom:7.860000px;}
.y64{bottom:7.920000px;}
.y84{bottom:25.380000px;}
.y2{bottom:73.380000px;}
.y26{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.ycd{bottom:130.080000px;}
.yc1{bottom:133.950000px;}
.ycc{bottom:147.630000px;}
.y24{bottom:149.610000px;}
.yae{bottom:153.480000px;}
.y92{bottom:163.020000px;}
.ycb{bottom:165.180000px;}
.yc0{bottom:166.170000px;}
.y23{bottom:167.160000px;}
.yad{bottom:168.510000px;}
.y6d{bottom:171.660000px;}
.y53{bottom:173.460000px;}
.y91{bottom:180.570000px;}
.yca{bottom:182.820000px;}
.y22{bottom:184.800000px;}
.y52{bottom:191.100000px;}
.yac{bottom:195.780000px;}
.y6c{bottom:207.300000px;}
.y51{bottom:208.650000px;}
.yff{bottom:215.400000px;}
.y90{bottom:216.120000px;}
.yc9{bottom:218.370000px;}
.y21{bottom:220.350000px;}
.yab{bottom:223.140000px;}
.y6b{bottom:224.850000px;}
.y50{bottom:226.200000px;}
.y8f{bottom:233.760000px;}
.yc8{bottom:236.010000px;}
.y20{bottom:237.900000px;}
.y6a{bottom:242.490000px;}
.yf3{bottom:246.900000px;}
.yaa{bottom:250.500000px;}
.yfe{bottom:250.950000px;}
.y8e{bottom:251.310000px;}
.yc7{bottom:253.560000px;}
.y1f{bottom:255.540000px;}
.y69{bottom:260.040000px;}
.y4f{bottom:261.840000px;}
.y8d{bottom:268.950000px;}
.y1e{bottom:273.090000px;}
.ya9{bottom:277.770000px;}
.yec{bottom:278.400000px;}
.y4e{bottom:279.390000px;}
.yf2{bottom:282.450000px;}
.yfd{bottom:283.170000px;}
.y8c{bottom:286.500000px;}
.yc6{bottom:289.110000px;}
.y68{bottom:292.980000px;}
.yeb{bottom:295.950000px;}
.y4d{bottom:296.940000px;}
.y1d{bottom:300.000000px;}
.ya8{bottom:305.130000px;}
.y105{bottom:311.430000px;}
.y4c{bottom:314.580000px;}
.yf1{bottom:314.670000px;}
.y67{bottom:320.340000px;}
.yc5{bottom:321.420000px;}
.y8b{bottom:322.050000px;}
.yea{bottom:322.860000px;}
.y4b{bottom:332.130000px;}
.ya7{bottom:332.490000px;}
.yf9{bottom:336.540000px;}
.y8a{bottom:339.690000px;}
.y104{bottom:347.070000px;}
.y66{bottom:347.700000px;}
.y1c{bottom:348.240000px;}
.y4a{bottom:349.770000px;}
.y89{bottom:357.240000px;}
.y49{bottom:367.320000px;}
.ye9{bottom:371.100000px;}
.yf8{bottom:372.180000px;}
.y65{bottom:375.060000px;}
.y103{bottom:379.290000px;}
.ya6{bottom:381.180000px;}
.y1b{bottom:383.880000px;}
.y48{bottom:384.870000px;}
.ye8{bottom:388.740000px;}
.y1a{bottom:401.430000px;}
.y63{bottom:402.330000px;}
.yf7{bottom:404.400000px;}
.ye7{bottom:406.290000px;}
.ya5{bottom:416.730000px;}
.y19{bottom:419.070000px;}
.y88{bottom:419.430000px;}
.y47{bottom:420.510000px;}
.ye6{bottom:423.930000px;}
.y62{bottom:429.690000px;}
.ya4{bottom:431.760000px;}
.y87{bottom:436.980000px;}
.y46{bottom:438.060000px;}
.ye5{bottom:441.480000px;}
.y18{bottom:454.620000px;}
.y45{bottom:455.700000px;}
.y60{bottom:457.050000px;}
.ya3{bottom:459.030000px;}
.y17{bottom:472.200000px;}
.y44{bottom:473.280000px;}
.ye4{bottom:476.700000px;}
.ya2{bottom:486.420000px;}
.y86{bottom:487.590000px;}
.y16{bottom:489.840000px;}
.y43{bottom:499.830000px;}
.ye3{bottom:503.520000px;}
.y5f{bottom:505.770000px;}
.ya1{bottom:513.780000px;}
.y85{bottom:514.950000px;}
.y15{bottom:525.390000px;}
.y42{bottom:535.470000px;}
.ya0{bottom:541.140000px;}
.y5e{bottom:541.320000px;}
.y83{bottom:542.310000px;}
.y14{bottom:543.030000px;}
.ye2{bottom:551.760000px;}
.y41{bottom:553.020000px;}
.ybf{bottom:558.780000px;}
.y5d{bottom:558.960000px;}
.y13{bottom:560.580000px;}
.y9f{bottom:568.410000px;}
.y40{bottom:570.660000px;}
.ye1{bottom:575.340000px;}
.y5c{bottom:576.510000px;}
.y12{bottom:578.130000px;}
.y82{bottom:587.220000px;}
.y5b{bottom:594.060000px;}
.ybe{bottom:594.420000px;}
.y9e{bottom:595.770000px;}
.ye0{bottom:598.920000px;}
.y3f{bottom:606.210000px;}
.ybd{bottom:609.360000px;}
.y11{bottom:613.770000px;}
.y81{bottom:614.490000px;}
.ydf{bottom:622.500000px;}
.y3e{bottom:623.760000px;}
.y5a{bottom:629.700000px;}
.y10{bottom:631.320000px;}
.ybc{bottom:636.720000px;}
.y3d{bottom:641.400000px;}
.y80{bottom:641.850000px;}
.y9d{bottom:644.460000px;}
.yde{bottom:646.170000px;}
.y59{bottom:647.250000px;}
.yf{bottom:648.960000px;}
.y3c{bottom:658.950000px;}
.ybb{bottom:663.990000px;}
.y58{bottom:664.890000px;}
.y7f{bottom:669.210000px;}
.ydd{bottom:669.750000px;}
.yfc{bottom:673.620000px;}
.y9c{bottom:680.100000px;}
.ye{bottom:684.510000px;}
.yba{bottom:691.350000px;}
.y57{bottom:691.440000px;}
.yf0{bottom:691.620000px;}
.ydc{bottom:693.330000px;}
.y3b{bottom:694.590000px;}
.y9b{bottom:697.650000px;}
.yd{bottom:702.060000px;}
.yc4{bottom:706.290000px;}
.yfb{bottom:709.170000px;}
.y3a{bottom:712.140000px;}
.y9a{bottom:715.200000px;}
.ydb{bottom:716.910000px;}
.y7e{bottom:717.900000px;}
.yb9{bottom:718.710000px;}
.yc{bottom:719.700000px;}
.yef{bottom:727.170000px;}
.y56{bottom:727.350000px;}
.y39{bottom:729.690000px;}
.y102{bottom:731.400000px;}
.y99{bottom:732.840000px;}
.yb{bottom:737.250000px;}
.yfa{bottom:741.390000px;}
.yc3{bottom:741.840000px;}
.yda{bottom:743.820000px;}
.yb8{bottom:746.070000px;}
.y38{bottom:747.330000px;}
.yf6{bottom:752.010000px;}
.y7d{bottom:753.450000px;}
.yee{bottom:759.390000px;}
.ya{bottom:764.160000px;}
.y37{bottom:764.880000px;}
.y101{bottom:766.950000px;}
.y98{bottom:768.390000px;}
.yd9{bottom:770.820000px;}
.y7c{bottom:771.090000px;}
.yb7{bottom:773.340000px;}
.yc2{bottom:774.060000px;}
.y55{bottom:775.590000px;}
.y97{bottom:786.030000px;}
.yf5{bottom:787.650000px;}
.y7b{bottom:788.640000px;}
.yd8{bottom:798.630000px;}
.y100{bottom:799.170000px;}
.y36{bottom:800.520000px;}
.y7a{bottom:806.280000px;}
.y54{bottom:807.810000px;}
.y9{bottom:812.490000px;}
.y96{bottom:812.580000px;}
.y35{bottom:818.070000px;}
.yf4{bottom:819.870000px;}
.yb6{bottom:822.030000px;}
.y34{bottom:835.620000px;}
.y79{bottom:841.830000px;}
.y95{bottom:845.520000px;}
.y8{bottom:848.040000px;}
.y33{bottom:853.260000px;}
.yb5{bottom:857.670000px;}
.y78{bottom:859.380000px;}
.yd7{bottom:870.810000px;}
.y94{bottom:872.880000px;}
.yb4{bottom:875.220000px;}
.y77{bottom:877.020000px;}
.y32{bottom:879.810000px;}
.y7{bottom:883.860000px;}
.yb3{bottom:892.860000px;}
.y76{bottom:894.570000px;}
.y93{bottom:900.240000px;}
.yd6{bottom:906.450000px;}
.y31{bottom:915.720000px;}
.y6{bottom:919.860000px;}
.yd5{bottom:924.000000px;}
.y75{bottom:927.600000px;}
.yb2{bottom:928.410000px;}
.y5{bottom:937.860000px;}
.yd4{bottom:941.550000px;}
.yb1{bottom:945.960000px;}
.y74{bottom:954.870000px;}
.yd3{bottom:959.190000px;}
.yb0{bottom:963.600000px;}
.y30{bottom:963.960000px;}
.y4{bottom:973.950000px;}
.yd2{bottom:976.740000px;}
.y2f{bottom:981.600000px;}
.y73{bottom:982.230000px;}
.yd1{bottom:994.290000px;}
.y2e{bottom:999.150000px;}
.y71{bottom:1009.590000px;}
.y3{bottom:1012.230000px;}
.y2d{bottom:1016.820000px;}
.yd0{bottom:1029.960000px;}
.y2c{bottom:1034.370000px;}
.y70{bottom:1036.890000px;}
.ycf{bottom:1047.510000px;}
.yaf{bottom:1051.920000px;}
.y6f{bottom:1064.250000px;}
.y2b{bottom:1069.920000px;}
.yce{bottom:1074.420000px;}
.y2a{bottom:1087.560000px;}
.y6e{bottom:1091.610000px;}
.y29{bottom:1105.110000px;}
.y28{bottom:1122.750000px;}
.yed{bottom:1127.610000px;}
.y27{bottom:1140.300000px;}
.y25{bottom:1194.300000px;}
.ha{height:26.550000px;}
.h9{height:26.580000px;}
.hb{height:26.640000px;}
.hd{height:26.670000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hc{height:44.100000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.he{height:61.793886px;}
.h8{height:62.585859px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:89.280000px;}
.wf{width:89.370000px;}
.w3{width:89.460000px;}
.w10{width:94.680000px;}
.w12{width:94.710000px;}
.w13{width:94.770000px;}
.w11{width:94.860000px;}
.wa{width:102.900000px;}
.wb{width:107.280000px;}
.w8{width:108.000000px;}
.w9{width:108.090000px;}
.w5{width:111.240000px;}
.w4{width:111.330000px;}
.w6{width:111.450000px;}
.wd{width:116.130000px;}
.w15{width:116.280000px;}
.w14{width:116.310000px;}
.we{width:122.940000px;}
.wc{width:125.190000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x1{left:68.040000px;}
.x23{left:95.039987px;}
.x24{left:111.239987px;}
.x29{left:153.179987px;}
.x19{left:154.440000px;}
.x26{left:165.539987px;}
.x6{left:177.780000px;}
.xc{left:186.960000px;}
.x2f{left:188.759987px;}
.x2d{left:201.089987px;}
.x2{left:202.799987px;}
.x2b{left:205.409987px;}
.x11{left:209.640000px;}
.x15{left:210.990000px;}
.x1f{left:218.369987px;}
.x22{left:226.469987px;}
.x20{left:231.689987px;}
.x8{left:267.960000px;}
.x1a{left:271.470000px;}
.xd{left:277.050000px;}
.x5{left:294.239987px;}
.x16{left:301.080000px;}
.x12{left:317.730000px;}
.x9{left:380.010000px;}
.xe{left:385.770000px;}
.x1b{left:388.470000px;}
.x17{left:396.480000px;}
.x13{left:443.730000px;}
.xa{left:491.970000px;}
.xf{left:494.580000px;}
.x1c{left:505.470000px;}
.x14{left:560.670000px;}
.x18{left:587.490000px;}
.x10{left:598.290000px;}
.xb{left:604.140000px;}
.x1d{left:622.500000px;}
.x4{left:677.759987px;}
.x21{left:689.009987px;}
.x1e{left:700.169987px;}
.x27{left:743.009987px;}
.x25{left:759.389987px;}
.x2c{left:771.809987px;}
.x28{left:772.889987px;}
.x2a{left:775.139987px;}
.x2e{left:777.389987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsc{letter-spacing:-0.165867pt;}
.lsd{letter-spacing:-0.158933pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsf{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls9{letter-spacing:-0.056533pt;}
.lse{letter-spacing:-0.034667pt;}
.ls13{letter-spacing:-0.006720pt;}
.ls5{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.043520pt;}
.ls14{letter-spacing:0.057600pt;}
.ls4{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls12{letter-spacing:0.084800pt;}
.ls6{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.154133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls15{letter-spacing:56.503680pt;}
.ls16{letter-spacing:71.863680pt;}
.ws8{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws2{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.841600pt;}
.wsb{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.wsd{word-spacing:-11.750080pt;}
.ws6{word-spacing:-11.722133pt;}
.ws5{word-spacing:-11.597867pt;}
.ws3{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws9{word-spacing:0.000000pt;}
.ws7{word-spacing:3.826560pt;}
._e{margin-left:-3.099734pt;}
._6{margin-left:-2.190933pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.043765pt;}
._3{width:2.081226pt;}
._9{width:2.984399pt;}
._4{width:4.381866pt;}
._b{width:5.664640pt;}
._d{width:6.967145pt;}
._8{width:7.909334pt;}
._5{width:9.138240pt;}
._2{width:10.794666pt;}
._7{width:12.986134pt;}
._c{width:14.160104pt;}
._f{width:16.299628pt;}
._a{width:17.207466pt;}
._10{width:1185.149867pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:6.960000pt;}
.y72{bottom:6.986667pt;}
.y64{bottom:7.040000pt;}
.y84{bottom:22.560000pt;}
.y2{bottom:65.226667pt;}
.y26{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.ycd{bottom:115.626667pt;}
.yc1{bottom:119.066667pt;}
.ycc{bottom:131.226667pt;}
.y24{bottom:132.986667pt;}
.yae{bottom:136.426667pt;}
.y92{bottom:144.906667pt;}
.ycb{bottom:146.826667pt;}
.yc0{bottom:147.706667pt;}
.y23{bottom:148.586667pt;}
.yad{bottom:149.786667pt;}
.y6d{bottom:152.586667pt;}
.y53{bottom:154.186667pt;}
.y91{bottom:160.506667pt;}
.yca{bottom:162.506667pt;}
.y22{bottom:164.266667pt;}
.y52{bottom:169.866667pt;}
.yac{bottom:174.026667pt;}
.y6c{bottom:184.266667pt;}
.y51{bottom:185.466667pt;}
.yff{bottom:191.466667pt;}
.y90{bottom:192.106667pt;}
.yc9{bottom:194.106667pt;}
.y21{bottom:195.866667pt;}
.yab{bottom:198.346667pt;}
.y6b{bottom:199.866667pt;}
.y50{bottom:201.066667pt;}
.y8f{bottom:207.786667pt;}
.yc8{bottom:209.786667pt;}
.y20{bottom:211.466667pt;}
.y6a{bottom:215.546667pt;}
.yf3{bottom:219.466667pt;}
.yaa{bottom:222.666667pt;}
.yfe{bottom:223.066667pt;}
.y8e{bottom:223.386667pt;}
.yc7{bottom:225.386667pt;}
.y1f{bottom:227.146667pt;}
.y69{bottom:231.146667pt;}
.y4f{bottom:232.746667pt;}
.y8d{bottom:239.066667pt;}
.y1e{bottom:242.746667pt;}
.ya9{bottom:246.906667pt;}
.yec{bottom:247.466667pt;}
.y4e{bottom:248.346667pt;}
.yf2{bottom:251.066667pt;}
.yfd{bottom:251.706667pt;}
.y8c{bottom:254.666667pt;}
.yc6{bottom:256.986667pt;}
.y68{bottom:260.426667pt;}
.yeb{bottom:263.066667pt;}
.y4d{bottom:263.946667pt;}
.y1d{bottom:266.666667pt;}
.ya8{bottom:271.226667pt;}
.y105{bottom:276.826667pt;}
.y4c{bottom:279.626667pt;}
.yf1{bottom:279.706667pt;}
.y67{bottom:284.746667pt;}
.yc5{bottom:285.706667pt;}
.y8b{bottom:286.266667pt;}
.yea{bottom:286.986667pt;}
.y4b{bottom:295.226667pt;}
.ya7{bottom:295.546667pt;}
.yf9{bottom:299.146667pt;}
.y8a{bottom:301.946667pt;}
.y104{bottom:308.506667pt;}
.y66{bottom:309.066667pt;}
.y1c{bottom:309.546667pt;}
.y4a{bottom:310.906667pt;}
.y89{bottom:317.546667pt;}
.y49{bottom:326.506667pt;}
.ye9{bottom:329.866667pt;}
.yf8{bottom:330.826667pt;}
.y65{bottom:333.386667pt;}
.y103{bottom:337.146667pt;}
.ya6{bottom:338.826667pt;}
.y1b{bottom:341.226667pt;}
.y48{bottom:342.106667pt;}
.ye8{bottom:345.546667pt;}
.y1a{bottom:356.826667pt;}
.y63{bottom:357.626667pt;}
.yf7{bottom:359.466667pt;}
.ye7{bottom:361.146667pt;}
.ya5{bottom:370.426667pt;}
.y19{bottom:372.506667pt;}
.y88{bottom:372.826667pt;}
.y47{bottom:373.786667pt;}
.ye6{bottom:376.826667pt;}
.y62{bottom:381.946667pt;}
.ya4{bottom:383.786667pt;}
.y87{bottom:388.426667pt;}
.y46{bottom:389.386667pt;}
.ye5{bottom:392.426667pt;}
.y18{bottom:404.106667pt;}
.y45{bottom:405.066667pt;}
.y60{bottom:406.266667pt;}
.ya3{bottom:408.026667pt;}
.y17{bottom:419.733333pt;}
.y44{bottom:420.693333pt;}
.ye4{bottom:423.733333pt;}
.ya2{bottom:432.373333pt;}
.y86{bottom:433.413333pt;}
.y16{bottom:435.413333pt;}
.y43{bottom:444.293333pt;}
.ye3{bottom:447.573333pt;}
.y5f{bottom:449.573333pt;}
.ya1{bottom:456.693333pt;}
.y85{bottom:457.733333pt;}
.y15{bottom:467.013333pt;}
.y42{bottom:475.973333pt;}
.ya0{bottom:481.013333pt;}
.y5e{bottom:481.173333pt;}
.y83{bottom:482.053333pt;}
.y14{bottom:482.693333pt;}
.ye2{bottom:490.453333pt;}
.y41{bottom:491.573333pt;}
.ybf{bottom:496.693333pt;}
.y5d{bottom:496.853333pt;}
.y13{bottom:498.293333pt;}
.y9f{bottom:505.253333pt;}
.y40{bottom:507.253333pt;}
.ye1{bottom:511.413333pt;}
.y5c{bottom:512.453333pt;}
.y12{bottom:513.893333pt;}
.y82{bottom:521.973333pt;}
.y5b{bottom:528.053333pt;}
.ybe{bottom:528.373333pt;}
.y9e{bottom:529.573333pt;}
.ye0{bottom:532.373333pt;}
.y3f{bottom:538.853333pt;}
.ybd{bottom:541.653333pt;}
.y11{bottom:545.573333pt;}
.y81{bottom:546.213333pt;}
.ydf{bottom:553.333333pt;}
.y3e{bottom:554.453333pt;}
.y5a{bottom:559.733333pt;}
.y10{bottom:561.173333pt;}
.ybc{bottom:565.973333pt;}
.y3d{bottom:570.133333pt;}
.y80{bottom:570.533333pt;}
.y9d{bottom:572.853333pt;}
.yde{bottom:574.373333pt;}
.y59{bottom:575.333333pt;}
.yf{bottom:576.853333pt;}
.y3c{bottom:585.733333pt;}
.ybb{bottom:590.213333pt;}
.y58{bottom:591.013333pt;}
.y7f{bottom:594.853333pt;}
.ydd{bottom:595.333333pt;}
.yfc{bottom:598.773333pt;}
.y9c{bottom:604.533333pt;}
.ye{bottom:608.453333pt;}
.yba{bottom:614.533333pt;}
.y57{bottom:614.613333pt;}
.yf0{bottom:614.773333pt;}
.ydc{bottom:616.293333pt;}
.y3b{bottom:617.413333pt;}
.y9b{bottom:620.133333pt;}
.yd{bottom:624.053333pt;}
.yc4{bottom:627.813333pt;}
.yfb{bottom:630.373333pt;}
.y3a{bottom:633.013333pt;}
.y9a{bottom:635.733333pt;}
.ydb{bottom:637.253333pt;}
.y7e{bottom:638.133333pt;}
.yb9{bottom:638.853333pt;}
.yc{bottom:639.733333pt;}
.yef{bottom:646.373333pt;}
.y56{bottom:646.533333pt;}
.y39{bottom:648.613333pt;}
.y102{bottom:650.133333pt;}
.y99{bottom:651.413333pt;}
.yb{bottom:655.333333pt;}
.yfa{bottom:659.013333pt;}
.yc3{bottom:659.413333pt;}
.yda{bottom:661.173333pt;}
.yb8{bottom:663.173333pt;}
.y38{bottom:664.293333pt;}
.yf6{bottom:668.453333pt;}
.y7d{bottom:669.733333pt;}
.yee{bottom:675.013333pt;}
.ya{bottom:679.253333pt;}
.y37{bottom:679.893333pt;}
.y101{bottom:681.733333pt;}
.y98{bottom:683.013333pt;}
.yd9{bottom:685.173333pt;}
.y7c{bottom:685.413333pt;}
.yb7{bottom:687.413333pt;}
.yc2{bottom:688.053333pt;}
.y55{bottom:689.413333pt;}
.y97{bottom:698.693333pt;}
.yf5{bottom:700.133333pt;}
.y7b{bottom:701.013333pt;}
.yd8{bottom:709.893333pt;}
.y100{bottom:710.373333pt;}
.y36{bottom:711.573333pt;}
.y7a{bottom:716.693333pt;}
.y54{bottom:718.053333pt;}
.y9{bottom:722.213333pt;}
.y96{bottom:722.293333pt;}
.y35{bottom:727.173333pt;}
.yf4{bottom:728.773333pt;}
.yb6{bottom:730.693333pt;}
.y34{bottom:742.773333pt;}
.y79{bottom:748.293333pt;}
.y95{bottom:751.573333pt;}
.y8{bottom:753.813333pt;}
.y33{bottom:758.453333pt;}
.yb5{bottom:762.373333pt;}
.y78{bottom:763.893333pt;}
.yd7{bottom:774.053333pt;}
.y94{bottom:775.893333pt;}
.yb4{bottom:777.973333pt;}
.y77{bottom:779.573333pt;}
.y32{bottom:782.053333pt;}
.y7{bottom:785.653333pt;}
.yb3{bottom:793.653333pt;}
.y76{bottom:795.173333pt;}
.y93{bottom:800.213333pt;}
.yd6{bottom:805.733333pt;}
.y31{bottom:813.973333pt;}
.y6{bottom:817.653333pt;}
.yd5{bottom:821.333333pt;}
.y75{bottom:824.533333pt;}
.yb2{bottom:825.253333pt;}
.y5{bottom:833.653333pt;}
.yd4{bottom:836.933333pt;}
.yb1{bottom:840.853333pt;}
.y74{bottom:848.773333pt;}
.yd3{bottom:852.613333pt;}
.yb0{bottom:856.533333pt;}
.y30{bottom:856.853333pt;}
.y4{bottom:865.733333pt;}
.yd2{bottom:868.213333pt;}
.y2f{bottom:872.533333pt;}
.y73{bottom:873.093333pt;}
.yd1{bottom:883.813333pt;}
.y2e{bottom:888.133333pt;}
.y71{bottom:897.413333pt;}
.y3{bottom:899.760000pt;}
.y2d{bottom:903.840000pt;}
.yd0{bottom:915.520000pt;}
.y2c{bottom:919.440000pt;}
.y70{bottom:921.680000pt;}
.ycf{bottom:931.120000pt;}
.yaf{bottom:935.040000pt;}
.y6f{bottom:946.000000pt;}
.y2b{bottom:951.040000pt;}
.yce{bottom:955.040000pt;}
.y2a{bottom:966.720000pt;}
.y6e{bottom:970.320000pt;}
.y29{bottom:982.320000pt;}
.y28{bottom:998.000000pt;}
.yed{bottom:1002.320000pt;}
.y27{bottom:1013.600000pt;}
.y25{bottom:1061.600000pt;}
.ha{height:23.600000pt;}
.h9{height:23.626667pt;}
.hb{height:23.680000pt;}
.hd{height:23.706667pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hc{height:39.200000pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.he{height:54.927899pt;}
.h8{height:55.631875pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:79.360000pt;}
.wf{width:79.440000pt;}
.w3{width:79.520000pt;}
.w10{width:84.160000pt;}
.w12{width:84.186667pt;}
.w13{width:84.240000pt;}
.w11{width:84.320000pt;}
.wa{width:91.466667pt;}
.wb{width:95.360000pt;}
.w8{width:96.000000pt;}
.w9{width:96.080000pt;}
.w5{width:98.880000pt;}
.w4{width:98.960000pt;}
.w6{width:99.066667pt;}
.wd{width:103.226667pt;}
.w15{width:103.360000pt;}
.w14{width:103.386667pt;}
.we{width:109.280000pt;}
.wc{width:111.280000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x1{left:60.480000pt;}
.x23{left:84.479988pt;}
.x24{left:98.879988pt;}
.x29{left:136.159988pt;}
.x19{left:137.280000pt;}
.x26{left:147.146655pt;}
.x6{left:158.026667pt;}
.xc{left:166.186667pt;}
.x2f{left:167.786655pt;}
.x2d{left:178.746655pt;}
.x2{left:180.266655pt;}
.x2b{left:182.586655pt;}
.x11{left:186.346667pt;}
.x15{left:187.546667pt;}
.x1f{left:194.106655pt;}
.x22{left:201.306655pt;}
.x20{left:205.946655pt;}
.x8{left:238.186667pt;}
.x1a{left:241.306667pt;}
.xd{left:246.266667pt;}
.x5{left:261.546655pt;}
.x16{left:267.626667pt;}
.x12{left:282.426667pt;}
.x9{left:337.786667pt;}
.xe{left:342.906667pt;}
.x1b{left:345.306667pt;}
.x17{left:352.426667pt;}
.x13{left:394.426667pt;}
.xa{left:437.306667pt;}
.xf{left:439.626667pt;}
.x1c{left:449.306667pt;}
.x14{left:498.373333pt;}
.x18{left:522.213333pt;}
.x10{left:531.813333pt;}
.xb{left:537.013333pt;}
.x1d{left:553.333333pt;}
.x4{left:602.453322pt;}
.x21{left:612.453322pt;}
.x1e{left:622.373322pt;}
.x27{left:660.453322pt;}
.x25{left:675.013322pt;}
.x2c{left:686.053322pt;}
.x28{left:687.013322pt;}
.x2a{left:689.013322pt;}
.x2e{left:691.013322pt;}
.x3{left:704.053322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  