
    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_cff4c5e59190457e526d5eb3.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a722aa632cd9e5df50379e59.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_3da846c1f445ae7bb60fdfc6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.799805;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_b8e52c918f515a01d41dfadd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_232d143f153ed231810aa7bd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.881836;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_a48827f62d7daaf56cafe023.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.892000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-41.400000px;}
.v4{vertical-align:-38.400000px;}
.v8{vertical-align:-35.400000px;}
.v6{vertical-align:-31.800000px;}
.v3{vertical-align:-29.400000px;}
.v2{vertical-align:-27.000000px;}
.va{vertical-align:-9.600000px;}
.vb{vertical-align:-4.200000px;}
.v7{vertical-align:-1.200000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:1.800000px;}
.v5{vertical-align:4.800000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.135600px;}
.ls2{letter-spacing:0.156000px;}
.ls11{letter-spacing:0.283200px;}
.ls1a{letter-spacing:34.800000px;}
.ls15{letter-spacing:40.740000px;}
.ls19{letter-spacing:55.800000px;}
.lsd{letter-spacing:74.400000px;}
.ls12{letter-spacing:79.200000px;}
.lsf{letter-spacing:86.400000px;}
.ls1b{letter-spacing:87.600000px;}
.ls18{letter-spacing:102.000000px;}
.ls4{letter-spacing:112.200000px;}
.ls3{letter-spacing:116.400000px;}
.ls6{letter-spacing:118.200000px;}
.ls7{letter-spacing:126.000000px;}
.ls8{letter-spacing:128.400000px;}
.lsc{letter-spacing:133.200000px;}
.ls5{letter-spacing:136.800000px;}
.ls14{letter-spacing:140.400000px;}
.ls16{letter-spacing:164.400000px;}
.lse{letter-spacing:169.500000px;}
.ls9{letter-spacing:172.200000px;}
.ls13{letter-spacing:178.200000px;}
.lsb{letter-spacing:182.400000px;}
.ls1{letter-spacing:186.600000px;}
.ls10{letter-spacing:195.600000px;}
.ls17{letter-spacing:196.200000px;}
.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:-66.480000px;}
.ws4{word-spacing:-53.184000px;}
.ws3{word-spacing:-46.536000px;}
.ws1{word-spacing:-43.212000px;}
.ws6{word-spacing:-39.888000px;}
.ws9{word-spacing:-39.721800px;}
.ws8{word-spacing:-37.561200px;}
.ws5{word-spacing:-36.231600px;}
.wsa{word-spacing:-34.735800px;}
.ws7{word-spacing:-33.572400px;}
.ws2{word-spacing:0.000000px;}
._4{margin-left:-356.570400px;}
._0{margin-left:-1.200000px;}
._1{width:1.404000px;}
._2{width:2.616000px;}
._3{width:299.488800px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(126,0,33);}
.fs7{font-size:53.400000px;}
.fs11{font-size:56.400000px;}
.fs9{font-size:57.600000px;}
.fse{font-size:60.600000px;}
.fs10{font-size:63.600000px;}
.fsa{font-size:64.800000px;}
.fs5{font-size:70.200000px;}
.fs2{font-size:108.000000px;}
.fs8{font-size:121.200000px;}
.fs12{font-size:125.400000px;}
.fs6{font-size:130.800000px;}
.fsd{font-size:135.600000px;}
.fsc{font-size:141.600000px;}
.fsf{font-size:143.400000px;}
.fsb{font-size:144.000000px;}
.fs1{font-size:156.000000px;}
.fs3{font-size:168.000000px;}
.fs4{font-size:192.000000px;}
.fs0{font-size:240.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:13.800000px;}
.yc3{bottom:34.650000px;}
.y5{bottom:39.900000px;}
.ybd{bottom:44.400000px;}
.y4b{bottom:57.450000px;}
.ya0{bottom:59.100000px;}
.y3{bottom:60.600000px;}
.y62{bottom:62.400000px;}
.y56{bottom:62.850000px;}
.yd6{bottom:73.200000px;}
.y73{bottom:78.150000px;}
.yce{bottom:87.600000px;}
.ybc{bottom:89.850000px;}
.y4a{bottom:98.100000px;}
.y7e{bottom:98.550000px;}
.y61{bottom:109.500000px;}
.y9f{bottom:111.000000px;}
.yca{bottom:111.600000px;}
.y85{bottom:113.250000px;}
.y16{bottom:113.550000px;}
.y55{bottom:114.750000px;}
.yd9{bottom:116.400000px;}
.yd5{bottom:118.800000px;}
.y72{bottom:123.600000px;}
.ycd{bottom:133.050000px;}
.y96{bottom:133.800000px;}
.y22{bottom:134.550000px;}
.y7d{bottom:137.850000px;}
.y49{bottom:138.750000px;}
.ybb{bottom:142.800000px;}
.y60{bottom:146.550000px;}
.y9e{bottom:152.550000px;}
.y54{bottom:157.050000px;}
.y15{bottom:160.500000px;}
.y84{bottom:166.800000px;}
.y2a{bottom:167.550000px;}
.y35{bottom:168.450000px;}
.yd4{bottom:171.450000px;}
.y3f{bottom:175.650000px;}
.y7c{bottom:177.150000px;}
.y71{bottom:177.300000px;}
.y48{bottom:179.400000px;}
.y21{bottom:181.200000px;}
.yba{bottom:186.000000px;}
.y95{bottom:186.600000px;}
.yc2{bottom:188.250000px;}
.y5f{bottom:193.800000px;}
.y9d{bottom:200.550000px;}
.y8d{bottom:207.150000px;}
.y53{bottom:208.950000px;}
.yc9{bottom:209.850000px;}
.y34{bottom:211.500000px;}
.ya6{bottom:214.350000px;}
.y3e{bottom:215.250000px;}
.yad{bottom:216.450000px;}
.y7b{bottom:216.750000px;}
.y14{bottom:217.650000px;}
.y47{bottom:220.050000px;}
.y29{bottom:220.200000px;}
.y83{bottom:220.500000px;}
.y20{bottom:220.650000px;}
.y69{bottom:225.600000px;}
.yd3{bottom:226.650000px;}
.ycc{bottom:229.200000px;}
.y5e{bottom:230.700000px;}
.y70{bottom:231.000000px;}
.yb9{bottom:231.450000px;}
.y94{bottom:238.800000px;}
.yc1{bottom:241.200000px;}
.y9c{bottom:242.250000px;}
.y33{bottom:248.550000px;}
.y52{bottom:251.250000px;}
.yc8{bottom:255.450000px;}
.y8c{bottom:260.850000px;}
.y3d{bottom:261.300000px;}
.yac{bottom:261.900000px;}
.y13{bottom:264.450000px;}
.y7a{bottom:265.200000px;}
.ya5{bottom:267.150000px;}
.yb2{bottom:267.300000px;}
.y46{bottom:268.500000px;}
.y1f{bottom:269.550000px;}
.y28{bottom:272.400000px;}
.y82{bottom:274.200000px;}
.ycb{bottom:274.650000px;}
.y5d{bottom:277.950000px;}
.y68{bottom:278.400000px;}
.y93{bottom:281.400000px;}
.y6f{bottom:282.300000px;}
.yb8{bottom:284.400000px;}
.yc0{bottom:286.650000px;}
.y9b{bottom:290.250000px;}
.y32{bottom:291.450000px;}
.ya{bottom:303.150000px;}
.y79{bottom:304.800000px;}
.y1e{bottom:305.850000px;}
.y3c{bottom:307.350000px;}
.yc7{bottom:308.250000px;}
.y45{bottom:310.500000px;}
.yab{bottom:313.350000px;}
.y8b{bottom:314.550000px;}
.y5c{bottom:315.000000px;}
.yd2{bottom:315.600000px;}
.ya4{bottom:320.700000px;}
.yb1{bottom:321.000000px;}
.y12{bottom:321.600000px;}
.y67{bottom:324.000000px;}
.y27{bottom:324.600000px;}
.yd8{bottom:325.050000px;}
.y81{bottom:325.500000px;}
.y31{bottom:327.450000px;}
.yb7{bottom:327.600000px;}
.y6e{bottom:327.900000px;}
.y92{bottom:334.200000px;}
.ybf{bottom:339.450000px;}
.y1d{bottom:342.000000px;}
.y9a{bottom:343.200000px;}
.y44{bottom:351.150000px;}
.yc6{bottom:351.450000px;}
.y78{bottom:353.250000px;}
.y3b{bottom:353.550000px;}
.y51{bottom:354.300000px;}
.yd1{bottom:361.050000px;}
.y9{bottom:361.950000px;}
.yaa{bottom:366.000000px;}
.y8a{bottom:368.250000px;}
.y80{bottom:368.700000px;}
.y5b{bottom:369.450000px;}
.y30{bottom:369.900000px;}
.yb6{bottom:373.050000px;}
.ya3{bottom:374.400000px;}
.yb0{bottom:374.550000px;}
.y66{bottom:376.650000px;}
.y26{bottom:376.800000px;}
.y1c{bottom:378.300000px;}
.y11{bottom:378.900000px;}
.yd7{bottom:380.250000px;}
.ybe{bottom:382.650000px;}
.y6d{bottom:388.650000px;}
.y99{bottom:391.200000px;}
.y77{bottom:392.550000px;}
.yc5{bottom:394.650000px;}
.y50{bottom:398.100000px;}
.y3a{bottom:399.600000px;}
.y5a{bottom:410.100000px;}
.y2f{bottom:412.500000px;}
.y7f{bottom:414.300000px;}
.yd0{bottom:416.250000px;}
.y8{bottom:420.750000px;}
.ya9{bottom:421.200000px;}
.y1b{bottom:421.350000px;}
.y89{bottom:421.800000px;}
.y65{bottom:422.400000px;}
.y10{bottom:425.700000px;}
.yaf{bottom:425.850000px;}
.ya2{bottom:428.100000px;}
.yb5{bottom:428.250000px;}
.y25{bottom:429.000000px;}
.y91{bottom:429.600000px;}
.y76{bottom:432.150000px;}
.y98{bottom:432.750000px;}
.y6c{bottom:434.400000px;}
.yc4{bottom:437.850000px;}
.y4f{bottom:441.150000px;}
.y39{bottom:445.350000px;}
.y2{bottom:447.600000px;}
.y43{bottom:449.400000px;}
.y59{bottom:454.950000px;}
.y1a{bottom:458.400000px;}
.y2e{bottom:462.900000px;}
.ycf{bottom:471.450000px;}
.yf{bottom:472.500000px;}
.y64{bottom:475.050000px;}
.y88{bottom:475.500000px;}
.ya8{bottom:476.400000px;}
.y6b{bottom:477.600000px;}
.yae{bottom:478.650000px;}
.y75{bottom:480.900000px;}
.y24{bottom:481.050000px;}
.y90{bottom:481.650000px;}
.y97{bottom:481.800000px;}
.y4e{bottom:484.050000px;}
.y42{bottom:491.250000px;}
.y38{bottom:492.600000px;}
.y58{bottom:495.600000px;}
.y2d{bottom:499.950000px;}
.y19{bottom:501.450000px;}
.y1{bottom:519.600000px;}
.y8f{bottom:524.250000px;}
.yb4{bottom:526.650000px;}
.ye{bottom:529.650000px;}
.y87{bottom:529.800000px;}
.y63{bottom:530.250000px;}
.y23{bottom:533.250000px;}
.ya1{bottom:535.350000px;}
.y4d{bottom:535.950000px;}
.y74{bottom:537.300000px;}
.y7{bottom:538.200000px;}
.y41{bottom:539.700000px;}
.y37{bottom:540.000000px;}
.y57{bottom:540.450000px;}
.y2c{bottom:543.000000px;}
.y18{bottom:545.250000px;}
.yd{bottom:576.450000px;}
.ya7{bottom:577.200000px;}
.y8e{bottom:579.450000px;}
.y4c{bottom:579.600000px;}
.y36{bottom:580.050000px;}
.y2b{bottom:580.500000px;}
.y40{bottom:581.700000px;}
.y17{bottom:582.750000px;}
.yc{bottom:663.450000px;}
.y86{bottom:686.850000px;}
.y6a{bottom:692.250000px;}
.yb3{bottom:692.400000px;}
.y6{bottom:693.450000px;}
.yb{bottom:721.050000px;}
.h9{height:61.355273px;}
.h11{height:61.955273px;}
.h1d{height:62.017090px;}
.h13{height:63.553711px;}
.hb{height:65.953711px;}
.hd{height:66.576563px;}
.h19{height:67.052930px;}
.he{height:67.176563px;}
.h17{height:67.652930px;}
.h1b{height:69.139160px;}
.h7{height:72.324609px;}
.h3{height:78.732422px;}
.ha{height:88.355273px;}
.h1e{height:91.417090px;}
.h10{height:93.155273px;}
.h1f{height:93.217090px;}
.h15{height:93.553711px;}
.h20{height:93.817090px;}
.h14{height:94.153711px;}
.h23{height:94.652930px;}
.h24{height:95.252930px;}
.hc{height:95.353711px;}
.h21{height:95.976562px;}
.h18{height:98.852930px;}
.h1c{height:104.539160px;}
.hf{height:104.976562px;}
.h2{height:113.724609px;}
.h8{height:115.088672px;}
.h16{height:119.312109px;}
.h12{height:124.591406px;}
.h1a{height:126.175195px;}
.h22{height:126.703125px;}
.h5{height:137.261719px;}
.h4{height:147.820312px;}
.h6{height:168.937500px;}
.h1{height:211.171875px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x11{left:25.650000px;}
.x18{left:32.250000px;}
.xc{left:34.050000px;}
.x3{left:56.850000px;}
.x6{left:64.650000px;}
.x9{left:67.350000px;}
.x1e{left:72.000000px;}
.x26{left:79.500000px;}
.x27{left:101.550000px;}
.x28{left:111.000000px;}
.x4{left:126.150000px;}
.x22{left:130.050000px;}
.x1a{left:131.100000px;}
.x20{left:139.800000px;}
.x25{left:142.200000px;}
.x2b{left:166.350000px;}
.x29{left:168.300000px;}
.xa{left:172.650000px;}
.x2a{left:176.100000px;}
.x19{left:183.900000px;}
.x1{left:188.700000px;}
.x23{left:190.950000px;}
.x1b{left:192.600000px;}
.x2c{left:193.800000px;}
.x12{left:204.750000px;}
.x21{left:206.700000px;}
.xd{left:213.150000px;}
.x2d{left:220.500000px;}
.x14{left:228.300000px;}
.x1c{left:230.400000px;}
.xb{left:236.850000px;}
.xf{left:247.800000px;}
.x7{left:250.650000px;}
.xe{left:255.600000px;}
.x15{left:274.200000px;}
.x1d{left:279.600000px;}
.x13{left:295.500000px;}
.x10{left:298.200000px;}
.x16{left:326.550000px;}
.x17{left:375.000000px;}
.x2{left:402.000000px;}
.x8{left:651.150000px;}
.x1f{left:688.650000px;}
.x24{left:698.550000px;}
.x5{left:784.500000px;}
@media print{
.v1{vertical-align:-36.800000pt;}
.v4{vertical-align:-34.133333pt;}
.v8{vertical-align:-31.466667pt;}
.v6{vertical-align:-28.266667pt;}
.v3{vertical-align:-26.133333pt;}
.v2{vertical-align:-24.000000pt;}
.va{vertical-align:-8.533333pt;}
.vb{vertical-align:-3.733333pt;}
.v7{vertical-align:-1.066667pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.600000pt;}
.v5{vertical-align:4.266667pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.120533pt;}
.ls2{letter-spacing:0.138667pt;}
.ls11{letter-spacing:0.251733pt;}
.ls1a{letter-spacing:30.933333pt;}
.ls15{letter-spacing:36.213333pt;}
.ls19{letter-spacing:49.600000pt;}
.lsd{letter-spacing:66.133333pt;}
.ls12{letter-spacing:70.400000pt;}
.lsf{letter-spacing:76.800000pt;}
.ls1b{letter-spacing:77.866667pt;}
.ls18{letter-spacing:90.666667pt;}
.ls4{letter-spacing:99.733333pt;}
.ls3{letter-spacing:103.466667pt;}
.ls6{letter-spacing:105.066667pt;}
.ls7{letter-spacing:112.000000pt;}
.ls8{letter-spacing:114.133333pt;}
.lsc{letter-spacing:118.400000pt;}
.ls5{letter-spacing:121.600000pt;}
.ls14{letter-spacing:124.800000pt;}
.ls16{letter-spacing:146.133333pt;}
.lse{letter-spacing:150.666667pt;}
.ls9{letter-spacing:153.066667pt;}
.ls13{letter-spacing:158.400000pt;}
.lsb{letter-spacing:162.133333pt;}
.ls1{letter-spacing:165.866667pt;}
.ls10{letter-spacing:173.866667pt;}
.ls17{letter-spacing:174.400000pt;}
.ws0{word-spacing:-59.093333pt;}
.ws4{word-spacing:-47.274667pt;}
.ws3{word-spacing:-41.365333pt;}
.ws1{word-spacing:-38.410667pt;}
.ws6{word-spacing:-35.456000pt;}
.ws9{word-spacing:-35.308267pt;}
.ws8{word-spacing:-33.387733pt;}
.ws5{word-spacing:-32.205867pt;}
.wsa{word-spacing:-30.876267pt;}
.ws7{word-spacing:-29.842133pt;}
.ws2{word-spacing:0.000000pt;}
._4{margin-left:-316.951467pt;}
._0{margin-left:-1.066667pt;}
._1{width:1.248000pt;}
._2{width:2.325333pt;}
._3{width:266.212267pt;}
.fs7{font-size:47.466667pt;}
.fs11{font-size:50.133333pt;}
.fs9{font-size:51.200000pt;}
.fse{font-size:53.866667pt;}
.fs10{font-size:56.533333pt;}
.fsa{font-size:57.600000pt;}
.fs5{font-size:62.400000pt;}
.fs2{font-size:96.000000pt;}
.fs8{font-size:107.733333pt;}
.fs12{font-size:111.466667pt;}
.fs6{font-size:116.266667pt;}
.fsd{font-size:120.533333pt;}
.fsc{font-size:125.866667pt;}
.fsf{font-size:127.466667pt;}
.fsb{font-size:128.000000pt;}
.fs1{font-size:138.666667pt;}
.fs3{font-size:149.333333pt;}
.fs4{font-size:170.666667pt;}
.fs0{font-size:213.333333pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:12.266667pt;}
.yc3{bottom:30.800000pt;}
.y5{bottom:35.466667pt;}
.ybd{bottom:39.466667pt;}
.y4b{bottom:51.066667pt;}
.ya0{bottom:52.533333pt;}
.y3{bottom:53.866667pt;}
.y62{bottom:55.466667pt;}
.y56{bottom:55.866667pt;}
.yd6{bottom:65.066667pt;}
.y73{bottom:69.466667pt;}
.yce{bottom:77.866667pt;}
.ybc{bottom:79.866667pt;}
.y4a{bottom:87.200000pt;}
.y7e{bottom:87.600000pt;}
.y61{bottom:97.333333pt;}
.y9f{bottom:98.666667pt;}
.yca{bottom:99.200000pt;}
.y85{bottom:100.666667pt;}
.y16{bottom:100.933333pt;}
.y55{bottom:102.000000pt;}
.yd9{bottom:103.466667pt;}
.yd5{bottom:105.600000pt;}
.y72{bottom:109.866667pt;}
.ycd{bottom:118.266667pt;}
.y96{bottom:118.933333pt;}
.y22{bottom:119.600000pt;}
.y7d{bottom:122.533333pt;}
.y49{bottom:123.333333pt;}
.ybb{bottom:126.933333pt;}
.y60{bottom:130.266667pt;}
.y9e{bottom:135.600000pt;}
.y54{bottom:139.600000pt;}
.y15{bottom:142.666667pt;}
.y84{bottom:148.266667pt;}
.y2a{bottom:148.933333pt;}
.y35{bottom:149.733333pt;}
.yd4{bottom:152.400000pt;}
.y3f{bottom:156.133333pt;}
.y7c{bottom:157.466667pt;}
.y71{bottom:157.600000pt;}
.y48{bottom:159.466667pt;}
.y21{bottom:161.066667pt;}
.yba{bottom:165.333333pt;}
.y95{bottom:165.866667pt;}
.yc2{bottom:167.333333pt;}
.y5f{bottom:172.266667pt;}
.y9d{bottom:178.266667pt;}
.y8d{bottom:184.133333pt;}
.y53{bottom:185.733333pt;}
.yc9{bottom:186.533333pt;}
.y34{bottom:188.000000pt;}
.ya6{bottom:190.533333pt;}
.y3e{bottom:191.333333pt;}
.yad{bottom:192.400000pt;}
.y7b{bottom:192.666667pt;}
.y14{bottom:193.466667pt;}
.y47{bottom:195.600000pt;}
.y29{bottom:195.733333pt;}
.y83{bottom:196.000000pt;}
.y20{bottom:196.133333pt;}
.y69{bottom:200.533333pt;}
.yd3{bottom:201.466667pt;}
.ycc{bottom:203.733333pt;}
.y5e{bottom:205.066667pt;}
.y70{bottom:205.333333pt;}
.yb9{bottom:205.733333pt;}
.y94{bottom:212.266667pt;}
.yc1{bottom:214.400000pt;}
.y9c{bottom:215.333333pt;}
.y33{bottom:220.933333pt;}
.y52{bottom:223.333333pt;}
.yc8{bottom:227.066667pt;}
.y8c{bottom:231.866667pt;}
.y3d{bottom:232.266667pt;}
.yac{bottom:232.800000pt;}
.y13{bottom:235.066667pt;}
.y7a{bottom:235.733333pt;}
.ya5{bottom:237.466667pt;}
.yb2{bottom:237.600000pt;}
.y46{bottom:238.666667pt;}
.y1f{bottom:239.600000pt;}
.y28{bottom:242.133333pt;}
.y82{bottom:243.733333pt;}
.ycb{bottom:244.133333pt;}
.y5d{bottom:247.066667pt;}
.y68{bottom:247.466667pt;}
.y93{bottom:250.133333pt;}
.y6f{bottom:250.933333pt;}
.yb8{bottom:252.800000pt;}
.yc0{bottom:254.800000pt;}
.y9b{bottom:258.000000pt;}
.y32{bottom:259.066667pt;}
.ya{bottom:269.466667pt;}
.y79{bottom:270.933333pt;}
.y1e{bottom:271.866667pt;}
.y3c{bottom:273.200000pt;}
.yc7{bottom:274.000000pt;}
.y45{bottom:276.000000pt;}
.yab{bottom:278.533333pt;}
.y8b{bottom:279.600000pt;}
.y5c{bottom:280.000000pt;}
.yd2{bottom:280.533333pt;}
.ya4{bottom:285.066667pt;}
.yb1{bottom:285.333333pt;}
.y12{bottom:285.866667pt;}
.y67{bottom:288.000000pt;}
.y27{bottom:288.533333pt;}
.yd8{bottom:288.933333pt;}
.y81{bottom:289.333333pt;}
.y31{bottom:291.066667pt;}
.yb7{bottom:291.200000pt;}
.y6e{bottom:291.466667pt;}
.y92{bottom:297.066667pt;}
.ybf{bottom:301.733333pt;}
.y1d{bottom:304.000000pt;}
.y9a{bottom:305.066667pt;}
.y44{bottom:312.133333pt;}
.yc6{bottom:312.400000pt;}
.y78{bottom:314.000000pt;}
.y3b{bottom:314.266667pt;}
.y51{bottom:314.933333pt;}
.yd1{bottom:320.933333pt;}
.y9{bottom:321.733333pt;}
.yaa{bottom:325.333333pt;}
.y8a{bottom:327.333333pt;}
.y80{bottom:327.733333pt;}
.y5b{bottom:328.400000pt;}
.y30{bottom:328.800000pt;}
.yb6{bottom:331.600000pt;}
.ya3{bottom:332.800000pt;}
.yb0{bottom:332.933333pt;}
.y66{bottom:334.800000pt;}
.y26{bottom:334.933333pt;}
.y1c{bottom:336.266667pt;}
.y11{bottom:336.800000pt;}
.yd7{bottom:338.000000pt;}
.ybe{bottom:340.133333pt;}
.y6d{bottom:345.466667pt;}
.y99{bottom:347.733333pt;}
.y77{bottom:348.933333pt;}
.yc5{bottom:350.800000pt;}
.y50{bottom:353.866667pt;}
.y3a{bottom:355.200000pt;}
.y5a{bottom:364.533333pt;}
.y2f{bottom:366.666667pt;}
.y7f{bottom:368.266667pt;}
.yd0{bottom:370.000000pt;}
.y8{bottom:374.000000pt;}
.ya9{bottom:374.400000pt;}
.y1b{bottom:374.533333pt;}
.y89{bottom:374.933333pt;}
.y65{bottom:375.466667pt;}
.y10{bottom:378.400000pt;}
.yaf{bottom:378.533333pt;}
.ya2{bottom:380.533333pt;}
.yb5{bottom:380.666667pt;}
.y25{bottom:381.333333pt;}
.y91{bottom:381.866667pt;}
.y76{bottom:384.133333pt;}
.y98{bottom:384.666667pt;}
.y6c{bottom:386.133333pt;}
.yc4{bottom:389.200000pt;}
.y4f{bottom:392.133333pt;}
.y39{bottom:395.866667pt;}
.y2{bottom:397.866667pt;}
.y43{bottom:399.466667pt;}
.y59{bottom:404.400000pt;}
.y1a{bottom:407.466667pt;}
.y2e{bottom:411.466667pt;}
.ycf{bottom:419.066667pt;}
.yf{bottom:420.000000pt;}
.y64{bottom:422.266667pt;}
.y88{bottom:422.666667pt;}
.ya8{bottom:423.466667pt;}
.y6b{bottom:424.533333pt;}
.yae{bottom:425.466667pt;}
.y75{bottom:427.466667pt;}
.y24{bottom:427.600000pt;}
.y90{bottom:428.133333pt;}
.y97{bottom:428.266667pt;}
.y4e{bottom:430.266667pt;}
.y42{bottom:436.666667pt;}
.y38{bottom:437.866667pt;}
.y58{bottom:440.533333pt;}
.y2d{bottom:444.400000pt;}
.y19{bottom:445.733333pt;}
.y1{bottom:461.866667pt;}
.y8f{bottom:466.000000pt;}
.yb4{bottom:468.133333pt;}
.ye{bottom:470.800000pt;}
.y87{bottom:470.933333pt;}
.y63{bottom:471.333333pt;}
.y23{bottom:474.000000pt;}
.ya1{bottom:475.866667pt;}
.y4d{bottom:476.400000pt;}
.y74{bottom:477.600000pt;}
.y7{bottom:478.400000pt;}
.y41{bottom:479.733333pt;}
.y37{bottom:480.000000pt;}
.y57{bottom:480.400000pt;}
.y2c{bottom:482.666667pt;}
.y18{bottom:484.666667pt;}
.yd{bottom:512.400000pt;}
.ya7{bottom:513.066667pt;}
.y8e{bottom:515.066667pt;}
.y4c{bottom:515.200000pt;}
.y36{bottom:515.600000pt;}
.y2b{bottom:516.000000pt;}
.y40{bottom:517.066667pt;}
.y17{bottom:518.000000pt;}
.yc{bottom:589.733333pt;}
.y86{bottom:610.533333pt;}
.y6a{bottom:615.333333pt;}
.yb3{bottom:615.466667pt;}
.y6{bottom:616.400000pt;}
.yb{bottom:640.933333pt;}
.h9{height:54.538021pt;}
.h11{height:55.071354pt;}
.h1d{height:55.126302pt;}
.h13{height:56.492187pt;}
.hb{height:58.625521pt;}
.hd{height:59.179167pt;}
.h19{height:59.602604pt;}
.he{height:59.712500pt;}
.h17{height:60.135938pt;}
.h1b{height:61.457031pt;}
.h7{height:64.288542pt;}
.h3{height:69.984375pt;}
.ha{height:78.538021pt;}
.h1e{height:81.259635pt;}
.h10{height:82.804688pt;}
.h1f{height:82.859635pt;}
.h15{height:83.158854pt;}
.h20{height:83.392969pt;}
.h14{height:83.692187pt;}
.h23{height:84.135938pt;}
.h24{height:84.669271pt;}
.hc{height:84.758854pt;}
.h21{height:85.312500pt;}
.h18{height:87.869271pt;}
.h1c{height:92.923698pt;}
.hf{height:93.312500pt;}
.h2{height:101.088542pt;}
.h8{height:102.301042pt;}
.h16{height:106.055208pt;}
.h12{height:110.747917pt;}
.h1a{height:112.155729pt;}
.h22{height:112.625000pt;}
.h5{height:122.010417pt;}
.h4{height:131.395833pt;}
.h6{height:150.166667pt;}
.h1{height:187.708333pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x11{left:22.800000pt;}
.x18{left:28.666667pt;}
.xc{left:30.266667pt;}
.x3{left:50.533333pt;}
.x6{left:57.466667pt;}
.x9{left:59.866667pt;}
.x1e{left:64.000000pt;}
.x26{left:70.666667pt;}
.x27{left:90.266667pt;}
.x28{left:98.666667pt;}
.x4{left:112.133333pt;}
.x22{left:115.600000pt;}
.x1a{left:116.533333pt;}
.x20{left:124.266667pt;}
.x25{left:126.400000pt;}
.x2b{left:147.866667pt;}
.x29{left:149.600000pt;}
.xa{left:153.466667pt;}
.x2a{left:156.533333pt;}
.x19{left:163.466667pt;}
.x1{left:167.733333pt;}
.x23{left:169.733333pt;}
.x1b{left:171.200000pt;}
.x2c{left:172.266667pt;}
.x12{left:182.000000pt;}
.x21{left:183.733333pt;}
.xd{left:189.466667pt;}
.x2d{left:196.000000pt;}
.x14{left:202.933333pt;}
.x1c{left:204.800000pt;}
.xb{left:210.533333pt;}
.xf{left:220.266667pt;}
.x7{left:222.800000pt;}
.xe{left:227.200000pt;}
.x15{left:243.733333pt;}
.x1d{left:248.533333pt;}
.x13{left:262.666667pt;}
.x10{left:265.066667pt;}
.x16{left:290.266667pt;}
.x17{left:333.333333pt;}
.x2{left:357.333333pt;}
.x8{left:578.800000pt;}
.x1f{left:612.133333pt;}
.x24{left:620.933333pt;}
.x5{left:697.333333pt;}
}




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