
    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_b6811dc3553d8f66f79dce94.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_5d4b710b4a00648a8e8d390d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.046387;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_02e6dbda5d3649234972adaf.woff')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_ef69099a48a109b678e1dba7.woff')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_29d9cd6fefe9fcb7f1856099.woff')format("woff");}.ff5{font-family:ff5;line-height:1.046387;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_b4d763750ec724037588bf06.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2b0f27d7bc1dfa1936d00f7e.woff')format("woff");}.ff7{font-family:ff7;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls16{letter-spacing:-1.440000px;}
.ls1b{letter-spacing:-1.134000px;}
.lsc{letter-spacing:-1.080000px;}
.lsd{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.305400px;}
.ls8{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.223800px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.008640px;}
.ls12{letter-spacing:0.080400px;}
.lsb{letter-spacing:0.106800px;}
.ls15{letter-spacing:0.109200px;}
.lsf{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.152400px;}
.ls2{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.259920px;}
.ls14{letter-spacing:0.262080px;}
.ls11{letter-spacing:0.262200px;}
.lse{letter-spacing:0.264960px;}
.ls5{letter-spacing:0.298800px;}
.ls13{letter-spacing:0.305400px;}
.ls4{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:4.320000px;}
.ls18{letter-spacing:18.000000px;}
.ls1a{letter-spacing:111.600000px;}
.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;}
}
.ws4{word-spacing:-19.440000px;}
.wsf{word-spacing:-18.144000px;}
.wse{word-spacing:-18.000000px;}
.ws12{word-spacing:-16.865400px;}
.wsd{word-spacing:-16.822200px;}
.ws11{word-spacing:-16.712400px;}
.ws10{word-spacing:-16.669200px;}
.wsb{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.254600px;}
.ws13{word-spacing:-15.840000px;}
.ws3{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.238800px;}
.ws7{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.580000px;}
.ws0{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.ws9{word-spacing:-10.980000px;}
.ws5{word-spacing:-10.440000px;}
.wsa{word-spacing:0.000000px;}
._1c{margin-left:-5.592000px;}
._18{margin-left:-4.402560px;}
._17{margin-left:-3.312000px;}
._d{margin-left:-2.304960px;}
._0{margin-left:-1.254240px;}
._2{width:1.247040px;}
._e{width:2.284320px;}
._9{width:3.286800px;}
._8{width:4.482000px;}
._3{width:6.282720px;}
._4{width:7.477920px;}
._12{width:8.971200px;}
._14{width:10.435920px;}
._13{width:11.485680px;}
._f{width:12.549600px;}
._c{width:13.633200px;}
._1e{width:14.639040px;}
._6{width:16.382160px;}
._5{width:17.569440px;}
._7{width:18.600240px;}
._10{width:19.959840px;}
._11{width:21.347520px;}
._16{width:23.245920px;}
._a{width:25.142160px;}
._b{width:26.543760px;}
._21{width:28.594080px;}
._15{width:30.337920px;}
._29{width:31.512960px;}
._19{width:32.523840px;}
._1a{width:33.959040px;}
._23{width:48.863520px;}
._24{width:50.090400px;}
._1b{width:105.840000px;}
._1d{width:111.600000px;}
._26{width:158.446080px;}
._27{width:160.404000px;}
._22{width:185.564160px;}
._1f{width:190.952640px;}
._20{width:199.560000px;}
._28{width:201.075840px;}
._25{width:649.562400px;}
._1{width:1240.288800px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(31,31,31);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y89{bottom:3.600000px;}
.y7e{bottom:3.780000px;}
.y2{bottom:6.840000px;}
.y8f{bottom:10.875000px;}
.y7a{bottom:13.140000px;}
.y93{bottom:13.290000px;}
.y9e{bottom:13.320000px;}
.y84{bottom:22.500000px;}
.y8c{bottom:22.680000px;}
.y7d{bottom:22.725000px;}
.y91{bottom:24.375000px;}
.y87{bottom:32.040000px;}
.y9c{bottom:32.220000px;}
.y78{bottom:32.265000px;}
.y8b{bottom:41.574000px;}
.y82{bottom:41.580000px;}
.y7c{bottom:41.625000px;}
.ya0{bottom:41.760000px;}
.y80{bottom:50.940000px;}
.y9d{bottom:51.120000px;}
.y79{bottom:51.165000px;}
.y4{bottom:55.440000px;}
.y8d{bottom:60.474000px;}
.y81{bottom:60.480000px;}
.y9f{bottom:60.660000px;}
.y7b{bottom:60.705000px;}
.y86{bottom:70.020000px;}
.ya7{bottom:70.200000px;}
.yc6{bottom:71.856000px;}
.y83{bottom:79.560000px;}
.y96{bottom:79.605000px;}
.y85{bottom:88.920000px;}
.ya4{bottom:89.100000px;}
.y88{bottom:98.460000px;}
.y95{bottom:98.505000px;}
.ya8{bottom:98.640000px;}
.y76{bottom:114.876000px;}
.y8a{bottom:115.596000px;}
.ya5{bottom:117.585000px;}
.yc4{bottom:123.516000px;}
.y3f{bottom:130.356000px;}
.y75{bottom:133.776000px;}
.yc3{bottom:142.596000px;}
.y3e{bottom:149.436000px;}
.y74{bottom:152.850000px;}
.yc2{bottom:161.490000px;}
.y3d{bottom:168.330000px;}
.y73{bottom:171.750000px;}
.yc1{bottom:180.570000px;}
.y3c{bottom:186.150000px;}
.y72{bottom:190.830000px;}
.y7f{bottom:196.770000px;}
.yc0{bottom:199.470000px;}
.y3b{bottom:200.010000px;}
.y71{bottom:209.730000px;}
.y3a{bottom:214.410000px;}
.ybf{bottom:218.370000px;}
.y70{bottom:228.630000px;}
.y39{bottom:231.690000px;}
.ybe{bottom:237.450000px;}
.y6f{bottom:247.710000px;}
.y38{bottom:248.970000px;}
.ybd{bottom:256.350000px;}
.y37{bottom:266.250000px;}
.y6e{bottom:266.610000px;}
.ybc{bottom:275.430000px;}
.y36{bottom:283.530000px;}
.y6d{bottom:285.690000px;}
.ybb{bottom:294.330000px;}
.y35{bottom:300.630000px;}
.y6c{bottom:304.590000px;}
.yba{bottom:313.230000px;}
.y77{bottom:315.750000px;}
.y34{bottom:317.910000px;}
.y6b{bottom:323.490000px;}
.yb9{bottom:332.310000px;}
.y33{bottom:335.190000px;}
.y6a{bottom:342.615000px;}
.yb8{bottom:351.255000px;}
.y32{bottom:352.515000px;}
.y69{bottom:361.515000px;}
.y31{bottom:369.795000px;}
.yb7{bottom:370.335000px;}
.y68{bottom:380.595000px;}
.y30{bottom:387.075000px;}
.yb6{bottom:389.235000px;}
.y67{bottom:399.495000px;}
.y2f{bottom:404.175000px;}
.yb5{bottom:408.135000px;}
.y66{bottom:418.575000px;}
.y2e{bottom:421.455000px;}
.yb4{bottom:427.215000px;}
.y65{bottom:437.475000px;}
.y2d{bottom:438.735000px;}
.yb3{bottom:446.115000px;}
.y2c{bottom:456.015000px;}
.y64{bottom:456.375000px;}
.yb2{bottom:465.195000px;}
.y2b{bottom:473.295000px;}
.y63{bottom:475.455000px;}
.yb1{bottom:484.095000px;}
.y2a{bottom:490.575000px;}
.y62{bottom:494.355000px;}
.yb0{bottom:502.995000px;}
.y29{bottom:507.675000px;}
.y61{bottom:513.435000px;}
.yaf{bottom:522.075000px;}
.y28{bottom:524.955000px;}
.y60{bottom:532.335000px;}
.yae{bottom:540.975000px;}
.y27{bottom:542.235000px;}
.y5f{bottom:551.235000px;}
.y26{bottom:559.515000px;}
.yad{bottom:560.055000px;}
.y5e{bottom:570.315000px;}
.y25{bottom:576.795000px;}
.yac{bottom:578.955000px;}
.y5d{bottom:589.215000px;}
.y24{bottom:594.075000px;}
.yab{bottom:597.855000px;}
.y5c{bottom:608.325000px;}
.y23{bottom:611.205000px;}
.yaa{bottom:616.965000px;}
.y5b{bottom:627.225000px;}
.y22{bottom:628.485000px;}
.ya9{bottom:635.865000px;}
.y21{bottom:645.765000px;}
.y5a{bottom:646.125000px;}
.ya6{bottom:655.305000px;}
.y20{bottom:663.045000px;}
.y59{bottom:665.205000px;}
.y1f{bottom:680.325000px;}
.y58{bottom:684.105000px;}
.y92{bottom:696.780000px;}
.y1e{bottom:697.425000px;}
.y57{bottom:703.185000px;}
.y1d{bottom:714.705000px;}
.y9a{bottom:721.905000px;}
.y56{bottom:722.085000px;}
.y1c{bottom:731.985000px;}
.y55{bottom:740.985000px;}
.y1b{bottom:749.265000px;}
.y99{bottom:756.645000px;}
.y54{bottom:760.065000px;}
.y90{bottom:760.860000px;}
.y1a{bottom:766.545000px;}
.ya3{bottom:774.465000px;}
.y53{bottom:778.965000px;}
.y19{bottom:783.825000px;}
.y98{bottom:791.745000px;}
.y52{bottom:798.045000px;}
.y18{bottom:800.925000px;}
.y51{bottom:816.945000px;}
.y17{bottom:818.205000px;}
.y97{bottom:825.945000px;}
.y94{bottom:833.505000px;}
.y16{bottom:835.485000px;}
.y50{bottom:835.845000px;}
.y8e{bottom:837.720000px;}
.y15{bottom:852.765000px;}
.y4f{bottom:854.925000px;}
.y14{bottom:870.045000px;}
.y4e{bottom:873.870000px;}
.y13{bottom:887.370000px;}
.y4d{bottom:892.950000px;}
.y12{bottom:904.470000px;}
.y4c{bottom:911.850000px;}
.ya2{bottom:912.570000px;}
.y11{bottom:922.290000px;}
.y4b{bottom:930.930000px;}
.y10{bottom:940.830000px;}
.y4a{bottom:949.830000px;}
.yf{bottom:957.930000px;}
.y49{bottom:968.730000px;}
.ye{bottom:975.750000px;}
.y48{bottom:987.810000px;}
.yd{bottom:994.650000px;}
.y47{bottom:1006.710000px;}
.ya1{bottom:1012.650000px;}
.yc{bottom:1014.090000px;}
.y46{bottom:1025.790000px;}
.yb{bottom:1036.590000px;}
.y45{bottom:1044.690000px;}
.ya{bottom:1057.290000px;}
.y44{bottom:1063.590000px;}
.y9{bottom:1071.870000px;}
.y9b{bottom:1074.750000px;}
.y43{bottom:1082.670000px;}
.y8{bottom:1089.150000px;}
.y42{bottom:1101.570000px;}
.y7{bottom:1106.430000px;}
.y41{bottom:1120.650000px;}
.y6{bottom:1123.530000px;}
.y40{bottom:1139.580000px;}
.y5{bottom:1140.840000px;}
.yc7{bottom:1141.200000px;}
.y3{bottom:1169.100000px;}
.yc5{bottom:1178.100000px;}
.y1{bottom:1183.140000px;}
.h1a{height:18.900000px;}
.h19{height:19.080000px;}
.h2{height:26.640000px;}
.he{height:34.036523px;}
.h7{height:36.344883px;}
.h5{height:40.066523px;}
.h6{height:42.164648px;}
.hc{height:45.024258px;}
.h9{height:46.736719px;}
.hd{height:49.255313px;}
.h4{height:49.634648px;}
.hf{height:49.906406px;}
.ha{height:53.224453px;}
.h3{height:54.246094px;}
.h12{height:54.596250px;}
.hb{height:55.016719px;}
.h1b{height:56.880000px;}
.h8{height:58.585781px;}
.h15{height:59.800781px;}
.h13{height:75.780000px;}
.h10{height:75.996000px;}
.h1c{height:94.860000px;}
.h17{height:100.080000px;}
.h11{height:113.760000px;}
.h18{height:113.796000px;}
.h1e{height:113.940000px;}
.h14{height:120.780000px;}
.h16{height:120.960000px;}
.h1d{height:132.876000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:19.620000px;}
.wc{width:20.700000px;}
.w5{width:22.320000px;}
.wd{width:23.040000px;}
.w2{width:53.100000px;}
.w6{width:84.060000px;}
.w7{width:121.536000px;}
.w8{width:126.936000px;}
.wa{width:152.310000px;}
.w9{width:153.900000px;}
.we{width:375.195000px;}
.wf{width:378.075000px;}
.w10{width:378.255000px;}
.w3{width:619.305000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:1.080000px;}
.x1d{left:4.140000px;}
.x17{left:6.300000px;}
.x2{left:8.640000px;}
.x25{left:10.800000px;}
.x14{left:14.040000px;}
.x21{left:16.815000px;}
.x1c{left:25.560000px;}
.x1a{left:28.980000px;}
.x19{left:32.220000px;}
.x16{left:34.020000px;}
.x18{left:40.140000px;}
.x1e{left:59.400000px;}
.x2b{left:79.380000px;}
.x23{left:88.020000px;}
.x27{left:89.640000px;}
.x24{left:97.920000px;}
.x2e{left:106.235987px;}
.x4{left:108.035987px;}
.xd{left:109.475987px;}
.x1{left:116.136000px;}
.x10{left:121.895987px;}
.x28{left:128.520000px;}
.x13{left:135.036000px;}
.x2c{left:144.035987px;}
.x2d{left:150.509987px;}
.x7{left:153.749987px;}
.xc{left:162.029987px;}
.x6{left:164.729987px;}
.xe{left:166.169987px;}
.x3{left:169.230000px;}
.x9{left:180.749987px;}
.x15{left:221.430000px;}
.xa{left:227.909987px;}
.x20{left:243.900000px;}
.xf{left:274.529987px;}
.x2a{left:289.695000px;}
.x29{left:292.935000px;}
.x26{left:295.275000px;}
.x22{left:300.855000px;}
.x8{left:330.914987px;}
.x11{left:346.214987px;}
.xb{left:420.194987px;}
.x5{left:446.474987px;}
.x1b{left:474.405000px;}
.x1f{left:630.465000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls16{letter-spacing:-1.280000pt;}
.ls1b{letter-spacing:-1.008000pt;}
.lsc{letter-spacing:-0.960000pt;}
.lsd{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.271467pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.198933pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.007680pt;}
.ls12{letter-spacing:0.071467pt;}
.lsb{letter-spacing:0.094933pt;}
.ls15{letter-spacing:0.097067pt;}
.lsf{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.135467pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.231040pt;}
.ls14{letter-spacing:0.232960pt;}
.ls11{letter-spacing:0.233067pt;}
.lse{letter-spacing:0.235520pt;}
.ls5{letter-spacing:0.265600pt;}
.ls13{letter-spacing:0.271467pt;}
.ls4{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:3.840000pt;}
.ls18{letter-spacing:16.000000pt;}
.ls1a{letter-spacing:99.200000pt;}
.ws4{word-spacing:-17.280000pt;}
.wsf{word-spacing:-16.128000pt;}
.wse{word-spacing:-16.000000pt;}
.ws12{word-spacing:-14.991467pt;}
.wsd{word-spacing:-14.953067pt;}
.ws11{word-spacing:-14.855467pt;}
.ws10{word-spacing:-14.817067pt;}
.wsb{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.448533pt;}
.ws13{word-spacing:-14.080000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.960000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws9{word-spacing:-9.760000pt;}
.ws5{word-spacing:-9.280000pt;}
.wsa{word-spacing:0.000000pt;}
._1c{margin-left:-4.970667pt;}
._18{margin-left:-3.913387pt;}
._17{margin-left:-2.944000pt;}
._d{margin-left:-2.048853pt;}
._0{margin-left:-1.114880pt;}
._2{width:1.108480pt;}
._e{width:2.030507pt;}
._9{width:2.921600pt;}
._8{width:3.984000pt;}
._3{width:5.584640pt;}
._4{width:6.647040pt;}
._12{width:7.974400pt;}
._14{width:9.276373pt;}
._13{width:10.209493pt;}
._f{width:11.155200pt;}
._c{width:12.118400pt;}
._1e{width:13.012480pt;}
._6{width:14.561920pt;}
._5{width:15.617280pt;}
._7{width:16.533547pt;}
._10{width:17.742080pt;}
._11{width:18.975573pt;}
._16{width:20.663040pt;}
._a{width:22.348587pt;}
._b{width:23.594453pt;}
._21{width:25.416960pt;}
._15{width:26.967040pt;}
._29{width:28.011520pt;}
._19{width:28.910080pt;}
._1a{width:30.185813pt;}
._23{width:43.434240pt;}
._24{width:44.524800pt;}
._1b{width:94.080000pt;}
._1d{width:99.200000pt;}
._26{width:140.840960pt;}
._27{width:142.581333pt;}
._22{width:164.945920pt;}
._1f{width:169.735680pt;}
._20{width:177.386667pt;}
._28{width:178.734080pt;}
._25{width:577.388800pt;}
._1{width:1102.478933pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:3.200000pt;}
.y7e{bottom:3.360000pt;}
.y2{bottom:6.080000pt;}
.y8f{bottom:9.666667pt;}
.y7a{bottom:11.680000pt;}
.y93{bottom:11.813333pt;}
.y9e{bottom:11.840000pt;}
.y84{bottom:20.000000pt;}
.y8c{bottom:20.160000pt;}
.y7d{bottom:20.200000pt;}
.y91{bottom:21.666667pt;}
.y87{bottom:28.480000pt;}
.y9c{bottom:28.640000pt;}
.y78{bottom:28.680000pt;}
.y8b{bottom:36.954667pt;}
.y82{bottom:36.960000pt;}
.y7c{bottom:37.000000pt;}
.ya0{bottom:37.120000pt;}
.y80{bottom:45.280000pt;}
.y9d{bottom:45.440000pt;}
.y79{bottom:45.480000pt;}
.y4{bottom:49.280000pt;}
.y8d{bottom:53.754667pt;}
.y81{bottom:53.760000pt;}
.y9f{bottom:53.920000pt;}
.y7b{bottom:53.960000pt;}
.y86{bottom:62.240000pt;}
.ya7{bottom:62.400000pt;}
.yc6{bottom:63.872000pt;}
.y83{bottom:70.720000pt;}
.y96{bottom:70.760000pt;}
.y85{bottom:79.040000pt;}
.ya4{bottom:79.200000pt;}
.y88{bottom:87.520000pt;}
.y95{bottom:87.560000pt;}
.ya8{bottom:87.680000pt;}
.y76{bottom:102.112000pt;}
.y8a{bottom:102.752000pt;}
.ya5{bottom:104.520000pt;}
.yc4{bottom:109.792000pt;}
.y3f{bottom:115.872000pt;}
.y75{bottom:118.912000pt;}
.yc3{bottom:126.752000pt;}
.y3e{bottom:132.832000pt;}
.y74{bottom:135.866667pt;}
.yc2{bottom:143.546667pt;}
.y3d{bottom:149.626667pt;}
.y73{bottom:152.666667pt;}
.yc1{bottom:160.506667pt;}
.y3c{bottom:165.466667pt;}
.y72{bottom:169.626667pt;}
.y7f{bottom:174.906667pt;}
.yc0{bottom:177.306667pt;}
.y3b{bottom:177.786667pt;}
.y71{bottom:186.426667pt;}
.y3a{bottom:190.586667pt;}
.ybf{bottom:194.106667pt;}
.y70{bottom:203.226667pt;}
.y39{bottom:205.946667pt;}
.ybe{bottom:211.066667pt;}
.y6f{bottom:220.186667pt;}
.y38{bottom:221.306667pt;}
.ybd{bottom:227.866667pt;}
.y37{bottom:236.666667pt;}
.y6e{bottom:236.986667pt;}
.ybc{bottom:244.826667pt;}
.y36{bottom:252.026667pt;}
.y6d{bottom:253.946667pt;}
.ybb{bottom:261.626667pt;}
.y35{bottom:267.226667pt;}
.y6c{bottom:270.746667pt;}
.yba{bottom:278.426667pt;}
.y77{bottom:280.666667pt;}
.y34{bottom:282.586667pt;}
.y6b{bottom:287.546667pt;}
.yb9{bottom:295.386667pt;}
.y33{bottom:297.946667pt;}
.y6a{bottom:304.546667pt;}
.yb8{bottom:312.226667pt;}
.y32{bottom:313.346667pt;}
.y69{bottom:321.346667pt;}
.y31{bottom:328.706667pt;}
.yb7{bottom:329.186667pt;}
.y68{bottom:338.306667pt;}
.y30{bottom:344.066667pt;}
.yb6{bottom:345.986667pt;}
.y67{bottom:355.106667pt;}
.y2f{bottom:359.266667pt;}
.yb5{bottom:362.786667pt;}
.y66{bottom:372.066667pt;}
.y2e{bottom:374.626667pt;}
.yb4{bottom:379.746667pt;}
.y65{bottom:388.866667pt;}
.y2d{bottom:389.986667pt;}
.yb3{bottom:396.546667pt;}
.y2c{bottom:405.346667pt;}
.y64{bottom:405.666667pt;}
.yb2{bottom:413.506667pt;}
.y2b{bottom:420.706667pt;}
.y63{bottom:422.626667pt;}
.yb1{bottom:430.306667pt;}
.y2a{bottom:436.066667pt;}
.y62{bottom:439.426667pt;}
.yb0{bottom:447.106667pt;}
.y29{bottom:451.266667pt;}
.y61{bottom:456.386667pt;}
.yaf{bottom:464.066667pt;}
.y28{bottom:466.626667pt;}
.y60{bottom:473.186667pt;}
.yae{bottom:480.866667pt;}
.y27{bottom:481.986667pt;}
.y5f{bottom:489.986667pt;}
.y26{bottom:497.346667pt;}
.yad{bottom:497.826667pt;}
.y5e{bottom:506.946667pt;}
.y25{bottom:512.706667pt;}
.yac{bottom:514.626667pt;}
.y5d{bottom:523.746667pt;}
.y24{bottom:528.066667pt;}
.yab{bottom:531.426667pt;}
.y5c{bottom:540.733333pt;}
.y23{bottom:543.293333pt;}
.yaa{bottom:548.413333pt;}
.y5b{bottom:557.533333pt;}
.y22{bottom:558.653333pt;}
.ya9{bottom:565.213333pt;}
.y21{bottom:574.013333pt;}
.y5a{bottom:574.333333pt;}
.ya6{bottom:582.493333pt;}
.y20{bottom:589.373333pt;}
.y59{bottom:591.293333pt;}
.y1f{bottom:604.733333pt;}
.y58{bottom:608.093333pt;}
.y92{bottom:619.360000pt;}
.y1e{bottom:619.933333pt;}
.y57{bottom:625.053333pt;}
.y1d{bottom:635.293333pt;}
.y9a{bottom:641.693333pt;}
.y56{bottom:641.853333pt;}
.y1c{bottom:650.653333pt;}
.y55{bottom:658.653333pt;}
.y1b{bottom:666.013333pt;}
.y99{bottom:672.573333pt;}
.y54{bottom:675.613333pt;}
.y90{bottom:676.320000pt;}
.y1a{bottom:681.373333pt;}
.ya3{bottom:688.413333pt;}
.y53{bottom:692.413333pt;}
.y19{bottom:696.733333pt;}
.y98{bottom:703.773333pt;}
.y52{bottom:709.373333pt;}
.y18{bottom:711.933333pt;}
.y51{bottom:726.173333pt;}
.y17{bottom:727.293333pt;}
.y97{bottom:734.173333pt;}
.y94{bottom:740.893333pt;}
.y16{bottom:742.653333pt;}
.y50{bottom:742.973333pt;}
.y8e{bottom:744.640000pt;}
.y15{bottom:758.013333pt;}
.y4f{bottom:759.933333pt;}
.y14{bottom:773.373333pt;}
.y4e{bottom:776.773333pt;}
.y13{bottom:788.773333pt;}
.y4d{bottom:793.733333pt;}
.y12{bottom:803.973333pt;}
.y4c{bottom:810.533333pt;}
.ya2{bottom:811.173333pt;}
.y11{bottom:819.813333pt;}
.y4b{bottom:827.493333pt;}
.y10{bottom:836.293333pt;}
.y4a{bottom:844.293333pt;}
.yf{bottom:851.493333pt;}
.y49{bottom:861.093333pt;}
.ye{bottom:867.333333pt;}
.y48{bottom:878.053333pt;}
.yd{bottom:884.133333pt;}
.y47{bottom:894.853333pt;}
.ya1{bottom:900.133333pt;}
.yc{bottom:901.413333pt;}
.y46{bottom:911.813333pt;}
.yb{bottom:921.413333pt;}
.y45{bottom:928.613333pt;}
.ya{bottom:939.813333pt;}
.y44{bottom:945.413333pt;}
.y9{bottom:952.773333pt;}
.y9b{bottom:955.333333pt;}
.y43{bottom:962.373333pt;}
.y8{bottom:968.133333pt;}
.y42{bottom:979.173333pt;}
.y7{bottom:983.493333pt;}
.y41{bottom:996.133333pt;}
.y6{bottom:998.693333pt;}
.y40{bottom:1012.960000pt;}
.y5{bottom:1014.080000pt;}
.yc7{bottom:1014.400000pt;}
.y3{bottom:1039.200000pt;}
.yc5{bottom:1047.200000pt;}
.y1{bottom:1051.680000pt;}
.h1a{height:16.800000pt;}
.h19{height:16.960000pt;}
.h2{height:23.680000pt;}
.he{height:30.254687pt;}
.h7{height:32.306562pt;}
.h5{height:35.614687pt;}
.h6{height:37.479688pt;}
.hc{height:40.021563pt;}
.h9{height:41.543750pt;}
.hd{height:43.782500pt;}
.h4{height:44.119688pt;}
.hf{height:44.361250pt;}
.ha{height:47.310625pt;}
.h3{height:48.218750pt;}
.h12{height:48.530000pt;}
.hb{height:48.903750pt;}
.h1b{height:50.560000pt;}
.h8{height:52.076250pt;}
.h15{height:53.156250pt;}
.h13{height:67.360000pt;}
.h10{height:67.552000pt;}
.h1c{height:84.320000pt;}
.h17{height:88.960000pt;}
.h11{height:101.120000pt;}
.h18{height:101.152000pt;}
.h1e{height:101.280000pt;}
.h14{height:107.360000pt;}
.h16{height:107.520000pt;}
.h1d{height:118.112000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:17.440000pt;}
.wc{width:18.400000pt;}
.w5{width:19.840000pt;}
.wd{width:20.480000pt;}
.w2{width:47.200000pt;}
.w6{width:74.720000pt;}
.w7{width:108.032000pt;}
.w8{width:112.832000pt;}
.wa{width:135.386667pt;}
.w9{width:136.800000pt;}
.we{width:333.506667pt;}
.wf{width:336.066667pt;}
.w10{width:336.226667pt;}
.w3{width:550.493333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:0.960000pt;}
.x1d{left:3.680000pt;}
.x17{left:5.600000pt;}
.x2{left:7.680000pt;}
.x25{left:9.600000pt;}
.x14{left:12.480000pt;}
.x21{left:14.946667pt;}
.x1c{left:22.720000pt;}
.x1a{left:25.760000pt;}
.x19{left:28.640000pt;}
.x16{left:30.240000pt;}
.x18{left:35.680000pt;}
.x1e{left:52.800000pt;}
.x2b{left:70.560000pt;}
.x23{left:78.240000pt;}
.x27{left:79.680000pt;}
.x24{left:87.040000pt;}
.x2e{left:94.431988pt;}
.x4{left:96.031988pt;}
.xd{left:97.311988pt;}
.x1{left:103.232000pt;}
.x10{left:108.351988pt;}
.x28{left:114.240000pt;}
.x13{left:120.032000pt;}
.x2c{left:128.031988pt;}
.x2d{left:133.786655pt;}
.x7{left:136.666655pt;}
.xc{left:144.026655pt;}
.x6{left:146.426655pt;}
.xe{left:147.706655pt;}
.x3{left:150.426667pt;}
.x9{left:160.666655pt;}
.x15{left:196.826667pt;}
.xa{left:202.586655pt;}
.x20{left:216.800000pt;}
.xf{left:244.026655pt;}
.x2a{left:257.506667pt;}
.x29{left:260.386667pt;}
.x26{left:262.466667pt;}
.x22{left:267.426667pt;}
.x8{left:294.146655pt;}
.x11{left:307.746655pt;}
.xb{left:373.506655pt;}
.x5{left:396.866655pt;}
.x1b{left:421.693333pt;}
.x1f{left:560.413333pt;}
}




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