
    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_f27cb970b8782615bff878a6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_571862e2d192ba79a8767196.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.099000;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_47be8d43d8ec5faea4e17082.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.085000;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_64831871c52cab92fd9153d6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.085000;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_488f39d8caac8c14a48f8b6b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.075000;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_fde9362fa5f9a240e5863e35.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.099000;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_1211dc1cc4585395a5b1fbac.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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_ee10e97c3fe1c27ba1a02ebf.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.943000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-0.182400px;}
.lsd{letter-spacing:-0.115800px;}
.ls18{letter-spacing:-0.078600px;}
.ls6{letter-spacing:-0.072000px;}
.ls7{letter-spacing:-0.069600px;}
.ls19{letter-spacing:-0.030960px;}
.ls4{letter-spacing:-0.026640px;}
.ls11{letter-spacing:-0.020880px;}
.ls1a{letter-spacing:-0.015480px;}
.lsa{letter-spacing:-0.004320px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.045000px;}
.ls9{letter-spacing:0.065400px;}
.ls1{letter-spacing:0.065520px;}
.lse{letter-spacing:0.066000px;}
.ls8{letter-spacing:0.075600px;}
.lsb{letter-spacing:0.090000px;}
.ls2{letter-spacing:0.115200px;}
.ls5{letter-spacing:0.130800px;}
.ls16{letter-spacing:0.137400px;}
.ls15{letter-spacing:0.155400px;}
.ls12{letter-spacing:0.174000px;}
.ls13{letter-spacing:0.177600px;}
.ls17{letter-spacing:0.180600px;}
.ls14{letter-spacing:0.360000px;}
.ls3{letter-spacing:25.947360px;}
.lsf{letter-spacing:2610.405000px;}
.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;}
}
.ws5{word-spacing:-32.487480px;}
.ws4{word-spacing:-32.415480px;}
.ws3{word-spacing:-18.731520px;}
.wse{word-spacing:-15.592080px;}
.wsd{word-spacing:-15.588480px;}
.ws10{word-spacing:-15.569880px;}
.ws2{word-spacing:-15.545280px;}
.ws8{word-spacing:-15.490080px;}
.ws6{word-spacing:-15.414480px;}
.ws9{word-spacing:-15.410160px;}
.wsc{word-spacing:-15.393600px;}
.ws1{word-spacing:-15.387840px;}
.ws7{word-spacing:-15.344880px;}
.wsf{word-spacing:-15.298680px;}
.wsb{word-spacing:-15.232080px;}
.ws15{word-spacing:-13.156080px;}
.ws11{word-spacing:-13.112880px;}
.ws12{word-spacing:-12.975480px;}
.ws14{word-spacing:-12.944520px;}
.ws13{word-spacing:-12.896880px;}
.wsa{word-spacing:-12.285000px;}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-1.023840px;}
._0{width:1.610880px;}
._2{width:2507.445000px;}
._3{width:3398.465520px;}
.fc3{color:rgb(0,71,120);}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fsa{font-size:42.120000px;}
.fs9{font-size:45.000000px;}
.fs5{font-size:47.880000px;}
.fs6{font-size:56.880000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:119.880000px;}
.y0{bottom:0.000000px;}
.ydd{bottom:2.520000px;}
.yda{bottom:3.240000px;}
.y28{bottom:3.870000px;}
.yd9{bottom:19.710000px;}
.ydb{bottom:34.020000px;}
.yd8{bottom:36.270000px;}
.yd6{bottom:40.170000px;}
.y4c{bottom:54.900000px;}
.y24{bottom:56.610000px;}
.yd5{bottom:56.640000px;}
.y5{bottom:66.525004px;}
.yd4{bottom:89.670000px;}
.y4{bottom:97.125005px;}
.yd3{bottom:106.140000px;}
.y4b{bottom:112.950000px;}
.ydc{bottom:114.840000px;}
.yd2{bottom:122.700000px;}
.y4a{bottom:126.450000px;}
.y22{bottom:139.264499px;}
.yd1{bottom:155.640000px;}
.y80{bottom:165.780000px;}
.yd7{bottom:165.870000px;}
.y49{bottom:168.570000px;}
.yb0{bottom:168.840000px;}
.yd0{bottom:172.200000px;}
.y7e{bottom:185.310000px;}
.y48{bottom:188.100000px;}
.yaf{bottom:188.280000px;}
.ycf{bottom:188.670000px;}
.yb1{bottom:189.900000px;}
.y19{bottom:196.933500px;}
.y7d{bottom:204.840000px;}
.yce{bottom:205.140000px;}
.y47{bottom:207.540000px;}
.yae{bottom:207.810000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.ycd{bottom:221.700000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y7c{bottom:224.310000px;}
.y46{bottom:227.100000px;}
.yad{bottom:227.370000px;}
.y26{bottom:228.810000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.ycc{bottom:238.170000px;}
.y7b{bottom:243.840000px;}
.y45{bottom:246.630000px;}
.yac{bottom:246.810000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y7a{bottom:263.370000px;}
.y44{bottom:266.070000px;}
.yab{bottom:266.340000px;}
.ycb{bottom:271.200000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y79{bottom:282.810000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y43{bottom:285.600000px;}
.yaa{bottom:285.870000px;}
.yca{bottom:287.670000px;}
.y78{bottom:302.340000px;}
.yc9{bottom:304.140000px;}
.y42{bottom:305.130000px;}
.ya9{bottom:305.310000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.yc8{bottom:320.700000px;}
.y77{bottom:321.870000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y41{bottom:324.570000px;}
.ya8{bottom:324.840000px;}
.yc7{bottom:337.170000px;}
.y76{bottom:341.310000px;}
.y40{bottom:344.100000px;}
.ya7{bottom:344.370000px;}
.y10{bottom:348.133500px;}
.yc6{bottom:353.640000px;}
.y75{bottom:360.840000px;}
.y3f{bottom:363.630000px;}
.ya6{bottom:363.810000px;}
.y74{bottom:380.370000px;}
.y3e{bottom:383.070000px;}
.ya5{bottom:383.340000px;}
.yc5{bottom:386.670000px;}
.yf{bottom:386.785499px;}
.y73{bottom:399.810000px;}
.y3d{bottom:402.600000px;}
.ya4{bottom:402.870000px;}
.yc4{bottom:403.140000px;}
.ye{bottom:408.044999px;}
.y72{bottom:419.340000px;}
.yc3{bottom:419.700000px;}
.y3c{bottom:422.130000px;}
.ya3{bottom:422.310000px;}
.yc2{bottom:436.170000px;}
.y71{bottom:438.870000px;}
.y3b{bottom:441.570000px;}
.ya2{bottom:441.840000px;}
.yc1{bottom:452.670000px;}
.y70{bottom:458.310000px;}
.y3a{bottom:461.100000px;}
.ya1{bottom:461.370000px;}
.yc0{bottom:469.230000px;}
.y6f{bottom:477.840000px;}
.y39{bottom:480.630000px;}
.ya0{bottom:480.810000px;}
.ybf{bottom:485.700000px;}
.y6e{bottom:497.370000px;}
.y38{bottom:500.070000px;}
.y9f{bottom:500.340000px;}
.ybe{bottom:502.170000px;}
.yd{bottom:502.864502px;}
.y6d{bottom:516.810000px;}
.ybd{bottom:518.730000px;}
.y37{bottom:519.600000px;}
.yc{bottom:520.864502px;}
.ybc{bottom:535.200000px;}
.y6c{bottom:536.340000px;}
.yb{bottom:538.864499px;}
.y36{bottom:539.130000px;}
.y6b{bottom:555.870000px;}
.ya{bottom:556.864499px;}
.y35{bottom:558.570000px;}
.ybb{bottom:568.230000px;}
.y6a{bottom:575.310000px;}
.y34{bottom:578.100000px;}
.y9e{bottom:578.370000px;}
.yba{bottom:584.700000px;}
.y69{bottom:594.840000px;}
.y33{bottom:597.630000px;}
.y9d{bottom:597.810000px;}
.yb9{bottom:601.170000px;}
.y68{bottom:614.370000px;}
.y32{bottom:617.070000px;}
.y9c{bottom:617.340000px;}
.yb8{bottom:617.730000px;}
.y9{bottom:626.610001px;}
.y67{bottom:633.840000px;}
.yb7{bottom:634.200000px;}
.y31{bottom:636.630000px;}
.y9b{bottom:636.900000px;}
.y8{bottom:645.510000px;}
.y66{bottom:653.370000px;}
.y30{bottom:656.160000px;}
.y9a{bottom:656.340000px;}
.y7{bottom:666.771000px;}
.yb6{bottom:667.230000px;}
.y65{bottom:672.900000px;}
.y2f{bottom:675.600000px;}
.y99{bottom:675.870000px;}
.yb5{bottom:683.700000px;}
.y64{bottom:692.340000px;}
.y7f{bottom:692.430000px;}
.y2e{bottom:695.130000px;}
.y98{bottom:695.400000px;}
.y63{bottom:711.870000px;}
.y2d{bottom:714.660000px;}
.y97{bottom:714.840000px;}
.yb4{bottom:716.370000px;}
.y6{bottom:726.298500px;}
.y62{bottom:731.400000px;}
.yb3{bottom:733.110000px;}
.y96{bottom:734.370000px;}
.yb2{bottom:746.880000px;}
.y61{bottom:750.840000px;}
.y3{bottom:752.599495px;}
.y95{bottom:753.900000px;}
.y2c{bottom:754.350000px;}
.y83{bottom:767.310000px;}
.y60{bottom:770.370000px;}
.y94{bottom:773.340000px;}
.y2b{bottom:773.880000px;}
.y82{bottom:786.840000px;}
.y5f{bottom:789.900000px;}
.y93{bottom:792.870000px;}
.y2a{bottom:801.240000px;}
.y5e{bottom:809.340000px;}
.y92{bottom:812.400000px;}
.y5d{bottom:828.870000px;}
.y91{bottom:831.840000px;}
.y29{bottom:837.240000px;}
.y5c{bottom:848.400000px;}
.y90{bottom:851.370000px;}
.y5b{bottom:867.840000px;}
.y8f{bottom:870.900000px;}
.y2{bottom:879.369000px;}
.y5a{bottom:887.370000px;}
.y8e{bottom:890.340000px;}
.y27{bottom:891.690000px;}
.y59{bottom:906.900000px;}
.y8d{bottom:909.870000px;}
.y25{bottom:912.030000px;}
.y58{bottom:926.340000px;}
.y8c{bottom:929.400000px;}
.y57{bottom:945.870000px;}
.y8b{bottom:948.840000px;}
.y56{bottom:965.400000px;}
.y1{bottom:966.726000px;}
.y8a{bottom:968.370000px;}
.y55{bottom:984.840000px;}
.y81{bottom:984.930000px;}
.y89{bottom:987.900000px;}
.y54{bottom:1004.370000px;}
.y88{bottom:1007.340000px;}
.y53{bottom:1023.900000px;}
.y87{bottom:1026.870000px;}
.y52{bottom:1043.340000px;}
.y86{bottom:1046.400000px;}
.y51{bottom:1062.900000px;}
.y85{bottom:1065.870000px;}
.y50{bottom:1082.430000px;}
.y84{bottom:1085.400000px;}
.y4f{bottom:1101.870000px;}
.y4e{bottom:1121.400000px;}
.y4d{bottom:1140.930000px;}
.y23{bottom:1203.390000px;}
.hc{height:19.530000px;}
.h7{height:32.130000px;}
.h13{height:32.400000px;}
.h1a{height:34.020003px;}
.h15{height:34.473600px;}
.h19{height:35.212320px;}
.h12{height:38.970000px;}
.h17{height:40.027680px;}
.h9{height:41.464080px;}
.h6{height:45.900000px;}
.h10{height:47.551680px;}
.h3{height:48.195000px;}
.hf{height:48.746160px;}
.ha{height:49.258080px;}
.h16{height:49.530000px;}
.h2{height:55.080000px;}
.h11{height:58.463677px;}
.hd{height:59.235840px;}
.h5{height:78.030000px;}
.he{height:102.737160px;}
.h4{height:119.055004px;}
.h18{height:131.850000px;}
.hb{height:244.470000px;}
.h14{height:765.510000px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:1.439985px;}
.w7{width:19.740000px;}
.w6{width:25.470000px;}
.w8{width:89.460000px;}
.wa{width:173.370000px;}
.wb{width:178.680000px;}
.wc{width:578.400000px;}
.w5{width:599.760000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w4{width:892.979987px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x6{left:-63.720013px;}
.x0{left:0.000000px;}
.x8{left:10.710000px;}
.x16{left:49.680000px;}
.x15{left:51.030000px;}
.x7{left:65.880000px;}
.xc{left:67.770000px;}
.x5{left:76.589987px;}
.x14{left:93.599987px;}
.xf{left:97.829987px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x9{left:121.800000px;}
.x4{left:203.484001px;}
.xa{left:211.260000px;}
.xb{left:212.700000px;}
.x10{left:238.169987px;}
.x11{left:255.179987px;}
.xd{left:374.189987px;}
.xe{left:391.199987px;}
.x3{left:454.959000px;}
.x13{left:535.739987px;}
.x12{left:552.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.162133pt;}
.lsd{letter-spacing:-0.102933pt;}
.ls18{letter-spacing:-0.069867pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:-0.061867pt;}
.ls19{letter-spacing:-0.027520pt;}
.ls4{letter-spacing:-0.023680pt;}
.ls11{letter-spacing:-0.018560pt;}
.ls1a{letter-spacing:-0.013760pt;}
.lsa{letter-spacing:-0.003840pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.040000pt;}
.ls9{letter-spacing:0.058133pt;}
.ls1{letter-spacing:0.058240pt;}
.lse{letter-spacing:0.058667pt;}
.ls8{letter-spacing:0.067200pt;}
.lsb{letter-spacing:0.080000pt;}
.ls2{letter-spacing:0.102400pt;}
.ls5{letter-spacing:0.116267pt;}
.ls16{letter-spacing:0.122133pt;}
.ls15{letter-spacing:0.138133pt;}
.ls12{letter-spacing:0.154667pt;}
.ls13{letter-spacing:0.157867pt;}
.ls17{letter-spacing:0.160533pt;}
.ls14{letter-spacing:0.320000pt;}
.ls3{letter-spacing:23.064320pt;}
.lsf{letter-spacing:2320.360000pt;}
.ws5{word-spacing:-28.877760pt;}
.ws4{word-spacing:-28.813760pt;}
.ws3{word-spacing:-16.650240pt;}
.wse{word-spacing:-13.859627pt;}
.wsd{word-spacing:-13.856427pt;}
.ws10{word-spacing:-13.839893pt;}
.ws2{word-spacing:-13.818027pt;}
.ws8{word-spacing:-13.768960pt;}
.ws6{word-spacing:-13.701760pt;}
.ws9{word-spacing:-13.697920pt;}
.wsc{word-spacing:-13.683200pt;}
.ws1{word-spacing:-13.678080pt;}
.ws7{word-spacing:-13.639893pt;}
.wsf{word-spacing:-13.598827pt;}
.wsb{word-spacing:-13.539627pt;}
.ws15{word-spacing:-11.694293pt;}
.ws11{word-spacing:-11.655893pt;}
.ws12{word-spacing:-11.533760pt;}
.ws14{word-spacing:-11.506240pt;}
.ws13{word-spacing:-11.463893pt;}
.wsa{word-spacing:-10.920000pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-0.910080pt;}
._0{width:1.431893pt;}
._2{width:2228.840000pt;}
._3{width:3020.858240pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:37.440000pt;}
.fs9{font-size:40.000000pt;}
.fs5{font-size:42.560000pt;}
.fs6{font-size:50.560000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:106.560000pt;}
.y0{bottom:0.000000pt;}
.ydd{bottom:2.240000pt;}
.yda{bottom:2.880000pt;}
.y28{bottom:3.440000pt;}
.yd9{bottom:17.520000pt;}
.ydb{bottom:30.240000pt;}
.yd8{bottom:32.240000pt;}
.yd6{bottom:35.706667pt;}
.y4c{bottom:48.800000pt;}
.y24{bottom:50.320000pt;}
.yd5{bottom:50.346667pt;}
.y5{bottom:59.133337pt;}
.yd4{bottom:79.706667pt;}
.y4{bottom:86.333337pt;}
.yd3{bottom:94.346667pt;}
.y4b{bottom:100.400000pt;}
.ydc{bottom:102.080000pt;}
.yd2{bottom:109.066667pt;}
.y4a{bottom:112.400000pt;}
.y22{bottom:123.790666pt;}
.yd1{bottom:138.346667pt;}
.y80{bottom:147.360000pt;}
.yd7{bottom:147.440000pt;}
.y49{bottom:149.840000pt;}
.yb0{bottom:150.080000pt;}
.yd0{bottom:153.066667pt;}
.y7e{bottom:164.720000pt;}
.y48{bottom:167.200000pt;}
.yaf{bottom:167.360000pt;}
.ycf{bottom:167.706667pt;}
.yb1{bottom:168.800000pt;}
.y19{bottom:175.052000pt;}
.y7d{bottom:182.080000pt;}
.yce{bottom:182.346667pt;}
.y47{bottom:184.480000pt;}
.yae{bottom:184.720000pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.ycd{bottom:197.066667pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y7c{bottom:199.386667pt;}
.y46{bottom:201.866667pt;}
.yad{bottom:202.106667pt;}
.y26{bottom:203.386667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.ycc{bottom:211.706667pt;}
.y7b{bottom:216.746667pt;}
.y45{bottom:219.226667pt;}
.yac{bottom:219.386667pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y7a{bottom:234.106667pt;}
.y44{bottom:236.506667pt;}
.yab{bottom:236.746667pt;}
.ycb{bottom:241.066667pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y79{bottom:251.386667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y43{bottom:253.866667pt;}
.yaa{bottom:254.106667pt;}
.yca{bottom:255.706667pt;}
.y78{bottom:268.746667pt;}
.yc9{bottom:270.346667pt;}
.y42{bottom:271.226667pt;}
.ya9{bottom:271.386667pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.yc8{bottom:285.066667pt;}
.y77{bottom:286.106667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y41{bottom:288.506667pt;}
.ya8{bottom:288.746667pt;}
.yc7{bottom:299.706667pt;}
.y76{bottom:303.386667pt;}
.y40{bottom:305.866667pt;}
.ya7{bottom:306.106667pt;}
.y10{bottom:309.452000pt;}
.yc6{bottom:314.346667pt;}
.y75{bottom:320.746667pt;}
.y3f{bottom:323.226667pt;}
.ya6{bottom:323.386667pt;}
.y74{bottom:338.106667pt;}
.y3e{bottom:340.506667pt;}
.ya5{bottom:340.746667pt;}
.yc5{bottom:343.706667pt;}
.yf{bottom:343.809333pt;}
.y73{bottom:355.386667pt;}
.y3d{bottom:357.866667pt;}
.ya4{bottom:358.106667pt;}
.yc4{bottom:358.346667pt;}
.ye{bottom:362.706666pt;}
.y72{bottom:372.746667pt;}
.yc3{bottom:373.066667pt;}
.y3c{bottom:375.226667pt;}
.ya3{bottom:375.386667pt;}
.yc2{bottom:387.706667pt;}
.y71{bottom:390.106667pt;}
.y3b{bottom:392.506667pt;}
.ya2{bottom:392.746667pt;}
.yc1{bottom:402.373333pt;}
.y70{bottom:407.386667pt;}
.y3a{bottom:409.866667pt;}
.ya1{bottom:410.106667pt;}
.yc0{bottom:417.093333pt;}
.y6f{bottom:424.746667pt;}
.y39{bottom:427.226667pt;}
.ya0{bottom:427.386667pt;}
.ybf{bottom:431.733333pt;}
.y6e{bottom:442.106667pt;}
.y38{bottom:444.506667pt;}
.y9f{bottom:444.746667pt;}
.ybe{bottom:446.373333pt;}
.yd{bottom:446.990669pt;}
.y6d{bottom:459.386667pt;}
.ybd{bottom:461.093333pt;}
.y37{bottom:461.866667pt;}
.yc{bottom:462.990669pt;}
.ybc{bottom:475.733333pt;}
.y6c{bottom:476.746667pt;}
.yb{bottom:478.990666pt;}
.y36{bottom:479.226667pt;}
.y6b{bottom:494.106667pt;}
.ya{bottom:494.990666pt;}
.y35{bottom:496.506667pt;}
.ybb{bottom:505.093333pt;}
.y6a{bottom:511.386667pt;}
.y34{bottom:513.866667pt;}
.y9e{bottom:514.106667pt;}
.yba{bottom:519.733333pt;}
.y69{bottom:528.746667pt;}
.y33{bottom:531.226667pt;}
.y9d{bottom:531.386667pt;}
.yb9{bottom:534.373333pt;}
.y68{bottom:546.106667pt;}
.y32{bottom:548.506667pt;}
.y9c{bottom:548.746667pt;}
.yb8{bottom:549.093333pt;}
.y9{bottom:556.986668pt;}
.y67{bottom:563.413333pt;}
.yb7{bottom:563.733333pt;}
.y31{bottom:565.893333pt;}
.y9b{bottom:566.133333pt;}
.y8{bottom:573.786667pt;}
.y66{bottom:580.773333pt;}
.y30{bottom:583.253333pt;}
.y9a{bottom:583.413333pt;}
.y7{bottom:592.685334pt;}
.yb6{bottom:593.093333pt;}
.y65{bottom:598.133333pt;}
.y2f{bottom:600.533333pt;}
.y99{bottom:600.773333pt;}
.yb5{bottom:607.733333pt;}
.y64{bottom:615.413333pt;}
.y7f{bottom:615.493333pt;}
.y2e{bottom:617.893333pt;}
.y98{bottom:618.133333pt;}
.y63{bottom:632.773333pt;}
.y2d{bottom:635.253333pt;}
.y97{bottom:635.413333pt;}
.yb4{bottom:636.773333pt;}
.y6{bottom:645.598667pt;}
.y62{bottom:650.133333pt;}
.yb3{bottom:651.653333pt;}
.y96{bottom:652.773333pt;}
.yb2{bottom:663.893333pt;}
.y61{bottom:667.413333pt;}
.y3{bottom:668.977329pt;}
.y95{bottom:670.133333pt;}
.y2c{bottom:670.533333pt;}
.y83{bottom:682.053333pt;}
.y60{bottom:684.773333pt;}
.y94{bottom:687.413333pt;}
.y2b{bottom:687.893333pt;}
.y82{bottom:699.413333pt;}
.y5f{bottom:702.133333pt;}
.y93{bottom:704.773333pt;}
.y2a{bottom:712.213333pt;}
.y5e{bottom:719.413333pt;}
.y92{bottom:722.133333pt;}
.y5d{bottom:736.773333pt;}
.y91{bottom:739.413333pt;}
.y29{bottom:744.213333pt;}
.y5c{bottom:754.133333pt;}
.y90{bottom:756.773333pt;}
.y5b{bottom:771.413333pt;}
.y8f{bottom:774.133333pt;}
.y2{bottom:781.661334pt;}
.y5a{bottom:788.773333pt;}
.y8e{bottom:791.413333pt;}
.y27{bottom:792.613333pt;}
.y59{bottom:806.133333pt;}
.y8d{bottom:808.773333pt;}
.y25{bottom:810.693333pt;}
.y58{bottom:823.413333pt;}
.y8c{bottom:826.133333pt;}
.y57{bottom:840.773333pt;}
.y8b{bottom:843.413333pt;}
.y56{bottom:858.133333pt;}
.y1{bottom:859.312000pt;}
.y8a{bottom:860.773333pt;}
.y55{bottom:875.413333pt;}
.y81{bottom:875.493333pt;}
.y89{bottom:878.133333pt;}
.y54{bottom:892.773333pt;}
.y88{bottom:895.413333pt;}
.y53{bottom:910.133333pt;}
.y87{bottom:912.773333pt;}
.y52{bottom:927.413333pt;}
.y86{bottom:930.133333pt;}
.y51{bottom:944.800000pt;}
.y85{bottom:947.440000pt;}
.y50{bottom:962.160000pt;}
.y84{bottom:964.800000pt;}
.y4f{bottom:979.440000pt;}
.y4e{bottom:996.800000pt;}
.y4d{bottom:1014.160000pt;}
.y23{bottom:1069.680000pt;}
.hc{height:17.360000pt;}
.h7{height:28.560000pt;}
.h13{height:28.800000pt;}
.h1a{height:30.240003pt;}
.h15{height:30.643200pt;}
.h19{height:31.299840pt;}
.h12{height:34.640000pt;}
.h17{height:35.580160pt;}
.h9{height:36.856960pt;}
.h6{height:40.800000pt;}
.h10{height:42.268160pt;}
.h3{height:42.840000pt;}
.hf{height:43.329920pt;}
.ha{height:43.784960pt;}
.h16{height:44.026667pt;}
.h2{height:48.960000pt;}
.h11{height:51.967713pt;}
.hd{height:52.654080pt;}
.h5{height:69.360000pt;}
.he{height:91.321920pt;}
.h4{height:105.826671pt;}
.h18{height:117.200000pt;}
.hb{height:217.306667pt;}
.h14{height:680.453333pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:1.279987pt;}
.w7{width:17.546667pt;}
.w6{width:22.640000pt;}
.w8{width:79.520000pt;}
.wa{width:154.106667pt;}
.wb{width:158.826667pt;}
.wc{width:514.133333pt;}
.w5{width:533.120000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w4{width:793.759988pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x6{left:-56.640012pt;}
.x0{left:0.000000pt;}
.x8{left:9.520000pt;}
.x16{left:44.160000pt;}
.x15{left:45.360000pt;}
.x7{left:58.560000pt;}
.xc{left:60.240000pt;}
.x5{left:68.079988pt;}
.x14{left:83.199988pt;}
.xf{left:86.959988pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x9{left:108.266667pt;}
.x4{left:180.874667pt;}
.xa{left:187.786667pt;}
.xb{left:189.066667pt;}
.x10{left:211.706655pt;}
.x11{left:226.826655pt;}
.xd{left:332.613322pt;}
.xe{left:347.733322pt;}
.x3{left:404.408000pt;}
.x13{left:476.213322pt;}
.x12{left:491.333322pt;}
}




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