
    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_64738023947290c5c4c510b9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_cf1f98c1aaba147fb24c6ec2.woff2')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_427af7fae0959ef8106d00da.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_45ee5cd04dab2df68855b53f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_a05a163e3152d1fcc4040e8b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_9e69573d801810c45b8e4879.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d81db3cf75f72338eace8b21.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7b59876cc664a70b7e775d45.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.035156;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);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.240600px;}
.lsc{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.087600px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.028080px;}
.ls3{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.282720px;}
.ls5{letter-spacing:0.305400px;}
.lsd{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.993600px;}
.lsa{letter-spacing:33.960000px;}
.ls2{letter-spacing:54.840000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-84.240000px;}
.ws5{word-spacing:-72.000000px;}
.ws7{word-spacing:-36.000000px;}
.wsa{word-spacing:-26.784000px;}
.ws4{word-spacing:-21.088080px;}
.ws3{word-spacing:-21.060000px;}
.ws9{word-spacing:-18.000000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-11.158800px;}
.ws2{word-spacing:-11.005800px;}
.ws6{word-spacing:0.000000px;}
._9{margin-left:-9.400320px;}
._8{margin-left:-8.012160px;}
._5{margin-left:-6.973200px;}
._0{margin-left:-5.365440px;}
._7{margin-left:-4.300560px;}
._2{margin-left:-3.006000px;}
._1{margin-left:-1.059840px;}
._3{width:1.377360px;}
._6{width:2.558400px;}
._d{width:3.580560px;}
._c{width:4.992720px;}
._a{width:7.220640px;}
._b{width:8.691360px;}
._4{width:191.496000px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:30.240000px;}
.fs4{font-size:48.240000px;}
.fs3{font-size:51.120000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs8{font-size:108.000000px;}
.fs1{font-size:120.240000px;}
.fs5{font-size:131.760000px;}
.fs9{font-size:144.000000px;}
.y2d{bottom:-3.060000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:7.920000px;}
.y2b{bottom:113.616000px;}
.y84{bottom:123.696000px;}
.y2a{bottom:134.316000px;}
.yae{bottom:137.556000px;}
.yca{bottom:139.716000px;}
.y83{bottom:144.396000px;}
.y5d{bottom:154.830000px;}
.y29{bottom:155.550000px;}
.yad{bottom:158.250000px;}
.yc9{bottom:160.410000px;}
.y82{bottom:165.090000px;}
.y5c{bottom:175.530000px;}
.yac{bottom:178.950000px;}
.yc8{bottom:181.110000px;}
.y28{bottom:182.910000px;}
.y81{bottom:185.790000px;}
.y5b{bottom:196.230000px;}
.yab{bottom:199.650000px;}
.yc7{bottom:201.810000px;}
.y80{bottom:207.210000px;}
.y5a{bottom:217.470000px;}
.yaa{bottom:220.350000px;}
.y27{bottom:220.530000px;}
.yc6{bottom:222.510000px;}
.y7f{bottom:234.570000px;}
.y59{bottom:241.050000px;}
.y26{bottom:241.230000px;}
.yc5{bottom:243.210000px;}
.y58{bottom:261.750000px;}
.y25{bottom:261.930000px;}
.yc4{bottom:263.910000px;}
.y7e{bottom:272.190000px;}
.y57{bottom:282.450000px;}
.y24{bottom:283.890000px;}
.yc3{bottom:284.610000px;}
.y7d{bottom:292.890000px;}
.ya9{bottom:303.150000px;}
.y56{bottom:303.690000px;}
.yc2{bottom:305.310000px;}
.y23{bottom:305.850000px;}
.y7c{bottom:313.590000px;}
.ya8{bottom:323.850000px;}
.yc1{bottom:326.010000px;}
.y55{bottom:327.270000px;}
.y22{bottom:327.990000px;}
.y7b{bottom:334.290000px;}
.ya7{bottom:344.595000px;}
.yc0{bottom:346.755000px;}
.y54{bottom:348.015000px;}
.y21{bottom:349.995000px;}
.y7a{bottom:355.575000px;}
.ya6{bottom:365.295000px;}
.ybf{bottom:367.455000px;}
.y53{bottom:369.255000px;}
.y20{bottom:371.955000px;}
.y79{bottom:379.155000px;}
.ya5{bottom:385.995000px;}
.ybe{bottom:388.155000px;}
.y52{bottom:392.835000px;}
.y1f{bottom:393.915000px;}
.y78{bottom:399.855000px;}
.ya4{bottom:406.695000px;}
.ybd{bottom:408.855000px;}
.y51{bottom:413.535000px;}
.y1e{bottom:415.875000px;}
.y77{bottom:420.555000px;}
.ya3{bottom:427.395000px;}
.ybc{bottom:429.555000px;}
.y50{bottom:434.775000px;}
.y1d{bottom:437.835000px;}
.y76{bottom:441.795000px;}
.ya2{bottom:448.095000px;}
.ybb{bottom:450.255000px;}
.y1c{bottom:459.975000px;}
.y4f{bottom:462.135000px;}
.y75{bottom:465.375000px;}
.ya1{bottom:468.795000px;}
.yba{bottom:470.955000px;}
.y1b{bottom:482.475000px;}
.y74{bottom:486.075000px;}
.ya0{bottom:489.495000px;}
.yb9{bottom:491.655000px;}
.y4e{bottom:499.755000px;}
.y1a{bottom:506.055000px;}
.y73{bottom:506.775000px;}
.y9f{bottom:510.735000px;}
.yb8{bottom:512.355000px;}
.y4d{bottom:520.455000px;}
.y19{bottom:526.755000px;}
.y72{bottom:528.015000px;}
.yb7{bottom:533.055000px;}
.y9e{bottom:534.315000px;}
.y4c{bottom:541.155000px;}
.y18{bottom:547.455000px;}
.y71{bottom:551.595000px;}
.yb6{bottom:553.755000px;}
.y9d{bottom:555.015000px;}
.y4b{bottom:562.575000px;}
.y17{bottom:568.155000px;}
.y70{bottom:572.295000px;}
.yb5{bottom:574.455000px;}
.y9c{bottom:575.715000px;}
.y4a{bottom:586.155000px;}
.y16{bottom:588.855000px;}
.y6f{bottom:592.995000px;}
.yb4{bottom:595.155000px;}
.y9b{bottom:596.415000px;}
.y49{bottom:606.885000px;}
.ycc{bottom:608.865000px;}
.y15{bottom:609.585000px;}
.y6e{bottom:614.265000px;}
.y9a{bottom:617.145000px;}
.yb3{bottom:617.685000px;}
.y48{bottom:628.125000px;}
.y14{bottom:630.285000px;}
.y6d{bottom:637.845000px;}
.yb2{bottom:648.825000px;}
.y13{bottom:650.985000px;}
.y47{bottom:651.705000px;}
.y6c{bottom:658.545000px;}
.y12{bottom:671.685000px;}
.y46{bottom:672.405000px;}
.yb1{bottom:678.885000px;}
.y99{bottom:679.245000px;}
.y6b{bottom:679.785000px;}
.y11{bottom:692.385000px;}
.y45{bottom:693.645000px;}
.y98{bottom:699.945000px;}
.y6a{bottom:705.345000px;}
.y10{bottom:713.085000px;}
.y44{bottom:717.225000px;}
.y97{bottom:720.645000px;}
.yf{bottom:733.785000px;}
.y69{bottom:734.505000px;}
.y43{bottom:737.925000px;}
.y96{bottom:741.345000px;}
.ye{bottom:754.485000px;}
.y68{bottom:755.205000px;}
.y42{bottom:759.165000px;}
.y95{bottom:762.045000px;}
.yd{bottom:775.185000px;}
.y67{bottom:776.445000px;}
.y94{bottom:782.745000px;}
.y41{bottom:786.525000px;}
.yc{bottom:795.885000px;}
.y66{bottom:800.025000px;}
.yb0{bottom:803.445000px;}
.y93{bottom:803.985000px;}
.yb{bottom:816.585000px;}
.y65{bottom:820.725000px;}
.y40{bottom:824.145000px;}
.y92{bottom:827.565000px;}
.ya{bottom:837.825000px;}
.y64{bottom:841.425000px;}
.y3f{bottom:844.845000px;}
.yaf{bottom:845.385000px;}
.ycb{bottom:847.365000px;}
.y91{bottom:848.265000px;}
.y9{bottom:861.945000px;}
.y63{bottom:862.665000px;}
.y3e{bottom:865.545000px;}
.y90{bottom:868.965000px;}
.y3d{bottom:886.290000px;}
.y8{bottom:888.810000px;}
.y8f{bottom:889.710000px;}
.y3c{bottom:906.990000px;}
.y8e{bottom:910.410000px;}
.y7{bottom:926.790000px;}
.y3b{bottom:927.690000px;}
.y62{bottom:928.230000px;}
.y8d{bottom:931.110000px;}
.y3a{bottom:948.390000px;}
.y61{bottom:951.810000px;}
.y6{bottom:964.770000px;}
.y39{bottom:969.090000px;}
.y60{bottom:972.510000px;}
.y38{bottom:989.790000px;}
.y8c{bottom:993.210000px;}
.y5f{bottom:993.750000px;}
.y37{bottom:1010.490000px;}
.y8b{bottom:1013.910000px;}
.y5e{bottom:1019.850000px;}
.y5{bottom:1029.390000px;}
.y36{bottom:1031.190000px;}
.y8a{bottom:1034.610000px;}
.y35{bottom:1051.890000px;}
.y89{bottom:1055.310000px;}
.y4{bottom:1057.470000px;}
.y34{bottom:1072.590000px;}
.y88{bottom:1076.010000px;}
.y33{bottom:1093.290000px;}
.y3{bottom:1093.650000px;}
.y87{bottom:1096.710000px;}
.y32{bottom:1113.990000px;}
.y86{bottom:1117.410000px;}
.y2{bottom:1126.230000px;}
.y31{bottom:1135.230000px;}
.y85{bottom:1138.140000px;}
.y30{bottom:1162.800000px;}
.y2e{bottom:1180.080000px;}
.y1{bottom:1193.580000px;}
.y2c{bottom:1217.700000px;}
.hc{height:10.980000px;}
.hd{height:21.960000px;}
.h6{height:41.726953px;}
.h4{height:43.282266px;}
.h2{height:46.251562px;}
.h9{height:50.273438px;}
.h5{height:50.597578px;}
.he{height:50.800781px;}
.ha{height:52.417969px;}
.hf{height:59.343750px;}
.h8{height:59.436914px;}
.h12{height:73.722656px;}
.h11{height:76.201172px;}
.h10{height:84.837305px;}
.h7{height:92.965430px;}
.hb{height:101.601562px;}
.h3{height:101.804766px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:2.340150px;}
.w4{width:4.860150px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:108.035987px;}
.xa{left:135.035987px;}
.x7{left:137.195987px;}
.x6{left:144.395987px;}
.xc{left:162.029987px;}
.x2{left:192.089987px;}
.x1{left:305.534987px;}
.x9{left:355.574987px;}
.x3{left:364.934987px;}
.x8{left:446.474987px;}
.x4{left:594.104987px;}
.xb{left:804.570000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.213867pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.077867pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.024960pt;}
.ls3{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.251307pt;}
.ls5{letter-spacing:0.271467pt;}
.lsd{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.883200pt;}
.lsa{letter-spacing:30.186667pt;}
.ls2{letter-spacing:48.746667pt;}
.ws8{word-spacing:-74.880000pt;}
.ws5{word-spacing:-64.000000pt;}
.ws7{word-spacing:-32.000000pt;}
.wsa{word-spacing:-23.808000pt;}
.ws4{word-spacing:-18.744960pt;}
.ws3{word-spacing:-18.720000pt;}
.ws9{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-9.918933pt;}
.ws2{word-spacing:-9.782933pt;}
.ws6{word-spacing:0.000000pt;}
._9{margin-left:-8.355840pt;}
._8{margin-left:-7.121920pt;}
._5{margin-left:-6.198400pt;}
._0{margin-left:-4.769280pt;}
._7{margin-left:-3.822720pt;}
._2{margin-left:-2.672000pt;}
._1{margin-left:-0.942080pt;}
._3{width:1.224320pt;}
._6{width:2.274133pt;}
._d{width:3.182720pt;}
._c{width:4.437973pt;}
._a{width:6.418347pt;}
._b{width:7.725653pt;}
._4{width:170.218667pt;}
.fsa{font-size:26.880000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:45.440000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs8{font-size:96.000000pt;}
.fs1{font-size:106.880000pt;}
.fs5{font-size:117.120000pt;}
.fs9{font-size:128.000000pt;}
.y2d{bottom:-2.720000pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:7.040000pt;}
.y2b{bottom:100.992000pt;}
.y84{bottom:109.952000pt;}
.y2a{bottom:119.392000pt;}
.yae{bottom:122.272000pt;}
.yca{bottom:124.192000pt;}
.y83{bottom:128.352000pt;}
.y5d{bottom:137.626667pt;}
.y29{bottom:138.266667pt;}
.yad{bottom:140.666667pt;}
.yc9{bottom:142.586667pt;}
.y82{bottom:146.746667pt;}
.y5c{bottom:156.026667pt;}
.yac{bottom:159.066667pt;}
.yc8{bottom:160.986667pt;}
.y28{bottom:162.586667pt;}
.y81{bottom:165.146667pt;}
.y5b{bottom:174.426667pt;}
.yab{bottom:177.466667pt;}
.yc7{bottom:179.386667pt;}
.y80{bottom:184.186667pt;}
.y5a{bottom:193.306667pt;}
.yaa{bottom:195.866667pt;}
.y27{bottom:196.026667pt;}
.yc6{bottom:197.786667pt;}
.y7f{bottom:208.506667pt;}
.y59{bottom:214.266667pt;}
.y26{bottom:214.426667pt;}
.yc5{bottom:216.186667pt;}
.y58{bottom:232.666667pt;}
.y25{bottom:232.826667pt;}
.yc4{bottom:234.586667pt;}
.y7e{bottom:241.946667pt;}
.y57{bottom:251.066667pt;}
.y24{bottom:252.346667pt;}
.yc3{bottom:252.986667pt;}
.y7d{bottom:260.346667pt;}
.ya9{bottom:269.466667pt;}
.y56{bottom:269.946667pt;}
.yc2{bottom:271.386667pt;}
.y23{bottom:271.866667pt;}
.y7c{bottom:278.746667pt;}
.ya8{bottom:287.866667pt;}
.yc1{bottom:289.786667pt;}
.y55{bottom:290.906667pt;}
.y22{bottom:291.546667pt;}
.y7b{bottom:297.146667pt;}
.ya7{bottom:306.306667pt;}
.yc0{bottom:308.226667pt;}
.y54{bottom:309.346667pt;}
.y21{bottom:311.106667pt;}
.y7a{bottom:316.066667pt;}
.ya6{bottom:324.706667pt;}
.ybf{bottom:326.626667pt;}
.y53{bottom:328.226667pt;}
.y20{bottom:330.626667pt;}
.y79{bottom:337.026667pt;}
.ya5{bottom:343.106667pt;}
.ybe{bottom:345.026667pt;}
.y52{bottom:349.186667pt;}
.y1f{bottom:350.146667pt;}
.y78{bottom:355.426667pt;}
.ya4{bottom:361.506667pt;}
.ybd{bottom:363.426667pt;}
.y51{bottom:367.586667pt;}
.y1e{bottom:369.666667pt;}
.y77{bottom:373.826667pt;}
.ya3{bottom:379.906667pt;}
.ybc{bottom:381.826667pt;}
.y50{bottom:386.466667pt;}
.y1d{bottom:389.186667pt;}
.y76{bottom:392.706667pt;}
.ya2{bottom:398.306667pt;}
.ybb{bottom:400.226667pt;}
.y1c{bottom:408.866667pt;}
.y4f{bottom:410.786667pt;}
.y75{bottom:413.666667pt;}
.ya1{bottom:416.706667pt;}
.yba{bottom:418.626667pt;}
.y1b{bottom:428.866667pt;}
.y74{bottom:432.066667pt;}
.ya0{bottom:435.106667pt;}
.yb9{bottom:437.026667pt;}
.y4e{bottom:444.226667pt;}
.y1a{bottom:449.826667pt;}
.y73{bottom:450.466667pt;}
.y9f{bottom:453.986667pt;}
.yb8{bottom:455.426667pt;}
.y4d{bottom:462.626667pt;}
.y19{bottom:468.226667pt;}
.y72{bottom:469.346667pt;}
.yb7{bottom:473.826667pt;}
.y9e{bottom:474.946667pt;}
.y4c{bottom:481.026667pt;}
.y18{bottom:486.626667pt;}
.y71{bottom:490.306667pt;}
.yb6{bottom:492.226667pt;}
.y9d{bottom:493.346667pt;}
.y4b{bottom:500.066667pt;}
.y17{bottom:505.026667pt;}
.y70{bottom:508.706667pt;}
.yb5{bottom:510.626667pt;}
.y9c{bottom:511.746667pt;}
.y4a{bottom:521.026667pt;}
.y16{bottom:523.426667pt;}
.y6f{bottom:527.106667pt;}
.yb4{bottom:529.026667pt;}
.y9b{bottom:530.146667pt;}
.y49{bottom:539.453333pt;}
.ycc{bottom:541.213333pt;}
.y15{bottom:541.853333pt;}
.y6e{bottom:546.013333pt;}
.y9a{bottom:548.573333pt;}
.yb3{bottom:549.053333pt;}
.y48{bottom:558.333333pt;}
.y14{bottom:560.253333pt;}
.y6d{bottom:566.973333pt;}
.yb2{bottom:576.733333pt;}
.y13{bottom:578.653333pt;}
.y47{bottom:579.293333pt;}
.y6c{bottom:585.373333pt;}
.y12{bottom:597.053333pt;}
.y46{bottom:597.693333pt;}
.yb1{bottom:603.453333pt;}
.y99{bottom:603.773333pt;}
.y6b{bottom:604.253333pt;}
.y11{bottom:615.453333pt;}
.y45{bottom:616.573333pt;}
.y98{bottom:622.173333pt;}
.y6a{bottom:626.973333pt;}
.y10{bottom:633.853333pt;}
.y44{bottom:637.533333pt;}
.y97{bottom:640.573333pt;}
.yf{bottom:652.253333pt;}
.y69{bottom:652.893333pt;}
.y43{bottom:655.933333pt;}
.y96{bottom:658.973333pt;}
.ye{bottom:670.653333pt;}
.y68{bottom:671.293333pt;}
.y42{bottom:674.813333pt;}
.y95{bottom:677.373333pt;}
.yd{bottom:689.053333pt;}
.y67{bottom:690.173333pt;}
.y94{bottom:695.773333pt;}
.y41{bottom:699.133333pt;}
.yc{bottom:707.453333pt;}
.y66{bottom:711.133333pt;}
.yb0{bottom:714.173333pt;}
.y93{bottom:714.653333pt;}
.yb{bottom:725.853333pt;}
.y65{bottom:729.533333pt;}
.y40{bottom:732.573333pt;}
.y92{bottom:735.613333pt;}
.ya{bottom:744.733333pt;}
.y64{bottom:747.933333pt;}
.y3f{bottom:750.973333pt;}
.yaf{bottom:751.453333pt;}
.ycb{bottom:753.213333pt;}
.y91{bottom:754.013333pt;}
.y9{bottom:766.173333pt;}
.y63{bottom:766.813333pt;}
.y3e{bottom:769.373333pt;}
.y90{bottom:772.413333pt;}
.y3d{bottom:787.813333pt;}
.y8{bottom:790.053333pt;}
.y8f{bottom:790.853333pt;}
.y3c{bottom:806.213333pt;}
.y8e{bottom:809.253333pt;}
.y7{bottom:823.813333pt;}
.y3b{bottom:824.613333pt;}
.y62{bottom:825.093333pt;}
.y8d{bottom:827.653333pt;}
.y3a{bottom:843.013333pt;}
.y61{bottom:846.053333pt;}
.y6{bottom:857.573333pt;}
.y39{bottom:861.413333pt;}
.y60{bottom:864.453333pt;}
.y38{bottom:879.813333pt;}
.y8c{bottom:882.853333pt;}
.y5f{bottom:883.333333pt;}
.y37{bottom:898.213333pt;}
.y8b{bottom:901.253333pt;}
.y5e{bottom:906.533333pt;}
.y5{bottom:915.013333pt;}
.y36{bottom:916.613333pt;}
.y8a{bottom:919.653333pt;}
.y35{bottom:935.013333pt;}
.y89{bottom:938.053333pt;}
.y4{bottom:939.973333pt;}
.y34{bottom:953.413333pt;}
.y88{bottom:956.453333pt;}
.y33{bottom:971.813333pt;}
.y3{bottom:972.133333pt;}
.y87{bottom:974.853333pt;}
.y32{bottom:990.213333pt;}
.y86{bottom:993.253333pt;}
.y2{bottom:1001.093333pt;}
.y31{bottom:1009.093333pt;}
.y85{bottom:1011.680000pt;}
.y30{bottom:1033.600000pt;}
.y2e{bottom:1048.960000pt;}
.y1{bottom:1060.960000pt;}
.y2c{bottom:1082.400000pt;}
.hc{height:9.760000pt;}
.hd{height:19.520000pt;}
.h6{height:37.090625pt;}
.h4{height:38.473125pt;}
.h2{height:41.112500pt;}
.h9{height:44.687500pt;}
.h5{height:44.975625pt;}
.he{height:45.156250pt;}
.ha{height:46.593750pt;}
.hf{height:52.750000pt;}
.h8{height:52.832812pt;}
.h12{height:65.531250pt;}
.h11{height:67.734375pt;}
.h10{height:75.410937pt;}
.h7{height:82.635937pt;}
.hb{height:90.312500pt;}
.h3{height:90.493125pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:2.080133pt;}
.w4{width:4.320133pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:96.031988pt;}
.xa{left:120.031988pt;}
.x7{left:121.951988pt;}
.x6{left:128.351988pt;}
.xc{left:144.026655pt;}
.x2{left:170.746655pt;}
.x1{left:271.586655pt;}
.x9{left:316.066655pt;}
.x3{left:324.386655pt;}
.x8{left:396.866655pt;}
.x4{left:528.093322pt;}
.xb{left:715.173333pt;}
}




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