
    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_2d3777472a96852a3526a232.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c538aac949d96aa148463b59.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_9fe2798d70c3a0afee0afbf7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fb58da62bd3425b73baf9e55.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_31b9031ce8779a4f492830ac.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0434ca76f9e396570c0ad98b.woff2')format("woff");}.ff6{font-family:ff6;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;}
.m2{transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.780160px;}
.v3{vertical-align:-17.987760px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.780160px;}
.ls22{letter-spacing:-1.523520px;}
.ls1c{letter-spacing:-1.059840px;}
.ls11{letter-spacing:-0.861120px;}
.ls1d{letter-spacing:-0.728640px;}
.ls25{letter-spacing:-0.463680px;}
.lsf{letter-spacing:-0.331200px;}
.ls21{letter-spacing:-0.311040px;}
.ls1f{letter-spacing:-0.298800px;}
.ls24{letter-spacing:-0.264960px;}
.lse{letter-spacing:-0.132480px;}
.lsd{letter-spacing:-0.119520px;}
.ls1e{letter-spacing:-0.059760px;}
.lsb{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.041832px;}
.ls0{letter-spacing:0.239040px;}
.ls18{letter-spacing:0.256320px;}
.ls10{letter-spacing:0.264960px;}
.ls19{letter-spacing:0.280872px;}
.lsc{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.310752px;}
.ls7{letter-spacing:0.331200px;}
.ls17{letter-spacing:0.377568px;}
.ls23{letter-spacing:0.410688px;}
.lsa{letter-spacing:0.430560px;}
.ls20{letter-spacing:0.536544px;}
.ls1b{letter-spacing:0.752976px;}
.ls4{letter-spacing:3.179520px;}
.ls3{letter-spacing:3.947904px;}
.ls16{letter-spacing:6.094080px;}
.ls6{letter-spacing:8.650944px;}
.ls9{letter-spacing:14.241600px;}
.ls8{letter-spacing:14.970240px;}
.ls2{letter-spacing:20.468160px;}
.ls15{letter-spacing:20.534400px;}
.ls14{letter-spacing:20.574144px;}
.ls13{letter-spacing:21.196800px;}
.ls12{letter-spacing:23.316480px;}
.ls5{letter-spacing:50.011200px;}
.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;}
}
.ws3{word-spacing:-66.240000px;}
.ws31{word-spacing:-21.306240px;}
.ws1c{word-spacing:-18.745920px;}
.ws4{word-spacing:-18.679680px;}
.ws1d{word-spacing:-18.414720px;}
.ws1{word-spacing:-18.282240px;}
.ws2{word-spacing:-18.083520px;}
.ws37{word-spacing:-17.951040px;}
.ws1e{word-spacing:-17.686080px;}
.ws5{word-spacing:-17.553600px;}
.ws29{word-spacing:-17.354880px;}
.ws1f{word-spacing:-16.553520px;}
.ws0{word-spacing:-16.493760px;}
.ws20{word-spacing:-16.314480px;}
.ws3b{word-spacing:-0.264960px;}
.ws7{word-spacing:-0.144000px;}
.ws6{word-spacing:0.000000px;}
.ws8{word-spacing:0.059760px;}
.ws1b{word-spacing:0.119520px;}
.ws10{word-spacing:0.132480px;}
.ws39{word-spacing:0.264960px;}
.wsd{word-spacing:0.331200px;}
.ws9{word-spacing:0.463680px;}
.ws2b{word-spacing:0.662400px;}
.wsf{word-spacing:0.861120px;}
.ws25{word-spacing:1.059840px;}
.wse{word-spacing:1.192320px;}
.ws35{word-spacing:1.523520px;}
.ws2e{word-spacing:1.920960px;}
.ws22{word-spacing:2.583360px;}
.ws19{word-spacing:3.312000px;}
.ws12{word-spacing:4.040640px;}
.ws15{word-spacing:4.769280px;}
.wsc{word-spacing:5.497920px;}
.ws2c{word-spacing:6.226560px;}
.ws24{word-spacing:6.955200px;}
.ws28{word-spacing:7.683840px;}
.wsa{word-spacing:8.346240px;}
.ws16{word-spacing:9.803520px;}
.ws2a{word-spacing:10.532160px;}
.ws33{word-spacing:11.260800px;}
.ws17{word-spacing:11.989440px;}
.ws36{word-spacing:12.718080px;}
.ws18{word-spacing:13.380480px;}
.ws11{word-spacing:14.837760px;}
.ws32{word-spacing:15.566400px;}
.ws30{word-spacing:17.023680px;}
.ws38{word-spacing:17.752320px;}
.ws2f{word-spacing:18.480960px;}
.ws2d{word-spacing:19.872000px;}
.ws21{word-spacing:21.329280px;}
.wsb{word-spacing:22.057920px;}
.ws14{word-spacing:22.786560px;}
.ws13{word-spacing:24.243840px;}
.ws26{word-spacing:29.940480px;}
.ws27{word-spacing:30.139200px;}
.ws34{word-spacing:33.583680px;}
.ws23{word-spacing:35.703360px;}
.ws3a{word-spacing:37.160640px;}
.ws1a{word-spacing:39.346560px;}
._a{margin-left:-20.455992px;}
._5{margin-left:-11.554488px;}
._4{margin-left:-6.995520px;}
._8{margin-left:-5.408568px;}
._7{margin-left:-4.224960px;}
._6{margin-left:-2.358720px;}
._0{margin-left:-1.152000px;}
._1{width:1.272888px;}
._3{width:3.444480px;}
._2{width:5.988096px;}
._c{width:16.280712px;}
._9{width:21.234384px;}
._b{width:24.707520px;}
.fc1{color:rgb(17,84,204);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs4{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:6.840000px;}
.y2c{bottom:68.580000px;}
.y2b{bottom:75.420000px;}
.y2e{bottom:77.400000px;}
.y59{bottom:99.897480px;}
.y2a{bottom:103.680000px;}
.y58{bottom:121.680000px;}
.y29{bottom:130.062960px;}
.y83{bottom:137.424090px;}
.y57{bottom:143.640000px;}
.y28{bottom:149.868720px;}
.y82{bottom:159.200490px;}
.yac{bottom:159.316560px;}
.y56{bottom:160.641210px;}
.y27{bottom:171.645120px;}
.y81{bottom:180.976890px;}
.yab{bottom:181.092960px;}
.y55{bottom:188.362650px;}
.y26{bottom:193.421520px;}
.yaa{bottom:202.869360px;}
.y80{bottom:202.935450px;}
.y54{bottom:207.621930px;}
.y25{bottom:215.380080px;}
.ya9{bottom:224.645760px;}
.y7f{bottom:224.711850px;}
.y53{bottom:226.699050px;}
.y24{bottom:237.156480px;}
.y52{bottom:245.594010px;}
.ya8{bottom:246.422160px;}
.y7e{bottom:246.488250px;}
.y23{bottom:258.932880px;}
.y51{bottom:264.671130px;}
.ya7{bottom:268.380720px;}
.y7d{bottom:268.446810px;}
.y22{bottom:280.709280px;}
.y50{bottom:286.629690px;}
.ya6{bottom:290.339280px;}
.y21{bottom:302.667840px;}
.y7c{bottom:304.994730px;}
.y4f{bottom:308.588250px;}
.y20{bottom:324.444240px;}
.ya5{bottom:326.705040px;}
.y7b{bottom:326.953290px;}
.y4e{bottom:330.546810px;}
.y1f{bottom:346.220640px;}
.y7a{bottom:348.911850px;}
.ya4{bottom:358.020000px;}
.y4d{bottom:366.912570px;}
.y1e{bottom:377.717760px;}
.ya3{bottom:379.842480px;}
.y79{bottom:385.459770px;}
.y4c{bottom:394.816170px;}
.ya2{bottom:401.983200px;}
.y78{bottom:407.418330px;}
.y1d{bottom:411.732000px;}
.y4b{bottom:416.774730px;}
.ya1{bottom:423.941760px;}
.y77{bottom:429.376890px;}
.y1c{bottom:433.508400px;}
.y4a{bottom:438.551130px;}
.ya0{bottom:445.718160px;}
.y76{bottom:451.335450px;}
.y1b{bottom:455.466960px;}
.y49{bottom:460.327530px;}
.y9f{bottom:467.494560px;}
.y75{bottom:473.111850px;}
.y1a{bottom:477.243360px;}
.y48{bottom:482.103930px;}
.y74{bottom:494.888250px;}
.y9e{bottom:504.042480px;}
.y19{bottom:513.956880px;}
.y73{bottom:516.664650px;}
.y47{bottom:518.817450px;}
.y9d{bottom:526.001040px;}
.y18{bottom:535.733280px;}
.y46{bottom:540.776010px;}
.y9c{bottom:547.959600px;}
.y72{bottom:553.212570px;}
.y17{bottom:557.509680px;}
.y45{bottom:562.552410px;}
.y9b{bottom:569.736000px;}
.y71{bottom:575.171130px;}
.y16{bottom:579.468240px;}
.y44{bottom:584.328810px;}
.y9a{bottom:591.694560px;}
.y70{bottom:597.129690px;}
.y15{bottom:601.244640px;}
.y43{bottom:606.105210px;}
.y99{bottom:613.288800px;}
.y14{bottom:623.385360px;}
.y6f{bottom:633.843210px;}
.y98{bottom:635.247360px;}
.y42{bottom:642.470970px;}
.y13{bottom:645.343920px;}
.y6e{bottom:655.619610px;}
.y97{bottom:657.205920px;}
.y12{bottom:667.484640px;}
.y6d{bottom:677.396010px;}
.y96{bottom:678.982320px;}
.y41{bottom:679.548810px;}
.y11{bottom:686.379600px;}
.y6c{bottom:699.172410px;}
.y95{bottom:700.758720px;}
.y40{bottom:701.325210px;}
.y10{bottom:705.821040px;}
.y6b{bottom:721.130970px;}
.y94{bottom:722.535120px;}
.y3f{bottom:723.283770px;}
.yf{bottom:727.961760px;}
.y6a{bottom:742.907370px;}
.y93{bottom:744.311520px;}
.y3e{bottom:745.060170px;}
.ye{bottom:749.738160px;}
.y69{bottom:764.683770px;}
.y3d{bottom:766.836570px;}
.yd{bottom:771.514560px;}
.y92{bottom:781.025040px;}
.y68{bottom:786.460170px;}
.y3c{bottom:788.612970px;}
.yc{bottom:793.108800px;}
.yb9{bottom:808.920000px;}
.y91{bottom:812.340000px;}
.y67{bottom:823.173690px;}
.yb{bottom:829.822320px;}
.y3b{bottom:831.089370px;}
.yb8{bottom:833.623050px;}
.y90{bottom:834.152970px;}
.y66{bottom:844.950090px;}
.ya{bottom:851.416560px;}
.yb7{bottom:852.518010px;}
.y3a{bottom:852.865770px;}
.y8f{bottom:856.475850px;}
.y65{bottom:866.726490px;}
.y39{bottom:874.642170px;}
.y8e{bottom:878.434410px;}
.y9{bottom:878.955840px;}
.yb6{bottom:884.015130px;}
.y64{bottom:888.502890px;}
.y38{bottom:896.418570px;}
.yb5{bottom:903.092250px;}
.y8d{bottom:909.749370px;}
.y63{bottom:910.279290px;}
.y8{bottom:915.851520px;}
.y37{bottom:918.194970px;}
.yb4{bottom:921.987210px;}
.y8c{bottom:928.644330px;}
.y62{bottom:929.356410px;}
.y7{bottom:937.627920px;}
.y36{bottom:939.971370px;}
.yb3{bottom:943.945770px;}
.y61{bottom:948.797850px;}
.y8b{bottom:951.331530px;}
.y6{bottom:959.586480px;}
.yb2{bottom:965.722170px;}
.y60{bottom:970.756410px;}
.y8a{bottom:973.107930px;}
.y35{bottom:976.684890px;}
.y5{bottom:981.362880px;}
.yb1{bottom:987.680730px;}
.y89{bottom:994.884330px;}
.y34{bottom:998.643450px;}
.y5f{bottom:1002.435690px;}
.yb0{bottom:1009.457130px;}
.y4{bottom:1012.860000px;}
.y88{bottom:1016.660730px;}
.y33{bottom:1020.419850px;}
.y5e{bottom:1021.330650px;}
.yaf{bottom:1031.233530px;}
.y5d{bottom:1043.653530px;}
.y3{bottom:1049.580000px;}
.yae{bottom:1053.009930px;}
.y87{bottom:1053.374250px;}
.y32{bottom:1056.967770px;}
.y5c{bottom:1065.429930px;}
.yad{bottom:1074.968490px;}
.y86{bottom:1075.150650px;}
.y2{bottom:1076.400000px;}
.y5b{bottom:1087.206330px;}
.y31{bottom:1093.863450px;}
.y85{bottom:1096.927050px;}
.y1{bottom:1107.540000px;}
.y5a{bottom:1109.164890px;}
.y84{bottom:1118.703450px;}
.y30{bottom:1118.885610px;}
.y2f{bottom:1140.479850px;}
.h6{height:25.560000px;}
.h3{height:52.417969px;}
.h4{height:53.573906px;}
.h2{height:59.383125px;}
.h7{height:69.710625px;}
.h8{height:80.683594px;}
.h5{height:83.163285px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:15.120000px;}
.w1{width:893.250000px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.xc{left:12.240000px;}
.x8{left:99.018000px;}
.xd{left:100.440000px;}
.x5{left:107.993520px;}
.x6{left:134.986320px;}
.x11{left:140.400000px;}
.x1{left:159.660000px;}
.x7{left:162.012240px;}
.x2{left:215.460000px;}
.x3{left:281.520000px;}
.xf{left:299.607120px;}
.xe{left:357.120000px;}
.x10{left:360.672480px;}
.x4{left:377.640000px;}
.x9{left:401.387040px;}
.x12{left:412.205040px;}
.xb{left:773.100000px;}
.xa{left:776.160000px;}
@media print{
.v2{vertical-align:-21.137920pt;}
.v3{vertical-align:-15.989120pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.137920pt;}
.ls22{letter-spacing:-1.354240pt;}
.ls1c{letter-spacing:-0.942080pt;}
.ls11{letter-spacing:-0.765440pt;}
.ls1d{letter-spacing:-0.647680pt;}
.ls25{letter-spacing:-0.412160pt;}
.lsf{letter-spacing:-0.294400pt;}
.ls21{letter-spacing:-0.276480pt;}
.ls1f{letter-spacing:-0.265600pt;}
.ls24{letter-spacing:-0.235520pt;}
.lse{letter-spacing:-0.117760pt;}
.lsd{letter-spacing:-0.106240pt;}
.ls1e{letter-spacing:-0.053120pt;}
.lsb{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.037184pt;}
.ls0{letter-spacing:0.212480pt;}
.ls18{letter-spacing:0.227840pt;}
.ls10{letter-spacing:0.235520pt;}
.ls19{letter-spacing:0.249664pt;}
.lsc{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.276224pt;}
.ls7{letter-spacing:0.294400pt;}
.ls17{letter-spacing:0.335616pt;}
.ls23{letter-spacing:0.365056pt;}
.lsa{letter-spacing:0.382720pt;}
.ls20{letter-spacing:0.476928pt;}
.ls1b{letter-spacing:0.669312pt;}
.ls4{letter-spacing:2.826240pt;}
.ls3{letter-spacing:3.509248pt;}
.ls16{letter-spacing:5.416960pt;}
.ls6{letter-spacing:7.689728pt;}
.ls9{letter-spacing:12.659200pt;}
.ls8{letter-spacing:13.306880pt;}
.ls2{letter-spacing:18.193920pt;}
.ls15{letter-spacing:18.252800pt;}
.ls14{letter-spacing:18.288128pt;}
.ls13{letter-spacing:18.841600pt;}
.ls12{letter-spacing:20.725760pt;}
.ls5{letter-spacing:44.454400pt;}
.ws3{word-spacing:-58.880000pt;}
.ws31{word-spacing:-18.938880pt;}
.ws1c{word-spacing:-16.663040pt;}
.ws4{word-spacing:-16.604160pt;}
.ws1d{word-spacing:-16.368640pt;}
.ws1{word-spacing:-16.250880pt;}
.ws2{word-spacing:-16.074240pt;}
.ws37{word-spacing:-15.956480pt;}
.ws1e{word-spacing:-15.720960pt;}
.ws5{word-spacing:-15.603200pt;}
.ws29{word-spacing:-15.426560pt;}
.ws1f{word-spacing:-14.714240pt;}
.ws0{word-spacing:-14.661120pt;}
.ws20{word-spacing:-14.501760pt;}
.ws3b{word-spacing:-0.235520pt;}
.ws7{word-spacing:-0.128000pt;}
.ws6{word-spacing:0.000000pt;}
.ws8{word-spacing:0.053120pt;}
.ws1b{word-spacing:0.106240pt;}
.ws10{word-spacing:0.117760pt;}
.ws39{word-spacing:0.235520pt;}
.wsd{word-spacing:0.294400pt;}
.ws9{word-spacing:0.412160pt;}
.ws2b{word-spacing:0.588800pt;}
.wsf{word-spacing:0.765440pt;}
.ws25{word-spacing:0.942080pt;}
.wse{word-spacing:1.059840pt;}
.ws35{word-spacing:1.354240pt;}
.ws2e{word-spacing:1.707520pt;}
.ws22{word-spacing:2.296320pt;}
.ws19{word-spacing:2.944000pt;}
.ws12{word-spacing:3.591680pt;}
.ws15{word-spacing:4.239360pt;}
.wsc{word-spacing:4.887040pt;}
.ws2c{word-spacing:5.534720pt;}
.ws24{word-spacing:6.182400pt;}
.ws28{word-spacing:6.830080pt;}
.wsa{word-spacing:7.418880pt;}
.ws16{word-spacing:8.714240pt;}
.ws2a{word-spacing:9.361920pt;}
.ws33{word-spacing:10.009600pt;}
.ws17{word-spacing:10.657280pt;}
.ws36{word-spacing:11.304960pt;}
.ws18{word-spacing:11.893760pt;}
.ws11{word-spacing:13.189120pt;}
.ws32{word-spacing:13.836800pt;}
.ws30{word-spacing:15.132160pt;}
.ws38{word-spacing:15.779840pt;}
.ws2f{word-spacing:16.427520pt;}
.ws2d{word-spacing:17.664000pt;}
.ws21{word-spacing:18.959360pt;}
.wsb{word-spacing:19.607040pt;}
.ws14{word-spacing:20.254720pt;}
.ws13{word-spacing:21.550080pt;}
.ws26{word-spacing:26.613760pt;}
.ws27{word-spacing:26.790400pt;}
.ws34{word-spacing:29.852160pt;}
.ws23{word-spacing:31.736320pt;}
.ws3a{word-spacing:33.031680pt;}
.ws1a{word-spacing:34.974720pt;}
._a{margin-left:-18.183104pt;}
._5{margin-left:-10.270656pt;}
._4{margin-left:-6.218240pt;}
._8{margin-left:-4.807616pt;}
._7{margin-left:-3.755520pt;}
._6{margin-left:-2.096640pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.131456pt;}
._3{width:3.061760pt;}
._2{width:5.322752pt;}
._c{width:14.471744pt;}
._9{width:18.875008pt;}
._b{width:21.962240pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs4{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:6.080000pt;}
.y2c{bottom:60.960000pt;}
.y2b{bottom:67.040000pt;}
.y2e{bottom:68.800000pt;}
.y59{bottom:88.797760pt;}
.y2a{bottom:92.160000pt;}
.y58{bottom:108.160000pt;}
.y29{bottom:115.611520pt;}
.y83{bottom:122.154747pt;}
.y57{bottom:127.680000pt;}
.y28{bottom:133.216640pt;}
.y82{bottom:141.511547pt;}
.yac{bottom:141.614720pt;}
.y56{bottom:142.792187pt;}
.y27{bottom:152.573440pt;}
.y81{bottom:160.868347pt;}
.yab{bottom:160.971520pt;}
.y55{bottom:167.433467pt;}
.y26{bottom:171.930240pt;}
.yaa{bottom:180.328320pt;}
.y80{bottom:180.387067pt;}
.y54{bottom:184.552827pt;}
.y25{bottom:191.448960pt;}
.ya9{bottom:199.685120pt;}
.y7f{bottom:199.743867pt;}
.y53{bottom:201.510267pt;}
.y24{bottom:210.805760pt;}
.y52{bottom:218.305787pt;}
.ya8{bottom:219.041920pt;}
.y7e{bottom:219.100667pt;}
.y23{bottom:230.162560pt;}
.y51{bottom:235.263227pt;}
.ya7{bottom:238.560640pt;}
.y7d{bottom:238.619387pt;}
.y22{bottom:249.519360pt;}
.y50{bottom:254.781947pt;}
.ya6{bottom:258.079360pt;}
.y21{bottom:269.038080pt;}
.y7c{bottom:271.106427pt;}
.y4f{bottom:274.300667pt;}
.y20{bottom:288.394880pt;}
.ya5{bottom:290.404480pt;}
.y7b{bottom:290.625147pt;}
.y4e{bottom:293.819387pt;}
.y1f{bottom:307.751680pt;}
.y7a{bottom:310.143867pt;}
.ya4{bottom:318.240000pt;}
.y4d{bottom:326.144507pt;}
.y1e{bottom:335.749120pt;}
.ya3{bottom:337.637760pt;}
.y79{bottom:342.630907pt;}
.y4c{bottom:350.947707pt;}
.ya2{bottom:357.318400pt;}
.y78{bottom:362.149627pt;}
.y1d{bottom:365.984000pt;}
.y4b{bottom:370.466427pt;}
.ya1{bottom:376.837120pt;}
.y77{bottom:381.668347pt;}
.y1c{bottom:385.340800pt;}
.y4a{bottom:389.823227pt;}
.ya0{bottom:396.193920pt;}
.y76{bottom:401.187067pt;}
.y1b{bottom:404.859520pt;}
.y49{bottom:409.180027pt;}
.y9f{bottom:415.550720pt;}
.y75{bottom:420.543867pt;}
.y1a{bottom:424.216320pt;}
.y48{bottom:428.536827pt;}
.y74{bottom:439.900667pt;}
.y9e{bottom:448.037760pt;}
.y19{bottom:456.850560pt;}
.y73{bottom:459.257467pt;}
.y47{bottom:461.171067pt;}
.y9d{bottom:467.556480pt;}
.y18{bottom:476.207360pt;}
.y46{bottom:480.689787pt;}
.y9c{bottom:487.075200pt;}
.y72{bottom:491.744507pt;}
.y17{bottom:495.564160pt;}
.y45{bottom:500.046587pt;}
.y9b{bottom:506.432000pt;}
.y71{bottom:511.263227pt;}
.y16{bottom:515.082880pt;}
.y44{bottom:519.403387pt;}
.y9a{bottom:525.950720pt;}
.y70{bottom:530.781947pt;}
.y15{bottom:534.439680pt;}
.y43{bottom:538.760187pt;}
.y99{bottom:545.145600pt;}
.y14{bottom:554.120320pt;}
.y6f{bottom:563.416187pt;}
.y98{bottom:564.664320pt;}
.y42{bottom:571.085307pt;}
.y13{bottom:573.639040pt;}
.y6e{bottom:582.772987pt;}
.y97{bottom:584.183040pt;}
.y12{bottom:593.319680pt;}
.y6d{bottom:602.129787pt;}
.y96{bottom:603.539840pt;}
.y41{bottom:604.043387pt;}
.y11{bottom:610.115200pt;}
.y6c{bottom:621.486587pt;}
.y95{bottom:622.896640pt;}
.y40{bottom:623.400187pt;}
.y10{bottom:627.396480pt;}
.y6b{bottom:641.005307pt;}
.y94{bottom:642.253440pt;}
.y3f{bottom:642.918907pt;}
.yf{bottom:647.077120pt;}
.y6a{bottom:660.362107pt;}
.y93{bottom:661.610240pt;}
.y3e{bottom:662.275707pt;}
.ye{bottom:666.433920pt;}
.y69{bottom:679.718907pt;}
.y3d{bottom:681.632507pt;}
.yd{bottom:685.790720pt;}
.y92{bottom:694.244480pt;}
.y68{bottom:699.075707pt;}
.y3c{bottom:700.989307pt;}
.yc{bottom:704.985600pt;}
.yb9{bottom:719.040000pt;}
.y91{bottom:722.080000pt;}
.y67{bottom:731.709947pt;}
.yb{bottom:737.619840pt;}
.y3b{bottom:738.746107pt;}
.yb8{bottom:740.998267pt;}
.y90{bottom:741.469307pt;}
.y66{bottom:751.066747pt;}
.ya{bottom:756.814720pt;}
.yb7{bottom:757.793787pt;}
.y3a{bottom:758.102907pt;}
.y8f{bottom:761.311867pt;}
.y65{bottom:770.423547pt;}
.y39{bottom:777.459707pt;}
.y8e{bottom:780.830587pt;}
.y9{bottom:781.294080pt;}
.yb6{bottom:785.791227pt;}
.y64{bottom:789.780347pt;}
.y38{bottom:796.816507pt;}
.yb5{bottom:802.748667pt;}
.y8d{bottom:808.666107pt;}
.y63{bottom:809.137147pt;}
.y8{bottom:814.090240pt;}
.y37{bottom:816.173307pt;}
.yb4{bottom:819.544187pt;}
.y8c{bottom:825.461627pt;}
.y62{bottom:826.094587pt;}
.y7{bottom:833.447040pt;}
.y36{bottom:835.530107pt;}
.yb3{bottom:839.062907pt;}
.y61{bottom:843.375867pt;}
.y8b{bottom:845.628027pt;}
.y6{bottom:852.965760pt;}
.yb2{bottom:858.419707pt;}
.y60{bottom:862.894587pt;}
.y8a{bottom:864.984827pt;}
.y35{bottom:868.164347pt;}
.y5{bottom:872.322560pt;}
.yb1{bottom:877.938427pt;}
.y89{bottom:884.341627pt;}
.y34{bottom:887.683067pt;}
.y5f{bottom:891.053947pt;}
.yb0{bottom:897.295227pt;}
.y4{bottom:900.320000pt;}
.y88{bottom:903.698427pt;}
.y33{bottom:907.039867pt;}
.y5e{bottom:907.849467pt;}
.yaf{bottom:916.652027pt;}
.y5d{bottom:927.692027pt;}
.y3{bottom:932.960000pt;}
.yae{bottom:936.008827pt;}
.y87{bottom:936.332667pt;}
.y32{bottom:939.526907pt;}
.y5c{bottom:947.048827pt;}
.yad{bottom:955.527547pt;}
.y86{bottom:955.689467pt;}
.y2{bottom:956.800000pt;}
.y5b{bottom:966.405627pt;}
.y31{bottom:972.323067pt;}
.y85{bottom:975.046267pt;}
.y1{bottom:984.480000pt;}
.y5a{bottom:985.924347pt;}
.y84{bottom:994.403067pt;}
.y30{bottom:994.564987pt;}
.y2f{bottom:1013.759867pt;}
.h6{height:22.720000pt;}
.h3{height:46.593750pt;}
.h4{height:47.621250pt;}
.h2{height:52.785000pt;}
.h7{height:61.965000pt;}
.h8{height:71.718750pt;}
.h5{height:73.922920pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:13.440000pt;}
.w1{width:794.000000pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.xc{left:10.880000pt;}
.x8{left:88.016000pt;}
.xd{left:89.280000pt;}
.x5{left:95.994240pt;}
.x6{left:119.987840pt;}
.x11{left:124.800000pt;}
.x1{left:141.920000pt;}
.x7{left:144.010880pt;}
.x2{left:191.520000pt;}
.x3{left:250.240000pt;}
.xf{left:266.317440pt;}
.xe{left:317.440000pt;}
.x10{left:320.597760pt;}
.x4{left:335.680000pt;}
.x9{left:356.788480pt;}
.x12{left:366.404480pt;}
.xb{left:687.200000pt;}
.xa{left:689.920000pt;}
}




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