
    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_a29fa34eb3bdb1505e1ebd04.woff')format("woff");}.ff1{font-family:ff1;line-height:0.966797;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_3e39ce165878b272ddd2a0c2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.107422;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_65d4bde54f9096a6b9a5fbe6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.107422;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_da080b5761213566d99ca0c1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.966797;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_e09b8fe6fcff0fc29691219e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.948242;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_39a504dacd5df8bf7ea848a9.woff')format("woff");}.ff6{font-family:ff6;line-height:0.850586;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_b175f37e769460c2340cf060.woff')format("woff");}.ff7{font-family:ff7;line-height:0.948242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.380000px;}
.v2{vertical-align:50.400000px;}
.v3{vertical-align:124.704000px;}
.ls3{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.181200px;}
.ls6{letter-spacing:-0.108000px;}
.lse{letter-spacing:-0.053280px;}
.ls9{letter-spacing:-0.037440px;}
.ls7{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.051840px;}
.ls4{letter-spacing:0.108000px;}
.ls8{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.223800px;}
.lsc{letter-spacing:0.269400px;}
.ls5{letter-spacing:0.288000px;}
.ls2{letter-spacing:70.149600px;}
.ls1{letter-spacing:70.200000px;}
.ls10{letter-spacing:74.553600px;}
.lsf{letter-spacing:74.604000px;}
.lsb{letter-spacing:112.464000px;}
.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;}
}
.ws11{word-spacing:-80.064000px;}
.ws2{word-spacing:-73.458720px;}
.ws16{word-spacing:-40.032000px;}
.ws12{word-spacing:-33.466752px;}
.ws14{word-spacing:-33.426720px;}
.wsa{word-spacing:-30.064032px;}
.ws4{word-spacing:-30.024000px;}
.ws3{word-spacing:-29.736000px;}
.ws15{word-spacing:-26.621280px;}
.ws0{word-spacing:-23.418720px;}
.wsd{word-spacing:-20.016000px;}
.ws9{word-spacing:-17.614080px;}
.wse{word-spacing:-16.613280px;}
.wsb{word-spacing:-15.228000px;}
.ws5{word-spacing:-15.012000px;}
.ws17{word-spacing:-13.680120px;}
.ws18{word-spacing:-13.634520px;}
.ws19{word-spacing:-13.450752px;}
.ws10{word-spacing:-13.410720px;}
.wsf{word-spacing:-13.229520px;}
.ws6{word-spacing:-11.826000px;}
.ws8{word-spacing:-11.808000px;}
.ws7{word-spacing:-11.718000px;}
.ws1{word-spacing:0.000000px;}
.wsc{word-spacing:418.141200px;}
.ws13{word-spacing:825.260160px;}
._9{margin-left:-17.820000px;}
._8{margin-left:-14.533200px;}
._d{margin-left:-11.993328px;}
._f{margin-left:-10.949040px;}
._0{margin-left:-8.763840px;}
._12{margin-left:-7.223040px;}
._5{margin-left:-5.496000px;}
._a{margin-left:-3.772416px;}
._3{margin-left:-2.442960px;}
._1{margin-left:-1.031040px;}
._4{width:1.219680px;}
._2{width:2.319840px;}
._6{width:3.618000px;}
._13{width:4.716240px;}
._7{width:70.200000px;}
._e{width:485.845200px;}
._10{width:681.820320px;}
._11{width:850.194000px;}
._c{width:1272.125760px;}
._b{width:1375.433520px;}
.fc3{color:rgb(255,192,0);}
.fc1{color:rgb(41,152,227);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs14{font-size:48.240000px;}
.fs18{font-size:48.384000px;}
.fs7{font-size:54.000000px;}
.fs11{font-size:59.760000px;}
.fsd{font-size:63.360000px;}
.fs10{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fsb{font-size:95.760000px;}
.fsc{font-size:95.904000px;}
.fs3{font-size:108.000000px;}
.fs4{font-size:108.144000px;}
.fs15{font-size:120.240000px;}
.fs16{font-size:120.384000px;}
.fsf{font-size:131.760000px;}
.fs17{font-size:144.000000px;}
.fs12{font-size:192.240000px;}
.fs8{font-size:192.384000px;}
.fs13{font-size:216.000000px;}
.fse{font-size:239.760000px;}
.fs0{font-size:257.760000px;}
.fs2{font-size:264.240000px;}
.fs5{font-size:288.000000px;}
.fs6{font-size:288.144000px;}
.fsa{font-size:324.000000px;}
.fs9{font-size:324.144000px;}
.y0{bottom:0.000000px;}
.y63{bottom:14.796000px;}
.y3b{bottom:17.280000px;}
.y7d{bottom:18.504000px;}
.y35{bottom:19.116000px;}
.y89{bottom:21.528000px;}
.y14{bottom:25.200000px;}
.y21{bottom:25.956000px;}
.y7c{bottom:32.904000px;}
.y3a{bottom:33.480000px;}
.y88{bottom:40.428000px;}
.y13{bottom:41.400000px;}
.y7b{bottom:47.304000px;}
.yb9{bottom:50.220000px;}
.y12{bottom:57.600000px;}
.y25{bottom:66.816000px;}
.y56{bottom:72.684000px;}
.y11{bottom:73.800000px;}
.y32{bottom:73.908000px;}
.y2d{bottom:77.436000px;}
.yb8{bottom:79.740000px;}
.y7{bottom:83.124000px;}
.y38{bottom:88.020000px;}
.y52{bottom:88.920000px;}
.y20{bottom:92.016000px;}
.y31{bottom:102.708000px;}
.y54{bottom:105.120000px;}
.yb7{bottom:109.080000px;}
.y6{bottom:110.844000px;}
.y2c{bottom:113.076000px;}
.y73{bottom:113.616000px;}
.y51{bottom:121.320000px;}
.y1f{bottom:124.416000px;}
.y17{bottom:125.928000px;}
.y8e{bottom:129.384000px;}
.y72{bottom:132.516000px;}
.y47{bottom:133.380000px;}
.y53{bottom:137.520000px;}
.yb6{bottom:138.420000px;}
.y5{bottom:138.564000px;}
.y71{bottom:151.410000px;}
.yb5{bottom:152.820000px;}
.y50{bottom:153.720000px;}
.y60{bottom:156.450000px;}
.y83{bottom:156.810000px;}
.y8d{bottom:160.560000px;}
.y34{bottom:161.430000px;}
.y18{bottom:162.255000px;}
.y2b{bottom:163.650000px;}
.y55{bottom:169.920000px;}
.y70{bottom:170.310000px;}
.y82{bottom:172.290000px;}
.y5f{bottom:174.450000px;}
.yb4{bottom:182.340000px;}
.y6f{bottom:189.210000px;}
.y33{bottom:190.230000px;}
.yb3{bottom:196.740000px;}
.y2a{bottom:214.275000px;}
.y1e{bottom:219.315000px;}
.yb2{bottom:226.110000px;}
.y6e{bottom:227.010000px;}
.ya4{bottom:234.330000px;}
.y96{bottom:239.835000px;}
.y81{bottom:240.225000px;}
.yb1{bottom:240.510000px;}
.y16{bottom:245.490000px;}
.y6d{bottom:245.910000px;}
.y7a{bottom:246.675000px;}
.y84{bottom:247.935000px;}
.y30{bottom:249.195000px;}
.y29{bottom:249.915000px;}
.y80{bottom:255.705000px;}
.y6c{bottom:264.810000px;}
.yb0{bottom:269.850000px;}
.ya3{bottom:270.330000px;}
.y15{bottom:277.890000px;}
.y2f{bottom:277.995000px;}
.y95{bottom:279.075000px;}
.y4e{bottom:279.750000px;}
.yaf{bottom:284.250000px;}
.y62{bottom:291.750000px;}
.y4a{bottom:295.950000px;}
.y79{bottom:297.255000px;}
.y36{bottom:300.345000px;}
.y28{bottom:300.675000px;}
.y6b{bottom:302.655000px;}
.y46{bottom:303.810000px;}
.y44{bottom:303.870000px;}
.y3f{bottom:305.175000px;}
.ya2{bottom:306.330000px;}
.y2e{bottom:306.795000px;}
.y61{bottom:307.950000px;}
.y41{bottom:308.055000px;}
.y94{bottom:310.785000px;}
.y4c{bottom:312.150000px;}
.yae{bottom:313.770000px;}
.y1d{bottom:313.995000px;}
.yc{bottom:321.195000px;}
.y6a{bottom:321.555000px;}
.yad{bottom:328.170000px;}
.y49{bottom:328.350000px;}
.y45{bottom:329.010000px;}
.y43{bottom:329.070000px;}
.y40{bottom:329.655000px;}
.y3e{bottom:330.375000px;}
.y78{bottom:332.895000px;}
.y27{bottom:336.315000px;}
.y69{bottom:340.455000px;}
.ya1{bottom:342.330000px;}
.y4b{bottom:344.550000px;}
.y1c{bottom:346.395000px;}
.y93{bottom:349.845000px;}
.yac{bottom:357.510000px;}
.y48{bottom:360.750000px;}
.y10{bottom:370.080000px;}
.yb{bottom:371.985000px;}
.y4d{bottom:376.950000px;}
.y68{bottom:378.255000px;}
.ya0{bottom:378.330000px;}
.y77{bottom:383.505000px;}
.y4{bottom:386.250000px;}
.yab{bottom:386.850000px;}
.y26{bottom:386.925000px;}
.y92{bottom:389.985000px;}
.y67{bottom:397.155000px;}
.y8c{bottom:399.960000px;}
.y5e{bottom:402.840000px;}
.y5c{bottom:402.870000px;}
.y59{bottom:404.175000px;}
.y58{bottom:404.205000px;}
.yf{bottom:405.720000px;}
.y9f{bottom:414.360000px;}
.y7f{bottom:414.750000px;}
.y24{bottom:415.725000px;}
.yaa{bottom:416.415000px;}
.y76{bottom:419.145000px;}
.ya{bottom:422.565000px;}
.y5d{bottom:428.040000px;}
.y5b{bottom:428.115000px;}
.y5a{bottom:429.375000px;}
.y57{bottom:429.405000px;}
.y8b{bottom:430.920000px;}
.y66{bottom:434.955000px;}
.y91{bottom:439.665000px;}
.y1b{bottom:441.285000px;}
.ya9{bottom:445.755000px;}
.y9e{bottom:450.360000px;}
.y42{bottom:453.390000px;}
.y8a{bottom:462.060000px;}
.y3{bottom:463.650000px;}
.y3d{bottom:468.510000px;}
.y90{bottom:471.345000px;}
.y87{bottom:472.065000px;}
.y65{bottom:472.785000px;}
.y9{bottom:473.145000px;}
.y1a{bottom:473.685000px;}
.ya8{bottom:475.095000px;}
.y4f{bottom:483.510000px;}
.y9d{bottom:486.360000px;}
.y7e{bottom:498.165000px;}
.ya7{bottom:504.615000px;}
.y3c{bottom:509.730000px;}
.y8f{bottom:511.530000px;}
.y37{bottom:512.280000px;}
.y23{bottom:512.925000px;}
.y74{bottom:517.245000px;}
.y9c{bottom:522.360000px;}
.y86{bottom:533.370000px;}
.ya6{bottom:533.955000px;}
.y2{bottom:541.080000px;}
.ya5{bottom:548.355000px;}
.ye{bottom:549.870000px;}
.y9b{bottom:558.360000px;}
.y19{bottom:563.190000px;}
.y98{bottom:573.450000px;}
.y9a{bottom:594.390000px;}
.y22{bottom:610.170000px;}
.y1{bottom:618.480000px;}
.y97{bottom:618.990000px;}
.y85{bottom:619.815000px;}
.y8{bottom:624.750000px;}
.yd{bottom:627.630000px;}
.y39{bottom:630.690000px;}
.y99{bottom:631.650000px;}
.y75{bottom:636.450000px;}
.y64{bottom:642.390000px;}
.hc{height:35.991211px;}
.h1e{height:43.269961px;}
.h24{height:43.399125px;}
.h1f{height:44.936719px;}
.h1c{height:47.643750px;}
.h9{height:48.436523px;}
.h1a{height:53.603086px;}
.h18{height:54.140625px;}
.h12{height:56.832187px;}
.h2{height:63.344531px;}
.h3{height:75.560977px;}
.hb{height:79.681641px;}
.hf{height:81.210938px;}
.h13{height:81.319219px;}
.h10{height:85.894102px;}
.h11{height:86.023266px;}
.h5{height:96.873047px;}
.h6{height:97.002211px;}
.h16{height:97.211602px;}
.h20{height:107.851992px;}
.h21{height:107.981156px;}
.h23{height:108.281250px;}
.h15{height:113.591602px;}
.h1b{height:144.555469px;}
.h1d{height:162.421875px;}
.h19{height:164.024531px;}
.h17{height:164.144531px;}
.ha{height:172.563188px;}
.h14{height:180.288281px;}
.h1{height:193.823437px;}
.h4{height:198.696094px;}
.h7{height:216.562500px;}
.h8{height:216.670781px;}
.h22{height:232.685156px;}
.he{height:243.632812px;}
.hd{height:243.741094px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xc{left:46.331979px;}
.x2f{left:65.087979px;}
.x2{left:70.883979px;}
.x1{left:71.963979px;}
.xa{left:80.099979px;}
.x7{left:91.799979px;}
.x4{left:92.915979px;}
.x14{left:97.739979px;}
.xe{left:99.359979px;}
.x48{left:125.639979px;}
.x28{left:136.547979px;}
.x49{left:152.669979px;}
.x29{left:155.984979px;}
.x10{left:158.369979px;}
.x3e{left:161.744979px;}
.x2a{left:165.704979px;}
.x34{left:171.794979px;}
.x9{left:173.909979px;}
.x3d{left:191.129979px;}
.x30{left:211.709979px;}
.x1a{left:262.514979px;}
.x15{left:301.889979px;}
.x16{left:303.689979px;}
.x41{left:305.894979px;}
.x3b{left:308.729979px;}
.x37{left:316.289979px;}
.x40{left:323.534979px;}
.x3c{left:326.549979px;}
.x45{left:347.684979px;}
.x2b{left:363.779979px;}
.xb{left:365.969979px;}
.x12{left:409.139979px;}
.x42{left:410.864979px;}
.x25{left:417.959979px;}
.x46{left:429.404979px;}
.x24{left:435.959979px;}
.x27{left:438.299979px;}
.xf{left:442.184979px;}
.x26{left:453.239979px;}
.x38{left:454.829979px;}
.x39{left:460.229979px;}
.x3a{left:469.769979px;}
.x6{left:540.794979px;}
.x8{left:553.214979px;}
.x13{left:619.379979px;}
.x1f{left:666.209979px;}
.x17{left:678.164979px;}
.x3{left:687.524979px;}
.x22{left:695.054979px;}
.x23{left:730.514979px;}
.x5{left:757.229979px;}
.x35{left:780.944979px;}
.x43{left:806.939979px;}
.x36{left:807.944979px;}
.x2e{left:810.539979px;}
.x3f{left:856.769979px;}
.x18{left:860.069979px;}
.x19{left:862.589979px;}
.x2c{left:863.849979px;}
.x2d{left:873.749979px;}
.x44{left:882.929979px;}
.x47{left:888.869979px;}
.x4a{left:947.369979px;}
.x31{left:968.789979px;}
.x4b{left:974.369979px;}
.x20{left:980.249979px;}
.xd{left:981.569979px;}
.x32{left:989.129979px;}
.x21{left:990.149979px;}
.x33{left:1022.789979px;}
.x1c{left:1038.209979px;}
.x1b{left:1064.129979px;}
.x1e{left:1218.989979px;}
.x1d{left:1246.169979px;}
.x11{left:1315.334979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.560000pt;}
.v2{vertical-align:44.800000pt;}
.v3{vertical-align:110.848000pt;}
.ls3{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.161067pt;}
.ls6{letter-spacing:-0.096000pt;}
.lse{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:-0.033280pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.046080pt;}
.ls4{letter-spacing:0.096000pt;}
.ls8{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.198933pt;}
.lsc{letter-spacing:0.239467pt;}
.ls5{letter-spacing:0.256000pt;}
.ls2{letter-spacing:62.355200pt;}
.ls1{letter-spacing:62.400000pt;}
.ls10{letter-spacing:66.269867pt;}
.lsf{letter-spacing:66.314667pt;}
.lsb{letter-spacing:99.968000pt;}
.ws11{word-spacing:-71.168000pt;}
.ws2{word-spacing:-65.296640pt;}
.ws16{word-spacing:-35.584000pt;}
.ws12{word-spacing:-29.748224pt;}
.ws14{word-spacing:-29.712640pt;}
.wsa{word-spacing:-26.723584pt;}
.ws4{word-spacing:-26.688000pt;}
.ws3{word-spacing:-26.432000pt;}
.ws15{word-spacing:-23.663360pt;}
.ws0{word-spacing:-20.816640pt;}
.wsd{word-spacing:-17.792000pt;}
.ws9{word-spacing:-15.656960pt;}
.wse{word-spacing:-14.767360pt;}
.wsb{word-spacing:-13.536000pt;}
.ws5{word-spacing:-13.344000pt;}
.ws17{word-spacing:-12.160107pt;}
.ws18{word-spacing:-12.119573pt;}
.ws19{word-spacing:-11.956224pt;}
.ws10{word-spacing:-11.920640pt;}
.wsf{word-spacing:-11.759573pt;}
.ws6{word-spacing:-10.512000pt;}
.ws8{word-spacing:-10.496000pt;}
.ws7{word-spacing:-10.416000pt;}
.ws1{word-spacing:0.000000pt;}
.wsc{word-spacing:371.681067pt;}
.ws13{word-spacing:733.564587pt;}
._9{margin-left:-15.840000pt;}
._8{margin-left:-12.918400pt;}
._d{margin-left:-10.660736pt;}
._f{margin-left:-9.732480pt;}
._0{margin-left:-7.790080pt;}
._12{margin-left:-6.420480pt;}
._5{margin-left:-4.885333pt;}
._a{margin-left:-3.353259pt;}
._3{margin-left:-2.171520pt;}
._1{margin-left:-0.916480pt;}
._4{width:1.084160pt;}
._2{width:2.062080pt;}
._6{width:3.216000pt;}
._13{width:4.192213pt;}
._7{width:62.400000pt;}
._e{width:431.862400pt;}
._10{width:606.062507pt;}
._11{width:755.728000pt;}
._c{width:1130.778453pt;}
._b{width:1222.607573pt;}
.fs14{font-size:42.880000pt;}
.fs18{font-size:43.008000pt;}
.fs7{font-size:48.000000pt;}
.fs11{font-size:53.120000pt;}
.fsd{font-size:56.320000pt;}
.fs10{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fsb{font-size:85.120000pt;}
.fsc{font-size:85.248000pt;}
.fs3{font-size:96.000000pt;}
.fs4{font-size:96.128000pt;}
.fs15{font-size:106.880000pt;}
.fs16{font-size:107.008000pt;}
.fsf{font-size:117.120000pt;}
.fs17{font-size:128.000000pt;}
.fs12{font-size:170.880000pt;}
.fs8{font-size:171.008000pt;}
.fs13{font-size:192.000000pt;}
.fse{font-size:213.120000pt;}
.fs0{font-size:229.120000pt;}
.fs2{font-size:234.880000pt;}
.fs5{font-size:256.000000pt;}
.fs6{font-size:256.128000pt;}
.fsa{font-size:288.000000pt;}
.fs9{font-size:288.128000pt;}
.y0{bottom:0.000000pt;}
.y63{bottom:13.152000pt;}
.y3b{bottom:15.360000pt;}
.y7d{bottom:16.448000pt;}
.y35{bottom:16.992000pt;}
.y89{bottom:19.136000pt;}
.y14{bottom:22.400000pt;}
.y21{bottom:23.072000pt;}
.y7c{bottom:29.248000pt;}
.y3a{bottom:29.760000pt;}
.y88{bottom:35.936000pt;}
.y13{bottom:36.800000pt;}
.y7b{bottom:42.048000pt;}
.yb9{bottom:44.640000pt;}
.y12{bottom:51.200000pt;}
.y25{bottom:59.392000pt;}
.y56{bottom:64.608000pt;}
.y11{bottom:65.600000pt;}
.y32{bottom:65.696000pt;}
.y2d{bottom:68.832000pt;}
.yb8{bottom:70.880000pt;}
.y7{bottom:73.888000pt;}
.y38{bottom:78.240000pt;}
.y52{bottom:79.040000pt;}
.y20{bottom:81.792000pt;}
.y31{bottom:91.296000pt;}
.y54{bottom:93.440000pt;}
.yb7{bottom:96.960000pt;}
.y6{bottom:98.528000pt;}
.y2c{bottom:100.512000pt;}
.y73{bottom:100.992000pt;}
.y51{bottom:107.840000pt;}
.y1f{bottom:110.592000pt;}
.y17{bottom:111.936000pt;}
.y8e{bottom:115.008000pt;}
.y72{bottom:117.792000pt;}
.y47{bottom:118.560000pt;}
.y53{bottom:122.240000pt;}
.yb6{bottom:123.040000pt;}
.y5{bottom:123.168000pt;}
.y71{bottom:134.586667pt;}
.yb5{bottom:135.840000pt;}
.y50{bottom:136.640000pt;}
.y60{bottom:139.066667pt;}
.y83{bottom:139.386667pt;}
.y8d{bottom:142.720000pt;}
.y34{bottom:143.493333pt;}
.y18{bottom:144.226667pt;}
.y2b{bottom:145.466667pt;}
.y55{bottom:151.040000pt;}
.y70{bottom:151.386667pt;}
.y82{bottom:153.146667pt;}
.y5f{bottom:155.066667pt;}
.yb4{bottom:162.080000pt;}
.y6f{bottom:168.186667pt;}
.y33{bottom:169.093333pt;}
.yb3{bottom:174.880000pt;}
.y2a{bottom:190.466667pt;}
.y1e{bottom:194.946667pt;}
.yb2{bottom:200.986667pt;}
.y6e{bottom:201.786667pt;}
.ya4{bottom:208.293333pt;}
.y96{bottom:213.186667pt;}
.y81{bottom:213.533333pt;}
.yb1{bottom:213.786667pt;}
.y16{bottom:218.213333pt;}
.y6d{bottom:218.586667pt;}
.y7a{bottom:219.266667pt;}
.y84{bottom:220.386667pt;}
.y30{bottom:221.506667pt;}
.y29{bottom:222.146667pt;}
.y80{bottom:227.293333pt;}
.y6c{bottom:235.386667pt;}
.yb0{bottom:239.866667pt;}
.ya3{bottom:240.293333pt;}
.y15{bottom:247.013333pt;}
.y2f{bottom:247.106667pt;}
.y95{bottom:248.066667pt;}
.y4e{bottom:248.666667pt;}
.yaf{bottom:252.666667pt;}
.y62{bottom:259.333333pt;}
.y4a{bottom:263.066667pt;}
.y79{bottom:264.226667pt;}
.y36{bottom:266.973333pt;}
.y28{bottom:267.266667pt;}
.y6b{bottom:269.026667pt;}
.y46{bottom:270.053333pt;}
.y44{bottom:270.106667pt;}
.y3f{bottom:271.266667pt;}
.ya2{bottom:272.293333pt;}
.y2e{bottom:272.706667pt;}
.y61{bottom:273.733333pt;}
.y41{bottom:273.826667pt;}
.y94{bottom:276.253333pt;}
.y4c{bottom:277.466667pt;}
.yae{bottom:278.906667pt;}
.y1d{bottom:279.106667pt;}
.yc{bottom:285.506667pt;}
.y6a{bottom:285.826667pt;}
.yad{bottom:291.706667pt;}
.y49{bottom:291.866667pt;}
.y45{bottom:292.453333pt;}
.y43{bottom:292.506667pt;}
.y40{bottom:293.026667pt;}
.y3e{bottom:293.666667pt;}
.y78{bottom:295.906667pt;}
.y27{bottom:298.946667pt;}
.y69{bottom:302.626667pt;}
.ya1{bottom:304.293333pt;}
.y4b{bottom:306.266667pt;}
.y1c{bottom:307.906667pt;}
.y93{bottom:310.973333pt;}
.yac{bottom:317.786667pt;}
.y48{bottom:320.666667pt;}
.y10{bottom:328.960000pt;}
.yb{bottom:330.653333pt;}
.y4d{bottom:335.066667pt;}
.y68{bottom:336.226667pt;}
.ya0{bottom:336.293333pt;}
.y77{bottom:340.893333pt;}
.y4{bottom:343.333333pt;}
.yab{bottom:343.866667pt;}
.y26{bottom:343.933333pt;}
.y92{bottom:346.653333pt;}
.y67{bottom:353.026667pt;}
.y8c{bottom:355.520000pt;}
.y5e{bottom:358.080000pt;}
.y5c{bottom:358.106667pt;}
.y59{bottom:359.266667pt;}
.y58{bottom:359.293333pt;}
.yf{bottom:360.640000pt;}
.y9f{bottom:368.320000pt;}
.y7f{bottom:368.666667pt;}
.y24{bottom:369.533333pt;}
.yaa{bottom:370.146667pt;}
.y76{bottom:372.573333pt;}
.ya{bottom:375.613333pt;}
.y5d{bottom:380.480000pt;}
.y5b{bottom:380.546667pt;}
.y5a{bottom:381.666667pt;}
.y57{bottom:381.693333pt;}
.y8b{bottom:383.040000pt;}
.y66{bottom:386.626667pt;}
.y91{bottom:390.813333pt;}
.y1b{bottom:392.253333pt;}
.ya9{bottom:396.226667pt;}
.y9e{bottom:400.320000pt;}
.y42{bottom:403.013333pt;}
.y8a{bottom:410.720000pt;}
.y3{bottom:412.133333pt;}
.y3d{bottom:416.453333pt;}
.y90{bottom:418.973333pt;}
.y87{bottom:419.613333pt;}
.y65{bottom:420.253333pt;}
.y9{bottom:420.573333pt;}
.y1a{bottom:421.053333pt;}
.ya8{bottom:422.306667pt;}
.y4f{bottom:429.786667pt;}
.y9d{bottom:432.320000pt;}
.y7e{bottom:442.813333pt;}
.ya7{bottom:448.546667pt;}
.y3c{bottom:453.093333pt;}
.y8f{bottom:454.693333pt;}
.y37{bottom:455.360000pt;}
.y23{bottom:455.933333pt;}
.y74{bottom:459.773333pt;}
.y9c{bottom:464.320000pt;}
.y86{bottom:474.106667pt;}
.ya6{bottom:474.626667pt;}
.y2{bottom:480.960000pt;}
.ya5{bottom:487.426667pt;}
.ye{bottom:488.773333pt;}
.y9b{bottom:496.320000pt;}
.y19{bottom:500.613333pt;}
.y98{bottom:509.733333pt;}
.y9a{bottom:528.346667pt;}
.y22{bottom:542.373333pt;}
.y1{bottom:549.760000pt;}
.y97{bottom:550.213333pt;}
.y85{bottom:550.946667pt;}
.y8{bottom:555.333333pt;}
.yd{bottom:557.893333pt;}
.y39{bottom:560.613333pt;}
.y99{bottom:561.466667pt;}
.y75{bottom:565.733333pt;}
.y64{bottom:571.013333pt;}
.hc{height:31.992188pt;}
.h1e{height:38.462187pt;}
.h24{height:38.577000pt;}
.h1f{height:39.943750pt;}
.h1c{height:42.350000pt;}
.h9{height:43.054688pt;}
.h1a{height:47.647188pt;}
.h18{height:48.125000pt;}
.h12{height:50.517500pt;}
.h2{height:56.306250pt;}
.h3{height:67.165312pt;}
.hb{height:70.828125pt;}
.hf{height:72.187500pt;}
.h13{height:72.283750pt;}
.h10{height:76.350312pt;}
.h11{height:76.465125pt;}
.h5{height:86.109375pt;}
.h6{height:86.224187pt;}
.h16{height:86.410312pt;}
.h20{height:95.868437pt;}
.h21{height:95.983250pt;}
.h23{height:96.250000pt;}
.h15{height:100.970313pt;}
.h1b{height:128.493750pt;}
.h1d{height:144.375000pt;}
.h19{height:145.799583pt;}
.h17{height:145.906250pt;}
.ha{height:153.389500pt;}
.h14{height:160.256250pt;}
.h1{height:172.287500pt;}
.h4{height:176.618750pt;}
.h7{height:192.500000pt;}
.h8{height:192.596250pt;}
.h22{height:206.831250pt;}
.he{height:216.562500pt;}
.hd{height:216.658750pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xc{left:41.183981pt;}
.x2f{left:57.855981pt;}
.x2{left:63.007981pt;}
.x1{left:63.967981pt;}
.xa{left:71.199981pt;}
.x7{left:81.599981pt;}
.x4{left:82.591981pt;}
.x14{left:86.879981pt;}
.xe{left:88.319981pt;}
.x48{left:111.679981pt;}
.x28{left:121.375981pt;}
.x49{left:135.706648pt;}
.x29{left:138.653314pt;}
.x10{left:140.773314pt;}
.x3e{left:143.773314pt;}
.x2a{left:147.293314pt;}
.x34{left:152.706648pt;}
.x9{left:154.586648pt;}
.x3d{left:169.893314pt;}
.x30{left:188.186648pt;}
.x1a{left:233.346648pt;}
.x15{left:268.346648pt;}
.x16{left:269.946648pt;}
.x41{left:271.906648pt;}
.x3b{left:274.426648pt;}
.x37{left:281.146648pt;}
.x40{left:287.586648pt;}
.x3c{left:290.266648pt;}
.x45{left:309.053314pt;}
.x2b{left:323.359981pt;}
.xb{left:325.306648pt;}
.x12{left:363.679981pt;}
.x42{left:365.213314pt;}
.x25{left:371.519981pt;}
.x46{left:381.693314pt;}
.x24{left:387.519981pt;}
.x27{left:389.599981pt;}
.xf{left:393.053314pt;}
.x26{left:402.879981pt;}
.x38{left:404.293314pt;}
.x39{left:409.093314pt;}
.x3a{left:417.573314pt;}
.x6{left:480.706648pt;}
.x8{left:491.746648pt;}
.x13{left:550.559981pt;}
.x1f{left:592.186648pt;}
.x17{left:602.813314pt;}
.x3{left:611.133314pt;}
.x22{left:617.826648pt;}
.x23{left:649.346648pt;}
.x5{left:673.093314pt;}
.x35{left:694.173314pt;}
.x43{left:717.279981pt;}
.x36{left:718.173314pt;}
.x2e{left:720.479981pt;}
.x3f{left:761.573314pt;}
.x18{left:764.506648pt;}
.x19{left:766.746648pt;}
.x2c{left:767.866648pt;}
.x2d{left:776.666648pt;}
.x44{left:784.826648pt;}
.x47{left:790.106648pt;}
.x4a{left:842.106648pt;}
.x31{left:861.146648pt;}
.x4b{left:866.106648pt;}
.x20{left:871.333314pt;}
.xd{left:872.506648pt;}
.x32{left:879.226648pt;}
.x21{left:880.133314pt;}
.x33{left:909.146648pt;}
.x1c{left:922.853314pt;}
.x1b{left:945.893314pt;}
.x1e{left:1083.546648pt;}
.x1d{left:1107.706648pt;}
.x11{left:1169.186648pt;}
}




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