
    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_64d7d31881f4eddcd5bbf440.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_cb5705e2e2ad8069ebe659cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;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_8eac985f4a724f8b2bc0d701.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.967000;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_b82a015c4859cbb6b1b97b96.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.510000;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_3f38749645ccd2333b805ff9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.383000;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_215174b96f73607e0546e776.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740000;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_09fabb7f8beeb4bd155c5997.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.392000;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_c9251a9cfeeff29c1fa30dcb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.007000;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_7e25a5dd8c943e59917f5415.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.509000;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_a7f8bfc117e633b1aa83ccba.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938000;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_fab21469b075e8c854a765c9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938000;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_ca3642b44c6d5abf78d5ef94.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.705000;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:ffd;src:url('chunks/assets/font_a0ace4fc26ba4089d77f97b1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.969000;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:ffe;src:url('chunks/assets/font_11060a15e52d239ca43cf352.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.106000;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:fff;src:url('chunks/assets/font_1f0ccbfbc98cddb7fea5cdba.woff2')format("woff");}.fff{font-family:fff;line-height:0.579000;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:ff10;src:url('chunks/assets/font_3ee373072eb1657932a04780.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.774000;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:ff11;src:url('chunks/assets/font_790876599ce572d3ebdd37e0.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.073000;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:ff12;src:url('chunks/assets/font_04689ee1426e60e901c63444.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.715000;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:ff13;src:url('chunks/assets/font_0b7b818ad5c7f427bc08481b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.460000;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:ff14;src:url('chunks/assets/font_4e614ed833797ef8b68c2f98.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.429000;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:ff15;src:url('chunks/assets/font_1ca0da0ec5381532b5ec0732.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.947000;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:ff16;src:url('chunks/assets/font_78f6b0ce75e811ca282b37ca.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.924000;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);}
.m3{transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.004800px;}
.ls5{letter-spacing:0.012000px;}
.ls1a{letter-spacing:0.038400px;}
.ls13{letter-spacing:0.060001px;}
.ls0{letter-spacing:0.082789px;}
.ls17{letter-spacing:0.110399px;}
.lsd{letter-spacing:0.144001px;}
.ls15{letter-spacing:0.153598px;}
.ls12{letter-spacing:0.168002px;}
.ls4{letter-spacing:0.174002px;}
.ls8{letter-spacing:0.186002px;}
.ls18{letter-spacing:0.225597px;}
.lsf{letter-spacing:9.990100px;}
.ls3{letter-spacing:10.243072px;}
.ls1c{letter-spacing:10.511869px;}
.ls6{letter-spacing:10.550268px;}
.ls1b{letter-spacing:10.852664px;}
.ls19{letter-spacing:12.990130px;}
.lsa{letter-spacing:13.098131px;}
.ls11{letter-spacing:13.110131px;}
.lsb{letter-spacing:13.140131px;}
.lsc{letter-spacing:13.206132px;}
.ls9{letter-spacing:13.236132px;}
.lse{letter-spacing:13.326133px;}
.ls10{letter-spacing:13.452135px;}
.ls14{letter-spacing:13.482135px;}
.ls1{letter-spacing:21.124536px;}
.ls2{letter-spacing:23.846102px;}
.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;}
}
.ws71{word-spacing:-13.296133px;}
.ws6e{word-spacing:-13.266133px;}
.ws82{word-spacing:-13.158132px;}
.ws27{word-spacing:-10.598268px;}
.ws8f{word-spacing:-10.050101px;}
.ws20{word-spacing:-0.060001px;}
.ws13{word-spacing:-0.047999px;}
.ws42{word-spacing:0.000000px;}
.ws108{word-spacing:9.595080px;}
.ws2a{word-spacing:9.633480px;}
.ws104{word-spacing:9.739078px;}
.ws2c{word-spacing:9.743878px;}
.ws38{word-spacing:9.748678px;}
.ws109{word-spacing:9.791878px;}
.ws2d{word-spacing:9.796678px;}
.wse2{word-spacing:9.815877px;}
.ws62{word-spacing:9.820677px;}
.ws29{word-spacing:9.825477px;}
.wsae{word-spacing:9.830277px;}
.ws34{word-spacing:9.844677px;}
.ws10{word-spacing:9.849477px;}
.wse7{word-spacing:9.854277px;}
.wsf7{word-spacing:9.863877px;}
.wsb7{word-spacing:9.868677px;}
.ws33{word-spacing:9.873477px;}
.wsf{word-spacing:9.878277px;}
.ws31{word-spacing:9.883076px;}
.ws10a{word-spacing:9.887876px;}
.ws32{word-spacing:9.892676px;}
.wsd{word-spacing:9.897476px;}
.wsb9{word-spacing:9.902276px;}
.wsfe{word-spacing:9.907076px;}
.ws40{word-spacing:9.916676px;}
.ws2e{word-spacing:9.921476px;}
.ws41{word-spacing:9.926276px;}
.wsd3{word-spacing:9.931076px;}
.wsec{word-spacing:9.935876px;}
.ws102{word-spacing:9.940676px;}
.wsf9{word-spacing:9.955076px;}
.ws111{word-spacing:9.961723px;}
.wsd2{word-spacing:9.964675px;}
.wsc4{word-spacing:9.969475px;}
.wscd{word-spacing:9.974275px;}
.ws3b{word-spacing:9.979075px;}
.wsce{word-spacing:9.988675px;}
.wscc{word-spacing:10.003075px;}
.ws3d{word-spacing:10.007875px;}
.wsb1{word-spacing:10.012675px;}
.ws11{word-spacing:10.017475px;}
.wse{word-spacing:10.022275px;}
.wse0{word-spacing:10.027075px;}
.ws105{word-spacing:10.031875px;}
.ws3f{word-spacing:10.036675px;}
.ws2b{word-spacing:10.041474px;}
.ws39{word-spacing:10.046274px;}
.ws112{word-spacing:10.051074px;}
.wsef{word-spacing:10.055874px;}
.ws10e{word-spacing:10.060674px;}
.ws3c{word-spacing:10.070274px;}
.wsb6{word-spacing:10.075074px;}
.ws2f{word-spacing:10.079874px;}
.wsd0{word-spacing:10.094274px;}
.ws3e{word-spacing:10.113474px;}
.wsc8{word-spacing:10.118274px;}
.wsc5{word-spacing:10.123073px;}
.wsf3{word-spacing:10.127873px;}
.ws36{word-spacing:10.132673px;}
.wsf0{word-spacing:10.137473px;}
.ws106{word-spacing:10.156673px;}
.wse1{word-spacing:10.161473px;}
.ws10c{word-spacing:10.166273px;}
.ws26{word-spacing:10.175873px;}
.ws28{word-spacing:10.180673px;}
.wsb0{word-spacing:10.195073px;}
.ws103{word-spacing:10.199873px;}
.ws12{word-spacing:10.204672px;}
.ws30{word-spacing:10.209472px;}
.ws101{word-spacing:10.219072px;}
.wse3{word-spacing:10.233472px;}
.wsad{word-spacing:10.238272px;}
.wsf8{word-spacing:10.243072px;}
.ws10f{word-spacing:10.247872px;}
.wsfd{word-spacing:10.252672px;}
.wsf1{word-spacing:10.253798px;}
.wsea{word-spacing:10.262272px;}
.wsc7{word-spacing:10.267072px;}
.wse8{word-spacing:10.271872px;}
.ws10d{word-spacing:10.276672px;}
.ws0{word-spacing:10.281471px;}
.ws100{word-spacing:10.300671px;}
.wsc2{word-spacing:10.305471px;}
.wsc6{word-spacing:10.315071px;}
.ws107{word-spacing:10.319871px;}
.ws10b{word-spacing:10.324671px;}
.wse5{word-spacing:10.329471px;}
.wsfa{word-spacing:10.334271px;}
.wse4{word-spacing:10.339071px;}
.wscb{word-spacing:10.343871px;}
.wsff{word-spacing:10.348671px;}
.wsaf{word-spacing:10.353471px;}
.wsfc{word-spacing:10.358271px;}
.wse6{word-spacing:10.363070px;}
.wsb8{word-spacing:10.387070px;}
.wsd1{word-spacing:10.406270px;}
.ws37{word-spacing:10.425470px;}
.ws3a{word-spacing:10.444669px;}
.ws35{word-spacing:10.463869px;}
.wseb{word-spacing:10.468669px;}
.wsf4{word-spacing:10.487869px;}
.ws110{word-spacing:10.492669px;}
.wsca{word-spacing:10.497469px;}
.wsed{word-spacing:10.507069px;}
.wse9{word-spacing:10.531068px;}
.wsfb{word-spacing:10.535868px;}
.wsf5{word-spacing:10.569468px;}
.wsf6{word-spacing:10.574268px;}
.wsf2{word-spacing:10.612667px;}
.wsc3{word-spacing:10.684666px;}
.ws7{word-spacing:11.556000px;}
.ws8{word-spacing:11.561400px;}
.wsc{word-spacing:11.685600px;}
.wsa{word-spacing:11.701800px;}
.ws6{word-spacing:11.728800px;}
.wsb{word-spacing:11.820600px;}
.ws5{word-spacing:11.853000px;}
.ws9{word-spacing:11.896200px;}
.ws4{word-spacing:11.901600px;}
.ws1a{word-spacing:12.260700px;}
.ws18{word-spacing:12.357600px;}
.ws19{word-spacing:12.431700px;}
.ws1b{word-spacing:12.517200px;}
.ws16{word-spacing:12.591300px;}
.ws1d{word-spacing:12.597000px;}
.wsdc{word-spacing:12.600126px;}
.ws17{word-spacing:12.671100px;}
.ws1c{word-spacing:12.688200px;}
.wsd6{word-spacing:12.690127px;}
.ws15{word-spacing:12.699600px;}
.wsdb{word-spacing:12.708127px;}
.wsbc{word-spacing:12.738127px;}
.wsc1{word-spacing:12.750128px;}
.ws90{word-spacing:12.762128px;}
.ws14{word-spacing:12.785100px;}
.ws8e{word-spacing:12.834128px;}
.wsc0{word-spacing:12.888129px;}
.wsbf{word-spacing:12.900129px;}
.wsd4{word-spacing:12.906129px;}
.ws94{word-spacing:12.924129px;}
.ws48{word-spacing:12.936129px;}
.ws8d{word-spacing:12.942129px;}
.ws55{word-spacing:12.960130px;}
.ws56{word-spacing:12.966130px;}
.ws9e{word-spacing:12.972130px;}
.ws6a{word-spacing:12.978130px;}
.ws75{word-spacing:12.984130px;}
.wscf{word-spacing:12.996130px;}
.ws99{word-spacing:13.002130px;}
.ws45{word-spacing:13.008130px;}
.ws25{word-spacing:13.014130px;}
.ws78{word-spacing:13.020130px;}
.ws1e{word-spacing:13.026130px;}
.wsbd{word-spacing:13.032130px;}
.ws51{word-spacing:13.038130px;}
.ws70{word-spacing:13.044130px;}
.ws83{word-spacing:13.050130px;}
.wsa0{word-spacing:13.056131px;}
.ws73{word-spacing:13.062131px;}
.ws7e{word-spacing:13.068131px;}
.ws69{word-spacing:13.074131px;}
.ws24{word-spacing:13.080131px;}
.ws23{word-spacing:13.086131px;}
.ws52{word-spacing:13.092131px;}
.ws9d{word-spacing:13.098131px;}
.ws4b{word-spacing:13.104131px;}
.ws44{word-spacing:13.110131px;}
.ws98{word-spacing:13.116131px;}
.ws5c{word-spacing:13.122131px;}
.ws1f{word-spacing:13.128131px;}
.ws85{word-spacing:13.134131px;}
.ws91{word-spacing:13.140131px;}
.ws43{word-spacing:13.146131px;}
.ws86{word-spacing:13.152132px;}
.wsb4{word-spacing:13.158132px;}
.ws68{word-spacing:13.164132px;}
.ws66{word-spacing:13.170132px;}
.ws4e{word-spacing:13.176132px;}
.ws22{word-spacing:13.182132px;}
.ws72{word-spacing:13.188132px;}
.ws74{word-spacing:13.194132px;}
.wsd5{word-spacing:13.200132px;}
.ws47{word-spacing:13.206132px;}
.ws57{word-spacing:13.212132px;}
.ws76{word-spacing:13.218132px;}
.ws21{word-spacing:13.224132px;}
.wsa9{word-spacing:13.230132px;}
.ws6f{word-spacing:13.236132px;}
.ws59{word-spacing:13.242132px;}
.ws67{word-spacing:13.254133px;}
.wsa5{word-spacing:13.272133px;}
.ws63{word-spacing:13.290133px;}
.ws4a{word-spacing:13.296133px;}
.ws5d{word-spacing:13.302133px;}
.ws6d{word-spacing:13.308133px;}
.wsa8{word-spacing:13.326133px;}
.ws77{word-spacing:13.332133px;}
.ws5b{word-spacing:13.338133px;}
.ws49{word-spacing:13.344133px;}
.ws79{word-spacing:13.350134px;}
.ws7d{word-spacing:13.356134px;}
.ws95{word-spacing:13.362134px;}
.ws64{word-spacing:13.368134px;}
.ws7f{word-spacing:13.374134px;}
.ws61{word-spacing:13.380134px;}
.ws93{word-spacing:13.386134px;}
.wsab{word-spacing:13.392134px;}
.ws92{word-spacing:13.398134px;}
.wsb5{word-spacing:13.404134px;}
.ws6b{word-spacing:13.410134px;}
.wsaa{word-spacing:13.416134px;}
.ws80{word-spacing:13.422134px;}
.ws4d{word-spacing:13.428134px;}
.ws50{word-spacing:13.440134px;}
.ws8a{word-spacing:13.446134px;}
.ws9c{word-spacing:13.452135px;}
.ws96{word-spacing:13.458135px;}
.wsac{word-spacing:13.464135px;}
.ws60{word-spacing:13.470135px;}
.ws46{word-spacing:13.476135px;}
.wsb2{word-spacing:13.482135px;}
.ws7b{word-spacing:13.488135px;}
.ws58{word-spacing:13.494135px;}
.wsd9{word-spacing:13.506135px;}
.wsbb{word-spacing:13.512135px;}
.ws84{word-spacing:13.518135px;}
.ws7c{word-spacing:13.536135px;}
.ws89{word-spacing:13.542135px;}
.ws5f{word-spacing:13.560136px;}
.ws9b{word-spacing:13.578136px;}
.ws8b{word-spacing:13.584136px;}
.wsbe{word-spacing:13.602136px;}
.wsa7{word-spacing:13.614136px;}
.wsa4{word-spacing:13.620136px;}
.ws8c{word-spacing:13.632136px;}
.ws5a{word-spacing:13.638136px;}
.ws9a{word-spacing:13.662137px;}
.wsa1{word-spacing:13.668137px;}
.ws9f{word-spacing:13.674137px;}
.wsd7{word-spacing:13.686137px;}
.ws4c{word-spacing:13.704137px;}
.wsa2{word-spacing:13.710137px;}
.wsb3{word-spacing:13.716137px;}
.ws4f{word-spacing:13.728137px;}
.wsd8{word-spacing:13.752138px;}
.ws88{word-spacing:13.764138px;}
.wsa6{word-spacing:13.770138px;}
.wsda{word-spacing:13.782138px;}
.ws65{word-spacing:13.794138px;}
.wsa3{word-spacing:13.836138px;}
.ws7a{word-spacing:13.872139px;}
.wsc9{word-spacing:15.393472px;}
.wsba{word-spacing:15.407872px;}
.ws97{word-spacing:15.458271px;}
.ws87{word-spacing:15.472671px;}
.wsde{word-spacing:15.523071px;}
.ws5e{word-spacing:15.580670px;}
.ws54{word-spacing:15.602270px;}
.wsdd{word-spacing:15.631070px;}
.ws6c{word-spacing:15.695869px;}
.ws81{word-spacing:15.717469px;}
.ws53{word-spacing:15.731869px;}
.ws1{word-spacing:26.016130px;}
.ws2{word-spacing:26.304132px;}
.ws3{word-spacing:26.400132px;}
.wsdf{word-spacing:59.821652px;}
.wsee{word-spacing:59.860052px;}
._c{margin-left:-12.474286px;}
._7{margin-left:-10.550268px;}
._d{margin-left:-9.450094px;}
._8{margin-left:-4.713541px;}
._9{margin-left:-2.807965px;}
._2{margin-left:-1.137586px;}
._3{width:1.316700px;}
._a{width:9.398283px;}
._1{width:10.982263px;}
._b{width:12.678127px;}
._4{width:13.902300px;}
._f{width:15.796603px;}
._e{width:16.919859px;}
._12{width:20.236547px;}
._11{width:21.268534px;}
._0{width:27.888139px;}
._5{width:46.545018px;}
._10{width:1713.924176px;}
._6{width:1740.458244px;}
.fc1{color:rgb(66,93,177);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.995200px;}
.fs8{font-size:39.996000px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs7{font-size:60.000600px;}
.fs6{font-size:71.999400px;}
.fs4{font-size:95.999400px;}
.fs1{font-size:120.000600px;}
.y0{bottom:0.000000px;}
.y28{bottom:54.000000px;}
.yd8{bottom:124.490895px;}
.y117{bottom:124.493610px;}
.y131{bottom:124.494240px;}
.y144{bottom:124.494885px;}
.y27{bottom:124.495530px;}
.y8e{bottom:124.496325px;}
.y19e{bottom:124.496672px;}
.y6d{bottom:124.497210px;}
.y40{bottom:124.502744px;}
.y164{bottom:125.075490px;}
.yed{bottom:126.701250px;}
.yfe{bottom:128.491395px;}
.y19d{bottom:138.783693px;}
.y1d8{bottom:140.570194px;}
.y3f{bottom:141.000138px;}
.yd7{bottom:143.965590px;}
.y116{bottom:143.968304px;}
.y130{bottom:143.968935px;}
.y143{bottom:143.969580px;}
.y26{bottom:143.970225px;}
.y8d{bottom:143.971019px;}
.y6c{bottom:143.971904px;}
.y163{bottom:144.550184px;}
.yec{bottom:146.175945px;}
.yfd{bottom:148.050090px;}
.y1d7{bottom:154.857215px;}
.y19c{bottom:158.257050px;}
.yd6{bottom:163.524285px;}
.y115{bottom:163.527000px;}
.y12f{bottom:163.527631px;}
.y142{bottom:163.528275px;}
.y25{bottom:163.528920px;}
.y8c{bottom:163.529715px;}
.y6b{bottom:163.530600px;}
.y162{bottom:164.108880px;}
.yeb{bottom:165.734640px;}
.y3e{bottom:166.511819px;}
.yfc{bottom:167.524785px;}
.y19b{bottom:172.458872px;}
.y1d6{bottom:174.330572px;}
.yd5{bottom:182.998980px;}
.y114{bottom:183.001695px;}
.y12e{bottom:183.002325px;}
.y141{bottom:183.002970px;}
.y24{bottom:183.003615px;}
.y8b{bottom:183.004410px;}
.y3d{bottom:183.009213px;}
.y161{bottom:183.583575px;}
.yea{bottom:185.209335px;}
.y19a{bottom:186.745893px;}
.yfb{bottom:186.999480px;}
.y1d5{bottom:188.617593px;}
.y6a{bottom:188.957400px;}
.yd4{bottom:202.473675px;}
.y113{bottom:202.476390px;}
.y12d{bottom:202.477020px;}
.y140{bottom:202.477665px;}
.y23{bottom:202.478310px;}
.y8a{bottom:202.479104px;}
.y208{bottom:202.818722px;}
.y1d4{bottom:202.819416px;}
.y160{bottom:203.058269px;}
.ye9{bottom:204.684030px;}
.y199{bottom:206.218200px;}
.yfa{bottom:206.558175px;}
.y3c{bottom:208.520894px;}
.y207{bottom:217.105744px;}
.y198{bottom:220.505222px;}
.yd3{bottom:222.032370px;}
.y112{bottom:222.035085px;}
.y12c{bottom:222.035716px;}
.y13f{bottom:222.036361px;}
.y22{bottom:222.037005px;}
.y89{bottom:222.037800px;}
.y1d3{bottom:222.292772px;}
.y15f{bottom:222.616965px;}
.ye8{bottom:224.242725px;}
.y3b{bottom:225.018288px;}
.yf9{bottom:226.032870px;}
.y206{bottom:231.307566px;}
.yae{bottom:232.061250px;}
.y197{bottom:234.707044px;}
.y1d2{bottom:236.579794px;}
.y69{bottom:238.020315px;}
.yd2{bottom:241.507065px;}
.y111{bottom:241.509780px;}
.y12b{bottom:241.510411px;}
.y13e{bottom:241.511055px;}
.y21{bottom:241.511700px;}
.y3a{bottom:241.515682px;}
.y15e{bottom:242.091660px;}
.ye7{bottom:243.717420px;}
.yf8{bottom:245.507565px;}
.y88{bottom:247.464450px;}
.y205{bottom:250.866122px;}
.y1d1{bottom:250.866815px;}
.yad{bottom:251.535945px;}
.y196{bottom:254.265600px;}
.y68{bottom:257.579011px;}
.yd1{bottom:260.981760px;}
.y110{bottom:260.984475px;}
.y12a{bottom:260.985105px;}
.y13d{bottom:260.985750px;}
.y15d{bottom:261.566355px;}
.ye6{bottom:263.192115px;}
.yf7{bottom:265.066261px;}
.y204{bottom:265.067944px;}
.y20{bottom:267.023550px;}
.y39{bottom:267.027363px;}
.y195{bottom:268.467422px;}
.y1d0{bottom:270.340172px;}
.yac{bottom:271.010640px;}
.y67{bottom:277.053705px;}
.yd0{bottom:280.456454px;}
.y10f{bottom:280.459169px;}
.y129{bottom:280.459800px;}
.y15c{bottom:281.125050px;}
.ye5{bottom:282.666810px;}
.y194{bottom:282.754444px;}
.y38{bottom:283.524757px;}
.yf6{bottom:284.540955px;}
.y203{bottom:284.541301px;}
.y1cf{bottom:284.541994px;}
.y13c{bottom:286.497600px;}
.yab{bottom:290.569335px;}
.y87{bottom:290.576431px;}
.y66{bottom:296.528400px;}
.y202{bottom:298.828322px;}
.ycf{bottom:300.015150px;}
.y10e{bottom:300.017865px;}
.y37{bottom:300.022150px;}
.y15b{bottom:300.599745px;}
.ye4{bottom:302.225505px;}
.y193{bottom:302.227800px;}
.yf5{bottom:304.015650px;}
.y1ce{bottom:304.100550px;}
.y128{bottom:305.971500px;}
.yaa{bottom:310.044030px;}
.y86{bottom:310.051125px;}
.y201{bottom:313.115344px;}
.y65{bottom:316.087096px;}
.y192{bottom:316.514822px;}
.y36{bottom:316.519544px;}
.y1cd{bottom:318.302372px;}
.yce{bottom:319.489845px;}
.y10d{bottom:319.492560px;}
.y15a{bottom:320.074440px;}
.ye3{bottom:321.700200px;}
.ya9{bottom:329.518725px;}
.y16c{bottom:329.524785px;}
.y85{bottom:329.525820px;}
.y191{bottom:330.716644px;}
.y200{bottom:332.588700px;}
.y1cc{bottom:332.589394px;}
.y35{bottom:333.016938px;}
.y64{bottom:335.561790px;}
.y104{bottom:336.073752px;}
.ycd{bottom:338.964540px;}
.y10c{bottom:338.967254px;}
.y159{bottom:339.549134px;}
.y13b{bottom:339.560370px;}
.ye2{bottom:341.174895px;}
.y127{bottom:345.767249px;}
.y1ff{bottom:346.790523px;}
.ya8{bottom:349.077420px;}
.y16b{bottom:349.083481px;}
.y84{bottom:349.084516px;}
.y34{bottom:349.514332px;}
.y190{bottom:350.275200px;}
.y1cb{bottom:352.062750px;}
.y63{bottom:355.036485px;}
.ycc{bottom:358.523235px;}
.y10b{bottom:358.525950px;}
.y13a{bottom:359.035065px;}
.y158{bottom:359.107830px;}
.y103{bottom:359.289862px;}
.ye1{bottom:360.733590px;}
.y1fe{bottom:361.077544px;}
.y1f{bottom:362.441250px;}
.y18f{bottom:364.477022px;}
.y126{bottom:365.325945px;}
.y1ca{bottom:366.349772px;}
.ya7{bottom:368.552115px;}
.y16a{bottom:368.558175px;}
.y83{bottom:368.559211px;}
.y102{bottom:373.576884px;}
.y62{bottom:374.511180px;}
.y33{bottom:375.026013px;}
.ycb{bottom:377.997930px;}
.y139{bottom:378.509760px;}
.y157{bottom:378.582525px;}
.ye0{bottom:380.208285px;}
.y1fd{bottom:380.550901px;}
.y1e{bottom:383.445750px;}
.y18e{bottom:384.035578px;}
.y10a{bottom:384.037974px;}
.y125{bottom:384.800640px;}
.y1c9{bottom:385.823128px;}
.y101{bottom:387.778706px;}
.ya6{bottom:388.026810px;}
.y169{bottom:388.032870px;}
.y82{bottom:388.033905px;}
.y61{bottom:394.069875px;}
.y1fc{bottom:394.837922px;}
.yca{bottom:397.472625px;}
.y138{bottom:397.984454px;}
.y156{bottom:398.057219px;}
.y18d{bottom:398.237400px;}
.ydf{bottom:399.682980px;}
.y1c8{bottom:400.110150px;}
.y32{bottom:400.537694px;}
.y100{bottom:402.065728px;}
.y124{bottom:404.275334px;}
.y1d{bottom:404.450250px;}
.y109{bottom:404.957400px;}
.ya5{bottom:407.501504px;}
.y168{bottom:407.507565px;}
.y81{bottom:407.508600px;}
.y7f{bottom:407.508854px;}
.y1fb{bottom:409.039744px;}
.y60{bottom:413.544570px;}
.y80{bottom:414.226650px;}
.y1c7{bottom:414.311972px;}
.yff{bottom:416.267550px;}
.yc9{bottom:417.031320px;}
.y137{bottom:417.543150px;}
.y155{bottom:417.615915px;}
.y18c{bottom:417.710757px;}
.yde{bottom:419.241675px;}
.y123{bottom:423.834030px;}
.y1c{bottom:425.454750px;}
.y31{bottom:425.964176px;}
.ya4{bottom:427.060200px;}
.y167{bottom:427.066261px;}
.y7c{bottom:427.066905px;}
.y7e{bottom:427.067550px;}
.y1fa{bottom:428.597981px;}
.y18b{bottom:431.997778px;}
.y5f{bottom:433.019265px;}
.y7d{bottom:433.700700px;}
.y1c6{bottom:433.870528px;}
.yc8{bottom:436.506015px;}
.y154{bottom:437.090610px;}
.ydd{bottom:438.716370px;}
.y1f9{bottom:442.799804px;}
.y122{bottom:443.308725px;}
.y18a{bottom:446.284799px;}
.y1b{bottom:446.459250px;}
.ya3{bottom:446.534895px;}
.y79{bottom:446.538645px;}
.y166{bottom:446.540955px;}
.y7b{bottom:446.541600px;}
.y1c5{bottom:448.072350px;}
.y14c{bottom:449.516710px;}
.y30{bottom:451.475857px;}
.y5e{bottom:452.577961px;}
.y7a{bottom:453.174750px;}
.yc7{bottom:455.980710px;}
.y153{bottom:456.565305px;}
.y1f8{bottom:457.086825px;}
.ydc{bottom:458.191065px;}
.y108{bottom:458.616165px;}
.y121{bottom:462.783419px;}
.y189{bottom:465.759356px;}
.ya2{bottom:466.009590px;}
.y78{bottom:466.013340px;}
.y165{bottom:466.015650px;}
.y1a{bottom:467.463750px;}
.y1c4{bottom:467.542294px;}
.y2f{bottom:467.973251px;}
.y5d{bottom:472.052655px;}
.y14b{bottom:472.816818px;}
.yc6{bottom:475.539405px;}
.y152{bottom:476.124000px;}
.y1f7{bottom:476.560182px;}
.ydb{bottom:477.665760px;}
.y107{bottom:478.090860px;}
.y188{bottom:479.961179px;}
.y1c3{bottom:481.829316px;}
.y120{bottom:482.342115px;}
.ya1{bottom:485.568285px;}
.y77{bottom:485.572035px;}
.y14a{bottom:487.018641px;}
.y19{bottom:488.468250px;}
.y1f6{bottom:490.847203px;}
.y5c{bottom:491.527350px;}
.y2e{bottom:493.484932px;}
.yc5{bottom:495.014100px;}
.y151{bottom:495.598695px;}
.yda{bottom:497.224455px;}
.y106{bottom:497.649555px;}
.y187{bottom:499.519734px;}
.y1c2{bottom:501.303872px;}
.y149{bottom:501.305662px;}
.y11f{bottom:501.816810px;}
.ya0{bottom:505.042980px;}
.y76{bottom:505.046730px;}
.y18{bottom:509.472750px;}
.y2d{bottom:509.982326px;}
.y1f5{bottom:510.320560px;}
.y186{bottom:513.721557px;}
.y150{bottom:515.073390px;}
.y148{bottom:515.507485px;}
.y1c1{bottom:515.590894px;}
.yd9{bottom:516.699150px;}
.y5b{bottom:517.038825px;}
.y105{bottom:517.124250px;}
.yc4{bottom:520.526575px;}
.y11e{bottom:521.291504px;}
.y9f{bottom:524.517675px;}
.y75{bottom:524.521425px;}
.y1f4{bottom:524.607581px;}
.y2c{bottom:526.479720px;}
.y185{bottom:528.008578px;}
.y1c0{bottom:529.792716px;}
.y147{bottom:529.794506px;}
.y17{bottom:530.477250px;}
.y14f{bottom:534.632085px;}
.y1f3{bottom:538.809403px;}
.y11d{bottom:540.850200px;}
.yc3{bottom:541.530600px;}
.y2b{bottom:542.977113px;}
.y9e{bottom:544.076370px;}
.y74{bottom:544.080120px;}
.y146{bottom:544.081528px;}
.y5a{bottom:544.081800px;}
.y184{bottom:547.481935px;}
.y1bf{bottom:549.351272px;}
.y16{bottom:551.481750px;}
.y14e{bottom:554.106780px;}
.y145{bottom:558.283350px;}
.y1f2{bottom:558.367959px;}
.y2a{bottom:559.474507px;}
.yf4{bottom:561.767831px;}
.y183{bottom:561.768956px;}
.y9d{bottom:563.551065px;}
.y1be{bottom:563.553094px;}
.y73{bottom:563.554815px;}
.y11c{bottom:566.277000px;}
.y11b{bottom:571.803347px;}
.y15{bottom:572.486250px;}
.y1f1{bottom:572.569781px;}
.y14d{bottom:573.581475px;}
.y182{bottom:575.970778px;}
.yc2{bottom:583.023285px;}
.y9c{bottom:583.025760px;}
.y72{bottom:583.029510px;}
.y1bd{bottom:583.111650px;}
.y29{bottom:584.050200px;}
.yf3{bottom:584.983941px;}
.y1f0{bottom:586.856803px;}
.y59{bottom:593.056169px;}
.y14{bottom:593.490750px;}
.y11a{bottom:595.019457px;}
.y181{bottom:595.529334px;}
.y1bc{bottom:597.313472px;}
.yf2{bottom:599.270962px;}
.y136{bottom:600.292575px;}
.yc1{bottom:602.581981px;}
.y9b{bottom:602.584455px;}
.y71{bottom:602.588205px;}
.y1ef{bottom:606.330159px;}
.y119{bottom:609.306479px;}
.y180{bottom:609.731156px;}
.y1bb{bottom:611.600494px;}
.y58{bottom:612.614865px;}
.yf1{bottom:613.472785px;}
.y13{bottom:614.495250px;}
.y1ee{bottom:620.617181px;}
.yc0{bottom:622.056675px;}
.y9a{bottom:622.059150px;}
.y70{bottom:622.062900px;}
.y135{bottom:623.592684px;}
.y118{bottom:623.593500px;}
.y17f{bottom:624.018178px;}
.yf0{bottom:627.759806px;}
.y1ba{bottom:631.073850px;}
.y57{bottom:632.089560px;}
.y12{bottom:635.499750px;}
.y134{bottom:637.794506px;}
.y17e{bottom:638.220000px;}
.y1ed{bottom:640.090537px;}
.ybf{bottom:641.531370px;}
.y99{bottom:641.533845px;}
.yef{bottom:641.961629px;}
.y1b9{bottom:645.360872px;}
.y6f{bottom:647.574600px;}
.y56{bottom:651.564254px;}
.y133{bottom:652.081528px;}
.y1ec{bottom:654.292360px;}
.yee{bottom:656.248650px;}
.y11{bottom:656.418750px;}
.y17d{bottom:657.778556px;}
.y1b8{bottom:659.562694px;}
.ybe{bottom:661.006065px;}
.y98{bottom:661.008540px;}
.y132{bottom:666.283350px;}
.y55{bottom:671.122950px;}
.y17c{bottom:671.980378px;}
.y1eb{bottom:673.850915px;}
.y1b7{bottom:679.036051px;}
.ybd{bottom:680.564761px;}
.y97{bottom:680.567235px;}
.y17b{bottom:686.267400px;}
.y1ea{bottom:688.052738px;}
.y10{bottom:689.499000px;}
.y54{bottom:690.597645px;}
.y1b6{bottom:693.323072px;}
.ybc{bottom:700.039455px;}
.y96{bottom:700.041930px;}
.y17a{bottom:700.469222px;}
.y1e9{bottom:702.339759px;}
.y1b5{bottom:707.610093px;}
.y53{bottom:710.072340px;}
.y1e8{bottom:716.541582px;}
.ybb{bottom:719.514150px;}
.y95{bottom:719.516625px;}
.y179{bottom:720.027778px;}
.y1b4{bottom:727.084650px;}
.y52{bottom:729.631035px;}
.y178{bottom:734.229600px;}
.y1e7{bottom:736.100137px;}
.yba{bottom:739.072846px;}
.y94{bottom:739.075320px;}
.y1b3{bottom:741.286472px;}
.y177{bottom:748.516622px;}
.y51{bottom:749.105730px;}
.y1e6{bottom:750.301960px;}
.yf{bottom:752.429626px;}
.y1b2{bottom:755.573494px;}
.yb9{bottom:758.547540px;}
.y93{bottom:758.550015px;}
.y1e5{bottom:764.588981px;}
.ye{bottom:767.481038px;}
.y176{bottom:767.989978px;}
.y50{bottom:768.580425px;}
.y1b1{bottom:775.048050px;}
.yb8{bottom:778.022235px;}
.y92{bottom:778.024710px;}
.y175{bottom:782.277000px;}
.yd{bottom:782.447250px;}
.y1e4{bottom:784.062338px;}
.y4f{bottom:788.055119px;}
.y1b0{bottom:789.335072px;}
.yb7{bottom:797.580931px;}
.y91{bottom:797.583405px;}
.y1e3{bottom:798.349359px;}
.y174{bottom:801.750356px;}
.y1af{bottom:803.622093px;}
.y4e{bottom:807.613815px;}
.yc{bottom:812.466075px;}
.y1e2{bottom:812.551182px;}
.y173{bottom:816.037378px;}
.yb6{bottom:817.055625px;}
.y90{bottom:817.058100px;}
.y1ae{bottom:823.095450px;}
.y4d{bottom:827.088510px;}
.yb{bottom:827.433488px;}
.y172{bottom:830.239200px;}
.y1e1{bottom:832.109737px;}
.yb5{bottom:836.530320px;}
.y1ad{bottom:837.297272px;}
.ya{bottom:842.484900px;}
.y8f{bottom:842.569950px;}
.y1e0{bottom:846.311560px;}
.y4c{bottom:846.563204px;}
.y171{bottom:850.478550px;}
.y1ac{bottom:851.584294px;}
.yb4{bottom:856.089016px;}
.y1df{bottom:865.870115px;}
.y1ab{bottom:865.871315px;}
.y4b{bottom:866.121900px;}
.y9{bottom:869.442300px;}
.y7{bottom:869.442900px;}
.y8{bottom:875.480100px;}
.yb3{bottom:875.563711px;}
.y1de{bottom:880.071938px;}
.y1aa{bottom:885.344672px;}
.y4a{bottom:885.596595px;}
.y5{bottom:885.939900px;}
.y6{bottom:891.977850px;}
.y1dd{bottom:894.358959px;}
.yb2{bottom:895.038405px;}
.y170{bottom:899.545860px;}
.y1a9{bottom:899.546494px;}
.y49{bottom:905.071290px;}
.y1dc{bottom:913.833516px;}
.yb1{bottom:914.513100px;}
.y16f{bottom:919.020554px;}
.y1a8{bottom:919.105050px;}
.y4{bottom:923.440575px;}
.y48{bottom:924.629985px;}
.y1db{bottom:928.120537px;}
.y1a7{bottom:933.306872px;}
.y16e{bottom:938.579250px;}
.yb0{bottom:940.025725px;}
.y47{bottom:944.104680px;}
.y1a6{bottom:947.593894px;}
.y3{bottom:960.943762px;}
.yaf{bottom:961.029750px;}
.y1da{bottom:961.795716px;}
.y46{bottom:963.579375px;}
.y16d{bottom:964.091100px;}
.y1a5{bottom:967.067250px;}
.y1d9{bottom:976.082737px;}
.y1a4{bottom:981.354272px;}
.y45{bottom:983.138070px;}
.y1a3{bottom:995.556094px;}
.y2{bottom:998.446950px;}
.y44{bottom:1002.612765px;}
.y1a2{bottom:1015.114650px;}
.y43{bottom:1022.087460px;}
.y1a1{bottom:1029.316472px;}
.y1{bottom:1035.949350px;}
.y42{bottom:1041.562154px;}
.y1a0{bottom:1048.789829px;}
.y41{bottom:1061.120850px;}
.y19f{bottom:1063.076850px;}
.y6e{bottom:1118.692500px;}
.h4{height:26.996400px;}
.hc{height:29.997000px;}
.ha{height:34.943563px;}
.hd{height:35.999550px;}
.h1{height:37.199535px;}
.hf{height:37.200811px;}
.he{height:37.208534px;}
.h5{height:37.908000px;}
.h3{height:40.500000px;}
.h7{height:44.175000px;}
.h9{height:45.000450px;}
.h8{height:53.999550px;}
.hb{height:55.799535px;}
.h6{height:69.215567px;}
.h2{height:86.520433px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x15{left:54.000000px;}
.x16{left:71.433000px;}
.x1{left:300.018750px;}
.x1f{left:306.651900px;}
.x17{left:317.960429px;}
.x20{left:331.483190px;}
.x19{left:335.990400px;}
.x1a{left:342.878700px;}
.xc{left:352.743150px;}
.xd{left:358.270800px;}
.x2{left:365.244000px;}
.x3{left:370.771500px;}
.xe{left:457.681800px;}
.x1d{left:459.297450px;}
.xf{left:463.294350px;}
.x1e{left:466.185600px;}
.x1b{left:491.952600px;}
.x4{left:495.184050px;}
.x1c{left:498.840750px;}
.x5{left:506.409300px;}
.x10{left:562.620300px;}
.x11{left:568.232850px;}
.x6{left:592.469100px;}
.x7{left:598.081800px;}
.x8{left:690.689550px;}
.x9{left:696.302250px;}
.x12{left:701.234400px;}
.x18{left:718.242300px;}
.xa{left:793.417050px;}
.xb{left:799.029750px;}
.x13{left:808.724250px;}
.x14{left:814.336800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.004267pt;}
.ls5{letter-spacing:0.010667pt;}
.ls1a{letter-spacing:0.034133pt;}
.ls13{letter-spacing:0.053334pt;}
.ls0{letter-spacing:0.073590pt;}
.ls17{letter-spacing:0.098132pt;}
.lsd{letter-spacing:0.128001pt;}
.ls15{letter-spacing:0.136532pt;}
.ls12{letter-spacing:0.149335pt;}
.ls4{letter-spacing:0.154668pt;}
.ls8{letter-spacing:0.165335pt;}
.ls18{letter-spacing:0.200531pt;}
.lsf{letter-spacing:8.880089pt;}
.ls3{letter-spacing:9.104953pt;}
.ls1c{letter-spacing:9.343883pt;}
.ls6{letter-spacing:9.378016pt;}
.ls1b{letter-spacing:9.646813pt;}
.ls19{letter-spacing:11.546782pt;}
.lsa{letter-spacing:11.642783pt;}
.ls11{letter-spacing:11.653450pt;}
.lsb{letter-spacing:11.680117pt;}
.lsc{letter-spacing:11.738784pt;}
.ls9{letter-spacing:11.765451pt;}
.lse{letter-spacing:11.845452pt;}
.ls10{letter-spacing:11.957453pt;}
.ls14{letter-spacing:11.984120pt;}
.ls1{letter-spacing:18.777365pt;}
.ls2{letter-spacing:21.196535pt;}
.ws71{word-spacing:-11.818785pt;}
.ws6e{word-spacing:-11.792118pt;}
.ws82{word-spacing:-11.696117pt;}
.ws27{word-spacing:-9.420682pt;}
.ws8f{word-spacing:-8.933423pt;}
.ws20{word-spacing:-0.053334pt;}
.ws13{word-spacing:-0.042666pt;}
.ws42{word-spacing:0.000000pt;}
.ws108{word-spacing:8.528960pt;}
.ws2a{word-spacing:8.563093pt;}
.ws104{word-spacing:8.656958pt;}
.ws2c{word-spacing:8.661225pt;}
.ws38{word-spacing:8.665492pt;}
.ws109{word-spacing:8.703891pt;}
.ws2d{word-spacing:8.708158pt;}
.wse2{word-spacing:8.725224pt;}
.ws62{word-spacing:8.729491pt;}
.ws29{word-spacing:8.733757pt;}
.wsae{word-spacing:8.738024pt;}
.ws34{word-spacing:8.750824pt;}
.ws10{word-spacing:8.755091pt;}
.wse7{word-spacing:8.759357pt;}
.wsf7{word-spacing:8.767890pt;}
.wsb7{word-spacing:8.772157pt;}
.ws33{word-spacing:8.776424pt;}
.wsf{word-spacing:8.780690pt;}
.ws31{word-spacing:8.784957pt;}
.ws10a{word-spacing:8.789223pt;}
.ws32{word-spacing:8.793490pt;}
.wsd{word-spacing:8.797757pt;}
.wsb9{word-spacing:8.802023pt;}
.wsfe{word-spacing:8.806290pt;}
.ws40{word-spacing:8.814823pt;}
.ws2e{word-spacing:8.819090pt;}
.ws41{word-spacing:8.823356pt;}
.wsd3{word-spacing:8.827623pt;}
.wsec{word-spacing:8.831890pt;}
.ws102{word-spacing:8.836156pt;}
.wsf9{word-spacing:8.848956pt;}
.ws111{word-spacing:8.854865pt;}
.wsd2{word-spacing:8.857489pt;}
.wsc4{word-spacing:8.861756pt;}
.wscd{word-spacing:8.866023pt;}
.ws3b{word-spacing:8.870289pt;}
.wsce{word-spacing:8.878822pt;}
.wscc{word-spacing:8.891622pt;}
.ws3d{word-spacing:8.895889pt;}
.wsb1{word-spacing:8.900155pt;}
.ws11{word-spacing:8.904422pt;}
.wse{word-spacing:8.908689pt;}
.wse0{word-spacing:8.912955pt;}
.ws105{word-spacing:8.917222pt;}
.ws3f{word-spacing:8.921488pt;}
.ws2b{word-spacing:8.925755pt;}
.ws39{word-spacing:8.930022pt;}
.ws112{word-spacing:8.934288pt;}
.wsef{word-spacing:8.938555pt;}
.ws10e{word-spacing:8.942822pt;}
.ws3c{word-spacing:8.951355pt;}
.wsb6{word-spacing:8.955621pt;}
.ws2f{word-spacing:8.959888pt;}
.wsd0{word-spacing:8.972688pt;}
.ws3e{word-spacing:8.989754pt;}
.wsc8{word-spacing:8.994021pt;}
.wsc5{word-spacing:8.998288pt;}
.wsf3{word-spacing:9.002554pt;}
.ws36{word-spacing:9.006821pt;}
.wsf0{word-spacing:9.011087pt;}
.ws106{word-spacing:9.028154pt;}
.wse1{word-spacing:9.032420pt;}
.ws10c{word-spacing:9.036687pt;}
.ws26{word-spacing:9.045220pt;}
.ws28{word-spacing:9.049487pt;}
.wsb0{word-spacing:9.062287pt;}
.ws103{word-spacing:9.066553pt;}
.ws12{word-spacing:9.070820pt;}
.ws30{word-spacing:9.075087pt;}
.ws101{word-spacing:9.083620pt;}
.wse3{word-spacing:9.096420pt;}
.wsad{word-spacing:9.100686pt;}
.wsf8{word-spacing:9.104953pt;}
.ws10f{word-spacing:9.109219pt;}
.wsfd{word-spacing:9.113486pt;}
.wsf1{word-spacing:9.114487pt;}
.wsea{word-spacing:9.122019pt;}
.wsc7{word-spacing:9.126286pt;}
.wse8{word-spacing:9.130553pt;}
.ws10d{word-spacing:9.134819pt;}
.ws0{word-spacing:9.139086pt;}
.ws100{word-spacing:9.156152pt;}
.wsc2{word-spacing:9.160419pt;}
.wsc6{word-spacing:9.168952pt;}
.ws107{word-spacing:9.173219pt;}
.ws10b{word-spacing:9.177485pt;}
.wse5{word-spacing:9.181752pt;}
.wsfa{word-spacing:9.186019pt;}
.wse4{word-spacing:9.190285pt;}
.wscb{word-spacing:9.194552pt;}
.wsff{word-spacing:9.198818pt;}
.wsaf{word-spacing:9.203085pt;}
.wsfc{word-spacing:9.207352pt;}
.wse6{word-spacing:9.211618pt;}
.wsb8{word-spacing:9.232951pt;}
.wsd1{word-spacing:9.250018pt;}
.ws37{word-spacing:9.267084pt;}
.ws3a{word-spacing:9.284151pt;}
.ws35{word-spacing:9.301217pt;}
.wseb{word-spacing:9.305484pt;}
.wsf4{word-spacing:9.322550pt;}
.ws110{word-spacing:9.326817pt;}
.wsca{word-spacing:9.331083pt;}
.wsed{word-spacing:9.339617pt;}
.wse9{word-spacing:9.360950pt;}
.wsfb{word-spacing:9.365216pt;}
.wsf5{word-spacing:9.395083pt;}
.wsf6{word-spacing:9.399349pt;}
.wsf2{word-spacing:9.433482pt;}
.wsc3{word-spacing:9.497481pt;}
.ws7{word-spacing:10.272000pt;}
.ws8{word-spacing:10.276800pt;}
.wsc{word-spacing:10.387200pt;}
.wsa{word-spacing:10.401600pt;}
.ws6{word-spacing:10.425600pt;}
.wsb{word-spacing:10.507200pt;}
.ws5{word-spacing:10.536000pt;}
.ws9{word-spacing:10.574400pt;}
.ws4{word-spacing:10.579200pt;}
.ws1a{word-spacing:10.898400pt;}
.ws18{word-spacing:10.984533pt;}
.ws19{word-spacing:11.050400pt;}
.ws1b{word-spacing:11.126400pt;}
.ws16{word-spacing:11.192267pt;}
.ws1d{word-spacing:11.197333pt;}
.wsdc{word-spacing:11.200112pt;}
.ws17{word-spacing:11.263200pt;}
.ws1c{word-spacing:11.278400pt;}
.wsd6{word-spacing:11.280113pt;}
.ws15{word-spacing:11.288533pt;}
.wsdb{word-spacing:11.296113pt;}
.wsbc{word-spacing:11.322780pt;}
.wsc1{word-spacing:11.333447pt;}
.ws90{word-spacing:11.344113pt;}
.ws14{word-spacing:11.364533pt;}
.ws8e{word-spacing:11.408114pt;}
.wsc0{word-spacing:11.456115pt;}
.wsbf{word-spacing:11.466781pt;}
.wsd4{word-spacing:11.472115pt;}
.ws94{word-spacing:11.488115pt;}
.ws48{word-spacing:11.498782pt;}
.ws8d{word-spacing:11.504115pt;}
.ws55{word-spacing:11.520115pt;}
.ws56{word-spacing:11.525449pt;}
.ws9e{word-spacing:11.530782pt;}
.ws6a{word-spacing:11.536115pt;}
.ws75{word-spacing:11.541449pt;}
.wscf{word-spacing:11.552116pt;}
.ws99{word-spacing:11.557449pt;}
.ws45{word-spacing:11.562782pt;}
.ws25{word-spacing:11.568116pt;}
.ws78{word-spacing:11.573449pt;}
.ws1e{word-spacing:11.578782pt;}
.wsbd{word-spacing:11.584116pt;}
.ws51{word-spacing:11.589449pt;}
.ws70{word-spacing:11.594783pt;}
.ws83{word-spacing:11.600116pt;}
.wsa0{word-spacing:11.605449pt;}
.ws73{word-spacing:11.610783pt;}
.ws7e{word-spacing:11.616116pt;}
.ws69{word-spacing:11.621450pt;}
.ws24{word-spacing:11.626783pt;}
.ws23{word-spacing:11.632116pt;}
.ws52{word-spacing:11.637450pt;}
.ws9d{word-spacing:11.642783pt;}
.ws4b{word-spacing:11.648116pt;}
.ws44{word-spacing:11.653450pt;}
.ws98{word-spacing:11.658783pt;}
.ws5c{word-spacing:11.664117pt;}
.ws1f{word-spacing:11.669450pt;}
.ws85{word-spacing:11.674783pt;}
.ws91{word-spacing:11.680117pt;}
.ws43{word-spacing:11.685450pt;}
.ws86{word-spacing:11.690784pt;}
.wsb4{word-spacing:11.696117pt;}
.ws68{word-spacing:11.701450pt;}
.ws66{word-spacing:11.706784pt;}
.ws4e{word-spacing:11.712117pt;}
.ws22{word-spacing:11.717451pt;}
.ws72{word-spacing:11.722784pt;}
.ws74{word-spacing:11.728117pt;}
.wsd5{word-spacing:11.733451pt;}
.ws47{word-spacing:11.738784pt;}
.ws57{word-spacing:11.744117pt;}
.ws76{word-spacing:11.749451pt;}
.ws21{word-spacing:11.754784pt;}
.wsa9{word-spacing:11.760118pt;}
.ws6f{word-spacing:11.765451pt;}
.ws59{word-spacing:11.770784pt;}
.ws67{word-spacing:11.781451pt;}
.wsa5{word-spacing:11.797451pt;}
.ws63{word-spacing:11.813451pt;}
.ws4a{word-spacing:11.818785pt;}
.ws5d{word-spacing:11.824118pt;}
.ws6d{word-spacing:11.829452pt;}
.wsa8{word-spacing:11.845452pt;}
.ws77{word-spacing:11.850785pt;}
.ws5b{word-spacing:11.856119pt;}
.ws49{word-spacing:11.861452pt;}
.ws79{word-spacing:11.866785pt;}
.ws7d{word-spacing:11.872119pt;}
.ws95{word-spacing:11.877452pt;}
.ws64{word-spacing:11.882785pt;}
.ws7f{word-spacing:11.888119pt;}
.ws61{word-spacing:11.893452pt;}
.ws93{word-spacing:11.898786pt;}
.wsab{word-spacing:11.904119pt;}
.ws92{word-spacing:11.909452pt;}
.wsb5{word-spacing:11.914786pt;}
.ws6b{word-spacing:11.920119pt;}
.wsaa{word-spacing:11.925453pt;}
.ws80{word-spacing:11.930786pt;}
.ws4d{word-spacing:11.936119pt;}
.ws50{word-spacing:11.946786pt;}
.ws8a{word-spacing:11.952120pt;}
.ws9c{word-spacing:11.957453pt;}
.ws96{word-spacing:11.962786pt;}
.wsac{word-spacing:11.968120pt;}
.ws60{word-spacing:11.973453pt;}
.ws46{word-spacing:11.978786pt;}
.wsb2{word-spacing:11.984120pt;}
.ws7b{word-spacing:11.989453pt;}
.ws58{word-spacing:11.994787pt;}
.wsd9{word-spacing:12.005453pt;}
.wsbb{word-spacing:12.010787pt;}
.ws84{word-spacing:12.016120pt;}
.ws7c{word-spacing:12.032120pt;}
.ws89{word-spacing:12.037454pt;}
.ws5f{word-spacing:12.053454pt;}
.ws9b{word-spacing:12.069454pt;}
.ws8b{word-spacing:12.074787pt;}
.wsbe{word-spacing:12.090788pt;}
.wsa7{word-spacing:12.101454pt;}
.wsa4{word-spacing:12.106788pt;}
.ws8c{word-spacing:12.117455pt;}
.ws5a{word-spacing:12.122788pt;}
.ws9a{word-spacing:12.144121pt;}
.wsa1{word-spacing:12.149455pt;}
.ws9f{word-spacing:12.154788pt;}
.wsd7{word-spacing:12.165455pt;}
.ws4c{word-spacing:12.181455pt;}
.wsa2{word-spacing:12.186789pt;}
.wsb3{word-spacing:12.192122pt;}
.ws4f{word-spacing:12.202789pt;}
.wsd8{word-spacing:12.224122pt;}
.ws88{word-spacing:12.234789pt;}
.wsa6{word-spacing:12.240122pt;}
.wsda{word-spacing:12.250789pt;}
.ws65{word-spacing:12.261456pt;}
.wsa3{word-spacing:12.298790pt;}
.ws7a{word-spacing:12.330790pt;}
.wsc9{word-spacing:13.683086pt;}
.wsba{word-spacing:13.695886pt;}
.ws97{word-spacing:13.740685pt;}
.ws87{word-spacing:13.753485pt;}
.wsde{word-spacing:13.798285pt;}
.ws5e{word-spacing:13.849485pt;}
.ws54{word-spacing:13.868684pt;}
.wsdd{word-spacing:13.894284pt;}
.ws6c{word-spacing:13.951884pt;}
.ws81{word-spacing:13.971084pt;}
.ws53{word-spacing:13.983883pt;}
.ws1{word-spacing:23.125449pt;}
.ws2{word-spacing:23.381450pt;}
.ws3{word-spacing:23.466784pt;}
.wsdf{word-spacing:53.174802pt;}
.wsee{word-spacing:53.208935pt;}
._c{margin-left:-11.088254pt;}
._7{margin-left:-9.378016pt;}
._d{margin-left:-8.400084pt;}
._8{margin-left:-4.189814pt;}
._9{margin-left:-2.495969pt;}
._2{margin-left:-1.011187pt;}
._3{width:1.170400pt;}
._a{width:8.354029pt;}
._1{width:9.762011pt;}
._b{width:11.269446pt;}
._4{width:12.357600pt;}
._f{width:14.041424pt;}
._e{width:15.039875pt;}
._12{width:17.988042pt;}
._11{width:18.905364pt;}
._0{width:24.789457pt;}
._5{width:41.373349pt;}
._10{width:1523.488156pt;}
._6{width:1547.073995pt;}
.fs3{font-size:31.995733pt;}
.fs8{font-size:35.552000pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs7{font-size:53.333867pt;}
.fs6{font-size:63.999467pt;}
.fs4{font-size:85.332800pt;}
.fs1{font-size:106.667200pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:48.000000pt;}
.yd8{bottom:110.658573pt;}
.y117{bottom:110.660986pt;}
.y131{bottom:110.661547pt;}
.y144{bottom:110.662120pt;}
.y27{bottom:110.662693pt;}
.y8e{bottom:110.663400pt;}
.y19e{bottom:110.663708pt;}
.y6d{bottom:110.664186pt;}
.y40{bottom:110.669106pt;}
.y164{bottom:111.178213pt;}
.yed{bottom:112.623333pt;}
.yfe{bottom:114.214573pt;}
.y19d{bottom:123.363283pt;}
.y1d8{bottom:124.951283pt;}
.y3f{bottom:125.333456pt;}
.yd7{bottom:127.969413pt;}
.y116{bottom:127.971826pt;}
.y130{bottom:127.972387pt;}
.y143{bottom:127.972960pt;}
.y26{bottom:127.973533pt;}
.y8d{bottom:127.974239pt;}
.y6c{bottom:127.975026pt;}
.y163{bottom:128.489053pt;}
.yec{bottom:129.934173pt;}
.yfd{bottom:131.600080pt;}
.y1d7{bottom:137.650858pt;}
.y19c{bottom:140.672933pt;}
.yd6{bottom:145.354920pt;}
.y115{bottom:145.357333pt;}
.y12f{bottom:145.357894pt;}
.y142{bottom:145.358467pt;}
.y25{bottom:145.359040pt;}
.y8c{bottom:145.359747pt;}
.y6b{bottom:145.360533pt;}
.y162{bottom:145.874560pt;}
.yeb{bottom:147.319680pt;}
.y3e{bottom:148.010506pt;}
.yfc{bottom:148.910920pt;}
.y19b{bottom:153.296775pt;}
.y1d6{bottom:154.960508pt;}
.yd5{bottom:162.665760pt;}
.y114{bottom:162.668173pt;}
.y12e{bottom:162.668734pt;}
.y141{bottom:162.669307pt;}
.y24{bottom:162.669880pt;}
.y8b{bottom:162.670586pt;}
.y3d{bottom:162.674856pt;}
.y161{bottom:163.185400pt;}
.yea{bottom:164.630520pt;}
.y19a{bottom:165.996350pt;}
.yfb{bottom:166.221760pt;}
.y1d5{bottom:167.660083pt;}
.y6a{bottom:167.962133pt;}
.yd4{bottom:179.976600pt;}
.y113{bottom:179.979013pt;}
.y12d{bottom:179.979573pt;}
.y140{bottom:179.980147pt;}
.y23{bottom:179.980720pt;}
.y8a{bottom:179.981426pt;}
.y208{bottom:180.283309pt;}
.y1d4{bottom:180.283925pt;}
.y160{bottom:180.496240pt;}
.ye9{bottom:181.941360pt;}
.y199{bottom:183.305067pt;}
.yfa{bottom:183.607267pt;}
.y3c{bottom:185.351906pt;}
.y207{bottom:192.982883pt;}
.y198{bottom:196.004642pt;}
.yd3{bottom:197.362107pt;}
.y112{bottom:197.364520pt;}
.y12c{bottom:197.365081pt;}
.y13f{bottom:197.365654pt;}
.y22{bottom:197.366227pt;}
.y89{bottom:197.366933pt;}
.y1d3{bottom:197.593575pt;}
.y15f{bottom:197.881747pt;}
.ye8{bottom:199.326867pt;}
.y3b{bottom:200.016256pt;}
.yf9{bottom:200.918107pt;}
.y206{bottom:205.606725pt;}
.yae{bottom:206.276667pt;}
.y197{bottom:208.628484pt;}
.y1d2{bottom:210.293150pt;}
.y69{bottom:211.573613pt;}
.yd2{bottom:214.672947pt;}
.y111{bottom:214.675360pt;}
.y12b{bottom:214.675920pt;}
.y13e{bottom:214.676494pt;}
.y21{bottom:214.677067pt;}
.y3a{bottom:214.680606pt;}
.y15e{bottom:215.192586pt;}
.ye7{bottom:216.637707pt;}
.yf8{bottom:218.228947pt;}
.y88{bottom:219.968400pt;}
.y205{bottom:222.992108pt;}
.y1d1{bottom:222.992725pt;}
.yad{bottom:223.587507pt;}
.y196{bottom:226.013866pt;}
.y68{bottom:228.959120pt;}
.yd1{bottom:231.983786pt;}
.y110{bottom:231.986200pt;}
.y12a{bottom:231.986760pt;}
.y13d{bottom:231.987333pt;}
.y15d{bottom:232.503426pt;}
.ye6{bottom:233.948547pt;}
.yf7{bottom:235.614454pt;}
.y204{bottom:235.615950pt;}
.y20{bottom:237.354267pt;}
.y39{bottom:237.357656pt;}
.y195{bottom:238.637709pt;}
.y1d0{bottom:240.302375pt;}
.yac{bottom:240.898346pt;}
.y67{bottom:246.269960pt;}
.yd0{bottom:249.294626pt;}
.y10f{bottom:249.297039pt;}
.y129{bottom:249.297600pt;}
.y15c{bottom:249.888933pt;}
.ye5{bottom:251.259386pt;}
.y194{bottom:251.337283pt;}
.y38{bottom:252.022006pt;}
.yf6{bottom:252.925294pt;}
.y203{bottom:252.925601pt;}
.y1cf{bottom:252.926217pt;}
.y13c{bottom:254.664533pt;}
.yab{bottom:258.283853pt;}
.y87{bottom:258.290161pt;}
.y66{bottom:263.580800pt;}
.y202{bottom:265.625175pt;}
.ycf{bottom:266.680133pt;}
.y10e{bottom:266.682547pt;}
.y37{bottom:266.686356pt;}
.y15b{bottom:267.199773pt;}
.ye4{bottom:268.644894pt;}
.y193{bottom:268.646934pt;}
.yf5{bottom:270.236133pt;}
.y1ce{bottom:270.311600pt;}
.y128{bottom:271.974667pt;}
.yaa{bottom:275.594693pt;}
.y86{bottom:275.601000pt;}
.y201{bottom:278.324750pt;}
.y65{bottom:280.966307pt;}
.y192{bottom:281.346508pt;}
.y36{bottom:281.350706pt;}
.y1cd{bottom:282.935442pt;}
.yce{bottom:283.990973pt;}
.y10d{bottom:283.993386pt;}
.y15a{bottom:284.510613pt;}
.ye3{bottom:285.955733pt;}
.ya9{bottom:292.905533pt;}
.y16c{bottom:292.910920pt;}
.y85{bottom:292.911840pt;}
.y191{bottom:293.970350pt;}
.y200{bottom:295.634400pt;}
.y1cc{bottom:295.635016pt;}
.y35{bottom:296.015056pt;}
.y64{bottom:298.277147pt;}
.y104{bottom:298.732224pt;}
.ycd{bottom:301.301813pt;}
.y10c{bottom:301.304226pt;}
.y159{bottom:301.821453pt;}
.y13b{bottom:301.831440pt;}
.ye2{bottom:303.266573pt;}
.y127{bottom:307.348666pt;}
.y1ff{bottom:308.258242pt;}
.ya8{bottom:310.291040pt;}
.y16b{bottom:310.296427pt;}
.y84{bottom:310.297347pt;}
.y34{bottom:310.679406pt;}
.y190{bottom:311.355733pt;}
.y1cb{bottom:312.944667pt;}
.y63{bottom:315.587987pt;}
.ycc{bottom:318.687320pt;}
.y10b{bottom:318.689733pt;}
.y13a{bottom:319.142280pt;}
.y158{bottom:319.206960pt;}
.y103{bottom:319.368766pt;}
.ye1{bottom:320.652080pt;}
.y1fe{bottom:320.957817pt;}
.y1f{bottom:322.170000pt;}
.y18f{bottom:323.979575pt;}
.y126{bottom:324.734173pt;}
.y1ca{bottom:325.644241pt;}
.ya7{bottom:327.601880pt;}
.y16a{bottom:327.607267pt;}
.y83{bottom:327.608187pt;}
.y102{bottom:332.068341pt;}
.y62{bottom:332.898827pt;}
.y33{bottom:333.356456pt;}
.ycb{bottom:335.998160pt;}
.y139{bottom:336.453120pt;}
.y157{bottom:336.517800pt;}
.ye0{bottom:337.962920pt;}
.y1fd{bottom:338.267467pt;}
.y1e{bottom:340.840667pt;}
.y18e{bottom:341.364958pt;}
.y10a{bottom:341.367088pt;}
.y125{bottom:342.045013pt;}
.y1c9{bottom:342.953892pt;}
.y101{bottom:344.692183pt;}
.ya6{bottom:344.912720pt;}
.y169{bottom:344.918107pt;}
.y82{bottom:344.919027pt;}
.y61{bottom:350.284334pt;}
.y1fc{bottom:350.967042pt;}
.yca{bottom:353.309000pt;}
.y138{bottom:353.763959pt;}
.y156{bottom:353.828639pt;}
.y18d{bottom:353.988800pt;}
.ydf{bottom:355.273760pt;}
.y1c8{bottom:355.653466pt;}
.y32{bottom:356.033506pt;}
.y100{bottom:357.391758pt;}
.y124{bottom:359.355853pt;}
.y1d{bottom:359.511333pt;}
.y109{bottom:359.962133pt;}
.ya5{bottom:362.223560pt;}
.y168{bottom:362.228947pt;}
.y81{bottom:362.229867pt;}
.y7f{bottom:362.230093pt;}
.y1fb{bottom:363.590884pt;}
.y60{bottom:367.595173pt;}
.y80{bottom:368.201467pt;}
.y1c7{bottom:368.277308pt;}
.yff{bottom:370.015600pt;}
.yc9{bottom:370.694507pt;}
.y137{bottom:371.149467pt;}
.y155{bottom:371.214147pt;}
.y18c{bottom:371.298450pt;}
.yde{bottom:372.659267pt;}
.y123{bottom:376.741360pt;}
.y1c{bottom:378.182000pt;}
.y31{bottom:378.634823pt;}
.ya4{bottom:379.609067pt;}
.y167{bottom:379.614454pt;}
.y7c{bottom:379.615027pt;}
.y7e{bottom:379.615600pt;}
.y1fa{bottom:380.975983pt;}
.y18b{bottom:383.998025pt;}
.y5f{bottom:384.906013pt;}
.y7d{bottom:385.511733pt;}
.y1c6{bottom:385.662691pt;}
.yc8{bottom:388.005347pt;}
.y154{bottom:388.524986pt;}
.ydd{bottom:389.970107pt;}
.y1f9{bottom:393.599825pt;}
.y122{bottom:394.052200pt;}
.y18a{bottom:396.697600pt;}
.y1b{bottom:396.852667pt;}
.ya3{bottom:396.919906pt;}
.y79{bottom:396.923240pt;}
.y166{bottom:396.925294pt;}
.y7b{bottom:396.925867pt;}
.y1c5{bottom:398.286533pt;}
.y14c{bottom:399.570409pt;}
.y30{bottom:401.311873pt;}
.y5e{bottom:402.291520pt;}
.y7a{bottom:402.822000pt;}
.yc7{bottom:405.316186pt;}
.y153{bottom:405.835826pt;}
.y1f8{bottom:406.299400pt;}
.ydc{bottom:407.280947pt;}
.y108{bottom:407.658813pt;}
.y121{bottom:411.363039pt;}
.y189{bottom:414.008316pt;}
.ya2{bottom:414.230746pt;}
.y78{bottom:414.234080pt;}
.y165{bottom:414.236133pt;}
.y1a{bottom:415.523333pt;}
.y1c4{bottom:415.593150pt;}
.y2f{bottom:415.976223pt;}
.y5d{bottom:419.602360pt;}
.y14b{bottom:420.281616pt;}
.yc6{bottom:422.701694pt;}
.y152{bottom:423.221333pt;}
.y1f7{bottom:423.609050pt;}
.ydb{bottom:424.591786pt;}
.y107{bottom:424.969653pt;}
.y188{bottom:426.632159pt;}
.y1c3{bottom:428.292725pt;}
.y120{bottom:428.748547pt;}
.ya1{bottom:431.616253pt;}
.y77{bottom:431.619587pt;}
.y14a{bottom:432.905459pt;}
.y19{bottom:434.194000pt;}
.y1f6{bottom:436.308625pt;}
.y5c{bottom:436.913200pt;}
.y2e{bottom:438.653273pt;}
.yc5{bottom:440.012533pt;}
.y151{bottom:440.532173pt;}
.yda{bottom:441.977294pt;}
.y106{bottom:442.355160pt;}
.y187{bottom:444.017541pt;}
.y1c2{bottom:445.603442pt;}
.y149{bottom:445.605033pt;}
.y11f{bottom:446.059386pt;}
.ya0{bottom:448.927093pt;}
.y76{bottom:448.930427pt;}
.y18{bottom:452.864667pt;}
.y2d{bottom:453.317623pt;}
.y1f5{bottom:453.618275pt;}
.y186{bottom:456.641384pt;}
.y150{bottom:457.843013pt;}
.y148{bottom:458.228875pt;}
.y1c1{bottom:458.303017pt;}
.yd9{bottom:459.288133pt;}
.y5b{bottom:459.590067pt;}
.y105{bottom:459.666000pt;}
.yc4{bottom:462.690289pt;}
.y11e{bottom:463.370226pt;}
.y9f{bottom:466.237933pt;}
.y75{bottom:466.241266pt;}
.y1f4{bottom:466.317850pt;}
.y2c{bottom:467.981973pt;}
.y185{bottom:469.340958pt;}
.y1c0{bottom:470.926859pt;}
.y147{bottom:470.928450pt;}
.y17{bottom:471.535333pt;}
.y14f{bottom:475.228520pt;}
.y1f3{bottom:478.941692pt;}
.y11d{bottom:480.755733pt;}
.yc3{bottom:481.360533pt;}
.y2b{bottom:482.646323pt;}
.y9e{bottom:483.623440pt;}
.y74{bottom:483.626773pt;}
.y146{bottom:483.628024pt;}
.y5a{bottom:483.628267pt;}
.y184{bottom:486.650608pt;}
.y1bf{bottom:488.312241pt;}
.y16{bottom:490.206000pt;}
.y14e{bottom:492.539360pt;}
.y145{bottom:496.251867pt;}
.y1f2{bottom:496.327075pt;}
.y2a{bottom:497.310673pt;}
.yf4{bottom:499.349183pt;}
.y183{bottom:499.350183pt;}
.y9d{bottom:500.934280pt;}
.y1be{bottom:500.936084pt;}
.y73{bottom:500.937613pt;}
.y11c{bottom:503.357333pt;}
.y11b{bottom:508.269642pt;}
.y15{bottom:508.876667pt;}
.y1f1{bottom:508.950917pt;}
.y14d{bottom:509.850200pt;}
.y182{bottom:511.974025pt;}
.yc2{bottom:518.242920pt;}
.y9c{bottom:518.245120pt;}
.y72{bottom:518.248453pt;}
.y1bd{bottom:518.321466pt;}
.y29{bottom:519.155733pt;}
.yf3{bottom:519.985725pt;}
.y1f0{bottom:521.650491pt;}
.y59{bottom:527.161039pt;}
.y14{bottom:527.547333pt;}
.y11a{bottom:528.906184pt;}
.y181{bottom:529.359408pt;}
.y1bc{bottom:530.945309pt;}
.yf2{bottom:532.685300pt;}
.y136{bottom:533.593400pt;}
.yc1{bottom:535.628427pt;}
.y9b{bottom:535.630627pt;}
.y71{bottom:535.633960pt;}
.y1ef{bottom:538.960142pt;}
.y119{bottom:541.605759pt;}
.y180{bottom:541.983250pt;}
.y1bb{bottom:543.644883pt;}
.y58{bottom:544.546547pt;}
.yf1{bottom:545.309142pt;}
.y13{bottom:546.218000pt;}
.y1ee{bottom:551.659716pt;}
.yc0{bottom:552.939267pt;}
.y9a{bottom:552.941467pt;}
.y70{bottom:552.944800pt;}
.y135{bottom:554.304608pt;}
.y118{bottom:554.305333pt;}
.y17f{bottom:554.682825pt;}
.yf0{bottom:558.008717pt;}
.y1ba{bottom:560.954533pt;}
.y57{bottom:561.857386pt;}
.y12{bottom:564.888667pt;}
.y134{bottom:566.928450pt;}
.y17e{bottom:567.306667pt;}
.y1ed{bottom:568.969367pt;}
.ybf{bottom:570.250107pt;}
.y99{bottom:570.252306pt;}
.yef{bottom:570.632559pt;}
.y1b9{bottom:573.654108pt;}
.y6f{bottom:575.621867pt;}
.y56{bottom:579.168226pt;}
.y133{bottom:579.628024pt;}
.y1ec{bottom:581.593209pt;}
.yee{bottom:583.332133pt;}
.y11{bottom:583.483333pt;}
.y17d{bottom:584.692050pt;}
.y1b8{bottom:586.277950pt;}
.ybe{bottom:587.560947pt;}
.y98{bottom:587.563146pt;}
.y132{bottom:592.251867pt;}
.y55{bottom:596.553733pt;}
.y17c{bottom:597.315892pt;}
.y1eb{bottom:598.978591pt;}
.y1b7{bottom:603.587601pt;}
.ybd{bottom:604.946454pt;}
.y97{bottom:604.948653pt;}
.y17b{bottom:610.015466pt;}
.y1ea{bottom:611.602434pt;}
.y10{bottom:612.888000pt;}
.y54{bottom:613.864573pt;}
.y1b6{bottom:616.287175pt;}
.ybc{bottom:622.257294pt;}
.y96{bottom:622.259493pt;}
.y17a{bottom:622.639309pt;}
.y1e9{bottom:624.302008pt;}
.y1b5{bottom:628.986750pt;}
.y53{bottom:631.175413pt;}
.y1e8{bottom:636.925850pt;}
.ybb{bottom:639.568133pt;}
.y95{bottom:639.570333pt;}
.y179{bottom:640.024691pt;}
.y1b4{bottom:646.297467pt;}
.y52{bottom:648.560920pt;}
.y178{bottom:652.648533pt;}
.y1e7{bottom:654.311233pt;}
.yba{bottom:656.953641pt;}
.y94{bottom:656.955840pt;}
.y1b3{bottom:658.921309pt;}
.y177{bottom:665.348108pt;}
.y51{bottom:665.871760pt;}
.y1e6{bottom:666.935075pt;}
.yf{bottom:668.826334pt;}
.y1b2{bottom:671.620883pt;}
.yb9{bottom:674.264480pt;}
.y93{bottom:674.266680pt;}
.y1e5{bottom:679.634650pt;}
.ye{bottom:682.205367pt;}
.y176{bottom:682.657758pt;}
.y50{bottom:683.182600pt;}
.y1b1{bottom:688.931600pt;}
.yb8{bottom:691.575320pt;}
.y92{bottom:691.577520pt;}
.y175{bottom:695.357333pt;}
.yd{bottom:695.508667pt;}
.y1e4{bottom:696.944300pt;}
.y4f{bottom:700.493439pt;}
.y1b0{bottom:701.631175pt;}
.yb7{bottom:708.960827pt;}
.y91{bottom:708.963027pt;}
.y1e3{bottom:709.643875pt;}
.y174{bottom:712.666983pt;}
.y1af{bottom:714.330750pt;}
.y4e{bottom:717.878947pt;}
.yc{bottom:722.192067pt;}
.y1e2{bottom:722.267717pt;}
.y173{bottom:725.366558pt;}
.yb6{bottom:726.271667pt;}
.y90{bottom:726.273867pt;}
.y1ae{bottom:731.640400pt;}
.y4d{bottom:735.189786pt;}
.yb{bottom:735.496434pt;}
.y172{bottom:737.990400pt;}
.y1e1{bottom:739.653100pt;}
.yb5{bottom:743.582507pt;}
.y1ad{bottom:744.264242pt;}
.ya{bottom:748.875467pt;}
.y8f{bottom:748.951067pt;}
.y1e0{bottom:752.276942pt;}
.y4c{bottom:752.500626pt;}
.y171{bottom:755.980933pt;}
.y1ac{bottom:756.963817pt;}
.yb4{bottom:760.968014pt;}
.y1df{bottom:769.662325pt;}
.y1ab{bottom:769.663391pt;}
.y4b{bottom:769.886133pt;}
.y9{bottom:772.837600pt;}
.y7{bottom:772.838133pt;}
.y8{bottom:778.204533pt;}
.yb3{bottom:778.278854pt;}
.y1de{bottom:782.286167pt;}
.y1aa{bottom:786.973041pt;}
.y4a{bottom:787.196973pt;}
.y5{bottom:787.502133pt;}
.y6{bottom:792.869200pt;}
.y1dd{bottom:794.985741pt;}
.yb2{bottom:795.589694pt;}
.y170{bottom:799.596320pt;}
.y1a9{bottom:799.596884pt;}
.y49{bottom:804.507813pt;}
.y1dc{bottom:812.296458pt;}
.yb1{bottom:812.900533pt;}
.y16f{bottom:816.907159pt;}
.y1a8{bottom:816.982266pt;}
.y4{bottom:820.836067pt;}
.y48{bottom:821.893320pt;}
.y1db{bottom:824.996033pt;}
.y1a7{bottom:829.606109pt;}
.y16e{bottom:834.292667pt;}
.yb0{bottom:835.578422pt;}
.y47{bottom:839.204160pt;}
.y1a6{bottom:842.305683pt;}
.y3{bottom:854.172233pt;}
.yaf{bottom:854.248667pt;}
.y1da{bottom:854.929525pt;}
.y46{bottom:856.515000pt;}
.y16d{bottom:856.969867pt;}
.y1a5{bottom:859.615333pt;}
.y1d9{bottom:867.629100pt;}
.y1a4{bottom:872.314908pt;}
.y45{bottom:873.900507pt;}
.y1a3{bottom:884.938750pt;}
.y2{bottom:887.508400pt;}
.y44{bottom:891.211347pt;}
.y1a2{bottom:902.324133pt;}
.y43{bottom:908.522186pt;}
.y1a1{bottom:914.947975pt;}
.y1{bottom:920.843867pt;}
.y42{bottom:925.833026pt;}
.y1a0{bottom:932.257625pt;}
.y41{bottom:943.218533pt;}
.y19f{bottom:944.957200pt;}
.y6e{bottom:994.393333pt;}
.h4{height:23.996800pt;}
.hc{height:26.664000pt;}
.ha{height:31.060945pt;}
.hd{height:31.999600pt;}
.h1{height:33.066253pt;}
.hf{height:33.067387pt;}
.he{height:33.074252pt;}
.h5{height:33.696000pt;}
.h3{height:36.000000pt;}
.h7{height:39.266667pt;}
.h9{height:40.000400pt;}
.h8{height:47.999600pt;}
.hb{height:49.599587pt;}
.h6{height:61.524949pt;}
.h2{height:76.907051pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x15{left:48.000000pt;}
.x16{left:63.496000pt;}
.x1{left:266.683333pt;}
.x1f{left:272.579467pt;}
.x17{left:282.631493pt;}
.x20{left:294.651724pt;}
.x19{left:298.658133pt;}
.x1a{left:304.781067pt;}
.xc{left:313.549467pt;}
.xd{left:318.462933pt;}
.x2{left:324.661333pt;}
.x3{left:329.574667pt;}
.xe{left:406.828267pt;}
.x1d{left:408.264400pt;}
.xf{left:411.817200pt;}
.x1e{left:414.387200pt;}
.x1b{left:437.291200pt;}
.x4{left:440.163600pt;}
.x1c{left:443.414000pt;}
.x5{left:450.141600pt;}
.x10{left:500.106933pt;}
.x11{left:505.095867pt;}
.x6{left:526.639200pt;}
.x7{left:531.628267pt;}
.x8{left:613.946267pt;}
.x9{left:618.935333pt;}
.x12{left:623.319467pt;}
.x18{left:638.437600pt;}
.xa{left:705.259600pt;}
.xb{left:710.248667pt;}
.x13{left:718.866000pt;}
.x14{left:723.854933pt;}
}




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