
    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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.854004;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_e5866ba5bf974ff3877e3cc2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.949219;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_f046cf3ae6703c8bc9a98f12.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.928711;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_fb0dcbbc1ec0ab76120c9be5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983887;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_9e609636ab5e214ace0bb0a2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.992188;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_9021951be431d43fae642e8f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0557b68eae99b92638b8f123.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_78d712a73fc2d9b822eb8134.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3167771f473b630e7ad67cc2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.808105;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_9010b5bf553e218868e37556.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c8bb43a29e9498e0c501c6c1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.682617;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:ffc;src:url('chunks/assets/font_bfb220f3d87ba018cac8177c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a5653aba0317e0ac6009256d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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:ffe;src:url('chunks/assets/font_4f20eb71297163042f7c6721.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;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:fff;src:url('chunks/assets/font_e39e96fd991bed84c24e4985.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_c393c7b1ab63614700d5080d.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_9983f6053aee28a012b94a8d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938477;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.249953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-30.240000px;}
.v3{vertical-align:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:24.480000px;}
.v1{vertical-align:30.240000px;}
.ls1{letter-spacing:-1.541894px;}
.ls11{letter-spacing:-0.158976px;}
.ls12{letter-spacing:-0.125856px;}
.ls16{letter-spacing:-0.119232px;}
.ls15{letter-spacing:-0.079488px;}
.lsf{letter-spacing:-0.014400px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000576px;}
.ls8{letter-spacing:0.001440px;}
.ls17{letter-spacing:0.010944px;}
.lsb{letter-spacing:0.012096px;}
.ls7{letter-spacing:0.014400px;}
.lse{letter-spacing:0.116928px;}
.ls4{letter-spacing:0.118080px;}
.ls3{letter-spacing:0.119376px;}
.ls5{letter-spacing:0.119520px;}
.ls9{letter-spacing:0.125424px;}
.lsa{letter-spacing:0.274176px;}
.ls6{letter-spacing:0.275616px;}
.lsc{letter-spacing:0.283968px;}
.lsd{letter-spacing:0.317376px;}
.ls2{letter-spacing:0.359136px;}
.ls14{letter-spacing:12.582576px;}
.ls13{letter-spacing:12.582720px;}
.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;}
}
.ws7{word-spacing:-23.577696px;}
.ws5{word-spacing:-23.535936px;}
.ws8{word-spacing:-23.502528px;}
.ws9{word-spacing:-23.494176px;}
.ws4{word-spacing:-23.218560px;}
.wsa{word-spacing:-20.030400px;}
.wsb{word-spacing:-20.016000px;}
.wsc{word-spacing:-20.001600px;}
.wse{word-spacing:-18.414720px;}
.wsf{word-spacing:-18.295488px;}
.wsd{word-spacing:-18.255744px;}
.ws6{word-spacing:-15.212160px;}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:1.912038px;}
.ws2{word-spacing:18.464754px;}
.ws3{word-spacing:71.097660px;}
._0{margin-left:-7.879829px;}
._3{margin-left:-6.489185px;}
._2{margin-left:-3.798710px;}
._1{margin-left:-2.781289px;}
._4{margin-left:-1.761254px;}
._5{width:1.042982px;}
._6{width:69.552576px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(237,0,0);}
.fc1{color:rgb(70,157,215);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:37.730666px;}
.fs8{font-size:47.520000px;}
.fs2{font-size:48.510856px;}
.fs1{font-size:51.124236px;}
.fs7{font-size:54.720000px;}
.fsa{font-size:57.600000px;}
.fs9{font-size:60.480000px;}
.fs0{font-size:66.000000px;}
.fsb{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:83.520000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:81.067157px;}
.y6{bottom:97.564115px;}
.y5{bottom:112.060204px;}
.y94{bottom:117.120000px;}
.y70{bottom:117.480000px;}
.y7e{bottom:120.360000px;}
.ya3{bottom:126.120000px;}
.yb9{bottom:126.480000px;}
.yd9{bottom:131.520000px;}
.y3d{bottom:135.120000px;}
.y93{bottom:137.640000px;}
.y69{bottom:138.360000px;}
.y7d{bottom:140.880000px;}
.ya2{bottom:147.000000px;}
.yb8{bottom:147.360000px;}
.yd8{bottom:152.400000px;}
.y3c{bottom:156.000000px;}
.y92{bottom:158.520000px;}
.y68{bottom:158.880000px;}
.y7c{bottom:161.760000px;}
.ya1{bottom:167.520000px;}
.yb7{bottom:167.880000px;}
.y3b{bottom:176.520000px;}
.y91{bottom:179.040000px;}
.y67{bottom:179.760000px;}
.y7b{bottom:182.280000px;}
.ya0{bottom:188.400000px;}
.yb6{bottom:188.760000px;}
.yd7{bottom:194.160000px;}
.y3a{bottom:197.400000px;}
.y66{bottom:200.280000px;}
.y7a{bottom:203.160000px;}
.y90{bottom:208.920000px;}
.yd6{bottom:214.680000px;}
.yb5{bottom:218.280000px;}
.y65{bottom:221.160000px;}
.y79{bottom:223.680000px;}
.y9f{bottom:229.800000px;}
.y39{bottom:235.920000px;}
.y11{bottom:241.500000px;}
.y64{bottom:241.680000px;}
.y8f{bottom:247.440000px;}
.y9e{bottom:250.320000px;}
.y78{bottom:253.560000px;}
.yd5{bottom:256.440000px;}
.yb4{bottom:257.160000px;}
.y10{bottom:262.500000px;}
.y63{bottom:262.560000px;}
.y8e{bottom:268.320000px;}
.y77{bottom:274.440000px;}
.y38{bottom:274.800000px;}
.yd4{bottom:276.960000px;}
.yb3{bottom:277.680000px;}
.y9d{bottom:280.200000px;}
.y62{bottom:283.080000px;}
.yf{bottom:283.500000px;}
.y8d{bottom:288.840000px;}
.y37{bottom:295.320000px;}
.yb2{bottom:298.560000px;}
.y61{bottom:303.960000px;}
.ye{bottom:304.500000px;}
.y8c{bottom:309.720000px;}
.y76{bottom:312.960000px;}
.y36{bottom:316.200000px;}
.y9c{bottom:318.720000px;}
.yb1{bottom:319.080000px;}
.y60{bottom:324.480000px;}
.y8b{bottom:330.240000px;}
.y6f{bottom:333.480000px;}
.y35{bottom:336.720000px;}
.y9b{bottom:339.600000px;}
.yb0{bottom:339.960000px;}
.y5f{bottom:345.360000px;}
.y8a{bottom:351.120000px;}
.y75{bottom:354.360000px;}
.y6e{bottom:354.720000px;}
.y34{bottom:357.600000px;}
.y9a{bottom:360.120000px;}
.yaf{bottom:360.480000px;}
.y5e{bottom:365.880000px;}
.y89{bottom:371.640000px;}
.y74{bottom:374.880000px;}
.y33{bottom:378.120000px;}
.y99{bottom:381.000000px;}
.yae{bottom:381.360000px;}
.y5d{bottom:386.760000px;}
.y88{bottom:392.520000px;}
.y6d{bottom:392.880000px;}
.y73{bottom:393.960000px;}
.y32{bottom:399.000000px;}
.yad{bottom:401.880000px;}
.y98{bottom:404.040000px;}
.y5c{bottom:407.280000px;}
.y72{bottom:412.680000px;}
.y87{bottom:413.040000px;}
.y6c{bottom:413.760000px;}
.y31{bottom:419.520000px;}
.yac{bottom:422.760000px;}
.y71{bottom:428.160000px;}
.y97{bottom:432.480000px;}
.y86{bottom:433.920000px;}
.y6b{bottom:434.280000px;}
.y5b{bottom:437.160000px;}
.y30{bottom:440.400000px;}
.yab{bottom:443.280000px;}
.ybe{bottom:448.680000px;}
.y85{bottom:454.440000px;}
.y6a{bottom:455.160000px;}
.y2f{bottom:460.920000px;}
.y96{bottom:461.280000px;}
.yaa{bottom:464.160000px;}
.ybd{bottom:469.560000px;}
.y84{bottom:475.320000px;}
.y5a{bottom:475.680000px;}
.y95{bottom:476.760000px;}
.y2e{bottom:481.800000px;}
.ya9{bottom:484.680000px;}
.ybc{bottom:490.080000px;}
.y83{bottom:495.840000px;}
.y59{bottom:496.560000px;}
.y2d{bottom:502.320000px;}
.ya8{bottom:505.200000px;}
.yd3{bottom:505.560000px;}
.ybb{bottom:510.960000px;}
.y58{bottom:517.080000px;}
.y82{bottom:519.240000px;}
.y2c{bottom:523.200000px;}
.ya7{bottom:524.280000px;}
.yd2{bottom:526.440000px;}
.y57{bottom:537.960000px;}
.y81{bottom:538.320000px;}
.yba{bottom:540.480000px;}
.ya6{bottom:543.000000px;}
.y2b{bottom:543.720000px;}
.yd1{bottom:546.960000px;}
.y80{bottom:557.400000px;}
.y56{bottom:558.480000px;}
.ya5{bottom:562.080000px;}
.y2a{bottom:573.600000px;}
.y7f{bottom:574.320000px;}
.ya4{bottom:577.560000px;}
.y55{bottom:579.360000px;}
.yd0{bottom:588.720000px;}
.y29{bottom:595.920000px;}
.y54{bottom:599.880000px;}
.ycf{bottom:609.600000px;}
.y53{bottom:620.760000px;}
.yce{bottom:630.120000px;}
.y52{bottom:641.280000px;}
.y28{bottom:654.240000px;}
.y51{bottom:662.160000px;}
.ycd{bottom:671.880000px;}
.y27{bottom:676.560000px;}
.y50{bottom:682.680000px;}
.ycc{bottom:692.760000px;}
.y26{bottom:697.080000px;}
.y4f{bottom:703.560000px;}
.yd{bottom:717.000000px;}
.y25{bottom:717.960000px;}
.y4e{bottom:724.080000px;}
.ycb{bottom:734.160000px;}
.yc{bottom:738.000000px;}
.y24{bottom:740.280000px;}
.y4d{bottom:744.960000px;}
.yca{bottom:755.040000px;}
.yb{bottom:759.000000px;}
.y23{bottom:762.600000px;}
.y4c{bottom:765.480000px;}
.ya{bottom:780.000000px;}
.y4b{bottom:786.360000px;}
.y22{bottom:791.040000px;}
.yc9{bottom:796.800000px;}
.y9{bottom:801.000000px;}
.y4a{bottom:806.880000px;}
.y21{bottom:813.360000px;}
.yc8{bottom:817.320000px;}
.y49{bottom:827.760000px;}
.y20{bottom:835.680000px;}
.yc7{bottom:838.200000px;}
.y48{bottom:848.280000px;}
.y1f{bottom:851.880000px;}
.yc6{bottom:858.720000px;}
.y8{bottom:867.000000px;}
.ye1{bottom:867.720000px;}
.y47{bottom:869.160000px;}
.y1e{bottom:880.320000px;}
.y46{bottom:889.680000px;}
.yc5{bottom:900.480000px;}
.y1d{bottom:902.640000px;}
.ye0{bottom:909.480000px;}
.y45{bottom:910.560000px;}
.y1c{bottom:917.400000px;}
.yc4{bottom:921.360000px;}
.ydf{bottom:930.360000px;}
.y44{bottom:931.080000px;}
.y1b{bottom:938.640000px;}
.yc3{bottom:941.880000px;}
.y43{bottom:951.960000px;}
.y7{bottom:953.670000px;}
.y1a{bottom:962.760000px;}
.yde{bottom:971.760000px;}
.y42{bottom:972.480000px;}
.y2{bottom:973.770000px;}
.y19{bottom:986.160000px;}
.y1{bottom:989.220000px;}
.y3{bottom:989.481516px;}
.ydd{bottom:992.640000px;}
.y41{bottom:993.360000px;}
.yc2{bottom:1004.160000px;}
.y18{bottom:1007.040000px;}
.ydc{bottom:1013.160000px;}
.y40{bottom:1013.880000px;}
.yc1{bottom:1025.040000px;}
.y17{bottom:1028.280000px;}
.y3f{bottom:1034.760000px;}
.y16{bottom:1052.400000px;}
.ydb{bottom:1054.920000px;}
.y3e{bottom:1055.280000px;}
.yc0{bottom:1066.800000px;}
.yda{bottom:1075.800000px;}
.y15{bottom:1076.160000px;}
.y14{bottom:1096.680000px;}
.ybf{bottom:1108.560000px;}
.y13{bottom:1117.560000px;}
.y12{bottom:1138.080000px;}
.h6{height:27.487380px;}
.hf{height:34.595859px;}
.h5{height:35.340917px;}
.h4{height:38.443029px;}
.h12{height:48.224531px;}
.ha{height:51.594727px;}
.hb{height:52.417969px;}
.h11{height:52.488281px;}
.h2{height:55.784180px;}
.h9{height:56.285156px;}
.he{height:57.012188px;}
.h10{height:59.075859px;}
.hc{height:60.804844px;}
.hd{height:70.077656px;}
.h8{height:74.250000px;}
.h3{height:220.177301px;}
.h7{height:1262.834700px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w3{width:163.305341px;}
.w5{width:892.500000px;}
.w4{width:892.913400px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:51.226101px;}
.x2{left:107.999987px;}
.x19{left:120.936024px;}
.x5{left:129.000000px;}
.x11{left:140.400144px;}
.x9{left:149.338620px;}
.x7{left:151.900632px;}
.x15{left:163.074456px;}
.xe{left:198.551520px;}
.x10{left:211.888908px;}
.xf{left:216.380124px;}
.xd{left:233.829324px;}
.xc{left:256.847904px;}
.x1{left:272.294987px;}
.xa{left:286.816392px;}
.x17{left:307.592280px;}
.x8{left:308.816172px;}
.x1a{left:342.842292px;}
.x13{left:356.603040px;}
.x4{left:366.779250px;}
.xb{left:443.974320px;}
.x6{left:446.474880px;}
.x16{left:659.594880px;}
.x18{left:769.934880px;}
.x12{left:782.354880px;}
.x14{left:784.334880px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v3{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:21.760000pt;}
.v1{vertical-align:26.880000pt;}
.ls1{letter-spacing:-1.370572pt;}
.ls11{letter-spacing:-0.141312pt;}
.ls12{letter-spacing:-0.111872pt;}
.ls16{letter-spacing:-0.105984pt;}
.ls15{letter-spacing:-0.070656pt;}
.lsf{letter-spacing:-0.012800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000512pt;}
.ls8{letter-spacing:0.001280pt;}
.ls17{letter-spacing:0.009728pt;}
.lsb{letter-spacing:0.010752pt;}
.ls7{letter-spacing:0.012800pt;}
.lse{letter-spacing:0.103936pt;}
.ls4{letter-spacing:0.104960pt;}
.ls3{letter-spacing:0.106112pt;}
.ls5{letter-spacing:0.106240pt;}
.ls9{letter-spacing:0.111488pt;}
.lsa{letter-spacing:0.243712pt;}
.ls6{letter-spacing:0.244992pt;}
.lsc{letter-spacing:0.252416pt;}
.lsd{letter-spacing:0.282112pt;}
.ls2{letter-spacing:0.319232pt;}
.ls14{letter-spacing:11.184512pt;}
.ls13{letter-spacing:11.184640pt;}
.ws7{word-spacing:-20.957952pt;}
.ws5{word-spacing:-20.920832pt;}
.ws8{word-spacing:-20.891136pt;}
.ws9{word-spacing:-20.883712pt;}
.ws4{word-spacing:-20.638720pt;}
.wsa{word-spacing:-17.804800pt;}
.wsb{word-spacing:-17.792000pt;}
.wsc{word-spacing:-17.779200pt;}
.wse{word-spacing:-16.368640pt;}
.wsf{word-spacing:-16.262656pt;}
.wsd{word-spacing:-16.227328pt;}
.ws6{word-spacing:-13.521920pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:1.699589pt;}
.ws2{word-spacing:16.413115pt;}
.ws3{word-spacing:63.197920pt;}
._0{margin-left:-7.004293pt;}
._3{margin-left:-5.768164pt;}
._2{margin-left:-3.376631pt;}
._1{margin-left:-2.472257pt;}
._4{margin-left:-1.565559pt;}
._5{width:0.927095pt;}
._6{width:61.824512pt;}
.fs3{font-size:33.538370pt;}
.fs8{font-size:42.240000pt;}
.fs2{font-size:43.120761pt;}
.fs1{font-size:45.443765pt;}
.fs7{font-size:48.640000pt;}
.fsa{font-size:51.200000pt;}
.fs9{font-size:53.760000pt;}
.fs0{font-size:58.666667pt;}
.fsb{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:74.240000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:72.059695pt;}
.y6{bottom:86.723658pt;}
.y5{bottom:99.609070pt;}
.y94{bottom:104.106667pt;}
.y70{bottom:104.426667pt;}
.y7e{bottom:106.986667pt;}
.ya3{bottom:112.106667pt;}
.yb9{bottom:112.426667pt;}
.yd9{bottom:116.906667pt;}
.y3d{bottom:120.106667pt;}
.y93{bottom:122.346667pt;}
.y69{bottom:122.986667pt;}
.y7d{bottom:125.226667pt;}
.ya2{bottom:130.666667pt;}
.yb8{bottom:130.986667pt;}
.yd8{bottom:135.466667pt;}
.y3c{bottom:138.666667pt;}
.y92{bottom:140.906667pt;}
.y68{bottom:141.226667pt;}
.y7c{bottom:143.786667pt;}
.ya1{bottom:148.906667pt;}
.yb7{bottom:149.226667pt;}
.y3b{bottom:156.906667pt;}
.y91{bottom:159.146667pt;}
.y67{bottom:159.786667pt;}
.y7b{bottom:162.026667pt;}
.ya0{bottom:167.466667pt;}
.yb6{bottom:167.786667pt;}
.yd7{bottom:172.586667pt;}
.y3a{bottom:175.466667pt;}
.y66{bottom:178.026667pt;}
.y7a{bottom:180.586667pt;}
.y90{bottom:185.706667pt;}
.yd6{bottom:190.826667pt;}
.yb5{bottom:194.026667pt;}
.y65{bottom:196.586667pt;}
.y79{bottom:198.826667pt;}
.y9f{bottom:204.266667pt;}
.y39{bottom:209.706667pt;}
.y11{bottom:214.666667pt;}
.y64{bottom:214.826667pt;}
.y8f{bottom:219.946667pt;}
.y9e{bottom:222.506667pt;}
.y78{bottom:225.386667pt;}
.yd5{bottom:227.946667pt;}
.yb4{bottom:228.586667pt;}
.y10{bottom:233.333333pt;}
.y63{bottom:233.386667pt;}
.y8e{bottom:238.506667pt;}
.y77{bottom:243.946667pt;}
.y38{bottom:244.266667pt;}
.yd4{bottom:246.186667pt;}
.yb3{bottom:246.826667pt;}
.y9d{bottom:249.066667pt;}
.y62{bottom:251.626667pt;}
.yf{bottom:252.000000pt;}
.y8d{bottom:256.746667pt;}
.y37{bottom:262.506667pt;}
.yb2{bottom:265.386667pt;}
.y61{bottom:270.186667pt;}
.ye{bottom:270.666667pt;}
.y8c{bottom:275.306667pt;}
.y76{bottom:278.186667pt;}
.y36{bottom:281.066667pt;}
.y9c{bottom:283.306667pt;}
.yb1{bottom:283.626667pt;}
.y60{bottom:288.426667pt;}
.y8b{bottom:293.546667pt;}
.y6f{bottom:296.426667pt;}
.y35{bottom:299.306667pt;}
.y9b{bottom:301.866667pt;}
.yb0{bottom:302.186667pt;}
.y5f{bottom:306.986667pt;}
.y8a{bottom:312.106667pt;}
.y75{bottom:314.986667pt;}
.y6e{bottom:315.306667pt;}
.y34{bottom:317.866667pt;}
.y9a{bottom:320.106667pt;}
.yaf{bottom:320.426667pt;}
.y5e{bottom:325.226667pt;}
.y89{bottom:330.346667pt;}
.y74{bottom:333.226667pt;}
.y33{bottom:336.106667pt;}
.y99{bottom:338.666667pt;}
.yae{bottom:338.986667pt;}
.y5d{bottom:343.786667pt;}
.y88{bottom:348.906667pt;}
.y6d{bottom:349.226667pt;}
.y73{bottom:350.186667pt;}
.y32{bottom:354.666667pt;}
.yad{bottom:357.226667pt;}
.y98{bottom:359.146667pt;}
.y5c{bottom:362.026667pt;}
.y72{bottom:366.826667pt;}
.y87{bottom:367.146667pt;}
.y6c{bottom:367.786667pt;}
.y31{bottom:372.906667pt;}
.yac{bottom:375.786667pt;}
.y71{bottom:380.586667pt;}
.y97{bottom:384.426667pt;}
.y86{bottom:385.706667pt;}
.y6b{bottom:386.026667pt;}
.y5b{bottom:388.586667pt;}
.y30{bottom:391.466667pt;}
.yab{bottom:394.026667pt;}
.ybe{bottom:398.826667pt;}
.y85{bottom:403.946667pt;}
.y6a{bottom:404.586667pt;}
.y2f{bottom:409.706667pt;}
.y96{bottom:410.026667pt;}
.yaa{bottom:412.586667pt;}
.ybd{bottom:417.386667pt;}
.y84{bottom:422.506667pt;}
.y5a{bottom:422.826667pt;}
.y95{bottom:423.786667pt;}
.y2e{bottom:428.266667pt;}
.ya9{bottom:430.826667pt;}
.ybc{bottom:435.626667pt;}
.y83{bottom:440.746667pt;}
.y59{bottom:441.386667pt;}
.y2d{bottom:446.506667pt;}
.ya8{bottom:449.066667pt;}
.yd3{bottom:449.386667pt;}
.ybb{bottom:454.186667pt;}
.y58{bottom:459.626667pt;}
.y82{bottom:461.546667pt;}
.y2c{bottom:465.066667pt;}
.ya7{bottom:466.026667pt;}
.yd2{bottom:467.946667pt;}
.y57{bottom:478.186667pt;}
.y81{bottom:478.506667pt;}
.yba{bottom:480.426667pt;}
.ya6{bottom:482.666667pt;}
.y2b{bottom:483.306667pt;}
.yd1{bottom:486.186667pt;}
.y80{bottom:495.466667pt;}
.y56{bottom:496.426667pt;}
.ya5{bottom:499.626667pt;}
.y2a{bottom:509.866667pt;}
.y7f{bottom:510.506667pt;}
.ya4{bottom:513.386667pt;}
.y55{bottom:514.986667pt;}
.yd0{bottom:523.306667pt;}
.y29{bottom:529.706667pt;}
.y54{bottom:533.226667pt;}
.ycf{bottom:541.866667pt;}
.y53{bottom:551.786667pt;}
.yce{bottom:560.106667pt;}
.y52{bottom:570.026667pt;}
.y28{bottom:581.546667pt;}
.y51{bottom:588.586667pt;}
.ycd{bottom:597.226667pt;}
.y27{bottom:601.386667pt;}
.y50{bottom:606.826667pt;}
.ycc{bottom:615.786667pt;}
.y26{bottom:619.626667pt;}
.y4f{bottom:625.386667pt;}
.yd{bottom:637.333333pt;}
.y25{bottom:638.186667pt;}
.y4e{bottom:643.626667pt;}
.ycb{bottom:652.586667pt;}
.yc{bottom:656.000000pt;}
.y24{bottom:658.026667pt;}
.y4d{bottom:662.186667pt;}
.yca{bottom:671.146667pt;}
.yb{bottom:674.666667pt;}
.y23{bottom:677.866667pt;}
.y4c{bottom:680.426667pt;}
.ya{bottom:693.333333pt;}
.y4b{bottom:698.986667pt;}
.y22{bottom:703.146667pt;}
.yc9{bottom:708.266667pt;}
.y9{bottom:712.000000pt;}
.y4a{bottom:717.226667pt;}
.y21{bottom:722.986667pt;}
.yc8{bottom:726.506667pt;}
.y49{bottom:735.786667pt;}
.y20{bottom:742.826667pt;}
.yc7{bottom:745.066667pt;}
.y48{bottom:754.026667pt;}
.y1f{bottom:757.226667pt;}
.yc6{bottom:763.306667pt;}
.y8{bottom:770.666667pt;}
.ye1{bottom:771.306667pt;}
.y47{bottom:772.586667pt;}
.y1e{bottom:782.506667pt;}
.y46{bottom:790.826667pt;}
.yc5{bottom:800.426667pt;}
.y1d{bottom:802.346667pt;}
.ye0{bottom:808.426667pt;}
.y45{bottom:809.386667pt;}
.y1c{bottom:815.466667pt;}
.yc4{bottom:818.986667pt;}
.ydf{bottom:826.986667pt;}
.y44{bottom:827.626667pt;}
.y1b{bottom:834.346667pt;}
.yc3{bottom:837.226667pt;}
.y43{bottom:846.186667pt;}
.y7{bottom:847.706667pt;}
.y1a{bottom:855.786667pt;}
.yde{bottom:863.786667pt;}
.y42{bottom:864.426667pt;}
.y2{bottom:865.573333pt;}
.y19{bottom:876.586667pt;}
.y1{bottom:879.306667pt;}
.y3{bottom:879.539126pt;}
.ydd{bottom:882.346667pt;}
.y41{bottom:882.986667pt;}
.yc2{bottom:892.586667pt;}
.y18{bottom:895.146667pt;}
.ydc{bottom:900.586667pt;}
.y40{bottom:901.226667pt;}
.yc1{bottom:911.146667pt;}
.y17{bottom:914.026667pt;}
.y3f{bottom:919.786667pt;}
.y16{bottom:935.466667pt;}
.ydb{bottom:937.706667pt;}
.y3e{bottom:938.026667pt;}
.yc0{bottom:948.266667pt;}
.yda{bottom:956.266667pt;}
.y15{bottom:956.586667pt;}
.y14{bottom:974.826667pt;}
.ybf{bottom:985.386667pt;}
.y13{bottom:993.386667pt;}
.y12{bottom:1011.626667pt;}
.h6{height:24.433226pt;}
.hf{height:30.751875pt;}
.h5{height:31.414148pt;}
.h4{height:34.171581pt;}
.h12{height:42.866250pt;}
.ha{height:45.861979pt;}
.hb{height:46.593750pt;}
.h11{height:46.656250pt;}
.h2{height:49.585938pt;}
.h9{height:50.031250pt;}
.he{height:50.677500pt;}
.h10{height:52.511875pt;}
.hc{height:54.048750pt;}
.hd{height:62.291250pt;}
.h8{height:66.000000pt;}
.h3{height:195.713157pt;}
.h7{height:1122.519733pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w3{width:145.160303pt;}
.w5{width:793.333333pt;}
.w4{width:793.700800pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:45.534312pt;}
.x2{left:95.999988pt;}
.x19{left:107.498688pt;}
.x5{left:114.666667pt;}
.x11{left:124.800128pt;}
.x9{left:132.745440pt;}
.x7{left:135.022784pt;}
.x15{left:144.955072pt;}
.xe{left:176.490240pt;}
.x10{left:188.345696pt;}
.xf{left:192.337888pt;}
.xd{left:207.848288pt;}
.xc{left:228.309248pt;}
.x1{left:242.039988pt;}
.xa{left:254.947904pt;}
.x17{left:273.415360pt;}
.x8{left:274.503264pt;}
.x1a{left:304.748704pt;}
.x13{left:316.980480pt;}
.x4{left:326.026000pt;}
.xb{left:394.643840pt;}
.x6{left:396.866560pt;}
.x16{left:586.306560pt;}
.x18{left:684.386560pt;}
.x12{left:695.426560pt;}
.x14{left:697.186560pt;}
}




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