
    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_0e4a42e7488979514d9cc3cb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933105;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_3b140a80ed8ed47395351e6f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d057bbf74a66e010fb342e89.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a19a0f711cb77cb13ae27cf1.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_4187a07ed50224c03f53149a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8b5b4e8b6ed37db829a4a739.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_aed26ba8552bcfce1225491c.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5d617a1a1c3715ef2503e1a6.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls14{letter-spacing:-1.440000px;}
.ls9{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.457800px;}
.lsf{letter-spacing:-0.414600px;}
.ls7{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.305400px;}
.ls6{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.223800px;}
.lsa{letter-spacing:-0.053280px;}
.ls8{letter-spacing:-0.017280px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.017280px;}
.ls1b{letter-spacing:0.109200px;}
.lsb{letter-spacing:0.152400px;}
.ls0{letter-spacing:0.180000px;}
.lse{letter-spacing:0.262200px;}
.ls18{letter-spacing:0.305400px;}
.ls3{letter-spacing:0.306600px;}
.ls17{letter-spacing:1.440000px;}
.ls19{letter-spacing:2.880000px;}
.ls1a{letter-spacing:3.600000px;}
.ls15{letter-spacing:5.040000px;}
.ls11{letter-spacing:10.080000px;}
.ls1c{letter-spacing:11.520000px;}
.ls16{letter-spacing:12.240000px;}
.ls10{letter-spacing:13.680000px;}
.ls13{letter-spacing:18.000000px;}
.lsc{letter-spacing:20.160000px;}
.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:-19.457280px;}
.wsc{word-spacing:-16.822200px;}
.wsa{word-spacing:-16.712400px;}
.wsf{word-spacing:-16.669200px;}
.ws9{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.254600px;}
.wsd{word-spacing:-16.145400px;}
.wse{word-spacing:-16.102200px;}
.ws7{word-spacing:-15.246600px;}
.ws6{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.580000px;}
.ws1{word-spacing:-12.060000px;}
.ws0{word-spacing:-11.700000px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._3{margin-left:-6.552480px;}
._f{margin-left:-4.244640px;}
._4{margin-left:-3.139920px;}
._10{margin-left:-2.139120px;}
._0{margin-left:-1.059840px;}
._2{width:1.332480px;}
._7{width:2.414160px;}
._a{width:4.183200px;}
._8{width:5.480160px;}
._9{width:7.416000px;}
._e{width:9.257760px;}
._b{width:10.731360px;}
._6{width:12.071520px;}
._5{width:13.446000px;}
._12{width:14.708160px;}
._c{width:15.919920px;}
._16{width:17.888400px;}
._15{width:18.956400px;}
._17{width:19.980960px;}
._19{width:21.461760px;}
._1a{width:22.786560px;}
._18{width:24.132240px;}
._13{width:25.303680px;}
._14{width:26.453280px;}
._1b{width:27.754560px;}
._11{width:41.735280px;}
._d{width:45.549360px;}
._1{width:1179.254400px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(128,0,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y75{bottom:6.300000px;}
.y88{bottom:6.345000px;}
.y2{bottom:6.480000px;}
.y77{bottom:7.200000px;}
.y82{bottom:7.380000px;}
.y72{bottom:17.280000px;}
.y74{bottom:28.260000px;}
.y90{bottom:29.700000px;}
.y71{bottom:39.060000px;}
.y73{bottom:50.040000px;}
.y8a{bottom:50.805000px;}
.y8f{bottom:51.480000px;}
.y5{bottom:52.200000px;}
.y4{bottom:70.056000px;}
.y86{bottom:73.305000px;}
.y8e{bottom:73.440000px;}
.y8d{bottom:95.220000px;}
.y6f{bottom:113.796000px;}
.yab{bottom:120.636000px;}
.y3f{bottom:123.876000px;}
.y6e{bottom:135.576000px;}
.yaa{bottom:142.416000px;}
.y3e{bottom:145.656000px;}
.y6d{bottom:157.350000px;}
.ya9{bottom:164.190000px;}
.y3d{bottom:167.430000px;}
.y84{bottom:175.710000px;}
.y6c{bottom:179.130000px;}
.ya8{bottom:185.970000px;}
.y3c{bottom:189.210000px;}
.y83{bottom:200.010000px;}
.y6b{bottom:201.090000px;}
.y3b{bottom:207.210000px;}
.ya7{bottom:207.750000px;}
.y3a{bottom:221.070000px;}
.y6a{bottom:222.870000px;}
.y81{bottom:223.590000px;}
.ya6{bottom:229.710000px;}
.y39{bottom:236.370000px;}
.y69{bottom:244.650000px;}
.y80{bottom:247.350000px;}
.ya5{bottom:251.490000px;}
.y38{bottom:256.350000px;}
.y68{bottom:266.430000px;}
.y7f{bottom:271.650000px;}
.ya4{bottom:273.270000px;}
.y37{bottom:273.630000px;}
.y67{bottom:288.210000px;}
.y36{bottom:290.730000px;}
.ya3{bottom:295.050000px;}
.y7e{bottom:302.430000px;}
.y35{bottom:308.010000px;}
.y66{bottom:310.170000px;}
.ya2{bottom:317.010000px;}
.y7d{bottom:324.210000px;}
.y34{bottom:325.290000px;}
.y65{bottom:331.950000px;}
.ya1{bottom:338.835000px;}
.y33{bottom:342.615000px;}
.y7c{bottom:346.035000px;}
.y64{bottom:353.775000px;}
.y32{bottom:359.895000px;}
.ya0{bottom:360.615000px;}
.y7b{bottom:367.815000px;}
.y63{bottom:375.555000px;}
.y31{bottom:377.175000px;}
.y9f{bottom:382.395000px;}
.y7a{bottom:389.775000px;}
.y30{bottom:394.275000px;}
.y62{bottom:397.515000px;}
.y9e{bottom:404.175000px;}
.y2f{bottom:411.555000px;}
.y61{bottom:419.295000px;}
.y9d{bottom:426.135000px;}
.y79{bottom:427.755000px;}
.y2e{bottom:428.835000px;}
.y60{bottom:441.075000px;}
.y2d{bottom:446.115000px;}
.y9c{bottom:447.915000px;}
.y78{bottom:451.875000px;}
.y5f{bottom:462.855000px;}
.y2c{bottom:463.395000px;}
.y9b{bottom:469.695000px;}
.y76{bottom:475.275000px;}
.y2b{bottom:480.495000px;}
.y5e{bottom:484.635000px;}
.y9a{bottom:491.475000px;}
.y2a{bottom:497.775000px;}
.y70{bottom:499.395000px;}
.y5d{bottom:506.595000px;}
.y99{bottom:513.435000px;}
.y29{bottom:515.055000px;}
.y5c{bottom:528.375000px;}
.y98{bottom:531.795000px;}
.y28{bottom:532.335000px;}
.y27{bottom:549.615000px;}
.y5b{bottom:550.155000px;}
.y97{bottom:553.575000px;}
.y26{bottom:566.895000px;}
.y5a{bottom:571.935000px;}
.y96{bottom:578.415000px;}
.y25{bottom:583.995000px;}
.y59{bottom:593.895000px;}
.y24{bottom:601.275000px;}
.y95{bottom:609.585000px;}
.y58{bottom:615.705000px;}
.y23{bottom:618.585000px;}
.y94{bottom:631.545000px;}
.y22{bottom:635.865000px;}
.y57{bottom:637.485000px;}
.y21{bottom:653.145000px;}
.y93{bottom:653.325000px;}
.y56{bottom:659.265000px;}
.y92{bottom:669.525000px;}
.y20{bottom:670.425000px;}
.y55{bottom:681.045000px;}
.y1f{bottom:687.525000px;}
.y8c{bottom:692.025000px;}
.y54{bottom:703.005000px;}
.y1e{bottom:704.805000px;}
.y1d{bottom:722.085000px;}
.y53{bottom:724.785000px;}
.y91{bottom:736.485000px;}
.y1c{bottom:739.365000px;}
.y52{bottom:746.565000px;}
.y1b{bottom:756.645000px;}
.y8b{bottom:758.985000px;}
.y51{bottom:768.345000px;}
.y1a{bottom:773.745000px;}
.y50{bottom:790.125000px;}
.y19{bottom:791.025000px;}
.y85{bottom:803.445000px;}
.y18{bottom:808.305000px;}
.y4f{bottom:812.085000px;}
.y17{bottom:825.585000px;}
.y89{bottom:825.945000px;}
.y4e{bottom:833.865000px;}
.y16{bottom:842.865000px;}
.y4d{bottom:855.645000px;}
.y15{bottom:860.145000px;}
.y87{bottom:870.405000px;}
.y14{bottom:877.290000px;}
.y4c{bottom:877.470000px;}
.y13{bottom:894.570000px;}
.y4b{bottom:899.430000px;}
.y12{bottom:912.210000px;}
.y4a{bottom:921.210000px;}
.y11{bottom:930.750000px;}
.y49{bottom:942.990000px;}
.y10{bottom:953.250000px;}
.y48{bottom:964.770000px;}
.yf{bottom:968.370000px;}
.y47{bottom:986.550000px;}
.ye{bottom:988.530000px;}
.yd{bottom:1007.430000px;}
.y46{bottom:1008.510000px;}
.y45{bottom:1030.290000px;}
.yc{bottom:1033.170000px;}
.y44{bottom:1052.070000px;}
.yb{bottom:1054.590000px;}
.ya{bottom:1071.870000px;}
.y43{bottom:1073.850000px;}
.y9{bottom:1089.150000px;}
.y42{bottom:1095.810000px;}
.y8{bottom:1106.430000px;}
.y41{bottom:1117.590000px;}
.y7{bottom:1123.530000px;}
.y40{bottom:1139.400000px;}
.y6{bottom:1140.840000px;}
.y3{bottom:1168.560000px;}
.y1{bottom:1183.860000px;}
.h18{height:21.780000px;}
.h15{height:21.816000px;}
.h1a{height:21.960000px;}
.h11{height:23.400000px;}
.h12{height:23.580000px;}
.h13{height:23.760000px;}
.h2{height:25.020000px;}
.hb{height:27.147656px;}
.h9{height:34.036523px;}
.h5{height:39.760312px;}
.h7{height:41.726953px;}
.h6{height:42.164648px;}
.h17{height:43.740000px;}
.h4{height:46.251562px;}
.h3{height:46.380937px;}
.he{height:46.736719px;}
.hc{height:49.255313px;}
.hd{height:50.800781px;}
.h1b{height:52.918594px;}
.ha{height:53.224453px;}
.hf{height:54.596250px;}
.h8{height:54.864844px;}
.h10{height:65.520000px;}
.h16{height:66.276000px;}
.h14{height:88.776000px;}
.h19{height:110.700000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w15{width:36.540000px;}
.w5{width:38.376000px;}
.w13{width:41.760000px;}
.w17{width:52.380000px;}
.w2{width:53.100000px;}
.w14{width:57.780000px;}
.w18{width:63.000000px;}
.w9{width:72.000000px;}
.w19{width:73.836000px;}
.w1b{width:74.196000px;}
.w16{width:76.716000px;}
.w1a{width:84.600000px;}
.w7{width:92.556000px;}
.w8{width:95.580000px;}
.w10{width:100.260000px;}
.w6{width:113.760000px;}
.w11{width:113.976000px;}
.w12{width:116.100000px;}
.wb{width:138.276000px;}
.wd{width:158.790000px;}
.wf{width:190.650000px;}
.wc{width:191.370000px;}
.wa{width:218.010000px;}
.w1c{width:229.350000px;}
.we{width:331.950000px;}
.w1d{width:445.215000px;}
.w3{width:627.405000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x2{left:10.080000px;}
.x38{left:12.240000px;}
.x16{left:13.680000px;}
.x19{left:14.985000px;}
.x1c{left:16.965000px;}
.x10{left:19.125000px;}
.x37{left:20.520000px;}
.x14{left:22.500000px;}
.x3e{left:23.940000px;}
.x12{left:25.200000px;}
.x3f{left:27.360000px;}
.x41{left:28.800000px;}
.x33{left:30.240000px;}
.x24{left:31.860000px;}
.x1b{left:33.300000px;}
.x18{left:35.460000px;}
.x21{left:36.570000px;}
.x13{left:37.980000px;}
.x1a{left:42.150000px;}
.x23{left:46.440000px;}
.x3c{left:49.860000px;}
.x40{left:58.140000px;}
.x27{left:60.870000px;}
.x25{left:65.010000px;}
.x32{left:76.365000px;}
.x2e{left:79.194000px;}
.x26{left:81.225000px;}
.x29{left:83.205000px;}
.x28{left:85.185000px;}
.x1{left:108.036000px;}
.x2b{left:113.435987px;}
.x5{left:122.255987px;}
.xd{left:124.055987px;}
.x43{left:133.776000px;}
.x2d{left:135.036000px;}
.x30{left:136.620000px;}
.xc{left:150.509987px;}
.x44{left:155.550000px;}
.x3{left:161.130000px;}
.x1e{left:166.350000px;}
.x2a{left:171.929987px;}
.x3d{left:219.630000px;}
.x8{left:234.389987px;}
.x1f{left:238.350000px;}
.xf{left:276.330000px;}
.x2f{left:294.555000px;}
.x11{left:314.715000px;}
.x9{left:318.134987px;}
.xe{left:330.554987px;}
.x36{left:337.035000px;}
.x2c{left:343.514987px;}
.x1d{left:366.374987px;}
.x45{left:392.655000px;}
.x34{left:395.535000px;}
.x46{left:411.735000px;}
.xb{left:419.114987px;}
.xa{left:420.554987px;}
.x6{left:424.694987px;}
.x15{left:428.475000px;}
.x39{left:432.795000px;}
.x42{left:444.314987px;}
.x7{left:446.474987px;}
.x20{left:456.375000px;}
.x35{left:510.405000px;}
.x17{left:521.025000px;}
.x3a{left:563.505000px;}
.x22{left:594.645000px;}
.x31{left:627.225000px;}
.x3b{left:701.790000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls14{letter-spacing:-1.280000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.406933pt;}
.lsf{letter-spacing:-0.368533pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.198933pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:-0.015360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.015360pt;}
.ls1b{letter-spacing:0.097067pt;}
.lsb{letter-spacing:0.135467pt;}
.ls0{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.233067pt;}
.ls18{letter-spacing:0.271467pt;}
.ls3{letter-spacing:0.272533pt;}
.ls17{letter-spacing:1.280000pt;}
.ls19{letter-spacing:2.560000pt;}
.ls1a{letter-spacing:3.200000pt;}
.ls15{letter-spacing:4.480000pt;}
.ls11{letter-spacing:8.960000pt;}
.ls1c{letter-spacing:10.240000pt;}
.ls16{letter-spacing:10.880000pt;}
.ls10{letter-spacing:12.160000pt;}
.ls13{letter-spacing:16.000000pt;}
.lsc{letter-spacing:17.920000pt;}
.ws3{word-spacing:-17.295360pt;}
.wsc{word-spacing:-14.953067pt;}
.wsa{word-spacing:-14.855467pt;}
.wsf{word-spacing:-14.817067pt;}
.ws9{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.448533pt;}
.wsd{word-spacing:-14.351467pt;}
.wse{word-spacing:-14.313067pt;}
.ws7{word-spacing:-13.552533pt;}
.ws6{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.960000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.400000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._3{margin-left:-5.824427pt;}
._f{margin-left:-3.773013pt;}
._4{margin-left:-2.791040pt;}
._10{margin-left:-1.901440pt;}
._0{margin-left:-0.942080pt;}
._2{width:1.184427pt;}
._7{width:2.145920pt;}
._a{width:3.718400pt;}
._8{width:4.871253pt;}
._9{width:6.592000pt;}
._e{width:8.229120pt;}
._b{width:9.538987pt;}
._6{width:10.730240pt;}
._5{width:11.952000pt;}
._12{width:13.073920pt;}
._c{width:14.151040pt;}
._16{width:15.900800pt;}
._15{width:16.850133pt;}
._17{width:17.760853pt;}
._19{width:19.077120pt;}
._1a{width:20.254720pt;}
._18{width:21.450880pt;}
._13{width:22.492160pt;}
._14{width:23.514027pt;}
._1b{width:24.670720pt;}
._11{width:37.098027pt;}
._d{width:40.488320pt;}
._1{width:1048.226133pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:5.600000pt;}
.y88{bottom:5.640000pt;}
.y2{bottom:5.760000pt;}
.y77{bottom:6.400000pt;}
.y82{bottom:6.560000pt;}
.y72{bottom:15.360000pt;}
.y74{bottom:25.120000pt;}
.y90{bottom:26.400000pt;}
.y71{bottom:34.720000pt;}
.y73{bottom:44.480000pt;}
.y8a{bottom:45.160000pt;}
.y8f{bottom:45.760000pt;}
.y5{bottom:46.400000pt;}
.y4{bottom:62.272000pt;}
.y86{bottom:65.160000pt;}
.y8e{bottom:65.280000pt;}
.y8d{bottom:84.640000pt;}
.y6f{bottom:101.152000pt;}
.yab{bottom:107.232000pt;}
.y3f{bottom:110.112000pt;}
.y6e{bottom:120.512000pt;}
.yaa{bottom:126.592000pt;}
.y3e{bottom:129.472000pt;}
.y6d{bottom:139.866667pt;}
.ya9{bottom:145.946667pt;}
.y3d{bottom:148.826667pt;}
.y84{bottom:156.186667pt;}
.y6c{bottom:159.226667pt;}
.ya8{bottom:165.306667pt;}
.y3c{bottom:168.186667pt;}
.y83{bottom:177.786667pt;}
.y6b{bottom:178.746667pt;}
.y3b{bottom:184.186667pt;}
.ya7{bottom:184.666667pt;}
.y3a{bottom:196.506667pt;}
.y6a{bottom:198.106667pt;}
.y81{bottom:198.746667pt;}
.ya6{bottom:204.186667pt;}
.y39{bottom:210.106667pt;}
.y69{bottom:217.466667pt;}
.y80{bottom:219.866667pt;}
.ya5{bottom:223.546667pt;}
.y38{bottom:227.866667pt;}
.y68{bottom:236.826667pt;}
.y7f{bottom:241.466667pt;}
.ya4{bottom:242.906667pt;}
.y37{bottom:243.226667pt;}
.y67{bottom:256.186667pt;}
.y36{bottom:258.426667pt;}
.ya3{bottom:262.266667pt;}
.y7e{bottom:268.826667pt;}
.y35{bottom:273.786667pt;}
.y66{bottom:275.706667pt;}
.ya2{bottom:281.786667pt;}
.y7d{bottom:288.186667pt;}
.y34{bottom:289.146667pt;}
.y65{bottom:295.066667pt;}
.ya1{bottom:301.186667pt;}
.y33{bottom:304.546667pt;}
.y7c{bottom:307.586667pt;}
.y64{bottom:314.466667pt;}
.y32{bottom:319.906667pt;}
.ya0{bottom:320.546667pt;}
.y7b{bottom:326.946667pt;}
.y63{bottom:333.826667pt;}
.y31{bottom:335.266667pt;}
.y9f{bottom:339.906667pt;}
.y7a{bottom:346.466667pt;}
.y30{bottom:350.466667pt;}
.y62{bottom:353.346667pt;}
.y9e{bottom:359.266667pt;}
.y2f{bottom:365.826667pt;}
.y61{bottom:372.706667pt;}
.y9d{bottom:378.786667pt;}
.y79{bottom:380.226667pt;}
.y2e{bottom:381.186667pt;}
.y60{bottom:392.066667pt;}
.y2d{bottom:396.546667pt;}
.y9c{bottom:398.146667pt;}
.y78{bottom:401.666667pt;}
.y5f{bottom:411.426667pt;}
.y2c{bottom:411.906667pt;}
.y9b{bottom:417.506667pt;}
.y76{bottom:422.466667pt;}
.y2b{bottom:427.106667pt;}
.y5e{bottom:430.786667pt;}
.y9a{bottom:436.866667pt;}
.y2a{bottom:442.466667pt;}
.y70{bottom:443.906667pt;}
.y5d{bottom:450.306667pt;}
.y99{bottom:456.386667pt;}
.y29{bottom:457.826667pt;}
.y5c{bottom:469.666667pt;}
.y98{bottom:472.706667pt;}
.y28{bottom:473.186667pt;}
.y27{bottom:488.546667pt;}
.y5b{bottom:489.026667pt;}
.y97{bottom:492.066667pt;}
.y26{bottom:503.906667pt;}
.y5a{bottom:508.386667pt;}
.y96{bottom:514.146667pt;}
.y25{bottom:519.106667pt;}
.y59{bottom:527.906667pt;}
.y24{bottom:534.466667pt;}
.y95{bottom:541.853333pt;}
.y58{bottom:547.293333pt;}
.y23{bottom:549.853333pt;}
.y94{bottom:561.373333pt;}
.y22{bottom:565.213333pt;}
.y57{bottom:566.653333pt;}
.y21{bottom:580.573333pt;}
.y93{bottom:580.733333pt;}
.y56{bottom:586.013333pt;}
.y92{bottom:595.133333pt;}
.y20{bottom:595.933333pt;}
.y55{bottom:605.373333pt;}
.y1f{bottom:611.133333pt;}
.y8c{bottom:615.133333pt;}
.y54{bottom:624.893333pt;}
.y1e{bottom:626.493333pt;}
.y1d{bottom:641.853333pt;}
.y53{bottom:644.253333pt;}
.y91{bottom:654.653333pt;}
.y1c{bottom:657.213333pt;}
.y52{bottom:663.613333pt;}
.y1b{bottom:672.573333pt;}
.y8b{bottom:674.653333pt;}
.y51{bottom:682.973333pt;}
.y1a{bottom:687.773333pt;}
.y50{bottom:702.333333pt;}
.y19{bottom:703.133333pt;}
.y85{bottom:714.173333pt;}
.y18{bottom:718.493333pt;}
.y4f{bottom:721.853333pt;}
.y17{bottom:733.853333pt;}
.y89{bottom:734.173333pt;}
.y4e{bottom:741.213333pt;}
.y16{bottom:749.213333pt;}
.y4d{bottom:760.573333pt;}
.y15{bottom:764.573333pt;}
.y87{bottom:773.693333pt;}
.y14{bottom:779.813333pt;}
.y4c{bottom:779.973333pt;}
.y13{bottom:795.173333pt;}
.y4b{bottom:799.493333pt;}
.y12{bottom:810.853333pt;}
.y4a{bottom:818.853333pt;}
.y11{bottom:827.333333pt;}
.y49{bottom:838.213333pt;}
.y10{bottom:847.333333pt;}
.y48{bottom:857.573333pt;}
.yf{bottom:860.773333pt;}
.y47{bottom:876.933333pt;}
.ye{bottom:878.693333pt;}
.yd{bottom:895.493333pt;}
.y46{bottom:896.453333pt;}
.y45{bottom:915.813333pt;}
.yc{bottom:918.373333pt;}
.y44{bottom:935.173333pt;}
.yb{bottom:937.413333pt;}
.ya{bottom:952.773333pt;}
.y43{bottom:954.533333pt;}
.y9{bottom:968.133333pt;}
.y42{bottom:974.053333pt;}
.y8{bottom:983.493333pt;}
.y41{bottom:993.413333pt;}
.y7{bottom:998.693333pt;}
.y40{bottom:1012.800000pt;}
.y6{bottom:1014.080000pt;}
.y3{bottom:1038.720000pt;}
.y1{bottom:1052.320000pt;}
.h18{height:19.360000pt;}
.h15{height:19.392000pt;}
.h1a{height:19.520000pt;}
.h11{height:20.800000pt;}
.h12{height:20.960000pt;}
.h13{height:21.120000pt;}
.h2{height:22.240000pt;}
.hb{height:24.131250pt;}
.h9{height:30.254687pt;}
.h5{height:35.342500pt;}
.h7{height:37.090625pt;}
.h6{height:37.479688pt;}
.h17{height:38.880000pt;}
.h4{height:41.112500pt;}
.h3{height:41.227500pt;}
.he{height:41.543750pt;}
.hc{height:43.782500pt;}
.hd{height:45.156250pt;}
.h1b{height:47.038750pt;}
.ha{height:47.310625pt;}
.hf{height:48.530000pt;}
.h8{height:48.768750pt;}
.h10{height:58.240000pt;}
.h16{height:58.912000pt;}
.h14{height:78.912000pt;}
.h19{height:98.400000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w15{width:32.480000pt;}
.w5{width:34.112000pt;}
.w13{width:37.120000pt;}
.w17{width:46.560000pt;}
.w2{width:47.200000pt;}
.w14{width:51.360000pt;}
.w18{width:56.000000pt;}
.w9{width:64.000000pt;}
.w19{width:65.632000pt;}
.w1b{width:65.952000pt;}
.w16{width:68.192000pt;}
.w1a{width:75.200000pt;}
.w7{width:82.272000pt;}
.w8{width:84.960000pt;}
.w10{width:89.120000pt;}
.w6{width:101.120000pt;}
.w11{width:101.312000pt;}
.w12{width:103.200000pt;}
.wb{width:122.912000pt;}
.wd{width:141.146667pt;}
.wf{width:169.466667pt;}
.wc{width:170.106667pt;}
.wa{width:193.786667pt;}
.w1c{width:203.866667pt;}
.we{width:295.066667pt;}
.w1d{width:395.746667pt;}
.w3{width:557.693333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x2{left:8.960000pt;}
.x38{left:10.880000pt;}
.x16{left:12.160000pt;}
.x19{left:13.320000pt;}
.x1c{left:15.080000pt;}
.x10{left:17.000000pt;}
.x37{left:18.240000pt;}
.x14{left:20.000000pt;}
.x3e{left:21.280000pt;}
.x12{left:22.400000pt;}
.x3f{left:24.320000pt;}
.x41{left:25.600000pt;}
.x33{left:26.880000pt;}
.x24{left:28.320000pt;}
.x1b{left:29.600000pt;}
.x18{left:31.520000pt;}
.x21{left:32.506667pt;}
.x13{left:33.760000pt;}
.x1a{left:37.466667pt;}
.x23{left:41.280000pt;}
.x3c{left:44.320000pt;}
.x40{left:51.680000pt;}
.x27{left:54.106667pt;}
.x25{left:57.786667pt;}
.x32{left:67.880000pt;}
.x2e{left:70.394667pt;}
.x26{left:72.200000pt;}
.x29{left:73.960000pt;}
.x28{left:75.720000pt;}
.x1{left:96.032000pt;}
.x2b{left:100.831988pt;}
.x5{left:108.671988pt;}
.xd{left:110.271988pt;}
.x43{left:118.912000pt;}
.x2d{left:120.032000pt;}
.x30{left:121.440000pt;}
.xc{left:133.786655pt;}
.x44{left:138.266667pt;}
.x3{left:143.226667pt;}
.x1e{left:147.866667pt;}
.x2a{left:152.826655pt;}
.x3d{left:195.226667pt;}
.x8{left:208.346655pt;}
.x1f{left:211.866667pt;}
.xf{left:245.626667pt;}
.x2f{left:261.826667pt;}
.x11{left:279.746667pt;}
.x9{left:282.786655pt;}
.xe{left:293.826655pt;}
.x36{left:299.586667pt;}
.x2c{left:305.346655pt;}
.x1d{left:325.666655pt;}
.x45{left:349.026667pt;}
.x34{left:351.586667pt;}
.x46{left:365.986667pt;}
.xb{left:372.546655pt;}
.xa{left:373.826655pt;}
.x6{left:377.506655pt;}
.x15{left:380.866667pt;}
.x39{left:384.706667pt;}
.x42{left:394.946655pt;}
.x7{left:396.866655pt;}
.x20{left:405.666667pt;}
.x35{left:453.693333pt;}
.x17{left:463.133333pt;}
.x3a{left:500.893333pt;}
.x22{left:528.573333pt;}
.x31{left:557.533333pt;}
.x3b{left:623.813333pt;}
}




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