
    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_18ffbccf175ce1532c091b71.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_fd3cc99958edde6767b6cb95.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2ba4bab47ac2400656d872f3.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4baa43e3499ea06c64d649e1.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_79bec032117a2560e0e7c921.woff')format("woff");}.ff6{font-family:ff6;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.774000px;}
.ls2{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.100200px;}
.ls5{letter-spacing:-0.053280px;}
.ls3{letter-spacing:-0.018720px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.106800px;}
.ls7{letter-spacing:0.120000px;}
.lsa{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.513600px;}
.ls11{letter-spacing:0.562800px;}
.lse{letter-spacing:1.080000px;}
.lsc{letter-spacing:46.170720px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.020000px;}
.ws2{word-spacing:-15.840000px;}
.wsc{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.839800px;}
.wsf{word-spacing:-14.580000px;}
.wse{word-spacing:-13.500000px;}
.ws1{word-spacing:-10.440000px;}
.ws4{word-spacing:-10.080000px;}
.ws3{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._16{margin-left:-3.754560px;}
._b{margin-left:-2.298720px;}
._0{margin-left:-1.080000px;}
._10{width:1.149120px;}
._1{width:2.220000px;}
._11{width:3.510720px;}
._12{width:4.876800px;}
._17{width:6.114240px;}
._14{width:7.239600px;}
._13{width:8.366400px;}
._18{width:9.501840px;}
._6{width:10.800000px;}
._1d{width:12.159120px;}
._15{width:13.372560px;}
._1c{width:16.613280px;}
._1b{width:17.987760px;}
._1e{width:19.003680px;}
._1a{width:20.736720px;}
._1f{width:21.858480px;}
._7{width:76.284960px;}
._8{width:154.080000px;}
._d{width:195.240000px;}
._2{width:255.692640px;}
._3{width:357.120000px;}
._5{width:436.320000px;}
._4{width:443.286240px;}
._19{width:444.504960px;}
._9{width:604.364160px;}
._e{width:653.940000px;}
._f{width:703.620000px;}
._a{width:1097.040000px;}
._c{width:1176.060000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y49{bottom:5.760000px;}
.y4e{bottom:5.940000px;}
.ye{bottom:6.300000px;}
.y6{bottom:12.420000px;}
.y8{bottom:18.180000px;}
.y4b{bottom:25.560000px;}
.y4d{bottom:25.740000px;}
.yc{bottom:36.000000px;}
.y5{bottom:40.320000px;}
.yb{bottom:57.780000px;}
.y4{bottom:68.400000px;}
.yd{bottom:75.420000px;}
.ya{bottom:79.560000px;}
.y3{bottom:96.330000px;}
.yab{bottom:102.960000px;}
.y57{bottom:104.220000px;}
.yca{bottom:110.520000px;}
.y85{bottom:119.520000px;}
.yaa{bottom:122.940000px;}
.y56{bottom:124.200000px;}
.y2{bottom:125.670000px;}
.yc9{bottom:130.680000px;}
.y3a{bottom:131.580000px;}
.y84{bottom:139.500000px;}
.ya9{bottom:142.740000px;}
.y55{bottom:144.000000px;}
.yc8{bottom:150.660000px;}
.y39{bottom:151.380000px;}
.ya8{bottom:162.540000px;}
.y54{bottom:163.800000px;}
.y83{bottom:168.300000px;}
.y38{bottom:171.180000px;}
.yc7{bottom:177.300000px;}
.y53{bottom:178.560000px;}
.yb5{bottom:181.080000px;}
.ya7{bottom:182.340000px;}
.y82{bottom:188.100000px;}
.y37{bottom:190.980000px;}
.yc6{bottom:197.100000px;}
.y52{bottom:199.260000px;}
.yb4{bottom:200.880000px;}
.ya6{bottom:202.140000px;}
.y81{bottom:207.900000px;}
.y36{bottom:210.810000px;}
.yc5{bottom:216.930000px;}
.ya5{bottom:219.450000px;}
.y51{bottom:219.810000px;}
.yb3{bottom:220.710000px;}
.y80{bottom:227.730000px;}
.y35{bottom:230.790000px;}
.ya4{bottom:234.210000px;}
.yc4{bottom:236.730000px;}
.y50{bottom:240.330000px;}
.yb2{bottom:240.690000px;}
.y7f{bottom:247.710000px;}
.y34{bottom:250.590000px;}
.ya3{bottom:254.910000px;}
.yc3{bottom:256.710000px;}
.yb1{bottom:260.490000px;}
.y7e{bottom:267.510000px;}
.y33{bottom:270.390000px;}
.ya2{bottom:275.430000px;}
.yc2{bottom:276.510000px;}
.yb0{bottom:280.290000px;}
.y4f{bottom:280.830000px;}
.y7d{bottom:287.310000px;}
.y32{bottom:290.190000px;}
.ya1{bottom:295.950000px;}
.yc1{bottom:296.310000px;}
.yaf{bottom:300.090000px;}
.y7c{bottom:307.110000px;}
.y31{bottom:309.990000px;}
.yc0{bottom:316.110000px;}
.ya0{bottom:316.650000px;}
.yae{bottom:319.890000px;}
.y4c{bottom:321.150000px;}
.y7b{bottom:326.910000px;}
.y30{bottom:329.970000px;}
.ybf{bottom:335.910000px;}
.y9f{bottom:337.170000px;}
.y7a{bottom:346.890000px;}
.y2f{bottom:349.770000px;}
.ybe{bottom:355.890000px;}
.yad{bottom:356.970000px;}
.y4a{bottom:361.650000px;}
.y9e{bottom:363.630000px;}
.y79{bottom:366.690000px;}
.y2e{bottom:369.570000px;}
.yac{bottom:373.530000px;}
.ybd{bottom:375.690000px;}
.y9d{bottom:380.910000px;}
.y78{bottom:386.490000px;}
.y2d{bottom:389.370000px;}
.ybc{bottom:395.490000px;}
.y9c{bottom:400.710000px;}
.y48{bottom:402.150000px;}
.y77{bottom:406.290000px;}
.y2c{bottom:409.170000px;}
.ybb{bottom:415.290000px;}
.y9b{bottom:420.510000px;}
.y76{bottom:426.090000px;}
.y47{bottom:428.430000px;}
.y2b{bottom:429.150000px;}
.yba{bottom:435.090000px;}
.y9a{bottom:440.310000px;}
.y75{bottom:446.115000px;}
.y46{bottom:448.275000px;}
.y2a{bottom:448.995000px;}
.yb9{bottom:455.115000px;}
.y99{bottom:460.155000px;}
.y74{bottom:465.915000px;}
.y45{bottom:468.255000px;}
.y29{bottom:468.795000px;}
.yb8{bottom:474.915000px;}
.y98{bottom:480.135000px;}
.y73{bottom:485.715000px;}
.y44{bottom:488.055000px;}
.y28{bottom:488.595000px;}
.yb7{bottom:494.715000px;}
.y97{bottom:499.935000px;}
.y72{bottom:505.515000px;}
.y43{bottom:507.855000px;}
.y27{bottom:508.395000px;}
.yb6{bottom:514.515000px;}
.y96{bottom:519.735000px;}
.y42{bottom:527.655000px;}
.y26{bottom:528.375000px;}
.y71{bottom:534.315000px;}
.y95{bottom:539.535000px;}
.y41{bottom:547.455000px;}
.y25{bottom:548.175000px;}
.y70{bottom:554.295000px;}
.y94{bottom:559.335000px;}
.y40{bottom:567.435000px;}
.y24{bottom:567.975000px;}
.y6f{bottom:574.095000px;}
.y93{bottom:579.315000px;}
.y3f{bottom:587.235000px;}
.y23{bottom:587.775000px;}
.y6e{bottom:593.895000px;}
.y92{bottom:596.595000px;}
.y3e{bottom:607.035000px;}
.y22{bottom:607.575000px;}
.y6d{bottom:613.695000px;}
.y91{bottom:616.395000px;}
.y3d{bottom:626.835000px;}
.y21{bottom:627.555000px;}
.y6c{bottom:633.495000px;}
.y90{bottom:636.195000px;}
.y3c{bottom:646.635000px;}
.y20{bottom:647.355000px;}
.y6b{bottom:653.475000px;}
.y8f{bottom:655.995000px;}
.y3b{bottom:663.195000px;}
.y1f{bottom:667.155000px;}
.y6a{bottom:673.275000px;}
.y8e{bottom:675.795000px;}
.y1e{bottom:686.985000px;}
.y69{bottom:693.105000px;}
.y8d{bottom:695.625000px;}
.y1d{bottom:706.785000px;}
.y68{bottom:712.905000px;}
.y8c{bottom:715.605000px;}
.y1c{bottom:726.765000px;}
.y67{bottom:732.705000px;}
.y8b{bottom:735.405000px;}
.y1b{bottom:746.565000px;}
.y66{bottom:752.685000px;}
.y8a{bottom:755.205000px;}
.y1a{bottom:766.365000px;}
.y65{bottom:772.485000px;}
.y89{bottom:775.005000px;}
.y19{bottom:786.165000px;}
.y64{bottom:792.285000px;}
.y88{bottom:794.805000px;}
.y18{bottom:805.965000px;}
.y63{bottom:812.085000px;}
.y87{bottom:814.785000px;}
.y17{bottom:825.945000px;}
.y62{bottom:831.885000px;}
.y86{bottom:834.585000px;}
.y16{bottom:845.745000px;}
.y61{bottom:851.865000px;}
.y15{bottom:865.545000px;}
.y60{bottom:871.665000px;}
.y14{bottom:885.345000px;}
.y5f{bottom:891.465000px;}
.y13{bottom:910.365000px;}
.y5e{bottom:911.265000px;}
.y12{bottom:925.710000px;}
.y5d{bottom:931.110000px;}
.y11{bottom:947.490000px;}
.y5c{bottom:951.090000px;}
.y5b{bottom:970.890000px;}
.y10{bottom:972.330000px;}
.y5a{bottom:990.690000px;}
.yf{bottom:1004.010000px;}
.y59{bottom:1010.490000px;}
.y58{bottom:1030.290000px;}
.y9{bottom:1047.750000px;}
.y1{bottom:1062.330000px;}
.y7{bottom:1096.530000px;}
.h6{height:2.082656px;}
.hf{height:19.800000px;}
.h12{height:19.836000px;}
.h13{height:19.980000px;}
.hb{height:21.780000px;}
.hd{height:28.115859px;}
.h7{height:33.480000px;}
.h10{height:39.600000px;}
.h11{height:39.780000px;}
.he{height:42.164648px;}
.h8{height:43.215117px;}
.h14{height:43.506914px;}
.h4{height:46.736719px;}
.ha{height:47.901094px;}
.h15{height:48.496641px;}
.h9{height:53.224453px;}
.h3{height:63.500977px;}
.hc{height:67.565039px;}
.h5{height:112.536000px;}
.h2{height:146.736000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w5{width:9.900000px;}
.w6{width:34.560000px;}
.wa{width:37.800000px;}
.wc{width:106.776000px;}
.w9{width:126.396000px;}
.w3{width:131.796000px;}
.w7{width:191.910000px;}
.w8{width:380.775000px;}
.wb{width:462.525000px;}
.w2{width:654.630000px;}
.w1{width:893.250000px;}
.w4{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:53.460000px;}
.x18{left:77.975987px;}
.xe{left:79.956000px;}
.x15{left:81.035987px;}
.x19{left:89.135987px;}
.x6{left:90.935987px;}
.x1b{left:96.515987px;}
.x1a{left:104.975987px;}
.xf{left:114.516000px;}
.x4{left:118.290000px;}
.x12{left:143.136000px;}
.x13{left:180.930000px;}
.x17{left:244.694987px;}
.x9{left:261.074987px;}
.xd{left:288.974987px;}
.x10{left:306.435000px;}
.x7{left:316.694987px;}
.xa{left:333.434987px;}
.xc{left:365.114987px;}
.x8{left:446.684987px;}
.x14{left:643.470000px;}
.xb{left:668.309987px;}
.x11{left:687.210000px;}
.x16{left:692.069987px;}
.x3{left:708.090000px;}
.x5{left:829.620000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.688000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.089067pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:-0.016640pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.094933pt;}
.ls7{letter-spacing:0.106667pt;}
.lsa{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.456533pt;}
.ls11{letter-spacing:0.500267pt;}
.lse{letter-spacing:0.960000pt;}
.lsc{letter-spacing:41.040640pt;}
.ws0{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.240000pt;}
.ws2{word-spacing:-14.080000pt;}
.wsc{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.ws7{word-spacing:-13.190933pt;}
.wsf{word-spacing:-12.960000pt;}
.wse{word-spacing:-12.000000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.960000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._16{margin-left:-3.337387pt;}
._b{margin-left:-2.043307pt;}
._0{margin-left:-0.960000pt;}
._10{width:1.021440pt;}
._1{width:1.973333pt;}
._11{width:3.120640pt;}
._12{width:4.334933pt;}
._17{width:5.434880pt;}
._14{width:6.435200pt;}
._13{width:7.436800pt;}
._18{width:8.446080pt;}
._6{width:9.600000pt;}
._1d{width:10.808107pt;}
._15{width:11.886720pt;}
._1c{width:14.767360pt;}
._1b{width:15.989120pt;}
._1e{width:16.892160pt;}
._1a{width:18.432640pt;}
._1f{width:19.429760pt;}
._7{width:67.808853pt;}
._8{width:136.960000pt;}
._d{width:173.546667pt;}
._2{width:227.282347pt;}
._3{width:317.440000pt;}
._5{width:387.840000pt;}
._4{width:394.032213pt;}
._19{width:395.115520pt;}
._9{width:537.212587pt;}
._e{width:581.280000pt;}
._f{width:625.440000pt;}
._a{width:975.146667pt;}
._c{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:5.120000pt;}
.y4e{bottom:5.280000pt;}
.ye{bottom:5.600000pt;}
.y6{bottom:11.040000pt;}
.y8{bottom:16.160000pt;}
.y4b{bottom:22.720000pt;}
.y4d{bottom:22.880000pt;}
.yc{bottom:32.000000pt;}
.y5{bottom:35.840000pt;}
.yb{bottom:51.360000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:67.040000pt;}
.ya{bottom:70.720000pt;}
.y3{bottom:85.626667pt;}
.yab{bottom:91.520000pt;}
.y57{bottom:92.640000pt;}
.yca{bottom:98.240000pt;}
.y85{bottom:106.240000pt;}
.yaa{bottom:109.280000pt;}
.y56{bottom:110.400000pt;}
.y2{bottom:111.706667pt;}
.yc9{bottom:116.160000pt;}
.y3a{bottom:116.960000pt;}
.y84{bottom:124.000000pt;}
.ya9{bottom:126.880000pt;}
.y55{bottom:128.000000pt;}
.yc8{bottom:133.920000pt;}
.y39{bottom:134.560000pt;}
.ya8{bottom:144.480000pt;}
.y54{bottom:145.600000pt;}
.y83{bottom:149.600000pt;}
.y38{bottom:152.160000pt;}
.yc7{bottom:157.600000pt;}
.y53{bottom:158.720000pt;}
.yb5{bottom:160.960000pt;}
.ya7{bottom:162.080000pt;}
.y82{bottom:167.200000pt;}
.y37{bottom:169.760000pt;}
.yc6{bottom:175.200000pt;}
.y52{bottom:177.120000pt;}
.yb4{bottom:178.560000pt;}
.ya6{bottom:179.680000pt;}
.y81{bottom:184.800000pt;}
.y36{bottom:187.386667pt;}
.yc5{bottom:192.826667pt;}
.ya5{bottom:195.066667pt;}
.y51{bottom:195.386667pt;}
.yb3{bottom:196.186667pt;}
.y80{bottom:202.426667pt;}
.y35{bottom:205.146667pt;}
.ya4{bottom:208.186667pt;}
.yc4{bottom:210.426667pt;}
.y50{bottom:213.626667pt;}
.yb2{bottom:213.946667pt;}
.y7f{bottom:220.186667pt;}
.y34{bottom:222.746667pt;}
.ya3{bottom:226.586667pt;}
.yc3{bottom:228.186667pt;}
.yb1{bottom:231.546667pt;}
.y7e{bottom:237.786667pt;}
.y33{bottom:240.346667pt;}
.ya2{bottom:244.826667pt;}
.yc2{bottom:245.786667pt;}
.yb0{bottom:249.146667pt;}
.y4f{bottom:249.626667pt;}
.y7d{bottom:255.386667pt;}
.y32{bottom:257.946667pt;}
.ya1{bottom:263.066667pt;}
.yc1{bottom:263.386667pt;}
.yaf{bottom:266.746667pt;}
.y7c{bottom:272.986667pt;}
.y31{bottom:275.546667pt;}
.yc0{bottom:280.986667pt;}
.ya0{bottom:281.466667pt;}
.yae{bottom:284.346667pt;}
.y4c{bottom:285.466667pt;}
.y7b{bottom:290.586667pt;}
.y30{bottom:293.306667pt;}
.ybf{bottom:298.586667pt;}
.y9f{bottom:299.706667pt;}
.y7a{bottom:308.346667pt;}
.y2f{bottom:310.906667pt;}
.ybe{bottom:316.346667pt;}
.yad{bottom:317.306667pt;}
.y4a{bottom:321.466667pt;}
.y9e{bottom:323.226667pt;}
.y79{bottom:325.946667pt;}
.y2e{bottom:328.506667pt;}
.yac{bottom:332.026667pt;}
.ybd{bottom:333.946667pt;}
.y9d{bottom:338.586667pt;}
.y78{bottom:343.546667pt;}
.y2d{bottom:346.106667pt;}
.ybc{bottom:351.546667pt;}
.y9c{bottom:356.186667pt;}
.y48{bottom:357.466667pt;}
.y77{bottom:361.146667pt;}
.y2c{bottom:363.706667pt;}
.ybb{bottom:369.146667pt;}
.y9b{bottom:373.786667pt;}
.y76{bottom:378.746667pt;}
.y47{bottom:380.826667pt;}
.y2b{bottom:381.466667pt;}
.yba{bottom:386.746667pt;}
.y9a{bottom:391.386667pt;}
.y75{bottom:396.546667pt;}
.y46{bottom:398.466667pt;}
.y2a{bottom:399.106667pt;}
.yb9{bottom:404.546667pt;}
.y99{bottom:409.026667pt;}
.y74{bottom:414.146667pt;}
.y45{bottom:416.226667pt;}
.y29{bottom:416.706667pt;}
.yb8{bottom:422.146667pt;}
.y98{bottom:426.786667pt;}
.y73{bottom:431.746667pt;}
.y44{bottom:433.826667pt;}
.y28{bottom:434.306667pt;}
.yb7{bottom:439.746667pt;}
.y97{bottom:444.386667pt;}
.y72{bottom:449.346667pt;}
.y43{bottom:451.426667pt;}
.y27{bottom:451.906667pt;}
.yb6{bottom:457.346667pt;}
.y96{bottom:461.986667pt;}
.y42{bottom:469.026667pt;}
.y26{bottom:469.666667pt;}
.y71{bottom:474.946667pt;}
.y95{bottom:479.586667pt;}
.y41{bottom:486.626667pt;}
.y25{bottom:487.266667pt;}
.y70{bottom:492.706667pt;}
.y94{bottom:497.186667pt;}
.y40{bottom:504.386667pt;}
.y24{bottom:504.866667pt;}
.y6f{bottom:510.306667pt;}
.y93{bottom:514.946667pt;}
.y3f{bottom:521.986667pt;}
.y23{bottom:522.466667pt;}
.y6e{bottom:527.906667pt;}
.y92{bottom:530.306667pt;}
.y3e{bottom:539.586667pt;}
.y22{bottom:540.066667pt;}
.y6d{bottom:545.506667pt;}
.y91{bottom:547.906667pt;}
.y3d{bottom:557.186667pt;}
.y21{bottom:557.826667pt;}
.y6c{bottom:563.106667pt;}
.y90{bottom:565.506667pt;}
.y3c{bottom:574.786667pt;}
.y20{bottom:575.426667pt;}
.y6b{bottom:580.866667pt;}
.y8f{bottom:583.106667pt;}
.y3b{bottom:589.506667pt;}
.y1f{bottom:593.026667pt;}
.y6a{bottom:598.466667pt;}
.y8e{bottom:600.706667pt;}
.y1e{bottom:610.653333pt;}
.y69{bottom:616.093333pt;}
.y8d{bottom:618.333333pt;}
.y1d{bottom:628.253333pt;}
.y68{bottom:633.693333pt;}
.y8c{bottom:636.093333pt;}
.y1c{bottom:646.013333pt;}
.y67{bottom:651.293333pt;}
.y8b{bottom:653.693333pt;}
.y1b{bottom:663.613333pt;}
.y66{bottom:669.053333pt;}
.y8a{bottom:671.293333pt;}
.y1a{bottom:681.213333pt;}
.y65{bottom:686.653333pt;}
.y89{bottom:688.893333pt;}
.y19{bottom:698.813333pt;}
.y64{bottom:704.253333pt;}
.y88{bottom:706.493333pt;}
.y18{bottom:716.413333pt;}
.y63{bottom:721.853333pt;}
.y87{bottom:724.253333pt;}
.y17{bottom:734.173333pt;}
.y62{bottom:739.453333pt;}
.y86{bottom:741.853333pt;}
.y16{bottom:751.773333pt;}
.y61{bottom:757.213333pt;}
.y15{bottom:769.373333pt;}
.y60{bottom:774.813333pt;}
.y14{bottom:786.973333pt;}
.y5f{bottom:792.413333pt;}
.y13{bottom:809.213333pt;}
.y5e{bottom:810.013333pt;}
.y12{bottom:822.853333pt;}
.y5d{bottom:827.653333pt;}
.y11{bottom:842.213333pt;}
.y5c{bottom:845.413333pt;}
.y5b{bottom:863.013333pt;}
.y10{bottom:864.293333pt;}
.y5a{bottom:880.613333pt;}
.yf{bottom:892.453333pt;}
.y59{bottom:898.213333pt;}
.y58{bottom:915.813333pt;}
.y9{bottom:931.333333pt;}
.y1{bottom:944.293333pt;}
.y7{bottom:974.693333pt;}
.h6{height:1.851250pt;}
.hf{height:17.600000pt;}
.h12{height:17.632000pt;}
.h13{height:17.760000pt;}
.hb{height:19.360000pt;}
.hd{height:24.991875pt;}
.h7{height:29.760000pt;}
.h10{height:35.200000pt;}
.h11{height:35.360000pt;}
.he{height:37.479688pt;}
.h8{height:38.413438pt;}
.h14{height:38.672812pt;}
.h4{height:41.543750pt;}
.ha{height:42.578750pt;}
.h15{height:43.108125pt;}
.h9{height:47.310625pt;}
.h3{height:56.445312pt;}
.hc{height:60.057813pt;}
.h5{height:100.032000pt;}
.h2{height:130.432000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w5{width:8.800000pt;}
.w6{width:30.720000pt;}
.wa{width:33.600000pt;}
.wc{width:94.912000pt;}
.w9{width:112.352000pt;}
.w3{width:117.152000pt;}
.w7{width:170.586667pt;}
.w8{width:338.466667pt;}
.wb{width:411.133333pt;}
.w2{width:581.893333pt;}
.w1{width:794.000000pt;}
.w4{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:47.520000pt;}
.x18{left:69.311988pt;}
.xe{left:71.072000pt;}
.x15{left:72.031988pt;}
.x19{left:79.231988pt;}
.x6{left:80.831988pt;}
.x1b{left:85.791988pt;}
.x1a{left:93.311988pt;}
.xf{left:101.792000pt;}
.x4{left:105.146667pt;}
.x12{left:127.232000pt;}
.x13{left:160.826667pt;}
.x17{left:217.506655pt;}
.x9{left:232.066655pt;}
.xd{left:256.866655pt;}
.x10{left:272.386667pt;}
.x7{left:281.506655pt;}
.xa{left:296.386655pt;}
.xc{left:324.546655pt;}
.x8{left:397.053321pt;}
.x14{left:571.973333pt;}
.xb{left:594.053322pt;}
.x11{left:610.853333pt;}
.x16{left:615.173321pt;}
.x3{left:629.413333pt;}
.x5{left:737.440000pt;}
}




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