
    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_dbae9e9fe97f186766e38c13.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904297;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_b50bd0c9f8cf9122160bf1f0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_00f80db81f7a11ed5d0d73b1.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_1eba341f357e3fb8929cbe22.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.717285;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_4d106a427b906fc16968638a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.895996;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;}
.v3{vertical-align:39.599940px;}
.v2{vertical-align:100.800000px;}
.v1{vertical-align:102.790236px;}
.ls7{letter-spacing:-0.129600px;}
.ls10{letter-spacing:-0.120000px;}
.ls3d{letter-spacing:-0.105600px;}
.ls8{letter-spacing:-0.097200px;}
.ls6{letter-spacing:-0.096000px;}
.ls26{letter-spacing:-0.081000px;}
.ls2c{letter-spacing:-0.072000px;}
.ls28{letter-spacing:-0.064800px;}
.ls3b{letter-spacing:-0.054000px;}
.ls12{letter-spacing:-0.050400px;}
.ls31{letter-spacing:-0.045000px;}
.ls24{letter-spacing:-0.038400px;}
.ls39{letter-spacing:-0.035200px;}
.lsb{letter-spacing:-0.033600px;}
.ls17{letter-spacing:-0.032400px;}
.ls1d{letter-spacing:-0.030000px;}
.ls2d{letter-spacing:-0.018000px;}
.ls3c{letter-spacing:-0.016800px;}
.ls27{letter-spacing:-0.016200px;}
.ls18{letter-spacing:-0.014400px;}
.ls5{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.008800px;}
.ls35{letter-spacing:0.009600px;}
.ls33{letter-spacing:0.012888px;}
.ls2b{letter-spacing:0.013200px;}
.ls2a{letter-spacing:0.013380px;}
.ls19{letter-spacing:0.014646px;}
.ls1c{letter-spacing:0.015000px;}
.ls13{letter-spacing:0.015822px;}
.ls16{letter-spacing:0.016200px;}
.lse{letter-spacing:0.016800px;}
.ls1e{letter-spacing:0.017580px;}
.ls0{letter-spacing:0.018000px;}
.lsd{letter-spacing:0.021600px;}
.ls1{letter-spacing:0.024000px;}
.ls3{letter-spacing:0.024600px;}
.ls36{letter-spacing:0.026400px;}
.ls23{letter-spacing:0.029250px;}
.lsa{letter-spacing:0.032400px;}
.ls22{letter-spacing:0.032880px;}
.ls38{letter-spacing:0.035200px;}
.ls21{letter-spacing:0.036000px;}
.ls2f{letter-spacing:0.045000px;}
.ls3a{letter-spacing:0.048000px;}
.lsc{letter-spacing:0.050400px;}
.ls32{letter-spacing:0.052800px;}
.ls29{letter-spacing:0.054000px;}
.ls1b{letter-spacing:0.060000px;}
.ls15{letter-spacing:0.064800px;}
.ls11{letter-spacing:0.067200px;}
.ls20{letter-spacing:0.072000px;}
.ls30{letter-spacing:0.075000px;}
.ls25{letter-spacing:0.081000px;}
.ls2e{letter-spacing:0.090000px;}
.ls2{letter-spacing:0.096000px;}
.ls9{letter-spacing:0.097200px;}
.ls4{letter-spacing:56.725206px;}
.ls1f{letter-spacing:73.962540px;}
.ls14{letter-spacing:82.766298px;}
.ls1a{letter-spacing:88.635474px;}
.ls34{letter-spacing:97.439232px;}
.lsf{letter-spacing:1175.372760px;}
.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;}
}
.ws5{word-spacing:-0.421200px;}
.ws6{word-spacing:-0.356400px;}
.ws2{word-spacing:-0.336000px;}
.ws28{word-spacing:-0.316800px;}
.ws30{word-spacing:-0.288000px;}
.ws24{word-spacing:-0.270000px;}
.ws0{word-spacing:-0.264000px;}
.ws1f{word-spacing:-0.259200px;}
.ws19{word-spacing:-0.252000px;}
.ws20{word-spacing:-0.243000px;}
.wse{word-spacing:-0.240000px;}
.wsc{word-spacing:-0.237600px;}
.wsf{word-spacing:-0.235200px;}
.ws23{word-spacing:-0.234000px;}
.ws4{word-spacing:-0.226800px;}
.ws27{word-spacing:-0.225000px;}
.ws8{word-spacing:-0.218400px;}
.wsb{word-spacing:-0.216000px;}
.ws16{word-spacing:-0.210000px;}
.ws22{word-spacing:-0.198000px;}
.ws25{word-spacing:-0.195000px;}
.ws3{word-spacing:-0.194400px;}
.ws1a{word-spacing:-0.192000px;}
.ws33{word-spacing:-0.186000px;}
.ws10{word-spacing:-0.184800px;}
.ws18{word-spacing:-0.180000px;}
.ws14{word-spacing:-0.178200px;}
.wsd{word-spacing:-0.168000px;}
.ws17{word-spacing:-0.165000px;}
.ws13{word-spacing:-0.162000px;}
.ws2b{word-spacing:-0.158400px;}
.ws1b{word-spacing:-0.153600px;}
.ws32{word-spacing:-0.151200px;}
.ws15{word-spacing:-0.150000px;}
.ws1d{word-spacing:-0.145800px;}
.ws2e{word-spacing:-0.145200px;}
.ws1{word-spacing:-0.144000px;}
.ws7{word-spacing:-0.134400px;}
.ws29{word-spacing:-0.132000px;}
.ws12{word-spacing:-0.129600px;}
.ws31{word-spacing:-0.126000px;}
.ws2d{word-spacing:-0.123200px;}
.ws9{word-spacing:-0.120000px;}
.ws11{word-spacing:-0.117600px;}
.ws21{word-spacing:-0.108000px;}
.ws26{word-spacing:-0.105000px;}
.ws1e{word-spacing:-0.097200px;}
.ws2c{word-spacing:-0.096800px;}
.ws2a{word-spacing:-0.088000px;}
.ws1c{word-spacing:-0.081000px;}
.ws34{word-spacing:-0.072000px;}
.ws2f{word-spacing:-0.052800px;}
.wsa{word-spacing:0.000000px;}
._0{margin-left:-1.200000px;}
._1{width:1.137660px;}
.fc4{color:transparent;}
.fc2{color:rgb(192,0,0);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(137,137,137);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.000000px;}
.fs8{font-size:72.000000px;}
.fsd{font-size:87.999960px;}
.fs5{font-size:120.000000px;}
.fsc{font-size:132.000000px;}
.fs9{font-size:150.000000px;}
.fs7{font-size:162.000000px;}
.fs4{font-size:168.000000px;}
.fsa{font-size:180.000000px;}
.fse{font-size:186.000000px;}
.fsb{font-size:192.000000px;}
.fs6{font-size:216.000000px;}
.fs1{font-size:240.000000px;}
.fs0{font-size:264.000000px;}
.fs2{font-size:324.000000px;}
.y17{bottom:-14.714675px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000035px;}
.y27{bottom:30.487495px;}
.y4a{bottom:35.756155px;}
.y16{bottom:57.285340px;}
.y9f{bottom:81.899965px;}
.y58{bottom:88.199965px;}
.y49{bottom:98.756200px;}
.y70{bottom:99.599965px;}
.y62{bottom:105.299965px;}
.y34{bottom:120.746365px;}
.y8f{bottom:122.099965px;}
.ya7{bottom:124.079965px;}
.y25{bottom:124.571515px;}
.y9e{bottom:125.099965px;}
.y57{bottom:126.479980px;}
.y15{bottom:129.285265px;}
.y6f{bottom:135.599965px;}
.ya{bottom:138.331630px;}
.y3f{bottom:144.746365px;}
.ya6{bottom:150.479980px;}
.y86{bottom:153.779980px;}
.y33{bottom:156.746365px;}
.y48{bottom:157.256215px;}
.y61{bottom:159.299965px;}
.y9d{bottom:161.099965px;}
.y8e{bottom:171.299965px;}
.y6e{bottom:171.599965px;}
.y56{bottom:175.199980px;}
.y9{bottom:175.351615px;}
.y24{bottom:177.791530px;}
.y7a{bottom:180.599965px;}
.y3e{bottom:187.946365px;}
.ya5{bottom:193.979980px;}
.y85{bottom:194.279980px;}
.y9c{bottom:197.399980px;}
.y14{bottom:201.285415px;}
.y32{bottom:201.746365px;}
.y6d{bottom:207.599965px;}
.y60{bottom:213.299965px;}
.y55{bottom:214.199980px;}
.y47{bottom:214.256065px;}
.y79{bottom:216.599965px;}
.y23{bottom:221.291530px;}
.y8{bottom:226.351615px;}
.y8d{bottom:229.799965px;}
.y84{bottom:233.279980px;}
.ya4{bottom:237.479980px;}
.y31{bottom:237.746365px;}
.y9b{bottom:240.899980px;}
.y3d{bottom:241.946365px;}
.y7{bottom:245.234065px;}
.y6c{bottom:252.599965px;}
.y54{bottom:253.199980px;}
.y78{bottom:261.599965px;}
.y22{bottom:265.571515px;}
.y5f{bottom:267.299965px;}
.y13{bottom:270.285265px;}
.y46{bottom:271.256215px;}
.y83{bottom:273.779980px;}
.ya3{bottom:280.979980px;}
.y30{bottom:282.746365px;}
.y9a{bottom:284.099965px;}
.y6b{bottom:288.599965px;}
.y8c{bottom:290.099965px;}
.y53{bottom:292.979980px;}
.y3c{bottom:294.746365px;}
.y77{bottom:306.599965px;}
.y82{bottom:312.779980px;}
.y21{bottom:318.791530px;}
.y12{bottom:319.785265px;}
.y99{bottom:320.099965px;}
.y5e{bottom:321.299965px;}
.y6{bottom:321.734065px;}
.ya2{bottom:324.479980px;}
.y6a{bottom:324.599965px;}
.y19{bottom:325.627915px;}
.y2f{bottom:327.746365px;}
.y45{bottom:329.756215px;}
.y8b{bottom:337.799965px;}
.y3b{bottom:337.946365px;}
.y52{bottom:340.199980px;}
.y76{bottom:342.599965px;}
.y18{bottom:349.927915px;}
.y81{bottom:351.779980px;}
.y98{bottom:356.099965px;}
.y69{bottom:360.599965px;}
.y20{bottom:362.291530px;}
.y2e{bottom:363.746365px;}
.ya1{bottom:367.979980px;}
.y11{bottom:370.785265px;}
.y5d{bottom:375.299965px;}
.y75{bottom:378.599965px;}
.y51{bottom:379.199980px;}
.y44{bottom:386.756065px;}
.y3a{bottom:392.246365px;}
.y80{bottom:392.279980px;}
.y97{bottom:392.399980px;}
.y68{bottom:396.599965px;}
.y8a{bottom:397.799965px;}
.y1f{bottom:406.571515px;}
.y2d{bottom:408.746365px;}
.ya0{bottom:411.479980px;}
.y5{bottom:414.734065px;}
.y50{bottom:418.199980px;}
.y10{bottom:420.285265px;}
.y74{bottom:423.599965px;}
.y5c{bottom:429.299965px;}
.y7f{bottom:431.279980px;}
.y67{bottom:432.599965px;}
.y96{bottom:434.399980px;}
.y39{bottom:435.446365px;}
.y43{bottom:443.756215px;}
.y2c{bottom:444.746365px;}
.y89{bottom:456.299965px;}
.y4f{bottom:457.979980px;}
.y73{bottom:459.599965px;}
.y1e{bottom:459.791530px;}
.yf{bottom:471.285265px;}
.y7e{bottom:471.779980px;}
.y66{bottom:477.599965px;}
.y5b{bottom:483.299965px;}
.y4{bottom:486.734065px;}
.y2b{bottom:489.746365px;}
.y72{bottom:495.599965px;}
.y42{bottom:502.256215px;}
.y1d{bottom:504.071515px;}
.y4e{bottom:506.699980px;}
.y7d{bottom:510.779980px;}
.y65{bottom:513.599965px;}
.y88{bottom:516.299965px;}
.ye{bottom:525.285265px;}
.y38{bottom:533.246365px;}
.y2a{bottom:534.746365px;}
.y5a{bottom:537.599965px;}
.y71{bottom:540.599965px;}
.y4d{bottom:545.699980px;}
.y64{bottom:549.599965px;}
.y7c{bottom:549.779980px;}
.y1c{bottom:556.571515px;}
.y3{bottom:558.734065px;}
.y41{bottom:559.256065px;}
.y87{bottom:575.099965px;}
.y37{bottom:576.746365px;}
.y59{bottom:579.599965px;}
.y29{bottom:579.746365px;}
.y4c{bottom:583.199980px;}
.y63{bottom:585.599965px;}
.y7b{bottom:589.199980px;}
.yd{bottom:597.285265px;}
.y95{bottom:607.162315px;}
.y1b{bottom:609.791530px;}
.y40{bottom:617.756065px;}
.y36{bottom:618.746365px;}
.y28{bottom:624.746365px;}
.y2{bottom:630.734065px;}
.y91{bottom:657.262315px;}
.y94{bottom:658.162315px;}
.yc{bottom:667.785265px;}
.y1a{bottom:683.662315px;}
.y4b{bottom:686.062315px;}
.y35{bottom:696.706765px;}
.y93{bottom:707.662315px;}
.y90{bottom:711.262315px;}
.y26{bottom:728.873965px;}
.yb{bottom:732.285265px;}
.y92{bottom:761.662315px;}
.he{height:51.679688px;}
.h16{height:86.132812px;}
.h7{height:87.128906px;}
.h14{height:94.746094px;}
.h15{height:102.763974px;}
.hf{height:107.666016px;}
.h13{height:108.911133px;}
.hd{height:116.279297px;}
.hc{height:117.624023px;}
.h9{height:120.585938px;}
.h6{height:121.980469px;}
.h10{height:129.199219px;}
.h11{height:137.812500px;}
.h12{height:139.406250px;}
.h8{height:155.039062px;}
.h5{height:172.265625px;}
.h3{height:174.257812px;}
.hb{height:189.492188px;}
.h2{height:191.683594px;}
.ha{height:222.780469px;}
.h4{height:235.248047px;}
.h1{height:809.999965px;}
.h0{height:810.000000px;}
.w1{width:1079.999850px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x11{left:10.799999px;}
.x7{left:32.002200px;}
.x12{left:35.881061px;}
.xb{left:40.507080px;}
.x8{left:44.318607px;}
.x13{left:64.799985px;}
.x18{left:66.433286px;}
.x2{left:77.128034px;}
.xc{left:81.007080px;}
.x1c{left:85.795590px;}
.x1a{left:87.358950px;}
.x10{left:99.553410px;}
.xf{left:100.729665px;}
.x14{left:105.299985px;}
.x1b{left:144.147645px;}
.x1f{left:162.626640px;}
.x23{left:169.243350px;}
.x3{left:208.319398px;}
.x15{left:231.778935px;}
.x17{left:251.098785px;}
.x16{left:279.361485px;}
.x5{left:280.944899px;}
.xa{left:289.029435px;}
.xd{left:301.735485px;}
.x1d{left:330.166635px;}
.x19{left:361.020735px;}
.x21{left:389.640735px;}
.x22{left:399.727785px;}
.x1e{left:530.804835px;}
.x20{left:532.839585px;}
.x4{left:567.909298px;}
.x9{left:747.187065px;}
.xe{left:1006.676850px;}
.x1{left:1016.816549px;}
.x6{left:1018.172999px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:35.199947pt;}
.v2{vertical-align:89.600000pt;}
.v1{vertical-align:91.369099pt;}
.ls7{letter-spacing:-0.115200pt;}
.ls10{letter-spacing:-0.106667pt;}
.ls3d{letter-spacing:-0.093867pt;}
.ls8{letter-spacing:-0.086400pt;}
.ls6{letter-spacing:-0.085333pt;}
.ls26{letter-spacing:-0.072000pt;}
.ls2c{letter-spacing:-0.064000pt;}
.ls28{letter-spacing:-0.057600pt;}
.ls3b{letter-spacing:-0.048000pt;}
.ls12{letter-spacing:-0.044800pt;}
.ls31{letter-spacing:-0.040000pt;}
.ls24{letter-spacing:-0.034133pt;}
.ls39{letter-spacing:-0.031289pt;}
.lsb{letter-spacing:-0.029867pt;}
.ls17{letter-spacing:-0.028800pt;}
.ls1d{letter-spacing:-0.026667pt;}
.ls2d{letter-spacing:-0.016000pt;}
.ls3c{letter-spacing:-0.014933pt;}
.ls27{letter-spacing:-0.014400pt;}
.ls18{letter-spacing:-0.012800pt;}
.ls5{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.007822pt;}
.ls35{letter-spacing:0.008533pt;}
.ls33{letter-spacing:0.011456pt;}
.ls2b{letter-spacing:0.011733pt;}
.ls2a{letter-spacing:0.011893pt;}
.ls19{letter-spacing:0.013019pt;}
.ls1c{letter-spacing:0.013333pt;}
.ls13{letter-spacing:0.014064pt;}
.ls16{letter-spacing:0.014400pt;}
.lse{letter-spacing:0.014933pt;}
.ls1e{letter-spacing:0.015627pt;}
.ls0{letter-spacing:0.016000pt;}
.lsd{letter-spacing:0.019200pt;}
.ls1{letter-spacing:0.021333pt;}
.ls3{letter-spacing:0.021867pt;}
.ls36{letter-spacing:0.023467pt;}
.ls23{letter-spacing:0.026000pt;}
.lsa{letter-spacing:0.028800pt;}
.ls22{letter-spacing:0.029227pt;}
.ls38{letter-spacing:0.031289pt;}
.ls21{letter-spacing:0.032000pt;}
.ls2f{letter-spacing:0.040000pt;}
.ls3a{letter-spacing:0.042667pt;}
.lsc{letter-spacing:0.044800pt;}
.ls32{letter-spacing:0.046933pt;}
.ls29{letter-spacing:0.048000pt;}
.ls1b{letter-spacing:0.053333pt;}
.ls15{letter-spacing:0.057600pt;}
.ls11{letter-spacing:0.059733pt;}
.ls20{letter-spacing:0.064000pt;}
.ls30{letter-spacing:0.066667pt;}
.ls25{letter-spacing:0.072000pt;}
.ls2e{letter-spacing:0.080000pt;}
.ls2{letter-spacing:0.085333pt;}
.ls9{letter-spacing:0.086400pt;}
.ls4{letter-spacing:50.422405pt;}
.ls1f{letter-spacing:65.744480pt;}
.ls14{letter-spacing:73.570043pt;}
.ls1a{letter-spacing:78.787088pt;}
.ls34{letter-spacing:86.612651pt;}
.lsf{letter-spacing:1044.775787pt;}
.ws5{word-spacing:-0.374400pt;}
.ws6{word-spacing:-0.316800pt;}
.ws2{word-spacing:-0.298667pt;}
.ws28{word-spacing:-0.281600pt;}
.ws30{word-spacing:-0.256000pt;}
.ws24{word-spacing:-0.240000pt;}
.ws0{word-spacing:-0.234667pt;}
.ws1f{word-spacing:-0.230400pt;}
.ws19{word-spacing:-0.224000pt;}
.ws20{word-spacing:-0.216000pt;}
.wse{word-spacing:-0.213333pt;}
.wsc{word-spacing:-0.211200pt;}
.wsf{word-spacing:-0.209067pt;}
.ws23{word-spacing:-0.208000pt;}
.ws4{word-spacing:-0.201600pt;}
.ws27{word-spacing:-0.200000pt;}
.ws8{word-spacing:-0.194133pt;}
.wsb{word-spacing:-0.192000pt;}
.ws16{word-spacing:-0.186667pt;}
.ws22{word-spacing:-0.176000pt;}
.ws25{word-spacing:-0.173333pt;}
.ws3{word-spacing:-0.172800pt;}
.ws1a{word-spacing:-0.170667pt;}
.ws33{word-spacing:-0.165333pt;}
.ws10{word-spacing:-0.164267pt;}
.ws18{word-spacing:-0.160000pt;}
.ws14{word-spacing:-0.158400pt;}
.wsd{word-spacing:-0.149333pt;}
.ws17{word-spacing:-0.146667pt;}
.ws13{word-spacing:-0.144000pt;}
.ws2b{word-spacing:-0.140800pt;}
.ws1b{word-spacing:-0.136533pt;}
.ws32{word-spacing:-0.134400pt;}
.ws15{word-spacing:-0.133333pt;}
.ws1d{word-spacing:-0.129600pt;}
.ws2e{word-spacing:-0.129067pt;}
.ws1{word-spacing:-0.128000pt;}
.ws7{word-spacing:-0.119467pt;}
.ws29{word-spacing:-0.117333pt;}
.ws12{word-spacing:-0.115200pt;}
.ws31{word-spacing:-0.112000pt;}
.ws2d{word-spacing:-0.109511pt;}
.ws9{word-spacing:-0.106667pt;}
.ws11{word-spacing:-0.104533pt;}
.ws21{word-spacing:-0.096000pt;}
.ws26{word-spacing:-0.093333pt;}
.ws1e{word-spacing:-0.086400pt;}
.ws2c{word-spacing:-0.086044pt;}
.ws2a{word-spacing:-0.078222pt;}
.ws1c{word-spacing:-0.072000pt;}
.ws34{word-spacing:-0.064000pt;}
.ws2f{word-spacing:-0.046933pt;}
.wsa{word-spacing:0.000000pt;}
._0{margin-left:-1.066667pt;}
._1{width:1.011253pt;}
.fs3{font-size:42.666667pt;}
.fs8{font-size:64.000000pt;}
.fsd{font-size:78.222187pt;}
.fs5{font-size:106.666667pt;}
.fsc{font-size:117.333333pt;}
.fs9{font-size:133.333333pt;}
.fs7{font-size:144.000000pt;}
.fs4{font-size:149.333333pt;}
.fsa{font-size:160.000000pt;}
.fse{font-size:165.333333pt;}
.fsb{font-size:170.666667pt;}
.fs6{font-size:192.000000pt;}
.fs1{font-size:213.333333pt;}
.fs0{font-size:234.666667pt;}
.fs2{font-size:288.000000pt;}
.y17{bottom:-13.079711pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000031pt;}
.y27{bottom:27.099996pt;}
.y4a{bottom:31.783249pt;}
.y16{bottom:50.920302pt;}
.y9f{bottom:72.799969pt;}
.y58{bottom:78.399969pt;}
.y49{bottom:87.783289pt;}
.y70{bottom:88.533302pt;}
.y62{bottom:93.599969pt;}
.y34{bottom:107.330102pt;}
.y8f{bottom:108.533302pt;}
.ya7{bottom:110.293302pt;}
.y25{bottom:110.730236pt;}
.y9e{bottom:111.199969pt;}
.y57{bottom:112.426649pt;}
.y15{bottom:114.920236pt;}
.y6f{bottom:120.533302pt;}
.ya{bottom:122.961449pt;}
.y3f{bottom:128.663436pt;}
.ya6{bottom:133.759982pt;}
.y86{bottom:136.693316pt;}
.y33{bottom:139.330102pt;}
.y48{bottom:139.783302pt;}
.y61{bottom:141.599969pt;}
.y9d{bottom:143.199969pt;}
.y8e{bottom:152.266636pt;}
.y6e{bottom:152.533302pt;}
.y56{bottom:155.733316pt;}
.y9{bottom:155.868102pt;}
.y24{bottom:158.036916pt;}
.y7a{bottom:160.533302pt;}
.y3e{bottom:167.063436pt;}
.ya5{bottom:172.426649pt;}
.y85{bottom:172.693316pt;}
.y9c{bottom:175.466649pt;}
.y14{bottom:178.920369pt;}
.y32{bottom:179.330102pt;}
.y6d{bottom:184.533302pt;}
.y60{bottom:189.599969pt;}
.y55{bottom:190.399982pt;}
.y47{bottom:190.449836pt;}
.y79{bottom:192.533302pt;}
.y23{bottom:196.703582pt;}
.y8{bottom:201.201436pt;}
.y8d{bottom:204.266636pt;}
.y84{bottom:207.359982pt;}
.ya4{bottom:211.093316pt;}
.y31{bottom:211.330102pt;}
.y9b{bottom:214.133316pt;}
.y3d{bottom:215.063436pt;}
.y7{bottom:217.985836pt;}
.y6c{bottom:224.533302pt;}
.y54{bottom:225.066649pt;}
.y78{bottom:232.533302pt;}
.y22{bottom:236.063569pt;}
.y5f{bottom:237.599969pt;}
.y13{bottom:240.253569pt;}
.y46{bottom:241.116636pt;}
.y83{bottom:243.359982pt;}
.ya3{bottom:249.759982pt;}
.y30{bottom:251.330102pt;}
.y9a{bottom:252.533302pt;}
.y6b{bottom:256.533302pt;}
.y8c{bottom:257.866636pt;}
.y53{bottom:260.426649pt;}
.y3c{bottom:261.996769pt;}
.y77{bottom:272.533302pt;}
.y82{bottom:278.026649pt;}
.y21{bottom:283.370249pt;}
.y12{bottom:284.253569pt;}
.y99{bottom:284.533302pt;}
.y5e{bottom:285.599969pt;}
.y6{bottom:285.985836pt;}
.ya2{bottom:288.426649pt;}
.y6a{bottom:288.533302pt;}
.y19{bottom:289.447036pt;}
.y2f{bottom:291.330102pt;}
.y45{bottom:293.116636pt;}
.y8b{bottom:300.266636pt;}
.y3b{bottom:300.396769pt;}
.y52{bottom:302.399982pt;}
.y76{bottom:304.533302pt;}
.y18{bottom:311.047036pt;}
.y81{bottom:312.693316pt;}
.y98{bottom:316.533302pt;}
.y69{bottom:320.533302pt;}
.y20{bottom:322.036916pt;}
.y2e{bottom:323.330102pt;}
.ya1{bottom:327.093316pt;}
.y11{bottom:329.586902pt;}
.y5d{bottom:333.599969pt;}
.y75{bottom:336.533302pt;}
.y51{bottom:337.066649pt;}
.y44{bottom:343.783169pt;}
.y3a{bottom:348.663436pt;}
.y80{bottom:348.693316pt;}
.y97{bottom:348.799982pt;}
.y68{bottom:352.533302pt;}
.y8a{bottom:353.599969pt;}
.y1f{bottom:361.396902pt;}
.y2d{bottom:363.330102pt;}
.ya0{bottom:365.759982pt;}
.y5{bottom:368.652502pt;}
.y50{bottom:371.733316pt;}
.y10{bottom:373.586902pt;}
.y74{bottom:376.533302pt;}
.y5c{bottom:381.599969pt;}
.y7f{bottom:383.359982pt;}
.y67{bottom:384.533302pt;}
.y96{bottom:386.133316pt;}
.y39{bottom:387.063436pt;}
.y43{bottom:394.449969pt;}
.y2c{bottom:395.330102pt;}
.y89{bottom:405.599969pt;}
.y4f{bottom:407.093316pt;}
.y73{bottom:408.533302pt;}
.y1e{bottom:408.703582pt;}
.yf{bottom:418.920236pt;}
.y7e{bottom:419.359982pt;}
.y66{bottom:424.533302pt;}
.y5b{bottom:429.599969pt;}
.y4{bottom:432.652502pt;}
.y2b{bottom:435.330102pt;}
.y72{bottom:440.533302pt;}
.y42{bottom:446.449969pt;}
.y1d{bottom:448.063569pt;}
.y4e{bottom:450.399982pt;}
.y7d{bottom:454.026649pt;}
.y65{bottom:456.533302pt;}
.y88{bottom:458.933302pt;}
.ye{bottom:466.920236pt;}
.y38{bottom:473.996769pt;}
.y2a{bottom:475.330102pt;}
.y5a{bottom:477.866636pt;}
.y71{bottom:480.533302pt;}
.y4d{bottom:485.066649pt;}
.y64{bottom:488.533302pt;}
.y7c{bottom:488.693316pt;}
.y1c{bottom:494.730236pt;}
.y3{bottom:496.652502pt;}
.y41{bottom:497.116502pt;}
.y87{bottom:511.199969pt;}
.y37{bottom:512.663436pt;}
.y59{bottom:515.199969pt;}
.y29{bottom:515.330102pt;}
.y4c{bottom:518.399982pt;}
.y63{bottom:520.533302pt;}
.y7b{bottom:523.733316pt;}
.yd{bottom:530.920236pt;}
.y95{bottom:539.699836pt;}
.y1b{bottom:542.036916pt;}
.y40{bottom:549.116502pt;}
.y36{bottom:549.996769pt;}
.y28{bottom:555.330102pt;}
.y2{bottom:560.652502pt;}
.y91{bottom:584.233169pt;}
.y94{bottom:585.033169pt;}
.yc{bottom:593.586902pt;}
.y1a{bottom:607.699836pt;}
.y4b{bottom:609.833169pt;}
.y35{bottom:619.294902pt;}
.y93{bottom:629.033169pt;}
.y90{bottom:632.233169pt;}
.y26{bottom:647.887969pt;}
.yb{bottom:650.920236pt;}
.y92{bottom:677.033169pt;}
.he{height:45.937500pt;}
.h16{height:76.562500pt;}
.h7{height:77.447917pt;}
.h14{height:84.218750pt;}
.h15{height:91.345754pt;}
.hf{height:95.703125pt;}
.h13{height:96.809896pt;}
.hd{height:103.359375pt;}
.hc{height:104.554688pt;}
.h9{height:107.187500pt;}
.h6{height:108.427083pt;}
.h10{height:114.843750pt;}
.h11{height:122.500000pt;}
.h12{height:123.916667pt;}
.h8{height:137.812500pt;}
.h5{height:153.125000pt;}
.h3{height:154.895833pt;}
.hb{height:168.437500pt;}
.h2{height:170.385417pt;}
.ha{height:198.027083pt;}
.h4{height:209.109375pt;}
.h1{height:719.999969pt;}
.h0{height:720.000000pt;}
.w1{width:959.999867pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x11{left:9.599999pt;}
.x7{left:28.446400pt;}
.x12{left:31.894276pt;}
.xb{left:36.006293pt;}
.x8{left:39.394317pt;}
.x13{left:57.599987pt;}
.x18{left:59.051809pt;}
.x2{left:68.558252pt;}
.xc{left:72.006293pt;}
.x1c{left:76.262747pt;}
.x1a{left:77.652400pt;}
.x10{left:88.491920pt;}
.xf{left:89.537480pt;}
.x14{left:93.599987pt;}
.x1b{left:128.131240pt;}
.x1f{left:144.557013pt;}
.x23{left:150.438533pt;}
.x3{left:185.172799pt;}
.x15{left:206.025720pt;}
.x17{left:223.198920pt;}
.x16{left:248.321320pt;}
.x5{left:249.728799pt;}
.xa{left:256.915053pt;}
.xd{left:268.209320pt;}
.x1d{left:293.481453pt;}
.x19{left:320.907320pt;}
.x21{left:346.347320pt;}
.x22{left:355.313587pt;}
.x1e{left:471.826520pt;}
.x20{left:473.635187pt;}
.x4{left:504.808265pt;}
.x9{left:664.166280pt;}
.xe{left:894.823867pt;}
.x1{left:903.836932pt;}
.x6{left:905.042665pt;}
}




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