
    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_5929f77b960ea1f3a3a630ab.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.191000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9d184ef772d32add000fd95a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.175000;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_9b90c46f8a81f448a0a0ca0c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_dfb9a5121252dd0bf8743f41.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_78bc1e5ddc0d21d760d68e01.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893000;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_5399051cb0e7d3723f4b99fe.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.197754;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_5399051cb0e7d3723f4b99fe.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.197754;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_5399051cb0e7d3723f4b99fe.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.197754;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_5399051cb0e7d3723f4b99fe.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.197754;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_9594e88041a706e070502635.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.689000;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_5399051cb0e7d3723f4b99fe.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.197754;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_5399051cb0e7d3723f4b99fe.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.197754;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_5399051cb0e7d3723f4b99fe.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.197754;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_f4efc734fa8775e1fa98ef58.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.712000;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_e3c54bd7b4686c5ef34bfe96.woff2')format("woff");}.fff{font-family:fff;line-height:0.916000;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;}
.mb{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);}
.m2{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);}
.m15{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);}
.m1{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);}
.m1a{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);}
.m17{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);}
.mf{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);}
.m1e{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);}
.m10{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);}
.m1b{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);}
.m19{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);}
.m18{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);}
.m6{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);}
.m20{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);}
.m27{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);}
.m1c{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);}
.m29{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);}
.ma{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);}
.m11{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);}
.m12{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);}
.mc{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);}
.m24{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);}
.m13{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);}
.m25{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);}
.m23{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);}
.m9{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);}
.m4{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);}
.m1f{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);}
.m14{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);}
.m16{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);}
.md{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);}
.m8{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.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.m22{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);}
.m5{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-17.364000px;}
.v5{vertical-align:-11.952000px;}
.v8{vertical-align:-10.920000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:10.044000px;}
.v7{vertical-align:11.766000px;}
.v3{vertical-align:13.392000px;}
.v6{vertical-align:19.530000px;}
.v2{vertical-align:21.696000px;}
.ls9{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000422px;}
.lsb{letter-spacing:0.000563px;}
.lsf{letter-spacing:0.000800px;}
.lsa{letter-spacing:0.002096px;}
.lse{letter-spacing:0.002400px;}
.ls11{letter-spacing:0.003178px;}
.ls2f{letter-spacing:0.004458px;}
.lsc{letter-spacing:0.004800px;}
.ls7{letter-spacing:0.542815px;}
.ls6{letter-spacing:0.548815px;}
.ls16{letter-spacing:0.563108px;}
.ls1a{letter-spacing:0.565148px;}
.ls15{letter-spacing:0.648088px;}
.ls14{letter-spacing:0.669878px;}
.ls1e{letter-spacing:0.717483px;}
.ls20{letter-spacing:0.720783px;}
.ls1f{letter-spacing:0.746725px;}
.ls1d{letter-spacing:1.494476px;}
.ls1b{letter-spacing:2.983200px;}
.ls1c{letter-spacing:2.989200px;}
.ls13{letter-spacing:3.507900px;}
.ls5{letter-spacing:3.553200px;}
.ls10{letter-spacing:3.559200px;}
.ls0{letter-spacing:10.461300px;}
.ls8{letter-spacing:11.954850px;}
.ls2c{letter-spacing:13.279812px;}
.ls25{letter-spacing:13.385565px;}
.ls22{letter-spacing:13.448400px;}
.ls26{letter-spacing:13.454400px;}
.ls19{letter-spacing:13.456527px;}
.ls29{letter-spacing:13.550400px;}
.ls2e{letter-spacing:13.651112px;}
.ls27{letter-spacing:13.666254px;}
.ls2b{letter-spacing:14.703341px;}
.ls21{letter-spacing:14.943900px;}
.ls18{letter-spacing:14.944424px;}
.ls28{letter-spacing:15.891576px;}
.ls2a{letter-spacing:16.434600px;}
.ls2d{letter-spacing:16.679812px;}
.ls17{letter-spacing:18.524160px;}
.ls12{letter-spacing:19.008641px;}
.ls23{letter-spacing:19.809224px;}
.ls24{letter-spacing:21.538635px;}
.ls1{letter-spacing:57.415200px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.ls2{letter-spacing:72.361200px;}
.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;}
}
.ws66{word-spacing:-62.286600px;}
.ws8d{word-spacing:-47.337600px;}
.ws4a{word-spacing:-14.943900px;}
.ws4c{word-spacing:-13.449600px;}
.wsb{word-spacing:-11.955150px;}
.ws9{word-spacing:-11.357400px;}
.ws5{word-spacing:-10.460700px;}
.wsb4{word-spacing:-3.765863px;}
.wsb3{word-spacing:-3.646312px;}
.wscd{word-spacing:-3.535614px;}
.ws9d{word-spacing:-3.347434px;}
.ws75{word-spacing:-3.108331px;}
.wsb9{word-spacing:-2.869229px;}
.ws4f{word-spacing:-2.809453px;}
.wsf4{word-spacing:-2.743718px;}
.ws19{word-spacing:-2.630126px;}
.ws65{word-spacing:-2.510575px;}
.ws5f{word-spacing:-2.450800px;}
.ws133{word-spacing:-2.367130px;}
.ws132{word-spacing:-2.313331px;}
.ws7c{word-spacing:-2.271473px;}
.wsbe{word-spacing:-2.211697px;}
.wsf3{word-spacing:-2.151936px;}
.ws32{word-spacing:-2.151922px;}
.wsa2{word-spacing:-2.092146px;}
.wsa3{word-spacing:-2.032370px;}
.wsa7{word-spacing:-1.972595px;}
.ws11f{word-spacing:-1.936742px;}
.wsbf{word-spacing:-1.912819px;}
.wsbb{word-spacing:-1.853044px;}
.wsba{word-spacing:-1.793268px;}
.ws51{word-spacing:-1.733492px;}
.ws9f{word-spacing:-1.613941px;}
.ws124{word-spacing:-1.560154px;}
.wsbc{word-spacing:-1.554166px;}
.ws91{word-spacing:-1.494390px;}
.ws90{word-spacing:-1.434614px;}
.wsae{word-spacing:-1.374839px;}
.ws138{word-spacing:-1.344960px;}
.ws74{word-spacing:-1.315063px;}
.ws68{word-spacing:-1.255288px;}
.wsca{word-spacing:-1.075968px;}
.ws7e{word-spacing:-1.075961px;}
.wsee{word-spacing:-1.022170px;}
.ws34{word-spacing:-1.016185px;}
.wsc8{word-spacing:-0.968371px;}
.ws62{word-spacing:-0.956410px;}
.ws69{word-spacing:-0.896634px;}
.wsa6{word-spacing:-0.836858px;}
.ws95{word-spacing:-0.806976px;}
.wsad{word-spacing:-0.777083px;}
.ws77{word-spacing:-0.717307px;}
.wsf2{word-spacing:-0.699379px;}
.ws61{word-spacing:-0.657532px;}
.ws39{word-spacing:-0.597756px;}
.wsa8{word-spacing:-0.478205px;}
.ws11e{word-spacing:-0.430387px;}
.ws30{word-spacing:-0.418429px;}
.ws107{word-spacing:-0.376589px;}
.ws54{word-spacing:-0.358654px;}
.wsef{word-spacing:-0.322790px;}
.wsd{word-spacing:-0.298878px;}
.wsce{word-spacing:-0.268992px;}
.ws10{word-spacing:-0.239102px;}
.ws59{word-spacing:-0.215194px;}
.ws17{word-spacing:-0.179327px;}
.ws102{word-spacing:-0.161395px;}
.ws1e{word-spacing:-0.119551px;}
.wse4{word-spacing:-0.107597px;}
.ws18{word-spacing:-0.059776px;}
.ws4b{word-spacing:-0.053798px;}
.ws20{word-spacing:-0.047821px;}
.ws6{word-spacing:-0.041843px;}
.wsa{word-spacing:-0.004966px;}
.ws0{word-spacing:0.000000px;}
.wscf{word-spacing:0.053798px;}
.ws1b{word-spacing:0.059776px;}
.wscc{word-spacing:0.107597px;}
.ws15{word-spacing:0.119551px;}
.ws2{word-spacing:0.125528px;}
.wsd0{word-spacing:0.161395px;}
.ws24{word-spacing:0.179327px;}
.ws3{word-spacing:0.209214px;}
.ws94{word-spacing:0.215194px;}
.ws22{word-spacing:0.239102px;}
.wsfc{word-spacing:0.268992px;}
.ws8{word-spacing:0.298878px;}
.wsd1{word-spacing:0.322790px;}
.wse{word-spacing:0.358654px;}
.ws47{word-spacing:0.418429px;}
.ws2b{word-spacing:0.478205px;}
.wsdb{word-spacing:0.484186px;}
.wsa5{word-spacing:0.537980px;}
.ws111{word-spacing:0.537984px;}
.ws79{word-spacing:0.562500px;}
.ws16{word-spacing:0.567000px;}
.ws82{word-spacing:0.573000px;}
.ws78{word-spacing:0.597756px;}
.ws56{word-spacing:0.657532px;}
.ws57{word-spacing:0.699379px;}
.ws96{word-spacing:0.717307px;}
.ws3b{word-spacing:0.777083px;}
.ws2d{word-spacing:0.836858px;}
.wsf6{word-spacing:0.860774px;}
.wsf{word-spacing:0.896634px;}
.ws9a{word-spacing:0.956410px;}
.ws10e{word-spacing:0.968371px;}
.ws40{word-spacing:1.016185px;}
.ws5c{word-spacing:1.075961px;}
.ws28{word-spacing:1.135736px;}
.wsde{word-spacing:1.183565px;}
.ws110{word-spacing:1.237363px;}
.ws5b{word-spacing:1.255288px;}
.ws2c{word-spacing:1.315063px;}
.ws1d{word-spacing:1.374839px;}
.ws35{word-spacing:1.434614px;}
.ws6c{word-spacing:1.494390px;}
.ws6f{word-spacing:1.554166px;}
.ws9c{word-spacing:1.613941px;}
.wsd7{word-spacing:1.613952px;}
.ws71{word-spacing:1.667750px;}
.ws6b{word-spacing:1.673717px;}
.ws72{word-spacing:1.721549px;}
.ws126{word-spacing:1.829146px;}
.ws14{word-spacing:1.853044px;}
.wseb{word-spacing:1.882944px;}
.ws5a{word-spacing:1.912819px;}
.wsb8{word-spacing:2.032370px;}
.ws2f{word-spacing:2.092146px;}
.ws6a{word-spacing:2.151922px;}
.ws60{word-spacing:2.211697px;}
.ws11b{word-spacing:2.259533px;}
.ws4e{word-spacing:2.271473px;}
.wsc6{word-spacing:2.313331px;}
.ws8c{word-spacing:2.391024px;}
.wsed{word-spacing:2.420928px;}
.ws1a{word-spacing:2.450800px;}
.ws7{word-spacing:2.510252px;}
.ws45{word-spacing:2.510575px;}
.ws116{word-spacing:2.528525px;}
.ws6e{word-spacing:2.570351px;}
.ws31{word-spacing:2.630126px;}
.ws49{word-spacing:2.689902px;}
.ws108{word-spacing:2.743718px;}
.wsb7{word-spacing:2.749678px;}
.wsa1{word-spacing:2.797517px;}
.ws3c{word-spacing:2.869229px;}
.wsc{word-spacing:2.869236px;}
.wsc9{word-spacing:2.905114px;}
.ws4d{word-spacing:2.929004px;}
.wsc7{word-spacing:2.958912px;}
.ws3e{word-spacing:2.988780px;}
.ws33{word-spacing:3.048556px;}
.ws13c{word-spacing:3.066509px;}
.ws70{word-spacing:3.108331px;}
.ws73{word-spacing:3.168107px;}
.wsdf{word-spacing:3.222010px;}
.wse6{word-spacing:3.222394px;}
.ws106{word-spacing:3.222960px;}
.ws139{word-spacing:3.223843px;}
.ws109{word-spacing:3.227299px;}
.ws3d{word-spacing:3.227882px;}
.ws118{word-spacing:3.227904px;}
.wscb{word-spacing:3.253572px;}
.ws25{word-spacing:3.287658px;}
.wsc5{word-spacing:3.389299px;}
.ws38{word-spacing:3.407209px;}
.ws10d{word-spacing:3.443098px;}
.ws98{word-spacing:3.466985px;}
.ws11a{word-spacing:3.496896px;}
.ws11{word-spacing:3.526760px;}
.ws3a{word-spacing:3.646312px;}
.ws12{word-spacing:3.706087px;}
.ws67{word-spacing:3.765863px;}
.ws12f{word-spacing:3.765888px;}
.ws48{word-spacing:3.825638px;}
.ws37{word-spacing:3.885414px;}
.ws21{word-spacing:3.928948px;}
.ws5e{word-spacing:3.945190px;}
.ws5d{word-spacing:4.004965px;}
.wse7{word-spacing:4.034880px;}
.ws80{word-spacing:4.064741px;}
.wsc3{word-spacing:4.088678px;}
.wsaa{word-spacing:4.124516px;}
.wsc4{word-spacing:4.142477px;}
.ws26{word-spacing:4.184292px;}
.ws23{word-spacing:4.303872px;}
.ws8f{word-spacing:4.363619px;}
.ws12a{word-spacing:4.411469px;}
.ws7b{word-spacing:4.423394px;}
.ws7a{word-spacing:4.483170px;}
.wsdd{word-spacing:4.572864px;}
.ws76{word-spacing:4.662497px;}
.ws27{word-spacing:4.722272px;}
.ws36{word-spacing:4.782048px;}
.ws7d{word-spacing:4.841824px;}
.ws63{word-spacing:4.961375px;}
.ws2a{word-spacing:5.021150px;}
.wsd3{word-spacing:5.057050px;}
.ws12c{word-spacing:5.110848px;}
.ws46{word-spacing:5.140702px;}
.wsb1{word-spacing:5.379804px;}
.ws93{word-spacing:5.618906px;}
.ws100{word-spacing:5.648832px;}
.ws92{word-spacing:5.678682px;}
.ws97{word-spacing:5.798233px;}
.ws58{word-spacing:5.810227px;}
.ws1c{word-spacing:5.858009px;}
.wsb0{word-spacing:6.037336px;}
.wsab{word-spacing:6.097111px;}
.ws9b{word-spacing:6.156887px;}
.ws6d{word-spacing:6.216662px;}
.wsa4{word-spacing:6.276438px;}
.wsd5{word-spacing:6.348211px;}
.wsd8{word-spacing:6.402010px;}
.wse8{word-spacing:6.671002px;}
.wsac{word-spacing:6.754643px;}
.ws2e{word-spacing:6.814418px;}
.ws52{word-spacing:6.933970px;}
.wsbd{word-spacing:6.993745px;}
.wsff{word-spacing:7.155187px;}
.ws105{word-spacing:7.208986px;}
.ws53{word-spacing:7.292623px;}
.wsa0{word-spacing:7.316582px;}
.ws55{word-spacing:7.412174px;}
.ws8e{word-spacing:7.531726px;}
.ws81{word-spacing:7.711052px;}
.ws50{word-spacing:7.890379px;}
.ws64{word-spacing:7.908365px;}
.wsda{word-spacing:8.069760px;}
.ws29{word-spacing:8.129482px;}
.ws13{word-spacing:8.368584px;}
.ws10b{word-spacing:8.500147px;}
.ws9e{word-spacing:9.145667px;}
.ws135{word-spacing:9.307123px;}
.wsa9{word-spacing:9.414720px;}
.ws7f{word-spacing:10.167898px;}
.ws4{word-spacing:10.420590px;}
.wsc1{word-spacing:10.580281px;}
.ws43{word-spacing:11.118262px;}
.ws41{word-spacing:11.297588px;}
.ws1f{word-spacing:11.909055px;}
.ws3f{word-spacing:11.955120px;}
.ws42{word-spacing:12.313774px;}
.ws11d{word-spacing:12.965414px;}
.wsf0{word-spacing:13.073011px;}
.ws128{word-spacing:13.126810px;}
.wsdc{word-spacing:13.313229px;}
.wsf5{word-spacing:13.385318px;}
.wsf8{word-spacing:13.386230px;}
.wsf9{word-spacing:13.386586px;}
.ws119{word-spacing:13.387498px;}
.ws13a{word-spacing:13.387670px;}
.ws12e{word-spacing:13.387853px;}
.ws137{word-spacing:13.388582px;}
.ws125{word-spacing:13.389542px;}
.ws12b{word-spacing:13.390310px;}
.ws129{word-spacing:13.390512px;}
.ws130{word-spacing:13.390608px;}
.wsd6{word-spacing:13.391136px;}
.ws136{word-spacing:13.391290px;}
.wsfb{word-spacing:13.392221px;}
.wsd2{word-spacing:13.395802px;}
.ws13b{word-spacing:13.449600px;}
.ws104{word-spacing:13.470524px;}
.ws123{word-spacing:13.586996px;}
.ws127{word-spacing:13.599488px;}
.wsfd{word-spacing:13.610995px;}
.ws10f{word-spacing:14.310374px;}
.ws44{word-spacing:14.884124px;}
.wsb6{word-spacing:15.003676px;}
.wsec{word-spacing:15.278746px;}
.wsc2{word-spacing:15.422105px;}
.wsaf{word-spacing:15.541656px;}
.ws117{word-spacing:15.921453px;}
.ws99{word-spacing:15.924326px;}
.wsf1{word-spacing:16.516109px;}
.wsfe{word-spacing:16.569907px;}
.wse0{word-spacing:16.615430px;}
.wse5{word-spacing:16.616275px;}
.ws122{word-spacing:16.618320px;}
.ws115{word-spacing:16.618445px;}
.ws10c{word-spacing:16.618618px;}
.ws113{word-spacing:16.619232px;}
.wse1{word-spacing:16.619520px;}
.ws134{word-spacing:16.620067px;}
.ws10a{word-spacing:16.621171px;}
.ws114{word-spacing:16.621373px;}
.ws101{word-spacing:16.622275px;}
.wsea{word-spacing:16.622669px;}
.wse3{word-spacing:16.623706px;}
.ws120{word-spacing:16.626787px;}
.ws103{word-spacing:16.677504px;}
.ws131{word-spacing:16.731302px;}
.wse2{word-spacing:16.892698px;}
.ws112{word-spacing:17.000294px;}
.wsf7{word-spacing:17.054093px;}
.ws121{word-spacing:17.538278px;}
.wsb5{word-spacing:18.171782px;}
.wsb2{word-spacing:18.470660px;}
.ws12d{word-spacing:18.506650px;}
.wsd9{word-spacing:19.809688px;}
.wse9{word-spacing:20.066803px;}
.ws11c{word-spacing:23.886490px;}
.wsfa{word-spacing:25.500442px;}
.ws1{word-spacing:28.455541px;}
.wsd4{word-spacing:32.225242px;}
.ws89{word-spacing:119.238403px;}
.ws8a{word-spacing:144.125948px;}
.ws88{word-spacing:250.721693px;}
.ws84{word-spacing:333.190685px;}
.ws87{word-spacing:339.220061px;}
.ws8b{word-spacing:346.622390px;}
.ws86{word-spacing:346.640285px;}
.ws85{word-spacing:476.405981px;}
.ws83{word-spacing:641.244278px;}
.wsc0{word-spacing:758.193710px;}
._35{margin-left:-24.747264px;}
._9{margin-left:-23.312484px;}
._32{margin-left:-20.258064px;}
._b{margin-left:-18.554393px;}
._2{margin-left:-16.276849px;}
._2f{margin-left:-8.584368px;}
._1c{margin-left:-7.232848px;}
._c{margin-left:-5.881921px;}
._19{margin-left:-4.878281px;}
._3{margin-left:-3.849538px;}
._7{margin-left:-2.343197px;}
._5{margin-left:-1.087913px;}
._2b{width:1.136102px;}
._1{width:2.343197px;}
._8{width:3.407209px;}
._13{width:4.423394px;}
._34{width:7.047590px;}
._31{width:9.223384px;}
._30{width:11.190067px;}
._0{width:12.971268px;}
._1d{width:14.382007px;}
._10{width:15.732931px;}
._18{width:16.832804px;}
._4{width:18.327791px;}
._e{width:20.347616px;}
._d{width:21.710495px;}
._16{width:23.097281px;}
._1e{width:24.149342px;}
._6{width:25.940136px;}
._17{width:26.958796px;}
._14{width:28.871615px;}
._15{width:31.406094px;}
._36{width:32.990747px;}
._1a{width:34.323146px;}
._21{width:37.120896px;}
._2e{width:38.507190px;}
._1b{width:39.942053px;}
._22{width:42.261349px;}
._f{width:44.114393px;}
._2d{width:45.433568px;}
._20{width:47.609179px;}
._a{width:55.484098px;}
._33{width:61.868160px;}
._2c{width:64.893927px;}
._26{width:130.330819px;}
._25{width:195.596611px;}
._28{width:477.138010px;}
._2a{width:490.587610px;}
._27{width:536.477645px;}
._24{width:548.581259px;}
._29{width:564.309313px;}
._23{width:572.253581px;}
._11{width:1700.810700px;}
._1f{width:2486.072700px;}
._12{width:2509.982700px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fse{font-size:43.600200px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.337600px;}
.fs5{font-size:47.820600px;}
.fs11{font-size:49.298400px;}
.fsd{font-size:52.304400px;}
.fs9{font-size:53.798400px;}
.fs10{font-size:55.911600px;}
.fsf{font-size:56.058000px;}
.fsa{font-size:58.917600px;}
.fs1{font-size:59.775600px;}
.fsc{font-size:60.120000px;}
.fs8{font-size:61.322400px;}
.fsb{font-size:62.286600px;}
.fs7{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y190{bottom:1.601075px;}
.ye6{bottom:1.944548px;}
.y160{bottom:3.692536px;}
.yb1{bottom:4.670973px;}
.y15b{bottom:5.238174px;}
.y11c{bottom:7.101275px;}
.yad{bottom:8.170069px;}
.y4a{bottom:45.921000px;}
.y159{bottom:99.720000px;}
.y18{bottom:100.260000px;}
.y162{bottom:103.561500px;}
.yef{bottom:104.206500px;}
.y12d{bottom:104.419500px;}
.y18e{bottom:104.965500px;}
.y15d{bottom:105.154500px;}
.y297{bottom:105.961500px;}
.y1ab{bottom:107.976000px;}
.yf0{bottom:109.632000px;}
.yab{bottom:111.342000px;}
.y11e{bottom:111.810000px;}
.y7b{bottom:116.278500px;}
.yaf{bottom:118.029000px;}
.y17{bottom:118.147500px;}
.y12b{bottom:118.365000px;}
.y119{bottom:120.322500px;}
.y157{bottom:120.610500px;}
.y161{bottom:122.794500px;}
.yb4{bottom:122.998500px;}
.y12c{bottom:123.652500px;}
.y15c{bottom:124.387500px;}
.yed{bottom:125.098500px;}
.y296{bottom:125.112000px;}
.y11a{bottom:125.746500px;}
.y18d{bottom:125.856000px;}
.y158{bottom:126.036000px;}
.y230{bottom:127.764000px;}
.y1aa{bottom:128.868000px;}
.y263{bottom:129.594000px;}
.yee{bottom:130.522500px;}
.y11d{bottom:131.043000px;}
.yaa{bottom:132.234000px;}
.y16{bottom:136.035000px;}
.y7a{bottom:137.170500px;}
.yae{bottom:137.262000px;}
.ye4{bottom:139.255500px;}
.y117{bottom:141.213000px;}
.y156{bottom:141.502500px;}
.yb3{bottom:142.230000px;}
.y295{bottom:144.262500px;}
.y15f{bottom:145.224000px;}
.yec{bottom:145.990500px;}
.y118{bottom:146.638500px;}
.y18c{bottom:146.748000px;}
.y15a{bottom:146.815779px;}
.y262{bottom:148.744500px;}
.y1a9{bottom:149.758500px;}
.ya9{bottom:153.126000px;}
.y11b{bottom:153.473022px;}
.y203{bottom:153.706500px;}
.y15{bottom:153.924000px;}
.y49{bottom:155.959500px;}
.y22f{bottom:156.228000px;}
.y79{bottom:158.061000px;}
.y1ce{bottom:158.565000px;}
.ye3{bottom:160.147500px;}
.yb2{bottom:161.463000px;}
.y115{bottom:162.105000px;}
.y155{bottom:162.394500px;}
.yac{bottom:162.679500px;}
.y294{bottom:163.413000px;}
.yea{bottom:166.881000px;}
.y116{bottom:167.529000px;}
.y18b{bottom:167.640000px;}
.y261{bottom:167.895000px;}
.y1a8{bottom:170.650500px;}
.y14{bottom:171.811500px;}
.y202{bottom:171.868500px;}
.yeb{bottom:172.306500px;}
.ya8{bottom:174.016500px;}
.y201{bottom:174.598500px;}
.y48{bottom:176.851500px;}
.y78{bottom:178.953000px;}
.y1cd{bottom:179.457000px;}
.ye2{bottom:181.039500px;}
.y293{bottom:182.563500px;}
.y113{bottom:182.997000px;}
.y153{bottom:183.285000px;}
.yb0{bottom:183.892500px;}
.y22e{bottom:184.693500px;}
.y260{bottom:187.045500px;}
.ye9{bottom:187.773000px;}
.y114{bottom:188.421000px;}
.y18a{bottom:188.530500px;}
.y154{bottom:188.710500px;}
.y13{bottom:189.699000px;}
.y1a7{bottom:191.542500px;}
.ya7{bottom:194.908500px;}
.y200{bottom:195.490500px;}
.y47{bottom:197.742000px;}
.y77{bottom:199.845000px;}
.y1cc{bottom:200.347500px;}
.y292{bottom:201.714000px;}
.ye0{bottom:201.930000px;}
.y112{bottom:203.887500px;}
.y152{bottom:204.177000px;}
.y22d{bottom:204.192000px;}
.y25f{bottom:206.196000px;}
.ye1{bottom:207.355500px;}
.y12{bottom:207.586500px;}
.y189{bottom:209.422500px;}
.y1a6{bottom:212.434500px;}
.ya6{bottom:215.800500px;}
.y1ff{bottom:216.381000px;}
.y46{bottom:218.634000px;}
.y76{bottom:220.735500px;}
.y291{bottom:220.864500px;}
.y1cb{bottom:221.239500px;}
.ydf{bottom:222.822000px;}
.ye8{bottom:223.401000px;}
.y22c{bottom:223.690500px;}
.y111{bottom:224.779500px;}
.y151{bottom:225.069000px;}
.y25e{bottom:225.346500px;}
.y11{bottom:225.475500px;}
.y188{bottom:230.314500px;}
.y1a5{bottom:233.325000px;}
.ya5{bottom:236.691000px;}
.y1fe{bottom:237.273000px;}
.y45{bottom:239.526000px;}
.y290{bottom:240.015000px;}
.y75{bottom:241.627500px;}
.y1ca{bottom:242.131500px;}
.ye7{bottom:242.634000px;}
.y22b{bottom:243.190500px;}
.yde{bottom:243.714000px;}
.y25d{bottom:244.497000px;}
.y110{bottom:245.671500px;}
.y150{bottom:245.961000px;}
.y12a{bottom:249.138000px;}
.y187{bottom:251.205000px;}
.y10{bottom:252.330000px;}
.y1a4{bottom:254.217000px;}
.y1fd{bottom:255.435000px;}
.ya4{bottom:257.583000px;}
.y1fc{bottom:258.165000px;}
.y28f{bottom:259.165500px;}
.y44{bottom:260.416500px;}
.y74{bottom:262.519500px;}
.y22a{bottom:262.689000px;}
.y1c9{bottom:263.022000px;}
.y25c{bottom:263.647500px;}
.ydd{bottom:264.606000px;}
.ye5{bottom:265.063500px;}
.y10f{bottom:266.563500px;}
.y14f{bottom:266.851500px;}
.y129{bottom:270.030000px;}
.yf{bottom:270.217500px;}
.y186{bottom:272.097000px;}
.y1a3{bottom:275.109000px;}
.y28e{bottom:278.316000px;}
.ya3{bottom:278.475000px;}
.y1fb{bottom:279.055500px;}
.y42{bottom:281.308500px;}
.y25b{bottom:282.798000px;}
.y73{bottom:283.410000px;}
.y1c8{bottom:283.914000px;}
.ydb{bottom:285.496500px;}
.y43{bottom:286.732500px;}
.y10e{bottom:287.454000px;}
.y14e{bottom:287.743500px;}
.ye{bottom:288.105000px;}
.ydc{bottom:290.922000px;}
.y229{bottom:291.153000px;}
.y185{bottom:292.989000px;}
.y1a2{bottom:295.999500px;}
.y28d{bottom:297.466500px;}
.ya2{bottom:299.365500px;}
.y1fa{bottom:299.947500px;}
.y25a{bottom:301.948500px;}
.y40{bottom:302.200500px;}
.y72{bottom:304.302000px;}
.y1c7{bottom:304.806000px;}
.yd{bottom:305.994000px;}
.yd9{bottom:306.388500px;}
.y41{bottom:307.624500px;}
.y10d{bottom:308.346000px;}
.y14d{bottom:308.635500px;}
.y228{bottom:310.653000px;}
.yda{bottom:311.812500px;}
.y184{bottom:313.881000px;}
.y28c{bottom:316.617000px;}
.y1a1{bottom:316.891500px;}
.ya1{bottom:320.257500px;}
.y1f9{bottom:320.839500px;}
.y259{bottom:321.099000px;}
.y3f{bottom:323.091000px;}
.yc{bottom:323.881500px;}
.y71{bottom:325.194000px;}
.y1c6{bottom:325.696500px;}
.yd8{bottom:327.280500px;}
.y10b{bottom:329.238000px;}
.y14c{bottom:329.526000px;}
.y227{bottom:330.151500px;}
.y10c{bottom:334.662000px;}
.y183{bottom:334.771500px;}
.y28b{bottom:335.767500px;}
.y1a0{bottom:337.783500px;}
.y258{bottom:340.249500px;}
.ya0{bottom:341.149500px;}
.y1f8{bottom:341.730000px;}
.yb{bottom:341.769000px;}
.y3e{bottom:343.983000px;}
.y70{bottom:346.084500px;}
.y1c5{bottom:346.588500px;}
.yd6{bottom:348.171000px;}
.y226{bottom:349.650000px;}
.y109{bottom:350.128500px;}
.y14a{bottom:350.418000px;}
.yd7{bottom:353.596500px;}
.y289{bottom:354.918000px;}
.y10a{bottom:355.554000px;}
.y182{bottom:355.663500px;}
.y14b{bottom:355.842000px;}
.y28a{bottom:358.146000px;}
.y19f{bottom:358.674000px;}
.y257{bottom:359.400000px;}
.ya{bottom:359.658000px;}
.y9f{bottom:362.041500px;}
.y1f7{bottom:362.622000px;}
.y3d{bottom:364.875000px;}
.y6f{bottom:366.976500px;}
.y1c3{bottom:367.480500px;}
.yd4{bottom:369.063000px;}
.y108{bottom:371.020500px;}
.y149{bottom:371.310000px;}
.y1c4{bottom:372.904500px;}
.y288{bottom:374.070000px;}
.yd5{bottom:374.487000px;}
.y181{bottom:376.555500px;}
.y9{bottom:377.545500px;}
.y225{bottom:378.115500px;}
.y256{bottom:378.550500px;}
.y19e{bottom:379.566000px;}
.y9e{bottom:382.932000px;}
.y1f5{bottom:383.514000px;}
.y3b{bottom:385.767000px;}
.y6e{bottom:387.868500px;}
.y1c2{bottom:388.372500px;}
.y1f6{bottom:388.938000px;}
.yd3{bottom:389.955000px;}
.y3c{bottom:391.191000px;}
.y107{bottom:391.912500px;}
.y148{bottom:392.200500px;}
.y287{bottom:393.220500px;}
.y8{bottom:395.433000px;}
.y180{bottom:397.446000px;}
.y255{bottom:397.701000px;}
.y224{bottom:398.136000px;}
.y19d{bottom:400.458000px;}
.y9d{bottom:403.824000px;}
.y1f4{bottom:404.406000px;}
.y39{bottom:406.657500px;}
.y6d{bottom:408.759000px;}
.y1c1{bottom:409.263000px;}
.yd2{bottom:410.845500px;}
.y3a{bottom:412.083000px;}
.y286{bottom:412.371000px;}
.y106{bottom:412.803000px;}
.y147{bottom:413.092500px;}
.y7{bottom:413.322000px;}
.y254{bottom:416.851500px;}
.y223{bottom:418.156500px;}
.y17f{bottom:418.338000px;}
.y19c{bottom:421.348500px;}
.y1f3{bottom:425.296500px;}
.y29a{bottom:426.790500px;}
.y38{bottom:427.549500px;}
.y9c{bottom:429.198000px;}
.y6c{bottom:429.651000px;}
.y1c0{bottom:430.155000px;}
.y285{bottom:431.521500px;}
.yd1{bottom:431.737500px;}
.y104{bottom:433.695000px;}
.y146{bottom:433.984500px;}
.y253{bottom:436.002000px;}
.y6{bottom:437.187000px;}
.y105{bottom:439.119000px;}
.y17e{bottom:439.230000px;}
.y19b{bottom:442.240500px;}
.y299{bottom:445.942500px;}
.y1f2{bottom:446.188500px;}
.y37{bottom:448.441500px;}
.y6b{bottom:450.543000px;}
.y284{bottom:450.672000px;}
.y1bf{bottom:451.047000px;}
.yd0{bottom:452.629500px;}
.y9b{bottom:453.630000px;}
.y103{bottom:454.587000px;}
.y144{bottom:454.875000px;}
.y5{bottom:455.074500px;}
.y252{bottom:455.152500px;}
.y222{bottom:456.111000px;}
.y17d{bottom:460.120500px;}
.y145{bottom:460.300500px;}
.y19a{bottom:463.132500px;}
.y298{bottom:465.093000px;}
.y1f1{bottom:467.080500px;}
.y36{bottom:469.332000px;}
.y283{bottom:469.822500px;}
.y6a{bottom:471.435000px;}
.y1be{bottom:471.937500px;}
.y102{bottom:472.749000px;}
.y4{bottom:472.963500px;}
.ycf{bottom:473.520000px;}
.y251{bottom:474.303000px;}
.y100{bottom:475.477500px;}
.y142{bottom:475.767000px;}
.y221{bottom:477.003000px;}
.y101{bottom:480.903000px;}
.y17c{bottom:481.012500px;}
.y143{bottom:481.192500px;}
.y199{bottom:484.024500px;}
.y1f0{bottom:487.971000px;}
.y282{bottom:488.973000px;}
.y35{bottom:490.224000px;}
.y3{bottom:490.851000px;}
.y69{bottom:492.325500px;}
.y9a{bottom:492.454500px;}
.y1bd{bottom:492.829500px;}
.y250{bottom:493.453500px;}
.ycd{bottom:494.412000px;}
.yff{bottom:496.369500px;}
.y141{bottom:496.659000px;}
.y220{bottom:497.893500px;}
.yce{bottom:499.837500px;}
.y17b{bottom:501.904500px;}
.y198{bottom:504.915000px;}
.y281{bottom:508.123500px;}
.y1ef{bottom:508.863000px;}
.y34{bottom:511.116000px;}
.y24f{bottom:512.605500px;}
.y68{bottom:513.217500px;}
.y99{bottom:513.346500px;}
.y1bc{bottom:513.721500px;}
.y2{bottom:514.716000px;}
.ycc{bottom:515.304000px;}
.yfd{bottom:517.261500px;}
.y140{bottom:517.551000px;}
.y21f{bottom:518.785500px;}
.y166{bottom:519.787500px;}
.yfe{bottom:522.685500px;}
.y17a{bottom:522.795000px;}
.y197{bottom:525.807000px;}
.y280{bottom:527.274000px;}
.y1ee{bottom:529.755000px;}
.y24e{bottom:531.756000px;}
.y33{bottom:532.006500px;}
.y1{bottom:532.605000px;}
.y67{bottom:534.109500px;}
.y98{bottom:534.237000px;}
.y1bb{bottom:534.612000px;}
.yca{bottom:536.194500px;}
.yfc{bottom:538.152000px;}
.y13f{bottom:538.441500px;}
.y21e{bottom:539.677500px;}
.ycb{bottom:541.620000px;}
.y179{bottom:543.687000px;}
.y27f{bottom:546.424500px;}
.y196{bottom:546.699000px;}
.y1ec{bottom:550.645500px;}
.y24d{bottom:550.906500px;}
.y32{bottom:552.898500px;}
.y66{bottom:555.000000px;}
.y97{bottom:555.129000px;}
.y1ba{bottom:555.504000px;}
.y1ed{bottom:556.071000px;}
.yc8{bottom:557.086500px;}
.yfb{bottom:559.044000px;}
.y13d{bottom:559.333500px;}
.y21d{bottom:560.568000px;}
.yc9{bottom:562.512000px;}
.y178{bottom:564.579000px;}
.y13e{bottom:564.757500px;}
.y27e{bottom:565.575000px;}
.y195{bottom:567.589500px;}
.y24c{bottom:570.057000px;}
.y1ea{bottom:571.537500px;}
.y31{bottom:573.790500px;}
.y65{bottom:575.892000px;}
.y96{bottom:576.021000px;}
.y1b9{bottom:576.396000px;}
.y1eb{bottom:576.961500px;}
.yc6{bottom:577.978500px;}
.yfa{bottom:579.936000px;}
.y13c{bottom:580.225500px;}
.y21c{bottom:581.460000px;}
.yc7{bottom:583.402500px;}
.y27d{bottom:584.725500px;}
.y177{bottom:585.469500px;}
.y194{bottom:588.481500px;}
.y24b{bottom:589.207500px;}
.y1e9{bottom:592.429500px;}
.y30{bottom:594.681000px;}
.y63{bottom:596.784000px;}
.y95{bottom:596.913000px;}
.y1b8{bottom:597.286500px;}
.yc5{bottom:598.870500px;}
.y13b{bottom:601.116000px;}
.y64{bottom:602.208000px;}
.y21b{bottom:602.352000px;}
.y27c{bottom:603.876000px;}
.y128{bottom:604.294500px;}
.yf9{bottom:605.310000px;}
.y176{bottom:606.361500px;}
.y24a{bottom:608.358000px;}
.y193{bottom:609.373500px;}
.y1e8{bottom:613.320000px;}
.y2f{bottom:615.573000px;}
.y62{bottom:617.674500px;}
.y94{bottom:617.803500px;}
.y1b7{bottom:618.178500px;}
.yc3{bottom:619.761000px;}
.y27b{bottom:623.026500px;}
.y21a{bottom:623.244000px;}
.yc4{bottom:625.186500px;}
.y13a{bottom:626.491500px;}
.y175{bottom:627.253500px;}
.y249{bottom:627.508500px;}
.y1e7{bottom:634.212000px;}
.y2e{bottom:636.465000px;}
.y61{bottom:638.566500px;}
.y93{bottom:638.695500px;}
.yc1{bottom:640.653000px;}
.y27a{bottom:642.177000px;}
.y1b6{bottom:643.554000px;}
.y219{bottom:644.134500px;}
.y192{bottom:645.001500px;}
.yc2{bottom:646.077000px;}
.y248{bottom:646.659000px;}
.y174{bottom:648.145500px;}
.y1e5{bottom:655.104000px;}
.y60{bottom:659.458500px;}
.y91{bottom:659.587500px;}
.y1e6{bottom:660.528000px;}
.y1b5{bottom:660.963000px;}
.y279{bottom:661.327500px;}
.yc0{bottom:661.545000px;}
.y139{bottom:661.833000px;}
.y191{bottom:664.233000px;}
.y92{bottom:665.011500px;}
.y218{bottom:665.026500px;}
.y247{bottom:665.809500px;}
.y2d{bottom:666.322500px;}
.y173{bottom:669.036000px;}
.y1e4{bottom:675.996000px;}
.y5f{bottom:680.349000px;}
.y90{bottom:680.478000px;}
.ybe{bottom:682.435500px;}
.y138{bottom:682.725000px;}
.y246{bottom:684.960000px;}
.y217{bottom:685.918500px;}
.y18f{bottom:686.662500px;}
.ybf{bottom:687.861000px;}
.y172{bottom:689.928000px;}
.y1b4{bottom:696.306000px;}
.y1e3{bottom:696.886500px;}
.y278{bottom:699.628500px;}
.y5e{bottom:701.241000px;}
.y8f{bottom:701.370000px;}
.ybd{bottom:703.327500px;}
.y137{bottom:703.617000px;}
.y245{bottom:704.110500px;}
.y2c{bottom:706.342500px;}
.y216{bottom:706.809000px;}
.yf8{bottom:707.811000px;}
.y171{bottom:710.820000px;}
.y1b3{bottom:717.196500px;}
.y1e2{bottom:717.778500px;}
.y277{bottom:718.779000px;}
.y5d{bottom:722.133000px;}
.y8e{bottom:722.262000px;}
.y2b{bottom:722.482500px;}
.y244{bottom:723.261000px;}
.ybb{bottom:724.219500px;}
.y215{bottom:727.701000px;}
.ybc{bottom:729.643500px;}
.y170{bottom:731.710500px;}
.y1b2{bottom:735.358500px;}
.y276{bottom:737.929500px;}
.y1b1{bottom:738.088500px;}
.y1e1{bottom:738.670500px;}
.y243{bottom:742.411500px;}
.y2a{bottom:742.962000px;}
.y5c{bottom:743.025000px;}
.y8d{bottom:743.152500px;}
.yba{bottom:745.110000px;}
.y165{bottom:748.578000px;}
.y214{bottom:748.593000px;}
.y136{bottom:748.813500px;}
.y127{bottom:750.535500px;}
.y135{bottom:751.755000px;}
.y16e{bottom:752.602500px;}
.y29{bottom:754.761000px;}
.y275{bottom:757.081500px;}
.y16f{bottom:758.026500px;}
.y1b0{bottom:758.980500px;}
.y1e0{bottom:759.561000px;}
.y242{bottom:761.562000px;}
.y5b{bottom:763.915500px;}
.y8c{bottom:764.044500px;}
.yb9{bottom:766.002000px;}
.y134{bottom:768.193500px;}
.y213{bottom:769.483500px;}
.y126{bottom:771.427500px;}
.y16c{bottom:773.494500px;}
.y28{bottom:775.240500px;}
.y274{bottom:776.232000px;}
.y16d{bottom:778.918500px;}
.y1af{bottom:779.871000px;}
.y1df{bottom:780.453000px;}
.y241{bottom:780.712500px;}
.y133{bottom:784.632000px;}
.y5a{bottom:784.807500px;}
.y8b{bottom:784.936500px;}
.yb8{bottom:786.894000px;}
.y27{bottom:787.039500px;}
.yf7{bottom:790.360500px;}
.y212{bottom:790.375500px;}
.y16b{bottom:794.385000px;}
.y273{bottom:795.382500px;}
.y240{bottom:799.863000px;}
.y1ae{bottom:800.763000px;}
.y132{bottom:801.070500px;}
.y1de{bottom:801.345000px;}
.y59{bottom:805.699500px;}
.y8a{bottom:805.827000px;}
.y26{bottom:807.519000px;}
.yb7{bottom:807.784500px;}
.yf6{bottom:811.252500px;}
.y211{bottom:811.267500px;}
.y272{bottom:814.533000px;}
.y16a{bottom:815.277000px;}
.y131{bottom:817.509000px;}
.y23f{bottom:819.013500px;}
.y25{bottom:819.319500px;}
.y1dd{bottom:822.235500px;}
.y1ad{bottom:826.137000px;}
.y58{bottom:826.590000px;}
.y89{bottom:826.719000px;}
.yb6{bottom:828.676500px;}
.y164{bottom:832.144500px;}
.y210{bottom:832.158000px;}
.y271{bottom:833.683500px;}
.y24{bottom:835.459500px;}
.y23e{bottom:838.164000px;}
.y130{bottom:841.149000px;}
.y1dc{bottom:843.127500px;}
.y57{bottom:847.482000px;}
.y88{bottom:847.611000px;}
.y125{bottom:849.568500px;}
.y1ac{bottom:850.569000px;}
.y169{bottom:850.905000px;}
.y270{bottom:852.834000px;}
.y20f{bottom:853.050000px;}
.yb5{bottom:854.052000px;}
.y23{bottom:855.937500px;}
.y23d{bottom:857.314500px;}
.y1db{bottom:864.019500px;}
.y22{bottom:867.738000px;}
.y56{bottom:868.374000px;}
.y87{bottom:868.503000px;}
.y168{bottom:870.138000px;}
.y124{bottom:870.460500px;}
.y26f{bottom:871.984500px;}
.y20e{bottom:873.942000px;}
.y12f{bottom:875.757000px;}
.y23c{bottom:876.465000px;}
.y21{bottom:883.878000px;}
.y1da{bottom:884.910000px;}
.y55{bottom:889.264500px;}
.y167{bottom:889.371000px;}
.y86{bottom:889.393500px;}
.y26e{bottom:891.135000px;}
.y123{bottom:891.351000px;}
.y20d{bottom:894.834000px;}
.y23b{bottom:895.617000px;}
.y20{bottom:904.357500px;}
.y1d9{bottom:905.802000px;}
.y54{bottom:910.156500px;}
.y85{bottom:910.285500px;}
.y122{bottom:912.243000px;}
.y23a{bottom:914.767500px;}
.yf5{bottom:915.709500px;}
.y20c{bottom:920.208000px;}
.y1d8{bottom:926.694000px;}
.y26d{bottom:929.436000px;}
.y53{bottom:931.048500px;}
.y84{bottom:931.177500px;}
.y121{bottom:933.135000px;}
.y239{bottom:933.918000px;}
.y1d7{bottom:947.584500px;}
.y26c{bottom:948.586500px;}
.y1f{bottom:949.033500px;}
.y52{bottom:951.939000px;}
.y83{bottom:952.068000px;}
.y238{bottom:953.068500px;}
.y120{bottom:958.509000px;}
.y20b{bottom:959.032500px;}
.y26a{bottom:967.737000px;}
.y1d6{bottom:968.476500px;}
.y1d{bottom:969.925500px;}
.y26b{bottom:970.965000px;}
.y237{bottom:972.219000px;}
.y51{bottom:972.831000px;}
.y82{bottom:972.960000px;}
.y1e{bottom:975.349500px;}
.yf4{bottom:978.384000px;}
.y20a{bottom:979.924500px;}
.y269{bottom:986.887500px;}
.y1d5{bottom:989.368500px;}
.y236{bottom:991.369500px;}
.y50{bottom:993.723000px;}
.y81{bottom:993.852000px;}
.yf3{bottom:999.276000px;}
.y209{bottom:1000.815000px;}
.y268{bottom:1006.038000px;}
.y1c{bottom:1008.748500px;}
.y1d4{bottom:1010.260500px;}
.y235{bottom:1010.520000px;}
.y4f{bottom:1014.615000px;}
.y80{bottom:1014.742500px;}
.y15e{bottom:1020.168000px;}
.y208{bottom:1021.707000px;}
.y267{bottom:1025.188500px;}
.y234{bottom:1029.670500px;}
.y1d3{bottom:1031.151000px;}
.y7f{bottom:1035.634500px;}
.y4e{bottom:1039.989000px;}
.y1b{bottom:1040.086500px;}
.y207{bottom:1042.599000px;}
.y266{bottom:1044.339000px;}
.y1d2{bottom:1052.043000px;}
.y233{bottom:1053.304500px;}
.y7e{bottom:1056.526500px;}
.y206{bottom:1060.759500px;}
.y12e{bottom:1061.950500px;}
.y205{bottom:1063.489500px;}
.y1a{bottom:1071.424500px;}
.y1d1{bottom:1072.935000px;}
.y7d{bottom:1077.417000px;}
.y265{bottom:1082.640000px;}
.yf2{bottom:1082.842500px;}
.y232{bottom:1092.129000px;}
.y1d0{bottom:1093.825500px;}
.y7c{bottom:1098.309000px;}
.y204{bottom:1101.790500px;}
.y19{bottom:1102.761000px;}
.yf1{bottom:1103.734500px;}
.y1cf{bottom:1114.717500px;}
.y4d{bottom:1119.201000px;}
.y231{bottom:1120.593000px;}
.y264{bottom:1120.941000px;}
.y11f{bottom:1124.625000px;}
.y4c{bottom:1140.091500px;}
.y163{bottom:1145.517000px;}
.y4b{bottom:1200.196500px;}
.hb{height:32.565965px;}
.h10{height:35.503200px;}
.h2c{height:37.336090px;}
.h2{height:37.993262px;}
.h3{height:38.035105px;}
.h11{height:41.250077px;}
.h8{height:41.295506px;}
.h13{height:41.484266px;}
.hc{height:43.421105px;}
.hd{height:43.468925px;}
.h5{height:43.815515px;}
.h25{height:45.591391px;}
.h1a{height:46.714950px;}
.h4{height:48.037262px;}
.h1f{height:48.371354px;}
.h19{height:48.848947px;}
.h16{height:48.902746px;}
.h2b{height:49.117939px;}
.h23{height:51.707310px;}
.h20{height:52.230150px;}
.he{height:54.276245px;}
.h7{height:54.336020px;}
.h18{height:54.487273px;}
.h1c{height:55.599258px;}
.h15{height:56.711243px;}
.h1d{height:57.199200px;}
.hf{height:57.205200px;}
.h21{height:60.614947px;}
.h2a{height:61.754947px;}
.h29{height:61.760947px;}
.h26{height:62.946077px;}
.h28{height:62.952077px;}
.ha{height:62.991506px;}
.h12{height:65.203661px;}
.h9{height:67.728020px;}
.h6{height:97.805491px;}
.h27{height:283.548000px;}
.h17{height:410.272590px;}
.h24{height:471.784950px;}
.h1b{height:706.912500px;}
.h1e{height:900.311148px;}
.h14{height:932.877720px;}
.h22{height:948.753171px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:418.257000px;}
.w7{width:422.674740px;}
.w5{width:509.094855px;}
.w8{width:523.896000px;}
.w6{width:540.040770px;}
.w3{width:588.083937px;}
.w2{width:686.532420px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.xd0{left:62.541000px;}
.x10d{left:85.848000px;}
.x10e{left:88.375500px;}
.x55{left:102.976500px;}
.x2{left:125.115000px;}
.x3{left:156.306000px;}
.x10f{left:166.509000px;}
.x4{left:176.338500px;}
.x110{left:246.463500px;}
.x79{left:247.513500px;}
.x12{left:248.526000px;}
.x10{left:249.591000px;}
.xf{left:254.712000px;}
.xdb{left:258.691500px;}
.xd1{left:263.154000px;}
.xf6{left:264.979500px;}
.xb7{left:266.452500px;}
.x11{left:269.914500px;}
.xf7{left:271.405500px;}
.xd9{left:278.707500px;}
.x24{left:281.479500px;}
.x57{left:284.460000px;}
.xda{left:285.514500px;}
.x69{left:289.498500px;}
.xf8{left:290.514000px;}
.x5{left:293.802000px;}
.xf4{left:296.521500px;}
.x5e{left:302.599500px;}
.x6{left:303.814500px;}
.x13{left:308.229000px;}
.xcb{left:309.504000px;}
.x20{left:311.266500px;}
.xde{left:312.804000px;}
.x30{left:315.637500px;}
.xc4{left:319.213500px;}
.x3a{left:321.037500px;}
.x31{left:322.906500px;}
.xf9{left:324.000000px;}
.x5f{left:327.105000px;}
.x21{left:330.778500px;}
.xc5{left:334.158000px;}
.x3b{left:335.982000px;}
.x44{left:338.760000px;}
.x60{left:342.048000px;}
.xf1{left:343.243500px;}
.x6a{left:350.899500px;}
.x45{left:353.704500px;}
.x10c{left:356.820000px;}
.x6f{left:357.861000px;}
.x72{left:361.180500px;}
.xe1{left:364.039500px;}
.x6b{left:365.842500px;}
.x70{left:372.804000px;}
.x4f{left:374.415000px;}
.x38{left:376.695000px;}
.xe2{left:378.982500px;}
.x95{left:380.274000px;}
.xe3{left:382.671000px;}
.xff{left:384.075000px;}
.xe5{left:385.393500px;}
.x25{left:388.296000px;}
.x50{left:389.358000px;}
.x39{left:391.639500px;}
.xa0{left:392.707500px;}
.x26{left:395.767500px;}
.xa6{left:397.548000px;}
.xa1{left:399.513000px;}
.xef{left:405.813000px;}
.x75{left:407.619000px;}
.x36{left:409.122000px;}
.x9d{left:411.274500px;}
.xe7{left:414.052500px;}
.x37{left:416.593500px;}
.x7d{left:418.110244px;}
.x5b{left:420.604500px;}
.xeb{left:425.497500px;}
.x9e{left:427.042500px;}
.x33{left:428.328000px;}
.xed{left:429.409500px;}
.xd5{left:430.440000px;}
.x47{left:431.725500px;}
.xfb{left:434.394000px;}
.x34{left:435.799500px;}
.xd6{left:437.247000px;}
.x100{left:438.978000px;}
.x107{left:440.964000px;}
.xec{left:442.896000px;}
.x101{left:445.783500px;}
.x35{left:447.006000px;}
.x84{left:448.725000px;}
.x14{left:451.536000px;}
.x7{left:454.156500px;}
.xe9{left:455.886000px;}
.x15{left:458.341500px;}
.xea{left:468.177000px;}
.xdc{left:469.332000px;}
.x6d{left:472.224000px;}
.x8{left:474.189000px;}
.xbf{left:475.996500px;}
.xdf{left:477.459000px;}
.x85{left:478.495500px;}
.xdd{left:480.480000px;}
.x1a{left:481.794000px;}
.xc0{left:482.803500px;}
.x5c{left:484.549500px;}
.x1b{left:488.601000px;}
.xb8{left:489.709500px;}
.x6e{left:491.721000px;}
.xa3{left:493.881000px;}
.xb9{left:496.516500px;}
.xa4{left:497.673000px;}
.xc2{left:499.258500px;}
.x94{left:502.260000px;}
.x5d{left:504.898500px;}
.x9a{left:507.124500px;}
.xae{left:508.364968px;}
.x108{left:509.680500px;}
.xa5{left:512.617500px;}
.x29{left:514.329000px;}
.x73{left:515.505000px;}
.xc3{left:518.518500px;}
.x1e{left:519.564000px;}
.x2a{left:521.800500px;}
.xb1{left:524.896500px;}
.xc1{left:526.441500px;}
.x63{left:528.727500px;}
.xb2{left:533.998500px;}
.x74{left:535.024500px;}
.x10b{left:536.370000px;}
.x8d{left:537.808500px;}
.x1f{left:539.094000px;}
.x6c{left:540.351000px;}
.xb3{left:541.492500px;}
.x64{left:543.670500px;}
.x91{left:547.492500px;}
.x8e{left:550.099500px;}
.x65{left:551.292000px;}
.xb4{left:554.335500px;}
.x109{left:556.270500px;}
.x10a{left:558.541500px;}
.xfd{left:559.833000px;}
.x92{left:562.437000px;}
.xba{left:564.961500px;}
.x66{left:566.236500px;}
.x7a{left:568.735500px;}
.x93{left:569.767500px;}
.x9{left:571.840500px;}
.x86{left:573.601500px;}
.xfe{left:575.845500px;}
.xcc{left:577.816500px;}
.x32{left:579.204000px;}
.x77{left:580.728000px;}
.x5a{left:584.186967px;}
.x22{left:585.988500px;}
.x7b{left:588.246000px;}
.x2d{left:590.082000px;}
.xa{left:591.873000px;}
.xa7{left:593.077500px;}
.xfc{left:596.476500px;}
.x2e{left:597.553500px;}
.x9f{left:598.603500px;}
.x58{left:599.865000px;}
.x78{left:601.071000px;}
.x8f{left:602.190000px;}
.x71{left:604.197000px;}
.x23{left:605.502000px;}
.xc6{left:608.199000px;}
.xc7{left:610.884000px;}
.x59{left:614.809500px;}
.x16{left:617.104500px;}
.xb5{left:619.206000px;}
.x17{left:623.911500px;}
.x103{left:625.087500px;}
.x102{left:629.455500px;}
.xcf{left:630.645000px;}
.xb6{left:634.150500px;}
.x90{left:636.114000px;}
.xc8{left:637.228500px;}
.x87{left:638.844000px;}
.x104{left:641.059500px;}
.x4d{left:645.556500px;}
.xa8{left:649.183500px;}
.xe6{left:650.497500px;}
.x105{left:652.249500px;}
.x4e{left:654.786000px;}
.xa9{left:655.990500px;}
.x88{left:657.448500px;}
.xaf{left:661.651500px;}
.xd7{left:663.841500px;}
.xaa{left:667.138500px;}
.x106{left:668.223000px;}
.xf5{left:670.909500px;}
.x89{left:672.393000px;}
.xab{left:673.945500px;}
.x8a{left:676.054500px;}
.x56{left:681.057138px;}
.x2b{left:682.063500px;}
.x27{left:684.916500px;}
.x2c{left:689.535000px;}
.x8b{left:690.997500px;}
.x28{left:692.388000px;}
.x4a{left:698.712000px;}
.xee{left:699.792000px;}
.x9b{left:702.828000px;}
.xb{left:704.467500px;}
.x61{left:709.713000px;}
.xcd{left:712.029000px;}
.x1c{left:713.557500px;}
.xf0{left:715.108500px;}
.x9c{left:718.596000px;}
.x7e{left:720.516000px;}
.xad{left:723.289500px;}
.xc{left:724.501500px;}
.x67{left:725.532000px;}
.x62{left:729.228000px;}
.xbc{left:732.333000px;}
.xac{left:735.648000px;}
.xf2{left:737.326500px;}
.xc9{left:738.637500px;}
.x46{left:740.056500px;}
.x80{left:744.696000px;}
.x68{left:746.125500px;}
.x42{left:749.644500px;}
.xca{left:750.928500px;}
.xd8{left:752.289000px;}
.xb0{left:753.501000px;}
.x3c{left:755.131500px;}
.xbb{left:756.904500px;}
.x81{left:759.639000px;}
.x3d{left:762.604500px;}
.x43{left:764.587500px;}
.x3e{left:766.317000px;}
.x8c{left:770.091000px;}
.xfa{left:771.823500px;}
.x76{left:772.920000px;}
.x4c{left:775.636500px;}
.x51{left:776.737500px;}
.x82{left:778.305000px;}
.x96{left:780.189000px;}
.x3f{left:781.261500px;}
.x48{left:784.480500px;}
.x52{left:785.838000px;}
.x40{left:788.688000px;}
.x49{left:791.952000px;}
.x53{left:793.236000px;}
.x97{left:795.132000px;}
.xa2{left:797.139000px;}
.x98{left:798.943500px;}
.x83{left:800.691000px;}
.xf3{left:801.972000px;}
.x41{left:803.632500px;}
.x54{left:806.068500px;}
.xd2{left:808.485000px;}
.xe0{left:811.200000px;}
.xd3{left:812.634000px;}
.x99{left:813.886500px;}
.xe4{left:815.121000px;}
.xd{left:816.733500px;}
.x4b{left:818.046000px;}
.xbd{left:819.715500px;}
.x18{left:821.353500px;}
.x7f{left:823.714500px;}
.x2f{left:825.406500px;}
.xbe{left:826.521000px;}
.x19{left:828.159000px;}
.xd4{left:829.360500px;}
.x7c{left:832.191000px;}
.x1d{left:833.676000px;}
.xce{left:835.531500px;}
.xe{left:836.766000px;}
.xe8{left:837.867000px;}
@media print{
.v4{vertical-align:-15.434667pt;}
.v5{vertical-align:-10.624000pt;}
.v8{vertical-align:-9.706667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:8.928000pt;}
.v7{vertical-align:10.458667pt;}
.v3{vertical-align:11.904000pt;}
.v6{vertical-align:17.360000pt;}
.v2{vertical-align:19.285333pt;}
.ls9{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000375pt;}
.lsb{letter-spacing:0.000501pt;}
.lsf{letter-spacing:0.000711pt;}
.lsa{letter-spacing:0.001863pt;}
.lse{letter-spacing:0.002133pt;}
.ls11{letter-spacing:0.002825pt;}
.ls2f{letter-spacing:0.003963pt;}
.lsc{letter-spacing:0.004267pt;}
.ls7{letter-spacing:0.482502pt;}
.ls6{letter-spacing:0.487835pt;}
.ls16{letter-spacing:0.500541pt;}
.ls1a{letter-spacing:0.502354pt;}
.ls15{letter-spacing:0.576078pt;}
.ls14{letter-spacing:0.595447pt;}
.ls1e{letter-spacing:0.637762pt;}
.ls20{letter-spacing:0.640696pt;}
.ls1f{letter-spacing:0.663756pt;}
.ls1d{letter-spacing:1.328423pt;}
.ls1b{letter-spacing:2.651733pt;}
.ls1c{letter-spacing:2.657067pt;}
.ls13{letter-spacing:3.118133pt;}
.ls5{letter-spacing:3.158400pt;}
.ls10{letter-spacing:3.163733pt;}
.ls0{letter-spacing:9.298933pt;}
.ls8{letter-spacing:10.626533pt;}
.ls2c{letter-spacing:11.804277pt;}
.ls25{letter-spacing:11.898280pt;}
.ls22{letter-spacing:11.954133pt;}
.ls26{letter-spacing:11.959467pt;}
.ls19{letter-spacing:11.961358pt;}
.ls29{letter-spacing:12.044800pt;}
.ls2e{letter-spacing:12.134322pt;}
.ls27{letter-spacing:12.147781pt;}
.ls2b{letter-spacing:13.069637pt;}
.ls21{letter-spacing:13.283467pt;}
.ls18{letter-spacing:13.283933pt;}
.ls28{letter-spacing:14.125846pt;}
.ls2a{letter-spacing:14.608533pt;}
.ls2d{letter-spacing:14.826499pt;}
.ls17{letter-spacing:16.465920pt;}
.ls12{letter-spacing:16.896570pt;}
.ls23{letter-spacing:17.608199pt;}
.ls24{letter-spacing:19.145454pt;}
.ls1{letter-spacing:51.035733pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ls2{letter-spacing:64.321067pt;}
.ws66{word-spacing:-55.365867pt;}
.ws8d{word-spacing:-42.077867pt;}
.ws4a{word-spacing:-13.283467pt;}
.ws4c{word-spacing:-11.955200pt;}
.wsb{word-spacing:-10.626800pt;}
.ws9{word-spacing:-10.095467pt;}
.ws5{word-spacing:-9.298400pt;}
.wsb4{word-spacing:-3.347434pt;}
.wsb3{word-spacing:-3.241166pt;}
.wscd{word-spacing:-3.142768pt;}
.ws9d{word-spacing:-2.975497pt;}
.ws75{word-spacing:-2.762961pt;}
.wsb9{word-spacing:-2.550426pt;}
.ws4f{word-spacing:-2.497292pt;}
.wsf4{word-spacing:-2.438861pt;}
.ws19{word-spacing:-2.337890pt;}
.ws65{word-spacing:-2.231622pt;}
.ws5f{word-spacing:-2.178489pt;}
.ws133{word-spacing:-2.104115pt;}
.ws132{word-spacing:-2.056294pt;}
.ws7c{word-spacing:-2.019087pt;}
.wsbe{word-spacing:-1.965953pt;}
.wsf3{word-spacing:-1.912832pt;}
.ws32{word-spacing:-1.912819pt;}
.wsa2{word-spacing:-1.859685pt;}
.wsa3{word-spacing:-1.806551pt;}
.wsa7{word-spacing:-1.753418pt;}
.ws11f{word-spacing:-1.721549pt;}
.wsbf{word-spacing:-1.700284pt;}
.wsbb{word-spacing:-1.647150pt;}
.wsba{word-spacing:-1.594016pt;}
.ws51{word-spacing:-1.540882pt;}
.ws9f{word-spacing:-1.434614pt;}
.ws124{word-spacing:-1.386803pt;}
.wsbc{word-spacing:-1.381481pt;}
.ws91{word-spacing:-1.328347pt;}
.ws90{word-spacing:-1.275213pt;}
.wsae{word-spacing:-1.222079pt;}
.ws138{word-spacing:-1.195520pt;}
.ws74{word-spacing:-1.168945pt;}
.ws68{word-spacing:-1.115811pt;}
.wsca{word-spacing:-0.956416pt;}
.ws7e{word-spacing:-0.956410pt;}
.wsee{word-spacing:-0.908595pt;}
.ws34{word-spacing:-0.903276pt;}
.wsc8{word-spacing:-0.860774pt;}
.ws62{word-spacing:-0.850142pt;}
.ws69{word-spacing:-0.797008pt;}
.wsa6{word-spacing:-0.743874pt;}
.ws95{word-spacing:-0.717312pt;}
.wsad{word-spacing:-0.690740pt;}
.ws77{word-spacing:-0.637606pt;}
.wsf2{word-spacing:-0.621670pt;}
.ws61{word-spacing:-0.584473pt;}
.ws39{word-spacing:-0.531339pt;}
.wsa8{word-spacing:-0.425071pt;}
.ws11e{word-spacing:-0.382566pt;}
.ws30{word-spacing:-0.371937pt;}
.ws107{word-spacing:-0.334746pt;}
.ws54{word-spacing:-0.318803pt;}
.wsef{word-spacing:-0.286925pt;}
.wsd{word-spacing:-0.265669pt;}
.wsce{word-spacing:-0.239104pt;}
.ws10{word-spacing:-0.212535pt;}
.ws59{word-spacing:-0.191283pt;}
.ws17{word-spacing:-0.159402pt;}
.ws102{word-spacing:-0.143462pt;}
.ws1e{word-spacing:-0.106268pt;}
.wse4{word-spacing:-0.095642pt;}
.ws18{word-spacing:-0.053134pt;}
.ws4b{word-spacing:-0.047821pt;}
.ws20{word-spacing:-0.042507pt;}
.ws6{word-spacing:-0.037194pt;}
.wsa{word-spacing:-0.004414pt;}
.ws0{word-spacing:0.000000pt;}
.wscf{word-spacing:0.047821pt;}
.ws1b{word-spacing:0.053134pt;}
.wscc{word-spacing:0.095642pt;}
.ws15{word-spacing:0.106268pt;}
.ws2{word-spacing:0.111581pt;}
.wsd0{word-spacing:0.143462pt;}
.ws24{word-spacing:0.159402pt;}
.ws3{word-spacing:0.185968pt;}
.ws94{word-spacing:0.191283pt;}
.ws22{word-spacing:0.212535pt;}
.wsfc{word-spacing:0.239104pt;}
.ws8{word-spacing:0.265669pt;}
.wsd1{word-spacing:0.286925pt;}
.wse{word-spacing:0.318803pt;}
.ws47{word-spacing:0.371937pt;}
.ws2b{word-spacing:0.425071pt;}
.wsdb{word-spacing:0.430387pt;}
.wsa5{word-spacing:0.478205pt;}
.ws111{word-spacing:0.478208pt;}
.ws79{word-spacing:0.500000pt;}
.ws16{word-spacing:0.504000pt;}
.ws82{word-spacing:0.509333pt;}
.ws78{word-spacing:0.531339pt;}
.ws56{word-spacing:0.584473pt;}
.ws57{word-spacing:0.621670pt;}
.ws96{word-spacing:0.637606pt;}
.ws3b{word-spacing:0.690740pt;}
.ws2d{word-spacing:0.743874pt;}
.wsf6{word-spacing:0.765133pt;}
.wsf{word-spacing:0.797008pt;}
.ws9a{word-spacing:0.850142pt;}
.ws10e{word-spacing:0.860774pt;}
.ws40{word-spacing:0.903276pt;}
.ws5c{word-spacing:0.956410pt;}
.ws28{word-spacing:1.009543pt;}
.wsde{word-spacing:1.052058pt;}
.ws110{word-spacing:1.099878pt;}
.ws5b{word-spacing:1.115811pt;}
.ws2c{word-spacing:1.168945pt;}
.ws1d{word-spacing:1.222079pt;}
.ws35{word-spacing:1.275213pt;}
.ws6c{word-spacing:1.328347pt;}
.ws6f{word-spacing:1.381481pt;}
.ws9c{word-spacing:1.434614pt;}
.wsd7{word-spacing:1.434624pt;}
.ws71{word-spacing:1.482445pt;}
.ws6b{word-spacing:1.487748pt;}
.ws72{word-spacing:1.530266pt;}
.ws126{word-spacing:1.625907pt;}
.ws14{word-spacing:1.647150pt;}
.wseb{word-spacing:1.673728pt;}
.ws5a{word-spacing:1.700284pt;}
.wsb8{word-spacing:1.806551pt;}
.ws2f{word-spacing:1.859685pt;}
.ws6a{word-spacing:1.912819pt;}
.ws60{word-spacing:1.965953pt;}
.ws11b{word-spacing:2.008474pt;}
.ws4e{word-spacing:2.019087pt;}
.wsc6{word-spacing:2.056294pt;}
.ws8c{word-spacing:2.125355pt;}
.wsed{word-spacing:2.151936pt;}
.ws1a{word-spacing:2.178489pt;}
.ws7{word-spacing:2.231335pt;}
.ws45{word-spacing:2.231622pt;}
.ws116{word-spacing:2.247578pt;}
.ws6e{word-spacing:2.284756pt;}
.ws31{word-spacing:2.337890pt;}
.ws49{word-spacing:2.391024pt;}
.ws108{word-spacing:2.438861pt;}
.wsb7{word-spacing:2.444158pt;}
.wsa1{word-spacing:2.486682pt;}
.ws3c{word-spacing:2.550426pt;}
.wsc{word-spacing:2.550432pt;}
.wsc9{word-spacing:2.582323pt;}
.ws4d{word-spacing:2.603559pt;}
.wsc7{word-spacing:2.630144pt;}
.ws3e{word-spacing:2.656693pt;}
.ws33{word-spacing:2.709827pt;}
.ws13c{word-spacing:2.725786pt;}
.ws70{word-spacing:2.762961pt;}
.ws73{word-spacing:2.816095pt;}
.wsdf{word-spacing:2.864009pt;}
.wse6{word-spacing:2.864350pt;}
.ws106{word-spacing:2.864853pt;}
.ws139{word-spacing:2.865638pt;}
.ws109{word-spacing:2.868710pt;}
.ws3d{word-spacing:2.869229pt;}
.ws118{word-spacing:2.869248pt;}
.wscb{word-spacing:2.892064pt;}
.ws25{word-spacing:2.922363pt;}
.wsc5{word-spacing:3.012710pt;}
.ws38{word-spacing:3.028630pt;}
.ws10d{word-spacing:3.060531pt;}
.ws98{word-spacing:3.081764pt;}
.ws11a{word-spacing:3.108352pt;}
.ws11{word-spacing:3.134898pt;}
.ws3a{word-spacing:3.241166pt;}
.ws12{word-spacing:3.294300pt;}
.ws67{word-spacing:3.347434pt;}
.ws12f{word-spacing:3.347456pt;}
.ws48{word-spacing:3.400567pt;}
.ws37{word-spacing:3.453701pt;}
.ws21{word-spacing:3.492399pt;}
.ws5e{word-spacing:3.506835pt;}
.ws5d{word-spacing:3.559969pt;}
.wse7{word-spacing:3.586560pt;}
.ws80{word-spacing:3.613103pt;}
.wsc3{word-spacing:3.634381pt;}
.wsaa{word-spacing:3.666237pt;}
.wsc4{word-spacing:3.682202pt;}
.ws26{word-spacing:3.719371pt;}
.ws23{word-spacing:3.825664pt;}
.ws8f{word-spacing:3.878772pt;}
.ws12a{word-spacing:3.921306pt;}
.ws7b{word-spacing:3.931906pt;}
.ws7a{word-spacing:3.985040pt;}
.wsdd{word-spacing:4.064768pt;}
.ws76{word-spacing:4.144442pt;}
.ws27{word-spacing:4.197575pt;}
.ws36{word-spacing:4.250709pt;}
.ws7d{word-spacing:4.303843pt;}
.ws63{word-spacing:4.410111pt;}
.ws2a{word-spacing:4.463245pt;}
.wsd3{word-spacing:4.495155pt;}
.ws12c{word-spacing:4.542976pt;}
.ws46{word-spacing:4.569513pt;}
.wsb1{word-spacing:4.782048pt;}
.ws93{word-spacing:4.994583pt;}
.ws100{word-spacing:5.021184pt;}
.ws92{word-spacing:5.047717pt;}
.ws97{word-spacing:5.153985pt;}
.ws58{word-spacing:5.164646pt;}
.ws1c{word-spacing:5.207119pt;}
.wsb0{word-spacing:5.366521pt;}
.wsab{word-spacing:5.419654pt;}
.ws9b{word-spacing:5.472788pt;}
.ws6d{word-spacing:5.525922pt;}
.wsa4{word-spacing:5.579056pt;}
.wsd5{word-spacing:5.642854pt;}
.wsd8{word-spacing:5.690675pt;}
.wse8{word-spacing:5.929779pt;}
.wsac{word-spacing:6.004127pt;}
.ws2e{word-spacing:6.057261pt;}
.ws52{word-spacing:6.163529pt;}
.wsbd{word-spacing:6.216662pt;}
.wsff{word-spacing:6.360166pt;}
.ws105{word-spacing:6.407987pt;}
.ws53{word-spacing:6.482332pt;}
.wsa0{word-spacing:6.503629pt;}
.ws55{word-spacing:6.588599pt;}
.ws8e{word-spacing:6.694867pt;}
.ws81{word-spacing:6.854269pt;}
.ws50{word-spacing:7.013670pt;}
.ws64{word-spacing:7.029658pt;}
.wsda{word-spacing:7.173120pt;}
.ws29{word-spacing:7.226206pt;}
.ws13{word-spacing:7.438741pt;}
.ws10b{word-spacing:7.555686pt;}
.ws9e{word-spacing:8.129482pt;}
.ws135{word-spacing:8.272998pt;}
.wsa9{word-spacing:8.368640pt;}
.ws7f{word-spacing:9.038131pt;}
.ws4{word-spacing:9.262747pt;}
.wsc1{word-spacing:9.404694pt;}
.ws43{word-spacing:9.882899pt;}
.ws41{word-spacing:10.042301pt;}
.ws1f{word-spacing:10.585827pt;}
.ws3f{word-spacing:10.626773pt;}
.ws42{word-spacing:10.945577pt;}
.ws11d{word-spacing:11.524813pt;}
.wsf0{word-spacing:11.620454pt;}
.ws128{word-spacing:11.668275pt;}
.wsdc{word-spacing:11.833981pt;}
.wsf5{word-spacing:11.898061pt;}
.wsf8{word-spacing:11.898871pt;}
.wsf9{word-spacing:11.899187pt;}
.ws119{word-spacing:11.899998pt;}
.ws13a{word-spacing:11.900151pt;}
.ws12e{word-spacing:11.900314pt;}
.ws137{word-spacing:11.900962pt;}
.ws125{word-spacing:11.901815pt;}
.ws12b{word-spacing:11.902498pt;}
.ws129{word-spacing:11.902677pt;}
.ws130{word-spacing:11.902763pt;}
.wsd6{word-spacing:11.903232pt;}
.ws136{word-spacing:11.903369pt;}
.wsfb{word-spacing:11.904196pt;}
.wsd2{word-spacing:11.907379pt;}
.ws13b{word-spacing:11.955200pt;}
.ws104{word-spacing:11.973799pt;}
.ws123{word-spacing:12.077330pt;}
.ws127{word-spacing:12.088434pt;}
.wsfd{word-spacing:12.098662pt;}
.ws10f{word-spacing:12.720333pt;}
.ws44{word-spacing:13.230333pt;}
.wsb6{word-spacing:13.336601pt;}
.wsec{word-spacing:13.581107pt;}
.wsc2{word-spacing:13.708538pt;}
.wsaf{word-spacing:13.814805pt;}
.ws117{word-spacing:14.152403pt;}
.ws99{word-spacing:14.154957pt;}
.wsf1{word-spacing:14.680986pt;}
.wsfe{word-spacing:14.728806pt;}
.wse0{word-spacing:14.769271pt;}
.wse5{word-spacing:14.770022pt;}
.ws122{word-spacing:14.771840pt;}
.ws115{word-spacing:14.771951pt;}
.ws10c{word-spacing:14.772105pt;}
.ws113{word-spacing:14.772651pt;}
.wse1{word-spacing:14.772907pt;}
.ws134{word-spacing:14.773393pt;}
.ws10a{word-spacing:14.774374pt;}
.ws114{word-spacing:14.774554pt;}
.ws101{word-spacing:14.775356pt;}
.wsea{word-spacing:14.775706pt;}
.wse3{word-spacing:14.776627pt;}
.ws120{word-spacing:14.779366pt;}
.ws103{word-spacing:14.824448pt;}
.ws131{word-spacing:14.872269pt;}
.wse2{word-spacing:15.015731pt;}
.ws112{word-spacing:15.111373pt;}
.wsf7{word-spacing:15.159194pt;}
.ws121{word-spacing:15.589581pt;}
.wsb5{word-spacing:16.152695pt;}
.wsb2{word-spacing:16.418365pt;}
.ws12d{word-spacing:16.450355pt;}
.wsd9{word-spacing:17.608612pt;}
.wse9{word-spacing:17.837158pt;}
.ws11c{word-spacing:21.232435pt;}
.wsfa{word-spacing:22.667059pt;}
.ws1{word-spacing:25.293814pt;}
.wsd4{word-spacing:28.644659pt;}
.ws89{word-spacing:105.989692pt;}
.ws8a{word-spacing:128.111954pt;}
.ws88{word-spacing:222.863727pt;}
.ws84{word-spacing:296.169498pt;}
.ws87{word-spacing:301.528943pt;}
.ws8b{word-spacing:308.108791pt;}
.ws86{word-spacing:308.124698pt;}
.ws85{word-spacing:423.471983pt;}
.ws83{word-spacing:569.994914pt;}
.wsc0{word-spacing:673.949965pt;}
._35{margin-left:-21.997568pt;}
._9{margin-left:-20.722208pt;}
._32{margin-left:-18.007168pt;}
._b{margin-left:-16.492794pt;}
._2{margin-left:-14.468310pt;}
._2f{margin-left:-7.630549pt;}
._1c{margin-left:-6.429198pt;}
._c{margin-left:-5.228374pt;}
._19{margin-left:-4.336250pt;}
._3{margin-left:-3.421811pt;}
._7{margin-left:-2.082842pt;}
._5{margin-left:-0.967034pt;}
._2b{width:1.009869pt;}
._1{width:2.082842pt;}
._8{width:3.028630pt;}
._13{width:3.931906pt;}
._34{width:6.264525pt;}
._31{width:8.198563pt;}
._30{width:9.946726pt;}
._0{width:11.530016pt;}
._1d{width:12.784006pt;}
._10{width:13.984828pt;}
._18{width:14.962493pt;}
._4{width:16.291370pt;}
._e{width:18.086770pt;}
._d{width:19.298218pt;}
._16{width:20.530916pt;}
._1e{width:21.466082pt;}
._6{width:23.057899pt;}
._17{width:23.963374pt;}
._14{width:25.663658pt;}
._15{width:27.916528pt;}
._36{width:29.325109pt;}
._1a{width:30.509463pt;}
._21{width:32.996352pt;}
._2e{width:34.228613pt;}
._1b{width:35.504047pt;}
._22{width:37.565644pt;}
._f{width:39.212794pt;}
._2d{width:40.385394pt;}
._20{width:42.319270pt;}
._a{width:49.319199pt;}
._33{width:54.993920pt;}
._2c{width:57.683490pt;}
._26{width:115.849617pt;}
._25{width:173.863654pt;}
._28{width:424.122675pt;}
._2a{width:436.077875pt;}
._27{width:476.869018pt;}
._24{width:487.627786pt;}
._29{width:501.608278pt;}
._23{width:508.669850pt;}
._11{width:1511.831733pt;}
._1f{width:2209.842400pt;}
._12{width:2231.095733pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fse{font-size:38.755733pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:42.077867pt;}
.fs5{font-size:42.507200pt;}
.fs11{font-size:43.820800pt;}
.fsd{font-size:46.492800pt;}
.fs9{font-size:47.820800pt;}
.fs10{font-size:49.699200pt;}
.fsf{font-size:49.829333pt;}
.fsa{font-size:52.371200pt;}
.fs1{font-size:53.133867pt;}
.fsc{font-size:53.440000pt;}
.fs8{font-size:54.508800pt;}
.fsb{font-size:55.365867pt;}
.fs7{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y190{bottom:1.423178pt;}
.ye6{bottom:1.728487pt;}
.y160{bottom:3.282255pt;}
.yb1{bottom:4.151976pt;}
.y15b{bottom:4.656155pt;}
.y11c{bottom:6.312244pt;}
.yad{bottom:7.262284pt;}
.y4a{bottom:40.818667pt;}
.y159{bottom:88.640000pt;}
.y18{bottom:89.120000pt;}
.y162{bottom:92.054667pt;}
.yef{bottom:92.628000pt;}
.y12d{bottom:92.817333pt;}
.y18e{bottom:93.302667pt;}
.y15d{bottom:93.470667pt;}
.y297{bottom:94.188000pt;}
.y1ab{bottom:95.978667pt;}
.yf0{bottom:97.450667pt;}
.yab{bottom:98.970667pt;}
.y11e{bottom:99.386667pt;}
.y7b{bottom:103.358667pt;}
.yaf{bottom:104.914667pt;}
.y17{bottom:105.020000pt;}
.y12b{bottom:105.213333pt;}
.y119{bottom:106.953333pt;}
.y157{bottom:107.209333pt;}
.y161{bottom:109.150667pt;}
.yb4{bottom:109.332000pt;}
.y12c{bottom:109.913333pt;}
.y15c{bottom:110.566667pt;}
.yed{bottom:111.198667pt;}
.y296{bottom:111.210667pt;}
.y11a{bottom:111.774667pt;}
.y18d{bottom:111.872000pt;}
.y158{bottom:112.032000pt;}
.y230{bottom:113.568000pt;}
.y1aa{bottom:114.549333pt;}
.y263{bottom:115.194667pt;}
.yee{bottom:116.020000pt;}
.y11d{bottom:116.482667pt;}
.yaa{bottom:117.541333pt;}
.y16{bottom:120.920000pt;}
.y7a{bottom:121.929333pt;}
.yae{bottom:122.010667pt;}
.ye4{bottom:123.782667pt;}
.y117{bottom:125.522667pt;}
.y156{bottom:125.780000pt;}
.yb3{bottom:126.426667pt;}
.y295{bottom:128.233333pt;}
.y15f{bottom:129.088000pt;}
.yec{bottom:129.769333pt;}
.y118{bottom:130.345333pt;}
.y18c{bottom:130.442667pt;}
.y15a{bottom:130.502915pt;}
.y262{bottom:132.217333pt;}
.y1a9{bottom:133.118667pt;}
.ya9{bottom:136.112000pt;}
.y11b{bottom:136.420464pt;}
.y203{bottom:136.628000pt;}
.y15{bottom:136.821333pt;}
.y49{bottom:138.630667pt;}
.y22f{bottom:138.869333pt;}
.y79{bottom:140.498667pt;}
.y1ce{bottom:140.946667pt;}
.ye3{bottom:142.353333pt;}
.yb2{bottom:143.522667pt;}
.y115{bottom:144.093333pt;}
.y155{bottom:144.350667pt;}
.yac{bottom:144.604000pt;}
.y294{bottom:145.256000pt;}
.yea{bottom:148.338667pt;}
.y116{bottom:148.914667pt;}
.y18b{bottom:149.013333pt;}
.y261{bottom:149.240000pt;}
.y1a8{bottom:151.689333pt;}
.y14{bottom:152.721333pt;}
.y202{bottom:152.772000pt;}
.yeb{bottom:153.161333pt;}
.ya8{bottom:154.681333pt;}
.y201{bottom:155.198667pt;}
.y48{bottom:157.201333pt;}
.y78{bottom:159.069333pt;}
.y1cd{bottom:159.517333pt;}
.ye2{bottom:160.924000pt;}
.y293{bottom:162.278667pt;}
.y113{bottom:162.664000pt;}
.y153{bottom:162.920000pt;}
.yb0{bottom:163.460000pt;}
.y22e{bottom:164.172000pt;}
.y260{bottom:166.262667pt;}
.ye9{bottom:166.909333pt;}
.y114{bottom:167.485333pt;}
.y18a{bottom:167.582667pt;}
.y154{bottom:167.742667pt;}
.y13{bottom:168.621333pt;}
.y1a7{bottom:170.260000pt;}
.ya7{bottom:173.252000pt;}
.y200{bottom:173.769333pt;}
.y47{bottom:175.770667pt;}
.y77{bottom:177.640000pt;}
.y1cc{bottom:178.086667pt;}
.y292{bottom:179.301333pt;}
.ye0{bottom:179.493333pt;}
.y112{bottom:181.233333pt;}
.y152{bottom:181.490667pt;}
.y22d{bottom:181.504000pt;}
.y25f{bottom:183.285333pt;}
.ye1{bottom:184.316000pt;}
.y12{bottom:184.521333pt;}
.y189{bottom:186.153333pt;}
.y1a6{bottom:188.830667pt;}
.ya6{bottom:191.822667pt;}
.y1ff{bottom:192.338667pt;}
.y46{bottom:194.341333pt;}
.y76{bottom:196.209333pt;}
.y291{bottom:196.324000pt;}
.y1cb{bottom:196.657333pt;}
.ydf{bottom:198.064000pt;}
.ye8{bottom:198.578667pt;}
.y22c{bottom:198.836000pt;}
.y111{bottom:199.804000pt;}
.y151{bottom:200.061333pt;}
.y25e{bottom:200.308000pt;}
.y11{bottom:200.422667pt;}
.y188{bottom:204.724000pt;}
.y1a5{bottom:207.400000pt;}
.ya5{bottom:210.392000pt;}
.y1fe{bottom:210.909333pt;}
.y45{bottom:212.912000pt;}
.y290{bottom:213.346667pt;}
.y75{bottom:214.780000pt;}
.y1ca{bottom:215.228000pt;}
.ye7{bottom:215.674667pt;}
.y22b{bottom:216.169333pt;}
.yde{bottom:216.634667pt;}
.y25d{bottom:217.330667pt;}
.y110{bottom:218.374667pt;}
.y150{bottom:218.632000pt;}
.y12a{bottom:221.456000pt;}
.y187{bottom:223.293333pt;}
.y10{bottom:224.293333pt;}
.y1a4{bottom:225.970667pt;}
.y1fd{bottom:227.053333pt;}
.ya4{bottom:228.962667pt;}
.y1fc{bottom:229.480000pt;}
.y28f{bottom:230.369333pt;}
.y44{bottom:231.481333pt;}
.y74{bottom:233.350667pt;}
.y22a{bottom:233.501333pt;}
.y1c9{bottom:233.797333pt;}
.y25c{bottom:234.353333pt;}
.ydd{bottom:235.205333pt;}
.ye5{bottom:235.612000pt;}
.y10f{bottom:236.945333pt;}
.y14f{bottom:237.201333pt;}
.y129{bottom:240.026667pt;}
.yf{bottom:240.193333pt;}
.y186{bottom:241.864000pt;}
.y1a3{bottom:244.541333pt;}
.y28e{bottom:247.392000pt;}
.ya3{bottom:247.533333pt;}
.y1fb{bottom:248.049333pt;}
.y42{bottom:250.052000pt;}
.y25b{bottom:251.376000pt;}
.y73{bottom:251.920000pt;}
.y1c8{bottom:252.368000pt;}
.ydb{bottom:253.774667pt;}
.y43{bottom:254.873333pt;}
.y10e{bottom:255.514667pt;}
.y14e{bottom:255.772000pt;}
.ye{bottom:256.093333pt;}
.ydc{bottom:258.597333pt;}
.y229{bottom:258.802667pt;}
.y185{bottom:260.434667pt;}
.y1a2{bottom:263.110667pt;}
.y28d{bottom:264.414667pt;}
.ya2{bottom:266.102667pt;}
.y1fa{bottom:266.620000pt;}
.y25a{bottom:268.398667pt;}
.y40{bottom:268.622667pt;}
.y72{bottom:270.490667pt;}
.y1c7{bottom:270.938667pt;}
.yd{bottom:271.994667pt;}
.yd9{bottom:272.345333pt;}
.y41{bottom:273.444000pt;}
.y10d{bottom:274.085333pt;}
.y14d{bottom:274.342667pt;}
.y228{bottom:276.136000pt;}
.yda{bottom:277.166667pt;}
.y184{bottom:279.005333pt;}
.y28c{bottom:281.437333pt;}
.y1a1{bottom:281.681333pt;}
.ya1{bottom:284.673333pt;}
.y1f9{bottom:285.190667pt;}
.y259{bottom:285.421333pt;}
.y3f{bottom:287.192000pt;}
.yc{bottom:287.894667pt;}
.y71{bottom:289.061333pt;}
.y1c6{bottom:289.508000pt;}
.yd8{bottom:290.916000pt;}
.y10b{bottom:292.656000pt;}
.y14c{bottom:292.912000pt;}
.y227{bottom:293.468000pt;}
.y10c{bottom:297.477333pt;}
.y183{bottom:297.574667pt;}
.y28b{bottom:298.460000pt;}
.y1a0{bottom:300.252000pt;}
.y258{bottom:302.444000pt;}
.ya0{bottom:303.244000pt;}
.y1f8{bottom:303.760000pt;}
.yb{bottom:303.794667pt;}
.y3e{bottom:305.762667pt;}
.y70{bottom:307.630667pt;}
.y1c5{bottom:308.078667pt;}
.yd6{bottom:309.485333pt;}
.y226{bottom:310.800000pt;}
.y109{bottom:311.225333pt;}
.y14a{bottom:311.482667pt;}
.yd7{bottom:314.308000pt;}
.y289{bottom:315.482667pt;}
.y10a{bottom:316.048000pt;}
.y182{bottom:316.145333pt;}
.y14b{bottom:316.304000pt;}
.y28a{bottom:318.352000pt;}
.y19f{bottom:318.821333pt;}
.y257{bottom:319.466667pt;}
.ya{bottom:319.696000pt;}
.y9f{bottom:321.814667pt;}
.y1f7{bottom:322.330667pt;}
.y3d{bottom:324.333333pt;}
.y6f{bottom:326.201333pt;}
.y1c3{bottom:326.649333pt;}
.yd4{bottom:328.056000pt;}
.y108{bottom:329.796000pt;}
.y149{bottom:330.053333pt;}
.y1c4{bottom:331.470667pt;}
.y288{bottom:332.506667pt;}
.yd5{bottom:332.877333pt;}
.y181{bottom:334.716000pt;}
.y9{bottom:335.596000pt;}
.y225{bottom:336.102667pt;}
.y256{bottom:336.489333pt;}
.y19e{bottom:337.392000pt;}
.y9e{bottom:340.384000pt;}
.y1f5{bottom:340.901333pt;}
.y3b{bottom:342.904000pt;}
.y6e{bottom:344.772000pt;}
.y1c2{bottom:345.220000pt;}
.y1f6{bottom:345.722667pt;}
.yd3{bottom:346.626667pt;}
.y3c{bottom:347.725333pt;}
.y107{bottom:348.366667pt;}
.y148{bottom:348.622667pt;}
.y287{bottom:349.529333pt;}
.y8{bottom:351.496000pt;}
.y180{bottom:353.285333pt;}
.y255{bottom:353.512000pt;}
.y224{bottom:353.898667pt;}
.y19d{bottom:355.962667pt;}
.y9d{bottom:358.954667pt;}
.y1f4{bottom:359.472000pt;}
.y39{bottom:361.473333pt;}
.y6d{bottom:363.341333pt;}
.y1c1{bottom:363.789333pt;}
.yd2{bottom:365.196000pt;}
.y3a{bottom:366.296000pt;}
.y286{bottom:366.552000pt;}
.y106{bottom:366.936000pt;}
.y147{bottom:367.193333pt;}
.y7{bottom:367.397333pt;}
.y254{bottom:370.534667pt;}
.y223{bottom:371.694667pt;}
.y17f{bottom:371.856000pt;}
.y19c{bottom:374.532000pt;}
.y1f3{bottom:378.041333pt;}
.y29a{bottom:379.369333pt;}
.y38{bottom:380.044000pt;}
.y9c{bottom:381.509333pt;}
.y6c{bottom:381.912000pt;}
.y1c0{bottom:382.360000pt;}
.y285{bottom:383.574667pt;}
.yd1{bottom:383.766667pt;}
.y104{bottom:385.506667pt;}
.y146{bottom:385.764000pt;}
.y253{bottom:387.557333pt;}
.y6{bottom:388.610667pt;}
.y105{bottom:390.328000pt;}
.y17e{bottom:390.426667pt;}
.y19b{bottom:393.102667pt;}
.y299{bottom:396.393333pt;}
.y1f2{bottom:396.612000pt;}
.y37{bottom:398.614667pt;}
.y6b{bottom:400.482667pt;}
.y284{bottom:400.597333pt;}
.y1bf{bottom:400.930667pt;}
.yd0{bottom:402.337333pt;}
.y9b{bottom:403.226667pt;}
.y103{bottom:404.077333pt;}
.y144{bottom:404.333333pt;}
.y5{bottom:404.510667pt;}
.y252{bottom:404.580000pt;}
.y222{bottom:405.432000pt;}
.y17d{bottom:408.996000pt;}
.y145{bottom:409.156000pt;}
.y19a{bottom:411.673333pt;}
.y298{bottom:413.416000pt;}
.y1f1{bottom:415.182667pt;}
.y36{bottom:417.184000pt;}
.y283{bottom:417.620000pt;}
.y6a{bottom:419.053333pt;}
.y1be{bottom:419.500000pt;}
.y102{bottom:420.221333pt;}
.y4{bottom:420.412000pt;}
.ycf{bottom:420.906667pt;}
.y251{bottom:421.602667pt;}
.y100{bottom:422.646667pt;}
.y142{bottom:422.904000pt;}
.y221{bottom:424.002667pt;}
.y101{bottom:427.469333pt;}
.y17c{bottom:427.566667pt;}
.y143{bottom:427.726667pt;}
.y199{bottom:430.244000pt;}
.y1f0{bottom:433.752000pt;}
.y282{bottom:434.642667pt;}
.y35{bottom:435.754667pt;}
.y3{bottom:436.312000pt;}
.y69{bottom:437.622667pt;}
.y9a{bottom:437.737333pt;}
.y1bd{bottom:438.070667pt;}
.y250{bottom:438.625333pt;}
.ycd{bottom:439.477333pt;}
.yff{bottom:441.217333pt;}
.y141{bottom:441.474667pt;}
.y220{bottom:442.572000pt;}
.yce{bottom:444.300000pt;}
.y17b{bottom:446.137333pt;}
.y198{bottom:448.813333pt;}
.y281{bottom:451.665333pt;}
.y1ef{bottom:452.322667pt;}
.y34{bottom:454.325333pt;}
.y24f{bottom:455.649333pt;}
.y68{bottom:456.193333pt;}
.y99{bottom:456.308000pt;}
.y1bc{bottom:456.641333pt;}
.y2{bottom:457.525333pt;}
.ycc{bottom:458.048000pt;}
.yfd{bottom:459.788000pt;}
.y140{bottom:460.045333pt;}
.y21f{bottom:461.142667pt;}
.y166{bottom:462.033333pt;}
.yfe{bottom:464.609333pt;}
.y17a{bottom:464.706667pt;}
.y197{bottom:467.384000pt;}
.y280{bottom:468.688000pt;}
.y1ee{bottom:470.893333pt;}
.y24e{bottom:472.672000pt;}
.y33{bottom:472.894667pt;}
.y1{bottom:473.426667pt;}
.y67{bottom:474.764000pt;}
.y98{bottom:474.877333pt;}
.y1bb{bottom:475.210667pt;}
.yca{bottom:476.617333pt;}
.yfc{bottom:478.357333pt;}
.y13f{bottom:478.614667pt;}
.y21e{bottom:479.713333pt;}
.ycb{bottom:481.440000pt;}
.y179{bottom:483.277333pt;}
.y27f{bottom:485.710667pt;}
.y196{bottom:485.954667pt;}
.y1ec{bottom:489.462667pt;}
.y24d{bottom:489.694667pt;}
.y32{bottom:491.465333pt;}
.y66{bottom:493.333333pt;}
.y97{bottom:493.448000pt;}
.y1ba{bottom:493.781333pt;}
.y1ed{bottom:494.285333pt;}
.yc8{bottom:495.188000pt;}
.yfb{bottom:496.928000pt;}
.y13d{bottom:497.185333pt;}
.y21d{bottom:498.282667pt;}
.yc9{bottom:500.010667pt;}
.y178{bottom:501.848000pt;}
.y13e{bottom:502.006667pt;}
.y27e{bottom:502.733333pt;}
.y195{bottom:504.524000pt;}
.y24c{bottom:506.717333pt;}
.y1ea{bottom:508.033333pt;}
.y31{bottom:510.036000pt;}
.y65{bottom:511.904000pt;}
.y96{bottom:512.018667pt;}
.y1b9{bottom:512.352000pt;}
.y1eb{bottom:512.854667pt;}
.yc6{bottom:513.758667pt;}
.yfa{bottom:515.498667pt;}
.y13c{bottom:515.756000pt;}
.y21c{bottom:516.853333pt;}
.yc7{bottom:518.580000pt;}
.y27d{bottom:519.756000pt;}
.y177{bottom:520.417333pt;}
.y194{bottom:523.094667pt;}
.y24b{bottom:523.740000pt;}
.y1e9{bottom:526.604000pt;}
.y30{bottom:528.605333pt;}
.y63{bottom:530.474667pt;}
.y95{bottom:530.589333pt;}
.y1b8{bottom:530.921333pt;}
.yc5{bottom:532.329333pt;}
.y13b{bottom:534.325333pt;}
.y64{bottom:535.296000pt;}
.y21b{bottom:535.424000pt;}
.y27c{bottom:536.778667pt;}
.y128{bottom:537.150667pt;}
.yf9{bottom:538.053333pt;}
.y176{bottom:538.988000pt;}
.y24a{bottom:540.762667pt;}
.y193{bottom:541.665333pt;}
.y1e8{bottom:545.173333pt;}
.y2f{bottom:547.176000pt;}
.y62{bottom:549.044000pt;}
.y94{bottom:549.158667pt;}
.y1b7{bottom:549.492000pt;}
.yc3{bottom:550.898667pt;}
.y27b{bottom:553.801333pt;}
.y21a{bottom:553.994667pt;}
.yc4{bottom:555.721333pt;}
.y13a{bottom:556.881333pt;}
.y175{bottom:557.558667pt;}
.y249{bottom:557.785333pt;}
.y1e7{bottom:563.744000pt;}
.y2e{bottom:565.746667pt;}
.y61{bottom:567.614667pt;}
.y93{bottom:567.729333pt;}
.yc1{bottom:569.469333pt;}
.y27a{bottom:570.824000pt;}
.y1b6{bottom:572.048000pt;}
.y219{bottom:572.564000pt;}
.y192{bottom:573.334667pt;}
.yc2{bottom:574.290667pt;}
.y248{bottom:574.808000pt;}
.y174{bottom:576.129333pt;}
.y1e5{bottom:582.314667pt;}
.y60{bottom:586.185333pt;}
.y91{bottom:586.300000pt;}
.y1e6{bottom:587.136000pt;}
.y1b5{bottom:587.522667pt;}
.y279{bottom:587.846667pt;}
.yc0{bottom:588.040000pt;}
.y139{bottom:588.296000pt;}
.y191{bottom:590.429333pt;}
.y92{bottom:591.121333pt;}
.y218{bottom:591.134667pt;}
.y247{bottom:591.830667pt;}
.y2d{bottom:592.286667pt;}
.y173{bottom:594.698667pt;}
.y1e4{bottom:600.885333pt;}
.y5f{bottom:604.754667pt;}
.y90{bottom:604.869333pt;}
.ybe{bottom:606.609333pt;}
.y138{bottom:606.866667pt;}
.y246{bottom:608.853333pt;}
.y217{bottom:609.705333pt;}
.y18f{bottom:610.366667pt;}
.ybf{bottom:611.432000pt;}
.y172{bottom:613.269333pt;}
.y1b4{bottom:618.938667pt;}
.y1e3{bottom:619.454667pt;}
.y278{bottom:621.892000pt;}
.y5e{bottom:623.325333pt;}
.y8f{bottom:623.440000pt;}
.ybd{bottom:625.180000pt;}
.y137{bottom:625.437333pt;}
.y245{bottom:625.876000pt;}
.y2c{bottom:627.860000pt;}
.y216{bottom:628.274667pt;}
.yf8{bottom:629.165333pt;}
.y171{bottom:631.840000pt;}
.y1b3{bottom:637.508000pt;}
.y1e2{bottom:638.025333pt;}
.y277{bottom:638.914667pt;}
.y5d{bottom:641.896000pt;}
.y8e{bottom:642.010667pt;}
.y2b{bottom:642.206667pt;}
.y244{bottom:642.898667pt;}
.ybb{bottom:643.750667pt;}
.y215{bottom:646.845333pt;}
.ybc{bottom:648.572000pt;}
.y170{bottom:650.409333pt;}
.y1b2{bottom:653.652000pt;}
.y276{bottom:655.937333pt;}
.y1b1{bottom:656.078667pt;}
.y1e1{bottom:656.596000pt;}
.y243{bottom:659.921333pt;}
.y2a{bottom:660.410667pt;}
.y5c{bottom:660.466667pt;}
.y8d{bottom:660.580000pt;}
.yba{bottom:662.320000pt;}
.y165{bottom:665.402667pt;}
.y214{bottom:665.416000pt;}
.y136{bottom:665.612000pt;}
.y127{bottom:667.142667pt;}
.y135{bottom:668.226667pt;}
.y16e{bottom:668.980000pt;}
.y29{bottom:670.898667pt;}
.y275{bottom:672.961333pt;}
.y16f{bottom:673.801333pt;}
.y1b0{bottom:674.649333pt;}
.y1e0{bottom:675.165333pt;}
.y242{bottom:676.944000pt;}
.y5b{bottom:679.036000pt;}
.y8c{bottom:679.150667pt;}
.yb9{bottom:680.890667pt;}
.y134{bottom:682.838667pt;}
.y213{bottom:683.985333pt;}
.y126{bottom:685.713333pt;}
.y16c{bottom:687.550667pt;}
.y28{bottom:689.102667pt;}
.y274{bottom:689.984000pt;}
.y16d{bottom:692.372000pt;}
.y1af{bottom:693.218667pt;}
.y1df{bottom:693.736000pt;}
.y241{bottom:693.966667pt;}
.y133{bottom:697.450667pt;}
.y5a{bottom:697.606667pt;}
.y8b{bottom:697.721333pt;}
.yb8{bottom:699.461333pt;}
.y27{bottom:699.590667pt;}
.yf7{bottom:702.542667pt;}
.y212{bottom:702.556000pt;}
.y16b{bottom:706.120000pt;}
.y273{bottom:707.006667pt;}
.y240{bottom:710.989333pt;}
.y1ae{bottom:711.789333pt;}
.y132{bottom:712.062667pt;}
.y1de{bottom:712.306667pt;}
.y59{bottom:716.177333pt;}
.y8a{bottom:716.290667pt;}
.y26{bottom:717.794667pt;}
.yb7{bottom:718.030667pt;}
.yf6{bottom:721.113333pt;}
.y211{bottom:721.126667pt;}
.y272{bottom:724.029333pt;}
.y16a{bottom:724.690667pt;}
.y131{bottom:726.674667pt;}
.y23f{bottom:728.012000pt;}
.y25{bottom:728.284000pt;}
.y1dd{bottom:730.876000pt;}
.y1ad{bottom:734.344000pt;}
.y58{bottom:734.746667pt;}
.y89{bottom:734.861333pt;}
.yb6{bottom:736.601333pt;}
.y164{bottom:739.684000pt;}
.y210{bottom:739.696000pt;}
.y271{bottom:741.052000pt;}
.y24{bottom:742.630667pt;}
.y23e{bottom:745.034667pt;}
.y130{bottom:747.688000pt;}
.y1dc{bottom:749.446667pt;}
.y57{bottom:753.317333pt;}
.y88{bottom:753.432000pt;}
.y125{bottom:755.172000pt;}
.y1ac{bottom:756.061333pt;}
.y169{bottom:756.360000pt;}
.y270{bottom:758.074667pt;}
.y20f{bottom:758.266667pt;}
.yb5{bottom:759.157333pt;}
.y23{bottom:760.833333pt;}
.y23d{bottom:762.057333pt;}
.y1db{bottom:768.017333pt;}
.y22{bottom:771.322667pt;}
.y56{bottom:771.888000pt;}
.y87{bottom:772.002667pt;}
.y168{bottom:773.456000pt;}
.y124{bottom:773.742667pt;}
.y26f{bottom:775.097333pt;}
.y20e{bottom:776.837333pt;}
.y12f{bottom:778.450667pt;}
.y23c{bottom:779.080000pt;}
.y21{bottom:785.669333pt;}
.y1da{bottom:786.586667pt;}
.y55{bottom:790.457333pt;}
.y167{bottom:790.552000pt;}
.y86{bottom:790.572000pt;}
.y26e{bottom:792.120000pt;}
.y123{bottom:792.312000pt;}
.y20d{bottom:795.408000pt;}
.y23b{bottom:796.104000pt;}
.y20{bottom:803.873333pt;}
.y1d9{bottom:805.157333pt;}
.y54{bottom:809.028000pt;}
.y85{bottom:809.142667pt;}
.y122{bottom:810.882667pt;}
.y23a{bottom:813.126667pt;}
.yf5{bottom:813.964000pt;}
.y20c{bottom:817.962667pt;}
.y1d8{bottom:823.728000pt;}
.y26d{bottom:826.165333pt;}
.y53{bottom:827.598667pt;}
.y84{bottom:827.713333pt;}
.y121{bottom:829.453333pt;}
.y239{bottom:830.149333pt;}
.y1d7{bottom:842.297333pt;}
.y26c{bottom:843.188000pt;}
.y1f{bottom:843.585333pt;}
.y52{bottom:846.168000pt;}
.y83{bottom:846.282667pt;}
.y238{bottom:847.172000pt;}
.y120{bottom:852.008000pt;}
.y20b{bottom:852.473333pt;}
.y26a{bottom:860.210667pt;}
.y1d6{bottom:860.868000pt;}
.y1d{bottom:862.156000pt;}
.y26b{bottom:863.080000pt;}
.y237{bottom:864.194667pt;}
.y51{bottom:864.738667pt;}
.y82{bottom:864.853333pt;}
.y1e{bottom:866.977333pt;}
.yf4{bottom:869.674667pt;}
.y20a{bottom:871.044000pt;}
.y269{bottom:877.233333pt;}
.y1d5{bottom:879.438667pt;}
.y236{bottom:881.217333pt;}
.y50{bottom:883.309333pt;}
.y81{bottom:883.424000pt;}
.yf3{bottom:888.245333pt;}
.y209{bottom:889.613333pt;}
.y268{bottom:894.256000pt;}
.y1c{bottom:896.665333pt;}
.y1d4{bottom:898.009333pt;}
.y235{bottom:898.240000pt;}
.y4f{bottom:901.880000pt;}
.y80{bottom:901.993333pt;}
.y15e{bottom:906.816000pt;}
.y208{bottom:908.184000pt;}
.y267{bottom:911.278667pt;}
.y234{bottom:915.262667pt;}
.y1d3{bottom:916.578667pt;}
.y7f{bottom:920.564000pt;}
.y4e{bottom:924.434667pt;}
.y1b{bottom:924.521333pt;}
.y207{bottom:926.754667pt;}
.y266{bottom:928.301333pt;}
.y1d2{bottom:935.149333pt;}
.y233{bottom:936.270667pt;}
.y7e{bottom:939.134667pt;}
.y206{bottom:942.897333pt;}
.y12e{bottom:943.956000pt;}
.y205{bottom:945.324000pt;}
.y1a{bottom:952.377333pt;}
.y1d1{bottom:953.720000pt;}
.y7d{bottom:957.704000pt;}
.y265{bottom:962.346667pt;}
.yf2{bottom:962.526667pt;}
.y232{bottom:970.781333pt;}
.y1d0{bottom:972.289333pt;}
.y7c{bottom:976.274667pt;}
.y204{bottom:979.369333pt;}
.y19{bottom:980.232000pt;}
.yf1{bottom:981.097333pt;}
.y1cf{bottom:990.860000pt;}
.y4d{bottom:994.845333pt;}
.y231{bottom:996.082667pt;}
.y264{bottom:996.392000pt;}
.y11f{bottom:999.666667pt;}
.y4c{bottom:1013.414667pt;}
.y163{bottom:1018.237333pt;}
.y4b{bottom:1066.841333pt;}
.hb{height:28.947524pt;}
.h10{height:31.558400pt;}
.h2c{height:33.187635pt;}
.h2{height:33.771789pt;}
.h3{height:33.808982pt;}
.h11{height:36.666735pt;}
.h8{height:36.707117pt;}
.h13{height:36.874903pt;}
.hc{height:38.596538pt;}
.hd{height:38.639045pt;}
.h5{height:38.947124pt;}
.h25{height:40.525681pt;}
.h1a{height:41.524400pt;}
.h4{height:42.699789pt;}
.h1f{height:42.996759pt;}
.h19{height:43.421286pt;}
.h16{height:43.469107pt;}
.h2b{height:43.660390pt;}
.h23{height:45.962053pt;}
.h20{height:46.426800pt;}
.he{height:48.245551pt;}
.h7{height:48.298685pt;}
.h18{height:48.433131pt;}
.h1c{height:49.421563pt;}
.h15{height:50.409994pt;}
.h1d{height:50.843733pt;}
.hf{height:50.849067pt;}
.h21{height:53.879953pt;}
.h2a{height:54.893286pt;}
.h29{height:54.898620pt;}
.h26{height:55.952068pt;}
.h28{height:55.957402pt;}
.ha{height:55.992450pt;}
.h12{height:57.958810pt;}
.h9{height:60.202685pt;}
.h6{height:86.938214pt;}
.h27{height:252.042667pt;}
.h17{height:364.686747pt;}
.h24{height:419.364400pt;}
.h1b{height:628.366667pt;}
.h1e{height:800.276576pt;}
.h14{height:829.224640pt;}
.h22{height:843.336152pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:371.784000pt;}
.w7{width:375.710880pt;}
.w5{width:452.528760pt;}
.w8{width:465.685333pt;}
.w6{width:480.036240pt;}
.w3{width:522.741277pt;}
.w2{width:610.251040pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.xd0{left:55.592000pt;}
.x10d{left:76.309333pt;}
.x10e{left:78.556000pt;}
.x55{left:91.534667pt;}
.x2{left:111.213333pt;}
.x3{left:138.938667pt;}
.x10f{left:148.008000pt;}
.x4{left:156.745333pt;}
.x110{left:219.078667pt;}
.x79{left:220.012000pt;}
.x12{left:220.912000pt;}
.x10{left:221.858667pt;}
.xf{left:226.410667pt;}
.xdb{left:229.948000pt;}
.xd1{left:233.914667pt;}
.xf6{left:235.537333pt;}
.xb7{left:236.846667pt;}
.x11{left:239.924000pt;}
.xf7{left:241.249333pt;}
.xd9{left:247.740000pt;}
.x24{left:250.204000pt;}
.x57{left:252.853333pt;}
.xda{left:253.790667pt;}
.x69{left:257.332000pt;}
.xf8{left:258.234667pt;}
.x5{left:261.157333pt;}
.xf4{left:263.574667pt;}
.x5e{left:268.977333pt;}
.x6{left:270.057333pt;}
.x13{left:273.981333pt;}
.xcb{left:275.114667pt;}
.x20{left:276.681333pt;}
.xde{left:278.048000pt;}
.x30{left:280.566667pt;}
.xc4{left:283.745333pt;}
.x3a{left:285.366667pt;}
.x31{left:287.028000pt;}
.xf9{left:288.000000pt;}
.x5f{left:290.760000pt;}
.x21{left:294.025333pt;}
.xc5{left:297.029333pt;}
.x3b{left:298.650667pt;}
.x44{left:301.120000pt;}
.x60{left:304.042667pt;}
.xf1{left:305.105333pt;}
.x6a{left:311.910667pt;}
.x45{left:314.404000pt;}
.x10c{left:317.173333pt;}
.x6f{left:318.098667pt;}
.x72{left:321.049333pt;}
.xe1{left:323.590667pt;}
.x6b{left:325.193333pt;}
.x70{left:331.381333pt;}
.x4f{left:332.813333pt;}
.x38{left:334.840000pt;}
.xe2{left:336.873333pt;}
.x95{left:338.021333pt;}
.xe3{left:340.152000pt;}
.xff{left:341.400000pt;}
.xe5{left:342.572000pt;}
.x25{left:345.152000pt;}
.x50{left:346.096000pt;}
.x39{left:348.124000pt;}
.xa0{left:349.073333pt;}
.x26{left:351.793333pt;}
.xa6{left:353.376000pt;}
.xa1{left:355.122667pt;}
.xef{left:360.722667pt;}
.x75{left:362.328000pt;}
.x36{left:363.664000pt;}
.x9d{left:365.577333pt;}
.xe7{left:368.046667pt;}
.x37{left:370.305333pt;}
.x7d{left:371.653550pt;}
.x5b{left:373.870667pt;}
.xeb{left:378.220000pt;}
.x9e{left:379.593333pt;}
.x33{left:380.736000pt;}
.xed{left:381.697333pt;}
.xd5{left:382.613333pt;}
.x47{left:383.756000pt;}
.xfb{left:386.128000pt;}
.x34{left:387.377333pt;}
.xd6{left:388.664000pt;}
.x100{left:390.202667pt;}
.x107{left:391.968000pt;}
.xec{left:393.685333pt;}
.x101{left:396.252000pt;}
.x35{left:397.338667pt;}
.x84{left:398.866667pt;}
.x14{left:401.365333pt;}
.x7{left:403.694667pt;}
.xe9{left:405.232000pt;}
.x15{left:407.414667pt;}
.xea{left:416.157333pt;}
.xdc{left:417.184000pt;}
.x6d{left:419.754667pt;}
.x8{left:421.501333pt;}
.xbf{left:423.108000pt;}
.xdf{left:424.408000pt;}
.x85{left:425.329333pt;}
.xdd{left:427.093333pt;}
.x1a{left:428.261333pt;}
.xc0{left:429.158667pt;}
.x5c{left:430.710667pt;}
.x1b{left:434.312000pt;}
.xb8{left:435.297333pt;}
.x6e{left:437.085333pt;}
.xa3{left:439.005333pt;}
.xb9{left:441.348000pt;}
.xa4{left:442.376000pt;}
.xc2{left:443.785333pt;}
.x94{left:446.453333pt;}
.x5d{left:448.798667pt;}
.x9a{left:450.777333pt;}
.xae{left:451.879972pt;}
.x108{left:453.049333pt;}
.xa5{left:455.660000pt;}
.x29{left:457.181333pt;}
.x73{left:458.226667pt;}
.xc3{left:460.905333pt;}
.x1e{left:461.834667pt;}
.x2a{left:463.822667pt;}
.xb1{left:466.574667pt;}
.xc1{left:467.948000pt;}
.x63{left:469.980000pt;}
.xb2{left:474.665333pt;}
.x74{left:475.577333pt;}
.x10b{left:476.773333pt;}
.x8d{left:478.052000pt;}
.x1f{left:479.194667pt;}
.x6c{left:480.312000pt;}
.xb3{left:481.326667pt;}
.x64{left:483.262667pt;}
.x91{left:486.660000pt;}
.x8e{left:488.977333pt;}
.x65{left:490.037333pt;}
.xb4{left:492.742667pt;}
.x109{left:494.462667pt;}
.x10a{left:496.481333pt;}
.xfd{left:497.629333pt;}
.x92{left:499.944000pt;}
.xba{left:502.188000pt;}
.x66{left:503.321333pt;}
.x7a{left:505.542667pt;}
.x93{left:506.460000pt;}
.x9{left:508.302667pt;}
.x86{left:509.868000pt;}
.xfe{left:511.862667pt;}
.xcc{left:513.614667pt;}
.x32{left:514.848000pt;}
.x77{left:516.202667pt;}
.x5a{left:519.277304pt;}
.x22{left:520.878667pt;}
.x7b{left:522.885333pt;}
.x2d{left:524.517333pt;}
.xa{left:526.109333pt;}
.xa7{left:527.180000pt;}
.xfc{left:530.201333pt;}
.x2e{left:531.158667pt;}
.x9f{left:532.092000pt;}
.x58{left:533.213333pt;}
.x78{left:534.285333pt;}
.x8f{left:535.280000pt;}
.x71{left:537.064000pt;}
.x23{left:538.224000pt;}
.xc6{left:540.621333pt;}
.xc7{left:543.008000pt;}
.x59{left:546.497333pt;}
.x16{left:548.537333pt;}
.xb5{left:550.405333pt;}
.x17{left:554.588000pt;}
.x103{left:555.633333pt;}
.x102{left:559.516000pt;}
.xcf{left:560.573333pt;}
.xb6{left:563.689333pt;}
.x90{left:565.434667pt;}
.xc8{left:566.425333pt;}
.x87{left:567.861333pt;}
.x104{left:569.830667pt;}
.x4d{left:573.828000pt;}
.xa8{left:577.052000pt;}
.xe6{left:578.220000pt;}
.x105{left:579.777333pt;}
.x4e{left:582.032000pt;}
.xa9{left:583.102667pt;}
.x88{left:584.398667pt;}
.xaf{left:588.134667pt;}
.xd7{left:590.081333pt;}
.xaa{left:593.012000pt;}
.x106{left:593.976000pt;}
.xf5{left:596.364000pt;}
.x89{left:597.682667pt;}
.xab{left:599.062667pt;}
.x8a{left:600.937333pt;}
.x56{left:605.384123pt;}
.x2b{left:606.278667pt;}
.x27{left:608.814667pt;}
.x2c{left:612.920000pt;}
.x8b{left:614.220000pt;}
.x28{left:615.456000pt;}
.x4a{left:621.077333pt;}
.xee{left:622.037333pt;}
.x9b{left:624.736000pt;}
.xb{left:626.193333pt;}
.x61{left:630.856000pt;}
.xcd{left:632.914667pt;}
.x1c{left:634.273333pt;}
.xf0{left:635.652000pt;}
.x9c{left:638.752000pt;}
.x7e{left:640.458667pt;}
.xad{left:642.924000pt;}
.xc{left:644.001333pt;}
.x67{left:644.917333pt;}
.x62{left:648.202667pt;}
.xbc{left:650.962667pt;}
.xac{left:653.909333pt;}
.xf2{left:655.401333pt;}
.xc9{left:656.566667pt;}
.x46{left:657.828000pt;}
.x80{left:661.952000pt;}
.x68{left:663.222667pt;}
.x42{left:666.350667pt;}
.xca{left:667.492000pt;}
.xd8{left:668.701333pt;}
.xb0{left:669.778667pt;}
.x3c{left:671.228000pt;}
.xbb{left:672.804000pt;}
.x81{left:675.234667pt;}
.x3d{left:677.870667pt;}
.x43{left:679.633333pt;}
.x3e{left:681.170667pt;}
.x8c{left:684.525333pt;}
.xfa{left:686.065333pt;}
.x76{left:687.040000pt;}
.x4c{left:689.454667pt;}
.x51{left:690.433333pt;}
.x82{left:691.826667pt;}
.x96{left:693.501333pt;}
.x3f{left:694.454667pt;}
.x48{left:697.316000pt;}
.x52{left:698.522667pt;}
.x40{left:701.056000pt;}
.x49{left:703.957333pt;}
.x53{left:705.098667pt;}
.x97{left:706.784000pt;}
.xa2{left:708.568000pt;}
.x98{left:710.172000pt;}
.x83{left:711.725333pt;}
.xf3{left:712.864000pt;}
.x41{left:714.340000pt;}
.x54{left:716.505333pt;}
.xd2{left:718.653333pt;}
.xe0{left:721.066667pt;}
.xd3{left:722.341333pt;}
.x99{left:723.454667pt;}
.xe4{left:724.552000pt;}
.xd{left:725.985333pt;}
.x4b{left:727.152000pt;}
.xbd{left:728.636000pt;}
.x18{left:730.092000pt;}
.x7f{left:732.190667pt;}
.x2f{left:733.694667pt;}
.xbe{left:734.685333pt;}
.x19{left:736.141333pt;}
.xd4{left:737.209333pt;}
.x7c{left:739.725333pt;}
.x1d{left:741.045333pt;}
.xce{left:742.694667pt;}
.xe{left:743.792000pt;}
.xe8{left:744.770667pt;}
}




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