
    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_37b5bd0e857e53a962f09cd9.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191000;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_525de2f76aa86e70cd9bd3e1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.989000;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_0511b78b1c01a53c41325112.woff')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_3f63d02fd70fe3f3de2563c1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.040000;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_e207699fe52f64a813ec07c8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.933000;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_b2684e75fc805a8a86a44b52.woff')format("woff");}.ff6{font-family:ff6;line-height:0.695000;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;}
.m8{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.v3{vertical-align:-17.364000px;}
.v4{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.078000px;}
.v2{vertical-align:21.696000px;}
.v6{vertical-align:32.880000px;}
.v5{vertical-align:35.868000px;}
.ls6{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.002213px;}
.ls10{letter-spacing:0.004800px;}
.lsb{letter-spacing:0.717483px;}
.lsc{letter-spacing:0.723483px;}
.ls2{letter-spacing:2.989200px;}
.ls0{letter-spacing:3.088050px;}
.ls1{letter-spacing:10.461300px;}
.ls5{letter-spacing:11.954850px;}
.lsd{letter-spacing:13.448400px;}
.lse{letter-spacing:13.454400px;}
.ls12{letter-spacing:13.460039px;}
.lsf{letter-spacing:13.472244px;}
.ls9{letter-spacing:14.107042px;}
.ls7{letter-spacing:14.704798px;}
.ls8{letter-spacing:14.764573px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.lsa{letter-spacing:345.863675px;}
.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;}
}
.ws72{word-spacing:-14.943900px;}
.ws92{word-spacing:-13.449600px;}
.ws8{word-spacing:-11.955150px;}
.ws7{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws6a{word-spacing:-3.526760px;}
.ws85{word-spacing:-3.227882px;}
.ws5f{word-spacing:-3.048556px;}
.ws26{word-spacing:-2.929004px;}
.ws8f{word-spacing:-2.636122px;}
.ws8e{word-spacing:-2.582323px;}
.ws48{word-spacing:-2.570351px;}
.ws6d{word-spacing:-2.510575px;}
.ws7f{word-spacing:-2.151922px;}
.wsa9{word-spacing:-2.098138px;}
.ws37{word-spacing:-2.092146px;}
.ws4c{word-spacing:-2.032370px;}
.wsaa{word-spacing:-1.936742px;}
.ws86{word-spacing:-1.912819px;}
.ws60{word-spacing:-1.853044px;}
.ws23{word-spacing:-1.673717px;}
.wsa8{word-spacing:-1.613952px;}
.ws3e{word-spacing:-1.494390px;}
.ws38{word-spacing:-1.374839px;}
.ws71{word-spacing:-1.315063px;}
.ws62{word-spacing:-0.956410px;}
.ws79{word-spacing:-0.836858px;}
.ws4e{word-spacing:-0.777083px;}
.ws55{word-spacing:-0.717307px;}
.ws90{word-spacing:-0.645581px;}
.ws84{word-spacing:-0.597756px;}
.wsa6{word-spacing:-0.591782px;}
.ws53{word-spacing:-0.537980px;}
.ws5a{word-spacing:-0.478205px;}
.wsa5{word-spacing:-0.430387px;}
.ws6e{word-spacing:-0.418429px;}
.ws24{word-spacing:-0.358654px;}
.wsa2{word-spacing:-0.322790px;}
.ws42{word-spacing:-0.298878px;}
.ws93{word-spacing:-0.268992px;}
.wsb{word-spacing:-0.239102px;}
.ws89{word-spacing:-0.215194px;}
.wsf{word-spacing:-0.179327px;}
.ws8a{word-spacing:-0.161395px;}
.ws1c{word-spacing:-0.119551px;}
.ws12{word-spacing:-0.059776px;}
.ws9b{word-spacing:-0.053798px;}
.wsa7{word-spacing:-0.009782px;}
.wsab{word-spacing:-0.005357px;}
.wsa1{word-spacing:-0.004570px;}
.ws2{word-spacing:-0.004316px;}
.wsa4{word-spacing:-0.003446px;}
.wsa3{word-spacing:-0.003312px;}
.ws9f{word-spacing:-0.003245px;}
.ws0{word-spacing:0.000000px;}
.ws20{word-spacing:0.000112px;}
.ws99{word-spacing:0.053798px;}
.ws1d{word-spacing:0.059776px;}
.ws94{word-spacing:0.107597px;}
.ws29{word-spacing:0.119551px;}
.ws8d{word-spacing:0.161395px;}
.ws16{word-spacing:0.179327px;}
.ws6{word-spacing:0.215194px;}
.ws21{word-spacing:0.239102px;}
.ws91{word-spacing:0.268992px;}
.ws10{word-spacing:0.298878px;}
.wsa0{word-spacing:0.322790px;}
.ws28{word-spacing:0.358654px;}
.ws4f{word-spacing:0.418429px;}
.ws15{word-spacing:0.597756px;}
.ws44{word-spacing:0.657532px;}
.ws22{word-spacing:0.717307px;}
.ws6f{word-spacing:0.777083px;}
.ws46{word-spacing:0.836858px;}
.ws32{word-spacing:0.896634px;}
.ws11{word-spacing:0.956410px;}
.ws14{word-spacing:1.016185px;}
.ws97{word-spacing:1.022170px;}
.ws52{word-spacing:1.075961px;}
.ws9c{word-spacing:1.075968px;}
.wsae{word-spacing:1.128154px;}
.ws30{word-spacing:1.135736px;}
.ws2d{word-spacing:1.195512px;}
.ws3a{word-spacing:1.255288px;}
.ws2a{word-spacing:1.315063px;}
.ws33{word-spacing:1.374839px;}
.ws2f{word-spacing:1.434614px;}
.wsad{word-spacing:1.506355px;}
.ws43{word-spacing:1.554166px;}
.ws8c{word-spacing:1.560154px;}
.ws13{word-spacing:1.613941px;}
.ws96{word-spacing:1.613952px;}
.ws9e{word-spacing:1.667750px;}
.ws5b{word-spacing:1.673717px;}
.ws77{word-spacing:1.793268px;}
.ws98{word-spacing:1.882944px;}
.ws49{word-spacing:1.912819px;}
.wsac{word-spacing:1.990541px;}
.wse{word-spacing:2.032370px;}
.wsd{word-spacing:2.092146px;}
.ws39{word-spacing:2.151922px;}
.ws4d{word-spacing:2.211697px;}
.ws54{word-spacing:2.271473px;}
.ws83{word-spacing:2.331248px;}
.ws1b{word-spacing:2.391024px;}
.ws25{word-spacing:2.450800px;}
.ws5{word-spacing:2.510252px;}
.ws35{word-spacing:2.510575px;}
.ws17{word-spacing:2.570351px;}
.ws41{word-spacing:2.630126px;}
.ws80{word-spacing:2.689902px;}
.ws47{word-spacing:2.749678px;}
.ws34{word-spacing:2.869229px;}
.ws9{word-spacing:2.869236px;}
.ws31{word-spacing:2.929004px;}
.ws3f{word-spacing:3.048556px;}
.ws1f{word-spacing:3.108331px;}
.ws2c{word-spacing:3.227882px;}
.ws95{word-spacing:3.227904px;}
.ws9a{word-spacing:3.281702px;}
.wsc{word-spacing:3.347434px;}
.wsa{word-spacing:3.375193px;}
.wsaf{word-spacing:3.496896px;}
.ws3b{word-spacing:3.526760px;}
.ws56{word-spacing:3.586536px;}
.ws19{word-spacing:3.609354px;}
.ws58{word-spacing:3.885414px;}
.ws3d{word-spacing:4.064741px;}
.ws18{word-spacing:4.184292px;}
.ws2e{word-spacing:4.303843px;}
.ws1a{word-spacing:4.303872px;}
.ws66{word-spacing:4.363619px;}
.ws57{word-spacing:4.423394px;}
.ws50{word-spacing:4.483170px;}
.ws4b{word-spacing:4.662497px;}
.ws4a{word-spacing:4.722272px;}
.ws51{word-spacing:4.782048px;}
.ws87{word-spacing:5.003251px;}
.ws68{word-spacing:5.080926px;}
.ws3c{word-spacing:5.140702px;}
.ws81{word-spacing:5.320028px;}
.ws1e{word-spacing:5.917784px;}
.ws36{word-spacing:6.037336px;}
.ws88{word-spacing:6.348211px;}
.ws70{word-spacing:6.455765px;}
.ws8b{word-spacing:6.514117px;}
.ws27{word-spacing:6.515540px;}
.ws59{word-spacing:6.575316px;}
.ws5c{word-spacing:6.694867px;}
.ws5d{word-spacing:6.814418px;}
.ws9d{word-spacing:6.832397px;}
.ws78{word-spacing:6.874194px;}
.ws40{word-spacing:6.993745px;}
.ws67{word-spacing:7.471950px;}
.ws2b{word-spacing:7.770828px;}
.ws82{word-spacing:8.069706px;}
.ws45{word-spacing:8.308808px;}
.ws69{word-spacing:8.428360px;}
.ws4{word-spacing:15.481836px;}
.ws5e{word-spacing:24.328669px;}
.ws1{word-spacing:28.455541px;}
.ws7a{word-spacing:66.948672px;}
.ws6b{word-spacing:103.346726px;}
.ws7b{word-spacing:107.451000px;}
.ws7c{word-spacing:107.457000px;}
.ws74{word-spacing:141.668172px;}
.ws7d{word-spacing:150.651000px;}
.ws76{word-spacing:156.612072px;}
.ws73{word-spacing:168.268314px;}
.ws64{word-spacing:216.447448px;}
.ws75{word-spacing:261.219372px;}
.ws7e{word-spacing:301.851000px;}
.ws65{word-spacing:553.163402px;}
.ws63{word-spacing:604.809521px;}
.ws61{word-spacing:724.300945px;}
.ws6c{word-spacing:1299.935424px;}
._4{margin-left:-12.050842px;}
._61{margin-left:-8.512058px;}
._7{margin-left:-7.029628px;}
._2{margin-left:-5.397721px;}
._1{margin-left:-3.849538px;}
._11{margin-left:-2.797502px;}
._3{margin-left:-1.506341px;}
._5{width:2.992780px;}
._3d{width:10.974874px;}
._0{width:12.971268px;}
._10{width:14.597197px;}
._12{width:16.342671px;}
._17{width:17.358826px;}
._b{width:19.199918px;}
._c{width:20.861684px;}
._a{width:21.937645px;}
._9{width:23.073382px;}
._8{width:24.890551px;}
._14{width:26.181713px;}
._16{width:27.532659px;}
._d{width:28.769981px;}
._15{width:31.023536px;}
._18{width:32.816804px;}
._38{width:34.550297px;}
._19{width:39.153018px;}
._13{width:42.894988px;}
._55{width:44.425222px;}
._6{width:54.416300px;}
._66{width:61.868160px;}
._62{width:107.823232px;}
._63{width:125.110331px;}
._43{width:138.046680px;}
._58{width:142.510997px;}
._44{width:155.531160px;}
._45{width:157.898304px;}
._59{width:171.555972px;}
._30{width:178.143239px;}
._57{width:179.924556px;}
._35{width:181.000517px;}
._56{width:184.826155px;}
._41{width:200.482675px;}
._3a{width:204.218712px;}
._36{width:209.035273px;}
._5f{width:214.773731px;}
._3b{width:216.269554px;}
._40{width:235.583165px;}
._2e{width:241.947736px;}
._3e{width:246.773261px;}
._2f{width:264.148376px;}
._2d{width:270.783468px;}
._64{width:276.282823px;}
._33{width:280.945320px;}
._31{width:290.760469px;}
._5c{width:319.381031px;}
._4c{width:339.629285px;}
._5e{width:341.557778px;}
._5a{width:350.349479px;}
._1a{width:357.960192px;}
._53{width:359.211902px;}
._60{width:365.946223px;}
._37{width:368.843089px;}
._4b{width:384.297298px;}
._5b{width:414.125357px;}
._48{width:455.511053px;}
._2c{width:468.640704px;}
._5d{width:470.553523px;}
._24{width:526.324158px;}
._4d{width:546.053760px;}
._51{width:564.667978px;}
._32{width:568.167078px;}
._2b{width:577.790950px;}
._28{width:580.540627px;}
._34{width:583.110978px;}
._2a{width:596.560488px;}
._26{width:598.592858px;}
._23{width:604.271540px;}
._47{width:626.589950px;}
._52{width:646.064986px;}
._22{width:649.641221px;}
._27{width:650.956284px;}
._29{width:666.976145px;}
._25{width:669.008515px;}
._49{width:699.217790px;}
._1c{width:739.244845px;}
._3c{width:766.627200px;}
._4e{width:880.195622px;}
._1b{width:887.261182px;}
._1f{width:893.406118px;}
._20{width:949.415855px;}
._42{width:961.449073px;}
._54{width:1010.154521px;}
._39{width:1057.784141px;}
._46{width:1068.759014px;}
._1e{width:1093.295724px;}
._4a{width:1107.655258px;}
._1d{width:1113.571603px;}
._50{width:1118.635075px;}
._3f{width:1165.327142px;}
._4f{width:1252.777229px;}
._21{width:1595.249354px;}
._e{width:1923.897300px;}
._65{width:2564.451300px;}
._f{width:2588.361300px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:29.887800px;}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs4{font-size:45.429600px;}
.fs6{font-size:47.820600px;}
.fs8{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs9{font-size:62.286600px;}
.fs7{font-size:71.731200px;}
.fs3{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y43{bottom:45.921000px;}
.y19{bottom:100.260000px;}
.ya3{bottom:100.954500px;}
.y42{bottom:108.849000px;}
.y184{bottom:111.432000px;}
.ydb{bottom:115.315500px;}
.y12e{bottom:115.459500px;}
.yaf{bottom:116.407500px;}
.y18{bottom:118.147500px;}
.ya2{bottom:121.846500px;}
.y73{bottom:122.787000px;}
.y41{bottom:129.739500px;}
.y183{bottom:132.324000px;}
.y17{bottom:136.035000px;}
.yda{bottom:136.207500px;}
.y12d{bottom:136.351500px;}
.y1a0{bottom:136.380000px;}
.yae{bottom:137.298000px;}
.ya1{bottom:142.738500px;}
.y72{bottom:143.679000px;}
.y40{bottom:150.631500px;}
.y182{bottom:153.214500px;}
.y16{bottom:153.922500px;}
.y19f{bottom:155.532000px;}
.yd9{bottom:157.099500px;}
.y12c{bottom:157.242000px;}
.yad{bottom:158.190000px;}
.y166{bottom:159.072000px;}
.ya0{bottom:163.629000px;}
.y71{bottom:164.571000px;}
.y3f{bottom:171.523500px;}
.y15{bottom:171.811500px;}
.y181{bottom:174.106500px;}
.y19e{bottom:174.682500px;}
.y165{bottom:175.510500px;}
.yd8{bottom:177.990000px;}
.y12b{bottom:178.134000px;}
.yac{bottom:179.082000px;}
.y9f{bottom:184.521000px;}
.y70{bottom:185.463000px;}
.y14{bottom:189.699000px;}
.y164{bottom:191.949000px;}
.y3e{bottom:192.414000px;}
.y19d{bottom:193.833000px;}
.y180{bottom:194.998500px;}
.yd7{bottom:198.882000px;}
.y12a{bottom:199.026000px;}
.yab{bottom:199.972500px;}
.y9e{bottom:205.413000px;}
.y6f{bottom:206.353500px;}
.y13{bottom:207.586500px;}
.y163{bottom:208.387500px;}
.y19c{bottom:212.983500px;}
.y3d{bottom:213.306000px;}
.y102{bottom:214.812000px;}
.y17f{bottom:215.889000px;}
.yd6{bottom:219.774000px;}
.y129{bottom:219.916500px;}
.yaa{bottom:220.864500px;}
.y161{bottom:224.826000px;}
.y12{bottom:225.475500px;}
.y9d{bottom:226.303500px;}
.y6e{bottom:227.245500px;}
.y19b{bottom:232.134000px;}
.y162{bottom:233.044500px;}
.y3c{bottom:234.198000px;}
.y101{bottom:235.704000px;}
.yd5{bottom:240.664500px;}
.y160{bottom:241.264500px;}
.ya9{bottom:241.756500px;}
.y128{bottom:245.292000px;}
.y9c{bottom:247.195500px;}
.y6d{bottom:248.137500px;}
.y19a{bottom:251.284500px;}
.y11{bottom:252.330000px;}
.y100{bottom:256.594500px;}
.y15e{bottom:257.703000px;}
.y3b{bottom:259.572000px;}
.yd4{bottom:261.556500px;}
.ya8{bottom:262.647000px;}
.y15f{bottom:265.921500px;}
.y9b{bottom:268.087500px;}
.y6c{bottom:269.028000px;}
.y10{bottom:270.217500px;}
.y199{bottom:270.435000px;}
.y15d{bottom:274.141500px;}
.yff{bottom:277.486500px;}
.y17e{bottom:280.089000px;}
.yd3{bottom:282.448500px;}
.ya7{bottom:283.539000px;}
.y127{bottom:284.116500px;}
.yf{bottom:288.105000px;}
.y9a{bottom:288.978000px;}
.y198{bottom:289.585500px;}
.y6b{bottom:289.920000px;}
.y15c{bottom:290.578500px;}
.yfe{bottom:298.378500px;}
.y17d{bottom:300.979500px;}
.yd2{bottom:303.339000px;}
.ya6{bottom:304.431000px;}
.y126{bottom:305.008500px;}
.ye{bottom:305.994000px;}
.y15b{bottom:307.017000px;}
.y197{bottom:308.736000px;}
.y6a{bottom:310.812000px;}
.y1c7{bottom:311.887500px;}
.y99{bottom:314.353500px;}
.yfd{bottom:319.269000px;}
.y17c{bottom:321.871500px;}
.y15a{bottom:323.455500px;}
.yd{bottom:323.881500px;}
.yd1{bottom:324.231000px;}
.ya5{bottom:325.323000px;}
.y125{bottom:325.899000px;}
.y196{bottom:327.886500px;}
.y1c6{bottom:331.038000px;}
.y69{bottom:331.702500px;}
.y98{bottom:331.762500px;}
.y3a{bottom:338.784000px;}
.y158{bottom:339.894000px;}
.yc{bottom:341.769000px;}
.yfc{bottom:344.644500px;}
.yd0{bottom:345.123000px;}
.ya4{bottom:346.213500px;}
.y195{bottom:347.037000px;}
.y159{bottom:348.114000px;}
.y1c5{bottom:350.188500px;}
.y68{bottom:352.594500px;}
.y157{bottom:356.332500px;}
.yb{bottom:359.658000px;}
.y39{bottom:359.676000px;}
.ycf{bottom:366.013500px;}
.y194{bottom:366.187500px;}
.yfb{bottom:366.537000px;}
.y97{bottom:367.105500px;}
.y156{bottom:372.771000px;}
.y17b{bottom:372.832500px;}
.y67{bottom:373.486500px;}
.y124{bottom:376.860000px;}
.ya{bottom:377.545500px;}
.y193{bottom:385.338000px;}
.yce{bottom:386.905500px;}
.y96{bottom:387.997500px;}
.y155{bottom:389.209500px;}
.y17a{bottom:390.765000px;}
.y1c4{bottom:393.220500px;}
.y66{bottom:394.377000px;}
.y123{bottom:394.794000px;}
.y9{bottom:395.433000px;}
.y38{bottom:398.500500px;}
.yfa{bottom:401.880000px;}
.y154{bottom:405.648000px;}
.ycd{bottom:407.797500px;}
.y179{bottom:408.699000px;}
.y95{bottom:408.888000px;}
.y192{bottom:408.972000px;}
.y1c3{bottom:412.371000px;}
.y122{bottom:412.726500px;}
.y8{bottom:413.322000px;}
.y65{bottom:415.269000px;}
.y37{bottom:419.391000px;}
.y153{bottom:422.086500px;}
.yf9{bottom:422.770500px;}
.y178{bottom:426.631500px;}
.ycc{bottom:428.688000px;}
.y94{bottom:429.780000px;}
.y121{bottom:430.659000px;}
.y1c2{bottom:431.521500px;}
.y64{bottom:436.161000px;}
.y7{bottom:437.187000px;}
.y152{bottom:438.525000px;}
.y36{bottom:440.283000px;}
.yf8{bottom:443.662500px;}
.y11e{bottom:447.310500px;}
.y191{bottom:447.796500px;}
.y120{bottom:448.591500px;}
.ycb{bottom:449.580000px;}
.y93{bottom:450.672000px;}
.y177{bottom:451.765500px;}
.y151{bottom:454.963500px;}
.y6{bottom:455.074500px;}
.y63{bottom:457.053000px;}
.y176{bottom:460.732500px;}
.y35{bottom:461.175000px;}
.yf7{bottom:464.554500px;}
.y11f{bottom:466.524000px;}
.y1c1{bottom:469.822500px;}
.yca{bottom:470.472000px;}
.y150{bottom:471.400500px;}
.y92{bottom:471.562500px;}
.y5{bottom:472.963500px;}
.y190{bottom:476.262000px;}
.y62{bottom:477.943500px;}
.y34{bottom:482.065500px;}
.y11d{bottom:484.456500px;}
.yf6{bottom:485.446500px;}
.y14f{bottom:487.839000px;}
.y1c0{bottom:488.973000px;}
.y4{bottom:490.851000px;}
.y91{bottom:492.454500px;}
.yc9{bottom:495.846000px;}
.y61{bottom:498.835500px;}
.y33{bottom:502.957500px;}
.y14d{bottom:504.277500px;}
.y18f{bottom:504.726000px;}
.y175{bottom:505.353000px;}
.yf5{bottom:506.337000px;}
.y1bf{bottom:508.123500px;}
.y11c{bottom:509.592000px;}
.y14e{bottom:512.497500px;}
.y3{bottom:513.196500px;}
.y90{bottom:513.346500px;}
.y2{bottom:514.716000px;}
.y60{bottom:519.727500px;}
.y14c{bottom:520.716000px;}
.y32{bottom:523.849500px;}
.yf4{bottom:527.229000px;}
.y1be{bottom:527.274000px;}
.yc8{bottom:531.189000px;}
.y1{bottom:532.605000px;}
.y18e{bottom:533.191500px;}
.y8f{bottom:534.237000px;}
.y14b{bottom:537.154500px;}
.y174{bottom:542.457000px;}
.y31{bottom:544.740000px;}
.y5f{bottom:545.101500px;}
.y11b{bottom:545.247000px;}
.y1bd{bottom:546.424500px;}
.yf3{bottom:548.121000px;}
.yc7{bottom:552.081000px;}
.y18d{bottom:552.690000px;}
.y14a{bottom:553.593000px;}
.y8e{bottom:555.129000px;}
.y173{bottom:563.349000px;}
.y1bc{bottom:565.575000px;}
.y30{bottom:565.632000px;}
.y149{bottom:570.031500px;}
.yc6{bottom:572.971500px;}
.yf2{bottom:573.495000px;}
.y8d{bottom:576.021000px;}
.y5e{bottom:580.444500px;}
.y18c{bottom:581.155500px;}
.y11a{bottom:582.351000px;}
.y172{bottom:584.241000px;}
.y1bb{bottom:584.725500px;}
.y148{bottom:586.470000px;}
.y2f{bottom:586.524000px;}
.yc5{bottom:593.863500px;}
.yf1{bottom:594.387000px;}
.y8c{bottom:596.913000px;}
.y18b{bottom:600.654000px;}
.y5d{bottom:601.335000px;}
.y147{bottom:602.908500px;}
.y119{bottom:603.241500px;}
.y1ba{bottom:603.876000px;}
.y171{bottom:605.131500px;}
.y2e{bottom:607.414500px;}
.yc4{bottom:614.755500px;}
.yf0{bottom:615.277500px;}
.y8b{bottom:617.803500px;}
.y146{bottom:619.347000px;}
.y18a{bottom:620.152500px;}
.y5c{bottom:622.227000px;}
.y1b9{bottom:623.026500px;}
.y118{bottom:624.133500px;}
.y2d{bottom:628.306500px;}
.yc3{bottom:635.646000px;}
.y145{bottom:635.784000px;}
.yef{bottom:636.169500px;}
.y8a{bottom:638.695500px;}
.y1b8{bottom:642.177000px;}
.y5b{bottom:647.601000px;}
.y189{bottom:648.618000px;}
.y2c{bottom:649.198500px;}
.y144{bottom:652.222500px;}
.y170{bottom:656.094000px;}
.yc2{bottom:656.538000px;}
.yee{bottom:657.061500px;}
.y89{bottom:659.587500px;}
.y1b7{bottom:661.327500px;}
.y188{bottom:668.116500px;}
.y143{bottom:668.661000px;}
.y2b{bottom:670.090500px;}
.y117{bottom:672.106500px;}
.y16f{bottom:674.026500px;}
.yc1{bottom:677.430000px;}
.yed{bottom:677.953500px;}
.y88{bottom:680.478000px;}
.y142{bottom:685.099500px;}
.y5a{bottom:686.425500px;}
.y187{bottom:687.615000px;}
.y116{bottom:690.039000px;}
.y2a{bottom:690.981000px;}
.y16e{bottom:691.959000px;}
.yc0{bottom:698.320500px;}
.yec{bottom:698.844000px;}
.y1b6{bottom:699.628500px;}
.y87{bottom:701.370000px;}
.y186{bottom:707.115000px;}
.y59{bottom:707.317500px;}
.y115{bottom:707.971500px;}
.y141{bottom:708.741000px;}
.y29{bottom:711.873000px;}
.y16d{bottom:717.094500px;}
.y1b5{bottom:718.779000px;}
.yeb{bottom:719.736000px;}
.y86{bottom:722.262000px;}
.ybf{bottom:723.696000px;}
.y114{bottom:725.904000px;}
.y16c{bottom:726.060000px;}
.y185{bottom:726.613500px;}
.y58{bottom:728.209500px;}
.y28{bottom:732.765000px;}
.y1b4{bottom:737.929500px;}
.yea{bottom:740.628000px;}
.y85{bottom:743.152500px;}
.y140{bottom:743.349000px;}
.y113{bottom:743.836500px;}
.y57{bottom:749.100000px;}
.y27{bottom:753.655500px;}
.y1b3{bottom:757.081500px;}
.ye9{bottom:761.518500px;}
.ybe{bottom:762.520500px;}
.y84{bottom:764.044500px;}
.y112{bottom:768.972000px;}
.y56{bottom:769.992000px;}
.y16b{bottom:770.680500px;}
.y26{bottom:774.547500px;}
.y1b2{bottom:776.232000px;}
.y13f{bottom:780.453000px;}
.ye8{bottom:782.410500px;}
.ybd{bottom:783.411000px;}
.y83{bottom:784.936500px;}
.y55{bottom:790.884000px;}
.y1b1{bottom:795.382500px;}
.y25{bottom:795.439500px;}
.y13e{bottom:801.345000px;}
.y111{bottom:801.637500px;}
.ye7{bottom:803.302500px;}
.ybc{bottom:804.303000px;}
.y82{bottom:805.827000px;}
.y16a{bottom:807.784500px;}
.y54{bottom:811.774500px;}
.y1b0{bottom:814.533000px;}
.y13d{bottom:822.235500px;}
.ye6{bottom:824.193000px;}
.ybb{bottom:825.195000px;}
.y81{bottom:826.719000px;}
.y169{bottom:828.676500px;}
.y53{bottom:832.666500px;}
.y1af{bottom:833.683500px;}
.y24{bottom:835.459500px;}
.y110{bottom:837.658500px;}
.y13c{bottom:843.127500px;}
.ye5{bottom:845.085000px;}
.yba{bottom:846.087000px;}
.y80{bottom:847.611000px;}
.y168{bottom:849.568500px;}
.y23{bottom:851.598000px;}
.y1ae{bottom:852.834000px;}
.y52{bottom:853.558500px;}
.y10f{bottom:858.550500px;}
.y13b{bottom:864.019500px;}
.yb9{bottom:866.977500px;}
.y7f{bottom:868.503000px;}
.ye4{bottom:870.460500px;}
.y1ad{bottom:871.984500px;}
.y22{bottom:872.077500px;}
.y51{bottom:874.450500px;}
.y10e{bottom:879.441000px;}
.y21{bottom:883.878000px;}
.y13a{bottom:884.910000px;}
.yb8{bottom:887.869500px;}
.y7e{bottom:889.393500px;}
.y1ac{bottom:891.135000px;}
.ye3{bottom:891.351000px;}
.y50{bottom:895.341000px;}
.y10d{bottom:900.333000px;}
.y20{bottom:904.357500px;}
.y139{bottom:905.802000px;}
.yb7{bottom:908.761500px;}
.y7d{bottom:910.285500px;}
.ye2{bottom:912.243000px;}
.y4f{bottom:916.233000px;}
.y10c{bottom:925.708500px;}
.y138{bottom:926.694000px;}
.y1ab{bottom:929.436000px;}
.yb6{bottom:929.652000px;}
.y7c{bottom:931.177500px;}
.ye1{bottom:933.135000px;}
.y4e{bottom:937.125000px;}
.y137{bottom:947.584500px;}
.y1aa{bottom:948.586500px;}
.y1f{bottom:949.033500px;}
.yb5{bottom:950.544000px;}
.y7b{bottom:952.068000px;}
.ye0{bottom:954.025500px;}
.y4d{bottom:958.015500px;}
.y167{bottom:958.509000px;}
.y1a9{bottom:967.737000px;}
.y136{bottom:968.476500px;}
.y1e{bottom:969.925500px;}
.yb4{bottom:971.436000px;}
.y7a{bottom:972.960000px;}
.y10b{bottom:973.188000px;}
.ydf{bottom:974.917500px;}
.y4c{bottom:978.907500px;}
.y1a8{bottom:986.887500px;}
.y135{bottom:989.368500px;}
.y10a{bottom:991.120500px;}
.yb3{bottom:992.326500px;}
.y79{bottom:993.852000px;}
.yde{bottom:995.809500px;}
.y1a7{bottom:1006.038000px;}
.y4b{bottom:1007.271000px;}
.y1d{bottom:1008.748500px;}
.y109{bottom:1009.053000px;}
.y134{bottom:1010.260500px;}
.yb2{bottom:1013.218500px;}
.y78{bottom:1014.742500px;}
.ydd{bottom:1016.700000px;}
.y1a6{bottom:1025.188500px;}
.y108{bottom:1026.985500px;}
.y4a{bottom:1028.163000px;}
.y133{bottom:1031.151000px;}
.yb1{bottom:1034.110500px;}
.y77{bottom:1035.634500px;}
.y1c{bottom:1040.086500px;}
.ydc{bottom:1042.075500px;}
.y1a5{bottom:1044.339000px;}
.y107{bottom:1044.918000px;}
.y49{bottom:1049.053500px;}
.y132{bottom:1052.043000px;}
.y76{bottom:1056.526500px;}
.yb0{bottom:1059.484500px;}
.y106{bottom:1062.850500px;}
.y1a4{bottom:1063.489500px;}
.y48{bottom:1069.945500px;}
.y1b{bottom:1071.424500px;}
.y131{bottom:1072.935000px;}
.y75{bottom:1077.417000px;}
.y105{bottom:1080.784500px;}
.y1a3{bottom:1082.640000px;}
.y47{bottom:1090.837500px;}
.y130{bottom:1093.825500px;}
.y74{bottom:1098.309000px;}
.y1a2{bottom:1101.790500px;}
.y1a{bottom:1102.761000px;}
.y104{bottom:1105.918500px;}
.y12f{bottom:1114.717500px;}
.y46{bottom:1119.201000px;}
.y1a1{bottom:1120.941000px;}
.y45{bottom:1140.091500px;}
.y103{bottom:1141.573500px;}
.y44{bottom:1200.196500px;}
.h7{height:32.565965px;}
.h2{height:37.993262px;}
.he{height:38.896243px;}
.h12{height:39.434227px;}
.hc{height:43.217759px;}
.h8{height:43.421105px;}
.h4{height:43.815515px;}
.h3{height:44.071262px;}
.hb{height:48.848947px;}
.h13{height:49.117939px;}
.ha{height:51.861658px;}
.h9{height:54.276245px;}
.h6{height:54.541601px;}
.h5{height:77.792486px;}
.h11{height:79.085759px;}
.h10{height:81.722947px;}
.hf{height:81.728947px;}
.hd{height:90.144245px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:52.525500px;}
.x1{left:53.574000px;}
.x32{left:62.541000px;}
.x42{left:64.588500px;}
.x3b{left:69.556500px;}
.x65{left:71.545500px;}
.x50{left:73.896000px;}
.x58{left:75.690000px;}
.x41{left:77.379000px;}
.x52{left:81.205500px;}
.x73{left:85.848000px;}
.x49{left:93.619500px;}
.x40{left:95.364000px;}
.x4a{left:96.463500px;}
.x2{left:97.872000px;}
.x4e{left:101.568000px;}
.x4c{left:104.215500px;}
.x43{left:117.331500px;}
.x66{left:122.578500px;}
.x67{left:124.648500px;}
.x5a{left:127.303500px;}
.x61{left:132.360000px;}
.x3a{left:136.258500px;}
.x59{left:138.393000px;}
.x55{left:156.408000px;}
.x5b{left:179.043000px;}
.x5f{left:183.582000px;}
.x54{left:198.961500px;}
.x60{left:204.288000px;}
.x56{left:217.119000px;}
.x63{left:228.172500px;}
.x4b{left:234.178500px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x2e{left:250.591500px;}
.x5c{left:262.570500px;}
.x5{left:269.914500px;}
.xa{left:279.238500px;}
.x7{left:281.479500px;}
.x4f{left:282.811500px;}
.x62{left:294.843000px;}
.x47{left:307.209000px;}
.x53{left:309.717000px;}
.x57{left:319.434000px;}
.x5e{left:321.619500px;}
.x37{left:326.718000px;}
.x36{left:328.302000px;}
.x39{left:330.924000px;}
.x4d{left:334.101000px;}
.x38{left:335.437500px;}
.x34{left:348.558000px;}
.x5d{left:355.722000px;}
.x35{left:363.502500px;}
.x1d{left:367.005000px;}
.x51{left:370.872000px;}
.x44{left:377.050500px;}
.x1e{left:381.949500px;}
.x45{left:394.174500px;}
.x12{left:397.860000px;}
.x3c{left:403.395000px;}
.x13{left:405.331500px;}
.x18{left:417.009000px;}
.x1a{left:419.806500px;}
.x23{left:427.771500px;}
.x25{left:428.974500px;}
.x19{left:431.952000px;}
.x24{left:442.714500px;}
.x26{left:443.919000px;}
.x31{left:449.607000px;}
.x16{left:470.044500px;}
.x21{left:474.922500px;}
.x17{left:477.516000px;}
.x6e{left:484.563000px;}
.x29{left:485.992500px;}
.x22{left:489.867000px;}
.x33{left:494.020500px;}
.x3d{left:499.419000px;}
.x2a{left:500.937000px;}
.x6f{left:503.169000px;}
.x8{left:505.225500px;}
.x9{left:512.697000px;}
.x70{left:518.112000px;}
.x2f{left:532.750500px;}
.x30{left:547.695000px;}
.x1b{left:557.817000px;}
.x1c{left:572.760000px;}
.xb{left:609.409500px;}
.xc{left:616.882500px;}
.xd{left:625.095000px;}
.x68{left:627.007500px;}
.x2d{left:640.228500px;}
.x69{left:641.950500px;}
.x71{left:645.307500px;}
.x72{left:660.250500px;}
.x14{left:661.570500px;}
.x15{left:669.043500px;}
.x3e{left:675.081000px;}
.x1f{left:697.695000px;}
.x64{left:699.339000px;}
.x2b{left:705.840000px;}
.x10{left:711.979500px;}
.xe{left:716.739000px;}
.x11{left:719.451000px;}
.x2c{left:720.784500px;}
.xf{left:724.210500px;}
.x6a{left:728.341500px;}
.x20{left:731.394000px;}
.x6b{left:743.284500px;}
.x6c{left:747.096000px;}
.x3f{left:748.228500px;}
.x6d{left:762.039000px;}
.x46{left:763.306500px;}
.x27{left:776.139000px;}
.x28{left:791.083500px;}
.x48{left:801.816000px;}
@media print{
.v3{vertical-align:-15.434667pt;}
.v4{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.402667pt;}
.v2{vertical-align:19.285333pt;}
.v6{vertical-align:29.226667pt;}
.v5{vertical-align:31.882667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.001967pt;}
.ls10{letter-spacing:0.004267pt;}
.lsb{letter-spacing:0.637762pt;}
.lsc{letter-spacing:0.643096pt;}
.ls2{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.744933pt;}
.ls1{letter-spacing:9.298933pt;}
.ls5{letter-spacing:10.626533pt;}
.lsd{letter-spacing:11.954133pt;}
.lse{letter-spacing:11.959467pt;}
.ls12{letter-spacing:11.964479pt;}
.lsf{letter-spacing:11.975328pt;}
.ls9{letter-spacing:12.539593pt;}
.ls7{letter-spacing:13.070931pt;}
.ls8{letter-spacing:13.124065pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.lsa{letter-spacing:307.434378pt;}
.ws72{word-spacing:-13.283467pt;}
.ws92{word-spacing:-11.955200pt;}
.ws8{word-spacing:-10.626800pt;}
.ws7{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws6a{word-spacing:-3.134898pt;}
.ws85{word-spacing:-2.869229pt;}
.ws5f{word-spacing:-2.709827pt;}
.ws26{word-spacing:-2.603559pt;}
.ws8f{word-spacing:-2.343219pt;}
.ws8e{word-spacing:-2.295398pt;}
.ws48{word-spacing:-2.284756pt;}
.ws6d{word-spacing:-2.231622pt;}
.ws7f{word-spacing:-1.912819pt;}
.wsa9{word-spacing:-1.865011pt;}
.ws37{word-spacing:-1.859685pt;}
.ws4c{word-spacing:-1.806551pt;}
.wsaa{word-spacing:-1.721549pt;}
.ws86{word-spacing:-1.700284pt;}
.ws60{word-spacing:-1.647150pt;}
.ws23{word-spacing:-1.487748pt;}
.wsa8{word-spacing:-1.434624pt;}
.ws3e{word-spacing:-1.328347pt;}
.ws38{word-spacing:-1.222079pt;}
.ws71{word-spacing:-1.168945pt;}
.ws62{word-spacing:-0.850142pt;}
.ws79{word-spacing:-0.743874pt;}
.ws4e{word-spacing:-0.690740pt;}
.ws55{word-spacing:-0.637606pt;}
.ws90{word-spacing:-0.573850pt;}
.ws84{word-spacing:-0.531339pt;}
.wsa6{word-spacing:-0.526029pt;}
.ws53{word-spacing:-0.478205pt;}
.ws5a{word-spacing:-0.425071pt;}
.wsa5{word-spacing:-0.382566pt;}
.ws6e{word-spacing:-0.371937pt;}
.ws24{word-spacing:-0.318803pt;}
.wsa2{word-spacing:-0.286925pt;}
.ws42{word-spacing:-0.265669pt;}
.ws93{word-spacing:-0.239104pt;}
.wsb{word-spacing:-0.212535pt;}
.ws89{word-spacing:-0.191283pt;}
.wsf{word-spacing:-0.159402pt;}
.ws8a{word-spacing:-0.143462pt;}
.ws1c{word-spacing:-0.106268pt;}
.ws12{word-spacing:-0.053134pt;}
.ws9b{word-spacing:-0.047821pt;}
.wsa7{word-spacing:-0.008695pt;}
.wsab{word-spacing:-0.004762pt;}
.wsa1{word-spacing:-0.004062pt;}
.ws2{word-spacing:-0.003837pt;}
.wsa4{word-spacing:-0.003063pt;}
.wsa3{word-spacing:-0.002944pt;}
.ws9f{word-spacing:-0.002884pt;}
.ws0{word-spacing:0.000000pt;}
.ws20{word-spacing:0.000100pt;}
.ws99{word-spacing:0.047821pt;}
.ws1d{word-spacing:0.053134pt;}
.ws94{word-spacing:0.095642pt;}
.ws29{word-spacing:0.106268pt;}
.ws8d{word-spacing:0.143462pt;}
.ws16{word-spacing:0.159402pt;}
.ws6{word-spacing:0.191283pt;}
.ws21{word-spacing:0.212535pt;}
.ws91{word-spacing:0.239104pt;}
.ws10{word-spacing:0.265669pt;}
.wsa0{word-spacing:0.286925pt;}
.ws28{word-spacing:0.318803pt;}
.ws4f{word-spacing:0.371937pt;}
.ws15{word-spacing:0.531339pt;}
.ws44{word-spacing:0.584473pt;}
.ws22{word-spacing:0.637606pt;}
.ws6f{word-spacing:0.690740pt;}
.ws46{word-spacing:0.743874pt;}
.ws32{word-spacing:0.797008pt;}
.ws11{word-spacing:0.850142pt;}
.ws14{word-spacing:0.903276pt;}
.ws97{word-spacing:0.908595pt;}
.ws52{word-spacing:0.956410pt;}
.ws9c{word-spacing:0.956416pt;}
.wsae{word-spacing:1.002803pt;}
.ws30{word-spacing:1.009543pt;}
.ws2d{word-spacing:1.062677pt;}
.ws3a{word-spacing:1.115811pt;}
.ws2a{word-spacing:1.168945pt;}
.ws33{word-spacing:1.222079pt;}
.ws2f{word-spacing:1.275213pt;}
.wsad{word-spacing:1.338982pt;}
.ws43{word-spacing:1.381481pt;}
.ws8c{word-spacing:1.386803pt;}
.ws13{word-spacing:1.434614pt;}
.ws96{word-spacing:1.434624pt;}
.ws9e{word-spacing:1.482445pt;}
.ws5b{word-spacing:1.487748pt;}
.ws77{word-spacing:1.594016pt;}
.ws98{word-spacing:1.673728pt;}
.ws49{word-spacing:1.700284pt;}
.wsac{word-spacing:1.769370pt;}
.wse{word-spacing:1.806551pt;}
.wsd{word-spacing:1.859685pt;}
.ws39{word-spacing:1.912819pt;}
.ws4d{word-spacing:1.965953pt;}
.ws54{word-spacing:2.019087pt;}
.ws83{word-spacing:2.072221pt;}
.ws1b{word-spacing:2.125355pt;}
.ws25{word-spacing:2.178489pt;}
.ws5{word-spacing:2.231335pt;}
.ws35{word-spacing:2.231622pt;}
.ws17{word-spacing:2.284756pt;}
.ws41{word-spacing:2.337890pt;}
.ws80{word-spacing:2.391024pt;}
.ws47{word-spacing:2.444158pt;}
.ws34{word-spacing:2.550426pt;}
.ws9{word-spacing:2.550432pt;}
.ws31{word-spacing:2.603559pt;}
.ws3f{word-spacing:2.709827pt;}
.ws1f{word-spacing:2.762961pt;}
.ws2c{word-spacing:2.869229pt;}
.ws95{word-spacing:2.869248pt;}
.ws9a{word-spacing:2.917069pt;}
.wsc{word-spacing:2.975497pt;}
.wsa{word-spacing:3.000172pt;}
.wsaf{word-spacing:3.108352pt;}
.ws3b{word-spacing:3.134898pt;}
.ws56{word-spacing:3.188032pt;}
.ws19{word-spacing:3.208315pt;}
.ws58{word-spacing:3.453701pt;}
.ws3d{word-spacing:3.613103pt;}
.ws18{word-spacing:3.719371pt;}
.ws2e{word-spacing:3.825638pt;}
.ws1a{word-spacing:3.825664pt;}
.ws66{word-spacing:3.878772pt;}
.ws57{word-spacing:3.931906pt;}
.ws50{word-spacing:3.985040pt;}
.ws4b{word-spacing:4.144442pt;}
.ws4a{word-spacing:4.197575pt;}
.ws51{word-spacing:4.250709pt;}
.ws87{word-spacing:4.447334pt;}
.ws68{word-spacing:4.516379pt;}
.ws3c{word-spacing:4.569513pt;}
.ws81{word-spacing:4.728914pt;}
.ws1e{word-spacing:5.260253pt;}
.ws36{word-spacing:5.366521pt;}
.ws88{word-spacing:5.642854pt;}
.ws70{word-spacing:5.738458pt;}
.ws8b{word-spacing:5.790326pt;}
.ws27{word-spacing:5.791591pt;}
.ws59{word-spacing:5.844725pt;}
.ws5c{word-spacing:5.950993pt;}
.ws5d{word-spacing:6.057261pt;}
.ws9d{word-spacing:6.073242pt;}
.ws78{word-spacing:6.110395pt;}
.ws40{word-spacing:6.216662pt;}
.ws67{word-spacing:6.641733pt;}
.ws2b{word-spacing:6.907403pt;}
.ws82{word-spacing:7.173072pt;}
.ws45{word-spacing:7.385607pt;}
.ws69{word-spacing:7.491875pt;}
.ws4{word-spacing:13.761632pt;}
.ws5e{word-spacing:21.625484pt;}
.ws1{word-spacing:25.293814pt;}
.ws7a{word-spacing:59.509931pt;}
.ws6b{word-spacing:91.863757pt;}
.ws7b{word-spacing:95.512000pt;}
.ws7c{word-spacing:95.517333pt;}
.ws74{word-spacing:125.927264pt;}
.ws7d{word-spacing:133.912000pt;}
.ws76{word-spacing:139.210731pt;}
.ws73{word-spacing:149.571835pt;}
.ws64{word-spacing:192.397731pt;}
.ws75{word-spacing:232.194997pt;}
.ws7e{word-spacing:268.312000pt;}
.ws65{word-spacing:491.700802pt;}
.ws63{word-spacing:537.608463pt;}
.ws61{word-spacing:643.823062pt;}
.ws6c{word-spacing:1155.498155pt;}
._4{margin-left:-10.711859pt;}
._61{margin-left:-7.566274pt;}
._7{margin-left:-6.248558pt;}
._2{margin-left:-4.797974pt;}
._1{margin-left:-3.421811pt;}
._11{margin-left:-2.486669pt;}
._3{margin-left:-1.338970pt;}
._5{width:2.660249pt;}
._3d{width:9.755443pt;}
._0{width:11.530016pt;}
._10{width:12.975286pt;}
._12{width:14.526819pt;}
._17{width:15.430067pt;}
._b{width:17.066594pt;}
._c{width:18.543719pt;}
._a{width:19.500129pt;}
._9{width:20.509673pt;}
._8{width:22.124934pt;}
._14{width:23.272634pt;}
._16{width:24.473475pt;}
._d{width:25.573316pt;}
._15{width:27.576477pt;}
._18{width:29.170493pt;}
._38{width:30.711375pt;}
._19{width:34.802683pt;}
._13{width:38.128878pt;}
._55{width:39.489086pt;}
._6{width:48.370045pt;}
._66{width:54.993920pt;}
._62{width:95.842873pt;}
._63{width:111.209183pt;}
._43{width:122.708160pt;}
._58{width:126.676442pt;}
._44{width:138.249920pt;}
._45{width:140.354048pt;}
._59{width:152.494197pt;}
._30{width:158.349546pt;}
._57{width:159.932939pt;}
._35{width:160.889348pt;}
._56{width:164.289916pt;}
._41{width:178.206822pt;}
._3a{width:181.527744pt;}
._36{width:185.809132pt;}
._5f{width:190.909983pt;}
._3b{width:192.239603pt;}
._40{width:209.407258pt;}
._2e{width:215.064654pt;}
._3e{width:219.354010pt;}
._2f{width:234.798557pt;}
._2d{width:240.696416pt;}
._64{width:245.584732pt;}
._33{width:249.729173pt;}
._31{width:258.453750pt;}
._5c{width:283.894250pt;}
._4c{width:301.892698pt;}
._5e{width:303.606914pt;}
._5a{width:311.421759pt;}
._1a{width:318.186837pt;}
._53{width:319.299469pt;}
._60{width:325.285532pt;}
._37{width:327.860524pt;}
._4b{width:341.597598pt;}
._5b{width:368.111428pt;}
._48{width:404.898714pt;}
._2c{width:416.569515pt;}
._5d{width:418.269798pt;}
._24{width:467.843696pt;}
._4d{width:485.381120pt;}
._51{width:501.927091pt;}
._32{width:505.037403pt;}
._2b{width:513.591955pt;}
._28{width:516.036113pt;}
._34{width:518.320869pt;}
._2a{width:530.275989pt;}
._26{width:532.082541pt;}
._23{width:537.130258pt;}
._47{width:556.968845pt;}
._52{width:574.279987pt;}
._22{width:577.458863pt;}
._27{width:578.627808pt;}
._29{width:592.867684pt;}
._25{width:594.674236pt;}
._49{width:621.526925pt;}
._1c{width:657.106529pt;}
._3c{width:681.446400pt;}
._4e{width:782.396109pt;}
._1b{width:788.676606pt;}
._1f{width:794.138771pt;}
._20{width:843.925204pt;}
._42{width:854.621398pt;}
._54{width:897.915130pt;}
._39{width:940.252570pt;}
._46{width:950.008013pt;}
._1e{width:971.818421pt;}
._4a{width:984.582451pt;}
._1d{width:989.841425pt;}
._50{width:994.342289pt;}
._3f{width:1035.846349pt;}
._4f{width:1113.579759pt;}
._21{width:1417.999426pt;}
._e{width:1710.130933pt;}
._65{width:2279.512267pt;}
._f{width:2300.765600pt;}
.fs1{font-size:26.566933pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs4{font-size:40.381867pt;}
.fs6{font-size:42.507200pt;}
.fs8{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs9{font-size:55.365867pt;}
.fs7{font-size:63.761067pt;}
.fs3{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:40.818667pt;}
.y19{bottom:89.120000pt;}
.ya3{bottom:89.737333pt;}
.y42{bottom:96.754667pt;}
.y184{bottom:99.050667pt;}
.ydb{bottom:102.502667pt;}
.y12e{bottom:102.630667pt;}
.yaf{bottom:103.473333pt;}
.y18{bottom:105.020000pt;}
.ya2{bottom:108.308000pt;}
.y73{bottom:109.144000pt;}
.y41{bottom:115.324000pt;}
.y183{bottom:117.621333pt;}
.y17{bottom:120.920000pt;}
.yda{bottom:121.073333pt;}
.y12d{bottom:121.201333pt;}
.y1a0{bottom:121.226667pt;}
.yae{bottom:122.042667pt;}
.ya1{bottom:126.878667pt;}
.y72{bottom:127.714667pt;}
.y40{bottom:133.894667pt;}
.y182{bottom:136.190667pt;}
.y16{bottom:136.820000pt;}
.y19f{bottom:138.250667pt;}
.yd9{bottom:139.644000pt;}
.y12c{bottom:139.770667pt;}
.yad{bottom:140.613333pt;}
.y166{bottom:141.397333pt;}
.ya0{bottom:145.448000pt;}
.y71{bottom:146.285333pt;}
.y3f{bottom:152.465333pt;}
.y15{bottom:152.721333pt;}
.y181{bottom:154.761333pt;}
.y19e{bottom:155.273333pt;}
.y165{bottom:156.009333pt;}
.yd8{bottom:158.213333pt;}
.y12b{bottom:158.341333pt;}
.yac{bottom:159.184000pt;}
.y9f{bottom:164.018667pt;}
.y70{bottom:164.856000pt;}
.y14{bottom:168.621333pt;}
.y164{bottom:170.621333pt;}
.y3e{bottom:171.034667pt;}
.y19d{bottom:172.296000pt;}
.y180{bottom:173.332000pt;}
.yd7{bottom:176.784000pt;}
.y12a{bottom:176.912000pt;}
.yab{bottom:177.753333pt;}
.y9e{bottom:182.589333pt;}
.y6f{bottom:183.425333pt;}
.y13{bottom:184.521333pt;}
.y163{bottom:185.233333pt;}
.y19c{bottom:189.318667pt;}
.y3d{bottom:189.605333pt;}
.y102{bottom:190.944000pt;}
.y17f{bottom:191.901333pt;}
.yd6{bottom:195.354667pt;}
.y129{bottom:195.481333pt;}
.yaa{bottom:196.324000pt;}
.y161{bottom:199.845333pt;}
.y12{bottom:200.422667pt;}
.y9d{bottom:201.158667pt;}
.y6e{bottom:201.996000pt;}
.y19b{bottom:206.341333pt;}
.y162{bottom:207.150667pt;}
.y3c{bottom:208.176000pt;}
.y101{bottom:209.514667pt;}
.yd5{bottom:213.924000pt;}
.y160{bottom:214.457333pt;}
.ya9{bottom:214.894667pt;}
.y128{bottom:218.037333pt;}
.y9c{bottom:219.729333pt;}
.y6d{bottom:220.566667pt;}
.y19a{bottom:223.364000pt;}
.y11{bottom:224.293333pt;}
.y100{bottom:228.084000pt;}
.y15e{bottom:229.069333pt;}
.y3b{bottom:230.730667pt;}
.yd4{bottom:232.494667pt;}
.ya8{bottom:233.464000pt;}
.y15f{bottom:236.374667pt;}
.y9b{bottom:238.300000pt;}
.y6c{bottom:239.136000pt;}
.y10{bottom:240.193333pt;}
.y199{bottom:240.386667pt;}
.y15d{bottom:243.681333pt;}
.yff{bottom:246.654667pt;}
.y17e{bottom:248.968000pt;}
.yd3{bottom:251.065333pt;}
.ya7{bottom:252.034667pt;}
.y127{bottom:252.548000pt;}
.yf{bottom:256.093333pt;}
.y9a{bottom:256.869333pt;}
.y198{bottom:257.409333pt;}
.y6b{bottom:257.706667pt;}
.y15c{bottom:258.292000pt;}
.yfe{bottom:265.225333pt;}
.y17d{bottom:267.537333pt;}
.yd2{bottom:269.634667pt;}
.ya6{bottom:270.605333pt;}
.y126{bottom:271.118667pt;}
.ye{bottom:271.994667pt;}
.y15b{bottom:272.904000pt;}
.y197{bottom:274.432000pt;}
.y6a{bottom:276.277333pt;}
.y1c7{bottom:277.233333pt;}
.y99{bottom:279.425333pt;}
.yfd{bottom:283.794667pt;}
.y17c{bottom:286.108000pt;}
.y15a{bottom:287.516000pt;}
.yd{bottom:287.894667pt;}
.yd1{bottom:288.205333pt;}
.ya5{bottom:289.176000pt;}
.y125{bottom:289.688000pt;}
.y196{bottom:291.454667pt;}
.y1c6{bottom:294.256000pt;}
.y69{bottom:294.846667pt;}
.y98{bottom:294.900000pt;}
.y3a{bottom:301.141333pt;}
.y158{bottom:302.128000pt;}
.yc{bottom:303.794667pt;}
.yfc{bottom:306.350667pt;}
.yd0{bottom:306.776000pt;}
.ya4{bottom:307.745333pt;}
.y195{bottom:308.477333pt;}
.y159{bottom:309.434667pt;}
.y1c5{bottom:311.278667pt;}
.y68{bottom:313.417333pt;}
.y157{bottom:316.740000pt;}
.yb{bottom:319.696000pt;}
.y39{bottom:319.712000pt;}
.ycf{bottom:325.345333pt;}
.y194{bottom:325.500000pt;}
.yfb{bottom:325.810667pt;}
.y97{bottom:326.316000pt;}
.y156{bottom:331.352000pt;}
.y17b{bottom:331.406667pt;}
.y67{bottom:331.988000pt;}
.y124{bottom:334.986667pt;}
.ya{bottom:335.596000pt;}
.y193{bottom:342.522667pt;}
.yce{bottom:343.916000pt;}
.y96{bottom:344.886667pt;}
.y155{bottom:345.964000pt;}
.y17a{bottom:347.346667pt;}
.y1c4{bottom:349.529333pt;}
.y66{bottom:350.557333pt;}
.y123{bottom:350.928000pt;}
.y9{bottom:351.496000pt;}
.y38{bottom:354.222667pt;}
.yfa{bottom:357.226667pt;}
.y154{bottom:360.576000pt;}
.ycd{bottom:362.486667pt;}
.y179{bottom:363.288000pt;}
.y95{bottom:363.456000pt;}
.y192{bottom:363.530667pt;}
.y1c3{bottom:366.552000pt;}
.y122{bottom:366.868000pt;}
.y8{bottom:367.397333pt;}
.y65{bottom:369.128000pt;}
.y37{bottom:372.792000pt;}
.y153{bottom:375.188000pt;}
.yf9{bottom:375.796000pt;}
.y178{bottom:379.228000pt;}
.ycc{bottom:381.056000pt;}
.y94{bottom:382.026667pt;}
.y121{bottom:382.808000pt;}
.y1c2{bottom:383.574667pt;}
.y64{bottom:387.698667pt;}
.y7{bottom:388.610667pt;}
.y152{bottom:389.800000pt;}
.y36{bottom:391.362667pt;}
.yf8{bottom:394.366667pt;}
.y11e{bottom:397.609333pt;}
.y191{bottom:398.041333pt;}
.y120{bottom:398.748000pt;}
.ycb{bottom:399.626667pt;}
.y93{bottom:400.597333pt;}
.y177{bottom:401.569333pt;}
.y151{bottom:404.412000pt;}
.y6{bottom:404.510667pt;}
.y63{bottom:406.269333pt;}
.y176{bottom:409.540000pt;}
.y35{bottom:409.933333pt;}
.yf7{bottom:412.937333pt;}
.y11f{bottom:414.688000pt;}
.y1c1{bottom:417.620000pt;}
.yca{bottom:418.197333pt;}
.y150{bottom:419.022667pt;}
.y92{bottom:419.166667pt;}
.y5{bottom:420.412000pt;}
.y190{bottom:423.344000pt;}
.y62{bottom:424.838667pt;}
.y34{bottom:428.502667pt;}
.y11d{bottom:430.628000pt;}
.yf6{bottom:431.508000pt;}
.y14f{bottom:433.634667pt;}
.y1c0{bottom:434.642667pt;}
.y4{bottom:436.312000pt;}
.y91{bottom:437.737333pt;}
.yc9{bottom:440.752000pt;}
.y61{bottom:443.409333pt;}
.y33{bottom:447.073333pt;}
.y14d{bottom:448.246667pt;}
.y18f{bottom:448.645333pt;}
.y175{bottom:449.202667pt;}
.yf5{bottom:450.077333pt;}
.y1bf{bottom:451.665333pt;}
.y11c{bottom:452.970667pt;}
.y14e{bottom:455.553333pt;}
.y3{bottom:456.174667pt;}
.y90{bottom:456.308000pt;}
.y2{bottom:457.525333pt;}
.y60{bottom:461.980000pt;}
.y14c{bottom:462.858667pt;}
.y32{bottom:465.644000pt;}
.yf4{bottom:468.648000pt;}
.y1be{bottom:468.688000pt;}
.yc8{bottom:472.168000pt;}
.y1{bottom:473.426667pt;}
.y18e{bottom:473.948000pt;}
.y8f{bottom:474.877333pt;}
.y14b{bottom:477.470667pt;}
.y174{bottom:482.184000pt;}
.y31{bottom:484.213333pt;}
.y5f{bottom:484.534667pt;}
.y11b{bottom:484.664000pt;}
.y1bd{bottom:485.710667pt;}
.yf3{bottom:487.218667pt;}
.yc7{bottom:490.738667pt;}
.y18d{bottom:491.280000pt;}
.y14a{bottom:492.082667pt;}
.y8e{bottom:493.448000pt;}
.y173{bottom:500.754667pt;}
.y1bc{bottom:502.733333pt;}
.y30{bottom:502.784000pt;}
.y149{bottom:506.694667pt;}
.yc6{bottom:509.308000pt;}
.yf2{bottom:509.773333pt;}
.y8d{bottom:512.018667pt;}
.y5e{bottom:515.950667pt;}
.y18c{bottom:516.582667pt;}
.y11a{bottom:517.645333pt;}
.y172{bottom:519.325333pt;}
.y1bb{bottom:519.756000pt;}
.y148{bottom:521.306667pt;}
.y2f{bottom:521.354667pt;}
.yc5{bottom:527.878667pt;}
.yf1{bottom:528.344000pt;}
.y8c{bottom:530.589333pt;}
.y18b{bottom:533.914667pt;}
.y5d{bottom:534.520000pt;}
.y147{bottom:535.918667pt;}
.y119{bottom:536.214667pt;}
.y1ba{bottom:536.778667pt;}
.y171{bottom:537.894667pt;}
.y2e{bottom:539.924000pt;}
.yc4{bottom:546.449333pt;}
.yf0{bottom:546.913333pt;}
.y8b{bottom:549.158667pt;}
.y146{bottom:550.530667pt;}
.y18a{bottom:551.246667pt;}
.y5c{bottom:553.090667pt;}
.y1b9{bottom:553.801333pt;}
.y118{bottom:554.785333pt;}
.y2d{bottom:558.494667pt;}
.yc3{bottom:565.018667pt;}
.y145{bottom:565.141333pt;}
.yef{bottom:565.484000pt;}
.y8a{bottom:567.729333pt;}
.y1b8{bottom:570.824000pt;}
.y5b{bottom:575.645333pt;}
.y189{bottom:576.549333pt;}
.y2c{bottom:577.065333pt;}
.y144{bottom:579.753333pt;}
.y170{bottom:583.194667pt;}
.yc2{bottom:583.589333pt;}
.yee{bottom:584.054667pt;}
.y89{bottom:586.300000pt;}
.y1b7{bottom:587.846667pt;}
.y188{bottom:593.881333pt;}
.y143{bottom:594.365333pt;}
.y2b{bottom:595.636000pt;}
.y117{bottom:597.428000pt;}
.y16f{bottom:599.134667pt;}
.yc1{bottom:602.160000pt;}
.yed{bottom:602.625333pt;}
.y88{bottom:604.869333pt;}
.y142{bottom:608.977333pt;}
.y5a{bottom:610.156000pt;}
.y187{bottom:611.213333pt;}
.y116{bottom:613.368000pt;}
.y2a{bottom:614.205333pt;}
.y16e{bottom:615.074667pt;}
.yc0{bottom:620.729333pt;}
.yec{bottom:621.194667pt;}
.y1b6{bottom:621.892000pt;}
.y87{bottom:623.440000pt;}
.y186{bottom:628.546667pt;}
.y59{bottom:628.726667pt;}
.y115{bottom:629.308000pt;}
.y141{bottom:629.992000pt;}
.y29{bottom:632.776000pt;}
.y16d{bottom:637.417333pt;}
.y1b5{bottom:638.914667pt;}
.yeb{bottom:639.765333pt;}
.y86{bottom:642.010667pt;}
.ybf{bottom:643.285333pt;}
.y114{bottom:645.248000pt;}
.y16c{bottom:645.386667pt;}
.y185{bottom:645.878667pt;}
.y58{bottom:647.297333pt;}
.y28{bottom:651.346667pt;}
.y1b4{bottom:655.937333pt;}
.yea{bottom:658.336000pt;}
.y85{bottom:660.580000pt;}
.y140{bottom:660.754667pt;}
.y113{bottom:661.188000pt;}
.y57{bottom:665.866667pt;}
.y27{bottom:669.916000pt;}
.y1b3{bottom:672.961333pt;}
.ye9{bottom:676.905333pt;}
.ybe{bottom:677.796000pt;}
.y84{bottom:679.150667pt;}
.y112{bottom:683.530667pt;}
.y56{bottom:684.437333pt;}
.y16b{bottom:685.049333pt;}
.y26{bottom:688.486667pt;}
.y1b2{bottom:689.984000pt;}
.y13f{bottom:693.736000pt;}
.ye8{bottom:695.476000pt;}
.ybd{bottom:696.365333pt;}
.y83{bottom:697.721333pt;}
.y55{bottom:703.008000pt;}
.y1b1{bottom:707.006667pt;}
.y25{bottom:707.057333pt;}
.y13e{bottom:712.306667pt;}
.y111{bottom:712.566667pt;}
.ye7{bottom:714.046667pt;}
.ybc{bottom:714.936000pt;}
.y82{bottom:716.290667pt;}
.y16a{bottom:718.030667pt;}
.y54{bottom:721.577333pt;}
.y1b0{bottom:724.029333pt;}
.y13d{bottom:730.876000pt;}
.ye6{bottom:732.616000pt;}
.ybb{bottom:733.506667pt;}
.y81{bottom:734.861333pt;}
.y169{bottom:736.601333pt;}
.y53{bottom:740.148000pt;}
.y1af{bottom:741.052000pt;}
.y24{bottom:742.630667pt;}
.y110{bottom:744.585333pt;}
.y13c{bottom:749.446667pt;}
.ye5{bottom:751.186667pt;}
.yba{bottom:752.077333pt;}
.y80{bottom:753.432000pt;}
.y168{bottom:755.172000pt;}
.y23{bottom:756.976000pt;}
.y1ae{bottom:758.074667pt;}
.y52{bottom:758.718667pt;}
.y10f{bottom:763.156000pt;}
.y13b{bottom:768.017333pt;}
.yb9{bottom:770.646667pt;}
.y7f{bottom:772.002667pt;}
.ye4{bottom:773.742667pt;}
.y1ad{bottom:775.097333pt;}
.y22{bottom:775.180000pt;}
.y51{bottom:777.289333pt;}
.y10e{bottom:781.725333pt;}
.y21{bottom:785.669333pt;}
.y13a{bottom:786.586667pt;}
.yb8{bottom:789.217333pt;}
.y7e{bottom:790.572000pt;}
.y1ac{bottom:792.120000pt;}
.ye3{bottom:792.312000pt;}
.y50{bottom:795.858667pt;}
.y10d{bottom:800.296000pt;}
.y20{bottom:803.873333pt;}
.y139{bottom:805.157333pt;}
.yb7{bottom:807.788000pt;}
.y7d{bottom:809.142667pt;}
.ye2{bottom:810.882667pt;}
.y4f{bottom:814.429333pt;}
.y10c{bottom:822.852000pt;}
.y138{bottom:823.728000pt;}
.y1ab{bottom:826.165333pt;}
.yb6{bottom:826.357333pt;}
.y7c{bottom:827.713333pt;}
.ye1{bottom:829.453333pt;}
.y4e{bottom:833.000000pt;}
.y137{bottom:842.297333pt;}
.y1aa{bottom:843.188000pt;}
.y1f{bottom:843.585333pt;}
.yb5{bottom:844.928000pt;}
.y7b{bottom:846.282667pt;}
.ye0{bottom:848.022667pt;}
.y4d{bottom:851.569333pt;}
.y167{bottom:852.008000pt;}
.y1a9{bottom:860.210667pt;}
.y136{bottom:860.868000pt;}
.y1e{bottom:862.156000pt;}
.yb4{bottom:863.498667pt;}
.y7a{bottom:864.853333pt;}
.y10b{bottom:865.056000pt;}
.ydf{bottom:866.593333pt;}
.y4c{bottom:870.140000pt;}
.y1a8{bottom:877.233333pt;}
.y135{bottom:879.438667pt;}
.y10a{bottom:880.996000pt;}
.yb3{bottom:882.068000pt;}
.y79{bottom:883.424000pt;}
.yde{bottom:885.164000pt;}
.y1a7{bottom:894.256000pt;}
.y4b{bottom:895.352000pt;}
.y1d{bottom:896.665333pt;}
.y109{bottom:896.936000pt;}
.y134{bottom:898.009333pt;}
.yb2{bottom:900.638667pt;}
.y78{bottom:901.993333pt;}
.ydd{bottom:903.733333pt;}
.y1a6{bottom:911.278667pt;}
.y108{bottom:912.876000pt;}
.y4a{bottom:913.922667pt;}
.y133{bottom:916.578667pt;}
.yb1{bottom:919.209333pt;}
.y77{bottom:920.564000pt;}
.y1c{bottom:924.521333pt;}
.ydc{bottom:926.289333pt;}
.y1a5{bottom:928.301333pt;}
.y107{bottom:928.816000pt;}
.y49{bottom:932.492000pt;}
.y132{bottom:935.149333pt;}
.y76{bottom:939.134667pt;}
.yb0{bottom:941.764000pt;}
.y106{bottom:944.756000pt;}
.y1a4{bottom:945.324000pt;}
.y48{bottom:951.062667pt;}
.y1b{bottom:952.377333pt;}
.y131{bottom:953.720000pt;}
.y75{bottom:957.704000pt;}
.y105{bottom:960.697333pt;}
.y1a3{bottom:962.346667pt;}
.y47{bottom:969.633333pt;}
.y130{bottom:972.289333pt;}
.y74{bottom:976.274667pt;}
.y1a2{bottom:979.369333pt;}
.y1a{bottom:980.232000pt;}
.y104{bottom:983.038667pt;}
.y12f{bottom:990.860000pt;}
.y46{bottom:994.845333pt;}
.y1a1{bottom:996.392000pt;}
.y45{bottom:1013.414667pt;}
.y103{bottom:1014.732000pt;}
.y44{bottom:1066.841333pt;}
.h7{height:28.947524pt;}
.h2{height:33.771789pt;}
.he{height:34.574438pt;}
.h12{height:35.052646pt;}
.hc{height:38.415786pt;}
.h8{height:38.596538pt;}
.h4{height:38.947124pt;}
.h3{height:39.174455pt;}
.hb{height:43.421286pt;}
.h13{height:43.660390pt;}
.ha{height:46.099251pt;}
.h9{height:48.245551pt;}
.h6{height:48.481423pt;}
.h5{height:69.148877pt;}
.h11{height:70.298452pt;}
.h10{height:72.642620pt;}
.hf{height:72.647953pt;}
.hd{height:80.128218pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:46.689333pt;}
.x1{left:47.621333pt;}
.x32{left:55.592000pt;}
.x42{left:57.412000pt;}
.x3b{left:61.828000pt;}
.x65{left:63.596000pt;}
.x50{left:65.685333pt;}
.x58{left:67.280000pt;}
.x41{left:68.781333pt;}
.x52{left:72.182667pt;}
.x73{left:76.309333pt;}
.x49{left:83.217333pt;}
.x40{left:84.768000pt;}
.x4a{left:85.745333pt;}
.x2{left:86.997333pt;}
.x4e{left:90.282667pt;}
.x4c{left:92.636000pt;}
.x43{left:104.294667pt;}
.x66{left:108.958667pt;}
.x67{left:110.798667pt;}
.x5a{left:113.158667pt;}
.x61{left:117.653333pt;}
.x3a{left:121.118667pt;}
.x59{left:123.016000pt;}
.x55{left:139.029333pt;}
.x5b{left:159.149333pt;}
.x5f{left:163.184000pt;}
.x54{left:176.854667pt;}
.x60{left:181.589333pt;}
.x56{left:192.994667pt;}
.x63{left:202.820000pt;}
.x4b{left:208.158667pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x2e{left:222.748000pt;}
.x5c{left:233.396000pt;}
.x5{left:239.924000pt;}
.xa{left:248.212000pt;}
.x7{left:250.204000pt;}
.x4f{left:251.388000pt;}
.x62{left:262.082667pt;}
.x47{left:273.074667pt;}
.x53{left:275.304000pt;}
.x57{left:283.941333pt;}
.x5e{left:285.884000pt;}
.x37{left:290.416000pt;}
.x36{left:291.824000pt;}
.x39{left:294.154667pt;}
.x4d{left:296.978667pt;}
.x38{left:298.166667pt;}
.x34{left:309.829333pt;}
.x5d{left:316.197333pt;}
.x35{left:323.113333pt;}
.x1d{left:326.226667pt;}
.x51{left:329.664000pt;}
.x44{left:335.156000pt;}
.x1e{left:339.510667pt;}
.x45{left:350.377333pt;}
.x12{left:353.653333pt;}
.x3c{left:358.573333pt;}
.x13{left:360.294667pt;}
.x18{left:370.674667pt;}
.x1a{left:373.161333pt;}
.x23{left:380.241333pt;}
.x25{left:381.310667pt;}
.x19{left:383.957333pt;}
.x24{left:393.524000pt;}
.x26{left:394.594667pt;}
.x31{left:399.650667pt;}
.x16{left:417.817333pt;}
.x21{left:422.153333pt;}
.x17{left:424.458667pt;}
.x6e{left:430.722667pt;}
.x29{left:431.993333pt;}
.x22{left:435.437333pt;}
.x33{left:439.129333pt;}
.x3d{left:443.928000pt;}
.x2a{left:445.277333pt;}
.x6f{left:447.261333pt;}
.x8{left:449.089333pt;}
.x9{left:455.730667pt;}
.x70{left:460.544000pt;}
.x2f{left:473.556000pt;}
.x30{left:486.840000pt;}
.x1b{left:495.837333pt;}
.x1c{left:509.120000pt;}
.xb{left:541.697333pt;}
.xc{left:548.340000pt;}
.xd{left:555.640000pt;}
.x68{left:557.340000pt;}
.x2d{left:569.092000pt;}
.x69{left:570.622667pt;}
.x71{left:573.606667pt;}
.x72{left:586.889333pt;}
.x14{left:588.062667pt;}
.x15{left:594.705333pt;}
.x3e{left:600.072000pt;}
.x1f{left:620.173333pt;}
.x64{left:621.634667pt;}
.x2b{left:627.413333pt;}
.x10{left:632.870667pt;}
.xe{left:637.101333pt;}
.x11{left:639.512000pt;}
.x2c{left:640.697333pt;}
.xf{left:643.742667pt;}
.x6a{left:647.414667pt;}
.x20{left:650.128000pt;}
.x6b{left:660.697333pt;}
.x6c{left:664.085333pt;}
.x3f{left:665.092000pt;}
.x6d{left:677.368000pt;}
.x46{left:678.494667pt;}
.x27{left:689.901333pt;}
.x28{left:703.185333pt;}
.x48{left:712.725333pt;}
}




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