
    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_6dbdadda18497a2d77a9b747.woff')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_09481f1fdd092d74f8cf41a4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_2e55ce11fe7d6c862411ff15.woff')format("woff");}.ff3{font-family:ff3;line-height:0.898000;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_8fc75d544424713e1b0ed1ce.woff')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_6e95b61be4dd8fc3fd66d28d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921000;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_4eab26450ea5cfcc03ed6300.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_fa3479111aa42b5db5bd681f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.918000;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_527f233864303a014b1b7b2a.woff')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_1a7e6224e41fe88e86bf1359.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_49c7a5681783a7d1a20f7d05.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_bc674fb719c00ffa2af0b309.woff')format("woff");}.ffb{font-family:ffb;line-height:0.736000;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_1f8eff56dca3a10aec34cd11.woff')format("woff");}.ffc{font-family:ffc;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_3db905c8cc03b4ea922e7f87.woff')format("woff");}.ffd{font-family:ffd;line-height:0.674000;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_000886f6f715bae9da5a8778.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_eca43839c6e06a51cd8b6277.woff')format("woff");}.fff{font-family:fff;line-height:1.001000;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_ce78a1f236a5c7fa740662be.woff')format("woff");}.ff10{font-family:ff10;line-height:0.414000;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_f1b368cb58598b9bfa3c18d0.woff')format("woff");}.ff11{font-family:ff11;line-height:2.999000;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_181c08251e16d997350e6c3a.woff')format("woff");}.ff12{font-family:ff12;line-height:0.738000;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_0d611e52d3d367a4e408f1f8.woff')format("woff");}.ff13{font-family:ff13;line-height:0.673000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.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);}
