
    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_b8c327195112a0643c21cae7.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_337f549d08f2a534a098adc1.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_ec85d97bbdd9a4e80a4a79ed.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_46dbde2eeb57962ef5242a8a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.055176;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_1eafaf12b824d3b763660955.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_c245852b44f3817087ed7375.woff')format("woff");}.ff6{font-family:ff6;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;}
.lsd{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.045360px;}
.lsa{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls11{letter-spacing:0.116400px;}
.ls5{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.173400px;}
.lse{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls10{letter-spacing:47.726640px;}
.lsf{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;}
}
.ws4{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.425600px;}
.ws6{word-spacing:-13.399800px;}
.wsa{word-spacing:-13.342800px;}
.ws2{word-spacing:-13.226400px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._11{margin-left:-3.508800px;}
._5{margin-left:-2.202600px;}
._0{margin-left:-1.104000px;}
._3{width:1.248120px;}
._4{width:2.679960px;}
._b{width:3.897114px;}
._9{width:4.990200px;}
._8{width:6.613200px;}
._e{width:7.717801px;}
._d{width:8.777400px;}
._c{width:9.859800px;}
._a{width:11.542800px;}
._13{width:14.232000px;}
._12{width:15.330600px;}
._7{width:16.669800px;}
._6{width:17.697000px;}
._17{width:18.697320px;}
._10{width:20.019960px;}
._f{width:21.583080px;}
._16{width:22.631880px;}
._2{width:23.684400px;}
._1{width:25.070040px;}
._14{width:30.360600px;}
._15{width:31.923720px;}
._18{width:35.320320px;}
._1f{width:37.121520px;}
._20{width:38.295960px;}
._19{width:68.055840px;}
._1a{width:69.618960px;}
._1e{width:80.079840px;}
._1b{width:81.462600px;}
._1c{width:82.604880px;}
._21{width:94.809240px;}
._1d{width:127.755000px;}
._22{width:767.371680px;}
.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;}
.y50{bottom:7.830000px;}
.ya9{bottom:7.860000px;}
.y53{bottom:7.920000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y80{bottom:125.670000px;}
.ycd{bottom:132.780000px;}
.ya4{bottom:139.350000px;}
.y57{bottom:141.240000px;}
.y7f{bottom:143.310000px;}
.ycc{bottom:150.420000px;}
.yf4{bottom:152.670000px;}
.y56{bottom:156.180000px;}
.ya3{bottom:156.900000px;}
.y26{bottom:159.330000px;}
.y7e{bottom:160.860000px;}
.ycb{bottom:167.970000px;}
.yf3{bottom:170.310000px;}
.ya2{bottom:174.450000px;}
.y25{bottom:176.880000px;}
.y55{bottom:183.540000px;}
.yf2{bottom:187.860000px;}
.ya1{bottom:192.090000px;}
.y24{bottom:194.430000px;}
.y7d{bottom:196.500000px;}
.yca{bottom:200.910000px;}
.yf1{bottom:205.500000px;}
.ya0{bottom:209.640000px;}
.y54{bottom:210.900000px;}
.y23{bottom:212.070000px;}
.y7c{bottom:214.050000px;}
.yc9{bottom:228.270000px;}
.y22{bottom:229.620000px;}
.y7b{bottom:231.600000px;}
.yf0{bottom:232.050000px;}
.y52{bottom:238.170000px;}
.y9f{bottom:245.190000px;}
.y7a{bottom:249.240000px;}
.yef{bottom:249.600000px;}
.yc8{bottom:255.630000px;}
.y9e{bottom:262.830000px;}
.y21{bottom:265.260000px;}
.y51{bottom:265.530000px;}
.y79{bottom:266.790000px;}
.yee{bottom:267.240000px;}
.y9d{bottom:280.380000px;}
.y20{bottom:282.810000px;}
.yc7{bottom:282.990000px;}
.y78{bottom:284.430000px;}
.yed{bottom:284.790000px;}
.y4f{bottom:292.890000px;}
.y9c{bottom:298.020000px;}
.y1f{bottom:300.360000px;}
.yc6{bottom:310.260000px;}
.yec{bottom:311.430000px;}
.y9b{bottom:315.570000px;}
.y1e{bottom:318.000000px;}
.y77{bottom:319.980000px;}
.yeb{bottom:328.980000px;}
.y1d{bottom:335.550000px;}
.y76{bottom:337.530000px;}
.yc5{bottom:337.620000px;}
.y4e{bottom:341.580000px;}
.yea{bottom:346.530000px;}
.y9a{bottom:351.120000px;}
.y75{bottom:355.170000px;}
.ye9{bottom:364.170000px;}
.yc4{bottom:364.980000px;}
.y99{bottom:368.760000px;}
.y1c{bottom:371.190000px;}
.y74{bottom:372.720000px;}
.y4d{bottom:377.130000px;}
.y98{bottom:386.310000px;}
.y1b{bottom:388.740000px;}
.y73{bottom:390.360000px;}
.ye8{bottom:390.720000px;}
.y4c{bottom:394.770000px;}
.y97{bottom:403.950000px;}
.y1a{bottom:406.290000px;}
.ye7{bottom:408.360000px;}
.y4b{bottom:412.320000px;}
.yc3{bottom:413.670000px;}
.y96{bottom:421.500000px;}
.y19{bottom:423.930000px;}
.y72{bottom:425.910000px;}
.y4a{bottom:429.870000px;}
.y18{bottom:441.480000px;}
.y71{bottom:443.460000px;}
.y49{bottom:447.510000px;}
.yc2{bottom:449.220000px;}
.ye6{bottom:452.460000px;}
.y95{bottom:457.050000px;}
.y70{bottom:461.100000px;}
.yc1{bottom:466.860000px;}
.y17{bottom:468.390000px;}
.ye5{bottom:470.130000px;}
.y94{bottom:474.720000px;}
.y6f{bottom:478.680000px;}
.y48{bottom:483.090000px;}
.yc0{bottom:484.440000px;}
.y93{bottom:492.270000px;}
.y6e{bottom:496.230000px;}
.ye4{bottom:496.680000px;}
.y47{bottom:500.730000px;}
.ybf{bottom:502.080000px;}
.y92{bottom:509.910000px;}
.y6d{bottom:513.870000px;}
.ye3{bottom:514.230000px;}
.y16{bottom:516.660000px;}
.y46{bottom:518.280000px;}
.ybe{bottom:519.630000px;}
.y91{bottom:527.460000px;}
.ye2{bottom:531.870000px;}
.y15{bottom:534.570000px;}
.y45{bottom:535.830000px;}
.y6c{bottom:540.780000px;}
.ye1{bottom:549.420000px;}
.y44{bottom:553.470000px;}
.ybd{bottom:555.180000px;}
.y90{bottom:563.010000px;}
.y43{bottom:571.020000px;}
.y14{bottom:571.650000px;}
.ybc{bottom:572.820000px;}
.ye0{bottom:576.060000px;}
.y8f{bottom:580.650000px;}
.y6b{bottom:589.020000px;}
.y13{bottom:589.200000px;}
.ybb{bottom:590.370000px;}
.ydf{bottom:593.610000px;}
.y8e{bottom:598.200000px;}
.y42{bottom:606.660000px;}
.y12{bottom:606.840000px;}
.yba{bottom:608.010000px;}
.yde{bottom:611.160000px;}
.y8d{bottom:615.840000px;}
.y41{bottom:624.210000px;}
.y11{bottom:624.390000px;}
.yb9{bottom:625.560000px;}
.ydd{bottom:628.800000px;}
.y8c{bottom:633.390000px;}
.y40{bottom:641.760000px;}
.y10{bottom:641.940000px;}
.y8b{bottom:650.940000px;}
.ydc{bottom:655.350000px;}
.y3f{bottom:659.400000px;}
.yf{bottom:659.580000px;}
.yb8{bottom:661.110000px;}
.ydb{bottom:672.990000px;}
.y3e{bottom:676.950000px;}
.ye{bottom:677.130000px;}
.y8a{bottom:677.850000px;}
.yb7{bottom:678.750000px;}
.y3d{bottom:694.590000px;}
.yd{bottom:694.770000px;}
.y6a{bottom:694.950000px;}
.yb6{bottom:696.300000px;}
.yda{bottom:699.540000px;}
.yc{bottom:712.320000px;}
.y69{bottom:712.590000px;}
.yb5{bottom:713.850000px;}
.yd9{bottom:717.090000px;}
.y89{bottom:723.570000px;}
.yb{bottom:729.870000px;}
.y3c{bottom:730.140000px;}
.yb4{bottom:731.490000px;}
.yd8{bottom:743.730000px;}
.y3b{bottom:747.690000px;}
.y88{bottom:750.840000px;}
.ya{bottom:756.870000px;}
.yd7{bottom:761.280000px;}
.y3a{bottom:765.330000px;}
.yb3{bottom:767.040000px;}
.y87{bottom:778.200000px;}
.yd6{bottom:778.920000px;}
.y39{bottom:782.880000px;}
.yb2{bottom:784.680000px;}
.yd5{bottom:796.470000px;}
.y38{bottom:800.520000px;}
.y68{bottom:800.880000px;}
.yb1{bottom:802.230000px;}
.y9{bottom:803.580000px;}
.y86{bottom:805.560000px;}
.y37{bottom:818.070000px;}
.y67{bottom:818.520000px;}
.yb0{bottom:819.780000px;}
.yd4{bottom:823.380000px;}
.y85{bottom:832.920000px;}
.y66{bottom:836.070000px;}
.yaf{bottom:837.420000px;}
.y8{bottom:839.130000px;}
.y36{bottom:844.980000px;}
.y65{bottom:853.620000px;}
.yae{bottom:854.970000px;}
.y84{bottom:860.190000px;}
.y64{bottom:871.260000px;}
.yd3{bottom:871.620000px;}
.y7{bottom:874.950000px;}
.yad{bottom:881.880000px;}
.y83{bottom:887.550000px;}
.yd2{bottom:889.260000px;}
.y35{bottom:893.220000px;}
.y63{bottom:906.810000px;}
.y34{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.y82{bottom:914.910000px;}
.y62{bottom:924.450000px;}
.yac{bottom:927.600000px;}
.y33{bottom:928.410000px;}
.y61{bottom:942.000000px;}
.y32{bottom:945.960000px;}
.y5{bottom:947.040000px;}
.yab{bottom:954.870000px;}
.y60{bottom:959.550000px;}
.y31{bottom:963.600000px;}
.y5f{bottom:977.190000px;}
.yaa{bottom:982.230000px;}
.y4{bottom:985.380000px;}
.y5e{bottom:994.740000px;}
.y30{bottom:999.150000px;}
.ya8{bottom:1009.590000px;}
.y3{bottom:1010.070000px;}
.yd1{bottom:1012.320000px;}
.y2f{bottom:1016.820000px;}
.yd0{bottom:1029.960000px;}
.y5d{bottom:1030.320000px;}
.y2e{bottom:1034.370000px;}
.ya7{bottom:1036.890000px;}
.yf8{bottom:1043.370000px;}
.ycf{bottom:1047.510000px;}
.y5c{bottom:1047.960000px;}
.y2d{bottom:1051.920000px;}
.yf7{bottom:1060.920000px;}
.ya6{bottom:1064.250000px;}
.y5b{bottom:1065.510000px;}
.y2c{bottom:1069.560000px;}
.yce{bottom:1074.420000px;}
.yf6{bottom:1078.560000px;}
.y5a{bottom:1083.150000px;}
.y2b{bottom:1087.110000px;}
.ya5{bottom:1091.610000px;}
.yf5{bottom:1096.110000px;}
.y59{bottom:1100.700000px;}
.y81{bottom:1105.110000px;}
.y2a{bottom:1122.750000px;}
.y58{bottom:1127.610000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h9{height:26.550000px;}
.hb{height:26.580000px;}
.ha{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h6{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.hc{height:61.793886px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wa{width:74.550000px;}
.w7{width:100.830000px;}
.wd{width:108.360000px;}
.w8{width:110.250000px;}
.wc{width:124.140000px;}
.w5{width:129.960000px;}
.w3{width:149.670000px;}
.w6{width:179.190000px;}
.w9{width:182.610000px;}
.w4{width:188.580000px;}
.wb{width:216.360000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:3.960000px;}
.x9{left:7.740000px;}
.x1{left:68.040000px;}
.x12{left:111.239987px;}
.x2{left:202.799987px;}
.x4{left:211.800000px;}
.xf{left:221.430000px;}
.x8{left:250.770000px;}
.xc{left:262.200000px;}
.x6{left:362.190000px;}
.xa{left:430.680000px;}
.x10{left:438.600000px;}
.xd{left:445.530000px;}
.xe{left:520.800000px;}
.xb{left:532.230000px;}
.x7{left:551.490000px;}
.x11{left:563.460000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.040320pt;}
.lsa{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls11{letter-spacing:0.103467pt;}
.ls5{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.154133pt;}
.lse{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls10{letter-spacing:42.423680pt;}
.lsf{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.933867pt;}
.ws6{word-spacing:-11.910933pt;}
.wsa{word-spacing:-11.860267pt;}
.ws2{word-spacing:-11.756800pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._11{margin-left:-3.118933pt;}
._5{margin-left:-1.957867pt;}
._0{margin-left:-0.981333pt;}
._3{width:1.109440pt;}
._4{width:2.382187pt;}
._b{width:3.464101pt;}
._9{width:4.435734pt;}
._8{width:5.878400pt;}
._e{width:6.860268pt;}
._d{width:7.802133pt;}
._c{width:8.764267pt;}
._a{width:10.260266pt;}
._13{width:12.650667pt;}
._12{width:13.627200pt;}
._7{width:14.817600pt;}
._6{width:15.730666pt;}
._17{width:16.619840pt;}
._10{width:17.795520pt;}
._f{width:19.184960pt;}
._16{width:20.117227pt;}
._2{width:21.052800pt;}
._1{width:22.284480pt;}
._14{width:26.987200pt;}
._15{width:28.376640pt;}
._18{width:31.395840pt;}
._1f{width:32.996907pt;}
._20{width:34.040853pt;}
._19{width:60.494080pt;}
._1a{width:61.883520pt;}
._1e{width:71.182080pt;}
._1b{width:72.411200pt;}
._1c{width:73.426560pt;}
._21{width:84.274880pt;}
._1d{width:113.560000pt;}
._22{width:682.108160pt;}
.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;}
.y50{bottom:6.960000pt;}
.ya9{bottom:6.986667pt;}
.y53{bottom:7.040000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y80{bottom:111.706667pt;}
.ycd{bottom:118.026667pt;}
.ya4{bottom:123.866667pt;}
.y57{bottom:125.546667pt;}
.y7f{bottom:127.386667pt;}
.ycc{bottom:133.706667pt;}
.yf4{bottom:135.706667pt;}
.y56{bottom:138.826667pt;}
.ya3{bottom:139.466667pt;}
.y26{bottom:141.626667pt;}
.y7e{bottom:142.986667pt;}
.ycb{bottom:149.306667pt;}
.yf3{bottom:151.386667pt;}
.ya2{bottom:155.066667pt;}
.y25{bottom:157.226667pt;}
.y55{bottom:163.146667pt;}
.yf2{bottom:166.986667pt;}
.ya1{bottom:170.746667pt;}
.y24{bottom:172.826667pt;}
.y7d{bottom:174.666667pt;}
.yca{bottom:178.586667pt;}
.yf1{bottom:182.666667pt;}
.ya0{bottom:186.346667pt;}
.y54{bottom:187.466667pt;}
.y23{bottom:188.506667pt;}
.y7c{bottom:190.266667pt;}
.yc9{bottom:202.906667pt;}
.y22{bottom:204.106667pt;}
.y7b{bottom:205.866667pt;}
.yf0{bottom:206.266667pt;}
.y52{bottom:211.706667pt;}
.y9f{bottom:217.946667pt;}
.y7a{bottom:221.546667pt;}
.yef{bottom:221.866667pt;}
.yc8{bottom:227.226667pt;}
.y9e{bottom:233.626667pt;}
.y21{bottom:235.786667pt;}
.y51{bottom:236.026667pt;}
.y79{bottom:237.146667pt;}
.yee{bottom:237.546667pt;}
.y9d{bottom:249.226667pt;}
.y20{bottom:251.386667pt;}
.yc7{bottom:251.546667pt;}
.y78{bottom:252.826667pt;}
.yed{bottom:253.146667pt;}
.y4f{bottom:260.346667pt;}
.y9c{bottom:264.906667pt;}
.y1f{bottom:266.986667pt;}
.yc6{bottom:275.786667pt;}
.yec{bottom:276.826667pt;}
.y9b{bottom:280.506667pt;}
.y1e{bottom:282.666667pt;}
.y77{bottom:284.426667pt;}
.yeb{bottom:292.426667pt;}
.y1d{bottom:298.266667pt;}
.y76{bottom:300.026667pt;}
.yc5{bottom:300.106667pt;}
.y4e{bottom:303.626667pt;}
.yea{bottom:308.026667pt;}
.y9a{bottom:312.106667pt;}
.y75{bottom:315.706667pt;}
.ye9{bottom:323.706667pt;}
.yc4{bottom:324.426667pt;}
.y99{bottom:327.786667pt;}
.y1c{bottom:329.946667pt;}
.y74{bottom:331.306667pt;}
.y4d{bottom:335.226667pt;}
.y98{bottom:343.386667pt;}
.y1b{bottom:345.546667pt;}
.y73{bottom:346.986667pt;}
.ye8{bottom:347.306667pt;}
.y4c{bottom:350.906667pt;}
.y97{bottom:359.066667pt;}
.y1a{bottom:361.146667pt;}
.ye7{bottom:362.986667pt;}
.y4b{bottom:366.506667pt;}
.yc3{bottom:367.706667pt;}
.y96{bottom:374.666667pt;}
.y19{bottom:376.826667pt;}
.y72{bottom:378.586667pt;}
.y4a{bottom:382.106667pt;}
.y18{bottom:392.426667pt;}
.y71{bottom:394.186667pt;}
.y49{bottom:397.786667pt;}
.yc2{bottom:399.306667pt;}
.ye6{bottom:402.186667pt;}
.y95{bottom:406.266667pt;}
.y70{bottom:409.866667pt;}
.yc1{bottom:414.986667pt;}
.y17{bottom:416.346667pt;}
.ye5{bottom:417.893333pt;}
.y94{bottom:421.973333pt;}
.y6f{bottom:425.493333pt;}
.y48{bottom:429.413333pt;}
.yc0{bottom:430.613333pt;}
.y93{bottom:437.573333pt;}
.y6e{bottom:441.093333pt;}
.ye4{bottom:441.493333pt;}
.y47{bottom:445.093333pt;}
.ybf{bottom:446.293333pt;}
.y92{bottom:453.253333pt;}
.y6d{bottom:456.773333pt;}
.ye3{bottom:457.093333pt;}
.y16{bottom:459.253333pt;}
.y46{bottom:460.693333pt;}
.ybe{bottom:461.893333pt;}
.y91{bottom:468.853333pt;}
.ye2{bottom:472.773333pt;}
.y15{bottom:475.173333pt;}
.y45{bottom:476.293333pt;}
.y6c{bottom:480.693333pt;}
.ye1{bottom:488.373333pt;}
.y44{bottom:491.973333pt;}
.ybd{bottom:493.493333pt;}
.y90{bottom:500.453333pt;}
.y43{bottom:507.573333pt;}
.y14{bottom:508.133333pt;}
.ybc{bottom:509.173333pt;}
.ye0{bottom:512.053333pt;}
.y8f{bottom:516.133333pt;}
.y6b{bottom:523.573333pt;}
.y13{bottom:523.733333pt;}
.ybb{bottom:524.773333pt;}
.ydf{bottom:527.653333pt;}
.y8e{bottom:531.733333pt;}
.y42{bottom:539.253333pt;}
.y12{bottom:539.413333pt;}
.yba{bottom:540.453333pt;}
.yde{bottom:543.253333pt;}
.y8d{bottom:547.413333pt;}
.y41{bottom:554.853333pt;}
.y11{bottom:555.013333pt;}
.yb9{bottom:556.053333pt;}
.ydd{bottom:558.933333pt;}
.y8c{bottom:563.013333pt;}
.y40{bottom:570.453333pt;}
.y10{bottom:570.613333pt;}
.y8b{bottom:578.613333pt;}
.ydc{bottom:582.533333pt;}
.y3f{bottom:586.133333pt;}
.yf{bottom:586.293333pt;}
.yb8{bottom:587.653333pt;}
.ydb{bottom:598.213333pt;}
.y3e{bottom:601.733333pt;}
.ye{bottom:601.893333pt;}
.y8a{bottom:602.533333pt;}
.yb7{bottom:603.333333pt;}
.y3d{bottom:617.413333pt;}
.yd{bottom:617.573333pt;}
.y6a{bottom:617.733333pt;}
.yb6{bottom:618.933333pt;}
.yda{bottom:621.813333pt;}
.yc{bottom:633.173333pt;}
.y69{bottom:633.413333pt;}
.yb5{bottom:634.533333pt;}
.yd9{bottom:637.413333pt;}
.y89{bottom:643.173333pt;}
.yb{bottom:648.773333pt;}
.y3c{bottom:649.013333pt;}
.yb4{bottom:650.213333pt;}
.yd8{bottom:661.093333pt;}
.y3b{bottom:664.613333pt;}
.y88{bottom:667.413333pt;}
.ya{bottom:672.773333pt;}
.yd7{bottom:676.693333pt;}
.y3a{bottom:680.293333pt;}
.yb3{bottom:681.813333pt;}
.y87{bottom:691.733333pt;}
.yd6{bottom:692.373333pt;}
.y39{bottom:695.893333pt;}
.yb2{bottom:697.493333pt;}
.yd5{bottom:707.973333pt;}
.y38{bottom:711.573333pt;}
.y68{bottom:711.893333pt;}
.yb1{bottom:713.093333pt;}
.y9{bottom:714.293333pt;}
.y86{bottom:716.053333pt;}
.y37{bottom:727.173333pt;}
.y67{bottom:727.573333pt;}
.yb0{bottom:728.693333pt;}
.yd4{bottom:731.893333pt;}
.y85{bottom:740.373333pt;}
.y66{bottom:743.173333pt;}
.yaf{bottom:744.373333pt;}
.y8{bottom:745.893333pt;}
.y36{bottom:751.093333pt;}
.y65{bottom:758.773333pt;}
.yae{bottom:759.973333pt;}
.y84{bottom:764.613333pt;}
.y64{bottom:774.453333pt;}
.yd3{bottom:774.773333pt;}
.y7{bottom:777.733333pt;}
.yad{bottom:783.893333pt;}
.y83{bottom:788.933333pt;}
.yd2{bottom:790.453333pt;}
.y35{bottom:793.973333pt;}
.y63{bottom:806.053333pt;}
.y34{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.y82{bottom:813.253333pt;}
.y62{bottom:821.733333pt;}
.yac{bottom:824.533333pt;}
.y33{bottom:825.253333pt;}
.y61{bottom:837.333333pt;}
.y32{bottom:840.853333pt;}
.y5{bottom:841.813333pt;}
.yab{bottom:848.773333pt;}
.y60{bottom:852.933333pt;}
.y31{bottom:856.533333pt;}
.y5f{bottom:868.613333pt;}
.yaa{bottom:873.093333pt;}
.y4{bottom:875.893333pt;}
.y5e{bottom:884.213333pt;}
.y30{bottom:888.133333pt;}
.ya8{bottom:897.413333pt;}
.y3{bottom:897.840000pt;}
.yd1{bottom:899.840000pt;}
.y2f{bottom:903.840000pt;}
.yd0{bottom:915.520000pt;}
.y5d{bottom:915.840000pt;}
.y2e{bottom:919.440000pt;}
.ya7{bottom:921.680000pt;}
.yf8{bottom:927.440000pt;}
.ycf{bottom:931.120000pt;}
.y5c{bottom:931.520000pt;}
.y2d{bottom:935.040000pt;}
.yf7{bottom:943.040000pt;}
.ya6{bottom:946.000000pt;}
.y5b{bottom:947.120000pt;}
.y2c{bottom:950.720000pt;}
.yce{bottom:955.040000pt;}
.yf6{bottom:958.720000pt;}
.y5a{bottom:962.800000pt;}
.y2b{bottom:966.320000pt;}
.ya5{bottom:970.320000pt;}
.yf5{bottom:974.320000pt;}
.y59{bottom:978.400000pt;}
.y81{bottom:982.320000pt;}
.y2a{bottom:998.000000pt;}
.y58{bottom:1002.320000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h9{height:23.600000pt;}
.hb{height:23.626667pt;}
.ha{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h6{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.hc{height:54.927899pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wa{width:66.266667pt;}
.w7{width:89.626667pt;}
.wd{width:96.320000pt;}
.w8{width:98.000000pt;}
.wc{width:110.346667pt;}
.w5{width:115.520000pt;}
.w3{width:133.040000pt;}
.w6{width:159.280000pt;}
.w9{width:162.320000pt;}
.w4{width:167.626667pt;}
.wb{width:192.320000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:3.520000pt;}
.x9{left:6.880000pt;}
.x1{left:60.480000pt;}
.x12{left:98.879988pt;}
.x2{left:180.266655pt;}
.x4{left:188.266667pt;}
.xf{left:196.826667pt;}
.x8{left:222.906667pt;}
.xc{left:233.066667pt;}
.x6{left:321.946667pt;}
.xa{left:382.826667pt;}
.x10{left:389.866667pt;}
.xd{left:396.026667pt;}
.xe{left:462.933333pt;}
.xb{left:473.093333pt;}
.x7{left:490.213333pt;}
.x11{left:500.853333pt;}
.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; }
  