
    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_e1b29ce69058fcbb0f5e6f48.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_50a7cff37dfabfb5616965fc.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_a1469b16020ede6c43f4d0b5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_6bb5867915989aa4a951eb92.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_b234aa7c564c0db6e5a009a0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_755647e96eb764a7076f9fa1.woff2')format("woff");}.ff6{font-family:ff6;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;}
@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;}
.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);}
.v1{vertical-align:-77.040000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.360000px;}
.ls2{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.432000px;}
.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;}
}
.ws3{word-spacing:-21.420000px;}
.ws6{word-spacing:-21.060000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.712000px;}
.ws4{word-spacing:-14.940000px;}
.ws5{word-spacing:-9.000000px;}
.ws1{word-spacing:0.000000px;}
._b{margin-left:-8.618400px;}
._3{margin-left:-6.990480px;}
._5{margin-left:-5.075280px;}
._23{margin-left:-3.790080px;}
._9{margin-left:-2.681280px;}
._0{margin-left:-1.457280px;}
._4{width:1.361520px;}
._7{width:3.346800px;}
._12{width:5.112000px;}
._13{width:6.264000px;}
._22{width:7.272000px;}
._14{width:8.280000px;}
._10{width:9.648000px;}
._f{width:11.064000px;}
._c{width:12.185280px;}
._e{width:13.300080px;}
._d{width:14.306400px;}
._15{width:15.696000px;}
._11{width:16.865280px;}
._2{width:18.768960px;}
._6{width:20.259360px;}
._27{width:22.176000px;}
._1f{width:23.184000px;}
._20{width:24.425280px;}
._1e{width:25.704000px;}
._18{width:27.648000px;}
._19{width:28.848000px;}
._24{width:30.167760px;}
._28{width:32.472000px;}
._29{width:33.984000px;}
._26{width:35.316000px;}
._25{width:39.636000px;}
._1c{width:47.880000px;}
._1d{width:49.248000px;}
._21{width:56.808000px;}
._8{width:58.126320px;}
._a{width:59.158800px;}
._1a{width:60.840000px;}
._1b{width:61.920000px;}
._16{width:191.316000px;}
._17{width:1069.896000px;}
._1{width:1832.717760px;}
.fc1{color:rgb(167,164,158);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4{bottom:4.319850px;}
.y7a{bottom:7.020000px;}
.y93{bottom:7.050000px;}
.y8a{bottom:7.200000px;}
.y70{bottom:11.880000px;}
.ya1{bottom:12.060000px;}
.y7f{bottom:13.500000px;}
.y75{bottom:14.760000px;}
.y98{bottom:19.080000px;}
.y9e{bottom:19.800000px;}
.y79{bottom:22.500000px;}
.y82{bottom:22.680000px;}
.y92{bottom:22.710000px;}
.y9a{bottom:26.820000px;}
.y9f{bottom:27.540000px;}
.y7e{bottom:28.980000px;}
.y74{bottom:30.240000px;}
.y89{bottom:30.420000px;}
.y97{bottom:34.560000px;}
.y9d{bottom:35.280000px;}
.y80{bottom:36.720000px;}
.ya7{bottom:37.620000px;}
.y76{bottom:37.980000px;}
.y86{bottom:38.025000px;}
.y81{bottom:38.160000px;}
.y91{bottom:38.190000px;}
.y99{bottom:42.300000px;}
.ya0{bottom:43.020000px;}
.y3{bottom:43.740000px;}
.y7d{bottom:44.460000px;}
.y73{bottom:45.720000px;}
.y87{bottom:45.765000px;}
.y8c{bottom:45.900000px;}
.y94{bottom:45.930000px;}
.y96{bottom:50.040000px;}
.ya6{bottom:53.100000px;}
.y78{bottom:53.640000px;}
.y90{bottom:53.670000px;}
.y85{bottom:53.685000px;}
.y7c{bottom:60.120000px;}
.ya9{bottom:60.840000px;}
.y72{bottom:61.380000px;}
.y2{bottom:62.820000px;}
.ya5{bottom:68.805000px;}
.y77{bottom:69.120000px;}
.y8f{bottom:69.150000px;}
.y84{bottom:69.165000px;}
.ya8{bottom:76.545000px;}
.y1{bottom:81.756000px;}
.ya4{bottom:84.285000px;}
.yac{bottom:84.645000px;}
.y8e{bottom:84.810000px;}
.ya3{bottom:99.765000px;}
.yab{bottom:100.305000px;}
.y4f{bottom:107.676000px;}
.yaa{bottom:115.785000px;}
.y6e{bottom:116.856000px;}
.yc4{bottom:119.736000px;}
.y2f{bottom:127.656000px;}
.yb1{bottom:127.836000px;}
.y4e{bottom:138.816000px;}
.y6d{bottom:150.690000px;}
.yc2{bottom:155.910000px;}
.yb0{bottom:158.790000px;}
.y2e{bottom:163.650000px;}
.y4d{bottom:169.770000px;}
.y6c{bottom:181.830000px;}
.yc1{bottom:187.050000px;}
.yaf{bottom:189.930000px;}
.y2d{bottom:199.830000px;}
.y4c{bottom:200.910000px;}
.y6b{bottom:212.790000px;}
.yc0{bottom:218.010000px;}
.yae{bottom:220.890000px;}
.y4b{bottom:231.870000px;}
.y2c{bottom:235.470000px;}
.y6a{bottom:243.930000px;}
.ybf{bottom:249.150000px;}
.yad{bottom:252.030000px;}
.y4a{bottom:263.010000px;}
.y2b{bottom:268.050000px;}
.ya2{bottom:269.850000px;}
.y69{bottom:274.890000px;}
.ybe{bottom:280.110000px;}
.y2a{bottom:288.750000px;}
.y49{bottom:293.970000px;}
.y68{bottom:306.030000px;}
.y29{bottom:309.450000px;}
.ybd{bottom:311.250000px;}
.y48{bottom:325.110000px;}
.y28{bottom:330.150000px;}
.y67{bottom:337.035000px;}
.ybc{bottom:342.255000px;}
.y27{bottom:350.895000px;}
.y47{bottom:356.115000px;}
.y66{bottom:368.175000px;}
.y26{bottom:371.595000px;}
.ybb{bottom:373.395000px;}
.y46{bottom:387.255000px;}
.y25{bottom:392.295000px;}
.y65{bottom:399.135000px;}
.yba{bottom:404.355000px;}
.ydc{bottom:408.675000px;}
.y9c{bottom:409.755000px;}
.y24{bottom:412.995000px;}
.y45{bottom:418.215000px;}
.y64{bottom:430.275000px;}
.yc3{bottom:432.615000px;}
.y23{bottom:433.695000px;}
.yb9{bottom:435.495000px;}
.ydb{bottom:441.435000px;}
.y44{bottom:449.355000px;}
.y22{bottom:454.395000px;}
.y63{bottom:461.235000px;}
.yda{bottom:462.135000px;}
.yb8{bottom:466.455000px;}
.y9b{bottom:467.355000px;}
.y21{bottom:475.095000px;}
.y43{bottom:480.315000px;}
.y62{bottom:492.375000px;}
.yd9{bottom:494.895000px;}
.y20{bottom:495.795000px;}
.yb7{bottom:497.595000px;}
.y42{bottom:511.455000px;}
.yd8{bottom:515.595000px;}
.y1f{bottom:516.495000px;}
.y61{bottom:523.335000px;}
.yb6{bottom:528.555000px;}
.y95{bottom:530.535000px;}
.y41{bottom:542.415000px;}
.yd7{bottom:548.355000px;}
.y60{bottom:554.475000px;}
.y1e{bottom:559.695000px;}
.yd6{bottom:569.055000px;}
.y40{bottom:573.555000px;}
.y1d{bottom:580.395000px;}
.y5f{bottom:585.435000px;}
.yb5{bottom:590.655000px;}
.y1c{bottom:601.095000px;}
.yd5{bottom:601.635000px;}
.y8d{bottom:602.175000px;}
.y3f{bottom:604.545000px;}
.y5e{bottom:616.605000px;}
.y1b{bottom:621.645000px;}
.yd4{bottom:622.365000px;}
.y3e{bottom:635.685000px;}
.y1a{bottom:642.345000px;}
.y5d{bottom:647.565000px;}
.yb4{bottom:652.785000px;}
.yd3{bottom:655.125000px;}
.y19{bottom:663.045000px;}
.y3d{bottom:666.645000px;}
.yd2{bottom:675.825000px;}
.y5c{bottom:678.705000px;}
.y18{bottom:683.745000px;}
.y8b{bottom:696.525000px;}
.y3c{bottom:697.785000px;}
.y17{bottom:704.445000px;}
.y5b{bottom:709.665000px;}
.yb3{bottom:714.885000px;}
.y16{bottom:725.145000px;}
.y3b{bottom:728.745000px;}
.yd1{bottom:729.105000px;}
.y5a{bottom:740.805000px;}
.y15{bottom:745.845000px;}
.yd0{bottom:749.805000px;}
.y3a{bottom:759.705000px;}
.y14{bottom:766.545000px;}
.y59{bottom:771.765000px;}
.y88{bottom:775.185000px;}
.yb2{bottom:776.985000px;}
.ycf{bottom:782.565000px;}
.y13{bottom:787.245000px;}
.y39{bottom:790.845000px;}
.yce{bottom:803.265000px;}
.y58{bottom:805.065000px;}
.y12{bottom:807.945000px;}
.y38{bottom:821.805000px;}
.y11{bottom:828.645000px;}
.ycd{bottom:836.025000px;}
.y83{bottom:838.545000px;}
.y57{bottom:839.085000px;}
.y10{bottom:849.345000px;}
.y37{bottom:852.945000px;}
.ycc{bottom:856.725000px;}
.yf{bottom:870.045000px;}
.y36{bottom:883.950000px;}
.ycb{bottom:889.350000px;}
.ye{bottom:890.790000px;}
.y56{bottom:901.230000px;}
.yca{bottom:910.050000px;}
.yd{bottom:911.490000px;}
.y35{bottom:915.090000px;}
.y7b{bottom:917.250000px;}
.yc{bottom:932.190000px;}
.yc9{bottom:942.810000px;}
.y34{bottom:946.050000px;}
.yb{bottom:953.430000px;}
.y55{bottom:963.330000px;}
.yc8{bottom:963.510000px;}
.y33{bottom:977.190000px;}
.ya{bottom:978.450000px;}
.y71{bottom:993.390000px;}
.y54{bottom:994.290000px;}
.yc7{bottom:996.270000px;}
.y9{bottom:1005.990000px;}
.y32{bottom:1008.150000px;}
.yc6{bottom:1016.970000px;}
.y53{bottom:1025.430000px;}
.y8{bottom:1033.530000px;}
.y31{bottom:1039.290000px;}
.yc5{bottom:1049.550000px;}
.y52{bottom:1056.390000px;}
.y7{bottom:1061.250000px;}
.y30{bottom:1070.250000px;}
.y6f{bottom:1072.050000px;}
.y51{bottom:1087.530000px;}
.y6{bottom:1088.790000px;}
.y5{bottom:1115.610000px;}
.y50{bottom:1118.490000px;}
.h8{height:25.920000px;}
.ha{height:32.273438px;}
.h12{height:52.417969px;}
.h7{height:52.628906px;}
.h10{height:56.520000px;}
.h2{height:59.383125px;}
.hd{height:62.100000px;}
.h6{height:64.546875px;}
.h3{height:65.884219px;}
.hf{height:70.560000px;}
.h4{height:74.820586px;}
.hb{height:74.880000px;}
.h9{height:77.580000px;}
.hc{height:77.616000px;}
.h5{height:85.052461px;}
.he{height:93.276000px;}
.h11{height:138.816000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:35.496000px;}
.w7{width:94.500000px;}
.w3{width:111.240000px;}
.w5{width:203.250000px;}
.w6{width:232.950000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:1.800000px;}
.x17{left:2.880000px;}
.x9{left:4.320000px;}
.x10{left:6.300000px;}
.x2d{left:7.380000px;}
.x13{left:8.640000px;}
.x1e{left:10.260000px;}
.x15{left:11.520000px;}
.x14{left:13.320000px;}
.x1c{left:14.580000px;}
.x18{left:15.660000px;}
.x25{left:16.920000px;}
.x1b{left:18.174000px;}
.x11{left:19.434000px;}
.x21{left:21.594000px;}
.xf{left:23.580000px;}
.x32{left:24.654000px;}
.x33{left:27.900000px;}
.x1d{left:29.160000px;}
.x16{left:30.240000px;}
.x2b{left:32.754000px;}
.x12{left:34.734000px;}
.x7{left:35.814000px;}
.x26{left:36.894000px;}
.x28{left:39.414000px;}
.x23{left:43.740000px;}
.x24{left:48.240000px;}
.x20{left:56.340000px;}
.x2e{left:62.280000px;}
.x2a{left:65.340000px;}
.xb{left:71.280000px;}
.x1f{left:74.700000px;}
.x2c{left:76.320000px;}
.x29{left:78.300000px;}
.x30{left:80.100000px;}
.x27{left:81.720000px;}
.x2f{left:83.160000px;}
.x22{left:85.860000px;}
.xd{left:88.560000px;}
.x19{left:95.940000px;}
.x31{left:97.200000px;}
.x1{left:127.655987px;}
.x6{left:132.876000px;}
.x5{left:150.329987px;}
.x4{left:180.749987px;}
.x8{left:245.190000px;}
.xa{left:281.775000px;}
.x2{left:284.474987px;}
.x3{left:294.014987px;}
.xc{left:486.105000px;}
.xe{left:720.150000px;}
@media print{
.v1{vertical-align:-68.480000pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.384000pt;}
.ws3{word-spacing:-19.040000pt;}
.ws6{word-spacing:-18.720000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws5{word-spacing:-8.000000pt;}
.ws1{word-spacing:0.000000pt;}
._b{margin-left:-7.660800pt;}
._3{margin-left:-6.213760pt;}
._5{margin-left:-4.511360pt;}
._23{margin-left:-3.368960pt;}
._9{margin-left:-2.383360pt;}
._0{margin-left:-1.295360pt;}
._4{width:1.210240pt;}
._7{width:2.974933pt;}
._12{width:4.544000pt;}
._13{width:5.568000pt;}
._22{width:6.464000pt;}
._14{width:7.360000pt;}
._10{width:8.576000pt;}
._f{width:9.834667pt;}
._c{width:10.831360pt;}
._e{width:11.822293pt;}
._d{width:12.716800pt;}
._15{width:13.952000pt;}
._11{width:14.991360pt;}
._2{width:16.683520pt;}
._6{width:18.008320pt;}
._27{width:19.712000pt;}
._1f{width:20.608000pt;}
._20{width:21.711360pt;}
._1e{width:22.848000pt;}
._18{width:24.576000pt;}
._19{width:25.642667pt;}
._24{width:26.815787pt;}
._28{width:28.864000pt;}
._29{width:30.208000pt;}
._26{width:31.392000pt;}
._25{width:35.232000pt;}
._1c{width:42.560000pt;}
._1d{width:43.776000pt;}
._21{width:50.496000pt;}
._8{width:51.667840pt;}
._a{width:52.585600pt;}
._1a{width:54.080000pt;}
._1b{width:55.040000pt;}
._16{width:170.058667pt;}
._17{width:951.018667pt;}
._1{width:1629.082453pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.839867pt;}
.y7a{bottom:6.240000pt;}
.y93{bottom:6.266667pt;}
.y8a{bottom:6.400000pt;}
.y70{bottom:10.560000pt;}
.ya1{bottom:10.720000pt;}
.y7f{bottom:12.000000pt;}
.y75{bottom:13.120000pt;}
.y98{bottom:16.960000pt;}
.y9e{bottom:17.600000pt;}
.y79{bottom:20.000000pt;}
.y82{bottom:20.160000pt;}
.y92{bottom:20.186667pt;}
.y9a{bottom:23.840000pt;}
.y9f{bottom:24.480000pt;}
.y7e{bottom:25.760000pt;}
.y74{bottom:26.880000pt;}
.y89{bottom:27.040000pt;}
.y97{bottom:30.720000pt;}
.y9d{bottom:31.360000pt;}
.y80{bottom:32.640000pt;}
.ya7{bottom:33.440000pt;}
.y76{bottom:33.760000pt;}
.y86{bottom:33.800000pt;}
.y81{bottom:33.920000pt;}
.y91{bottom:33.946667pt;}
.y99{bottom:37.600000pt;}
.ya0{bottom:38.240000pt;}
.y3{bottom:38.880000pt;}
.y7d{bottom:39.520000pt;}
.y73{bottom:40.640000pt;}
.y87{bottom:40.680000pt;}
.y8c{bottom:40.800000pt;}
.y94{bottom:40.826667pt;}
.y96{bottom:44.480000pt;}
.ya6{bottom:47.200000pt;}
.y78{bottom:47.680000pt;}
.y90{bottom:47.706667pt;}
.y85{bottom:47.720000pt;}
.y7c{bottom:53.440000pt;}
.ya9{bottom:54.080000pt;}
.y72{bottom:54.560000pt;}
.y2{bottom:55.840000pt;}
.ya5{bottom:61.160000pt;}
.y77{bottom:61.440000pt;}
.y8f{bottom:61.466667pt;}
.y84{bottom:61.480000pt;}
.ya8{bottom:68.040000pt;}
.y1{bottom:72.672000pt;}
.ya4{bottom:74.920000pt;}
.yac{bottom:75.240000pt;}
.y8e{bottom:75.386667pt;}
.ya3{bottom:88.680000pt;}
.yab{bottom:89.160000pt;}
.y4f{bottom:95.712000pt;}
.yaa{bottom:102.920000pt;}
.y6e{bottom:103.872000pt;}
.yc4{bottom:106.432000pt;}
.y2f{bottom:113.472000pt;}
.yb1{bottom:113.632000pt;}
.y4e{bottom:123.392000pt;}
.y6d{bottom:133.946667pt;}
.yc2{bottom:138.586667pt;}
.yb0{bottom:141.146667pt;}
.y2e{bottom:145.466667pt;}
.y4d{bottom:150.906667pt;}
.y6c{bottom:161.626667pt;}
.yc1{bottom:166.266667pt;}
.yaf{bottom:168.826667pt;}
.y2d{bottom:177.626667pt;}
.y4c{bottom:178.586667pt;}
.y6b{bottom:189.146667pt;}
.yc0{bottom:193.786667pt;}
.yae{bottom:196.346667pt;}
.y4b{bottom:206.106667pt;}
.y2c{bottom:209.306667pt;}
.y6a{bottom:216.826667pt;}
.ybf{bottom:221.466667pt;}
.yad{bottom:224.026667pt;}
.y4a{bottom:233.786667pt;}
.y2b{bottom:238.266667pt;}
.ya2{bottom:239.866667pt;}
.y69{bottom:244.346667pt;}
.ybe{bottom:248.986667pt;}
.y2a{bottom:256.666667pt;}
.y49{bottom:261.306667pt;}
.y68{bottom:272.026667pt;}
.y29{bottom:275.066667pt;}
.ybd{bottom:276.666667pt;}
.y48{bottom:288.986667pt;}
.y28{bottom:293.466667pt;}
.y67{bottom:299.586667pt;}
.ybc{bottom:304.226667pt;}
.y27{bottom:311.906667pt;}
.y47{bottom:316.546667pt;}
.y66{bottom:327.266667pt;}
.y26{bottom:330.306667pt;}
.ybb{bottom:331.906667pt;}
.y46{bottom:344.226667pt;}
.y25{bottom:348.706667pt;}
.y65{bottom:354.786667pt;}
.yba{bottom:359.426667pt;}
.ydc{bottom:363.266667pt;}
.y9c{bottom:364.226667pt;}
.y24{bottom:367.106667pt;}
.y45{bottom:371.746667pt;}
.y64{bottom:382.466667pt;}
.yc3{bottom:384.546667pt;}
.y23{bottom:385.506667pt;}
.yb9{bottom:387.106667pt;}
.ydb{bottom:392.386667pt;}
.y44{bottom:399.426667pt;}
.y22{bottom:403.906667pt;}
.y63{bottom:409.986667pt;}
.yda{bottom:410.786667pt;}
.yb8{bottom:414.626667pt;}
.y9b{bottom:415.426667pt;}
.y21{bottom:422.306667pt;}
.y43{bottom:426.946667pt;}
.y62{bottom:437.666667pt;}
.yd9{bottom:439.906667pt;}
.y20{bottom:440.706667pt;}
.yb7{bottom:442.306667pt;}
.y42{bottom:454.626667pt;}
.yd8{bottom:458.306667pt;}
.y1f{bottom:459.106667pt;}
.y61{bottom:465.186667pt;}
.yb6{bottom:469.826667pt;}
.y95{bottom:471.586667pt;}
.y41{bottom:482.146667pt;}
.yd7{bottom:487.426667pt;}
.y60{bottom:492.866667pt;}
.y1e{bottom:497.506667pt;}
.yd6{bottom:505.826667pt;}
.y40{bottom:509.826667pt;}
.y1d{bottom:515.906667pt;}
.y5f{bottom:520.386667pt;}
.yb5{bottom:525.026667pt;}
.y1c{bottom:534.306667pt;}
.yd5{bottom:534.786667pt;}
.y8d{bottom:535.266667pt;}
.y3f{bottom:537.373333pt;}
.y5e{bottom:548.093333pt;}
.y1b{bottom:552.573333pt;}
.yd4{bottom:553.213333pt;}
.y3e{bottom:565.053333pt;}
.y1a{bottom:570.973333pt;}
.y5d{bottom:575.613333pt;}
.yb4{bottom:580.253333pt;}
.yd3{bottom:582.333333pt;}
.y19{bottom:589.373333pt;}
.y3d{bottom:592.573333pt;}
.yd2{bottom:600.733333pt;}
.y5c{bottom:603.293333pt;}
.y18{bottom:607.773333pt;}
.y8b{bottom:619.133333pt;}
.y3c{bottom:620.253333pt;}
.y17{bottom:626.173333pt;}
.y5b{bottom:630.813333pt;}
.yb3{bottom:635.453333pt;}
.y16{bottom:644.573333pt;}
.y3b{bottom:647.773333pt;}
.yd1{bottom:648.093333pt;}
.y5a{bottom:658.493333pt;}
.y15{bottom:662.973333pt;}
.yd0{bottom:666.493333pt;}
.y3a{bottom:675.293333pt;}
.y14{bottom:681.373333pt;}
.y59{bottom:686.013333pt;}
.y88{bottom:689.053333pt;}
.yb2{bottom:690.653333pt;}
.ycf{bottom:695.613333pt;}
.y13{bottom:699.773333pt;}
.y39{bottom:702.973333pt;}
.yce{bottom:714.013333pt;}
.y58{bottom:715.613333pt;}
.y12{bottom:718.173333pt;}
.y38{bottom:730.493333pt;}
.y11{bottom:736.573333pt;}
.ycd{bottom:743.133333pt;}
.y83{bottom:745.373333pt;}
.y57{bottom:745.853333pt;}
.y10{bottom:754.973333pt;}
.y37{bottom:758.173333pt;}
.ycc{bottom:761.533333pt;}
.yf{bottom:773.373333pt;}
.y36{bottom:785.733333pt;}
.ycb{bottom:790.533333pt;}
.ye{bottom:791.813333pt;}
.y56{bottom:801.093333pt;}
.yca{bottom:808.933333pt;}
.yd{bottom:810.213333pt;}
.y35{bottom:813.413333pt;}
.y7b{bottom:815.333333pt;}
.yc{bottom:828.613333pt;}
.yc9{bottom:838.053333pt;}
.y34{bottom:840.933333pt;}
.yb{bottom:847.493333pt;}
.y55{bottom:856.293333pt;}
.yc8{bottom:856.453333pt;}
.y33{bottom:868.613333pt;}
.ya{bottom:869.733333pt;}
.y71{bottom:883.013333pt;}
.y54{bottom:883.813333pt;}
.yc7{bottom:885.573333pt;}
.y9{bottom:894.213333pt;}
.y32{bottom:896.133333pt;}
.yc6{bottom:903.973333pt;}
.y53{bottom:911.493333pt;}
.y8{bottom:918.693333pt;}
.y31{bottom:923.813333pt;}
.yc5{bottom:932.933333pt;}
.y52{bottom:939.013333pt;}
.y7{bottom:943.333333pt;}
.y30{bottom:951.333333pt;}
.y6f{bottom:952.933333pt;}
.y51{bottom:966.693333pt;}
.y6{bottom:967.813333pt;}
.y5{bottom:991.653333pt;}
.y50{bottom:994.213333pt;}
.h8{height:23.040000pt;}
.ha{height:28.687500pt;}
.h12{height:46.593750pt;}
.h7{height:46.781250pt;}
.h10{height:50.240000pt;}
.h2{height:52.785000pt;}
.hd{height:55.200000pt;}
.h6{height:57.375000pt;}
.h3{height:58.563750pt;}
.hf{height:62.720000pt;}
.h4{height:66.507188pt;}
.hb{height:66.560000pt;}
.h9{height:68.960000pt;}
.hc{height:68.992000pt;}
.h5{height:75.602187pt;}
.he{height:82.912000pt;}
.h11{height:123.392000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:31.552000pt;}
.w7{width:84.000000pt;}
.w3{width:98.880000pt;}
.w5{width:180.666667pt;}
.w6{width:207.066667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:1.600000pt;}
.x17{left:2.560000pt;}
.x9{left:3.840000pt;}
.x10{left:5.600000pt;}
.x2d{left:6.560000pt;}
.x13{left:7.680000pt;}
.x1e{left:9.120000pt;}
.x15{left:10.240000pt;}
.x14{left:11.840000pt;}
.x1c{left:12.960000pt;}
.x18{left:13.920000pt;}
.x25{left:15.040000pt;}
.x1b{left:16.154667pt;}
.x11{left:17.274667pt;}
.x21{left:19.194667pt;}
.xf{left:20.960000pt;}
.x32{left:21.914667pt;}
.x33{left:24.800000pt;}
.x1d{left:25.920000pt;}
.x16{left:26.880000pt;}
.x2b{left:29.114667pt;}
.x12{left:30.874667pt;}
.x7{left:31.834667pt;}
.x26{left:32.794667pt;}
.x28{left:35.034667pt;}
.x23{left:38.880000pt;}
.x24{left:42.880000pt;}
.x20{left:50.080000pt;}
.x2e{left:55.360000pt;}
.x2a{left:58.080000pt;}
.xb{left:63.360000pt;}
.x1f{left:66.400000pt;}
.x2c{left:67.840000pt;}
.x29{left:69.600000pt;}
.x30{left:71.200000pt;}
.x27{left:72.640000pt;}
.x2f{left:73.920000pt;}
.x22{left:76.320000pt;}
.xd{left:78.720000pt;}
.x19{left:85.280000pt;}
.x31{left:86.400000pt;}
.x1{left:113.471988pt;}
.x6{left:118.112000pt;}
.x5{left:133.626655pt;}
.x4{left:160.666655pt;}
.x8{left:217.946667pt;}
.xa{left:250.466667pt;}
.x2{left:252.866655pt;}
.x3{left:261.346655pt;}
.xc{left:432.093333pt;}
.xe{left:640.133333pt;}
}




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