
    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_5b2c6dd1683cbc59e9fcc320.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691000;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_ee13a7bd313df3fbf8493236.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_984bf9d7fbfaa24abb7bf9b8.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e170b79f71698152b0f79018.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739000;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_a60dc740a0a6b7bd2c778602.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;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_41d14c2811bbb7ec535172aa.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000488;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_1b87b3c556998dc56da6684c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000488;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_ca84a5be4c9f298f32105ba6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.206055;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_8f6f53f926d03d3cceeb278f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_cae49e9b81827ca4990a0593.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.880371;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_44d9664a9eac7cfe6eac9387.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_48b02b67b3da5cb1b5535284.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m22{transform:matrix(0.000000,-0.250288,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250288,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250288,0.250000,0.000000,0,0);}
.m26{transform:matrix(0.244330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244330,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m30{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);}
.m2a{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);}
.m2e{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);}
.m1{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);}
.m20{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);}
.md{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);}
.m13{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.mc{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);}
.m2f{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);}
.m19{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);}
.m14{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2b{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);}
.m2d{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);}
.m10{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);}
.m1a{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);}
.mf{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);}
.m1b{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);}
.mb{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);}
.m16{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);}
.m29{transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250285,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250288,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250290,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250291,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m15{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);}
.m4{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);}
.m7{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);}
.m21{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);}
.m12{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);}
.m6{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);}
.m9{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);}
.m11{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);}
.m2c{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);}
.m18{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);}
.m1e{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);}
.m2{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);}
.m1d{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);}
.m5{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);}
.m1f{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);}
.ma{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);}
.me{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:-19.524000px;}
.v6{vertical-align:-16.448400px;}
.v5{vertical-align:-9.585000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.800694px;}
.v7{vertical-align:17.577000px;}
.v2{vertical-align:19.920000px;}
.v1{vertical-align:21.702000px;}
.v9{vertical-align:29.586600px;}
.v8{vertical-align:32.874000px;}
.ls34{letter-spacing:-2.203916px;}
.ls33{letter-spacing:-1.833835px;}
.ls38{letter-spacing:-0.477567px;}
.ls39{letter-spacing:-0.428164px;}
.ls2a{letter-spacing:-0.330660px;}
.ls2c{letter-spacing:-0.293475px;}
.ls2e{letter-spacing:-0.247018px;}
.ls3a{letter-spacing:-0.208593px;}
.ls25{letter-spacing:-0.180360px;}
.ls30{letter-spacing:-0.175657px;}
.ls26{letter-spacing:-0.174348px;}
.ls2f{letter-spacing:-0.142721px;}
.ls3b{letter-spacing:-0.119943px;}
.ls37{letter-spacing:-0.115275px;}
.ls24{letter-spacing:-0.114228px;}
.ls2d{letter-spacing:-0.100043px;}
.ls21{letter-spacing:-0.090972px;}
.ls28{letter-spacing:-0.090180px;}
.ls3c{letter-spacing:-0.081792px;}
.ls2b{letter-spacing:-0.060120px;}
.ls20{letter-spacing:-0.052668px;}
.ls29{letter-spacing:-0.018036px;}
.ls22{letter-spacing:-0.014364px;}
.ls27{letter-spacing:-0.010800px;}
.ls23{letter-spacing:-0.006012px;}
.ls9{letter-spacing:0.000000px;}
.ls5a{letter-spacing:0.000556px;}
.ls56{letter-spacing:0.000800px;}
.ls40{letter-spacing:0.001020px;}
.ls4b{letter-spacing:0.001133px;}
.ls1f{letter-spacing:0.002467px;}
.ls47{letter-spacing:0.003681px;}
.ls5b{letter-spacing:0.004113px;}
.ls5c{letter-spacing:0.004608px;}
.ls15{letter-spacing:0.005400px;}
.ls16{letter-spacing:0.010800px;}
.ls31{letter-spacing:0.011047px;}
.ls19{letter-spacing:0.012024px;}
.ls1a{letter-spacing:0.042084px;}
.ls18{letter-spacing:0.043200px;}
.ls1b{letter-spacing:0.043709px;}
.ls35{letter-spacing:0.093662px;}
.ls17{letter-spacing:0.108000px;}
.ls13{letter-spacing:0.172368px;}
.ls14{letter-spacing:0.180360px;}
.ls12{letter-spacing:0.181944px;}
.ls1d{letter-spacing:0.255664px;}
.ls1e{letter-spacing:0.332280px;}
.ls32{letter-spacing:0.375605px;}
.ls49{letter-spacing:2.689740px;}
.ls0{letter-spacing:2.982000px;}
.ls1{letter-spacing:2.988000px;}
.ls5f{letter-spacing:11.927951px;}
.lsa{letter-spacing:11.954850px;}
.ls8{letter-spacing:11.955000px;}
.ls51{letter-spacing:11.955787px;}
.ls52{letter-spacing:11.957700px;}
.ls4a{letter-spacing:12.047190px;}
.ls50{letter-spacing:12.099681px;}
.ls41{letter-spacing:12.105081px;}
.ls5e{letter-spacing:12.185094px;}
.ls59{letter-spacing:12.625910px;}
.ls53{letter-spacing:13.448400px;}
.ls4c{letter-spacing:13.450090px;}
.ls5d{letter-spacing:13.454400px;}
.ls58{letter-spacing:13.520340px;}
.ls7{letter-spacing:14.787101px;}
.lsc{letter-spacing:14.937851px;}
.ls4f{letter-spacing:14.941200px;}
.ls11{letter-spacing:14.944200px;}
.ls46{letter-spacing:14.947200px;}
.lsb{letter-spacing:14.954562px;}
.ls10{letter-spacing:15.035729px;}
.lse{letter-spacing:15.069343px;}
.ls54{letter-spacing:15.338635px;}
.ls57{letter-spacing:15.503341px;}
.ls3d{letter-spacing:15.776906px;}
.ls55{letter-spacing:15.862165px;}
.ls3e{letter-spacing:16.723965px;}
.ls3f{letter-spacing:16.794553px;}
.lsf{letter-spacing:17.353376px;}
.ls3{letter-spacing:17.934000px;}
.lsd{letter-spacing:18.335760px;}
.ls4{letter-spacing:19.922568px;}
.ls2{letter-spacing:22.914000px;}
.ls5{letter-spacing:70.236000px;}
.ls6{letter-spacing:72.354576px;}
.ls45{letter-spacing:131.647140px;}
.ls42{letter-spacing:168.602481px;}
.ls43{letter-spacing:188.043500px;}
.ls44{letter-spacing:207.487881px;}
.ls36{letter-spacing:220.682772px;}
.ls1c{letter-spacing:268.508673px;}
.ls4e{letter-spacing:1032.756600px;}
.ls4d{letter-spacing:1168.812600px;}
.ls48{letter-spacing:1268.800740px;}
.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;}
}
.ws5a{word-spacing:-234.577572px;}
.ws52{word-spacing:-14.150464px;}
.ws5b{word-spacing:-13.607925px;}
.ws4e{word-spacing:-13.500000px;}
.ws98{word-spacing:-13.449600px;}
.ws5c{word-spacing:-13.245633px;}
.ws60{word-spacing:-12.698208px;}
.ws4d{word-spacing:-12.151944px;}
.ws89{word-spacing:-12.104640px;}
.ws25{word-spacing:-11.955150px;}
.ws3{word-spacing:-11.358000px;}
.wsb4{word-spacing:-3.174106px;}
.ws3b{word-spacing:-3.048556px;}
.wsb5{word-spacing:-3.012710px;}
.ws45{word-spacing:-2.929004px;}
.ws29{word-spacing:-2.331248px;}
.wsae{word-spacing:-2.032370px;}
.wse9{word-spacing:-1.990541px;}
.ws32{word-spacing:-1.912819px;}
.ws39{word-spacing:-1.673717px;}
.wse0{word-spacing:-1.667750px;}
.wse3{word-spacing:-1.613952px;}
.wsea{word-spacing:-1.506355px;}
.ws35{word-spacing:-1.434614px;}
.ws78{word-spacing:-1.394784px;}
.ws4c{word-spacing:-1.374839px;}
.wse2{word-spacing:-1.291162px;}
.ws1b{word-spacing:-1.195560px;}
.wsd7{word-spacing:-1.183565px;}
.wsce{word-spacing:-1.075968px;}
.ws33{word-spacing:-1.075961px;}
.ws21{word-spacing:-0.956747px;}
.wsd0{word-spacing:-0.806976px;}
.ws27{word-spacing:-0.717307px;}
.wsad{word-spacing:-0.657532px;}
.ws69{word-spacing:-0.625248px;}
.wsa6{word-spacing:-0.597756px;}
.wsd4{word-spacing:-0.591782px;}
.wsac{word-spacing:-0.537980px;}
.ws11{word-spacing:-0.478523px;}
.ws2f{word-spacing:-0.358654px;}
.wsc5{word-spacing:-0.322790px;}
.wsd{word-spacing:-0.299129px;}
.ws2c{word-spacing:-0.298878px;}
.ws7c{word-spacing:-0.274464px;}
.wse7{word-spacing:-0.268992px;}
.ws68{word-spacing:-0.263340px;}
.ws7e{word-spacing:-0.243521px;}
.ws10{word-spacing:-0.239112px;}
.ws3f{word-spacing:-0.239102px;}
.wsdf{word-spacing:-0.215194px;}
.ws81{word-spacing:-0.208593px;}
.ws2d{word-spacing:-0.179327px;}
.ws15{word-spacing:-0.179095px;}
.ws7b{word-spacing:-0.170168px;}
.wsc1{word-spacing:-0.161395px;}
.ws6b{word-spacing:-0.156312px;}
.ws13{word-spacing:-0.119735px;}
.ws34{word-spacing:-0.119551px;}
.wsb6{word-spacing:-0.107597px;}
.ws82{word-spacing:-0.093868px;}
.ws67{word-spacing:-0.076608px;}
.ws30{word-spacing:-0.059776px;}
.ws12{word-spacing:-0.059718px;}
.ws97{word-spacing:-0.053798px;}
.ws61{word-spacing:-0.051120px;}
.ws88{word-spacing:-0.048419px;}
.ws26{word-spacing:-0.047821px;}
.ws4{word-spacing:-0.024864px;}
.ws8{word-spacing:-0.022518px;}
.ws6{word-spacing:-0.019866px;}
.ws1{word-spacing:-0.018533px;}
.ws5{word-spacing:-0.017358px;}
.ws2{word-spacing:-0.016086px;}
.wsa{word-spacing:-0.015251px;}
.ws7{word-spacing:-0.013938px;}
.ws9d{word-spacing:-0.003965px;}
.ws9b{word-spacing:-0.003811px;}
.ws8e{word-spacing:-0.000458px;}
.ws14{word-spacing:-0.000299px;}
.ws23{word-spacing:-0.000143px;}
.ws0{word-spacing:0.000000px;}
.wsb{word-spacing:0.000299px;}
.ws80{word-spacing:0.010979px;}
.ws83{word-spacing:0.026075px;}
.ws8b{word-spacing:0.053798px;}
.ws16{word-spacing:0.059718px;}
.ws2a{word-spacing:0.059776px;}
.ws93{word-spacing:0.095641px;}
.ws6a{word-spacing:0.096192px;}
.ws8c{word-spacing:0.107597px;}
.ws7d{word-spacing:0.115275px;}
.ws41{word-spacing:0.119551px;}
.ws1c{word-spacing:0.119676px;}
.ws72{word-spacing:0.135000px;}
.ws7a{word-spacing:0.143615px;}
.ws96{word-spacing:0.161395px;}
.ws7f{word-spacing:0.168592px;}
.ws79{word-spacing:0.174836px;}
.wse{word-spacing:0.179095px;}
.ws2e{word-spacing:0.179327px;}
.ws71{word-spacing:0.189000px;}
.wsc3{word-spacing:0.215194px;}
.wsc{word-spacing:0.215399px;}
.ws2b{word-spacing:0.239102px;}
.ws20{word-spacing:0.239112px;}
.ws6c{word-spacing:0.264528px;}
.wsb3{word-spacing:0.268992px;}
.ws40{word-spacing:0.298878px;}
.wse8{word-spacing:0.322790px;}
.ws65{word-spacing:0.358654px;}
.wsab{word-spacing:0.418429px;}
.wsf{word-spacing:0.418506px;}
.wsa1{word-spacing:0.478205px;}
.ws1f{word-spacing:0.537942px;}
.ws66{word-spacing:0.537980px;}
.ws76{word-spacing:0.799596px;}
.ws86{word-spacing:0.836858px;}
.ws3d{word-spacing:0.896634px;}
.ws36{word-spacing:0.956410px;}
.wsa0{word-spacing:1.075961px;}
.wsa4{word-spacing:1.315063px;}
.wsba{word-spacing:1.452557px;}
.wsb8{word-spacing:1.560154px;}
.ws49{word-spacing:1.613941px;}
.wsbe{word-spacing:1.613952px;}
.wsa3{word-spacing:1.673717px;}
.ws9e{word-spacing:1.733492px;}
.ws44{word-spacing:1.793268px;}
.ws87{word-spacing:1.853044px;}
.wsbc{word-spacing:1.882944px;}
.ws37{word-spacing:2.032370px;}
.wsc0{word-spacing:2.044339px;}
.wsa9{word-spacing:2.092146px;}
.ws48{word-spacing:2.151922px;}
.ws95{word-spacing:2.205734px;}
.ws42{word-spacing:2.211697px;}
.ws77{word-spacing:2.308608px;}
.ws4b{word-spacing:2.391024px;}
.wsbd{word-spacing:2.420928px;}
.wsaf{word-spacing:2.450800px;}
.ws94{word-spacing:2.528525px;}
.ws85{word-spacing:2.630126px;}
.wsaa{word-spacing:2.689902px;}
.wsd8{word-spacing:2.689920px;}
.ws28{word-spacing:2.929004px;}
.wsb0{word-spacing:3.108331px;}
.ws17{word-spacing:3.108396px;}
.wsd9{word-spacing:3.223440px;}
.wsc7{word-spacing:3.224342px;}
.wse5{word-spacing:3.225533px;}
.wsd2{word-spacing:3.226454px;}
.wsb1{word-spacing:3.227882px;}
.wse6{word-spacing:3.227904px;}
.wsa2{word-spacing:3.287658px;}
.wse4{word-spacing:3.550694px;}
.ws18{word-spacing:3.571074px;}
.ws19{word-spacing:3.582000px;}
.ws46{word-spacing:3.586536px;}
.ws1d{word-spacing:3.586620px;}
.ws3c{word-spacing:3.646312px;}
.ws1a{word-spacing:3.766074px;}
.ws1e{word-spacing:4.662505px;}
.ws47{word-spacing:4.841824px;}
.ws84{word-spacing:5.021150px;}
.wsc9{word-spacing:5.110848px;}
.ws3e{word-spacing:5.260253px;}
.ws4a{word-spacing:5.379804px;}
.wsa8{word-spacing:5.439580px;}
.wsde{word-spacing:5.487437px;}
.ws64{word-spacing:5.798233px;}
.wseb{word-spacing:5.917824px;}
.ws43{word-spacing:6.216662px;}
.wscb{word-spacing:6.294413px;}
.wsb2{word-spacing:6.455808px;}
.ws63{word-spacing:6.509606px;}
.ws62{word-spacing:6.939994px;}
.ws9f{word-spacing:7.531726px;}
.wsd1{word-spacing:7.585574px;}
.wsdb{word-spacing:8.177357px;}
.wsdc{word-spacing:8.607744px;}
.ws74{word-spacing:8.747460px;}
.ws73{word-spacing:8.819604px;}
.ws75{word-spacing:9.060084px;}
.wsd3{word-spacing:9.091930px;}
.wsa5{word-spacing:9.384769px;}
.ws6e{word-spacing:9.531000px;}
.ws6f{word-spacing:9.892800px;}
.ws70{word-spacing:9.909000px;}
.wsa7{word-spacing:9.982525px;}
.ws6d{word-spacing:10.616400px;}
.ws24{word-spacing:11.907959px;}
.ws22{word-spacing:11.910360px;}
.ws3a{word-spacing:12.074671px;}
.wsd5{word-spacing:12.804019px;}
.wsc4{word-spacing:13.386653px;}
.wsb9{word-spacing:13.392979px;}
.wsc2{word-spacing:13.393498px;}
.wscc{word-spacing:13.395802px;}
.ws31{word-spacing:14.884124px;}
.wsbb{word-spacing:14.902157px;}
.wsbf{word-spacing:15.009754px;}
.ws9{word-spacing:15.765834px;}
.wse1{word-spacing:16.300915px;}
.wscf{word-spacing:16.516109px;}
.wsc6{word-spacing:16.618186px;}
.wsec{word-spacing:16.619222px;}
.wsda{word-spacing:16.621430px;}
.wsca{word-spacing:16.622765px;}
.wsc8{word-spacing:16.623706px;}
.wsd6{word-spacing:16.626787px;}
.wscd{word-spacing:16.731302px;}
.ws38{word-spacing:18.470660px;}
.wsdd{word-spacing:42.931123px;}
.wsb7{word-spacing:74.467719px;}
.ws8a{word-spacing:130.972205px;}
.ws5d{word-spacing:159.710602px;}
.ws5f{word-spacing:172.292031px;}
.ws5e{word-spacing:173.378909px;}
.ws57{word-spacing:216.039043px;}
.ws53{word-spacing:218.242960px;}
.ws55{word-spacing:218.248483px;}
.ws54{word-spacing:221.551596px;}
.ws51{word-spacing:221.727660px;}
.ws59{word-spacing:227.826406px;}
.ws56{word-spacing:228.190963px;}
.ws58{word-spacing:230.035846px;}
.ws4f{word-spacing:236.467264px;}
.ws50{word-spacing:237.562175px;}
.ws9a{word-spacing:303.207782px;}
.ws90{word-spacing:304.504324px;}
.ws91{word-spacing:316.608964px;}
.ws8d{word-spacing:373.646028px;}
.ws92{word-spacing:385.750668px;}
.ws8f{word-spacing:397.855308px;}
.ws99{word-spacing:423.232013px;}
.ws9c{word-spacing:423.285811px;}
._1d{margin-left:-221.494228px;}
._1a{margin-left:-220.427107px;}
._1e{margin-left:-25.533084px;}
._1c{margin-left:-21.931552px;}
._1b{margin-left:-18.341136px;}
._2{margin-left:-6.684563px;}
._3{margin-left:-4.941138px;}
._1{margin-left:-3.287551px;}
._f{margin-left:-2.140565px;}
._4{margin-left:-1.030433px;}
._15{width:1.158696px;}
._0{width:3.049379px;}
._16{width:9.724428px;}
._18{width:12.039634px;}
._d{width:13.629436px;}
._64{width:14.648720px;}
._5{width:15.708378px;}
._6{width:17.214774px;}
._7{width:18.663987px;}
._77{width:19.916425px;}
._a{width:20.922778px;}
._e{width:21.937645px;}
._79{width:23.187110px;}
._21{width:24.268894px;}
._10{width:25.583957px;}
._14{width:26.626155px;}
._8{width:28.482981px;}
._9{width:29.828983px;}
._12{width:33.534112px;}
._13{width:36.093106px;}
._11{width:38.319051px;}
._91{width:43.928011px;}
._78{width:49.104263px;}
._7b{width:79.667271px;}
._8f{width:88.767360px;}
._66{width:91.511078px;}
._22{width:104.195471px;}
._86{width:136.895409px;}
._7d{width:141.430614px;}
._67{width:144.125914px;}
._7e{width:149.322839px;}
._81{width:153.244742px;}
._2e{width:155.181485px;}
._8d{width:159.614473px;}
._82{width:161.427479px;}
._24{width:162.492687px;}
._33{width:167.286125px;}
._26{width:168.545007px;}
._2f{width:174.597327px;}
._8a{width:179.778113px;}
._25{width:181.956948px;}
._31{width:183.215831px;}
._89{width:185.392221px;}
._38{width:186.701967px;}
._80{width:192.802706px;}
._30{width:194.061588px;}
._35{width:195.320471px;}
._2a{width:198.324867px;}
._8e{width:199.866904px;}
._1f{width:200.929147px;}
._88{width:205.052602px;}
._39{width:206.166228px;}
._74{width:207.930816px;}
._8c{width:212.993245px;}
._20{width:214.746581px;}
._34{width:218.752609px;}
._45{width:220.352867px;}
._2c{width:221.757005px;}
._76{width:224.823514px;}
._8b{width:227.857743px;}
._41{width:229.116626px;}
._2b{width:232.215414px;}
._29{width:233.861645px;}
._7f{width:235.507876px;}
._6a{width:238.219315px;}
._75{width:239.456678px;}
._43{width:246.305215px;}
._46{width:253.374324px;}
._28{width:256.424694px;}
._42{width:265.478964px;}
._19{width:271.336711px;}
._69{width:279.859277px;}
._44{width:296.614544px;}
._87{width:298.887771px;}
._61{width:301.938140px;}
._84{width:312.396549px;}
._3e{width:316.657382px;}
._60{width:321.402401px;}
._5d{width:328.713604px;}
._65{width:332.896185px;}
._3d{width:336.024806px;}
._85{width:340.239666px;}
._7c{width:346.291986px;}
._5a{width:348.177865px;}
._83{width:355.827997px;}
._3c{width:370.305147px;}
._59{width:382.409787px;}
._3f{width:385.750668px;}
._4e{width:397.855308px;}
._55{width:409.959948px;}
._70{width:436.735411px;}
._27{width:444.046614px;}
._7a{width:473.534113px;}
._68{width:499.171594px;}
._40{width:526.842351px;}
._5f{width:541.653520px;}
._73{width:562.569869px;}
._54{width:585.767739px;}
._53{width:606.829812px;}
._37{width:665.706781px;}
._5e{width:747.969915px;}
._5c{width:750.003494px;}
._58{width:757.605208px;}
._4a{width:761.623949px;}
._4d{width:773.728589px;}
._56{width:785.833229px;}
._32{width:857.008512px;}
._2d{width:860.107300px;}
._36{width:882.767186px;}
._6f{width:884.152877px;}
._b{width:906.349307px;}
._5b{width:921.179691px;}
._51{width:958.832744px;}
._62{width:1059.494930px;}
._4c{width:1071.454314px;}
._6d{width:1080.056678px;}
._23{width:1093.291085px;}
._48{width:1115.805715px;}
._72{width:1125.032141px;}
._49{width:1141.515971px;}
._52{width:1151.977181px;}
._6e{width:1153.222502px;}
._57{width:1162.013609px;}
._4b{width:1181.800212px;}
._6c{width:1195.346650px;}
._50{width:1212.400742px;}
._63{width:1216.467901px;}
._3b{width:1225.134824px;}
._6b{width:1245.648154px;}
._71{width:1322.203277px;}
._47{width:1520.538903px;}
._4f{width:1536.807896px;}
._17{width:1618.947288px;}
._90{width:2025.345000px;}
._c{width:2049.255000px;}
._3a{width:3528.945000px;}
.fc5{color:transparent;}
.fc4{color:rgb(8,117,183);}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(41,66,37);}
.fs4{font-size:29.886000px;}
.fs19{font-size:35.865600px;}
.fs18{font-size:37.658520px;}
.fs1a{font-size:41.842800px;}
.fs5{font-size:41.844000px;}
.fsa{font-size:45.429600px;}
.fs3{font-size:45.432000px;}
.fs7{font-size:47.820000px;}
.fs8{font-size:47.820600px;}
.fsb{font-size:47.880000px;}
.fs17{font-size:48.418560px;}
.fs15{font-size:51.120000px;}
.fs14{font-size:52.149000px;}
.fs6{font-size:53.796000px;}
.fs16{font-size:53.798400px;}
.fsc{font-size:54.000000px;}
.fs11{font-size:54.892800px;}
.fs12{font-size:55.236000px;}
.fs10{font-size:55.579200px;}
.fs9{font-size:59.775600px;}
.fs1{font-size:59.778000px;}
.fsd{font-size:60.120000px;}
.fsf{font-size:62.441400px;}
.fse{font-size:72.000000px;}
.fs2{font-size:107.598000px;}
.fs13{font-size:116.992800px;}
.fs0{font-size:151.185600px;}
.y88{bottom:-158.789550px;}
.y91{bottom:-136.739127px;}
.y90{bottom:-116.579388px;}
.y8f{bottom:-96.329469px;}
.y8e{bottom:-76.079550px;}
.y8d{bottom:-38.190000px;}
.y8c{bottom:-18.659550px;}
.y0{bottom:0.000000px;}
.yb0{bottom:6.300450px;}
.y8b{bottom:12.210450px;}
.y2{bottom:14.814299px;}
.ya4{bottom:17.611510px;}
.yae{bottom:17.970149px;}
.yb7{bottom:18.690450px;}
.yad{bottom:38.490450px;}
.yb8{bottom:38.849831px;}
.ya5{bottom:39.032053px;}
.ya3{bottom:39.301027px;}
.ya2{bottom:54.510450px;}
.y2e{bottom:63.780000px;}
.ya0{bottom:81.240450px;}
.ya1{bottom:99.150450px;}
.y85{bottom:113.349000px;}
.y12b{bottom:114.084000px;}
.ya6{bottom:115.890450px;}
.ybf{bottom:116.469000px;}
.y2d{bottom:117.009000px;}
.y145{bottom:119.863500px;}
.y5e{bottom:122.314500px;}
.y177{bottom:125.007000px;}
.y84{bottom:133.612500px;}
.y12a{bottom:134.347500px;}
.ybe{bottom:136.732500px;}
.y2c{bottom:137.272500px;}
.y144{bottom:140.128500px;}
.y5d{bottom:142.579500px;}
.y176{bottom:144.375000px;}
.y83{bottom:153.877500px;}
.y129{bottom:154.612500px;}
.ybd{bottom:156.997500px;}
.y2b{bottom:157.537500px;}
.y143{bottom:160.392000px;}
.y5c{bottom:162.843000px;}
.y175{bottom:163.743000px;}
.y82{bottom:174.141000px;}
.ya7{bottom:174.209705px;}
.y128{bottom:174.876000px;}
.y2a{bottom:177.801000px;}
.y142{bottom:180.657000px;}
.y5b{bottom:183.108000px;}
.y174{bottom:183.109500px;}
.y1a6{bottom:192.211500px;}
.y81{bottom:194.404500px;}
.y127{bottom:195.141000px;}
.yac{bottom:197.700600px;}
.y29{bottom:198.064500px;}
.y141{bottom:200.920500px;}
.ybc{bottom:200.964000px;}
.y173{bottom:202.477500px;}
.y5a{bottom:203.371500px;}
.yf9{bottom:209.890500px;}
.y1a5{bottom:211.578000px;}
.y80{bottom:214.669500px;}
.y126{bottom:215.404500px;}
.y28{bottom:218.329500px;}
.ybb{bottom:220.197000px;}
.y140{bottom:221.184000px;}
.y172{bottom:221.844000px;}
.y59{bottom:223.635000px;}
.yf8{bottom:224.086500px;}
.yf7{bottom:228.426000px;}
.y1a4{bottom:230.946000px;}
.ya8{bottom:232.349716px;}
.y7f{bottom:234.933000px;}
.y125{bottom:235.668000px;}
.y27{bottom:238.593000px;}
.y171{bottom:241.212000px;}
.y13f{bottom:241.449000px;}
.y58{bottom:243.900000px;}
.yf6{bottom:244.983300px;}
.y86{bottom:248.604000px;}
.y7e{bottom:255.198000px;}
.y124{bottom:255.933000px;}
.y26{bottom:258.858000px;}
.yf5{bottom:259.845450px;}
.y170{bottom:260.580000px;}
.y1a3{bottom:263.896500px;}
.y57{bottom:264.163500px;}
.y13e{bottom:270.679500px;}
.yf4{bottom:274.707600px;}
.y7d{bottom:275.461500px;}
.y123{bottom:276.196500px;}
.y25{bottom:279.121500px;}
.y16f{bottom:279.946500px;}
.y1a2{bottom:283.264500px;}
.y56{bottom:284.428500px;}
.yf3{bottom:289.568400px;}
.ya9{bottom:291.299795px;}
.y7b{bottom:295.725000px;}
.y122{bottom:296.461500px;}
.y16e{bottom:299.314500px;}
.y24{bottom:299.385000px;}
.y7c{bottom:301.150500px;}
.y1a1{bottom:302.631000px;}
.yf2{bottom:304.430550px;}
.y55{bottom:304.692000px;}
.y13d{bottom:305.499000px;}
.y7a{bottom:315.990000px;}
.y121{bottom:316.725000px;}
.y16d{bottom:318.681000px;}
.yf1{bottom:319.292700px;}
.y1a0{bottom:321.999000px;}
.y13c{bottom:325.762500px;}
.y23{bottom:328.615500px;}
.y54{bottom:333.922500px;}
.yf0{bottom:334.154850px;}
.y78{bottom:336.253500px;}
.y120{bottom:336.988500px;}
.y16c{bottom:338.049000px;}
.y19f{bottom:341.367000px;}
.y79{bottom:341.679000px;}
.y13b{bottom:346.027500px;}
.yaa{bottom:350.969624px;}
.yef{bottom:355.430850px;}
.y77{bottom:356.518500px;}
.y11f{bottom:357.253500px;}
.y16b{bottom:357.417000px;}
.y19e{bottom:360.733500px;}
.y13a{bottom:366.291000px;}
.y53{bottom:368.742000px;}
.yb5{bottom:369.510450px;}
.yee{bottom:370.854600px;}
.y76{bottom:376.782000px;}
.y16a{bottom:376.783500px;}
.y11e{bottom:377.517000px;}
.y19d{bottom:380.101500px;}
.y139{bottom:386.554500px;}
.y52{bottom:389.005500px;}
.yb4{bottom:389.401137px;}
.yed{bottom:392.198100px;}
.y169{bottom:396.151500px;}
.y75{bottom:397.045500px;}
.y11d{bottom:397.782000px;}
.y19c{bottom:399.468000px;}
.yd6{bottom:399.507000px;}
.y22{bottom:405.024000px;}
.y138{bottom:406.819500px;}
.yec{bottom:407.060250px;}
.yb1{bottom:407.220450px;}
.y51{bottom:409.270500px;}
.yab{bottom:409.919702px;}
.y168{bottom:415.518000px;}
.yd5{bottom:416.064000px;}
.y74{bottom:417.310500px;}
.y11c{bottom:418.045500px;}
.y19b{bottom:418.836000px;}
.yeb{bottom:421.922400px;}
.y137{bottom:427.083000px;}
.y50{bottom:429.534000px;}
.yd4{bottom:430.926150px;}
.y167{bottom:434.886000px;}
.yea{bottom:436.717050px;}
.y73{bottom:437.574000px;}
.y19a{bottom:438.204000px;}
.y11b{bottom:438.309000px;}
.y21{bottom:443.221500px;}
.yd3{bottom:445.788300px;}
.y136{bottom:447.348000px;}
.y4f{bottom:449.799000px;}
.ye9{bottom:452.140800px;}
.y166{bottom:454.254000px;}
.y199{bottom:457.570500px;}
.y72{bottom:457.839000px;}
.y11a{bottom:458.574000px;}
.yd2{bottom:460.650450px;}
.y20{bottom:463.485000px;}
.y9f{bottom:464.911620px;}
.y9d{bottom:465.539743px;}
.y135{bottom:467.611500px;}
.yb9{bottom:467.790404px;}
.y4e{bottom:470.062500px;}
.ye8{bottom:473.484300px;}
.y165{bottom:473.620500px;}
.yd0{bottom:475.443750px;}
.y198{bottom:476.938500px;}
.y71{bottom:478.102500px;}
.y119{bottom:478.837500px;}
.yd1{bottom:479.838000px;}
.y1f{bottom:483.750000px;}
.y9c{bottom:486.510165px;}
.y9e{bottom:486.960450px;}
.y134{bottom:487.875000px;}
.yba{bottom:487.949785px;}
.ye7{bottom:488.346450px;}
.y4d{bottom:490.326000px;}
.ycf{bottom:490.868850px;}
.y197{bottom:496.305000px;}
.y70{bottom:498.366000px;}
.y118{bottom:499.102500px;}
.y164{bottom:501.954000px;}
.ye6{bottom:503.208600px;}
.y1e{bottom:504.013500px;}
.yce{bottom:505.729650px;}
.y9b{bottom:505.950450px;}
.y133{bottom:508.140000px;}
.y4c{bottom:510.591000px;}
.y196{bottom:515.673000px;}
.ye5{bottom:518.070750px;}
.y117{bottom:519.366000px;}
.ycd{bottom:520.591800px;}
.y1d{bottom:524.278500px;}
.y6f{bottom:527.596500px;}
.y132{bottom:528.403500px;}
.y4b{bottom:530.854500px;}
.y93{bottom:530.970450px;}
.y195{bottom:535.041000px;}
.ye4{bottom:539.414250px;}
.y116{bottom:539.629500px;}
.ycc{bottom:541.935300px;}
.y1c{bottom:544.542000px;}
.y9a{bottom:547.620450px;}
.y163{bottom:547.767000px;}
.y131{bottom:548.667000px;}
.y4a{bottom:551.119500px;}
.ye3{bottom:554.276400px;}
.y194{bottom:554.407500px;}
.y115{bottom:559.894500px;}
.y6e{bottom:562.416000px;}
.ycb{bottom:563.212650px;}
.y99{bottom:564.178857px;}
.y1b{bottom:564.805500px;}
.y162{bottom:568.663950px;}
.y130{bottom:568.932000px;}
.ye2{bottom:569.137200px;}
.y49{bottom:571.383000px;}
.y193{bottom:573.775500px;}
.yca{bottom:578.007300px;}
.y114{bottom:580.158000px;}
.y6d{bottom:582.681000px;}
.y161{bottom:583.526100px;}
.ye1{bottom:583.999350px;}
.y1a{bottom:585.070500px;}
.y12f{bottom:589.195500px;}
.y48{bottom:591.646500px;}
.y192{bottom:593.142000px;}
.y160{bottom:598.388250px;}
.y113{bottom:600.423000px;}
.y6c{bottom:602.944500px;}
.y19{bottom:605.334000px;}
.ye0{bottom:605.344200px;}
.y12e{bottom:609.460500px;}
.y47{bottom:611.911500px;}
.y191{bottom:612.510000px;}
.y15f{bottom:613.249050px;}
.yc9{bottom:613.915500px;}
.ydf{bottom:620.205000px;}
.y112{bottom:620.686500px;}
.y94{bottom:622.770450px;}
.y6b{bottom:623.209500px;}
.y18{bottom:625.599000px;}
.y15e{bottom:628.111200px;}
.y12d{bottom:629.724000px;}
.y190{bottom:631.878000px;}
.y46{bottom:632.175000px;}
.yc8{bottom:633.148500px;}
.yde{bottom:635.067150px;}
.y111{bottom:640.950000px;}
.y15d{bottom:642.973350px;}
.y6a{bottom:643.473000px;}
.y17{bottom:645.862500px;}
.y92{bottom:646.350450px;}
.y12c{bottom:649.987500px;}
.y18f{bottom:651.244500px;}
.y45{bottom:652.438500px;}
.ydd{bottom:656.344500px;}
.y15c{bottom:657.835500px;}
.y69{bottom:663.736500px;}
.y16{bottom:666.126000px;}
.y110{bottom:670.180500px;}
.yc7{bottom:670.252500px;}
.ydb{bottom:670.584300px;}
.y18e{bottom:670.612500px;}
.ydc{bottom:671.137800px;}
.y15b{bottom:672.696300px;}
.y44{bottom:672.703500px;}
.y95{bottom:682.349963px;}
.y68{bottom:684.001500px;}
.y15{bottom:686.391000px;}
.y18d{bottom:689.979000px;}
.yc6{bottom:690.516000px;}
.yda{bottom:692.482650px;}
.y43{bottom:692.967000px;}
.y15a{bottom:694.041150px;}
.y67{bottom:704.265000px;}
.y14{bottom:706.654500px;}
.y159{bottom:708.901950px;}
.y18c{bottom:709.347000px;}
.yc5{bottom:710.781000px;}
.y42{bottom:713.232000px;}
.y10f{bottom:718.689000px;}
.y158{bottom:723.764100px;}
.y66{bottom:724.530000px;}
.yd9{bottom:728.389500px;}
.y18b{bottom:728.715000px;}
.yc4{bottom:731.044500px;}
.y41{bottom:733.495500px;}
.y10e{bottom:736.125000px;}
.y157{bottom:738.626250px;}
.y96{bottom:741.479284px;}
.y13{bottom:742.087500px;}
.yd8{bottom:747.622500px;}
.y18a{bottom:748.081500px;}
.yc3{bottom:751.308000px;}
.y10d{bottom:752.638500px;}
.y156{bottom:753.488400px;}
.y65{bottom:753.759000px;}
.y40{bottom:762.726000px;}
.y189{bottom:767.449500px;}
.y155{bottom:768.349200px;}
.y12{bottom:769.210500px;}
.yc2{bottom:771.573000px;}
.y10c{bottom:776.278500px;}
.y154{bottom:783.211350px;}
.y188{bottom:786.816000px;}
.y11{bottom:787.368000px;}
.y64{bottom:788.578500px;}
.yc1{bottom:791.836500px;}
.y10b{bottom:793.342500px;}
.y3f{bottom:797.545500px;}
.y97{bottom:798.359038px;}
.yd7{bottom:798.445500px;}
.y153{bottom:804.488700px;}
.y187{bottom:806.184000px;}
.y63{bottom:808.843500px;}
.y10{bottom:810.406500px;}
.y10a{bottom:810.480000px;}
.yc0{bottom:812.101500px;}
.y152{bottom:819.283350px;}
.yb6{bottom:820.590774px;}
.y186{bottom:825.552000px;}
.y109{bottom:826.993500px;}
.yf{bottom:828.564000px;}
.y62{bottom:829.107000px;}
.y3e{bottom:832.365000px;}
.y151{bottom:840.559350px;}
.yb3{bottom:841.381137px;}
.ye{bottom:841.839000px;}
.y185{bottom:844.918500px;}
.y61{bottom:849.372000px;}
.y108{bottom:850.633500px;}
.y3d{bottom:852.628500px;}
.y98{bottom:858.658301px;}
.yb2{bottom:859.200450px;}
.y184{bottom:864.286500px;}
.yd{bottom:864.877500px;}
.y107{bottom:867.072000px;}
.y60{bottom:869.635500px;}
.y3c{bottom:872.893500px;}
.y150{bottom:876.466500px;}
.yc{bottom:883.035000px;}
.y183{bottom:883.653000px;}
.y8a{bottom:890.340531px;}
.y106{bottom:890.787000px;}
.y3b{bottom:893.157000px;}
.y14f{bottom:895.699500px;}
.y5f{bottom:898.866000px;}
.yb{bottom:901.191000px;}
.y182{bottom:903.021000px;}
.y105{bottom:907.300500px;}
.y89{bottom:910.590450px;}
.y3a{bottom:913.422000px;}
.ya{bottom:914.466000px;}
.y14e{bottom:914.932500px;}
.y181{bottom:922.389000px;}
.y104{bottom:923.814000px;}
.y9{bottom:932.623500px;}
.y39{bottom:933.685500px;}
.y14d{bottom:934.165500px;}
.y103{bottom:940.327500px;}
.y180{bottom:941.755500px;}
.y87{bottom:948.030450px;}
.y38{bottom:953.949000px;}
.y8{bottom:955.662000px;}
.y17f{bottom:961.123500px;}
.y102{bottom:963.967500px;}
.y14c{bottom:972.121500px;}
.y37{bottom:974.214000px;}
.y7{bottom:977.904000px;}
.y101{bottom:980.406000px;}
.y17e{bottom:980.490000px;}
.y36{bottom:994.477500px;}
.y100{bottom:996.919500px;}
.y6{bottom:998.167500px;}
.y17d{bottom:999.858000px;}
.y14b{bottom:1006.941000px;}
.y35{bottom:1014.742500px;}
.y17c{bottom:1019.226000px;}
.yff{bottom:1020.559500px;}
.y14a{bottom:1031.106000px;}
.y34{bottom:1035.006000px;}
.yfe{bottom:1036.998000px;}
.y17b{bottom:1038.592500px;}
.y5{bottom:1040.848500px;}
.yfd{bottom:1040.865000px;}
.y149{bottom:1046.304000px;}
.y33{bottom:1055.269500px;}
.y17a{bottom:1057.960500px;}
.yfc{bottom:1060.713000px;}
.y148{bottom:1061.502000px;}
.y4{bottom:1071.244500px;}
.y32{bottom:1075.534500px;}
.y179{bottom:1077.327000px;}
.y147{bottom:1085.667000px;}
.y31{bottom:1095.798000px;}
.y178{bottom:1096.695000px;}
.yaf{bottom:1097.724000px;}
.yfb{bottom:1098.310500px;}
.y3{bottom:1100.145000px;}
.y146{bottom:1100.865000px;}
.y30{bottom:1116.063000px;}
.yfa{bottom:1117.543500px;}
.y1{bottom:1137.954000px;}
.y2f{bottom:1168.366500px;}
.h27{height:26.110157px;}
.h26{height:27.415403px;}
.h1e{height:30.240000px;}
.h8{height:30.462432px;}
.h11{height:33.072749px;}
.h2b{height:34.813397px;}
.h24{height:35.006619px;}
.hc{height:35.052060px;}
.hd{height:35.052500px;}
.h25{height:35.248712px;}
.h21{height:35.494453px;}
.h20{height:36.208925px;}
.h14{height:37.494141px;}
.h1b{height:38.114044px;}
.h19{height:38.590636px;}
.h22{height:38.896243px;}
.h9{height:39.163488px;}
.h23{height:39.165235px;}
.h1a{height:39.313166px;}
.h32{height:39.434227px;}
.h1d{height:40.153033px;}
.h1c{height:41.235659px;}
.hf{height:43.217759px;}
.ha{height:43.219494px;}
.h18{height:43.355308px;}
.he{height:43.516637px;}
.hb{height:43.518384px;}
.h10{height:43.815515px;}
.h4{height:43.817274px;}
.h13{height:44.279648px;}
.h2a{height:44.992403px;}
.h33{height:49.117939px;}
.h17{height:49.939453px;}
.h2e{height:49.985558px;}
.h2f{height:49.991558px;}
.h2{height:50.931027px;}
.h7{height:54.543336px;}
.h6{height:54.549336px;}
.h15{height:55.599258px;}
.h31{height:64.593219px;}
.h16{height:66.585938px;}
.h2c{height:72.039235px;}
.h2d{height:72.045235px;}
.h5{height:77.793354px;}
.h1f{height:81.232305px;}
.h30{height:94.185219px;}
.h3{height:102.503837px;}
.h12{height:882.405000px;}
.h28{height:892.914000px;}
.h29{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:20.790000px;}
.w2{width:198.814733px;}
.w3{width:623.451750px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w5{width:1262.835000px;}
.w6{width:1263.000000px;}
.x2e{left:-20.159250px;}
.x0{left:0.000000px;}
.x30{left:11.700750px;}
.x37{left:13.410073px;}
.x2{left:58.056215px;}
.x36{left:78.479825px;}
.x40{left:79.830750px;}
.x42{left:107.820750px;}
.x1{left:114.802500px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.x7d{left:131.739450px;}
.x2d{left:134.732250px;}
.x4{left:146.170500px;}
.x3f{left:151.020750px;}
.x32{left:155.880750px;}
.x3e{left:158.041386px;}
.x7e{left:161.131500px;}
.x33{left:162.450915px;}
.x3d{left:165.330750px;}
.x38{left:167.311086px;}
.xb{left:169.021500px;}
.x3b{left:171.269780px;}
.x34{left:172.710750px;}
.xc{left:176.493000px;}
.xd{left:180.304500px;}
.x4f{left:181.962000px;}
.x6{left:188.347500px;}
.x50{left:190.363050px;}
.x53{left:197.533500px;}
.x60{left:200.017500px;}
.x78{left:206.889000px;}
.x49{left:210.855000px;}
.x6e{left:214.765500px;}
.x14{left:216.717000px;}
.x15{left:224.188500px;}
.xe{left:225.189000px;}
.x6a{left:228.784500px;}
.x3c{left:231.478638px;}
.xf{left:232.662000px;}
.x7a{left:238.296300px;}
.x10{left:239.983500px;}
.x76{left:241.035000px;}
.x41{left:243.993000px;}
.x21{left:245.721000px;}
.x11{left:247.456500px;}
.x5f{left:252.460500px;}
.x8d{left:254.101500px;}
.x77{left:255.937500px;}
.x22{left:260.665500px;}
.x6b{left:262.434000px;}
.x8c{left:265.518000px;}
.x73{left:267.525000px;}
.x74{left:282.469500px;}
.x39{left:289.620750px;}
.x6f{left:292.663500px;}
.x70{left:300.136500px;}
.x71{left:303.916500px;}
.x79{left:307.576950px;}
.x35{left:312.390750px;}
.x3a{left:314.370750px;}
.x72{left:318.861000px;}
.x1a{left:331.167000px;}
.x31{left:333.180750px;}
.x18{left:338.598000px;}
.x1b{left:342.448500px;}
.x1d{left:346.243500px;}
.x19{left:353.541000px;}
.x1c{left:357.393000px;}
.x1e{left:361.188000px;}
.x29{left:362.934000px;}
.x1f{left:368.742000px;}
.x2a{left:373.042500px;}
.x52{left:379.654500px;}
.x20{left:383.686500px;}
.x51{left:438.136650px;}
.x43{left:439.560750px;}
.x44{left:441.090750px;}
.x12{left:446.038500px;}
.x7{left:448.578000px;}
.x63{left:451.369500px;}
.x13{left:453.511500px;}
.x8{left:456.051000px;}
.x4c{left:468.704700px;}
.x64{left:470.541000px;}
.x4e{left:473.668650px;}
.x4d{left:479.114550px;}
.x68{left:486.625500px;}
.x47{left:494.910214px;}
.x69{left:501.570000px;}
.x58{left:503.096250px;}
.x61{left:516.925500px;}
.x59{left:520.350600px;}
.x7b{left:530.839950px;}
.x87{left:535.780500px;}
.x54{left:538.936050px;}
.x89{left:549.361500px;}
.x45{left:555.120750px;}
.x48{left:556.560303px;}
.x46{left:558.990750px;}
.x2b{left:561.184500px;}
.x88{left:562.680000px;}
.x65{left:563.910000px;}
.x4a{left:565.950000px;}
.x2c{left:571.329000px;}
.x4b{left:576.414000px;}
.x23{left:581.512500px;}
.x83{left:588.510000px;}
.x66{left:589.806000px;}
.x81{left:594.964500px;}
.x24{left:596.457000px;}
.x85{left:600.999000px;}
.x5a{left:602.561550px;}
.x67{left:604.942500px;}
.x7c{left:606.862500px;}
.x8a{left:611.217000px;}
.x2f{left:612.990750px;}
.x84{left:615.409500px;}
.x82{left:621.864000px;}
.x5b{left:625.867950px;}
.x86{left:627.897000px;}
.x27{left:629.209500px;}
.x8b{left:638.115000px;}
.x28{left:644.154000px;}
.x7f{left:687.439500px;}
.x62{left:693.261000px;}
.x9{left:711.457500px;}
.x80{left:714.339000px;}
.xa{left:718.930500px;}
.x75{left:723.862500px;}
.x55{left:731.737650px;}
.x25{left:738.141000px;}
.x26{left:753.084000px;}
.x16{left:757.243500px;}
.x6c{left:760.146000px;}
.x6d{left:763.855500px;}
.x17{left:772.188000px;}
.x56{left:814.854450px;}
.x5c{left:831.402750px;}
.x5d{left:913.613700px;}
.x5e{left:939.946800px;}
.x57{left:1037.928450px;}
@media print{
.v3{vertical-align:-17.354667pt;}
.v6{vertical-align:-14.620800pt;}
.v5{vertical-align:-8.520000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.600617pt;}
.v7{vertical-align:15.624000pt;}
.v2{vertical-align:17.706667pt;}
.v1{vertical-align:19.290667pt;}
.v9{vertical-align:26.299200pt;}
.v8{vertical-align:29.221333pt;}
.ls34{letter-spacing:-1.959037pt;}
.ls33{letter-spacing:-1.630076pt;}
.ls38{letter-spacing:-0.424504pt;}
.ls39{letter-spacing:-0.380590pt;}
.ls2a{letter-spacing:-0.293920pt;}
.ls2c{letter-spacing:-0.260866pt;}
.ls2e{letter-spacing:-0.219571pt;}
.ls3a{letter-spacing:-0.185416pt;}
.ls25{letter-spacing:-0.160320pt;}
.ls30{letter-spacing:-0.156140pt;}
.ls26{letter-spacing:-0.154976pt;}
.ls2f{letter-spacing:-0.126863pt;}
.ls3b{letter-spacing:-0.106616pt;}
.ls37{letter-spacing:-0.102467pt;}
.ls24{letter-spacing:-0.101536pt;}
.ls2d{letter-spacing:-0.088927pt;}
.ls21{letter-spacing:-0.080864pt;}
.ls28{letter-spacing:-0.080160pt;}
.ls3c{letter-spacing:-0.072704pt;}
.ls2b{letter-spacing:-0.053440pt;}
.ls20{letter-spacing:-0.046816pt;}
.ls29{letter-spacing:-0.016032pt;}
.ls22{letter-spacing:-0.012768pt;}
.ls27{letter-spacing:-0.009600pt;}
.ls23{letter-spacing:-0.005344pt;}
.ls9{letter-spacing:0.000000pt;}
.ls5a{letter-spacing:0.000494pt;}
.ls56{letter-spacing:0.000711pt;}
.ls40{letter-spacing:0.000906pt;}
.ls4b{letter-spacing:0.001007pt;}
.ls1f{letter-spacing:0.002193pt;}
.ls47{letter-spacing:0.003272pt;}
.ls5b{letter-spacing:0.003656pt;}
.ls5c{letter-spacing:0.004096pt;}
.ls15{letter-spacing:0.004800pt;}
.ls16{letter-spacing:0.009600pt;}
.ls31{letter-spacing:0.009820pt;}
.ls19{letter-spacing:0.010688pt;}
.ls1a{letter-spacing:0.037408pt;}
.ls18{letter-spacing:0.038400pt;}
.ls1b{letter-spacing:0.038852pt;}
.ls35{letter-spacing:0.083255pt;}
.ls17{letter-spacing:0.096000pt;}
.ls13{letter-spacing:0.153216pt;}
.ls14{letter-spacing:0.160320pt;}
.ls12{letter-spacing:0.161728pt;}
.ls1d{letter-spacing:0.227257pt;}
.ls1e{letter-spacing:0.295360pt;}
.ls32{letter-spacing:0.333871pt;}
.ls49{letter-spacing:2.390880pt;}
.ls0{letter-spacing:2.650667pt;}
.ls1{letter-spacing:2.656000pt;}
.ls5f{letter-spacing:10.602623pt;}
.lsa{letter-spacing:10.626533pt;}
.ls8{letter-spacing:10.626667pt;}
.ls51{letter-spacing:10.627366pt;}
.ls52{letter-spacing:10.629067pt;}
.ls4a{letter-spacing:10.708613pt;}
.ls50{letter-spacing:10.755272pt;}
.ls41{letter-spacing:10.760072pt;}
.ls5e{letter-spacing:10.831195pt;}
.ls59{letter-spacing:11.223031pt;}
.ls53{letter-spacing:11.954133pt;}
.ls4c{letter-spacing:11.955635pt;}
.ls5d{letter-spacing:11.959467pt;}
.ls58{letter-spacing:12.018080pt;}
.ls7{letter-spacing:13.144089pt;}
.lsc{letter-spacing:13.278090pt;}
.ls4f{letter-spacing:13.281067pt;}
.ls11{letter-spacing:13.283733pt;}
.ls46{letter-spacing:13.286400pt;}
.lsb{letter-spacing:13.292944pt;}
.ls10{letter-spacing:13.365093pt;}
.lse{letter-spacing:13.394971pt;}
.ls54{letter-spacing:13.634342pt;}
.ls57{letter-spacing:13.780748pt;}
.ls3d{letter-spacing:14.023916pt;}
.ls55{letter-spacing:14.099702pt;}
.ls3e{letter-spacing:14.865746pt;}
.ls3f{letter-spacing:14.928492pt;}
.lsf{letter-spacing:15.425224pt;}
.ls3{letter-spacing:15.941333pt;}
.lsd{letter-spacing:16.298453pt;}
.ls4{letter-spacing:17.708949pt;}
.ls2{letter-spacing:20.368000pt;}
.ls5{letter-spacing:62.432000pt;}
.ls6{letter-spacing:64.315179pt;}
.ls45{letter-spacing:117.019680pt;}
.ls42{letter-spacing:149.868872pt;}
.ls43{letter-spacing:167.149778pt;}
.ls44{letter-spacing:184.433672pt;}
.ls36{letter-spacing:196.162464pt;}
.ls1c{letter-spacing:238.674376pt;}
.ls4e{letter-spacing:918.005867pt;}
.ls4d{letter-spacing:1038.944533pt;}
.ls48{letter-spacing:1127.822880pt;}
.ws5a{word-spacing:-208.513397pt;}
.ws52{word-spacing:-12.578191pt;}
.ws5b{word-spacing:-12.095933pt;}
.ws4e{word-spacing:-12.000000pt;}
.ws98{word-spacing:-11.955200pt;}
.ws5c{word-spacing:-11.773896pt;}
.ws60{word-spacing:-11.287296pt;}
.ws4d{word-spacing:-10.801728pt;}
.ws89{word-spacing:-10.759680pt;}
.ws25{word-spacing:-10.626800pt;}
.ws3{word-spacing:-10.096000pt;}
.wsb4{word-spacing:-2.821427pt;}
.ws3b{word-spacing:-2.709827pt;}
.wsb5{word-spacing:-2.677965pt;}
.ws45{word-spacing:-2.603559pt;}
.ws29{word-spacing:-2.072221pt;}
.wsae{word-spacing:-1.806551pt;}
.wse9{word-spacing:-1.769370pt;}
.ws32{word-spacing:-1.700284pt;}
.ws39{word-spacing:-1.487748pt;}
.wse0{word-spacing:-1.482445pt;}
.wse3{word-spacing:-1.434624pt;}
.wsea{word-spacing:-1.338982pt;}
.ws35{word-spacing:-1.275213pt;}
.ws78{word-spacing:-1.239808pt;}
.ws4c{word-spacing:-1.222079pt;}
.wse2{word-spacing:-1.147699pt;}
.ws1b{word-spacing:-1.062720pt;}
.wsd7{word-spacing:-1.052058pt;}
.wsce{word-spacing:-0.956416pt;}
.ws33{word-spacing:-0.956410pt;}
.ws21{word-spacing:-0.850442pt;}
.wsd0{word-spacing:-0.717312pt;}
.ws27{word-spacing:-0.637606pt;}
.wsad{word-spacing:-0.584473pt;}
.ws69{word-spacing:-0.555776pt;}
.wsa6{word-spacing:-0.531339pt;}
.wsd4{word-spacing:-0.526029pt;}
.wsac{word-spacing:-0.478205pt;}
.ws11{word-spacing:-0.425354pt;}
.ws2f{word-spacing:-0.318803pt;}
.wsc5{word-spacing:-0.286925pt;}
.wsd{word-spacing:-0.265893pt;}
.ws2c{word-spacing:-0.265669pt;}
.ws7c{word-spacing:-0.243968pt;}
.wse7{word-spacing:-0.239104pt;}
.ws68{word-spacing:-0.234080pt;}
.ws7e{word-spacing:-0.216464pt;}
.ws10{word-spacing:-0.212544pt;}
.ws3f{word-spacing:-0.212535pt;}
.wsdf{word-spacing:-0.191283pt;}
.ws81{word-spacing:-0.185416pt;}
.ws2d{word-spacing:-0.159402pt;}
.ws15{word-spacing:-0.159195pt;}
.ws7b{word-spacing:-0.151260pt;}
.wsc1{word-spacing:-0.143462pt;}
.ws6b{word-spacing:-0.138944pt;}
.ws13{word-spacing:-0.106431pt;}
.ws34{word-spacing:-0.106268pt;}
.wsb6{word-spacing:-0.095642pt;}
.ws82{word-spacing:-0.083438pt;}
.ws67{word-spacing:-0.068096pt;}
.ws30{word-spacing:-0.053134pt;}
.ws12{word-spacing:-0.053083pt;}
.ws97{word-spacing:-0.047821pt;}
.ws61{word-spacing:-0.045440pt;}
.ws88{word-spacing:-0.043039pt;}
.ws26{word-spacing:-0.042507pt;}
.ws4{word-spacing:-0.022101pt;}
.ws8{word-spacing:-0.020016pt;}
.ws6{word-spacing:-0.017659pt;}
.ws1{word-spacing:-0.016474pt;}
.ws5{word-spacing:-0.015429pt;}
.ws2{word-spacing:-0.014299pt;}
.wsa{word-spacing:-0.013557pt;}
.ws7{word-spacing:-0.012389pt;}
.ws9d{word-spacing:-0.003524pt;}
.ws9b{word-spacing:-0.003388pt;}
.ws8e{word-spacing:-0.000407pt;}
.ws14{word-spacing:-0.000266pt;}
.ws23{word-spacing:-0.000128pt;}
.ws0{word-spacing:0.000000pt;}
.wsb{word-spacing:0.000266pt;}
.ws80{word-spacing:0.009759pt;}
.ws83{word-spacing:0.023177pt;}
.ws8b{word-spacing:0.047821pt;}
.ws16{word-spacing:0.053083pt;}
.ws2a{word-spacing:0.053134pt;}
.ws93{word-spacing:0.085014pt;}
.ws6a{word-spacing:0.085504pt;}
.ws8c{word-spacing:0.095642pt;}
.ws7d{word-spacing:0.102467pt;}
.ws41{word-spacing:0.106268pt;}
.ws1c{word-spacing:0.106378pt;}
.ws72{word-spacing:0.120000pt;}
.ws7a{word-spacing:0.127658pt;}
.ws96{word-spacing:0.143462pt;}
.ws7f{word-spacing:0.149859pt;}
.ws79{word-spacing:0.155410pt;}
.wse{word-spacing:0.159195pt;}
.ws2e{word-spacing:0.159402pt;}
.ws71{word-spacing:0.168000pt;}
.wsc3{word-spacing:0.191283pt;}
.wsc{word-spacing:0.191466pt;}
.ws2b{word-spacing:0.212535pt;}
.ws20{word-spacing:0.212544pt;}
.ws6c{word-spacing:0.235136pt;}
.wsb3{word-spacing:0.239104pt;}
.ws40{word-spacing:0.265669pt;}
.wse8{word-spacing:0.286925pt;}
.ws65{word-spacing:0.318803pt;}
.wsab{word-spacing:0.371937pt;}
.wsf{word-spacing:0.372005pt;}
.wsa1{word-spacing:0.425071pt;}
.ws1f{word-spacing:0.478171pt;}
.ws66{word-spacing:0.478205pt;}
.ws76{word-spacing:0.710752pt;}
.ws86{word-spacing:0.743874pt;}
.ws3d{word-spacing:0.797008pt;}
.ws36{word-spacing:0.850142pt;}
.wsa0{word-spacing:0.956410pt;}
.wsa4{word-spacing:1.168945pt;}
.wsba{word-spacing:1.291162pt;}
.wsb8{word-spacing:1.386803pt;}
.ws49{word-spacing:1.434614pt;}
.wsbe{word-spacing:1.434624pt;}
.wsa3{word-spacing:1.487748pt;}
.ws9e{word-spacing:1.540882pt;}
.ws44{word-spacing:1.594016pt;}
.ws87{word-spacing:1.647150pt;}
.wsbc{word-spacing:1.673728pt;}
.ws37{word-spacing:1.806551pt;}
.wsc0{word-spacing:1.817190pt;}
.wsa9{word-spacing:1.859685pt;}
.ws48{word-spacing:1.912819pt;}
.ws95{word-spacing:1.960653pt;}
.ws42{word-spacing:1.965953pt;}
.ws77{word-spacing:2.052096pt;}
.ws4b{word-spacing:2.125355pt;}
.wsbd{word-spacing:2.151936pt;}
.wsaf{word-spacing:2.178489pt;}
.ws94{word-spacing:2.247578pt;}
.ws85{word-spacing:2.337890pt;}
.wsaa{word-spacing:2.391024pt;}
.wsd8{word-spacing:2.391040pt;}
.ws28{word-spacing:2.603559pt;}
.wsb0{word-spacing:2.762961pt;}
.ws17{word-spacing:2.763019pt;}
.wsd9{word-spacing:2.865280pt;}
.wsc7{word-spacing:2.866082pt;}
.wse5{word-spacing:2.867140pt;}
.wsd2{word-spacing:2.867959pt;}
.wsb1{word-spacing:2.869229pt;}
.wse6{word-spacing:2.869248pt;}
.wsa2{word-spacing:2.922363pt;}
.wse4{word-spacing:3.156173pt;}
.ws18{word-spacing:3.174288pt;}
.ws19{word-spacing:3.184000pt;}
.ws46{word-spacing:3.188032pt;}
.ws1d{word-spacing:3.188107pt;}
.ws3c{word-spacing:3.241166pt;}
.ws1a{word-spacing:3.347621pt;}
.ws1e{word-spacing:4.144449pt;}
.ws47{word-spacing:4.303843pt;}
.ws84{word-spacing:4.463245pt;}
.wsc9{word-spacing:4.542976pt;}
.ws3e{word-spacing:4.675780pt;}
.ws4a{word-spacing:4.782048pt;}
.wsa8{word-spacing:4.835182pt;}
.wsde{word-spacing:4.877722pt;}
.ws64{word-spacing:5.153985pt;}
.wseb{word-spacing:5.260288pt;}
.ws43{word-spacing:5.525922pt;}
.wscb{word-spacing:5.595034pt;}
.wsb2{word-spacing:5.738496pt;}
.ws63{word-spacing:5.786317pt;}
.ws62{word-spacing:6.168883pt;}
.ws9f{word-spacing:6.694867pt;}
.wsd1{word-spacing:6.742733pt;}
.wsdb{word-spacing:7.268762pt;}
.wsdc{word-spacing:7.651328pt;}
.ws74{word-spacing:7.775520pt;}
.ws73{word-spacing:7.839648pt;}
.ws75{word-spacing:8.053408pt;}
.wsd3{word-spacing:8.081715pt;}
.wsa5{word-spacing:8.342017pt;}
.ws6e{word-spacing:8.472000pt;}
.ws6f{word-spacing:8.793600pt;}
.ws70{word-spacing:8.808000pt;}
.wsa7{word-spacing:8.873356pt;}
.ws6d{word-spacing:9.436800pt;}
.ws24{word-spacing:10.584852pt;}
.ws22{word-spacing:10.586987pt;}
.ws3a{word-spacing:10.733041pt;}
.wsd5{word-spacing:11.381350pt;}
.wsc4{word-spacing:11.899247pt;}
.wsb9{word-spacing:11.904870pt;}
.wsc2{word-spacing:11.905331pt;}
.wscc{word-spacing:11.907379pt;}
.ws31{word-spacing:13.230333pt;}
.wsbb{word-spacing:13.246362pt;}
.wsbf{word-spacing:13.342003pt;}
.ws9{word-spacing:14.014075pt;}
.wse1{word-spacing:14.489702pt;}
.wscf{word-spacing:14.680986pt;}
.wsc6{word-spacing:14.771721pt;}
.wsec{word-spacing:14.772642pt;}
.wsda{word-spacing:14.774605pt;}
.wsca{word-spacing:14.775791pt;}
.wsc8{word-spacing:14.776627pt;}
.wsd6{word-spacing:14.779366pt;}
.wscd{word-spacing:14.872269pt;}
.ws38{word-spacing:16.418365pt;}
.wsdd{word-spacing:38.160998pt;}
.wsb7{word-spacing:66.193528pt;}
.ws8a{word-spacing:116.419738pt;}
.ws5d{word-spacing:141.964979pt;}
.ws5f{word-spacing:153.148472pt;}
.ws5e{word-spacing:154.114586pt;}
.ws57{word-spacing:192.034705pt;}
.ws53{word-spacing:193.993742pt;}
.ws55{word-spacing:193.998652pt;}
.ws54{word-spacing:196.934752pt;}
.ws51{word-spacing:197.091254pt;}
.ws59{word-spacing:202.512361pt;}
.ws56{word-spacing:202.836412pt;}
.ws58{word-spacing:204.476307pt;}
.ws4f{word-spacing:210.193124pt;}
.ws50{word-spacing:211.166377pt;}
.ws9a{word-spacing:269.518029pt;}
.ws90{word-spacing:270.670510pt;}
.ws91{word-spacing:281.430190pt;}
.ws8d{word-spacing:332.129802pt;}
.ws92{word-spacing:342.889482pt;}
.ws8f{word-spacing:353.649162pt;}
.ws99{word-spacing:376.206234pt;}
.ws9c{word-spacing:376.254054pt;}
._1d{margin-left:-196.883758pt;}
._1a{margin-left:-195.935206pt;}
._1e{margin-left:-22.696075pt;}
._1c{margin-left:-19.494713pt;}
._1b{margin-left:-16.303232pt;}
._2{margin-left:-5.941833pt;}
._3{margin-left:-4.392123pt;}
._1{margin-left:-2.922267pt;}
._f{margin-left:-1.902725pt;}
._4{margin-left:-0.915940pt;}
._15{width:1.029952pt;}
._0{width:2.710560pt;}
._16{width:8.643936pt;}
._18{width:10.701897pt;}
._d{width:12.115054pt;}
._64{width:13.021084pt;}
._5{width:13.963003pt;}
._6{width:15.302021pt;}
._7{width:16.590210pt;}
._77{width:17.703489pt;}
._a{width:18.598025pt;}
._e{width:19.500129pt;}
._79{width:20.610765pt;}
._21{width:21.572350pt;}
._10{width:22.741295pt;}
._14{width:23.667693pt;}
._8{width:25.318205pt;}
._9{width:26.514651pt;}
._12{width:29.808099pt;}
._13{width:32.082761pt;}
._11{width:34.061379pt;}
._91{width:39.047121pt;}
._78{width:43.648234pt;}
._7b{width:70.815352pt;}
._8f{width:78.904320pt;}
._66{width:81.343181pt;}
._22{width:92.618196pt;}
._86{width:121.684808pt;}
._7d{width:125.716101pt;}
._67{width:128.111923pt;}
._7e{width:132.731412pt;}
._81{width:136.217549pt;}
._2e{width:137.939098pt;}
._8d{width:141.879532pt;}
._82{width:143.491092pt;}
._24{width:144.437944pt;}
._33{width:148.698778pt;}
._26{width:149.817784pt;}
._2f{width:155.197624pt;}
._8a{width:159.802767pt;}
._25{width:161.739510pt;}
._31{width:162.858516pt;}
._89{width:164.793085pt;}
._38{width:165.957304pt;}
._80{width:171.380183pt;}
._30{width:172.499190pt;}
._35{width:173.618196pt;}
._2a{width:176.288771pt;}
._8e{width:177.659471pt;}
._1f{width:178.603686pt;}
._88{width:182.268979pt;}
._39{width:183.258870pt;}
._74{width:184.827392pt;}
._8c{width:189.327329pt;}
._20{width:190.885850pt;}
._34{width:194.446764pt;}
._45{width:195.869215pt;}
._2c{width:197.117338pt;}
._76{width:199.843123pt;}
._8b{width:202.540216pt;}
._41{width:203.659223pt;}
._2b{width:206.413701pt;}
._29{width:207.877018pt;}
._7f{width:209.340334pt;}
._6a{width:211.750502pt;}
._75{width:212.850381pt;}
._43{width:218.937969pt;}
._46{width:225.221622pt;}
._28{width:227.933061pt;}
._42{width:235.981302pt;}
._19{width:241.188187pt;}
._69{width:248.763802pt;}
._44{width:263.657372pt;}
._87{width:265.678019pt;}
._61{width:268.389458pt;}
._84{width:277.685821pt;}
._3e{width:281.473229pt;}
._60{width:285.691023pt;}
._5d{width:292.189870pt;}
._65{width:295.907720pt;}
._3d{width:298.688717pt;}
._85{width:302.435259pt;}
._7c{width:307.815099pt;}
._5a{width:309.491436pt;}
._83{width:316.291553pt;}
._3c{width:329.160131pt;}
._59{width:339.919811pt;}
._3f{width:342.889482pt;}
._4e{width:353.649162pt;}
._55{width:364.408842pt;}
._70{width:388.209254pt;}
._27{width:394.708101pt;}
._7a{width:420.919212pt;}
._68{width:443.708083pt;}
._40{width:468.304312pt;}
._5f{width:481.469795pt;}
._73{width:500.062106pt;}
._54{width:520.682435pt;}
._53{width:539.404278pt;}
._37{width:591.739361pt;}
._5e{width:664.862147pt;}
._5c{width:666.669773pt;}
._58{width:673.426852pt;}
._4a{width:676.999066pt;}
._4d{width:687.758746pt;}
._56{width:698.518426pt;}
._32{width:761.785344pt;}
._2d{width:764.539822pt;}
._36{width:784.681943pt;}
._6f{width:785.913668pt;}
._b{width:805.643828pt;}
._5b{width:818.826392pt;}
._51{width:852.295772pt;}
._62{width:941.773271pt;}
._4c{width:952.403835pt;}
._6d{width:960.050381pt;}
._23{width:971.814298pt;}
._48{width:991.827302pt;}
._72{width:1000.028570pt;}
._49{width:1014.680863pt;}
._52{width:1023.979716pt;}
._6e{width:1025.086669pt;}
._57{width:1032.900986pt;}
._4b{width:1050.489078pt;}
._6c{width:1062.530355pt;}
._50{width:1077.689549pt;}
._63{width:1081.304801pt;}
._3b{width:1089.008732pt;}
._6b{width:1107.242803pt;}
._71{width:1175.291802pt;}
._47{width:1351.590136pt;}
._4f{width:1366.051463pt;}
._17{width:1439.064256pt;}
._90{width:1800.306667pt;}
._c{width:1821.560000pt;}
._3a{width:3136.840000pt;}
.fs4{font-size:26.565333pt;}
.fs19{font-size:31.880533pt;}
.fs18{font-size:33.474240pt;}
.fs1a{font-size:37.193600pt;}
.fs5{font-size:37.194667pt;}
.fsa{font-size:40.381867pt;}
.fs3{font-size:40.384000pt;}
.fs7{font-size:42.506667pt;}
.fs8{font-size:42.507200pt;}
.fsb{font-size:42.560000pt;}
.fs17{font-size:43.038720pt;}
.fs15{font-size:45.440000pt;}
.fs14{font-size:46.354667pt;}
.fs6{font-size:47.818667pt;}
.fs16{font-size:47.820800pt;}
.fsc{font-size:48.000000pt;}
.fs11{font-size:48.793600pt;}
.fs12{font-size:49.098667pt;}
.fs10{font-size:49.403733pt;}
.fs9{font-size:53.133867pt;}
.fs1{font-size:53.136000pt;}
.fsd{font-size:53.440000pt;}
.fsf{font-size:55.503467pt;}
.fse{font-size:64.000000pt;}
.fs2{font-size:95.642667pt;}
.fs13{font-size:103.993600pt;}
.fs0{font-size:134.387200pt;}
.y88{bottom:-141.146267pt;}
.y91{bottom:-121.545891pt;}
.y90{bottom:-103.626123pt;}
.y8f{bottom:-85.626195pt;}
.y8e{bottom:-67.626267pt;}
.y8d{bottom:-33.946667pt;}
.y8c{bottom:-16.586267pt;}
.y0{bottom:0.000000pt;}
.yb0{bottom:5.600400pt;}
.y8b{bottom:10.853733pt;}
.y2{bottom:13.168266pt;}
.ya4{bottom:15.654675pt;}
.yae{bottom:15.973466pt;}
.yb7{bottom:16.613733pt;}
.yad{bottom:34.213733pt;}
.yb8{bottom:34.533183pt;}
.ya5{bottom:34.695158pt;}
.ya3{bottom:34.934247pt;}
.ya2{bottom:48.453733pt;}
.y2e{bottom:56.693333pt;}
.ya0{bottom:72.213733pt;}
.ya1{bottom:88.133733pt;}
.y85{bottom:100.754667pt;}
.y12b{bottom:101.408000pt;}
.ya6{bottom:103.013733pt;}
.ybf{bottom:103.528000pt;}
.y2d{bottom:104.008000pt;}
.y145{bottom:106.545333pt;}
.y5e{bottom:108.724000pt;}
.y177{bottom:111.117333pt;}
.y84{bottom:118.766667pt;}
.y12a{bottom:119.420000pt;}
.ybe{bottom:121.540000pt;}
.y2c{bottom:122.020000pt;}
.y144{bottom:124.558667pt;}
.y5d{bottom:126.737333pt;}
.y176{bottom:128.333333pt;}
.y83{bottom:136.780000pt;}
.y129{bottom:137.433333pt;}
.ybd{bottom:139.553333pt;}
.y2b{bottom:140.033333pt;}
.y143{bottom:142.570667pt;}
.y5c{bottom:144.749333pt;}
.y175{bottom:145.549333pt;}
.y82{bottom:154.792000pt;}
.ya7{bottom:154.853071pt;}
.y128{bottom:155.445333pt;}
.y2a{bottom:158.045333pt;}
.y142{bottom:160.584000pt;}
.y5b{bottom:162.762667pt;}
.y174{bottom:162.764000pt;}
.y1a6{bottom:170.854667pt;}
.y81{bottom:172.804000pt;}
.y127{bottom:173.458667pt;}
.yac{bottom:175.733867pt;}
.y29{bottom:176.057333pt;}
.y141{bottom:178.596000pt;}
.ybc{bottom:178.634667pt;}
.y173{bottom:179.980000pt;}
.y5a{bottom:180.774667pt;}
.yf9{bottom:186.569333pt;}
.y1a5{bottom:188.069333pt;}
.y80{bottom:190.817333pt;}
.y126{bottom:191.470667pt;}
.y28{bottom:194.070667pt;}
.ybb{bottom:195.730667pt;}
.y140{bottom:196.608000pt;}
.y172{bottom:197.194667pt;}
.y59{bottom:198.786667pt;}
.yf8{bottom:199.188000pt;}
.yf7{bottom:203.045333pt;}
.y1a4{bottom:205.285333pt;}
.ya8{bottom:206.533081pt;}
.y7f{bottom:208.829333pt;}
.y125{bottom:209.482667pt;}
.y27{bottom:212.082667pt;}
.y171{bottom:214.410667pt;}
.y13f{bottom:214.621333pt;}
.y58{bottom:216.800000pt;}
.yf6{bottom:217.762933pt;}
.y86{bottom:220.981333pt;}
.y7e{bottom:226.842667pt;}
.y124{bottom:227.496000pt;}
.y26{bottom:230.096000pt;}
.yf5{bottom:230.973733pt;}
.y170{bottom:231.626667pt;}
.y1a3{bottom:234.574667pt;}
.y57{bottom:234.812000pt;}
.y13e{bottom:240.604000pt;}
.yf4{bottom:244.184533pt;}
.y7d{bottom:244.854667pt;}
.y123{bottom:245.508000pt;}
.y25{bottom:248.108000pt;}
.y16f{bottom:248.841333pt;}
.y1a2{bottom:251.790667pt;}
.y56{bottom:252.825333pt;}
.yf3{bottom:257.394133pt;}
.ya9{bottom:258.933151pt;}
.y7b{bottom:262.866667pt;}
.y122{bottom:263.521333pt;}
.y16e{bottom:266.057333pt;}
.y24{bottom:266.120000pt;}
.y7c{bottom:267.689333pt;}
.y1a1{bottom:269.005333pt;}
.yf2{bottom:270.604933pt;}
.y55{bottom:270.837333pt;}
.y13d{bottom:271.554667pt;}
.y7a{bottom:280.880000pt;}
.y121{bottom:281.533333pt;}
.y16d{bottom:283.272000pt;}
.yf1{bottom:283.815733pt;}
.y1a0{bottom:286.221333pt;}
.y13c{bottom:289.566667pt;}
.y23{bottom:292.102667pt;}
.y54{bottom:296.820000pt;}
.yf0{bottom:297.026533pt;}
.y78{bottom:298.892000pt;}
.y120{bottom:299.545333pt;}
.y16c{bottom:300.488000pt;}
.y19f{bottom:303.437333pt;}
.y79{bottom:303.714667pt;}
.y13b{bottom:307.580000pt;}
.yaa{bottom:311.972999pt;}
.yef{bottom:315.938533pt;}
.y77{bottom:316.905333pt;}
.y11f{bottom:317.558667pt;}
.y16b{bottom:317.704000pt;}
.y19e{bottom:320.652000pt;}
.y13a{bottom:325.592000pt;}
.y53{bottom:327.770667pt;}
.yb5{bottom:328.453733pt;}
.yee{bottom:329.648533pt;}
.y76{bottom:334.917333pt;}
.y16a{bottom:334.918667pt;}
.y11e{bottom:335.570667pt;}
.y19d{bottom:337.868000pt;}
.y139{bottom:343.604000pt;}
.y52{bottom:345.782667pt;}
.yb4{bottom:346.134344pt;}
.yed{bottom:348.620533pt;}
.y169{bottom:352.134667pt;}
.y75{bottom:352.929333pt;}
.y11d{bottom:353.584000pt;}
.y19c{bottom:355.082667pt;}
.yd6{bottom:355.117333pt;}
.y22{bottom:360.021333pt;}
.y138{bottom:361.617333pt;}
.yec{bottom:361.831333pt;}
.yb1{bottom:361.973733pt;}
.y51{bottom:363.796000pt;}
.yab{bottom:364.373069pt;}
.y168{bottom:369.349333pt;}
.yd5{bottom:369.834667pt;}
.y74{bottom:370.942667pt;}
.y11c{bottom:371.596000pt;}
.y19b{bottom:372.298667pt;}
.yeb{bottom:375.042133pt;}
.y137{bottom:379.629333pt;}
.y50{bottom:381.808000pt;}
.yd4{bottom:383.045467pt;}
.y167{bottom:386.565333pt;}
.yea{bottom:388.192933pt;}
.y73{bottom:388.954667pt;}
.y19a{bottom:389.514667pt;}
.y11b{bottom:389.608000pt;}
.y21{bottom:393.974667pt;}
.yd3{bottom:396.256267pt;}
.y136{bottom:397.642667pt;}
.y4f{bottom:399.821333pt;}
.ye9{bottom:401.902933pt;}
.y166{bottom:403.781333pt;}
.y199{bottom:406.729333pt;}
.y72{bottom:406.968000pt;}
.y11a{bottom:407.621333pt;}
.yd2{bottom:409.467067pt;}
.y20{bottom:411.986667pt;}
.y9f{bottom:413.254773pt;}
.y9d{bottom:413.813105pt;}
.y135{bottom:415.654667pt;}
.yb9{bottom:415.813692pt;}
.y4e{bottom:417.833333pt;}
.ye8{bottom:420.874933pt;}
.y165{bottom:420.996000pt;}
.yd0{bottom:422.616667pt;}
.y198{bottom:423.945333pt;}
.y71{bottom:424.980000pt;}
.y119{bottom:425.633333pt;}
.yd1{bottom:426.522667pt;}
.y1f{bottom:430.000000pt;}
.y9c{bottom:432.453480pt;}
.y9e{bottom:432.853733pt;}
.y134{bottom:433.666667pt;}
.yba{bottom:433.733142pt;}
.ye7{bottom:434.085733pt;}
.y4d{bottom:435.845333pt;}
.ycf{bottom:436.327867pt;}
.y197{bottom:441.160000pt;}
.y70{bottom:442.992000pt;}
.y118{bottom:443.646667pt;}
.y164{bottom:446.181333pt;}
.ye6{bottom:447.296533pt;}
.y1e{bottom:448.012000pt;}
.yce{bottom:449.537467pt;}
.y9b{bottom:449.733733pt;}
.y133{bottom:451.680000pt;}
.y4c{bottom:453.858667pt;}
.y196{bottom:458.376000pt;}
.ye5{bottom:460.507333pt;}
.y117{bottom:461.658667pt;}
.ycd{bottom:462.748267pt;}
.y1d{bottom:466.025333pt;}
.y6f{bottom:468.974667pt;}
.y132{bottom:469.692000pt;}
.y4b{bottom:471.870667pt;}
.y93{bottom:471.973733pt;}
.y195{bottom:475.592000pt;}
.ye4{bottom:479.479333pt;}
.y116{bottom:479.670667pt;}
.ycc{bottom:481.720267pt;}
.y1c{bottom:484.037333pt;}
.y9a{bottom:486.773733pt;}
.y163{bottom:486.904000pt;}
.y131{bottom:487.704000pt;}
.y4a{bottom:489.884000pt;}
.ye3{bottom:492.690133pt;}
.y194{bottom:492.806667pt;}
.y115{bottom:497.684000pt;}
.y6e{bottom:499.925333pt;}
.ycb{bottom:500.633467pt;}
.y99{bottom:501.492318pt;}
.y1b{bottom:502.049333pt;}
.y162{bottom:505.479067pt;}
.y130{bottom:505.717333pt;}
.ye2{bottom:505.899733pt;}
.y49{bottom:507.896000pt;}
.y193{bottom:510.022667pt;}
.yca{bottom:513.784267pt;}
.y114{bottom:515.696000pt;}
.y6d{bottom:517.938667pt;}
.y161{bottom:518.689867pt;}
.ye1{bottom:519.110533pt;}
.y1a{bottom:520.062667pt;}
.y12f{bottom:523.729333pt;}
.y48{bottom:525.908000pt;}
.y192{bottom:527.237333pt;}
.y160{bottom:531.900667pt;}
.y113{bottom:533.709333pt;}
.y6c{bottom:535.950667pt;}
.y19{bottom:538.074667pt;}
.ye0{bottom:538.083733pt;}
.y12e{bottom:541.742667pt;}
.y47{bottom:543.921333pt;}
.y191{bottom:544.453333pt;}
.y15f{bottom:545.110267pt;}
.yc9{bottom:545.702667pt;}
.ydf{bottom:551.293333pt;}
.y112{bottom:551.721333pt;}
.y94{bottom:553.573733pt;}
.y6b{bottom:553.964000pt;}
.y18{bottom:556.088000pt;}
.y15e{bottom:558.321067pt;}
.y12d{bottom:559.754667pt;}
.y190{bottom:561.669333pt;}
.y46{bottom:561.933333pt;}
.yc8{bottom:562.798667pt;}
.yde{bottom:564.504133pt;}
.y111{bottom:569.733333pt;}
.y15d{bottom:571.531867pt;}
.y6a{bottom:571.976000pt;}
.y17{bottom:574.100000pt;}
.y92{bottom:574.533733pt;}
.y12c{bottom:577.766667pt;}
.y18f{bottom:578.884000pt;}
.y45{bottom:579.945333pt;}
.ydd{bottom:583.417333pt;}
.y15c{bottom:584.742667pt;}
.y69{bottom:589.988000pt;}
.y16{bottom:592.112000pt;}
.y110{bottom:595.716000pt;}
.yc7{bottom:595.780000pt;}
.ydb{bottom:596.074933pt;}
.y18e{bottom:596.100000pt;}
.ydc{bottom:596.566933pt;}
.y15b{bottom:597.952267pt;}
.y44{bottom:597.958667pt;}
.y95{bottom:606.533300pt;}
.y68{bottom:608.001333pt;}
.y15{bottom:610.125333pt;}
.y18d{bottom:613.314667pt;}
.yc6{bottom:613.792000pt;}
.yda{bottom:615.540133pt;}
.y43{bottom:615.970667pt;}
.y15a{bottom:616.925467pt;}
.y67{bottom:626.013333pt;}
.y14{bottom:628.137333pt;}
.y159{bottom:630.135067pt;}
.y18c{bottom:630.530667pt;}
.yc5{bottom:631.805333pt;}
.y42{bottom:633.984000pt;}
.y10f{bottom:638.834667pt;}
.y158{bottom:643.345867pt;}
.y66{bottom:644.026667pt;}
.yd9{bottom:647.457333pt;}
.y18b{bottom:647.746667pt;}
.yc4{bottom:649.817333pt;}
.y41{bottom:651.996000pt;}
.y10e{bottom:654.333333pt;}
.y157{bottom:656.556667pt;}
.y96{bottom:659.092697pt;}
.y13{bottom:659.633333pt;}
.yd8{bottom:664.553333pt;}
.y18a{bottom:664.961333pt;}
.yc3{bottom:667.829333pt;}
.y10d{bottom:669.012000pt;}
.y156{bottom:669.767467pt;}
.y65{bottom:670.008000pt;}
.y40{bottom:677.978667pt;}
.y189{bottom:682.177333pt;}
.y155{bottom:682.977067pt;}
.y12{bottom:683.742667pt;}
.yc2{bottom:685.842667pt;}
.y10c{bottom:690.025333pt;}
.y154{bottom:696.187867pt;}
.y188{bottom:699.392000pt;}
.y11{bottom:699.882667pt;}
.y64{bottom:700.958667pt;}
.yc1{bottom:703.854667pt;}
.y10b{bottom:705.193333pt;}
.y3f{bottom:708.929333pt;}
.y97{bottom:709.652478pt;}
.yd7{bottom:709.729333pt;}
.y153{bottom:715.101067pt;}
.y187{bottom:716.608000pt;}
.y63{bottom:718.972000pt;}
.y10{bottom:720.361333pt;}
.y10a{bottom:720.426667pt;}
.yc0{bottom:721.868000pt;}
.y152{bottom:728.251867pt;}
.yb6{bottom:729.414021pt;}
.y186{bottom:733.824000pt;}
.y109{bottom:735.105333pt;}
.yf{bottom:736.501333pt;}
.y62{bottom:736.984000pt;}
.y3e{bottom:739.880000pt;}
.y151{bottom:747.163867pt;}
.yb3{bottom:747.894344pt;}
.ye{bottom:748.301333pt;}
.y185{bottom:751.038667pt;}
.y61{bottom:754.997333pt;}
.y108{bottom:756.118667pt;}
.y3d{bottom:757.892000pt;}
.y98{bottom:763.251823pt;}
.yb2{bottom:763.733733pt;}
.y184{bottom:768.254667pt;}
.yd{bottom:768.780000pt;}
.y107{bottom:770.730667pt;}
.y60{bottom:773.009333pt;}
.y3c{bottom:775.905333pt;}
.y150{bottom:779.081333pt;}
.yc{bottom:784.920000pt;}
.y183{bottom:785.469333pt;}
.y8a{bottom:791.413805pt;}
.y106{bottom:791.810667pt;}
.y3b{bottom:793.917333pt;}
.y14f{bottom:796.177333pt;}
.y5f{bottom:798.992000pt;}
.yb{bottom:801.058667pt;}
.y182{bottom:802.685333pt;}
.y105{bottom:806.489333pt;}
.y89{bottom:809.413733pt;}
.y3a{bottom:811.930667pt;}
.ya{bottom:812.858667pt;}
.y14e{bottom:813.273333pt;}
.y181{bottom:819.901333pt;}
.y104{bottom:821.168000pt;}
.y9{bottom:828.998667pt;}
.y39{bottom:829.942667pt;}
.y14d{bottom:830.369333pt;}
.y103{bottom:835.846667pt;}
.y180{bottom:837.116000pt;}
.y87{bottom:842.693733pt;}
.y38{bottom:847.954667pt;}
.y8{bottom:849.477333pt;}
.y17f{bottom:854.332000pt;}
.y102{bottom:856.860000pt;}
.y14c{bottom:864.108000pt;}
.y37{bottom:865.968000pt;}
.y7{bottom:869.248000pt;}
.y101{bottom:871.472000pt;}
.y17e{bottom:871.546667pt;}
.y36{bottom:883.980000pt;}
.y100{bottom:886.150667pt;}
.y6{bottom:887.260000pt;}
.y17d{bottom:888.762667pt;}
.y14b{bottom:895.058667pt;}
.y35{bottom:901.993333pt;}
.y17c{bottom:905.978667pt;}
.yff{bottom:907.164000pt;}
.y14a{bottom:916.538667pt;}
.y34{bottom:920.005333pt;}
.yfe{bottom:921.776000pt;}
.y17b{bottom:923.193333pt;}
.y5{bottom:925.198667pt;}
.yfd{bottom:925.213333pt;}
.y149{bottom:930.048000pt;}
.y33{bottom:938.017333pt;}
.y17a{bottom:940.409333pt;}
.yfc{bottom:942.856000pt;}
.y148{bottom:943.557333pt;}
.y4{bottom:952.217333pt;}
.y32{bottom:956.030667pt;}
.y179{bottom:957.624000pt;}
.y147{bottom:965.037333pt;}
.y31{bottom:974.042667pt;}
.y178{bottom:974.840000pt;}
.yaf{bottom:975.754667pt;}
.yfb{bottom:976.276000pt;}
.y3{bottom:977.906667pt;}
.y146{bottom:978.546667pt;}
.y30{bottom:992.056000pt;}
.yfa{bottom:993.372000pt;}
.y1{bottom:1011.514667pt;}
.y2f{bottom:1038.548000pt;}
.h27{height:23.209028pt;}
.h26{height:24.369247pt;}
.h1e{height:26.880000pt;}
.h8{height:27.077717pt;}
.h11{height:29.397999pt;}
.h2b{height:30.945242pt;}
.h24{height:31.116995pt;}
.hc{height:31.157387pt;}
.hd{height:31.157778pt;}
.h25{height:31.332188pt;}
.h21{height:31.550625pt;}
.h20{height:32.185711pt;}
.h14{height:33.328125pt;}
.h1b{height:33.879150pt;}
.h19{height:34.302788pt;}
.h22{height:34.574438pt;}
.h9{height:34.811989pt;}
.h23{height:34.813542pt;}
.h1a{height:34.945036pt;}
.h32{height:35.052646pt;}
.h1d{height:35.691585pt;}
.h1c{height:36.653919pt;}
.hf{height:38.415786pt;}
.ha{height:38.417328pt;}
.h18{height:38.538052pt;}
.he{height:38.681455pt;}
.hb{height:38.683008pt;}
.h10{height:38.947124pt;}
.h4{height:38.948688pt;}
.h13{height:39.359687pt;}
.h2a{height:39.993247pt;}
.h33{height:43.660390pt;}
.h17{height:44.390625pt;}
.h2e{height:44.431607pt;}
.h2f{height:44.436941pt;}
.h2{height:45.272024pt;}
.h7{height:48.482965pt;}
.h6{height:48.488299pt;}
.h15{height:49.421563pt;}
.h31{height:57.416195pt;}
.h16{height:59.187500pt;}
.h2c{height:64.034876pt;}
.h2d{height:64.040209pt;}
.h5{height:69.149648pt;}
.h1f{height:72.206494pt;}
.h30{height:83.720195pt;}
.h3{height:91.114522pt;}
.h12{height:784.360000pt;}
.h28{height:793.701333pt;}
.h29{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:18.480000pt;}
.w2{width:176.724208pt;}
.w3{width:554.179333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w5{width:1122.520000pt;}
.w6{width:1122.666667pt;}
.x2e{left:-17.919333pt;}
.x0{left:0.000000pt;}
.x30{left:10.400667pt;}
.x37{left:11.920065pt;}
.x2{left:51.605525pt;}
.x36{left:69.759844pt;}
.x40{left:70.960667pt;}
.x42{left:95.840667pt;}
.x1{left:102.046667pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.x7d{left:117.101733pt;}
.x2d{left:119.762000pt;}
.x4{left:129.929333pt;}
.x3f{left:134.240667pt;}
.x32{left:138.560667pt;}
.x3e{left:140.481232pt;}
.x7e{left:143.228000pt;}
.x33{left:144.400814pt;}
.x3d{left:146.960667pt;}
.x38{left:148.720965pt;}
.xb{left:150.241333pt;}
.x3b{left:152.239804pt;}
.x34{left:153.520667pt;}
.xc{left:156.882667pt;}
.xd{left:160.270667pt;}
.x4f{left:161.744000pt;}
.x6{left:167.420000pt;}
.x50{left:169.211600pt;}
.x53{left:175.585333pt;}
.x60{left:177.793333pt;}
.x78{left:183.901333pt;}
.x49{left:187.426667pt;}
.x6e{left:190.902667pt;}
.x14{left:192.637333pt;}
.x15{left:199.278667pt;}
.xe{left:200.168000pt;}
.x6a{left:203.364000pt;}
.x3c{left:205.758789pt;}
.xf{left:206.810667pt;}
.x7a{left:211.818933pt;}
.x10{left:213.318667pt;}
.x76{left:214.253333pt;}
.x41{left:216.882667pt;}
.x21{left:218.418667pt;}
.x11{left:219.961333pt;}
.x5f{left:224.409333pt;}
.x8d{left:225.868000pt;}
.x77{left:227.500000pt;}
.x22{left:231.702667pt;}
.x6b{left:233.274667pt;}
.x8c{left:236.016000pt;}
.x73{left:237.800000pt;}
.x74{left:251.084000pt;}
.x39{left:257.440667pt;}
.x6f{left:260.145333pt;}
.x70{left:266.788000pt;}
.x71{left:270.148000pt;}
.x79{left:273.401733pt;}
.x35{left:277.680667pt;}
.x3a{left:279.440667pt;}
.x72{left:283.432000pt;}
.x1a{left:294.370667pt;}
.x31{left:296.160667pt;}
.x18{left:300.976000pt;}
.x1b{left:304.398667pt;}
.x1d{left:307.772000pt;}
.x19{left:314.258667pt;}
.x1c{left:317.682667pt;}
.x1e{left:321.056000pt;}
.x29{left:322.608000pt;}
.x1f{left:327.770667pt;}
.x2a{left:331.593333pt;}
.x52{left:337.470667pt;}
.x20{left:341.054667pt;}
.x51{left:389.454800pt;}
.x43{left:390.720667pt;}
.x44{left:392.080667pt;}
.x12{left:396.478667pt;}
.x7{left:398.736000pt;}
.x63{left:401.217333pt;}
.x13{left:403.121333pt;}
.x8{left:405.378667pt;}
.x4c{left:416.626400pt;}
.x64{left:418.258667pt;}
.x4e{left:421.038800pt;}
.x4d{left:425.879600pt;}
.x68{left:432.556000pt;}
.x47{left:439.920190pt;}
.x69{left:445.840000pt;}
.x58{left:447.196667pt;}
.x61{left:459.489333pt;}
.x59{left:462.533867pt;}
.x7b{left:471.857733pt;}
.x87{left:476.249333pt;}
.x54{left:479.054267pt;}
.x89{left:488.321333pt;}
.x45{left:493.440667pt;}
.x48{left:494.720270pt;}
.x46{left:496.880667pt;}
.x2b{left:498.830667pt;}
.x88{left:500.160000pt;}
.x65{left:501.253333pt;}
.x4a{left:503.066667pt;}
.x2c{left:507.848000pt;}
.x4b{left:512.368000pt;}
.x23{left:516.900000pt;}
.x83{left:523.120000pt;}
.x66{left:524.272000pt;}
.x81{left:528.857333pt;}
.x24{left:530.184000pt;}
.x85{left:534.221333pt;}
.x5a{left:535.610267pt;}
.x67{left:537.726667pt;}
.x7c{left:539.433333pt;}
.x8a{left:543.304000pt;}
.x2f{left:544.880667pt;}
.x84{left:547.030667pt;}
.x82{left:552.768000pt;}
.x5b{left:556.327067pt;}
.x86{left:558.130667pt;}
.x27{left:559.297333pt;}
.x8b{left:567.213333pt;}
.x28{left:572.581333pt;}
.x7f{left:611.057333pt;}
.x62{left:616.232000pt;}
.x9{left:632.406667pt;}
.x80{left:634.968000pt;}
.xa{left:639.049333pt;}
.x75{left:643.433333pt;}
.x55{left:650.433467pt;}
.x25{left:656.125333pt;}
.x26{left:669.408000pt;}
.x16{left:673.105333pt;}
.x6c{left:675.685333pt;}
.x6d{left:678.982667pt;}
.x17{left:686.389333pt;}
.x56{left:724.315067pt;}
.x5c{left:739.024667pt;}
.x5d{left:812.101067pt;}
.x5e{left:835.508267pt;}
.x57{left:922.603067pt;}
}




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