.m22{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);}
.m19{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);}
.md{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);}
.m8{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);}
.mb{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);}
.m9{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);}
.m20{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);}
.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);}
.m6{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);}
.m1e{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);}
.m7{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);}
.m1b{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);}
.m16{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);}
.m1c{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);}
.me{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);}
.m1a{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);}
.m15{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);}
.m1{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);}
.m17{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);}
.mf{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);}
.m11{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);}
.ma{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m4{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);}
.m13{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);}
.m10{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);}
.m5{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);}
.m21{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);}
.m18{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.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);}
.m3{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);}
.m23{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);}
.v1{vertical-align:-10.758000px;}
.vb{vertical-align:-7.290000px;}
.v4{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:10.758000px;}
.ve{vertical-align:13.974000px;}
.vc{vertical-align:24.738000px;}
.v8{vertical-align:26.028000px;}
.va{vertical-align:28.812000px;}
.vd{vertical-align:34.068000px;}
.v3{vertical-align:37.764000px;}
.v2{vertical-align:48.528000px;}
.v10{vertical-align:65.424000px;}
.vf{vertical-align:84.348000px;}
.v7{vertical-align:86.976000px;}
.v6{vertical-align:97.734000px;}
.v9{vertical-align:154.410000px;}
.ls1{letter-spacing:0.000000px;}
.ls3f{letter-spacing:0.000062px;}
.ls24{letter-spacing:0.001114px;}
.ls12{letter-spacing:0.001139px;}
.ls1d{letter-spacing:0.001165px;}
.ls47{letter-spacing:0.001300px;}
.ls0{letter-spacing:0.001358px;}
.ls2{letter-spacing:0.002202px;}
.ls2e{letter-spacing:0.002294px;}
.ls10{letter-spacing:0.002450px;}
.lsb{letter-spacing:0.002573px;}
.ls16{letter-spacing:0.002675px;}
.ls4{letter-spacing:0.002759px;}
.ls3a{letter-spacing:0.004478px;}
.lsf{letter-spacing:0.005487px;}
.ls11{letter-spacing:2.573487px;}
.ls49{letter-spacing:2.820810px;}
.ls39{letter-spacing:2.826810px;}
.ls48{letter-spacing:2.985226px;}
.ls27{letter-spacing:2.990122px;}
.ls15{letter-spacing:2.991226px;}
.ls3e{letter-spacing:3.317134px;}
.ls45{letter-spacing:3.323134px;}
.ls23{letter-spacing:3.415473px;}
.ls36{letter-spacing:3.896143px;}
.ls1b{letter-spacing:3.902143px;}
.ls2c{letter-spacing:5.383059px;}
.ls22{letter-spacing:6.404122px;}
.ls33{letter-spacing:7.167657px;}
.ls40{letter-spacing:7.168404px;}
.ls53{letter-spacing:7.170472px;}
.ls4a{letter-spacing:7.170960px;}
.ls4b{letter-spacing:7.172915px;}
.ls4f{letter-spacing:7.174404px;}
.ls44{letter-spacing:7.176472px;}
.ls50{letter-spacing:10.898759px;}
.ls51{letter-spacing:11.950404px;}
.ls6{letter-spacing:11.951073px;}
.ls5{letter-spacing:11.953114px;}
.ls3{letter-spacing:11.957073px;}
.ls4e{letter-spacing:15.847473px;}
.ls30{letter-spacing:15.935073px;}
.ls1c{letter-spacing:15.935518px;}
.ls9{letter-spacing:15.936760px;}
.ls42{letter-spacing:15.937473px;}
.lsd{letter-spacing:15.938202px;}
.ls43{letter-spacing:15.938759px;}
.ls34{letter-spacing:15.939657px;}
.ls19{letter-spacing:15.941073px;}
.ls35{letter-spacing:15.941518px;}
.lsa{letter-spacing:15.943473px;}
.lse{letter-spacing:15.944202px;}
.ls1e{letter-spacing:16.573473px;}
.ls3d{letter-spacing:16.591473px;}
.ls3c{letter-spacing:16.597473px;}
.ls4d{letter-spacing:18.842122px;}
.ls4c{letter-spacing:18.926122px;}
.ls2f{letter-spacing:18.928834px;}
.ls41{letter-spacing:18.932122px;}
.ls38{letter-spacing:19.125657px;}
.ls3b{letter-spacing:19.586122px;}
.ls7{letter-spacing:19.922202px;}
.ls2a{letter-spacing:19.922675px;}
.ls1a{letter-spacing:19.923633px;}
.ls8{letter-spacing:19.925518px;}
.lsc{letter-spacing:19.941274px;}
.ls2b{letter-spacing:20.313235px;}
.ls58{letter-spacing:20.394682px;}
.ls18{letter-spacing:21.092294px;}
.ls55{letter-spacing:21.546472px;}
.ls26{letter-spacing:21.825226px;}
.ls56{letter-spacing:22.499487px;}
.ls13{letter-spacing:22.912059px;}
.ls17{letter-spacing:24.931059px;}
.ls2d{letter-spacing:24.937059px;}
.ls29{letter-spacing:26.396915px;}
.ls28{letter-spacing:26.402915px;}
.ls54{letter-spacing:26.560677px;}
.ls31{letter-spacing:26.607477px;}
.ls14{letter-spacing:27.095518px;}
.ls20{letter-spacing:27.097473px;}
.ls52{letter-spacing:27.101518px;}
.ls25{letter-spacing:35.181894px;}
.ls37{letter-spacing:49.541518px;}
.ls46{letter-spacing:69.467518px;}
.ls57{letter-spacing:69.693056px;}
.ls32{letter-spacing:97.330800px;}
.ls1f{letter-spacing:988.895518px;}
.ls21{letter-spacing:1139.070472px;}
.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;}
}
.ws41{word-spacing:-71.731200px;}
.ws26{word-spacing:-45.664082px;}
.ws36{word-spacing:-39.452160px;}
.ws31{word-spacing:-33.714766px;}
.ws37{word-spacing:-33.708766px;}
.ws4c{word-spacing:-33.684972px;}
.ws4b{word-spacing:-33.211407px;}
.ws3{word-spacing:-23.412998px;}
.ws9b{word-spacing:-22.541439px;}
.ws34{word-spacing:-22.253762px;}
.ws23{word-spacing:-19.510886px;}
.ws8a{word-spacing:-19.061439px;}
.ws75{word-spacing:-17.932800px;}
.ws8f{word-spacing:-17.083869px;}
.ws8c{word-spacing:-14.111859px;}
.ws5c{word-spacing:-7.531776px;}
.ws54{word-spacing:-5.975439px;}
.ws56{word-spacing:-5.969439px;}
.ws38{word-spacing:-3.586560px;}
.ws83{word-spacing:-3.084442px;}
.ws97{word-spacing:-2.869248px;}
.wsa0{word-spacing:-2.654054px;}
.ws96{word-spacing:-2.223667px;}
.ws58{word-spacing:-1.865011px;}
.ws3a{word-spacing:-0.789043px;}
.ws79{word-spacing:-0.573850px;}
.wsa5{word-spacing:-0.215194px;}
.ws71{word-spacing:-0.103292px;}
.ws2e{word-spacing:-0.071731px;}
.ws92{word-spacing:-0.059776px;}
.ws91{word-spacing:-0.041843px;}
.ws8d{word-spacing:-0.035866px;}
.ws20{word-spacing:0.000000px;}
.ws10{word-spacing:0.078546px;}
.ws4a{word-spacing:0.215194px;}
.ws30{word-spacing:0.358656px;}
.ws69{word-spacing:0.358821px;}
.ws4d{word-spacing:0.396117px;}
.ws98{word-spacing:0.410951px;}
.ws4e{word-spacing:0.430387px;}
.ws99{word-spacing:0.645581px;}
.ws57{word-spacing:0.789043px;}
.ws86{word-spacing:0.932506px;}
.ws7e{word-spacing:1.004237px;}
.wsf{word-spacing:1.453092px;}
.ws84{word-spacing:1.865011px;}
.wsa6{word-spacing:1.936742px;}
.ws2c{word-spacing:2.151936px;}
.ws64{word-spacing:2.223667px;}
.ws3e{word-spacing:2.438861px;}
.wsa3{word-spacing:3.012710px;}
.ws2b{word-spacing:3.156173px;}
.ws7{word-spacing:3.285821px;}
.ws24{word-spacing:3.299635px;}
.wsb{word-spacing:3.416730px;}
.ws47{word-spacing:3.443098px;}
.ws1c{word-spacing:3.514829px;}
.ws48{word-spacing:3.586560px;}
.ws13{word-spacing:3.613094px;}
.ws1d{word-spacing:3.658291px;}
.ws45{word-spacing:3.730022px;}
.ws12{word-spacing:3.744003px;}
.ws4f{word-spacing:3.801754px;}
.ws6b{word-spacing:3.869643px;}
.ws1f{word-spacing:3.873485px;}
.ws76{word-spacing:3.877204px;}
.ws33{word-spacing:3.890959px;}
.ws9c{word-spacing:3.896569px;}
.ws11{word-spacing:3.940367px;}
.ws52{word-spacing:3.945216px;}
.ws2f{word-spacing:4.016947px;}
.ws5d{word-spacing:4.065548px;}
.ws3c{word-spacing:4.088678px;}
.ws35{word-spacing:4.160410px;}
.ws1e{word-spacing:4.232141px;}
.ws16{word-spacing:4.303872px;}
.ws66{word-spacing:4.375603px;}
.ws3f{word-spacing:4.447334px;}
.ws2{word-spacing:4.648169px;}
.ws5f{word-spacing:4.662528px;}
.ws7c{word-spacing:4.734259px;}
.ws6{word-spacing:4.856731px;}
.ws67{word-spacing:4.877722px;}
.ws88{word-spacing:4.926561px;}
.ws17{word-spacing:5.021184px;}
.ws19{word-spacing:5.092915px;}
.ws87{word-spacing:5.164646px;}
.ws7f{word-spacing:5.236378px;}
.ws5a{word-spacing:5.308109px;}
.ws59{word-spacing:5.379840px;}
.ws93{word-spacing:5.451571px;}
.ws77{word-spacing:5.481124px;}
.wse{word-spacing:5.838550px;}
.ws43{word-spacing:6.025421px;}
.wsc{word-spacing:6.427642px;}
.ws70{word-spacing:6.455808px;}
.ws55{word-spacing:6.671002px;}
.ws8{word-spacing:6.820369px;}
.ws1b{word-spacing:6.886195px;}
.ws7d{word-spacing:6.957926px;}
.ws74{word-spacing:7.029658px;}
.ws72{word-spacing:7.173120px;}
.ws73{word-spacing:7.316582px;}
.ws82{word-spacing:7.388314px;}
.ws3d{word-spacing:7.460045px;}
.ws5b{word-spacing:7.603507px;}
.ws81{word-spacing:7.675238px;}
.ws3b{word-spacing:7.746970px;}
.ws51{word-spacing:7.890432px;}
.ws6d{word-spacing:7.897236px;}
.ws18{word-spacing:8.177357px;}
.wsd{word-spacing:8.456734px;}
.ws15{word-spacing:8.464282px;}
.wsa2{word-spacing:8.536013px;}
.ws53{word-spacing:8.607744px;}
.ws22{word-spacing:9.181594px;}
.ws50{word-spacing:9.253325px;}
.ws6f{word-spacing:9.540250px;}
.ws9{word-spacing:9.765826px;}
.ws4{word-spacing:9.896736px;}
.ws1a{word-spacing:10.185830px;}
.ws28{word-spacing:10.616218px;}
.ws9e{word-spacing:11.063618px;}
.ws90{word-spacing:11.190067px;}
.ws25{word-spacing:11.405261px;}
.ws44{word-spacing:11.476992px;}
.ws80{word-spacing:11.548723px;}
.ws40{word-spacing:11.728839px;}
.ws27{word-spacing:12.122573px;}
.ws46{word-spacing:12.983347px;}
.ws61{word-spacing:13.198541px;}
.ws78{word-spacing:16.211251px;}
.ws8b{word-spacing:16.498053px;}
.ws6a{word-spacing:20.000385px;}
.ws8e{word-spacing:22.025048px;}
.ws9f{word-spacing:22.308403px;}
.ws62{word-spacing:23.153664px;}
.ws6c{word-spacing:23.314950px;}
.ws5e{word-spacing:23.504332px;}
.ws68{word-spacing:23.806020px;}
.ws2d{word-spacing:24.818995px;}
.ws65{word-spacing:26.827469px;}
.ws63{word-spacing:26.970931px;}
.wsa4{word-spacing:27.042662px;}
.ws6e{word-spacing:27.338287px;}
.wsa{word-spacing:28.187962px;}
.ws5{word-spacing:29.061842px;}
.ws7a{word-spacing:31.607474px;}
.wsa1{word-spacing:32.135578px;}
.ws21{word-spacing:32.192873px;}
.ws42{word-spacing:32.623259px;}
.ws89{word-spacing:36.396561px;}
.ws94{word-spacing:36.424053px;}
.ws85{word-spacing:36.772094px;}
.ws60{word-spacing:37.515418px;}
.ws2a{word-spacing:38.631358px;}
.ws49{word-spacing:38.734650px;}
.ws29{word-spacing:39.147820px;}
.ws7b{word-spacing:46.274995px;}
.ws1{word-spacing:46.366650px;}
.ws0{word-spacing:47.358450px;}
.ws14{word-spacing:116.100658px;}
.ws39{word-spacing:467.041843px;}
.ws32{word-spacing:629.656474px;}
.ws9a{word-spacing:731.012659px;}
.ws95{word-spacing:767.954227px;}
.ws9d{word-spacing:899.505873px;}
._17{margin-left:-19.567469px;}
._0{margin-left:-11.901600px;}
._1c{margin-left:-10.129006px;}
._18{margin-left:-8.177334px;}
._10{margin-left:-5.953690px;}
._1{margin-left:-4.091175px;}
._4{margin-left:-2.324084px;}
._8{margin-left:-1.275919px;}
._6{width:1.275919px;}
._5{width:2.324084px;}
._2{width:3.843225px;}
._27{width:7.187724px;}
._11{width:9.842417px;}
._e{width:12.538601px;}
._1b{width:18.865306px;}
._1d{width:19.941274px;}
._d{width:22.975457px;}
._1f{width:24.403851px;}
._21{width:25.493262px;}
._20{width:26.612275px;}
._c{width:28.014569px;}
._a{width:29.527383px;}
._13{width:30.629222px;}
._7{width:32.323334px;}
._9{width:34.135020px;}
._f{width:35.435213px;}
._3{width:37.443582px;}
._b{width:38.913206px;}
._16{width:40.335677px;}
._1a{width:43.684301px;}
._1e{width:50.320507px;}
._14{width:52.076851px;}
._15{width:53.361650px;}
._22{width:56.446245px;}
._24{width:90.144649px;}
._12{width:96.836850px;}
._19{width:116.203950px;}
._28{width:477.935263px;}
._26{width:673.842893px;}
._23{width:715.771538px;}
._25{width:857.905152px;}
.fc1{color:rgb(87,87,87);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.243640px;}
.fs7{font-size:35.865600px;}
.fs9{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs8{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs3{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:16.686003px;}
.y4d{bottom:27.699641px;}
.y24{bottom:63.168000px;}
.y59{bottom:108.000000px;}
.y58{bottom:129.669000px;}
.yc7{bottom:129.714000px;}
.y23{bottom:143.532000px;}
.yed{bottom:145.759500px;}
.y57{bottom:148.647000px;}
.y56{bottom:151.338000px;}
.yc6{bottom:151.383000px;}
.y120{bottom:156.432000px;}
.y40{bottom:156.916500px;}
.ya1{bottom:157.051500px;}
.y82{bottom:163.489500px;}
.y22{bottom:165.199500px;}
.yec{bottom:170.191500px;}
.yc5{bottom:173.050500px;}
.y11f{bottom:178.101000px;}
.y3f{bottom:178.584000px;}
.ya0{bottom:178.720500px;}
.y81{bottom:185.158500px;}
.y55{bottom:185.643000px;}
.y21{bottom:186.868500px;}
.yc4{bottom:194.719500px;}
.y11e{bottom:199.768500px;}
.y3e{bottom:200.253000px;}
.yeb{bottom:205.635000px;}
.y80{bottom:206.826000px;}
.y20{bottom:208.537500px;}
.yc3{bottom:216.388500px;}
.y9f{bottom:218.146500px;}
.y54{bottom:219.949500px;}
.y3d{bottom:221.922000px;}
.yea{bottom:227.304000px;}
.y1f{bottom:230.206500px;}
.yc2{bottom:238.057500px;}
.y11d{bottom:240.417000px;}
.y53{bottom:241.617000px;}
.y7f{bottom:246.253500px;}
.y4c{bottom:248.636048px;}
.ye9{bottom:248.973000px;}
.y1e{bottom:251.875500px;}
.y11c{bottom:252.717000px;}
.yc1{bottom:259.726500px;}
.y1d{bottom:273.544500px;}
.ye8{bottom:274.801500px;}
.y9e{bottom:278.047500px;}
.y52{bottom:281.044500px;}
.yc0{bottom:281.395500px;}
.ye7{bottom:282.223500px;}
.y1c{bottom:295.212000px;}
.y9d{bottom:299.716500px;}
.ybf{bottom:303.063000px;}
.y11b{bottom:306.094500px;}
.y7e{bottom:306.154500px;}
.y51{bottom:313.921500px;}
.y1b{bottom:316.881000px;}
.y9c{bottom:321.385500px;}
.y7d{bottom:327.823500px;}
.ye6{bottom:334.215000px;}
.y1a{bottom:338.550000px;}
.y118{bottom:338.971500px;}
.y11a{bottom:339.538500px;}
.ybe{bottom:342.490500px;}
.y7c{bottom:349.491000px;}
.ye5{bottom:349.701000px;}
.y117{bottom:351.840000px;}
.ye3{bottom:355.884000px;}
.y9b{bottom:357.997500px;}
.y19{bottom:360.219000px;}
.ye4{bottom:362.944500px;}
.y119{bottom:363.972000px;}
.ye2{bottom:377.553000px;}
.y9a{bottom:379.666500px;}
.y7b{bottom:390.588000px;}
.y50{bottom:390.936000px;}
.y116{bottom:399.279000px;}
.y18{bottom:399.646500px;}
.y99{bottom:401.335500px;}
.ybd{bottom:402.391500px;}
.y79{bottom:412.257000px;}
.y4f{bottom:412.603500px;}
.ye1{bottom:413.992500px;}
.y7a{bottom:418.764000px;}
.ybc{bottom:424.060500px;}
.y115{bottom:431.235000px;}
.y98{bottom:437.947500px;}
.ye0{bottom:438.424500px;}
.ybb{bottom:445.728000px;}
.y78{bottom:448.869000px;}
.y4b{bottom:449.217000px;}
.y114{bottom:455.667000px;}
.y17{bottom:459.546000px;}
.yba{bottom:467.397000px;}
.y77{bottom:470.538000px;}
.ydf{bottom:471.301500px;}
.y97{bottom:474.561000px;}
.yde{bottom:477.486000px;}
.y16{bottom:479.871000px;}
.yb9{bottom:489.066000px;}
.y113{bottom:491.110500px;}
.y96{bottom:496.230000px;}
.y15{bottom:500.194500px;}
.yb8{bottom:510.735000px;}
.y76{bottom:511.633500px;}
.y112{bottom:512.779500px;}
.y3c{bottom:514.162500px;}
.ydd{bottom:516.912000px;}
.y14{bottom:520.518000px;}
.yb7{bottom:529.713000px;}
.yb6{bottom:532.404000px;}
.y95{bottom:532.842000px;}
.y75{bottom:533.302500px;}
.y111{bottom:534.448500px;}
.y3b{bottom:535.831500px;}
.y13{bottom:540.841500px;}
.yb5{bottom:554.073000px;}
.y94{bottom:554.511000px;}
.y74{bottom:554.971500px;}
.y110{bottom:556.117500px;}
.y3a{bottom:557.499000px;}
.y12{bottom:561.165000px;}
.ydb{bottom:570.628500px;}
.y10e{bottom:571.602000px;}
.yb4{bottom:575.740500px;}
.y73{bottom:576.640500px;}
.yda{bottom:576.813000px;}
.y10c{bottom:577.785000px;}
.y39{bottom:579.168000px;}
.y136{bottom:580.224000px;}
.y11{bottom:581.488500px;}
.ydc{bottom:583.873500px;}
.y10f{bottom:584.293500px;}
.y10d{bottom:584.847000px;}
.y93{bottom:591.123000px;}
.yb3{bottom:597.409500px;}
.yd9{bottom:598.482000px;}
.y10b{bottom:599.454000px;}
.y38{bottom:600.837000px;}
.y10{bottom:601.813500px;}
.y135{bottom:601.893000px;}
.y92{bottom:612.792000px;}
.y72{bottom:616.066500px;}
.yf{bottom:622.137000px;}
.y134{bottom:623.562000px;}
.y10a{bottom:628.594500px;}
.y37{bottom:632.220000px;}
.y91{bottom:634.461000px;}
.yb2{bottom:636.837000px;}
.yd8{bottom:636.990000px;}
.ye{bottom:642.460500px;}
.y133{bottom:645.231000px;}
.y109{bottom:653.028000px;}
.y36{bottom:653.887500px;}
.y90{bottom:656.130000px;}
.yd7{bottom:661.423500px;}
.yd{bottom:662.784000px;}
.y132{bottom:666.900000px;}
.yb1{bottom:669.714000px;}
.y108{bottom:671.458500px;}
.y35{bottom:675.556500px;}
.y71{bottom:675.967500px;}
.y8f{bottom:677.799000px;}
.yc{bottom:683.107500px;}
.y107{bottom:686.943000px;}
.y131{bottom:688.567500px;}
.y70{bottom:691.452000px;}
.y105{bottom:693.127500px;}
.y34{bottom:697.225500px;}
.y6e{bottom:697.636500px;}
.yd6{bottom:699.105000px;}
.y106{bottom:700.188000px;}
.yb0{bottom:702.591000px;}
.yb{bottom:703.432500px;}
.y6f{bottom:704.697000px;}
.y8e{bottom:717.225000px;}
.y6d{bottom:719.305500px;}
.ya{bottom:723.756000px;}
.y104{bottom:726.004500px;}
.y130{bottom:727.995000px;}
.yd5{bottom:731.061000px;}
.y100{bottom:732.261000px;}
.y33{bottom:736.827000px;}
.y103{bottom:739.248000px;}
.y9{bottom:744.079500px;}
.y4a{bottom:750.591000px;}
.y102{bottom:751.137000px;}
.yd4{bottom:755.493000px;}
.y6c{bottom:756.342000px;}
.yff{bottom:756.693000px;}
.yaf{bottom:762.490500px;}
.y101{bottom:764.382000px;}
.y49{bottom:772.260000px;}
.y8{bottom:774.421500px;}
.y32{bottom:776.428500px;}
.y8d{bottom:777.126000px;}
.y6b{bottom:780.774000px;}
.yae{bottom:784.159500px;}
.y12f{bottom:787.896000px;}
.yd3{bottom:790.936500px;}
.y48{bottom:793.929000px;}
.yfe{bottom:794.680500px;}
.y31{bottom:798.097500px;}
.y8c{bottom:798.795000px;}
.y12e{bottom:809.565000px;}
.yfd{bottom:810.165000px;}
.yd2{bottom:812.605500px;}
.y47{bottom:815.598000px;}
.yfb{bottom:816.349500px;}
.y30{bottom:819.766500px;}
.y8b{bottom:820.464000px;}
.yad{bottom:820.773000px;}
.y6a{bottom:821.298000px;}
.yfc{bottom:823.552500px;}
.y12d{bottom:831.232500px;}
.y46{bottom:837.267000px;}
.yfa{bottom:838.018500px;}
.y7{bottom:840.511500px;}
.y2f{bottom:841.435500px;}
.yac{bottom:842.440500px;}
.y69{bottom:842.967000px;}
.yd1{bottom:845.856000px;}
.y12c{bottom:852.901500px;}
.y8a{bottom:857.076000px;}
.y2e{bottom:863.103000px;}
.y68{bottom:864.636000px;}
.y12b{bottom:868.386000px;}
.yf9{bottom:871.269000px;}
.y129{bottom:874.570500px;}
.y45{bottom:876.693000px;}
.y89{bottom:878.745000px;}
.yab{bottom:879.054000px;}
.y12a{bottom:881.773500px;}
.y6{bottom:882.669000px;}
.y67{bottom:886.305000px;}
.yd0{bottom:897.849000px;}
.y88{bottom:900.414000px;}
.yaa{bottom:900.723000px;}
.y2d{bottom:902.530500px;}
.y5{bottom:909.568500px;}
.y128{bottom:911.182500px;}
.ycf{bottom:916.827000px;}
.yce{bottom:919.516500px;}
.y66{bottom:920.526000px;}
.y87{bottom:922.083000px;}
.yf8{bottom:923.262000px;}
.y127{bottom:932.851500px;}
.y2c{bottom:935.407500px;}
.y44{bottom:935.812500px;}
.y4{bottom:936.466500px;}
.ya9{bottom:937.335000px;}
.y86{bottom:943.750500px;}
.yf7{bottom:944.929500px;}
.y65{bottom:944.959500px;}
.ycd{bottom:950.899500px;}
.y126{bottom:954.520500px;}
.y43{bottom:957.481500px;}
.ya8{bottom:959.004000px;}
.y64{bottom:964.984500px;}
.yf6{bottom:966.598500px;}
.ycc{bottom:972.568500px;}
.y125{bottom:976.189500px;}
.y85{bottom:980.364000px;}
.y63{bottom:980.469000px;}
.y42{bottom:984.141000px;}
.y61{bottom:986.653500px;}
.y3{bottom:989.704500px;}
.ycb{bottom:991.546500px;}
.y62{bottom:993.714000px;}
.yca{bottom:994.237500px;}
.y2b{bottom:995.308500px;}
.ya7{bottom:995.616000px;}
.y41{bottom:996.442500px;}
.yf5{bottom:999.475500px;}
.y84{bottom:1002.033000px;}
.y124{bottom:1012.801500px;}
.yc9{bottom:1015.905000px;}
.y2a{bottom:1016.976000px;}
.ya6{bottom:1017.285000px;}
.y60{bottom:1019.902500px;}
.y83{bottom:1023.702000px;}
.yf4{bottom:1023.907500px;}
.y2{bottom:1027.065000px;}
.y123{bottom:1034.470500px;}
.y29{bottom:1038.645000px;}
.ya5{bottom:1053.898500px;}
.yc8{bottom:1055.332500px;}
.y122{bottom:1056.139500px;}
.yf3{bottom:1059.351000px;}
.y28{bottom:1060.314000px;}
.y1{bottom:1064.424000px;}
.y5f{bottom:1071.895500px;}
.ya4{bottom:1075.567500px;}
.yf2{bottom:1078.330500px;}
.yf1{bottom:1081.020000px;}
.y27{bottom:1081.983000px;}
.y5e{bottom:1090.875000px;}
.y121{bottom:1091.052000px;}
.y5d{bottom:1093.564500px;}
.ya3{bottom:1097.235000px;}
.yf0{bottom:1102.689000px;}
.y26{bottom:1103.652000px;}
.y5c{bottom:1109.049000px;}
.y5a{bottom:1115.233500px;}
.y5b{bottom:1122.294000px;}
.yef{bottom:1128.517500px;}
.yee{bottom:1135.939500px;}
.ya2{bottom:1136.662500px;}
.y25{bottom:1136.902500px;}
.h11{height:21.854014px;}
.hb{height:25.658334px;}
.h1b{height:33.665702px;}
.hc{height:34.191729px;}
.h19{height:42.799330px;}
.h1a{height:44.831700px;}
.h4{height:45.687311px;}
.h5{height:49.090950px;}
.h8{height:49.781453px;}
.h7{height:53.798400px;}
.h12{height:54.794400px;}
.h17{height:62.433729px;}
.h14{height:63.003729px;}
.hd{height:64.556400px;}
.h3{height:64.557900px;}
.h6{height:77.469300px;}
.h1c{height:78.530400px;}
.h16{height:78.536400px;}
.h18{height:78.899700px;}
.h15{height:87.741729px;}
.h2{height:92.981250px;}
.h1d{height:99.615729px;}
.h9{height:102.326400px;}
.hf{height:103.004400px;}
.h10{height:151.526400px;}
.he{height:151.532400px;}
.h13{height:156.801024px;}
.ha{height:279.991140px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:473.831160px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:105.559500px;}
.x1{left:108.090000px;}
.x2a{left:112.911000px;}
.x6e{left:116.779500px;}
.x94{left:119.821500px;}
.x8b{left:121.468500px;}
.x31{left:128.362500px;}
.x2b{left:129.571500px;}
.xe{left:134.338500px;}
.x8c{left:136.594500px;}
.x5d{left:139.338000px;}
.x6f{left:144.094500px;}
.xa2{left:145.240500px;}
.x32{left:147.279000px;}
.x2c{left:148.585500px;}
.x6b{left:150.247500px;}
.xa{left:151.897500px;}
.x9a{left:153.558000px;}
.x49{left:155.587500px;}
.x7c{left:158.032500px;}
.x4a{left:159.922500px;}
.x20{left:163.143000px;}
.x77{left:164.347500px;}
.x2d{left:166.618500px;}
.x5e{left:171.169500px;}
.x5f{left:172.533000px;}
.x9{left:176.443500px;}
.x82{left:183.295500px;}
.x33{left:186.838500px;}
.x60{left:189.324000px;}
.x61{left:196.017000px;}
.x2{left:202.603500px;}
.x3e{left:209.538000px;}
.x9b{left:212.202000px;}
.x4b{left:213.345000px;}
.x8d{left:215.344500px;}
.x34{left:221.551500px;}
.x4c{left:223.590000px;}
.x88{left:225.682500px;}
.x9c{left:232.539000px;}
.x9d{left:233.952000px;}
.x4d{left:236.398500px;}
.x8e{left:237.873000px;}
.x35{left:241.666500px;}
.x62{left:246.160500px;}
.x40{left:247.247840px;}
.x19{left:250.026000px;}
.x8f{left:253.545000px;}
.x36{left:260.583000px;}
.x67{left:262.737000px;}
.x4e{left:286.537500px;}
.x7d{left:288.072000px;}
.x16{left:290.676000px;}
.x37{left:294.040500px;}
.x7e{left:297.028500px;}
.x3f{left:298.497967px;}
.x9e{left:305.802000px;}
.x81{left:307.206000px;}
.x43{left:311.254500px;}
.x21{left:317.755500px;}
.x90{left:318.837000px;}
.x91{left:322.164000px;}
.x54{left:324.090000px;}
.xaa{left:326.587500px;}
.xab{left:328.938000px;}
.xb{left:332.785500px;}
.x95{left:335.815500px;}
.x22{left:338.323500px;}
.x79{left:339.480000px;}
.x99{left:341.374500px;}
.xc{left:343.389000px;}
.x3{left:345.106500px;}
.x4{left:346.962000px;}
.x84{left:349.735500px;}
.x9f{left:351.795000px;}
.x7a{left:353.625000px;}
.x7b{left:354.672000px;}
.x55{left:357.648000px;}
.x73{left:361.924500px;}
.xae{left:366.916500px;}
.x7{left:367.996500px;}
.x56{left:369.226500px;}
.x6{left:370.600500px;}
.x5{left:373.885500px;}
.x51{left:375.604500px;}
.x52{left:377.956500px;}
.xb3{left:379.723500px;}
.xac{left:381.298500px;}
.x57{left:384.078000px;}
.x5b{left:389.487000px;}
.x86{left:394.584000px;}
.x72{left:400.438500px;}
.xa0{left:401.782500px;}
.x58{left:402.972000px;}
.x59{left:405.322500px;}
.x5c{left:407.305500px;}
.x96{left:408.399000px;}
.x8{left:410.710500px;}
.x2f{left:414.834000px;}
.xb4{left:424.122000px;}
.x41{left:427.141500px;}
.xaf{left:434.194500px;}
.x53{left:439.540500px;}
.xf{left:442.066500px;}
.x42{left:451.089000px;}
.x6c{left:453.363000px;}
.xb0{left:455.934000px;}
.x30{left:462.375000px;}
.x5a{left:463.428000px;}
.x93{left:465.733500px;}
.x6d{left:477.438000px;}
.x78{left:479.308500px;}
.xa1{left:481.515000px;}
.x85{left:484.833000px;}
.x87{left:486.195000px;}
.x69{left:489.678000px;}
.x8a{left:493.191000px;}
.x92{left:496.204500px;}
.x6a{left:502.641000px;}
.x12{left:504.288000px;}
.xa3{left:512.467500px;}
.xad{left:514.200000px;}
.x13{left:523.672500px;}
.x38{left:525.742500px;}
.x44{left:542.298000px;}
.x46{left:545.682000px;}
.x39{left:548.713500px;}
.x47{left:554.637000px;}
.x45{left:570.313500px;}
.x4f{left:571.428000px;}
.x14{left:573.282000px;}
.x28{left:575.971500px;}
.xb1{left:578.595000px;}
.x3a{left:582.958500px;}
.x50{left:589.636500px;}
.x15{left:592.666500px;}
.x29{left:595.435500px;}
.x1c{left:598.807500px;}
.x23{left:603.325500px;}
.x3b{left:605.682000px;}
.x7f{left:618.189000px;}
.x74{left:619.777500px;}
.x1d{left:622.188000px;}
.xa9{left:633.331500px;}
.x97{left:636.261000px;}
.x80{left:637.297500px;}
.x75{left:638.884500px;}
.x24{left:641.433000px;}
.x17{left:644.503500px;}
.x70{left:645.783000px;}
.x76{left:653.722500px;}
.x18{left:656.724000px;}
.x71{left:664.891500px;}
.x63{left:671.329500px;}
.x98{left:680.733000px;}
.x25{left:681.952500px;}
.x64{left:688.450500px;}
.x3c{left:691.461000px;}
.x48{left:694.348500px;}
.xa4{left:696.255000px;}
.x26{left:701.998500px;}
.x10{left:704.019000px;}
.xa5{left:711.912000px;}
.x27{left:718.206000px;}
.x65{left:719.715000px;}
.x11{left:721.720500px;}
.x83{left:724.678500px;}
.xa6{left:726.220500px;}
.x1a{left:730.587000px;}
.x66{left:737.083500px;}
.x3d{left:740.271000px;}
.x68{left:742.170000px;}
.x2e{left:749.134500px;}
.x1e{left:752.127000px;}
.x89{left:753.958500px;}
.xa7{left:755.307000px;}
.xa8{left:766.980000px;}
.xb2{left:773.841000px;}
.x1b{left:775.882500px;}
.x1f{left:783.345000px;}
@media print{
.v1{vertical-align:-9.562667pt;}
.vb{vertical-align:-6.480000pt;}
.v4{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:9.562667pt;}
.ve{vertical-align:12.421333pt;}
.vc{vertical-align:21.989333pt;}
.v8{vertical-align:23.136000pt;}
.va{vertical-align:25.610667pt;}
.vd{vertical-align:30.282667pt;}
.v3{vertical-align:33.568000pt;}
.v2{vertical-align:43.136000pt;}
.v10{vertical-align:58.154667pt;}
.vf{vertical-align:74.976000pt;}
.v7{vertical-align:77.312000pt;}
.v6{vertical-align:86.874667pt;}
.v9{vertical-align:137.253333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3f{letter-spacing:0.000055pt;}
.ls24{letter-spacing:0.000990pt;}
.ls12{letter-spacing:0.001012pt;}
.ls1d{letter-spacing:0.001036pt;}
.ls47{letter-spacing:0.001155pt;}
.ls0{letter-spacing:0.001208pt;}
.ls2{letter-spacing:0.001958pt;}
.ls2e{letter-spacing:0.002039pt;}
.ls10{letter-spacing:0.002178pt;}
.lsb{letter-spacing:0.002287pt;}
.ls16{letter-spacing:0.002377pt;}
.ls4{letter-spacing:0.002452pt;}
.ls3a{letter-spacing:0.003980pt;}
.lsf{letter-spacing:0.004878pt;}
.ls11{letter-spacing:2.287544pt;}
.ls49{letter-spacing:2.507387pt;}
.ls39{letter-spacing:2.512720pt;}
.ls48{letter-spacing:2.653534pt;}
.ls27{letter-spacing:2.657886pt;}
.ls15{letter-spacing:2.658868pt;}
.ls3e{letter-spacing:2.948564pt;}
.ls45{letter-spacing:2.953897pt;}
.ls23{letter-spacing:3.035976pt;}
.ls36{letter-spacing:3.463238pt;}
.ls1b{letter-spacing:3.468571pt;}
.ls2c{letter-spacing:4.784942pt;}
.ls22{letter-spacing:5.692553pt;}
.ls33{letter-spacing:6.371251pt;}
.ls40{letter-spacing:6.371915pt;}
.ls53{letter-spacing:6.373753pt;}
.ls4a{letter-spacing:6.374187pt;}
.ls4b{letter-spacing:6.375925pt;}
.ls4f{letter-spacing:6.377248pt;}
.ls44{letter-spacing:6.379087pt;}
.ls50{letter-spacing:9.687786pt;}
.ls51{letter-spacing:10.622582pt;}
.ls6{letter-spacing:10.623176pt;}
.ls5{letter-spacing:10.624990pt;}
.ls3{letter-spacing:10.628509pt;}
.ls4e{letter-spacing:14.086642pt;}
.ls30{letter-spacing:14.164509pt;}
.ls1c{letter-spacing:14.164905pt;}
.ls9{letter-spacing:14.166009pt;}
.ls42{letter-spacing:14.166642pt;}
.lsd{letter-spacing:14.167291pt;}
.ls43{letter-spacing:14.167786pt;}
.ls34{letter-spacing:14.168584pt;}
.ls19{letter-spacing:14.169842pt;}
.ls35{letter-spacing:14.170238pt;}
.lsa{letter-spacing:14.171976pt;}
.lse{letter-spacing:14.172624pt;}
.ls1e{letter-spacing:14.731976pt;}
.ls3d{letter-spacing:14.747976pt;}
.ls3c{letter-spacing:14.753309pt;}
.ls4d{letter-spacing:16.748553pt;}
.ls4c{letter-spacing:16.823219pt;}
.ls2f{letter-spacing:16.825631pt;}
.ls41{letter-spacing:16.828553pt;}
.ls38{letter-spacing:17.000584pt;}
.ls3b{letter-spacing:17.409886pt;}
.ls7{letter-spacing:17.708624pt;}
.ls2a{letter-spacing:17.709044pt;}
.ls1a{letter-spacing:17.709896pt;}
.ls8{letter-spacing:17.711572pt;}
.lsc{letter-spacing:17.725577pt;}
.ls2b{letter-spacing:18.056208pt;}
.ls58{letter-spacing:18.128607pt;}
.ls18{letter-spacing:18.748706pt;}
.ls55{letter-spacing:19.152420pt;}
.ls26{letter-spacing:19.400201pt;}
.ls56{letter-spacing:19.999544pt;}
.ls13{letter-spacing:20.366275pt;}
.ls17{letter-spacing:22.160942pt;}
.ls2d{letter-spacing:22.166275pt;}
.ls29{letter-spacing:23.463925pt;}
.ls28{letter-spacing:23.469258pt;}
.ls54{letter-spacing:23.609490pt;}
.ls31{letter-spacing:23.651091pt;}
.ls14{letter-spacing:24.084905pt;}
.ls20{letter-spacing:24.086642pt;}
.ls52{letter-spacing:24.090238pt;}
.ls25{letter-spacing:31.272794pt;}
.ls37{letter-spacing:44.036905pt;}
.ls46{letter-spacing:61.748905pt;}
.ls57{letter-spacing:61.949383pt;}
.ls32{letter-spacing:86.516267pt;}
.ls1f{letter-spacing:879.018238pt;}
.ls21{letter-spacing:1012.507087pt;}
.ws41{word-spacing:-63.761067pt;}
.ws26{word-spacing:-40.590295pt;}
.ws36{word-spacing:-35.068587pt;}
.ws31{word-spacing:-29.968681pt;}
.ws37{word-spacing:-29.963348pt;}
.ws4c{word-spacing:-29.942197pt;}
.ws4b{word-spacing:-29.521250pt;}
.ws3{word-spacing:-20.811554pt;}
.ws9b{word-spacing:-20.036835pt;}
.ws34{word-spacing:-19.781122pt;}
.ws23{word-spacing:-17.343010pt;}
.ws8a{word-spacing:-16.943502pt;}
.ws75{word-spacing:-15.940267pt;}
.ws8f{word-spacing:-15.185662pt;}
.ws8c{word-spacing:-12.543875pt;}
.ws5c{word-spacing:-6.694912pt;}
.ws54{word-spacing:-5.311502pt;}
.ws56{word-spacing:-5.306168pt;}
.ws38{word-spacing:-3.188053pt;}
.ws83{word-spacing:-2.741726pt;}
.ws97{word-spacing:-2.550443pt;}
.wsa0{word-spacing:-2.359159pt;}
.ws96{word-spacing:-1.976593pt;}
.ws58{word-spacing:-1.657788pt;}
.ws3a{word-spacing:-0.701372pt;}
.ws79{word-spacing:-0.510089pt;}
.wsa5{word-spacing:-0.191283pt;}
.ws71{word-spacing:-0.091815pt;}
.ws2e{word-spacing:-0.063761pt;}
.ws92{word-spacing:-0.053134pt;}
.ws91{word-spacing:-0.037194pt;}
.ws8d{word-spacing:-0.031881pt;}
.ws20{word-spacing:0.000000pt;}
.ws10{word-spacing:0.069818pt;}
.ws4a{word-spacing:0.191283pt;}
.ws30{word-spacing:0.318805pt;}
.ws69{word-spacing:0.318952pt;}
.ws4d{word-spacing:0.352104pt;}
.ws98{word-spacing:0.365290pt;}
.ws4e{word-spacing:0.382566pt;}
.ws99{word-spacing:0.573850pt;}
.ws57{word-spacing:0.701372pt;}
.ws86{word-spacing:0.828894pt;}
.ws7e{word-spacing:0.892655pt;}
.wsf{word-spacing:1.291637pt;}
.ws84{word-spacing:1.657788pt;}
.wsa6{word-spacing:1.721549pt;}
.ws2c{word-spacing:1.912832pt;}
.ws64{word-spacing:1.976593pt;}
.ws3e{word-spacing:2.167876pt;}
.wsa3{word-spacing:2.677965pt;}
.ws2b{word-spacing:2.805487pt;}
.ws7{word-spacing:2.920730pt;}
.ws24{word-spacing:2.933009pt;}
.wsb{word-spacing:3.037093pt;}
.ws47{word-spacing:3.060531pt;}
.ws1c{word-spacing:3.124292pt;}
.ws48{word-spacing:3.188053pt;}
.ws13{word-spacing:3.211639pt;}
.ws1d{word-spacing:3.251814pt;}
.ws45{word-spacing:3.315575pt;}
.ws12{word-spacing:3.328003pt;}
.ws4f{word-spacing:3.379337pt;}
.ws6b{word-spacing:3.439683pt;}
.ws1f{word-spacing:3.443098pt;}
.ws76{word-spacing:3.446403pt;}
.ws33{word-spacing:3.458630pt;}
.ws9c{word-spacing:3.463617pt;}
.ws11{word-spacing:3.502548pt;}
.ws52{word-spacing:3.506859pt;}
.ws2f{word-spacing:3.570620pt;}
.ws5d{word-spacing:3.613821pt;}
.ws3c{word-spacing:3.634381pt;}
.ws35{word-spacing:3.698142pt;}
.ws1e{word-spacing:3.761903pt;}
.ws16{word-spacing:3.825664pt;}
.ws66{word-spacing:3.889425pt;}
.ws3f{word-spacing:3.953186pt;}
.ws2{word-spacing:4.131706pt;}
.ws5f{word-spacing:4.144469pt;}
.ws7c{word-spacing:4.208230pt;}
.ws6{word-spacing:4.317095pt;}
.ws67{word-spacing:4.335753pt;}
.ws88{word-spacing:4.379165pt;}
.ws17{word-spacing:4.463275pt;}
.ws19{word-spacing:4.527036pt;}
.ws87{word-spacing:4.590797pt;}
.ws7f{word-spacing:4.654558pt;}
.ws5a{word-spacing:4.718319pt;}
.ws59{word-spacing:4.782080pt;}
.ws93{word-spacing:4.845841pt;}
.ws77{word-spacing:4.872110pt;}
.wse{word-spacing:5.189823pt;}
.ws43{word-spacing:5.355930pt;}
.wsc{word-spacing:5.713459pt;}
.ws70{word-spacing:5.738496pt;}
.ws55{word-spacing:5.929779pt;}
.ws8{word-spacing:6.062551pt;}
.ws1b{word-spacing:6.121062pt;}
.ws7d{word-spacing:6.184823pt;}
.ws74{word-spacing:6.248585pt;}
.ws72{word-spacing:6.376107pt;}
.ws73{word-spacing:6.503629pt;}
.ws82{word-spacing:6.567390pt;}
.ws3d{word-spacing:6.631151pt;}
.ws5b{word-spacing:6.758673pt;}
.ws81{word-spacing:6.822434pt;}
.ws3b{word-spacing:6.886195pt;}
.ws51{word-spacing:7.013717pt;}
.ws6d{word-spacing:7.019766pt;}
.ws18{word-spacing:7.268762pt;}
.wsd{word-spacing:7.517097pt;}
.ws15{word-spacing:7.523806pt;}
.wsa2{word-spacing:7.587567pt;}
.ws53{word-spacing:7.651328pt;}
.ws22{word-spacing:8.161417pt;}
.ws50{word-spacing:8.225178pt;}
.ws6f{word-spacing:8.480222pt;}
.ws9{word-spacing:8.680735pt;}
.ws4{word-spacing:8.797098pt;}
.ws1a{word-spacing:9.054071pt;}
.ws28{word-spacing:9.436638pt;}
.ws9e{word-spacing:9.834327pt;}
.ws90{word-spacing:9.946726pt;}
.ws25{word-spacing:10.138010pt;}
.ws44{word-spacing:10.201771pt;}
.ws80{word-spacing:10.265532pt;}
.ws40{word-spacing:10.425634pt;}
.ws27{word-spacing:10.775620pt;}
.ws46{word-spacing:11.540753pt;}
.ws61{word-spacing:11.732036pt;}
.ws78{word-spacing:14.410001pt;}
.ws8b{word-spacing:14.664936pt;}
.ws6a{word-spacing:17.778120pt;}
.ws8e{word-spacing:19.577820pt;}
.ws9f{word-spacing:19.829692pt;}
.ws62{word-spacing:20.581035pt;}
.ws6c{word-spacing:20.724400pt;}
.ws5e{word-spacing:20.892739pt;}
.ws68{word-spacing:21.160907pt;}
.ws2d{word-spacing:22.061329pt;}
.ws65{word-spacing:23.846639pt;}
.ws63{word-spacing:23.974161pt;}
.wsa4{word-spacing:24.037922pt;}
.ws6e{word-spacing:24.300699pt;}
.wsa{word-spacing:25.055966pt;}
.ws5{word-spacing:25.832749pt;}
.ws7a{word-spacing:28.095533pt;}
.wsa1{word-spacing:28.564958pt;}
.ws21{word-spacing:28.615887pt;}
.ws42{word-spacing:28.998452pt;}
.ws89{word-spacing:32.352498pt;}
.ws94{word-spacing:32.376936pt;}
.ws85{word-spacing:32.686306pt;}
.ws60{word-spacing:33.347038pt;}
.ws2a{word-spacing:34.338985pt;}
.ws49{word-spacing:34.430800pt;}
.ws29{word-spacing:34.798062pt;}
.ws7b{word-spacing:41.133329pt;}
.ws1{word-spacing:41.214800pt;}
.ws0{word-spacing:42.096400pt;}
.ws14{word-spacing:103.200585pt;}
.ws39{word-spacing:415.148305pt;}
.ws32{word-spacing:559.694643pt;}
.ws9a{word-spacing:649.789030pt;}
.ws95{word-spacing:682.625980pt;}
.ws9d{word-spacing:799.560776pt;}
._17{margin-left:-17.393306pt;}
._0{margin-left:-10.579200pt;}
._1c{margin-left:-9.003561pt;}
._18{margin-left:-7.268741pt;}
._10{margin-left:-5.292169pt;}
._1{margin-left:-3.636600pt;}
._4{margin-left:-2.065853pt;}
._8{margin-left:-1.134150pt;}
._6{width:1.134150pt;}
._5{width:2.065853pt;}
._2{width:3.416200pt;}
._27{width:6.389088pt;}
._11{width:8.748815pt;}
._e{width:11.145423pt;}
._1b{width:16.769161pt;}
._1d{width:17.725577pt;}
._d{width:20.422628pt;}
._1f{width:21.692312pt;}
._21{width:22.660677pt;}
._20{width:23.655356pt;}
._c{width:24.901839pt;}
._a{width:26.246563pt;}
._13{width:27.225975pt;}
._7{width:28.731852pt;}
._9{width:30.342240pt;}
._f{width:31.497967pt;}
._3{width:33.283184pt;}
._b{width:34.589516pt;}
._16{width:35.853935pt;}
._1a{width:38.830490pt;}
._1e{width:44.729340pt;}
._14{width:46.290534pt;}
._15{width:47.432578pt;}
._22{width:50.174440pt;}
._24{width:80.128577pt;}
._12{width:86.077200pt;}
._19{width:103.292400pt;}
._28{width:424.831345pt;}
._26{width:598.971460pt;}
._23{width:636.241367pt;}
._25{width:762.582357pt;}
.fs6{font-size:31.327680pt;}
.fs7{font-size:31.880533pt;}
.fs9{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs8{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs3{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:14.832003pt;}
.y4d{bottom:24.621903pt;}
.y24{bottom:56.149333pt;}
.y59{bottom:96.000000pt;}
.y58{bottom:115.261333pt;}
.yc7{bottom:115.301333pt;}
.y23{bottom:127.584000pt;}
.yed{bottom:129.564000pt;}
.y57{bottom:132.130667pt;}
.y56{bottom:134.522667pt;}
.yc6{bottom:134.562667pt;}
.y120{bottom:139.050667pt;}
.y40{bottom:139.481333pt;}
.ya1{bottom:139.601333pt;}
.y82{bottom:145.324000pt;}
.y22{bottom:146.844000pt;}
.yec{bottom:151.281333pt;}
.yc5{bottom:153.822667pt;}
.y11f{bottom:158.312000pt;}
.y3f{bottom:158.741333pt;}
.ya0{bottom:158.862667pt;}
.y81{bottom:164.585333pt;}
.y55{bottom:165.016000pt;}
.y21{bottom:166.105333pt;}
.yc4{bottom:173.084000pt;}
.y11e{bottom:177.572000pt;}
.y3e{bottom:178.002667pt;}
.yeb{bottom:182.786667pt;}
.y80{bottom:183.845333pt;}
.y20{bottom:185.366667pt;}
.yc3{bottom:192.345333pt;}
.y9f{bottom:193.908000pt;}
.y54{bottom:195.510667pt;}
.y3d{bottom:197.264000pt;}
.yea{bottom:202.048000pt;}
.y1f{bottom:204.628000pt;}
.yc2{bottom:211.606667pt;}
.y11d{bottom:213.704000pt;}
.y53{bottom:214.770667pt;}
.y7f{bottom:218.892000pt;}
.y4c{bottom:221.009821pt;}
.ye9{bottom:221.309333pt;}
.y1e{bottom:223.889333pt;}
.y11c{bottom:224.637333pt;}
.yc1{bottom:230.868000pt;}
.y1d{bottom:243.150667pt;}
.ye8{bottom:244.268000pt;}
.y9e{bottom:247.153333pt;}
.y52{bottom:249.817333pt;}
.yc0{bottom:250.129333pt;}
.ye7{bottom:250.865333pt;}
.y1c{bottom:262.410667pt;}
.y9d{bottom:266.414667pt;}
.ybf{bottom:269.389333pt;}
.y11b{bottom:272.084000pt;}
.y7e{bottom:272.137333pt;}
.y51{bottom:279.041333pt;}
.y1b{bottom:281.672000pt;}
.y9c{bottom:285.676000pt;}
.y7d{bottom:291.398667pt;}
.ye6{bottom:297.080000pt;}
.y1a{bottom:300.933333pt;}
.y118{bottom:301.308000pt;}
.y11a{bottom:301.812000pt;}
.ybe{bottom:304.436000pt;}
.y7c{bottom:310.658667pt;}
.ye5{bottom:310.845333pt;}
.y117{bottom:312.746667pt;}
.ye3{bottom:316.341333pt;}
.y9b{bottom:318.220000pt;}
.y19{bottom:320.194667pt;}
.ye4{bottom:322.617333pt;}
.y119{bottom:323.530667pt;}
.ye2{bottom:335.602667pt;}
.y9a{bottom:337.481333pt;}
.y7b{bottom:347.189333pt;}
.y50{bottom:347.498667pt;}
.y116{bottom:354.914667pt;}
.y18{bottom:355.241333pt;}
.y99{bottom:356.742667pt;}
.ybd{bottom:357.681333pt;}
.y79{bottom:366.450667pt;}
.y4f{bottom:366.758667pt;}
.ye1{bottom:367.993333pt;}
.y7a{bottom:372.234667pt;}
.ybc{bottom:376.942667pt;}
.y115{bottom:383.320000pt;}
.y98{bottom:389.286667pt;}
.ye0{bottom:389.710667pt;}
.ybb{bottom:396.202667pt;}
.y78{bottom:398.994667pt;}
.y4b{bottom:399.304000pt;}
.y114{bottom:405.037333pt;}
.y17{bottom:408.485333pt;}
.yba{bottom:415.464000pt;}
.y77{bottom:418.256000pt;}
.ydf{bottom:418.934667pt;}
.y97{bottom:421.832000pt;}
.yde{bottom:424.432000pt;}
.y16{bottom:426.552000pt;}
.yb9{bottom:434.725333pt;}
.y113{bottom:436.542667pt;}
.y96{bottom:441.093333pt;}
.y15{bottom:444.617333pt;}
.yb8{bottom:453.986667pt;}
.y76{bottom:454.785333pt;}
.y112{bottom:455.804000pt;}
.y3c{bottom:457.033333pt;}
.ydd{bottom:459.477333pt;}
.y14{bottom:462.682667pt;}
.yb7{bottom:470.856000pt;}
.yb6{bottom:473.248000pt;}
.y95{bottom:473.637333pt;}
.y75{bottom:474.046667pt;}
.y111{bottom:475.065333pt;}
.y3b{bottom:476.294667pt;}
.y13{bottom:480.748000pt;}
.yb5{bottom:492.509333pt;}
.y94{bottom:492.898667pt;}
.y74{bottom:493.308000pt;}
.y110{bottom:494.326667pt;}
.y3a{bottom:495.554667pt;}
.y12{bottom:498.813333pt;}
.ydb{bottom:507.225333pt;}
.y10e{bottom:508.090667pt;}
.yb4{bottom:511.769333pt;}
.y73{bottom:512.569333pt;}
.yda{bottom:512.722667pt;}
.y10c{bottom:513.586667pt;}
.y39{bottom:514.816000pt;}
.y136{bottom:515.754667pt;}
.y11{bottom:516.878667pt;}
.ydc{bottom:518.998667pt;}
.y10f{bottom:519.372000pt;}
.y10d{bottom:519.864000pt;}
.y93{bottom:525.442667pt;}
.yb3{bottom:531.030667pt;}
.yd9{bottom:531.984000pt;}
.y10b{bottom:532.848000pt;}
.y38{bottom:534.077333pt;}
.y10{bottom:534.945333pt;}
.y135{bottom:535.016000pt;}
.y92{bottom:544.704000pt;}
.y72{bottom:547.614667pt;}
.yf{bottom:553.010667pt;}
.y134{bottom:554.277333pt;}
.y10a{bottom:558.750667pt;}
.y37{bottom:561.973333pt;}
.y91{bottom:563.965333pt;}
.yb2{bottom:566.077333pt;}
.yd8{bottom:566.213333pt;}
.ye{bottom:571.076000pt;}
.y133{bottom:573.538667pt;}
.y109{bottom:580.469333pt;}
.y36{bottom:581.233333pt;}
.y90{bottom:583.226667pt;}
.yd7{bottom:587.932000pt;}
.yd{bottom:589.141333pt;}
.y132{bottom:592.800000pt;}
.yb1{bottom:595.301333pt;}
.y108{bottom:596.852000pt;}
.y35{bottom:600.494667pt;}
.y71{bottom:600.860000pt;}
.y8f{bottom:602.488000pt;}
.yc{bottom:607.206667pt;}
.y107{bottom:610.616000pt;}
.y131{bottom:612.060000pt;}
.y70{bottom:614.624000pt;}
.y105{bottom:616.113333pt;}
.y34{bottom:619.756000pt;}
.y6e{bottom:620.121333pt;}
.yd6{bottom:621.426667pt;}
.y106{bottom:622.389333pt;}
.yb0{bottom:624.525333pt;}
.yb{bottom:625.273333pt;}
.y6f{bottom:626.397333pt;}
.y8e{bottom:637.533333pt;}
.y6d{bottom:639.382667pt;}
.ya{bottom:643.338667pt;}
.y104{bottom:645.337333pt;}
.y130{bottom:647.106667pt;}
.yd5{bottom:649.832000pt;}
.y100{bottom:650.898667pt;}
.y33{bottom:654.957333pt;}
.y103{bottom:657.109333pt;}
.y9{bottom:661.404000pt;}
.y4a{bottom:667.192000pt;}
.y102{bottom:667.677333pt;}
.yd4{bottom:671.549333pt;}
.y6c{bottom:672.304000pt;}
.yff{bottom:672.616000pt;}
.yaf{bottom:677.769333pt;}
.y101{bottom:679.450667pt;}
.y49{bottom:686.453333pt;}
.y8{bottom:688.374667pt;}
.y32{bottom:690.158667pt;}
.y8d{bottom:690.778667pt;}
.y6b{bottom:694.021333pt;}
.yae{bottom:697.030667pt;}
.y12f{bottom:700.352000pt;}
.yd3{bottom:703.054667pt;}
.y48{bottom:705.714667pt;}
.yfe{bottom:706.382667pt;}
.y31{bottom:709.420000pt;}
.y8c{bottom:710.040000pt;}
.y12e{bottom:719.613333pt;}
.yfd{bottom:720.146667pt;}
.yd2{bottom:722.316000pt;}
.y47{bottom:724.976000pt;}
.yfb{bottom:725.644000pt;}
.y30{bottom:728.681333pt;}
.y8b{bottom:729.301333pt;}
.yad{bottom:729.576000pt;}
.y6a{bottom:730.042667pt;}
.yfc{bottom:732.046667pt;}
.y12d{bottom:738.873333pt;}
.y46{bottom:744.237333pt;}
.yfa{bottom:744.905333pt;}
.y7{bottom:747.121333pt;}
.y2f{bottom:747.942667pt;}
.yac{bottom:748.836000pt;}
.y69{bottom:749.304000pt;}
.yd1{bottom:751.872000pt;}
.y12c{bottom:758.134667pt;}
.y8a{bottom:761.845333pt;}
.y2e{bottom:767.202667pt;}
.y68{bottom:768.565333pt;}
.y12b{bottom:771.898667pt;}
.yf9{bottom:774.461333pt;}
.y129{bottom:777.396000pt;}
.y45{bottom:779.282667pt;}
.y89{bottom:781.106667pt;}
.yab{bottom:781.381333pt;}
.y12a{bottom:783.798667pt;}
.y6{bottom:784.594667pt;}
.y67{bottom:787.826667pt;}
.yd0{bottom:798.088000pt;}
.y88{bottom:800.368000pt;}
.yaa{bottom:800.642667pt;}
.y2d{bottom:802.249333pt;}
.y5{bottom:808.505333pt;}
.y128{bottom:809.940000pt;}
.ycf{bottom:814.957333pt;}
.yce{bottom:817.348000pt;}
.y66{bottom:818.245333pt;}
.y87{bottom:819.629333pt;}
.yf8{bottom:820.677333pt;}
.y127{bottom:829.201333pt;}
.y2c{bottom:831.473333pt;}
.y44{bottom:831.833333pt;}
.y4{bottom:832.414667pt;}
.ya9{bottom:833.186667pt;}
.y86{bottom:838.889333pt;}
.yf7{bottom:839.937333pt;}
.y65{bottom:839.964000pt;}
.ycd{bottom:845.244000pt;}
.y126{bottom:848.462667pt;}
.y43{bottom:851.094667pt;}
.ya8{bottom:852.448000pt;}
.y64{bottom:857.764000pt;}
.yf6{bottom:859.198667pt;}
.ycc{bottom:864.505333pt;}
.y125{bottom:867.724000pt;}
.y85{bottom:871.434667pt;}
.y63{bottom:871.528000pt;}
.y42{bottom:874.792000pt;}
.y61{bottom:877.025333pt;}
.y3{bottom:879.737333pt;}
.ycb{bottom:881.374667pt;}
.y62{bottom:883.301333pt;}
.yca{bottom:883.766667pt;}
.y2b{bottom:884.718667pt;}
.ya7{bottom:884.992000pt;}
.y41{bottom:885.726667pt;}
.yf5{bottom:888.422667pt;}
.y84{bottom:890.696000pt;}
.y124{bottom:900.268000pt;}
.yc9{bottom:903.026667pt;}
.y2a{bottom:903.978667pt;}
.ya6{bottom:904.253333pt;}
.y60{bottom:906.580000pt;}
.y83{bottom:909.957333pt;}
.yf4{bottom:910.140000pt;}
.y2{bottom:912.946667pt;}
.y123{bottom:919.529333pt;}
.y29{bottom:923.240000pt;}
.ya5{bottom:936.798667pt;}
.yc8{bottom:938.073333pt;}
.y122{bottom:938.790667pt;}
.yf3{bottom:941.645333pt;}
.y28{bottom:942.501333pt;}
.y1{bottom:946.154667pt;}
.y5f{bottom:952.796000pt;}
.ya4{bottom:956.060000pt;}
.yf2{bottom:958.516000pt;}
.yf1{bottom:960.906667pt;}
.y27{bottom:961.762667pt;}
.y5e{bottom:969.666667pt;}
.y121{bottom:969.824000pt;}
.y5d{bottom:972.057333pt;}
.ya3{bottom:975.320000pt;}
.yf0{bottom:980.168000pt;}
.y26{bottom:981.024000pt;}
.y5c{bottom:985.821333pt;}
.y5a{bottom:991.318667pt;}
.y5b{bottom:997.594667pt;}
.yef{bottom:1003.126667pt;}
.yee{bottom:1009.724000pt;}
.ya2{bottom:1010.366667pt;}
.y25{bottom:1010.580000pt;}
.h11{height:19.425790pt;}
.hb{height:22.807408pt;}
.h1b{height:29.925069pt;}
.hc{height:30.392648pt;}
.h19{height:38.043849pt;}
.h1a{height:39.850400pt;}
.h4{height:40.610943pt;}
.h5{height:43.636400pt;}
.h8{height:44.250180pt;}
.h7{height:47.820800pt;}
.h12{height:48.706133pt;}
.h17{height:55.496648pt;}
.h14{height:56.003315pt;}
.hd{height:57.383467pt;}
.h3{height:57.384800pt;}
.h6{height:68.861600pt;}
.h1c{height:69.804800pt;}
.h16{height:69.810133pt;}
.h18{height:70.133067pt;}
.h15{height:77.992648pt;}
.h2{height:82.650000pt;}
.h1d{height:88.547315pt;}
.h9{height:90.956800pt;}
.hf{height:91.559467pt;}
.h10{height:134.690133pt;}
.he{height:134.695467pt;}
.h13{height:139.378688pt;}
.ha{height:248.881013pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:421.183253pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:93.830667pt;}
.x1{left:96.080000pt;}
.x2a{left:100.365333pt;}
.x6e{left:103.804000pt;}
.x94{left:106.508000pt;}
.x8b{left:107.972000pt;}
.x31{left:114.100000pt;}
.x2b{left:115.174667pt;}
.xe{left:119.412000pt;}
.x8c{left:121.417333pt;}
.x5d{left:123.856000pt;}
.x6f{left:128.084000pt;}
.xa2{left:129.102667pt;}
.x32{left:130.914667pt;}
.x2c{left:132.076000pt;}
.x6b{left:133.553333pt;}
.xa{left:135.020000pt;}
.x9a{left:136.496000pt;}
.x49{left:138.300000pt;}
.x7c{left:140.473333pt;}
.x4a{left:142.153333pt;}
.x20{left:145.016000pt;}
.x77{left:146.086667pt;}
.x2d{left:148.105333pt;}
.x5e{left:152.150667pt;}
.x5f{left:153.362667pt;}
.x9{left:156.838667pt;}
.x82{left:162.929333pt;}
.x33{left:166.078667pt;}
.x60{left:168.288000pt;}
.x61{left:174.237333pt;}
.x2{left:180.092000pt;}
.x3e{left:186.256000pt;}
.x9b{left:188.624000pt;}
.x4b{left:189.640000pt;}
.x8d{left:191.417333pt;}
.x34{left:196.934667pt;}
.x4c{left:198.746667pt;}
.x88{left:200.606667pt;}
.x9c{left:206.701333pt;}
.x9d{left:207.957333pt;}
.x4d{left:210.132000pt;}
.x8e{left:211.442667pt;}
.x35{left:214.814667pt;}
.x62{left:218.809333pt;}
.x40{left:219.775858pt;}
.x19{left:222.245333pt;}
.x8f{left:225.373333pt;}
.x36{left:231.629333pt;}
.x67{left:233.544000pt;}
.x4e{left:254.700000pt;}
.x7d{left:256.064000pt;}
.x16{left:258.378667pt;}
.x37{left:261.369333pt;}
.x7e{left:264.025333pt;}
.x3f{left:265.331526pt;}
.x9e{left:271.824000pt;}
.x81{left:273.072000pt;}
.x43{left:276.670667pt;}
.x21{left:282.449333pt;}
.x90{left:283.410667pt;}
.x91{left:286.368000pt;}
.x54{left:288.080000pt;}
.xaa{left:290.300000pt;}
.xab{left:292.389333pt;}
.xb{left:295.809333pt;}
.x95{left:298.502667pt;}
.x22{left:300.732000pt;}
.x79{left:301.760000pt;}
.x99{left:303.444000pt;}
.xc{left:305.234667pt;}
.x3{left:306.761333pt;}
.x4{left:308.410667pt;}
.x84{left:310.876000pt;}
.x9f{left:312.706667pt;}
.x7a{left:314.333333pt;}
.x7b{left:315.264000pt;}
.x55{left:317.909333pt;}
.x73{left:321.710667pt;}
.xae{left:326.148000pt;}
.x7{left:327.108000pt;}
.x56{left:328.201333pt;}
.x6{left:329.422667pt;}
.x5{left:332.342667pt;}
.x51{left:333.870667pt;}
.x52{left:335.961333pt;}
.xb3{left:337.532000pt;}
.xac{left:338.932000pt;}
.x57{left:341.402667pt;}
.x5b{left:346.210667pt;}
.x86{left:350.741333pt;}
.x72{left:355.945333pt;}
.xa0{left:357.140000pt;}
.x58{left:358.197333pt;}
.x59{left:360.286667pt;}
.x5c{left:362.049333pt;}
.x96{left:363.021333pt;}
.x8{left:365.076000pt;}
.x2f{left:368.741333pt;}
.xb4{left:376.997333pt;}
.x41{left:379.681333pt;}
.xaf{left:385.950667pt;}
.x53{left:390.702667pt;}
.xf{left:392.948000pt;}
.x42{left:400.968000pt;}
.x6c{left:402.989333pt;}
.xb0{left:405.274667pt;}
.x30{left:411.000000pt;}
.x5a{left:411.936000pt;}
.x93{left:413.985333pt;}
.x6d{left:424.389333pt;}
.x78{left:426.052000pt;}
.xa1{left:428.013333pt;}
.x85{left:430.962667pt;}
.x87{left:432.173333pt;}
.x69{left:435.269333pt;}
.x8a{left:438.392000pt;}
.x92{left:441.070667pt;}
.x6a{left:446.792000pt;}
.x12{left:448.256000pt;}
.xa3{left:455.526667pt;}
.xad{left:457.066667pt;}
.x13{left:465.486667pt;}
.x38{left:467.326667pt;}
.x44{left:482.042667pt;}
.x46{left:485.050667pt;}
.x39{left:487.745333pt;}
.x47{left:493.010667pt;}
.x45{left:506.945333pt;}
.x4f{left:507.936000pt;}
.x14{left:509.584000pt;}
.x28{left:511.974667pt;}
.xb1{left:514.306667pt;}
.x3a{left:518.185333pt;}
.x50{left:524.121333pt;}
.x15{left:526.814667pt;}
.x29{left:529.276000pt;}
.x1c{left:532.273333pt;}
.x23{left:536.289333pt;}
.x3b{left:538.384000pt;}
.x7f{left:549.501333pt;}
.x74{left:550.913333pt;}
.x1d{left:553.056000pt;}
.xa9{left:562.961333pt;}
.x97{left:565.565333pt;}
.x80{left:566.486667pt;}
.x75{left:567.897333pt;}
.x24{left:570.162667pt;}
.x17{left:572.892000pt;}
.x70{left:574.029333pt;}
.x76{left:581.086667pt;}
.x18{left:583.754667pt;}
.x71{left:591.014667pt;}
.x63{left:596.737333pt;}
.x98{left:605.096000pt;}
.x25{left:606.180000pt;}
.x64{left:611.956000pt;}
.x3c{left:614.632000pt;}
.x48{left:617.198667pt;}
.xa4{left:618.893333pt;}
.x26{left:623.998667pt;}
.x10{left:625.794667pt;}
.xa5{left:632.810667pt;}
.x27{left:638.405333pt;}
.x65{left:639.746667pt;}
.x11{left:641.529333pt;}
.x83{left:644.158667pt;}
.xa6{left:645.529333pt;}
.x1a{left:649.410667pt;}
.x66{left:655.185333pt;}
.x3d{left:658.018667pt;}
.x68{left:659.706667pt;}
.x2e{left:665.897333pt;}
.x1e{left:668.557333pt;}
.x89{left:670.185333pt;}
.xa7{left:671.384000pt;}
.xa8{left:681.760000pt;}
.xb2{left:687.858667pt;}
.x1b{left:689.673333pt;}
.x1f{left:696.306667pt;}
}




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