
    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_1f319152a8aa4a864b5b9020.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921000;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_ea32378ed453b45f44a29baa.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1ae817cb5a05441843b6e142.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.157227;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_4a4ad922da42847f380aa226.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_294071719e98cfadf0ad2c62.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.133301;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_e4fa0c1587f0034d1a87c102.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.145000;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.249946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);}
.m1{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;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000329px;}
.ls0{letter-spacing:1.435219px;}
.ls1{letter-spacing:2.059227px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-79.345122px;}
.ws7{word-spacing:-59.775840px;}
.ws12{word-spacing:-49.418178px;}
.ws11{word-spacing:-49.221814px;}
.ws14{word-spacing:-49.156360px;}
.wse{word-spacing:-49.025450px;}
.ws10{word-spacing:-48.829087px;}
.ws15{word-spacing:-48.763632px;}
.wsf{word-spacing:-48.567269px;}
.wsc{word-spacing:-48.501814px;}
.wsb{word-spacing:-48.436360px;}
.ws3{word-spacing:-44.293897px;}
.ws8{word-spacing:-44.251358px;}
.ws6{word-spacing:-44.249132px;}
.ws4{word-spacing:-44.246949px;}
.ws5{word-spacing:-44.234122px;}
.wsd{word-spacing:-43.985449px;}
.wsa{word-spacing:-39.864525px;}
.ws9{word-spacing:-39.810727px;}
.ws13{word-spacing:-32.724535px;}
.ws1{word-spacing:-23.743510px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-10.327335px;}
._1f{margin-left:-6.455790px;}
._1d{margin-left:-4.303860px;}
._2{margin-left:-1.450819px;}
._1{width:5.265069px;}
._1e{width:14.792785px;}
._1c{width:32.725097px;}
._11{width:61.723631px;}
._1a{width:65.454540px;}
._4{width:73.777176px;}
._5{width:76.312009px;}
._b{width:89.296203px;}
._3{width:95.512942px;}
._1b{width:116.227726px;}
._f{width:279.419291px;}
._6{width:330.712940px;}
._c{width:372.669602px;}
._a{width:374.582429px;}
._9{width:391.827758px;}
._e{width:433.449676px;}
._d{width:528.194382px;}
._10{width:547.603597px;}
._8{width:581.084045px;}
._16{width:700.346907px;}
._7{width:727.582674px;}
._17{width:1552.113381px;}
._12{width:1788.050816px;}
._19{width:1811.849538px;}
._18{width:1928.810804px;}
._15{width:2070.369338px;}
._14{width:2252.496596px;}
._13{width:2257.804959px;}
.fc3{color:rgb(0,48,100);}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:53.798280px;}
.fs2{font-size:59.775840px;}
.fs4{font-size:65.454540px;}
.fs1{font-size:78.001020px;}
.fs5{font-size:86.077200px;}
.fs0{font-size:174.002460px;}
.y0{bottom:0.000000px;}
.y34{bottom:106.299000px;}
.y33{bottom:145.288500px;}
.y32{bottom:161.727000px;}
.y31{bottom:188.328000px;}
.yfc{bottom:191.082000px;}
.yc6{bottom:191.307000px;}
.y81{bottom:200.821500px;}
.ye8{bottom:201.243000px;}
.y30{bottom:204.765000px;}
.ydc{bottom:211.405500px;}
.yc5{bottom:211.630500px;}
.y80{bottom:221.146500px;}
.ya1{bottom:221.566500px;}
.y2f{bottom:231.366000px;}
.ydb{bottom:231.729000px;}
.yc4{bottom:231.955500px;}
.y7f{bottom:241.470000px;}
.ya0{bottom:241.891500px;}
.yda{bottom:252.052500px;}
.yf3{bottom:252.279000px;}
.y2e{bottom:259.461000px;}
.y7e{bottom:261.793500px;}
.y9f{bottom:262.215000px;}
.yc3{bottom:262.440000px;}
.y5c{bottom:267.036000px;}
.yd9{bottom:272.376000px;}
.yf2{bottom:272.602500px;}
.yfb{bottom:282.538500px;}
.y5b{bottom:287.359500px;}
.y7d{bottom:292.279500px;}
.y9e{bottom:292.701000px;}
.yc2{bottom:292.926000px;}
.y2d{bottom:293.797500px;}
.y2c{bottom:311.730000px;}
.y7c{bottom:312.603000px;}
.y9d{bottom:313.024500px;}
.yc1{bottom:313.249500px;}
.y5a{bottom:317.845500px;}
.yd8{bottom:323.185500px;}
.y2b{bottom:329.662500px;}
.y7b{bottom:332.926500px;}
.y9c{bottom:333.348000px;}
.yf1{bottom:333.574500px;}
.y59{bottom:338.169000px;}
.ye7{bottom:343.510500px;}
.yc0{bottom:343.735500px;}
.y2a{bottom:352.975500px;}
.y7a{bottom:353.250000px;}
.y9b{bottom:353.671500px;}
.y58{bottom:358.492500px;}
.ye6{bottom:363.834000px;}
.ybf{bottom:364.059000px;}
.y29{bottom:370.908000px;}
.y79{bottom:373.575000px;}
.y9a{bottom:373.995000px;}
.ye5{bottom:384.157500px;}
.ybe{bottom:384.384000px;}
.y57{bottom:388.978500px;}
.y28{bottom:394.221000px;}
.y99{bottom:394.320000px;}
.y78{bottom:404.059500px;}
.y101{bottom:404.481000px;}
.ybd{bottom:404.707500px;}
.yd7{bottom:414.643500px;}
.y27{bottom:417.532500px;}
.y56{bottom:419.464500px;}
.y77{bottom:424.384500px;}
.y98{bottom:424.804500px;}
.ybc{bottom:425.031000px;}
.ye4{bottom:434.967000px;}
.y26{bottom:435.466500px;}
.y76{bottom:444.708000px;}
.yd6{bottom:445.129500px;}
.yf0{bottom:445.354500px;}
.y55{bottom:449.949000px;}
.y97{bottom:455.290500px;}
.ybb{bottom:455.517000px;}
.yfa{bottom:458.329500px;}
.y25{bottom:458.778000px;}
.y75{bottom:465.031500px;}
.yd5{bottom:465.453000px;}
.yef{bottom:465.678000px;}
.y96{bottom:475.614000px;}
.yba{bottom:475.840500px;}
.y24{bottom:476.712000px;}
.y54{bottom:480.435000px;}
.y74{bottom:485.355000px;}
.ye3{bottom:485.776500px;}
.yee{bottom:486.003000px;}
.yf9{bottom:494.194500px;}
.yd4{bottom:495.939000px;}
.y23{bottom:500.023500px;}
.y53{bottom:500.758500px;}
.y95{bottom:506.100000px;}
.yb9{bottom:506.326500px;}
.y73{bottom:515.841000px;}
.ye2{bottom:516.262500px;}
.y22{bottom:517.956000px;}
.y94{bottom:526.423500px;}
.yed{bottom:526.650000px;}
.y52{bottom:531.244500px;}
.y72{bottom:536.164500px;}
.ye1{bottom:536.586000px;}
.yb8{bottom:536.812500px;}
.y21{bottom:541.269000px;}
.y93{bottom:546.748500px;}
.y51{bottom:551.568000px;}
.y71{bottom:556.488000px;}
.ye0{bottom:556.909500px;}
.yb7{bottom:557.136000px;}
.y104{bottom:559.948500px;}
.y20{bottom:564.582000px;}
.yd3{bottom:567.072000px;}
.yf8{bottom:567.297000px;}
.y70{bottom:576.813000px;}
.y92{bottom:577.233000px;}
.yb6{bottom:577.459500px;}
.y50{bottom:582.054000px;}
.yd2{bottom:587.395500px;}
.yec{bottom:587.622000px;}
.y1f{bottom:587.895000px;}
.y103{bottom:595.813500px;}
.y6f{bottom:597.136500px;}
.y91{bottom:597.558000px;}
.y1e{bottom:605.827500px;}
.yd1{bottom:607.719000px;}
.yb5{bottom:607.945500px;}
.y4f{bottom:612.540000px;}
.y90{bottom:617.881500px;}
.y6e{bottom:627.622500px;}
.yb4{bottom:628.269000px;}
.y1d{bottom:629.140500px;}
.yd0{bottom:638.205000px;}
.y4e{bottom:643.026000px;}
.y1c{bottom:647.073000px;}
.y6d{bottom:647.946000px;}
.y8f{bottom:648.367500px;}
.yb3{bottom:648.592500px;}
.ycf{bottom:658.528500px;}
.yeb{bottom:658.755000px;}
.y100{bottom:661.567500px;}
.yf7{bottom:668.916000px;}
.y1b{bottom:670.384500px;}
.y4d{bottom:673.512000px;}
.y6c{bottom:678.432000px;}
.y8e{bottom:678.852000px;}
.yb2{bottom:679.078500px;}
.y1a{bottom:688.318500px;}
.yce{bottom:689.014500px;}
.yf6{bottom:689.241000px;}
.y4c{bottom:693.835500px;}
.yff{bottom:697.432500px;}
.y6b{bottom:698.755500px;}
.yb1{bottom:699.402000px;}
.y19{bottom:706.251000px;}
.y8d{bottom:709.338000px;}
.yea{bottom:709.564500px;}
.y4b{bottom:714.159000px;}
.yb0{bottom:719.725500px;}
.y6a{bottom:729.241500px;}
.y18{bottom:729.564000px;}
.ycd{bottom:732.700500px;}
.y4a{bottom:734.482500px;}
.y8c{bottom:739.824000px;}
.yaf{bottom:740.050500px;}
.y17{bottom:747.496500px;}
.y69{bottom:749.565000px;}
.y49{bottom:754.806000px;}
.y8b{bottom:760.147500px;}
.yae{bottom:760.374000px;}
.y16{bottom:765.429000px;}
.ycc{bottom:768.565500px;}
.ydf{bottom:770.310000px;}
.yfe{bottom:770.535000px;}
.y68{bottom:780.051000px;}
.y8a{bottom:780.471000px;}
.yad{bottom:780.697500px;}
.y3e{bottom:781.893000px;}
.y15{bottom:788.742000px;}
.ye9{bottom:790.860000px;}
.y48{bottom:798.405000px;}
.y67{bottom:800.374500px;}
.y89{bottom:800.796000px;}
.yac{bottom:811.183500px;}
.y14{bottom:812.053500px;}
.yde{bottom:813.996000px;}
.y3d{bottom:818.580000px;}
.y66{bottom:820.698000px;}
.yfd{bottom:821.344500px;}
.y88{bottom:831.280500px;}
.yab{bottom:831.507000px;}
.y47{bottom:834.270000px;}
.y13{bottom:835.366500px;}
.y65{bottom:841.021500px;}
.ycb{bottom:841.669500px;}
.ydd{bottom:849.861000px;}
.yaa{bottom:851.830500px;}
.y3c{bottom:855.268500px;}
.y12{bottom:858.679500px;}
.y64{bottom:861.345000px;}
.yca{bottom:861.993000px;}
.yf5{bottom:872.154000px;}
.y87{bottom:874.966500px;}
.y63{bottom:881.670000px;}
.y11{bottom:881.992500px;}
.ya9{bottom:882.316500px;}
.y3b{bottom:891.955500px;}
.yf4{bottom:892.479000px;}
.y10{bottom:899.925000px;}
.y62{bottom:901.993500px;}
.ya8{bottom:902.640000px;}
.y46{bottom:907.372500px;}
.y86{bottom:910.833000px;}
.yc9{bottom:912.802500px;}
.yf{bottom:917.857500px;}
.y61{bottom:922.317000px;}
.ya7{bottom:922.963500px;}
.y45{bottom:927.696000px;}
.y3a{bottom:928.642500px;}
.yc8{bottom:933.126000px;}
.ye{bottom:935.790000px;}
.y60{bottom:942.640500px;}
.ya6{bottom:943.288500px;}
.y44{bottom:948.021000px;}
.yc7{bottom:953.449500px;}
.y5f{bottom:962.964000px;}
.ya5{bottom:963.612000px;}
.y39{bottom:965.329500px;}
.yd{bottom:967.354500px;}
.y43{bottom:968.344500px;}
.y102{bottom:973.773000px;}
.y85{bottom:983.935500px;}
.y42{bottom:988.668000px;}
.y5e{bottom:993.450000px;}
.ya4{bottom:994.096500px;}
.yc{bottom:999.702000px;}
.y38{bottom:1002.018000px;}
.y84{bottom:1004.259000px;}
.y41{bottom:1008.991500px;}
.ya3{bottom:1014.421500px;}
.yb{bottom:1017.634500px;}
.y3{bottom:1022.583516px;}
.y83{bottom:1024.582500px;}
.y40{bottom:1029.315000px;}
.ya2{bottom:1034.745000px;}
.ya{bottom:1035.567000px;}
.y5d{bottom:1037.136000px;}
.y37{bottom:1038.705000px;}
.y2{bottom:1045.984782px;}
.y82{bottom:1055.068500px;}
.y9{bottom:1064.268000px;}
.y3f{bottom:1073.001000px;}
.y36{bottom:1075.392000px;}
.y8{bottom:1086.453000px;}
.y7{bottom:1104.385500px;}
.y6{bottom:1122.318000px;}
.y1{bottom:1126.929823px;}
.y35{bottom:1135.288500px;}
.y5{bottom:1140.250500px;}
.y4{bottom:1168.345500px;}
.h7{height:41.163039px;}
.h5{height:45.736690px;}
.hb{height:50.081672px;}
.h6{height:53.383795px;}
.h4{height:54.813978px;}
.h3{height:56.786875px;}
.h8{height:60.021302px;}
.h9{height:78.932120px;}
.ha{height:80.912568px;}
.h2{height:124.585761px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:82.865290px;}
.x2{left:84.213554px;}
.xa{left:98.727000px;}
.x10{left:104.311500px;}
.x3{left:106.299000px;}
.xb{left:125.949000px;}
.x11{left:134.727000px;}
.x1c{left:140.055000px;}
.x17{left:157.108500px;}
.xc{left:161.949000px;}
.x12{left:170.655000px;}
.x13{left:192.549000px;}
.x16{left:271.773000px;}
.x19{left:279.133500px;}
.x9{left:311.164500px;}
.x1e{left:324.226500px;}
.x1b{left:334.362000px;}
.x15{left:346.639500px;}
.xf{left:373.882500px;}
.x4{left:392.106000px;}
.x7{left:400.050000px;}
.xe{left:436.945500px;}
.x8{left:438.354000px;}
.x18{left:483.861000px;}
.x6{left:537.634500px;}
.x1d{left:550.570500px;}
.x1a{left:568.483500px;}
.x14{left:621.418500px;}
.xd{left:663.916500px;}
.x5{left:836.902500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000292pt;}
.ls0{letter-spacing:1.275750pt;}
.ls1{letter-spacing:1.830424pt;}
.ws0{word-spacing:-70.528997pt;}
.ws7{word-spacing:-53.134080pt;}
.ws12{word-spacing:-43.927269pt;}
.ws11{word-spacing:-43.752724pt;}
.ws14{word-spacing:-43.694542pt;}
.wse{word-spacing:-43.578178pt;}
.ws10{word-spacing:-43.403633pt;}
.ws15{word-spacing:-43.345451pt;}
.wsf{word-spacing:-43.170905pt;}
.wsc{word-spacing:-43.112724pt;}
.wsb{word-spacing:-43.054542pt;}
.ws3{word-spacing:-39.372353pt;}
.ws8{word-spacing:-39.334540pt;}
.ws6{word-spacing:-39.332561pt;}
.ws4{word-spacing:-39.330621pt;}
.ws5{word-spacing:-39.319219pt;}
.wsd{word-spacing:-39.098177pt;}
.wsa{word-spacing:-35.435134pt;}
.ws9{word-spacing:-35.387313pt;}
.ws13{word-spacing:-29.088476pt;}
.ws1{word-spacing:-21.105343pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-9.179853pt;}
._1f{margin-left:-5.738480pt;}
._1d{margin-left:-3.825653pt;}
._2{margin-left:-1.289617pt;}
._1{width:4.680061pt;}
._1e{width:13.149142pt;}
._1c{width:29.088975pt;}
._11{width:54.865450pt;}
._1a{width:58.181813pt;}
._4{width:65.579712pt;}
._5{width:67.832897pt;}
._b{width:79.374403pt;}
._3{width:84.900393pt;}
._1b{width:103.313535pt;}
._f{width:248.372703pt;}
._6{width:293.967057pt;}
._c{width:331.261868pt;}
._a{width:332.962159pt;}
._9{width:348.291341pt;}
._e{width:385.288601pt;}
._d{width:469.506118pt;}
._10{width:486.758753pt;}
._8{width:516.519152pt;}
._16{width:622.530584pt;}
._7{width:646.740155pt;}
._17{width:1379.656339pt;}
._12{width:1589.378503pt;}
._19{width:1610.532923pt;}
._18{width:1714.498493pt;}
._15{width:1840.328300pt;}
._14{width:2002.219196pt;}
._13{width:2006.937741pt;}
.fs3{font-size:47.820693pt;}
.fs2{font-size:53.134080pt;}
.fs4{font-size:58.181813pt;}
.fs1{font-size:69.334240pt;}
.fs5{font-size:76.513067pt;}
.fs0{font-size:154.668853pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:94.488000pt;}
.y33{bottom:129.145333pt;}
.y32{bottom:143.757333pt;}
.y31{bottom:167.402667pt;}
.yfc{bottom:169.850667pt;}
.yc6{bottom:170.050667pt;}
.y81{bottom:178.508000pt;}
.ye8{bottom:178.882667pt;}
.y30{bottom:182.013333pt;}
.ydc{bottom:187.916000pt;}
.yc5{bottom:188.116000pt;}
.y80{bottom:196.574667pt;}
.ya1{bottom:196.948000pt;}
.y2f{bottom:205.658667pt;}
.ydb{bottom:205.981333pt;}
.yc4{bottom:206.182667pt;}
.y7f{bottom:214.640000pt;}
.ya0{bottom:215.014667pt;}
.yda{bottom:224.046667pt;}
.yf3{bottom:224.248000pt;}
.y2e{bottom:230.632000pt;}
.y7e{bottom:232.705333pt;}
.y9f{bottom:233.080000pt;}
.yc3{bottom:233.280000pt;}
.y5c{bottom:237.365333pt;}
.yd9{bottom:242.112000pt;}
.yf2{bottom:242.313333pt;}
.yfb{bottom:251.145333pt;}
.y5b{bottom:255.430667pt;}
.y7d{bottom:259.804000pt;}
.y9e{bottom:260.178667pt;}
.yc2{bottom:260.378667pt;}
.y2d{bottom:261.153333pt;}
.y2c{bottom:277.093333pt;}
.y7c{bottom:277.869333pt;}
.y9d{bottom:278.244000pt;}
.yc1{bottom:278.444000pt;}
.y5a{bottom:282.529333pt;}
.yd8{bottom:287.276000pt;}
.y2b{bottom:293.033333pt;}
.y7b{bottom:295.934667pt;}
.y9c{bottom:296.309333pt;}
.yf1{bottom:296.510667pt;}
.y59{bottom:300.594667pt;}
.ye7{bottom:305.342667pt;}
.yc0{bottom:305.542667pt;}
.y2a{bottom:313.756000pt;}
.y7a{bottom:314.000000pt;}
.y9b{bottom:314.374667pt;}
.y58{bottom:318.660000pt;}
.ye6{bottom:323.408000pt;}
.ybf{bottom:323.608000pt;}
.y29{bottom:329.696000pt;}
.y79{bottom:332.066667pt;}
.y9a{bottom:332.440000pt;}
.ye5{bottom:341.473333pt;}
.ybe{bottom:341.674667pt;}
.y57{bottom:345.758667pt;}
.y28{bottom:350.418667pt;}
.y99{bottom:350.506667pt;}
.y78{bottom:359.164000pt;}
.y101{bottom:359.538667pt;}
.ybd{bottom:359.740000pt;}
.yd7{bottom:368.572000pt;}
.y27{bottom:371.140000pt;}
.y56{bottom:372.857333pt;}
.y77{bottom:377.230667pt;}
.y98{bottom:377.604000pt;}
.ybc{bottom:377.805333pt;}
.ye4{bottom:386.637333pt;}
.y26{bottom:387.081333pt;}
.y76{bottom:395.296000pt;}
.yd6{bottom:395.670667pt;}
.yf0{bottom:395.870667pt;}
.y55{bottom:399.954667pt;}
.y97{bottom:404.702667pt;}
.ybb{bottom:404.904000pt;}
.yfa{bottom:407.404000pt;}
.y25{bottom:407.802667pt;}
.y75{bottom:413.361333pt;}
.yd5{bottom:413.736000pt;}
.yef{bottom:413.936000pt;}
.y96{bottom:422.768000pt;}
.yba{bottom:422.969333pt;}
.y24{bottom:423.744000pt;}
.y54{bottom:427.053333pt;}
.y74{bottom:431.426667pt;}
.ye3{bottom:431.801333pt;}
.yee{bottom:432.002667pt;}
.yf9{bottom:439.284000pt;}
.yd4{bottom:440.834667pt;}
.y23{bottom:444.465333pt;}
.y53{bottom:445.118667pt;}
.y95{bottom:449.866667pt;}
.yb9{bottom:450.068000pt;}
.y73{bottom:458.525333pt;}
.ye2{bottom:458.900000pt;}
.y22{bottom:460.405333pt;}
.y94{bottom:467.932000pt;}
.yed{bottom:468.133333pt;}
.y52{bottom:472.217333pt;}
.y72{bottom:476.590667pt;}
.ye1{bottom:476.965333pt;}
.yb8{bottom:477.166667pt;}
.y21{bottom:481.128000pt;}
.y93{bottom:485.998667pt;}
.y51{bottom:490.282667pt;}
.y71{bottom:494.656000pt;}
.ye0{bottom:495.030667pt;}
.yb7{bottom:495.232000pt;}
.y104{bottom:497.732000pt;}
.y20{bottom:501.850667pt;}
.yd3{bottom:504.064000pt;}
.yf8{bottom:504.264000pt;}
.y70{bottom:512.722667pt;}
.y92{bottom:513.096000pt;}
.yb6{bottom:513.297333pt;}
.y50{bottom:517.381333pt;}
.yd2{bottom:522.129333pt;}
.yec{bottom:522.330667pt;}
.y1f{bottom:522.573333pt;}
.y103{bottom:529.612000pt;}
.y6f{bottom:530.788000pt;}
.y91{bottom:531.162667pt;}
.y1e{bottom:538.513333pt;}
.yd1{bottom:540.194667pt;}
.yb5{bottom:540.396000pt;}
.y4f{bottom:544.480000pt;}
.y90{bottom:549.228000pt;}
.y6e{bottom:557.886667pt;}
.yb4{bottom:558.461333pt;}
.y1d{bottom:559.236000pt;}
.yd0{bottom:567.293333pt;}
.y4e{bottom:571.578667pt;}
.y1c{bottom:575.176000pt;}
.y6d{bottom:575.952000pt;}
.y8f{bottom:576.326667pt;}
.yb3{bottom:576.526667pt;}
.ycf{bottom:585.358667pt;}
.yeb{bottom:585.560000pt;}
.y100{bottom:588.060000pt;}
.yf7{bottom:594.592000pt;}
.y1b{bottom:595.897333pt;}
.y4d{bottom:598.677333pt;}
.y6c{bottom:603.050667pt;}
.y8e{bottom:603.424000pt;}
.yb2{bottom:603.625333pt;}
.y1a{bottom:611.838667pt;}
.yce{bottom:612.457333pt;}
.yf6{bottom:612.658667pt;}
.y4c{bottom:616.742667pt;}
.yff{bottom:619.940000pt;}
.y6b{bottom:621.116000pt;}
.yb1{bottom:621.690667pt;}
.y19{bottom:627.778667pt;}
.y8d{bottom:630.522667pt;}
.yea{bottom:630.724000pt;}
.y4b{bottom:634.808000pt;}
.yb0{bottom:639.756000pt;}
.y6a{bottom:648.214667pt;}
.y18{bottom:648.501333pt;}
.ycd{bottom:651.289333pt;}
.y4a{bottom:652.873333pt;}
.y8c{bottom:657.621333pt;}
.yaf{bottom:657.822667pt;}
.y17{bottom:664.441333pt;}
.y69{bottom:666.280000pt;}
.y49{bottom:670.938667pt;}
.y8b{bottom:675.686667pt;}
.yae{bottom:675.888000pt;}
.y16{bottom:680.381333pt;}
.ycc{bottom:683.169333pt;}
.ydf{bottom:684.720000pt;}
.yfe{bottom:684.920000pt;}
.y68{bottom:693.378667pt;}
.y8a{bottom:693.752000pt;}
.yad{bottom:693.953333pt;}
.y3e{bottom:695.016000pt;}
.y15{bottom:701.104000pt;}
.ye9{bottom:702.986667pt;}
.y48{bottom:709.693333pt;}
.y67{bottom:711.444000pt;}
.y89{bottom:711.818667pt;}
.yac{bottom:721.052000pt;}
.y14{bottom:721.825333pt;}
.yde{bottom:723.552000pt;}
.y3d{bottom:727.626667pt;}
.y66{bottom:729.509333pt;}
.yfd{bottom:730.084000pt;}
.y88{bottom:738.916000pt;}
.yab{bottom:739.117333pt;}
.y47{bottom:741.573333pt;}
.y13{bottom:742.548000pt;}
.y65{bottom:747.574667pt;}
.ycb{bottom:748.150667pt;}
.ydd{bottom:755.432000pt;}
.yaa{bottom:757.182667pt;}
.y3c{bottom:760.238667pt;}
.y12{bottom:763.270667pt;}
.y64{bottom:765.640000pt;}
.yca{bottom:766.216000pt;}
.yf5{bottom:775.248000pt;}
.y87{bottom:777.748000pt;}
.y63{bottom:783.706667pt;}
.y11{bottom:783.993333pt;}
.ya9{bottom:784.281333pt;}
.y3b{bottom:792.849333pt;}
.yf4{bottom:793.314667pt;}
.y10{bottom:799.933333pt;}
.y62{bottom:801.772000pt;}
.ya8{bottom:802.346667pt;}
.y46{bottom:806.553333pt;}
.y86{bottom:809.629333pt;}
.yc9{bottom:811.380000pt;}
.yf{bottom:815.873333pt;}
.y61{bottom:819.837333pt;}
.ya7{bottom:820.412000pt;}
.y45{bottom:824.618667pt;}
.y3a{bottom:825.460000pt;}
.yc8{bottom:829.445333pt;}
.ye{bottom:831.813333pt;}
.y60{bottom:837.902667pt;}
.ya6{bottom:838.478667pt;}
.y44{bottom:842.685333pt;}
.yc7{bottom:847.510667pt;}
.y5f{bottom:855.968000pt;}
.ya5{bottom:856.544000pt;}
.y39{bottom:858.070667pt;}
.yd{bottom:859.870667pt;}
.y43{bottom:860.750667pt;}
.y102{bottom:865.576000pt;}
.y85{bottom:874.609333pt;}
.y42{bottom:878.816000pt;}
.y5e{bottom:883.066667pt;}
.ya4{bottom:883.641333pt;}
.yc{bottom:888.624000pt;}
.y38{bottom:890.682667pt;}
.y84{bottom:892.674667pt;}
.y41{bottom:896.881333pt;}
.ya3{bottom:901.708000pt;}
.yb{bottom:904.564000pt;}
.y3{bottom:908.963126pt;}
.y83{bottom:910.740000pt;}
.y40{bottom:914.946667pt;}
.ya2{bottom:919.773333pt;}
.ya{bottom:920.504000pt;}
.y5d{bottom:921.898667pt;}
.y37{bottom:923.293333pt;}
.y2{bottom:929.764251pt;}
.y82{bottom:937.838667pt;}
.y9{bottom:946.016000pt;}
.y3f{bottom:953.778667pt;}
.y36{bottom:955.904000pt;}
.y8{bottom:965.736000pt;}
.y7{bottom:981.676000pt;}
.y6{bottom:997.616000pt;}
.y1{bottom:1001.715398pt;}
.y35{bottom:1009.145333pt;}
.y5{bottom:1013.556000pt;}
.y4{bottom:1038.529333pt;}
.h7{height:36.589368pt;}
.h5{height:40.654836pt;}
.hb{height:44.517042pt;}
.h6{height:47.452262pt;}
.h4{height:48.723536pt;}
.h3{height:50.477223pt;}
.h8{height:53.352268pt;}
.h9{height:70.161884pt;}
.ha{height:71.922283pt;}
.h2{height:110.742899pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:73.658036pt;}
.x2{left:74.856493pt;}
.xa{left:87.757333pt;}
.x10{left:92.721333pt;}
.x3{left:94.488000pt;}
.xb{left:111.954667pt;}
.x11{left:119.757333pt;}
.x1c{left:124.493333pt;}
.x17{left:139.652000pt;}
.xc{left:143.954667pt;}
.x12{left:151.693333pt;}
.x13{left:171.154667pt;}
.x16{left:241.576000pt;}
.x19{left:248.118667pt;}
.x9{left:276.590667pt;}
.x1e{left:288.201333pt;}
.x1b{left:297.210667pt;}
.x15{left:308.124000pt;}
.xf{left:332.340000pt;}
.x4{left:348.538667pt;}
.x7{left:355.600000pt;}
.xe{left:388.396000pt;}
.x8{left:389.648000pt;}
.x18{left:430.098667pt;}
.x6{left:477.897333pt;}
.x1d{left:489.396000pt;}
.x1a{left:505.318667pt;}
.x14{left:552.372000pt;}
.xd{left:590.148000pt;}
.x5{left:743.913333pt;}
}




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