
    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_2fe883db04ff1a428238ba8a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.080566;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_dd32707c8042b57dedecede0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_25f0cec8addf0efcc9d3124a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.692871;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_04bc33ecfb0f0d752fdce125.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.097168;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_9cd0f35c0a1ea78f1e35b5bb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_660cb3aad31c62ab19d44bdb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_3be47b17d1be2cb890bfde63.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.838379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_20c58577154431a5bb928659.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.077148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_520adbc84f13075850892aa4.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-0.480960px;}
.ls6{letter-spacing:-0.420840px;}
.lse{letter-spacing:-0.360720px;}
.lsf{letter-spacing:-0.300600px;}
.ls8{letter-spacing:-0.240480px;}
.ls7{letter-spacing:-0.180360px;}
.ls5{letter-spacing:-0.120240px;}
.ls4{letter-spacing:-0.060120px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.060120px;}
.ls10{letter-spacing:0.084168px;}
.lsc{letter-spacing:0.096192px;}
.ls13{letter-spacing:0.114228px;}
.ls1{letter-spacing:0.120240px;}
.ls9{letter-spacing:0.150300px;}
.ls0{letter-spacing:0.180360px;}
.ls17{letter-spacing:0.420840px;}
.ls1a{letter-spacing:2.224440px;}
.ls14{letter-spacing:2.945880px;}
.ls19{letter-spacing:6.547068px;}
.lsb{letter-spacing:11.242440px;}
.ls11{letter-spacing:15.750000px;}
.ls18{letter-spacing:19.539000px;}
.ls1b{letter-spacing:21.703320px;}
.ls15{letter-spacing:28.196280px;}
.ls12{letter-spacing:68.957640px;}
.lsa{letter-spacing:182.969208px;}
.lsd{letter-spacing:848.972880px;}
.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:-15.210360px;}
.wsb{word-spacing:-15.150240px;}
.ws12{word-spacing:-15.090120px;}
.wsc{word-spacing:-15.030000px;}
.ws4{word-spacing:-14.969880px;}
.ws1{word-spacing:-14.909760px;}
.ws6{word-spacing:-14.849640px;}
.ws5{word-spacing:-14.789520px;}
.ws11{word-spacing:-14.729400px;}
.ws14{word-spacing:-14.669280px;}
.ws3{word-spacing:-14.609160px;}
.ws16{word-spacing:-2.224440px;}
.ws19{word-spacing:-0.601200px;}
.ws18{word-spacing:-0.300600px;}
.ws17{word-spacing:-0.240480px;}
.wsd{word-spacing:-0.180360px;}
.wsf{word-spacing:-0.120240px;}
.ws0{word-spacing:-0.060120px;}
.ws7{word-spacing:0.000000px;}
.ws8{word-spacing:0.060120px;}
.ws9{word-spacing:0.120240px;}
.wsa{word-spacing:0.180360px;}
.ws13{word-spacing:0.240480px;}
.ws10{word-spacing:0.300600px;}
.wse{word-spacing:0.360720px;}
.ws15{word-spacing:4.509000px;}
._30{margin-left:-4.052088px;}
._23{margin-left:-2.837664px;}
._0{margin-left:-1.166328px;}
._1{width:1.004004px;}
._2d{width:2.014020px;}
._10{width:3.096180px;}
._f{width:4.569120px;}
._2a{width:5.783544px;}
._19{width:6.847668px;}
._6{width:7.941852px;}
._16{width:9.541044px;}
._5{width:10.965888px;}
._4{width:12.132216px;}
._27{width:13.484916px;}
._24{width:16.557048px;}
._b{width:17.915760px;}
._1b{width:18.985896px;}
._a{width:20.122164px;}
._3{width:21.150216px;}
._20{width:23.037984px;}
._22{width:24.312528px;}
._7{width:25.448796px;}
._21{width:27.432756px;}
._1f{width:28.707300px;}
._1e{width:29.711304px;}
._2b{width:30.931740px;}
._28{width:32.158188px;}
._18{width:34.232328px;}
._1a{width:35.428716px;}
._2c{width:38.458764px;}
._29{width:43.057944px;}
._2e{width:44.200224px;}
._2f{width:45.306432px;}
._26{width:50.013828px;}
._9{width:53.386560px;}
._8{width:54.823428px;}
._1d{width:58.148064px;}
._1c{width:59.302368px;}
._e{width:62.530812px;}
._d{width:63.534816px;}
._14{width:73.683072px;}
._25{width:77.290272px;}
._c{width:79.965612px;}
._17{width:84.462588px;}
._12{width:93.967560px;}
._13{width:96.979572px;}
._31{width:146.927268px;}
._11{width:175.748796px;}
._15{width:846.000000px;}
._2{width:849.315240px;}
.fc6{color:rgb(5,99,193);}
.fc5{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc4{color:rgb(28,28,28);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:47.880000px;}
.fs0{font-size:60.120000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:3.240000px;}
.y55{bottom:37.710000px;}
.y63{bottom:54.990000px;}
.y1f{bottom:57.060000px;}
.y1e{bottom:77.760000px;}
.y93{bottom:103.847940px;}
.yc4{bottom:103.941000px;}
.y6d{bottom:113.940000px;}
.y1d{bottom:114.417900px;}
.yb8{bottom:121.057020px;}
.y92{bottom:121.132440px;}
.y46{bottom:121.225500px;}
.y6c{bottom:131.490000px;}
.y1c{bottom:131.612220px;}
.yb7{bottom:138.341520px;}
.y91{bottom:138.416940px;}
.y45{bottom:138.510000px;}
.y1b{bottom:148.896720px;}
.y6b{bottom:151.996680px;}
.yb6{bottom:155.535840px;}
.y90{bottom:155.611260px;}
.y44{bottom:155.637900px;}
.yc3{bottom:155.691000px;}
.y1a{bottom:166.181220px;}
.y6a{bottom:169.191000px;}
.yb5{bottom:172.820340px;}
.y8f{bottom:172.895760px;}
.y43{bottom:172.922400px;}
.yc2{bottom:172.975500px;}
.y19{bottom:183.375540px;}
.y69{bottom:186.475500px;}
.yb4{bottom:190.104840px;}
.y8e{bottom:190.180260px;}
.y42{bottom:190.206900px;}
.yc1{bottom:190.260000px;}
.y18{bottom:200.660040px;}
.y68{bottom:203.760000px;}
.yb3{bottom:207.299160px;}
.y8d{bottom:207.374580px;}
.y41{bottom:207.401220px;}
.yc0{bottom:207.441000px;}
.y17{bottom:217.944540px;}
.y67{bottom:220.945500px;}
.yb2{bottom:224.583660px;}
.y8c{bottom:224.659080px;}
.y40{bottom:224.685720px;}
.ybf{bottom:224.725500px;}
.y16{bottom:235.138860px;}
.y66{bottom:238.230000px;}
.yb1{bottom:241.868160px;}
.y8b{bottom:241.943580px;}
.y3f{bottom:241.970220px;}
.ybe{bottom:242.010000px;}
.y15{bottom:252.423360px;}
.y62{bottom:257.490000px;}
.yb0{bottom:259.062480px;}
.y8a{bottom:259.137900px;}
.y3e{bottom:259.164540px;}
.ybd{bottom:259.182180px;}
.y14{bottom:269.707860px;}
.yaf{bottom:276.346980px;}
.y89{bottom:276.422400px;}
.y3d{bottom:276.449040px;}
.ybc{bottom:276.466680px;}
.y65{bottom:277.920000px;}
.y13{bottom:286.902180px;}
.yae{bottom:293.541300px;}
.y88{bottom:293.616720px;}
.y3c{bottom:293.643360px;}
.ybb{bottom:293.661000px;}
.y64{bottom:295.200000px;}
.y12{bottom:304.186680px;}
.yad{bottom:310.825800px;}
.y87{bottom:310.901220px;}
.yd2{bottom:310.905540px;}
.y3b{bottom:310.927860px;}
.yba{bottom:310.945500px;}
.y11{bottom:321.471180px;}
.y61{bottom:327.240000px;}
.yac{bottom:328.110300px;}
.y86{bottom:328.185720px;}
.yd1{bottom:328.190040px;}
.y3a{bottom:328.212360px;}
.yb9{bottom:328.230000px;}
.y10{bottom:338.665500px;}
.yab{bottom:345.304620px;}
.y85{bottom:345.380040px;}
.yd0{bottom:345.384360px;}
.y39{bottom:345.406680px;}
.y60{bottom:347.670000px;}
.yf{bottom:355.950000px;}
.yaa{bottom:362.589120px;}
.y84{bottom:362.664540px;}
.ycf{bottom:362.668860px;}
.y38{bottom:362.691180px;}
.y5f{bottom:364.950000px;}
.ye{bottom:373.230000px;}
.ya9{bottom:379.873620px;}
.y83{bottom:379.949040px;}
.yce{bottom:379.953360px;}
.y37{bottom:379.975680px;}
.y5e{bottom:384.210000px;}
.yd{bottom:390.420000px;}
.ya8{bottom:397.067940px;}
.y82{bottom:397.143360px;}
.ycd{bottom:397.147680px;}
.y36{bottom:397.170000px;}
.y5d{bottom:404.725680px;}
.yc{bottom:407.700000px;}
.ya7{bottom:414.352440px;}
.y81{bottom:414.427860px;}
.ycc{bottom:414.432180px;}
.y35{bottom:414.450000px;}
.y5c{bottom:421.920000px;}
.yb{bottom:424.890000px;}
.ya6{bottom:431.636940px;}
.y34{bottom:431.685720px;}
.y80{bottom:431.712360px;}
.ycb{bottom:431.716680px;}
.y5b{bottom:441.180000px;}
.ya{bottom:442.161180px;}
.ya5{bottom:448.831260px;}
.y33{bottom:448.880040px;}
.y7f{bottom:448.906680px;}
.yca{bottom:448.911000px;}
.y9{bottom:459.445680px;}
.y5a{bottom:461.700000px;}
.ya4{bottom:466.115760px;}
.y32{bottom:466.164540px;}
.y7e{bottom:466.191180px;}
.yc9{bottom:466.195500px;}
.y8{bottom:476.640000px;}
.y59{bottom:478.980000px;}
.ya3{bottom:483.400260px;}
.y31{bottom:483.449040px;}
.y7d{bottom:483.475680px;}
.yc8{bottom:483.480000px;}
.y7{bottom:493.920000px;}
.y58{bottom:496.170000px;}
.ya2{bottom:500.594580px;}
.y30{bottom:500.643360px;}
.y7c{bottom:500.670000px;}
.y6{bottom:511.200000px;}
.y57{bottom:513.450000px;}
.ya1{bottom:517.879080px;}
.y2f{bottom:517.927860px;}
.y7b{bottom:517.950000px;}
.y5{bottom:528.390000px;}
.y54{bottom:532.710000px;}
.ya0{bottom:535.163580px;}
.y2e{bottom:535.212360px;}
.y7a{bottom:535.230000px;}
.y4{bottom:542.423070px;}
.y9f{bottom:552.357900px;}
.y79{bottom:552.402180px;}
.y2d{bottom:552.406680px;}
.yc7{bottom:552.420000px;}
.y56{bottom:553.230000px;}
.y9e{bottom:569.642400px;}
.y78{bottom:569.686680px;}
.y2c{bottom:569.691180px;}
.yc6{bottom:569.700000px;}
.y53{bottom:585.180000px;}
.y9d{bottom:586.926900px;}
.y77{bottom:586.971180px;}
.y2b{bottom:586.975680px;}
.yc5{bottom:586.980000px;}
.y9c{bottom:604.121220px;}
.y76{bottom:604.165500px;}
.y2a{bottom:604.170000px;}
.y52{bottom:605.700000px;}
.y9b{bottom:621.405720px;}
.y29{bottom:621.445680px;}
.y75{bottom:621.450000px;}
.y51{bottom:622.890000px;}
.y9a{bottom:638.600040px;}
.y28{bottom:638.640000px;}
.y50{bottom:642.150000px;}
.y99{bottom:655.884540px;}
.y27{bottom:655.888860px;}
.y74{bottom:655.920000px;}
.y4f{bottom:662.670000px;}
.y98{bottom:673.169040px;}
.y26{bottom:673.173360px;}
.y73{bottom:673.200000px;}
.y4e{bottom:679.950000px;}
.y97{bottom:690.363360px;}
.y25{bottom:690.367680px;}
.y72{bottom:690.390000px;}
.y4d{bottom:697.140000px;}
.y96{bottom:707.647860px;}
.y24{bottom:707.652180px;}
.y71{bottom:707.670000px;}
.y4c{bottom:714.420000px;}
.y95{bottom:724.932360px;}
.y23{bottom:724.936680px;}
.y70{bottom:724.950000px;}
.y4a{bottom:733.680000px;}
.y94{bottom:742.126680px;}
.y22{bottom:742.131000px;}
.y6f{bottom:742.140000px;}
.y49{bottom:754.195680px;}
.y3{bottom:759.411180px;}
.y21{bottom:759.415500px;}
.y6e{bottom:759.420000px;}
.y48{bottom:771.390000px;}
.y2{bottom:776.695680px;}
.y20{bottom:776.700000px;}
.y47{bottom:788.670000px;}
.y1{bottom:793.890000px;}
.h3{height:41.743477px;}
.h5{height:49.992188px;}
.ha{height:51.750000px;}
.h6{height:51.783047px;}
.h2{height:51.988535px;}
.h4{height:52.986621px;}
.h9{height:56.248500px;}
.hc{height:56.250000px;}
.hd{height:68.940000px;}
.h7{height:73.528500px;}
.h8{height:90.808500px;}
.hb{height:90.810000px;}
.he{height:125.190000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w3{width:54.090000px;}
.w2{width:424.080000px;}
.w1{width:629.250000px;}
.w0{width:629.370000px;}
.x0{left:0.000000px;}
.x17{left:7.650000px;}
.x1a{left:29.070000px;}
.x12{left:42.482430px;}
.xe{left:63.810000px;}
.x1d{left:64.984770px;}
.x16{left:72.270000px;}
.x1c{left:85.140000px;}
.x2{left:86.481000px;}
.x5{left:102.870000px;}
.x14{left:106.380000px;}
.x23{left:107.730000px;}
.x1f{left:111.240000px;}
.x1{left:136.080000px;}
.x8{left:144.360000px;}
.x6{left:174.600000px;}
.x9{left:213.473070px;}
.x20{left:227.250000px;}
.x7{left:228.690000px;}
.x1e{left:234.628380px;}
.x15{left:255.240000px;}
.x22{left:258.472890px;}
.xb{left:292.861530px;}
.xc{left:299.700180px;}
.xa{left:304.013790px;}
.xf{left:310.050000px;}
.x3{left:314.621370px;}
.x10{left:336.427650px;}
.x13{left:373.860000px;}
.x4{left:426.219120px;}
.x19{left:489.420000px;}
.x21{left:517.230000px;}
.x18{left:518.490000px;}
.x1b{left:526.230000px;}
.xd{left:535.230000px;}
.x11{left:544.232430px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-0.427520pt;}
.ls6{letter-spacing:-0.374080pt;}
.lse{letter-spacing:-0.320640pt;}
.lsf{letter-spacing:-0.267200pt;}
.ls8{letter-spacing:-0.213760pt;}
.ls7{letter-spacing:-0.160320pt;}
.ls5{letter-spacing:-0.106880pt;}
.ls4{letter-spacing:-0.053440pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.053440pt;}
.ls10{letter-spacing:0.074816pt;}
.lsc{letter-spacing:0.085504pt;}
.ls13{letter-spacing:0.101536pt;}
.ls1{letter-spacing:0.106880pt;}
.ls9{letter-spacing:0.133600pt;}
.ls0{letter-spacing:0.160320pt;}
.ls17{letter-spacing:0.374080pt;}
.ls1a{letter-spacing:1.977280pt;}
.ls14{letter-spacing:2.618560pt;}
.ls19{letter-spacing:5.819616pt;}
.lsb{letter-spacing:9.993280pt;}
.ls11{letter-spacing:14.000000pt;}
.ls18{letter-spacing:17.368000pt;}
.ls1b{letter-spacing:19.291840pt;}
.ls15{letter-spacing:25.063360pt;}
.ls12{letter-spacing:61.295680pt;}
.lsa{letter-spacing:162.639296pt;}
.lsd{letter-spacing:754.642560pt;}
.ws2{word-spacing:-13.520320pt;}
.wsb{word-spacing:-13.466880pt;}
.ws12{word-spacing:-13.413440pt;}
.wsc{word-spacing:-13.360000pt;}
.ws4{word-spacing:-13.306560pt;}
.ws1{word-spacing:-13.253120pt;}
.ws6{word-spacing:-13.199680pt;}
.ws5{word-spacing:-13.146240pt;}
.ws11{word-spacing:-13.092800pt;}
.ws14{word-spacing:-13.039360pt;}
.ws3{word-spacing:-12.985920pt;}
.ws16{word-spacing:-1.977280pt;}
.ws19{word-spacing:-0.534400pt;}
.ws18{word-spacing:-0.267200pt;}
.ws17{word-spacing:-0.213760pt;}
.wsd{word-spacing:-0.160320pt;}
.wsf{word-spacing:-0.106880pt;}
.ws0{word-spacing:-0.053440pt;}
.ws7{word-spacing:0.000000pt;}
.ws8{word-spacing:0.053440pt;}
.ws9{word-spacing:0.106880pt;}
.wsa{word-spacing:0.160320pt;}
.ws13{word-spacing:0.213760pt;}
.ws10{word-spacing:0.267200pt;}
.wse{word-spacing:0.320640pt;}
.ws15{word-spacing:4.008000pt;}
._30{margin-left:-3.601856pt;}
._23{margin-left:-2.522368pt;}
._0{margin-left:-1.036736pt;}
._1{width:0.892448pt;}
._2d{width:1.790240pt;}
._10{width:2.752160pt;}
._f{width:4.061440pt;}
._2a{width:5.140928pt;}
._19{width:6.086816pt;}
._6{width:7.059424pt;}
._16{width:8.480928pt;}
._5{width:9.747456pt;}
._4{width:10.784192pt;}
._27{width:11.986592pt;}
._24{width:14.717376pt;}
._b{width:15.925120pt;}
._1b{width:16.876352pt;}
._a{width:17.886368pt;}
._3{width:18.800192pt;}
._20{width:20.478208pt;}
._22{width:21.611136pt;}
._7{width:22.621152pt;}
._21{width:24.384672pt;}
._1f{width:25.517600pt;}
._1e{width:26.410048pt;}
._2b{width:27.494880pt;}
._28{width:28.585056pt;}
._18{width:30.428736pt;}
._1a{width:31.492192pt;}
._2c{width:34.185568pt;}
._29{width:38.273728pt;}
._2e{width:39.289088pt;}
._2f{width:40.272384pt;}
._26{width:44.456736pt;}
._9{width:47.454720pt;}
._8{width:48.731936pt;}
._1d{width:51.687168pt;}
._1c{width:52.713216pt;}
._e{width:55.582944pt;}
._d{width:56.475392pt;}
._14{width:65.496064pt;}
._25{width:68.702464pt;}
._c{width:71.080544pt;}
._17{width:75.077856pt;}
._12{width:83.526720pt;}
._13{width:86.204064pt;}
._31{width:130.602016pt;}
._11{width:156.221152pt;}
._15{width:752.000000pt;}
._2{width:754.946880pt;}
.fs2{font-size:42.560000pt;}
.fs0{font-size:53.440000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:2.880000pt;}
.y55{bottom:33.520000pt;}
.y63{bottom:48.880000pt;}
.y1f{bottom:50.720000pt;}
.y1e{bottom:69.120000pt;}
.y93{bottom:92.309280pt;}
.yc4{bottom:92.392000pt;}
.y6d{bottom:101.280000pt;}
.y1d{bottom:101.704800pt;}
.yb8{bottom:107.606240pt;}
.y92{bottom:107.673280pt;}
.y46{bottom:107.756000pt;}
.y6c{bottom:116.880000pt;}
.y1c{bottom:116.988640pt;}
.yb7{bottom:122.970240pt;}
.y91{bottom:123.037280pt;}
.y45{bottom:123.120000pt;}
.y1b{bottom:132.352640pt;}
.y6b{bottom:135.108160pt;}
.yb6{bottom:138.254080pt;}
.y90{bottom:138.321120pt;}
.y44{bottom:138.344800pt;}
.yc3{bottom:138.392000pt;}
.y1a{bottom:147.716640pt;}
.y6a{bottom:150.392000pt;}
.yb5{bottom:153.618080pt;}
.y8f{bottom:153.685120pt;}
.y43{bottom:153.708800pt;}
.yc2{bottom:153.756000pt;}
.y19{bottom:163.000480pt;}
.y69{bottom:165.756000pt;}
.yb4{bottom:168.982080pt;}
.y8e{bottom:169.049120pt;}
.y42{bottom:169.072800pt;}
.yc1{bottom:169.120000pt;}
.y18{bottom:178.364480pt;}
.y68{bottom:181.120000pt;}
.yb3{bottom:184.265920pt;}
.y8d{bottom:184.332960pt;}
.y41{bottom:184.356640pt;}
.yc0{bottom:184.392000pt;}
.y17{bottom:193.728480pt;}
.y67{bottom:196.396000pt;}
.yb2{bottom:199.629920pt;}
.y8c{bottom:199.696960pt;}
.y40{bottom:199.720640pt;}
.ybf{bottom:199.756000pt;}
.y16{bottom:209.012320pt;}
.y66{bottom:211.760000pt;}
.yb1{bottom:214.993920pt;}
.y8b{bottom:215.060960pt;}
.y3f{bottom:215.084640pt;}
.ybe{bottom:215.120000pt;}
.y15{bottom:224.376320pt;}
.y62{bottom:228.880000pt;}
.yb0{bottom:230.277760pt;}
.y8a{bottom:230.344800pt;}
.y3e{bottom:230.368480pt;}
.ybd{bottom:230.384160pt;}
.y14{bottom:239.740320pt;}
.yaf{bottom:245.641760pt;}
.y89{bottom:245.708800pt;}
.y3d{bottom:245.732480pt;}
.ybc{bottom:245.748160pt;}
.y65{bottom:247.040000pt;}
.y13{bottom:255.024160pt;}
.yae{bottom:260.925600pt;}
.y88{bottom:260.992640pt;}
.y3c{bottom:261.016320pt;}
.ybb{bottom:261.032000pt;}
.y64{bottom:262.400000pt;}
.y12{bottom:270.388160pt;}
.yad{bottom:276.289600pt;}
.y87{bottom:276.356640pt;}
.yd2{bottom:276.360480pt;}
.y3b{bottom:276.380320pt;}
.yba{bottom:276.396000pt;}
.y11{bottom:285.752160pt;}
.y61{bottom:290.880000pt;}
.yac{bottom:291.653600pt;}
.y86{bottom:291.720640pt;}
.yd1{bottom:291.724480pt;}
.y3a{bottom:291.744320pt;}
.yb9{bottom:291.760000pt;}
.y10{bottom:301.036000pt;}
.yab{bottom:306.937440pt;}
.y85{bottom:307.004480pt;}
.yd0{bottom:307.008320pt;}
.y39{bottom:307.028160pt;}
.y60{bottom:309.040000pt;}
.yf{bottom:316.400000pt;}
.yaa{bottom:322.301440pt;}
.y84{bottom:322.368480pt;}
.ycf{bottom:322.372320pt;}
.y38{bottom:322.392160pt;}
.y5f{bottom:324.400000pt;}
.ye{bottom:331.760000pt;}
.ya9{bottom:337.665440pt;}
.y83{bottom:337.732480pt;}
.yce{bottom:337.736320pt;}
.y37{bottom:337.756160pt;}
.y5e{bottom:341.520000pt;}
.yd{bottom:347.040000pt;}
.ya8{bottom:352.949280pt;}
.y82{bottom:353.016320pt;}
.ycd{bottom:353.020160pt;}
.y36{bottom:353.040000pt;}
.y5d{bottom:359.756160pt;}
.yc{bottom:362.400000pt;}
.ya7{bottom:368.313280pt;}
.y81{bottom:368.380320pt;}
.ycc{bottom:368.384160pt;}
.y35{bottom:368.400000pt;}
.y5c{bottom:375.040000pt;}
.yb{bottom:377.680000pt;}
.ya6{bottom:383.677280pt;}
.y34{bottom:383.720640pt;}
.y80{bottom:383.744320pt;}
.ycb{bottom:383.748160pt;}
.y5b{bottom:392.160000pt;}
.ya{bottom:393.032160pt;}
.ya5{bottom:398.961120pt;}
.y33{bottom:399.004480pt;}
.y7f{bottom:399.028160pt;}
.yca{bottom:399.032000pt;}
.y9{bottom:408.396160pt;}
.y5a{bottom:410.400000pt;}
.ya4{bottom:414.325120pt;}
.y32{bottom:414.368480pt;}
.y7e{bottom:414.392160pt;}
.yc9{bottom:414.396000pt;}
.y8{bottom:423.680000pt;}
.y59{bottom:425.760000pt;}
.ya3{bottom:429.689120pt;}
.y31{bottom:429.732480pt;}
.y7d{bottom:429.756160pt;}
.yc8{bottom:429.760000pt;}
.y7{bottom:439.040000pt;}
.y58{bottom:441.040000pt;}
.ya2{bottom:444.972960pt;}
.y30{bottom:445.016320pt;}
.y7c{bottom:445.040000pt;}
.y6{bottom:454.400000pt;}
.y57{bottom:456.400000pt;}
.ya1{bottom:460.336960pt;}
.y2f{bottom:460.380320pt;}
.y7b{bottom:460.400000pt;}
.y5{bottom:469.680000pt;}
.y54{bottom:473.520000pt;}
.ya0{bottom:475.700960pt;}
.y2e{bottom:475.744320pt;}
.y7a{bottom:475.760000pt;}
.y4{bottom:482.153840pt;}
.y9f{bottom:490.984800pt;}
.y79{bottom:491.024160pt;}
.y2d{bottom:491.028160pt;}
.yc7{bottom:491.040000pt;}
.y56{bottom:491.760000pt;}
.y9e{bottom:506.348800pt;}
.y78{bottom:506.388160pt;}
.y2c{bottom:506.392160pt;}
.yc6{bottom:506.400000pt;}
.y53{bottom:520.160000pt;}
.y9d{bottom:521.712800pt;}
.y77{bottom:521.752160pt;}
.y2b{bottom:521.756160pt;}
.yc5{bottom:521.760000pt;}
.y9c{bottom:536.996640pt;}
.y76{bottom:537.036000pt;}
.y2a{bottom:537.040000pt;}
.y52{bottom:538.400000pt;}
.y9b{bottom:552.360640pt;}
.y29{bottom:552.396160pt;}
.y75{bottom:552.400000pt;}
.y51{bottom:553.680000pt;}
.y9a{bottom:567.644480pt;}
.y28{bottom:567.680000pt;}
.y50{bottom:570.800000pt;}
.y99{bottom:583.008480pt;}
.y27{bottom:583.012320pt;}
.y74{bottom:583.040000pt;}
.y4f{bottom:589.040000pt;}
.y98{bottom:598.372480pt;}
.y26{bottom:598.376320pt;}
.y73{bottom:598.400000pt;}
.y4e{bottom:604.400000pt;}
.y97{bottom:613.656320pt;}
.y25{bottom:613.660160pt;}
.y72{bottom:613.680000pt;}
.y4d{bottom:619.680000pt;}
.y96{bottom:629.020320pt;}
.y24{bottom:629.024160pt;}
.y71{bottom:629.040000pt;}
.y4c{bottom:635.040000pt;}
.y95{bottom:644.384320pt;}
.y23{bottom:644.388160pt;}
.y70{bottom:644.400000pt;}
.y4a{bottom:652.160000pt;}
.y94{bottom:659.668160pt;}
.y22{bottom:659.672000pt;}
.y6f{bottom:659.680000pt;}
.y49{bottom:670.396160pt;}
.y3{bottom:675.032160pt;}
.y21{bottom:675.036000pt;}
.y6e{bottom:675.040000pt;}
.y48{bottom:685.680000pt;}
.y2{bottom:690.396160pt;}
.y20{bottom:690.400000pt;}
.y47{bottom:701.040000pt;}
.y1{bottom:705.680000pt;}
.h3{height:37.105312pt;}
.h5{height:44.437500pt;}
.ha{height:46.000000pt;}
.h6{height:46.029375pt;}
.h2{height:46.212031pt;}
.h4{height:47.099219pt;}
.h9{height:49.998667pt;}
.hc{height:50.000000pt;}
.hd{height:61.280000pt;}
.h7{height:65.358667pt;}
.h8{height:80.718667pt;}
.hb{height:80.720000pt;}
.he{height:111.280000pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w3{width:48.080000pt;}
.w2{width:376.960000pt;}
.w1{width:559.333333pt;}
.w0{width:559.440000pt;}
.x0{left:0.000000pt;}
.x17{left:6.800000pt;}
.x1a{left:25.840000pt;}
.x12{left:37.762160pt;}
.xe{left:56.720000pt;}
.x1d{left:57.764240pt;}
.x16{left:64.240000pt;}
.x1c{left:75.680000pt;}
.x2{left:76.872000pt;}
.x5{left:91.440000pt;}
.x14{left:94.560000pt;}
.x23{left:95.760000pt;}
.x1f{left:98.880000pt;}
.x1{left:120.960000pt;}
.x8{left:128.320000pt;}
.x6{left:155.200000pt;}
.x9{left:189.753840pt;}
.x20{left:202.000000pt;}
.x7{left:203.280000pt;}
.x1e{left:208.558560pt;}
.x15{left:226.880000pt;}
.x22{left:229.753680pt;}
.xb{left:260.321360pt;}
.xc{left:266.400160pt;}
.xa{left:270.234480pt;}
.xf{left:275.600000pt;}
.x3{left:279.663440pt;}
.x10{left:299.046800pt;}
.x13{left:332.320000pt;}
.x4{left:378.861440pt;}
.x19{left:435.040000pt;}
.x21{left:459.760000pt;}
.x18{left:460.880000pt;}
.x1b{left:467.760000pt;}
.xd{left:475.760000pt;}
.x11{left:483.762160pt;}
}




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