
    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_d82903ad652bd44657492547.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.889000;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_282b4ba396b8fd31f14f90d1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.908000;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_31a5eb39c2361e762a4ca0de.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_89e7bfdf1fa21012f26677e1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_cd56e34612668a67123e3c68.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_051d8f72305a25fcc82645f1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_52589b9577aad7cb413feb27.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ad7f2ac739a9dab42ebd6344.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_657fc2c2b86fb44ddeddd1d6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_54a4db11ab22d093d81e2d58.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1d88c35cb162b1da78fe4851.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_dfd2618292bf7b54a7ad6c7d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.708000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d1a4db0d51af6d27e7b18963.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_0fcb64aef4a84e4210e8cba1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_13afed3de73a5923dcfefb35.woff2')format("woff");}.fff{font-family:fff;line-height:0.705000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_0c7e285e8e70341a8df47c68.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.686000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_c49ed3299bcdb3b703d406e3.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.687000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_f06c3412c3f1afcfd080c497.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.520000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_b39ba01d76d76d83b79b05e3.woff2')format("woff");}.ff13{font-family:ff13;line-height:2.481000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_61d627f9e95df7202ee765e3.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.724235;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.m1f{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);}
.m1c{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);}
.m21{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);}
.m26{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);}
.m11{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);}
.m22{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);}
.me{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);}
.m17{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);}
.ma{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);}
.mb{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);}
.m25{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);}
.m13{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);}
.m24{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);}
.m12{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);}
.m5{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);}
.m15{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);}
.m7{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);}
.m6{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);}
.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);}
.m3{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);}
.m10{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);}
.mf{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);}
.m18{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);}
.m20{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);}
.m14{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);}
.m1a{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);}
.m9{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);}
.m23{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);}
.m4{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);}
.m1b{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.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);}
.m1d{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);}
.md{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);}
.m2{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);}
.mc{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:-16.464000px;}
.v6{vertical-align:-10.998000px;}
.v1{vertical-align:-9.816000px;}
.v2{vertical-align:-6.642000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.622000px;}
.v4{vertical-align:9.822000px;}
.v9{vertical-align:13.614000px;}
.va{vertical-align:16.182000px;}
.vc{vertical-align:19.518000px;}
.v5{vertical-align:23.754000px;}
.v8{vertical-align:27.024000px;}
.vb{vertical-align:67.770000px;}
.ls4{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.000520px;}
.ls20{letter-spacing:0.001059px;}
.ls8e{letter-spacing:0.002087px;}
.ls2e{letter-spacing:0.003239px;}
.ls98{letter-spacing:0.003962px;}
.ls3f{letter-spacing:0.004249px;}
.ls27{letter-spacing:0.004322px;}
.ls26{letter-spacing:0.005214px;}
.ls94{letter-spacing:0.005962px;}
.ls68{letter-spacing:0.006520px;}
.ls31{letter-spacing:0.009197px;}
.ls84{letter-spacing:0.011765px;}
.ls51{letter-spacing:0.013436px;}
.ls38{letter-spacing:0.014595px;}
.ls82{letter-spacing:0.014681px;}
.lse{letter-spacing:0.015123px;}
.ls2b{letter-spacing:0.015197px;}
.lsa0{letter-spacing:0.020567px;}
.ls59{letter-spacing:0.021617px;}
.ls7a{letter-spacing:0.021669px;}
.ls4d{letter-spacing:0.022233px;}
.ls8a{letter-spacing:0.024412px;}
.ls8f{letter-spacing:0.025607px;}
.ls5c{letter-spacing:0.027617px;}
.ls6e{letter-spacing:0.031937px;}
.ls99{letter-spacing:0.034625px;}
.ls3a{letter-spacing:0.327273px;}
.ls53{letter-spacing:1.730881px;}
.ls41{letter-spacing:1.767274px;}
.lsa1{letter-spacing:1.777375px;}
.ls43{letter-spacing:1.824443px;}
.ls7d{letter-spacing:1.830443px;}
.ls1d{letter-spacing:1.832729px;}
.ls6f{letter-spacing:2.356366px;}
.ls12{letter-spacing:2.487275px;}
.ls70{letter-spacing:2.984915px;}
.ls66{letter-spacing:2.987214px;}
.ls44{letter-spacing:2.988103px;}
.ls28{letter-spacing:2.988532px;}
.ls96{letter-spacing:2.989223px;}
.ls3b{letter-spacing:2.993214px;}
.ls35{letter-spacing:4.785806px;}
.ls32{letter-spacing:4.789536px;}
.ls3c{letter-spacing:5.105459px;}
.ls5f{letter-spacing:5.367277px;}
.ls2c{letter-spacing:5.982532px;}
.ls8c{letter-spacing:6.480005px;}
.ls24{letter-spacing:6.719578px;}
.ls3{letter-spacing:9.032735px;}
.lsa4{letter-spacing:9.086147px;}
.ls81{letter-spacing:9.092147px;}
.ls71{letter-spacing:9.098189px;}
.ls87{letter-spacing:9.106516px;}
.ls7{letter-spacing:10.930918px;}
.ls85{letter-spacing:14.280075px;}
.lsa{letter-spacing:14.530921px;}
.ls9{letter-spacing:14.596376px;}
.ls1a{letter-spacing:14.661830px;}
.ls57{letter-spacing:16.363650px;}
.ls4a{letter-spacing:16.429105px;}
.ls2d{letter-spacing:17.417214px;}
.lsf{letter-spacing:17.528915px;}
.ls39{letter-spacing:17.531214px;}
.ls11{letter-spacing:17.534915px;}
.ls30{letter-spacing:17.537214px;}
.ls67{letter-spacing:17.869106px;}
.ls14{letter-spacing:18.130924px;}
.lsc{letter-spacing:18.196379px;}
.ls63{letter-spacing:18.261833px;}
.ls6{letter-spacing:18.327288px;}
.ls95{letter-spacing:18.458197px;}
.ls19{letter-spacing:18.523652px;}
.ls49{letter-spacing:18.720016px;}
.ls6c{letter-spacing:19.701835px;}
.ls1f{letter-spacing:20.160017px;}
.ls83{letter-spacing:20.487290px;}
.ls2a{letter-spacing:20.520532px;}
.ls50{letter-spacing:20.525950px;}
.ls18{letter-spacing:20.618199px;}
.ls10{letter-spacing:20.683654px;}
.ls23{letter-spacing:21.164915px;}
.ls4b{letter-spacing:21.168103px;}
.lsb{letter-spacing:21.170915px;}
.ls21{letter-spacing:21.173214px;}
.ls75{letter-spacing:21.174103px;}
.lsa3{letter-spacing:21.188915px;}
.ls6d{letter-spacing:21.200915px;}
.ls74{letter-spacing:21.534563px;}
.ls17{letter-spacing:21.600018px;}
.ls0{letter-spacing:21.796382px;}
.ls1{letter-spacing:21.861836px;}
.ls15{letter-spacing:21.927291px;}
.ls69{letter-spacing:22.058200px;}
.ls90{letter-spacing:22.123655px;}
.ls6b{letter-spacing:22.254564px;}
.ls56{letter-spacing:22.712746px;}
.ls34{letter-spacing:22.963536px;}
.ls2f{letter-spacing:22.965806px;}
.ls9e{letter-spacing:23.105474px;}
.ls7e{letter-spacing:23.170928px;}
.ls22{letter-spacing:23.301838px;}
.ls62{letter-spacing:23.367292px;}
.ls9d{letter-spacing:23.432747px;}
.ls16{letter-spacing:23.563656px;}
.ls4c{letter-spacing:23.629111px;}
.ls9f{letter-spacing:24.021838px;}
.ls89{letter-spacing:24.087293px;}
.ls76{letter-spacing:24.152747px;}
.ls29{letter-spacing:24.156532px;}
.ls7c{letter-spacing:24.283657px;}
.ls1c{letter-spacing:24.676384px;}
.ls78{letter-spacing:24.761214px;}
.lsd{letter-spacing:24.800915px;}
.ls3d{letter-spacing:24.802626px;}
.ls72{letter-spacing:24.803214px;}
.ls73{letter-spacing:24.806915px;}
.ls42{letter-spacing:24.807293px;}
.ls37{letter-spacing:24.809214px;}
.ls54{letter-spacing:24.810103px;}
.ls8b{letter-spacing:24.872748px;}
.ls47{letter-spacing:25.134566px;}
.ls1e{letter-spacing:25.330930px;}
.ls5b{letter-spacing:25.461839px;}
.ls5a{letter-spacing:25.727214px;}
.ls9c{letter-spacing:26.312749px;}
.ls65{letter-spacing:26.901841px;}
.ls13{letter-spacing:26.967295px;}
.ls5e{letter-spacing:27.163659px;}
.ls5{letter-spacing:27.294568px;}
.ls46{letter-spacing:27.490932px;}
.ls79{letter-spacing:27.791950px;}
.ls52{letter-spacing:27.797950px;}
.ls5d{letter-spacing:28.276387px;}
.ls64{letter-spacing:28.341842px;}
.ls77{letter-spacing:28.472751px;}
.ls97{letter-spacing:28.996388px;}
.ls2{letter-spacing:29.061842px;}
.ls3e{letter-spacing:29.323661px;}
.ls8d{letter-spacing:29.520025px;}
.ls92{letter-spacing:29.585479px;}
.ls6a{letter-spacing:29.781843px;}
.ls48{letter-spacing:29.847298px;}
.ls1b{letter-spacing:29.912752px;}
.lsa2{letter-spacing:30.043661px;}
.ls7b{letter-spacing:30.109116px;}
.ls7f{letter-spacing:30.137578px;}
.ls60{letter-spacing:30.894571px;}
.ls91{letter-spacing:30.960026px;}
.ls40{letter-spacing:31.156390px;}
.ls61{letter-spacing:31.549117px;}
.ls93{letter-spacing:31.614572px;}
.ls58{letter-spacing:31.810936px;}
.ls88{letter-spacing:32.530936px;}
.ls45{letter-spacing:32.596391px;}
.ls8{letter-spacing:32.727300px;}
.ls36{letter-spacing:33.840028px;}
.ls55{letter-spacing:37.309122px;}
.ls80{letter-spacing:37.698075px;}
.ls4e{letter-spacing:39.353214px;}
.ls4f{letter-spacing:42.341950px;}
.ls9a{letter-spacing:65.454600px;}
.ls86{letter-spacing:85.090980px;}
.ls33{letter-spacing:141.840118px;}
.ls9b{letter-spacing:465.410915px;}
.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;}
}
.ws38{word-spacing:-80.116430px;}
.ws4d{word-spacing:-65.454600px;}
.ws9e{word-spacing:-60.833505px;}
.ws35{word-spacing:-50.923679px;}
.wsc6{word-spacing:-47.323676px;}
.ws34{word-spacing:-47.258221px;}
.wsc1{word-spacing:-47.192767px;}
.ws33{word-spacing:-42.637126px;}
.ws57{word-spacing:-42.610945px;}
.ws59{word-spacing:-40.778216px;}
.wsac{word-spacing:-40.712761px;}
.wsa0{word-spacing:-40.647307px;}
.ws48{word-spacing:-38.683669px;}
.ws75{word-spacing:-33.453846px;}
.ws71{word-spacing:-33.250937px;}
.ws42{word-spacing:-33.211407px;}
.ws3d{word-spacing:-32.727300px;}
.ws3b{word-spacing:-31.771663px;}
.ws31{word-spacing:-31.706208px;}
.ws96{word-spacing:-25.120183px;}
.ws6b{word-spacing:-24.506202px;}
.ws88{word-spacing:-24.440748px;}
.ws80{word-spacing:-20.840745px;}
.ws4a{word-spacing:-18.183288px;}
.wsbb{word-spacing:-16.952741px;}
.ws2e{word-spacing:-16.494559px;}
.ws0{word-spacing:-16.175590px;}
.ws2c{word-spacing:-16.139475px;}
.wsbe{word-spacing:-15.970922px;}
.ws94{word-spacing:-15.342558px;}
.ws62{word-spacing:-15.277104px;}
.wsf{word-spacing:-14.704798px;}
.ws2f{word-spacing:-14.334557px;}
.ws40{word-spacing:-14.203648px;}
.ws87{word-spacing:-14.138194px;}
.ws82{word-spacing:-13.941830px;}
.ws45{word-spacing:-13.878516px;}
.ws17{word-spacing:-13.810921px;}
.wsb3{word-spacing:-13.614557px;}
.ws5e{word-spacing:-13.549102px;}
.ws27{word-spacing:-13.449600px;}
.wsa7{word-spacing:-13.418193px;}
.ws30{word-spacing:-13.097465px;}
.ws86{word-spacing:-12.966556px;}
.ws4c{word-spacing:-12.960011px;}
.ws85{word-spacing:-12.901102px;}
.ws4e{word-spacing:-12.894556px;}
.ws83{word-spacing:-12.829102px;}
.ws5b{word-spacing:-12.763647px;}
.ws7c{word-spacing:-12.573829px;}
.ws3f{word-spacing:-12.567283px;}
.ws7d{word-spacing:-12.508374px;}
.ws3a{word-spacing:-12.501829px;}
.wsd{word-spacing:-12.373549px;}
.ws41{word-spacing:-12.370919px;}
.ws1c{word-spacing:-12.305465px;}
.wsbd{word-spacing:-12.109101px;}
.ws99{word-spacing:-12.043646px;}
.ws63{word-spacing:-11.978192px;}
.ws8b{word-spacing:-11.847283px;}
.ws60{word-spacing:-11.650919px;}
.ws74{word-spacing:-11.585464px;}
.wsc5{word-spacing:-11.461100px;}
.ws92{word-spacing:-11.454555px;}
.ws29{word-spacing:-11.389100px;}
.ws20{word-spacing:-11.323646px;}
.ws2b{word-spacing:-11.258191px;}
.ws1a{word-spacing:-11.192737px;}
.ws18{word-spacing:-11.127282px;}
.ws26{word-spacing:-11.061827px;}
.ws6e{word-spacing:-10.996373px;}
.ws11{word-spacing:-10.930918px;}
.ws8a{word-spacing:-10.872009px;}
.ws19{word-spacing:-10.865464px;}
.ws2a{word-spacing:-10.800009px;}
.ws21{word-spacing:-10.734554px;}
.ws5f{word-spacing:-10.669100px;}
.ws2{word-spacing:-10.640057px;}
.ws39{word-spacing:-10.603645px;}
.ws79{word-spacing:-10.544736px;}
.ws24{word-spacing:-10.538191px;}
.wsa2{word-spacing:-10.479281px;}
.ws64{word-spacing:-10.472736px;}
.wsc4{word-spacing:-10.413827px;}
.ws65{word-spacing:-10.407281px;}
.ws6c{word-spacing:-10.348372px;}
.ws2d{word-spacing:-10.341827px;}
.ws7a{word-spacing:-10.282918px;}
.ws44{word-spacing:-10.242516px;}
.ws8{word-spacing:-10.221628px;}
.ws7b{word-spacing:-10.217463px;}
.ws3c{word-spacing:-10.210918px;}
.wsaa{word-spacing:-10.152008px;}
.ws28{word-spacing:-10.145463px;}
.ws6d{word-spacing:-10.086554px;}
.ws1b{word-spacing:-10.021099px;}
.ws9a{word-spacing:-10.014554px;}
.wsa{word-spacing:-9.982525px;}
.ws8d{word-spacing:-9.955645px;}
.wsc2{word-spacing:-9.949099px;}
.ws77{word-spacing:-9.890190px;}
.ws55{word-spacing:-9.883645px;}
.ws1d{word-spacing:-9.824735px;}
.wsbf{word-spacing:-9.818190px;}
.ws9c{word-spacing:-9.759281px;}
.ws14{word-spacing:-9.752735px;}
.ws3{word-spacing:-9.749400px;}
.ws8f{word-spacing:-9.693826px;}
.wsab{word-spacing:-9.562917px;}
.wsa8{word-spacing:-9.556372px;}
.ws9b{word-spacing:-9.497462px;}
.ws23{word-spacing:-9.366553px;}
.wsb8{word-spacing:-9.301099px;}
.wsc3{word-spacing:-9.235644px;}
.wsa4{word-spacing:-9.229099px;}
.wsb2{word-spacing:-9.170189px;}
.ws36{word-spacing:-9.163644px;}
.ws50{word-spacing:-9.098189px;}
.wsb0{word-spacing:-9.039280px;}
.ws6f{word-spacing:-8.901826px;}
.ws1f{word-spacing:-8.777462px;}
.wsa6{word-spacing:-8.770916px;}
.wsa5{word-spacing:-8.705462px;}
.ws4{word-spacing:-8.667462px;}
.ws56{word-spacing:-8.640007px;}
.ws43{word-spacing:-8.443643px;}
.ws5{word-spacing:-8.368584px;}
.ws5d{word-spacing:-8.312734px;}
.wsb5{word-spacing:-8.181825px;}
.ws90{word-spacing:-8.116370px;}
.ws8c{word-spacing:-7.992007px;}
.ws51{word-spacing:-7.985461px;}
.ws81{word-spacing:-7.854552px;}
.wsb{word-spacing:-7.770828px;}
.wsc{word-spacing:-7.531726px;}
.wsb4{word-spacing:-7.527279px;}
.wsba{word-spacing:-7.396370px;}
.wse{word-spacing:-7.352399px;}
.wsa9{word-spacing:-7.265461px;}
.ws46{word-spacing:-7.200006px;}
.ws5c{word-spacing:-7.141097px;}
.ws91{word-spacing:-7.069097px;}
.ws6{word-spacing:-7.053521px;}
.wsb7{word-spacing:-6.944733px;}
.ws9{word-spacing:-6.933970px;}
.ws70{word-spacing:-6.872733px;}
.ws12{word-spacing:-6.807278px;}
.ws69{word-spacing:-6.748369px;}
.ws4f{word-spacing:-6.741824px;}
.ws15{word-spacing:-6.676369px;}
.ws25{word-spacing:-6.610915px;}
.ws22{word-spacing:-6.552005px;}
.ws7{word-spacing:-6.521518px;}
.wsb1{word-spacing:-6.421096px;}
.ws73{word-spacing:-6.414551px;}
.ws47{word-spacing:-6.283642px;}
.ws16{word-spacing:-6.224732px;}
.ws13{word-spacing:-6.152732px;}
.ws53{word-spacing:-5.890914px;}
.ws49{word-spacing:-5.832005px;}
.ws54{word-spacing:-5.439277px;}
.wsa3{word-spacing:-5.040004px;}
.wsbc{word-spacing:-4.843640px;}
.wsae{word-spacing:-4.581822px;}
.ws8e{word-spacing:-4.195640px;}
.wsb6{word-spacing:-3.992731px;}
.ws9f{word-spacing:-3.652367px;}
.ws4b{word-spacing:-3.586912px;}
.ws93{word-spacing:-3.534548px;}
.wsaf{word-spacing:-3.338185px;}
.ws95{word-spacing:-3.272730px;}
.wsb9{word-spacing:-2.290911px;}
.ws67{word-spacing:-1.570910px;}
.ws68{word-spacing:-0.183273px;}
.ws84{word-spacing:-0.117818px;}
.ws3e{word-spacing:-0.065455px;}
.ws98{word-spacing:-0.059776px;}
.ws32{word-spacing:-0.052364px;}
.ws97{word-spacing:-0.020889px;}
.ws1e{word-spacing:0.000000px;}
.ws37{word-spacing:0.013091px;}
.ws61{word-spacing:0.209455px;}
.ws9d{word-spacing:0.274909px;}
.ws7e{word-spacing:0.340364px;}
.ws66{word-spacing:1.125819px;}
.ws76{word-spacing:2.107638px;}
.wsc0{word-spacing:2.173093px;}
.ws52{word-spacing:5.314914px;}
.ws7f{word-spacing:19.636380px;}
.ws5a{word-spacing:21.120810px;}
.ws78{word-spacing:21.126810px;}
.wsad{word-spacing:21.162810px;}
.wsa1{word-spacing:21.216810px;}
.ws1{word-spacing:23.312640px;}
.ws72{word-spacing:28.650810px;}
.ws89{word-spacing:32.661845px;}
.ws6a{word-spacing:47.271312px;}
.ws10{word-spacing:48.418425px;}
.ws58{word-spacing:839.167245px;}
._16{margin-left:-14.661830px;}
._1d{margin-left:-10.930918px;}
._1c{margin-left:-8.694797px;}
._0{margin-left:-5.371205px;}
._2{margin-left:-3.945216px;}
._24{margin-left:-2.939180px;}
._1{margin-left:-1.936742px;}
._3{width:1.936742px;}
._19{width:3.600003px;}
._10{width:4.974550px;}
._23{width:6.432069px;}
._1b{width:9.360008px;}
._17{width:11.061827px;}
._a{width:16.199188px;}
._14{width:17.402692px;}
._15{width:21.600018px;}
._5{width:22.786433px;}
._9{width:24.077638px;}
._f{width:25.807052px;}
._4{width:27.153473px;}
._b{width:29.100401px;}
._e{width:30.948391px;}
._11{width:32.935327px;}
._8{width:34.347047px;}
._6{width:35.781661px;}
._7{width:36.881572px;}
._18{width:38.347440px;}
._1f{width:40.882229px;}
._d{width:42.757445px;}
._c{width:43.816023px;}
._1a{width:44.901856px;}
._20{width:48.867691px;}
._21{width:50.426938px;}
._22{width:55.532396px;}
._1e{width:72.654606px;}
._13{width:80.697600px;}
._12{width:96.836850px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(236,0,140);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs5{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y2a{bottom:63.168000px;}
.yd4{bottom:102.030000px;}
.y7e{bottom:108.000000px;}
.yd3{bottom:115.872000px;}
.y169{bottom:119.203500px;}
.y29{bottom:123.261000px;}
.yfd{bottom:128.323500px;}
.ya5{bottom:130.966500px;}
.y168{bottom:135.481500px;}
.y7d{bottom:137.550000px;}
.y167{bottom:139.527000px;}
.y7c{bottom:141.595500px;}
.yfc{bottom:148.647000px;}
.yd2{bottom:148.813500px;}
.ya4{bottom:151.290000px;}
.y28{bottom:157.035000px;}
.y166{bottom:159.850500px;}
.y143{bottom:160.864500px;}
.yfb{bottom:168.972000px;}
.yd1{bottom:169.137000px;}
.y7b{bottom:175.191000px;}
.y165{bottom:180.174000px;}
.y142{bottom:181.188000px;}
.ya3{bottom:185.064000px;}
.y50{bottom:188.062500px;}
.yfa{bottom:189.295500px;}
.yd0{bottom:189.462000px;}
.y27{bottom:190.809000px;}
.y164{bottom:200.499000px;}
.y141{bottom:201.511500px;}
.ya2{bottom:202.639500px;}
.ya1{bottom:205.387500px;}
.y7a{bottom:207.909000px;}
.y4f{bottom:208.386000px;}
.yf9{bottom:209.619000px;}
.y26{bottom:211.132500px;}
.ycf{bottom:220.051500px;}
.y163{bottom:220.822500px;}
.y140{bottom:221.835000px;}
.y79{bottom:228.232500px;}
.y4d{bottom:228.709500px;}
.y120{bottom:229.942500px;}
.y25{bottom:231.456000px;}
.y4e{bottom:234.648000px;}
.yf8{bottom:238.230000px;}
.ya0{bottom:239.161500px;}
.yce{bottom:240.375000px;}
.y11f{bottom:250.266000px;}
.yf7{bottom:252.072000px;}
.y162{bottom:254.595000px;}
.y78{bottom:259.366500px;}
.y13f{bottom:260.091000px;}
.ycd{bottom:260.698500px;}
.y24{bottom:260.746500px;}
.y4c{bottom:262.483500px;}
.y9f{bottom:272.934000px;}
.y161{bottom:274.920000px;}
.y77{bottom:279.691500px;}
.y13e{bottom:280.416000px;}
.y23{bottom:281.070000px;}
.y11e{bottom:281.158500px;}
.y4b{bottom:282.807000px;}
.yf6{bottom:289.161000px;}
.ycc{bottom:291.289500px;}
.y9e{bottom:293.257500px;}
.y160{bottom:295.243500px;}
.y75{bottom:300.015000px;}
.y13d{bottom:300.739500px;}
.y22{bottom:301.393500px;}
.y76{bottom:305.953500px;}
.yf5{bottom:309.484500px;}
.ycb{bottom:311.613000px;}
.y9d{bottom:313.582500px;}
.y15f{bottom:315.567000px;}
.y4a{bottom:316.579500px;}
.y13c{bottom:321.063000px;}
.y21{bottom:321.717000px;}
.y11d{bottom:324.243000px;}
.yf4{bottom:329.808000px;}
.y74{bottom:331.149000px;}
.y15e{bottom:335.890500px;}
.y20{bottom:342.042000px;}
.yca{bottom:342.505500px;}
.y11c{bottom:344.566500px;}
.y9c{bottom:347.355000px;}
.yf3{bottom:350.131500px;}
.y49{bottom:350.353500px;}
.y73{bottom:351.472500px;}
.y15d{bottom:356.214000px;}
.y13b{bottom:359.319000px;}
.y1f{bottom:362.365500px;}
.yf2{bottom:370.455000px;}
.y72{bottom:371.796000px;}
.y15c{bottom:376.539000px;}
.y11b{bottom:381.094500px;}
.y9b{bottom:381.129000px;}
.y1e{bottom:382.689000px;}
.y48{bottom:384.126000px;}
.yc9{bottom:385.723500px;}
.y13a{bottom:390.211500px;}
.yf1{bottom:390.780000px;}
.y71{bottom:402.688500px;}
.y1d{bottom:403.012500px;}
.yc8{bottom:406.047000px;}
.y15b{bottom:410.311500px;}
.y9a{bottom:417.891000px;}
.y47{bottom:417.900000px;}
.yf0{bottom:421.671000px;}
.y1c{bottom:423.336000px;}
.yc7{bottom:426.370500px;}
.y15a{bottom:430.635000px;}
.y11a{bottom:431.917500px;}
.y139{bottom:434.031000px;}
.y46{bottom:438.223500px;}
.y1b{bottom:443.661000px;}
.y70{bottom:446.010000px;}
.yc6{bottom:446.695500px;}
.y119{bottom:452.241000px;}
.y138{bottom:454.354500px;}
.y99{bottom:454.653000px;}
.y1a{bottom:463.984500px;}
.yef{bottom:465.043500px;}
.y6f{bottom:466.333500px;}
.y159{bottom:467.163000px;}
.y45{bottom:469.116000px;}
.y118{bottom:472.564500px;}
.yc5{bottom:479.832000px;}
.y6e{bottom:484.203000px;}
.y19{bottom:484.308000px;}
.yee{bottom:485.367000px;}
.y6d{bottom:486.657000px;}
.y98{bottom:488.427000px;}
.y137{bottom:490.882500px;}
.y117{bottom:492.888000px;}
.yc4{bottom:500.155500px;}
.y6c{bottom:504.526500px;}
.y18{bottom:504.631500px;}
.yed{bottom:505.690500px;}
.y6b{bottom:506.980500px;}
.y97{bottom:508.750500px;}
.y44{bottom:512.934000px;}
.y158{bottom:518.721000px;}
.yc3{bottom:520.479000px;}
.y17{bottom:524.955000px;}
.y116{bottom:525.882000px;}
.yec{bottom:526.014000px;}
.y6a{bottom:527.305500px;}
.y96{bottom:529.074000px;}
.y43{bottom:533.259000px;}
.y157{bottom:539.044500px;}
.yc2{bottom:540.802500px;}
.y136{bottom:542.440500px;}
.y115{bottom:546.207000px;}
.y69{bottom:558.439500px;}
.y156{bottom:559.369500px;}
.yc1{bottom:561.126000px;}
.y16{bottom:561.483000px;}
.yeb{bottom:562.542000px;}
.y135{bottom:562.764000px;}
.y95{bottom:562.848000px;}
.y114{bottom:566.530500px;}
.y42{bottom:569.787000px;}
.y68{bottom:576.309000px;}
.y67{bottom:578.763000px;}
.yc0{bottom:581.451000px;}
.y134{bottom:583.087500px;}
.y94{bottom:583.171500px;}
.y113{bottom:586.854000px;}
.y155{bottom:593.142000px;}
.y66{bottom:599.086500px;}
.ybf{bottom:601.774500px;}
.y133{bottom:603.411000px;}
.y112{bottom:607.177500px;}
.y15{bottom:613.041000px;}
.y154{bottom:613.465500px;}
.yea{bottom:613.653000px;}
.y93{bottom:614.062500px;}
.ybe{bottom:619.644000px;}
.y41{bottom:621.343500px;}
.ybd{bottom:622.098000px;}
.y132{bottom:623.734500px;}
.y65{bottom:630.222000px;}
.y14{bottom:630.973500px;}
.y153{bottom:633.790500px;}
.ye9{bottom:633.978000px;}
.y111{bottom:637.054500px;}
.y40{bottom:641.668500px;}
.y131{bottom:644.059500px;}
.y13{bottom:648.907500px;}
.ybc{bottom:652.687500px;}
.ye8{bottom:654.301500px;}
.y92{bottom:657.882000px;}
.y64{bottom:661.356000px;}
.y3f{bottom:661.992000px;}
.y130{bottom:664.383000px;}
.y12{bottom:666.840000px;}
.y110{bottom:666.930000px;}
.y152{bottom:667.563000px;}
.ye7{bottom:674.625000px;}
.y91{bottom:678.205500px;}
.y63{bottom:681.679500px;}
.y3e{bottom:682.315500px;}
.y12f{bottom:684.706500px;}
.y10f{bottom:684.721500px;}
.y11{bottom:684.772500px;}
.ybb{bottom:685.630500px;}
.y10e{bottom:687.255000px;}
.y151{bottom:687.886500px;}
.y172{bottom:691.954500px;}
.ye6{bottom:694.948500px;}
.y3d{bottom:702.639000px;}
.y10{bottom:702.705000px;}
.y12e{bottom:705.030000px;}
.y150{bottom:708.211500px;}
.y90{bottom:714.733500px;}
.ye5{bottom:715.272000px;}
.yba{bottom:718.572000px;}
.y10d{bottom:719.469000px;}
.yf{bottom:720.637500px;}
.y62{bottom:721.471500px;}
.y3c{bottom:722.962500px;}
.y171{bottom:725.727000px;}
.ye4{bottom:735.597000px;}
.yb9{bottom:736.363500px;}
.ye{bottom:738.570000px;}
.y12d{bottom:738.804000px;}
.yb8{bottom:738.897000px;}
.y14f{bottom:741.984000px;}
.y3b{bottom:743.287500px;}
.y10c{bottom:749.346000px;}
.y61{bottom:755.067000px;}
.yd{bottom:756.504000px;}
.yb7{bottom:756.687000px;}
.y12c{bottom:759.127500px;}
.yb6{bottom:759.220500px;}
.y170{bottom:759.501000px;}
.y14e{bottom:762.307500px;}
.y3a{bottom:763.611000px;}
.y8f{bottom:766.291500px;}
.y10b{bottom:767.136000px;}
.ye3{bottom:768.895500px;}
.y10a{bottom:769.669500px;}
.y5f{bottom:772.725000px;}
.y60{bottom:772.936500px;}
.yc{bottom:774.436500px;}
.y5d{bottom:775.390500px;}
.y5e{bottom:775.392000px;}
.yb5{bottom:779.544000px;}
.y14d{bottom:782.632500px;}
.y8e{bottom:786.615000px;}
.ye2{bottom:789.219000px;}
.y109{bottom:789.993000px;}
.yb{bottom:792.369000px;}
.y12b{bottom:792.901500px;}
.y16f{bottom:793.273500px;}
.y39{bottom:794.502000px;}
.yb4{bottom:799.867500px;}
.y8d{bottom:806.938500px;}
.y5c{bottom:808.108500px;}
.ye1{bottom:809.544000px;}
.ya{bottom:810.301500px;}
.y12a{bottom:813.225000px;}
.y14c{bottom:816.405000px;}
.yb3{bottom:817.659000px;}
.y108{bottom:819.870000px;}
.yb2{bottom:820.191000px;}
.y8c{bottom:824.808000px;}
.y5b{bottom:825.978000px;}
.y16e{bottom:827.047500px;}
.y8b{bottom:827.263500px;}
.y9{bottom:828.234000px;}
.y5a{bottom:828.433500px;}
.y38{bottom:838.321500px;}
.y107{bottom:840.193500px;}
.yb1{bottom:840.516000px;}
.ye0{bottom:840.946500px;}
.y8{bottom:846.166500px;}
.y129{bottom:846.997500px;}
.y14b{bottom:847.297500px;}
.y37{bottom:858.645000px;}
.y16d{bottom:860.821500px;}
.yaf{bottom:860.839500px;}
.y8a{bottom:861.036000px;}
.y59{bottom:861.151500px;}
.ydf{bottom:861.271500px;}
.y7{bottom:864.100500px;}
.yb0{bottom:866.778000px;}
.y128{bottom:867.322500px;}
.y106{bottom:870.070500px;}
.y36{bottom:878.968500px;}
.y89{bottom:881.359500px;}
.yde{bottom:881.595000px;}
.y6{bottom:882.033000px;}
.y127{bottom:887.646000px;}
.y14a{bottom:891.115500px;}
.yae{bottom:891.429000px;}
.y58{bottom:892.285500px;}
.y16c{bottom:894.594000px;}
.y35{bottom:899.293500px;}
.ydd{bottom:901.918500px;}
.y105{bottom:902.155500px;}
.y5{bottom:909.306000px;}
.y149{bottom:911.439000px;}
.yad{bottom:911.752500px;}
.y16b{bottom:914.917500px;}
.y88{bottom:915.133500px;}
.y126{bottom:918.537000px;}
.y34{bottom:919.617000px;}
.ydc{bottom:922.242000px;}
.y57{bottom:923.419500px;}
.y148{bottom:931.764000px;}
.yac{bottom:932.077500px;}
.y104{bottom:934.242000px;}
.y33{bottom:939.940500px;}
.ydb{bottom:942.565500px;}
.y87{bottom:948.907500px;}
.y16a{bottom:951.445500px;}
.y56{bottom:956.137500px;}
.y32{bottom:960.264000px;}
.y125{bottom:962.356500px;}
.yda{bottom:962.890500px;}
.yab{bottom:962.968500px;}
.y147{bottom:965.536500px;}
.y103{bottom:966.456000px;}
.y86{bottom:966.775500px;}
.y85{bottom:969.231000px;}
.y4{bottom:969.717000px;}
.y55{bottom:976.461000px;}
.y31{bottom:980.587500px;}
.y124{bottom:982.680000px;}
.y84{bottom:989.554500px;}
.yd9{bottom:994.293000px;}
.y102{bottom:996.333000px;}
.y146{bottom:999.310500px;}
.y30{bottom:1000.912500px;}
.y123{bottom:1003.003500px;}
.yaa{bottom:1006.186500px;}
.y3{bottom:1006.404000px;}
.y54{bottom:1009.179000px;}
.yd8{bottom:1014.618000px;}
.y101{bottom:1016.656500px;}
.yd7{bottom:1019.365500px;}
.y145{bottom:1019.634000px;}
.y2f{bottom:1021.236000px;}
.y83{bottom:1023.328500px;}
.ya9{bottom:1026.511500px;}
.yd6{bottom:1034.941500px;}
.y100{bottom:1036.980000px;}
.y53{bottom:1040.313000px;}
.y82{bottom:1043.652000px;}
.ya8{bottom:1046.835000px;}
.y2e{bottom:1050.526500px;}
.y2{bottom:1051.870500px;}
.y144{bottom:1053.408000px;}
.y122{bottom:1057.101000px;}
.y81{bottom:1063.975500px;}
.yd5{bottom:1066.345500px;}
.yff{bottom:1066.857000px;}
.ya7{bottom:1067.158500px;}
.y2d{bottom:1070.850000px;}
.y1{bottom:1072.792500px;}
.y52{bottom:1073.908500px;}
.y121{bottom:1077.424500px;}
.y80{bottom:1084.299000px;}
.yfe{bottom:1087.180500px;}
.ya6{bottom:1097.748000px;}
.y2c{bottom:1104.622500px;}
.y51{bottom:1107.504000px;}
.y7f{bottom:1118.073000px;}
.y2b{bottom:1138.396500px;}
.hf{height:28.883642px;}
.h8{height:35.865450px;}
.h13{height:43.157983px;}
.h4{height:44.831700px;}
.hd{height:44.967310px;}
.hb{height:45.425492px;}
.h16{height:45.621856px;}
.h9{height:46.080038px;}
.h6{height:49.090950px;}
.h7{height:50.211840px;}
.h3{height:51.216077px;}
.h12{height:52.631642px;}
.he{height:52.637642px;}
.h10{height:55.907642px;}
.h19{height:56.935496px;}
.h18{height:56.941496px;}
.ha{height:58.912950px;}
.h15{height:59.224950px;}
.hc{height:59.619450px;}
.h5{height:60.254040px;}
.h17{height:62.675983px;}
.h11{height:65.272950px;}
.h2{height:71.684926px;}
.h14{height:110.927983px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x39{left:99.363000px;}
.xfd{left:103.090500px;}
.xae{left:105.676500px;}
.x10{left:106.711500px;}
.x8{left:108.000000px;}
.xed{left:111.145500px;}
.x10b{left:115.999500px;}
.x15{left:119.818500px;}
.xe4{left:121.912500px;}
.xb6{left:125.341500px;}
.x11{left:127.999500px;}
.x9{left:133.404000px;}
.xb7{left:134.523000px;}
.x8a{left:137.724000px;}
.xc4{left:139.723500px;}
.x2d{left:140.727000px;}
.x2a{left:144.204000px;}
.x7{left:148.909500px;}
.xeb{left:152.593500px;}
.x8b{left:155.065500px;}
.x87{left:156.802500px;}
.xf6{left:158.683500px;}
.xbf{left:160.452000px;}
.x2b{left:162.384000px;}
.x8c{left:164.233500px;}
.x52{left:167.868000px;}
.xdf{left:169.281000px;}
.x6{left:171.325500px;}
.xe5{left:173.947500px;}
.xc0{left:178.351500px;}
.x9b{left:179.680500px;}
.x5b{left:181.639500px;}
.x81{left:185.904000px;}
.x5c{left:189.270000px;}
.x92{left:191.472000px;}
.x127{left:192.973500px;}
.x2e{left:194.145000px;}
.x9c{left:197.013000px;}
.x16{left:200.335500px;}
.x91{left:201.738000px;}
.xe9{left:204.858000px;}
.x93{left:206.202000px;}
.x10c{left:208.200000px;}
.xcd{left:210.763500px;}
.x2f{left:213.379500px;}
.xe6{left:215.146500px;}
.x122{left:216.273000px;}
.xf7{left:218.460000px;}
.x53{left:219.700500px;}
.x9d{left:221.056500px;}
.x8d{left:223.120500px;}
.xb8{left:226.083000px;}
.x102{left:227.980500px;}
.x2{left:231.394500px;}
.x83{left:233.100000px;}
.xf8{left:236.686500px;}
.xd6{left:239.025000px;}
.xea{left:241.716000px;}
.x17{left:244.309500px;}
.x54{left:245.535000px;}
.x103{left:247.089000px;}
.x7a{left:249.249000px;}
.x55{left:252.148500px;}
.x84{left:253.372500px;}
.xfe{left:254.710500px;}
.xe7{left:257.101500px;}
.x56{left:258.492000px;}
.x10d{left:259.738500px;}
.xf1{left:263.394000px;}
.x8e{left:264.939000px;}
.x57{left:267.844500px;}
.x123{left:270.099000px;}
.x3a{left:273.127500px;}
.x42{left:274.698000px;}
.x7b{left:278.121000px;}
.xa8{left:279.217500px;}
.x124{left:280.621500px;}
.x1{left:282.141000px;}
.xe8{left:284.464500px;}
.x11d{left:286.245000px;}
.x5d{left:288.279000px;}
.x94{left:291.900000px;}
.x48{left:293.092500px;}
.xa9{left:297.459000px;}
.x5e{left:299.437500px;}
.x43{left:302.700000px;}
.x125{left:305.269500px;}
.x58{left:306.847500px;}
.x5f{left:308.520000px;}
.xbc{left:310.642500px;}
.xb9{left:311.950500px;}
.x59{left:313.459500px;}
.xf2{left:316.506000px;}
.x30{left:319.354500px;}
.x1a{left:322.963500px;}
.xe2{left:325.414500px;}
.x8f{left:326.733000px;}
.x3b{left:329.395500px;}
.xc5{left:330.669000px;}
.x95{left:331.804500px;}
.x117{left:332.901000px;}
.x31{left:334.168500px;}
.x1b{left:336.075000px;}
.x7c{left:339.967500px;}
.x90{left:342.556500px;}
.x32{left:343.846500px;}
.x111{left:345.153000px;}
.x4d{left:348.013500px;}
.xc6{left:349.224000px;}
.x118{left:350.919000px;}
.xec{left:353.749500px;}
.xce{left:359.259000px;}
.xe0{left:360.265500px;}
.x108{left:361.672500px;}
.x88{left:362.731500px;}
.x1c{left:366.753000px;}
.x60{left:369.106500px;}
.xcc{left:371.365500px;}
.x6e{left:373.926000px;}
.x3{left:375.274500px;}
.xcf{left:377.490000px;}
.x89{left:380.413500px;}
.x6f{left:382.402500px;}
.x4{left:388.269000px;}
.x1d{left:390.390000px;}
.xc7{left:391.882500px;}
.x79{left:392.896500px;}
.x3c{left:394.168500px;}
.x2c{left:396.816000px;}
.xf3{left:400.279500px;}
.x10e{left:405.525000px;}
.x33{left:408.555000px;}
.xc8{left:410.455500px;}
.x3d{left:412.000500px;}
.x5{left:413.812500px;}
.x10f{left:417.391500px;}
.xb3{left:420.456000px;}
.x4e{left:426.007500px;}
.x101{left:427.192500px;}
.x44{left:428.301000px;}
.x73{left:432.721500px;}
.xfc{left:433.986000px;}
.x49{left:436.785000px;}
.x1e{left:438.495000px;}
.x12{left:442.366500px;}
.xc9{left:444.919500px;}
.xd7{left:447.057000px;}
.xa2{left:448.873500px;}
.x45{left:450.309000px;}
.x65{left:452.497500px;}
.x1f{left:455.854500px;}
.x4f{left:457.702500px;}
.x7d{left:459.991500px;}
.x46{left:461.175000px;}
.xa3{left:465.940500px;}
.xca{left:468.126000px;}
.x66{left:470.350500px;}
.x120{left:472.146000px;}
.x47{left:473.430000px;}
.x11e{left:474.835500px;}
.x70{left:475.887000px;}
.xee{left:478.078500px;}
.x63{left:479.970000px;}
.xf9{left:484.242000px;}
.x82{left:486.115500px;}
.x71{left:487.389000px;}
.xdc{left:489.499500px;}
.x4a{left:491.086500px;}
.xac{left:492.466500px;}
.x112{left:493.918500px;}
.x67{left:495.811500px;}
.x121{left:498.646500px;}
.x64{left:500.283000px;}
.xfa{left:501.525000px;}
.xa4{left:503.554500px;}
.xbd{left:504.721500px;}
.x5a{left:506.997000px;}
.xf5{left:508.060500px;}
.x85{left:509.568000px;}
.xad{left:510.696000px;}
.x20{left:512.349000px;}
.xa5{left:514.572000px;}
.x86{left:517.198500px;}
.xaf{left:518.488500px;}
.xdd{left:520.836000px;}
.xb4{left:522.012000px;}
.xba{left:523.996500px;}
.x21{left:525.460500px;}
.xc1{left:528.778500px;}
.xa6{left:531.639000px;}
.xde{left:533.701500px;}
.x3e{left:534.864000px;}
.x96{left:536.262000px;}
.x68{left:537.771000px;}
.x104{left:539.259000px;}
.x51{left:540.340500px;}
.x22{left:543.075000px;}
.x113{left:544.231500px;}
.x3f{left:547.704000px;}
.xcb{left:549.300000px;}
.x23{left:551.257500px;}
.x72{left:552.309000px;}
.xbe{left:555.859500px;}
.x24{left:559.602000px;}
.x4b{left:563.466000px;}
.x34{left:566.773500px;}
.x97{left:569.944500px;}
.x74{left:571.674000px;}
.x9e{left:574.797000px;}
.x114{left:575.872500px;}
.x4c{left:577.842000px;}
.x25{left:581.794500px;}
.xbb{left:583.489500px;}
.x7e{left:585.529500px;}
.x26{left:591.064500px;}
.x69{left:594.919500px;}
.xb5{left:596.248500px;}
.xb0{left:602.119500px;}
.xc2{left:603.544500px;}
.xe1{left:605.211000px;}
.x61{left:607.390500px;}
.xfb{left:610.921500px;}
.x6a{left:612.280500px;}
.xef{left:613.524000px;}
.xaa{left:614.743500px;}
.x9f{left:618.021000px;}
.xff{left:620.113500px;}
.x75{left:623.392500px;}
.xc3{left:625.638000px;}
.x119{left:628.557000px;}
.x35{left:630.573000px;}
.x115{left:634.936500px;}
.x105{left:636.246000px;}
.x6b{left:637.741500px;}
.x40{left:639.172500px;}
.x128{left:640.878000px;}
.x109{left:642.895500px;}
.x126{left:647.041500px;}
.x36{left:648.144000px;}
.x100{left:651.655500px;}
.x10a{left:652.918500px;}
.xe3{left:654.363000px;}
.x116{left:655.857000px;}
.x98{left:658.705500px;}
.xf0{left:663.414000px;}
.x27{left:666.708000px;}
.x37{left:668.778000px;}
.x11a{left:671.005500px;}
.xd8{left:672.168000px;}
.x62{left:673.305000px;}
.x28{left:675.054000px;}
.x7f{left:678.039000px;}
.x38{left:680.596500px;}
.x18{left:684.789000px;}
.x29{left:688.743000px;}
.x6c{left:691.497000px;}
.x41{left:693.603000px;}
.x6d{left:695.691000px;}
.x76{left:698.383500px;}
.xb1{left:699.756000px;}
.x11b{left:702.591000px;}
.xa7{left:704.427000px;}
.x19{left:707.164500px;}
.x106{left:710.230500px;}
.xd0{left:711.292500px;}
.x99{left:714.726000px;}
.x13{left:716.823000px;}
.xd1{left:719.475000px;}
.xd9{left:721.120500px;}
.x110{left:722.998500px;}
.x9a{left:724.285500px;}
.x80{left:727.915500px;}
.xd2{left:730.482000px;}
.xa0{left:732.919500px;}
.xa{left:735.124500px;}
.xd3{left:737.095500px;}
.xda{left:740.407500px;}
.x77{left:742.101000px;}
.xb{left:743.305500px;}
.xdb{left:749.775000px;}
.xa1{left:750.930000px;}
.xc{left:753.060000px;}
.xb2{left:757.705500px;}
.xd4{left:759.304500px;}
.xd{left:761.242500px;}
.xd5{left:765.214500px;}
.x107{left:767.830500px;}
.x11c{left:769.209000px;}
.xe{left:770.997000px;}
.x14{left:772.573500px;}
.x50{left:773.814000px;}
.x78{left:775.140000px;}
.xab{left:776.394000px;}
.xf{left:779.179500px;}
.x11f{left:780.400500px;}
.xf4{left:782.107500px;}
@media print{
.v3{vertical-align:-14.634667pt;}
.v6{vertical-align:-9.776000pt;}
.v1{vertical-align:-8.725333pt;}
.v2{vertical-align:-5.904000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.330667pt;}
.v4{vertical-align:8.730667pt;}
.v9{vertical-align:12.101333pt;}
.va{vertical-align:14.384000pt;}
.vc{vertical-align:17.349333pt;}
.v5{vertical-align:21.114667pt;}
.v8{vertical-align:24.021333pt;}
.vb{vertical-align:60.240000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.000462pt;}
.ls20{letter-spacing:0.000942pt;}
.ls8e{letter-spacing:0.001855pt;}
.ls2e{letter-spacing:0.002879pt;}
.ls98{letter-spacing:0.003521pt;}
.ls3f{letter-spacing:0.003777pt;}
.ls27{letter-spacing:0.003842pt;}
.ls26{letter-spacing:0.004634pt;}
.ls94{letter-spacing:0.005300pt;}
.ls68{letter-spacing:0.005796pt;}
.ls31{letter-spacing:0.008175pt;}
.ls84{letter-spacing:0.010458pt;}
.ls51{letter-spacing:0.011943pt;}
.ls38{letter-spacing:0.012973pt;}
.ls82{letter-spacing:0.013050pt;}
.lse{letter-spacing:0.013443pt;}
.ls2b{letter-spacing:0.013508pt;}
.lsa0{letter-spacing:0.018281pt;}
.ls59{letter-spacing:0.019215pt;}
.ls7a{letter-spacing:0.019261pt;}
.ls4d{letter-spacing:0.019763pt;}
.ls8a{letter-spacing:0.021700pt;}
.ls8f{letter-spacing:0.022762pt;}
.ls5c{letter-spacing:0.024548pt;}
.ls6e{letter-spacing:0.028388pt;}
.ls99{letter-spacing:0.030778pt;}
.ls3a{letter-spacing:0.290909pt;}
.ls53{letter-spacing:1.538561pt;}
.ls41{letter-spacing:1.570910pt;}
.lsa1{letter-spacing:1.579889pt;}
.ls43{letter-spacing:1.621727pt;}
.ls7d{letter-spacing:1.627061pt;}
.ls1d{letter-spacing:1.629092pt;}
.ls6f{letter-spacing:2.094547pt;}
.ls12{letter-spacing:2.210911pt;}
.ls70{letter-spacing:2.653258pt;}
.ls66{letter-spacing:2.655301pt;}
.ls44{letter-spacing:2.656092pt;}
.ls28{letter-spacing:2.656473pt;}
.ls96{letter-spacing:2.657087pt;}
.ls3b{letter-spacing:2.660634pt;}
.ls35{letter-spacing:4.254050pt;}
.ls32{letter-spacing:4.257365pt;}
.ls3c{letter-spacing:4.538186pt;}
.ls5f{letter-spacing:4.770913pt;}
.ls2c{letter-spacing:5.317806pt;}
.ls8c{letter-spacing:5.760005pt;}
.ls24{letter-spacing:5.972958pt;}
.ls3{letter-spacing:8.029098pt;}
.lsa4{letter-spacing:8.076575pt;}
.ls81{letter-spacing:8.081908pt;}
.ls71{letter-spacing:8.087279pt;}
.ls87{letter-spacing:8.094681pt;}
.ls7{letter-spacing:9.716372pt;}
.ls85{letter-spacing:12.693400pt;}
.lsa{letter-spacing:12.916374pt;}
.ls9{letter-spacing:12.974556pt;}
.ls1a{letter-spacing:13.032738pt;}
.ls57{letter-spacing:14.545467pt;}
.ls4a{letter-spacing:14.603649pt;}
.ls2d{letter-spacing:15.481968pt;}
.lsf{letter-spacing:15.581258pt;}
.ls39{letter-spacing:15.583301pt;}
.ls11{letter-spacing:15.586591pt;}
.ls30{letter-spacing:15.588634pt;}
.ls67{letter-spacing:15.883650pt;}
.ls14{letter-spacing:16.116377pt;}
.lsc{letter-spacing:16.174559pt;}
.ls63{letter-spacing:16.232741pt;}
.ls6{letter-spacing:16.290923pt;}
.ls95{letter-spacing:16.407286pt;}
.ls19{letter-spacing:16.465468pt;}
.ls49{letter-spacing:16.640014pt;}
.ls6c{letter-spacing:17.512742pt;}
.ls1f{letter-spacing:17.920015pt;}
.ls83{letter-spacing:18.210924pt;}
.ls2a{letter-spacing:18.240473pt;}
.ls50{letter-spacing:18.245289pt;}
.ls18{letter-spacing:18.327288pt;}
.ls10{letter-spacing:18.385470pt;}
.ls23{letter-spacing:18.813258pt;}
.ls4b{letter-spacing:18.816092pt;}
.lsb{letter-spacing:18.818591pt;}
.ls21{letter-spacing:18.820634pt;}
.ls75{letter-spacing:18.821425pt;}
.lsa3{letter-spacing:18.834591pt;}
.ls6d{letter-spacing:18.845258pt;}
.ls74{letter-spacing:19.141834pt;}
.ls17{letter-spacing:19.200016pt;}
.ls0{letter-spacing:19.374562pt;}
.ls1{letter-spacing:19.432743pt;}
.ls15{letter-spacing:19.490925pt;}
.ls69{letter-spacing:19.607289pt;}
.ls90{letter-spacing:19.665471pt;}
.ls6b{letter-spacing:19.781835pt;}
.ls56{letter-spacing:20.189108pt;}
.ls34{letter-spacing:20.412032pt;}
.ls2f{letter-spacing:20.414050pt;}
.ls9e{letter-spacing:20.538199pt;}
.ls7e{letter-spacing:20.596381pt;}
.ls22{letter-spacing:20.712745pt;}
.ls62{letter-spacing:20.770926pt;}
.ls9d{letter-spacing:20.829108pt;}
.ls16{letter-spacing:20.945472pt;}
.ls4c{letter-spacing:21.003654pt;}
.ls9f{letter-spacing:21.352745pt;}
.ls89{letter-spacing:21.410927pt;}
.ls76{letter-spacing:21.469109pt;}
.ls29{letter-spacing:21.472473pt;}
.ls7c{letter-spacing:21.585473pt;}
.ls1c{letter-spacing:21.934564pt;}
.ls78{letter-spacing:22.009968pt;}
.lsd{letter-spacing:22.045258pt;}
.ls3d{letter-spacing:22.046779pt;}
.ls72{letter-spacing:22.047301pt;}
.ls73{letter-spacing:22.050591pt;}
.ls42{letter-spacing:22.050927pt;}
.ls37{letter-spacing:22.052634pt;}
.ls54{letter-spacing:22.053425pt;}
.ls8b{letter-spacing:22.109109pt;}
.ls47{letter-spacing:22.341837pt;}
.ls1e{letter-spacing:22.516382pt;}
.ls5b{letter-spacing:22.632746pt;}
.ls5a{letter-spacing:22.868634pt;}
.ls9c{letter-spacing:23.389110pt;}
.ls65{letter-spacing:23.912747pt;}
.ls13{letter-spacing:23.970929pt;}
.ls5e{letter-spacing:24.145475pt;}
.ls5{letter-spacing:24.261838pt;}
.ls46{letter-spacing:24.436384pt;}
.ls79{letter-spacing:24.703956pt;}
.ls52{letter-spacing:24.709289pt;}
.ls5d{letter-spacing:25.134566pt;}
.ls64{letter-spacing:25.192748pt;}
.ls77{letter-spacing:25.309112pt;}
.ls97{letter-spacing:25.774567pt;}
.ls2{letter-spacing:25.832749pt;}
.ls3e{letter-spacing:26.065476pt;}
.ls8d{letter-spacing:26.240022pt;}
.ls92{letter-spacing:26.298204pt;}
.ls6a{letter-spacing:26.472749pt;}
.ls48{letter-spacing:26.530931pt;}
.ls1b{letter-spacing:26.589113pt;}
.lsa2{letter-spacing:26.705477pt;}
.ls7b{letter-spacing:26.763659pt;}
.ls7f{letter-spacing:26.788958pt;}
.ls60{letter-spacing:27.461841pt;}
.ls91{letter-spacing:27.520023pt;}
.ls40{letter-spacing:27.694569pt;}
.ls61{letter-spacing:28.043660pt;}
.ls93{letter-spacing:28.101842pt;}
.ls58{letter-spacing:28.276387pt;}
.ls88{letter-spacing:28.916388pt;}
.ls45{letter-spacing:28.974570pt;}
.ls8{letter-spacing:29.090933pt;}
.ls36{letter-spacing:30.080025pt;}
.ls55{letter-spacing:33.163664pt;}
.ls80{letter-spacing:33.509400pt;}
.ls4e{letter-spacing:34.980634pt;}
.ls4f{letter-spacing:37.637289pt;}
.ls9a{letter-spacing:58.181867pt;}
.ls86{letter-spacing:75.636427pt;}
.ls33{letter-spacing:126.080105pt;}
.ls9b{letter-spacing:413.698591pt;}
.ws38{word-spacing:-71.214605pt;}
.ws4d{word-spacing:-58.181867pt;}
.ws9e{word-spacing:-54.074227pt;}
.ws35{word-spacing:-45.265492pt;}
.wsc6{word-spacing:-42.065490pt;}
.ws34{word-spacing:-42.007308pt;}
.wsc1{word-spacing:-41.949126pt;}
.ws33{word-spacing:-37.899668pt;}
.ws57{word-spacing:-37.876395pt;}
.ws59{word-spacing:-36.247303pt;}
.wsac{word-spacing:-36.189121pt;}
.wsa0{word-spacing:-36.130939pt;}
.ws48{word-spacing:-34.385483pt;}
.ws75{word-spacing:-29.736752pt;}
.ws71{word-spacing:-29.556388pt;}
.ws42{word-spacing:-29.521250pt;}
.ws3d{word-spacing:-29.090933pt;}
.ws3b{word-spacing:-28.241478pt;}
.ws31{word-spacing:-28.183296pt;}
.ws96{word-spacing:-22.329052pt;}
.ws6b{word-spacing:-21.783291pt;}
.ws88{word-spacing:-21.725109pt;}
.ws80{word-spacing:-18.525106pt;}
.ws4a{word-spacing:-16.162923pt;}
.wsbb{word-spacing:-15.069103pt;}
.ws2e{word-spacing:-14.661830pt;}
.ws0{word-spacing:-14.378302pt;}
.ws2c{word-spacing:-14.346200pt;}
.wsbe{word-spacing:-14.196375pt;}
.ws94{word-spacing:-13.637830pt;}
.ws62{word-spacing:-13.579648pt;}
.wsf{word-spacing:-13.070931pt;}
.ws2f{word-spacing:-12.741829pt;}
.ws40{word-spacing:-12.625465pt;}
.ws87{word-spacing:-12.567283pt;}
.ws82{word-spacing:-12.392738pt;}
.ws45{word-spacing:-12.336459pt;}
.ws17{word-spacing:-12.276374pt;}
.wsb3{word-spacing:-12.101828pt;}
.ws5e{word-spacing:-12.043646pt;}
.ws27{word-spacing:-11.955200pt;}
.wsa7{word-spacing:-11.927283pt;}
.ws30{word-spacing:-11.642192pt;}
.ws86{word-spacing:-11.525828pt;}
.ws4c{word-spacing:-11.520010pt;}
.ws85{word-spacing:-11.467646pt;}
.ws4e{word-spacing:-11.461828pt;}
.ws83{word-spacing:-11.403646pt;}
.ws5b{word-spacing:-11.345464pt;}
.ws7c{word-spacing:-11.176737pt;}
.ws3f{word-spacing:-11.170918pt;}
.ws7d{word-spacing:-11.118555pt;}
.ws3a{word-spacing:-11.112737pt;}
.wsd{word-spacing:-10.998710pt;}
.ws41{word-spacing:-10.996373pt;}
.ws1c{word-spacing:-10.938191pt;}
.wsbd{word-spacing:-10.763645pt;}
.ws99{word-spacing:-10.705463pt;}
.ws63{word-spacing:-10.647282pt;}
.ws8b{word-spacing:-10.530918pt;}
.ws60{word-spacing:-10.356372pt;}
.ws74{word-spacing:-10.298190pt;}
.wsc5{word-spacing:-10.187645pt;}
.ws92{word-spacing:-10.181827pt;}
.ws29{word-spacing:-10.123645pt;}
.ws20{word-spacing:-10.065463pt;}
.ws2b{word-spacing:-10.007281pt;}
.ws1a{word-spacing:-9.949099pt;}
.ws18{word-spacing:-9.890917pt;}
.ws26{word-spacing:-9.832735pt;}
.ws6e{word-spacing:-9.774554pt;}
.ws11{word-spacing:-9.716372pt;}
.ws8a{word-spacing:-9.664008pt;}
.ws19{word-spacing:-9.658190pt;}
.ws2a{word-spacing:-9.600008pt;}
.ws21{word-spacing:-9.541826pt;}
.ws5f{word-spacing:-9.483644pt;}
.ws2{word-spacing:-9.457828pt;}
.ws39{word-spacing:-9.425462pt;}
.ws79{word-spacing:-9.373099pt;}
.ws24{word-spacing:-9.367281pt;}
.wsa2{word-spacing:-9.314917pt;}
.ws64{word-spacing:-9.309099pt;}
.wsc4{word-spacing:-9.256735pt;}
.ws65{word-spacing:-9.250917pt;}
.ws6c{word-spacing:-9.198553pt;}
.ws2d{word-spacing:-9.192735pt;}
.ws7a{word-spacing:-9.140371pt;}
.ws44{word-spacing:-9.104459pt;}
.ws8{word-spacing:-9.085891pt;}
.ws7b{word-spacing:-9.082189pt;}
.ws3c{word-spacing:-9.076371pt;}
.wsaa{word-spacing:-9.024008pt;}
.ws28{word-spacing:-9.018189pt;}
.ws6d{word-spacing:-8.965826pt;}
.ws1b{word-spacing:-8.907644pt;}
.ws9a{word-spacing:-8.901826pt;}
.wsa{word-spacing:-8.873356pt;}
.ws8d{word-spacing:-8.849462pt;}
.wsc2{word-spacing:-8.843644pt;}
.ws77{word-spacing:-8.791280pt;}
.ws55{word-spacing:-8.785462pt;}
.ws1d{word-spacing:-8.733098pt;}
.wsbf{word-spacing:-8.727280pt;}
.ws9c{word-spacing:-8.674916pt;}
.ws14{word-spacing:-8.669098pt;}
.ws3{word-spacing:-8.666134pt;}
.ws8f{word-spacing:-8.616734pt;}
.wsab{word-spacing:-8.500371pt;}
.wsa8{word-spacing:-8.494553pt;}
.ws9b{word-spacing:-8.442189pt;}
.ws23{word-spacing:-8.325825pt;}
.wsb8{word-spacing:-8.267643pt;}
.wsc3{word-spacing:-8.209461pt;}
.wsa4{word-spacing:-8.203643pt;}
.wsb2{word-spacing:-8.151280pt;}
.ws36{word-spacing:-8.145461pt;}
.ws50{word-spacing:-8.087279pt;}
.wsb0{word-spacing:-8.034916pt;}
.ws6f{word-spacing:-7.912734pt;}
.ws1f{word-spacing:-7.802188pt;}
.wsa6{word-spacing:-7.796370pt;}
.wsa5{word-spacing:-7.738188pt;}
.ws4{word-spacing:-7.704411pt;}
.ws56{word-spacing:-7.680006pt;}
.ws43{word-spacing:-7.505461pt;}
.ws5{word-spacing:-7.438741pt;}
.ws5d{word-spacing:-7.389097pt;}
.wsb5{word-spacing:-7.272733pt;}
.ws90{word-spacing:-7.214551pt;}
.ws8c{word-spacing:-7.104006pt;}
.ws51{word-spacing:-7.098188pt;}
.ws81{word-spacing:-6.981824pt;}
.wsb{word-spacing:-6.907403pt;}
.wsc{word-spacing:-6.694867pt;}
.wsb4{word-spacing:-6.690915pt;}
.wsba{word-spacing:-6.574551pt;}
.wse{word-spacing:-6.535466pt;}
.wsa9{word-spacing:-6.458187pt;}
.ws46{word-spacing:-6.400005pt;}
.ws5c{word-spacing:-6.347642pt;}
.ws91{word-spacing:-6.283642pt;}
.ws6{word-spacing:-6.269796pt;}
.wsb7{word-spacing:-6.173096pt;}
.ws9{word-spacing:-6.163529pt;}
.ws70{word-spacing:-6.109096pt;}
.ws12{word-spacing:-6.050914pt;}
.ws69{word-spacing:-5.998550pt;}
.ws4f{word-spacing:-5.992732pt;}
.ws15{word-spacing:-5.934550pt;}
.ws25{word-spacing:-5.876369pt;}
.ws22{word-spacing:-5.824005pt;}
.ws7{word-spacing:-5.796905pt;}
.wsb1{word-spacing:-5.707641pt;}
.ws73{word-spacing:-5.701823pt;}
.ws47{word-spacing:-5.585459pt;}
.ws16{word-spacing:-5.533096pt;}
.ws13{word-spacing:-5.469095pt;}
.ws53{word-spacing:-5.236368pt;}
.ws49{word-spacing:-5.184004pt;}
.ws54{word-spacing:-4.834913pt;}
.wsa3{word-spacing:-4.480004pt;}
.wsbc{word-spacing:-4.305458pt;}
.wsae{word-spacing:-4.072731pt;}
.ws8e{word-spacing:-3.729458pt;}
.wsb6{word-spacing:-3.549094pt;}
.ws9f{word-spacing:-3.246548pt;}
.ws4b{word-spacing:-3.188366pt;}
.ws93{word-spacing:-3.141821pt;}
.wsaf{word-spacing:-2.967275pt;}
.ws95{word-spacing:-2.909093pt;}
.wsb9{word-spacing:-2.036365pt;}
.ws67{word-spacing:-1.396365pt;}
.ws68{word-spacing:-0.162909pt;}
.ws84{word-spacing:-0.104727pt;}
.ws3e{word-spacing:-0.058182pt;}
.ws98{word-spacing:-0.053134pt;}
.ws32{word-spacing:-0.046545pt;}
.ws97{word-spacing:-0.018568pt;}
.ws1e{word-spacing:0.000000pt;}
.ws37{word-spacing:0.011636pt;}
.ws61{word-spacing:0.186182pt;}
.ws9d{word-spacing:0.244364pt;}
.ws7e{word-spacing:0.302546pt;}
.ws66{word-spacing:1.000728pt;}
.ws76{word-spacing:1.873456pt;}
.wsc0{word-spacing:1.931638pt;}
.ws52{word-spacing:4.724368pt;}
.ws7f{word-spacing:17.454560pt;}
.ws5a{word-spacing:18.774053pt;}
.ws78{word-spacing:18.779386pt;}
.wsad{word-spacing:18.811386pt;}
.wsa1{word-spacing:18.859386pt;}
.ws1{word-spacing:20.722347pt;}
.ws72{word-spacing:25.467386pt;}
.ws89{word-spacing:29.032751pt;}
.ws6a{word-spacing:42.018944pt;}
.ws10{word-spacing:43.038600pt;}
.ws58{word-spacing:745.926440pt;}
._16{margin-left:-13.032738pt;}
._1d{margin-left:-9.716372pt;}
._1c{margin-left:-7.728709pt;}
._0{margin-left:-4.774404pt;}
._2{margin-left:-3.506859pt;}
._24{margin-left:-2.612605pt;}
._1{margin-left:-1.721549pt;}
._3{width:1.721549pt;}
._19{width:3.200003pt;}
._10{width:4.421822pt;}
._23{width:5.717395pt;}
._1b{width:8.320007pt;}
._17{width:9.832735pt;}
._a{width:14.399278pt;}
._14{width:15.469059pt;}
._15{width:19.200016pt;}
._5{width:20.254607pt;}
._9{width:21.402345pt;}
._f{width:22.939602pt;}
._4{width:24.136420pt;}
._b{width:25.867023pt;}
._e{width:27.509681pt;}
._11{width:29.275846pt;}
._8{width:30.530708pt;}
._6{width:31.805921pt;}
._7{width:32.783619pt;}
._18{width:34.086613pt;}
._1f{width:36.339759pt;}
._d{width:38.006618pt;}
._c{width:38.947576pt;}
._1a{width:39.912761pt;}
._20{width:43.437947pt;}
._21{width:44.823945pt;}
._22{width:49.362130pt;}
._1e{width:64.581872pt;}
._13{width:71.731200pt;}
._12{width:86.077200pt;}
.fs6{font-size:31.880533pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:56.149333pt;}
.yd4{bottom:90.693333pt;}
.y7e{bottom:96.000000pt;}
.yd3{bottom:102.997333pt;}
.y169{bottom:105.958667pt;}
.y29{bottom:109.565333pt;}
.yfd{bottom:114.065333pt;}
.ya5{bottom:116.414667pt;}
.y168{bottom:120.428000pt;}
.y7d{bottom:122.266667pt;}
.y167{bottom:124.024000pt;}
.y7c{bottom:125.862667pt;}
.yfc{bottom:132.130667pt;}
.yd2{bottom:132.278667pt;}
.ya4{bottom:134.480000pt;}
.y28{bottom:139.586667pt;}
.y166{bottom:142.089333pt;}
.y143{bottom:142.990667pt;}
.yfb{bottom:150.197333pt;}
.yd1{bottom:150.344000pt;}
.y7b{bottom:155.725333pt;}
.y165{bottom:160.154667pt;}
.y142{bottom:161.056000pt;}
.ya3{bottom:164.501333pt;}
.y50{bottom:167.166667pt;}
.yfa{bottom:168.262667pt;}
.yd0{bottom:168.410667pt;}
.y27{bottom:169.608000pt;}
.y164{bottom:178.221333pt;}
.y141{bottom:179.121333pt;}
.ya2{bottom:180.124000pt;}
.ya1{bottom:182.566667pt;}
.y7a{bottom:184.808000pt;}
.y4f{bottom:185.232000pt;}
.yf9{bottom:186.328000pt;}
.y26{bottom:187.673333pt;}
.ycf{bottom:195.601333pt;}
.y163{bottom:196.286667pt;}
.y140{bottom:197.186667pt;}
.y79{bottom:202.873333pt;}
.y4d{bottom:203.297333pt;}
.y120{bottom:204.393333pt;}
.y25{bottom:205.738667pt;}
.y4e{bottom:208.576000pt;}
.yf8{bottom:211.760000pt;}
.ya0{bottom:212.588000pt;}
.yce{bottom:213.666667pt;}
.y11f{bottom:222.458667pt;}
.yf7{bottom:224.064000pt;}
.y162{bottom:226.306667pt;}
.y78{bottom:230.548000pt;}
.y13f{bottom:231.192000pt;}
.ycd{bottom:231.732000pt;}
.y24{bottom:231.774667pt;}
.y4c{bottom:233.318667pt;}
.y9f{bottom:242.608000pt;}
.y161{bottom:244.373333pt;}
.y77{bottom:248.614667pt;}
.y13e{bottom:249.258667pt;}
.y23{bottom:249.840000pt;}
.y11e{bottom:249.918667pt;}
.y4b{bottom:251.384000pt;}
.yf6{bottom:257.032000pt;}
.ycc{bottom:258.924000pt;}
.y9e{bottom:260.673333pt;}
.y160{bottom:262.438667pt;}
.y75{bottom:266.680000pt;}
.y13d{bottom:267.324000pt;}
.y22{bottom:267.905333pt;}
.y76{bottom:271.958667pt;}
.yf5{bottom:275.097333pt;}
.ycb{bottom:276.989333pt;}
.y9d{bottom:278.740000pt;}
.y15f{bottom:280.504000pt;}
.y4a{bottom:281.404000pt;}
.y13c{bottom:285.389333pt;}
.y21{bottom:285.970667pt;}
.y11d{bottom:288.216000pt;}
.yf4{bottom:293.162667pt;}
.y74{bottom:294.354667pt;}
.y15e{bottom:298.569333pt;}
.y20{bottom:304.037333pt;}
.yca{bottom:304.449333pt;}
.y11c{bottom:306.281333pt;}
.y9c{bottom:308.760000pt;}
.yf3{bottom:311.228000pt;}
.y49{bottom:311.425333pt;}
.y73{bottom:312.420000pt;}
.y15d{bottom:316.634667pt;}
.y13b{bottom:319.394667pt;}
.y1f{bottom:322.102667pt;}
.yf2{bottom:329.293333pt;}
.y72{bottom:330.485333pt;}
.y15c{bottom:334.701333pt;}
.y11b{bottom:338.750667pt;}
.y9b{bottom:338.781333pt;}
.y1e{bottom:340.168000pt;}
.y48{bottom:341.445333pt;}
.yc9{bottom:342.865333pt;}
.y13a{bottom:346.854667pt;}
.yf1{bottom:347.360000pt;}
.y71{bottom:357.945333pt;}
.y1d{bottom:358.233333pt;}
.yc8{bottom:360.930667pt;}
.y15b{bottom:364.721333pt;}
.y9a{bottom:371.458667pt;}
.y47{bottom:371.466667pt;}
.yf0{bottom:374.818667pt;}
.y1c{bottom:376.298667pt;}
.yc7{bottom:378.996000pt;}
.y15a{bottom:382.786667pt;}
.y11a{bottom:383.926667pt;}
.y139{bottom:385.805333pt;}
.y46{bottom:389.532000pt;}
.y1b{bottom:394.365333pt;}
.y70{bottom:396.453333pt;}
.yc6{bottom:397.062667pt;}
.y119{bottom:401.992000pt;}
.y138{bottom:403.870667pt;}
.y99{bottom:404.136000pt;}
.y1a{bottom:412.430667pt;}
.yef{bottom:413.372000pt;}
.y6f{bottom:414.518667pt;}
.y159{bottom:415.256000pt;}
.y45{bottom:416.992000pt;}
.y118{bottom:420.057333pt;}
.yc5{bottom:426.517333pt;}
.y6e{bottom:430.402667pt;}
.y19{bottom:430.496000pt;}
.yee{bottom:431.437333pt;}
.y6d{bottom:432.584000pt;}
.y98{bottom:434.157333pt;}
.y137{bottom:436.340000pt;}
.y117{bottom:438.122667pt;}
.yc4{bottom:444.582667pt;}
.y6c{bottom:448.468000pt;}
.y18{bottom:448.561333pt;}
.yed{bottom:449.502667pt;}
.y6b{bottom:450.649333pt;}
.y97{bottom:452.222667pt;}
.y44{bottom:455.941333pt;}
.y158{bottom:461.085333pt;}
.yc3{bottom:462.648000pt;}
.y17{bottom:466.626667pt;}
.y116{bottom:467.450667pt;}
.yec{bottom:467.568000pt;}
.y6a{bottom:468.716000pt;}
.y96{bottom:470.288000pt;}
.y43{bottom:474.008000pt;}
.y157{bottom:479.150667pt;}
.yc2{bottom:480.713333pt;}
.y136{bottom:482.169333pt;}
.y115{bottom:485.517333pt;}
.y69{bottom:496.390667pt;}
.y156{bottom:497.217333pt;}
.yc1{bottom:498.778667pt;}
.y16{bottom:499.096000pt;}
.yeb{bottom:500.037333pt;}
.y135{bottom:500.234667pt;}
.y95{bottom:500.309333pt;}
.y114{bottom:503.582667pt;}
.y42{bottom:506.477333pt;}
.y68{bottom:512.274667pt;}
.y67{bottom:514.456000pt;}
.yc0{bottom:516.845333pt;}
.y134{bottom:518.300000pt;}
.y94{bottom:518.374667pt;}
.y113{bottom:521.648000pt;}
.y155{bottom:527.237333pt;}
.y66{bottom:532.521333pt;}
.ybf{bottom:534.910667pt;}
.y133{bottom:536.365333pt;}
.y112{bottom:539.713333pt;}
.y15{bottom:544.925333pt;}
.y154{bottom:545.302667pt;}
.yea{bottom:545.469333pt;}
.y93{bottom:545.833333pt;}
.ybe{bottom:550.794667pt;}
.y41{bottom:552.305333pt;}
.ybd{bottom:552.976000pt;}
.y132{bottom:554.430667pt;}
.y65{bottom:560.197333pt;}
.y14{bottom:560.865333pt;}
.y153{bottom:563.369333pt;}
.ye9{bottom:563.536000pt;}
.y111{bottom:566.270667pt;}
.y40{bottom:570.372000pt;}
.y131{bottom:572.497333pt;}
.y13{bottom:576.806667pt;}
.ybc{bottom:580.166667pt;}
.ye8{bottom:581.601333pt;}
.y92{bottom:584.784000pt;}
.y64{bottom:587.872000pt;}
.y3f{bottom:588.437333pt;}
.y130{bottom:590.562667pt;}
.y12{bottom:592.746667pt;}
.y110{bottom:592.826667pt;}
.y152{bottom:593.389333pt;}
.ye7{bottom:599.666667pt;}
.y91{bottom:602.849333pt;}
.y63{bottom:605.937333pt;}
.y3e{bottom:606.502667pt;}
.y12f{bottom:608.628000pt;}
.y10f{bottom:608.641333pt;}
.y11{bottom:608.686667pt;}
.ybb{bottom:609.449333pt;}
.y10e{bottom:610.893333pt;}
.y151{bottom:611.454667pt;}
.y172{bottom:615.070667pt;}
.ye6{bottom:617.732000pt;}
.y3d{bottom:624.568000pt;}
.y10{bottom:624.626667pt;}
.y12e{bottom:626.693333pt;}
.y150{bottom:629.521333pt;}
.y90{bottom:635.318667pt;}
.ye5{bottom:635.797333pt;}
.yba{bottom:638.730667pt;}
.y10d{bottom:639.528000pt;}
.yf{bottom:640.566667pt;}
.y62{bottom:641.308000pt;}
.y3c{bottom:642.633333pt;}
.y171{bottom:645.090667pt;}
.ye4{bottom:653.864000pt;}
.yb9{bottom:654.545333pt;}
.ye{bottom:656.506667pt;}
.y12d{bottom:656.714667pt;}
.yb8{bottom:656.797333pt;}
.y14f{bottom:659.541333pt;}
.y3b{bottom:660.700000pt;}
.y10c{bottom:666.085333pt;}
.y61{bottom:671.170667pt;}
.yd{bottom:672.448000pt;}
.yb7{bottom:672.610667pt;}
.y12c{bottom:674.780000pt;}
.yb6{bottom:674.862667pt;}
.y170{bottom:675.112000pt;}
.y14e{bottom:677.606667pt;}
.y3a{bottom:678.765333pt;}
.y8f{bottom:681.148000pt;}
.y10b{bottom:681.898667pt;}
.ye3{bottom:683.462667pt;}
.y10a{bottom:684.150667pt;}
.y5f{bottom:686.866667pt;}
.y60{bottom:687.054667pt;}
.yc{bottom:688.388000pt;}
.y5d{bottom:689.236000pt;}
.y5e{bottom:689.237333pt;}
.yb5{bottom:692.928000pt;}
.y14d{bottom:695.673333pt;}
.y8e{bottom:699.213333pt;}
.ye2{bottom:701.528000pt;}
.y109{bottom:702.216000pt;}
.yb{bottom:704.328000pt;}
.y12b{bottom:704.801333pt;}
.y16f{bottom:705.132000pt;}
.y39{bottom:706.224000pt;}
.yb4{bottom:710.993333pt;}
.y8d{bottom:717.278667pt;}
.y5c{bottom:718.318667pt;}
.ye1{bottom:719.594667pt;}
.ya{bottom:720.268000pt;}
.y12a{bottom:722.866667pt;}
.y14c{bottom:725.693333pt;}
.yb3{bottom:726.808000pt;}
.y108{bottom:728.773333pt;}
.yb2{bottom:729.058667pt;}
.y8c{bottom:733.162667pt;}
.y5b{bottom:734.202667pt;}
.y16e{bottom:735.153333pt;}
.y8b{bottom:735.345333pt;}
.y9{bottom:736.208000pt;}
.y5a{bottom:736.385333pt;}
.y38{bottom:745.174667pt;}
.y107{bottom:746.838667pt;}
.yb1{bottom:747.125333pt;}
.ye0{bottom:747.508000pt;}
.y8{bottom:752.148000pt;}
.y129{bottom:752.886667pt;}
.y14b{bottom:753.153333pt;}
.y37{bottom:763.240000pt;}
.y16d{bottom:765.174667pt;}
.yaf{bottom:765.190667pt;}
.y8a{bottom:765.365333pt;}
.y59{bottom:765.468000pt;}
.ydf{bottom:765.574667pt;}
.y7{bottom:768.089333pt;}
.yb0{bottom:770.469333pt;}
.y128{bottom:770.953333pt;}
.y106{bottom:773.396000pt;}
.y36{bottom:781.305333pt;}
.y89{bottom:783.430667pt;}
.yde{bottom:783.640000pt;}
.y6{bottom:784.029333pt;}
.y127{bottom:789.018667pt;}
.y14a{bottom:792.102667pt;}
.yae{bottom:792.381333pt;}
.y58{bottom:793.142667pt;}
.y16c{bottom:795.194667pt;}
.y35{bottom:799.372000pt;}
.ydd{bottom:801.705333pt;}
.y105{bottom:801.916000pt;}
.y5{bottom:808.272000pt;}
.y149{bottom:810.168000pt;}
.yad{bottom:810.446667pt;}
.y16b{bottom:813.260000pt;}
.y88{bottom:813.452000pt;}
.y126{bottom:816.477333pt;}
.y34{bottom:817.437333pt;}
.ydc{bottom:819.770667pt;}
.y57{bottom:820.817333pt;}
.y148{bottom:828.234667pt;}
.yac{bottom:828.513333pt;}
.y104{bottom:830.437333pt;}
.y33{bottom:835.502667pt;}
.ydb{bottom:837.836000pt;}
.y87{bottom:843.473333pt;}
.y16a{bottom:845.729333pt;}
.y56{bottom:849.900000pt;}
.y32{bottom:853.568000pt;}
.y125{bottom:855.428000pt;}
.yda{bottom:855.902667pt;}
.yab{bottom:855.972000pt;}
.y147{bottom:858.254667pt;}
.y103{bottom:859.072000pt;}
.y86{bottom:859.356000pt;}
.y85{bottom:861.538667pt;}
.y4{bottom:861.970667pt;}
.y55{bottom:867.965333pt;}
.y31{bottom:871.633333pt;}
.y124{bottom:873.493333pt;}
.y84{bottom:879.604000pt;}
.yd9{bottom:883.816000pt;}
.y102{bottom:885.629333pt;}
.y146{bottom:888.276000pt;}
.y30{bottom:889.700000pt;}
.y123{bottom:891.558667pt;}
.yaa{bottom:894.388000pt;}
.y3{bottom:894.581333pt;}
.y54{bottom:897.048000pt;}
.yd8{bottom:901.882667pt;}
.y101{bottom:903.694667pt;}
.yd7{bottom:906.102667pt;}
.y145{bottom:906.341333pt;}
.y2f{bottom:907.765333pt;}
.y83{bottom:909.625333pt;}
.ya9{bottom:912.454667pt;}
.yd6{bottom:919.948000pt;}
.y100{bottom:921.760000pt;}
.y53{bottom:924.722667pt;}
.y82{bottom:927.690667pt;}
.ya8{bottom:930.520000pt;}
.y2e{bottom:933.801333pt;}
.y2{bottom:934.996000pt;}
.y144{bottom:936.362667pt;}
.y122{bottom:939.645333pt;}
.y81{bottom:945.756000pt;}
.yd5{bottom:947.862667pt;}
.yff{bottom:948.317333pt;}
.ya7{bottom:948.585333pt;}
.y2d{bottom:951.866667pt;}
.y1{bottom:953.593333pt;}
.y52{bottom:954.585333pt;}
.y121{bottom:957.710667pt;}
.y80{bottom:963.821333pt;}
.yfe{bottom:966.382667pt;}
.ya6{bottom:975.776000pt;}
.y2c{bottom:981.886667pt;}
.y51{bottom:984.448000pt;}
.y7f{bottom:993.842667pt;}
.y2b{bottom:1011.908000pt;}
.hf{height:25.674349pt;}
.h8{height:31.880400pt;}
.h13{height:38.362652pt;}
.h4{height:39.850400pt;}
.hd{height:39.970942pt;}
.hb{height:40.378215pt;}
.h16{height:40.552761pt;}
.h9{height:40.960034pt;}
.h6{height:43.636400pt;}
.h7{height:44.632747pt;}
.h3{height:45.525402pt;}
.h12{height:46.783682pt;}
.he{height:46.789015pt;}
.h10{height:49.695682pt;}
.h19{height:50.609330pt;}
.h18{height:50.614663pt;}
.ha{height:52.367067pt;}
.h15{height:52.644400pt;}
.hc{height:52.995067pt;}
.h5{height:53.559147pt;}
.h17{height:55.711985pt;}
.h11{height:58.020400pt;}
.h2{height:63.719934pt;}
.h14{height:98.602652pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x39{left:88.322667pt;}
.xfd{left:91.636000pt;}
.xae{left:93.934667pt;}
.x10{left:94.854667pt;}
.x8{left:96.000000pt;}
.xed{left:98.796000pt;}
.x10b{left:103.110667pt;}
.x15{left:106.505333pt;}
.xe4{left:108.366667pt;}
.xb6{left:111.414667pt;}
.x11{left:113.777333pt;}
.x9{left:118.581333pt;}
.xb7{left:119.576000pt;}
.x8a{left:122.421333pt;}
.xc4{left:124.198667pt;}
.x2d{left:125.090667pt;}
.x2a{left:128.181333pt;}
.x7{left:132.364000pt;}
.xeb{left:135.638667pt;}
.x8b{left:137.836000pt;}
.x87{left:139.380000pt;}
.xf6{left:141.052000pt;}
.xbf{left:142.624000pt;}
.x2b{left:144.341333pt;}
.x8c{left:145.985333pt;}
.x52{left:149.216000pt;}
.xdf{left:150.472000pt;}
.x6{left:152.289333pt;}
.xe5{left:154.620000pt;}
.xc0{left:158.534667pt;}
.x9b{left:159.716000pt;}
.x5b{left:161.457333pt;}
.x81{left:165.248000pt;}
.x5c{left:168.240000pt;}
.x92{left:170.197333pt;}
.x127{left:171.532000pt;}
.x2e{left:172.573333pt;}
.x9c{left:175.122667pt;}
.x16{left:178.076000pt;}
.x91{left:179.322667pt;}
.xe9{left:182.096000pt;}
.x93{left:183.290667pt;}
.x10c{left:185.066667pt;}
.xcd{left:187.345333pt;}
.x2f{left:189.670667pt;}
.xe6{left:191.241333pt;}
.x122{left:192.242667pt;}
.xf7{left:194.186667pt;}
.x53{left:195.289333pt;}
.x9d{left:196.494667pt;}
.x8d{left:198.329333pt;}
.xb8{left:200.962667pt;}
.x102{left:202.649333pt;}
.x2{left:205.684000pt;}
.x83{left:207.200000pt;}
.xf8{left:210.388000pt;}
.xd6{left:212.466667pt;}
.xea{left:214.858667pt;}
.x17{left:217.164000pt;}
.x54{left:218.253333pt;}
.x103{left:219.634667pt;}
.x7a{left:221.554667pt;}
.x55{left:224.132000pt;}
.x84{left:225.220000pt;}
.xfe{left:226.409333pt;}
.xe7{left:228.534667pt;}
.x56{left:229.770667pt;}
.x10d{left:230.878667pt;}
.xf1{left:234.128000pt;}
.x8e{left:235.501333pt;}
.x57{left:238.084000pt;}
.x123{left:240.088000pt;}
.x3a{left:242.780000pt;}
.x42{left:244.176000pt;}
.x7b{left:247.218667pt;}
.xa8{left:248.193333pt;}
.x124{left:249.441333pt;}
.x1{left:250.792000pt;}
.xe8{left:252.857333pt;}
.x11d{left:254.440000pt;}
.x5d{left:256.248000pt;}
.x94{left:259.466667pt;}
.x48{left:260.526667pt;}
.xa9{left:264.408000pt;}
.x5e{left:266.166667pt;}
.x43{left:269.066667pt;}
.x125{left:271.350667pt;}
.x58{left:272.753333pt;}
.x5f{left:274.240000pt;}
.xbc{left:276.126667pt;}
.xb9{left:277.289333pt;}
.x59{left:278.630667pt;}
.xf2{left:281.338667pt;}
.x30{left:283.870667pt;}
.x1a{left:287.078667pt;}
.xe2{left:289.257333pt;}
.x8f{left:290.429333pt;}
.x3b{left:292.796000pt;}
.xc5{left:293.928000pt;}
.x95{left:294.937333pt;}
.x117{left:295.912000pt;}
.x31{left:297.038667pt;}
.x1b{left:298.733333pt;}
.x7c{left:302.193333pt;}
.x90{left:304.494667pt;}
.x32{left:305.641333pt;}
.x111{left:306.802667pt;}
.x4d{left:309.345333pt;}
.xc6{left:310.421333pt;}
.x118{left:311.928000pt;}
.xec{left:314.444000pt;}
.xce{left:319.341333pt;}
.xe0{left:320.236000pt;}
.x108{left:321.486667pt;}
.x88{left:322.428000pt;}
.x1c{left:326.002667pt;}
.x60{left:328.094667pt;}
.xcc{left:330.102667pt;}
.x6e{left:332.378667pt;}
.x3{left:333.577333pt;}
.xcf{left:335.546667pt;}
.x89{left:338.145333pt;}
.x6f{left:339.913333pt;}
.x4{left:345.128000pt;}
.x1d{left:347.013333pt;}
.xc7{left:348.340000pt;}
.x79{left:349.241333pt;}
.x3c{left:350.372000pt;}
.x2c{left:352.725333pt;}
.xf3{left:355.804000pt;}
.x10e{left:360.466667pt;}
.x33{left:363.160000pt;}
.xc8{left:364.849333pt;}
.x3d{left:366.222667pt;}
.x5{left:367.833333pt;}
.x10f{left:371.014667pt;}
.xb3{left:373.738667pt;}
.x4e{left:378.673333pt;}
.x101{left:379.726667pt;}
.x44{left:380.712000pt;}
.x73{left:384.641333pt;}
.xfc{left:385.765333pt;}
.x49{left:388.253333pt;}
.x1e{left:389.773333pt;}
.x12{left:393.214667pt;}
.xc9{left:395.484000pt;}
.xd7{left:397.384000pt;}
.xa2{left:398.998667pt;}
.x45{left:400.274667pt;}
.x65{left:402.220000pt;}
.x1f{left:405.204000pt;}
.x4f{left:406.846667pt;}
.x7d{left:408.881333pt;}
.x46{left:409.933333pt;}
.xa3{left:414.169333pt;}
.xca{left:416.112000pt;}
.x66{left:418.089333pt;}
.x120{left:419.685333pt;}
.x47{left:420.826667pt;}
.x11e{left:422.076000pt;}
.x70{left:423.010667pt;}
.xee{left:424.958667pt;}
.x63{left:426.640000pt;}
.xf9{left:430.437333pt;}
.x82{left:432.102667pt;}
.x71{left:433.234667pt;}
.xdc{left:435.110667pt;}
.x4a{left:436.521333pt;}
.xac{left:437.748000pt;}
.x112{left:439.038667pt;}
.x67{left:440.721333pt;}
.x121{left:443.241333pt;}
.x64{left:444.696000pt;}
.xfa{left:445.800000pt;}
.xa4{left:447.604000pt;}
.xbd{left:448.641333pt;}
.x5a{left:450.664000pt;}
.xf5{left:451.609333pt;}
.x85{left:452.949333pt;}
.xad{left:453.952000pt;}
.x20{left:455.421333pt;}
.xa5{left:457.397333pt;}
.x86{left:459.732000pt;}
.xaf{left:460.878667pt;}
.xdd{left:462.965333pt;}
.xb4{left:464.010667pt;}
.xba{left:465.774667pt;}
.x21{left:467.076000pt;}
.xc1{left:470.025333pt;}
.xa6{left:472.568000pt;}
.xde{left:474.401333pt;}
.x3e{left:475.434667pt;}
.x96{left:476.677333pt;}
.x68{left:478.018667pt;}
.x104{left:479.341333pt;}
.x51{left:480.302667pt;}
.x22{left:482.733333pt;}
.x113{left:483.761333pt;}
.x3f{left:486.848000pt;}
.xcb{left:488.266667pt;}
.x23{left:490.006667pt;}
.x72{left:490.941333pt;}
.xbe{left:494.097333pt;}
.x24{left:497.424000pt;}
.x4b{left:500.858667pt;}
.x34{left:503.798667pt;}
.x97{left:506.617333pt;}
.x74{left:508.154667pt;}
.x9e{left:510.930667pt;}
.x114{left:511.886667pt;}
.x4c{left:513.637333pt;}
.x25{left:517.150667pt;}
.xbb{left:518.657333pt;}
.x7e{left:520.470667pt;}
.x26{left:525.390667pt;}
.x69{left:528.817333pt;}
.xb5{left:529.998667pt;}
.xb0{left:535.217333pt;}
.xc2{left:536.484000pt;}
.xe1{left:537.965333pt;}
.x61{left:539.902667pt;}
.xfb{left:543.041333pt;}
.x6a{left:544.249333pt;}
.xef{left:545.354667pt;}
.xaa{left:546.438667pt;}
.x9f{left:549.352000pt;}
.xff{left:551.212000pt;}
.x75{left:554.126667pt;}
.xc3{left:556.122667pt;}
.x119{left:558.717333pt;}
.x35{left:560.509333pt;}
.x115{left:564.388000pt;}
.x105{left:565.552000pt;}
.x6b{left:566.881333pt;}
.x40{left:568.153333pt;}
.x128{left:569.669333pt;}
.x109{left:571.462667pt;}
.x126{left:575.148000pt;}
.x36{left:576.128000pt;}
.x100{left:579.249333pt;}
.x10a{left:580.372000pt;}
.xe3{left:581.656000pt;}
.x116{left:582.984000pt;}
.x98{left:585.516000pt;}
.xf0{left:589.701333pt;}
.x27{left:592.629333pt;}
.x37{left:594.469333pt;}
.x11a{left:596.449333pt;}
.xd8{left:597.482667pt;}
.x62{left:598.493333pt;}
.x28{left:600.048000pt;}
.x7f{left:602.701333pt;}
.x38{left:604.974667pt;}
.x18{left:608.701333pt;}
.x29{left:612.216000pt;}
.x6c{left:614.664000pt;}
.x41{left:616.536000pt;}
.x6d{left:618.392000pt;}
.x76{left:620.785333pt;}
.xb1{left:622.005333pt;}
.x11b{left:624.525333pt;}
.xa7{left:626.157333pt;}
.x19{left:628.590667pt;}
.x106{left:631.316000pt;}
.xd0{left:632.260000pt;}
.x99{left:635.312000pt;}
.x13{left:637.176000pt;}
.xd1{left:639.533333pt;}
.xd9{left:640.996000pt;}
.x110{left:642.665333pt;}
.x9a{left:643.809333pt;}
.x80{left:647.036000pt;}
.xd2{left:649.317333pt;}
.xa0{left:651.484000pt;}
.xa{left:653.444000pt;}
.xd3{left:655.196000pt;}
.xda{left:658.140000pt;}
.x77{left:659.645333pt;}
.xb{left:660.716000pt;}
.xdb{left:666.466667pt;}
.xa1{left:667.493333pt;}
.xc{left:669.386667pt;}
.xb2{left:673.516000pt;}
.xd4{left:674.937333pt;}
.xd{left:676.660000pt;}
.xd5{left:680.190667pt;}
.x107{left:682.516000pt;}
.x11c{left:683.741333pt;}
.xe{left:685.330667pt;}
.x14{left:686.732000pt;}
.x50{left:687.834667pt;}
.x78{left:689.013333pt;}
.xab{left:690.128000pt;}
.xf{left:692.604000pt;}
.x11f{left:693.689333pt;}
.xf4{left:695.206667pt;}
}




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