
    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_83336424ddf2c3b5cd6898e2.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ff03728a03fc4ca20406ec66.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.804000;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_ddec6de66f7bba283c45fd50.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0ae6863c32755500d7e4b065.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_77938a0c5d59b49c005a3aba.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2f82d5c3b5937050084e949c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b7ce2a273cfd1c02a6423158.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.049805;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_d1d6aa4e7e779c54a51bfd4f.woff2')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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1774c44e84321fd2389c7a55.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cb5bb0b5d82b8002b8d13b8e.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1774c44e84321fd2389c7a55.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_cb5bb0b5d82b8002b8d13b8e.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-9.900000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:16.200000px;}
.v3{vertical-align:18.000000px;}
.v4{vertical-align:19.800000px;}
.v1{vertical-align:21.600000px;}
.v5{vertical-align:33.963000px;}
.ls6{letter-spacing:-18.021312px;}
.ls16{letter-spacing:-8.514000px;}
.ls5{letter-spacing:-6.757992px;}
.ls7{letter-spacing:-2.220000px;}
.lsf{letter-spacing:-1.998000px;}
.ls8{letter-spacing:-1.080000px;}
.ls13{letter-spacing:-0.726000px;}
.ls14{letter-spacing:-0.594000px;}
.lsb{letter-spacing:-0.528000px;}
.lse{letter-spacing:-0.396000px;}
.lsd{letter-spacing:-0.330000px;}
.ls9{letter-spacing:-0.264000px;}
.ls11{letter-spacing:-0.198000px;}
.ls12{letter-spacing:-0.184800px;}
.ls10{letter-spacing:-0.132000px;}
.lsa{letter-spacing:-0.066000px;}
.ls4{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000600px;}
.ls0{letter-spacing:0.007200px;}
.ls15{letter-spacing:0.330000px;}
.ls2{letter-spacing:4.024200px;}
.ls3{letter-spacing:4.605600px;}
.ls1{letter-spacing:5.426400px;}
.lsc{letter-spacing:196.347000px;}
.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;}
}
.ws0{word-spacing:-44.892402px;}
.ws1{word-spacing:-28.158300px;}
.ws8a{word-spacing:-21.000000px;}
.ws2{word-spacing:-16.894980px;}
.ws92{word-spacing:-16.830000px;}
.ws1a{word-spacing:-16.500000px;}
.ws98{word-spacing:-16.434000px;}
.ws9e{word-spacing:-16.368000px;}
.ws1b{word-spacing:-16.236000px;}
.ws8b{word-spacing:-15.906000px;}
.ws3{word-spacing:-15.012000px;}
.ws4{word-spacing:-15.000000px;}
.ws19{word-spacing:-13.932000px;}
.ws37{word-spacing:-13.500000px;}
.ws1c{word-spacing:-11.550000px;}
.ws6d{word-spacing:-11.365200px;}
.ws5{word-spacing:-10.500000px;}
.ws56{word-spacing:-8.250000px;}
.ws6e{word-spacing:-4.488000px;}
.ws20{word-spacing:-3.300000px;}
.ws44{word-spacing:-2.970000px;}
.ws6a{word-spacing:-2.862000px;}
.wsc{word-spacing:-2.700000px;}
.ws67{word-spacing:-2.640000px;}
.ws4c{word-spacing:-2.574000px;}
.ws4e{word-spacing:-2.442000px;}
.ws93{word-spacing:-2.310000px;}
.ws46{word-spacing:-2.244000px;}
.ws21{word-spacing:-2.178000px;}
.ws10{word-spacing:-2.160000px;}
.ws22{word-spacing:-2.112000px;}
.ws94{word-spacing:-2.046000px;}
.ws77{word-spacing:-1.998000px;}
.ws87{word-spacing:-1.980000px;}
.ws62{word-spacing:-1.914000px;}
.ws6b{word-spacing:-1.890000px;}
.ws68{word-spacing:-1.848000px;}
.ws13{word-spacing:-1.800000px;}
.ws5d{word-spacing:-1.650000px;}
.ws8e{word-spacing:-1.584000px;}
.ws50{word-spacing:-1.452000px;}
.ws28{word-spacing:-1.386000px;}
.ws5b{word-spacing:-1.320000px;}
.ws74{word-spacing:-1.296000px;}
.ws23{word-spacing:-1.254000px;}
.ws7e{word-spacing:-1.188000px;}
.ws63{word-spacing:-1.134000px;}
.ws27{word-spacing:-1.122000px;}
.ws43{word-spacing:-1.056000px;}
.ws32{word-spacing:-0.990000px;}
.ws48{word-spacing:-0.972000px;}
.ws71{word-spacing:-0.924000px;}
.wsb{word-spacing:-0.840000px;}
.ws4d{word-spacing:-0.792000px;}
.ws79{word-spacing:-0.726000px;}
.ws47{word-spacing:-0.660000px;}
.ws8d{word-spacing:-0.528000px;}
.ws33{word-spacing:-0.462000px;}
.ws24{word-spacing:-0.396000px;}
.ws55{word-spacing:-0.330000px;}
.ws54{word-spacing:-0.132000px;}
.ws11{word-spacing:-0.120000px;}
.ws14{word-spacing:-0.060000px;}
.ws6{word-spacing:0.000000px;}
.ws2f{word-spacing:0.066000px;}
.ws59{word-spacing:0.132000px;}
.ws5a{word-spacing:0.198000px;}
.ws1f{word-spacing:0.264000px;}
.ws12{word-spacing:0.300000px;}
.ws89{word-spacing:0.330000px;}
.ws45{word-spacing:0.396000px;}
.ws76{word-spacing:0.486000px;}
.ws31{word-spacing:0.528000px;}
.ws2c{word-spacing:0.594000px;}
.ws41{word-spacing:0.726000px;}
.ws65{word-spacing:0.756000px;}
.ws57{word-spacing:0.792000px;}
.ws49{word-spacing:0.858000px;}
.ws6c{word-spacing:0.918000px;}
.ws88{word-spacing:0.990000px;}
.ws9a{word-spacing:1.056000px;}
.ws69{word-spacing:1.188000px;}
.ws25{word-spacing:1.254000px;}
.ws7c{word-spacing:1.320000px;}
.ws26{word-spacing:1.386000px;}
.ws7a{word-spacing:1.452000px;}
.ws42{word-spacing:1.518000px;}
.ws58{word-spacing:1.650000px;}
.ws72{word-spacing:1.716000px;}
.wsa3{word-spacing:1.782000px;}
.ws2a{word-spacing:1.848000px;}
.ws15{word-spacing:1.860000px;}
.ws4f{word-spacing:1.914000px;}
.ws60{word-spacing:1.944000px;}
.ws73{word-spacing:1.998000px;}
.wsf{word-spacing:2.040000px;}
.ws9c{word-spacing:2.046000px;}
.ws5e{word-spacing:2.112000px;}
.ws8{word-spacing:2.220000px;}
.ws29{word-spacing:2.244000px;}
.wsa2{word-spacing:2.310000px;}
.ws2b{word-spacing:2.376000px;}
.ws5c{word-spacing:2.442000px;}
.ws84{word-spacing:2.508000px;}
.ws80{word-spacing:2.574000px;}
.ws78{word-spacing:2.646000px;}
.wsa1{word-spacing:2.706000px;}
.wsd{word-spacing:2.760000px;}
.ws9d{word-spacing:2.904000px;}
.ws61{word-spacing:2.970000px;}
.ws7b{word-spacing:3.036000px;}
.ws82{word-spacing:3.300000px;}
.ws7f{word-spacing:3.366000px;}
.ws8f{word-spacing:3.498000px;}
.ws99{word-spacing:3.564000px;}
.ws40{word-spacing:3.630000px;}
.ws52{word-spacing:3.762000px;}
.ws85{word-spacing:3.828000px;}
.ws81{word-spacing:3.894000px;}
.ws86{word-spacing:3.960000px;}
.ws4a{word-spacing:4.026000px;}
.ws75{word-spacing:4.224000px;}
.ws17{word-spacing:4.260000px;}
.ws6f{word-spacing:4.290000px;}
.ws16{word-spacing:4.620000px;}
.ws9b{word-spacing:4.686000px;}
.ws4b{word-spacing:4.752000px;}
.ws70{word-spacing:4.818000px;}
.ws2e{word-spacing:4.884000px;}
.ws64{word-spacing:4.914000px;}
.ws66{word-spacing:5.016000px;}
.ws30{word-spacing:5.214000px;}
.wse{word-spacing:5.280000px;}
.ws91{word-spacing:5.346000px;}
.ws18{word-spacing:5.400000px;}
.ws7d{word-spacing:5.478000px;}
.wsa0{word-spacing:5.610000px;}
.ws53{word-spacing:5.676000px;}
.ws8c{word-spacing:6.072000px;}
.ws51{word-spacing:6.600000px;}
.ws7{word-spacing:6.757992px;}
.ws90{word-spacing:6.798000px;}
.ws1e{word-spacing:7.128000px;}
.wsa{word-spacing:7.740000px;}
.ws9{word-spacing:7.776000px;}
.ws83{word-spacing:8.052000px;}
.ws97{word-spacing:8.514000px;}
.ws9f{word-spacing:8.646000px;}
.ws5f{word-spacing:9.342000px;}
.ws2d{word-spacing:11.220000px;}
.ws95{word-spacing:15.774000px;}
.ws96{word-spacing:22.440000px;}
.ws34{word-spacing:55.636200px;}
.ws1d{word-spacing:56.028000px;}
.ws3a{word-spacing:58.221600px;}
.ws3e{word-spacing:59.726400px;}
.ws38{word-spacing:65.719200px;}
.ws36{word-spacing:85.223400px;}
.ws3d{word-spacing:91.260600px;}
.ws39{word-spacing:111.952200px;}
.ws35{word-spacing:124.318800px;}
.ws3c{word-spacing:155.847000px;}
.ws3f{word-spacing:171.919800px;}
.ws3b{word-spacing:213.879600px;}
._1b{margin-left:-13.068000px;}
._0{margin-left:-8.688725px;}
._3{margin-left:-6.746812px;}
._b{margin-left:-5.507812px;}
._1{margin-left:-4.505328px;}
._4{margin-left:-2.982600px;}
._5{margin-left:-1.191188px;}
._7{width:1.542000px;}
._a{width:2.673600px;}
._8{width:3.858000px;}
._9{width:5.610000px;}
._1c{width:7.550400px;}
._1a{width:9.292200px;}
._2{width:11.263320px;}
._1d{width:12.383885px;}
._1f{width:21.687600px;}
._1e{width:26.235000px;}
._d{width:51.263400px;}
._17{width:54.846000px;}
._c{width:56.028000px;}
._6{width:66.047400px;}
._18{width:76.461000px;}
._19{width:83.051400px;}
._13{width:98.718000px;}
._11{width:99.719400px;}
._12{width:103.257600px;}
._e{width:107.418600px;}
._10{width:110.772000px;}
._f{width:120.197400px;}
._14{width:121.218412px;}
._16{width:127.215000px;}
._15{width:158.734200px;}
.fc5{color:rgb(238,37,44);}
.fc4{color:rgb(177,86,56);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(198,56,54);}
.fc1{color:rgb(133,138,141);}
.fc0{color:rgb(27,24,26);}
.fs7{font-size:37.800000px;}
.fs8{font-size:42.000000px;}
.fsb{font-size:46.200000px;}
.fsc{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fsa{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs9{font-size:84.000000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:112.633200px;}
.fs1{font-size:144.814200px;}
.y0{bottom:0.000000px;}
.y1{bottom:57.631050px;}
.yab{bottom:123.587850px;}
.y7e{bottom:128.314950px;}
.ya8{bottom:131.925900px;}
.yaa{bottom:140.837850px;}
.yb7{bottom:145.564950px;}
.y28{bottom:147.347700px;}
.y4d{bottom:148.045200px;}
.ya7{bottom:149.175900px;}
.y7d{bottom:149.314950px;}
.ya9{bottom:158.087850px;}
.yb6{bottom:162.814950px;}
.y27{bottom:165.347700px;}
.y4c{bottom:166.045200px;}
.ya6{bottom:166.425900px;}
.ya2{bottom:167.777400px;}
.ya4{bottom:167.790600px;}
.y7c{bottom:170.314950px;}
.ya1{bottom:172.786650px;}
.ya5{bottom:181.277400px;}
.ya3{bottom:181.290600px;}
.y26{bottom:183.347700px;}
.y4b{bottom:184.045200px;}
.y7b{bottom:191.314950px;}
.y9d{bottom:199.155000px;}
.y9f{bottom:199.168050px;}
.y25{bottom:201.347700px;}
.y4a{bottom:202.045200px;}
.y9c{bottom:204.164250px;}
.y7a{bottom:212.314950px;}
.ya0{bottom:212.655000px;}
.y9e{bottom:212.668050px;}
.y24{bottom:219.347700px;}
.y49{bottom:220.045200px;}
.y98{bottom:230.532450px;}
.y9a{bottom:230.545650px;}
.y79{bottom:233.314950px;}
.y97{bottom:235.541700px;}
.y23{bottom:237.347700px;}
.y48{bottom:238.045200px;}
.y9b{bottom:244.032450px;}
.y99{bottom:244.045650px;}
.y78{bottom:254.314950px;}
.y22{bottom:255.347700px;}
.y47{bottom:256.045050px;}
.y93{bottom:261.909900px;}
.y95{bottom:261.923100px;}
.y92{bottom:266.919150px;}
.y21{bottom:273.347700px;}
.y46{bottom:274.045050px;}
.y77{bottom:275.314950px;}
.y96{bottom:275.409900px;}
.y94{bottom:275.423100px;}
.y8e{bottom:293.287350px;}
.y90{bottom:293.300550px;}
.y76{bottom:296.314950px;}
.y8d{bottom:298.296600px;}
.y91{bottom:306.787350px;}
.y8f{bottom:306.800550px;}
.y45{bottom:310.045050px;}
.y20{bottom:310.056300px;}
.y75{bottom:317.314950px;}
.y89{bottom:324.664800px;}
.y8b{bottom:324.678000px;}
.y44{bottom:328.045050px;}
.y1f{bottom:328.056300px;}
.y88{bottom:329.674050px;}
.y8c{bottom:338.164800px;}
.y8a{bottom:338.178000px;}
.y74{bottom:338.314950px;}
.y43{bottom:346.045050px;}
.y1e{bottom:346.056300px;}
.y84{bottom:356.042250px;}
.y86{bottom:356.055450px;}
.y73{bottom:359.314950px;}
.y83{bottom:361.051500px;}
.y42{bottom:364.045050px;}
.y1d{bottom:364.056300px;}
.y87{bottom:369.542250px;}
.y85{bottom:369.555450px;}
.y72{bottom:380.314950px;}
.y41{bottom:382.045050px;}
.y1c{bottom:382.056300px;}
.y82{bottom:395.923650px;}
.y40{bottom:400.045050px;}
.y1b{bottom:400.056300px;}
.y71{bottom:401.314950px;}
.y81{bottom:409.423650px;}
.y3f{bottom:418.045050px;}
.y1a{bottom:418.056300px;}
.y70{bottom:422.314950px;}
.y80{bottom:434.751900px;}
.y3e{bottom:436.045050px;}
.y19{bottom:436.056300px;}
.y6f{bottom:443.314950px;}
.y7f{bottom:452.001900px;}
.y3d{bottom:454.045050px;}
.y18{bottom:454.056300px;}
.y6e{bottom:464.314950px;}
.y3c{bottom:472.045050px;}
.y17{bottom:472.056300px;}
.y6d{bottom:485.314950px;}
.y3b{bottom:490.045050px;}
.y16{bottom:490.056300px;}
.y6c{bottom:506.314950px;}
.y3a{bottom:508.045050px;}
.y15{bottom:508.056300px;}
.y39{bottom:526.045050px;}
.y14{bottom:526.056300px;}
.y6b{bottom:527.314950px;}
.y38{bottom:544.045050px;}
.y13{bottom:544.056300px;}
.y6a{bottom:548.314950px;}
.y37{bottom:562.045050px;}
.y12{bottom:562.056300px;}
.y69{bottom:569.314950px;}
.y36{bottom:580.045050px;}
.y68{bottom:590.314950px;}
.y67{bottom:611.314950px;}
.y11{bottom:618.324000px;}
.y35{bottom:619.305000px;}
.y66{bottom:632.314950px;}
.y10{bottom:636.324000px;}
.y34{bottom:637.305000px;}
.y65{bottom:653.314950px;}
.yf{bottom:654.324000px;}
.y33{bottom:655.305000px;}
.yb3{bottom:671.529300px;}
.ye{bottom:672.324000px;}
.y32{bottom:673.305000px;}
.y64{bottom:674.314950px;}
.yb2{bottom:688.779300px;}
.yd{bottom:690.324000px;}
.y31{bottom:691.305000px;}
.y63{bottom:695.314950px;}
.yb1{bottom:706.029300px;}
.y30{bottom:709.305000px;}
.y62{bottom:716.314950px;}
.yb0{bottom:723.279300px;}
.y61{bottom:737.314950px;}
.y2f{bottom:748.564800px;}
.yc{bottom:748.717650px;}
.y60{bottom:758.314950px;}
.y2e{bottom:766.564800px;}
.yb{bottom:766.717650px;}
.y5f{bottom:779.314950px;}
.y2d{bottom:784.564800px;}
.ya{bottom:784.717650px;}
.y5e{bottom:800.314950px;}
.y5d{bottom:821.314950px;}
.y5c{bottom:842.314950px;}
.yaf{bottom:858.909300px;}
.y2c{bottom:862.092450px;}
.y5b{bottom:863.314950px;}
.yae{bottom:876.159300px;}
.yb5{bottom:883.689300px;}
.y5a{bottom:884.314950px;}
.yb9{bottom:889.004400px;}
.y2b{bottom:892.092450px;}
.yad{bottom:893.409300px;}
.yb4{bottom:900.939300px;}
.y59{bottom:905.314950px;}
.yb8{bottom:906.254400px;}
.yac{bottom:910.659300px;}
.y2a{bottom:922.092450px;}
.y58{bottom:926.314950px;}
.y57{bottom:947.314950px;}
.y56{bottom:968.314950px;}
.y55{bottom:989.314950px;}
.y29{bottom:994.612050px;}
.y54{bottom:1010.314950px;}
.y53{bottom:1031.314950px;}
.y52{bottom:1052.314950px;}
.y51{bottom:1073.314950px;}
.y9{bottom:1081.226850px;}
.y50{bottom:1094.314950px;}
.y8{bottom:1099.226850px;}
.y4f{bottom:1115.314950px;}
.y7{bottom:1117.226850px;}
.y6{bottom:1135.226850px;}
.y2{bottom:1143.169950px;}
.y5{bottom:1161.730800px;}
.y4{bottom:1179.730800px;}
.y4e{bottom:1189.226850px;}
.y3{bottom:1197.730800px;}
.h11{height:33.351562px;}
.h14{height:37.494141px;}
.h10{height:37.520508px;}
.h8{height:39.313477px;}
.h4{height:39.339844px;}
.h12{height:40.031250px;}
.h2{height:41.689453px;}
.h7{height:43.719434px;}
.h15{height:45.035156px;}
.h18{height:45.826172px;}
.hd{height:45.858398px;}
.ha{height:47.182617px;}
.hf{height:48.796875px;}
.h9{height:50.039062px;}
.h17{height:51.900879px;}
.hb{height:53.027344px;}
.he{height:55.042969px;}
.hc{height:56.929688px;}
.h16{height:57.557508px;}
.h5{height:58.317188px;}
.h13{height:71.457141px;}
.h6{height:73.195312px;}
.h3{height:112.810262px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:97.677150px;}
.xb{left:105.118050px;}
.xa{left:112.618050px;}
.x2{left:128.209500px;}
.x2f{left:157.322850px;}
.x10{left:170.078850px;}
.x11{left:175.540950px;}
.xc{left:191.338650px;}
.xd{left:199.842600px;}
.xe{left:216.850500px;}
.x2d{left:233.876700px;}
.x12{left:243.252750px;}
.x2c{left:255.116700px;}
.x24{left:363.886650px;}
.x1a{left:374.759850px;}
.x13{left:378.181350px;}
.x2e{left:438.956700px;}
.x1{left:442.706700px;}
.x26{left:444.586650px;}
.x2a{left:459.217200px;}
.x25{left:469.724550px;}
.x14{left:471.334350px;}
.x21{left:475.620900px;}
.x28{left:477.766500px;}
.x1b{left:479.131050px;}
.x1c{left:481.701900px;}
.x15{left:485.332500px;}
.x8{left:492.501750px;}
.x3{left:520.273050px;}
.x9{left:539.066250px;}
.x1e{left:574.826850px;}
.x5{left:576.527400px;}
.x1d{left:584.322300px;}
.x27{left:585.699900px;}
.x17{left:589.121550px;}
.x16{left:591.119550px;}
.x4{left:611.852850px;}
.x6{left:619.354350px;}
.x7{left:624.331200px;}
.x20{left:646.927350px;}
.x22{left:661.742400px;}
.x29{left:667.365150px;}
.x1f{left:672.065100px;}
.x18{left:673.674900px;}
.x2b{left:681.471600px;}
.x23{left:684.427950px;}
.x19{left:690.678900px;}
@media print{
.v6{vertical-align:-8.800000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.400000pt;}
.v3{vertical-align:16.000000pt;}
.v4{vertical-align:17.600000pt;}
.v1{vertical-align:19.200000pt;}
.v5{vertical-align:30.189333pt;}
.ls6{letter-spacing:-16.018944pt;}
.ls16{letter-spacing:-7.568000pt;}
.ls5{letter-spacing:-6.007104pt;}
.ls7{letter-spacing:-1.973333pt;}
.lsf{letter-spacing:-1.776000pt;}
.ls8{letter-spacing:-0.960000pt;}
.ls13{letter-spacing:-0.645333pt;}
.ls14{letter-spacing:-0.528000pt;}
.lsb{letter-spacing:-0.469333pt;}
.lse{letter-spacing:-0.352000pt;}
.lsd{letter-spacing:-0.293333pt;}
.ls9{letter-spacing:-0.234667pt;}
.ls11{letter-spacing:-0.176000pt;}
.ls12{letter-spacing:-0.164267pt;}
.ls10{letter-spacing:-0.117333pt;}
.lsa{letter-spacing:-0.058667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000533pt;}
.ls0{letter-spacing:0.006400pt;}
.ls15{letter-spacing:0.293333pt;}
.ls2{letter-spacing:3.577067pt;}
.ls3{letter-spacing:4.093867pt;}
.ls1{letter-spacing:4.823467pt;}
.lsc{letter-spacing:174.530667pt;}
.ws0{word-spacing:-39.904357pt;}
.ws1{word-spacing:-25.029600pt;}
.ws8a{word-spacing:-18.666667pt;}
.ws2{word-spacing:-15.017760pt;}
.ws92{word-spacing:-14.960000pt;}
.ws1a{word-spacing:-14.666667pt;}
.ws98{word-spacing:-14.608000pt;}
.ws9e{word-spacing:-14.549333pt;}
.ws1b{word-spacing:-14.432000pt;}
.ws8b{word-spacing:-14.138667pt;}
.ws3{word-spacing:-13.344000pt;}
.ws4{word-spacing:-13.333333pt;}
.ws19{word-spacing:-12.384000pt;}
.ws37{word-spacing:-12.000000pt;}
.ws1c{word-spacing:-10.266667pt;}
.ws6d{word-spacing:-10.102400pt;}
.ws5{word-spacing:-9.333333pt;}
.ws56{word-spacing:-7.333333pt;}
.ws6e{word-spacing:-3.989333pt;}
.ws20{word-spacing:-2.933333pt;}
.ws44{word-spacing:-2.640000pt;}
.ws6a{word-spacing:-2.544000pt;}
.wsc{word-spacing:-2.400000pt;}
.ws67{word-spacing:-2.346667pt;}
.ws4c{word-spacing:-2.288000pt;}
.ws4e{word-spacing:-2.170667pt;}
.ws93{word-spacing:-2.053333pt;}
.ws46{word-spacing:-1.994667pt;}
.ws21{word-spacing:-1.936000pt;}
.ws10{word-spacing:-1.920000pt;}
.ws22{word-spacing:-1.877333pt;}
.ws94{word-spacing:-1.818667pt;}
.ws77{word-spacing:-1.776000pt;}
.ws87{word-spacing:-1.760000pt;}
.ws62{word-spacing:-1.701333pt;}
.ws6b{word-spacing:-1.680000pt;}
.ws68{word-spacing:-1.642667pt;}
.ws13{word-spacing:-1.600000pt;}
.ws5d{word-spacing:-1.466667pt;}
.ws8e{word-spacing:-1.408000pt;}
.ws50{word-spacing:-1.290667pt;}
.ws28{word-spacing:-1.232000pt;}
.ws5b{word-spacing:-1.173333pt;}
.ws74{word-spacing:-1.152000pt;}
.ws23{word-spacing:-1.114667pt;}
.ws7e{word-spacing:-1.056000pt;}
.ws63{word-spacing:-1.008000pt;}
.ws27{word-spacing:-0.997333pt;}
.ws43{word-spacing:-0.938667pt;}
.ws32{word-spacing:-0.880000pt;}
.ws48{word-spacing:-0.864000pt;}
.ws71{word-spacing:-0.821333pt;}
.wsb{word-spacing:-0.746667pt;}
.ws4d{word-spacing:-0.704000pt;}
.ws79{word-spacing:-0.645333pt;}
.ws47{word-spacing:-0.586667pt;}
.ws8d{word-spacing:-0.469333pt;}
.ws33{word-spacing:-0.410667pt;}
.ws24{word-spacing:-0.352000pt;}
.ws55{word-spacing:-0.293333pt;}
.ws54{word-spacing:-0.117333pt;}
.ws11{word-spacing:-0.106667pt;}
.ws14{word-spacing:-0.053333pt;}
.ws6{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.058667pt;}
.ws59{word-spacing:0.117333pt;}
.ws5a{word-spacing:0.176000pt;}
.ws1f{word-spacing:0.234667pt;}
.ws12{word-spacing:0.266667pt;}
.ws89{word-spacing:0.293333pt;}
.ws45{word-spacing:0.352000pt;}
.ws76{word-spacing:0.432000pt;}
.ws31{word-spacing:0.469333pt;}
.ws2c{word-spacing:0.528000pt;}
.ws41{word-spacing:0.645333pt;}
.ws65{word-spacing:0.672000pt;}
.ws57{word-spacing:0.704000pt;}
.ws49{word-spacing:0.762667pt;}
.ws6c{word-spacing:0.816000pt;}
.ws88{word-spacing:0.880000pt;}
.ws9a{word-spacing:0.938667pt;}
.ws69{word-spacing:1.056000pt;}
.ws25{word-spacing:1.114667pt;}
.ws7c{word-spacing:1.173333pt;}
.ws26{word-spacing:1.232000pt;}
.ws7a{word-spacing:1.290667pt;}
.ws42{word-spacing:1.349333pt;}
.ws58{word-spacing:1.466667pt;}
.ws72{word-spacing:1.525333pt;}
.wsa3{word-spacing:1.584000pt;}
.ws2a{word-spacing:1.642667pt;}
.ws15{word-spacing:1.653333pt;}
.ws4f{word-spacing:1.701333pt;}
.ws60{word-spacing:1.728000pt;}
.ws73{word-spacing:1.776000pt;}
.wsf{word-spacing:1.813333pt;}
.ws9c{word-spacing:1.818667pt;}
.ws5e{word-spacing:1.877333pt;}
.ws8{word-spacing:1.973333pt;}
.ws29{word-spacing:1.994667pt;}
.wsa2{word-spacing:2.053333pt;}
.ws2b{word-spacing:2.112000pt;}
.ws5c{word-spacing:2.170667pt;}
.ws84{word-spacing:2.229333pt;}
.ws80{word-spacing:2.288000pt;}
.ws78{word-spacing:2.352000pt;}
.wsa1{word-spacing:2.405333pt;}
.wsd{word-spacing:2.453333pt;}
.ws9d{word-spacing:2.581333pt;}
.ws61{word-spacing:2.640000pt;}
.ws7b{word-spacing:2.698667pt;}
.ws82{word-spacing:2.933333pt;}
.ws7f{word-spacing:2.992000pt;}
.ws8f{word-spacing:3.109333pt;}
.ws99{word-spacing:3.168000pt;}
.ws40{word-spacing:3.226667pt;}
.ws52{word-spacing:3.344000pt;}
.ws85{word-spacing:3.402667pt;}
.ws81{word-spacing:3.461333pt;}
.ws86{word-spacing:3.520000pt;}
.ws4a{word-spacing:3.578667pt;}
.ws75{word-spacing:3.754667pt;}
.ws17{word-spacing:3.786667pt;}
.ws6f{word-spacing:3.813333pt;}
.ws16{word-spacing:4.106667pt;}
.ws9b{word-spacing:4.165333pt;}
.ws4b{word-spacing:4.224000pt;}
.ws70{word-spacing:4.282667pt;}
.ws2e{word-spacing:4.341333pt;}
.ws64{word-spacing:4.368000pt;}
.ws66{word-spacing:4.458667pt;}
.ws30{word-spacing:4.634667pt;}
.wse{word-spacing:4.693333pt;}
.ws91{word-spacing:4.752000pt;}
.ws18{word-spacing:4.800000pt;}
.ws7d{word-spacing:4.869333pt;}
.wsa0{word-spacing:4.986667pt;}
.ws53{word-spacing:5.045333pt;}
.ws8c{word-spacing:5.397333pt;}
.ws51{word-spacing:5.866667pt;}
.ws7{word-spacing:6.007104pt;}
.ws90{word-spacing:6.042667pt;}
.ws1e{word-spacing:6.336000pt;}
.wsa{word-spacing:6.880000pt;}
.ws9{word-spacing:6.912000pt;}
.ws83{word-spacing:7.157333pt;}
.ws97{word-spacing:7.568000pt;}
.ws9f{word-spacing:7.685333pt;}
.ws5f{word-spacing:8.304000pt;}
.ws2d{word-spacing:9.973333pt;}
.ws95{word-spacing:14.021333pt;}
.ws96{word-spacing:19.946667pt;}
.ws34{word-spacing:49.454400pt;}
.ws1d{word-spacing:49.802667pt;}
.ws3a{word-spacing:51.752533pt;}
.ws3e{word-spacing:53.090133pt;}
.ws38{word-spacing:58.417067pt;}
.ws36{word-spacing:75.754133pt;}
.ws3d{word-spacing:81.120533pt;}
.ws39{word-spacing:99.513067pt;}
.ws35{word-spacing:110.505600pt;}
.ws3c{word-spacing:138.530667pt;}
.ws3f{word-spacing:152.817600pt;}
.ws3b{word-spacing:190.115200pt;}
._1b{margin-left:-11.616000pt;}
._0{margin-left:-7.723311pt;}
._3{margin-left:-5.997166pt;}
._b{margin-left:-4.895833pt;}
._1{margin-left:-4.004736pt;}
._4{margin-left:-2.651200pt;}
._5{margin-left:-1.058834pt;}
._7{width:1.370667pt;}
._a{width:2.376533pt;}
._8{width:3.429333pt;}
._9{width:4.986667pt;}
._1c{width:6.711467pt;}
._1a{width:8.259733pt;}
._2{width:10.011840pt;}
._1d{width:11.007898pt;}
._1f{width:19.277867pt;}
._1e{width:23.320000pt;}
._d{width:45.567467pt;}
._17{width:48.752000pt;}
._c{width:49.802667pt;}
._6{width:58.708800pt;}
._18{width:67.965333pt;}
._19{width:73.823467pt;}
._13{width:87.749333pt;}
._11{width:88.639467pt;}
._12{width:91.784533pt;}
._e{width:95.483200pt;}
._10{width:98.464000pt;}
._f{width:106.842133pt;}
._14{width:107.749699pt;}
._16{width:113.080000pt;}
._15{width:141.097067pt;}
.fs7{font-size:33.600000pt;}
.fs8{font-size:37.333333pt;}
.fsb{font-size:41.066667pt;}
.fsc{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fsa{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs9{font-size:74.666667pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:100.118400pt;}
.fs1{font-size:128.723733pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:51.227600pt;}
.yab{bottom:109.855867pt;}
.y7e{bottom:114.057733pt;}
.ya8{bottom:117.267467pt;}
.yaa{bottom:125.189200pt;}
.yb7{bottom:129.391067pt;}
.y28{bottom:130.975733pt;}
.y4d{bottom:131.595733pt;}
.ya7{bottom:132.600800pt;}
.y7d{bottom:132.724400pt;}
.ya9{bottom:140.522533pt;}
.yb6{bottom:144.724400pt;}
.y27{bottom:146.975733pt;}
.y4c{bottom:147.595733pt;}
.ya6{bottom:147.934133pt;}
.ya2{bottom:149.135467pt;}
.ya4{bottom:149.147200pt;}
.y7c{bottom:151.391067pt;}
.ya1{bottom:153.588133pt;}
.ya5{bottom:161.135467pt;}
.ya3{bottom:161.147200pt;}
.y26{bottom:162.975733pt;}
.y4b{bottom:163.595733pt;}
.y7b{bottom:170.057733pt;}
.y9d{bottom:177.026667pt;}
.y9f{bottom:177.038267pt;}
.y25{bottom:178.975733pt;}
.y4a{bottom:179.595733pt;}
.y9c{bottom:181.479333pt;}
.y7a{bottom:188.724400pt;}
.ya0{bottom:189.026667pt;}
.y9e{bottom:189.038267pt;}
.y24{bottom:194.975733pt;}
.y49{bottom:195.595733pt;}
.y98{bottom:204.917733pt;}
.y9a{bottom:204.929467pt;}
.y79{bottom:207.391067pt;}
.y97{bottom:209.370400pt;}
.y23{bottom:210.975733pt;}
.y48{bottom:211.595733pt;}
.y9b{bottom:216.917733pt;}
.y99{bottom:216.929467pt;}
.y78{bottom:226.057733pt;}
.y22{bottom:226.975733pt;}
.y47{bottom:227.595600pt;}
.y93{bottom:232.808800pt;}
.y95{bottom:232.820533pt;}
.y92{bottom:237.261467pt;}
.y21{bottom:242.975733pt;}
.y46{bottom:243.595600pt;}
.y77{bottom:244.724400pt;}
.y96{bottom:244.808800pt;}
.y94{bottom:244.820533pt;}
.y8e{bottom:260.699867pt;}
.y90{bottom:260.711600pt;}
.y76{bottom:263.391067pt;}
.y8d{bottom:265.152533pt;}
.y91{bottom:272.699867pt;}
.y8f{bottom:272.711600pt;}
.y45{bottom:275.595600pt;}
.y20{bottom:275.605600pt;}
.y75{bottom:282.057733pt;}
.y89{bottom:288.590933pt;}
.y8b{bottom:288.602667pt;}
.y44{bottom:291.595600pt;}
.y1f{bottom:291.605600pt;}
.y88{bottom:293.043600pt;}
.y8c{bottom:300.590933pt;}
.y8a{bottom:300.602667pt;}
.y74{bottom:300.724400pt;}
.y43{bottom:307.595600pt;}
.y1e{bottom:307.605600pt;}
.y84{bottom:316.482000pt;}
.y86{bottom:316.493733pt;}
.y73{bottom:319.391067pt;}
.y83{bottom:320.934667pt;}
.y42{bottom:323.595600pt;}
.y1d{bottom:323.605600pt;}
.y87{bottom:328.482000pt;}
.y85{bottom:328.493733pt;}
.y72{bottom:338.057733pt;}
.y41{bottom:339.595600pt;}
.y1c{bottom:339.605600pt;}
.y82{bottom:351.932133pt;}
.y40{bottom:355.595600pt;}
.y1b{bottom:355.605600pt;}
.y71{bottom:356.724400pt;}
.y81{bottom:363.932133pt;}
.y3f{bottom:371.595600pt;}
.y1a{bottom:371.605600pt;}
.y70{bottom:375.391067pt;}
.y80{bottom:386.446133pt;}
.y3e{bottom:387.595600pt;}
.y19{bottom:387.605600pt;}
.y6f{bottom:394.057733pt;}
.y7f{bottom:401.779467pt;}
.y3d{bottom:403.595600pt;}
.y18{bottom:403.605600pt;}
.y6e{bottom:412.724400pt;}
.y3c{bottom:419.595600pt;}
.y17{bottom:419.605600pt;}
.y6d{bottom:431.391067pt;}
.y3b{bottom:435.595600pt;}
.y16{bottom:435.605600pt;}
.y6c{bottom:450.057733pt;}
.y3a{bottom:451.595600pt;}
.y15{bottom:451.605600pt;}
.y39{bottom:467.595600pt;}
.y14{bottom:467.605600pt;}
.y6b{bottom:468.724400pt;}
.y38{bottom:483.595600pt;}
.y13{bottom:483.605600pt;}
.y6a{bottom:487.391067pt;}
.y37{bottom:499.595600pt;}
.y12{bottom:499.605600pt;}
.y69{bottom:506.057733pt;}
.y36{bottom:515.595600pt;}
.y68{bottom:524.724400pt;}
.y67{bottom:543.391067pt;}
.y11{bottom:549.621333pt;}
.y35{bottom:550.493333pt;}
.y66{bottom:562.057733pt;}
.y10{bottom:565.621333pt;}
.y34{bottom:566.493333pt;}
.y65{bottom:580.724400pt;}
.yf{bottom:581.621333pt;}
.y33{bottom:582.493333pt;}
.yb3{bottom:596.914933pt;}
.ye{bottom:597.621333pt;}
.y32{bottom:598.493333pt;}
.y64{bottom:599.391067pt;}
.yb2{bottom:612.248267pt;}
.yd{bottom:613.621333pt;}
.y31{bottom:614.493333pt;}
.y63{bottom:618.057733pt;}
.yb1{bottom:627.581600pt;}
.y30{bottom:630.493333pt;}
.y62{bottom:636.724400pt;}
.yb0{bottom:642.914933pt;}
.y61{bottom:655.391067pt;}
.y2f{bottom:665.390933pt;}
.yc{bottom:665.526800pt;}
.y60{bottom:674.057733pt;}
.y2e{bottom:681.390933pt;}
.yb{bottom:681.526800pt;}
.y5f{bottom:692.724400pt;}
.y2d{bottom:697.390933pt;}
.ya{bottom:697.526800pt;}
.y5e{bottom:711.391067pt;}
.y5d{bottom:730.057733pt;}
.y5c{bottom:748.724400pt;}
.yaf{bottom:763.474933pt;}
.y2c{bottom:766.304400pt;}
.y5b{bottom:767.391067pt;}
.yae{bottom:778.808267pt;}
.yb5{bottom:785.501600pt;}
.y5a{bottom:786.057733pt;}
.yb9{bottom:790.226133pt;}
.y2b{bottom:792.971067pt;}
.yad{bottom:794.141600pt;}
.yb4{bottom:800.834933pt;}
.y59{bottom:804.724400pt;}
.yb8{bottom:805.559467pt;}
.yac{bottom:809.474933pt;}
.y2a{bottom:819.637733pt;}
.y58{bottom:823.391067pt;}
.y57{bottom:842.057733pt;}
.y56{bottom:860.724400pt;}
.y55{bottom:879.391067pt;}
.y29{bottom:884.099600pt;}
.y54{bottom:898.057733pt;}
.y53{bottom:916.724400pt;}
.y52{bottom:935.391067pt;}
.y51{bottom:954.057733pt;}
.y9{bottom:961.090533pt;}
.y50{bottom:972.724400pt;}
.y8{bottom:977.090533pt;}
.y4f{bottom:991.391067pt;}
.y7{bottom:993.090533pt;}
.y6{bottom:1009.090533pt;}
.y2{bottom:1016.151067pt;}
.y5{bottom:1032.649600pt;}
.y4{bottom:1048.649600pt;}
.y4e{bottom:1057.090533pt;}
.y3{bottom:1064.649600pt;}
.h11{height:29.645833pt;}
.h14{height:33.328125pt;}
.h10{height:33.351562pt;}
.h8{height:34.945312pt;}
.h4{height:34.968750pt;}
.h12{height:35.583333pt;}
.h2{height:37.057292pt;}
.h7{height:38.861719pt;}
.h15{height:40.031250pt;}
.h18{height:40.734375pt;}
.hd{height:40.763021pt;}
.ha{height:41.940104pt;}
.hf{height:43.375000pt;}
.h9{height:44.479167pt;}
.h17{height:46.134115pt;}
.hb{height:47.135417pt;}
.he{height:48.927083pt;}
.hc{height:50.604167pt;}
.h16{height:51.162229pt;}
.h5{height:51.837500pt;}
.h13{height:63.517458pt;}
.h6{height:65.062500pt;}
.h3{height:100.275788pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:86.824133pt;}
.xb{left:93.438267pt;}
.xa{left:100.104933pt;}
.x2{left:113.964000pt;}
.x2f{left:139.842533pt;}
.x10{left:151.181200pt;}
.x11{left:156.036400pt;}
.xc{left:170.078800pt;}
.xd{left:177.637867pt;}
.xe{left:192.756000pt;}
.x2d{left:207.890400pt;}
.x12{left:216.224667pt;}
.x2c{left:226.770400pt;}
.x24{left:323.454800pt;}
.x1a{left:333.119867pt;}
.x13{left:336.161200pt;}
.x2e{left:390.183733pt;}
.x1{left:393.517067pt;}
.x26{left:395.188133pt;}
.x2a{left:408.193067pt;}
.x25{left:417.532933pt;}
.x14{left:418.963867pt;}
.x21{left:422.774133pt;}
.x28{left:424.681333pt;}
.x1b{left:425.894267pt;}
.x1c{left:428.179467pt;}
.x15{left:431.406667pt;}
.x8{left:437.779333pt;}
.x3{left:462.464933pt;}
.x9{left:479.170000pt;}
.x1e{left:510.957200pt;}
.x5{left:512.468800pt;}
.x1d{left:519.397600pt;}
.x27{left:520.622133pt;}
.x17{left:523.663600pt;}
.x16{left:525.439600pt;}
.x4{left:543.869200pt;}
.x6{left:550.537200pt;}
.x7{left:554.961067pt;}
.x20{left:575.046533pt;}
.x22{left:588.215467pt;}
.x29{left:593.213467pt;}
.x1f{left:597.391200pt;}
.x18{left:598.822133pt;}
.x2b{left:605.752533pt;}
.x23{left:608.380400pt;}
.x19{left:613.936800pt;}
}




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