
    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_1fddc7f95b69e8c34b9ee81d.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5f8179cf72b56552a3480938.woff')format("woff");}.ff2{font-family:ff2;line-height:0.701660;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_846af8c025923b92639314d2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.891602;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_b2222abc48293f6c5334b438.woff')format("woff");}.ff4{font-family:ff4;line-height:0.691406;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_8bf8a23af466830635681f5b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_5729d7009773863e68088208.woff')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_9ae4e06be22b7b6bb02927ce.woff')format("woff");}.ff7{font-family:ff7;line-height:0.893555;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_973f2e86d7a1688044cda60a.woff')format("woff");}.ff8{font-family:ff8;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.720000px;}
.ls2e{letter-spacing:-0.629280px;}
.ls29{letter-spacing:-0.508896px;}
.ls12{letter-spacing:-0.481536px;}
.ls2a{letter-spacing:-0.448704px;}
.ls19{letter-spacing:-0.417312px;}
.lse{letter-spacing:-0.393984px;}
.ls20{letter-spacing:-0.381024px;}
.lsf{letter-spacing:-0.361152px;}
.ls1a{letter-spacing:-0.338688px;}
.ls2c{letter-spacing:-0.328320px;}
.ls17{letter-spacing:-0.320544px;}
.ls22{letter-spacing:-0.302400px;}
.ls2d{letter-spacing:-0.284544px;}
.ls34{letter-spacing:-0.273600px;}
.ls18{letter-spacing:-0.260064px;}
.ls1c{letter-spacing:-0.241920px;}
.ls2f{letter-spacing:-0.240768px;}
.ls1f{letter-spacing:-0.223776px;}
.ls2b{letter-spacing:-0.207936px;}
.ls11{letter-spacing:-0.180576px;}
.ls21{letter-spacing:-0.175392px;}
.ls14{letter-spacing:-0.163584px;}
.ls1e{letter-spacing:-0.157248px;}
.ls16{letter-spacing:-0.153360px;}
.ls1b{letter-spacing:-0.145152px;}
.ls15{letter-spacing:-0.122688px;}
.ls1d{letter-spacing:-0.120960px;}
.ls13{letter-spacing:-0.007200px;}
.ls10{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.032256px;}
.ls3{letter-spacing:0.033120px;}
.ls4{letter-spacing:0.034560px;}
.ls25{letter-spacing:0.434880px;}
.ls26{letter-spacing:0.437760px;}
.ls37{letter-spacing:0.870048px;}
.lsa{letter-spacing:0.876960px;}
.lsb{letter-spacing:0.878400px;}
.ls35{letter-spacing:0.990432px;}
.ls23{letter-spacing:1.070784px;}
.ls33{letter-spacing:1.138176px;}
.ls31{letter-spacing:1.154592px;}
.ls30{letter-spacing:1.260000px;}
.ls36{letter-spacing:1.318752px;}
.ls32{letter-spacing:1.320480px;}
.ls0{letter-spacing:1.814400px;}
.ls27{letter-spacing:3.886416px;}
.ls28{letter-spacing:3.888000px;}
.lsd{letter-spacing:4.320000px;}
.ls5{letter-spacing:4.806720px;}
.ls9{letter-spacing:5.319360px;}
.lsc{letter-spacing:9.885600px;}
.ls8{letter-spacing:11.922624px;}
.ls7{letter-spacing:17.507520px;}
.ls6{letter-spacing:17.507952px;}
.ls24{letter-spacing:20.456640px;}
.ls1{letter-spacing:21.310704px;}
.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;}
}
.ws4{word-spacing:-25.406640px;}
.ws8{word-spacing:-19.814400px;}
.ws7{word-spacing:-15.120000px;}
.wsc{word-spacing:-14.974848px;}
.wsa{word-spacing:-14.962752px;}
.wsb{word-spacing:-14.896224px;}
.ws9{word-spacing:-14.878080px;}
.ws6{word-spacing:-14.859936px;}
.ws12{word-spacing:-14.818176px;}
.wse{word-spacing:-14.817600px;}
.ws5{word-spacing:-14.781312px;}
.ws13{word-spacing:-14.550048px;}
.ws0{word-spacing:-13.680000px;}
.ws10{word-spacing:-13.472064px;}
.ws11{word-spacing:-13.351680px;}
.ws2{word-spacing:-13.318848px;}
.ws1{word-spacing:-13.198464px;}
.wsf{word-spacing:-13.171104px;}
.ws3{word-spacing:-0.028800px;}
.wsd{word-spacing:0.000000px;}
._b{margin-left:-2.196432px;}
._6{margin-left:-1.079568px;}
._0{width:1.039680px;}
._12{width:2.273760px;}
._8{width:4.328064px;}
._7{width:5.927040px;}
._c{width:7.197120px;}
._11{width:10.039680px;}
._e{width:11.803536px;}
._d{width:13.003344px;}
._a{width:16.822224px;}
._9{width:18.122112px;}
._5{width:20.381760px;}
._4{width:21.703248px;}
._f{width:26.974080px;}
._10{width:75.600576px;}
._3{width:146.880000px;}
._1{width:578.880000px;}
._2{width:1172.880000px;}
.fc3{color:transparent;}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(209,52,56);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:36.000000px;}
.fs0{font-size:54.720000px;}
.fs3{font-size:60.480000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.y57{bottom:3.171450px;}
.y61{bottom:3.291450px;}
.y54{bottom:3.351450px;}
.y5e{bottom:3.471450px;}
.y32{bottom:4.371450px;}
.y5a{bottom:4.491450px;}
.y56{bottom:18.651450px;}
.y60{bottom:18.771450px;}
.y5d{bottom:18.951450px;}
.y59{bottom:19.971450px;}
.y64{bottom:34.251450px;}
.y5c{bottom:34.431450px;}
.y63{bottom:50.091450px;}
.y31{bottom:52.500000px;}
.y2{bottom:56.511450px;}
.y30{bottom:56.871450px;}
.y1{bottom:71.991450px;}
.y2f{bottom:116.271450px;}
.y96{bottom:116.991450px;}
.y69{bottom:122.751450px;}
.y95{bottom:134.271450px;}
.yc0{bottom:137.151450px;}
.y68{bottom:140.031450px;}
.y2e{bottom:140.751450px;}
.y94{bottom:151.551450px;}
.ybf{bottom:152.631450px;}
.y2d{bottom:157.311450px;}
.ybe{bottom:168.471450px;}
.y93{bottom:168.831450px;}
.y2c{bottom:173.871450px;}
.y67{bottom:174.591450px;}
.ybd{bottom:183.951450px;}
.y92{bottom:186.111450px;}
.y2b{bottom:190.431450px;}
.y66{bottom:191.871450px;}
.ybc{bottom:199.431450px;}
.y91{bottom:203.031450px;}
.y2a{bottom:206.991450px;}
.y65{bottom:209.151450px;}
.ybb{bottom:214.911450px;}
.y90{bottom:220.311450px;}
.y62{bottom:223.500000px;}
.yba{bottom:230.391450px;}
.y29{bottom:232.551450px;}
.y8f{bottom:237.591450px;}
.yb9{bottom:245.871450px;}
.y8e{bottom:254.871450px;}
.yb8{bottom:261.351450px;}
.y28{bottom:270.351450px;}
.y8d{bottom:272.151450px;}
.yb7{bottom:276.831450px;}
.y5f{bottom:286.500000px;}
.y27{bottom:287.631450px;}
.y8c{bottom:289.431450px;}
.yb6{bottom:292.311450px;}
.y26{bottom:304.911450px;}
.y8b{bottom:306.711450px;}
.yb5{bottom:308.151450px;}
.y5b{bottom:318.000000px;}
.y25{bottom:322.191450px;}
.yb4{bottom:323.631450px;}
.y8a{bottom:323.991450px;}
.yb3{bottom:339.111450px;}
.y24{bottom:339.471450px;}
.y89{bottom:341.271450px;}
.yb2{bottom:354.591450px;}
.y23{bottom:356.751450px;}
.y88{bottom:358.551450px;}
.y58{bottom:364.500000px;}
.yb1{bottom:370.071450px;}
.y22{bottom:373.671450px;}
.y87{bottom:375.831450px;}
.yb0{bottom:385.551450px;}
.y21{bottom:390.951450px;}
.y86{bottom:392.751450px;}
.y55{bottom:397.500000px;}
.yaf{bottom:401.031450px;}
.y20{bottom:408.231450px;}
.y85{bottom:410.031450px;}
.yae{bottom:416.511450px;}
.y1f{bottom:425.511450px;}
.y84{bottom:427.311450px;}
.y53{bottom:429.000000px;}
.yad{bottom:432.351450px;}
.y1e{bottom:442.791450px;}
.y83{bottom:444.591450px;}
.yac{bottom:450.711450px;}
.y1d{bottom:460.071450px;}
.y82{bottom:461.871450px;}
.y52{bottom:465.471450px;}
.y1c{bottom:478.071450px;}
.y81{bottom:479.151450px;}
.yab{bottom:489.231450px;}
.y80{bottom:496.431450px;}
.y51{bottom:498.591450px;}
.y7f{bottom:513.711450px;}
.y50{bottom:515.871450px;}
.y1b{bottom:516.591450px;}
.yaa{bottom:528.111450px;}
.y7e{bottom:530.991450px;}
.y4f{bottom:533.151450px;}
.y7d{bottom:548.271450px;}
.y4e{bottom:550.071450px;}
.y1a{bottom:554.751450px;}
.y7c{bottom:565.551450px;}
.ya9{bottom:566.631450px;}
.y4d{bottom:567.351450px;}
.y19{bottom:571.311450px;}
.y7b{bottom:582.831450px;}
.y18{bottom:587.871450px;}
.y4c{bottom:592.191450px;}
.y7a{bottom:599.751450px;}
.y17{bottom:604.071450px;}
.ya8{bottom:605.511450px;}
.y4b{bottom:608.751450px;}
.y79{bottom:617.031450px;}
.y16{bottom:620.631450px;}
.y4a{bottom:625.311450px;}
.y78{bottom:634.311450px;}
.y15{bottom:637.191450px;}
.y49{bottom:641.871450px;}
.ya7{bottom:643.311450px;}
.y77{bottom:651.591450px;}
.y14{bottom:653.751450px;}
.y48{bottom:658.071450px;}
.ya6{bottom:660.591450px;}
.y76{bottom:668.871450px;}
.y13{bottom:670.311450px;}
.y47{bottom:674.631450px;}
.ya5{bottom:677.871450px;}
.y75{bottom:686.151450px;}
.y12{bottom:686.871450px;}
.y46{bottom:691.191450px;}
.ya4{bottom:695.151450px;}
.y11{bottom:703.071450px;}
.y74{bottom:703.431450px;}
.y45{bottom:707.751450px;}
.ya3{bottom:712.071450px;}
.y10{bottom:719.631450px;}
.y73{bottom:720.711450px;}
.y44{bottom:724.311450px;}
.ya2{bottom:729.351450px;}
.yf{bottom:736.191450px;}
.y72{bottom:737.991450px;}
.y43{bottom:740.871450px;}
.ya1{bottom:746.631450px;}
.ye{bottom:752.751450px;}
.y71{bottom:755.271450px;}
.y42{bottom:757.071450px;}
.ya0{bottom:763.911450px;}
.yd{bottom:769.311450px;}
.y70{bottom:772.551450px;}
.y41{bottom:773.631450px;}
.y9f{bottom:781.191450px;}
.yc{bottom:785.871450px;}
.y6f{bottom:789.471450px;}
.y40{bottom:798.471450px;}
.yb{bottom:802.071450px;}
.y6e{bottom:806.751450px;}
.y9e{bottom:815.751450px;}
.y3f{bottom:816.471450px;}
.y6d{bottom:824.031450px;}
.y9d{bottom:833.031450px;}
.ya{bottom:835.551450px;}
.y6c{bottom:841.311450px;}
.y9c{bottom:850.311450px;}
.y3e{bottom:855.351450px;}
.y6b{bottom:858.591450px;}
.y9b{bottom:867.591450px;}
.y6a{bottom:875.871450px;}
.y9a{bottom:884.871450px;}
.y9{bottom:887.751450px;}
.y3d{bottom:893.151450px;}
.y99{bottom:902.151450px;}
.y8{bottom:904.311450px;}
.y3c{bottom:910.431450px;}
.y98{bottom:920.151450px;}
.y7{bottom:920.871450px;}
.y3b{bottom:927.711450px;}
.y6{bottom:937.071450px;}
.y3a{bottom:944.991450px;}
.y5{bottom:953.631450px;}
.y97{bottom:958.671450px;}
.y39{bottom:962.271450px;}
.yc7{bottom:966.591450px;}
.y38{bottom:979.551450px;}
.yc6{bottom:982.071450px;}
.y37{bottom:996.471450px;}
.yc5{bottom:997.551450px;}
.y4{bottom:999.711450px;}
.yc4{bottom:1012.311450px;}
.y36{bottom:1013.751450px;}
.y3{bottom:1028.871450px;}
.y35{bottom:1031.031450px;}
.yc3{bottom:1036.071450px;}
.y34{bottom:1048.311450px;}
.yc2{bottom:1051.551450px;}
.y33{bottom:1065.591450px;}
.yc1{bottom:1067.031450px;}
.h9{height:16.500000px;}
.h8{height:19.500000px;}
.ha{height:31.500000px;}
.hb{height:33.000000px;}
.h1{height:37.994063px;}
.h4{height:40.989375px;}
.h6{height:41.993438px;}
.h5{height:42.022969px;}
.h2{height:43.716094px;}
.hc{height:48.000000px;}
.h7{height:48.796875px;}
.hd{height:63.000000px;}
.h3{height:69.291563px;}
.h0{height:1188.000000px;}
.w1{width:9.000000px;}
.w2{width:118.500000px;}
.w3{width:214.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:1.268550px;}
.x10{left:8.168550px;}
.xe{left:38.290794px;}
.x11{left:55.155894px;}
.x1{left:162.368550px;}
.x1b{left:177.118794px;}
.x2{left:184.533822px;}
.x9{left:216.368550px;}
.x14{left:245.288970px;}
.x1a{left:249.800670px;}
.x17{left:252.155430px;}
.x12{left:277.718418px;}
.x15{left:285.685686px;}
.x18{left:295.635618px;}
.xd{left:300.000000px;}
.x3{left:313.440822px;}
.x6{left:349.812882px;}
.x5{left:365.625918px;}
.x7{left:371.851434px;}
.xc{left:391.681710px;}
.x4{left:407.483910px;}
.xf{left:417.000000px;}
.x8{left:424.077390px;}
.x19{left:429.368670px;}
.x13{left:434.993670px;}
.xa{left:454.500000px;}
.x16{left:459.368550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.640000pt;}
.ls2e{letter-spacing:-0.559360pt;}
.ls29{letter-spacing:-0.452352pt;}
.ls12{letter-spacing:-0.428032pt;}
.ls2a{letter-spacing:-0.398848pt;}
.ls19{letter-spacing:-0.370944pt;}
.lse{letter-spacing:-0.350208pt;}
.ls20{letter-spacing:-0.338688pt;}
.lsf{letter-spacing:-0.321024pt;}
.ls1a{letter-spacing:-0.301056pt;}
.ls2c{letter-spacing:-0.291840pt;}
.ls17{letter-spacing:-0.284928pt;}
.ls22{letter-spacing:-0.268800pt;}
.ls2d{letter-spacing:-0.252928pt;}
.ls34{letter-spacing:-0.243200pt;}
.ls18{letter-spacing:-0.231168pt;}
.ls1c{letter-spacing:-0.215040pt;}
.ls2f{letter-spacing:-0.214016pt;}
.ls1f{letter-spacing:-0.198912pt;}
.ls2b{letter-spacing:-0.184832pt;}
.ls11{letter-spacing:-0.160512pt;}
.ls21{letter-spacing:-0.155904pt;}
.ls14{letter-spacing:-0.145408pt;}
.ls1e{letter-spacing:-0.139776pt;}
.ls16{letter-spacing:-0.136320pt;}
.ls1b{letter-spacing:-0.129024pt;}
.ls15{letter-spacing:-0.109056pt;}
.ls1d{letter-spacing:-0.107520pt;}
.ls13{letter-spacing:-0.006400pt;}
.ls10{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.028672pt;}
.ls3{letter-spacing:0.029440pt;}
.ls4{letter-spacing:0.030720pt;}
.ls25{letter-spacing:0.386560pt;}
.ls26{letter-spacing:0.389120pt;}
.ls37{letter-spacing:0.773376pt;}
.lsa{letter-spacing:0.779520pt;}
.lsb{letter-spacing:0.780800pt;}
.ls35{letter-spacing:0.880384pt;}
.ls23{letter-spacing:0.951808pt;}
.ls33{letter-spacing:1.011712pt;}
.ls31{letter-spacing:1.026304pt;}
.ls30{letter-spacing:1.120000pt;}
.ls36{letter-spacing:1.172224pt;}
.ls32{letter-spacing:1.173760pt;}
.ls0{letter-spacing:1.612800pt;}
.ls27{letter-spacing:3.454592pt;}
.ls28{letter-spacing:3.456000pt;}
.lsd{letter-spacing:3.840000pt;}
.ls5{letter-spacing:4.272640pt;}
.ls9{letter-spacing:4.728320pt;}
.lsc{letter-spacing:8.787200pt;}
.ls8{letter-spacing:10.597888pt;}
.ls7{letter-spacing:15.562240pt;}
.ls6{letter-spacing:15.562624pt;}
.ls24{letter-spacing:18.183680pt;}
.ls1{letter-spacing:18.942848pt;}
.ws4{word-spacing:-22.583680pt;}
.ws8{word-spacing:-17.612800pt;}
.ws7{word-spacing:-13.440000pt;}
.wsc{word-spacing:-13.310976pt;}
.wsa{word-spacing:-13.300224pt;}
.wsb{word-spacing:-13.241088pt;}
.ws9{word-spacing:-13.224960pt;}
.ws6{word-spacing:-13.208832pt;}
.ws12{word-spacing:-13.171712pt;}
.wse{word-spacing:-13.171200pt;}
.ws5{word-spacing:-13.138944pt;}
.ws13{word-spacing:-12.933376pt;}
.ws0{word-spacing:-12.160000pt;}
.ws10{word-spacing:-11.975168pt;}
.ws11{word-spacing:-11.868160pt;}
.ws2{word-spacing:-11.838976pt;}
.ws1{word-spacing:-11.731968pt;}
.wsf{word-spacing:-11.707648pt;}
.ws3{word-spacing:-0.025600pt;}
.wsd{word-spacing:0.000000pt;}
._b{margin-left:-1.952384pt;}
._6{margin-left:-0.959616pt;}
._0{width:0.924160pt;}
._12{width:2.021120pt;}
._8{width:3.847168pt;}
._7{width:5.268480pt;}
._c{width:6.397440pt;}
._11{width:8.924160pt;}
._e{width:10.492032pt;}
._d{width:11.558528pt;}
._a{width:14.953088pt;}
._9{width:16.108544pt;}
._5{width:18.117120pt;}
._4{width:19.291776pt;}
._f{width:23.976960pt;}
._10{width:67.200512pt;}
._3{width:130.560000pt;}
._1{width:514.560000pt;}
._2{width:1042.560000pt;}
.fs1{font-size:32.000000pt;}
.fs0{font-size:48.640000pt;}
.fs3{font-size:53.760000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:2.819067pt;}
.y61{bottom:2.925733pt;}
.y54{bottom:2.979067pt;}
.y5e{bottom:3.085733pt;}
.y32{bottom:3.885733pt;}
.y5a{bottom:3.992400pt;}
.y56{bottom:16.579067pt;}
.y60{bottom:16.685733pt;}
.y5d{bottom:16.845733pt;}
.y59{bottom:17.752400pt;}
.y64{bottom:30.445733pt;}
.y5c{bottom:30.605733pt;}
.y63{bottom:44.525733pt;}
.y31{bottom:46.666667pt;}
.y2{bottom:50.232400pt;}
.y30{bottom:50.552400pt;}
.y1{bottom:63.992400pt;}
.y2f{bottom:103.352400pt;}
.y96{bottom:103.992400pt;}
.y69{bottom:109.112400pt;}
.y95{bottom:119.352400pt;}
.yc0{bottom:121.912400pt;}
.y68{bottom:124.472400pt;}
.y2e{bottom:125.112400pt;}
.y94{bottom:134.712400pt;}
.ybf{bottom:135.672400pt;}
.y2d{bottom:139.832400pt;}
.ybe{bottom:149.752400pt;}
.y93{bottom:150.072400pt;}
.y2c{bottom:154.552400pt;}
.y67{bottom:155.192400pt;}
.ybd{bottom:163.512400pt;}
.y92{bottom:165.432400pt;}
.y2b{bottom:169.272400pt;}
.y66{bottom:170.552400pt;}
.ybc{bottom:177.272400pt;}
.y91{bottom:180.472400pt;}
.y2a{bottom:183.992400pt;}
.y65{bottom:185.912400pt;}
.ybb{bottom:191.032400pt;}
.y90{bottom:195.832400pt;}
.y62{bottom:198.666667pt;}
.yba{bottom:204.792400pt;}
.y29{bottom:206.712400pt;}
.y8f{bottom:211.192400pt;}
.yb9{bottom:218.552400pt;}
.y8e{bottom:226.552400pt;}
.yb8{bottom:232.312400pt;}
.y28{bottom:240.312400pt;}
.y8d{bottom:241.912400pt;}
.yb7{bottom:246.072400pt;}
.y5f{bottom:254.666667pt;}
.y27{bottom:255.672400pt;}
.y8c{bottom:257.272400pt;}
.yb6{bottom:259.832400pt;}
.y26{bottom:271.032400pt;}
.y8b{bottom:272.632400pt;}
.yb5{bottom:273.912400pt;}
.y5b{bottom:282.666667pt;}
.y25{bottom:286.392400pt;}
.yb4{bottom:287.672400pt;}
.y8a{bottom:287.992400pt;}
.yb3{bottom:301.432400pt;}
.y24{bottom:301.752400pt;}
.y89{bottom:303.352400pt;}
.yb2{bottom:315.192400pt;}
.y23{bottom:317.112400pt;}
.y88{bottom:318.712400pt;}
.y58{bottom:324.000000pt;}
.yb1{bottom:328.952400pt;}
.y22{bottom:332.152400pt;}
.y87{bottom:334.072400pt;}
.yb0{bottom:342.712400pt;}
.y21{bottom:347.512400pt;}
.y86{bottom:349.112400pt;}
.y55{bottom:353.333333pt;}
.yaf{bottom:356.472400pt;}
.y20{bottom:362.872400pt;}
.y85{bottom:364.472400pt;}
.yae{bottom:370.232400pt;}
.y1f{bottom:378.232400pt;}
.y84{bottom:379.832400pt;}
.y53{bottom:381.333333pt;}
.yad{bottom:384.312400pt;}
.y1e{bottom:393.592400pt;}
.y83{bottom:395.192400pt;}
.yac{bottom:400.632400pt;}
.y1d{bottom:408.952400pt;}
.y82{bottom:410.552400pt;}
.y52{bottom:413.752400pt;}
.y1c{bottom:424.952400pt;}
.y81{bottom:425.912400pt;}
.yab{bottom:434.872400pt;}
.y80{bottom:441.272400pt;}
.y51{bottom:443.192400pt;}
.y7f{bottom:456.632400pt;}
.y50{bottom:458.552400pt;}
.y1b{bottom:459.192400pt;}
.yaa{bottom:469.432400pt;}
.y7e{bottom:471.992400pt;}
.y4f{bottom:473.912400pt;}
.y7d{bottom:487.352400pt;}
.y4e{bottom:488.952400pt;}
.y1a{bottom:493.112400pt;}
.y7c{bottom:502.712400pt;}
.ya9{bottom:503.672400pt;}
.y4d{bottom:504.312400pt;}
.y19{bottom:507.832400pt;}
.y7b{bottom:518.072400pt;}
.y18{bottom:522.552400pt;}
.y4c{bottom:526.392400pt;}
.y7a{bottom:533.112400pt;}
.y17{bottom:536.952400pt;}
.ya8{bottom:538.232400pt;}
.y4b{bottom:541.112400pt;}
.y79{bottom:548.472400pt;}
.y16{bottom:551.672400pt;}
.y4a{bottom:555.832400pt;}
.y78{bottom:563.832400pt;}
.y15{bottom:566.392400pt;}
.y49{bottom:570.552400pt;}
.ya7{bottom:571.832400pt;}
.y77{bottom:579.192400pt;}
.y14{bottom:581.112400pt;}
.y48{bottom:584.952400pt;}
.ya6{bottom:587.192400pt;}
.y76{bottom:594.552400pt;}
.y13{bottom:595.832400pt;}
.y47{bottom:599.672400pt;}
.ya5{bottom:602.552400pt;}
.y75{bottom:609.912400pt;}
.y12{bottom:610.552400pt;}
.y46{bottom:614.392400pt;}
.ya4{bottom:617.912400pt;}
.y11{bottom:624.952400pt;}
.y74{bottom:625.272400pt;}
.y45{bottom:629.112400pt;}
.ya3{bottom:632.952400pt;}
.y10{bottom:639.672400pt;}
.y73{bottom:640.632400pt;}
.y44{bottom:643.832400pt;}
.ya2{bottom:648.312400pt;}
.yf{bottom:654.392400pt;}
.y72{bottom:655.992400pt;}
.y43{bottom:658.552400pt;}
.ya1{bottom:663.672400pt;}
.ye{bottom:669.112400pt;}
.y71{bottom:671.352400pt;}
.y42{bottom:672.952400pt;}
.ya0{bottom:679.032400pt;}
.yd{bottom:683.832400pt;}
.y70{bottom:686.712400pt;}
.y41{bottom:687.672400pt;}
.y9f{bottom:694.392400pt;}
.yc{bottom:698.552400pt;}
.y6f{bottom:701.752400pt;}
.y40{bottom:709.752400pt;}
.yb{bottom:712.952400pt;}
.y6e{bottom:717.112400pt;}
.y9e{bottom:725.112400pt;}
.y3f{bottom:725.752400pt;}
.y6d{bottom:732.472400pt;}
.y9d{bottom:740.472400pt;}
.ya{bottom:742.712400pt;}
.y6c{bottom:747.832400pt;}
.y9c{bottom:755.832400pt;}
.y3e{bottom:760.312400pt;}
.y6b{bottom:763.192400pt;}
.y9b{bottom:771.192400pt;}
.y6a{bottom:778.552400pt;}
.y9a{bottom:786.552400pt;}
.y9{bottom:789.112400pt;}
.y3d{bottom:793.912400pt;}
.y99{bottom:801.912400pt;}
.y8{bottom:803.832400pt;}
.y3c{bottom:809.272400pt;}
.y98{bottom:817.912400pt;}
.y7{bottom:818.552400pt;}
.y3b{bottom:824.632400pt;}
.y6{bottom:832.952400pt;}
.y3a{bottom:839.992400pt;}
.y5{bottom:847.672400pt;}
.y97{bottom:852.152400pt;}
.y39{bottom:855.352400pt;}
.yc7{bottom:859.192400pt;}
.y38{bottom:870.712400pt;}
.yc6{bottom:872.952400pt;}
.y37{bottom:885.752400pt;}
.yc5{bottom:886.712400pt;}
.y4{bottom:888.632400pt;}
.yc4{bottom:899.832400pt;}
.y36{bottom:901.112400pt;}
.y3{bottom:914.552400pt;}
.y35{bottom:916.472400pt;}
.yc3{bottom:920.952400pt;}
.y34{bottom:931.832400pt;}
.yc2{bottom:934.712400pt;}
.y33{bottom:947.192400pt;}
.yc1{bottom:948.472400pt;}
.h9{height:14.666667pt;}
.h8{height:17.333333pt;}
.ha{height:28.000000pt;}
.hb{height:29.333333pt;}
.h1{height:33.772500pt;}
.h4{height:36.435000pt;}
.h6{height:37.327500pt;}
.h5{height:37.353750pt;}
.h2{height:38.858750pt;}
.hc{height:42.666667pt;}
.h7{height:43.375000pt;}
.hd{height:56.000000pt;}
.h3{height:61.592500pt;}
.h0{height:1056.000000pt;}
.w1{width:8.000000pt;}
.w2{width:105.333333pt;}
.w3{width:190.666667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:1.127600pt;}
.x10{left:7.260933pt;}
.xe{left:34.036261pt;}
.x11{left:49.027461pt;}
.x1{left:144.327600pt;}
.x1b{left:157.438928pt;}
.x2{left:164.030064pt;}
.x9{left:192.327600pt;}
.x14{left:218.034640pt;}
.x1a{left:222.045040pt;}
.x17{left:224.138160pt;}
.x12{left:246.860816pt;}
.x15{left:253.942832pt;}
.x18{left:262.787216pt;}
.xd{left:266.666667pt;}
.x3{left:278.614064pt;}
.x6{left:310.944784pt;}
.x5{left:325.000816pt;}
.x7{left:330.534608pt;}
.xc{left:348.161520pt;}
.x4{left:362.207920pt;}
.xf{left:370.666667pt;}
.x8{left:376.957680pt;}
.x19{left:381.661040pt;}
.x13{left:386.661040pt;}
.xa{left:404.000000pt;}
.x16{left:408.327600pt;}
}




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