
    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_33fb8b2edbdc8a2c5818a78d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986000;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_062eeb7bbc28d5fe7bb9a842.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.151000;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_dd64adcce1fda6c56682ecf9.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_4678dfeced5828b778b58edb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.665000;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_4075a631e6fcc3163be25975.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666000;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_c76c8f6f6007d4befb1ede04.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7d958c37d3406539c8a59e7b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.006348;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_643b65bd68362c190fb8c6f3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.174316;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_1e8905a345e484b1882ce819.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_38faea0fe70b7a04bc38aa8e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006348;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_f91e1dc5084cdb3e4274bfab.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.174316;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_f90ae0f1867b80fe3c6bcb42.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_4ad25c9c1c8800e8b5e2bc28.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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_eaff7a3910f4015a04e12d3d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_323c834c4fed8d0e2785486a.woff2')format("woff");}.fff{font-family:fff;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_17d06a3a7016e20850dc1750.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.174316;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_65f0cf1a7991cb3d1cca016e.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_61a76a77a672975ebb8b7691.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_7eb065886317169cbfb04f12.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.174316;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_1c9c3d7a7a97412650410824.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_d3db1618a67ebbc676507594.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.006348;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:ff16;src:url('chunks/assets/font_93b97954fbda64c67878f898.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.174316;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:ff17;src:url('chunks/assets/font_2762830d2d854f5f266b9573.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.003418;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:ff18;src:url('chunks/assets/font_1a2343173bd60cd2a7291a8e.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_f217930a79afb85463063185.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.006348;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:ff1a;src:url('chunks/assets/font_1183d2db5401977ac96b627d.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.174316;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:ff1b;src:url('chunks/assets/font_54590bd9388aa840f2d5fcd8.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.734000;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;}
.m7{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);}
.m20{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);}
.m25{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);}
.m9{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);}
.m27{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);}
.m1c{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);}
.m14{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);}
.m18{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);}
.m26{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);}
.m12{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);}
.m17{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);}
.m24{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);}
.ma{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);}
.m1{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m5{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);}
.m22{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m23{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);}
.m28{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);}
.mf{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);}
.m10{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);}
.m6{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);}
.m11{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);}
.m8{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);}
.m1d{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);}
.m4{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);}
.m13{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);}
.m16{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);}
.mb{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);}
.m19{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);}
.m1b{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);}
.m1f{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);}
.m1a{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);}
.m3{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-21.696000px;}
.va{vertical-align:-14.364000px;}
.v2{vertical-align:-11.958000px;}
.v8{vertical-align:-1.254000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:15.120000px;}
.v9{vertical-align:18.282000px;}
.v1{vertical-align:19.530000px;}
.v5{vertical-align:21.696000px;}
.v3{vertical-align:32.880000px;}
.v4{vertical-align:51.510000px;}
.ls21{letter-spacing:-0.826650px;}
.ls22{letter-spacing:-0.601200px;}
.ls46{letter-spacing:-0.541080px;}
.ls20{letter-spacing:-0.526050px;}
.ls48{letter-spacing:-0.480960px;}
.ls7f{letter-spacing:-0.456912px;}
.ls1f{letter-spacing:-0.450900px;}
.ls44{letter-spacing:-0.420840px;}
.ls16{letter-spacing:-0.405000px;}
.ls79{letter-spacing:-0.399798px;}
.ls18{letter-spacing:-0.375750px;}
.ls43{letter-spacing:-0.360720px;}
.ls7b{letter-spacing:-0.342684px;}
.ls47{letter-spacing:-0.324000px;}
.ls1b{letter-spacing:-0.300600px;}
.ls7d{letter-spacing:-0.285570px;}
.ls49{letter-spacing:-0.240480px;}
.ls78{letter-spacing:-0.228456px;}
.ls1a{letter-spacing:-0.225450px;}
.ls65{letter-spacing:-0.216000px;}
.ls40{letter-spacing:-0.180360px;}
.ls7c{letter-spacing:-0.171342px;}
.ls17{letter-spacing:-0.150300px;}
.ls14{letter-spacing:-0.135000px;}
.ls45{letter-spacing:-0.120240px;}
.ls13{letter-spacing:-0.119700px;}
.ls7a{letter-spacing:-0.114228px;}
.ls4a{letter-spacing:-0.108000px;}
.ls3e{letter-spacing:-0.095760px;}
.ls76{letter-spacing:-0.090972px;}
.ls19{letter-spacing:-0.075150px;}
.ls3f{letter-spacing:-0.060120px;}
.ls77{letter-spacing:-0.057114px;}
.ls6{letter-spacing:0.000000px;}
.ls4e{letter-spacing:0.000435px;}
.ls1{letter-spacing:0.000600px;}
.ls4d{letter-spacing:0.000608px;}
.ls4c{letter-spacing:0.001100px;}
.ls84{letter-spacing:0.001155px;}
.ls5d{letter-spacing:0.002520px;}
.ls11{letter-spacing:0.002728px;}
.ls4b{letter-spacing:0.004630px;}
.ls7e{letter-spacing:0.051300px;}
.ls5c{letter-spacing:0.053280px;}
.ls42{letter-spacing:0.054000px;}
.ls80{letter-spacing:0.057114px;}
.ls2a{letter-spacing:0.060120px;}
.ls28{letter-spacing:0.064800px;}
.ls1e{letter-spacing:0.067500px;}
.ls1c{letter-spacing:0.075150px;}
.ls71{letter-spacing:0.085500px;}
.ls6e{letter-spacing:0.085671px;}
.ls41{letter-spacing:0.108000px;}
.ls6b{letter-spacing:0.114228px;}
.ls27{letter-spacing:0.120240px;}
.ls26{letter-spacing:0.126252px;}
.ls6f{letter-spacing:0.131362px;}
.ls15{letter-spacing:0.135000px;}
.ls1d{letter-spacing:0.150300px;}
.ls24{letter-spacing:0.162000px;}
.ls70{letter-spacing:0.171342px;}
.ls3a{letter-spacing:0.180360px;}
.ls75{letter-spacing:0.181944px;}
.ls3d{letter-spacing:0.191520px;}
.ls8{letter-spacing:0.202500px;}
.lse{letter-spacing:0.225450px;}
.ls12{letter-spacing:0.239400px;}
.ls25{letter-spacing:0.420840px;}
.ls64{letter-spacing:0.642088px;}
.ls23{letter-spacing:0.676350px;}
.ls2c{letter-spacing:0.781560px;}
.ls72{letter-spacing:1.085166px;}
.ls57{letter-spacing:1.106208px;}
.ls58{letter-spacing:1.142280px;}
.ls37{letter-spacing:1.190376px;}
.ls9{letter-spacing:1.427850px;}
.ls60{letter-spacing:1.599192px;}
.ls66{letter-spacing:1.675200px;}
.ls5f{letter-spacing:1.863720px;}
.lsf{letter-spacing:1.878750px;}
.lsa{letter-spacing:1.946385px;}
.ls10{letter-spacing:2.021535px;}
.ls61{letter-spacing:2.224440px;}
.ls62{letter-spacing:2.717424px;}
.ls54{letter-spacing:2.945880px;}
.ls67{letter-spacing:2.988600px;}
.ls4f{letter-spacing:2.989200px;}
.ls2f{letter-spacing:3.507900px;}
.ls30{letter-spacing:3.513900px;}
.ls5a{letter-spacing:3.835656px;}
.ls31{letter-spacing:4.388760px;}
.ls63{letter-spacing:4.749480px;}
.ls3c{letter-spacing:4.815612px;}
.lsd{letter-spacing:5.485950px;}
.ls6d{letter-spacing:5.882742px;}
.ls5b{letter-spacing:6.318000px;}
.ls5e{letter-spacing:6.913800px;}
.ls55{letter-spacing:7.995960px;}
.lsc{letter-spacing:8.191350px;}
.ls36{letter-spacing:8.717400px;}
.ls6c{letter-spacing:9.309582px;}
.ls56{letter-spacing:10.160280px;}
.ls0{letter-spacing:10.461300px;}
.ls73{letter-spacing:11.023002px;}
.ls74{letter-spacing:11.062982px;}
.ls5{letter-spacing:11.954850px;}
.ls85{letter-spacing:12.901420px;}
.ls82{letter-spacing:13.448400px;}
.ls83{letter-spacing:13.454400px;}
.ls69{letter-spacing:14.094088px;}
.ls3{letter-spacing:14.100088px;}
.ls53{letter-spacing:14.944200px;}
.ls51{letter-spacing:15.657483px;}
.ls50{letter-spacing:15.663483px;}
.ls4{letter-spacing:16.440600px;}
.ls59{letter-spacing:18.456840px;}
.ls2d{letter-spacing:22.236523px;}
.ls2{letter-spacing:28.453654px;}
.ls2e{letter-spacing:94.215000px;}
.ls29{letter-spacing:108.566640px;}
.ls2b{letter-spacing:108.576720px;}
.ls3b{letter-spacing:110.260080px;}
.ls39{letter-spacing:159.197760px;}
.lsb{letter-spacing:200.349900px;}
.ls38{letter-spacing:235.189440px;}
.ls34{letter-spacing:339.557760px;}
.ls32{letter-spacing:339.918480px;}
.ls33{letter-spacing:352.904400px;}
.ls35{letter-spacing:383.144760px;}
.ls68{letter-spacing:606.390600px;}
.ls6a{letter-spacing:633.294600px;}
.ls7{letter-spacing:2653.013700px;}
.ls52{letter-spacing:2654.213700px;}
.ls81{letter-spacing:2655.407700px;}
.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;}
}
.wsfd{word-spacing:-60.300360px;}
.ws5a{word-spacing:-19.463850px;}
.ws58{word-spacing:-18.862650px;}
.ws56{word-spacing:-18.787500px;}
.ws53{word-spacing:-18.712350px;}
.ws52{word-spacing:-18.637200px;}
.ws57{word-spacing:-18.562050px;}
.ws54{word-spacing:-18.486900px;}
.ws55{word-spacing:-18.336600px;}
.ws59{word-spacing:-18.186300px;}
.ws50{word-spacing:-17.010000px;}
.ws4f{word-spacing:-16.740000px;}
.ws51{word-spacing:-16.470000px;}
.ws9f{word-spacing:-15.210360px;}
.ws91{word-spacing:-15.150240px;}
.ws9b{word-spacing:-15.090120px;}
.ws8e{word-spacing:-15.030000px;}
.ws90{word-spacing:-14.969880px;}
.ws4e{word-spacing:-14.962500px;}
.ws12c{word-spacing:-14.943900px;}
.ws8f{word-spacing:-14.909760px;}
.ws8c{word-spacing:-14.849640px;}
.ws99{word-spacing:-14.789520px;}
.wsd8{word-spacing:-14.729400px;}
.ws9c{word-spacing:-14.669280px;}
.ws98{word-spacing:-14.609160px;}
.ws9d{word-spacing:-14.549040px;}
.ws9a{word-spacing:-14.488920px;}
.ws134{word-spacing:-14.449842px;}
.ws135{word-spacing:-14.392728px;}
.ws138{word-spacing:-14.278500px;}
.ws139{word-spacing:-14.221386px;}
.ws137{word-spacing:-14.107158px;}
.ws133{word-spacing:-14.050044px;}
.ws13a{word-spacing:-13.935816px;}
.ws13c{word-spacing:-13.878702px;}
.ws13d{word-spacing:-13.821588px;}
.ws8d{word-spacing:-13.608000px;}
.ws92{word-spacing:-13.554000px;}
.ws1a{word-spacing:-13.449600px;}
.ws9e{word-spacing:-13.392000px;}
.wsfb{word-spacing:-13.284000px;}
.ws93{word-spacing:-13.176000px;}
.ws13b{word-spacing:-12.876300px;}
.ws8b{word-spacing:-11.970000px;}
.ws32{word-spacing:-11.955150px;}
.ws132{word-spacing:-11.371500px;}
.ws4{word-spacing:-10.460700px;}
.ws136{word-spacing:-8.550000px;}
.wsfc{word-spacing:-8.280000px;}
.ws78{word-spacing:-3.682350px;}
.ws77{word-spacing:-3.607200px;}
.ws7d{word-spacing:-3.456900px;}
.ws76{word-spacing:-3.381750px;}
.ws126{word-spacing:-3.246480px;}
.ws7c{word-spacing:-3.231450px;}
.wsbb{word-spacing:-3.066120px;}
.ws7e{word-spacing:-3.006000px;}
.wsb8{word-spacing:-2.765520px;}
.wsba{word-spacing:-2.705400px;}
.wsb9{word-spacing:-2.645280px;}
.wsf1{word-spacing:-2.585160px;}
.ws17c{word-spacing:-2.528525px;}
.ws11f{word-spacing:-2.525040px;}
.ws12f{word-spacing:-2.510575px;}
.ws11e{word-spacing:-2.404800px;}
.ws12a{word-spacing:-2.391024px;}
.wse4{word-spacing:-2.344680px;}
.wsd5{word-spacing:-2.331248px;}
.ws147{word-spacing:-2.227446px;}
.ws102{word-spacing:-2.151922px;}
.ws101{word-spacing:-2.092146px;}
.ws167{word-spacing:-2.056104px;}
.wsd{word-spacing:-2.044339px;}
.ws12b{word-spacing:-1.972595px;}
.ws166{word-spacing:-1.941876px;}
.ws12d{word-spacing:-1.912819px;}
.ws168{word-spacing:-1.884762px;}
.wsdc{word-spacing:-1.793268px;}
.ws127{word-spacing:-1.673717px;}
.ws1d{word-spacing:-1.667750px;}
.wsef{word-spacing:-1.623240px;}
.wsff{word-spacing:-1.554166px;}
.wsf5{word-spacing:-1.503000px;}
.wsf2{word-spacing:-1.382760px;}
.ws142{word-spacing:-1.370736px;}
.wsf4{word-spacing:-1.322640px;}
.wsd4{word-spacing:-1.315063px;}
.ws2{word-spacing:-1.297127px;}
.wsf3{word-spacing:-1.262520px;}
.ws22{word-spacing:-1.255288px;}
.ws6{word-spacing:-1.255284px;}
.wsf0{word-spacing:-1.142280px;}
.ws62{word-spacing:-1.127250px;}
.ws14b{word-spacing:-1.085166px;}
.ws16f{word-spacing:-1.075961px;}
.ws157{word-spacing:-1.028052px;}
.wsa8{word-spacing:-0.961920px;}
.wsc9{word-spacing:-0.956410px;}
.ws164{word-spacing:-0.913824px;}
.ws10d{word-spacing:-0.901800px;}
.wsd0{word-spacing:-0.896634px;}
.ws143{word-spacing:-0.856710px;}
.ws43{word-spacing:-0.836858px;}
.ws61{word-spacing:-0.826650px;}
.wsc4{word-spacing:-0.781560px;}
.ws1a1{word-spacing:-0.753178px;}
.ws149{word-spacing:-0.742482px;}
.wsca{word-spacing:-0.717307px;}
.ws156{word-spacing:-0.685368px;}
.wsbe{word-spacing:-0.601200px;}
.ws140{word-spacing:-0.571140px;}
.ws1a3{word-spacing:-0.537984px;}
.ws85{word-spacing:-0.526050px;}
.wsdd{word-spacing:-0.478205px;}
.wsb3{word-spacing:-0.420840px;}
.wsd9{word-spacing:-0.418429px;}
.ws160{word-spacing:-0.399798px;}
.ws71{word-spacing:-0.375750px;}
.wsb0{word-spacing:-0.360720px;}
.ws5c{word-spacing:-0.358654px;}
.ws18f{word-spacing:-0.322790px;}
.ws75{word-spacing:-0.300600px;}
.ws40{word-spacing:-0.298878px;}
.ws14a{word-spacing:-0.285570px;}
.ws12{word-spacing:-0.268992px;}
.wsb4{word-spacing:-0.240480px;}
.ws5e{word-spacing:-0.239400px;}
.ws4c{word-spacing:-0.239102px;}
.ws141{word-spacing:-0.228456px;}
.ws83{word-spacing:-0.225450px;}
.ws191{word-spacing:-0.215194px;}
.ws60{word-spacing:-0.202500px;}
.wsa0{word-spacing:-0.191520px;}
.ws13e{word-spacing:-0.181944px;}
.wsa5{word-spacing:-0.180360px;}
.ws2d{word-spacing:-0.179327px;}
.ws13f{word-spacing:-0.171342px;}
.wse0{word-spacing:-0.162000px;}
.ws17a{word-spacing:-0.161395px;}
.ws6b{word-spacing:-0.150300px;}
.wsb2{word-spacing:-0.120240px;}
.ws3e{word-spacing:-0.119551px;}
.ws15e{word-spacing:-0.114228px;}
.ws17{word-spacing:-0.107597px;}
.ws66{word-spacing:-0.075150px;}
.wsb1{word-spacing:-0.060120px;}
.ws39{word-spacing:-0.059776px;}
.ws15a{word-spacing:-0.057114px;}
.ws108{word-spacing:-0.054000px;}
.ws13{word-spacing:-0.053798px;}
.ws33{word-spacing:-0.047821px;}
.ws1{word-spacing:0.000000px;}
.ws14{word-spacing:0.053798px;}
.ws107{word-spacing:0.054000px;}
.ws145{word-spacing:0.057114px;}
.ws2e{word-spacing:0.059776px;}
.wsa1{word-spacing:0.060120px;}
.ws67{word-spacing:0.075150px;}
.ws15c{word-spacing:0.102600px;}
.ws1b{word-spacing:0.107597px;}
.wsa7{word-spacing:0.108000px;}
.ws158{word-spacing:0.114228px;}
.ws34{word-spacing:0.119551px;}
.wsae{word-spacing:0.120240px;}
.ws70{word-spacing:0.135000px;}
.ws6f{word-spacing:0.150300px;}
.ws15b{word-spacing:0.153900px;}
.ws179{word-spacing:0.161395px;}
.wsa6{word-spacing:0.162000px;}
.ws159{word-spacing:0.171342px;}
.ws38{word-spacing:0.179327px;}
.wsa3{word-spacing:0.180360px;}
.ws5f{word-spacing:0.202500px;}
.ws16{word-spacing:0.215194px;}
.ws74{word-spacing:0.225450px;}
.ws146{word-spacing:0.228456px;}
.ws47{word-spacing:0.239102px;}
.wsfa{word-spacing:0.240480px;}
.ws177{word-spacing:0.268992px;}
.wsc3{word-spacing:0.270000px;}
.ws3c{word-spacing:0.298878px;}
.ws65{word-spacing:0.300600px;}
.ws18d{word-spacing:0.322790px;}
.ws148{word-spacing:0.342684px;}
.ws100{word-spacing:0.358654px;}
.wsc0{word-spacing:0.360720px;}
.ws73{word-spacing:0.375750px;}
.ws144{word-spacing:0.399798px;}
.ws12e{word-spacing:0.418429px;}
.wsee{word-spacing:0.420840px;}
.wsd7{word-spacing:0.478205px;}
.wsa2{word-spacing:0.480960px;}
.ws10{word-spacing:0.484186px;}
.ws72{word-spacing:0.526050px;}
.ws96{word-spacing:0.537980px;}
.ws178{word-spacing:0.537984px;}
.wsaf{word-spacing:0.541080px;}
.ws86{word-spacing:0.601200px;}
.ws19a{word-spacing:0.645581px;}
.ws4b{word-spacing:0.657532px;}
.wse9{word-spacing:0.661320px;}
.ws19{word-spacing:0.668400px;}
.ws130{word-spacing:0.674400px;}
.wsd2{word-spacing:0.744600px;}
.ws63{word-spacing:0.751500px;}
.ws1a7{word-spacing:0.753178px;}
.ws95{word-spacing:0.777083px;}
.ws19f{word-spacing:0.806976px;}
.ws64{word-spacing:0.826650px;}
.wsad{word-spacing:0.841680px;}
.ws45{word-spacing:0.896634px;}
.ws109{word-spacing:0.901800px;}
.ws17e{word-spacing:0.914573px;}
.wsdb{word-spacing:0.956410px;}
.wsce{word-spacing:1.075961px;}
.wsd3{word-spacing:1.135736px;}
.ws17f{word-spacing:1.183565px;}
.ws37{word-spacing:1.195512px;}
.ws165{word-spacing:1.199394px;}
.wsb5{word-spacing:1.202400px;}
.wsb6{word-spacing:1.262520px;}
.ws44{word-spacing:1.315063px;}
.ws10c{word-spacing:1.322640px;}
.ws26{word-spacing:1.374839px;}
.wsc{word-spacing:1.380812px;}
.wsbf{word-spacing:1.382760px;}
.ws3d{word-spacing:1.434614px;}
.wsc2{word-spacing:1.442880px;}
.ws129{word-spacing:1.494390px;}
.ws6e{word-spacing:1.503000px;}
.ws17d{word-spacing:1.506355px;}
.ws19d{word-spacing:1.560154px;}
.wsa9{word-spacing:1.563120px;}
.ws10b{word-spacing:1.623240px;}
.ws84{word-spacing:1.653300px;}
.ws14c{word-spacing:1.656306px;}
.ws3f{word-spacing:1.673717px;}
.wsa4{word-spacing:1.743480px;}
.ws36{word-spacing:1.793268px;}
.wsab{word-spacing:1.863720px;}
.ws6c{word-spacing:1.878750px;}
.ws23{word-spacing:1.912819px;}
.ws195{word-spacing:1.990541px;}
.ws163{word-spacing:1.998990px;}
.ws6d{word-spacing:2.029050px;}
.ws115{word-spacing:2.044080px;}
.ws170{word-spacing:2.092146px;}
.wsc1{word-spacing:2.104200px;}
.ws1c{word-spacing:2.113463px;}
.ws41{word-spacing:2.151922px;}
.ws17b{word-spacing:2.152292px;}
.ws14d{word-spacing:2.170332px;}
.ws88{word-spacing:2.179350px;}
.wsaa{word-spacing:2.224440px;}
.ws48{word-spacing:2.271473px;}
.wsac{word-spacing:2.284560px;}
.ws87{word-spacing:2.329650px;}
.wsda{word-spacing:2.331248px;}
.ws117{word-spacing:2.344680px;}
.ws20{word-spacing:2.391024px;}
.ws199{word-spacing:2.420928px;}
.ws2f{word-spacing:2.450800px;}
.ws162{word-spacing:2.455902px;}
.ws116{word-spacing:2.464920px;}
.ws15{word-spacing:2.474726px;}
.ws27{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws3a{word-spacing:2.570351px;}
.ws120{word-spacing:2.585160px;}
.wse3{word-spacing:2.645280px;}
.ws121{word-spacing:2.765520px;}
.ws197{word-spacing:2.797517px;}
.wse{word-spacing:2.869236px;}
.wse2{word-spacing:2.945880px;}
.ws2a{word-spacing:2.988780px;}
.wse1{word-spacing:3.006000px;}
.wsd6{word-spacing:3.108331px;}
.ws174{word-spacing:3.168107px;}
.ws118{word-spacing:3.186360px;}
.ws18a{word-spacing:3.224093px;}
.ws2b{word-spacing:3.227882px;}
.ws103{word-spacing:3.227904px;}
.ws185{word-spacing:3.335501px;}
.ws119{word-spacing:3.366720px;}
.ws7f{word-spacing:3.456900px;}
.ws10a{word-spacing:3.486960px;}
.ws1aa{word-spacing:3.496896px;}
.ws2c{word-spacing:3.526760px;}
.ws190{word-spacing:3.550694px;}
.ws1e{word-spacing:3.586536px;}
.wsdf{word-spacing:3.646312px;}
.wsb7{word-spacing:3.667320px;}
.ws69{word-spacing:3.682350px;}
.ws181{word-spacing:3.712090px;}
.wsea{word-spacing:3.727440px;}
.ws4d{word-spacing:3.825638px;}
.ws15d{word-spacing:3.826638px;}
.ws6a{word-spacing:3.907800px;}
.ws128{word-spacing:4.064741px;}
.ws24{word-spacing:4.124516px;}
.ws183{word-spacing:4.303872px;}
.wsf{word-spacing:4.386508px;}
.wsbc{word-spacing:4.388760px;}
.ws29{word-spacing:4.483170px;}
.ws42{word-spacing:4.542946px;}
.wsbd{word-spacing:4.569120px;}
.wsc5{word-spacing:4.689360px;}
.ws192{word-spacing:4.788058px;}
.ws125{word-spacing:4.809600px;}
.wsc6{word-spacing:4.929840px;}
.wsc7{word-spacing:4.989960px;}
.wscd{word-spacing:5.021150px;}
.ws11{word-spacing:5.057050px;}
.wscc{word-spacing:5.080926px;}
.ws16d{word-spacing:5.083146px;}
.wsc8{word-spacing:5.110200px;}
.ws1a5{word-spacing:5.110848px;}
.ws171{word-spacing:5.140702px;}
.ws16e{word-spacing:5.254488px;}
.ws5d{word-spacing:5.320028px;}
.ws124{word-spacing:5.350680px;}
.wsa{word-spacing:5.481407px;}
.ws80{word-spacing:5.485950px;}
.ws30{word-spacing:5.499355px;}
.ws122{word-spacing:5.531040px;}
.ws154{word-spacing:5.597172px;}
.ws94{word-spacing:5.618906px;}
.ws10f{word-spacing:5.651280px;}
.ws173{word-spacing:5.678682px;}
.ws153{word-spacing:5.768514px;}
.ws7a{word-spacing:5.786550px;}
.ws16c{word-spacing:5.882742px;}
.ws123{word-spacing:5.891760px;}
.ws79{word-spacing:5.936850px;}
.ws155{word-spacing:5.939856px;}
.ws1f{word-spacing:5.977560px;}
.ws16b{word-spacing:6.111198px;}
.ws81{word-spacing:6.162300px;}
.ws152{word-spacing:6.225426px;}
.ws111{word-spacing:6.264000px;}
.ws25{word-spacing:6.276438px;}
.ws110{word-spacing:6.318000px;}
.ws3b{word-spacing:6.336214px;}
.ws15f{word-spacing:6.396768px;}
.ws82{word-spacing:6.613200px;}
.ws18{word-spacing:6.617203px;}
.ws49{word-spacing:6.635092px;}
.ws114{word-spacing:6.733440px;}
.ws112{word-spacing:6.913800px;}
.ws113{word-spacing:6.973920px;}
.ws21{word-spacing:6.993745px;}
.ws35{word-spacing:7.292623px;}
.ws176{word-spacing:7.370381px;}
.wse6{word-spacing:7.454880px;}
.wsfe{word-spacing:7.591501px;}
.ws68{word-spacing:7.740450px;}
.ws172{word-spacing:7.830604px;}
.wse5{word-spacing:8.056080px;}
.ws28{word-spacing:8.249033px;}
.wse7{word-spacing:8.296560px;}
.wse8{word-spacing:8.416800px;}
.wsde{word-spacing:8.428360px;}
.ws7b{word-spacing:8.717400px;}
.ws150{word-spacing:9.024012px;}
.ws151{word-spacing:9.195354px;}
.ws14e{word-spacing:9.366696px;}
.ws14f{word-spacing:9.423810px;}
.wsec{word-spacing:9.619200px;}
.wsed{word-spacing:9.679320px;}
.ws8{word-spacing:9.833058px;}
.ws8a{word-spacing:9.844650px;}
.wseb{word-spacing:10.220400px;}
.ws3{word-spacing:10.416784px;}
.ws89{word-spacing:10.521000px;}
.ws180{word-spacing:10.802458px;}
.ws169{word-spacing:10.965888px;}
.ws161{word-spacing:11.023002px;}
.ws16a{word-spacing:11.080116px;}
.ws187{word-spacing:11.190067px;}
.ws9{word-spacing:11.841512px;}
.ws31{word-spacing:11.906062px;}
.wsd1{word-spacing:13.090856px;}
.ws1a4{word-spacing:13.386499px;}
.ws193{word-spacing:13.387459px;}
.ws18e{word-spacing:13.387968px;}
.ws19c{word-spacing:13.388352px;}
.ws182{word-spacing:13.389341px;}
.ws194{word-spacing:13.389907px;}
.ws1a6{word-spacing:13.391002px;}
.ws198{word-spacing:13.392941px;}
.ws1a8{word-spacing:13.393968px;}
.ws18b{word-spacing:13.395802px;}
.ws1a0{word-spacing:14.202778px;}
.ws46{word-spacing:14.884124px;}
.ws19b{word-spacing:14.902157px;}
.ws5{word-spacing:15.481836px;}
.ws189{word-spacing:15.547738px;}
.ws1a2{word-spacing:16.569907px;}
.ws186{word-spacing:16.614854px;}
.ws19e{word-spacing:16.616602px;}
.ws196{word-spacing:16.618224px;}
.ws18c{word-spacing:16.618358px;}
.ws184{word-spacing:16.623706px;}
.wsf7{word-spacing:18.456840px;}
.ws4a{word-spacing:18.470660px;}
.wsf6{word-spacing:18.516960px;}
.wsf9{word-spacing:18.757440px;}
.wsf8{word-spacing:18.817560px;}
.ws1a9{word-spacing:20.604787px;}
.ws175{word-spacing:20.819981px;}
.ws7{word-spacing:22.339429px;}
.wsb{word-spacing:22.720640px;}
.ws10e{word-spacing:23.567040px;}
.ws11a{word-spacing:24.108120px;}
.ws11c{word-spacing:24.228360px;}
.ws11d{word-spacing:24.288480px;}
.ws11b{word-spacing:24.468840px;}
.ws188{word-spacing:24.639667px;}
.wscb{word-spacing:201.905395px;}
.wscf{word-spacing:349.420608px;}
.ws5b{word-spacing:472.887936px;}
.ws131{word-spacing:551.050500px;}
.ws106{word-spacing:551.259053px;}
.ws97{word-spacing:607.814323px;}
.ws104{word-spacing:637.833830px;}
.ws105{word-spacing:655.694899px;}
._59{margin-left:-22.860355px;}
._5{margin-left:-14.388152px;}
._7{margin-left:-11.943245px;}
._6{margin-left:-7.962163px;}
._8{margin-left:-6.635092px;}
._2{margin-left:-4.895608px;}
._0{margin-left:-3.096367px;}
._16{margin-left:-2.062261px;}
._1{margin-left:-1.046070px;}
._1c{width:1.023435px;}
._20{width:2.964061px;}
._1f{width:4.151704px;}
._21{width:5.549040px;}
._1e{width:7.139250px;}
._22{width:8.567100px;}
._10{width:9.845107px;}
._b{width:11.464978px;}
._3{width:12.593516px;}
._a{width:14.878141px;}
._d{width:16.211221px;}
._f{width:17.861022px;}
._14{width:18.948865px;}
._c{width:20.359696px;}
._e{width:21.788352px;}
._11{width:23.222818px;}
._1a{width:24.298784px;}
._4{width:25.314894px;}
._18{width:26.570257px;}
._47{width:28.333634px;}
._15{width:29.618807px;}
._57{width:31.370620px;}
._19{width:32.488042px;}
._3e{width:34.191643px;}
._1b{width:38.913916px;}
._12{width:40.109428px;}
._55{width:42.440676px;}
._13{width:43.755739px;}
._58{width:50.176120px;}
._56{width:58.490203px;}
._9{width:69.367309px;}
._2e{width:120.398582px;}
._2f{width:141.127082px;}
._32{width:157.394160px;}
._44{width:169.034573px;}
._45{width:172.639066px;}
._3a{width:175.651776px;}
._3b{width:191.522304px;}
._3c{width:197.224888px;}
._31{width:210.137581px;}
._41{width:221.057626px;}
._46{width:254.036045px;}
._2b{width:276.416179px;}
._35{width:331.069302px;}
._38{width:332.631322px;}
._30{width:337.531622px;}
._42{width:342.157777px;}
._39{width:382.614221px;}
._3f{width:391.491004px;}
._40{width:397.839168px;}
._3d{width:409.484534px;}
._43{width:426.298522px;}
._36{width:441.577267px;}
._52{width:459.707328px;}
._25{width:469.498637px;}
._34{width:486.498931px;}
._49{width:493.500343px;}
._29{width:499.519248px;}
._17{width:507.375107px;}
._2a{width:512.375915px;}
._27{width:518.807318px;}
._4e{width:523.279488px;}
._4d{width:528.192644px;}
._4a{width:533.088346px;}
._37{width:542.503066px;}
._28{width:562.247032px;}
._26{width:566.281958px;}
._51{width:568.511453px;}
._4c{width:578.709389px;}
._50{width:586.050432px;}
._4f{width:675.761702px;}
._53{width:684.907430px;}
._4b{width:691.578432px;}
._23{width:692.923392px;}
._48{width:743.908570px;}
._33{width:778.032461px;}
._2d{width:841.084186px;}
._24{width:915.487373px;}
._54{width:2120.375376px;}
._2c{width:2232.081810px;}
._1d{width:2789.590545px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:33.120000px;}
.fs13{font-size:34.200000px;}
.fs10{font-size:36.000000px;}
.fs0{font-size:41.842800px;}
.fsc{font-size:43.600200px;}
.fsd{font-size:45.429600px;}
.fs11{font-size:45.486000px;}
.fs3{font-size:47.820600px;}
.fs9{font-size:47.880000px;}
.fs14{font-size:51.300000px;}
.fs4{font-size:53.798400px;}
.fsb{font-size:54.000000px;}
.fs5{font-size:56.058000px;}
.fs12{font-size:57.114000px;}
.fs1{font-size:59.775600px;}
.fs6{font-size:59.850000px;}
.fsa{font-size:60.120000px;}
.fse{font-size:62.286600px;}
.fs8{font-size:67.500000px;}
.fs7{font-size:75.150000px;}
.fs2{font-size:107.596800px;}
.y79{bottom:-991.676250px;}
.y9f{bottom:-912.482888px;}
.y9e{bottom:-888.416100px;}
.y9d{bottom:-864.349312px;}
.y9c{bottom:-840.395250px;}
.y170{bottom:-815.230500px;}
.y9b{bottom:-810.804938px;}
.yc0{bottom:-800.820000px;}
.y9a{bottom:-764.230725px;}
.y195{bottom:-759.690870px;}
.yf3{bottom:-753.490500px;}
.y194{bottom:-740.527620px;}
.y99{bottom:-740.163938px;}
.y143{bottom:-727.111500px;}
.y193{bottom:-721.274190px;}
.y98{bottom:-716.097150px;}
.y192{bottom:-702.020760px;}
.y97{bottom:-692.143088px;}
.y116{bottom:-687.693930px;}
.y191{bottom:-682.857510px;}
.y115{bottom:-668.440500px;}
.y96{bottom:-668.076300px;}
.y190{bottom:-663.604080px;}
.y18f{bottom:-644.440830px;}
.y95{bottom:-644.122238px;}
.y113{bottom:-629.470500px;}
.y18e{bottom:-625.187400px;}
.y94{bottom:-620.055450px;}
.y114{bottom:-619.300500px;}
.y112{bottom:-609.220500px;}
.y18d{bottom:-605.933970px;}
.y93{bottom:-595.988663px;}
.y110{bottom:-588.970500px;}
.y18c{bottom:-586.770720px;}
.y111{bottom:-578.890500px;}
.y92{bottom:-572.034600px;}
.y10f{bottom:-568.720500px;}
.y18b{bottom:-567.517290px;}
.y18a{bottom:-548.263860px;}
.y91{bottom:-547.967813px;}
.y10e{bottom:-547.750500px;}
.y1cc{bottom:-531.325500px;}
.y189{bottom:-529.100610px;}
.y90{bottom:-524.013750px;}
.y10d{bottom:-517.690500px;}
.y188{bottom:-509.847180px;}
.y187{bottom:-490.683930px;}
.y10c{bottom:-481.936110px;}
.y8f{bottom:-475.188750px;}
.y1f5{bottom:-473.314434px;}
.y186{bottom:-471.430500px;}
.y15a{bottom:-463.377660px;}
.y10b{bottom:-462.772860px;}
.y8d{bottom:-462.588750px;}
.y1f4{bottom:-455.109346px;}
.y8e{bottom:-449.876250px;}
.y159{bottom:-444.214410px;}
.y10a{bottom:-443.519430px;}
.y1f3{bottom:-436.818588px;}
.y185{bottom:-432.460500px;}
.y158{bottom:-424.960980px;}
.y8c{bottom:-424.676250px;}
.y109{bottom:-424.356180px;}
.y1f2{bottom:-418.527829px;}
.yda{bottom:-415.503360px;}
.y184{bottom:-412.210500px;}
.y8a{bottom:-411.963750px;}
.y157{bottom:-405.707550px;}
.y108{bottom:-405.102750px;}
.y1f1{bottom:-400.322742px;}
.y8b{bottom:-399.363750px;}
.yd9{bottom:-396.249930px;}
.y183{bottom:-391.960500px;}
.y156{bottom:-386.544300px;}
.y1f0{bottom:-382.031983px;}
.y107{bottom:-381.430500px;}
.yd8{bottom:-377.086680px;}
.y88{bottom:-374.051250px;}
.y182{bottom:-371.710500px;}
.y155{bottom:-367.290870px;}
.y1ef{bottom:-363.826896px;}
.y89{bottom:-361.338750px;}
.yd7{bottom:-357.833250px;}
.y181{bottom:-351.460500px;}
.y87{bottom:-348.738750px;}
.y154{bottom:-348.127620px;}
.y1ee{bottom:-345.536137px;}
.y105{bottom:-342.370500px;}
.yd6{bottom:-338.670000px;}
.y106{bottom:-332.290500px;}
.y180{bottom:-331.210500px;}
.y153{bottom:-328.874190px;}
.y86{bottom:-323.426250px;}
.y1ed{bottom:-323.047500px;}
.y104{bottom:-322.120500px;}
.y84{bottom:-310.826250px;}
.y17e{bottom:-310.240500px;}
.y152{bottom:-309.620760px;}
.y17f{bottom:-306.460500px;}
.y102{bottom:-301.870500px;}
.yd4{bottom:-299.610000px;}
.y85{bottom:-298.113750px;}
.y103{bottom:-291.790500px;}
.y151{bottom:-290.457510px;}
.yd5{bottom:-289.530000px;}
.y1eb{bottom:-285.940500px;}
.y1ec{bottom:-282.349500px;}
.y101{bottom:-281.620500px;}
.y17d{bottom:-280.266000px;}
.yd3{bottom:-279.360000px;}
.y83{bottom:-271.901250px;}
.y150{bottom:-271.204080px;}
.y1ea{bottom:-266.703000px;}
.y17c{bottom:-262.810500px;}
.yff{bottom:-261.460500px;}
.yd2{bottom:-259.200000px;}
.y14f{bottom:-252.040830px;}
.y100{bottom:-251.290500px;}
.ycf{bottom:-249.025410px;}
.y1e8{bottom:-247.465500px;}
.y1e9{bottom:-243.874500px;}
.yfe{bottom:-241.210500px;}
.yd1{bottom:-238.950000px;}
.y82{bottom:-234.326250px;}
.y14e{bottom:-232.787400px;}
.yce{bottom:-228.780000px;}
.y1e6{bottom:-228.313500px;}
.y17b{bottom:-227.126220px;}
.y1e7{bottom:-224.722500px;}
.yfd{bottom:-220.240500px;}
.yd0{bottom:-218.700000px;}
.y14d{bottom:-213.533970px;}
.y1e5{bottom:-209.076000px;}
.y17a{bottom:-207.962970px;}
.ycd{bottom:-197.730000px;}
.y14c{bottom:-194.370720px;}
.yfc{bottom:-190.180500px;}
.y81{bottom:-189.622237px;}
.y1e3{bottom:-189.069000px;}
.y179{bottom:-188.709540px;}
.y1e4{bottom:-185.478000px;}
.y1e1{bottom:-179.493000px;}
.y14b{bottom:-175.117290px;}
.y1e2{bottom:-169.917000px;}
.y178{bottom:-169.456110px;}
.ycc{bottom:-167.670000px;}
.y80{bottom:-165.668175px;}
.y14a{bottom:-155.954040px;}
.yfb{bottom:-154.417290px;}
.y177{bottom:-150.292860px;}
.y7f{bottom:-141.601387px;}
.y1e0{bottom:-141.360000px;}
.y149{bottom:-136.700610px;}
.yfa{bottom:-135.163860px;}
.ycb{bottom:-131.913360px;}
.y176{bottom:-131.039430px;}
.y7e{bottom:-117.534600px;}
.y148{bottom:-117.447180px;}
.yf9{bottom:-116.000610px;}
.yca{bottom:-112.659930px;}
.y175{bottom:-111.876180px;}
.y1df{bottom:-107.397604px;}
.y147{bottom:-98.283930px;}
.yf8{bottom:-96.747180px;}
.y7d{bottom:-93.580537px;}
.yc9{bottom:-93.496680px;}
.y174{bottom:-92.622750px;}
.y1de{bottom:-89.106846px;}
.yf7{bottom:-77.493750px;}
.y146{bottom:-74.521500px;}
.yc8{bottom:-74.243250px;}
.y1dd{bottom:-70.901758px;}
.y7c{bottom:-69.513750px;}
.y173{bottom:-68.950500px;}
.yf6{bottom:-58.330500px;}
.yc7{bottom:-55.080000px;}
.y1dc{bottom:-52.611000px;}
.y145{bottom:-37.711500px;}
.y172{bottom:-32.140500px;}
.y7b{bottom:-23.501250px;}
.yf5{bottom:-21.520500px;}
.yc6{bottom:-18.270000px;}
.y1db{bottom:-17.641500px;}
.y144{bottom:-15.215550px;}
.y171{bottom:-9.547350px;}
.y0{bottom:0.000000px;}
.yf4{bottom:0.985440px;}
.y1da{bottom:3.765135px;}
.yc5{bottom:4.246920px;}
.y7a{bottom:4.624875px;}
.y42{bottom:31.890000px;}
.y14{bottom:104.646000px;}
.y41{bottom:110.512500px;}
.y256{bottom:111.930000px;}
.y13f{bottom:112.188000px;}
.y16c{bottom:122.164500px;}
.y117{bottom:122.488500px;}
.y13{bottom:122.535000px;}
.ybc{bottom:124.518000px;}
.y21d{bottom:126.702000px;}
.y255{bottom:129.190500px;}
.y40{bottom:129.342000px;}
.y13e{bottom:131.017500px;}
.y1f6{bottom:138.852000px;}
.y12{bottom:140.422500px;}
.y16b{bottom:140.994000px;}
.y1b6{bottom:141.177000px;}
.ybb{bottom:143.347500px;}
.y21c{bottom:144.277500px;}
.y254{bottom:146.451000px;}
.yf0{bottom:147.906000px;}
.y3f{bottom:148.171500px;}
.y13d{bottom:149.847000px;}
.y75{bottom:155.013000px;}
.y1b5{bottom:157.614000px;}
.y11{bottom:158.310000px;}
.y16a{bottom:159.823500px;}
.y1c9{bottom:161.281500px;}
.y21b{bottom:161.851500px;}
.yba{bottom:162.177000px;}
.y253{bottom:163.711500px;}
.y3e{bottom:167.001000px;}
.y13c{bottom:168.676500px;}
.y74{bottom:173.842500px;}
.y1b4{bottom:174.052500px;}
.y10{bottom:176.199000px;}
.y169{bottom:178.653000px;}
.y21a{bottom:179.425500px;}
.y252{bottom:180.972000px;}
.yb9{bottom:181.006500px;}
.y3d{bottom:185.830500px;}
.y1b3{bottom:190.491000px;}
.y13b{bottom:191.989500px;}
.y73{bottom:192.672000px;}
.yf{bottom:194.086500px;}
.y168{bottom:197.482500px;}
.y251{bottom:198.232500px;}
.yb8{bottom:199.836000px;}
.y3c{bottom:204.660000px;}
.y219{bottom:205.965000px;}
.y1b2{bottom:206.929500px;}
.y72{bottom:211.501500px;}
.ye{bottom:211.974000px;}
.y13a{bottom:212.164500px;}
.y250{bottom:215.491500px;}
.yb7{bottom:218.665500px;}
.y167{bottom:220.795500px;}
.yc4{bottom:220.874310px;}
.y1b1{bottom:223.368000px;}
.y3b{bottom:223.489500px;}
.yd{bottom:229.863000px;}
.y71{bottom:230.331000px;}
.y218{bottom:232.506000px;}
.y24f{bottom:232.752000px;}
.yb6{bottom:237.493500px;}
.yc3{bottom:240.127740px;}
.y3a{bottom:242.319000px;}
.y139{bottom:245.788500px;}
.y1b0{bottom:247.203000px;}
.y70{bottom:249.160500px;}
.y24e{bottom:250.012500px;}
.y217{bottom:250.080000px;}
.y1d9{bottom:253.596050px;}
.y166{bottom:254.419500px;}
.yb5{bottom:256.323000px;}
.yc2{bottom:259.381170px;}
.y39{bottom:261.148500px;}
.y138{bottom:264.618000px;}
.y24d{bottom:267.273000px;}
.y216{bottom:267.654000px;}
.y6f{bottom:267.990000px;}
.y1d8{bottom:271.801137px;}
.y165{bottom:273.249000px;}
.yc1{bottom:278.544420px;}
.y1af{bottom:279.018000px;}
.yb4{bottom:279.636000px;}
.y38{bottom:279.978000px;}
.y137{bottom:283.447500px;}
.y24c{bottom:284.533500px;}
.y215{bottom:285.228000px;}
.y6e{bottom:286.819500px;}
.y1d7{bottom:290.091896px;}
.y164{bottom:292.078500px;}
.y1ad{bottom:298.251000px;}
.y37{bottom:298.807500px;}
.yc{bottom:299.892000px;}
.y24b{bottom:301.794000px;}
.y136{bottom:302.277000px;}
.y214{bottom:302.802000px;}
.y1ae{bottom:303.132000px;}
.y6d{bottom:305.649000px;}
.y1d6{bottom:308.382654px;}
.y163{bottom:310.908000px;}
.yb3{bottom:313.260000px;}
.y36{bottom:317.637000px;}
.yb{bottom:317.779500px;}
.y16f{bottom:318.853650px;}
.y24a{bottom:319.054500px;}
.y213{bottom:320.377500px;}
.y135{bottom:321.106500px;}
.y6c{bottom:324.478500px;}
.y1d5{bottom:326.587742px;}
.y16e{bottom:328.489500px;}
.y162{bottom:329.737500px;}
.yb2{bottom:332.089500px;}
.ybf{bottom:333.264150px;}
.y1ac{bottom:335.355000px;}
.ya{bottom:335.667000px;}
.y249{bottom:336.315000px;}
.y35{bottom:336.466500px;}
.y134{bottom:339.936000px;}
.ybe{bottom:342.900000px;}
.y6b{bottom:343.308000px;}
.y1d4{bottom:344.903209px;}
.y212{bottom:346.917000px;}
.y161{bottom:348.567000px;}
.yb1{bottom:350.919000px;}
.y9{bottom:353.554500px;}
.y248{bottom:353.574000px;}
.y1ab{bottom:354.184500px;}
.y34{bottom:355.296000px;}
.y133{bottom:358.764000px;}
.y1d3{bottom:363.193968px;}
.y211{bottom:364.491000px;}
.y6a{bottom:366.621000px;}
.y160{bottom:367.396500px;}
.yb0{bottom:369.748500px;}
.y247{bottom:370.834500px;}
.y1aa{bottom:373.014000px;}
.y33{bottom:374.125500px;}
.yf2{bottom:380.593650px;}
.y1d2{bottom:381.399055px;}
.y8{bottom:381.904500px;}
.y210{bottom:382.065000px;}
.y132{bottom:382.077000px;}
.y15f{bottom:386.224500px;}
.y246{bottom:388.095000px;}
.yaf{bottom:388.578000px;}
.yf1{bottom:390.229500px;}
.y1a9{bottom:391.843500px;}
.y32{bottom:392.955000px;}
.y20f{bottom:399.639000px;}
.y69{bottom:400.245000px;}
.y1d1{bottom:403.887693px;}
.y15e{bottom:405.054000px;}
.y245{bottom:405.355500px;}
.y142{bottom:406.972650px;}
.yae{bottom:407.407500px;}
.y7{bottom:408.759000px;}
.y1a8{bottom:410.673000px;}
.y31{bottom:411.784500px;}
.y131{bottom:415.701000px;}
.y141{bottom:416.608500px;}
.y20e{bottom:417.214500px;}
.y1c8{bottom:418.249500px;}
.y68{bottom:419.074500px;}
.y244{bottom:422.616000px;}
.y15d{bottom:423.883500px;}
.y78{bottom:425.928937px;}
.yad{bottom:426.237000px;}
.y6{bottom:426.646500px;}
.y1a7{bottom:429.502500px;}
.y30{bottom:430.614000px;}
.y130{bottom:434.530500px;}
.y20d{bottom:434.788500px;}
.y1c7{bottom:435.000000px;}
.y67{bottom:437.904000px;}
.y77{bottom:437.973750px;}
.y1d0{bottom:439.284094px;}
.y243{bottom:439.876500px;}
.y15c{bottom:442.713000px;}
.y5{bottom:444.534000px;}
.yac{bottom:445.066500px;}
.y1a6{bottom:448.332000px;}
.y2f{bottom:449.443500px;}
.y1c6{bottom:451.750500px;}
.y12f{bottom:453.360000px;}
.y66{bottom:456.733500px;}
.y242{bottom:457.137000px;}
.y1cf{bottom:457.574853px;}
.y20c{bottom:461.328000px;}
.y4{bottom:462.423000px;}
.yab{bottom:463.896000px;}
.y1a5{bottom:467.161500px;}
.y2e{bottom:468.273000px;}
.y1c5{bottom:468.814500px;}
.y12e{bottom:472.189500px;}
.y241{bottom:474.397500px;}
.y65{bottom:475.563000px;}
.y1ce{bottom:475.865612px;}
.y15b{bottom:476.280000px;}
.y20b{bottom:479.373000px;}
.y3{bottom:480.310500px;}
.yaa{bottom:482.725500px;}
.y1c4{bottom:485.565000px;}
.y1a4{bottom:490.473000px;}
.y12d{bottom:491.019000px;}
.y2d{bottom:491.584500px;}
.y277{bottom:491.628000px;}
.y240{bottom:491.658000px;}
.y1cd{bottom:494.070699px;}
.y20a{bottom:497.418000px;}
.y2{bottom:498.198000px;}
.y64{bottom:498.874500px;}
.ya9{bottom:501.555000px;}
.y140{bottom:501.697500px;}
.yef{bottom:503.494500px;}
.y276{bottom:508.887000px;}
.y23f{bottom:508.917000px;}
.y1c3{bottom:509.205000px;}
.y12c{bottom:509.848500px;}
.y1{bottom:516.087000px;}
.y63{bottom:519.049500px;}
.yee{bottom:522.324000px;}
.y1a3{bottom:524.097000px;}
.y1c2{bottom:525.643500px;}
.y275{bottom:526.147500px;}
.y23e{bottom:526.177500px;}
.y12b{bottom:533.161500px;}
.y209{bottom:533.395500px;}
.yed{bottom:541.153500px;}
.y1a2{bottom:542.926500px;}
.y23d{bottom:543.438000px;}
.y1cb{bottom:546.054443px;}
.ya8{bottom:550.005000px;}
.y208{bottom:552.225000px;}
.y62{bottom:552.673500px;}
.y1ca{bottom:555.208500px;}
.y1c1{bottom:557.263500px;}
.yec{bottom:559.983000px;}
.y23c{bottom:560.698500px;}
.y1a1{bottom:561.756000px;}
.y274{bottom:565.227000px;}
.ya7{bottom:566.443500px;}
.y2c{bottom:566.734500px;}
.y12a{bottom:566.785500px;}
.y207{bottom:571.054500px;}
.y61{bottom:571.503000px;}
.ya6{bottom:574.663500px;}
.y23b{bottom:577.959000px;}
.yeb{bottom:578.812500px;}
.y1a0{bottom:580.585500px;}
.y273{bottom:582.487500px;}
.y129{bottom:585.615000px;}
.y2b{bottom:586.192500px;}
.y1c0{bottom:589.884000px;}
.y60{bottom:590.332500px;}
.y23a{bottom:595.219500px;}
.ya5{bottom:599.320500px;}
.y19f{bottom:599.415000px;}
.y272{bottom:599.746500px;}
.y128{bottom:604.444500px;}
.ya4{bottom:607.539000px;}
.y1bf{bottom:608.713500px;}
.y5f{bottom:609.162000px;}
.y239{bottom:612.480000px;}
.y271{bottom:617.007000px;}
.y19e{bottom:618.244500px;}
.yea{bottom:621.790500px;}
.y127{bottom:623.274000px;}
.y2a{bottom:623.581500px;}
.y1be{bottom:627.543000px;}
.y5e{bottom:627.991500px;}
.y238{bottom:629.740500px;}
.ye9{bottom:630.232500px;}
.ya3{bottom:632.197500px;}
.y270{bottom:634.267500px;}
.y19d{bottom:637.074000px;}
.y29{bottom:643.039500px;}
.y1bd{bottom:646.372500px;}
.y5d{bottom:646.821000px;}
.y237{bottom:646.999500px;}
.y26f{bottom:651.528000px;}
.ya2{bottom:655.837500px;}
.y19c{bottom:655.903500px;}
.ye7{bottom:659.653500px;}
.y28{bottom:662.496000px;}
.y236{bottom:664.260000px;}
.y1bc{bottom:665.202000px;}
.y5c{bottom:665.650500px;}
.y126{bottom:667.240500px;}
.y26e{bottom:668.788500px;}
.y19b{bottom:674.733000px;}
.ye6{bottom:676.092000px;}
.y235{bottom:681.520500px;}
.y26{bottom:681.952500px;}
.y125{bottom:683.679000px;}
.y1ba{bottom:684.031500px;}
.y5b{bottom:684.480000px;}
.y26d{bottom:686.049000px;}
.y27{bottom:686.835000px;}
.y1bb{bottom:689.455500px;}
.ya1{bottom:690.447000px;}
.ye3{bottom:691.260000px;}
.ye8{bottom:692.007000px;}
.ye5{bottom:692.530500px;}
.y19a{bottom:693.562500px;}
.y234{bottom:698.781000px;}
.y25{bottom:701.410500px;}
.y1b9{bottom:702.861000px;}
.y5a{bottom:703.309500px;}
.y124{bottom:707.320500px;}
.ye4{bottom:708.969000px;}
.y199{bottom:712.392000px;}
.y233{bottom:716.041500px;}
.y26c{bottom:720.570000px;}
.y24{bottom:720.867000px;}
.y1b8{bottom:721.690500px;}
.y59{bottom:722.139000px;}
.ya0{bottom:729.106500px;}
.y198{bottom:731.221500px;}
.y232{bottom:733.302000px;}
.ye2{bottom:735.598500px;}
.y26b{bottom:737.829000px;}
.y23{bottom:740.325000px;}
.y206{bottom:740.520000px;}
.y58{bottom:740.968500px;}
.y123{bottom:741.928500px;}
.y1b7{bottom:745.003500px;}
.y197{bottom:750.051000px;}
.y231{bottom:750.562500px;}
.y76{bottom:751.536000px;}
.y26a{bottom:755.089500px;}
.y205{bottom:759.349500px;}
.y22{bottom:759.781500px;}
.y57{bottom:759.798000px;}
.ye1{bottom:767.217000px;}
.y230{bottom:767.823000px;}
.y269{bottom:772.350000px;}
.y122{bottom:774.549000px;}
.y204{bottom:778.179000px;}
.y56{bottom:778.627500px;}
.y21{bottom:779.238000px;}
.y196{bottom:783.616500px;}
.y22f{bottom:785.083500px;}
.y268{bottom:789.610500px;}
.y121{bottom:793.378500px;}
.y203{bottom:797.008500px;}
.y55{bottom:797.457000px;}
.y20{bottom:798.696000px;}
.ye0{bottom:800.428500px;}
.y22e{bottom:802.342500px;}
.y267{bottom:806.871000px;}
.y16d{bottom:809.034000px;}
.y120{bottom:812.208000px;}
.y202{bottom:815.838000px;}
.y54{bottom:816.286500px;}
.y1f{bottom:818.152500px;}
.ydf{bottom:819.258000px;}
.y22d{bottom:819.603000px;}
.y266{bottom:824.131500px;}
.y11f{bottom:831.037500px;}
.y201{bottom:834.667500px;}
.y53{bottom:835.114500px;}
.y22c{bottom:836.863500px;}
.y1e{bottom:837.609000px;}
.yde{bottom:838.087500px;}
.y265{bottom:841.392000px;}
.y11e{bottom:849.867000px;}
.y200{bottom:853.497000px;}
.y52{bottom:853.944000px;}
.y22b{bottom:854.124000px;}
.ydd{bottom:856.917000px;}
.y1d{bottom:857.067000px;}
.y264{bottom:858.652500px;}
.y22a{bottom:871.384500px;}
.y1ff{bottom:872.326500px;}
.y51{bottom:872.773500px;}
.y11d{bottom:873.180000px;}
.ydc{bottom:875.746500px;}
.y263{bottom:875.913000px;}
.y1c{bottom:876.523500px;}
.y229{bottom:888.645000px;}
.y1fe{bottom:891.156000px;}
.y50{bottom:891.603000px;}
.y262{bottom:893.172000px;}
.y1b{bottom:895.981500px;}
.ydb{bottom:904.828500px;}
.y228{bottom:905.905500px;}
.y1fd{bottom:909.984000px;}
.y4f{bottom:910.432500px;}
.y11c{bottom:918.492000px;}
.y227{bottom:923.166000px;}
.y261{bottom:927.693000px;}
.y1fc{bottom:928.813500px;}
.y4e{bottom:929.262000px;}
.ybd{bottom:930.247500px;}
.y1a{bottom:934.566000px;}
.y11b{bottom:934.930500px;}
.y226{bottom:940.425000px;}
.y260{bottom:944.953500px;}
.y1fb{bottom:947.643000px;}
.y4d{bottom:948.091500px;}
.y19{bottom:950.706000px;}
.y11a{bottom:951.369000px;}
.y225{bottom:957.685500px;}
.y25f{bottom:962.214000px;}
.y1fa{bottom:966.472500px;}
.y4c{bottom:966.921000px;}
.y224{bottom:974.946000px;}
.y119{bottom:975.010500px;}
.y25e{bottom:979.474500px;}
.y1f9{bottom:985.302000px;}
.y4b{bottom:985.750500px;}
.y223{bottom:992.206500px;}
.y25d{bottom:996.735000px;}
.y18{bottom:999.721500px;}
.y1f8{bottom:1004.131500px;}
.y4a{bottom:1004.580000px;}
.y222{bottom:1009.467000px;}
.y118{bottom:1009.618500px;}
.y25c{bottom:1013.995500px;}
.y49{bottom:1023.409500px;}
.y1f7{bottom:1027.444500px;}
.y221{bottom:1031.211000px;}
.y25b{bottom:1031.254500px;}
.y17{bottom:1036.485000px;}
.y48{bottom:1042.239000px;}
.y25a{bottom:1048.515000px;}
.y47{bottom:1061.068500px;}
.y16{bottom:1064.728500px;}
.y220{bottom:1064.835000px;}
.y259{bottom:1065.775500px;}
.y46{bottom:1079.898000px;}
.y21f{bottom:1082.409000px;}
.y258{bottom:1083.036000px;}
.y15{bottom:1092.972000px;}
.y45{bottom:1098.727500px;}
.y21e{bottom:1099.983000px;}
.y257{bottom:1100.296500px;}
.y44{bottom:1117.557000px;}
.y43{bottom:1177.662000px;}
.h2f{height:-593.470500px;}
.h2e{height:-552.970500px;}
.h2d{height:-532.000500px;}
.h16{height:-430.301250px;}
.h3b{height:-416.710500px;}
.h3a{height:-396.460500px;}
.h15{height:-379.676250px;}
.h39{height:-376.210500px;}
.h38{height:-355.960500px;}
.h37{height:-335.710500px;}
.h14{height:-329.051250px;}
.h36{height:-315.550500px;}
.h2b{height:-306.370500px;}
.h34{height:-294.490500px;}
.h13{height:-278.426250px;}
.h4e{height:-270.978000px;}
.h2a{height:-265.960500px;}
.h22{height:-263.700000px;}
.h11{height:-252.213750px;}
.h4d{height:-251.740500px;}
.h4c{height:-232.588500px;}
.h29{height:-225.460500px;}
.h4a{height:-213.351000px;}
.h28{height:-204.490500px;}
.h21{height:-202.950000px;}
.h49{height:-194.113500px;}
.h1f{height:-181.980000px;}
.h47{height:-154.954500px;}
.h8{height:25.070054px;}
.h48{height:25.182422px;}
.h35{height:26.507812px;}
.hc{height:27.855430px;}
.h4b{height:30.542871px;}
.h2{height:36.319550px;}
.h9{height:37.334628px;}
.h18{height:38.734848px;}
.h3d{height:39.432893px;}
.h23{height:40.070215px;}
.h42{height:40.622019px;}
.h44{height:41.106463px;}
.h31{height:41.482876px;}
.h6{height:41.508281px;}
.h46{height:42.054645px;}
.h1c{height:42.760020px;}
.h5{height:43.038432px;}
.h2c{height:43.269961px;}
.h3{height:43.815515px;}
.h20{height:44.268047px;}
.h45{height:45.814307px;}
.h7{height:46.697011px;}
.h1e{height:48.225586px;}
.h24{height:48.567733px;}
.h3c{height:48.876816px;}
.h3e{height:49.656816px;}
.h43{height:51.006595px;}
.hb{height:51.885221px;}
.he{height:53.450024px;}
.h1d{height:53.691152px;}
.h17{height:54.087451px;}
.h3f{height:54.595550px;}
.h40{height:54.601550px;}
.h12{height:55.335059px;}
.ha{height:55.849550px;}
.h10{height:60.281982px;}
.h30{height:61.128893px;}
.hf{height:67.113940px;}
.h4{height:77.469696px;}
.h1a{height:79.571011px;}
.h19{height:79.577011px;}
.h26{height:80.465011px;}
.h25{height:80.547733px;}
.h1b{height:202.254000px;}
.h41{height:233.013150px;}
.h33{height:270.535500px;}
.h27{height:333.397500px;}
.h32{height:351.919500px;}
.hd{height:380.966250px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w9{width:20.716500px;}
.w14{width:26.452500px;}
.wf{width:79.102500px;}
.wb{width:80.548500px;}
.w10{width:85.230000px;}
.w13{width:95.760000px;}
.w1c{width:97.318950px;}
.w7{width:112.770000px;}
.w19{width:112.879500px;}
.we{width:116.100000px;}
.wd{width:116.460000px;}
.w18{width:146.160000px;}
.w11{width:150.570000px;}
.wc{width:155.790000px;}
.w3{width:159.187500px;}
.w4{width:168.975000px;}
.w1b{width:178.696425px;}
.w12{width:189.991500px;}
.w1d{width:202.462575px;}
.w5{width:208.803750px;}
.w17{width:296.818500px;}
.w8{width:408.780000px;}
.w2{width:541.631250px;}
.w1a{width:580.666980px;}
.w6{width:689.727450px;}
.wa{width:707.768400px;}
.w16{width:733.586250px;}
.w15{width:745.934250px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x28{left:-239.797500px;}
.xc9{left:-83.602470px;}
.x48{left:-48.109050px;}
.x64{left:-35.804100px;}
.x95{left:-17.843250px;}
.x8a{left:-11.669250px;}
.x0{left:0.000000px;}
.x34{left:2.925000px;}
.x2a{left:4.665000px;}
.x50{left:10.530000px;}
.x6f{left:11.610000px;}
.x6c{left:14.040000px;}
.x70{left:15.390000px;}
.x36{left:17.662500px;}
.x55{left:20.700000px;}
.x57{left:23.310000px;}
.x73{left:26.370000px;}
.x31{left:28.515000px;}
.xcd{left:30.951000px;}
.x32{left:32.400000px;}
.x3a{left:36.000000px;}
.x2e{left:38.587500px;}
.x4c{left:40.050000px;}
.x75{left:41.130000px;}
.x39{left:42.187500px;}
.x2b{left:44.490000px;}
.x53{left:47.880000px;}
.x2{left:52.230000px;}
.x1{left:53.574000px;}
.xa0{left:56.160000px;}
.xa1{left:60.030000px;}
.x2d{left:62.325000px;}
.x6a{left:63.720000px;}
.x9c{left:65.520000px;}
.x7b{left:66.546000px;}
.x9a{left:70.110000px;}
.x82{left:72.156000px;}
.x89{left:73.277250px;}
.xce{left:76.095000px;}
.x94{left:79.451250px;}
.x9e{left:80.730000px;}
.x7c{left:83.250000px;}
.x9f{left:85.230000px;}
.x7d{left:87.453000px;}
.x3e{left:88.453500px;}
.xa2{left:91.080000px;}
.x63{left:92.360100px;}
.xa5{left:94.590000px;}
.xd0{left:97.812000px;}
.x47{left:101.381550px;}
.xa3{left:103.770000px;}
.xa4{left:105.840000px;}
.x38{left:108.675000px;}
.x98{left:113.850000px;}
.x3d{left:117.502500px;}
.x56{left:119.340000px;}
.x40{left:120.945000px;}
.xca{left:132.488349px;}
.x80{left:133.699500px;}
.x42{left:136.492500px;}
.x7a{left:139.099500px;}
.x37{left:141.187500px;}
.x3c{left:145.066500px;}
.x49{left:147.461310px;}
.x51{left:157.180950px;}
.x66{left:159.765900px;}
.x3b{left:165.262500px;}
.x30{left:166.725000px;}
.x4e{left:169.830000px;}
.x52{left:171.850230px;}
.x96{left:177.726750px;}
.x4b{left:179.320950px;}
.x8c{left:183.900750px;}
.x67{left:191.625900px;}
.xcc{left:203.421030px;}
.x35{left:209.415000px;}
.x8d{left:215.764350px;}
.x4{left:248.526000px;}
.x3{left:249.591000px;}
.x68{left:252.126000px;}
.x2c{left:254.256000px;}
.x97{left:257.178000px;}
.x79{left:259.395900px;}
.x78{left:260.745900px;}
.x5e{left:266.596500px;}
.x81{left:268.141500px;}
.x62{left:270.799500px;}
.xc8{left:277.981500px;}
.xc7{left:279.750000px;}
.xe{left:281.479500px;}
.x45{left:284.863500px;}
.x71{left:290.985900px;}
.xb1{left:296.407500px;}
.x54{left:297.670950px;}
.xb2{left:299.649000px;}
.x86{left:307.213500px;}
.x18{left:309.744000px;}
.xb9{left:313.119000px;}
.x17{left:315.021000px;}
.xb0{left:316.803000px;}
.x15{left:318.283500px;}
.x5d{left:322.444500px;}
.x19{left:324.687000px;}
.x16{left:325.755000px;}
.x1a{left:328.438500px;}
.x69{left:332.676000px;}
.x74{left:337.356000px;}
.x1b{left:343.381500px;}
.xba{left:346.690500px;}
.x9{left:348.097500px;}
.xd1{left:351.779175px;}
.x83{left:355.717500px;}
.x1c{left:358.674000px;}
.x4d{left:361.612500px;}
.xa{left:364.278000px;}
.x1d{left:373.618500px;}
.xb{left:377.997000px;}
.x1e{left:381.105000px;}
.x22{left:387.607500px;}
.x84{left:389.152500px;}
.x7{left:390.489000px;}
.xc{left:394.323000px;}
.x1f{left:396.048000px;}
.x20{left:397.789500px;}
.xd{left:400.474500px;}
.xc1{left:401.704500px;}
.x8{left:404.910000px;}
.xc2{left:408.129000px;}
.x59{left:409.506000px;}
.x21{left:412.734000px;}
.xd2{left:415.119030px;}
.x33{left:417.202500px;}
.x5a{left:424.449000px;}
.x5b{left:428.260500px;}
.x23{left:431.112000px;}
.x5f{left:433.566000px;}
.x72{left:436.605900px;}
.x24{left:440.341500px;}
.x5c{left:443.203500px;}
.x8e{left:446.793000px;}
.x8f{left:454.264500px;}
.x90{left:457.926000px;}
.x60{left:464.127000px;}
.xd6{left:466.549500px;}
.x91{left:472.870500px;}
.x92{left:476.532000px;}
.xd7{left:483.465000px;}
.x6b{left:488.466000px;}
.x93{left:491.475000px;}
.xc5{left:496.627500px;}
.x87{left:498.229500px;}
.xc0{left:502.750500px;}
.xf{left:510.381000px;}
.x88{left:513.174000px;}
.xbe{left:516.231000px;}
.x10{left:517.852500px;}
.x5{left:520.785000px;}
.x6{left:529.092000px;}
.xbf{left:531.175500px;}
.x29{left:533.871750px;}
.x58{left:537.912000px;}
.x99{left:553.998000px;}
.xcb{left:574.721367px;}
.xcf{left:576.970530px;}
.x2f{left:582.418500px;}
.xd3{left:593.814030px;}
.x41{left:595.944000px;}
.xa6{left:599.313000px;}
.x6d{left:604.926000px;}
.xa7{left:614.256000px;}
.xa8{left:617.917500px;}
.x3f{left:619.567500px;}
.x85{left:628.497000px;}
.xa9{left:632.862000px;}
.xaa{left:636.523500px;}
.xd4{left:645.375000px;}
.xc3{left:649.867500px;}
.xab{left:651.466500px;}
.xac{left:658.789500px;}
.xd5{left:663.468000px;}
.xad{left:673.734000px;}
.x76{left:677.916000px;}
.xae{left:683.203500px;}
.x4a{left:685.309860px;}
.xaf{left:689.181000px;}
.x43{left:691.066500px;}
.x9d{left:696.936750px;}
.x9b{left:700.158000px;}
.x44{left:706.009500px;}
.x65{left:715.245000px;}
.xb3{left:718.494000px;}
.x6e{left:721.026000px;}
.xc6{left:727.246500px;}
.xb4{left:733.438500px;}
.xb5{left:737.100000px;}
.x25{left:741.720000px;}
.xb6{left:752.043000px;}
.x7e{left:753.969000px;}
.x26{left:756.664500px;}
.xbb{left:767.457000px;}
.x7f{left:768.912000px;}
.x4f{left:770.392500px;}
.x8b{left:772.325610px;}
.x77{left:773.676000px;}
.xb7{left:782.766000px;}
.xbc{left:786.084000px;}
.xc4{left:787.252500px;}
.x61{left:788.889000px;}
.xb8{left:797.710500px;}
.xbd{left:801.028500px;}
.x11{left:813.886500px;}
.x46{left:817.698000px;}
.x12{left:821.359500px;}
.x27{left:823.510500px;}
.x13{left:825.169500px;}
.x14{left:832.642500px;}
@media print{
.v7{vertical-align:-19.285333pt;}
.va{vertical-align:-12.768000pt;}
.v2{vertical-align:-10.629333pt;}
.v8{vertical-align:-1.114667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:13.440000pt;}
.v9{vertical-align:16.250667pt;}
.v1{vertical-align:17.360000pt;}
.v5{vertical-align:19.285333pt;}
.v3{vertical-align:29.226667pt;}
.v4{vertical-align:45.786667pt;}
.ls21{letter-spacing:-0.734800pt;}
.ls22{letter-spacing:-0.534400pt;}
.ls46{letter-spacing:-0.480960pt;}
.ls20{letter-spacing:-0.467600pt;}
.ls48{letter-spacing:-0.427520pt;}
.ls7f{letter-spacing:-0.406144pt;}
.ls1f{letter-spacing:-0.400800pt;}
.ls44{letter-spacing:-0.374080pt;}
.ls16{letter-spacing:-0.360000pt;}
.ls79{letter-spacing:-0.355376pt;}
.ls18{letter-spacing:-0.334000pt;}
.ls43{letter-spacing:-0.320640pt;}
.ls7b{letter-spacing:-0.304608pt;}
.ls47{letter-spacing:-0.288000pt;}
.ls1b{letter-spacing:-0.267200pt;}
.ls7d{letter-spacing:-0.253840pt;}
.ls49{letter-spacing:-0.213760pt;}
.ls78{letter-spacing:-0.203072pt;}
.ls1a{letter-spacing:-0.200400pt;}
.ls65{letter-spacing:-0.192000pt;}
.ls40{letter-spacing:-0.160320pt;}
.ls7c{letter-spacing:-0.152304pt;}
.ls17{letter-spacing:-0.133600pt;}
.ls14{letter-spacing:-0.120000pt;}
.ls45{letter-spacing:-0.106880pt;}
.ls13{letter-spacing:-0.106400pt;}
.ls7a{letter-spacing:-0.101536pt;}
.ls4a{letter-spacing:-0.096000pt;}
.ls3e{letter-spacing:-0.085120pt;}
.ls76{letter-spacing:-0.080864pt;}
.ls19{letter-spacing:-0.066800pt;}
.ls3f{letter-spacing:-0.053440pt;}
.ls77{letter-spacing:-0.050768pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4e{letter-spacing:0.000387pt;}
.ls1{letter-spacing:0.000533pt;}
.ls4d{letter-spacing:0.000540pt;}
.ls4c{letter-spacing:0.000978pt;}
.ls84{letter-spacing:0.001026pt;}
.ls5d{letter-spacing:0.002240pt;}
.ls11{letter-spacing:0.002425pt;}
.ls4b{letter-spacing:0.004116pt;}
.ls7e{letter-spacing:0.045600pt;}
.ls5c{letter-spacing:0.047360pt;}
.ls42{letter-spacing:0.048000pt;}
.ls80{letter-spacing:0.050768pt;}
.ls2a{letter-spacing:0.053440pt;}
.ls28{letter-spacing:0.057600pt;}
.ls1e{letter-spacing:0.060000pt;}
.ls1c{letter-spacing:0.066800pt;}
.ls71{letter-spacing:0.076000pt;}
.ls6e{letter-spacing:0.076152pt;}
.ls41{letter-spacing:0.096000pt;}
.ls6b{letter-spacing:0.101536pt;}
.ls27{letter-spacing:0.106880pt;}
.ls26{letter-spacing:0.112224pt;}
.ls6f{letter-spacing:0.116766pt;}
.ls15{letter-spacing:0.120000pt;}
.ls1d{letter-spacing:0.133600pt;}
.ls24{letter-spacing:0.144000pt;}
.ls70{letter-spacing:0.152304pt;}
.ls3a{letter-spacing:0.160320pt;}
.ls75{letter-spacing:0.161728pt;}
.ls3d{letter-spacing:0.170240pt;}
.ls8{letter-spacing:0.180000pt;}
.lse{letter-spacing:0.200400pt;}
.ls12{letter-spacing:0.212800pt;}
.ls25{letter-spacing:0.374080pt;}
.ls64{letter-spacing:0.570745pt;}
.ls23{letter-spacing:0.601200pt;}
.ls2c{letter-spacing:0.694720pt;}
.ls72{letter-spacing:0.964592pt;}
.ls57{letter-spacing:0.983296pt;}
.ls58{letter-spacing:1.015360pt;}
.ls37{letter-spacing:1.058112pt;}
.ls9{letter-spacing:1.269200pt;}
.ls60{letter-spacing:1.421504pt;}
.ls66{letter-spacing:1.489067pt;}
.ls5f{letter-spacing:1.656640pt;}
.lsf{letter-spacing:1.670000pt;}
.lsa{letter-spacing:1.730120pt;}
.ls10{letter-spacing:1.796920pt;}
.ls61{letter-spacing:1.977280pt;}
.ls62{letter-spacing:2.415488pt;}
.ls54{letter-spacing:2.618560pt;}
.ls67{letter-spacing:2.656533pt;}
.ls4f{letter-spacing:2.657067pt;}
.ls2f{letter-spacing:3.118133pt;}
.ls30{letter-spacing:3.123467pt;}
.ls5a{letter-spacing:3.409472pt;}
.ls31{letter-spacing:3.901120pt;}
.ls63{letter-spacing:4.221760pt;}
.ls3c{letter-spacing:4.280544pt;}
.lsd{letter-spacing:4.876400pt;}
.ls6d{letter-spacing:5.229104pt;}
.ls5b{letter-spacing:5.616000pt;}
.ls5e{letter-spacing:6.145600pt;}
.ls55{letter-spacing:7.107520pt;}
.lsc{letter-spacing:7.281200pt;}
.ls36{letter-spacing:7.748800pt;}
.ls6c{letter-spacing:8.275184pt;}
.ls56{letter-spacing:9.031360pt;}
.ls0{letter-spacing:9.298933pt;}
.ls73{letter-spacing:9.798224pt;}
.ls74{letter-spacing:9.833762pt;}
.ls5{letter-spacing:10.626533pt;}
.ls85{letter-spacing:11.467929pt;}
.ls82{letter-spacing:11.954133pt;}
.ls83{letter-spacing:11.959467pt;}
.ls69{letter-spacing:12.528078pt;}
.ls3{letter-spacing:12.533411pt;}
.ls53{letter-spacing:13.283733pt;}
.ls51{letter-spacing:13.917762pt;}
.ls50{letter-spacing:13.923096pt;}
.ls4{letter-spacing:14.613867pt;}
.ls59{letter-spacing:16.406080pt;}
.ls2d{letter-spacing:19.765798pt;}
.ls2{letter-spacing:25.292137pt;}
.ls2e{letter-spacing:83.746667pt;}
.ls29{letter-spacing:96.503680pt;}
.ls2b{letter-spacing:96.512640pt;}
.ls3b{letter-spacing:98.008960pt;}
.ls39{letter-spacing:141.509120pt;}
.lsb{letter-spacing:178.088800pt;}
.ls38{letter-spacing:209.057280pt;}
.ls34{letter-spacing:301.829120pt;}
.ls32{letter-spacing:302.149760pt;}
.ls33{letter-spacing:313.692800pt;}
.ls35{letter-spacing:340.573120pt;}
.ls68{letter-spacing:539.013867pt;}
.ls6a{letter-spacing:562.928533pt;}
.ls7{letter-spacing:2358.234400pt;}
.ls52{letter-spacing:2359.301067pt;}
.ls81{letter-spacing:2360.362400pt;}
.wsfd{word-spacing:-53.600320pt;}
.ws5a{word-spacing:-17.301200pt;}
.ws58{word-spacing:-16.766800pt;}
.ws56{word-spacing:-16.700000pt;}
.ws53{word-spacing:-16.633200pt;}
.ws52{word-spacing:-16.566400pt;}
.ws57{word-spacing:-16.499600pt;}
.ws54{word-spacing:-16.432800pt;}
.ws55{word-spacing:-16.299200pt;}
.ws59{word-spacing:-16.165600pt;}
.ws50{word-spacing:-15.120000pt;}
.ws4f{word-spacing:-14.880000pt;}
.ws51{word-spacing:-14.640000pt;}
.ws9f{word-spacing:-13.520320pt;}
.ws91{word-spacing:-13.466880pt;}
.ws9b{word-spacing:-13.413440pt;}
.ws8e{word-spacing:-13.360000pt;}
.ws90{word-spacing:-13.306560pt;}
.ws4e{word-spacing:-13.300000pt;}
.ws12c{word-spacing:-13.283467pt;}
.ws8f{word-spacing:-13.253120pt;}
.ws8c{word-spacing:-13.199680pt;}
.ws99{word-spacing:-13.146240pt;}
.wsd8{word-spacing:-13.092800pt;}
.ws9c{word-spacing:-13.039360pt;}
.ws98{word-spacing:-12.985920pt;}
.ws9d{word-spacing:-12.932480pt;}
.ws9a{word-spacing:-12.879040pt;}
.ws134{word-spacing:-12.844304pt;}
.ws135{word-spacing:-12.793536pt;}
.ws138{word-spacing:-12.692000pt;}
.ws139{word-spacing:-12.641232pt;}
.ws137{word-spacing:-12.539696pt;}
.ws133{word-spacing:-12.488928pt;}
.ws13a{word-spacing:-12.387392pt;}
.ws13c{word-spacing:-12.336624pt;}
.ws13d{word-spacing:-12.285856pt;}
.ws8d{word-spacing:-12.096000pt;}
.ws92{word-spacing:-12.048000pt;}
.ws1a{word-spacing:-11.955200pt;}
.ws9e{word-spacing:-11.904000pt;}
.wsfb{word-spacing:-11.808000pt;}
.ws93{word-spacing:-11.712000pt;}
.ws13b{word-spacing:-11.445600pt;}
.ws8b{word-spacing:-10.640000pt;}
.ws32{word-spacing:-10.626800pt;}
.ws132{word-spacing:-10.108000pt;}
.ws4{word-spacing:-9.298400pt;}
.ws136{word-spacing:-7.600000pt;}
.wsfc{word-spacing:-7.360000pt;}
.ws78{word-spacing:-3.273200pt;}
.ws77{word-spacing:-3.206400pt;}
.ws7d{word-spacing:-3.072800pt;}
.ws76{word-spacing:-3.006000pt;}
.ws126{word-spacing:-2.885760pt;}
.ws7c{word-spacing:-2.872400pt;}
.wsbb{word-spacing:-2.725440pt;}
.ws7e{word-spacing:-2.672000pt;}
.wsb8{word-spacing:-2.458240pt;}
.wsba{word-spacing:-2.404800pt;}
.wsb9{word-spacing:-2.351360pt;}
.wsf1{word-spacing:-2.297920pt;}
.ws17c{word-spacing:-2.247578pt;}
.ws11f{word-spacing:-2.244480pt;}
.ws12f{word-spacing:-2.231622pt;}
.ws11e{word-spacing:-2.137600pt;}
.ws12a{word-spacing:-2.125355pt;}
.wse4{word-spacing:-2.084160pt;}
.wsd5{word-spacing:-2.072221pt;}
.ws147{word-spacing:-1.979952pt;}
.ws102{word-spacing:-1.912819pt;}
.ws101{word-spacing:-1.859685pt;}
.ws167{word-spacing:-1.827648pt;}
.wsd{word-spacing:-1.817190pt;}
.ws12b{word-spacing:-1.753418pt;}
.ws166{word-spacing:-1.726112pt;}
.ws12d{word-spacing:-1.700284pt;}
.ws168{word-spacing:-1.675344pt;}
.wsdc{word-spacing:-1.594016pt;}
.ws127{word-spacing:-1.487748pt;}
.ws1d{word-spacing:-1.482445pt;}
.wsef{word-spacing:-1.442880pt;}
.wsff{word-spacing:-1.381481pt;}
.wsf5{word-spacing:-1.336000pt;}
.wsf2{word-spacing:-1.229120pt;}
.ws142{word-spacing:-1.218432pt;}
.wsf4{word-spacing:-1.175680pt;}
.wsd4{word-spacing:-1.168945pt;}
.ws2{word-spacing:-1.153002pt;}
.wsf3{word-spacing:-1.122240pt;}
.ws22{word-spacing:-1.115811pt;}
.ws6{word-spacing:-1.115808pt;}
.wsf0{word-spacing:-1.015360pt;}
.ws62{word-spacing:-1.002000pt;}
.ws14b{word-spacing:-0.964592pt;}
.ws16f{word-spacing:-0.956410pt;}
.ws157{word-spacing:-0.913824pt;}
.wsa8{word-spacing:-0.855040pt;}
.wsc9{word-spacing:-0.850142pt;}
.ws164{word-spacing:-0.812288pt;}
.ws10d{word-spacing:-0.801600pt;}
.wsd0{word-spacing:-0.797008pt;}
.ws143{word-spacing:-0.761520pt;}
.ws43{word-spacing:-0.743874pt;}
.ws61{word-spacing:-0.734800pt;}
.wsc4{word-spacing:-0.694720pt;}
.ws1a1{word-spacing:-0.669491pt;}
.ws149{word-spacing:-0.659984pt;}
.wsca{word-spacing:-0.637606pt;}
.ws156{word-spacing:-0.609216pt;}
.wsbe{word-spacing:-0.534400pt;}
.ws140{word-spacing:-0.507680pt;}
.ws1a3{word-spacing:-0.478208pt;}
.ws85{word-spacing:-0.467600pt;}
.wsdd{word-spacing:-0.425071pt;}
.wsb3{word-spacing:-0.374080pt;}
.wsd9{word-spacing:-0.371937pt;}
.ws160{word-spacing:-0.355376pt;}
.ws71{word-spacing:-0.334000pt;}
.wsb0{word-spacing:-0.320640pt;}
.ws5c{word-spacing:-0.318803pt;}
.ws18f{word-spacing:-0.286925pt;}
.ws75{word-spacing:-0.267200pt;}
.ws40{word-spacing:-0.265669pt;}
.ws14a{word-spacing:-0.253840pt;}
.ws12{word-spacing:-0.239104pt;}
.wsb4{word-spacing:-0.213760pt;}
.ws5e{word-spacing:-0.212800pt;}
.ws4c{word-spacing:-0.212535pt;}
.ws141{word-spacing:-0.203072pt;}
.ws83{word-spacing:-0.200400pt;}
.ws191{word-spacing:-0.191283pt;}
.ws60{word-spacing:-0.180000pt;}
.wsa0{word-spacing:-0.170240pt;}
.ws13e{word-spacing:-0.161728pt;}
.wsa5{word-spacing:-0.160320pt;}
.ws2d{word-spacing:-0.159402pt;}
.ws13f{word-spacing:-0.152304pt;}
.wse0{word-spacing:-0.144000pt;}
.ws17a{word-spacing:-0.143462pt;}
.ws6b{word-spacing:-0.133600pt;}
.wsb2{word-spacing:-0.106880pt;}
.ws3e{word-spacing:-0.106268pt;}
.ws15e{word-spacing:-0.101536pt;}
.ws17{word-spacing:-0.095642pt;}
.ws66{word-spacing:-0.066800pt;}
.wsb1{word-spacing:-0.053440pt;}
.ws39{word-spacing:-0.053134pt;}
.ws15a{word-spacing:-0.050768pt;}
.ws108{word-spacing:-0.048000pt;}
.ws13{word-spacing:-0.047821pt;}
.ws33{word-spacing:-0.042507pt;}
.ws1{word-spacing:0.000000pt;}
.ws14{word-spacing:0.047821pt;}
.ws107{word-spacing:0.048000pt;}
.ws145{word-spacing:0.050768pt;}
.ws2e{word-spacing:0.053134pt;}
.wsa1{word-spacing:0.053440pt;}
.ws67{word-spacing:0.066800pt;}
.ws15c{word-spacing:0.091200pt;}
.ws1b{word-spacing:0.095642pt;}
.wsa7{word-spacing:0.096000pt;}
.ws158{word-spacing:0.101536pt;}
.ws34{word-spacing:0.106268pt;}
.wsae{word-spacing:0.106880pt;}
.ws70{word-spacing:0.120000pt;}
.ws6f{word-spacing:0.133600pt;}
.ws15b{word-spacing:0.136800pt;}
.ws179{word-spacing:0.143462pt;}
.wsa6{word-spacing:0.144000pt;}
.ws159{word-spacing:0.152304pt;}
.ws38{word-spacing:0.159402pt;}
.wsa3{word-spacing:0.160320pt;}
.ws5f{word-spacing:0.180000pt;}
.ws16{word-spacing:0.191283pt;}
.ws74{word-spacing:0.200400pt;}
.ws146{word-spacing:0.203072pt;}
.ws47{word-spacing:0.212535pt;}
.wsfa{word-spacing:0.213760pt;}
.ws177{word-spacing:0.239104pt;}
.wsc3{word-spacing:0.240000pt;}
.ws3c{word-spacing:0.265669pt;}
.ws65{word-spacing:0.267200pt;}
.ws18d{word-spacing:0.286925pt;}
.ws148{word-spacing:0.304608pt;}
.ws100{word-spacing:0.318803pt;}
.wsc0{word-spacing:0.320640pt;}
.ws73{word-spacing:0.334000pt;}
.ws144{word-spacing:0.355376pt;}
.ws12e{word-spacing:0.371937pt;}
.wsee{word-spacing:0.374080pt;}
.wsd7{word-spacing:0.425071pt;}
.wsa2{word-spacing:0.427520pt;}
.ws10{word-spacing:0.430387pt;}
.ws72{word-spacing:0.467600pt;}
.ws96{word-spacing:0.478205pt;}
.ws178{word-spacing:0.478208pt;}
.wsaf{word-spacing:0.480960pt;}
.ws86{word-spacing:0.534400pt;}
.ws19a{word-spacing:0.573850pt;}
.ws4b{word-spacing:0.584473pt;}
.wse9{word-spacing:0.587840pt;}
.ws19{word-spacing:0.594133pt;}
.ws130{word-spacing:0.599467pt;}
.wsd2{word-spacing:0.661867pt;}
.ws63{word-spacing:0.668000pt;}
.ws1a7{word-spacing:0.669491pt;}
.ws95{word-spacing:0.690740pt;}
.ws19f{word-spacing:0.717312pt;}
.ws64{word-spacing:0.734800pt;}
.wsad{word-spacing:0.748160pt;}
.ws45{word-spacing:0.797008pt;}
.ws109{word-spacing:0.801600pt;}
.ws17e{word-spacing:0.812954pt;}
.wsdb{word-spacing:0.850142pt;}
.wsce{word-spacing:0.956410pt;}
.wsd3{word-spacing:1.009543pt;}
.ws17f{word-spacing:1.052058pt;}
.ws37{word-spacing:1.062677pt;}
.ws165{word-spacing:1.066128pt;}
.wsb5{word-spacing:1.068800pt;}
.wsb6{word-spacing:1.122240pt;}
.ws44{word-spacing:1.168945pt;}
.ws10c{word-spacing:1.175680pt;}
.ws26{word-spacing:1.222079pt;}
.wsc{word-spacing:1.227389pt;}
.wsbf{word-spacing:1.229120pt;}
.ws3d{word-spacing:1.275213pt;}
.wsc2{word-spacing:1.282560pt;}
.ws129{word-spacing:1.328347pt;}
.ws6e{word-spacing:1.336000pt;}
.ws17d{word-spacing:1.338982pt;}
.ws19d{word-spacing:1.386803pt;}
.wsa9{word-spacing:1.389440pt;}
.ws10b{word-spacing:1.442880pt;}
.ws84{word-spacing:1.469600pt;}
.ws14c{word-spacing:1.472272pt;}
.ws3f{word-spacing:1.487748pt;}
.wsa4{word-spacing:1.549760pt;}
.ws36{word-spacing:1.594016pt;}
.wsab{word-spacing:1.656640pt;}
.ws6c{word-spacing:1.670000pt;}
.ws23{word-spacing:1.700284pt;}
.ws195{word-spacing:1.769370pt;}
.ws163{word-spacing:1.776880pt;}
.ws6d{word-spacing:1.803600pt;}
.ws115{word-spacing:1.816960pt;}
.ws170{word-spacing:1.859685pt;}
.wsc1{word-spacing:1.870400pt;}
.ws1c{word-spacing:1.878634pt;}
.ws41{word-spacing:1.912819pt;}
.ws17b{word-spacing:1.913148pt;}
.ws14d{word-spacing:1.929184pt;}
.ws88{word-spacing:1.937200pt;}
.wsaa{word-spacing:1.977280pt;}
.ws48{word-spacing:2.019087pt;}
.wsac{word-spacing:2.030720pt;}
.ws87{word-spacing:2.070800pt;}
.wsda{word-spacing:2.072221pt;}
.ws117{word-spacing:2.084160pt;}
.ws20{word-spacing:2.125355pt;}
.ws199{word-spacing:2.151936pt;}
.ws2f{word-spacing:2.178489pt;}
.ws162{word-spacing:2.183024pt;}
.ws116{word-spacing:2.191040pt;}
.ws15{word-spacing:2.199757pt;}
.ws27{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws3a{word-spacing:2.284756pt;}
.ws120{word-spacing:2.297920pt;}
.wse3{word-spacing:2.351360pt;}
.ws121{word-spacing:2.458240pt;}
.ws197{word-spacing:2.486682pt;}
.wse{word-spacing:2.550432pt;}
.wse2{word-spacing:2.618560pt;}
.ws2a{word-spacing:2.656693pt;}
.wse1{word-spacing:2.672000pt;}
.wsd6{word-spacing:2.762961pt;}
.ws174{word-spacing:2.816095pt;}
.ws118{word-spacing:2.832320pt;}
.ws18a{word-spacing:2.865860pt;}
.ws2b{word-spacing:2.869229pt;}
.ws103{word-spacing:2.869248pt;}
.ws185{word-spacing:2.964890pt;}
.ws119{word-spacing:2.992640pt;}
.ws7f{word-spacing:3.072800pt;}
.ws10a{word-spacing:3.099520pt;}
.ws1aa{word-spacing:3.108352pt;}
.ws2c{word-spacing:3.134898pt;}
.ws190{word-spacing:3.156173pt;}
.ws1e{word-spacing:3.188032pt;}
.wsdf{word-spacing:3.241166pt;}
.wsb7{word-spacing:3.259840pt;}
.ws69{word-spacing:3.273200pt;}
.ws181{word-spacing:3.299635pt;}
.wsea{word-spacing:3.313280pt;}
.ws4d{word-spacing:3.400567pt;}
.ws15d{word-spacing:3.401456pt;}
.ws6a{word-spacing:3.473600pt;}
.ws128{word-spacing:3.613103pt;}
.ws24{word-spacing:3.666237pt;}
.ws183{word-spacing:3.825664pt;}
.wsf{word-spacing:3.899118pt;}
.wsbc{word-spacing:3.901120pt;}
.ws29{word-spacing:3.985040pt;}
.ws42{word-spacing:4.038174pt;}
.wsbd{word-spacing:4.061440pt;}
.wsc5{word-spacing:4.168320pt;}
.ws192{word-spacing:4.256051pt;}
.ws125{word-spacing:4.275200pt;}
.wsc6{word-spacing:4.382080pt;}
.wsc7{word-spacing:4.435520pt;}
.wscd{word-spacing:4.463245pt;}
.ws11{word-spacing:4.495155pt;}
.wscc{word-spacing:4.516379pt;}
.ws16d{word-spacing:4.518352pt;}
.wsc8{word-spacing:4.542400pt;}
.ws1a5{word-spacing:4.542976pt;}
.ws171{word-spacing:4.569513pt;}
.ws16e{word-spacing:4.670656pt;}
.ws5d{word-spacing:4.728914pt;}
.ws124{word-spacing:4.756160pt;}
.wsa{word-spacing:4.872362pt;}
.ws80{word-spacing:4.876400pt;}
.ws30{word-spacing:4.888316pt;}
.ws122{word-spacing:4.916480pt;}
.ws154{word-spacing:4.975264pt;}
.ws94{word-spacing:4.994583pt;}
.ws10f{word-spacing:5.023360pt;}
.ws173{word-spacing:5.047717pt;}
.ws153{word-spacing:5.127568pt;}
.ws7a{word-spacing:5.143600pt;}
.ws16c{word-spacing:5.229104pt;}
.ws123{word-spacing:5.237120pt;}
.ws79{word-spacing:5.277200pt;}
.ws155{word-spacing:5.279872pt;}
.ws1f{word-spacing:5.313387pt;}
.ws16b{word-spacing:5.432176pt;}
.ws81{word-spacing:5.477600pt;}
.ws152{word-spacing:5.533712pt;}
.ws111{word-spacing:5.568000pt;}
.ws25{word-spacing:5.579056pt;}
.ws110{word-spacing:5.616000pt;}
.ws3b{word-spacing:5.632190pt;}
.ws15f{word-spacing:5.686016pt;}
.ws82{word-spacing:5.878400pt;}
.ws18{word-spacing:5.881958pt;}
.ws49{word-spacing:5.897859pt;}
.ws114{word-spacing:5.985280pt;}
.ws112{word-spacing:6.145600pt;}
.ws113{word-spacing:6.199040pt;}
.ws21{word-spacing:6.216662pt;}
.ws35{word-spacing:6.482332pt;}
.ws176{word-spacing:6.551450pt;}
.wse6{word-spacing:6.626560pt;}
.wsfe{word-spacing:6.748001pt;}
.ws68{word-spacing:6.880400pt;}
.ws172{word-spacing:6.960537pt;}
.wse5{word-spacing:7.160960pt;}
.ws28{word-spacing:7.332474pt;}
.wse7{word-spacing:7.374720pt;}
.wse8{word-spacing:7.481600pt;}
.wsde{word-spacing:7.491875pt;}
.ws7b{word-spacing:7.748800pt;}
.ws150{word-spacing:8.021344pt;}
.ws151{word-spacing:8.173648pt;}
.ws14e{word-spacing:8.325952pt;}
.ws14f{word-spacing:8.376720pt;}
.wsec{word-spacing:8.550400pt;}
.wsed{word-spacing:8.603840pt;}
.ws8{word-spacing:8.740496pt;}
.ws8a{word-spacing:8.750800pt;}
.wseb{word-spacing:9.084800pt;}
.ws3{word-spacing:9.259363pt;}
.ws89{word-spacing:9.352000pt;}
.ws180{word-spacing:9.602185pt;}
.ws169{word-spacing:9.747456pt;}
.ws161{word-spacing:9.798224pt;}
.ws16a{word-spacing:9.848992pt;}
.ws187{word-spacing:9.946726pt;}
.ws9{word-spacing:10.525789pt;}
.ws31{word-spacing:10.583166pt;}
.wsd1{word-spacing:11.636317pt;}
.ws1a4{word-spacing:11.899110pt;}
.ws193{word-spacing:11.899964pt;}
.ws18e{word-spacing:11.900416pt;}
.ws19c{word-spacing:11.900757pt;}
.ws182{word-spacing:11.901636pt;}
.ws194{word-spacing:11.902140pt;}
.ws1a6{word-spacing:11.903113pt;}
.ws198{word-spacing:11.904836pt;}
.ws1a8{word-spacing:11.905749pt;}
.ws18b{word-spacing:11.907379pt;}
.ws1a0{word-spacing:12.624691pt;}
.ws46{word-spacing:13.230333pt;}
.ws19b{word-spacing:13.246362pt;}
.ws5{word-spacing:13.761632pt;}
.ws189{word-spacing:13.820211pt;}
.ws1a2{word-spacing:14.728806pt;}
.ws186{word-spacing:14.768759pt;}
.ws19e{word-spacing:14.770313pt;}
.ws196{word-spacing:14.771755pt;}
.ws18c{word-spacing:14.771874pt;}
.ws184{word-spacing:14.776627pt;}
.wsf7{word-spacing:16.406080pt;}
.ws4a{word-spacing:16.418365pt;}
.wsf6{word-spacing:16.459520pt;}
.wsf9{word-spacing:16.673280pt;}
.wsf8{word-spacing:16.726720pt;}
.ws1a9{word-spacing:18.315366pt;}
.ws175{word-spacing:18.506650pt;}
.ws7{word-spacing:19.857270pt;}
.wsb{word-spacing:20.196125pt;}
.ws10e{word-spacing:20.948480pt;}
.ws11a{word-spacing:21.429440pt;}
.ws11c{word-spacing:21.536320pt;}
.ws11d{word-spacing:21.589760pt;}
.ws11b{word-spacing:21.750080pt;}
.ws188{word-spacing:21.901926pt;}
.wscb{word-spacing:179.471462pt;}
.wscf{word-spacing:310.596096pt;}
.ws5b{word-spacing:420.344832pt;}
.ws131{word-spacing:489.822667pt;}
.ws106{word-spacing:490.008047pt;}
.ws97{word-spacing:540.279398pt;}
.ws104{word-spacing:566.963405pt;}
.ws105{word-spacing:582.839910pt;}
._59{margin-left:-20.320316pt;}
._5{margin-left:-12.789469pt;}
._7{margin-left:-10.616218pt;}
._6{margin-left:-7.077478pt;}
._8{margin-left:-5.897859pt;}
._2{margin-left:-4.351651pt;}
._0{margin-left:-2.752326pt;}
._16{margin-left:-1.833121pt;}
._1{margin-left:-0.929840pt;}
._1c{width:0.909720pt;}
._20{width:2.634721pt;}
._1f{width:3.690403pt;}
._21{width:4.932480pt;}
._1e{width:6.346000pt;}
._22{width:7.615200pt;}
._10{width:8.751206pt;}
._b{width:10.191091pt;}
._3{width:11.194237pt;}
._a{width:13.225014pt;}
._d{width:14.409974pt;}
._f{width:15.876464pt;}
._14{width:16.843436pt;}
._c{width:18.097507pt;}
._e{width:19.367424pt;}
._11{width:20.642505pt;}
._1a{width:21.598919pt;}
._4{width:22.502128pt;}
._18{width:23.618006pt;}
._47{width:25.185453pt;}
._15{width:26.327828pt;}
._57{width:27.884995pt;}
._19{width:28.878259pt;}
._3e{width:30.392572pt;}
._1b{width:34.590147pt;}
._12{width:35.652825pt;}
._55{width:37.725045pt;}
._13{width:38.893990pt;}
._58{width:44.600995pt;}
._56{width:51.991292pt;}
._9{width:61.659830pt;}
._2e{width:107.020962pt;}
._2f{width:125.446295pt;}
._32{width:139.905920pt;}
._44{width:150.252954pt;}
._45{width:153.456947pt;}
._3a{width:156.134912pt;}
._3b{width:170.242048pt;}
._3c{width:175.311011pt;}
._31{width:186.788961pt;}
._41{width:196.495667pt;}
._46{width:225.809818pt;}
._2b{width:245.703270pt;}
._35{width:294.283824pt;}
._38{width:295.672286pt;}
._30{width:300.028109pt;}
._42{width:304.140246pt;}
._39{width:340.101530pt;}
._3f{width:347.992003pt;}
._40{width:353.634816pt;}
._3d{width:363.986253pt;}
._43{width:378.932019pt;}
._36{width:392.513126pt;}
._52{width:408.628736pt;}
._25{width:417.332122pt;}
._34{width:432.443494pt;}
._49{width:438.666972pt;}
._29{width:444.017109pt;}
._17{width:451.000095pt;}
._2a{width:455.445258pt;}
._27{width:461.162061pt;}
._4e{width:465.137323pt;}
._4d{width:469.504573pt;}
._4a{width:473.856307pt;}
._37{width:482.224947pt;}
._28{width:499.775139pt;}
._26{width:503.361741pt;}
._51{width:505.343514pt;}
._4c{width:514.408346pt;}
._50{width:520.933717pt;}
._4f{width:600.677069pt;}
._53{width:608.806605pt;}
._4b{width:614.736384pt;}
._23{width:615.931904pt;}
._48{width:661.252062pt;}
._33{width:691.584410pt;}
._2d{width:747.630387pt;}
._24{width:813.766554pt;}
._54{width:1884.778112pt;}
._2c{width:1984.072720pt;}
._1d{width:2479.636040pt;}
.fsf{font-size:29.440000pt;}
.fs13{font-size:30.400000pt;}
.fs10{font-size:32.000000pt;}
.fs0{font-size:37.193600pt;}
.fsc{font-size:38.755733pt;}
.fsd{font-size:40.381867pt;}
.fs11{font-size:40.432000pt;}
.fs3{font-size:42.507200pt;}
.fs9{font-size:42.560000pt;}
.fs14{font-size:45.600000pt;}
.fs4{font-size:47.820800pt;}
.fsb{font-size:48.000000pt;}
.fs5{font-size:49.829333pt;}
.fs12{font-size:50.768000pt;}
.fs1{font-size:53.133867pt;}
.fs6{font-size:53.200000pt;}
.fsa{font-size:53.440000pt;}
.fse{font-size:55.365867pt;}
.fs8{font-size:60.000000pt;}
.fs7{font-size:66.800000pt;}
.fs2{font-size:95.641600pt;}
.y79{bottom:-881.490000pt;}
.y9f{bottom:-811.095900pt;}
.y9e{bottom:-789.703200pt;}
.y9d{bottom:-768.310500pt;}
.y9c{bottom:-747.018000pt;}
.y170{bottom:-724.649333pt;}
.y9b{bottom:-720.715500pt;}
.yc0{bottom:-711.840000pt;}
.y9a{bottom:-679.316200pt;}
.y195{bottom:-675.280773pt;}
.yf3{bottom:-669.769333pt;}
.y194{bottom:-658.246773pt;}
.y99{bottom:-657.923500pt;}
.y143{bottom:-646.321333pt;}
.y193{bottom:-641.132613pt;}
.y98{bottom:-636.530800pt;}
.y192{bottom:-624.018453pt;}
.y97{bottom:-615.238300pt;}
.y116{bottom:-611.283493pt;}
.y191{bottom:-606.984453pt;}
.y115{bottom:-594.169333pt;}
.y96{bottom:-593.845600pt;}
.y190{bottom:-589.870293pt;}
.y18f{bottom:-572.836293pt;}
.y95{bottom:-572.553100pt;}
.y113{bottom:-559.529333pt;}
.y18e{bottom:-555.722133pt;}
.y94{bottom:-551.160400pt;}
.y114{bottom:-550.489333pt;}
.y112{bottom:-541.529333pt;}
.y18d{bottom:-538.607973pt;}
.y93{bottom:-529.767700pt;}
.y110{bottom:-523.529333pt;}
.y18c{bottom:-521.573973pt;}
.y111{bottom:-514.569333pt;}
.y92{bottom:-508.475200pt;}
.y10f{bottom:-505.529333pt;}
.y18b{bottom:-504.459813pt;}
.y18a{bottom:-487.345653pt;}
.y91{bottom:-487.082500pt;}
.y10e{bottom:-486.889333pt;}
.y1cc{bottom:-472.289333pt;}
.y189{bottom:-470.311653pt;}
.y90{bottom:-465.790000pt;}
.y10d{bottom:-460.169333pt;}
.y188{bottom:-453.197493pt;}
.y187{bottom:-436.163493pt;}
.y10c{bottom:-428.387653pt;}
.y8f{bottom:-422.390000pt;}
.y1f5{bottom:-420.723941pt;}
.y186{bottom:-419.049333pt;}
.y15a{bottom:-411.891253pt;}
.y10b{bottom:-411.353653pt;}
.y8d{bottom:-411.190000pt;}
.y1f4{bottom:-404.541641pt;}
.y8e{bottom:-399.890000pt;}
.y159{bottom:-394.857253pt;}
.y10a{bottom:-394.239493pt;}
.y1f3{bottom:-388.283189pt;}
.y185{bottom:-384.409333pt;}
.y158{bottom:-377.743093pt;}
.y8c{bottom:-377.490000pt;}
.y109{bottom:-377.205493pt;}
.y1f2{bottom:-372.024737pt;}
.yda{bottom:-369.336320pt;}
.y184{bottom:-366.409333pt;}
.y8a{bottom:-366.190000pt;}
.y157{bottom:-360.628933pt;}
.y108{bottom:-360.091333pt;}
.y1f1{bottom:-355.842437pt;}
.y8b{bottom:-354.990000pt;}
.yd9{bottom:-352.222160pt;}
.y183{bottom:-348.409333pt;}
.y156{bottom:-343.594933pt;}
.y1f0{bottom:-339.583985pt;}
.y107{bottom:-339.049333pt;}
.yd8{bottom:-335.188160pt;}
.y88{bottom:-332.490000pt;}
.y182{bottom:-330.409333pt;}
.y155{bottom:-326.480773pt;}
.y1ef{bottom:-323.401685pt;}
.y89{bottom:-321.190000pt;}
.yd7{bottom:-318.074000pt;}
.y181{bottom:-312.409333pt;}
.y87{bottom:-309.990000pt;}
.y154{bottom:-309.446773pt;}
.y1ee{bottom:-307.143233pt;}
.y105{bottom:-304.329333pt;}
.yd6{bottom:-301.040000pt;}
.y106{bottom:-295.369333pt;}
.y180{bottom:-294.409333pt;}
.y153{bottom:-292.332613pt;}
.y86{bottom:-287.490000pt;}
.y1ed{bottom:-287.153333pt;}
.y104{bottom:-286.329333pt;}
.y84{bottom:-276.290000pt;}
.y17e{bottom:-275.769333pt;}
.y152{bottom:-275.218453pt;}
.y17f{bottom:-272.409333pt;}
.y102{bottom:-268.329333pt;}
.yd4{bottom:-266.320000pt;}
.y85{bottom:-264.990000pt;}
.y103{bottom:-259.369333pt;}
.y151{bottom:-258.184453pt;}
.yd5{bottom:-257.360000pt;}
.y1eb{bottom:-254.169333pt;}
.y1ec{bottom:-250.977333pt;}
.y101{bottom:-250.329333pt;}
.y17d{bottom:-249.125333pt;}
.yd3{bottom:-248.320000pt;}
.y83{bottom:-241.690000pt;}
.y150{bottom:-241.070293pt;}
.y1ea{bottom:-237.069333pt;}
.y17c{bottom:-233.609333pt;}
.yff{bottom:-232.409333pt;}
.yd2{bottom:-230.400000pt;}
.y14f{bottom:-224.036293pt;}
.y100{bottom:-223.369333pt;}
.ycf{bottom:-221.355920pt;}
.y1e8{bottom:-219.969333pt;}
.y1e9{bottom:-216.777333pt;}
.yfe{bottom:-214.409333pt;}
.yd1{bottom:-212.400000pt;}
.y82{bottom:-208.290000pt;}
.y14e{bottom:-206.922133pt;}
.yce{bottom:-203.360000pt;}
.y1e6{bottom:-202.945333pt;}
.y17b{bottom:-201.889973pt;}
.y1e7{bottom:-199.753333pt;}
.yfd{bottom:-195.769333pt;}
.yd0{bottom:-194.400000pt;}
.y14d{bottom:-189.807973pt;}
.y1e5{bottom:-185.845333pt;}
.y17a{bottom:-184.855973pt;}
.ycd{bottom:-175.760000pt;}
.y14c{bottom:-172.773973pt;}
.yfc{bottom:-169.049333pt;}
.y81{bottom:-168.553100pt;}
.y1e3{bottom:-168.061333pt;}
.y179{bottom:-167.741813pt;}
.y1e4{bottom:-164.869333pt;}
.y1e1{bottom:-159.549333pt;}
.y14b{bottom:-155.659813pt;}
.y1e2{bottom:-151.037333pt;}
.y178{bottom:-150.627653pt;}
.ycc{bottom:-149.040000pt;}
.y80{bottom:-147.260600pt;}
.y14a{bottom:-138.625813pt;}
.yfb{bottom:-137.259813pt;}
.y177{bottom:-133.593653pt;}
.y7f{bottom:-125.867900pt;}
.y1e0{bottom:-125.653333pt;}
.y149{bottom:-121.511653pt;}
.yfa{bottom:-120.145653pt;}
.ycb{bottom:-117.256320pt;}
.y176{bottom:-116.479493pt;}
.y7e{bottom:-104.475200pt;}
.y148{bottom:-104.397493pt;}
.yf9{bottom:-103.111653pt;}
.yca{bottom:-100.142160pt;}
.y175{bottom:-99.445493pt;}
.y1df{bottom:-95.464537pt;}
.y147{bottom:-87.363493pt;}
.yf8{bottom:-85.997493pt;}
.y7d{bottom:-83.182700pt;}
.yc9{bottom:-83.108160pt;}
.y174{bottom:-82.331333pt;}
.y1de{bottom:-79.206085pt;}
.yf7{bottom:-68.883333pt;}
.y146{bottom:-66.241333pt;}
.yc8{bottom:-65.994000pt;}
.y1dd{bottom:-63.023785pt;}
.y7c{bottom:-61.790000pt;}
.y173{bottom:-61.289333pt;}
.yf6{bottom:-51.849333pt;}
.yc7{bottom:-48.960000pt;}
.y1dc{bottom:-46.765333pt;}
.y145{bottom:-33.521333pt;}
.y172{bottom:-28.569333pt;}
.y7b{bottom:-20.890000pt;}
.yf5{bottom:-19.129333pt;}
.yc6{bottom:-16.240000pt;}
.y1db{bottom:-15.681333pt;}
.y144{bottom:-13.524933pt;}
.y171{bottom:-8.486533pt;}
.y0{bottom:0.000000pt;}
.yf4{bottom:0.875947pt;}
.y1da{bottom:3.346787pt;}
.yc5{bottom:3.775040pt;}
.y7a{bottom:4.111000pt;}
.y42{bottom:28.346667pt;}
.y14{bottom:93.018667pt;}
.y41{bottom:98.233333pt;}
.y256{bottom:99.493333pt;}
.y13f{bottom:99.722667pt;}
.y16c{bottom:108.590667pt;}
.y117{bottom:108.878667pt;}
.y13{bottom:108.920000pt;}
.ybc{bottom:110.682667pt;}
.y21d{bottom:112.624000pt;}
.y255{bottom:114.836000pt;}
.y40{bottom:114.970667pt;}
.y13e{bottom:116.460000pt;}
.y1f6{bottom:123.424000pt;}
.y12{bottom:124.820000pt;}
.y16b{bottom:125.328000pt;}
.y1b6{bottom:125.490667pt;}
.ybb{bottom:127.420000pt;}
.y21c{bottom:128.246667pt;}
.y254{bottom:130.178667pt;}
.yf0{bottom:131.472000pt;}
.y3f{bottom:131.708000pt;}
.y13d{bottom:133.197333pt;}
.y75{bottom:137.789333pt;}
.y1b5{bottom:140.101333pt;}
.y11{bottom:140.720000pt;}
.y16a{bottom:142.065333pt;}
.y1c9{bottom:143.361333pt;}
.y21b{bottom:143.868000pt;}
.yba{bottom:144.157333pt;}
.y253{bottom:145.521333pt;}
.y3e{bottom:148.445333pt;}
.y13c{bottom:149.934667pt;}
.y74{bottom:154.526667pt;}
.y1b4{bottom:154.713333pt;}
.y10{bottom:156.621333pt;}
.y169{bottom:158.802667pt;}
.y21a{bottom:159.489333pt;}
.y252{bottom:160.864000pt;}
.yb9{bottom:160.894667pt;}
.y3d{bottom:165.182667pt;}
.y1b3{bottom:169.325333pt;}
.y13b{bottom:170.657333pt;}
.y73{bottom:171.264000pt;}
.yf{bottom:172.521333pt;}
.y168{bottom:175.540000pt;}
.y251{bottom:176.206667pt;}
.yb8{bottom:177.632000pt;}
.y3c{bottom:181.920000pt;}
.y219{bottom:183.080000pt;}
.y1b2{bottom:183.937333pt;}
.y72{bottom:188.001333pt;}
.ye{bottom:188.421333pt;}
.y13a{bottom:188.590667pt;}
.y250{bottom:191.548000pt;}
.yb7{bottom:194.369333pt;}
.y167{bottom:196.262667pt;}
.yc4{bottom:196.332720pt;}
.y1b1{bottom:198.549333pt;}
.y3b{bottom:198.657333pt;}
.yd{bottom:204.322667pt;}
.y71{bottom:204.738667pt;}
.y218{bottom:206.672000pt;}
.y24f{bottom:206.890667pt;}
.yb6{bottom:211.105333pt;}
.yc3{bottom:213.446880pt;}
.y3a{bottom:215.394667pt;}
.y139{bottom:218.478667pt;}
.y1b0{bottom:219.736000pt;}
.y70{bottom:221.476000pt;}
.y24e{bottom:222.233333pt;}
.y217{bottom:222.293333pt;}
.y1d9{bottom:225.418711pt;}
.y166{bottom:226.150667pt;}
.yb5{bottom:227.842667pt;}
.yc2{bottom:230.561040pt;}
.y39{bottom:232.132000pt;}
.y138{bottom:235.216000pt;}
.y24d{bottom:237.576000pt;}
.y216{bottom:237.914667pt;}
.y6f{bottom:238.213333pt;}
.y1d8{bottom:241.601011pt;}
.y165{bottom:242.888000pt;}
.yc1{bottom:247.595040pt;}
.y1af{bottom:248.016000pt;}
.yb4{bottom:248.565333pt;}
.y38{bottom:248.869333pt;}
.y137{bottom:251.953333pt;}
.y24c{bottom:252.918667pt;}
.y215{bottom:253.536000pt;}
.y6e{bottom:254.950667pt;}
.y1d7{bottom:257.859463pt;}
.y164{bottom:259.625333pt;}
.y1ad{bottom:265.112000pt;}
.y37{bottom:265.606667pt;}
.yc{bottom:266.570667pt;}
.y24b{bottom:268.261333pt;}
.y136{bottom:268.690667pt;}
.y214{bottom:269.157333pt;}
.y1ae{bottom:269.450667pt;}
.y6d{bottom:271.688000pt;}
.y1d6{bottom:274.117915pt;}
.y163{bottom:276.362667pt;}
.yb3{bottom:278.453333pt;}
.y36{bottom:282.344000pt;}
.yb{bottom:282.470667pt;}
.y16f{bottom:283.425467pt;}
.y24a{bottom:283.604000pt;}
.y213{bottom:284.780000pt;}
.y135{bottom:285.428000pt;}
.y6c{bottom:288.425333pt;}
.y1d5{bottom:290.300215pt;}
.y16e{bottom:291.990667pt;}
.y162{bottom:293.100000pt;}
.yb2{bottom:295.190667pt;}
.ybf{bottom:296.234800pt;}
.y1ac{bottom:298.093333pt;}
.ya{bottom:298.370667pt;}
.y249{bottom:298.946667pt;}
.y35{bottom:299.081333pt;}
.y134{bottom:302.165333pt;}
.ybe{bottom:304.800000pt;}
.y6b{bottom:305.162667pt;}
.y1d4{bottom:306.580631pt;}
.y212{bottom:308.370667pt;}
.y161{bottom:309.837333pt;}
.yb1{bottom:311.928000pt;}
.y9{bottom:314.270667pt;}
.y248{bottom:314.288000pt;}
.y1ab{bottom:314.830667pt;}
.y34{bottom:315.818667pt;}
.y133{bottom:318.901333pt;}
.y1d3{bottom:322.839083pt;}
.y211{bottom:323.992000pt;}
.y6a{bottom:325.885333pt;}
.y160{bottom:326.574667pt;}
.yb0{bottom:328.665333pt;}
.y247{bottom:329.630667pt;}
.y1aa{bottom:331.568000pt;}
.y33{bottom:332.556000pt;}
.yf2{bottom:338.305467pt;}
.y1d2{bottom:339.021383pt;}
.y8{bottom:339.470667pt;}
.y210{bottom:339.613333pt;}
.y132{bottom:339.624000pt;}
.y15f{bottom:343.310667pt;}
.y246{bottom:344.973333pt;}
.yaf{bottom:345.402667pt;}
.yf1{bottom:346.870667pt;}
.y1a9{bottom:348.305333pt;}
.y32{bottom:349.293333pt;}
.y20f{bottom:355.234667pt;}
.y69{bottom:355.773333pt;}
.y1d1{bottom:359.011283pt;}
.y15e{bottom:360.048000pt;}
.y245{bottom:360.316000pt;}
.y142{bottom:361.753467pt;}
.yae{bottom:362.140000pt;}
.y7{bottom:363.341333pt;}
.y1a8{bottom:365.042667pt;}
.y31{bottom:366.030667pt;}
.y131{bottom:369.512000pt;}
.y141{bottom:370.318667pt;}
.y20e{bottom:370.857333pt;}
.y1c8{bottom:371.777333pt;}
.y68{bottom:372.510667pt;}
.y244{bottom:375.658667pt;}
.y15d{bottom:376.785333pt;}
.y78{bottom:378.603500pt;}
.yad{bottom:378.877333pt;}
.y6{bottom:379.241333pt;}
.y1a7{bottom:381.780000pt;}
.y30{bottom:382.768000pt;}
.y130{bottom:386.249333pt;}
.y20d{bottom:386.478667pt;}
.y1c7{bottom:386.666667pt;}
.y67{bottom:389.248000pt;}
.y77{bottom:389.310000pt;}
.y1d0{bottom:390.474751pt;}
.y243{bottom:391.001333pt;}
.y15c{bottom:393.522667pt;}
.y5{bottom:395.141333pt;}
.yac{bottom:395.614667pt;}
.y1a6{bottom:398.517333pt;}
.y2f{bottom:399.505333pt;}
.y1c6{bottom:401.556000pt;}
.y12f{bottom:402.986667pt;}
.y66{bottom:405.985333pt;}
.y242{bottom:406.344000pt;}
.y1cf{bottom:406.733203pt;}
.y20c{bottom:410.069333pt;}
.y4{bottom:411.042667pt;}
.yab{bottom:412.352000pt;}
.y1a5{bottom:415.254667pt;}
.y2e{bottom:416.242667pt;}
.y1c5{bottom:416.724000pt;}
.y12e{bottom:419.724000pt;}
.y241{bottom:421.686667pt;}
.y65{bottom:422.722667pt;}
.y1ce{bottom:422.991655pt;}
.y15b{bottom:423.360000pt;}
.y20b{bottom:426.109333pt;}
.y3{bottom:426.942667pt;}
.yaa{bottom:429.089333pt;}
.y1c4{bottom:431.613333pt;}
.y1a4{bottom:435.976000pt;}
.y12d{bottom:436.461333pt;}
.y2d{bottom:436.964000pt;}
.y277{bottom:437.002667pt;}
.y240{bottom:437.029333pt;}
.y1cd{bottom:439.173955pt;}
.y20a{bottom:442.149333pt;}
.y2{bottom:442.842667pt;}
.y64{bottom:443.444000pt;}
.ya9{bottom:445.826667pt;}
.y140{bottom:445.953333pt;}
.yef{bottom:447.550667pt;}
.y276{bottom:452.344000pt;}
.y23f{bottom:452.370667pt;}
.y1c3{bottom:452.626667pt;}
.y12c{bottom:453.198667pt;}
.y1{bottom:458.744000pt;}
.y63{bottom:461.377333pt;}
.yee{bottom:464.288000pt;}
.y1a3{bottom:465.864000pt;}
.y1c2{bottom:467.238667pt;}
.y275{bottom:467.686667pt;}
.y23e{bottom:467.713333pt;}
.y12b{bottom:473.921333pt;}
.y209{bottom:474.129333pt;}
.yed{bottom:481.025333pt;}
.y1a2{bottom:482.601333pt;}
.y23d{bottom:483.056000pt;}
.y1cb{bottom:485.381727pt;}
.ya8{bottom:488.893333pt;}
.y208{bottom:490.866667pt;}
.y62{bottom:491.265333pt;}
.y1ca{bottom:493.518667pt;}
.y1c1{bottom:495.345333pt;}
.yec{bottom:497.762667pt;}
.y23c{bottom:498.398667pt;}
.y1a1{bottom:499.338667pt;}
.y274{bottom:502.424000pt;}
.ya7{bottom:503.505333pt;}
.y2c{bottom:503.764000pt;}
.y12a{bottom:503.809333pt;}
.y207{bottom:507.604000pt;}
.y61{bottom:508.002667pt;}
.ya6{bottom:510.812000pt;}
.y23b{bottom:513.741333pt;}
.yeb{bottom:514.500000pt;}
.y1a0{bottom:516.076000pt;}
.y273{bottom:517.766667pt;}
.y129{bottom:520.546667pt;}
.y2b{bottom:521.060000pt;}
.y1c0{bottom:524.341333pt;}
.y60{bottom:524.740000pt;}
.y23a{bottom:529.084000pt;}
.ya5{bottom:532.729333pt;}
.y19f{bottom:532.813333pt;}
.y272{bottom:533.108000pt;}
.y128{bottom:537.284000pt;}
.ya4{bottom:540.034667pt;}
.y1bf{bottom:541.078667pt;}
.y5f{bottom:541.477333pt;}
.y239{bottom:544.426667pt;}
.y271{bottom:548.450667pt;}
.y19e{bottom:549.550667pt;}
.yea{bottom:552.702667pt;}
.y127{bottom:554.021333pt;}
.y2a{bottom:554.294667pt;}
.y1be{bottom:557.816000pt;}
.y5e{bottom:558.214667pt;}
.y238{bottom:559.769333pt;}
.ye9{bottom:560.206667pt;}
.ya3{bottom:561.953333pt;}
.y270{bottom:563.793333pt;}
.y19d{bottom:566.288000pt;}
.y29{bottom:571.590667pt;}
.y1bd{bottom:574.553333pt;}
.y5d{bottom:574.952000pt;}
.y237{bottom:575.110667pt;}
.y26f{bottom:579.136000pt;}
.ya2{bottom:582.966667pt;}
.y19c{bottom:583.025333pt;}
.ye7{bottom:586.358667pt;}
.y28{bottom:588.885333pt;}
.y236{bottom:590.453333pt;}
.y1bc{bottom:591.290667pt;}
.y5c{bottom:591.689333pt;}
.y126{bottom:593.102667pt;}
.y26e{bottom:594.478667pt;}
.y19b{bottom:599.762667pt;}
.ye6{bottom:600.970667pt;}
.y235{bottom:605.796000pt;}
.y26{bottom:606.180000pt;}
.y125{bottom:607.714667pt;}
.y1ba{bottom:608.028000pt;}
.y5b{bottom:608.426667pt;}
.y26d{bottom:609.821333pt;}
.y27{bottom:610.520000pt;}
.y1bb{bottom:612.849333pt;}
.ya1{bottom:613.730667pt;}
.ye3{bottom:614.453333pt;}
.ye8{bottom:615.117333pt;}
.ye5{bottom:615.582667pt;}
.y19a{bottom:616.500000pt;}
.y234{bottom:621.138667pt;}
.y25{bottom:623.476000pt;}
.y1b9{bottom:624.765333pt;}
.y5a{bottom:625.164000pt;}
.y124{bottom:628.729333pt;}
.ye4{bottom:630.194667pt;}
.y199{bottom:633.237333pt;}
.y233{bottom:636.481333pt;}
.y26c{bottom:640.506667pt;}
.y24{bottom:640.770667pt;}
.y1b8{bottom:641.502667pt;}
.y59{bottom:641.901333pt;}
.ya0{bottom:648.094667pt;}
.y198{bottom:649.974667pt;}
.y232{bottom:651.824000pt;}
.ye2{bottom:653.865333pt;}
.y26b{bottom:655.848000pt;}
.y23{bottom:658.066667pt;}
.y206{bottom:658.240000pt;}
.y58{bottom:658.638667pt;}
.y123{bottom:659.492000pt;}
.y1b7{bottom:662.225333pt;}
.y197{bottom:666.712000pt;}
.y231{bottom:667.166667pt;}
.y76{bottom:668.032000pt;}
.y26a{bottom:671.190667pt;}
.y205{bottom:674.977333pt;}
.y22{bottom:675.361333pt;}
.y57{bottom:675.376000pt;}
.ye1{bottom:681.970667pt;}
.y230{bottom:682.509333pt;}
.y269{bottom:686.533333pt;}
.y122{bottom:688.488000pt;}
.y204{bottom:691.714667pt;}
.y56{bottom:692.113333pt;}
.y21{bottom:692.656000pt;}
.y196{bottom:696.548000pt;}
.y22f{bottom:697.852000pt;}
.y268{bottom:701.876000pt;}
.y121{bottom:705.225333pt;}
.y203{bottom:708.452000pt;}
.y55{bottom:708.850667pt;}
.y20{bottom:709.952000pt;}
.ye0{bottom:711.492000pt;}
.y22e{bottom:713.193333pt;}
.y267{bottom:717.218667pt;}
.y16d{bottom:719.141333pt;}
.y120{bottom:721.962667pt;}
.y202{bottom:725.189333pt;}
.y54{bottom:725.588000pt;}
.y1f{bottom:727.246667pt;}
.ydf{bottom:728.229333pt;}
.y22d{bottom:728.536000pt;}
.y266{bottom:732.561333pt;}
.y11f{bottom:738.700000pt;}
.y201{bottom:741.926667pt;}
.y53{bottom:742.324000pt;}
.y22c{bottom:743.878667pt;}
.y1e{bottom:744.541333pt;}
.yde{bottom:744.966667pt;}
.y265{bottom:747.904000pt;}
.y11e{bottom:755.437333pt;}
.y200{bottom:758.664000pt;}
.y52{bottom:759.061333pt;}
.y22b{bottom:759.221333pt;}
.ydd{bottom:761.704000pt;}
.y1d{bottom:761.837333pt;}
.y264{bottom:763.246667pt;}
.y22a{bottom:774.564000pt;}
.y1ff{bottom:775.401333pt;}
.y51{bottom:775.798667pt;}
.y11d{bottom:776.160000pt;}
.ydc{bottom:778.441333pt;}
.y263{bottom:778.589333pt;}
.y1c{bottom:779.132000pt;}
.y229{bottom:789.906667pt;}
.y1fe{bottom:792.138667pt;}
.y50{bottom:792.536000pt;}
.y262{bottom:793.930667pt;}
.y1b{bottom:796.428000pt;}
.ydb{bottom:804.292000pt;}
.y228{bottom:805.249333pt;}
.y1fd{bottom:808.874667pt;}
.y4f{bottom:809.273333pt;}
.y11c{bottom:816.437333pt;}
.y227{bottom:820.592000pt;}
.y261{bottom:824.616000pt;}
.y1fc{bottom:825.612000pt;}
.y4e{bottom:826.010667pt;}
.ybd{bottom:826.886667pt;}
.y1a{bottom:830.725333pt;}
.y11b{bottom:831.049333pt;}
.y226{bottom:835.933333pt;}
.y260{bottom:839.958667pt;}
.y1fb{bottom:842.349333pt;}
.y4d{bottom:842.748000pt;}
.y19{bottom:845.072000pt;}
.y11a{bottom:845.661333pt;}
.y225{bottom:851.276000pt;}
.y25f{bottom:855.301333pt;}
.y1fa{bottom:859.086667pt;}
.y4c{bottom:859.485333pt;}
.y224{bottom:866.618667pt;}
.y119{bottom:866.676000pt;}
.y25e{bottom:870.644000pt;}
.y1f9{bottom:875.824000pt;}
.y4b{bottom:876.222667pt;}
.y223{bottom:881.961333pt;}
.y25d{bottom:885.986667pt;}
.y18{bottom:888.641333pt;}
.y1f8{bottom:892.561333pt;}
.y4a{bottom:892.960000pt;}
.y222{bottom:897.304000pt;}
.y118{bottom:897.438667pt;}
.y25c{bottom:901.329333pt;}
.y49{bottom:909.697333pt;}
.y1f7{bottom:913.284000pt;}
.y221{bottom:916.632000pt;}
.y25b{bottom:916.670667pt;}
.y17{bottom:921.320000pt;}
.y48{bottom:926.434667pt;}
.y25a{bottom:932.013333pt;}
.y47{bottom:943.172000pt;}
.y16{bottom:946.425333pt;}
.y220{bottom:946.520000pt;}
.y259{bottom:947.356000pt;}
.y46{bottom:959.909333pt;}
.y21f{bottom:962.141333pt;}
.y258{bottom:962.698667pt;}
.y15{bottom:971.530667pt;}
.y45{bottom:976.646667pt;}
.y21e{bottom:977.762667pt;}
.y257{bottom:978.041333pt;}
.y44{bottom:993.384000pt;}
.y43{bottom:1046.810667pt;}
.h2f{height:-527.529333pt;}
.h2e{height:-491.529333pt;}
.h2d{height:-472.889333pt;}
.h16{height:-382.490000pt;}
.h3b{height:-370.409333pt;}
.h3a{height:-352.409333pt;}
.h15{height:-337.490000pt;}
.h39{height:-334.409333pt;}
.h38{height:-316.409333pt;}
.h37{height:-298.409333pt;}
.h14{height:-292.490000pt;}
.h36{height:-280.489333pt;}
.h2b{height:-272.329333pt;}
.h34{height:-261.769333pt;}
.h13{height:-247.490000pt;}
.h4e{height:-240.869333pt;}
.h2a{height:-236.409333pt;}
.h22{height:-234.400000pt;}
.h11{height:-224.190000pt;}
.h4d{height:-223.769333pt;}
.h4c{height:-206.745333pt;}
.h29{height:-200.409333pt;}
.h4a{height:-189.645333pt;}
.h28{height:-181.769333pt;}
.h21{height:-180.400000pt;}
.h49{height:-172.545333pt;}
.h1f{height:-161.760000pt;}
.h47{height:-137.737333pt;}
.h8{height:22.284493pt;}
.h48{height:22.384375pt;}
.h35{height:23.562500pt;}
.hc{height:24.760382pt;}
.h4b{height:27.149219pt;}
.h2{height:32.284045pt;}
.h9{height:33.186336pt;}
.h18{height:34.430976pt;}
.h3d{height:35.051460pt;}
.h23{height:35.617969pt;}
.h42{height:36.108461pt;}
.h44{height:36.539078pt;}
.h31{height:36.873667pt;}
.h6{height:36.896250pt;}
.h46{height:37.381906pt;}
.h1c{height:38.008906pt;}
.h5{height:38.256384pt;}
.h2c{height:38.462187pt;}
.h3{height:38.947124pt;}
.h20{height:39.349375pt;}
.h45{height:40.723828pt;}
.h7{height:41.508454pt;}
.h1e{height:42.867188pt;}
.h24{height:43.171318pt;}
.h3c{height:43.446059pt;}
.h3e{height:44.139392pt;}
.h43{height:45.339195pt;}
.hb{height:46.120196pt;}
.he{height:47.511133pt;}
.h1d{height:47.725469pt;}
.h17{height:48.077734pt;}
.h3f{height:48.529378pt;}
.h40{height:48.534711pt;}
.h12{height:49.186719pt;}
.ha{height:49.644045pt;}
.h10{height:53.583984pt;}
.h30{height:54.336794pt;}
.hf{height:59.656836pt;}
.h4{height:68.861952pt;}
.h1a{height:70.729788pt;}
.h19{height:70.735121pt;}
.h26{height:71.524454pt;}
.h25{height:71.597985pt;}
.h1b{height:179.781333pt;}
.h41{height:207.122800pt;}
.h33{height:240.476000pt;}
.h27{height:296.353333pt;}
.h32{height:312.817333pt;}
.hd{height:338.636667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w9{width:18.414667pt;}
.w14{width:23.513333pt;}
.wf{width:70.313333pt;}
.wb{width:71.598667pt;}
.w10{width:75.760000pt;}
.w13{width:85.120000pt;}
.w1c{width:86.505733pt;}
.w7{width:100.240000pt;}
.w19{width:100.337333pt;}
.we{width:103.200000pt;}
.wd{width:103.520000pt;}
.w18{width:129.920000pt;}
.w11{width:133.840000pt;}
.wc{width:138.480000pt;}
.w3{width:141.500000pt;}
.w4{width:150.200000pt;}
.w1b{width:158.841267pt;}
.w12{width:168.881333pt;}
.w1d{width:179.966733pt;}
.w5{width:185.603333pt;}
.w17{width:263.838667pt;}
.w8{width:363.360000pt;}
.w2{width:481.450000pt;}
.w1a{width:516.148427pt;}
.w6{width:613.091067pt;}
.wa{width:629.127467pt;}
.w16{width:652.076667pt;}
.w15{width:663.052667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x28{left:-213.153333pt;}
.xc9{left:-74.313307pt;}
.x48{left:-42.763600pt;}
.x64{left:-31.825867pt;}
.x95{left:-15.860667pt;}
.x8a{left:-10.372667pt;}
.x0{left:0.000000pt;}
.x34{left:2.600000pt;}
.x2a{left:4.146667pt;}
.x50{left:9.360000pt;}
.x6f{left:10.320000pt;}
.x6c{left:12.480000pt;}
.x70{left:13.680000pt;}
.x36{left:15.700000pt;}
.x55{left:18.400000pt;}
.x57{left:20.720000pt;}
.x73{left:23.440000pt;}
.x31{left:25.346667pt;}
.xcd{left:27.512000pt;}
.x32{left:28.800000pt;}
.x3a{left:32.000000pt;}
.x2e{left:34.300000pt;}
.x4c{left:35.600000pt;}
.x75{left:36.560000pt;}
.x39{left:37.500000pt;}
.x2b{left:39.546667pt;}
.x53{left:42.560000pt;}
.x2{left:46.426667pt;}
.x1{left:47.621333pt;}
.xa0{left:49.920000pt;}
.xa1{left:53.360000pt;}
.x2d{left:55.400000pt;}
.x6a{left:56.640000pt;}
.x9c{left:58.240000pt;}
.x7b{left:59.152000pt;}
.x9a{left:62.320000pt;}
.x82{left:64.138667pt;}
.x89{left:65.135333pt;}
.xce{left:67.640000pt;}
.x94{left:70.623333pt;}
.x9e{left:71.760000pt;}
.x7c{left:74.000000pt;}
.x9f{left:75.760000pt;}
.x7d{left:77.736000pt;}
.x3e{left:78.625333pt;}
.xa2{left:80.960000pt;}
.x63{left:82.097867pt;}
.xa5{left:84.080000pt;}
.xd0{left:86.944000pt;}
.x47{left:90.116933pt;}
.xa3{left:92.240000pt;}
.xa4{left:94.080000pt;}
.x38{left:96.600000pt;}
.x98{left:101.200000pt;}
.x3d{left:104.446667pt;}
.x56{left:106.080000pt;}
.x40{left:107.506667pt;}
.xca{left:117.767421pt;}
.x80{left:118.844000pt;}
.x42{left:121.326667pt;}
.x7a{left:123.644000pt;}
.x37{left:125.500000pt;}
.x3c{left:128.948000pt;}
.x49{left:131.076720pt;}
.x51{left:139.716400pt;}
.x66{left:142.014133pt;}
.x3b{left:146.900000pt;}
.x30{left:148.200000pt;}
.x4e{left:150.960000pt;}
.x52{left:152.755760pt;}
.x96{left:157.979333pt;}
.x4b{left:159.396400pt;}
.x8c{left:163.467333pt;}
.x67{left:170.334133pt;}
.xcc{left:180.818693pt;}
.x35{left:186.146667pt;}
.x8d{left:191.790533pt;}
.x4{left:220.912000pt;}
.x3{left:221.858667pt;}
.x68{left:224.112000pt;}
.x2c{left:226.005333pt;}
.x97{left:228.602667pt;}
.x79{left:230.574133pt;}
.x78{left:231.774133pt;}
.x5e{left:236.974667pt;}
.x81{left:238.348000pt;}
.x62{left:240.710667pt;}
.xc8{left:247.094667pt;}
.xc7{left:248.666667pt;}
.xe{left:250.204000pt;}
.x45{left:253.212000pt;}
.x71{left:258.654133pt;}
.xb1{left:263.473333pt;}
.x54{left:264.596400pt;}
.xb2{left:266.354667pt;}
.x86{left:273.078667pt;}
.x18{left:275.328000pt;}
.xb9{left:278.328000pt;}
.x17{left:280.018667pt;}
.xb0{left:281.602667pt;}
.x15{left:282.918667pt;}
.x5d{left:286.617333pt;}
.x19{left:288.610667pt;}
.x16{left:289.560000pt;}
.x1a{left:291.945333pt;}
.x69{left:295.712000pt;}
.x74{left:299.872000pt;}
.x1b{left:305.228000pt;}
.xba{left:308.169333pt;}
.x9{left:309.420000pt;}
.xd1{left:312.692600pt;}
.x83{left:316.193333pt;}
.x1c{left:318.821333pt;}
.x4d{left:321.433333pt;}
.xa{left:323.802667pt;}
.x1d{left:332.105333pt;}
.xb{left:335.997333pt;}
.x1e{left:338.760000pt;}
.x22{left:344.540000pt;}
.x84{left:345.913333pt;}
.x7{left:347.101333pt;}
.xc{left:350.509333pt;}
.x1f{left:352.042667pt;}
.x20{left:353.590667pt;}
.xd{left:355.977333pt;}
.xc1{left:357.070667pt;}
.x8{left:359.920000pt;}
.xc2{left:362.781333pt;}
.x59{left:364.005333pt;}
.x21{left:366.874667pt;}
.xd2{left:368.994693pt;}
.x33{left:370.846667pt;}
.x5a{left:377.288000pt;}
.x5b{left:380.676000pt;}
.x23{left:383.210667pt;}
.x5f{left:385.392000pt;}
.x72{left:388.094133pt;}
.x24{left:391.414667pt;}
.x5c{left:393.958667pt;}
.x8e{left:397.149333pt;}
.x8f{left:403.790667pt;}
.x90{left:407.045333pt;}
.x60{left:412.557333pt;}
.xd6{left:414.710667pt;}
.x91{left:420.329333pt;}
.x92{left:423.584000pt;}
.xd7{left:429.746667pt;}
.x6b{left:434.192000pt;}
.x93{left:436.866667pt;}
.xc5{left:441.446667pt;}
.x87{left:442.870667pt;}
.xc0{left:446.889333pt;}
.xf{left:453.672000pt;}
.x88{left:456.154667pt;}
.xbe{left:458.872000pt;}
.x10{left:460.313333pt;}
.x5{left:462.920000pt;}
.x6{left:470.304000pt;}
.xbf{left:472.156000pt;}
.x29{left:474.552667pt;}
.x58{left:478.144000pt;}
.x99{left:492.442667pt;}
.xcb{left:510.863437pt;}
.xcf{left:512.862693pt;}
.x2f{left:517.705333pt;}
.xd3{left:527.834693pt;}
.x41{left:529.728000pt;}
.xa6{left:532.722667pt;}
.x6d{left:537.712000pt;}
.xa7{left:546.005333pt;}
.xa8{left:549.260000pt;}
.x3f{left:550.726667pt;}
.x85{left:558.664000pt;}
.xa9{left:562.544000pt;}
.xaa{left:565.798667pt;}
.xd4{left:573.666667pt;}
.xc3{left:577.660000pt;}
.xab{left:579.081333pt;}
.xac{left:585.590667pt;}
.xd5{left:589.749333pt;}
.xad{left:598.874667pt;}
.x76{left:602.592000pt;}
.xae{left:607.292000pt;}
.x4a{left:609.164320pt;}
.xaf{left:612.605333pt;}
.x43{left:614.281333pt;}
.x9d{left:619.499333pt;}
.x9b{left:622.362667pt;}
.x44{left:627.564000pt;}
.x65{left:635.773333pt;}
.xb3{left:638.661333pt;}
.x6e{left:640.912000pt;}
.xc6{left:646.441333pt;}
.xb4{left:651.945333pt;}
.xb5{left:655.200000pt;}
.x25{left:659.306667pt;}
.xb6{left:668.482667pt;}
.x7e{left:670.194667pt;}
.x26{left:672.590667pt;}
.xbb{left:682.184000pt;}
.x7f{left:683.477333pt;}
.x4f{left:684.793333pt;}
.x8b{left:686.511653pt;}
.x77{left:687.712000pt;}
.xb7{left:695.792000pt;}
.xbc{left:698.741333pt;}
.xc4{left:699.780000pt;}
.x61{left:701.234667pt;}
.xb8{left:709.076000pt;}
.xbd{left:712.025333pt;}
.x11{left:723.454667pt;}
.x46{left:726.842667pt;}
.x12{left:730.097333pt;}
.x27{left:732.009333pt;}
.x13{left:733.484000pt;}
.x14{left:740.126667pt;}
}




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