
    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_1d54ca81bb7cb8d9ebcd063e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_1d3b4684491b4cad5ad800b4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_1f15c166ae954f61c4759294.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_5bde9a3cb2cf279b79b589f3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2ee0086a9190071aa5578f94.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_ff41b45b72564ba3bdda98a1.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;}
.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);}
.v4{vertical-align:-59.760000px;}
.v3{vertical-align:-56.880000px;}
.v1{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.ls1d{letter-spacing:-1.854000px;}
.ls28{letter-spacing:-1.746000px;}
.ls27{letter-spacing:-1.710000px;}
.ls3b{letter-spacing:-1.668000px;}
.ls20{letter-spacing:-1.584000px;}
.ls3c{letter-spacing:-1.440000px;}
.ls3a{letter-spacing:-1.332000px;}
.ls29{letter-spacing:-1.326000px;}
.ls38{letter-spacing:-0.876000px;}
.ls39{letter-spacing:-0.786000px;}
.ls1e{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.612000px;}
.ls44{letter-spacing:-0.540000px;}
.ls33{letter-spacing:-0.535800px;}
.ls13{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.305400px;}
.ls34{letter-spacing:-0.270600px;}
.ls11{letter-spacing:-0.269400px;}
.ls16{letter-spacing:-0.252000px;}
.ls17{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.213000px;}
.ls35{letter-spacing:-0.158400px;}
.ls1b{letter-spacing:-0.126600px;}
.ls18{letter-spacing:-0.108000px;}
.ls15{letter-spacing:-0.054000px;}
.ls10{letter-spacing:-0.053280px;}
.lse{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.018000px;}
.ls42{letter-spacing:0.090000px;}
.lsf{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.108000px;}
.ls3d{letter-spacing:0.123600px;}
.ls19{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.206400px;}
.lsc{letter-spacing:0.262080px;}
.ls12{letter-spacing:0.269400px;}
.ls2a{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls43{letter-spacing:0.378000px;}
.ls37{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.900000px;}
.ls21{letter-spacing:4.320000px;}
.ls2d{letter-spacing:5.040000px;}
.ls40{letter-spacing:5.220000px;}
.ls2e{letter-spacing:6.480000px;}
.ls2b{letter-spacing:7.200000px;}
.ls9{letter-spacing:8.820000px;}
.ls41{letter-spacing:10.260000px;}
.ls6{letter-spacing:11.676000px;}
.ls5{letter-spacing:11.700000px;}
.ls36{letter-spacing:13.680000px;}
.ls23{letter-spacing:15.120000px;}
.ls26{letter-spacing:18.000000px;}
.lsb{letter-spacing:18.720000px;}
.ls22{letter-spacing:23.040000px;}
.ls8{letter-spacing:23.940000px;}
.ls31{letter-spacing:25.920000px;}
.ls25{letter-spacing:26.640000px;}
.lsd{letter-spacing:28.800000px;}
.ls32{letter-spacing:33.960000px;}
.ls2c{letter-spacing:38.880000px;}
.ls3e{letter-spacing:50.400000px;}
.ls1c{letter-spacing:52.020000px;}
.ls2f{letter-spacing:56.160000px;}
.ls30{letter-spacing:56.880000px;}
.ls24{letter-spacing:80.100000px;}
.lsa{letter-spacing:214.020000px;}
.ls3f{letter-spacing:444.240000px;}
.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;}
}
.ws21{word-spacing:-16.683600px;}
.ws13{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.433400px;}
.ws19{word-spacing:-16.401600px;}
.ws5{word-spacing:-16.347000px;}
.ws18{word-spacing:-16.289400px;}
.ws10{word-spacing:-16.254600px;}
.ws17{word-spacing:-16.024200px;}
.ws1d{word-spacing:-15.948000px;}
.ws1a{word-spacing:-15.840000px;}
.ws1c{word-spacing:-15.774000px;}
.ws1b{word-spacing:-15.684000px;}
.ws0{word-spacing:-15.300000px;}
.ws1e{word-spacing:-15.228000px;}
.ws20{word-spacing:-15.120000px;}
.ws14{word-spacing:-14.976000px;}
.ws1f{word-spacing:-14.892000px;}
.ws15{word-spacing:-14.850000px;}
.ws16{word-spacing:-14.814000px;}
.ws23{word-spacing:-14.400000px;}
.ws9{word-spacing:-13.860000px;}
.wsf{word-spacing:-13.644000px;}
.ws8{word-spacing:-13.608000px;}
.ws22{word-spacing:-13.590000px;}
.wsa{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.446000px;}
.wse{word-spacing:-13.392000px;}
.wsd{word-spacing:-13.284000px;}
.wsc{word-spacing:-13.248000px;}
.ws2{word-spacing:-12.420000px;}
.ws3{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.790600px;}
.ws4{word-spacing:-11.700000px;}
.ws7{word-spacing:-9.360000px;}
.ws6{word-spacing:-9.000000px;}
.ws12{word-spacing:0.000000px;}
._2e{margin-left:-23.209200px;}
._14{margin-left:-3.643200px;}
._13{margin-left:-2.384640px;}
._1{margin-left:-1.077360px;}
._0{width:1.180080px;}
._2{width:2.193120px;}
._7{width:3.404640px;}
._5{width:4.692720px;}
._4{width:5.724000px;}
._1d{width:7.414080px;}
._c{width:9.090000px;}
._6{width:10.530000px;}
._3{width:11.715360px;}
._17{width:12.850560px;}
._1f{width:13.956240px;}
._8{width:15.071280px;}
._9{width:16.496880px;}
._d{width:18.083520px;}
._26{width:19.143360px;}
._35{width:20.206320px;}
._18{width:21.255600px;}
._b{width:22.794000px;}
._a{width:24.150000px;}
._1e{width:25.226400px;}
._38{width:26.735040px;}
._f{width:27.887040px;}
._10{width:28.946880px;}
._31{width:30.222960px;}
._19{width:31.530240px;}
._34{width:32.541360px;}
._16{width:34.024800px;}
._15{width:35.305920px;}
._1a{width:36.415920px;}
._3b{width:37.602000px;}
._33{width:38.885760px;}
._3d{width:40.936320px;}
._32{width:43.784640px;}
._22{width:45.705600px;}
._23{width:46.897920px;}
._3a{width:48.155760px;}
._20{width:49.216320px;}
._24{width:51.004800px;}
._2c{width:52.894560px;}
._2b{width:54.616800px;}
._37{width:56.814000px;}
._36{width:58.026240px;}
._3c{width:59.177280px;}
._1b{width:60.257280px;}
._1c{width:61.934400px;}
._12{width:63.423360px;}
._11{width:64.552320px;}
._39{width:66.504960px;}
._27{width:68.160960px;}
._2d{width:69.750720px;}
._e{width:77.898240px;}
._28{width:79.686720px;}
._25{width:83.992320px;}
._21{width:87.503040px;}
._2a{width:89.075280px;}
._29{width:90.602640px;}
._2f{width:119.960640px;}
._30{width:122.014080px;}
.fc1{color:rgb(238,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:12.240000px;}
.fs6{font-size:36.000000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:56.880000px;}
.y54{bottom:90.360000px;}
.y2d{bottom:97.380000px;}
.y53{bottom:109.476000px;}
.y2c{bottom:116.316000px;}
.y52{bottom:128.376000px;}
.y2b{bottom:135.396000px;}
.y51{bottom:147.456000px;}
.y2a{bottom:154.290000px;}
.y50{bottom:166.350000px;}
.y29{bottom:173.190000px;}
.y4f{bottom:185.250000px;}
.y28{bottom:192.270000px;}
.y4e{bottom:204.330000px;}
.y27{bottom:211.170000px;}
.y4d{bottom:223.230000px;}
.y26{bottom:230.250000px;}
.y4c{bottom:242.310000px;}
.y25{bottom:249.150000px;}
.y4b{bottom:261.210000px;}
.y24{bottom:268.050000px;}
.y4a{bottom:280.155000px;}
.y49{bottom:299.235000px;}
.y23{bottom:300.135000px;}
.y22{bottom:315.795000px;}
.y48{bottom:318.135000px;}
.y21{bottom:331.275000px;}
.y47{bottom:337.215000px;}
.y20{bottom:346.755000px;}
.y46{bottom:356.115000px;}
.y1f{bottom:362.235000px;}
.y45{bottom:375.195000px;}
.y1e{bottom:377.895000px;}
.y1d{bottom:393.375000px;}
.y44{bottom:394.095000px;}
.y1c{bottom:408.855000px;}
.y43{bottom:412.995000px;}
.y1b{bottom:424.335000px;}
.y42{bottom:432.075000px;}
.y1a{bottom:439.995000px;}
.y41{bottom:450.975000px;}
.y19{bottom:455.505000px;}
.y65{bottom:456.765000px;}
.y40{bottom:470.085000px;}
.y64{bottom:470.625000px;}
.y18{bottom:470.985000px;}
.y63{bottom:485.025000px;}
.y17{bottom:486.465000px;}
.y3f{bottom:488.985000px;}
.y16{bottom:501.945000px;}
.y62{bottom:502.305000px;}
.y3e{bottom:507.885000px;}
.y15{bottom:517.605000px;}
.y61{bottom:519.225000px;}
.y3d{bottom:526.965000px;}
.y14{bottom:533.085000px;}
.y60{bottom:534.885000px;}
.y3c{bottom:545.865000px;}
.y13{bottom:548.565000px;}
.y5f{bottom:550.365000px;}
.y12{bottom:564.045000px;}
.y3b{bottom:564.945000px;}
.y5e{bottom:565.845000px;}
.y11{bottom:579.705000px;}
.y5d{bottom:581.325000px;}
.y3a{bottom:583.845000px;}
.y5c{bottom:596.985000px;}
.y10{bottom:599.685000px;}
.y39{bottom:602.745000px;}
.y5b{bottom:612.465000px;}
.yf{bottom:615.165000px;}
.y38{bottom:621.825000px;}
.ye{bottom:626.145000px;}
.y5a{bottom:627.945000px;}
.y37{bottom:640.770000px;}
.yd{bottom:641.850000px;}
.y59{bottom:643.470000px;}
.yc{bottom:657.330000px;}
.y58{bottom:658.950000px;}
.y36{bottom:659.850000px;}
.y57{bottom:674.610000px;}
.yb{bottom:677.310000px;}
.y35{bottom:678.750000px;}
.ya{bottom:688.290000px;}
.y56{bottom:690.090000px;}
.y34{bottom:697.650000px;}
.y9{bottom:704.670000px;}
.y55{bottom:705.570000px;}
.y33{bottom:716.730000px;}
.y8{bottom:723.570000px;}
.y32{bottom:735.630000px;}
.y7{bottom:742.650000px;}
.y31{bottom:754.710000px;}
.y6{bottom:761.550000px;}
.y30{bottom:773.610000px;}
.y5{bottom:777.570000px;}
.y4{bottom:782.790000px;}
.y2f{bottom:792.690000px;}
.y3{bottom:796.650000px;}
.y2e{bottom:824.580000px;}
.y1{bottom:825.840000px;}
.h5{height:12.335625px;}
.h9{height:36.281250px;}
.hb{height:39.049805px;}
.h4{height:47.344922px;}
.hd{height:47.901094px;}
.h8{height:52.998047px;}
.ha{height:54.421875px;}
.he{height:58.621992px;}
.h6{height:58.833281px;}
.h2{height:60.226875px;}
.hc{height:65.010937px;}
.h7{height:66.757500px;}
.h3{height:70.664062px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w2{width:629.459991px;}
.w0{width:629.460000px;}
.x0{left:0.000000px;}
.x3{left:84.995991px;}
.x1{left:98.855991px;}
.x4{left:114.695991px;}
.x8{left:131.795991px;}
.x9{left:136.295991px;}
.x7{left:217.334991px;}
.x5{left:247.394991px;}
.xa{left:267.914991px;}
.x2{left:301.214991px;}
.x6{left:314.714991px;}
.xb{left:329.654991px;}
@media print{
.v4{vertical-align:-53.120000pt;}
.v3{vertical-align:-50.560000pt;}
.v1{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.ls1d{letter-spacing:-1.648000pt;}
.ls28{letter-spacing:-1.552000pt;}
.ls27{letter-spacing:-1.520000pt;}
.ls3b{letter-spacing:-1.482667pt;}
.ls20{letter-spacing:-1.408000pt;}
.ls3c{letter-spacing:-1.280000pt;}
.ls3a{letter-spacing:-1.184000pt;}
.ls29{letter-spacing:-1.178667pt;}
.ls38{letter-spacing:-0.778667pt;}
.ls39{letter-spacing:-0.698667pt;}
.ls1e{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.544000pt;}
.ls44{letter-spacing:-0.480000pt;}
.ls33{letter-spacing:-0.476267pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.271467pt;}
.ls34{letter-spacing:-0.240533pt;}
.ls11{letter-spacing:-0.239467pt;}
.ls16{letter-spacing:-0.224000pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.189333pt;}
.ls35{letter-spacing:-0.140800pt;}
.ls1b{letter-spacing:-0.112533pt;}
.ls18{letter-spacing:-0.096000pt;}
.ls15{letter-spacing:-0.048000pt;}
.ls10{letter-spacing:-0.047360pt;}
.lse{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.016000pt;}
.ls42{letter-spacing:0.080000pt;}
.lsf{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.096000pt;}
.ls3d{letter-spacing:0.109867pt;}
.ls19{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.183467pt;}
.lsc{letter-spacing:0.232960pt;}
.ls12{letter-spacing:0.239467pt;}
.ls2a{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls43{letter-spacing:0.336000pt;}
.ls37{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.800000pt;}
.ls21{letter-spacing:3.840000pt;}
.ls2d{letter-spacing:4.480000pt;}
.ls40{letter-spacing:4.640000pt;}
.ls2e{letter-spacing:5.760000pt;}
.ls2b{letter-spacing:6.400000pt;}
.ls9{letter-spacing:7.840000pt;}
.ls41{letter-spacing:9.120000pt;}
.ls6{letter-spacing:10.378667pt;}
.ls5{letter-spacing:10.400000pt;}
.ls36{letter-spacing:12.160000pt;}
.ls23{letter-spacing:13.440000pt;}
.ls26{letter-spacing:16.000000pt;}
.lsb{letter-spacing:16.640000pt;}
.ls22{letter-spacing:20.480000pt;}
.ls8{letter-spacing:21.280000pt;}
.ls31{letter-spacing:23.040000pt;}
.ls25{letter-spacing:23.680000pt;}
.lsd{letter-spacing:25.600000pt;}
.ls32{letter-spacing:30.186667pt;}
.ls2c{letter-spacing:34.560000pt;}
.ls3e{letter-spacing:44.800000pt;}
.ls1c{letter-spacing:46.240000pt;}
.ls2f{letter-spacing:49.920000pt;}
.ls30{letter-spacing:50.560000pt;}
.ls24{letter-spacing:71.200000pt;}
.lsa{letter-spacing:190.240000pt;}
.ls3f{letter-spacing:394.880000pt;}
.ws21{word-spacing:-14.829867pt;}
.ws13{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.607467pt;}
.ws19{word-spacing:-14.579200pt;}
.ws5{word-spacing:-14.530667pt;}
.ws18{word-spacing:-14.479467pt;}
.ws10{word-spacing:-14.448533pt;}
.ws17{word-spacing:-14.243733pt;}
.ws1d{word-spacing:-14.176000pt;}
.ws1a{word-spacing:-14.080000pt;}
.ws1c{word-spacing:-14.021333pt;}
.ws1b{word-spacing:-13.941333pt;}
.ws0{word-spacing:-13.600000pt;}
.ws1e{word-spacing:-13.536000pt;}
.ws20{word-spacing:-13.440000pt;}
.ws14{word-spacing:-13.312000pt;}
.ws1f{word-spacing:-13.237333pt;}
.ws15{word-spacing:-13.200000pt;}
.ws16{word-spacing:-13.168000pt;}
.ws23{word-spacing:-12.800000pt;}
.ws9{word-spacing:-12.320000pt;}
.wsf{word-spacing:-12.128000pt;}
.ws8{word-spacing:-12.096000pt;}
.ws22{word-spacing:-12.080000pt;}
.wsa{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.952000pt;}
.wse{word-spacing:-11.904000pt;}
.wsd{word-spacing:-11.808000pt;}
.wsc{word-spacing:-11.776000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.480533pt;}
.ws4{word-spacing:-10.400000pt;}
.ws7{word-spacing:-8.320000pt;}
.ws6{word-spacing:-8.000000pt;}
.ws12{word-spacing:0.000000pt;}
._2e{margin-left:-20.630400pt;}
._14{margin-left:-3.238400pt;}
._13{margin-left:-2.119680pt;}
._1{margin-left:-0.957653pt;}
._0{width:1.048960pt;}
._2{width:1.949440pt;}
._7{width:3.026347pt;}
._5{width:4.171307pt;}
._4{width:5.088000pt;}
._1d{width:6.590293pt;}
._c{width:8.080000pt;}
._6{width:9.360000pt;}
._3{width:10.413653pt;}
._17{width:11.422720pt;}
._1f{width:12.405547pt;}
._8{width:13.396693pt;}
._9{width:14.663893pt;}
._d{width:16.074240pt;}
._26{width:17.016320pt;}
._35{width:17.961173pt;}
._18{width:18.893867pt;}
._b{width:20.261333pt;}
._a{width:21.466667pt;}
._1e{width:22.423467pt;}
._38{width:23.764480pt;}
._f{width:24.788480pt;}
._10{width:25.730560pt;}
._31{width:26.864853pt;}
._19{width:28.026880pt;}
._34{width:28.925653pt;}
._16{width:30.244267pt;}
._15{width:31.383040pt;}
._1a{width:32.369707pt;}
._3b{width:33.424000pt;}
._33{width:34.565120pt;}
._3d{width:36.387840pt;}
._32{width:38.919680pt;}
._22{width:40.627200pt;}
._23{width:41.687040pt;}
._3a{width:42.805120pt;}
._20{width:43.747840pt;}
._24{width:45.337600pt;}
._2c{width:47.017387pt;}
._2b{width:48.548267pt;}
._37{width:50.501333pt;}
._36{width:51.578880pt;}
._3c{width:52.602027pt;}
._1b{width:53.562027pt;}
._1c{width:55.052800pt;}
._12{width:56.376320pt;}
._11{width:57.379840pt;}
._39{width:59.115520pt;}
._27{width:60.587520pt;}
._2d{width:62.000640pt;}
._e{width:69.242880pt;}
._28{width:70.832640pt;}
._25{width:74.659840pt;}
._21{width:77.780480pt;}
._2a{width:79.178027pt;}
._29{width:80.535680pt;}
._2f{width:106.631680pt;}
._30{width:108.456960pt;}
.fs3{font-size:10.880000pt;}
.fs6{font-size:32.000000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:50.560000pt;}
.y54{bottom:80.320000pt;}
.y2d{bottom:86.560000pt;}
.y53{bottom:97.312000pt;}
.y2c{bottom:103.392000pt;}
.y52{bottom:114.112000pt;}
.y2b{bottom:120.352000pt;}
.y51{bottom:131.072000pt;}
.y2a{bottom:137.146667pt;}
.y50{bottom:147.866667pt;}
.y29{bottom:153.946667pt;}
.y4f{bottom:164.666667pt;}
.y28{bottom:170.906667pt;}
.y4e{bottom:181.626667pt;}
.y27{bottom:187.706667pt;}
.y4d{bottom:198.426667pt;}
.y26{bottom:204.666667pt;}
.y4c{bottom:215.386667pt;}
.y25{bottom:221.466667pt;}
.y4b{bottom:232.186667pt;}
.y24{bottom:238.266667pt;}
.y4a{bottom:249.026667pt;}
.y49{bottom:265.986667pt;}
.y23{bottom:266.786667pt;}
.y22{bottom:280.706667pt;}
.y48{bottom:282.786667pt;}
.y21{bottom:294.466667pt;}
.y47{bottom:299.746667pt;}
.y20{bottom:308.226667pt;}
.y46{bottom:316.546667pt;}
.y1f{bottom:321.986667pt;}
.y45{bottom:333.506667pt;}
.y1e{bottom:335.906667pt;}
.y1d{bottom:349.666667pt;}
.y44{bottom:350.306667pt;}
.y1c{bottom:363.426667pt;}
.y43{bottom:367.106667pt;}
.y1b{bottom:377.186667pt;}
.y42{bottom:384.066667pt;}
.y1a{bottom:391.106667pt;}
.y41{bottom:400.866667pt;}
.y19{bottom:404.893333pt;}
.y65{bottom:406.013333pt;}
.y40{bottom:417.853333pt;}
.y64{bottom:418.333333pt;}
.y18{bottom:418.653333pt;}
.y63{bottom:431.133333pt;}
.y17{bottom:432.413333pt;}
.y3f{bottom:434.653333pt;}
.y16{bottom:446.173333pt;}
.y62{bottom:446.493333pt;}
.y3e{bottom:451.453333pt;}
.y15{bottom:460.093333pt;}
.y61{bottom:461.533333pt;}
.y3d{bottom:468.413333pt;}
.y14{bottom:473.853333pt;}
.y60{bottom:475.453333pt;}
.y3c{bottom:485.213333pt;}
.y13{bottom:487.613333pt;}
.y5f{bottom:489.213333pt;}
.y12{bottom:501.373333pt;}
.y3b{bottom:502.173333pt;}
.y5e{bottom:502.973333pt;}
.y11{bottom:515.293333pt;}
.y5d{bottom:516.733333pt;}
.y3a{bottom:518.973333pt;}
.y5c{bottom:530.653333pt;}
.y10{bottom:533.053333pt;}
.y39{bottom:535.773333pt;}
.y5b{bottom:544.413333pt;}
.yf{bottom:546.813333pt;}
.y38{bottom:552.733333pt;}
.ye{bottom:556.573333pt;}
.y5a{bottom:558.173333pt;}
.y37{bottom:569.573333pt;}
.yd{bottom:570.533333pt;}
.y59{bottom:571.973333pt;}
.yc{bottom:584.293333pt;}
.y58{bottom:585.733333pt;}
.y36{bottom:586.533333pt;}
.y57{bottom:599.653333pt;}
.yb{bottom:602.053333pt;}
.y35{bottom:603.333333pt;}
.ya{bottom:611.813333pt;}
.y56{bottom:613.413333pt;}
.y34{bottom:620.133333pt;}
.y9{bottom:626.373333pt;}
.y55{bottom:627.173333pt;}
.y33{bottom:637.093333pt;}
.y8{bottom:643.173333pt;}
.y32{bottom:653.893333pt;}
.y7{bottom:660.133333pt;}
.y31{bottom:670.853333pt;}
.y6{bottom:676.933333pt;}
.y30{bottom:687.653333pt;}
.y5{bottom:691.173333pt;}
.y4{bottom:695.813333pt;}
.y2f{bottom:704.613333pt;}
.y3{bottom:708.133333pt;}
.y2e{bottom:732.960000pt;}
.y1{bottom:734.080000pt;}
.h5{height:10.965000pt;}
.h9{height:32.250000pt;}
.hb{height:34.710938pt;}
.h4{height:42.084375pt;}
.hd{height:42.578750pt;}
.h8{height:47.109375pt;}
.ha{height:48.375000pt;}
.he{height:52.108438pt;}
.h6{height:52.296250pt;}
.h2{height:53.535000pt;}
.hc{height:57.787500pt;}
.h7{height:59.340000pt;}
.h3{height:62.812500pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w2{width:559.519992pt;}
.w0{width:559.520000pt;}
.x0{left:0.000000pt;}
.x3{left:75.551992pt;}
.x1{left:87.871992pt;}
.x4{left:101.951992pt;}
.x8{left:117.151992pt;}
.x9{left:121.151992pt;}
.x7{left:193.186658pt;}
.x5{left:219.906658pt;}
.xa{left:238.146658pt;}
.x2{left:267.746658pt;}
.x6{left:279.746658pt;}
.xb{left:293.026658pt;}
}




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