
    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_6ef97effc461031d74401306.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941406;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_7819f1288a708cd3678998e0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_33d7f6a6a78a04663f3b4dcd.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e0b890c44a840ee803dc7dc8.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6b1fd5e2c3dbbffe86039f26.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_b0b317da3acd89d7df84752c.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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:6.660000px;}
.v2{vertical-align:66.000000px;}
.lsc{letter-spacing:-2.832000px;}
.ls9{letter-spacing:-2.622000px;}
.ls8{letter-spacing:-1.716000px;}
.lsf{letter-spacing:-1.632000px;}
.ls1{letter-spacing:-0.119400px;}
.ls0{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.042600px;}
.ls12{letter-spacing:0.084300px;}
.ls10{letter-spacing:0.288600px;}
.ls2{letter-spacing:0.567900px;}
.ls7{letter-spacing:0.717300px;}
.lsa{letter-spacing:0.870000px;}
.ls4{letter-spacing:1.290000px;}
.ls3{letter-spacing:1.374000px;}
.lsb{letter-spacing:2.382000px;}
.ls5{letter-spacing:42.772500px;}
.ls13{letter-spacing:47.295000px;}
.ls11{letter-spacing:47.347500px;}
.lsd{letter-spacing:47.445000px;}
.lse{letter-spacing:47.497500px;}
.ls6{letter-spacing:52.222500px;}
.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;}
}
.ws18{word-spacing:-50.165100px;}
.ws1{word-spacing:-45.000000px;}
.ws1c{word-spacing:-41.366400px;}
.ws9{word-spacing:-29.684700px;}
.ws12{word-spacing:-28.433700px;}
.ws6{word-spacing:-28.391400px;}
.ws3{word-spacing:-27.686700px;}
.ws1b{word-spacing:-26.312700px;}
.ws15{word-spacing:-25.061700px;}
.ws2{word-spacing:-23.810700px;}
.wsd{word-spacing:-20.978700px;}
.ws16{word-spacing:-20.346300px;}
.ws13{word-spacing:-20.057700px;}
.ws14{word-spacing:-20.016000px;}
.wsb{word-spacing:-16.304700px;}
.wsa{word-spacing:-16.263000px;}
.ws4{word-spacing:-8.092800px;}
.ws5{word-spacing:-8.007600px;}
.wsc{word-spacing:-3.880800px;}
.ws1f{word-spacing:-3.147750px;}
.ws0{word-spacing:0.000000px;}
.ws1d{word-spacing:0.153750px;}
.ws1e{word-spacing:0.246150px;}
.ws7{word-spacing:1.273200px;}
.ws1a{word-spacing:4.477200px;}
.ws19{word-spacing:4.562400px;}
.ws8{word-spacing:24.523200px;}
.ws11{word-spacing:67.244550px;}
.wse{word-spacing:70.711350px;}
.ws10{word-spacing:78.071850px;}
.wsf{word-spacing:84.861300px;}
.ws17{word-spacing:561.082200px;}
._9{margin-left:-5.911200px;}
._3{margin-left:-4.905600px;}
._0{margin-left:-3.679200px;}
._2{margin-left:-2.146200px;}
._5{margin-left:-1.062600px;}
._1{width:1.839600px;}
._4{width:3.219300px;}
._7{width:4.226100px;}
._a{width:5.701050px;}
._8{width:6.963900px;}
._b{width:52.176150px;}
._c{width:75.962550px;}
._f{width:95.812200px;}
._20{width:106.252950px;}
._d{width:108.897900px;}
._16{width:148.964400px;}
._11{width:154.298700px;}
._14{width:157.894050px;}
._1d{width:182.445900px;}
._10{width:189.979650px;}
._1f{width:191.230050px;}
._1e{width:210.431100px;}
._18{width:234.565200px;}
._e{width:239.029050px;}
._19{width:248.067000px;}
._1b{width:265.455900px;}
._1a{width:325.131750px;}
._1c{width:345.189450px;}
._13{width:381.850500px;}
._15{width:388.985400px;}
._12{width:468.176700px;}
._17{width:475.703400px;}
._6{width:1637.181000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fse{font-size:58.500000px;}
.fsf{font-size:58.650000px;}
.fs14{font-size:72.000000px;}
.fs12{font-size:72.150000px;}
.fs10{font-size:76.650000px;}
.fs4{font-size:85.650000px;}
.fs16{font-size:85.800000px;}
.fs11{font-size:90.150000px;}
.fs7{font-size:94.650000px;}
.fs8{font-size:94.800000px;}
.fsc{font-size:103.650000px;}
.fs2{font-size:108.150000px;}
.fs1{font-size:108.300000px;}
.fs17{font-size:121.800000px;}
.fsb{font-size:135.150000px;}
.fs9{font-size:139.800000px;}
.fs13{font-size:144.300000px;}
.fs15{font-size:148.800000px;}
.fs0{font-size:153.300000px;}
.fs3{font-size:162.300000px;}
.fsd{font-size:166.800000px;}
.fsa{font-size:175.800000px;}
.fs5{font-size:180.300000px;}
.fs6{font-size:180.450000px;}
.y0{bottom:0.000000px;}
.y73{bottom:12.075000px;}
.y71{bottom:13.575000px;}
.y45{bottom:14.587500px;}
.yb{bottom:20.437500px;}
.y6b{bottom:31.237500px;}
.y44{bottom:32.625000px;}
.y42{bottom:33.525000px;}
.y35{bottom:43.575000px;}
.ya{bottom:46.387500px;}
.y5a{bottom:50.700000px;}
.y41{bottom:51.562500px;}
.y6a{bottom:52.650000px;}
.y29{bottom:53.962500px;}
.y8f{bottom:60.112500px;}
.y40{bottom:69.600000px;}
.y9{bottom:71.175000px;}
.y69{bottom:74.062500px;}
.y59{bottom:76.612500px;}
.y11{bottom:82.725000px;}
.y8e{bottom:83.775000px;}
.y34{bottom:86.400000px;}
.y3f{bottom:87.600000px;}
.y1c{bottom:92.025000px;}
.y68{bottom:95.475000px;}
.y8{bottom:95.962500px;}
.y3e{bottom:105.637500px;}
.y28{bottom:108.037500px;}
.y10{bottom:108.675000px;}
.ya8{bottom:110.925000px;}
.y7{bottom:121.875000px;}
.y33{bottom:129.225000px;}
.y66{bottom:132.037500px;}
.ybf{bottom:133.275000px;}
.y5{bottom:137.400000px;}
.y58{bottom:137.887500px;}
.y1b{bottom:141.600000px;}
.y97{bottom:148.162500px;}
.y9c{bottom:150.375000px;}
.ya0{bottom:150.900000px;}
.y9e{bottom:154.200000px;}
.y27{bottom:156.525000px;}
.y57{bottom:163.125000px;}
.y8c{bottom:168.750000px;}
.yb7{bottom:169.920000px;}
.y4{bottom:170.100000px;}
.y32{bottom:172.050000px;}
.y96{bottom:174.075000px;}
.y9b{bottom:175.155000px;}
.y9f{bottom:176.805000px;}
.y9d{bottom:180.120000px;}
.y5c{bottom:183.030000px;}
.y65{bottom:186.150000px;}
.y56{bottom:188.400000px;}
.ybe{bottom:188.475000px;}
.yb6{bottom:194.700000px;}
.y39{bottom:197.325000px;}
.y9a{bottom:201.075000px;}
.y3{bottom:202.800000px;}
.y26{bottom:206.100000px;}
.yf{bottom:211.500000px;}
.y55{bottom:213.645000px;}
.y31{bottom:214.875000px;}
.y5d{bottom:216.030000px;}
.y1f{bottom:216.405000px;}
.y8b{bottom:218.325000px;}
.yb5{bottom:219.495000px;}
.ye{bottom:236.280000px;}
.y54{bottom:238.875000px;}
.y64{bottom:241.350000px;}
.ybd{bottom:243.720000px;}
.yb4{bottom:245.400000px;}
.y1e{bottom:247.950000px;}
.y38{bottom:250.275000px;}
.y6f{bottom:251.550000px;}
.y25{bottom:256.830000px;}
.y30{bottom:257.700000px;}
.yd{bottom:261.120000px;}
.y53{bottom:264.120000px;}
.y8a{bottom:266.820000px;}
.yb3{bottom:270.225000px;}
.y1d{bottom:279.525000px;}
.y7d{bottom:284.370000px;}
.ya7{bottom:286.095000px;}
.yc{bottom:287.025000px;}
.y52{bottom:289.395000px;}
.yb2{bottom:296.145000px;}
.y85{bottom:297.645000px;}
.ybc{bottom:298.950000px;}
.y2f{bottom:300.525000px;}
.y67{bottom:301.800000px;}
.y37{bottom:302.145000px;}
.y7c{bottom:308.820000px;}
.y24{bottom:309.780000px;}
.yb8{bottom:310.755000px;}
.ya6{bottom:312.000000px;}
.y51{bottom:314.625000px;}
.y4b{bottom:314.775000px;}
.y89{bottom:316.395000px;}
.yb1{bottom:320.925000px;}
.y84{bottom:322.125000px;}
.y16{bottom:323.925000px;}
.y7b{bottom:333.300000px;}
.y1a{bottom:337.725000px;}
.y4a{bottom:338.445000px;}
.y50{bottom:339.870000px;}
.y95{bottom:341.625000px;}
.y2e{bottom:343.395000px;}
.yb0{bottom:345.720000px;}
.y83{bottom:346.620000px;}
.ya9{bottom:349.620000px;}
.y15{bottom:349.845000px;}
.y63{bottom:351.825000px;}
.y36{bottom:353.970000px;}
.ybb{bottom:354.150000px;}
.y7a{bottom:357.780000px;}
.y2{bottom:359.220000px;}
.y23{bottom:359.400000px;}
.y49{bottom:362.145000px;}
.y4f{bottom:364.425000px;}
.y88{bottom:364.875000px;}
.y94{bottom:366.405000px;}
.y82{bottom:371.100000px;}
.yaf{bottom:371.655000px;}
.y79{bottom:382.275000px;}
.y48{bottom:385.800000px;}
.y19{bottom:386.175000px;}
.y2d{bottom:386.220000px;}
.y4e{bottom:390.375000px;}
.y93{bottom:392.325000px;}
.ya1{bottom:392.820000px;}
.y70{bottom:395.100000px;}
.y81{bottom:395.550000px;}
.yae{bottom:396.450000px;}
.y3c{bottom:400.050000px;}
.y78{bottom:404.130000px;}
.y1{bottom:404.280000px;}
.ya5{bottom:404.505000px;}
.y62{bottom:407.070000px;}
.y22{bottom:407.850000px;}
.yba{bottom:409.380000px;}
.y4c{bottom:411.030000px;}
.y87{bottom:415.575000px;}
.y92{bottom:417.120000px;}
.y80{bottom:420.030000px;}
.yad{bottom:422.370000px;}
.y77{bottom:425.550000px;}
.y2c{bottom:429.030000px;}
.y47{bottom:432.000000px;}
.y91{bottom:441.945000px;}
.y7f{bottom:444.525000px;}
.yac{bottom:447.150000px;}
.y14{bottom:451.275000px;}
.y76{bottom:451.530000px;}
.y3b{bottom:451.905000px;}
.y46{bottom:455.655000px;}
.y5f{bottom:457.125000px;}
.y6d{bottom:457.695000px;}
.y21{bottom:458.595000px;}
.y61{bottom:462.255000px;}
.y90{bottom:467.850000px;}
.ya4{bottom:470.700000px;}
.y7e{bottom:470.925000px;}
.y2b{bottom:471.870000px;}
.yab{bottom:471.975000px;}
.y13{bottom:475.530000px;}
.y5e{bottom:480.780000px;}
.y18{bottom:481.380000px;}
.y5b{bottom:486.255000px;}
.y99{bottom:491.655000px;}
.y6e{bottom:493.755000px;}
.ya3{bottom:495.495000px;}
.yaa{bottom:497.880000px;}
.y75{bottom:499.155000px;}
.y12{bottom:501.450000px;}
.y98{bottom:517.575000px;}
.ya2{bottom:521.400000px;}
.y74{bottom:525.075000px;}
.y17{bottom:535.470000px;}
.y60{bottom:538.800000px;}
.yb9{bottom:541.275000px;}
.y86{bottom:542.130000px;}
.y20{bottom:542.880000px;}
.y43{bottom:544.800000px;}
.y2a{bottom:545.745000px;}
.y3d{bottom:547.530000px;}
.y3a{bottom:548.130000px;}
.y4d{bottom:549.630000px;}
.y6c{bottom:553.380000px;}
.y6{bottom:555.630000px;}
.y8d{bottom:557.220000px;}
.y72{bottom:571.470000px;}
.h14{height:43.160889px;}
.h15{height:43.271558px;}
.h1a{height:52.628906px;}
.h1c{height:52.738550px;}
.h18{height:53.231763px;}
.h1e{height:54.253418px;}
.h16{height:56.027856px;}
.h1d{height:57.637207px;}
.h5{height:62.606470px;}
.h22{height:62.716113px;}
.h6{height:64.404785px;}
.h1b{height:65.895776px;}
.h17{height:67.788574px;}
.ha{height:69.185083px;}
.h1f{height:69.294727px;}
.hf{height:69.832104px;}
.h7{height:71.064785px;}
.hb{height:71.172363px;}
.hc{height:71.285156px;}
.h12{height:75.763696px;}
.h3{height:79.053003px;}
.h2{height:79.162646px;}
.he{height:79.902979px;}
.h23{height:91.587891px;}
.h11{height:98.788843px;}
.hd{height:102.187793px;}
.h19{height:105.477100px;}
.h20{height:108.766406px;}
.h1{height:112.055713px;}
.h4{height:118.634326px;}
.h13{height:121.923633px;}
.h10{height:128.502246px;}
.h8{height:131.791553px;}
.h9{height:131.901196px;}
.h21{height:141.763696px;}
.h0{height:607.500000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x43{left:10.949984px;}
.x1a{left:15.112484px;}
.x42{left:23.887484px;}
.x1e{left:26.624984px;}
.x2b{left:29.774984px;}
.x2f{left:30.899984px;}
.x31{left:32.699984px;}
.x27{left:34.649984px;}
.x25{left:36.937484px;}
.x56{left:44.099984px;}
.x34{left:45.449984px;}
.x3d{left:47.662484px;}
.x1f{left:48.787484px;}
.x48{left:52.237484px;}
.x33{left:55.387484px;}
.x12{left:57.412484px;}
.x1{left:64.199984px;}
.x30{left:67.012484px;}
.x24{left:69.449984px;}
.x17{left:72.149984px;}
.x15{left:75.637484px;}
.x1b{left:77.887484px;}
.x32{left:79.799984px;}
.x57{left:89.137484px;}
.x18{left:94.312484px;}
.x35{left:103.874984px;}
.x3a{left:108.599984px;}
.x6{left:112.612484px;}
.x1c{left:122.924984px;}
.x9{left:124.912484px;}
.xa{left:137.212484px;}
.xb{left:139.574984px;}
.x39{left:141.899984px;}
.x1d{left:144.262484px;}
.x8{left:148.274984px;}
.x26{left:153.899984px;}
.x22{left:161.774984px;}
.x7{left:165.749984px;}
.x47{left:168.749984px;}
.x2c{left:173.099984px;}
.x2a{left:207.974984px;}
.x4e{left:223.829984px;}
.x2d{left:232.874984px;}
.x2e{left:237.944984px;}
.x21{left:243.149984px;}
.x16{left:254.399984px;}
.x19{left:259.124984px;}
.x4b{left:282.869984px;}
.x44{left:303.569984px;}
.x20{left:307.154984px;}
.x4{left:346.124984px;}
.x2{left:385.994984px;}
.x36{left:388.274984px;}
.x5{left:397.154984px;}
.x28{left:398.219984px;}
.xc{left:400.904984px;}
.x38{left:404.819984px;}
.x37{left:406.379984px;}
.x14{left:417.524984px;}
.xf{left:418.844984px;}
.x55{left:424.379984px;}
.xe{left:426.344984px;}
.xd{left:427.649984px;}
.x4f{left:429.494984px;}
.x23{left:440.249984px;}
.x3{left:442.199984px;}
.x46{left:444.254984px;}
.x54{left:494.924984px;}
.x41{left:559.949984px;}
.x49{left:572.354984px;}
.x4d{left:575.504984px;}
.x4a{left:577.724984px;}
.x45{left:648.794984px;}
.x50{left:655.349984px;}
.x40{left:713.819984px;}
.x13{left:735.119984px;}
.x3e{left:737.624984px;}
.x3c{left:750.194984px;}
.x3f{left:761.474984px;}
.x3b{left:775.079984px;}
.x11{left:781.154984px;}
.x10{left:792.674984px;}
.x29{left:809.654984px;}
.x52{left:838.754984px;}
.x4c{left:854.879984px;}
.x51{left:856.724984px;}
.x53{left:875.849984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.920000pt;}
.v2{vertical-align:58.666667pt;}
.lsc{letter-spacing:-2.517333pt;}
.ls9{letter-spacing:-2.330667pt;}
.ls8{letter-spacing:-1.525333pt;}
.lsf{letter-spacing:-1.450667pt;}
.ls1{letter-spacing:-0.106133pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.037867pt;}
.ls12{letter-spacing:0.074933pt;}
.ls10{letter-spacing:0.256533pt;}
.ls2{letter-spacing:0.504800pt;}
.ls7{letter-spacing:0.637600pt;}
.lsa{letter-spacing:0.773333pt;}
.ls4{letter-spacing:1.146667pt;}
.ls3{letter-spacing:1.221333pt;}
.lsb{letter-spacing:2.117333pt;}
.ls5{letter-spacing:38.020000pt;}
.ls13{letter-spacing:42.040000pt;}
.ls11{letter-spacing:42.086667pt;}
.lsd{letter-spacing:42.173333pt;}
.lse{letter-spacing:42.220000pt;}
.ls6{letter-spacing:46.420000pt;}
.ws18{word-spacing:-44.591200pt;}
.ws1{word-spacing:-40.000000pt;}
.ws1c{word-spacing:-36.770133pt;}
.ws9{word-spacing:-26.386400pt;}
.ws12{word-spacing:-25.274400pt;}
.ws6{word-spacing:-25.236800pt;}
.ws3{word-spacing:-24.610400pt;}
.ws1b{word-spacing:-23.389067pt;}
.ws15{word-spacing:-22.277067pt;}
.ws2{word-spacing:-21.165067pt;}
.wsd{word-spacing:-18.647733pt;}
.ws16{word-spacing:-18.085600pt;}
.ws13{word-spacing:-17.829067pt;}
.ws14{word-spacing:-17.792000pt;}
.wsb{word-spacing:-14.493067pt;}
.wsa{word-spacing:-14.456000pt;}
.ws4{word-spacing:-7.193600pt;}
.ws5{word-spacing:-7.117867pt;}
.wsc{word-spacing:-3.449600pt;}
.ws1f{word-spacing:-2.798000pt;}
.ws0{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.136667pt;}
.ws1e{word-spacing:0.218800pt;}
.ws7{word-spacing:1.131733pt;}
.ws1a{word-spacing:3.979733pt;}
.ws19{word-spacing:4.055467pt;}
.ws8{word-spacing:21.798400pt;}
.ws11{word-spacing:59.772933pt;}
.wse{word-spacing:62.854533pt;}
.ws10{word-spacing:69.397200pt;}
.wsf{word-spacing:75.432267pt;}
.ws17{word-spacing:498.739733pt;}
._9{margin-left:-5.254400pt;}
._3{margin-left:-4.360533pt;}
._0{margin-left:-3.270400pt;}
._2{margin-left:-1.907733pt;}
._5{margin-left:-0.944533pt;}
._1{width:1.635200pt;}
._4{width:2.861600pt;}
._7{width:3.756533pt;}
._a{width:5.067600pt;}
._8{width:6.190133pt;}
._b{width:46.378800pt;}
._c{width:67.522267pt;}
._f{width:85.166400pt;}
._20{width:94.447067pt;}
._d{width:96.798133pt;}
._16{width:132.412800pt;}
._11{width:137.154400pt;}
._14{width:140.350267pt;}
._1d{width:162.174133pt;}
._10{width:168.870800pt;}
._1f{width:169.982267pt;}
._1e{width:187.049867pt;}
._18{width:208.502400pt;}
._e{width:212.470267pt;}
._19{width:220.504000pt;}
._1b{width:235.960800pt;}
._1a{width:289.006000pt;}
._1c{width:306.835067pt;}
._13{width:339.422667pt;}
._15{width:345.764800pt;}
._12{width:416.157067pt;}
._17{width:422.847467pt;}
._6{width:1455.272000pt;}
.fse{font-size:52.000000pt;}
.fsf{font-size:52.133333pt;}
.fs14{font-size:64.000000pt;}
.fs12{font-size:64.133333pt;}
.fs10{font-size:68.133333pt;}
.fs4{font-size:76.133333pt;}
.fs16{font-size:76.266667pt;}
.fs11{font-size:80.133333pt;}
.fs7{font-size:84.133333pt;}
.fs8{font-size:84.266667pt;}
.fsc{font-size:92.133333pt;}
.fs2{font-size:96.133333pt;}
.fs1{font-size:96.266667pt;}
.fs17{font-size:108.266667pt;}
.fsb{font-size:120.133333pt;}
.fs9{font-size:124.266667pt;}
.fs13{font-size:128.266667pt;}
.fs15{font-size:132.266667pt;}
.fs0{font-size:136.266667pt;}
.fs3{font-size:144.266667pt;}
.fsd{font-size:148.266667pt;}
.fsa{font-size:156.266667pt;}
.fs5{font-size:160.266667pt;}
.fs6{font-size:160.400000pt;}
.y0{bottom:0.000000pt;}
.y73{bottom:10.733333pt;}
.y71{bottom:12.066667pt;}
.y45{bottom:12.966667pt;}
.yb{bottom:18.166667pt;}
.y6b{bottom:27.766667pt;}
.y44{bottom:29.000000pt;}
.y42{bottom:29.800000pt;}
.y35{bottom:38.733333pt;}
.ya{bottom:41.233333pt;}
.y5a{bottom:45.066667pt;}
.y41{bottom:45.833333pt;}
.y6a{bottom:46.800000pt;}
.y29{bottom:47.966667pt;}
.y8f{bottom:53.433333pt;}
.y40{bottom:61.866667pt;}
.y9{bottom:63.266667pt;}
.y69{bottom:65.833333pt;}
.y59{bottom:68.100000pt;}
.y11{bottom:73.533333pt;}
.y8e{bottom:74.466667pt;}
.y34{bottom:76.800000pt;}
.y3f{bottom:77.866667pt;}
.y1c{bottom:81.800000pt;}
.y68{bottom:84.866667pt;}
.y8{bottom:85.300000pt;}
.y3e{bottom:93.900000pt;}
.y28{bottom:96.033333pt;}
.y10{bottom:96.600000pt;}
.ya8{bottom:98.600000pt;}
.y7{bottom:108.333333pt;}
.y33{bottom:114.866667pt;}
.y66{bottom:117.366667pt;}
.ybf{bottom:118.466667pt;}
.y5{bottom:122.133333pt;}
.y58{bottom:122.566667pt;}
.y1b{bottom:125.866667pt;}
.y97{bottom:131.700000pt;}
.y9c{bottom:133.666667pt;}
.ya0{bottom:134.133333pt;}
.y9e{bottom:137.066667pt;}
.y27{bottom:139.133333pt;}
.y57{bottom:145.000000pt;}
.y8c{bottom:150.000000pt;}
.yb7{bottom:151.040000pt;}
.y4{bottom:151.200000pt;}
.y32{bottom:152.933333pt;}
.y96{bottom:154.733333pt;}
.y9b{bottom:155.693333pt;}
.y9f{bottom:157.160000pt;}
.y9d{bottom:160.106667pt;}
.y5c{bottom:162.693333pt;}
.y65{bottom:165.466667pt;}
.y56{bottom:167.466667pt;}
.ybe{bottom:167.533333pt;}
.yb6{bottom:173.066667pt;}
.y39{bottom:175.400000pt;}
.y9a{bottom:178.733333pt;}
.y3{bottom:180.266667pt;}
.y26{bottom:183.200000pt;}
.yf{bottom:188.000000pt;}
.y55{bottom:189.906667pt;}
.y31{bottom:191.000000pt;}
.y5d{bottom:192.026667pt;}
.y1f{bottom:192.360000pt;}
.y8b{bottom:194.066667pt;}
.yb5{bottom:195.106667pt;}
.ye{bottom:210.026667pt;}
.y54{bottom:212.333333pt;}
.y64{bottom:214.533333pt;}
.ybd{bottom:216.640000pt;}
.yb4{bottom:218.133333pt;}
.y1e{bottom:220.400000pt;}
.y38{bottom:222.466667pt;}
.y6f{bottom:223.600000pt;}
.y25{bottom:228.293333pt;}
.y30{bottom:229.066667pt;}
.yd{bottom:232.106667pt;}
.y53{bottom:234.773333pt;}
.y8a{bottom:237.173333pt;}
.yb3{bottom:240.200000pt;}
.y1d{bottom:248.466667pt;}
.y7d{bottom:252.773333pt;}
.ya7{bottom:254.306667pt;}
.yc{bottom:255.133333pt;}
.y52{bottom:257.240000pt;}
.yb2{bottom:263.240000pt;}
.y85{bottom:264.573333pt;}
.ybc{bottom:265.733333pt;}
.y2f{bottom:267.133333pt;}
.y67{bottom:268.266667pt;}
.y37{bottom:268.573333pt;}
.y7c{bottom:274.506667pt;}
.y24{bottom:275.360000pt;}
.yb8{bottom:276.226667pt;}
.ya6{bottom:277.333333pt;}
.y51{bottom:279.666667pt;}
.y4b{bottom:279.800000pt;}
.y89{bottom:281.240000pt;}
.yb1{bottom:285.266667pt;}
.y84{bottom:286.333333pt;}
.y16{bottom:287.933333pt;}
.y7b{bottom:296.266667pt;}
.y1a{bottom:300.200000pt;}
.y4a{bottom:300.840000pt;}
.y50{bottom:302.106667pt;}
.y95{bottom:303.666667pt;}
.y2e{bottom:305.240000pt;}
.yb0{bottom:307.306667pt;}
.y83{bottom:308.106667pt;}
.ya9{bottom:310.773333pt;}
.y15{bottom:310.973333pt;}
.y63{bottom:312.733333pt;}
.y36{bottom:314.640000pt;}
.ybb{bottom:314.800000pt;}
.y7a{bottom:318.026667pt;}
.y2{bottom:319.306667pt;}
.y23{bottom:319.466667pt;}
.y49{bottom:321.906667pt;}
.y4f{bottom:323.933333pt;}
.y88{bottom:324.333333pt;}
.y94{bottom:325.693333pt;}
.y82{bottom:329.866667pt;}
.yaf{bottom:330.360000pt;}
.y79{bottom:339.800000pt;}
.y48{bottom:342.933333pt;}
.y19{bottom:343.266667pt;}
.y2d{bottom:343.306667pt;}
.y4e{bottom:347.000000pt;}
.y93{bottom:348.733333pt;}
.ya1{bottom:349.173333pt;}
.y70{bottom:351.200000pt;}
.y81{bottom:351.600000pt;}
.yae{bottom:352.400000pt;}
.y3c{bottom:355.600000pt;}
.y78{bottom:359.226667pt;}
.y1{bottom:359.360000pt;}
.ya5{bottom:359.560000pt;}
.y62{bottom:361.840000pt;}
.y22{bottom:362.533333pt;}
.yba{bottom:363.893333pt;}
.y4c{bottom:365.360000pt;}
.y87{bottom:369.400000pt;}
.y92{bottom:370.773333pt;}
.y80{bottom:373.360000pt;}
.yad{bottom:375.440000pt;}
.y77{bottom:378.266667pt;}
.y2c{bottom:381.360000pt;}
.y47{bottom:384.000000pt;}
.y91{bottom:392.840000pt;}
.y7f{bottom:395.133333pt;}
.yac{bottom:397.466667pt;}
.y14{bottom:401.133333pt;}
.y76{bottom:401.360000pt;}
.y3b{bottom:401.693333pt;}
.y46{bottom:405.026667pt;}
.y5f{bottom:406.333333pt;}
.y6d{bottom:406.840000pt;}
.y21{bottom:407.640000pt;}
.y61{bottom:410.893333pt;}
.y90{bottom:415.866667pt;}
.ya4{bottom:418.400000pt;}
.y7e{bottom:418.600000pt;}
.y2b{bottom:419.440000pt;}
.yab{bottom:419.533333pt;}
.y13{bottom:422.693333pt;}
.y5e{bottom:427.360000pt;}
.y18{bottom:427.893333pt;}
.y5b{bottom:432.226667pt;}
.y99{bottom:437.026667pt;}
.y6e{bottom:438.893333pt;}
.ya3{bottom:440.440000pt;}
.yaa{bottom:442.560000pt;}
.y75{bottom:443.693333pt;}
.y12{bottom:445.733333pt;}
.y98{bottom:460.066667pt;}
.ya2{bottom:463.466667pt;}
.y74{bottom:466.733333pt;}
.y17{bottom:475.973333pt;}
.y60{bottom:478.933333pt;}
.yb9{bottom:481.133333pt;}
.y86{bottom:481.893333pt;}
.y20{bottom:482.560000pt;}
.y43{bottom:484.266667pt;}
.y2a{bottom:485.106667pt;}
.y3d{bottom:486.693333pt;}
.y3a{bottom:487.226667pt;}
.y4d{bottom:488.560000pt;}
.y6c{bottom:491.893333pt;}
.y6{bottom:493.893333pt;}
.y8d{bottom:495.306667pt;}
.y72{bottom:507.973333pt;}
.h14{height:38.365234pt;}
.h15{height:38.463607pt;}
.h1a{height:46.781250pt;}
.h1c{height:46.878711pt;}
.h18{height:47.317122pt;}
.h1e{height:48.225260pt;}
.h16{height:49.802539pt;}
.h1d{height:51.233073pt;}
.h5{height:55.650195pt;}
.h22{height:55.747656pt;}
.h6{height:57.248698pt;}
.h1b{height:58.574023pt;}
.h17{height:60.256510pt;}
.ha{height:61.497852pt;}
.h1f{height:61.595312pt;}
.hf{height:62.072982pt;}
.h7{height:63.168698pt;}
.hb{height:63.264323pt;}
.hc{height:63.364583pt;}
.h12{height:67.345508pt;}
.h3{height:70.269336pt;}
.h2{height:70.366797pt;}
.he{height:71.024870pt;}
.h23{height:81.411458pt;}
.h11{height:87.812305pt;}
.hd{height:90.833594pt;}
.h19{height:93.757422pt;}
.h20{height:96.681250pt;}
.h1{height:99.605078pt;}
.h4{height:105.452734pt;}
.h13{height:108.376562pt;}
.h10{height:114.224219pt;}
.h8{height:117.148047pt;}
.h9{height:117.245508pt;}
.h21{height:126.012174pt;}
.h0{height:540.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x43{left:9.733319pt;}
.x1a{left:13.433319pt;}
.x42{left:21.233319pt;}
.x1e{left:23.666652pt;}
.x2b{left:26.466652pt;}
.x2f{left:27.466652pt;}
.x31{left:29.066652pt;}
.x27{left:30.799986pt;}
.x25{left:32.833319pt;}
.x56{left:39.199986pt;}
.x34{left:40.399986pt;}
.x3d{left:42.366652pt;}
.x1f{left:43.366652pt;}
.x48{left:46.433319pt;}
.x33{left:49.233319pt;}
.x12{left:51.033319pt;}
.x1{left:57.066652pt;}
.x30{left:59.566652pt;}
.x24{left:61.733319pt;}
.x17{left:64.133319pt;}
.x15{left:67.233319pt;}
.x1b{left:69.233319pt;}
.x32{left:70.933319pt;}
.x57{left:79.233319pt;}
.x18{left:83.833319pt;}
.x35{left:92.333319pt;}
.x3a{left:96.533319pt;}
.x6{left:100.099986pt;}
.x1c{left:109.266652pt;}
.x9{left:111.033319pt;}
.xa{left:121.966652pt;}
.xb{left:124.066652pt;}
.x39{left:126.133319pt;}
.x1d{left:128.233319pt;}
.x8{left:131.799986pt;}
.x26{left:136.799986pt;}
.x22{left:143.799986pt;}
.x7{left:147.333319pt;}
.x47{left:149.999986pt;}
.x2c{left:153.866652pt;}
.x2a{left:184.866652pt;}
.x4e{left:198.959986pt;}
.x2d{left:206.999986pt;}
.x2e{left:211.506652pt;}
.x21{left:216.133319pt;}
.x16{left:226.133319pt;}
.x19{left:230.333319pt;}
.x4b{left:251.439986pt;}
.x44{left:269.839986pt;}
.x20{left:273.026652pt;}
.x4{left:307.666652pt;}
.x2{left:343.106652pt;}
.x36{left:345.133319pt;}
.x5{left:353.026652pt;}
.x28{left:353.973319pt;}
.xc{left:356.359986pt;}
.x38{left:359.839986pt;}
.x37{left:361.226652pt;}
.x14{left:371.133319pt;}
.xf{left:372.306652pt;}
.x55{left:377.226652pt;}
.xe{left:378.973319pt;}
.xd{left:380.133319pt;}
.x4f{left:381.773319pt;}
.x23{left:391.333319pt;}
.x3{left:393.066652pt;}
.x46{left:394.893319pt;}
.x54{left:439.933319pt;}
.x41{left:497.733319pt;}
.x49{left:508.759986pt;}
.x4d{left:511.559986pt;}
.x4a{left:513.533319pt;}
.x45{left:576.706652pt;}
.x50{left:582.533319pt;}
.x40{left:634.506652pt;}
.x13{left:653.439986pt;}
.x3e{left:655.666652pt;}
.x3c{left:666.839986pt;}
.x3f{left:676.866652pt;}
.x3b{left:688.959986pt;}
.x11{left:694.359986pt;}
.x10{left:704.599986pt;}
.x29{left:719.693319pt;}
.x52{left:745.559986pt;}
.x4c{left:759.893319pt;}
.x51{left:761.533319pt;}
.x53{left:778.533319pt;}
}




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