
    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_accf098daf30cd4d85ea8a89.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_6550e2abdc9783b032108ad4.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_0fb895fd36632898bbd0464c.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_ecb9ca4547ee96a3bbdda622.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7758cae939c212007d2023ee.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_df071acca6069ef107dca280.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_57307600687ff93e67d375a5.woff')format("woff");}.ff8{font-family:ff8;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;}
.ls1a{letter-spacing:-0.243600px;}
.lsa{letter-spacing:-0.186600px;}
.ls18{letter-spacing:-0.178800px;}
.lsd{letter-spacing:-0.162000px;}
.ls13{letter-spacing:-0.158400px;}
.ls10{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls12{letter-spacing:-0.114600px;}
.ls16{letter-spacing:-0.092400px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls11{letter-spacing:-0.084000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls14{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.049200px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls17{letter-spacing:0.116400px;}
.ls6{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.173400px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:14.973600px;}
.ls19{letter-spacing:48.446640px;}
.ls15{letter-spacing:81.566640px;}
.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;}
}
.ws6{word-spacing:-14.493600px;}
.wsd{word-spacing:-14.372400px;}
.ws4{word-spacing:-13.399800px;}
.wsf{word-spacing:-13.342800px;}
.ws8{word-spacing:-13.275600px;}
.wsa{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wse{word-spacing:-13.134000px;}
.wsc{word-spacing:-13.111800px;}
.wsb{word-spacing:-13.072800px;}
.ws7{word-spacing:-13.064400px;}
.ws10{word-spacing:-13.047600px;}
.ws3{word-spacing:-13.039800px;}
.ws11{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws9{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._4{margin-left:-3.607200px;}
._3{margin-left:-2.344800px;}
._0{margin-left:-1.110000px;}
._2{width:1.131240px;}
._5{width:2.645400px;}
._c{width:3.727440px;}
._6{width:4.869600px;}
._a{width:5.952000px;}
._b{width:7.395000px;}
._8{width:8.514366px;}
._7{width:9.739200px;}
._9{width:11.044543px;}
._12{width:12.136731px;}
._e{width:14.987880px;}
._1{width:17.010360px;}
._d{width:18.106920px;}
._18{width:20.224080px;}
._15{width:21.252240px;}
._16{width:22.576320px;}
._10{width:28.015920px;}
._11{width:29.244840px;}
._17{width:33.126120px;}
._14{width:80.918520px;}
._13{width:82.033560px;}
._19{width:94.869360px;}
._f{width:134.585640px;}
.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;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs8{font-size:63.000000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.ye9{bottom:114.600000px;}
.y59{bottom:125.130000px;}
.ybb{bottom:127.110000px;}
.ye8{bottom:132.240000px;}
.y58{bottom:142.680000px;}
.yba{bottom:144.660000px;}
.y90{bottom:145.560000px;}
.y26{bottom:147.000000px;}
.ye7{bottom:149.790000px;}
.y75{bottom:158.790000px;}
.y57{bottom:160.320000px;}
.y8f{bottom:163.110000px;}
.y25{bottom:164.640000px;}
.yb9{bottom:170.490000px;}
.ye6{bottom:175.620000px;}
.y74{bottom:176.340000px;}
.y56{bottom:177.870000px;}
.y8e{bottom:180.660000px;}
.y24{bottom:182.190000px;}
.yb8{bottom:188.130000px;}
.ye5{bottom:193.260000px;}
.y73{bottom:193.980000px;}
.y55{bottom:195.510000px;}
.y8d{bottom:198.300000px;}
.y23{bottom:199.830000px;}
.y72{bottom:211.530000px;}
.y54{bottom:213.060000px;}
.yb7{bottom:213.960000px;}
.y22{bottom:217.380000px;}
.ye4{bottom:219.090000px;}
.y53{bottom:230.610000px;}
.yb6{bottom:231.510000px;}
.y8c{bottom:233.850000px;}
.y21{bottom:234.930000px;}
.ye3{bottom:236.640000px;}
.y71{bottom:247.080000px;}
.y52{bottom:248.250000px;}
.y8b{bottom:251.490000px;}
.y20{bottom:252.570000px;}
.yb5{bottom:257.340000px;}
.ye2{bottom:262.470000px;}
.y8a{bottom:269.040000px;}
.y1f{bottom:270.120000px;}
.yb4{bottom:274.980000px;}
.ye1{bottom:280.110000px;}
.y70{bottom:282.720000px;}
.y51{bottom:283.800000px;}
.y1e{bottom:287.760000px;}
.ye0{bottom:297.660000px;}
.y6f{bottom:300.270000px;}
.yb3{bottom:300.810000px;}
.y50{bottom:301.440000px;}
.y89{bottom:304.590000px;}
.y1d{bottom:305.310000px;}
.yb2{bottom:318.360000px;}
.y4f{bottom:318.990000px;}
.y88{bottom:322.230000px;}
.ydf{bottom:323.490000px;}
.y6e{bottom:335.910000px;}
.y4e{bottom:336.540000px;}
.y87{bottom:339.780000px;}
.y1c{bottom:340.860000px;}
.yde{bottom:341.040000px;}
.yb1{bottom:344.190000px;}
.y6d{bottom:353.460000px;}
.y4d{bottom:354.180000px;}
.y86{bottom:357.420000px;}
.y1b{bottom:358.500000px;}
.yb0{bottom:361.830000px;}
.ydd{bottom:366.870000px;}
.y85{bottom:374.970000px;}
.y1a{bottom:376.050000px;}
.yaf{bottom:379.380000px;}
.ydc{bottom:384.510000px;}
.y6c{bottom:389.010000px;}
.y4c{bottom:389.730000px;}
.y19{bottom:393.600000px;}
.yae{bottom:396.930000px;}
.y84{bottom:401.520000px;}
.y6b{bottom:406.650000px;}
.y4b{bottom:407.370000px;}
.ydb{bottom:410.340000px;}
.yad{bottom:414.570000px;}
.y18{bottom:420.240000px;}
.y6a{bottom:424.200000px;}
.y4a{bottom:424.920000px;}
.yda{bottom:427.890000px;}
.y83{bottom:437.160000px;}
.yac{bottom:440.400000px;}
.y49{bottom:442.470000px;}
.yd9{bottom:453.720000px;}
.y82{bottom:454.710000px;}
.y17{bottom:455.790000px;}
.yab{bottom:457.950000px;}
.y69{bottom:459.750000px;}
.y48{bottom:460.110000px;}
.yd8{bottom:471.390000px;}
.y81{bottom:472.380000px;}
.y16{bottom:473.460000px;}
.y68{bottom:477.420000px;}
.y47{bottom:477.690000px;}
.yaa{bottom:483.810000px;}
.yd7{bottom:488.940000px;}
.y80{bottom:489.930000px;}
.y15{bottom:491.010000px;}
.y67{bottom:494.970000px;}
.ya9{bottom:501.450000px;}
.y46{bottom:504.330000px;}
.y7f{bottom:507.480000px;}
.y14{bottom:508.560000px;}
.yd6{bottom:514.770000px;}
.y66{bottom:521.610000px;}
.y7e{bottom:525.120000px;}
.ya8{bottom:527.280000px;}
.yd5{bottom:532.410000px;}
.y13{bottom:535.470000px;}
.y45{bottom:539.880000px;}
.y7d{bottom:542.670000px;}
.ya7{bottom:554.190000px;}
.y65{bottom:557.160000px;}
.y44{bottom:557.430000px;}
.yd4{bottom:558.240000px;}
.y7c{bottom:560.310000px;}
.y64{bottom:574.710000px;}
.y43{bottom:575.070000px;}
.yd3{bottom:575.790000px;}
.y7b{bottom:577.860000px;}
.y12{bottom:584.070000px;}
.y63{bottom:592.350000px;}
.y42{bottom:592.620000px;}
.yd2{bottom:601.620000px;}
.ya6{bottom:602.430000px;}
.y7a{bottom:604.410000px;}
.y41{bottom:610.260000px;}
.yd1{bottom:619.260000px;}
.y11{bottom:621.150000px;}
.y40{bottom:627.810000px;}
.y62{bottom:627.900000px;}
.ya5{bottom:629.340000px;}
.yd0{bottom:636.810000px;}
.y10{bottom:638.700000px;}
.y79{bottom:639.330000px;}
.y61{bottom:645.540000px;}
.yf{bottom:656.340000px;}
.ycf{bottom:662.640000px;}
.y60{bottom:663.090000px;}
.y3f{bottom:663.360000px;}
.ya4{bottom:666.330000px;}
.y78{bottom:672.090000px;}
.ye{bottom:673.890000px;}
.yce{bottom:680.190000px;}
.y3e{bottom:681.000000px;}
.ya3{bottom:683.970000px;}
.yd{bottom:691.440000px;}
.y3d{bottom:698.550000px;}
.y5f{bottom:698.640000px;}
.y77{bottom:704.310000px;}
.ycd{bottom:706.020000px;}
.yc{bottom:709.080000px;}
.ya2{bottom:710.880000px;}
.y3c{bottom:716.190000px;}
.y5e{bottom:716.280000px;}
.ycc{bottom:723.660000px;}
.y5d{bottom:733.830000px;}
.yb{bottom:735.990000px;}
.ya1{bottom:748.230000px;}
.ycb{bottom:749.490000px;}
.y5c{bottom:751.470000px;}
.y3b{bottom:751.740000px;}
.yca{bottom:767.040000px;}
.y3a{bottom:769.290000px;}
.ya{bottom:784.230000px;}
.yc9{bottom:784.680000px;}
.y39{bottom:786.930000px;}
.y5b{bottom:787.020000px;}
.ya0{bottom:796.470000px;}
.y38{bottom:804.480000px;}
.yc8{bottom:810.510000px;}
.y9f{bottom:814.020000px;}
.y5a{bottom:819.240000px;}
.y9{bottom:819.780000px;}
.yc7{bottom:828.060000px;}
.y37{bottom:831.030000px;}
.y9e{bottom:831.660000px;}
.y9d{bottom:849.210000px;}
.yc6{bottom:853.890000px;}
.y8{bottom:855.600000px;}
.y36{bottom:866.670000px;}
.y9c{bottom:876.120000px;}
.yc5{bottom:879.720000px;}
.y35{bottom:884.220000px;}
.y7{bottom:891.600000px;}
.yc4{bottom:897.360000px;}
.y34{bottom:901.860000px;}
.y33{bottom:919.410000px;}
.yc3{bottom:923.190000px;}
.y9b{bottom:924.450000px;}
.y6{bottom:927.690000px;}
.y32{bottom:936.960000px;}
.yc2{bottom:940.740000px;}
.y9a{bottom:942.000000px;}
.y5{bottom:947.040000px;}
.y31{bottom:954.600000px;}
.y99{bottom:959.550000px;}
.yc1{bottom:966.570000px;}
.y98{bottom:977.190000px;}
.y30{bottom:981.150000px;}
.yc0{bottom:984.210000px;}
.y4{bottom:985.380000px;}
.y97{bottom:994.740000px;}
.y3{bottom:1010.070000px;}
.y2f{bottom:1016.820000px;}
.ybf{bottom:1027.620000px;}
.y96{bottom:1030.320000px;}
.y2e{bottom:1034.370000px;}
.y95{bottom:1047.960000px;}
.y2d{bottom:1051.920000px;}
.ybe{bottom:1053.450000px;}
.y94{bottom:1065.510000px;}
.y76{bottom:1069.920000px;}
.ybd{bottom:1079.280000px;}
.y93{bottom:1083.150000px;}
.y2c{bottom:1087.560000px;}
.ybc{bottom:1096.920000px;}
.y92{bottom:1100.700000px;}
.y2b{bottom:1105.110000px;}
.y2a{bottom:1122.750000px;}
.y91{bottom:1127.610000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h8{height:40.539023px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.hb{height:61.793886px;}
.h7{height:62.585859px;}
.h9{height:64.754072px;}
.ha{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x9{left:111.419987px;}
.x2{left:192.719987px;}
.x5{left:201.089987px;}
.x7{left:255.629987px;}
.x8{left:339.509987px;}
.x4{left:777.389987px;}
.x3{left:800.339987px;}
.x6{left:819.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1a{letter-spacing:-0.216533pt;}
.lsa{letter-spacing:-0.165867pt;}
.ls18{letter-spacing:-0.158933pt;}
.lsd{letter-spacing:-0.144000pt;}
.ls13{letter-spacing:-0.140800pt;}
.ls10{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls12{letter-spacing:-0.101867pt;}
.ls16{letter-spacing:-0.082133pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls11{letter-spacing:-0.074667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls14{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.043733pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls17{letter-spacing:0.103467pt;}
.ls6{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.154133pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:13.309867pt;}
.ls19{letter-spacing:43.063680pt;}
.ls15{letter-spacing:72.503680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsd{word-spacing:-12.775467pt;}
.ws4{word-spacing:-11.910933pt;}
.wsf{word-spacing:-11.860267pt;}
.ws8{word-spacing:-11.800533pt;}
.wsa{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.674667pt;}
.wsc{word-spacing:-11.654933pt;}
.wsb{word-spacing:-11.620267pt;}
.ws7{word-spacing:-11.612800pt;}
.ws10{word-spacing:-11.597867pt;}
.ws3{word-spacing:-11.590933pt;}
.ws11{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws9{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._4{margin-left:-3.206400pt;}
._3{margin-left:-2.084267pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.005547pt;}
._5{width:2.351467pt;}
._c{width:3.313280pt;}
._6{width:4.328533pt;}
._a{width:5.290667pt;}
._b{width:6.573334pt;}
._8{width:7.568325pt;}
._7{width:8.657066pt;}
._9{width:9.817372pt;}
._12{width:10.788205pt;}
._e{width:13.322560pt;}
._1{width:15.120320pt;}
._d{width:16.095040pt;}
._18{width:17.976960pt;}
._15{width:18.890880pt;}
._16{width:20.067840pt;}
._10{width:24.903040pt;}
._11{width:25.995413pt;}
._17{width:29.445440pt;}
._14{width:71.927573pt;}
._13{width:72.918720pt;}
._19{width:84.328320pt;}
._f{width:119.631680pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs8{font-size:56.000000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.ye9{bottom:101.866667pt;}
.y59{bottom:111.226667pt;}
.ybb{bottom:112.986667pt;}
.ye8{bottom:117.546667pt;}
.y58{bottom:126.826667pt;}
.yba{bottom:128.586667pt;}
.y90{bottom:129.386667pt;}
.y26{bottom:130.666667pt;}
.ye7{bottom:133.146667pt;}
.y75{bottom:141.146667pt;}
.y57{bottom:142.506667pt;}
.y8f{bottom:144.986667pt;}
.y25{bottom:146.346667pt;}
.yb9{bottom:151.546667pt;}
.ye6{bottom:156.106667pt;}
.y74{bottom:156.746667pt;}
.y56{bottom:158.106667pt;}
.y8e{bottom:160.586667pt;}
.y24{bottom:161.946667pt;}
.yb8{bottom:167.226667pt;}
.ye5{bottom:171.786667pt;}
.y73{bottom:172.426667pt;}
.y55{bottom:173.786667pt;}
.y8d{bottom:176.266667pt;}
.y23{bottom:177.626667pt;}
.y72{bottom:188.026667pt;}
.y54{bottom:189.386667pt;}
.yb7{bottom:190.186667pt;}
.y22{bottom:193.226667pt;}
.ye4{bottom:194.746667pt;}
.y53{bottom:204.986667pt;}
.yb6{bottom:205.786667pt;}
.y8c{bottom:207.866667pt;}
.y21{bottom:208.826667pt;}
.ye3{bottom:210.346667pt;}
.y71{bottom:219.626667pt;}
.y52{bottom:220.666667pt;}
.y8b{bottom:223.546667pt;}
.y20{bottom:224.506667pt;}
.yb5{bottom:228.746667pt;}
.ye2{bottom:233.306667pt;}
.y8a{bottom:239.146667pt;}
.y1f{bottom:240.106667pt;}
.yb4{bottom:244.426667pt;}
.ye1{bottom:248.986667pt;}
.y70{bottom:251.306667pt;}
.y51{bottom:252.266667pt;}
.y1e{bottom:255.786667pt;}
.ye0{bottom:264.586667pt;}
.y6f{bottom:266.906667pt;}
.yb3{bottom:267.386667pt;}
.y50{bottom:267.946667pt;}
.y89{bottom:270.746667pt;}
.y1d{bottom:271.386667pt;}
.yb2{bottom:282.986667pt;}
.y4f{bottom:283.546667pt;}
.y88{bottom:286.426667pt;}
.ydf{bottom:287.546667pt;}
.y6e{bottom:298.586667pt;}
.y4e{bottom:299.146667pt;}
.y87{bottom:302.026667pt;}
.y1c{bottom:302.986667pt;}
.yde{bottom:303.146667pt;}
.yb1{bottom:305.946667pt;}
.y6d{bottom:314.186667pt;}
.y4d{bottom:314.826667pt;}
.y86{bottom:317.706667pt;}
.y1b{bottom:318.666667pt;}
.yb0{bottom:321.626667pt;}
.ydd{bottom:326.106667pt;}
.y85{bottom:333.306667pt;}
.y1a{bottom:334.266667pt;}
.yaf{bottom:337.226667pt;}
.ydc{bottom:341.786667pt;}
.y6c{bottom:345.786667pt;}
.y4c{bottom:346.426667pt;}
.y19{bottom:349.866667pt;}
.yae{bottom:352.826667pt;}
.y84{bottom:356.906667pt;}
.y6b{bottom:361.466667pt;}
.y4b{bottom:362.106667pt;}
.ydb{bottom:364.746667pt;}
.yad{bottom:368.506667pt;}
.y18{bottom:373.546667pt;}
.y6a{bottom:377.066667pt;}
.y4a{bottom:377.706667pt;}
.yda{bottom:380.346667pt;}
.y83{bottom:388.586667pt;}
.yac{bottom:391.466667pt;}
.y49{bottom:393.306667pt;}
.yd9{bottom:403.306667pt;}
.y82{bottom:404.186667pt;}
.y17{bottom:405.146667pt;}
.yab{bottom:407.066667pt;}
.y69{bottom:408.666667pt;}
.y48{bottom:408.986667pt;}
.yd8{bottom:419.013333pt;}
.y81{bottom:419.893333pt;}
.y16{bottom:420.853333pt;}
.y68{bottom:424.373333pt;}
.y47{bottom:424.613333pt;}
.yaa{bottom:430.053333pt;}
.yd7{bottom:434.613333pt;}
.y80{bottom:435.493333pt;}
.y15{bottom:436.453333pt;}
.y67{bottom:439.973333pt;}
.ya9{bottom:445.733333pt;}
.y46{bottom:448.293333pt;}
.y7f{bottom:451.093333pt;}
.y14{bottom:452.053333pt;}
.yd6{bottom:457.573333pt;}
.y66{bottom:463.653333pt;}
.y7e{bottom:466.773333pt;}
.ya8{bottom:468.693333pt;}
.yd5{bottom:473.253333pt;}
.y13{bottom:475.973333pt;}
.y45{bottom:479.893333pt;}
.y7d{bottom:482.373333pt;}
.ya7{bottom:492.613333pt;}
.y65{bottom:495.253333pt;}
.y44{bottom:495.493333pt;}
.yd4{bottom:496.213333pt;}
.y7c{bottom:498.053333pt;}
.y64{bottom:510.853333pt;}
.y43{bottom:511.173333pt;}
.yd3{bottom:511.813333pt;}
.y7b{bottom:513.653333pt;}
.y12{bottom:519.173333pt;}
.y63{bottom:526.533333pt;}
.y42{bottom:526.773333pt;}
.yd2{bottom:534.773333pt;}
.ya6{bottom:535.493333pt;}
.y7a{bottom:537.253333pt;}
.y41{bottom:542.453333pt;}
.yd1{bottom:550.453333pt;}
.y11{bottom:552.133333pt;}
.y40{bottom:558.053333pt;}
.y62{bottom:558.133333pt;}
.ya5{bottom:559.413333pt;}
.yd0{bottom:566.053333pt;}
.y10{bottom:567.733333pt;}
.y79{bottom:568.293333pt;}
.y61{bottom:573.813333pt;}
.yf{bottom:583.413333pt;}
.ycf{bottom:589.013333pt;}
.y60{bottom:589.413333pt;}
.y3f{bottom:589.653333pt;}
.ya4{bottom:592.293333pt;}
.y78{bottom:597.413333pt;}
.ye{bottom:599.013333pt;}
.yce{bottom:604.613333pt;}
.y3e{bottom:605.333333pt;}
.ya3{bottom:607.973333pt;}
.yd{bottom:614.613333pt;}
.y3d{bottom:620.933333pt;}
.y5f{bottom:621.013333pt;}
.y77{bottom:626.053333pt;}
.ycd{bottom:627.573333pt;}
.yc{bottom:630.293333pt;}
.ya2{bottom:631.893333pt;}
.y3c{bottom:636.613333pt;}
.y5e{bottom:636.693333pt;}
.ycc{bottom:643.253333pt;}
.y5d{bottom:652.293333pt;}
.yb{bottom:654.213333pt;}
.ya1{bottom:665.093333pt;}
.ycb{bottom:666.213333pt;}
.y5c{bottom:667.973333pt;}
.y3b{bottom:668.213333pt;}
.yca{bottom:681.813333pt;}
.y3a{bottom:683.813333pt;}
.ya{bottom:697.093333pt;}
.yc9{bottom:697.493333pt;}
.y39{bottom:699.493333pt;}
.y5b{bottom:699.573333pt;}
.ya0{bottom:707.973333pt;}
.y38{bottom:715.093333pt;}
.yc8{bottom:720.453333pt;}
.y9f{bottom:723.573333pt;}
.y5a{bottom:728.213333pt;}
.y9{bottom:728.693333pt;}
.yc7{bottom:736.053333pt;}
.y37{bottom:738.693333pt;}
.y9e{bottom:739.253333pt;}
.y9d{bottom:754.853333pt;}
.yc6{bottom:759.013333pt;}
.y8{bottom:760.533333pt;}
.y36{bottom:770.373333pt;}
.y9c{bottom:778.773333pt;}
.yc5{bottom:781.973333pt;}
.y35{bottom:785.973333pt;}
.y7{bottom:792.533333pt;}
.yc4{bottom:797.653333pt;}
.y34{bottom:801.653333pt;}
.y33{bottom:817.253333pt;}
.yc3{bottom:820.613333pt;}
.y9b{bottom:821.733333pt;}
.y6{bottom:824.613333pt;}
.y32{bottom:832.853333pt;}
.yc2{bottom:836.213333pt;}
.y9a{bottom:837.333333pt;}
.y5{bottom:841.813333pt;}
.y31{bottom:848.533333pt;}
.y99{bottom:852.933333pt;}
.yc1{bottom:859.173333pt;}
.y98{bottom:868.613333pt;}
.y30{bottom:872.133333pt;}
.yc0{bottom:874.853333pt;}
.y4{bottom:875.893333pt;}
.y97{bottom:884.213333pt;}
.y3{bottom:897.840000pt;}
.y2f{bottom:903.840000pt;}
.ybf{bottom:913.440000pt;}
.y96{bottom:915.840000pt;}
.y2e{bottom:919.440000pt;}
.y95{bottom:931.520000pt;}
.y2d{bottom:935.040000pt;}
.ybe{bottom:936.400000pt;}
.y94{bottom:947.120000pt;}
.y76{bottom:951.040000pt;}
.ybd{bottom:959.360000pt;}
.y93{bottom:962.800000pt;}
.y2c{bottom:966.720000pt;}
.ybc{bottom:975.040000pt;}
.y92{bottom:978.400000pt;}
.y2b{bottom:982.320000pt;}
.y2a{bottom:998.000000pt;}
.y91{bottom:1002.320000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h8{height:36.034687pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.hb{height:54.927899pt;}
.h7{height:55.631875pt;}
.h9{height:57.559176pt;}
.ha{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x9{left:99.039988pt;}
.x2{left:171.306655pt;}
.x5{left:178.746655pt;}
.x7{left:227.226655pt;}
.x8{left:301.786655pt;}
.x4{left:691.013322pt;}
.x3{left:711.413322pt;}
.x6{left:728.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; }
  