
    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_7c54624ee335645718587fd8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_679319d30281d459f801d411.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_552109a91ea244742cefb1ae.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_5bf7d9541a8e3f68e2c8adb9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.863770;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_799d00768a78e3ab3868bf0c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_68e8d8af8e88db96ae52635f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.032000;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_4a7cd10ac43bf1990d227602.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970000;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_8a96e4bdb21b4cc987e688e4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.710000;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_8cbdc841c32ec9bf8be2c243.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.861816;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_00ce8967d375f45a992c56cd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.861816;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_d12ebdbce2c947b6668d9f3f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.851562;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.245145,0.000000,-0.049029,0.245145,0,0);-ms-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-webkit-transform:matrix(0.245145,0.000000,-0.049029,0.245145,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);}
.m2{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;}
.v3{vertical-align:4.854330px;}
.v2{vertical-align:7.381935px;}
.v1{vertical-align:36.236206px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.035173px;}
.ls1{letter-spacing:23.797040px;}
.ls4{letter-spacing:107.994625px;}
.ls5{letter-spacing:108.000003px;}
.ls3{letter-spacing:108.000215px;}
.ls2{letter-spacing:108.000426px;}
.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:-33.936002px;}
.ws10{word-spacing:-33.900000px;}
.wse{word-spacing:-31.188000px;}
.ws13{word-spacing:-30.240001px;}
.ws4{word-spacing:-29.916001px;}
.wsf{word-spacing:-27.120000px;}
.wsb{word-spacing:-24.408001px;}
.wsc{word-spacing:-23.855999px;}
.ws12{word-spacing:-23.052000px;}
.wsa{word-spacing:-22.577400px;}
.ws7{word-spacing:-19.113000px;}
.ws9{word-spacing:-18.282001px;}
.ws8{word-spacing:-13.560000px;}
.ws6{word-spacing:-0.084000px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:10.495935px;}
.ws2{word-spacing:10.504395px;}
.ws1{word-spacing:10.523154px;}
.wsd{word-spacing:76.903484px;}
.ws11{word-spacing:436.918991px;}
.ws14{word-spacing:2139.457521px;}
._9{margin-left:-11.998801px;}
._6{margin-left:-9.712800px;}
._c{margin-left:-8.434800px;}
._7{margin-left:-7.008000px;}
._3{margin-left:-5.376000px;}
._2{margin-left:-3.839121px;}
._0{margin-left:-2.604000px;}
._1{margin-left:-1.554000px;}
._4{width:1.920135px;}
._8{width:3.184800px;}
._5{width:6.177600px;}
._b{width:1797.529332px;}
._a{width:2240.673438px;}
.fc7{color:rgb(0,0,255);}
.fc8{color:rgb(106,168,79);}
.fc6{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc9{color:rgb(255,255,0);}
.fc1{color:rgb(98,16,204);}
.fc5{color:rgb(153,153,153);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(89,89,89);}
.fs1{font-size:42.000000px;}
.fs5{font-size:48.000003px;}
.fsd{font-size:54.000002px;}
.fs9{font-size:55.500000px;}
.fs0{font-size:60.000000px;}
.fsf{font-size:66.000004px;}
.fsc{font-size:69.000001px;}
.fs3{font-size:71.590232px;}
.fs10{font-size:72.150001px;}
.fsa{font-size:84.000000px;}
.fs8{font-size:85.199997px;}
.fs17{font-size:90.000003px;}
.fse{font-size:96.000006px;}
.fs12{font-size:99.899999px;}
.fs16{font-size:102.000000px;}
.fs4{font-size:105.000006px;}
.fs6{font-size:108.000003px;}
.fs14{font-size:120.000001px;}
.fs7{font-size:121.200007px;}
.fs13{font-size:138.000001px;}
.fs15{font-size:149.999999px;}
.fs2{font-size:151.200005px;}
.fs11{font-size:167.999999px;}
.fsb{font-size:271.200024px;}
.y0{bottom:0.000000px;}
.y2{bottom:10.738938px;}
.y22{bottom:19.486320px;}
.y1{bottom:28.082245px;}
.y47{bottom:31.012665px;}
.y9a{bottom:31.299057px;}
.y3b{bottom:32.589173px;}
.y21{bottom:33.976332px;}
.y20{bottom:48.466332px;}
.y5d{bottom:48.558650px;}
.y3a{bottom:49.149173px;}
.y87{bottom:51.278045px;}
.y58{bottom:58.079266px;}
.y1f{bottom:62.956344px;}
.y39{bottom:65.709174px;}
.y97{bottom:66.996725px;}
.yb1{bottom:67.869905px;}
.ybd{bottom:75.464985px;}
.y86{bottom:77.198046px;}
.y1e{bottom:77.446344px;}
.y57{bottom:78.779267px;}
.y38{bottom:82.269174px;}
.y77{bottom:84.752815px;}
.yc4{bottom:91.089906px;}
.y1d{bottom:91.936356px;}
.yd5{bottom:93.787296px;}
.y85{bottom:98.453740px;}
.y37{bottom:98.829197px;}
.yb0{bottom:105.129906px;}
.ya8{bottom:105.371230px;}
.y1c{bottom:106.426356px;}
.y36{bottom:115.389198px;}
.y56{bottom:120.179268px;}
.y42{bottom:120.515891px;}
.y1b{bottom:120.916368px;}
.y84{bottom:121.180979px;}
.y6b{bottom:124.631220px;}
.yc9{bottom:126.071231px;}
.yd4{bottom:131.047297px;}
.y35{bottom:131.949199px;}
.y9c{bottom:133.967837px;}
.y1a{bottom:135.406369px;}
.y55{bottom:140.879246px;}
.yaf{bottom:142.389941px;}
.ya7{bottom:142.631220px;}
.yc3{bottom:143.109908px;}
.y83{bottom:143.908230px;}
.y34{bottom:148.509199px;}
.y19{bottom:149.896380px;}
.y90{bottom:152.527002px;}
.yc8{bottom:160.091232px;}
.y54{bottom:161.579247px;}
.y64{bottom:161.805934px;}
.y18{bottom:164.386381px;}
.y33{bottom:165.069166px;}
.y17{bottom:178.876393px;}
.yae{bottom:179.649931px;}
.y6a{bottom:179.891221px;}
.y9b{bottom:181.577833px;}
.y32{bottom:181.629178px;}
.yb8{bottom:181.709986px;}
.y76{bottom:183.076051px;}
.yd3{bottom:183.307284px;}
.y8f{bottom:186.992494px;}
.y89{bottom:190.313845px;}
.y16{bottom:193.366393px;}
.y63{bottom:194.925936px;}
.yc2{bottom:195.129932px;}
.y31{bottom:198.189178px;}
.ya6{bottom:199.151211px;}
.y53{bottom:202.979215px;}
.ybc{bottom:206.726427px;}
.y15{bottom:207.856405px;}
.y30{bottom:214.749179px;}
.y75{bottom:215.476052px;}
.yad{bottom:216.909933px;}
.y69{bottom:217.151211px;}
.yd2{bottom:220.567285px;}
.y14{bottom:222.346405px;}
.y52{bottom:223.679204px;}
.ya3{bottom:224.423853px;}
.y82{bottom:225.362722px;}
.y70{bottom:227.688535px;}
.y62{bottom:228.045948px;}
.ybb{bottom:228.124088px;}
.y41{bottom:231.035917px;}
.y2f{bottom:231.309179px;}
.ya5{bottom:236.411201px;}
.y13{bottom:236.836406px;}
.yb7{bottom:240.209988px;}
.y96{bottom:241.209911px;}
.y51{bottom:244.379205px;}
.yc1{bottom:247.149911px;}
.y2e{bottom:247.869180px;}
.y74{bottom:247.876042px;}
.y6f{bottom:247.938536px;}
.y81{bottom:248.089972px;}
.y12{bottom:251.326417px;}
.yac{bottom:254.169922px;}
.y68{bottom:254.411201px;}
.y61{bottom:261.165949px;}
.ya2{bottom:261.683843px;}
.yc7{bottom:264.131207px;}
.y2d{bottom:264.429180px;}
.y50{bottom:265.079194px;}
.y11{bottom:265.816429px;}
.y6e{bottom:268.188537px;}
.y40{bottom:268.295907px;}
.yd1{bottom:269.167264px;}
.yb6{bottom:269.459989px;}
.y95{bottom:273.609912px;}
.ya4{bottom:273.671191px;}
.y73{bottom:280.276043px;}
.y10{bottom:280.306430px;}
.y2c{bottom:280.989181px;}
.y6d{bottom:288.438537px;}
.yab{bottom:291.429912px;}
.y67{bottom:291.671191px;}
.yd6{bottom:292.949990px;}
.yd7{bottom:294.029990px;}
.y60{bottom:294.285956px;}
.yf{bottom:294.796441px;}
.y2b{bottom:297.549181px;}
.yc6{bottom:298.151203px;}
.ya1{bottom:298.943833px;}
.yc0{bottom:299.169913px;}
.yb3{bottom:302.109448px;}
.y99{bottom:304.046568px;}
.y3f{bottom:305.555897px;}
.y94{bottom:306.009902px;}
.y4f{bottom:306.479184px;}
.y6c{bottom:308.688539px;}
.ye{bottom:309.286430px;}
.y9f{bottom:310.931203px;}
.y72{bottom:312.676051px;}
.y2a{bottom:314.109193px;}
.yba{bottom:316.559055px;}
.yd{bottom:323.776431px;}
.y4e{bottom:327.179178px;}
.y5f{bottom:327.405947px;}
.yb5{bottom:327.959991px;}
.yaa{bottom:328.689902px;}
.y66{bottom:328.931204px;}
.y80{bottom:329.544464px;}
.y29{bottom:330.669199px;}
.yc5{bottom:332.171204px;}
.ya0{bottom:336.203845px;}
.yb2{bottom:338.109449px;}
.yc{bottom:338.266431px;}
.y93{bottom:338.409903px;}
.yd0{bottom:339.067269px;}
.y8d{bottom:342.314215px;}
.y3e{bottom:342.815887px;}
.y71{bottom:345.076057px;}
.y28{bottom:347.229201px;}
.y4d{bottom:347.879174px;}
.ybf{bottom:351.189914px;}
.y98{bottom:351.656564px;}
.y7f{bottom:352.271710px;}
.yb{bottom:352.756426px;}
.yb4{bottom:357.209996px;}
.y5e{bottom:360.525941px;}
.yb9{bottom:361.559057px;}
.y27{bottom:363.789206px;}
.ya9{bottom:365.949915px;}
.y65{bottom:366.191205px;}
.y8c{bottom:366.290209px;}
.ya{bottom:367.246421px;}
.y92{bottom:370.809910px;}
.ycf{bottom:371.467275px;}
.y78{bottom:373.351650px;}
.y3d{bottom:380.075899px;}
.y26{bottom:380.349206px;}
.y9{bottom:381.736422px;}
.y88{bottom:388.809920px;}
.y4c{bottom:389.279168px;}
.y8b{bottom:391.165308px;}
.y7e{bottom:392.998957px;}
.y8{bottom:396.226417px;}
.y25{bottom:396.909207px;}
.y91{bottom:403.209916px;}
.y4b{bottom:409.979171px;}
.y7{bottom:410.716416px;}
.y24{bottom:413.469208px;}
.yce{bottom:418.151391px;}
.y8a{bottom:419.636808px;}
.ybe{bottom:422.075184px;}
.y7d{bottom:423.182898px;}
.y6{bottom:425.206412px;}
.y5c{bottom:429.610105px;}
.y23{bottom:430.029208px;}
.y4a{bottom:430.679166px;}
.y3c{bottom:435.335901px;}
.y5b{bottom:455.170103px;}
.ycd{bottom:462.664210px;}
.y7c{bottom:465.179942px;}
.y46{bottom:465.593329px;}
.y5{bottom:465.594443px;}
.y45{bottom:495.566996px;}
.y9e{bottom:495.743801px;}
.ycc{bottom:499.024200px;}
.y7b{bottom:501.539943px;}
.y49{bottom:506.003809px;}
.y4{bottom:507.287076px;}
.y5a{bottom:513.923813px;}
.y44{bottom:531.926998px;}
.y8e{bottom:532.103803px;}
.y3{bottom:533.207080px;}
.ycb{bottom:535.384201px;}
.y7a{bottom:537.899945px;}
.y59{bottom:550.283811px;}
.y43{bottom:568.286995px;}
.y9d{bottom:568.463807px;}
.yca{bottom:571.744203px;}
.y79{bottom:574.259949px;}
.y48{bottom:576.131813px;}
.h2{height:30.146484px;}
.h6{height:30.597656px;}
.h1c{height:34.453127px;}
.h7{height:34.968752px;}
.hc{height:39.836426px;}
.h12{height:43.066407px;}
.h1{height:43.710938px;}
.h14{height:48.082034px;}
.h10{height:50.233887px;}
.hf{height:50.267579px;}
.h4{height:55.196069px;}
.h16{height:55.627651px;}
.h24{height:57.585937px;}
.hd{height:58.800000px;}
.h25{height:61.699221px;}
.h11{height:63.047998px;}
.h20{height:65.812504px;}
.hb{height:68.330397px;}
.h1a{height:68.486132px;}
.h13{height:68.906254px;}
.h23{height:69.925781px;}
.h19{height:71.705565px;}
.h27{height:73.828127px;}
.h15{height:74.039065px;}
.h5{height:75.366216px;}
.h8{height:77.519534px;}
.h9{height:78.679690px;}
.h1f{height:82.265626px;}
.h26{height:83.268003px;}
.h1e{height:86.132813px;}
.h1b{height:86.484378px;}
.h28{height:90.987143px;}
.ha{height:93.445205px;}
.h1d{height:94.605470px;}
.h21{height:102.832030px;}
.h22{height:105.835162px;}
.h3{height:116.575204px;}
.h18{height:122.553810px;}
.h17{height:151.408081px;}
.he{height:209.095218px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x8{left:14.757873px;}
.xb{left:16.219488px;}
.x25{left:17.489157px;}
.x29{left:19.489218px;}
.x3{left:21.768768px;}
.xc{left:23.543912px;}
.x4{left:34.060027px;}
.x11{left:35.760907px;}
.x7{left:37.375973px;}
.x2a{left:41.748475px;}
.x2{left:46.939963px;}
.x1e{left:49.175197px;}
.xf{left:51.228823px;}
.x23{left:52.953319px;}
.xd{left:55.535436px;}
.x9{left:57.631857px;}
.x1b{left:63.046658px;}
.x2b{left:85.056582px;}
.x28{left:93.451774px;}
.x10{left:100.939964px;}
.x24{left:106.644690px;}
.xa{left:110.471460px;}
.x33{left:124.796040px;}
.x32{left:139.973101px;}
.x36{left:338.971218px;}
.x1a{left:349.833679px;}
.x1f{left:356.746927px;}
.x20{left:409.563024px;}
.x19{left:424.567926px;}
.x37{left:430.278415px;}
.x34{left:434.970531px;}
.x22{left:440.672999px;}
.x2d{left:489.265117px;}
.x5{left:511.967606px;}
.x6{left:524.258866px;}
.x21{left:527.304302px;}
.x1c{left:531.659940px;}
.x2c{left:539.870231px;}
.x1d{left:548.172391px;}
.x26{left:563.189573px;}
.x16{left:610.774636px;}
.x27{left:616.880945px;}
.x17{left:621.466530px;}
.x35{left:624.378555px;}
.x18{left:664.774638px;}
.x15{left:666.322127px;}
.x14{left:669.071516px;}
.x13{left:676.844677px;}
.x12{left:685.696766px;}
.x31{left:834.040097px;}
.x2e{left:840.272915px;}
.x30{left:885.841785px;}
.x2f{left:891.026084px;}
.xe{left:1008.224695px;}
.x1{left:1038.688064px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:4.314960pt;}
.v2{vertical-align:6.561720pt;}
.v1{vertical-align:32.209961pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.031265pt;}
.ls1{letter-spacing:21.152924pt;}
.ls4{letter-spacing:95.995223pt;}
.ls5{letter-spacing:96.000003pt;}
.ls3{letter-spacing:96.000191pt;}
.ls2{letter-spacing:96.000379pt;}
.ws5{word-spacing:-30.165335pt;}
.ws10{word-spacing:-30.133333pt;}
.wse{word-spacing:-27.722667pt;}
.ws13{word-spacing:-26.880001pt;}
.ws4{word-spacing:-26.592001pt;}
.wsf{word-spacing:-24.106667pt;}
.wsb{word-spacing:-21.696001pt;}
.wsc{word-spacing:-21.205333pt;}
.ws12{word-spacing:-20.490667pt;}
.wsa{word-spacing:-20.068800pt;}
.ws7{word-spacing:-16.989334pt;}
.ws9{word-spacing:-16.250668pt;}
.ws8{word-spacing:-12.053333pt;}
.ws6{word-spacing:-0.074667pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:9.329720pt;}
.ws2{word-spacing:9.337240pt;}
.ws1{word-spacing:9.353915pt;}
.wsd{word-spacing:68.358653pt;}
.ws11{word-spacing:388.372436pt;}
.ws14{word-spacing:1901.740019pt;}
._9{margin-left:-10.665601pt;}
._6{margin-left:-8.633600pt;}
._c{margin-left:-7.497600pt;}
._7{margin-left:-6.229334pt;}
._3{margin-left:-4.778667pt;}
._2{margin-left:-3.412552pt;}
._0{margin-left:-2.314667pt;}
._1{margin-left:-1.381333pt;}
._4{width:1.706787pt;}
._8{width:2.830933pt;}
._5{width:5.491200pt;}
._b{width:1597.803851pt;}
._a{width:1991.709723pt;}
.fs1{font-size:37.333333pt;}
.fs5{font-size:42.666669pt;}
.fsd{font-size:48.000002pt;}
.fs9{font-size:49.333334pt;}
.fs0{font-size:53.333334pt;}
.fsf{font-size:58.666670pt;}
.fsc{font-size:61.333334pt;}
.fs3{font-size:63.635761pt;}
.fs10{font-size:64.133334pt;}
.fsa{font-size:74.666666pt;}
.fs8{font-size:75.733330pt;}
.fs17{font-size:80.000003pt;}
.fse{font-size:85.333339pt;}
.fs12{font-size:88.799999pt;}
.fs16{font-size:90.666667pt;}
.fs4{font-size:93.333339pt;}
.fs6{font-size:96.000003pt;}
.fs14{font-size:106.666667pt;}
.fs7{font-size:107.733339pt;}
.fs13{font-size:122.666668pt;}
.fs15{font-size:133.333332pt;}
.fs2{font-size:134.400004pt;}
.fs11{font-size:149.333333pt;}
.fsb{font-size:241.066688pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:9.545723pt;}
.y22{bottom:17.321173pt;}
.y1{bottom:24.961996pt;}
.y47{bottom:27.566814pt;}
.y9a{bottom:27.821384pt;}
.y3b{bottom:28.968154pt;}
.y21{bottom:30.201184pt;}
.y20{bottom:43.081184pt;}
.y5d{bottom:43.163244pt;}
.y3a{bottom:43.688154pt;}
.y87{bottom:45.580484pt;}
.y58{bottom:51.626014pt;}
.y1f{bottom:55.961195pt;}
.y39{bottom:58.408155pt;}
.y97{bottom:59.552645pt;}
.yb1{bottom:60.328805pt;}
.ybd{bottom:67.079987pt;}
.y86{bottom:68.620485pt;}
.y1e{bottom:68.841195pt;}
.y57{bottom:70.026015pt;}
.y38{bottom:73.128155pt;}
.y77{bottom:75.335835pt;}
.yc4{bottom:80.968805pt;}
.y1d{bottom:81.721205pt;}
.yd5{bottom:83.366485pt;}
.y85{bottom:87.514436pt;}
.y37{bottom:87.848176pt;}
.yb0{bottom:93.448806pt;}
.ya8{bottom:93.663316pt;}
.y1c{bottom:94.601206pt;}
.y36{bottom:102.568176pt;}
.y56{bottom:106.826016pt;}
.y42{bottom:107.125236pt;}
.y1b{bottom:107.481216pt;}
.y84{bottom:107.716426pt;}
.y6b{bottom:110.783306pt;}
.yc9{bottom:112.063316pt;}
.yd4{bottom:116.486486pt;}
.y35{bottom:117.288176pt;}
.y9c{bottom:119.082522pt;}
.y1a{bottom:120.361217pt;}
.y55{bottom:125.225997pt;}
.yaf{bottom:126.568837pt;}
.ya7{bottom:126.783307pt;}
.yc3{bottom:127.208807pt;}
.y83{bottom:127.918427pt;}
.y34{bottom:132.008177pt;}
.y19{bottom:133.241227pt;}
.y90{bottom:135.579557pt;}
.yc8{bottom:142.303317pt;}
.y54{bottom:143.625997pt;}
.y64{bottom:143.827497pt;}
.y18{bottom:146.121227pt;}
.y33{bottom:146.728147pt;}
.y17{bottom:159.001238pt;}
.yae{bottom:159.688828pt;}
.y6a{bottom:159.903308pt;}
.y9b{bottom:161.402518pt;}
.y32{bottom:161.448158pt;}
.yb8{bottom:161.519988pt;}
.y76{bottom:162.734268pt;}
.yd3{bottom:162.939808pt;}
.y8f{bottom:166.215550pt;}
.y89{bottom:169.167862pt;}
.y16{bottom:171.881238pt;}
.y63{bottom:173.267498pt;}
.yc2{bottom:173.448828pt;}
.y31{bottom:176.168158pt;}
.ya6{bottom:177.023298pt;}
.y53{bottom:180.425968pt;}
.ybc{bottom:183.756824pt;}
.y15{bottom:184.761249pt;}
.y30{bottom:190.888159pt;}
.y75{bottom:191.534269pt;}
.yad{bottom:192.808829pt;}
.y69{bottom:193.023299pt;}
.yd2{bottom:196.059809pt;}
.y14{bottom:197.641249pt;}
.y52{bottom:198.825959pt;}
.ya3{bottom:199.487869pt;}
.y82{bottom:200.322419pt;}
.y70{bottom:202.389809pt;}
.y62{bottom:202.707509pt;}
.ybb{bottom:202.776967pt;}
.y41{bottom:205.365259pt;}
.y2f{bottom:205.608159pt;}
.ya5{bottom:210.143289pt;}
.y13{bottom:210.521249pt;}
.yb7{bottom:213.519990pt;}
.y96{bottom:214.408810pt;}
.y51{bottom:217.225960pt;}
.yc1{bottom:219.688810pt;}
.y2e{bottom:220.328160pt;}
.y74{bottom:220.334260pt;}
.y6f{bottom:220.389810pt;}
.y81{bottom:220.524420pt;}
.y12{bottom:223.401260pt;}
.yac{bottom:225.928820pt;}
.y68{bottom:226.143290pt;}
.y61{bottom:232.147510pt;}
.ya2{bottom:232.607860pt;}
.yc7{bottom:234.783295pt;}
.y2d{bottom:235.048160pt;}
.y50{bottom:235.625950pt;}
.y11{bottom:236.281270pt;}
.y6e{bottom:238.389810pt;}
.y40{bottom:238.485250pt;}
.yd1{bottom:239.259790pt;}
.yb6{bottom:239.519990pt;}
.y95{bottom:243.208811pt;}
.ya4{bottom:243.263281pt;}
.y73{bottom:249.134261pt;}
.y10{bottom:249.161271pt;}
.y2c{bottom:249.768161pt;}
.y6d{bottom:256.389811pt;}
.yab{bottom:259.048811pt;}
.y67{bottom:259.263281pt;}
.yd6{bottom:260.399991pt;}
.yd7{bottom:261.359991pt;}
.y60{bottom:261.587516pt;}
.yf{bottom:262.041281pt;}
.y2b{bottom:264.488161pt;}
.yc6{bottom:265.023291pt;}
.ya1{bottom:265.727851pt;}
.yc0{bottom:265.928811pt;}
.yb3{bottom:268.541731pt;}
.y99{bottom:270.263616pt;}
.y3f{bottom:271.605241pt;}
.y94{bottom:272.008801pt;}
.y4f{bottom:272.425941pt;}
.y6c{bottom:274.389813pt;}
.ye{bottom:274.921272pt;}
.y9f{bottom:276.383292pt;}
.y72{bottom:277.934268pt;}
.y2a{bottom:279.208172pt;}
.yba{bottom:281.385827pt;}
.yd{bottom:287.801272pt;}
.y4e{bottom:290.825936pt;}
.y5f{bottom:291.027508pt;}
.yb5{bottom:291.519992pt;}
.yaa{bottom:292.168802pt;}
.y66{bottom:292.383292pt;}
.y80{bottom:292.928412pt;}
.y29{bottom:293.928177pt;}
.yc5{bottom:295.263292pt;}
.ya0{bottom:298.847862pt;}
.yb2{bottom:300.541732pt;}
.yc{bottom:300.681272pt;}
.y93{bottom:300.808802pt;}
.yd0{bottom:301.393128pt;}
.y8d{bottom:304.279302pt;}
.y3e{bottom:304.725232pt;}
.y71{bottom:306.734273pt;}
.y28{bottom:308.648179pt;}
.y4d{bottom:309.225933pt;}
.ybf{bottom:312.168813pt;}
.y98{bottom:312.583613pt;}
.y7f{bottom:313.130409pt;}
.yb{bottom:313.561268pt;}
.yb4{bottom:317.519997pt;}
.y5e{bottom:320.467503pt;}
.yb9{bottom:321.385828pt;}
.y27{bottom:323.368183pt;}
.ya9{bottom:325.288813pt;}
.y65{bottom:325.503293pt;}
.y8c{bottom:325.591297pt;}
.ya{bottom:326.441263pt;}
.y92{bottom:329.608809pt;}
.ycf{bottom:330.193133pt;}
.y78{bottom:331.868133pt;}
.y3d{bottom:337.845244pt;}
.y26{bottom:338.088184pt;}
.y9{bottom:339.321264pt;}
.y88{bottom:345.608818pt;}
.y4c{bottom:346.025927pt;}
.y8b{bottom:347.702496pt;}
.y7e{bottom:349.332406pt;}
.y8{bottom:352.201260pt;}
.y25{bottom:352.808184pt;}
.y91{bottom:358.408814pt;}
.y4b{bottom:364.425929pt;}
.y7{bottom:365.081258pt;}
.y24{bottom:367.528184pt;}
.yce{bottom:371.690126pt;}
.y8a{bottom:373.010496pt;}
.ybe{bottom:375.177942pt;}
.y7d{bottom:376.162576pt;}
.y6{bottom:377.961255pt;}
.y5c{bottom:381.875649pt;}
.y23{bottom:382.248185pt;}
.y4a{bottom:382.825925pt;}
.y3c{bottom:386.965245pt;}
.y5b{bottom:404.595647pt;}
.ycd{bottom:411.257076pt;}
.y7c{bottom:413.493282pt;}
.y46{bottom:413.860737pt;}
.y5{bottom:413.861727pt;}
.y45{bottom:440.503997pt;}
.y9e{bottom:440.661157pt;}
.ycc{bottom:443.577067pt;}
.y7b{bottom:445.813283pt;}
.y49{bottom:449.781163pt;}
.y4{bottom:450.921845pt;}
.y5a{bottom:456.821167pt;}
.y44{bottom:472.823998pt;}
.y8e{bottom:472.981158pt;}
.y3{bottom:473.961849pt;}
.ycb{bottom:475.897068pt;}
.y7a{bottom:478.133284pt;}
.y59{bottom:489.141165pt;}
.y43{bottom:505.143996pt;}
.y9d{bottom:505.301162pt;}
.yca{bottom:508.217069pt;}
.y79{bottom:510.453288pt;}
.y48{bottom:512.117167pt;}
.h2{height:26.796875pt;}
.h6{height:27.197917pt;}
.h1c{height:30.625002pt;}
.h7{height:31.083335pt;}
.hc{height:35.410156pt;}
.h12{height:38.281250pt;}
.h1{height:38.854167pt;}
.h14{height:42.739586pt;}
.h10{height:44.652344pt;}
.hf{height:44.682292pt;}
.h4{height:49.063172pt;}
.h16{height:49.446801pt;}
.h24{height:51.187500pt;}
.hd{height:52.266666pt;}
.h25{height:54.843752pt;}
.h11{height:56.042665pt;}
.h20{height:58.500004pt;}
.hb{height:60.738131pt;}
.h1a{height:60.876562pt;}
.h13{height:61.250004pt;}
.h23{height:62.156250pt;}
.h19{height:63.738280pt;}
.h27{height:65.625002pt;}
.h15{height:65.812502pt;}
.h5{height:66.992192pt;}
.h8{height:68.906252pt;}
.h9{height:69.937502pt;}
.h1f{height:73.125001pt;}
.h26{height:74.016002pt;}
.h1e{height:76.562501pt;}
.h1b{height:76.875002pt;}
.h28{height:80.877461pt;}
.ha{height:83.062405pt;}
.h1d{height:84.093751pt;}
.h21{height:91.406249pt;}
.h22{height:94.075699pt;}
.h3{height:103.622403pt;}
.h18{height:108.936720pt;}
.h17{height:134.584961pt;}
.he{height:185.862416pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x8{left:13.118109pt;}
.xb{left:14.417323pt;}
.x25{left:15.545917pt;}
.x29{left:17.323750pt;}
.x3{left:19.350016pt;}
.xc{left:20.927922pt;}
.x4{left:30.275580pt;}
.x11{left:31.787473pt;}
.x7{left:33.223087pt;}
.x2a{left:37.109755pt;}
.x2{left:41.724411pt;}
.x1e{left:43.711286pt;}
.xf{left:45.536731pt;}
.x23{left:47.069617pt;}
.xd{left:49.364832pt;}
.x9{left:51.228318pt;}
.x1b{left:56.041474pt;}
.x2b{left:75.605850pt;}
.x28{left:83.068244pt;}
.x10{left:89.724413pt;}
.x24{left:94.795280pt;}
.xa{left:98.196853pt;}
.x33{left:110.929814pt;}
.x32{left:124.420534pt;}
.x36{left:301.307750pt;}
.x1a{left:310.963270pt;}
.x1f{left:317.108379pt;}
.x20{left:364.056022pt;}
.x19{left:377.393712pt;}
.x37{left:382.469702pt;}
.x34{left:386.640472pt;}
.x22{left:391.709333pt;}
.x2d{left:434.902326pt;}
.x5{left:455.082317pt;}
.x6{left:466.007881pt;}
.x21{left:468.714935pt;}
.x1c{left:472.586613pt;}
.x2c{left:479.884649pt;}
.x1d{left:487.264348pt;}
.x26{left:500.612954pt;}
.x16{left:542.910787pt;}
.x27{left:548.338618pt;}
.x17{left:552.414694pt;}
.x35{left:555.003160pt;}
.x18{left:590.910789pt;}
.x15{left:592.286335pt;}
.x14{left:594.730236pt;}
.x13{left:601.639713pt;}
.x12{left:609.508237pt;}
.x31{left:741.368975pt;}
.x2e{left:746.909258pt;}
.x30{left:787.414920pt;}
.x2f{left:792.023185pt;}
.xe{left:896.199729pt;}
.x1{left:923.278280pt;}
}




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