
    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_c9f32416934c3528627527fd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.196289;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_e98e6c605625399f38ce5618.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_8a841124824d46490c363642.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b751e41c0e3b20d68ede575b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_457183bbd903dbac2b55d997.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_29fc6173e3e58f123594f683.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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_03902e8783d6df5d4e16967e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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;}
.v1{vertical-align:23.760000px;}
.ls3{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.144000px;}
.ls2{letter-spacing:-0.058320px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.576000px;}
.ls6{letter-spacing:33.960000px;}
.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;}
}
.ws1{word-spacing:-72.000000px;}
.ws5{word-spacing:-18.576000px;}
.ws7{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.712000px;}
.ws0{word-spacing:-13.447440px;}
.ws3{word-spacing:0.000000px;}
._5{margin-left:-4.279920px;}
._4{margin-left:-2.400000px;}
._0{margin-left:-1.192320px;}
._1{width:1.015920px;}
._2{width:2.216880px;}
._c{width:3.528000px;}
._d{width:4.680000px;}
._e{width:6.360000px;}
._a{width:7.488000px;}
._b{width:8.568000px;}
._f{width:10.224000px;}
._10{width:11.376000px;}
._18{width:13.248000px;}
._13{width:14.616000px;}
._14{width:15.904080px;}
._1a{width:16.988640px;}
._17{width:19.008000px;}
._7{width:20.232000px;}
._15{width:21.240000px;}
._1c{width:22.320000px;}
._1d{width:24.192000px;}
._11{width:25.632000px;}
._12{width:26.696160px;}
._19{width:27.847440px;}
._1b{width:29.120400px;}
._1e{width:30.744000px;}
._1f{width:33.120000px;}
._9{width:35.250720px;}
._8{width:36.256320px;}
._16{width:37.349040px;}
._3{width:194.376000px;}
._22{width:199.224000px;}
._21{width:200.448000px;}
._20{width:344.232000px;}
._6{width:1864.536000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y9{bottom:-12.060000px;}
.yb{bottom:-11.700000px;}
.ye{bottom:-10.440000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.680000px;}
.ya{bottom:5.040000px;}
.yd{bottom:6.300000px;}
.y14{bottom:12.780000px;}
.y6{bottom:18.000000px;}
.y3{bottom:19.800000px;}
.yc{bottom:20.160000px;}
.y7{bottom:21.420000px;}
.y5{bottom:37.260000px;}
.y2{bottom:39.060000px;}
.y12{bottom:57.420000px;}
.y11{bottom:73.260000px;}
.yca{bottom:111.060000px;}
.y8f{bottom:114.660000px;}
.yac{bottom:115.560000px;}
.y3e{bottom:129.060000px;}
.y6d{bottom:133.560000px;}
.y8e{bottom:135.360000px;}
.yab{bottom:136.260000px;}
.yc9{bottom:140.760000px;}
.y3d{bottom:149.760000px;}
.y6c{bottom:154.260000px;}
.y8d{bottom:156.060000px;}
.yaa{bottom:156.960000px;}
.y3c{bottom:170.460000px;}
.y6b{bottom:174.960000px;}
.ya9{bottom:177.660000px;}
.y8c{bottom:185.760000px;}
.y3b{bottom:191.160000px;}
.y6a{bottom:195.660000px;}
.ya8{bottom:198.390000px;}
.yc8{bottom:200.190000px;}
.y3a{bottom:211.890000px;}
.y8b{bottom:215.490000px;}
.y69{bottom:216.390000px;}
.ya7{bottom:219.090000px;}
.yc7{bottom:229.890000px;}
.y39{bottom:232.590000px;}
.y68{bottom:237.090000px;}
.ya6{bottom:239.790000px;}
.y8a{bottom:245.190000px;}
.y38{bottom:253.290000px;}
.y67{bottom:257.790000px;}
.yc6{bottom:259.590000px;}
.ya5{bottom:260.490000px;}
.y89{bottom:265.890000px;}
.y37{bottom:273.990000px;}
.y66{bottom:278.490000px;}
.ya4{bottom:281.190000px;}
.y88{bottom:286.590000px;}
.yc5{bottom:289.290000px;}
.y36{bottom:294.690000px;}
.y65{bottom:299.190000px;}
.y87{bottom:307.290000px;}
.ya3{bottom:310.890000px;}
.y35{bottom:315.390000px;}
.yc4{bottom:318.990000px;}
.y64{bottom:319.890000px;}
.ya2{bottom:331.590000px;}
.y86{bottom:336.990000px;}
.y34{bottom:345.090000px;}
.yc3{bottom:348.690000px;}
.y63{bottom:349.590000px;}
.ya1{bottom:352.290000px;}
.y33{bottom:365.790000px;}
.y85{bottom:366.690000px;}
.y62{bottom:370.290000px;}
.ya0{bottom:372.990000px;}
.yc2{bottom:378.390000px;}
.y32{bottom:386.490000px;}
.y84{bottom:387.390000px;}
.y61{bottom:390.990000px;}
.y9f{bottom:393.690000px;}
.y31{bottom:407.190000px;}
.y83{bottom:408.090000px;}
.y60{bottom:411.690000px;}
.y9e{bottom:414.390000px;}
.y82{bottom:428.790000px;}
.y5f{bottom:432.390000px;}
.y9d{bottom:435.090000px;}
.y30{bottom:436.935000px;}
.yc1{bottom:437.835000px;}
.y81{bottom:449.535000px;}
.y5e{bottom:453.135000px;}
.y9c{bottom:455.835000px;}
.y2f{bottom:457.635000px;}
.yc0{bottom:467.535000px;}
.y5d{bottom:473.835000px;}
.y9b{bottom:476.535000px;}
.y2e{bottom:478.335000px;}
.y80{bottom:479.235000px;}
.y5c{bottom:494.535000px;}
.y9a{bottom:497.235000px;}
.y2d{bottom:499.035000px;}
.y7f{bottom:508.935000px;}
.y5b{bottom:515.235000px;}
.y99{bottom:526.935000px;}
.y2c{bottom:528.735000px;}
.y7e{bottom:529.635000px;}
.y5a{bottom:535.935000px;}
.ybf{bottom:547.635000px;}
.y7d{bottom:550.335000px;}
.y59{bottom:556.635000px;}
.y2b{bottom:558.435000px;}
.ybe{bottom:568.335000px;}
.y7c{bottom:571.035000px;}
.yd1{bottom:580.035000px;}
.y58{bottom:586.335000px;}
.y2a{bottom:588.135000px;}
.ybd{bottom:589.035000px;}
.y7b{bottom:591.735000px;}
.yd0{bottom:600.735000px;}
.y57{bottom:607.035000px;}
.ybc{bottom:609.735000px;}
.y13{bottom:617.475000px;}
.y29{bottom:617.835000px;}
.y7a{bottom:621.435000px;}
.y56{bottom:627.735000px;}
.ybb{bottom:630.435000px;}
.y28{bottom:638.535000px;}
.y55{bottom:648.435000px;}
.y79{bottom:651.135000px;}
.y27{bottom:659.235000px;}
.y54{bottom:669.135000px;}
.y78{bottom:671.835000px;}
.y26{bottom:679.965000px;}
.y53{bottom:689.865000px;}
.y77{bottom:692.565000px;}
.y25{bottom:700.665000px;}
.yba{bottom:701.565000px;}
.y52{bottom:710.565000px;}
.y76{bottom:713.265000px;}
.y24{bottom:721.365000px;}
.yb9{bottom:722.265000px;}
.y51{bottom:731.265000px;}
.y75{bottom:733.965000px;}
.y23{bottom:742.065000px;}
.yb8{bottom:742.965000px;}
.y50{bottom:751.965000px;}
.y22{bottom:762.765000px;}
.y74{bottom:763.665000px;}
.y4f{bottom:772.665000px;}
.y21{bottom:783.465000px;}
.yb7{bottom:784.365000px;}
.y4e{bottom:793.365000px;}
.y20{bottom:804.165000px;}
.yb6{bottom:805.065000px;}
.y4d{bottom:814.065000px;}
.yb5{bottom:825.765000px;}
.y1f{bottom:833.865000px;}
.y73{bottom:834.765000px;}
.y4c{bottom:843.765000px;}
.y72{bottom:855.465000px;}
.y1e{bottom:863.565000px;}
.y98{bottom:864.465000px;}
.y4b{bottom:873.465000px;}
.y71{bottom:876.165000px;}
.y1d{bottom:893.265000px;}
.y97{bottom:894.165000px;}
.yb4{bottom:896.865000px;}
.y4a{bottom:903.165000px;}
.y70{bottom:905.865000px;}
.yb3{bottom:917.610000px;}
.y1c{bottom:923.010000px;}
.y49{bottom:923.910000px;}
.ycf{bottom:926.610000px;}
.y6f{bottom:935.610000px;}
.yb2{bottom:938.310000px;}
.y96{bottom:944.610000px;}
.yce{bottom:947.310000px;}
.y1b{bottom:952.710000px;}
.y48{bottom:953.610000px;}
.yb1{bottom:959.010000px;}
.y6e{bottom:965.310000px;}
.y47{bottom:974.310000px;}
.ycd{bottom:977.010000px;}
.yb0{bottom:979.710000px;}
.y1a{bottom:982.410000px;}
.y95{bottom:986.010000px;}
.y46{bottom:995.010000px;}
.ycc{bottom:997.710000px;}
.y94{bottom:1006.710000px;}
.yaf{bottom:1009.410000px;}
.y19{bottom:1012.110000px;}
.y45{bottom:1015.710000px;}
.ycb{bottom:1018.410000px;}
.y93{bottom:1027.410000px;}
.y44{bottom:1036.410000px;}
.yae{bottom:1039.110000px;}
.y18{bottom:1041.810000px;}
.y92{bottom:1048.110000px;}
.y43{bottom:1057.110000px;}
.y91{bottom:1068.810000px;}
.y17{bottom:1071.510000px;}
.y42{bottom:1077.810000px;}
.y90{bottom:1089.510000px;}
.y41{bottom:1098.510000px;}
.y16{bottom:1101.210000px;}
.yad{bottom:1110.210000px;}
.y40{bottom:1119.210000px;}
.y15{bottom:1130.910000px;}
.y3f{bottom:1139.910000px;}
.y10{bottom:1193.220000px;}
.y1{bottom:1206.180000px;}
.y4{bottom:1207.980000px;}
.yf{bottom:1208.880000px;}
.h6{height:18.000000px;}
.h8{height:18.360000px;}
.h9{height:19.620000px;}
.hb{height:28.260000px;}
.ha{height:41.726953px;}
.hc{height:46.251562px;}
.hd{height:50.273438px;}
.he{height:50.800781px;}
.h5{height:52.020000px;}
.h10{height:52.417969px;}
.h11{height:52.628906px;}
.h2{height:53.820000px;}
.hf{height:57.796523px;}
.h7{height:61.189805px;}
.h4{height:65.884219px;}
.h3{height:67.824844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.060000px;}
.w8{width:84.990000px;}
.w6{width:170.100000px;}
.w5{width:175.890000px;}
.w4{width:184.530000px;}
.w2{width:383.115000px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:1.440000px;}
.xb{left:10.800000px;}
.x5{left:21.960000px;}
.x6{left:61.380000px;}
.x9{left:106.235987px;}
.xc{left:108.755987px;}
.x12{left:133.235987px;}
.x2{left:148.005000px;}
.x13{left:160.229987px;}
.x1{left:165.270000px;}
.x10{left:188.309987px;}
.xd{left:260.849987px;}
.x11{left:342.434987px;}
.x7{left:378.075000px;}
.xf{left:394.634987px;}
.xe{left:446.474987px;}
.x8{left:662.730000px;}
.x4{left:765.510000px;}
.xa{left:807.990000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:-0.051840pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.512000pt;}
.ls6{letter-spacing:30.186667pt;}
.ws1{word-spacing:-64.000000pt;}
.ws5{word-spacing:-16.512000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws3{word-spacing:0.000000pt;}
._5{margin-left:-3.804373pt;}
._4{margin-left:-2.133333pt;}
._0{margin-left:-1.059840pt;}
._1{width:0.903040pt;}
._2{width:1.970560pt;}
._c{width:3.136000pt;}
._d{width:4.160000pt;}
._e{width:5.653333pt;}
._a{width:6.656000pt;}
._b{width:7.616000pt;}
._f{width:9.088000pt;}
._10{width:10.112000pt;}
._18{width:11.776000pt;}
._13{width:12.992000pt;}
._14{width:14.136960pt;}
._1a{width:15.101013pt;}
._17{width:16.896000pt;}
._7{width:17.984000pt;}
._15{width:18.880000pt;}
._1c{width:19.840000pt;}
._1d{width:21.504000pt;}
._11{width:22.784000pt;}
._12{width:23.729920pt;}
._19{width:24.753280pt;}
._1b{width:25.884800pt;}
._1e{width:27.328000pt;}
._1f{width:29.440000pt;}
._9{width:31.333973pt;}
._8{width:32.227840pt;}
._16{width:33.199147pt;}
._3{width:172.778667pt;}
._22{width:177.088000pt;}
._21{width:178.176000pt;}
._20{width:305.984000pt;}
._6{width:1657.365333pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y9{bottom:-10.720000pt;}
.yb{bottom:-10.400000pt;}
.ye{bottom:-9.280000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.160000pt;}
.ya{bottom:4.480000pt;}
.yd{bottom:5.600000pt;}
.y14{bottom:11.360000pt;}
.y6{bottom:16.000000pt;}
.y3{bottom:17.600000pt;}
.yc{bottom:17.920000pt;}
.y7{bottom:19.040000pt;}
.y5{bottom:33.120000pt;}
.y2{bottom:34.720000pt;}
.y12{bottom:51.040000pt;}
.y11{bottom:65.120000pt;}
.yca{bottom:98.720000pt;}
.y8f{bottom:101.920000pt;}
.yac{bottom:102.720000pt;}
.y3e{bottom:114.720000pt;}
.y6d{bottom:118.720000pt;}
.y8e{bottom:120.320000pt;}
.yab{bottom:121.120000pt;}
.yc9{bottom:125.120000pt;}
.y3d{bottom:133.120000pt;}
.y6c{bottom:137.120000pt;}
.y8d{bottom:138.720000pt;}
.yaa{bottom:139.520000pt;}
.y3c{bottom:151.520000pt;}
.y6b{bottom:155.520000pt;}
.ya9{bottom:157.920000pt;}
.y8c{bottom:165.120000pt;}
.y3b{bottom:169.920000pt;}
.y6a{bottom:173.920000pt;}
.ya8{bottom:176.346667pt;}
.yc8{bottom:177.946667pt;}
.y3a{bottom:188.346667pt;}
.y8b{bottom:191.546667pt;}
.y69{bottom:192.346667pt;}
.ya7{bottom:194.746667pt;}
.yc7{bottom:204.346667pt;}
.y39{bottom:206.746667pt;}
.y68{bottom:210.746667pt;}
.ya6{bottom:213.146667pt;}
.y8a{bottom:217.946667pt;}
.y38{bottom:225.146667pt;}
.y67{bottom:229.146667pt;}
.yc6{bottom:230.746667pt;}
.ya5{bottom:231.546667pt;}
.y89{bottom:236.346667pt;}
.y37{bottom:243.546667pt;}
.y66{bottom:247.546667pt;}
.ya4{bottom:249.946667pt;}
.y88{bottom:254.746667pt;}
.yc5{bottom:257.146667pt;}
.y36{bottom:261.946667pt;}
.y65{bottom:265.946667pt;}
.y87{bottom:273.146667pt;}
.ya3{bottom:276.346667pt;}
.y35{bottom:280.346667pt;}
.yc4{bottom:283.546667pt;}
.y64{bottom:284.346667pt;}
.ya2{bottom:294.746667pt;}
.y86{bottom:299.546667pt;}
.y34{bottom:306.746667pt;}
.yc3{bottom:309.946667pt;}
.y63{bottom:310.746667pt;}
.ya1{bottom:313.146667pt;}
.y33{bottom:325.146667pt;}
.y85{bottom:325.946667pt;}
.y62{bottom:329.146667pt;}
.ya0{bottom:331.546667pt;}
.yc2{bottom:336.346667pt;}
.y32{bottom:343.546667pt;}
.y84{bottom:344.346667pt;}
.y61{bottom:347.546667pt;}
.y9f{bottom:349.946667pt;}
.y31{bottom:361.946667pt;}
.y83{bottom:362.746667pt;}
.y60{bottom:365.946667pt;}
.y9e{bottom:368.346667pt;}
.y82{bottom:381.146667pt;}
.y5f{bottom:384.346667pt;}
.y9d{bottom:386.746667pt;}
.y30{bottom:388.386667pt;}
.yc1{bottom:389.186667pt;}
.y81{bottom:399.586667pt;}
.y5e{bottom:402.786667pt;}
.y9c{bottom:405.186667pt;}
.y2f{bottom:406.786667pt;}
.yc0{bottom:415.586667pt;}
.y5d{bottom:421.186667pt;}
.y9b{bottom:423.586667pt;}
.y2e{bottom:425.186667pt;}
.y80{bottom:425.986667pt;}
.y5c{bottom:439.586667pt;}
.y9a{bottom:441.986667pt;}
.y2d{bottom:443.586667pt;}
.y7f{bottom:452.386667pt;}
.y5b{bottom:457.986667pt;}
.y99{bottom:468.386667pt;}
.y2c{bottom:469.986667pt;}
.y7e{bottom:470.786667pt;}
.y5a{bottom:476.386667pt;}
.ybf{bottom:486.786667pt;}
.y7d{bottom:489.186667pt;}
.y59{bottom:494.786667pt;}
.y2b{bottom:496.386667pt;}
.ybe{bottom:505.186667pt;}
.y7c{bottom:507.586667pt;}
.yd1{bottom:515.586667pt;}
.y58{bottom:521.186667pt;}
.y2a{bottom:522.786667pt;}
.ybd{bottom:523.586667pt;}
.y7b{bottom:525.986667pt;}
.yd0{bottom:533.986667pt;}
.y57{bottom:539.586667pt;}
.ybc{bottom:541.986667pt;}
.y13{bottom:548.866667pt;}
.y29{bottom:549.186667pt;}
.y7a{bottom:552.386667pt;}
.y56{bottom:557.986667pt;}
.ybb{bottom:560.386667pt;}
.y28{bottom:567.586667pt;}
.y55{bottom:576.386667pt;}
.y79{bottom:578.786667pt;}
.y27{bottom:585.986667pt;}
.y54{bottom:594.786667pt;}
.y78{bottom:597.186667pt;}
.y26{bottom:604.413333pt;}
.y53{bottom:613.213333pt;}
.y77{bottom:615.613333pt;}
.y25{bottom:622.813333pt;}
.yba{bottom:623.613333pt;}
.y52{bottom:631.613333pt;}
.y76{bottom:634.013333pt;}
.y24{bottom:641.213333pt;}
.yb9{bottom:642.013333pt;}
.y51{bottom:650.013333pt;}
.y75{bottom:652.413333pt;}
.y23{bottom:659.613333pt;}
.yb8{bottom:660.413333pt;}
.y50{bottom:668.413333pt;}
.y22{bottom:678.013333pt;}
.y74{bottom:678.813333pt;}
.y4f{bottom:686.813333pt;}
.y21{bottom:696.413333pt;}
.yb7{bottom:697.213333pt;}
.y4e{bottom:705.213333pt;}
.y20{bottom:714.813333pt;}
.yb6{bottom:715.613333pt;}
.y4d{bottom:723.613333pt;}
.yb5{bottom:734.013333pt;}
.y1f{bottom:741.213333pt;}
.y73{bottom:742.013333pt;}
.y4c{bottom:750.013333pt;}
.y72{bottom:760.413333pt;}
.y1e{bottom:767.613333pt;}
.y98{bottom:768.413333pt;}
.y4b{bottom:776.413333pt;}
.y71{bottom:778.813333pt;}
.y1d{bottom:794.013333pt;}
.y97{bottom:794.813333pt;}
.yb4{bottom:797.213333pt;}
.y4a{bottom:802.813333pt;}
.y70{bottom:805.213333pt;}
.yb3{bottom:815.653333pt;}
.y1c{bottom:820.453333pt;}
.y49{bottom:821.253333pt;}
.ycf{bottom:823.653333pt;}
.y6f{bottom:831.653333pt;}
.yb2{bottom:834.053333pt;}
.y96{bottom:839.653333pt;}
.yce{bottom:842.053333pt;}
.y1b{bottom:846.853333pt;}
.y48{bottom:847.653333pt;}
.yb1{bottom:852.453333pt;}
.y6e{bottom:858.053333pt;}
.y47{bottom:866.053333pt;}
.ycd{bottom:868.453333pt;}
.yb0{bottom:870.853333pt;}
.y1a{bottom:873.253333pt;}
.y95{bottom:876.453333pt;}
.y46{bottom:884.453333pt;}
.ycc{bottom:886.853333pt;}
.y94{bottom:894.853333pt;}
.yaf{bottom:897.253333pt;}
.y19{bottom:899.653333pt;}
.y45{bottom:902.853333pt;}
.ycb{bottom:905.253333pt;}
.y93{bottom:913.253333pt;}
.y44{bottom:921.253333pt;}
.yae{bottom:923.653333pt;}
.y18{bottom:926.053333pt;}
.y92{bottom:931.653333pt;}
.y43{bottom:939.653333pt;}
.y91{bottom:950.053333pt;}
.y17{bottom:952.453333pt;}
.y42{bottom:958.053333pt;}
.y90{bottom:968.453333pt;}
.y41{bottom:976.453333pt;}
.y16{bottom:978.853333pt;}
.yad{bottom:986.853333pt;}
.y40{bottom:994.853333pt;}
.y15{bottom:1005.253333pt;}
.y3f{bottom:1013.253333pt;}
.y10{bottom:1060.640000pt;}
.y1{bottom:1072.160000pt;}
.y4{bottom:1073.760000pt;}
.yf{bottom:1074.560000pt;}
.h6{height:16.000000pt;}
.h8{height:16.320000pt;}
.h9{height:17.440000pt;}
.hb{height:25.120000pt;}
.ha{height:37.090625pt;}
.hc{height:41.112500pt;}
.hd{height:44.687500pt;}
.he{height:45.156250pt;}
.h5{height:46.240000pt;}
.h10{height:46.593750pt;}
.h11{height:46.781250pt;}
.h2{height:47.840000pt;}
.hf{height:51.374688pt;}
.h7{height:54.390938pt;}
.h4{height:58.563750pt;}
.h3{height:60.288750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.720000pt;}
.w8{width:75.546667pt;}
.w6{width:151.200000pt;}
.w5{width:156.346667pt;}
.w4{width:164.026667pt;}
.w2{width:340.546667pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:1.280000pt;}
.xb{left:9.600000pt;}
.x5{left:19.520000pt;}
.x6{left:54.560000pt;}
.x9{left:94.431988pt;}
.xc{left:96.671988pt;}
.x12{left:118.431988pt;}
.x2{left:131.560000pt;}
.x13{left:142.426655pt;}
.x1{left:146.906667pt;}
.x10{left:167.386655pt;}
.xd{left:231.866655pt;}
.x11{left:304.386655pt;}
.x7{left:336.066667pt;}
.xf{left:350.786655pt;}
.xe{left:396.866655pt;}
.x8{left:589.093333pt;}
.x4{left:680.453333pt;}
.xa{left:718.213333pt;}
}




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