
    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_1800c843b1524ccc7821d1a5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_45185d5ad0a125038c6c13aa.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_17ff4bbe65b154a0be13df8e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1394665ea694f70ef8373b49.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_703b2fad48ffd67f0ddfec44.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_7bce19e7fe652f3bdf038229.woff')format("woff");}.ff6{font-family:ff6;line-height:0.728027;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_08d57d7a7616b7d47f542068.woff')format("woff");}.ff7{font-family:ff7;line-height:0.929688;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;}
.m1{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-39.600000px;}
.v2{vertical-align:-35.280000px;}
.v3{vertical-align:-32.400000px;}
.v6{vertical-align:-23.059440px;}
.v4{vertical-align:-17.279400px;}
.v5{vertical-align:-1.532160px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:39.600000px;}
.ls1e{letter-spacing:-7.182000px;}
.ls1f{letter-spacing:-4.875120px;}
.ls36{letter-spacing:-0.432000px;}
.ls2{letter-spacing:-0.384480px;}
.ls15{letter-spacing:-0.324000px;}
.ls14{letter-spacing:-0.288000px;}
.ls1c{letter-spacing:-0.263520px;}
.ls2b{letter-spacing:-0.240480px;}
.ls6{letter-spacing:-0.167760px;}
.ls13{letter-spacing:-0.144000px;}
.ls29{letter-spacing:-0.087840px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.012024px;}
.ls11{letter-spacing:0.037440px;}
.ls31{letter-spacing:0.054000px;}
.ls33{letter-spacing:0.087840px;}
.ls30{letter-spacing:0.096480px;}
.lsb{letter-spacing:0.120240px;}
.ls0{letter-spacing:0.120960px;}
.ls4{letter-spacing:0.131760px;}
.ls35{letter-spacing:0.144000px;}
.ls1d{letter-spacing:0.167760px;}
.ls20{letter-spacing:0.191520px;}
.ls5{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.335520px;}
.ls26{letter-spacing:0.360720px;}
.ls2a{letter-spacing:0.395280px;}
.ls2f{letter-spacing:0.768960px;}
.ls16{letter-spacing:0.816912px;}
.ls1a{letter-spacing:19.978560px;}
.ls22{letter-spacing:27.195840px;}
.ls25{letter-spacing:32.825520px;}
.ls2e{letter-spacing:36.000000px;}
.ls19{letter-spacing:36.120960px;}
.lsa{letter-spacing:36.497520px;}
.ls34{letter-spacing:36.629280px;}
.ls7{letter-spacing:36.684000px;}
.ls8{letter-spacing:36.761040px;}
.ls28{letter-spacing:36.840960px;}
.ls32{letter-spacing:36.945504px;}
.ls9{letter-spacing:37.551600px;}
.ls17{letter-spacing:37.560960px;}
.ls18{letter-spacing:39.564000px;}
.ls12{letter-spacing:39.960000px;}
.ls1b{letter-spacing:40.977360px;}
.ls2c{letter-spacing:46.301760px;}
.ls2d{letter-spacing:46.805040px;}
.ls23{letter-spacing:46.838592px;}
.ls24{letter-spacing:47.140560px;}
.ls21{letter-spacing:65.520000px;}
.ls27{letter-spacing:112.440960px;}
.lse{letter-spacing:149.328000px;}
.lsf{letter-spacing:157.392000px;}
.ls10{letter-spacing:189.648000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(51,51,204),0 0.015em rgb(51,51,204),0.015em 0 rgb(51,51,204),0 -0.015em  rgb(51,51,204);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(51,51,204);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3d{word-spacing:-193.008960px;}
.ws2d{word-spacing:-95.760000px;}
.ws3f{word-spacing:-53.442720px;}
.ws24{word-spacing:-46.972800px;}
.ws10{word-spacing:-46.637280px;}
.ws8{word-spacing:-46.469520px;}
.ws11{word-spacing:-40.320000px;}
.ws13{word-spacing:-40.032000px;}
.ws12{word-spacing:-39.888000px;}
.ws37{word-spacing:-37.024560px;}
.ws1e{word-spacing:-36.761040px;}
.ws1d{word-spacing:-36.629280px;}
.ws41{word-spacing:-33.546960px;}
.ws25{word-spacing:-31.754160px;}
.ws31{word-spacing:-29.700000px;}
.ws26{word-spacing:-26.812800px;}
.ws27{word-spacing:-26.621280px;}
.ws40{word-spacing:-24.507360px;}
.ws23{word-spacing:-24.419520px;}
.ws0{word-spacing:-20.016000px;}
.ws18{word-spacing:-2.525040px;}
.ws7{word-spacing:-2.304000px;}
.wsd{word-spacing:-1.803600px;}
.ws44{word-spacing:-1.728000px;}
.ws6{word-spacing:-1.584000px;}
.ws3e{word-spacing:-1.537920px;}
.ws5{word-spacing:-1.512000px;}
.ws43{word-spacing:-1.152000px;}
.wsb{word-spacing:-1.082160px;}
.ws42{word-spacing:-0.864000px;}
.ws22{word-spacing:-0.838800px;}
.ws4{word-spacing:-0.790560px;}
.ws2{word-spacing:-0.768960px;}
.ws2a{word-spacing:-0.720000px;}
.ws29{word-spacing:-0.670320px;}
.wsf{word-spacing:-0.360720px;}
.ws3a{word-spacing:-0.335520px;}
.ws17{word-spacing:-0.288000px;}
.wsc{word-spacing:-0.167760px;}
.ws19{word-spacing:-0.144000px;}
.wsa{word-spacing:-0.131760px;}
.ws1c{word-spacing:-0.108000px;}
.ws3{word-spacing:0.000000px;}
.ws34{word-spacing:0.167760px;}
.ws1{word-spacing:0.192240px;}
.ws39{word-spacing:0.240480px;}
.ws2e{word-spacing:0.335520px;}
.ws1b{word-spacing:0.432000px;}
.ws30{word-spacing:0.461160px;}
.ws45{word-spacing:0.576000px;}
.ws9{word-spacing:0.658800px;}
.ws46{word-spacing:0.720000px;}
.ws38{word-spacing:0.766080px;}
.ws3b{word-spacing:0.838800px;}
.ws33{word-spacing:1.006560px;}
.ws21{word-spacing:1.054080px;}
.ws1a{word-spacing:1.152000px;}
.wse{word-spacing:1.449360px;}
.ws16{word-spacing:1.845360px;}
.ws32{word-spacing:1.884168px;}
.ws1f{word-spacing:2.516400px;}
.ws3c{word-spacing:2.592000px;}
.ws2f{word-spacing:2.755440px;}
.ws20{word-spacing:4.026240px;}
.ws28{word-spacing:7.182000px;}
.ws36{word-spacing:35.089056px;}
.ws14{word-spacing:119.232000px;}
.ws35{word-spacing:139.674240px;}
.ws15{word-spacing:166.752000px;}
.ws2c{word-spacing:843.741360px;}
.ws2b{word-spacing:848.529360px;}
._c{margin-left:-2571.251760px;}
._a{margin-left:-16.248168px;}
._7{margin-left:-10.264104px;}
._11{margin-left:-9.019296px;}
._3{margin-left:-7.984800px;}
._4{margin-left:-6.543792px;}
._12{margin-left:-5.184000px;}
._5{margin-left:-4.065624px;}
._6{margin-left:-3.056616px;}
._1{margin-left:-1.903176px;}
._0{width:1.018872px;}
._2{width:2.301192px;}
._9{width:3.744000px;}
._b{width:5.138640px;}
._10{width:48.147120px;}
._d{width:134.713464px;}
._e{width:215.555568px;}
._f{width:569.903040px;}
._8{width:956.749680px;}
.fc4{color:rgb(0,128,0);}
.fc3{color:rgb(204,102,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(51,51,204);}
.fsa{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fsb{font-size:64.080000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:87.840000px;}
.fs5{font-size:95.760000px;}
.fs7{font-size:108.000000px;}
.fs8{font-size:120.240000px;}
.fs1{font-size:131.760000px;}
.fsc{font-size:138.887235px;}
.fs9{font-size:144.000000px;}
.fs6{font-size:167.760000px;}
.fs0{font-size:192.240000px;}
.y0{bottom:0.000000px;}
.yb{bottom:19.012350px;}
.y8{bottom:62.416200px;}
.y7a{bottom:63.690000px;}
.y69{bottom:78.043140px;}
.y85{bottom:81.487260px;}
.y7{bottom:84.736200px;}
.y6c{bottom:86.752500px;}
.y33{bottom:90.156480px;}
.y2e{bottom:90.615000px;}
.y6{bottom:106.876200px;}
.y68{bottom:112.612500px;}
.y84{bottom:122.879880px;}
.y6b{bottom:127.623480px;}
.y2d{bottom:129.330000px;}
.y58{bottom:130.162500px;}
.y4f{bottom:134.812500px;}
.y32{bottom:135.712500px;}
.y12{bottom:138.156480px;}
.y3f{bottom:149.452350px;}
.y67{bottom:160.120080px;}
.y59{bottom:163.726380px;}
.y83{bottom:164.272500px;}
.y4{bottom:166.560000px;}
.y6a{bottom:167.212500px;}
.y82{bottom:170.587500px;}
.y9a{bottom:171.307500px;}
.y2c{bottom:176.850000px;}
.y11{bottom:183.712500px;}
.y44{bottom:183.725460px;}
.y73{bottom:184.065000px;}
.y24{bottom:191.414760px;}
.y99{bottom:195.067500px;}
.y66{bottom:207.652500px;}
.y62{bottom:223.605000px;}
.y43{bottom:229.281480px;}
.y72{bottom:231.585000px;}
.y98{bottom:232.327500px;}
.y23{bottom:232.807380px;}
.y4d{bottom:234.832500px;}
.y3a{bottom:242.077500px;}
.y79{bottom:248.385000px;}
.y5a{bottom:248.857020px;}
.y38{bottom:250.968780px;}
.y89{bottom:251.775000px;}
.y5{bottom:255.022500px;}
.y97{bottom:256.087500px;}
.y31{bottom:263.400000px;}
.y2b{bottom:269.190000px;}
.y22{bottom:274.200000px;}
.y42{bottom:274.837500px;}
.y96{bottom:279.847500px;}
.y37{bottom:292.361400px;}
.y78{bottom:295.905000px;}
.y61{bottom:300.825000px;}
.y53{bottom:305.062500px;}
.y4c{bottom:312.052500px;}
.y21{bottom:316.680000px;}
.y2a{bottom:316.710000px;}
.y95{bottom:317.107500px;}
.y81{bottom:323.775000px;}
.y71{bottom:331.920000px;}
.y48{bottom:333.718980px;}
.y5b{bottom:333.987660px;}
.y94{bottom:340.867500px;}
.y1b{bottom:359.591250px;}
.y45{bottom:360.427500px;}
.y52{bottom:369.862500px;}
.y10{bottom:373.837500px;}
.y60{bottom:378.045000px;}
.y93{bottom:378.127500px;}
.y47{bottom:379.275000px;}
.y70{bottom:379.440000px;}
.y5c{bottom:384.979860px;}
.y20{bottom:388.867380px;}
.y4b{bottom:389.272500px;}
.y87{bottom:396.337500px;}
.y92{bottom:401.887500px;}
.y29{bottom:404.805000px;}
.y19{bottom:407.067000px;}
.y6f{bottom:426.960000px;}
.y1f{bottom:430.260000px;}
.y17{bottom:430.468980px;}
.y51{bottom:434.662500px;}
.y91{bottom:439.147500px;}
.y5d{bottom:449.887500px;}
.y65{bottom:452.688960px;}
.y5f{bottom:455.265000px;}
.y28{bottom:460.065000px;}
.y90{bottom:462.907500px;}
.y4a{bottom:466.492500px;}
.y80{bottom:466.837500px;}
.y1e{bottom:472.740000px;}
.y3e{bottom:472.843980px;}
.y16{bottom:476.025000px;}
.y77{bottom:485.445000px;}
.y8f{bottom:486.667500px;}
.y64{bottom:492.277980px;}
.y5e{bottom:500.805000px;}
.y27{bottom:507.585000px;}
.y7c{bottom:508.980000px;}
.y57{bottom:511.138920px;}
.y86{bottom:512.445000px;}
.y36{bottom:515.737260px;}
.y7f{bottom:517.866480px;}
.y3d{bottom:518.400000px;}
.y54{bottom:520.762500px;}
.y50{bottom:521.062500px;}
.y8e{bottom:523.927500px;}
.y6e{bottom:529.065000px;}
.y15{bottom:529.475460px;}
.y39{bottom:537.202350px;}
.y63{bottom:540.885000px;}
.y49{bottom:543.712500px;}
.y1d{bottom:544.920000px;}
.y8d{bottom:547.687500px;}
.y56{bottom:550.732800px;}
.y30{bottom:552.525000px;}
.y76{bottom:554.565000px;}
.y26{bottom:555.105000px;}
.y35{bottom:557.129880px;}
.y41{bottom:557.968980px;}
.y7e{bottom:563.406480px;}
.yf{bottom:566.406480px;}
.y88{bottom:569.587500px;}
.y14{bottom:575.031480px;}
.y6d{bottom:576.585000px;}
.y3{bottom:577.953240px;}
.y46{bottom:578.025000px;}
.y3c{bottom:583.468980px;}
.y1a{bottom:584.268000px;}
.y8c{bottom:584.947500px;}
.y1c{bottom:587.400000px;}
.y34{bottom:598.522500px;}
.y75{bottom:602.085000px;}
.y25{bottom:602.625000px;}
.y40{bottom:603.525000px;}
.y8b{bottom:608.707500px;}
.y7d{bottom:608.962500px;}
.ye{bottom:611.962500px;}
.y55{bottom:616.777500px;}
.y13{bottom:620.587500px;}
.y2f{bottom:628.125000px;}
.y3b{bottom:629.025000px;}
.y8a{bottom:632.467500px;}
.y2{bottom:635.529120px;}
.y18{bottom:636.945000px;}
.y4e{bottom:648.187500px;}
.yd{bottom:690.427500px;}
.y1{bottom:693.105000px;}
.y74{bottom:696.187500px;}
.y7b{bottom:718.605000px;}
.ya{bottom:772.762500px;}
.y9{bottom:773.452200px;}
.yc{bottom:774.075000px;}
.h3{height:39.339844px;}
.he{height:52.417969px;}
.h4{height:52.453125px;}
.h5{height:69.715898px;}
.h6{height:69.762656px;}
.ha{height:74.988281px;}
.h9{height:78.679688px;}
.hb{height:87.596719px;}
.hf{height:95.924883px;}
.h8{height:95.989219px;}
.h14{height:96.052699px;}
.hd{height:96.053299px;}
.h13{height:96.434398px;}
.h2{height:103.592813px;}
.h10{height:103.642492px;}
.h11{height:104.835938px;}
.hc{height:104.906250px;}
.h7{height:122.133867px;}
.h1{height:139.955977px;}
.h12{height:161.451562px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x6{left:31.984950px;}
.xa{left:57.487500px;}
.xb{left:71.602500px;}
.x37{left:74.550000px;}
.x36{left:78.120000px;}
.xf{left:79.807500px;}
.x1{left:85.822500px;}
.x10{left:100.507500px;}
.x1f{left:109.517760px;}
.x24{left:117.112500px;}
.x31{left:127.579500px;}
.x20{left:152.702100px;}
.x2c{left:159.487500px;}
.x2{left:164.304480px;}
.xd{left:167.186250px;}
.x25{left:169.492500px;}
.x3{left:205.811250px;}
.x23{left:216.000000px;}
.x2e{left:219.408750px;}
.x5{left:222.424950px;}
.xc{left:227.474580px;}
.x2a{left:235.057020px;}
.x19{left:253.050000px;}
.x2f{left:256.502790px;}
.x29{left:263.138640px;}
.x27{left:271.972500px;}
.x32{left:303.799500px;}
.x7{left:308.175000px;}
.x15{left:319.155000px;}
.x16{left:321.135000px;}
.x17{left:329.055000px;}
.x4{left:339.375000px;}
.xe{left:349.886250px;}
.x30{left:377.988750px;}
.x14{left:383.175000px;}
.x18{left:386.475000px;}
.x26{left:393.787500px;}
.x21{left:396.440460px;}
.x33{left:429.135000px;}
.x34{left:430.522500px;}
.x1b{left:432.052380px;}
.x1a{left:444.127500px;}
.x35{left:462.127500px;}
.x8{left:482.520000px;}
.x2d{left:487.807500px;}
.x2b{left:490.687500px;}
.x1e{left:637.800000px;}
.x12{left:673.684500px;}
.x22{left:675.487500px;}
.x13{left:742.102500px;}
.x11{left:778.687500px;}
.x28{left:820.773060px;}
.x1c{left:1016.437650px;}
.x1d{left:1018.874850px;}
.x9{left:1037.550000px;}
@media print{
.v7{vertical-align:-35.200000pt;}
.v2{vertical-align:-31.360000pt;}
.v3{vertical-align:-28.800000pt;}
.v6{vertical-align:-20.497280pt;}
.v4{vertical-align:-15.359467pt;}
.v5{vertical-align:-1.361920pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:35.200000pt;}
.ls1e{letter-spacing:-6.384000pt;}
.ls1f{letter-spacing:-4.333440pt;}
.ls36{letter-spacing:-0.384000pt;}
.ls2{letter-spacing:-0.341760pt;}
.ls15{letter-spacing:-0.288000pt;}
.ls14{letter-spacing:-0.256000pt;}
.ls1c{letter-spacing:-0.234240pt;}
.ls2b{letter-spacing:-0.213760pt;}
.ls6{letter-spacing:-0.149120pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls29{letter-spacing:-0.078080pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.010688pt;}
.ls11{letter-spacing:0.033280pt;}
.ls31{letter-spacing:0.048000pt;}
.ls33{letter-spacing:0.078080pt;}
.ls30{letter-spacing:0.085760pt;}
.lsb{letter-spacing:0.106880pt;}
.ls0{letter-spacing:0.107520pt;}
.ls4{letter-spacing:0.117120pt;}
.ls35{letter-spacing:0.128000pt;}
.ls1d{letter-spacing:0.149120pt;}
.ls20{letter-spacing:0.170240pt;}
.ls5{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.298240pt;}
.ls26{letter-spacing:0.320640pt;}
.ls2a{letter-spacing:0.351360pt;}
.ls2f{letter-spacing:0.683520pt;}
.ls16{letter-spacing:0.726144pt;}
.ls1a{letter-spacing:17.758720pt;}
.ls22{letter-spacing:24.174080pt;}
.ls25{letter-spacing:29.178240pt;}
.ls2e{letter-spacing:32.000000pt;}
.ls19{letter-spacing:32.107520pt;}
.lsa{letter-spacing:32.442240pt;}
.ls34{letter-spacing:32.559360pt;}
.ls7{letter-spacing:32.608000pt;}
.ls8{letter-spacing:32.676480pt;}
.ls28{letter-spacing:32.747520pt;}
.ls32{letter-spacing:32.840448pt;}
.ls9{letter-spacing:33.379200pt;}
.ls17{letter-spacing:33.387520pt;}
.ls18{letter-spacing:35.168000pt;}
.ls12{letter-spacing:35.520000pt;}
.ls1b{letter-spacing:36.424320pt;}
.ls2c{letter-spacing:41.157120pt;}
.ls2d{letter-spacing:41.604480pt;}
.ls23{letter-spacing:41.634304pt;}
.ls24{letter-spacing:41.902720pt;}
.ls21{letter-spacing:58.240000pt;}
.ls27{letter-spacing:99.947520pt;}
.lse{letter-spacing:132.736000pt;}
.lsf{letter-spacing:139.904000pt;}
.ls10{letter-spacing:168.576000pt;}
.ws3d{word-spacing:-171.563520pt;}
.ws2d{word-spacing:-85.120000pt;}
.ws3f{word-spacing:-47.504640pt;}
.ws24{word-spacing:-41.753600pt;}
.ws10{word-spacing:-41.455360pt;}
.ws8{word-spacing:-41.306240pt;}
.ws11{word-spacing:-35.840000pt;}
.ws13{word-spacing:-35.584000pt;}
.ws12{word-spacing:-35.456000pt;}
.ws37{word-spacing:-32.910720pt;}
.ws1e{word-spacing:-32.676480pt;}
.ws1d{word-spacing:-32.559360pt;}
.ws41{word-spacing:-29.819520pt;}
.ws25{word-spacing:-28.225920pt;}
.ws31{word-spacing:-26.400000pt;}
.ws26{word-spacing:-23.833600pt;}
.ws27{word-spacing:-23.663360pt;}
.ws40{word-spacing:-21.784320pt;}
.ws23{word-spacing:-21.706240pt;}
.ws0{word-spacing:-17.792000pt;}
.ws18{word-spacing:-2.244480pt;}
.ws7{word-spacing:-2.048000pt;}
.wsd{word-spacing:-1.603200pt;}
.ws44{word-spacing:-1.536000pt;}
.ws6{word-spacing:-1.408000pt;}
.ws3e{word-spacing:-1.367040pt;}
.ws5{word-spacing:-1.344000pt;}
.ws43{word-spacing:-1.024000pt;}
.wsb{word-spacing:-0.961920pt;}
.ws42{word-spacing:-0.768000pt;}
.ws22{word-spacing:-0.745600pt;}
.ws4{word-spacing:-0.702720pt;}
.ws2{word-spacing:-0.683520pt;}
.ws2a{word-spacing:-0.640000pt;}
.ws29{word-spacing:-0.595840pt;}
.wsf{word-spacing:-0.320640pt;}
.ws3a{word-spacing:-0.298240pt;}
.ws17{word-spacing:-0.256000pt;}
.wsc{word-spacing:-0.149120pt;}
.ws19{word-spacing:-0.128000pt;}
.wsa{word-spacing:-0.117120pt;}
.ws1c{word-spacing:-0.096000pt;}
.ws3{word-spacing:0.000000pt;}
.ws34{word-spacing:0.149120pt;}
.ws1{word-spacing:0.170880pt;}
.ws39{word-spacing:0.213760pt;}
.ws2e{word-spacing:0.298240pt;}
.ws1b{word-spacing:0.384000pt;}
.ws30{word-spacing:0.409920pt;}
.ws45{word-spacing:0.512000pt;}
.ws9{word-spacing:0.585600pt;}
.ws46{word-spacing:0.640000pt;}
.ws38{word-spacing:0.680960pt;}
.ws3b{word-spacing:0.745600pt;}
.ws33{word-spacing:0.894720pt;}
.ws21{word-spacing:0.936960pt;}
.ws1a{word-spacing:1.024000pt;}
.wse{word-spacing:1.288320pt;}
.ws16{word-spacing:1.640320pt;}
.ws32{word-spacing:1.674816pt;}
.ws1f{word-spacing:2.236800pt;}
.ws3c{word-spacing:2.304000pt;}
.ws2f{word-spacing:2.449280pt;}
.ws20{word-spacing:3.578880pt;}
.ws28{word-spacing:6.384000pt;}
.ws36{word-spacing:31.190272pt;}
.ws14{word-spacing:105.984000pt;}
.ws35{word-spacing:124.154880pt;}
.ws15{word-spacing:148.224000pt;}
.ws2c{word-spacing:749.992320pt;}
.ws2b{word-spacing:754.248320pt;}
._c{margin-left:-2285.557120pt;}
._a{margin-left:-14.442816pt;}
._7{margin-left:-9.123648pt;}
._11{margin-left:-8.017152pt;}
._3{margin-left:-7.097600pt;}
._4{margin-left:-5.816704pt;}
._12{margin-left:-4.608000pt;}
._5{margin-left:-3.613888pt;}
._6{margin-left:-2.716992pt;}
._1{margin-left:-1.691712pt;}
._0{width:0.905664pt;}
._2{width:2.045504pt;}
._9{width:3.328000pt;}
._b{width:4.567680pt;}
._10{width:42.797440pt;}
._d{width:119.745301pt;}
._e{width:191.604949pt;}
._f{width:506.580480pt;}
._8{width:850.444160pt;}
.fsa{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fsb{font-size:56.960000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:78.080000pt;}
.fs5{font-size:85.120000pt;}
.fs7{font-size:96.000000pt;}
.fs8{font-size:106.880000pt;}
.fs1{font-size:117.120000pt;}
.fsc{font-size:123.455320pt;}
.fs9{font-size:128.000000pt;}
.fs6{font-size:149.120000pt;}
.fs0{font-size:170.880000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:16.899867pt;}
.y8{bottom:55.481067pt;}
.y7a{bottom:56.613333pt;}
.y69{bottom:69.371680pt;}
.y85{bottom:72.433120pt;}
.y7{bottom:75.321067pt;}
.y6c{bottom:77.113333pt;}
.y33{bottom:80.139093pt;}
.y2e{bottom:80.546667pt;}
.y6{bottom:95.001067pt;}
.y68{bottom:100.100000pt;}
.y84{bottom:109.226560pt;}
.y6b{bottom:113.443093pt;}
.y2d{bottom:114.960000pt;}
.y58{bottom:115.700000pt;}
.y4f{bottom:119.833333pt;}
.y32{bottom:120.633333pt;}
.y12{bottom:122.805760pt;}
.y3f{bottom:132.846533pt;}
.y67{bottom:142.328960pt;}
.y59{bottom:145.534560pt;}
.y83{bottom:146.020000pt;}
.y4{bottom:148.053333pt;}
.y6a{bottom:148.633333pt;}
.y82{bottom:151.633333pt;}
.y9a{bottom:152.273333pt;}
.y2c{bottom:157.200000pt;}
.y11{bottom:163.300000pt;}
.y44{bottom:163.311520pt;}
.y73{bottom:163.613333pt;}
.y24{bottom:170.146453pt;}
.y99{bottom:173.393333pt;}
.y66{bottom:184.580000pt;}
.y62{bottom:198.760000pt;}
.y43{bottom:203.805760pt;}
.y72{bottom:205.853333pt;}
.y98{bottom:206.513333pt;}
.y23{bottom:206.939893pt;}
.y4d{bottom:208.740000pt;}
.y3a{bottom:215.180000pt;}
.y79{bottom:220.786667pt;}
.y5a{bottom:221.206240pt;}
.y38{bottom:223.083360pt;}
.y89{bottom:223.800000pt;}
.y5{bottom:226.686667pt;}
.y97{bottom:227.633333pt;}
.y31{bottom:234.133333pt;}
.y2b{bottom:239.280000pt;}
.y22{bottom:243.733333pt;}
.y42{bottom:244.300000pt;}
.y96{bottom:248.753333pt;}
.y37{bottom:259.876800pt;}
.y78{bottom:263.026667pt;}
.y61{bottom:267.400000pt;}
.y53{bottom:271.166667pt;}
.y4c{bottom:277.380000pt;}
.y21{bottom:281.493333pt;}
.y2a{bottom:281.520000pt;}
.y95{bottom:281.873333pt;}
.y81{bottom:287.800000pt;}
.y71{bottom:295.040000pt;}
.y48{bottom:296.639093pt;}
.y5b{bottom:296.877920pt;}
.y94{bottom:302.993333pt;}
.y1b{bottom:319.636667pt;}
.y45{bottom:320.380000pt;}
.y52{bottom:328.766667pt;}
.y10{bottom:332.300000pt;}
.y60{bottom:336.040000pt;}
.y93{bottom:336.113333pt;}
.y47{bottom:337.133333pt;}
.y70{bottom:337.280000pt;}
.y5c{bottom:342.204320pt;}
.y20{bottom:345.659893pt;}
.y4b{bottom:346.020000pt;}
.y87{bottom:352.300000pt;}
.y92{bottom:357.233333pt;}
.y29{bottom:359.826667pt;}
.y19{bottom:361.837333pt;}
.y6f{bottom:379.520000pt;}
.y1f{bottom:382.453333pt;}
.y17{bottom:382.639093pt;}
.y51{bottom:386.366667pt;}
.y91{bottom:390.353333pt;}
.y5d{bottom:399.900000pt;}
.y65{bottom:402.390187pt;}
.y5f{bottom:404.680000pt;}
.y28{bottom:408.946667pt;}
.y90{bottom:411.473333pt;}
.y4a{bottom:414.660000pt;}
.y80{bottom:414.966667pt;}
.y1e{bottom:420.213333pt;}
.y3e{bottom:420.305760pt;}
.y16{bottom:423.133333pt;}
.y77{bottom:431.506667pt;}
.y8f{bottom:432.593333pt;}
.y64{bottom:437.580427pt;}
.y5e{bottom:445.160000pt;}
.y27{bottom:451.186667pt;}
.y7c{bottom:452.426667pt;}
.y57{bottom:454.345707pt;}
.y86{bottom:455.506667pt;}
.y36{bottom:458.433120pt;}
.y7f{bottom:460.325760pt;}
.y3d{bottom:460.800000pt;}
.y54{bottom:462.900000pt;}
.y50{bottom:463.166667pt;}
.y8e{bottom:465.713333pt;}
.y6e{bottom:470.280000pt;}
.y15{bottom:470.644853pt;}
.y39{bottom:477.513200pt;}
.y63{bottom:480.786667pt;}
.y49{bottom:483.300000pt;}
.y1d{bottom:484.373333pt;}
.y8d{bottom:486.833333pt;}
.y56{bottom:489.540267pt;}
.y30{bottom:491.133333pt;}
.y76{bottom:492.946667pt;}
.y26{bottom:493.426667pt;}
.y35{bottom:495.226560pt;}
.y41{bottom:495.972427pt;}
.y7e{bottom:500.805760pt;}
.yf{bottom:503.472427pt;}
.y88{bottom:506.300000pt;}
.y14{bottom:511.139093pt;}
.y6d{bottom:512.520000pt;}
.y3{bottom:513.736213pt;}
.y46{bottom:513.800000pt;}
.y3c{bottom:518.639093pt;}
.y1a{bottom:519.349333pt;}
.y8c{bottom:519.953333pt;}
.y1c{bottom:522.133333pt;}
.y34{bottom:532.020000pt;}
.y75{bottom:535.186667pt;}
.y25{bottom:535.666667pt;}
.y40{bottom:536.466667pt;}
.y8b{bottom:541.073333pt;}
.y7d{bottom:541.300000pt;}
.ye{bottom:543.966667pt;}
.y55{bottom:548.246667pt;}
.y13{bottom:551.633333pt;}
.y2f{bottom:558.333333pt;}
.y3b{bottom:559.133333pt;}
.y8a{bottom:562.193333pt;}
.y2{bottom:564.914773pt;}
.y18{bottom:566.173333pt;}
.y4e{bottom:576.166667pt;}
.yd{bottom:613.713333pt;}
.y1{bottom:616.093333pt;}
.y74{bottom:618.833333pt;}
.y7b{bottom:638.760000pt;}
.ya{bottom:686.900000pt;}
.y9{bottom:687.513067pt;}
.yc{bottom:688.066667pt;}
.h3{height:34.968750pt;}
.he{height:46.593750pt;}
.h4{height:46.625000pt;}
.h5{height:61.969687pt;}
.h6{height:62.011250pt;}
.ha{height:66.656250pt;}
.h9{height:69.937500pt;}
.hb{height:77.863750pt;}
.hf{height:85.266562pt;}
.h8{height:85.323750pt;}
.h14{height:85.380177pt;}
.hd{height:85.380710pt;}
.h13{height:85.719465pt;}
.h2{height:92.082500pt;}
.h10{height:92.126660pt;}
.h11{height:93.187500pt;}
.hc{height:93.250000pt;}
.h7{height:108.563437pt;}
.h1{height:124.405313pt;}
.h12{height:143.512500pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x6{left:28.431067pt;}
.xa{left:51.100000pt;}
.xb{left:63.646667pt;}
.x37{left:66.266667pt;}
.x36{left:69.440000pt;}
.xf{left:70.940000pt;}
.x1{left:76.286667pt;}
.x10{left:89.340000pt;}
.x1f{left:97.349120pt;}
.x24{left:104.100000pt;}
.x31{left:113.404000pt;}
.x20{left:135.735200pt;}
.x2c{left:141.766667pt;}
.x2{left:146.048427pt;}
.xd{left:148.610000pt;}
.x25{left:150.660000pt;}
.x3{left:182.943333pt;}
.x23{left:192.000000pt;}
.x2e{left:195.030000pt;}
.x5{left:197.711067pt;}
.xc{left:202.199627pt;}
.x2a{left:208.939573pt;}
.x19{left:224.933333pt;}
.x2f{left:228.002480pt;}
.x29{left:233.901013pt;}
.x27{left:241.753333pt;}
.x32{left:270.044000pt;}
.x7{left:273.933333pt;}
.x15{left:283.693333pt;}
.x16{left:285.453333pt;}
.x17{left:292.493333pt;}
.x4{left:301.666667pt;}
.xe{left:311.010000pt;}
.x30{left:335.990000pt;}
.x14{left:340.600000pt;}
.x18{left:343.533333pt;}
.x26{left:350.033333pt;}
.x21{left:352.391520pt;}
.x33{left:381.453333pt;}
.x34{left:382.686667pt;}
.x1b{left:384.046560pt;}
.x1a{left:394.780000pt;}
.x35{left:410.780000pt;}
.x8{left:428.906667pt;}
.x2d{left:433.606667pt;}
.x2b{left:436.166667pt;}
.x1e{left:566.933333pt;}
.x12{left:598.830667pt;}
.x22{left:600.433333pt;}
.x13{left:659.646667pt;}
.x11{left:692.166667pt;}
.x28{left:729.576053pt;}
.x1c{left:903.500133pt;}
.x1d{left:905.666533pt;}
.x9{left:922.266667pt;}
}




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