
    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_c630c5f9e3ae5d77ebd7207a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.030273;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_0b75e476c7ea53494fc6c215.woff')format("woff");}.ff2{font-family:ff2;line-height:0.975586;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_1b6b23fd6ef75dec470af378.woff')format("woff");}.ff3{font-family:ff3;line-height:1.031738;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_095e18bb0919160373ce447a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.972706;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_7832f90b1042336770e462ad.woff')format("woff");}.ff5{font-family:ff5;line-height:1.031738;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_995a0cf3fddf9e0a6aa9f875.woff')format("woff");}.ff6{font-family:ff6;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5359f55643e68e4f70ba5ff5.woff')format("woff");}.ff7{font-family:ff7;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_35b5c0a60dbbd00256852ff9.woff')format("woff");}.ff8{font-family:ff8;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6f683e1772fe3dd63f27440a.woff')format("woff");}.ff9{font-family:ff9;line-height:1.030273;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8a4754e42888c672733c4981.woff')format("woff");}.ffa{font-family:ffa;line-height:1.030273;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e7d8c6835f38f5e35a7caafb.woff')format("woff");}.ffb{font-family:ffb;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.640000px;}
.v2{vertical-align:38.580000px;}
.v3{vertical-align:110.460000px;}
.ls19{letter-spacing:-1.044000px;}
.lsf{letter-spacing:-0.343200px;}
.ls16{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.222600px;}
.lsc{letter-spacing:-0.136800px;}
.ls15{letter-spacing:-0.072000px;}
.lse{letter-spacing:-0.038880px;}
.ls17{letter-spacing:-0.015840px;}
.ls9{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000720px;}
.ls18{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.079200px;}
.ls10{letter-spacing:0.085800px;}
.ls5{letter-spacing:0.105000px;}
.ls12{letter-spacing:0.133200px;}
.ls1{letter-spacing:0.147000px;}
.ls3{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.230400px;}
.ls14{letter-spacing:0.262200px;}
.ls2{letter-spacing:0.282240px;}
.ls4{letter-spacing:0.322560px;}
.ls0{letter-spacing:0.348000px;}
.ls11{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.396000px;}
.ls13{letter-spacing:0.504000px;}
.ls7{letter-spacing:19.998720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-115.328160px;}
.ws1{word-spacing:-115.176960px;}
.ws19{word-spacing:-95.760000px;}
.ws6{word-spacing:-48.023520px;}
.ws17{word-spacing:-47.867760px;}
.ws8{word-spacing:-47.761320px;}
.ws5{word-spacing:-47.636640px;}
.ws3{word-spacing:-47.538720px;}
.ws4{word-spacing:-47.452920px;}
.ws7{word-spacing:-47.332320px;}
.wse{word-spacing:-45.144000px;}
.wsc{word-spacing:-45.000000px;}
.wsb{word-spacing:-44.820000px;}
.wsd{word-spacing:-44.808912px;}
.ws13{word-spacing:-32.544000px;}
.ws12{word-spacing:-29.924520px;}
.ws10{word-spacing:-29.819520px;}
.ws11{word-spacing:-29.579040px;}
.ws0{word-spacing:-29.232000px;}
.wsa{word-spacing:-28.359480px;}
.ws9{word-spacing:-28.212480px;}
.ws1b{word-spacing:-26.784000px;}
.ws1a{word-spacing:-23.748480px;}
.ws15{word-spacing:-21.924000px;}
.ws18{word-spacing:-21.636000px;}
.ws1c{word-spacing:-20.880000px;}
.ws14{word-spacing:-19.439280px;}
.ws1d{word-spacing:0.000000px;}
.ws16{word-spacing:342.518400px;}
.wsf{word-spacing:5936.586720px;}
._24{margin-left:-8.611920px;}
._21{margin-left:-6.768000px;}
._20{margin-left:-3.278160px;}
._0{margin-left:-2.160000px;}
._6{margin-left:-1.031040px;}
._1{width:1.152000px;}
._22{width:2.959920px;}
._12{width:4.836960px;}
._11{width:6.349680px;}
._1d{width:7.568640px;}
._18{width:10.679040px;}
._17{width:11.700000px;}
._5{width:16.142400px;}
._4{width:17.888400px;}
._c{width:21.704400px;}
._a{width:22.865760px;}
._b{width:23.879520px;}
._d{width:24.920640px;}
._13{width:27.454320px;}
._14{width:29.030400px;}
._1a{width:46.260000px;}
._1f{width:47.316000px;}
._1e{width:48.960000px;}
._7{width:56.770560px;}
._f{width:59.456400px;}
._e{width:61.032240px;}
._19{width:79.424640px;}
._9{width:81.595200px;}
._8{width:82.669680px;}
._1c{width:84.519648px;}
._1b{width:85.638528px;}
._3{width:100.869120px;}
._2{width:102.594240px;}
._10{width:138.355920px;}
._15{width:150.533280px;}
._16{width:151.786080px;}
._23{width:1197.622560px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(58,58,58);}
.fse{font-size:72.000000px;}
.fsa{font-size:95.760000px;}
.fsb{font-size:108.000000px;}
.fs6{font-size:113.760000px;}
.fs9{font-size:120.240000px;}
.fs2{font-size:138.240000px;}
.fs0{font-size:144.000000px;}
.fs5{font-size:149.760000px;}
.fsd{font-size:167.760000px;}
.fs7{font-size:180.000000px;}
.fs8{font-size:180.144000px;}
.fs4{font-size:192.240000px;}
.fsc{font-size:228.384000px;}
.fs3{font-size:239.760000px;}
.fs1{font-size:462.240000px;}
.y0{bottom:0.000000px;}
.y80{bottom:33.624000px;}
.y17{bottom:39.096000px;}
.y16{bottom:81.936000px;}
.y68{bottom:92.625000px;}
.y6b{bottom:92.670000px;}
.y5c{bottom:92.955000px;}
.y63{bottom:92.985000px;}
.y97{bottom:93.030000px;}
.y5a{bottom:93.060000px;}
.y65{bottom:93.090000px;}
.y15{bottom:134.136000px;}
.y9b{bottom:179.430000px;}
.y9a{bottom:208.230000px;}
.y72{bottom:265.755000px;}
.y70{bottom:294.555000px;}
.y6e{bottom:322.995000px;}
.ya0{bottom:409.110000px;}
.y9f{bottom:466.890000px;}
.y9e{bottom:561.165000px;}
.y2a{bottom:631.905000px;}
.y29{bottom:670.425000px;}
.y1e{bottom:681.045000px;}
.y28{bottom:721.005000px;}
.y1d{bottom:740.445000px;}
.y27{bottom:759.525000px;}
.y26{bottom:798.045000px;}
.y1c{bottom:799.845000px;}
.y25{bottom:848.670000px;}
.y1b{bottom:859.290000px;}
.y24{bottom:887.190000px;}
.y1a{bottom:918.690000px;}
.y23{bottom:925.710000px;}
.y22{bottom:976.110000px;}
.y19{bottom:978.090000px;}
.y6d{bottom:1013.040000px;}
.y21{bottom:1014.630000px;}
.y18{bottom:1037.490000px;}
.y20{bottom:1053.150000px;}
.y99{bottom:1095.660000px;}
.y1f{bottom:1127.880000px;}
.y60{bottom:1189.980000px;}
.y67{bottom:1193.220000px;}
.y58{bottom:1227.165000px;}
.y5e{bottom:1234.080000px;}
.y66{bottom:1237.320000px;}
.y57{bottom:1248.765000px;}
.y98{bottom:1250.460000px;}
.y5b{bottom:1278.180000px;}
.y73{bottom:1278.795000px;}
.y64{bottom:1281.420000px;}
.y61{bottom:1282.935000px;}
.y6a{bottom:1284.480000px;}
.y96{bottom:1290.060000px;}
.y71{bottom:1307.595000px;}
.y8a{bottom:1313.670000px;}
.y59{bottom:1322.460000px;}
.y62{bottom:1325.880000px;}
.y5f{bottom:1327.035000px;}
.y95{bottom:1329.840000px;}
.y6f{bottom:1336.035000px;}
.y89{bottom:1347.690000px;}
.y8c{bottom:1354.470000px;}
.y5d{bottom:1371.135000px;}
.y6c{bottom:1377.150000px;}
.y8b{bottom:1386.870000px;}
.y69{bottom:1418.505000px;}
.y8d{bottom:1510.305000px;}
.y8f{bottom:1534.065000px;}
.y8e{bottom:1566.510000px;}
.y92{bottom:1660.755000px;}
.y91{bottom:1689.915000px;}
.y94{bottom:1713.705000px;}
.y90{bottom:1719.075000px;}
.y56{bottom:1725.270000px;}
.y54{bottom:1726.095000px;}
.y50{bottom:1743.375000px;}
.y93{bottom:1746.105000px;}
.y9d{bottom:1767.855000px;}
.y53{bottom:1778.295000px;}
.y9c{bottom:1812.345000px;}
.y55{bottom:1829.190000px;}
.y52{bottom:1829.595000px;}
.y4f{bottom:1836.210000px;}
.y4e{bottom:1891.875000px;}
.y51{bottom:1919.490000px;}
.y88{bottom:2184.330000px;}
.y2d{bottom:2206.800000px;}
.y87{bottom:2227.530000px;}
.y83{bottom:2229.810000px;}
.y2e{bottom:2231.460000px;}
.y2c{bottom:2250.000000px;}
.y86{bottom:2359.440000px;}
.y85{bottom:2391.840000px;}
.y48{bottom:2539.950000px;}
.y7f{bottom:2555.745000px;}
.y3d{bottom:2599.950000px;}
.y35{bottom:2602.155000px;}
.y79{bottom:2625.765000px;}
.y3c{bottom:2628.750000px;}
.y34{bottom:2630.955000px;}
.y7d{bottom:2636.310000px;}
.y78{bottom:2654.565000px;}
.y7c{bottom:2668.710000px;}
.y3b{bottom:2680.200000px;}
.y49{bottom:2681.460000px;}
.y33{bottom:2682.105000px;}
.y77{bottom:2683.365000px;}
.y4b{bottom:2693.595000px;}
.y47{bottom:2705.835000px;}
.y40{bottom:2712.990000px;}
.y37{bottom:2731.110000px;}
.y46{bottom:2731.755000px;}
.y3a{bottom:2745.105000px;}
.y3f{bottom:2745.390000px;}
.y32{bottom:2747.010000px;}
.y7e{bottom:2760.195000px;}
.y36{bottom:2763.510000px;}
.y3e{bottom:2777.790000px;}
.y45{bottom:2782.230000px;}
.y44{bottom:2808.150000px;}
.y41{bottom:2811.855000px;}
.y38{bottom:2813.760000px;}
.y76{bottom:2833.920000px;}
.y7b{bottom:2834.250000px;}
.y43{bottom:2858.610000px;}
.y75{bottom:2866.320000px;}
.y7a{bottom:2866.650000px;}
.y39{bottom:2877.660000px;}
.y31{bottom:2879.565000px;}
.y42{bottom:2884.530000px;}
.y2{bottom:2935.080000px;}
.y4d{bottom:2960.070000px;}
.y1{bottom:2978.280000px;}
.y30{bottom:2980.230000px;}
.y82{bottom:3122.310000px;}
.y4a{bottom:3146.220000px;}
.y84{bottom:3163.860000px;}
.y81{bottom:3176.820000px;}
.y2f{bottom:3261.570000px;}
.y4c{bottom:3350.730000px;}
.y2b{bottom:3498.480000px;}
.yd{bottom:3663.690000px;}
.yc{bottom:3727.050000px;}
.y14{bottom:3728.700000px;}
.yb{bottom:3790.410000px;}
.y13{bottom:3792.060000px;}
.ya{bottom:3853.770000px;}
.y12{bottom:3855.420000px;}
.y9{bottom:3917.130000px;}
.y11{bottom:3918.780000px;}
.y8{bottom:3980.490000px;}
.y10{bottom:3982.140000px;}
.y7{bottom:4043.850000px;}
.yf{bottom:4045.500000px;}
.y6{bottom:4137.480000px;}
.ye{bottom:4144.650000px;}
.y74{bottom:4268.490000px;}
.y5{bottom:4338.795000px;}
.y4{bottom:4414.575000px;}
.y3{bottom:4511.595000px;}
.h16{height:62.402344px;}
.h1c{height:76.823086px;}
.h19{height:80.703984px;}
.h18{height:80.937773px;}
.h13{height:82.265625px;}
.hf{height:82.995117px;}
.h1b{height:86.642578px;}
.h8{height:91.263516px;}
.h10{height:93.603516px;}
.hc{height:96.462070px;}
.h15{height:101.628633px;}
.h4{height:110.902500px;}
.h7{height:114.075000px;}
.h11{height:121.575117px;}
.h2{height:121.710938px;}
.h1d{height:124.804688px;}
.h9{height:144.404297px;}
.ha{height:144.519820px;}
.he{height:146.432813px;}
.hd{height:147.445312px;}
.h6{height:154.223789px;}
.h12{height:173.964375px;}
.h5{height:182.629687px;}
.h17{height:201.780000px;}
.hb{height:209.269688px;}
.h14{height:212.088633px;}
.h3{height:352.096875px;}
.h1e{height:403.380000px;}
.h1a{height:604.980000px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w5{width:138.240000px;}
.w3{width:142.200000px;}
.w8{width:225.720000px;}
.w4{width:281.340000px;}
.w6{width:376.020000px;}
.w9{width:405.180000px;}
.w7{width:459.180000px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x31{left:10.905000px;}
.x48{left:92.159947px;}
.x3{left:221.249947px;}
.x25{left:246.989947px;}
.x3c{left:317.805000px;}
.x50{left:345.389947px;}
.x52{left:349.889947px;}
.x53{left:357.629947px;}
.x51{left:363.569947px;}
.x39{left:439.710000px;}
.x4f{left:494.204947px;}
.x26{left:537.869947px;}
.x49{left:758.669947px;}
.x4a{left:769.034947px;}
.x30{left:890.280000px;}
.x33{left:918.824947px;}
.x34{left:931.604947px;}
.x32{left:1032.300000px;}
.x24{left:1126.154947px;}
.x8{left:1198.364947px;}
.x1{left:1252.694947px;}
.x1f{left:1315.874947px;}
.x20{left:1357.304947px;}
.x28{left:1379.159947px;}
.x29{left:1381.169947px;}
.x2{left:1389.134947px;}
.x35{left:1409.040000px;}
.x2f{left:1413.539947px;}
.x1e{left:1475.609947px;}
.x21{left:1484.714947px;}
.x36{left:1547.100000px;}
.xb{left:1550.669947px;}
.x23{left:1625.189947px;}
.x2a{left:1665.329947px;}
.x17{left:1773.179947px;}
.x18{left:1782.899947px;}
.x16{left:1788.659947px;}
.x19{left:1806.839947px;}
.x1d{left:1814.759947px;}
.x14{left:1818.209947px;}
.x22{left:1847.954947px;}
.x15{left:1879.049947px;}
.x2b{left:1917.749947px;}
.x5{left:1920.629947px;}
.x4{left:1933.919947px;}
.x37{left:2018.700000px;}
.x7{left:2021.759947px;}
.x3b{left:2044.904947px;}
.x1b{left:2046.344947px;}
.x3a{left:2052.284947px;}
.x1c{left:2057.144947px;}
.x1a{left:2058.224947px;}
.x2c{left:2063.339947px;}
.x3d{left:2075.324947px;}
.x3e{left:2135.084947px;}
.x38{left:2179.544947px;}
.x9{left:2284.379947px;}
.xa{left:2316.239947px;}
.xf{left:2318.684947px;}
.xd{left:2323.469947px;}
.xe{left:2329.304947px;}
.x11{left:2347.484947px;}
.x10{left:2362.244947px;}
.x2d{left:2503.289947px;}
.x2e{left:2505.704947px;}
.x6{left:2547.029947px;}
.x54{left:2573.460000px;}
.x12{left:2575.289947px;}
.x13{left:2603.909947px;}
.x56{left:2677.169947px;}
.x4b{left:2730.029947px;}
.x55{left:2799.000000px;}
.x43{left:2889.254947px;}
.xc{left:2904.089947px;}
.x44{left:2921.654947px;}
.x42{left:2937.389947px;}
.x41{left:2938.469947px;}
.x46{left:2940.194947px;}
.x4c{left:3065.579947px;}
.x27{left:3069.569947px;}
.x4e{left:3073.604947px;}
.x4d{left:3082.784947px;}
.x57{left:3090.494947px;}
.x3f{left:3094.949947px;}
.x40{left:3109.709947px;}
.x47{left:3111.119947px;}
.x45{left:3137.249947px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.680000pt;}
.v2{vertical-align:34.293333pt;}
.v3{vertical-align:98.186667pt;}
.ls19{letter-spacing:-0.928000pt;}
.lsf{letter-spacing:-0.305067pt;}
.ls16{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.197867pt;}
.lsc{letter-spacing:-0.121600pt;}
.ls15{letter-spacing:-0.064000pt;}
.lse{letter-spacing:-0.034560pt;}
.ls17{letter-spacing:-0.014080pt;}
.ls9{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000640pt;}
.ls18{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.070400pt;}
.ls10{letter-spacing:0.076267pt;}
.ls5{letter-spacing:0.093333pt;}
.ls12{letter-spacing:0.118400pt;}
.ls1{letter-spacing:0.130667pt;}
.ls3{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.204800pt;}
.ls14{letter-spacing:0.233067pt;}
.ls2{letter-spacing:0.250880pt;}
.ls4{letter-spacing:0.286720pt;}
.ls0{letter-spacing:0.309333pt;}
.ls11{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.352000pt;}
.ls13{letter-spacing:0.448000pt;}
.ls7{letter-spacing:17.776640pt;}
.ws2{word-spacing:-102.513920pt;}
.ws1{word-spacing:-102.379520pt;}
.ws19{word-spacing:-85.120000pt;}
.ws6{word-spacing:-42.687573pt;}
.ws17{word-spacing:-42.549120pt;}
.ws8{word-spacing:-42.454507pt;}
.ws5{word-spacing:-42.343680pt;}
.ws3{word-spacing:-42.256640pt;}
.ws4{word-spacing:-42.180373pt;}
.ws7{word-spacing:-42.073173pt;}
.wse{word-spacing:-40.128000pt;}
.wsc{word-spacing:-40.000000pt;}
.wsb{word-spacing:-39.840000pt;}
.wsd{word-spacing:-39.830144pt;}
.ws13{word-spacing:-28.928000pt;}
.ws12{word-spacing:-26.599573pt;}
.ws10{word-spacing:-26.506240pt;}
.ws11{word-spacing:-26.292480pt;}
.ws0{word-spacing:-25.984000pt;}
.wsa{word-spacing:-25.208427pt;}
.ws9{word-spacing:-25.077760pt;}
.ws1b{word-spacing:-23.808000pt;}
.ws1a{word-spacing:-21.109760pt;}
.ws15{word-spacing:-19.488000pt;}
.ws18{word-spacing:-19.232000pt;}
.ws1c{word-spacing:-18.560000pt;}
.ws14{word-spacing:-17.279360pt;}
.ws1d{word-spacing:0.000000pt;}
.ws16{word-spacing:304.460800pt;}
.wsf{word-spacing:5276.965973pt;}
._24{margin-left:-7.655040pt;}
._21{margin-left:-6.016000pt;}
._20{margin-left:-2.913920pt;}
._0{margin-left:-1.920000pt;}
._6{margin-left:-0.916480pt;}
._1{width:1.024000pt;}
._22{width:2.631040pt;}
._12{width:4.299520pt;}
._11{width:5.644160pt;}
._1d{width:6.727680pt;}
._18{width:9.492480pt;}
._17{width:10.400000pt;}
._5{width:14.348800pt;}
._4{width:15.900800pt;}
._c{width:19.292800pt;}
._a{width:20.325120pt;}
._b{width:21.226240pt;}
._d{width:22.151680pt;}
._13{width:24.403840pt;}
._14{width:25.804800pt;}
._1a{width:41.120000pt;}
._1f{width:42.058667pt;}
._1e{width:43.520000pt;}
._7{width:50.462720pt;}
._f{width:52.850133pt;}
._e{width:54.250880pt;}
._19{width:70.599680pt;}
._9{width:72.529067pt;}
._8{width:73.484160pt;}
._1c{width:75.128576pt;}
._1b{width:76.123136pt;}
._3{width:89.661440pt;}
._2{width:91.194880pt;}
._10{width:122.983040pt;}
._15{width:133.807360pt;}
._16{width:134.920960pt;}
._23{width:1064.553387pt;}
.fse{font-size:64.000000pt;}
.fsa{font-size:85.120000pt;}
.fsb{font-size:96.000000pt;}
.fs6{font-size:101.120000pt;}
.fs9{font-size:106.880000pt;}
.fs2{font-size:122.880000pt;}
.fs0{font-size:128.000000pt;}
.fs5{font-size:133.120000pt;}
.fsd{font-size:149.120000pt;}
.fs7{font-size:160.000000pt;}
.fs8{font-size:160.128000pt;}
.fs4{font-size:170.880000pt;}
.fsc{font-size:203.008000pt;}
.fs3{font-size:213.120000pt;}
.fs1{font-size:410.880000pt;}
.y0{bottom:0.000000pt;}
.y80{bottom:29.888000pt;}
.y17{bottom:34.752000pt;}
.y16{bottom:72.832000pt;}
.y68{bottom:82.333333pt;}
.y6b{bottom:82.373333pt;}
.y5c{bottom:82.626667pt;}
.y63{bottom:82.653333pt;}
.y97{bottom:82.693333pt;}
.y5a{bottom:82.720000pt;}
.y65{bottom:82.746667pt;}
.y15{bottom:119.232000pt;}
.y9b{bottom:159.493333pt;}
.y9a{bottom:185.093333pt;}
.y72{bottom:236.226667pt;}
.y70{bottom:261.826667pt;}
.y6e{bottom:287.106667pt;}
.ya0{bottom:363.653333pt;}
.y9f{bottom:415.013333pt;}
.y9e{bottom:498.813333pt;}
.y2a{bottom:561.693333pt;}
.y29{bottom:595.933333pt;}
.y1e{bottom:605.373333pt;}
.y28{bottom:640.893333pt;}
.y1d{bottom:658.173333pt;}
.y27{bottom:675.133333pt;}
.y26{bottom:709.373333pt;}
.y1c{bottom:710.973333pt;}
.y25{bottom:754.373333pt;}
.y1b{bottom:763.813333pt;}
.y24{bottom:788.613333pt;}
.y1a{bottom:816.613333pt;}
.y23{bottom:822.853333pt;}
.y22{bottom:867.653333pt;}
.y19{bottom:869.413333pt;}
.y6d{bottom:900.480000pt;}
.y21{bottom:901.893333pt;}
.y18{bottom:922.213333pt;}
.y20{bottom:936.133333pt;}
.y99{bottom:973.920000pt;}
.y1f{bottom:1002.560000pt;}
.y60{bottom:1057.760000pt;}
.y67{bottom:1060.640000pt;}
.y58{bottom:1090.813333pt;}
.y5e{bottom:1096.960000pt;}
.y66{bottom:1099.840000pt;}
.y57{bottom:1110.013333pt;}
.y98{bottom:1111.520000pt;}
.y5b{bottom:1136.160000pt;}
.y73{bottom:1136.706667pt;}
.y64{bottom:1139.040000pt;}
.y61{bottom:1140.386667pt;}
.y6a{bottom:1141.760000pt;}
.y96{bottom:1146.720000pt;}
.y71{bottom:1162.306667pt;}
.y8a{bottom:1167.706667pt;}
.y59{bottom:1175.520000pt;}
.y62{bottom:1178.560000pt;}
.y5f{bottom:1179.586667pt;}
.y95{bottom:1182.080000pt;}
.y6f{bottom:1187.586667pt;}
.y89{bottom:1197.946667pt;}
.y8c{bottom:1203.973333pt;}
.y5d{bottom:1218.786667pt;}
.y6c{bottom:1224.133333pt;}
.y8b{bottom:1232.773333pt;}
.y69{bottom:1260.893333pt;}
.y8d{bottom:1342.493333pt;}
.y8f{bottom:1363.613333pt;}
.y8e{bottom:1392.453333pt;}
.y92{bottom:1476.226667pt;}
.y91{bottom:1502.146667pt;}
.y94{bottom:1523.293333pt;}
.y90{bottom:1528.066667pt;}
.y56{bottom:1533.573333pt;}
.y54{bottom:1534.306667pt;}
.y50{bottom:1549.666667pt;}
.y93{bottom:1552.093333pt;}
.y9d{bottom:1571.426667pt;}
.y53{bottom:1580.706667pt;}
.y9c{bottom:1610.973333pt;}
.y55{bottom:1625.946667pt;}
.y52{bottom:1626.306667pt;}
.y4f{bottom:1632.186667pt;}
.y4e{bottom:1681.666667pt;}
.y51{bottom:1706.213333pt;}
.y88{bottom:1941.626667pt;}
.y2d{bottom:1961.600000pt;}
.y87{bottom:1980.026667pt;}
.y83{bottom:1982.053333pt;}
.y2e{bottom:1983.520000pt;}
.y2c{bottom:2000.000000pt;}
.y86{bottom:2097.280000pt;}
.y85{bottom:2126.080000pt;}
.y48{bottom:2257.733333pt;}
.y7f{bottom:2271.773333pt;}
.y3d{bottom:2311.066667pt;}
.y35{bottom:2313.026667pt;}
.y79{bottom:2334.013333pt;}
.y3c{bottom:2336.666667pt;}
.y34{bottom:2338.626667pt;}
.y7d{bottom:2343.386667pt;}
.y78{bottom:2359.613333pt;}
.y7c{bottom:2372.186667pt;}
.y3b{bottom:2382.400000pt;}
.y49{bottom:2383.520000pt;}
.y33{bottom:2384.093333pt;}
.y77{bottom:2385.213333pt;}
.y4b{bottom:2394.306667pt;}
.y47{bottom:2405.186667pt;}
.y40{bottom:2411.546667pt;}
.y37{bottom:2427.653333pt;}
.y46{bottom:2428.226667pt;}
.y3a{bottom:2440.093333pt;}
.y3f{bottom:2440.346667pt;}
.y32{bottom:2441.786667pt;}
.y7e{bottom:2453.506667pt;}
.y36{bottom:2456.453333pt;}
.y3e{bottom:2469.146667pt;}
.y45{bottom:2473.093333pt;}
.y44{bottom:2496.133333pt;}
.y41{bottom:2499.426667pt;}
.y38{bottom:2501.120000pt;}
.y76{bottom:2519.040000pt;}
.y7b{bottom:2519.333333pt;}
.y43{bottom:2540.986667pt;}
.y75{bottom:2547.840000pt;}
.y7a{bottom:2548.133333pt;}
.y39{bottom:2557.920000pt;}
.y31{bottom:2559.613333pt;}
.y42{bottom:2564.026667pt;}
.y2{bottom:2608.960000pt;}
.y4d{bottom:2631.173333pt;}
.y1{bottom:2647.360000pt;}
.y30{bottom:2649.093333pt;}
.y82{bottom:2775.386667pt;}
.y4a{bottom:2796.640000pt;}
.y84{bottom:2812.320000pt;}
.y81{bottom:2823.840000pt;}
.y2f{bottom:2899.173333pt;}
.y4c{bottom:2978.426667pt;}
.y2b{bottom:3109.760000pt;}
.yd{bottom:3256.613333pt;}
.yc{bottom:3312.933333pt;}
.y14{bottom:3314.400000pt;}
.yb{bottom:3369.253333pt;}
.y13{bottom:3370.720000pt;}
.ya{bottom:3425.573333pt;}
.y12{bottom:3427.040000pt;}
.y9{bottom:3481.893333pt;}
.y11{bottom:3483.360000pt;}
.y8{bottom:3538.213333pt;}
.y10{bottom:3539.680000pt;}
.y7{bottom:3594.533333pt;}
.yf{bottom:3596.000000pt;}
.y6{bottom:3677.760000pt;}
.ye{bottom:3684.133333pt;}
.y74{bottom:3794.213333pt;}
.y5{bottom:3856.706667pt;}
.y4{bottom:3924.066667pt;}
.y3{bottom:4010.306667pt;}
.h16{height:55.468750pt;}
.h1c{height:68.287188pt;}
.h19{height:71.736875pt;}
.h18{height:71.944688pt;}
.h13{height:73.125000pt;}
.hf{height:73.773438pt;}
.h1b{height:77.015625pt;}
.h8{height:81.123125pt;}
.h10{height:83.203125pt;}
.hc{height:85.744062pt;}
.h15{height:90.336562pt;}
.h4{height:98.580000pt;}
.h7{height:101.400000pt;}
.h11{height:108.066771pt;}
.h2{height:108.187500pt;}
.h1d{height:110.937500pt;}
.h9{height:128.359375pt;}
.ha{height:128.462063pt;}
.he{height:130.162500pt;}
.hd{height:131.062500pt;}
.h6{height:137.087812pt;}
.h12{height:154.635000pt;}
.h5{height:162.337500pt;}
.h17{height:179.360000pt;}
.hb{height:186.017500pt;}
.h14{height:188.523229pt;}
.h3{height:312.975000pt;}
.h1e{height:358.560000pt;}
.h1a{height:537.760000pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w5{width:122.880000pt;}
.w3{width:126.400000pt;}
.w8{width:200.640000pt;}
.w4{width:250.080000pt;}
.w6{width:334.240000pt;}
.w9{width:360.160000pt;}
.w7{width:408.160000pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x31{left:9.693333pt;}
.x48{left:81.919953pt;}
.x3{left:196.666619pt;}
.x25{left:219.546619pt;}
.x3c{left:282.493333pt;}
.x50{left:307.013286pt;}
.x52{left:311.013286pt;}
.x53{left:317.893286pt;}
.x51{left:323.173286pt;}
.x39{left:390.853333pt;}
.x4f{left:439.293286pt;}
.x26{left:478.106619pt;}
.x49{left:674.373286pt;}
.x4a{left:683.586619pt;}
.x30{left:791.360000pt;}
.x33{left:816.733286pt;}
.x34{left:828.093286pt;}
.x32{left:917.600000pt;}
.x24{left:1001.026619pt;}
.x8{left:1065.213286pt;}
.x1{left:1113.506619pt;}
.x1f{left:1169.666619pt;}
.x20{left:1206.493286pt;}
.x28{left:1225.919953pt;}
.x29{left:1227.706619pt;}
.x2{left:1234.786619pt;}
.x35{left:1252.480000pt;}
.x2f{left:1256.479953pt;}
.x1e{left:1311.653286pt;}
.x21{left:1319.746619pt;}
.x36{left:1375.200000pt;}
.xb{left:1378.373286pt;}
.x23{left:1444.613286pt;}
.x2a{left:1480.293286pt;}
.x17{left:1576.159953pt;}
.x18{left:1584.799953pt;}
.x16{left:1589.919953pt;}
.x19{left:1606.079953pt;}
.x1d{left:1613.119953pt;}
.x14{left:1616.186619pt;}
.x22{left:1642.626619pt;}
.x15{left:1670.266619pt;}
.x2b{left:1704.666619pt;}
.x5{left:1707.226619pt;}
.x4{left:1719.039953pt;}
.x37{left:1794.400000pt;}
.x7{left:1797.119953pt;}
.x3b{left:1817.693286pt;}
.x1b{left:1818.973286pt;}
.x3a{left:1824.253286pt;}
.x1c{left:1828.573286pt;}
.x1a{left:1829.533286pt;}
.x2c{left:1834.079953pt;}
.x3d{left:1844.733286pt;}
.x3e{left:1897.853286pt;}
.x38{left:1937.373286pt;}
.x9{left:2030.559953pt;}
.xa{left:2058.879953pt;}
.xf{left:2061.053286pt;}
.xd{left:2065.306619pt;}
.xe{left:2070.493286pt;}
.x11{left:2086.653286pt;}
.x10{left:2099.773286pt;}
.x2d{left:2225.146619pt;}
.x2e{left:2227.293286pt;}
.x6{left:2264.026619pt;}
.x54{left:2287.520000pt;}
.x12{left:2289.146619pt;}
.x13{left:2314.586619pt;}
.x56{left:2379.706619pt;}
.x4b{left:2426.693286pt;}
.x55{left:2488.000000pt;}
.x43{left:2568.226619pt;}
.xc{left:2581.413286pt;}
.x44{left:2597.026619pt;}
.x42{left:2611.013286pt;}
.x41{left:2611.973286pt;}
.x46{left:2613.506619pt;}
.x4c{left:2724.959953pt;}
.x27{left:2728.506619pt;}
.x4e{left:2732.093286pt;}
.x4d{left:2740.253286pt;}
.x57{left:2747.106619pt;}
.x3f{left:2751.066619pt;}
.x40{left:2764.186619pt;}
.x47{left:2765.439953pt;}
.x45{left:2788.666619pt;}
}




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