
    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_3d0976b414e944af280e9626.woff')format("woff");}.ff1{font-family:ff1;line-height:1.014160;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_1ead821628724ae715bf302e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.091797;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_e6f0708552efe89a65852fea.woff')format("woff");}.ff3{font-family:ff3;line-height:0.854004;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_c9d8a6e5722eeb804151f2cf.woff')format("woff");}.ff4{font-family:ff4;line-height:1.018555;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_3ea71d53d26156d98387da8a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.018555;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_ef401de930c8354b5cdad1fb.woff')format("woff");}.ff6{font-family:ff6;line-height:1.018555;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2b940ba5a842a7f1e872609d.woff')format("woff");}.ff9{font-family:ff9;line-height:1.018555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ffa{font-family:ffa;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);}
.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:20.880000px;}
.ls1{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.288000px;}
.ls7{letter-spacing:26.064000px;}
.ls5{letter-spacing:33.984000px;}
.ls8{letter-spacing:38.304000px;}
.lsb{letter-spacing:42.624000px;}
.ls2{letter-spacing:54.864000px;}
.lsa{letter-spacing:60.624000px;}
.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:-72.000000px;}
.ws4{word-spacing:-18.288000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.ws5{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws0{word-spacing:-14.328000px;}
.ws2{word-spacing:0.000000px;}
._11{margin-left:-4.320000px;}
._4{margin-left:-3.312000px;}
._14{margin-left:-2.268480px;}
._0{margin-left:-1.235760px;}
._1{width:1.163760px;}
._17{width:3.024000px;}
._1a{width:4.067280px;}
._8{width:5.256000px;}
._d{width:6.612240px;}
._15{width:7.920000px;}
._1b{width:9.000000px;}
._f{width:10.008000px;}
._5{width:11.016000px;}
._6{width:12.228240px;}
._2{width:13.536000px;}
._3{width:14.771760px;}
._a{width:16.200000px;}
._9{width:19.152000px;}
._22{width:20.304240px;}
._19{width:21.384000px;}
._c{width:22.763520px;}
._b{width:23.976000px;}
._13{width:25.007520px;}
._12{width:26.352000px;}
._1f{width:27.720000px;}
._16{width:29.520000px;}
._e{width:30.816000px;}
._32{width:31.956240px;}
._18{width:33.120000px;}
._1d{width:34.128000px;}
._23{width:35.424000px;}
._26{width:37.080000px;}
._20{width:38.952000px;}
._1e{width:40.752000px;}
._29{width:41.832000px;}
._31{width:43.044240px;}
._24{width:44.148000px;}
._25{width:45.492000px;}
._2f{width:47.088000px;}
._30{width:48.156240px;}
._7{width:50.400000px;}
._1c{width:52.392480px;}
._34{width:54.720000px;}
._33{width:55.728000px;}
._10{width:57.600000px;}
._21{width:59.388000px;}
._2b{width:60.696000px;}
._2a{width:61.788000px;}
._27{width:63.792000px;}
._28{width:65.220000px;}
._2d{width:70.092480px;}
._2c{width:71.280000px;}
._38{width:75.240000px;}
._2e{width:94.320000px;}
._35{width:96.192000px;}
._36{width:123.840000px;}
._37{width:125.136000px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.760000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y67{bottom:5.400000px;}
.y6a{bottom:29.700000px;}
.y73{bottom:29.730000px;}
.y86{bottom:29.745000px;}
.y7d{bottom:53.994000px;}
.y91{bottom:54.000000px;}
.y85{bottom:54.045000px;}
.y3{bottom:57.996000px;}
.y7c{bottom:78.294000px;}
.y90{bottom:78.300000px;}
.y84{bottom:78.345000px;}
.y2{bottom:79.956000px;}
.y7b{bottom:102.459000px;}
.y8f{bottom:102.600000px;}
.y95{bottom:102.639000px;}
.y83{bottom:102.645000px;}
.y92{bottom:105.876000px;}
.y74{bottom:107.496000px;}
.y3c{bottom:110.376000px;}
.yaf{bottom:112.896000px;}
.y71{bottom:114.336000px;}
.y6f{bottom:120.096000px;}
.y1f{bottom:124.596000px;}
.y7a{bottom:126.759000px;}
.y8e{bottom:126.930000px;}
.y94{bottom:126.939000px;}
.y82{bottom:126.945000px;}
.y3b{bottom:134.676000px;}
.yae{bottom:137.196000px;}
.y70{bottom:138.636000px;}
.y6e{bottom:144.396000px;}
.y62{bottom:148.716000px;}
.y1e{bottom:148.896000px;}
.y8d{bottom:151.050000px;}
.y79{bottom:151.059000px;}
.y93{bottom:151.239000px;}
.y81{bottom:151.245000px;}
.y3a{bottom:158.970000px;}
.yad{bottom:161.490000px;}
.y56{bottom:162.930000px;}
.y6d{bottom:164.010000px;}
.y61{bottom:173.010000px;}
.y1d{bottom:173.190000px;}
.y8c{bottom:175.350000px;}
.y78{bottom:175.359000px;}
.y80{bottom:175.545000px;}
.y39{bottom:183.270000px;}
.yac{bottom:185.790000px;}
.y55{bottom:187.230000px;}
.y60{bottom:197.310000px;}
.y1c{bottom:197.490000px;}
.y8b{bottom:199.650000px;}
.y77{bottom:199.659000px;}
.y38{bottom:207.615000px;}
.yab{bottom:209.955000px;}
.y54{bottom:211.575000px;}
.y6c{bottom:213.375000px;}
.y5f{bottom:221.655000px;}
.y1b{bottom:221.835000px;}
.y8a{bottom:223.950000px;}
.y76{bottom:223.959000px;}
.y37{bottom:231.915000px;}
.yaa{bottom:234.255000px;}
.y53{bottom:235.875000px;}
.y5e{bottom:245.955000px;}
.y1a{bottom:246.135000px;}
.y89{bottom:248.250000px;}
.y75{bottom:248.259000px;}
.y36{bottom:256.215000px;}
.ya9{bottom:258.555000px;}
.y52{bottom:260.175000px;}
.y6b{bottom:262.695000px;}
.y5d{bottom:270.255000px;}
.y19{bottom:270.435000px;}
.y88{bottom:272.550000px;}
.y87{bottom:276.735000px;}
.y35{bottom:280.515000px;}
.ya8{bottom:282.855000px;}
.y51{bottom:284.475000px;}
.y5c{bottom:294.555000px;}
.y18{bottom:294.735000px;}
.y34{bottom:304.815000px;}
.ya7{bottom:307.155000px;}
.y50{bottom:308.595000px;}
.y69{bottom:312.015000px;}
.y5b{bottom:318.675000px;}
.y17{bottom:319.035000px;}
.y33{bottom:328.935000px;}
.ya6{bottom:331.455000px;}
.y4f{bottom:332.895000px;}
.y5a{bottom:342.975000px;}
.y16{bottom:343.335000px;}
.y32{bottom:353.235000px;}
.ya5{bottom:355.755000px;}
.y4e{bottom:357.195000px;}
.y68{bottom:361.335000px;}
.y59{bottom:367.275000px;}
.y15{bottom:367.455000px;}
.y72{bottom:375.375000px;}
.y31{bottom:377.535000px;}
.ya4{bottom:380.055000px;}
.y4d{bottom:381.495000px;}
.y66{bottom:386.355000px;}
.y58{bottom:391.575000px;}
.y14{bottom:391.755000px;}
.y30{bottom:401.865000px;}
.ya3{bottom:404.385000px;}
.y4c{bottom:405.825000px;}
.y57{bottom:410.505000px;}
.y65{bottom:416.805000px;}
.y13{bottom:421.305000px;}
.y2f{bottom:426.165000px;}
.ya2{bottom:428.685000px;}
.y4b{bottom:430.125000px;}
.y12{bottom:440.385000px;}
.y64{bottom:441.105000px;}
.y2e{bottom:450.465000px;}
.ya1{bottom:452.985000px;}
.y4a{bottom:454.425000px;}
.y11{bottom:464.685000px;}
.y2d{bottom:474.765000px;}
.ya0{bottom:477.105000px;}
.y49{bottom:478.725000px;}
.y63{bottom:480.705000px;}
.y10{bottom:488.985000px;}
.y2c{bottom:499.065000px;}
.y9f{bottom:501.405000px;}
.y48{bottom:503.025000px;}
.yf{bottom:513.285000px;}
.y2b{bottom:523.365000px;}
.y9e{bottom:525.705000px;}
.y47{bottom:527.325000px;}
.ye{bottom:537.585000px;}
.y2a{bottom:547.665000px;}
.y9d{bottom:550.005000px;}
.y46{bottom:551.625000px;}
.yd{bottom:561.885000px;}
.y7f{bottom:568.905000px;}
.y29{bottom:571.965000px;}
.y9c{bottom:574.305000px;}
.y45{bottom:575.745000px;}
.yc{bottom:591.405000px;}
.y28{bottom:596.085000px;}
.y9b{bottom:598.650000px;}
.y44{bottom:600.090000px;}
.yb{bottom:610.530000px;}
.y27{bottom:620.430000px;}
.y9a{bottom:622.950000px;}
.y43{bottom:624.390000px;}
.ya{bottom:634.650000px;}
.y26{bottom:644.730000px;}
.y99{bottom:647.250000px;}
.y42{bottom:648.690000px;}
.y9{bottom:658.950000px;}
.y25{bottom:669.030000px;}
.y98{bottom:671.550000px;}
.y41{bottom:672.990000px;}
.y8{bottom:683.250000px;}
.y24{bottom:693.330000px;}
.y97{bottom:695.850000px;}
.y40{bottom:697.290000px;}
.y7{bottom:707.550000px;}
.y96{bottom:715.470000px;}
.y23{bottom:717.630000px;}
.y3f{bottom:721.590000px;}
.y6{bottom:737.790000px;}
.y22{bottom:741.930000px;}
.y3e{bottom:745.890000px;}
.y5{bottom:762.090000px;}
.y7e{bottom:764.070000px;}
.y21{bottom:766.230000px;}
.y3d{bottom:770.190000px;}
.y4{bottom:787.470000px;}
.y20{bottom:794.490000px;}
.y1{bottom:820.980000px;}
.hb{height:24.300000px;}
.ha{height:24.336000px;}
.h8{height:30.749062px;}
.hf{height:48.456000px;}
.hc{height:48.600000px;}
.hd{height:48.636000px;}
.h7{height:52.347656px;}
.h9{height:52.417969px;}
.h2{height:52.769531px;}
.h6{height:53.015625px;}
.h4{height:60.855469px;}
.h5{height:62.028281px;}
.h3{height:62.507812px;}
.h13{height:97.056000px;}
.h12{height:170.130000px;}
.h10{height:194.250000px;}
.he{height:267.150000px;}
.h11{height:291.450000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w5{width:100.440000px;}
.w8{width:111.996000px;}
.w6{width:116.136000px;}
.w7{width:167.655000px;}
.w4{width:241.635000px;}
.w3{width:256.035000px;}
.w1{width:629.250000px;}
.w2{width:629.279991px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x21{left:7.740000px;}
.x22{left:34.740000px;}
.x20{left:46.800000px;}
.x3{left:64.835991px;}
.x18{left:69.155991px;}
.x5{left:73.115991px;}
.x1e{left:81.540000px;}
.x27{left:85.175991px;}
.x16{left:89.675991px;}
.x1a{left:91.835991px;}
.x17{left:93.095991px;}
.x1b{left:118.835991px;}
.x9{left:122.435991px;}
.x11{left:127.115991px;}
.xa{left:128.195991px;}
.xe{left:139.535991px;}
.x12{left:143.315991px;}
.x26{left:145.835991px;}
.xc{left:154.289991px;}
.xd{left:157.709991px;}
.x23{left:166.710000px;}
.x19{left:172.829991px;}
.x15{left:187.814991px;}
.x14{left:224.354991px;}
.x1d{left:228.494991px;}
.xb{left:236.774991px;}
.x10{left:238.934991px;}
.x8{left:257.474991px;}
.x4{left:262.154991px;}
.x6{left:275.654991px;}
.x24{left:283.575000px;}
.xf{left:293.114991px;}
.x2{left:305.204991px;}
.x7{left:314.744991px;}
.x1f{left:322.305000px;}
.x13{left:341.744991px;}
.x1{left:373.604991px;}
.x25{left:451.950000px;}
.x1c{left:533.339991px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls1{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.256000pt;}
.ls7{letter-spacing:23.168000pt;}
.ls5{letter-spacing:30.208000pt;}
.ls8{letter-spacing:34.048000pt;}
.lsb{letter-spacing:37.888000pt;}
.ls2{letter-spacing:48.768000pt;}
.lsa{letter-spacing:53.888000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws4{word-spacing:-16.256000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws0{word-spacing:-12.736000pt;}
.ws2{word-spacing:0.000000pt;}
._11{margin-left:-3.840000pt;}
._4{margin-left:-2.944000pt;}
._14{margin-left:-2.016427pt;}
._0{margin-left:-1.098453pt;}
._1{width:1.034453pt;}
._17{width:2.688000pt;}
._1a{width:3.615360pt;}
._8{width:4.672000pt;}
._d{width:5.877547pt;}
._15{width:7.040000pt;}
._1b{width:8.000000pt;}
._f{width:8.896000pt;}
._5{width:9.792000pt;}
._6{width:10.869547pt;}
._2{width:12.032000pt;}
._3{width:13.130453pt;}
._a{width:14.400000pt;}
._9{width:17.024000pt;}
._22{width:18.048213pt;}
._19{width:19.008000pt;}
._c{width:20.234240pt;}
._b{width:21.312000pt;}
._13{width:22.228907pt;}
._12{width:23.424000pt;}
._1f{width:24.640000pt;}
._16{width:26.240000pt;}
._e{width:27.392000pt;}
._32{width:28.405547pt;}
._18{width:29.440000pt;}
._1d{width:30.336000pt;}
._23{width:31.488000pt;}
._26{width:32.960000pt;}
._20{width:34.624000pt;}
._1e{width:36.224000pt;}
._29{width:37.184000pt;}
._31{width:38.261547pt;}
._24{width:39.242667pt;}
._25{width:40.437333pt;}
._2f{width:41.856000pt;}
._30{width:42.805547pt;}
._7{width:44.800000pt;}
._1c{width:46.571093pt;}
._34{width:48.640000pt;}
._33{width:49.536000pt;}
._10{width:51.200000pt;}
._21{width:52.789333pt;}
._2b{width:53.952000pt;}
._2a{width:54.922667pt;}
._27{width:56.704000pt;}
._28{width:57.973333pt;}
._2d{width:62.304427pt;}
._2c{width:63.360000pt;}
._38{width:66.880000pt;}
._2e{width:83.840000pt;}
._35{width:85.504000pt;}
._36{width:110.080000pt;}
._37{width:111.232000pt;}
.fs2{font-size:37.120000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:4.800000pt;}
.y6a{bottom:26.400000pt;}
.y73{bottom:26.426667pt;}
.y86{bottom:26.440000pt;}
.y7d{bottom:47.994667pt;}
.y91{bottom:48.000000pt;}
.y85{bottom:48.040000pt;}
.y3{bottom:51.552000pt;}
.y7c{bottom:69.594667pt;}
.y90{bottom:69.600000pt;}
.y84{bottom:69.640000pt;}
.y2{bottom:71.072000pt;}
.y7b{bottom:91.074667pt;}
.y8f{bottom:91.200000pt;}
.y95{bottom:91.234667pt;}
.y83{bottom:91.240000pt;}
.y92{bottom:94.112000pt;}
.y74{bottom:95.552000pt;}
.y3c{bottom:98.112000pt;}
.yaf{bottom:100.352000pt;}
.y71{bottom:101.632000pt;}
.y6f{bottom:106.752000pt;}
.y1f{bottom:110.752000pt;}
.y7a{bottom:112.674667pt;}
.y8e{bottom:112.826667pt;}
.y94{bottom:112.834667pt;}
.y82{bottom:112.840000pt;}
.y3b{bottom:119.712000pt;}
.yae{bottom:121.952000pt;}
.y70{bottom:123.232000pt;}
.y6e{bottom:128.352000pt;}
.y62{bottom:132.192000pt;}
.y1e{bottom:132.352000pt;}
.y8d{bottom:134.266667pt;}
.y79{bottom:134.274667pt;}
.y93{bottom:134.434667pt;}
.y81{bottom:134.440000pt;}
.y3a{bottom:141.306667pt;}
.yad{bottom:143.546667pt;}
.y56{bottom:144.826667pt;}
.y6d{bottom:145.786667pt;}
.y61{bottom:153.786667pt;}
.y1d{bottom:153.946667pt;}
.y8c{bottom:155.866667pt;}
.y78{bottom:155.874667pt;}
.y80{bottom:156.040000pt;}
.y39{bottom:162.906667pt;}
.yac{bottom:165.146667pt;}
.y55{bottom:166.426667pt;}
.y60{bottom:175.386667pt;}
.y1c{bottom:175.546667pt;}
.y8b{bottom:177.466667pt;}
.y77{bottom:177.474667pt;}
.y38{bottom:184.546667pt;}
.yab{bottom:186.626667pt;}
.y54{bottom:188.066667pt;}
.y6c{bottom:189.666667pt;}
.y5f{bottom:197.026667pt;}
.y1b{bottom:197.186667pt;}
.y8a{bottom:199.066667pt;}
.y76{bottom:199.074667pt;}
.y37{bottom:206.146667pt;}
.yaa{bottom:208.226667pt;}
.y53{bottom:209.666667pt;}
.y5e{bottom:218.626667pt;}
.y1a{bottom:218.786667pt;}
.y89{bottom:220.666667pt;}
.y75{bottom:220.674667pt;}
.y36{bottom:227.746667pt;}
.ya9{bottom:229.826667pt;}
.y52{bottom:231.266667pt;}
.y6b{bottom:233.506667pt;}
.y5d{bottom:240.226667pt;}
.y19{bottom:240.386667pt;}
.y88{bottom:242.266667pt;}
.y87{bottom:245.986667pt;}
.y35{bottom:249.346667pt;}
.ya8{bottom:251.426667pt;}
.y51{bottom:252.866667pt;}
.y5c{bottom:261.826667pt;}
.y18{bottom:261.986667pt;}
.y34{bottom:270.946667pt;}
.ya7{bottom:273.026667pt;}
.y50{bottom:274.306667pt;}
.y69{bottom:277.346667pt;}
.y5b{bottom:283.266667pt;}
.y17{bottom:283.586667pt;}
.y33{bottom:292.386667pt;}
.ya6{bottom:294.626667pt;}
.y4f{bottom:295.906667pt;}
.y5a{bottom:304.866667pt;}
.y16{bottom:305.186667pt;}
.y32{bottom:313.986667pt;}
.ya5{bottom:316.226667pt;}
.y4e{bottom:317.506667pt;}
.y68{bottom:321.186667pt;}
.y59{bottom:326.466667pt;}
.y15{bottom:326.626667pt;}
.y72{bottom:333.666667pt;}
.y31{bottom:335.586667pt;}
.ya4{bottom:337.826667pt;}
.y4d{bottom:339.106667pt;}
.y66{bottom:343.426667pt;}
.y58{bottom:348.066667pt;}
.y14{bottom:348.226667pt;}
.y30{bottom:357.213333pt;}
.ya3{bottom:359.453333pt;}
.y4c{bottom:360.733333pt;}
.y57{bottom:364.893333pt;}
.y65{bottom:370.493333pt;}
.y13{bottom:374.493333pt;}
.y2f{bottom:378.813333pt;}
.ya2{bottom:381.053333pt;}
.y4b{bottom:382.333333pt;}
.y12{bottom:391.453333pt;}
.y64{bottom:392.093333pt;}
.y2e{bottom:400.413333pt;}
.ya1{bottom:402.653333pt;}
.y4a{bottom:403.933333pt;}
.y11{bottom:413.053333pt;}
.y2d{bottom:422.013333pt;}
.ya0{bottom:424.093333pt;}
.y49{bottom:425.533333pt;}
.y63{bottom:427.293333pt;}
.y10{bottom:434.653333pt;}
.y2c{bottom:443.613333pt;}
.y9f{bottom:445.693333pt;}
.y48{bottom:447.133333pt;}
.yf{bottom:456.253333pt;}
.y2b{bottom:465.213333pt;}
.y9e{bottom:467.293333pt;}
.y47{bottom:468.733333pt;}
.ye{bottom:477.853333pt;}
.y2a{bottom:486.813333pt;}
.y9d{bottom:488.893333pt;}
.y46{bottom:490.333333pt;}
.yd{bottom:499.453333pt;}
.y7f{bottom:505.693333pt;}
.y29{bottom:508.413333pt;}
.y9c{bottom:510.493333pt;}
.y45{bottom:511.773333pt;}
.yc{bottom:525.693333pt;}
.y28{bottom:529.853333pt;}
.y9b{bottom:532.133333pt;}
.y44{bottom:533.413333pt;}
.yb{bottom:542.693333pt;}
.y27{bottom:551.493333pt;}
.y9a{bottom:553.733333pt;}
.y43{bottom:555.013333pt;}
.ya{bottom:564.133333pt;}
.y26{bottom:573.093333pt;}
.y99{bottom:575.333333pt;}
.y42{bottom:576.613333pt;}
.y9{bottom:585.733333pt;}
.y25{bottom:594.693333pt;}
.y98{bottom:596.933333pt;}
.y41{bottom:598.213333pt;}
.y8{bottom:607.333333pt;}
.y24{bottom:616.293333pt;}
.y97{bottom:618.533333pt;}
.y40{bottom:619.813333pt;}
.y7{bottom:628.933333pt;}
.y96{bottom:635.973333pt;}
.y23{bottom:637.893333pt;}
.y3f{bottom:641.413333pt;}
.y6{bottom:655.813333pt;}
.y22{bottom:659.493333pt;}
.y3e{bottom:663.013333pt;}
.y5{bottom:677.413333pt;}
.y7e{bottom:679.173333pt;}
.y21{bottom:681.093333pt;}
.y3d{bottom:684.613333pt;}
.y4{bottom:699.973333pt;}
.y20{bottom:706.213333pt;}
.y1{bottom:729.760000pt;}
.hb{height:21.600000pt;}
.ha{height:21.632000pt;}
.h8{height:27.332500pt;}
.hf{height:43.072000pt;}
.hc{height:43.200000pt;}
.hd{height:43.232000pt;}
.h7{height:46.531250pt;}
.h9{height:46.593750pt;}
.h2{height:46.906250pt;}
.h6{height:47.125000pt;}
.h4{height:54.093750pt;}
.h5{height:55.136250pt;}
.h3{height:55.562500pt;}
.h13{height:86.272000pt;}
.h12{height:151.226667pt;}
.h10{height:172.666667pt;}
.he{height:237.466667pt;}
.h11{height:259.066667pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w5{width:89.280000pt;}
.w8{width:99.552000pt;}
.w6{width:103.232000pt;}
.w7{width:149.026667pt;}
.w4{width:214.786667pt;}
.w3{width:227.586667pt;}
.w1{width:559.333333pt;}
.w2{width:559.359992pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x21{left:6.880000pt;}
.x22{left:30.880000pt;}
.x20{left:41.600000pt;}
.x3{left:57.631992pt;}
.x18{left:61.471992pt;}
.x5{left:64.991992pt;}
.x1e{left:72.480000pt;}
.x27{left:75.711992pt;}
.x16{left:79.711992pt;}
.x1a{left:81.631992pt;}
.x17{left:82.751992pt;}
.x1b{left:105.631992pt;}
.x9{left:108.831992pt;}
.x11{left:112.991992pt;}
.xa{left:113.951992pt;}
.xe{left:124.031992pt;}
.x12{left:127.391992pt;}
.x26{left:129.631992pt;}
.xc{left:137.146658pt;}
.xd{left:140.186658pt;}
.x23{left:148.186667pt;}
.x19{left:153.626658pt;}
.x15{left:166.946658pt;}
.x14{left:199.426658pt;}
.x1d{left:203.106658pt;}
.xb{left:210.466658pt;}
.x10{left:212.386658pt;}
.x8{left:228.866658pt;}
.x4{left:233.026658pt;}
.x6{left:245.026658pt;}
.x24{left:252.066667pt;}
.xf{left:260.546658pt;}
.x2{left:271.293325pt;}
.x7{left:279.773325pt;}
.x1f{left:286.493333pt;}
.x13{left:303.773325pt;}
.x1{left:332.093325pt;}
.x25{left:401.733333pt;}
.x1c{left:474.079992pt;}
}




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