
    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_89f45abc78e5969b3d5f1da0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.113281;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_5b89daa598575e3e823f2dfc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_49494ff533d4f0fbbebc5001.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_b9947c26207e588c02702cba.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.681641;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_2c03344bc3cc1564c43abea7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_2d3d57d16db7217decb6c15a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_892f5226d7c7af1126ae99da.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.922363;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);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-0.276696px;}
.ls1c{letter-spacing:-0.191052px;}
.lsb{letter-spacing:-0.076896px;}
.lsa{letter-spacing:-0.067284px;}
.lsc{letter-spacing:-0.057672px;}
.ls27{letter-spacing:-0.039528px;}
.ls28{letter-spacing:-0.032940px;}
.ls19{letter-spacing:-0.026352px;}
.ls18{letter-spacing:-0.013176px;}
.lsd{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.006588px;}
.ls14{letter-spacing:0.013176px;}
.ls13{letter-spacing:0.019764px;}
.ls16{letter-spacing:0.026352px;}
.ls12{letter-spacing:0.032940px;}
.ls11{letter-spacing:0.039528px;}
.ls15{letter-spacing:0.046116px;}
.ls6{letter-spacing:0.052704px;}
.ls1{letter-spacing:0.059292px;}
.ls0{letter-spacing:0.065880px;}
.ls4{letter-spacing:0.072468px;}
.ls2{letter-spacing:0.079056px;}
.ls3{letter-spacing:0.085644px;}
.ls8{letter-spacing:0.092232px;}
.ls10{letter-spacing:0.098820px;}
.ls5{letter-spacing:0.105408px;}
.ls7{letter-spacing:0.111996px;}
.ls9{letter-spacing:0.118584px;}
.ls1b{letter-spacing:0.125172px;}
.ls1a{letter-spacing:0.144936px;}
.ls26{letter-spacing:0.151524px;}
.ls21{letter-spacing:0.335988px;}
.ls25{letter-spacing:0.415044px;}
.ls20{letter-spacing:0.441396px;}
.ls1d{letter-spacing:1.791936px;}
.ls1f{letter-spacing:1.844640px;}
.ls1e{letter-spacing:3.294000px;}
.lsf{letter-spacing:4.374432px;}
.ls24{letter-spacing:15.213600px;}
.ls17{letter-spacing:21.299004px;}
.ls22{letter-spacing:22.379436px;}
.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;}
}
.ws2{word-spacing:-65.880000px;}
.wsc{word-spacing:-18.426636px;}
.wsb{word-spacing:-18.387108px;}
.wsa{word-spacing:-18.380520px;}
.ws1{word-spacing:-18.373932px;}
.ws5{word-spacing:-18.360756px;}
.ws11{word-spacing:-0.039528px;}
.ws1c{word-spacing:-0.032940px;}
.ws16{word-spacing:-0.019764px;}
.ws9{word-spacing:-0.013176px;}
.ws13{word-spacing:-0.006588px;}
.ws0{word-spacing:0.000000px;}
.ws17{word-spacing:0.329400px;}
.ws1d{word-spacing:2.832840px;}
.ws12{word-spacing:3.926448px;}
.ws1b{word-spacing:5.718384px;}
.ws3{word-spacing:7.543260px;}
.ws1a{word-spacing:8.610516px;}
.ws18{word-spacing:12.187800px;}
.ws7{word-spacing:12.925656px;}
.ws15{word-spacing:14.724180px;}
.ws8{word-spacing:15.462036px;}
.ws19{word-spacing:18.314640px;}
.ws4{word-spacing:20.152692px;}
.ws10{word-spacing:21.562524px;}
.ws6{word-spacing:21.938040px;}
.wsd{word-spacing:23.361048px;}
.wse{word-spacing:25.172748px;}
.wsf{word-spacing:35.258976px;}
.ws14{word-spacing:361.055340px;}
._27{margin-left:-23.492808px;}
._1e{margin-left:-22.129092px;}
._1d{margin-left:-20.897136px;}
._e{margin-left:-5.125464px;}
._d{margin-left:-3.998916px;}
._3{margin-left:-1.337364px;}
._4{width:1.330776px;}
._2{width:2.628612px;}
._1{width:4.295376px;}
._0{width:6.120252px;}
._9{width:7.925364px;}
._8{width:8.986032px;}
._16{width:10.112580px;}
._a{width:11.146896px;}
._b{width:12.569904px;}
._12{width:13.571280px;}
._11{width:14.605596px;}
._10{width:15.705792px;}
._7{width:17.267148px;}
._f{width:19.414836px;}
._1c{width:20.515032px;}
._1b{width:21.615228px;}
._c{width:23.031648px;}
._15{width:24.059376px;}
._18{width:25.199100px;}
._20{width:27.004212px;}
._14{width:28.776384px;}
._6{width:30.252096px;}
._1a{width:32.030856px;}
._5{width:33.117876px;}
._21{width:34.534296px;}
._2b{width:35.687196px;}
._28{width:37.077264px;}
._26{width:38.111580px;}
._25{width:39.238128px;}
._17{width:40.661136px;}
._19{width:47.506068px;}
._1f{width:51.406164px;}
._2a{width:55.075680px;}
._13{width:56.136348px;}
._22{width:57.565944px;}
._23{width:59.318352px;}
._29{width:62.618940px;}
._24{width:134.283204px;}
._2c{width:360.706176px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.000000px;}
.fs3{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.fs0{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y25{bottom:3.900000px;}
.y24{bottom:39.426110px;}
.y110{bottom:112.151910px;}
.y65{bottom:116.688810px;}
.yf7{bottom:116.714100px;}
.y4a{bottom:116.721750px;}
.ybc{bottom:116.730570px;}
.y23{bottom:121.915650px;}
.yca{bottom:122.782710px;}
.y86{bottom:137.441010px;}
.y10f{bottom:140.595600px;}
.ybb{bottom:145.075440px;}
.y64{bottom:145.132500px;}
.yf6{bottom:145.157790px;}
.y49{bottom:145.165440px;}
.ye0{bottom:145.174260px;}
.y22{bottom:150.359340px;}
.yc9{bottom:151.226400px;}
.y85{bottom:165.884700px;}
.y63{bottom:173.658540px;}
.yf5{bottom:173.683830px;}
.y48{bottom:173.691480px;}
.yba{bottom:173.700300px;}
.y10e{bottom:178.031910px;}
.y21{bottom:178.803030px;}
.yc8{bottom:179.752440px;}
.y84{bottom:194.328390px;}
.y47{bottom:202.036350px;}
.y62{bottom:202.102230px;}
.yf4{bottom:202.127520px;}
.y97{bottom:202.135170px;}
.yb9{bottom:202.143990px;}
.y10d{bottom:206.475600px;}
.y20{bottom:207.246720px;}
.yc7{bottom:208.278480px;}
.y83{bottom:222.854430px;}
.y61{bottom:230.545920px;}
.y46{bottom:230.562390px;}
.yf3{bottom:230.571210px;}
.y96{bottom:230.578860px;}
.yb8{bottom:230.587680px;}
.y1f{bottom:235.772760px;}
.yc6{bottom:236.722170px;}
.y10c{bottom:244.010730px;}
.y82{bottom:251.298120px;}
.ydf{bottom:258.932550px;}
.y60{bottom:258.989610px;}
.y45{bottom:259.006080px;}
.yf2{bottom:259.014900px;}
.y95{bottom:259.022550px;}
.yb7{bottom:259.031370px;}
.y1e{bottom:264.216450px;}
.yc5{bottom:265.165860px;}
.y10b{bottom:272.454420px;}
.y81{bottom:279.741810px;}
.yde{bottom:287.376240px;}
.y5f{bottom:287.433300px;}
.y44{bottom:287.449770px;}
.yf1{bottom:287.458590px;}
.y94{bottom:287.466240px;}
.yb6{bottom:287.475060px;}
.y1d{bottom:292.660140px;}
.yc4{bottom:293.609550px;}
.y80{bottom:308.086680px;}
.y10a{bottom:309.890730px;}
.yf0{bottom:315.902280px;}
.y93{bottom:315.909930px;}
.y5e{bottom:315.959340px;}
.y43{bottom:315.975810px;}
.yb5{bottom:316.001100px;}
.y1c{bottom:321.103830px;}
.yc3{bottom:322.053240px;}
.y7f{bottom:336.612720px;}
.yb4{bottom:344.345970px;}
.y5d{bottom:344.403030px;}
.y42{bottom:344.419500px;}
.yef{bottom:344.428320px;}
.y92{bottom:344.435970px;}
.ydd{bottom:344.444790px;}
.y109{bottom:347.327040px;}
.y1b{bottom:349.547520px;}
.yc2{bottom:350.579280px;}
.y7e{bottom:365.138760px;}
.y5c{bottom:372.846720px;}
.y41{bottom:372.863190px;}
.yb3{bottom:372.872010px;}
.y91{bottom:372.879660px;}
.ydc{bottom:372.888480px;}
.y108{bottom:375.853080px;}
.y1a{bottom:378.073560px;}
.yc1{bottom:379.022970px;}
.y7d{bottom:393.582450px;}
.y5b{bottom:401.191590px;}
.y40{bottom:401.306880px;}
.yb2{bottom:401.315700px;}
.y90{bottom:401.323350px;}
.ydb{bottom:401.332170px;}
.y107{bottom:404.296770px;}
.y19{bottom:406.517250px;}
.yc0{bottom:407.466660px;}
.y7c{bottom:422.026140px;}
.y5a{bottom:429.816450px;}
.y3f{bottom:429.832920px;}
.yb1{bottom:429.841740px;}
.y8f{bottom:429.849390px;}
.yda{bottom:429.858210px;}
.y18{bottom:434.960940px;}
.ybf{bottom:435.910350px;}
.y106{bottom:441.733080px;}
.y7b{bottom:450.469830px;}
.y59{bottom:458.260140px;}
.y3e{bottom:458.276610px;}
.yb0{bottom:458.285430px;}
.y8e{bottom:458.293080px;}
.yd9{bottom:458.301900px;}
.y17{bottom:463.404630px;}
.ybe{bottom:464.436390px;}
.y7a{bottom:478.995870px;}
.y105{bottom:479.169390px;}
.y58{bottom:486.703830px;}
.y3d{bottom:486.720300px;}
.yaf{bottom:486.729120px;}
.y8d{bottom:486.736770px;}
.yd8{bottom:486.745590px;}
.ybd{bottom:489.273150px;}
.y16{bottom:491.930670px;}
.y79{bottom:507.439560px;}
.y104{bottom:507.613080px;}
.yae{bottom:515.073990px;}
.y57{bottom:515.147520px;}
.y3c{bottom:515.163990px;}
.yee{bottom:515.172810px;}
.y8c{bottom:515.180460px;}
.yd7{bottom:515.189280px;}
.y15{bottom:520.374360px;}
.y78{bottom:535.883250px;}
.y56{bottom:543.591210px;}
.yad{bottom:543.600030px;}
.y3b{bottom:543.607680px;}
.yed{bottom:543.616500px;}
.y8b{bottom:543.624150px;}
.yd6{bottom:543.632970px;}
.y103{bottom:545.148210px;}
.y14{bottom:548.818050px;}
.y77{bottom:564.326940px;}
.yec{bottom:572.060190px;}
.y55{bottom:572.117250px;}
.yac{bottom:572.126070px;}
.y3a{bottom:572.133720px;}
.y8a{bottom:572.150190px;}
.yd5{bottom:572.159010px;}
.y102{bottom:573.591900px;}
.y13{bottom:577.261740px;}
.y76{bottom:592.770630px;}
.yeb{bottom:600.503880px;}
.y54{bottom:600.560940px;}
.yab{bottom:600.569760px;}
.y39{bottom:600.577410px;}
.y89{bottom:600.593880px;}
.yd4{bottom:600.602700px;}
.y12{bottom:605.705430px;}
.y101{bottom:611.028210px;}
.y75{bottom:621.296670px;}
.y88{bottom:628.938750px;}
.y53{bottom:629.004630px;}
.yaa{bottom:629.013450px;}
.y38{bottom:629.021100px;}
.yea{bottom:629.029920px;}
.yd3{bottom:629.046390px;}
.y11{bottom:634.231470px;}
.y100{bottom:639.471900px;}
.y74{bottom:649.740360px;}
.y52{bottom:657.448320px;}
.ya9{bottom:657.457140px;}
.y37{bottom:657.464790px;}
.ye9{bottom:657.473610px;}
.yd2{bottom:657.490080px;}
.y10{bottom:662.675160px;}
.yff{bottom:677.007030px;}
.y73{bottom:678.184050px;}
.y51{bottom:685.974360px;}
.ya8{bottom:685.983180px;}
.y36{bottom:685.990830px;}
.ye8{bottom:685.999650px;}
.yd1{bottom:686.016120px;}
.yf{bottom:691.118850px;}
.yfe{bottom:705.450720px;}
.y72{bottom:706.627740px;}
.yd0{bottom:714.360990px;}
.y50{bottom:714.418050px;}
.ya7{bottom:714.426870px;}
.y35{bottom:714.434520px;}
.ye7{bottom:714.443340px;}
.ye{bottom:719.562540px;}
.y71{bottom:735.153780px;}
.y4f{bottom:742.861740px;}
.ya6{bottom:742.870560px;}
.y34{bottom:742.878210px;}
.ycf{bottom:742.887030px;}
.yd{bottom:748.088580px;}
.y70{bottom:763.498650px;}
.y4e{bottom:771.305430px;}
.ya5{bottom:771.314250px;}
.y33{bottom:771.321900px;}
.yce{bottom:771.330720px;}
.yc{bottom:776.532270px;}
.y6f{bottom:791.942340px;}
.yfd{bottom:799.675590px;}
.y4d{bottom:799.749120px;}
.ya4{bottom:799.757940px;}
.y32{bottom:799.765590px;}
.ycd{bottom:799.774410px;}
.yb{bottom:804.975960px;}
.y6e{bottom:820.567200px;}
.ya3{bottom:828.201630px;}
.ye6{bottom:828.218100px;}
.y4c{bottom:828.275160px;}
.y31{bottom:828.291630px;}
.ycc{bottom:828.300450px;}
.ya{bottom:833.419650px;}
.y6d{bottom:850.081440px;}
.y30{bottom:856.636500px;}
.ycb{bottom:856.645320px;}
.yfc{bottom:856.647300px;}
.ye5{bottom:856.661790px;}
.y4b{bottom:856.718850px;}
.ya2{bottom:856.727670px;}
.y9{bottom:861.764520px;}
.y6c{bottom:878.525130px;}
.y87{bottom:885.080190px;}
.y2f{bottom:885.162540px;}
.ya1{bottom:885.171360px;}
.yfb{bottom:885.173340px;}
.ye4{bottom:885.187830px;}
.y8{bottom:890.389380px;}
.y6b{bottom:908.138190px;}
.y2e{bottom:913.606230px;}
.ya0{bottom:913.615050px;}
.yfa{bottom:913.617030px;}
.ye3{bottom:913.631520px;}
.y114{bottom:915.154410px;}
.y7{bottom:918.833070px;}
.y6a{bottom:937.652430px;}
.y2d{bottom:942.132270px;}
.y9f{bottom:942.141090px;}
.yf9{bottom:942.143070px;}
.ye2{bottom:942.157560px;}
.y6{bottom:947.276760px;}
.y113{bottom:952.590720px;}
.y69{bottom:966.178470px;}
.ye1{bottom:970.502430px;}
.y2c{bottom:970.575960px;}
.y9e{bottom:970.584780px;}
.yf8{bottom:970.586760px;}
.y5{bottom:975.720450px;}
.y112{bottom:990.027030px;}
.y68{bottom:995.692710px;}
.y2b{bottom:999.019650px;}
.y9d{bottom:999.028470px;}
.y4{bottom:1010.089380px;}
.y111{bottom:1018.470720px;}
.y67{bottom:1025.305770px;}
.y2a{bottom:1027.463340px;}
.y9c{bottom:1027.472160px;}
.y3{bottom:1051.493070px;}
.y66{bottom:1054.820010px;}
.y29{bottom:1055.907030px;}
.y9b{bottom:1055.915850px;}
.y28{bottom:1084.433070px;}
.y9a{bottom:1084.441890px;}
.y2{bottom:1092.896760px;}
.y27{bottom:1112.876760px;}
.y99{bottom:1112.885580px;}
.y1{bottom:1134.300450px;}
.y98{bottom:1141.230450px;}
.y26{bottom:1141.320450px;}
.h4{height:16.380000px;}
.h5{height:43.031250px;}
.h2{height:59.060391px;}
.h7{height:59.103591px;}
.h3{height:59.478574px;}
.h6{height:68.710781px;}
.h1{height:86.780215px;}
.h0{height:1263.000000px;}
.w2{width:40.033500px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x8{left:127.615500px;}
.x3{left:134.173980px;}
.x1{left:142.200000px;}
.xb{left:154.615050px;}
.x2{left:173.511090px;}
.x9{left:180.714780px;}
.x4{left:246.850650px;}
.x7{left:361.884780px;}
.x6{left:372.952620px;}
.xa{left:426.398987px;}
.x5{left:446.310000px;}
.xc{left:764.910180px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.245952pt;}
.ls1c{letter-spacing:-0.169824pt;}
.lsb{letter-spacing:-0.068352pt;}
.lsa{letter-spacing:-0.059808pt;}
.lsc{letter-spacing:-0.051264pt;}
.ls27{letter-spacing:-0.035136pt;}
.ls28{letter-spacing:-0.029280pt;}
.ls19{letter-spacing:-0.023424pt;}
.ls18{letter-spacing:-0.011712pt;}
.lsd{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.005856pt;}
.ls14{letter-spacing:0.011712pt;}
.ls13{letter-spacing:0.017568pt;}
.ls16{letter-spacing:0.023424pt;}
.ls12{letter-spacing:0.029280pt;}
.ls11{letter-spacing:0.035136pt;}
.ls15{letter-spacing:0.040992pt;}
.ls6{letter-spacing:0.046848pt;}
.ls1{letter-spacing:0.052704pt;}
.ls0{letter-spacing:0.058560pt;}
.ls4{letter-spacing:0.064416pt;}
.ls2{letter-spacing:0.070272pt;}
.ls3{letter-spacing:0.076128pt;}
.ls8{letter-spacing:0.081984pt;}
.ls10{letter-spacing:0.087840pt;}
.ls5{letter-spacing:0.093696pt;}
.ls7{letter-spacing:0.099552pt;}
.ls9{letter-spacing:0.105408pt;}
.ls1b{letter-spacing:0.111264pt;}
.ls1a{letter-spacing:0.128832pt;}
.ls26{letter-spacing:0.134688pt;}
.ls21{letter-spacing:0.298656pt;}
.ls25{letter-spacing:0.368928pt;}
.ls20{letter-spacing:0.392352pt;}
.ls1d{letter-spacing:1.592832pt;}
.ls1f{letter-spacing:1.639680pt;}
.ls1e{letter-spacing:2.928000pt;}
.lsf{letter-spacing:3.888384pt;}
.ls24{letter-spacing:13.523200pt;}
.ls17{letter-spacing:18.932448pt;}
.ls22{letter-spacing:19.892832pt;}
.ws2{word-spacing:-58.560000pt;}
.wsc{word-spacing:-16.379232pt;}
.wsb{word-spacing:-16.344096pt;}
.wsa{word-spacing:-16.338240pt;}
.ws1{word-spacing:-16.332384pt;}
.ws5{word-spacing:-16.320672pt;}
.ws11{word-spacing:-0.035136pt;}
.ws1c{word-spacing:-0.029280pt;}
.ws16{word-spacing:-0.017568pt;}
.ws9{word-spacing:-0.011712pt;}
.ws13{word-spacing:-0.005856pt;}
.ws0{word-spacing:0.000000pt;}
.ws17{word-spacing:0.292800pt;}
.ws1d{word-spacing:2.518080pt;}
.ws12{word-spacing:3.490176pt;}
.ws1b{word-spacing:5.083008pt;}
.ws3{word-spacing:6.705120pt;}
.ws1a{word-spacing:7.653792pt;}
.ws18{word-spacing:10.833600pt;}
.ws7{word-spacing:11.489472pt;}
.ws15{word-spacing:13.088160pt;}
.ws8{word-spacing:13.744032pt;}
.ws19{word-spacing:16.279680pt;}
.ws4{word-spacing:17.913504pt;}
.ws10{word-spacing:19.166688pt;}
.ws6{word-spacing:19.500480pt;}
.wsd{word-spacing:20.765376pt;}
.wse{word-spacing:22.375776pt;}
.wsf{word-spacing:31.341312pt;}
.ws14{word-spacing:320.938080pt;}
._27{margin-left:-20.882496pt;}
._1e{margin-left:-19.670304pt;}
._1d{margin-left:-18.575232pt;}
._e{margin-left:-4.555968pt;}
._d{margin-left:-3.554592pt;}
._3{margin-left:-1.188768pt;}
._4{width:1.182912pt;}
._2{width:2.336544pt;}
._1{width:3.818112pt;}
._0{width:5.440224pt;}
._9{width:7.044768pt;}
._8{width:7.987584pt;}
._16{width:8.988960pt;}
._a{width:9.908352pt;}
._b{width:11.173248pt;}
._12{width:12.063360pt;}
._11{width:12.982752pt;}
._10{width:13.960704pt;}
._7{width:15.348576pt;}
._f{width:17.257632pt;}
._1c{width:18.235584pt;}
._1b{width:19.213536pt;}
._c{width:20.472576pt;}
._15{width:21.386112pt;}
._18{width:22.399200pt;}
._20{width:24.003744pt;}
._14{width:25.579008pt;}
._6{width:26.890752pt;}
._1a{width:28.471872pt;}
._5{width:29.438112pt;}
._21{width:30.697152pt;}
._2b{width:31.721952pt;}
._28{width:32.957568pt;}
._26{width:33.876960pt;}
._25{width:34.878336pt;}
._17{width:36.143232pt;}
._19{width:42.227616pt;}
._1f{width:45.694368pt;}
._2a{width:48.956160pt;}
._13{width:49.898976pt;}
._22{width:51.169728pt;}
._23{width:52.727424pt;}
._29{width:55.661280pt;}
._24{width:119.362848pt;}
._2c{width:320.627712pt;}
.fs2{font-size:42.666667pt;}
.fs3{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.fs0{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:3.466667pt;}
.y24{bottom:35.045431pt;}
.y110{bottom:99.690587pt;}
.y65{bottom:103.723387pt;}
.yf7{bottom:103.745867pt;}
.y4a{bottom:103.752667pt;}
.ybc{bottom:103.760507pt;}
.y23{bottom:108.369467pt;}
.yca{bottom:109.140187pt;}
.y86{bottom:122.169787pt;}
.y10f{bottom:124.973867pt;}
.ybb{bottom:128.955947pt;}
.y64{bottom:129.006667pt;}
.yf6{bottom:129.029147pt;}
.y49{bottom:129.035947pt;}
.ye0{bottom:129.043787pt;}
.y22{bottom:133.652747pt;}
.yc9{bottom:134.423467pt;}
.y85{bottom:147.453067pt;}
.y63{bottom:154.363147pt;}
.yf5{bottom:154.385627pt;}
.y48{bottom:154.392427pt;}
.yba{bottom:154.400267pt;}
.y10e{bottom:158.250587pt;}
.y21{bottom:158.936027pt;}
.yc8{bottom:159.779947pt;}
.y84{bottom:172.736347pt;}
.y47{bottom:179.587867pt;}
.y62{bottom:179.646427pt;}
.yf4{bottom:179.668907pt;}
.y97{bottom:179.675707pt;}
.yb9{bottom:179.683547pt;}
.y10d{bottom:183.533867pt;}
.y20{bottom:184.219307pt;}
.yc7{bottom:185.136427pt;}
.y83{bottom:198.092827pt;}
.y61{bottom:204.929707pt;}
.y46{bottom:204.944347pt;}
.yf3{bottom:204.952187pt;}
.y96{bottom:204.958987pt;}
.yb8{bottom:204.966827pt;}
.y1f{bottom:209.575787pt;}
.yc6{bottom:210.419707pt;}
.y10c{bottom:216.898427pt;}
.y82{bottom:223.376107pt;}
.ydf{bottom:230.162267pt;}
.y60{bottom:230.212987pt;}
.y45{bottom:230.227627pt;}
.yf2{bottom:230.235467pt;}
.y95{bottom:230.242267pt;}
.yb7{bottom:230.250107pt;}
.y1e{bottom:234.859067pt;}
.yc5{bottom:235.702987pt;}
.y10b{bottom:242.181707pt;}
.y81{bottom:248.659387pt;}
.yde{bottom:255.445547pt;}
.y5f{bottom:255.496267pt;}
.y44{bottom:255.510907pt;}
.yf1{bottom:255.518747pt;}
.y94{bottom:255.525547pt;}
.yb6{bottom:255.533387pt;}
.y1d{bottom:260.142347pt;}
.yc4{bottom:260.986267pt;}
.y80{bottom:273.854827pt;}
.y10a{bottom:275.458427pt;}
.yf0{bottom:280.802027pt;}
.y93{bottom:280.808827pt;}
.y5e{bottom:280.852747pt;}
.y43{bottom:280.867387pt;}
.yb5{bottom:280.889867pt;}
.y1c{bottom:285.425627pt;}
.yc3{bottom:286.269547pt;}
.y7f{bottom:299.211307pt;}
.yb4{bottom:306.085307pt;}
.y5d{bottom:306.136027pt;}
.y42{bottom:306.150667pt;}
.yef{bottom:306.158507pt;}
.y92{bottom:306.165307pt;}
.ydd{bottom:306.173147pt;}
.y109{bottom:308.735147pt;}
.y1b{bottom:310.708907pt;}
.yc2{bottom:311.626027pt;}
.y7e{bottom:324.567787pt;}
.y5c{bottom:331.419307pt;}
.y41{bottom:331.433947pt;}
.yb3{bottom:331.441787pt;}
.y91{bottom:331.448587pt;}
.ydc{bottom:331.456427pt;}
.y108{bottom:334.091627pt;}
.y1a{bottom:336.065387pt;}
.yc1{bottom:336.909307pt;}
.y7d{bottom:349.851067pt;}
.y5b{bottom:356.614747pt;}
.y40{bottom:356.717227pt;}
.yb2{bottom:356.725067pt;}
.y90{bottom:356.731867pt;}
.ydb{bottom:356.739707pt;}
.y107{bottom:359.374907pt;}
.y19{bottom:361.348667pt;}
.yc0{bottom:362.192587pt;}
.y7c{bottom:375.134347pt;}
.y5a{bottom:382.059067pt;}
.y3f{bottom:382.073707pt;}
.yb1{bottom:382.081547pt;}
.y8f{bottom:382.088347pt;}
.yda{bottom:382.096187pt;}
.y18{bottom:386.631947pt;}
.ybf{bottom:387.475867pt;}
.y106{bottom:392.651627pt;}
.y7b{bottom:400.417627pt;}
.y59{bottom:407.342347pt;}
.y3e{bottom:407.356987pt;}
.yb0{bottom:407.364827pt;}
.y8e{bottom:407.371627pt;}
.yd9{bottom:407.379467pt;}
.y17{bottom:411.915227pt;}
.ybe{bottom:412.832347pt;}
.y7a{bottom:425.774107pt;}
.y105{bottom:425.928347pt;}
.y58{bottom:432.625627pt;}
.y3d{bottom:432.640267pt;}
.yaf{bottom:432.648107pt;}
.y8d{bottom:432.654907pt;}
.yd8{bottom:432.662747pt;}
.ybd{bottom:434.909467pt;}
.y16{bottom:437.271707pt;}
.y79{bottom:451.057387pt;}
.y104{bottom:451.211627pt;}
.yae{bottom:457.843547pt;}
.y57{bottom:457.908907pt;}
.y3c{bottom:457.923547pt;}
.yee{bottom:457.931387pt;}
.y8c{bottom:457.938187pt;}
.yd7{bottom:457.946027pt;}
.y15{bottom:462.554987pt;}
.y78{bottom:476.340667pt;}
.y56{bottom:483.192187pt;}
.yad{bottom:483.200027pt;}
.y3b{bottom:483.206827pt;}
.yed{bottom:483.214667pt;}
.y8b{bottom:483.221467pt;}
.yd6{bottom:483.229307pt;}
.y103{bottom:484.576187pt;}
.y14{bottom:487.838267pt;}
.y77{bottom:501.623947pt;}
.yec{bottom:508.497947pt;}
.y55{bottom:508.548667pt;}
.yac{bottom:508.556507pt;}
.y3a{bottom:508.563307pt;}
.y8a{bottom:508.577947pt;}
.yd5{bottom:508.585787pt;}
.y102{bottom:509.859467pt;}
.y13{bottom:513.121547pt;}
.y76{bottom:526.907227pt;}
.yeb{bottom:533.781227pt;}
.y54{bottom:533.831947pt;}
.yab{bottom:533.839787pt;}
.y39{bottom:533.846587pt;}
.y89{bottom:533.861227pt;}
.yd4{bottom:533.869067pt;}
.y12{bottom:538.404827pt;}
.y101{bottom:543.136187pt;}
.y75{bottom:552.263707pt;}
.y88{bottom:559.056667pt;}
.y53{bottom:559.115227pt;}
.yaa{bottom:559.123067pt;}
.y38{bottom:559.129867pt;}
.yea{bottom:559.137707pt;}
.yd3{bottom:559.152347pt;}
.y11{bottom:563.761307pt;}
.y100{bottom:568.419467pt;}
.y74{bottom:577.546987pt;}
.y52{bottom:584.398507pt;}
.ya9{bottom:584.406347pt;}
.y37{bottom:584.413147pt;}
.ye9{bottom:584.420987pt;}
.yd2{bottom:584.435627pt;}
.y10{bottom:589.044587pt;}
.yff{bottom:601.784027pt;}
.y73{bottom:602.830267pt;}
.y51{bottom:609.754987pt;}
.ya8{bottom:609.762827pt;}
.y36{bottom:609.769627pt;}
.ye8{bottom:609.777467pt;}
.yd1{bottom:609.792107pt;}
.yf{bottom:614.327867pt;}
.yfe{bottom:627.067307pt;}
.y72{bottom:628.113547pt;}
.yd0{bottom:634.987547pt;}
.y50{bottom:635.038267pt;}
.ya7{bottom:635.046107pt;}
.y35{bottom:635.052907pt;}
.ye7{bottom:635.060747pt;}
.ye{bottom:639.611147pt;}
.y71{bottom:653.470027pt;}
.y4f{bottom:660.321547pt;}
.ya6{bottom:660.329387pt;}
.y34{bottom:660.336187pt;}
.ycf{bottom:660.344027pt;}
.yd{bottom:664.967627pt;}
.y70{bottom:678.665467pt;}
.y4e{bottom:685.604827pt;}
.ya5{bottom:685.612667pt;}
.y33{bottom:685.619467pt;}
.yce{bottom:685.627307pt;}
.yc{bottom:690.250907pt;}
.y6f{bottom:703.948747pt;}
.yfd{bottom:710.822747pt;}
.y4d{bottom:710.888107pt;}
.ya4{bottom:710.895947pt;}
.y32{bottom:710.902747pt;}
.ycd{bottom:710.910587pt;}
.yb{bottom:715.534187pt;}
.y6e{bottom:729.393067pt;}
.ya3{bottom:736.179227pt;}
.ye6{bottom:736.193867pt;}
.y4c{bottom:736.244587pt;}
.y31{bottom:736.259227pt;}
.ycc{bottom:736.267067pt;}
.ya{bottom:740.817467pt;}
.y6d{bottom:755.627947pt;}
.y30{bottom:761.454667pt;}
.ycb{bottom:761.462507pt;}
.yfc{bottom:761.464267pt;}
.ye5{bottom:761.477147pt;}
.y4b{bottom:761.527867pt;}
.ya2{bottom:761.535707pt;}
.y9{bottom:766.012907pt;}
.y6c{bottom:780.911227pt;}
.y87{bottom:786.737947pt;}
.y2f{bottom:786.811147pt;}
.ya1{bottom:786.818987pt;}
.yfb{bottom:786.820747pt;}
.ye4{bottom:786.833627pt;}
.y8{bottom:791.457227pt;}
.y6b{bottom:807.233947pt;}
.y2e{bottom:812.094427pt;}
.ya0{bottom:812.102267pt;}
.yfa{bottom:812.104027pt;}
.ye3{bottom:812.116907pt;}
.y114{bottom:813.470587pt;}
.y7{bottom:816.740507pt;}
.y6a{bottom:833.468827pt;}
.y2d{bottom:837.450907pt;}
.y9f{bottom:837.458747pt;}
.yf9{bottom:837.460507pt;}
.ye2{bottom:837.473387pt;}
.y6{bottom:842.023787pt;}
.y113{bottom:846.747307pt;}
.y69{bottom:858.825307pt;}
.ye1{bottom:862.668827pt;}
.y2c{bottom:862.734187pt;}
.y9e{bottom:862.742027pt;}
.yf8{bottom:862.743787pt;}
.y5{bottom:867.307067pt;}
.y112{bottom:880.024027pt;}
.y68{bottom:885.060187pt;}
.y2b{bottom:888.017467pt;}
.y9d{bottom:888.025307pt;}
.y4{bottom:897.857227pt;}
.y111{bottom:905.307307pt;}
.y67{bottom:911.382907pt;}
.y2a{bottom:913.300747pt;}
.y9c{bottom:913.308587pt;}
.y3{bottom:934.660507pt;}
.y66{bottom:937.617787pt;}
.y29{bottom:938.584027pt;}
.y9b{bottom:938.591867pt;}
.y28{bottom:963.940507pt;}
.y9a{bottom:963.948347pt;}
.y2{bottom:971.463787pt;}
.y27{bottom:989.223787pt;}
.y99{bottom:989.231627pt;}
.y1{bottom:1008.267067pt;}
.y98{bottom:1014.427067pt;}
.y26{bottom:1014.507067pt;}
.h4{height:14.560000pt;}
.h5{height:38.250000pt;}
.h2{height:52.498125pt;}
.h7{height:52.536525pt;}
.h3{height:52.869844pt;}
.h6{height:61.076250pt;}
.h1{height:77.137969pt;}
.h0{height:1122.666667pt;}
.w2{width:35.585333pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x8{left:113.436000pt;}
.x3{left:119.265760pt;}
.x1{left:126.400000pt;}
.xb{left:137.435600pt;}
.x2{left:154.232080pt;}
.x9{left:160.635360pt;}
.x4{left:219.422800pt;}
.x7{left:321.675360pt;}
.x6{left:331.513440pt;}
.xa{left:379.021322pt;}
.x5{left:396.720000pt;}
.xc{left:679.920160pt;}
}




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