
    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_e7b67ec589ef43fb906387ee.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_915efb76a46a98fffadae98f.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_17b0e808a8735c862d96cbd0.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c81765008572f35b2e716f41.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fdb79fd0fff64da995189fbe.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_bf508d9fd367ca412f14ee1c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_0215286e555a19cc17f11368.woff')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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_dc213007e7d54ecc3f7aa033.woff')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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_859c72d942ed727e728fa5e8.woff')format("woff");}.ffa{font-family:ffa;line-height:0.740234;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:ffb;src:url('chunks/assets/font_c786a7992ed58fb5d013a9cc.woff')format("woff");}.ffb{font-family:ffb;line-height:1.084961;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:ffc;src:url('chunks/assets/font_9f605d0f61728bb3d0d1ee84.woff')format("woff");}.ffc{font-family:ffc;line-height:0.853027;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:ffd;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffd{font-family:ffd;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);}
.v6{vertical-align:-22.320000px;}
.v2{vertical-align:-21.060000px;}
.v5{vertical-align:-12.240000px;}
.v7{vertical-align:-10.080000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls7{letter-spacing:-4.116000px;}
.ls23{letter-spacing:-2.826000px;}
.ls1d{letter-spacing:-2.520000px;}
.ls17{letter-spacing:-1.080000px;}
.ls11{letter-spacing:-0.612000px;}
.ls8{letter-spacing:-0.540000px;}
.ls20{letter-spacing:-0.460200px;}
.ls5{letter-spacing:-0.457800px;}
.ls15{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.305400px;}
.ls1c{letter-spacing:-0.259800px;}
.lsa{letter-spacing:-0.206400px;}
.ls18{letter-spacing:-0.100200px;}
.ls9{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.053280px;}
.ls10{letter-spacing:0.106800px;}
.ls1a{letter-spacing:0.175800px;}
.lsb{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.259800px;}
.ls1e{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.298800px;}
.ls13{letter-spacing:0.306600px;}
.ls2{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.900000px;}
.lsd{letter-spacing:1.620000px;}
.ls1b{letter-spacing:2.340000px;}
.ls19{letter-spacing:2.718720px;}
.ls22{letter-spacing:11.466720px;}
.lse{letter-spacing:19.386720px;}
.lsf{letter-spacing:28.026720px;}
.ls21{letter-spacing:41.706720px;}
.ls14{letter-spacing:44.010720px;}
.ls1{letter-spacing:46.026720px;}
.ls16{letter-spacing:73.530720px;}
.ls1f{letter-spacing:135.684000px;}
.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;}
}
.ws15{word-spacing:-59.935800px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws1{word-spacing:-16.102200px;}
.ws8{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.246600px;}
.ws5{word-spacing:-15.238800px;}
.wse{word-spacing:-15.199800px;}
.ws14{word-spacing:-15.120000px;}
.wsc{word-spacing:-15.046800px;}
.ws12{word-spacing:-14.993280px;}
.wsb{word-spacing:-14.970240px;}
.ws6{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.733600px;}
.ws16{word-spacing:-14.680200px;}
.ws11{word-spacing:-14.580000px;}
.ws18{word-spacing:-14.479800px;}
.wsd{word-spacing:-14.328000px;}
.ws13{word-spacing:-13.860000px;}
.ws17{word-spacing:-12.420000px;}
.ws7{word-spacing:-10.824000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
._2{margin-left:-2538.319440px;}
._3{margin-left:-1459.335600px;}
._6{margin-left:-1451.691480px;}
._5{margin-left:-938.965920px;}
._7{margin-left:-585.964560px;}
._4{margin-left:-8.213760px;}
._11{margin-left:-6.901920px;}
._b{margin-left:-5.895360px;}
._d{margin-left:-4.271040px;}
._13{margin-left:-2.310720px;}
._1{margin-left:-1.183920px;}
._0{width:1.244880px;}
._e{width:3.060720px;}
._10{width:4.410960px;}
._12{width:5.627520px;}
._f{width:6.633360px;}
._c{width:7.927680px;}
._a{width:9.273600px;}
._14{width:10.523280px;}
._15{width:11.903280px;}
._16{width:13.611840px;}
._1a{width:16.913280px;}
._20{width:18.894240px;}
._1f{width:20.019600px;}
._22{width:21.175200px;}
._23{width:22.330800px;}
._21{width:23.556240px;}
._1d{width:27.411120px;}
._1e{width:32.821680px;}
._17{width:42.499440px;}
._18{width:61.852560px;}
._8{width:63.703200px;}
._9{width:65.304000px;}
._19{width:66.792720px;}
._1c{width:150.541680px;}
._1b{width:151.670880px;}
._24{width:197.604000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6b{bottom:2.520000px;}
.y7a{bottom:2.700000px;}
.y6{bottom:60.120000px;}
.y78{bottom:94.140000px;}
.ya1{bottom:98.460000px;}
.y77{bottom:100.080000px;}
.y82{bottom:104.040000px;}
.y6e{bottom:105.480000px;}
.y69{bottom:113.940000px;}
.ya0{bottom:118.440000px;}
.y75{bottom:120.060000px;}
.y81{bottom:123.840000px;}
.y6d{bottom:125.280000px;}
.y76{bottom:125.640000px;}
.y32{bottom:126.720000px;}
.y68{bottom:133.740000px;}
.y9f{bottom:138.240000px;}
.y74{bottom:140.040000px;}
.y80{bottom:143.640000px;}
.y6c{bottom:145.260000px;}
.y31{bottom:146.520000px;}
.y67{bottom:153.570000px;}
.y9e{bottom:158.070000px;}
.y6a{bottom:159.330000px;}
.y73{bottom:160.050000px;}
.y7f{bottom:163.650000px;}
.y30{bottom:166.350000px;}
.y66{bottom:173.370000px;}
.y9d{bottom:177.870000px;}
.y72{bottom:179.850000px;}
.y7e{bottom:183.450000px;}
.y2f{bottom:186.150000px;}
.y65{bottom:193.350000px;}
.y9c{bottom:197.670000px;}
.y71{bottom:199.650000px;}
.y7d{bottom:203.250000px;}
.y2e{bottom:206.130000px;}
.y64{bottom:213.150000px;}
.y9b{bottom:217.650000px;}
.y70{bottom:219.450000px;}
.y7c{bottom:223.050000px;}
.y2d{bottom:225.930000px;}
.y63{bottom:232.950000px;}
.y6f{bottom:233.490000px;}
.y9a{bottom:237.450000px;}
.y7b{bottom:242.850000px;}
.y2c{bottom:245.730000px;}
.y62{bottom:252.750000px;}
.y79{bottom:256.890000px;}
.y99{bottom:257.250000px;}
.y2b{bottom:265.530000px;}
.y61{bottom:272.550000px;}
.y98{bottom:277.050000px;}
.y2a{bottom:285.330000px;}
.y60{bottom:292.530000px;}
.y97{bottom:296.850000px;}
.y29{bottom:305.310000px;}
.y5f{bottom:312.330000px;}
.y96{bottom:316.830000px;}
.y28{bottom:325.110000px;}
.y5e{bottom:332.130000px;}
.y95{bottom:336.630000px;}
.y27{bottom:344.910000px;}
.y5d{bottom:351.930000px;}
.y94{bottom:356.430000px;}
.y26{bottom:364.710000px;}
.y5c{bottom:371.730000px;}
.y93{bottom:376.230000px;}
.y25{bottom:384.510000px;}
.y5b{bottom:391.710000px;}
.y92{bottom:396.030000px;}
.y24{bottom:404.535000px;}
.y5a{bottom:411.555000px;}
.y91{bottom:416.055000px;}
.y23{bottom:424.335000px;}
.y59{bottom:431.355000px;}
.y90{bottom:435.855000px;}
.y22{bottom:444.135000px;}
.y58{bottom:451.155000px;}
.y8f{bottom:455.655000px;}
.y21{bottom:466.275000px;}
.y57{bottom:470.955000px;}
.y8e{bottom:475.455000px;}
.y56{bottom:490.935000px;}
.y20{bottom:495.075000px;}
.y8d{bottom:495.255000px;}
.y55{bottom:510.735000px;}
.y1f{bottom:514.875000px;}
.y8c{bottom:515.235000px;}
.y54{bottom:530.535000px;}
.y1e{bottom:534.675000px;}
.y8b{bottom:535.035000px;}
.y53{bottom:550.335000px;}
.y1d{bottom:554.475000px;}
.y8a{bottom:554.835000px;}
.y52{bottom:570.135000px;}
.y1c{bottom:574.455000px;}
.y89{bottom:574.635000px;}
.y51{bottom:590.115000px;}
.y1b{bottom:594.255000px;}
.y88{bottom:594.435000px;}
.y50{bottom:609.915000px;}
.y1a{bottom:614.055000px;}
.y87{bottom:614.415000px;}
.y4f{bottom:629.715000px;}
.y19{bottom:633.855000px;}
.y86{bottom:634.215000px;}
.y4e{bottom:649.545000px;}
.y18{bottom:653.685000px;}
.y85{bottom:654.045000px;}
.y4d{bottom:669.345000px;}
.y17{bottom:673.665000px;}
.y84{bottom:673.845000px;}
.y83{bottom:687.885000px;}
.y4c{bottom:689.325000px;}
.y16{bottom:693.465000px;}
.y4b{bottom:709.125000px;}
.y15{bottom:713.265000px;}
.y4a{bottom:728.925000px;}
.y14{bottom:733.065000px;}
.y49{bottom:748.725000px;}
.y13{bottom:755.205000px;}
.y48{bottom:768.525000px;}
.y12{bottom:775.005000px;}
.y47{bottom:788.505000px;}
.y11{bottom:800.025000px;}
.y46{bottom:808.305000px;}
.y10{bottom:814.785000px;}
.y45{bottom:828.105000px;}
.yf{bottom:839.805000px;}
.y44{bottom:847.905000px;}
.ye{bottom:854.385000px;}
.y43{bottom:867.705000px;}
.yd{bottom:874.185000px;}
.y42{bottom:887.685000px;}
.yc{bottom:899.250000px;}
.y41{bottom:907.530000px;}
.yb{bottom:914.550000px;}
.y40{bottom:927.330000px;}
.ya{bottom:936.330000px;}
.y3f{bottom:947.130000px;}
.y9{bottom:957.570000px;}
.y3e{bottom:966.930000px;}
.y8{bottom:980.970000px;}
.y3d{bottom:986.910000px;}
.y3c{bottom:1006.710000px;}
.y7{bottom:1012.830000px;}
.y3b{bottom:1026.510000px;}
.y3a{bottom:1046.310000px;}
.y5{bottom:1051.170000px;}
.y39{bottom:1066.110000px;}
.y4{bottom:1081.950000px;}
.y38{bottom:1086.090000px;}
.y37{bottom:1105.890000px;}
.y3{bottom:1112.730000px;}
.y36{bottom:1125.690000px;}
.y2{bottom:1143.690000px;}
.y35{bottom:1145.490000px;}
.y34{bottom:1173.060000px;}
.y1{bottom:1177.560000px;}
.y33{bottom:1193.220000px;}
.h8{height:34.855313px;}
.h10{height:35.194219px;}
.h6{height:42.164648px;}
.ha{height:43.506914px;}
.hd{height:48.496641px;}
.h7{height:53.224453px;}
.h9{height:53.573906px;}
.hc{height:55.735312px;}
.h5{height:59.383125px;}
.h3{height:59.436914px;}
.h2{height:67.565039px;}
.hb{height:67.824844px;}
.h4{height:75.519844px;}
.he{height:286.050000px;}
.h12{height:412.230000px;}
.h11{height:466.275000px;}
.hf{height:926.070000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:679.965000px;}
.w4{width:680.190000px;}
.w3{width:727.350000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:54.179987px;}
.x8{left:61.919987px;}
.xb{left:64.079987px;}
.x3{left:74.339987px;}
.xe{left:80.999987px;}
.x4{left:87.875987px;}
.xc{left:106.596000px;}
.x2{left:108.035987px;}
.x6{left:132.515987px;}
.xd{left:153.749987px;}
.x9{left:446.114987px;}
.xa{left:468.644987px;}
.x7{left:671.910000px;}
.x5{left:719.250000px;}
@media print{
.v6{vertical-align:-19.840000pt;}
.v2{vertical-align:-18.720000pt;}
.v5{vertical-align:-10.880000pt;}
.v7{vertical-align:-8.960000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-3.658667pt;}
.ls23{letter-spacing:-2.512000pt;}
.ls1d{letter-spacing:-2.240000pt;}
.ls17{letter-spacing:-0.960000pt;}
.ls11{letter-spacing:-0.544000pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls20{letter-spacing:-0.409067pt;}
.ls5{letter-spacing:-0.406933pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.271467pt;}
.ls1c{letter-spacing:-0.230933pt;}
.lsa{letter-spacing:-0.183467pt;}
.ls18{letter-spacing:-0.089067pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.047360pt;}
.ls10{letter-spacing:0.094933pt;}
.ls1a{letter-spacing:0.156267pt;}
.lsb{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.230933pt;}
.ls1e{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.265600pt;}
.ls13{letter-spacing:0.272533pt;}
.ls2{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.800000pt;}
.lsd{letter-spacing:1.440000pt;}
.ls1b{letter-spacing:2.080000pt;}
.ls19{letter-spacing:2.416640pt;}
.ls22{letter-spacing:10.192640pt;}
.lse{letter-spacing:17.232640pt;}
.lsf{letter-spacing:24.912640pt;}
.ls21{letter-spacing:37.072640pt;}
.ls14{letter-spacing:39.120640pt;}
.ls1{letter-spacing:40.912640pt;}
.ls16{letter-spacing:65.360640pt;}
.ls1f{letter-spacing:120.608000pt;}
.ws15{word-spacing:-53.276267pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws1{word-spacing:-14.313067pt;}
.ws8{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.552533pt;}
.ws5{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.510933pt;}
.ws14{word-spacing:-13.440000pt;}
.wsc{word-spacing:-13.374933pt;}
.ws12{word-spacing:-13.327360pt;}
.wsb{word-spacing:-13.306880pt;}
.ws6{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.232640pt;}
.ws9{word-spacing:-13.096533pt;}
.ws16{word-spacing:-13.049067pt;}
.ws11{word-spacing:-12.960000pt;}
.ws18{word-spacing:-12.870933pt;}
.wsd{word-spacing:-12.736000pt;}
.ws13{word-spacing:-12.320000pt;}
.ws17{word-spacing:-11.040000pt;}
.ws7{word-spacing:-9.621333pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
._2{margin-left:-2256.283947pt;}
._3{margin-left:-1297.187200pt;}
._6{margin-left:-1290.392427pt;}
._5{margin-left:-834.636373pt;}
._7{margin-left:-520.857387pt;}
._4{margin-left:-7.301120pt;}
._11{margin-left:-6.135040pt;}
._b{margin-left:-5.240320pt;}
._d{margin-left:-3.796480pt;}
._13{margin-left:-2.053973pt;}
._1{margin-left:-1.052373pt;}
._0{width:1.106560pt;}
._e{width:2.720640pt;}
._10{width:3.920853pt;}
._12{width:5.002240pt;}
._f{width:5.896320pt;}
._c{width:7.046827pt;}
._a{width:8.243200pt;}
._14{width:9.354027pt;}
._15{width:10.580693pt;}
._16{width:12.099413pt;}
._1a{width:15.034027pt;}
._20{width:16.794880pt;}
._1f{width:17.795200pt;}
._22{width:18.822400pt;}
._23{width:19.849600pt;}
._21{width:20.938880pt;}
._1d{width:24.365440pt;}
._1e{width:29.174827pt;}
._17{width:37.777280pt;}
._18{width:54.980053pt;}
._8{width:56.625067pt;}
._9{width:58.048000pt;}
._19{width:59.371307pt;}
._1c{width:133.814827pt;}
._1b{width:134.818560pt;}
._24{width:175.648000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6b{bottom:2.240000pt;}
.y7a{bottom:2.400000pt;}
.y6{bottom:53.440000pt;}
.y78{bottom:83.680000pt;}
.ya1{bottom:87.520000pt;}
.y77{bottom:88.960000pt;}
.y82{bottom:92.480000pt;}
.y6e{bottom:93.760000pt;}
.y69{bottom:101.280000pt;}
.ya0{bottom:105.280000pt;}
.y75{bottom:106.720000pt;}
.y81{bottom:110.080000pt;}
.y6d{bottom:111.360000pt;}
.y76{bottom:111.680000pt;}
.y32{bottom:112.640000pt;}
.y68{bottom:118.880000pt;}
.y9f{bottom:122.880000pt;}
.y74{bottom:124.480000pt;}
.y80{bottom:127.680000pt;}
.y6c{bottom:129.120000pt;}
.y31{bottom:130.240000pt;}
.y67{bottom:136.506667pt;}
.y9e{bottom:140.506667pt;}
.y6a{bottom:141.626667pt;}
.y73{bottom:142.266667pt;}
.y7f{bottom:145.466667pt;}
.y30{bottom:147.866667pt;}
.y66{bottom:154.106667pt;}
.y9d{bottom:158.106667pt;}
.y72{bottom:159.866667pt;}
.y7e{bottom:163.066667pt;}
.y2f{bottom:165.466667pt;}
.y65{bottom:171.866667pt;}
.y9c{bottom:175.706667pt;}
.y71{bottom:177.466667pt;}
.y7d{bottom:180.666667pt;}
.y2e{bottom:183.226667pt;}
.y64{bottom:189.466667pt;}
.y9b{bottom:193.466667pt;}
.y70{bottom:195.066667pt;}
.y7c{bottom:198.266667pt;}
.y2d{bottom:200.826667pt;}
.y63{bottom:207.066667pt;}
.y6f{bottom:207.546667pt;}
.y9a{bottom:211.066667pt;}
.y7b{bottom:215.866667pt;}
.y2c{bottom:218.426667pt;}
.y62{bottom:224.666667pt;}
.y79{bottom:228.346667pt;}
.y99{bottom:228.666667pt;}
.y2b{bottom:236.026667pt;}
.y61{bottom:242.266667pt;}
.y98{bottom:246.266667pt;}
.y2a{bottom:253.626667pt;}
.y60{bottom:260.026667pt;}
.y97{bottom:263.866667pt;}
.y29{bottom:271.386667pt;}
.y5f{bottom:277.626667pt;}
.y96{bottom:281.626667pt;}
.y28{bottom:288.986667pt;}
.y5e{bottom:295.226667pt;}
.y95{bottom:299.226667pt;}
.y27{bottom:306.586667pt;}
.y5d{bottom:312.826667pt;}
.y94{bottom:316.826667pt;}
.y26{bottom:324.186667pt;}
.y5c{bottom:330.426667pt;}
.y93{bottom:334.426667pt;}
.y25{bottom:341.786667pt;}
.y5b{bottom:348.186667pt;}
.y92{bottom:352.026667pt;}
.y24{bottom:359.586667pt;}
.y5a{bottom:365.826667pt;}
.y91{bottom:369.826667pt;}
.y23{bottom:377.186667pt;}
.y59{bottom:383.426667pt;}
.y90{bottom:387.426667pt;}
.y22{bottom:394.786667pt;}
.y58{bottom:401.026667pt;}
.y8f{bottom:405.026667pt;}
.y21{bottom:414.466667pt;}
.y57{bottom:418.626667pt;}
.y8e{bottom:422.626667pt;}
.y56{bottom:436.386667pt;}
.y20{bottom:440.066667pt;}
.y8d{bottom:440.226667pt;}
.y55{bottom:453.986667pt;}
.y1f{bottom:457.666667pt;}
.y8c{bottom:457.986667pt;}
.y54{bottom:471.586667pt;}
.y1e{bottom:475.266667pt;}
.y8b{bottom:475.586667pt;}
.y53{bottom:489.186667pt;}
.y1d{bottom:492.866667pt;}
.y8a{bottom:493.186667pt;}
.y52{bottom:506.786667pt;}
.y1c{bottom:510.626667pt;}
.y89{bottom:510.786667pt;}
.y51{bottom:524.546667pt;}
.y1b{bottom:528.226667pt;}
.y88{bottom:528.386667pt;}
.y50{bottom:542.146667pt;}
.y1a{bottom:545.826667pt;}
.y87{bottom:546.146667pt;}
.y4f{bottom:559.746667pt;}
.y19{bottom:563.426667pt;}
.y86{bottom:563.746667pt;}
.y4e{bottom:577.373333pt;}
.y18{bottom:581.053333pt;}
.y85{bottom:581.373333pt;}
.y4d{bottom:594.973333pt;}
.y17{bottom:598.813333pt;}
.y84{bottom:598.973333pt;}
.y83{bottom:611.453333pt;}
.y4c{bottom:612.733333pt;}
.y16{bottom:616.413333pt;}
.y4b{bottom:630.333333pt;}
.y15{bottom:634.013333pt;}
.y4a{bottom:647.933333pt;}
.y14{bottom:651.613333pt;}
.y49{bottom:665.533333pt;}
.y13{bottom:671.293333pt;}
.y48{bottom:683.133333pt;}
.y12{bottom:688.893333pt;}
.y47{bottom:700.893333pt;}
.y11{bottom:711.133333pt;}
.y46{bottom:718.493333pt;}
.y10{bottom:724.253333pt;}
.y45{bottom:736.093333pt;}
.yf{bottom:746.493333pt;}
.y44{bottom:753.693333pt;}
.ye{bottom:759.453333pt;}
.y43{bottom:771.293333pt;}
.yd{bottom:777.053333pt;}
.y42{bottom:789.053333pt;}
.yc{bottom:799.333333pt;}
.y41{bottom:806.693333pt;}
.yb{bottom:812.933333pt;}
.y40{bottom:824.293333pt;}
.ya{bottom:832.293333pt;}
.y3f{bottom:841.893333pt;}
.y9{bottom:851.173333pt;}
.y3e{bottom:859.493333pt;}
.y8{bottom:871.973333pt;}
.y3d{bottom:877.253333pt;}
.y3c{bottom:894.853333pt;}
.y7{bottom:900.293333pt;}
.y3b{bottom:912.453333pt;}
.y3a{bottom:930.053333pt;}
.y5{bottom:934.373333pt;}
.y39{bottom:947.653333pt;}
.y4{bottom:961.733333pt;}
.y38{bottom:965.413333pt;}
.y37{bottom:983.013333pt;}
.y3{bottom:989.093333pt;}
.y36{bottom:1000.613333pt;}
.y2{bottom:1016.613333pt;}
.y35{bottom:1018.213333pt;}
.y34{bottom:1042.720000pt;}
.y1{bottom:1046.720000pt;}
.y33{bottom:1060.640000pt;}
.h8{height:30.982500pt;}
.h10{height:31.283750pt;}
.h6{height:37.479688pt;}
.ha{height:38.672812pt;}
.hd{height:43.108125pt;}
.h7{height:47.310625pt;}
.h9{height:47.621250pt;}
.hc{height:49.542500pt;}
.h5{height:52.785000pt;}
.h3{height:52.832812pt;}
.h2{height:60.057813pt;}
.hb{height:60.288750pt;}
.h4{height:67.128750pt;}
.he{height:254.266667pt;}
.h12{height:366.426667pt;}
.h11{height:414.466667pt;}
.hf{height:823.173333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:604.413333pt;}
.w4{width:604.613333pt;}
.w3{width:646.533333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:48.159988pt;}
.x8{left:55.039988pt;}
.xb{left:56.959988pt;}
.x3{left:66.079988pt;}
.xe{left:71.999988pt;}
.x4{left:78.111988pt;}
.xc{left:94.752000pt;}
.x2{left:96.031988pt;}
.x6{left:117.791988pt;}
.xd{left:136.666655pt;}
.x9{left:396.546655pt;}
.xa{left:416.573322pt;}
.x7{left:597.253333pt;}
.x5{left:639.333333pt;}
}




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