
    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_f81afc92d198316da969955e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_2ac497f3cf192e2b8850a5e3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_049c20b9f8d958da1585632c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.964863;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_b2dac20b07c3fbf24f897b50.woff')format("woff");}.ff4{font-family:ff4;line-height:1.031738;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_508eb7cc871f4af52de10700.woff')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_624d83a48e09d450588172dd.woff')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_51ce8c4275f1a5e4085f03f9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.973633;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_334f3ab3a9f91995e05fce5c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.976111;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_de1f054b5d2e848b3e77636d.woff')format("woff");}.ff9{font-family:ff9;line-height:1.146973;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_1a5522d7906b315f0568149d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.710938;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_da472b7591cb87de911a7da1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.964865;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_6b04208a40d3e163c9bddd6c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.963379;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_635fdb27ad6e60e1656e7697.woff')format("woff");}.ffd{font-family:ffd;line-height:0.938000;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_1c1f16edc8797f02927ff8bf.woff')format("woff");}.ffe{font-family:ffe;line-height:0.938000;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_635fdb27ad6e60e1656e7697.woff')format("woff");}.fff{font-family:fff;line-height:0.938000;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_1e961f32adda77f66c39bf78.woff')format("woff");}.ff10{font-family:ff10;line-height:0.938000;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_1e961f32adda77f66c39bf78.woff')format("woff");}.ff11{font-family:ff11;line-height:0.938000;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_1e961f32adda77f66c39bf78.woff')format("woff");}.ff12{font-family:ff12;line-height:0.938000;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_82921c8d15802c91531b6cbb.woff')format("woff");}.ff13{font-family:ff13;line-height:0.733000;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_1c1f16edc8797f02927ff8bf.woff')format("woff");}.ff14{font-family:ff14;line-height:0.938000;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_635fdb27ad6e60e1656e7697.woff')format("woff");}.ff15{font-family:ff15;line-height:0.938000;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_82921c8d15802c91531b6cbb.woff')format("woff");}.ff16{font-family:ff16;line-height:0.733000;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_635fdb27ad6e60e1656e7697.woff')format("woff");}.ff17{font-family:ff17;line-height:0.938000;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_82921c8d15802c91531b6cbb.woff')format("woff");}.ff18{font-family:ff18;line-height:0.733000;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_635fdb27ad6e60e1656e7697.woff')format("woff");}.ff19{font-family:ff19;line-height:0.938000;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_635fdb27ad6e60e1656e7697.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.938000;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_635fdb27ad6e60e1656e7697.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.938000;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:ff1c;src:url('chunks/assets/font_635fdb27ad6e60e1656e7697.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.938000;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:ff1d;src:url('chunks/assets/font_635fdb27ad6e60e1656e7697.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.938000;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:ff1e;src:url('chunks/assets/font_635fdb27ad6e60e1656e7697.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.938000;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:ff1f;src:url('chunks/assets/font_635fdb27ad6e60e1656e7697.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.938000;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;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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);}
.m2{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);}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.984000px;}
.v4{vertical-align:17.982000px;}
.v3{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.ls3e{letter-spacing:-8.568000px;}
.ls44{letter-spacing:-4.823498px;}
.ls2e{letter-spacing:-4.775518px;}
.lse{letter-spacing:-3.000000px;}
.ls32{letter-spacing:-2.656080px;}
.ls3c{letter-spacing:-2.019166px;}
.ls40{letter-spacing:-1.560000px;}
.ls42{letter-spacing:-1.216008px;}
.ls10{letter-spacing:-1.200000px;}
.ls2f{letter-spacing:-1.163782px;}
.ls18{letter-spacing:-1.020000px;}
.ls46{letter-spacing:-1.013340px;}
.ls3b{letter-spacing:-0.960000px;}
.ls22{letter-spacing:-0.954702px;}
.ls28{letter-spacing:-0.922879px;}
.ls47{letter-spacing:-0.810672px;}
.ls33{letter-spacing:-0.796824px;}
.ls4c{letter-spacing:-0.702000px;}
.ls7{letter-spacing:-0.691200px;}
.ls13{letter-spacing:-0.672000px;}
.ls37{letter-spacing:-0.660000px;}
.ls27{letter-spacing:-0.636468px;}
.ls45{letter-spacing:-0.608004px;}
.lsf{letter-spacing:-0.600000px;}
.ls4d{letter-spacing:-0.594000px;}
.ls9{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.480000px;}
.ls14{letter-spacing:-0.432000px;}
.ls4f{letter-spacing:-0.378000px;}
.ls6{letter-spacing:-0.330000px;}
.ls19{letter-spacing:-0.300000px;}
.ls12{letter-spacing:-0.240000px;}
.ls21{letter-spacing:-0.218784px;}
.ls3d{letter-spacing:-0.060000px;}
.ls4e{letter-spacing:-0.054000px;}
.ls25{letter-spacing:-0.031823px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.001200px;}
.ls2{letter-spacing:0.012000px;}
.ls3{letter-spacing:0.025800px;}
.ls16{letter-spacing:0.104940px;}
.ls15{letter-spacing:0.180000px;}
.ls48{letter-spacing:0.240000px;}
.ls26{letter-spacing:0.445528px;}
.lsd{letter-spacing:0.454740px;}
.ls50{letter-spacing:0.540000px;}
.ls36{letter-spacing:0.552947px;}
.ls43{letter-spacing:0.567470px;}
.lsb{letter-spacing:0.578040px;}
.ls4a{letter-spacing:0.600000px;}
.ls3a{letter-spacing:0.720384px;}
.ls24{letter-spacing:0.763762px;}
.lsc{letter-spacing:0.780000px;}
.ls17{letter-spacing:0.840000px;}
.ls11{letter-spacing:0.900000px;}
.ls0{letter-spacing:0.952200px;}
.ls2d{letter-spacing:0.963130px;}
.lsa{letter-spacing:1.020000px;}
.ls4b{letter-spacing:1.080000px;}
.ls3f{letter-spacing:1.092000px;}
.ls49{letter-spacing:1.140000px;}
.ls39{letter-spacing:1.492224px;}
.ls23{letter-spacing:1.861657px;}
.ls41{letter-spacing:2.371216px;}
.ls38{letter-spacing:2.452718px;}
.ls1{letter-spacing:42.659364px;}
.ls1f{letter-spacing:109.200302px;}
.ls35{letter-spacing:109.231290px;}
.ls20{letter-spacing:122.153119px;}
.ls1a{letter-spacing:125.561755px;}
.ls34{letter-spacing:130.767672px;}
.ls1e{letter-spacing:133.277668px;}
.ls1d{letter-spacing:133.308655px;}
.ls1b{letter-spacing:134.207296px;}
.ls1c{letter-spacing:146.230484px;}
.ls2a{letter-spacing:196.787095px;}
.ls29{letter-spacing:196.837258px;}
.ls31{letter-spacing:221.609088px;}
.ls30{letter-spacing:221.609688px;}
.ls2b{letter-spacing:222.971868px;}
.ls2c{letter-spacing:263.653574px;}
.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;}
}
.wsf6{word-spacing:-263.653574px;}
.wsec{word-spacing:-236.917015px;}
.wse6{word-spacing:-210.782405px;}
.wse9{word-spacing:-210.732242px;}
.wsd5{word-spacing:-146.230484px;}
.wscc{word-spacing:-142.821848px;}
.wsce{word-spacing:-141.923208px;}
.wsd0{word-spacing:-141.892220px;}
.ws116{word-spacing:-139.382225px;}
.wscb{word-spacing:-134.176308px;}
.wsd3{word-spacing:-130.767672px;}
.ws117{word-spacing:-117.845843px;}
.wsd2{word-spacing:-117.814855px;}
.ws119{word-spacing:-109.200302px;}
.ws135{word-spacing:-22.776000px;}
.ws136{word-spacing:-20.124000px;}
.ws120{word-spacing:-19.936193px;}
.ws138{word-spacing:-19.273727px;}
.ws3{word-spacing:-17.928000px;}
.ws128{word-spacing:-17.336974px;}
.ws132{word-spacing:-16.677481px;}
.wsbb{word-spacing:-16.434000px;}
.ws122{word-spacing:-15.796992px;}
.ws54{word-spacing:-15.660000px;}
.ws139{word-spacing:-15.494052px;}
.wsda{word-spacing:-15.131932px;}
.ws9e{word-spacing:-15.060000px;}
.ws123{word-spacing:-15.025152px;}
.ws2{word-spacing:-14.940000px;}
.ws127{word-spacing:-14.887070px;}
.ws9f{word-spacing:-14.880000px;}
.ws11e{word-spacing:-14.700000px;}
.ws121{word-spacing:-14.304768px;}
.ws11f{word-spacing:-14.295927px;}
.wsc9{word-spacing:-14.100000px;}
.ws137{word-spacing:-14.083390px;}
.ws114{word-spacing:-13.970981px;}
.ws125{word-spacing:-13.740000px;}
.ws15f{word-spacing:-13.392000px;}
.ws134{word-spacing:-13.344000px;}
.ws17d{word-spacing:-13.338000px;}
.ws172{word-spacing:-13.230000px;}
.ws17e{word-spacing:-13.014000px;}
.ws17c{word-spacing:-12.798000px;}
.ws167{word-spacing:-12.690000px;}
.wscd{word-spacing:-12.304537px;}
.ws5{word-spacing:-12.150000px;}
.wsef{word-spacing:-12.119381px;}
.ws113{word-spacing:-12.111725px;}
.ws89{word-spacing:-11.952000px;}
.wsd7{word-spacing:-11.945606px;}
.ws13b{word-spacing:-11.835811px;}
.ws4{word-spacing:-11.772000px;}
.ws11b{word-spacing:-11.532890px;}
.ws133{word-spacing:-11.448000px;}
.ws13e{word-spacing:-11.268341px;}
.ws95{word-spacing:-11.232000px;}
.wsee{word-spacing:-11.156251px;}
.wsd6{word-spacing:-11.056911px;}
.ws0{word-spacing:-10.896000px;}
.ws13d{word-spacing:-10.660337px;}
.ws140{word-spacing:-10.457669px;}
.ws13f{word-spacing:-10.255001px;}
.ws13a{word-spacing:-10.052333px;}
.wsf1{word-spacing:-9.992470px;}
.ws1{word-spacing:-9.417600px;}
.ws53{word-spacing:-9.129780px;}
.wsa0{word-spacing:-8.779980px;}
.ws55{word-spacing:-8.675040px;}
.wsf8{word-spacing:-7.807536px;}
.ws13c{word-spacing:-6.444842px;}
.wsf0{word-spacing:-6.380734px;}
.ws3b{word-spacing:-4.680000px;}
.ws196{word-spacing:-4.644000px;}
.ws180{word-spacing:-3.726000px;}
.ws141{word-spacing:-3.720000px;}
.ws142{word-spacing:-3.360000px;}
.ws80{word-spacing:-3.300000px;}
.ws41{word-spacing:-3.240000px;}
.ws198{word-spacing:-3.186000px;}
.ws185{word-spacing:-3.132000px;}
.ws143{word-spacing:-3.120000px;}
.ws2b{word-spacing:-3.060000px;}
.wsb2{word-spacing:-2.940000px;}
.ws129{word-spacing:-2.880000px;}
.ws81{word-spacing:-2.820000px;}
.ws7e{word-spacing:-2.700000px;}
.ws181{word-spacing:-2.646000px;}
.ws156{word-spacing:-2.640000px;}
.ws32{word-spacing:-2.580000px;}
.ws118{word-spacing:-2.520000px;}
.ws12f{word-spacing:-2.460000px;}
.wsd4{word-spacing:-2.400000px;}
.ws1a{word-spacing:-2.376000px;}
.ws130{word-spacing:-2.340000px;}
.ws38{word-spacing:-2.280000px;}
.ws37{word-spacing:-2.220000px;}
.wsb{word-spacing:-2.214000px;}
.ws16b{word-spacing:-2.160000px;}
.wsc5{word-spacing:-2.100000px;}
.ws19a{word-spacing:-2.052000px;}
.ws6c{word-spacing:-2.040000px;}
.ws171{word-spacing:-1.998000px;}
.wsc0{word-spacing:-1.920000px;}
.ws15e{word-spacing:-1.890000px;}
.ws150{word-spacing:-1.800000px;}
.ws25{word-spacing:-1.740000px;}
.ws19b{word-spacing:-1.674000px;}
.ws6f{word-spacing:-1.620000px;}
.ws17{word-spacing:-1.566000px;}
.ws33{word-spacing:-1.560000px;}
.ws45{word-spacing:-1.440000px;}
.ws9d{word-spacing:-1.392000px;}
.ws2e{word-spacing:-1.380000px;}
.ws169{word-spacing:-1.350000px;}
.ws63{word-spacing:-1.320000px;}
.wsf7{word-spacing:-1.296000px;}
.ws60{word-spacing:-1.260000px;}
.ws12b{word-spacing:-1.200000px;}
.ws44{word-spacing:-1.140000px;}
.ws177{word-spacing:-1.134000px;}
.ws1b{word-spacing:-1.080000px;}
.ws17a{word-spacing:-1.026000px;}
.ws42{word-spacing:-1.020000px;}
.ws186{word-spacing:-0.972000px;}
.wsad{word-spacing:-0.960000px;}
.ws43{word-spacing:-0.900000px;}
.wsaf{word-spacing:-0.840000px;}
.wsc{word-spacing:-0.810000px;}
.wsdb{word-spacing:-0.795585px;}
.ws5d{word-spacing:-0.780000px;}
.ws131{word-spacing:-0.756000px;}
.ws6b{word-spacing:-0.720000px;}
.ws170{word-spacing:-0.702000px;}
.ws14d{word-spacing:-0.660000px;}
.ws3c{word-spacing:-0.600000px;}
.ws151{word-spacing:-0.540000px;}
.ws15c{word-spacing:-0.486000px;}
.wsbf{word-spacing:-0.480000px;}
.wsdc{word-spacing:-0.477351px;}
.wse3{word-spacing:-0.445528px;}
.ws23{word-spacing:-0.420000px;}
.ws191{word-spacing:-0.378000px;}
.ws158{word-spacing:-0.360000px;}
.ws2f{word-spacing:-0.300000px;}
.wsc4{word-spacing:-0.240000px;}
.ws8{word-spacing:-0.216000px;}
.wsa5{word-spacing:-0.180000px;}
.ws195{word-spacing:-0.108000px;}
.ws2a{word-spacing:-0.060000px;}
.wsd8{word-spacing:-0.031823px;}
.ws6{word-spacing:0.000000px;}
.wse2{word-spacing:0.031823px;}
.ws174{word-spacing:0.054000px;}
.ws83{word-spacing:0.060000px;}
.ws4d{word-spacing:0.120000px;}
.ws16f{word-spacing:0.162000px;}
.ws46{word-spacing:0.180000px;}
.ws9c{word-spacing:0.240000px;}
.ws17b{word-spacing:0.270000px;}
.ws72{word-spacing:0.300000px;}
.ws19c{word-spacing:0.324000px;}
.ws7f{word-spacing:0.360000px;}
.ws184{word-spacing:0.378000px;}
.ws77{word-spacing:0.420000px;}
.ws189{word-spacing:0.432000px;}
.ws2c{word-spacing:0.480000px;}
.wsa{word-spacing:0.540000px;}
.ws17f{word-spacing:0.594000px;}
.ws21{word-spacing:0.600000px;}
.wsdd{word-spacing:0.604645px;}
.ws7d{word-spacing:0.660000px;}
.ws9{word-spacing:0.691200px;}
.ws192{word-spacing:0.702000px;}
.ws50{word-spacing:0.720000px;}
.ws47{word-spacing:0.780000px;}
.ws165{word-spacing:0.810000px;}
.wsb0{word-spacing:0.840000px;}
.wsde{word-spacing:0.891055px;}
.ws6e{word-spacing:0.900000px;}
.ws11d{word-spacing:0.918000px;}
.wsd9{word-spacing:0.922879px;}
.ws48{word-spacing:0.960000px;}
.ws161{word-spacing:0.972000px;}
.wsc1{word-spacing:1.020000px;}
.wsa4{word-spacing:1.080000px;}
.ws18c{word-spacing:1.134000px;}
.wse4{word-spacing:1.188000px;}
.ws78{word-spacing:1.200000px;}
.ws14f{word-spacing:1.260000px;}
.ws11{word-spacing:1.296000px;}
.ws31{word-spacing:1.320000px;}
.ws147{word-spacing:1.380000px;}
.wsf2{word-spacing:1.440000px;}
.ws18b{word-spacing:1.458000px;}
.wsac{word-spacing:1.500000px;}
.ws40{word-spacing:1.560000px;}
.wsd{word-spacing:1.566000px;}
.ws28{word-spacing:1.620000px;}
.ws87{word-spacing:1.680000px;}
.ws18a{word-spacing:1.728000px;}
.ws66{word-spacing:1.740000px;}
.ws166{word-spacing:1.782000px;}
.wsc2{word-spacing:1.800000px;}
.ws16e{word-spacing:1.836000px;}
.ws12e{word-spacing:1.860000px;}
.ws3e{word-spacing:1.920000px;}
.ws187{word-spacing:1.944000px;}
.ws70{word-spacing:1.980000px;}
.ws6d{word-spacing:2.040000px;}
.ws18f{word-spacing:2.052000px;}
.ws73{word-spacing:2.100000px;}
.ws18e{word-spacing:2.106000px;}
.ws2d{word-spacing:2.160000px;}
.ws1e{word-spacing:2.280000px;}
.ws4b{word-spacing:2.340000px;}
.ws15d{word-spacing:2.376000px;}
.ws65{word-spacing:2.400000px;}
.ws3a{word-spacing:2.460000px;}
.ws164{word-spacing:2.484000px;}
.ws71{word-spacing:2.520000px;}
.ws75{word-spacing:2.580000px;}
.ws7b{word-spacing:2.640000px;}
.ws82{word-spacing:2.700000px;}
.ws16a{word-spacing:2.754000px;}
.ws29{word-spacing:2.760000px;}
.ws162{word-spacing:2.808000px;}
.wsc3{word-spacing:2.820000px;}
.ws12c{word-spacing:2.880000px;}
.ws112{word-spacing:2.916000px;}
.ws4a{word-spacing:2.940000px;}
.ws111{word-spacing:2.970000px;}
.ws1f{word-spacing:3.000000px;}
.ws7{word-spacing:3.036000px;}
.ws6a{word-spacing:3.078000px;}
.ws35{word-spacing:3.120000px;}
.ws11a{word-spacing:3.132000px;}
.wsa1{word-spacing:3.180000px;}
.ws193{word-spacing:3.240000px;}
.ws188{word-spacing:3.294000px;}
.ws146{word-spacing:3.300000px;}
.ws16c{word-spacing:3.348000px;}
.ws88{word-spacing:3.420000px;}
.ws97{word-spacing:3.480000px;}
.ws5e{word-spacing:3.540000px;}
.wsb3{word-spacing:3.600000px;}
.ws67{word-spacing:3.660000px;}
.ws194{word-spacing:3.672000px;}
.wsc8{word-spacing:3.720000px;}
.ws19{word-spacing:3.726000px;}
.ws27{word-spacing:3.780000px;}
.ws179{word-spacing:3.834000px;}
.ws26{word-spacing:3.840000px;}
.ws3f{word-spacing:3.900000px;}
.ws163{word-spacing:3.942000px;}
.wsb4{word-spacing:3.960000px;}
.wse{word-spacing:3.996000px;}
.ws39{word-spacing:4.020000px;}
.ws12{word-spacing:4.050000px;}
.ws36{word-spacing:4.080000px;}
.wsdf{word-spacing:4.200000px;}
.ws22{word-spacing:4.260000px;}
.ws13{word-spacing:4.320000px;}
.ws155{word-spacing:4.380000px;}
.ws14{word-spacing:4.428000px;}
.ws7c{word-spacing:4.440000px;}
.ws98{word-spacing:4.500000px;}
.ws15a{word-spacing:4.560000px;}
.ws20{word-spacing:4.620000px;}
.ws7a{word-spacing:4.860000px;}
.wsb8{word-spacing:4.920000px;}
.wsb6{word-spacing:5.040000px;}
.ws199{word-spacing:5.076000px;}
.ws5a{word-spacing:5.100000px;}
.ws190{word-spacing:5.130000px;}
.ws10f{word-spacing:5.160000px;}
.ws14a{word-spacing:5.220000px;}
.wsb1{word-spacing:5.280000px;}
.ws4c{word-spacing:5.340000px;}
.ws14c{word-spacing:5.400000px;}
.wsa3{word-spacing:5.580000px;}
.ws197{word-spacing:5.616000px;}
.ws86{word-spacing:5.640000px;}
.ws15{word-spacing:5.670000px;}
.ws3d{word-spacing:5.760000px;}
.ws52{word-spacing:5.820000px;}
.ws4f{word-spacing:5.880000px;}
.ws14b{word-spacing:6.180000px;}
.ws18{word-spacing:6.210000px;}
.ws34{word-spacing:6.240000px;}
.ws16d{word-spacing:6.264000px;}
.ws110{word-spacing:6.300000px;}
.wsf3{word-spacing:6.360000px;}
.ws61{word-spacing:6.420000px;}
.wsa6{word-spacing:6.540000px;}
.ws4e{word-spacing:6.660000px;}
.wsa9{word-spacing:6.720000px;}
.ws12d{word-spacing:6.780000px;}
.ws30{word-spacing:6.840000px;}
.ws99{word-spacing:6.900000px;}
.ws79{word-spacing:6.960000px;}
.ws176{word-spacing:6.966000px;}
.wsae{word-spacing:7.020000px;}
.ws18d{word-spacing:7.074000px;}
.wse0{word-spacing:7.080000px;}
.wsb7{word-spacing:7.140000px;}
.ws12a{word-spacing:7.200000px;}
.ws168{word-spacing:7.290000px;}
.ws175{word-spacing:7.344000px;}
.wsb9{word-spacing:7.380000px;}
.wsbd{word-spacing:7.440000px;}
.ws16{word-spacing:7.452000px;}
.ws64{word-spacing:7.500000px;}
.wsaa{word-spacing:7.560000px;}
.wsf4{word-spacing:7.620000px;}
.wsf5{word-spacing:7.680000px;}
.ws10{word-spacing:7.722000px;}
.ws9b{word-spacing:7.740000px;}
.ws96{word-spacing:7.800000px;}
.wsf{word-spacing:7.884000px;}
.ws74{word-spacing:7.980000px;}
.ws15b{word-spacing:8.100000px;}
.ws5f{word-spacing:8.160000px;}
.wsa7{word-spacing:8.280000px;}
.wse1{word-spacing:8.340000px;}
.ws144{word-spacing:8.460000px;}
.ws154{word-spacing:8.520000px;}
.ws159{word-spacing:8.580000px;}
.ws24{word-spacing:8.640000px;}
.ws182{word-spacing:8.694000px;}
.ws49{word-spacing:8.700000px;}
.ws14e{word-spacing:8.760000px;}
.ws76{word-spacing:8.820000px;}
.ws149{word-spacing:9.000000px;}
.ws152{word-spacing:9.240000px;}
.ws173{word-spacing:9.288000px;}
.ws160{word-spacing:9.396000px;}
.wsb5{word-spacing:9.420000px;}
.wsc7{word-spacing:9.540000px;}
.ws145{word-spacing:9.960000px;}
.ws69{word-spacing:9.990000px;}
.ws68{word-spacing:10.044000px;}
.ws157{word-spacing:10.200000px;}
.ws19e{word-spacing:10.260000px;}
.ws183{word-spacing:10.314000px;}
.wsc6{word-spacing:10.500000px;}
.wsa2{word-spacing:10.620000px;}
.wsbe{word-spacing:10.860000px;}
.ws153{word-spacing:10.980000px;}
.ws85{word-spacing:11.100000px;}
.wsba{word-spacing:11.340000px;}
.ws1d{word-spacing:12.150000px;}
.ws1c{word-spacing:12.204000px;}
.ws11c{word-spacing:12.240000px;}
.ws62{word-spacing:12.420000px;}
.ws9a{word-spacing:12.600000px;}
.ws84{word-spacing:13.320000px;}
.ws178{word-spacing:13.446000px;}
.ws51{word-spacing:13.860000px;}
.ws148{word-spacing:14.220000px;}
.wsbc{word-spacing:14.760000px;}
.ws10e{word-spacing:15.060000px;}
.ws19d{word-spacing:15.444000px;}
.ws124{word-spacing:18.660000px;}
.ws5c{word-spacing:24.540000px;}
.ws19f{word-spacing:24.786000px;}
.ws5b{word-spacing:30.360000px;}
.wsab{word-spacing:47.940000px;}
.wsa8{word-spacing:48.660000px;}
.ws115{word-spacing:100.585750px;}
.wsd1{word-spacing:100.616737px;}
.wsca{word-spacing:104.025373px;}
.ws8e{word-spacing:117.284400px;}
.wscf{word-spacing:124.663115px;}
.ws8c{word-spacing:140.197800px;}
.wsfe{word-spacing:147.526200px;}
.wse8{word-spacing:153.547106px;}
.ws108{word-spacing:161.026800px;}
.ws100{word-spacing:161.049600px;}
.wsff{word-spacing:161.093400px;}
.ws101{word-spacing:166.905600px;}
.wse5{word-spacing:168.244690px;}
.ws10a{word-spacing:179.674200px;}
.wseb{word-spacing:179.681717px;}
.wsea{word-spacing:182.841948px;}
.wse7{word-spacing:182.892110px;}
.ws8f{word-spacing:185.715000px;}
.wsfb{word-spacing:193.173600px;}
.ws10b{word-spacing:193.894200px;}
.ws105{word-spacing:204.205800px;}
.wsf9{word-spacing:206.082000px;}
.ws103{word-spacing:207.341400px;}
.ws10c{word-spacing:207.353400px;}
.ws102{word-spacing:207.357600px;}
.wsfa{word-spacing:209.632800px;}
.wsfc{word-spacing:217.693200px;}
.wsfd{word-spacing:217.693800px;}
.ws104{word-spacing:217.705200px;}
.ws109{word-spacing:217.705800px;}
.ws10d{word-spacing:217.729800px;}
.ws56{word-spacing:219.757800px;}
.wsed{word-spacing:220.463748px;}
.ws58{word-spacing:226.601400px;}
.ws90{word-spacing:229.420200px;}
.ws106{word-spacing:231.169800px;}
.ws107{word-spacing:231.193200px;}
.ws8a{word-spacing:239.187000px;}
.ws91{word-spacing:245.156400px;}
.ws93{word-spacing:260.543400px;}
.ws57{word-spacing:267.298200px;}
.ws8b{word-spacing:267.969000px;}
.ws8d{word-spacing:277.757400px;}
.ws59{word-spacing:280.990200px;}
.ws92{word-spacing:286.399800px;}
.ws94{word-spacing:303.625800px;}
.ws126{word-spacing:430.846572px;}
._40{margin-left:-222.501821px;}
._3f{margin-left:-196.837258px;}
._39{margin-left:-134.207296px;}
._3a{margin-left:-132.379027px;}
._38{margin-left:-125.530768px;}
._3c{margin-left:-122.122132px;}
._3b{margin-left:-109.200302px;}
._8{margin-left:-10.845600px;}
._55{margin-left:-9.249179px;}
._52{margin-left:-7.838221px;}
._7{margin-left:-6.156000px;}
._3{margin-left:-4.874400px;}
._c{margin-left:-3.796800px;}
._4{margin-left:-2.723400px;}
._1{margin-left:-1.479000px;}
._2{width:1.152600px;}
._0{width:2.662200px;}
._6{width:3.799200px;}
._b{width:4.912800px;}
._a{width:6.672000px;}
._d{width:7.842000px;}
._9{width:9.138000px;}
._e{width:10.626000px;}
._56{width:11.695800px;}
._26{width:12.696600px;}
._50{width:13.788000px;}
._57{width:15.094800px;}
._37{width:16.788000px;}
._35{width:20.136000px;}
._36{width:21.637200px;}
._5{width:36.624000px;}
._53{width:43.103400px;}
._54{width:44.113200px;}
._13{width:62.338800px;}
._24{width:69.318000px;}
._12{width:70.492200px;}
._27{width:89.692200px;}
._14{width:96.003600px;}
._21{width:97.080600px;}
._11{width:101.197800px;}
._4f{width:102.470783px;}
._15{width:121.526400px;}
._3d{width:125.592743px;}
._31{width:131.445600px;}
._4e{width:134.088377px;}
._3e{width:138.483584px;}
._4a{width:142.458600px;}
._1b{width:152.236800px;}
._2d{width:158.068800px;}
._45{width:159.754200px;}
._18{width:174.959400px;}
._1d{width:182.888400px;}
._1c{width:191.355600px;}
._16{width:194.126400px;}
._25{width:205.817400px;}
._1a{width:207.854400px;}
._10{width:227.095200px;}
._47{width:228.857400px;}
._1e{width:230.343600px;}
._30{width:237.240600px;}
._22{width:238.505400px;}
._17{width:240.177600px;}
._2b{width:241.866600px;}
._1f{width:243.495000px;}
._41{width:249.006154px;}
._4d{width:250.085400px;}
._2c{width:259.599600px;}
._20{width:262.221000px;}
._2f{width:265.052400px;}
._33{width:274.870800px;}
._23{width:292.894200px;}
._4b{width:296.015400px;}
._49{width:311.226600px;}
._32{width:316.141800px;}
._29{width:332.367600px;}
._28{width:340.231800px;}
._48{width:351.894000px;}
._2e{width:362.458800px;}
._42{width:375.703200px;}
._34{width:402.320400px;}
._19{width:409.911000px;}
._2a{width:413.546400px;}
._46{width:450.666600px;}
._51{width:456.902817px;}
._4c{width:498.438000px;}
._44{width:507.270600px;}
._f{width:516.929400px;}
._43{width:676.026600px;}
.fc5{color:rgb(70,70,72);}
.fc3{color:rgb(17,15,13);}
.fc4{color:rgb(16,15,13);}
.fc1{color:rgb(151,22,52);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs1b{font-size:27.984000px;}
.fsa{font-size:30.987600px;}
.fs1a{font-size:31.482000px;}
.fs13{font-size:31.823400px;}
.fs9{font-size:34.980000px;}
.fs24{font-size:37.491000px;}
.fs3{font-size:38.478000px;}
.fs1f{font-size:39.496200px;}
.fs10{font-size:39.773059px;}
.fsf{font-size:39.778800px;}
.fs19{font-size:40.130400px;}
.fs2f{font-size:40.533600px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs12{font-size:43.756800px;}
.fsc{font-size:44.260925px;}
.fsb{font-size:44.268000px;}
.fs11{font-size:47.734800px;}
.fs0{font-size:48.000000px;}
.fs1c{font-size:49.369800px;}
.fs16{font-size:50.162400px;}
.fs2c{font-size:50.659675px;}
.fs2b{font-size:50.667000px;}
.fs21{font-size:51.424199px;}
.fs20{font-size:51.456000px;}
.fs14{font-size:51.712800px;}
.fsd{font-size:53.121600px;}
.fs26{font-size:53.550611px;}
.fs25{font-size:53.559000px;}
.fs6{font-size:54.000000px;}
.fs15{font-size:55.179000px;}
.fs2e{font-size:55.734000px;}
.fs1d{font-size:59.244000px;}
.fs29{font-size:59.990939px;}
.fs7{font-size:60.000000px;}
.fs17{font-size:60.195000px;}
.fs2d{font-size:60.800400px;}
.fse{font-size:61.975200px;}
.fs22{font-size:62.890200px;}
.fs1e{font-size:64.180800px;}
.fs27{font-size:64.270800px;}
.fs18{font-size:65.211600px;}
.fs30{font-size:65.867400px;}
.fs2{font-size:66.000000px;}
.fs28{font-size:69.626400px;}
.fs8{font-size:72.000000px;}
.fs23{font-size:74.325000px;}
.fs2a{font-size:78.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y11d{bottom:2.282850px;}
.y133{bottom:2.283750px;}
.yd6{bottom:2.541600px;}
.y19c{bottom:2.542050px;}
.y212{bottom:2.907750px;}
.y1d7{bottom:2.952600px;}
.y1ee{bottom:3.073800px;}
.y1fe{bottom:3.443250px;}
.y167{bottom:3.971550px;}
.y11b{bottom:9.930300px;}
.y19a{bottom:11.063700px;}
.y1{bottom:68.124750px;}
.y3d{bottom:71.212050px;}
.y3e{bottom:75.036150px;}
.y164{bottom:75.163650px;}
.y93{bottom:113.078700px;}
.y70{bottom:113.078850px;}
.y2c{bottom:117.212550px;}
.ye{bottom:117.875550px;}
.y1f3{bottom:130.048350px;}
.yd{bottom:132.275550px;}
.y92{bottom:134.078700px;}
.y6f{bottom:134.078850px;}
.y2b{bottom:138.212550px;}
.yc{bottom:146.675550px;}
.y217{bottom:149.094750px;}
.y91{bottom:155.078700px;}
.y6e{bottom:155.078850px;}
.y2a{bottom:159.212550px;}
.yb{bottom:161.075550px;}
.y90{bottom:176.078700px;}
.y6d{bottom:176.078850px;}
.y29{bottom:180.212550px;}
.y1f7{bottom:188.468550px;}
.ya4{bottom:190.441050px;}
.y15e{bottom:194.863050px;}
.y8f{bottom:197.078700px;}
.y6c{bottom:197.078850px;}
.y3a{bottom:203.413650px;}
.y1b4{bottom:211.440900px;}
.y28{bottom:213.404250px;}
.y13a{bottom:217.498350px;}
.y8e{bottom:218.078700px;}
.y6b{bottom:218.078850px;}
.y208{bottom:220.643250px;}
.y39{bottom:221.413650px;}
.y230{bottom:223.529250px;}
.y203{bottom:225.308250px;}
.y228{bottom:238.238850px;}
.y8d{bottom:239.078700px;}
.y6a{bottom:239.078850px;}
.y38{bottom:239.413650px;}
.y37{bottom:257.413650px;}
.y211{bottom:258.993000px;}
.y8c{bottom:260.078700px;}
.y69{bottom:260.078850px;}
.y21f{bottom:263.336250px;}
.y1dc{bottom:273.095850px;}
.y213{bottom:274.611750px;}
.y36{bottom:275.413500px;}
.y21d{bottom:275.914350px;}
.y8b{bottom:281.078700px;}
.y68{bottom:281.078850px;}
.y27{bottom:285.427950px;}
.y22f{bottom:286.529250px;}
.y215{bottom:290.050946px;}
.y216{bottom:292.164432px;}
.y35{bottom:293.413500px;}
.y21a{bottom:301.044750px;}
.y8a{bottom:302.078700px;}
.y67{bottom:302.078850px;}
.y26{bottom:305.227950px;}
.y34{bottom:311.413500px;}
.y23e{bottom:315.513600px;}
.ya2{bottom:316.441050px;}
.y214{bottom:321.368154px;}
.y89{bottom:323.078700px;}
.y66{bottom:323.078850px;}
.y33{bottom:329.413500px;}
.ya3{bottom:337.441050px;}
.y1f4{bottom:340.708350px;}
.y88{bottom:344.078700px;}
.y65{bottom:344.078850px;}
.y25{bottom:346.287750px;}
.y32{bottom:347.413500px;}
.y23d{bottom:347.811000px;}
.y22e{bottom:349.529250px;}
.y1b3{bottom:355.020450px;}
.yb2{bottom:357.513600px;}
.y87{bottom:365.078700px;}
.y64{bottom:365.078850px;}
.y24{bottom:366.087750px;}
.yf3{bottom:367.941750px;}
.y20c{bottom:368.936100px;}
.yba{bottom:369.622500px;}
.y17d{bottom:369.634200px;}
.y1d0{bottom:370.794600px;}
.y1b2{bottom:374.820450px;}
.y72{bottom:378.513600px;}
.y20a{bottom:381.682800px;}
.y31{bottom:382.421400px;}
.y23{bottom:385.887750px;}
.y86{bottom:386.078700px;}
.y63{bottom:386.078850px;}
.yb1{bottom:389.811150px;}
.y1cf{bottom:390.594600px;}
.y169{bottom:391.947450px;}
.y1b1{bottom:394.620450px;}
.y30{bottom:400.421400px;}
.y22{bottom:405.687750px;}
.y85{bottom:407.078700px;}
.y62{bottom:407.078850px;}
.y144{bottom:407.766150px;}
.y154{bottom:408.256050px;}
.yec{bottom:410.391000px;}
.y1ce{bottom:410.394600px;}
.y71{bottom:410.811150px;}
.y168{bottom:411.747600px;}
.y22d{bottom:412.529400px;}
.y227{bottom:413.512950px;}
.y1b0{bottom:414.420450px;}
.y2f{bottom:418.421400px;}
.y21{bottom:425.487750px;}
.y143{bottom:427.566150px;}
.y84{bottom:428.078700px;}
.y61{bottom:428.078850px;}
.yeb{bottom:430.191000px;}
.y14d{bottom:432.502500px;}
.y226{bottom:434.371254px;}
.y17c{bottom:435.175500px;}
.y2e{bottom:436.421400px;}
.y20d{bottom:437.615219px;}
.y1a1{bottom:439.191537px;}
.y1ad{bottom:439.191829px;}
.y1cd{bottom:440.494200px;}
.y1a9{bottom:445.107000px;}
.y20{bottom:445.287750px;}
.y1a8{bottom:446.240250px;}
.y225{bottom:446.936670px;}
.yf2{bottom:448.321500px;}
.y19d{bottom:448.823250px;}
.y83{bottom:449.078700px;}
.y60{bottom:449.078850px;}
.yb9{bottom:450.946500px;}
.y122{bottom:451.907009px;}
.y138{bottom:451.921971px;}
.y19b{bottom:453.627450px;}
.y2d{bottom:454.421400px;}
.ye8{bottom:454.938756px;}
.ydb{bottom:454.945531px;}
.y11e{bottom:457.243500px;}
.y134{bottom:457.244400px;}
.y132{bottom:458.251800px;}
.y224{bottom:459.502086px;}
.yd7{bottom:460.876350px;}
.ye4{bottom:460.877400px;}
.y166{bottom:461.127750px;}
.yd5{bottom:461.997450px;}
.y19f{bottom:462.312343px;}
.y1ab{bottom:462.312636px;}
.y188{bottom:463.670250px;}
.y1a2{bottom:464.151054px;}
.y1ae{bottom:464.151346px;}
.y11c{bottom:464.890950px;}
.y1f{bottom:465.087750px;}
.y1c3{bottom:466.401000px;}
.y82{bottom:470.078700px;}
.y5f{bottom:470.078850px;}
.y223{bottom:472.067502px;}
.y120{bottom:472.697528px;}
.y136{bottom:472.698428px;}
.y1a0{bottom:473.532389px;}
.y1ac{bottom:473.532682px;}
.y123{bottom:474.349801px;}
.y139{bottom:474.364763px;}
.y22c{bottom:475.937100px;}
.yd9{bottom:478.074161px;}
.ye6{bottom:478.075211px;}
.ye9{bottom:479.898273px;}
.ydc{bottom:479.905048px;}
.y121{bottom:482.779910px;}
.y137{bottom:482.780810px;}
.yb3{bottom:484.441050px;}
.y222{bottom:484.632918px;}
.y1e{bottom:484.887750px;}
.yda{bottom:489.294208px;}
.ye7{bottom:489.295258px;}
.y19e{bottom:489.673920px;}
.y1aa{bottom:489.674213px;}
.y1c6{bottom:490.086300px;}
.y15d{bottom:490.662300px;}
.y81{bottom:491.078700px;}
.y5e{bottom:491.078850px;}
.y221{bottom:497.198334px;}
.y11f{bottom:497.291791px;}
.y135{bottom:497.292691px;}
.y1d{bottom:504.687750px;}
.yd8{bottom:505.427914px;}
.ye5{bottom:505.428964px;}
.y22b{bottom:505.441050px;}
.y20e{bottom:506.294337px;}
.y15c{bottom:507.666150px;}
.y220{bottom:509.763750px;}
.y80{bottom:512.078700px;}
.y5d{bottom:512.078850px;}
.y1e6{bottom:515.958300px;}
.y21e{bottom:522.329250px;}
.y1c{bottom:524.487750px;}
.y14e{bottom:527.944050px;}
.y1c4{bottom:529.556550px;}
.y1cc{bottom:529.557750px;}
.y156{bottom:529.801650px;}
.y157{bottom:530.251950px;}
.y195{bottom:530.481150px;}
.y7f{bottom:533.078700px;}
.y5c{bottom:533.078850px;}
.y116{bottom:534.638550px;}
.y21c{bottom:534.907284px;}
.y1d6{bottom:536.713500px;}
.y1a4{bottom:540.806700px;}
.ydf{bottom:540.862950px;}
.y114{bottom:540.970650px;}
.y1c0{bottom:542.727150px;}
.yd0{bottom:543.562200px;}
.y1b{bottom:544.287750px;}
.y1c7{bottom:544.923805px;}
.ycf{bottom:546.727500px;}
.y21b{bottom:547.472700px;}
.y1d8{bottom:548.250750px;}
.y194{bottom:549.737700px;}
.y7e{bottom:554.078700px;}
.y5b{bottom:554.078850px;}
.y219{bottom:560.037750px;}
.y1a{bottom:564.087750px;}
.y124{bottom:565.376850px;}
.y1da{bottom:568.250070px;}
.y1db{bottom:570.386361px;}
.y20f{bottom:574.973456px;}
.y7d{bottom:575.078700px;}
.y5a{bottom:575.078850px;}
.y196{bottom:575.634510px;}
.ydd{bottom:577.116300px;}
.yea{bottom:577.117350px;}
.y218{bottom:578.429850px;}
.y158{bottom:580.477053px;}
.y1a3{bottom:583.767600px;}
.y1af{bottom:583.768650px;}
.y19{bottom:583.887750px;}
.y142{bottom:586.886922px;}
.y130{bottom:586.889754px;}
.ye0{bottom:587.532489px;}
.y1a5{bottom:587.586870px;}
.y117{bottom:588.558713px;}
.y1e5{bottom:589.420350px;}
.ya1{bottom:589.441050px;}
.y160{bottom:591.374834px;}
.yd1{bottom:592.743948px;}
.y7c{bottom:596.078700px;}
.y59{bottom:596.078850px;}
.y141{bottom:596.752176px;}
.y12f{bottom:596.755008px;}
.y1c8{bottom:599.773653px;}
.y1d9{bottom:600.048989px;}
.y18{bottom:603.687750px;}
.y140{bottom:606.617430px;}
.y12e{bottom:606.620262px;}
.y13f{bottom:616.482684px;}
.y12d{bottom:616.485516px;}
.y7b{bottom:617.078700px;}
.y58{bottom:617.078850px;}
.y197{bottom:620.776803px;}
.y1c1{bottom:622.508747px;}
.y17{bottom:623.487750px;}
.y13e{bottom:626.347938px;}
.y12c{bottom:626.350770px;}
.y165{bottom:627.366750px;}
.y159{bottom:630.702156px;}
.y16d{bottom:631.440900px;}
.ye1{bottom:634.190961px;}
.y13d{bottom:636.213192px;}
.y12b{bottom:636.216024px;}
.y7a{bottom:638.078700px;}
.y57{bottom:638.078850px;}
.yd2{bottom:641.925696px;}
.y118{bottom:642.478877px;}
.y16{bottom:643.287750px;}
.y210{bottom:643.652574px;}
.y1a6{bottom:644.692590px;}
.y13c{bottom:646.078446px;}
.y12a{bottom:646.081278px;}
.y161{bottom:652.510259px;}
.y1c9{bottom:654.611158px;}
.y13b{bottom:655.943700px;}
.y129{bottom:655.946532px;}
.y1d1{bottom:656.685450px;}
.y1e7{bottom:659.078700px;}
.y56{bottom:659.078850px;}
.y15{bottom:663.087750px;}
.y128{bottom:665.819742px;}
.y198{bottom:665.919096px;}
.y79{bottom:673.440900px;}
.y127{bottom:675.684996px;}
.yc3{bottom:677.837250px;}
.y16c{bottom:680.078700px;}
.y55{bottom:680.078850px;}
.ye2{bottom:680.860500px;}
.y15a{bottom:680.927259px;}
.y108{bottom:682.663200px;}
.y14{bottom:682.887750px;}
.y126{bottom:685.550250px;}
.yd3{bottom:691.107444px;}
.y186{bottom:693.608250px;}
.y14f{bottom:695.587350px;}
.y119{bottom:696.399040px;}
.y125{bottom:699.114000px;}
.y16b{bottom:701.078700px;}
.y54{bottom:701.078850px;}
.y1a7{bottom:701.798310px;}
.y1c2{bottom:702.278001px;}
.y13{bottom:702.687750px;}
.y1ca{bottom:709.448664px;}
.y199{bottom:711.072456px;}
.y162{bottom:713.645684px;}
.y78{bottom:722.078700px;}
.y53{bottom:722.078850px;}
.y12{bottom:722.487750px;}
.y20b{bottom:722.906850px;}
.ye3{bottom:727.518972px;}
.y15b{bottom:731.152362px;}
.y22a{bottom:736.441050px;}
.yd4{bottom:740.278125px;}
.y11{bottom:742.287750px;}
.y77{bottom:743.078700px;}
.y52{bottom:743.078850px;}
.y1fd{bottom:743.662500px;}
.y1f6{bottom:745.878000px;}
.y11a{bottom:750.319204px;}
.y1ff{bottom:757.119750px;}
.y76{bottom:764.078700px;}
.y51{bottom:764.078850px;}
.y1cb{bottom:764.298512px;}
.y1d2{bottom:764.524362px;}
.y1f5{bottom:765.678000px;}
.yde{bottom:770.214150px;}
.y131{bottom:772.974750px;}
.y10{bottom:773.385150px;}
.y163{bottom:774.781109px;}
.y201{bottom:780.429540px;}
.y1c5{bottom:781.221750px;}
.y202{bottom:782.932320px;}
.y75{bottom:785.078700px;}
.y50{bottom:785.078850px;}
.y1e4{bottom:785.910540px;}
.y1ed{bottom:786.433500px;}
.y15f{bottom:794.997750px;}
.y18e{bottom:796.289037px;}
.y17f{bottom:796.291148px;}
.y192{bottom:797.744357px;}
.y183{bottom:797.762116px;}
.y1ef{bottom:802.943850px;}
.y18d{bottom:804.809700px;}
.y74{bottom:806.078700px;}
.y4f{bottom:806.078850px;}
.y10a{bottom:808.606545px;}
.yf5{bottom:808.616308px;}
.y1b9{bottom:808.980150px;}
.y10e{bottom:809.928364px;}
.yf9{bottom:809.938127px;}
.y1e3{bottom:810.609420px;}
.yc9{bottom:812.054962px;}
.ybc{bottom:812.066247px;}
.y17e{bottom:812.197950px;}
.ycd{bottom:813.502457px;}
.yc0{bottom:813.521567px;}
.y109{bottom:816.263250px;}
.y200{bottom:817.525830px;}
.y1f1{bottom:819.264096px;}
.yc8{bottom:820.567800px;}
.y190{bottom:820.872988px;}
.y181{bottom:820.882923px;}
.y1f2{bottom:821.498190px;}
.y193{bottom:822.703874px;}
.y184{bottom:822.721633px;}
.y14c{bottom:823.753350px;}
.yf4{bottom:826.242900px;}
.y73{bottom:827.078700px;}
.y4e{bottom:827.078850px;}
.ybb{bottom:827.957400px;}
.y10c{bottom:830.711852px;}
.yf7{bottom:830.721615px;}
.y191{bottom:832.093034px;}
.y182{bottom:832.102969px;}
.y10f{bottom:832.378187px;}
.yfa{bottom:832.380919px;}
.y1b5{bottom:832.665300px;}
.y1e2{bottom:835.308300px;}
.ycb{bottom:836.631088px;}
.ybe{bottom:836.650197px;}
.yce{bottom:838.461974px;}
.yc1{bottom:838.481083px;}
.y14b{bottom:840.758550px;}
.y10d{bottom:840.794235px;}
.yf8{bottom:840.803997px;}
.y23c{bottom:841.440900px;}
.ycc{bottom:847.851134px;}
.ybf{bottom:847.870243px;}
.y16a{bottom:848.078700px;}
.y4d{bottom:848.078850px;}
.y18f{bottom:848.242389px;}
.y180{bottom:848.244500px;}
.y1f0{bottom:852.368447px;}
.ya{bottom:852.666900px;}
.y10b{bottom:855.299084px;}
.yf6{bottom:855.308847px;}
.y1e1{bottom:860.007180px;}
.yaf{bottom:862.441050px;}
.y145{bottom:862.892850px;}
.y146{bottom:863.331600px;}
.yca{bottom:863.992665px;}
.ybd{bottom:864.003950px;}
.y1f8{bottom:868.950750px;}
.y4c{bottom:869.078850px;}
.y9{bottom:870.666900px;}
.y1ba{bottom:872.136750px;}
.y1d3{bottom:872.350410px;}
.ya0{bottom:879.289950px;}
.y1e0{bottom:884.706060px;}
.y8{bottom:888.666900px;}
.y178{bottom:889.051500px;}
.y23b{bottom:890.078700px;}
.y4b{bottom:890.078850px;}
.y1e9{bottom:891.028050px;}
.yed{bottom:892.648800px;}
.y176{bottom:895.688400px;}
.yae{bottom:895.858500px;}
.yb5{bottom:897.418050px;}
.y9f{bottom:898.069500px;}
.y1bc{bottom:898.475243px;}
.y187{bottom:898.845750px;}
.y177{bottom:899.298450px;}
.y1e8{bottom:899.718000px;}
.yc4{bottom:904.102500px;}
.yb4{bottom:905.296650px;}
.y7{bottom:906.666900px;}
.y1df{bottom:909.404940px;}
.y23a{bottom:911.078700px;}
.y4a{bottom:911.078850px;}
.y1b6{bottom:912.434554px;}
.y147{bottom:914.309139px;}
.y175{bottom:914.893050px;}
.yad{bottom:915.063150px;}
.y9e{bottom:916.849050px;}
.y150{bottom:918.309590px;}
.y1f9{bottom:923.025750px;}
.yfb{bottom:923.388150px;}
.y6{bottom:924.666900px;}
.y49{bottom:932.078850px;}
.y174{bottom:934.097850px;}
.y1de{bottom:934.103820px;}
.yac{bottom:934.267950px;}
.y9d{bottom:935.628450px;}
.yc2{bottom:935.687850px;}
.y239{bottom:937.529250px;}
.y185{bottom:942.339000px;}
.y189{bottom:942.803919px;}
.y107{bottom:944.900304px;}
.y179{bottom:945.626004px;}
.yee{bottom:946.568963px;}
.y209{bottom:949.425900px;}
.y48{bottom:953.078850px;}
.y173{bottom:953.302500px;}
.yab{bottom:953.472600px;}
.y9c{bottom:954.408000px;}
.y106{bottom:954.765558px;}
.y1dd{bottom:958.802700px;}
.y5{bottom:959.674650px;}
.y155{bottom:960.446550px;}
.y1ea{bottom:963.439818px;}
.y1bd{bottom:964.285187px;}
.yb6{bottom:964.295931px;}
.y207{bottom:964.305300px;}
.y105{bottom:964.630812px;}
.y148{bottom:965.274137px;}
.yc5{bottom:970.991448px;}
.y172{bottom:972.507300px;}
.yaa{bottom:972.677400px;}
.y9b{bottom:973.187550px;}
.y151{bottom:973.287581px;}
.y238{bottom:974.078700px;}
.y47{bottom:974.078850px;}
.y104{bottom:974.496066px;}
.y1fa{bottom:977.115750px;}
.y206{bottom:979.185300px;}
.y115{bottom:979.426800px;}
.y4{bottom:979.474800px;}
.y1d4{bottom:980.176458px;}
.y103{bottom:984.361320px;}
.y113{bottom:989.291892px;}
.y171{bottom:991.712100px;}
.ya9{bottom:991.882200px;}
.y9a{bottom:991.967100px;}
.y1b7{bottom:992.203809px;}
.y205{bottom:994.065300px;}
.y102{bottom:994.226574px;}
.y237{bottom:995.078700px;}
.y46{bottom:995.078850px;}
.y18a{bottom:996.545271px;}
.y112{bottom:999.157146px;}
.yef{bottom:1000.489127px;}
.y17a{bottom:1002.200508px;}
.y101{bottom:1004.091828px;}
.y111{bottom:1009.022400px;}
.y170{bottom:1010.916750px;}
.y99{bottom:1011.046650px;}
.ya8{bottom:1011.086850px;}
.y100{bottom:1013.957082px;}
.y204{bottom:1015.860750px;}
.y236{bottom:1016.078700px;}
.y45{bottom:1016.078850px;}
.y149{bottom:1016.239136px;}
.y3{bottom:1016.282550px;}
.y110{bottom:1022.596950px;}
.yff{bottom:1023.830292px;}
.y152{bottom:1028.265571px;}
.y98{bottom:1029.400950px;}
.y1be{bottom:1030.095130px;}
.ya7{bottom:1030.291500px;}
.y16f{bottom:1030.421400px;}
.yb7{bottom:1031.184879px;}
.y1fb{bottom:1031.190750px;}
.yfe{bottom:1033.695546px;}
.y1eb{bottom:1035.851586px;}
.y235{bottom:1037.078700px;}
.y44{bottom:1037.078850px;}
.yc6{bottom:1037.869329px;}
.yfd{bottom:1043.560800px;}
.y16e{bottom:1049.200950px;}
.y2{bottom:1049.282550px;}
.ya6{bottom:1049.496300px;}
.y18b{bottom:1050.297690px;}
.yf0{bottom:1054.409290px;}
.yfc{bottom:1057.124850px;}
.y234{bottom:1058.078700px;}
.y43{bottom:1058.078850px;}
.y17b{bottom:1058.775012px;}
.y97{bottom:1059.882900px;}
.y14a{bottom:1067.204134px;}
.ya5{bottom:1069.001100px;}
.y1b8{bottom:1071.973063px;}
.y233{bottom:1079.078700px;}
.y42{bottom:1079.078850px;}
.y96{bottom:1079.682900px;}
.y153{bottom:1083.231021px;}
.y1fc{bottom:1085.280750px;}
.y1d5{bottom:1088.015370px;}
.y240{bottom:1092.029250px;}
.y1bf{bottom:1095.905074px;}
.yb8{bottom:1098.062760px;}
.y95{bottom:1099.482900px;}
.y232{bottom:1100.078700px;}
.y41{bottom:1100.078850px;}
.y18c{bottom:1104.039042px;}
.yc7{bottom:1104.758277px;}
.y1ec{bottom:1108.263354px;}
.yf1{bottom:1108.329454px;}
.yf{bottom:1109.815500px;}
.y229{bottom:1113.696900px;}
.yb0{bottom:1114.821900px;}
.y94{bottom:1119.282900px;}
.y40{bottom:1121.078850px;}
.y1bb{bottom:1123.800000px;}
.y23f{bottom:1124.326800px;}
.y231{bottom:1125.451650px;}
.y3c{bottom:1155.615300px;}
.y3b{bottom:1175.115300px;}
.y3f{bottom:1178.691750px;}
.h15{height:22.558973px;}
.h20{height:23.167435px;}
.h33{height:27.293448px;}
.h2d{height:28.753234px;}
.h1d{height:28.954787px;}
.h1b{height:28.958966px;}
.h27{height:29.214931px;}
.h45{height:29.508461px;}
.h1f{height:31.854950px;}
.h18{height:32.221953px;}
.h16{height:32.227104px;}
.h6{height:34.446094px;}
.h1e{height:34.750934px;}
.h3e{height:34.944000px;}
.h2a{height:35.941214px;}
.h23{height:36.518227px;}
.h42{height:36.880244px;}
.h40{height:36.885576px;}
.h30{height:37.436817px;}
.h2e{height:37.459968px;}
.h21{height:37.646918px;}
.h2{height:38.039062px;}
.h12{height:38.226562px;}
.h28{height:38.270086px;}
.hf{height:38.273438px;}
.h14{height:38.507812px;}
.h5{height:38.531250px;}
.h19{height:38.672525px;}
.h36{height:38.984845px;}
.h34{height:38.990952px;}
.h22{height:39.728880px;}
.h44{height:40.574352px;}
.he{height:42.793945px;}
.h7{height:43.004883px;}
.hd{height:43.057617px;}
.h2b{height:43.129632px;}
.h9{height:43.321289px;}
.h3b{height:43.673404px;}
.h39{height:43.680000px;}
.h24{height:43.821960px;}
.h13{height:44.039062px;}
.h43{height:44.262691px;}
.h1a{height:45.117946px;}
.h8{height:45.615234px;}
.h31{height:45.784066px;}
.h2c{height:46.723622px;}
.h37{height:46.789142px;}
.h26{height:47.474045px;}
.h46{height:47.951467px;}
.h3d{height:48.048000px;}
.hc{height:48.134766px;}
.ha{height:49.543945px;}
.h11{height:50.176758px;}
.h38{height:50.688019px;}
.h3c{height:52.416000px;}
.h4{height:52.948242px;}
.h32{height:54.108600px;}
.hb{height:54.738281px;}
.h10{height:55.048828px;}
.h3f{height:56.784000px;}
.h3{height:81.231445px;}
.h35{height:355.645500px;}
.h3a{height:398.416500px;}
.h41{height:427.644000px;}
.h2f{height:605.365500px;}
.h17{height:691.132500px;}
.h1c{height:693.757500px;}
.h29{height:706.903500px;}
.h25{height:709.576500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w6{width:566.007000px;}
.w5{width:604.006500px;}
.w7{width:625.866000px;}
.w4{width:706.539000px;}
.w3{width:706.597500px;}
.w2{width:710.929500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:6.713700px;}
.x51{left:7.970700px;}
.x66{left:12.914250px;}
.x9b{left:15.445350px;}
.x98{left:21.264450px;}
.x52{left:28.755600px;}
.x9f{left:31.776900px;}
.x92{left:34.032750px;}
.x20{left:41.044500px;}
.x96{left:42.481650px;}
.x46{left:45.085800px;}
.x2d{left:46.221900px;}
.x9e{left:47.590500px;}
.x67{left:50.599050px;}
.x8f{left:52.942050px;}
.x2{left:73.984200px;}
.xa{left:107.068950px;}
.xc{left:108.286950px;}
.x3d{left:110.166000px;}
.xf{left:112.251900px;}
.x5{left:119.576400px;}
.x6{left:121.047600px;}
.x18{left:122.101800px;}
.x7{left:123.420750px;}
.x1f{left:124.552350px;}
.x3e{left:126.177000px;}
.x62{left:127.661400px;}
.x16{left:130.783548px;}
.x80{left:132.043298px;}
.x3f{left:133.735271px;}
.x63{left:134.985110px;}
.x15{left:136.936800px;}
.x7f{left:138.905700px;}
.x2c{left:143.090100px;}
.x53{left:145.560450px;}
.x19{left:149.432080px;}
.x97{left:150.532500px;}
.x82{left:151.852650px;}
.x32{left:155.197350px;}
.x6e{left:158.599050px;}
.x7e{left:160.536900px;}
.x2e{left:161.611050px;}
.x73{left:164.292600px;}
.x14{left:167.448750px;}
.x64{left:171.867300px;}
.x2b{left:173.093100px;}
.x81{left:178.142700px;}
.x91{left:180.462000px;}
.x8b{left:182.329500px;}
.x87{left:183.721500px;}
.x12{left:185.755200px;}
.x11{left:192.795300px;}
.x8c{left:197.817450px;}
.x10{left:200.500350px;}
.x13{left:202.908600px;}
.x40{left:205.612673px;}
.x61{left:209.276100px;}
.x54{left:214.041903px;}
.x55{left:217.894864px;}
.x93{left:227.931450px;}
.x42{left:235.838727px;}
.x41{left:241.505673px;}
.x1a{left:244.622514px;}
.x2f{left:248.554672px;}
.x57{left:253.984730px;}
.x56{left:256.410408px;}
.x1b{left:260.490194px;}
.x30{left:263.577328px;}
.x72{left:272.292600px;}
.x65{left:281.723100px;}
.x43{left:283.466382px;}
.x74{left:291.216600px;}
.x90{left:292.517250px;}
.xa0{left:298.847119px;}
.x4{left:300.189000px;}
.xe{left:304.440900px;}
.x1c{left:314.947322px;}
.xb{left:317.196900px;}
.x1d{left:323.835727px;}
.x31{left:325.232812px;}
.x8d{left:340.939856px;}
.x44{left:353.013300px;}
.xa1{left:367.150336px;}
.x45{left:368.328300px;}
.x8a{left:371.562150px;}
.x58{left:376.333800px;}
.x75{left:386.600850px;}
.x1e{left:392.047974px;}
.x2a{left:393.461250px;}
.x3{left:396.050700px;}
.x36{left:400.000650px;}
.x94{left:401.991986px;}
.x50{left:403.097250px;}
.x7d{left:405.767700px;}
.x6d{left:411.771150px;}
.x99{left:428.229780px;}
.x23{left:467.640600px;}
.xa2{left:468.866338px;}
.x35{left:473.283600px;}
.x47{left:478.833450px;}
.x85{left:480.867600px;}
.x6c{left:482.085300px;}
.x29{left:483.123300px;}
.x83{left:487.507800px;}
.x22{left:489.354000px;}
.x88{left:494.370150px;}
.x34{left:495.507150px;}
.x86{left:500.455200px;}
.x78{left:501.660450px;}
.xd{left:503.915400px;}
.x3c{left:507.614550px;}
.x59{left:508.635000px;}
.x70{left:511.706250px;}
.x60{left:513.263250px;}
.x37{left:515.389050px;}
.x71{left:519.771150px;}
.x21{left:522.532800px;}
.x33{left:526.018800px;}
.x84{left:528.028350px;}
.x69{left:531.307200px;}
.x89{left:533.607000px;}
.x9a{left:542.275950px;}
.x8{left:568.512600px;}
.x5a{left:580.280380px;}
.x48{left:583.664914px;}
.x5b{left:587.283207px;}
.x49{left:591.982528px;}
.xa3{left:597.934800px;}
.x24{left:599.260975px;}
.x38{left:603.193345px;}
.x79{left:607.117856px;}
.x25{left:615.997152px;}
.xa4{left:617.441550px;}
.x39{left:619.061025px;}
.x95{left:620.431473px;}
.x7a{left:622.140512px;}
.x5c{left:628.962678px;}
.x68{left:631.507200px;}
.x4a{left:634.969757px;}
.x4b{left:637.008732px;}
.x6b{left:642.894150px;}
.x6f{left:645.340800px;}
.x76{left:646.355550px;}
.x8e{left:653.964450px;}
.x26{left:671.314953px;}
.x3a{left:673.518153px;}
.x7b{left:675.752615px;}
.x9{left:678.264600px;}
.x27{left:681.064031px;}
.x3b{left:682.398733px;}
.x5d{left:683.740810px;}
.x9c{left:691.263750px;}
.x4c{left:692.349340px;}
.x4f{left:702.553950px;}
.x6a{left:703.954500px;}
.xa5{left:705.293550px;}
.x9d{left:714.363750px;}
.x28{left:750.121303px;}
.x7c{left:751.131921px;}
.x5e{left:757.097850px;}
.x4d{left:766.505550px;}
.x5f{left:772.423800px;}
.x4e{left:781.821600px;}
.x77{left:790.269450px;}
.x1{left:801.350850px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:14.208000pt;}
.v4{vertical-align:15.984000pt;}
.v3{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.ls3e{letter-spacing:-7.616000pt;}
.ls44{letter-spacing:-4.287554pt;}
.ls2e{letter-spacing:-4.244905pt;}
.lse{letter-spacing:-2.666667pt;}
.ls32{letter-spacing:-2.360960pt;}
.ls3c{letter-spacing:-1.794814pt;}
.ls40{letter-spacing:-1.386667pt;}
.ls42{letter-spacing:-1.080896pt;}
.ls10{letter-spacing:-1.066667pt;}
.ls2f{letter-spacing:-1.034473pt;}
.ls18{letter-spacing:-0.906667pt;}
.ls46{letter-spacing:-0.900747pt;}
.ls3b{letter-spacing:-0.853333pt;}
.ls22{letter-spacing:-0.848624pt;}
.ls28{letter-spacing:-0.820337pt;}
.ls47{letter-spacing:-0.720597pt;}
.ls33{letter-spacing:-0.708288pt;}
.ls4c{letter-spacing:-0.624000pt;}
.ls7{letter-spacing:-0.614400pt;}
.ls13{letter-spacing:-0.597333pt;}
.ls37{letter-spacing:-0.586667pt;}
.ls27{letter-spacing:-0.565749pt;}
.ls45{letter-spacing:-0.540448pt;}
.lsf{letter-spacing:-0.533333pt;}
.ls4d{letter-spacing:-0.528000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.426667pt;}
.ls14{letter-spacing:-0.384000pt;}
.ls4f{letter-spacing:-0.336000pt;}
.ls6{letter-spacing:-0.293333pt;}
.ls19{letter-spacing:-0.266667pt;}
.ls12{letter-spacing:-0.213333pt;}
.ls21{letter-spacing:-0.194475pt;}
.ls3d{letter-spacing:-0.053333pt;}
.ls4e{letter-spacing:-0.048000pt;}
.ls25{letter-spacing:-0.028287pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.001067pt;}
.ls2{letter-spacing:0.010667pt;}
.ls3{letter-spacing:0.022933pt;}
.ls16{letter-spacing:0.093280pt;}
.ls15{letter-spacing:0.160000pt;}
.ls48{letter-spacing:0.213333pt;}
.ls26{letter-spacing:0.396025pt;}
.lsd{letter-spacing:0.404213pt;}
.ls50{letter-spacing:0.480000pt;}
.ls36{letter-spacing:0.491508pt;}
.ls43{letter-spacing:0.504418pt;}
.lsb{letter-spacing:0.513813pt;}
.ls4a{letter-spacing:0.533333pt;}
.ls3a{letter-spacing:0.640341pt;}
.ls24{letter-spacing:0.678899pt;}
.lsc{letter-spacing:0.693333pt;}
.ls17{letter-spacing:0.746667pt;}
.ls11{letter-spacing:0.800000pt;}
.ls0{letter-spacing:0.846400pt;}
.ls2d{letter-spacing:0.856115pt;}
.lsa{letter-spacing:0.906667pt;}
.ls4b{letter-spacing:0.960000pt;}
.ls3f{letter-spacing:0.970667pt;}
.ls49{letter-spacing:1.013333pt;}
.ls39{letter-spacing:1.326421pt;}
.ls23{letter-spacing:1.654806pt;}
.ls41{letter-spacing:2.107747pt;}
.ls38{letter-spacing:2.180194pt;}
.ls1{letter-spacing:37.919435pt;}
.ls1f{letter-spacing:97.066935pt;}
.ls35{letter-spacing:97.094480pt;}
.ls20{letter-spacing:108.580550pt;}
.ls1a{letter-spacing:111.610449pt;}
.ls34{letter-spacing:116.237931pt;}
.ls1e{letter-spacing:118.469038pt;}
.ls1d{letter-spacing:118.496582pt;}
.ls1b{letter-spacing:119.295374pt;}
.ls1c{letter-spacing:129.982653pt;}
.ls2a{letter-spacing:174.921862pt;}
.ls29{letter-spacing:174.966451pt;}
.ls31{letter-spacing:196.985856pt;}
.ls30{letter-spacing:196.986389pt;}
.ls2b{letter-spacing:198.197216pt;}
.ls2c{letter-spacing:234.358733pt;}
.wsf6{word-spacing:-234.358733pt;}
.wsec{word-spacing:-210.592902pt;}
.wse6{word-spacing:-187.362138pt;}
.wse9{word-spacing:-187.317549pt;}
.wsd5{word-spacing:-129.982653pt;}
.wscc{word-spacing:-126.952754pt;}
.wsce{word-spacing:-126.153963pt;}
.wsd0{word-spacing:-126.126418pt;}
.ws116{word-spacing:-123.895311pt;}
.wscb{word-spacing:-119.267829pt;}
.wsd3{word-spacing:-116.237931pt;}
.ws117{word-spacing:-104.751860pt;}
.wsd2{word-spacing:-104.724316pt;}
.ws119{word-spacing:-97.066935pt;}
.ws135{word-spacing:-20.245333pt;}
.ws136{word-spacing:-17.888000pt;}
.ws120{word-spacing:-17.721061pt;}
.ws138{word-spacing:-17.132202pt;}
.ws3{word-spacing:-15.936000pt;}
.ws128{word-spacing:-15.410643pt;}
.ws132{word-spacing:-14.824428pt;}
.wsbb{word-spacing:-14.608000pt;}
.ws122{word-spacing:-14.041771pt;}
.ws54{word-spacing:-13.920000pt;}
.ws139{word-spacing:-13.772491pt;}
.wsda{word-spacing:-13.450606pt;}
.ws9e{word-spacing:-13.386667pt;}
.ws123{word-spacing:-13.355691pt;}
.ws2{word-spacing:-13.280000pt;}
.ws127{word-spacing:-13.232951pt;}
.ws9f{word-spacing:-13.226667pt;}
.ws11e{word-spacing:-13.066667pt;}
.ws121{word-spacing:-12.715349pt;}
.ws11f{word-spacing:-12.707491pt;}
.wsc9{word-spacing:-12.533333pt;}
.ws137{word-spacing:-12.518569pt;}
.ws114{word-spacing:-12.418650pt;}
.ws125{word-spacing:-12.213333pt;}
.ws15f{word-spacing:-11.904000pt;}
.ws134{word-spacing:-11.861333pt;}
.ws17d{word-spacing:-11.856000pt;}
.ws172{word-spacing:-11.760000pt;}
.ws17e{word-spacing:-11.568000pt;}
.ws17c{word-spacing:-11.376000pt;}
.ws167{word-spacing:-11.280000pt;}
.wscd{word-spacing:-10.937366pt;}
.ws5{word-spacing:-10.800000pt;}
.wsef{word-spacing:-10.772783pt;}
.ws113{word-spacing:-10.765978pt;}
.ws89{word-spacing:-10.624000pt;}
.wsd7{word-spacing:-10.618317pt;}
.ws13b{word-spacing:-10.520721pt;}
.ws4{word-spacing:-10.464000pt;}
.ws11b{word-spacing:-10.251458pt;}
.ws133{word-spacing:-10.176000pt;}
.ws13e{word-spacing:-10.016303pt;}
.ws95{word-spacing:-9.984000pt;}
.wsee{word-spacing:-9.916668pt;}
.wsd6{word-spacing:-9.828365pt;}
.ws0{word-spacing:-9.685333pt;}
.ws13d{word-spacing:-9.475855pt;}
.ws140{word-spacing:-9.295706pt;}
.ws13f{word-spacing:-9.115556pt;}
.ws13a{word-spacing:-8.935407pt;}
.wsf1{word-spacing:-8.882195pt;}
.ws1{word-spacing:-8.371200pt;}
.ws53{word-spacing:-8.115360pt;}
.wsa0{word-spacing:-7.804427pt;}
.ws55{word-spacing:-7.711147pt;}
.wsf8{word-spacing:-6.940032pt;}
.ws13c{word-spacing:-5.728749pt;}
.wsf0{word-spacing:-5.671763pt;}
.ws3b{word-spacing:-4.160000pt;}
.ws196{word-spacing:-4.128000pt;}
.ws180{word-spacing:-3.312000pt;}
.ws141{word-spacing:-3.306667pt;}
.ws142{word-spacing:-2.986667pt;}
.ws80{word-spacing:-2.933333pt;}
.ws41{word-spacing:-2.880000pt;}
.ws198{word-spacing:-2.832000pt;}
.ws185{word-spacing:-2.784000pt;}
.ws143{word-spacing:-2.773333pt;}
.ws2b{word-spacing:-2.720000pt;}
.wsb2{word-spacing:-2.613333pt;}
.ws129{word-spacing:-2.560000pt;}
.ws81{word-spacing:-2.506667pt;}
.ws7e{word-spacing:-2.400000pt;}
.ws181{word-spacing:-2.352000pt;}
.ws156{word-spacing:-2.346667pt;}
.ws32{word-spacing:-2.293333pt;}
.ws118{word-spacing:-2.240000pt;}
.ws12f{word-spacing:-2.186667pt;}
.wsd4{word-spacing:-2.133333pt;}
.ws1a{word-spacing:-2.112000pt;}
.ws130{word-spacing:-2.080000pt;}
.ws38{word-spacing:-2.026667pt;}
.ws37{word-spacing:-1.973333pt;}
.wsb{word-spacing:-1.968000pt;}
.ws16b{word-spacing:-1.920000pt;}
.wsc5{word-spacing:-1.866667pt;}
.ws19a{word-spacing:-1.824000pt;}
.ws6c{word-spacing:-1.813333pt;}
.ws171{word-spacing:-1.776000pt;}
.wsc0{word-spacing:-1.706667pt;}
.ws15e{word-spacing:-1.680000pt;}
.ws150{word-spacing:-1.600000pt;}
.ws25{word-spacing:-1.546667pt;}
.ws19b{word-spacing:-1.488000pt;}
.ws6f{word-spacing:-1.440000pt;}
.ws17{word-spacing:-1.392000pt;}
.ws33{word-spacing:-1.386667pt;}
.ws45{word-spacing:-1.280000pt;}
.ws9d{word-spacing:-1.237333pt;}
.ws2e{word-spacing:-1.226667pt;}
.ws169{word-spacing:-1.200000pt;}
.ws63{word-spacing:-1.173333pt;}
.wsf7{word-spacing:-1.152000pt;}
.ws60{word-spacing:-1.120000pt;}
.ws12b{word-spacing:-1.066667pt;}
.ws44{word-spacing:-1.013333pt;}
.ws177{word-spacing:-1.008000pt;}
.ws1b{word-spacing:-0.960000pt;}
.ws17a{word-spacing:-0.912000pt;}
.ws42{word-spacing:-0.906667pt;}
.ws186{word-spacing:-0.864000pt;}
.wsad{word-spacing:-0.853333pt;}
.ws43{word-spacing:-0.800000pt;}
.wsaf{word-spacing:-0.746667pt;}
.wsc{word-spacing:-0.720000pt;}
.wsdb{word-spacing:-0.707187pt;}
.ws5d{word-spacing:-0.693333pt;}
.ws131{word-spacing:-0.672000pt;}
.ws6b{word-spacing:-0.640000pt;}
.ws170{word-spacing:-0.624000pt;}
.ws14d{word-spacing:-0.586667pt;}
.ws3c{word-spacing:-0.533333pt;}
.ws151{word-spacing:-0.480000pt;}
.ws15c{word-spacing:-0.432000pt;}
.wsbf{word-spacing:-0.426667pt;}
.wsdc{word-spacing:-0.424312pt;}
.wse3{word-spacing:-0.396025pt;}
.ws23{word-spacing:-0.373333pt;}
.ws191{word-spacing:-0.336000pt;}
.ws158{word-spacing:-0.320000pt;}
.ws2f{word-spacing:-0.266667pt;}
.wsc4{word-spacing:-0.213333pt;}
.ws8{word-spacing:-0.192000pt;}
.wsa5{word-spacing:-0.160000pt;}
.ws195{word-spacing:-0.096000pt;}
.ws2a{word-spacing:-0.053333pt;}
.wsd8{word-spacing:-0.028287pt;}
.ws6{word-spacing:0.000000pt;}
.wse2{word-spacing:0.028287pt;}
.ws174{word-spacing:0.048000pt;}
.ws83{word-spacing:0.053333pt;}
.ws4d{word-spacing:0.106667pt;}
.ws16f{word-spacing:0.144000pt;}
.ws46{word-spacing:0.160000pt;}
.ws9c{word-spacing:0.213333pt;}
.ws17b{word-spacing:0.240000pt;}
.ws72{word-spacing:0.266667pt;}
.ws19c{word-spacing:0.288000pt;}
.ws7f{word-spacing:0.320000pt;}
.ws184{word-spacing:0.336000pt;}
.ws77{word-spacing:0.373333pt;}
.ws189{word-spacing:0.384000pt;}
.ws2c{word-spacing:0.426667pt;}
.wsa{word-spacing:0.480000pt;}
.ws17f{word-spacing:0.528000pt;}
.ws21{word-spacing:0.533333pt;}
.wsdd{word-spacing:0.537462pt;}
.ws7d{word-spacing:0.586667pt;}
.ws9{word-spacing:0.614400pt;}
.ws192{word-spacing:0.624000pt;}
.ws50{word-spacing:0.640000pt;}
.ws47{word-spacing:0.693333pt;}
.ws165{word-spacing:0.720000pt;}
.wsb0{word-spacing:0.746667pt;}
.wsde{word-spacing:0.792049pt;}
.ws6e{word-spacing:0.800000pt;}
.ws11d{word-spacing:0.816000pt;}
.wsd9{word-spacing:0.820337pt;}
.ws48{word-spacing:0.853333pt;}
.ws161{word-spacing:0.864000pt;}
.wsc1{word-spacing:0.906667pt;}
.wsa4{word-spacing:0.960000pt;}
.ws18c{word-spacing:1.008000pt;}
.wse4{word-spacing:1.056000pt;}
.ws78{word-spacing:1.066667pt;}
.ws14f{word-spacing:1.120000pt;}
.ws11{word-spacing:1.152000pt;}
.ws31{word-spacing:1.173333pt;}
.ws147{word-spacing:1.226667pt;}
.wsf2{word-spacing:1.280000pt;}
.ws18b{word-spacing:1.296000pt;}
.wsac{word-spacing:1.333333pt;}
.ws40{word-spacing:1.386667pt;}
.wsd{word-spacing:1.392000pt;}
.ws28{word-spacing:1.440000pt;}
.ws87{word-spacing:1.493333pt;}
.ws18a{word-spacing:1.536000pt;}
.ws66{word-spacing:1.546667pt;}
.ws166{word-spacing:1.584000pt;}
.wsc2{word-spacing:1.600000pt;}
.ws16e{word-spacing:1.632000pt;}
.ws12e{word-spacing:1.653333pt;}
.ws3e{word-spacing:1.706667pt;}
.ws187{word-spacing:1.728000pt;}
.ws70{word-spacing:1.760000pt;}
.ws6d{word-spacing:1.813333pt;}
.ws18f{word-spacing:1.824000pt;}
.ws73{word-spacing:1.866667pt;}
.ws18e{word-spacing:1.872000pt;}
.ws2d{word-spacing:1.920000pt;}
.ws1e{word-spacing:2.026667pt;}
.ws4b{word-spacing:2.080000pt;}
.ws15d{word-spacing:2.112000pt;}
.ws65{word-spacing:2.133333pt;}
.ws3a{word-spacing:2.186667pt;}
.ws164{word-spacing:2.208000pt;}
.ws71{word-spacing:2.240000pt;}
.ws75{word-spacing:2.293333pt;}
.ws7b{word-spacing:2.346667pt;}
.ws82{word-spacing:2.400000pt;}
.ws16a{word-spacing:2.448000pt;}
.ws29{word-spacing:2.453333pt;}
.ws162{word-spacing:2.496000pt;}
.wsc3{word-spacing:2.506667pt;}
.ws12c{word-spacing:2.560000pt;}
.ws112{word-spacing:2.592000pt;}
.ws4a{word-spacing:2.613333pt;}
.ws111{word-spacing:2.640000pt;}
.ws1f{word-spacing:2.666667pt;}
.ws7{word-spacing:2.698667pt;}
.ws6a{word-spacing:2.736000pt;}
.ws35{word-spacing:2.773333pt;}
.ws11a{word-spacing:2.784000pt;}
.wsa1{word-spacing:2.826667pt;}
.ws193{word-spacing:2.880000pt;}
.ws188{word-spacing:2.928000pt;}
.ws146{word-spacing:2.933333pt;}
.ws16c{word-spacing:2.976000pt;}
.ws88{word-spacing:3.040000pt;}
.ws97{word-spacing:3.093333pt;}
.ws5e{word-spacing:3.146667pt;}
.wsb3{word-spacing:3.200000pt;}
.ws67{word-spacing:3.253333pt;}
.ws194{word-spacing:3.264000pt;}
.wsc8{word-spacing:3.306667pt;}
.ws19{word-spacing:3.312000pt;}
.ws27{word-spacing:3.360000pt;}
.ws179{word-spacing:3.408000pt;}
.ws26{word-spacing:3.413333pt;}
.ws3f{word-spacing:3.466667pt;}
.ws163{word-spacing:3.504000pt;}
.wsb4{word-spacing:3.520000pt;}
.wse{word-spacing:3.552000pt;}
.ws39{word-spacing:3.573333pt;}
.ws12{word-spacing:3.600000pt;}
.ws36{word-spacing:3.626667pt;}
.wsdf{word-spacing:3.733333pt;}
.ws22{word-spacing:3.786667pt;}
.ws13{word-spacing:3.840000pt;}
.ws155{word-spacing:3.893333pt;}
.ws14{word-spacing:3.936000pt;}
.ws7c{word-spacing:3.946667pt;}
.ws98{word-spacing:4.000000pt;}
.ws15a{word-spacing:4.053333pt;}
.ws20{word-spacing:4.106667pt;}
.ws7a{word-spacing:4.320000pt;}
.wsb8{word-spacing:4.373333pt;}
.wsb6{word-spacing:4.480000pt;}
.ws199{word-spacing:4.512000pt;}
.ws5a{word-spacing:4.533333pt;}
.ws190{word-spacing:4.560000pt;}
.ws10f{word-spacing:4.586667pt;}
.ws14a{word-spacing:4.640000pt;}
.wsb1{word-spacing:4.693333pt;}
.ws4c{word-spacing:4.746667pt;}
.ws14c{word-spacing:4.800000pt;}
.wsa3{word-spacing:4.960000pt;}
.ws197{word-spacing:4.992000pt;}
.ws86{word-spacing:5.013333pt;}
.ws15{word-spacing:5.040000pt;}
.ws3d{word-spacing:5.120000pt;}
.ws52{word-spacing:5.173333pt;}
.ws4f{word-spacing:5.226667pt;}
.ws14b{word-spacing:5.493333pt;}
.ws18{word-spacing:5.520000pt;}
.ws34{word-spacing:5.546667pt;}
.ws16d{word-spacing:5.568000pt;}
.ws110{word-spacing:5.600000pt;}
.wsf3{word-spacing:5.653333pt;}
.ws61{word-spacing:5.706667pt;}
.wsa6{word-spacing:5.813333pt;}
.ws4e{word-spacing:5.920000pt;}
.wsa9{word-spacing:5.973333pt;}
.ws12d{word-spacing:6.026667pt;}
.ws30{word-spacing:6.080000pt;}
.ws99{word-spacing:6.133333pt;}
.ws79{word-spacing:6.186667pt;}
.ws176{word-spacing:6.192000pt;}
.wsae{word-spacing:6.240000pt;}
.ws18d{word-spacing:6.288000pt;}
.wse0{word-spacing:6.293333pt;}
.wsb7{word-spacing:6.346667pt;}
.ws12a{word-spacing:6.400000pt;}
.ws168{word-spacing:6.480000pt;}
.ws175{word-spacing:6.528000pt;}
.wsb9{word-spacing:6.560000pt;}
.wsbd{word-spacing:6.613333pt;}
.ws16{word-spacing:6.624000pt;}
.ws64{word-spacing:6.666667pt;}
.wsaa{word-spacing:6.720000pt;}
.wsf4{word-spacing:6.773333pt;}
.wsf5{word-spacing:6.826667pt;}
.ws10{word-spacing:6.864000pt;}
.ws9b{word-spacing:6.880000pt;}
.ws96{word-spacing:6.933333pt;}
.wsf{word-spacing:7.008000pt;}
.ws74{word-spacing:7.093333pt;}
.ws15b{word-spacing:7.200000pt;}
.ws5f{word-spacing:7.253333pt;}
.wsa7{word-spacing:7.360000pt;}
.wse1{word-spacing:7.413333pt;}
.ws144{word-spacing:7.520000pt;}
.ws154{word-spacing:7.573333pt;}
.ws159{word-spacing:7.626667pt;}
.ws24{word-spacing:7.680000pt;}
.ws182{word-spacing:7.728000pt;}
.ws49{word-spacing:7.733333pt;}
.ws14e{word-spacing:7.786667pt;}
.ws76{word-spacing:7.840000pt;}
.ws149{word-spacing:8.000000pt;}
.ws152{word-spacing:8.213333pt;}
.ws173{word-spacing:8.256000pt;}
.ws160{word-spacing:8.352000pt;}
.wsb5{word-spacing:8.373333pt;}
.wsc7{word-spacing:8.480000pt;}
.ws145{word-spacing:8.853333pt;}
.ws69{word-spacing:8.880000pt;}
.ws68{word-spacing:8.928000pt;}
.ws157{word-spacing:9.066667pt;}
.ws19e{word-spacing:9.120000pt;}
.ws183{word-spacing:9.168000pt;}
.wsc6{word-spacing:9.333333pt;}
.wsa2{word-spacing:9.440000pt;}
.wsbe{word-spacing:9.653333pt;}
.ws153{word-spacing:9.760000pt;}
.ws85{word-spacing:9.866667pt;}
.wsba{word-spacing:10.080000pt;}
.ws1d{word-spacing:10.800000pt;}
.ws1c{word-spacing:10.848000pt;}
.ws11c{word-spacing:10.880000pt;}
.ws62{word-spacing:11.040000pt;}
.ws9a{word-spacing:11.200000pt;}
.ws84{word-spacing:11.840000pt;}
.ws178{word-spacing:11.952000pt;}
.ws51{word-spacing:12.320000pt;}
.ws148{word-spacing:12.640000pt;}
.wsbc{word-spacing:13.120000pt;}
.ws10e{word-spacing:13.386667pt;}
.ws19d{word-spacing:13.728000pt;}
.ws124{word-spacing:16.586667pt;}
.ws5c{word-spacing:21.813333pt;}
.ws19f{word-spacing:22.032000pt;}
.ws5b{word-spacing:26.986667pt;}
.wsab{word-spacing:42.613333pt;}
.wsa8{word-spacing:43.253333pt;}
.ws115{word-spacing:89.409555pt;}
.wsd1{word-spacing:89.437100pt;}
.wsca{word-spacing:92.466998pt;}
.ws8e{word-spacing:104.252800pt;}
.wscf{word-spacing:110.811658pt;}
.ws8c{word-spacing:124.620267pt;}
.wsfe{word-spacing:131.134400pt;}
.wse8{word-spacing:136.486317pt;}
.ws108{word-spacing:143.134933pt;}
.ws100{word-spacing:143.155200pt;}
.wsff{word-spacing:143.194133pt;}
.ws101{word-spacing:148.360533pt;}
.wse5{word-spacing:149.550835pt;}
.ws10a{word-spacing:159.710400pt;}
.wseb{word-spacing:159.717082pt;}
.wsea{word-spacing:162.526176pt;}
.wse7{word-spacing:162.570765pt;}
.ws8f{word-spacing:165.080000pt;}
.wsfb{word-spacing:171.709867pt;}
.ws10b{word-spacing:172.350400pt;}
.ws105{word-spacing:181.516267pt;}
.wsf9{word-spacing:183.184000pt;}
.ws103{word-spacing:184.303467pt;}
.ws10c{word-spacing:184.314133pt;}
.ws102{word-spacing:184.317867pt;}
.wsfa{word-spacing:186.340267pt;}
.wsfc{word-spacing:193.505067pt;}
.wsfd{word-spacing:193.505600pt;}
.ws104{word-spacing:193.515733pt;}
.ws109{word-spacing:193.516267pt;}
.ws10d{word-spacing:193.537600pt;}
.ws56{word-spacing:195.340267pt;}
.wsed{word-spacing:195.967776pt;}
.ws58{word-spacing:201.423467pt;}
.ws90{word-spacing:203.929067pt;}
.ws106{word-spacing:205.484267pt;}
.ws107{word-spacing:205.505067pt;}
.ws8a{word-spacing:212.610667pt;}
.ws91{word-spacing:217.916800pt;}
.ws93{word-spacing:231.594133pt;}
.ws57{word-spacing:237.598400pt;}
.ws8b{word-spacing:238.194667pt;}
.ws8d{word-spacing:246.895467pt;}
.ws59{word-spacing:249.769067pt;}
.ws92{word-spacing:254.577600pt;}
.ws94{word-spacing:269.889600pt;}
.ws126{word-spacing:382.974731pt;}
._40{margin-left:-197.779396pt;}
._3f{margin-left:-174.966451pt;}
._39{margin-left:-119.295374pt;}
._3a{margin-left:-117.670246pt;}
._38{margin-left:-111.582905pt;}
._3c{margin-left:-108.553006pt;}
._3b{margin-left:-97.066935pt;}
._8{margin-left:-9.640533pt;}
._55{margin-left:-8.221493pt;}
._52{margin-left:-6.967307pt;}
._7{margin-left:-5.472000pt;}
._3{margin-left:-4.332800pt;}
._c{margin-left:-3.374933pt;}
._4{margin-left:-2.420800pt;}
._1{margin-left:-1.314667pt;}
._2{width:1.024533pt;}
._0{width:2.366400pt;}
._6{width:3.377067pt;}
._b{width:4.366933pt;}
._a{width:5.930667pt;}
._d{width:6.970667pt;}
._9{width:8.122667pt;}
._e{width:9.445333pt;}
._56{width:10.396267pt;}
._26{width:11.285867pt;}
._50{width:12.256000pt;}
._57{width:13.417600pt;}
._37{width:14.922667pt;}
._35{width:17.898667pt;}
._36{width:19.233067pt;}
._5{width:32.554667pt;}
._53{width:38.314133pt;}
._54{width:39.211733pt;}
._13{width:55.412267pt;}
._24{width:61.616000pt;}
._12{width:62.659733pt;}
._27{width:79.726400pt;}
._14{width:85.336533pt;}
._21{width:86.293867pt;}
._11{width:89.953600pt;}
._4f{width:91.085141pt;}
._15{width:108.023467pt;}
._3d{width:111.637994pt;}
._31{width:116.840533pt;}
._4e{width:119.189668pt;}
._3e{width:123.096519pt;}
._4a{width:126.629867pt;}
._1b{width:135.321600pt;}
._2d{width:140.505600pt;}
._45{width:142.003733pt;}
._18{width:155.519467pt;}
._1d{width:162.567467pt;}
._1c{width:170.093867pt;}
._16{width:172.556800pt;}
._25{width:182.948800pt;}
._1a{width:184.759467pt;}
._10{width:201.862400pt;}
._47{width:203.428800pt;}
._1e{width:204.749867pt;}
._30{width:210.880533pt;}
._22{width:212.004800pt;}
._17{width:213.491200pt;}
._2b{width:214.992533pt;}
._1f{width:216.440000pt;}
._41{width:221.338803pt;}
._4d{width:222.298133pt;}
._2c{width:230.755200pt;}
._20{width:233.085333pt;}
._2f{width:235.602133pt;}
._33{width:244.329600pt;}
._23{width:260.350400pt;}
._4b{width:263.124800pt;}
._49{width:276.645867pt;}
._32{width:281.014933pt;}
._29{width:295.437867pt;}
._28{width:302.428267pt;}
._48{width:312.794667pt;}
._2e{width:322.185600pt;}
._42{width:333.958400pt;}
._34{width:357.618133pt;}
._19{width:364.365333pt;}
._2a{width:367.596800pt;}
._46{width:400.592533pt;}
._51{width:406.135837pt;}
._4c{width:443.056000pt;}
._44{width:450.907200pt;}
._f{width:459.492800pt;}
._43{width:600.912533pt;}
.fs1b{font-size:24.874667pt;}
.fsa{font-size:27.544533pt;}
.fs1a{font-size:27.984000pt;}
.fs13{font-size:28.287467pt;}
.fs9{font-size:31.093333pt;}
.fs24{font-size:33.325333pt;}
.fs3{font-size:34.202667pt;}
.fs1f{font-size:35.107733pt;}
.fs10{font-size:35.353831pt;}
.fsf{font-size:35.358933pt;}
.fs19{font-size:35.671467pt;}
.fs2f{font-size:36.029867pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs12{font-size:38.894933pt;}
.fsc{font-size:39.343044pt;}
.fsb{font-size:39.349333pt;}
.fs11{font-size:42.430933pt;}
.fs0{font-size:42.666667pt;}
.fs1c{font-size:43.884267pt;}
.fs16{font-size:44.588800pt;}
.fs2c{font-size:45.030823pt;}
.fs2b{font-size:45.037333pt;}
.fs21{font-size:45.710399pt;}
.fs20{font-size:45.738667pt;}
.fs14{font-size:45.966933pt;}
.fsd{font-size:47.219200pt;}
.fs26{font-size:47.600543pt;}
.fs25{font-size:47.608000pt;}
.fs6{font-size:48.000000pt;}
.fs15{font-size:49.048000pt;}
.fs2e{font-size:49.541333pt;}
.fs1d{font-size:52.661333pt;}
.fs29{font-size:53.325279pt;}
.fs7{font-size:53.333333pt;}
.fs17{font-size:53.506667pt;}
.fs2d{font-size:54.044800pt;}
.fse{font-size:55.089067pt;}
.fs22{font-size:55.902400pt;}
.fs1e{font-size:57.049600pt;}
.fs27{font-size:57.129600pt;}
.fs18{font-size:57.965867pt;}
.fs30{font-size:58.548800pt;}
.fs2{font-size:58.666667pt;}
.fs28{font-size:61.890133pt;}
.fs8{font-size:64.000000pt;}
.fs23{font-size:66.066667pt;}
.fs2a{font-size:69.333333pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y11d{bottom:2.029200pt;}
.y133{bottom:2.030000pt;}
.yd6{bottom:2.259200pt;}
.y19c{bottom:2.259600pt;}
.y212{bottom:2.584667pt;}
.y1d7{bottom:2.624533pt;}
.y1ee{bottom:2.732267pt;}
.y1fe{bottom:3.060667pt;}
.y167{bottom:3.530267pt;}
.y11b{bottom:8.826933pt;}
.y19a{bottom:9.834400pt;}
.y1{bottom:60.555333pt;}
.y3d{bottom:63.299600pt;}
.y3e{bottom:66.698800pt;}
.y164{bottom:66.812133pt;}
.y93{bottom:100.514400pt;}
.y70{bottom:100.514533pt;}
.y2c{bottom:104.188933pt;}
.ye{bottom:104.778267pt;}
.y1f3{bottom:115.598533pt;}
.yd{bottom:117.578267pt;}
.y92{bottom:119.181067pt;}
.y6f{bottom:119.181200pt;}
.y2b{bottom:122.855600pt;}
.yc{bottom:130.378267pt;}
.y217{bottom:132.528667pt;}
.y91{bottom:137.847733pt;}
.y6e{bottom:137.847867pt;}
.y2a{bottom:141.522267pt;}
.yb{bottom:143.178267pt;}
.y90{bottom:156.514400pt;}
.y6d{bottom:156.514533pt;}
.y29{bottom:160.188933pt;}
.y1f7{bottom:167.527600pt;}
.ya4{bottom:169.280933pt;}
.y15e{bottom:173.211600pt;}
.y8f{bottom:175.181067pt;}
.y6c{bottom:175.181200pt;}
.y3a{bottom:180.812133pt;}
.y1b4{bottom:187.947467pt;}
.y28{bottom:189.692667pt;}
.y13a{bottom:193.331867pt;}
.y8e{bottom:193.847733pt;}
.y6b{bottom:193.847867pt;}
.y208{bottom:196.127333pt;}
.y39{bottom:196.812133pt;}
.y230{bottom:198.692667pt;}
.y203{bottom:200.274000pt;}
.y228{bottom:211.767867pt;}
.y8d{bottom:212.514400pt;}
.y6a{bottom:212.514533pt;}
.y38{bottom:212.812133pt;}
.y37{bottom:228.812133pt;}
.y211{bottom:230.216000pt;}
.y8c{bottom:231.181067pt;}
.y69{bottom:231.181200pt;}
.y21f{bottom:234.076667pt;}
.y1dc{bottom:242.751867pt;}
.y213{bottom:244.099333pt;}
.y36{bottom:244.812000pt;}
.y21d{bottom:245.257200pt;}
.y8b{bottom:249.847733pt;}
.y68{bottom:249.847867pt;}
.y27{bottom:253.713733pt;}
.y22f{bottom:254.692667pt;}
.y215{bottom:257.823063pt;}
.y216{bottom:259.701717pt;}
.y35{bottom:260.812000pt;}
.y21a{bottom:267.595333pt;}
.y8a{bottom:268.514400pt;}
.y67{bottom:268.514533pt;}
.y26{bottom:271.313733pt;}
.y34{bottom:276.812000pt;}
.y23e{bottom:280.456533pt;}
.ya2{bottom:281.280933pt;}
.y214{bottom:285.660582pt;}
.y89{bottom:287.181067pt;}
.y66{bottom:287.181200pt;}
.y33{bottom:292.812000pt;}
.ya3{bottom:299.947600pt;}
.y1f4{bottom:302.851867pt;}
.y88{bottom:305.847733pt;}
.y65{bottom:305.847867pt;}
.y25{bottom:307.811333pt;}
.y32{bottom:308.812000pt;}
.y23d{bottom:309.165333pt;}
.y22e{bottom:310.692667pt;}
.y1b3{bottom:315.573733pt;}
.yb2{bottom:317.789867pt;}
.y87{bottom:324.514400pt;}
.y64{bottom:324.514533pt;}
.y24{bottom:325.411333pt;}
.yf3{bottom:327.059333pt;}
.y20c{bottom:327.943200pt;}
.yba{bottom:328.553333pt;}
.y17d{bottom:328.563733pt;}
.y1d0{bottom:329.595200pt;}
.y1b2{bottom:333.173733pt;}
.y72{bottom:336.456533pt;}
.y20a{bottom:339.273600pt;}
.y31{bottom:339.930133pt;}
.y23{bottom:343.011333pt;}
.y86{bottom:343.181067pt;}
.y63{bottom:343.181200pt;}
.yb1{bottom:346.498800pt;}
.y1cf{bottom:347.195200pt;}
.y169{bottom:348.397733pt;}
.y1b1{bottom:350.773733pt;}
.y30{bottom:355.930133pt;}
.y22{bottom:360.611333pt;}
.y85{bottom:361.847733pt;}
.y62{bottom:361.847867pt;}
.y144{bottom:362.458800pt;}
.y154{bottom:362.894267pt;}
.yec{bottom:364.792000pt;}
.y1ce{bottom:364.795200pt;}
.y71{bottom:365.165467pt;}
.y168{bottom:365.997867pt;}
.y22d{bottom:366.692800pt;}
.y227{bottom:367.567067pt;}
.y1b0{bottom:368.373733pt;}
.y2f{bottom:371.930133pt;}
.y21{bottom:378.211333pt;}
.y143{bottom:380.058800pt;}
.y84{bottom:380.514400pt;}
.y61{bottom:380.514533pt;}
.yeb{bottom:382.392000pt;}
.y14d{bottom:384.446667pt;}
.y226{bottom:386.107781pt;}
.y17c{bottom:386.822667pt;}
.y2e{bottom:387.930133pt;}
.y20d{bottom:388.991305pt;}
.y1a1{bottom:390.392477pt;}
.y1ad{bottom:390.392737pt;}
.y1cd{bottom:391.550400pt;}
.y1a9{bottom:395.650667pt;}
.y20{bottom:395.811333pt;}
.y1a8{bottom:396.658000pt;}
.y225{bottom:397.277040pt;}
.yf2{bottom:398.508000pt;}
.y19d{bottom:398.954000pt;}
.y83{bottom:399.181067pt;}
.y60{bottom:399.181200pt;}
.yb9{bottom:400.841333pt;}
.y122{bottom:401.695119pt;}
.y138{bottom:401.708419pt;}
.y19b{bottom:403.224400pt;}
.y2d{bottom:403.930133pt;}
.ye8{bottom:404.390006pt;}
.ydb{bottom:404.396027pt;}
.y11e{bottom:406.438667pt;}
.y134{bottom:406.439467pt;}
.y132{bottom:407.334933pt;}
.y224{bottom:408.446299pt;}
.yd7{bottom:409.667867pt;}
.ye4{bottom:409.668800pt;}
.y166{bottom:409.891333pt;}
.yd5{bottom:410.664400pt;}
.y19f{bottom:410.944305pt;}
.y1ab{bottom:410.944565pt;}
.y188{bottom:412.151333pt;}
.y1a2{bottom:412.578714pt;}
.y1ae{bottom:412.578974pt;}
.y11c{bottom:413.236400pt;}
.y1f{bottom:413.411333pt;}
.y1c3{bottom:414.578667pt;}
.y82{bottom:417.847733pt;}
.y5f{bottom:417.847867pt;}
.y223{bottom:419.615557pt;}
.y120{bottom:420.175581pt;}
.y136{bottom:420.176381pt;}
.y1a0{bottom:420.917679pt;}
.y1ac{bottom:420.917939pt;}
.y123{bottom:421.644268pt;}
.y139{bottom:421.657567pt;}
.y22c{bottom:423.055200pt;}
.yd9{bottom:424.954810pt;}
.ye6{bottom:424.955743pt;}
.ye9{bottom:426.576243pt;}
.ydc{bottom:426.582265pt;}
.y121{bottom:429.137698pt;}
.y137{bottom:429.138498pt;}
.yb3{bottom:430.614267pt;}
.y222{bottom:430.784816pt;}
.y1e{bottom:431.011333pt;}
.yda{bottom:434.928185pt;}
.ye7{bottom:434.929118pt;}
.y19e{bottom:435.265707pt;}
.y1aa{bottom:435.265967pt;}
.y1c6{bottom:435.632267pt;}
.y15d{bottom:436.144267pt;}
.y81{bottom:436.514400pt;}
.y5e{bottom:436.514533pt;}
.y221{bottom:441.954075pt;}
.y11f{bottom:442.037148pt;}
.y135{bottom:442.037948pt;}
.y1d{bottom:448.611333pt;}
.yd8{bottom:449.269257pt;}
.ye5{bottom:449.270190pt;}
.y22b{bottom:449.280933pt;}
.y20e{bottom:450.039411pt;}
.y15c{bottom:451.258800pt;}
.y220{bottom:453.123333pt;}
.y80{bottom:455.181067pt;}
.y5d{bottom:455.181200pt;}
.y1e6{bottom:458.629600pt;}
.y21e{bottom:464.292667pt;}
.y1c{bottom:466.211333pt;}
.y14e{bottom:469.283600pt;}
.y1c4{bottom:470.716933pt;}
.y1cc{bottom:470.718000pt;}
.y156{bottom:470.934800pt;}
.y157{bottom:471.335067pt;}
.y195{bottom:471.538800pt;}
.y7f{bottom:473.847733pt;}
.y5c{bottom:473.847867pt;}
.y116{bottom:475.234267pt;}
.y21c{bottom:475.473141pt;}
.y1d6{bottom:477.078667pt;}
.y1a4{bottom:480.717067pt;}
.ydf{bottom:480.767067pt;}
.y114{bottom:480.862800pt;}
.y1c0{bottom:482.424133pt;}
.yd0{bottom:483.166400pt;}
.y1b{bottom:483.811333pt;}
.y1c7{bottom:484.376716pt;}
.ycf{bottom:485.980000pt;}
.y21b{bottom:486.642400pt;}
.y1d8{bottom:487.334000pt;}
.y194{bottom:488.655733pt;}
.y7e{bottom:492.514400pt;}
.y5b{bottom:492.514533pt;}
.y219{bottom:497.811333pt;}
.y1a{bottom:501.411333pt;}
.y124{bottom:502.557200pt;}
.y1da{bottom:505.111173pt;}
.y1db{bottom:507.010099pt;}
.y20f{bottom:511.087516pt;}
.y7d{bottom:511.181067pt;}
.y5a{bottom:511.181200pt;}
.y196{bottom:511.675120pt;}
.ydd{bottom:512.992267pt;}
.yea{bottom:512.993200pt;}
.y218{bottom:514.159867pt;}
.y158{bottom:515.979603pt;}
.y1a3{bottom:518.904533pt;}
.y1af{bottom:518.905467pt;}
.y19{bottom:519.011333pt;}
.y142{bottom:521.677264pt;}
.y130{bottom:521.679781pt;}
.ye0{bottom:522.251101pt;}
.y1a5{bottom:522.299440pt;}
.y117{bottom:523.163301pt;}
.y1e5{bottom:523.929200pt;}
.ya1{bottom:523.947600pt;}
.y160{bottom:525.666519pt;}
.yd1{bottom:526.883509pt;}
.y7c{bottom:529.847733pt;}
.y59{bottom:529.847867pt;}
.y141{bottom:530.446379pt;}
.y12f{bottom:530.448896pt;}
.y1c8{bottom:533.132136pt;}
.y1d9{bottom:533.376879pt;}
.y18{bottom:536.611333pt;}
.y140{bottom:539.215493pt;}
.y12e{bottom:539.218011pt;}
.y13f{bottom:547.984608pt;}
.y12d{bottom:547.987125pt;}
.y7b{bottom:548.514400pt;}
.y58{bottom:548.514533pt;}
.y197{bottom:551.801603pt;}
.y1c1{bottom:553.341108pt;}
.y17{bottom:554.211333pt;}
.y13e{bottom:556.753723pt;}
.y12c{bottom:556.756240pt;}
.y165{bottom:557.659333pt;}
.y159{bottom:560.624139pt;}
.y16d{bottom:561.280800pt;}
.ye1{bottom:563.725299pt;}
.y13d{bottom:565.522837pt;}
.y12b{bottom:565.525355pt;}
.y7a{bottom:567.181067pt;}
.y57{bottom:567.181200pt;}
.yd2{bottom:570.600619pt;}
.y118{bottom:571.092335pt;}
.y16{bottom:571.811333pt;}
.y210{bottom:572.135621pt;}
.y1a6{bottom:573.060080pt;}
.y13c{bottom:574.291952pt;}
.y12a{bottom:574.294469pt;}
.y161{bottom:580.009119pt;}
.y1c9{bottom:581.876585pt;}
.y13b{bottom:583.061067pt;}
.y129{bottom:583.063584pt;}
.y1d1{bottom:583.720400pt;}
.y1e7{bottom:585.847733pt;}
.y56{bottom:585.847867pt;}
.y15{bottom:589.411333pt;}
.y128{bottom:591.839771pt;}
.y198{bottom:591.928085pt;}
.y79{bottom:598.614133pt;}
.y127{bottom:600.608885pt;}
.yc3{bottom:602.522000pt;}
.y16c{bottom:604.514400pt;}
.y55{bottom:604.514533pt;}
.ye2{bottom:605.209333pt;}
.y15a{bottom:605.268675pt;}
.y108{bottom:606.811733pt;}
.y14{bottom:607.011333pt;}
.y126{bottom:609.378000pt;}
.yd3{bottom:614.317728pt;}
.y186{bottom:616.540667pt;}
.y14f{bottom:618.299867pt;}
.y119{bottom:619.021369pt;}
.y125{bottom:621.434667pt;}
.y16b{bottom:623.181067pt;}
.y54{bottom:623.181200pt;}
.y1a7{bottom:623.820720pt;}
.y1c2{bottom:624.247112pt;}
.y13{bottom:624.611333pt;}
.y1ca{bottom:630.621035pt;}
.y199{bottom:632.064405pt;}
.y162{bottom:634.351719pt;}
.y78{bottom:641.847733pt;}
.y53{bottom:641.847867pt;}
.y12{bottom:642.211333pt;}
.y20b{bottom:642.583867pt;}
.ye3{bottom:646.683531pt;}
.y15b{bottom:649.913211pt;}
.y22a{bottom:654.614267pt;}
.yd4{bottom:658.025000pt;}
.y11{bottom:659.811333pt;}
.y77{bottom:660.514400pt;}
.y52{bottom:660.514533pt;}
.y1fd{bottom:661.033333pt;}
.y1f6{bottom:663.002667pt;}
.y11a{bottom:666.950403pt;}
.y1ff{bottom:672.995333pt;}
.y76{bottom:679.181067pt;}
.y51{bottom:679.181200pt;}
.y1cb{bottom:679.376455pt;}
.y1d2{bottom:679.577211pt;}
.y1f5{bottom:680.602667pt;}
.yde{bottom:684.634800pt;}
.y131{bottom:687.088667pt;}
.y10{bottom:687.453467pt;}
.y163{bottom:688.694319pt;}
.y201{bottom:693.715147pt;}
.y1c5{bottom:694.419333pt;}
.y202{bottom:695.939840pt;}
.y75{bottom:697.847733pt;}
.y50{bottom:697.847867pt;}
.y1e4{bottom:698.587147pt;}
.y1ed{bottom:699.052000pt;}
.y15f{bottom:706.664667pt;}
.y18e{bottom:707.812478pt;}
.y17f{bottom:707.814354pt;}
.y192{bottom:709.106095pt;}
.y183{bottom:709.121881pt;}
.y1ef{bottom:713.727867pt;}
.y18d{bottom:715.386400pt;}
.y74{bottom:716.514400pt;}
.y4f{bottom:716.514533pt;}
.y10a{bottom:718.761374pt;}
.yf5{bottom:718.770052pt;}
.y1b9{bottom:719.093467pt;}
.y10e{bottom:719.936324pt;}
.yf9{bottom:719.945002pt;}
.y1e3{bottom:720.541707pt;}
.yc9{bottom:721.826633pt;}
.ybc{bottom:721.836664pt;}
.y17e{bottom:721.953733pt;}
.ycd{bottom:723.113295pt;}
.yc0{bottom:723.130281pt;}
.y109{bottom:725.567333pt;}
.y200{bottom:726.689627pt;}
.y1f1{bottom:728.234752pt;}
.yc8{bottom:729.393600pt;}
.y190{bottom:729.664878pt;}
.y181{bottom:729.673709pt;}
.y1f2{bottom:730.220613pt;}
.y193{bottom:731.292333pt;}
.y184{bottom:731.308119pt;}
.y14c{bottom:732.225200pt;}
.yf4{bottom:734.438133pt;}
.y73{bottom:735.181067pt;}
.y4e{bottom:735.181200pt;}
.ybb{bottom:735.962133pt;}
.y10c{bottom:738.410535pt;}
.yf7{bottom:738.419213pt;}
.y191{bottom:739.638253pt;}
.y182{bottom:739.647084pt;}
.y10f{bottom:739.891722pt;}
.yfa{bottom:739.894151pt;}
.y1b5{bottom:740.146933pt;}
.y1e2{bottom:742.496267pt;}
.ycb{bottom:743.672078pt;}
.ybe{bottom:743.689064pt;}
.yce{bottom:745.299533pt;}
.yc1{bottom:745.316519pt;}
.y14b{bottom:747.340933pt;}
.y10d{bottom:747.372653pt;}
.yf8{bottom:747.381331pt;}
.y23c{bottom:747.947467pt;}
.ycc{bottom:753.645453pt;}
.ybf{bottom:753.662439pt;}
.y16a{bottom:753.847733pt;}
.y4d{bottom:753.847867pt;}
.y18f{bottom:753.993235pt;}
.y180{bottom:753.995111pt;}
.y1f0{bottom:757.660841pt;}
.ya{bottom:757.926133pt;}
.y10b{bottom:760.265853pt;}
.yf6{bottom:760.274531pt;}
.y1e1{bottom:764.450827pt;}
.yaf{bottom:766.614267pt;}
.y145{bottom:767.015867pt;}
.y146{bottom:767.405867pt;}
.yca{bottom:767.993480pt;}
.ybd{bottom:768.003511pt;}
.y1f8{bottom:772.400667pt;}
.y4c{bottom:772.514533pt;}
.y9{bottom:773.926133pt;}
.y1ba{bottom:775.232667pt;}
.y1d3{bottom:775.422587pt;}
.ya0{bottom:781.591067pt;}
.y1e0{bottom:786.405387pt;}
.y8{bottom:789.926133pt;}
.y178{bottom:790.268000pt;}
.y23b{bottom:791.181067pt;}
.y4b{bottom:791.181200pt;}
.y1e9{bottom:792.024933pt;}
.yed{bottom:793.465600pt;}
.y176{bottom:796.167467pt;}
.yae{bottom:796.318667pt;}
.yb5{bottom:797.704933pt;}
.y9f{bottom:798.284000pt;}
.y1bc{bottom:798.644661pt;}
.y187{bottom:798.974000pt;}
.y177{bottom:799.376400pt;}
.y1e8{bottom:799.749333pt;}
.yc4{bottom:803.646667pt;}
.yb4{bottom:804.708133pt;}
.y7{bottom:805.926133pt;}
.y1df{bottom:808.359947pt;}
.y23a{bottom:809.847733pt;}
.y4a{bottom:809.847867pt;}
.y1b6{bottom:811.052937pt;}
.y147{bottom:812.719235pt;}
.y175{bottom:813.238267pt;}
.yad{bottom:813.389467pt;}
.y9e{bottom:814.976933pt;}
.y150{bottom:816.275191pt;}
.y1f9{bottom:820.467333pt;}
.yfb{bottom:820.789467pt;}
.y6{bottom:821.926133pt;}
.y49{bottom:828.514533pt;}
.y174{bottom:830.309200pt;}
.y1de{bottom:830.314507pt;}
.yac{bottom:830.460400pt;}
.y9d{bottom:831.669733pt;}
.yc2{bottom:831.722533pt;}
.y239{bottom:833.359333pt;}
.y185{bottom:837.634667pt;}
.y189{bottom:838.047928pt;}
.y107{bottom:839.911381pt;}
.y179{bottom:840.556448pt;}
.yee{bottom:841.394634pt;}
.y209{bottom:843.934133pt;}
.y48{bottom:847.181200pt;}
.y173{bottom:847.380000pt;}
.yab{bottom:847.531200pt;}
.y9c{bottom:848.362667pt;}
.y106{bottom:848.680496pt;}
.y1dd{bottom:852.269067pt;}
.y5{bottom:853.044133pt;}
.y155{bottom:853.730267pt;}
.y1ea{bottom:856.390949pt;}
.y1bd{bottom:857.142388pt;}
.yb6{bottom:857.151939pt;}
.y207{bottom:857.160267pt;}
.y105{bottom:857.449611pt;}
.y148{bottom:858.021455pt;}
.yc5{bottom:863.103509pt;}
.y172{bottom:864.450933pt;}
.yaa{bottom:864.602133pt;}
.y9b{bottom:865.055600pt;}
.y151{bottom:865.144516pt;}
.y238{bottom:865.847733pt;}
.y47{bottom:865.847867pt;}
.y104{bottom:866.218725pt;}
.y1fa{bottom:868.547333pt;}
.y206{bottom:870.386933pt;}
.y115{bottom:870.601600pt;}
.y4{bottom:870.644267pt;}
.y1d4{bottom:871.267963pt;}
.y103{bottom:874.987840pt;}
.y113{bottom:879.370571pt;}
.y171{bottom:881.521867pt;}
.ya9{bottom:881.673067pt;}
.y9a{bottom:881.748533pt;}
.y1b7{bottom:881.958941pt;}
.y205{bottom:883.613600pt;}
.y102{bottom:883.756955pt;}
.y237{bottom:884.514400pt;}
.y46{bottom:884.514533pt;}
.y18a{bottom:885.818019pt;}
.y112{bottom:888.139685pt;}
.yef{bottom:889.323668pt;}
.y17a{bottom:890.844896pt;}
.y101{bottom:892.526069pt;}
.y111{bottom:896.908800pt;}
.y170{bottom:898.592667pt;}
.y99{bottom:898.708133pt;}
.ya8{bottom:898.743867pt;}
.y100{bottom:901.295184pt;}
.y204{bottom:902.987333pt;}
.y236{bottom:903.181067pt;}
.y45{bottom:903.181200pt;}
.y149{bottom:903.323676pt;}
.y3{bottom:903.362267pt;}
.y110{bottom:908.975067pt;}
.yff{bottom:910.071371pt;}
.y152{bottom:914.013841pt;}
.y98{bottom:915.023067pt;}
.y1be{bottom:915.640116pt;}
.ya7{bottom:915.814667pt;}
.y16f{bottom:915.930133pt;}
.yb7{bottom:916.608781pt;}
.y1fb{bottom:916.614000pt;}
.yfe{bottom:918.840485pt;}
.y1eb{bottom:920.756965pt;}
.y235{bottom:921.847733pt;}
.y44{bottom:921.847867pt;}
.yc6{bottom:922.550515pt;}
.yfd{bottom:927.609600pt;}
.y16e{bottom:932.623067pt;}
.y2{bottom:932.695600pt;}
.ya6{bottom:932.885600pt;}
.y18b{bottom:933.597947pt;}
.yf0{bottom:937.252702pt;}
.yfc{bottom:939.666533pt;}
.y234{bottom:940.514400pt;}
.y43{bottom:940.514533pt;}
.y17b{bottom:941.133344pt;}
.y97{bottom:942.118133pt;}
.y14a{bottom:948.625897pt;}
.ya5{bottom:950.223200pt;}
.y1b8{bottom:952.864945pt;}
.y233{bottom:959.181067pt;}
.y42{bottom:959.181200pt;}
.y96{bottom:959.718133pt;}
.y153{bottom:962.872019pt;}
.y1fc{bottom:964.694000pt;}
.y1d5{bottom:967.124773pt;}
.y240{bottom:970.692667pt;}
.y1bf{bottom:974.137843pt;}
.yb8{bottom:976.055787pt;}
.y95{bottom:977.318133pt;}
.y232{bottom:977.847733pt;}
.y41{bottom:977.847867pt;}
.y18c{bottom:981.368037pt;}
.yc7{bottom:982.007357pt;}
.y1ec{bottom:985.122981pt;}
.yf1{bottom:985.181737pt;}
.yf{bottom:986.502667pt;}
.y229{bottom:989.952800pt;}
.yb0{bottom:990.952800pt;}
.y94{bottom:994.918133pt;}
.y40{bottom:996.514533pt;}
.y1bb{bottom:998.933333pt;}
.y23f{bottom:999.401600pt;}
.y231{bottom:1000.401467pt;}
.y3c{bottom:1027.213600pt;}
.y3b{bottom:1044.546933pt;}
.y3f{bottom:1047.726000pt;}
.h15{height:20.052420pt;}
.h20{height:20.593276pt;}
.h33{height:24.260843pt;}
.h2d{height:25.558430pt;}
.h1d{height:25.737589pt;}
.h1b{height:25.741303pt;}
.h27{height:25.968828pt;}
.h45{height:26.229743pt;}
.h1f{height:28.315511pt;}
.h18{height:28.641736pt;}
.h16{height:28.646315pt;}
.h6{height:30.618750pt;}
.h1e{height:30.889719pt;}
.h3e{height:31.061333pt;}
.h2a{height:31.947746pt;}
.h23{height:32.460646pt;}
.h42{height:32.782439pt;}
.h40{height:32.787179pt;}
.h30{height:33.277171pt;}
.h2e{height:33.297749pt;}
.h21{height:33.463927pt;}
.h2{height:33.812500pt;}
.h12{height:33.979167pt;}
.h28{height:34.017854pt;}
.hf{height:34.020833pt;}
.h14{height:34.229167pt;}
.h5{height:34.250000pt;}
.h19{height:34.375578pt;}
.h36{height:34.653195pt;}
.h34{height:34.658624pt;}
.h22{height:35.314560pt;}
.h44{height:36.066091pt;}
.he{height:38.039062pt;}
.h7{height:38.226562pt;}
.hd{height:38.273438pt;}
.h2b{height:38.337451pt;}
.h9{height:38.507812pt;}
.h3b{height:38.820803pt;}
.h39{height:38.826667pt;}
.h24{height:38.952853pt;}
.h13{height:39.145833pt;}
.h43{height:39.344614pt;}
.h1a{height:40.104841pt;}
.h8{height:40.546875pt;}
.h31{height:40.696947pt;}
.h2c{height:41.532109pt;}
.h37{height:41.590349pt;}
.h26{height:42.199151pt;}
.h46{height:42.623526pt;}
.h3d{height:42.709333pt;}
.hc{height:42.786458pt;}
.ha{height:44.039062pt;}
.h11{height:44.601562pt;}
.h38{height:45.056017pt;}
.h3c{height:46.592000pt;}
.h4{height:47.065104pt;}
.h32{height:48.096533pt;}
.hb{height:48.656250pt;}
.h10{height:48.932292pt;}
.h3f{height:50.474667pt;}
.h3{height:72.205729pt;}
.h35{height:316.129333pt;}
.h3a{height:354.148000pt;}
.h41{height:380.128000pt;}
.h2f{height:538.102667pt;}
.h17{height:614.340000pt;}
.h1c{height:616.673333pt;}
.h29{height:628.358667pt;}
.h25{height:630.734667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w6{width:503.117333pt;}
.w5{width:536.894667pt;}
.w7{width:556.325333pt;}
.w4{width:628.034667pt;}
.w3{width:628.086667pt;}
.w2{width:631.937333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:5.967733pt;}
.x51{left:7.085067pt;}
.x66{left:11.479333pt;}
.x9b{left:13.729200pt;}
.x98{left:18.901733pt;}
.x52{left:25.560533pt;}
.x9f{left:28.246133pt;}
.x92{left:30.251333pt;}
.x20{left:36.484000pt;}
.x96{left:37.761467pt;}
.x46{left:40.076267pt;}
.x2d{left:41.086133pt;}
.x9e{left:42.302667pt;}
.x67{left:44.976933pt;}
.x8f{left:47.059600pt;}
.x2{left:65.763733pt;}
.xa{left:95.172400pt;}
.xc{left:96.255067pt;}
.x3d{left:97.925333pt;}
.xf{left:99.779467pt;}
.x5{left:106.290133pt;}
.x6{left:107.597867pt;}
.x18{left:108.534933pt;}
.x7{left:109.707333pt;}
.x1f{left:110.713200pt;}
.x3e{left:112.157333pt;}
.x62{left:113.476800pt;}
.x16{left:116.252043pt;}
.x80{left:117.371820pt;}
.x3f{left:118.875797pt;}
.x63{left:119.986765pt;}
.x15{left:121.721600pt;}
.x7f{left:123.471733pt;}
.x2c{left:127.191200pt;}
.x53{left:129.387067pt;}
.x19{left:132.828515pt;}
.x97{left:133.806667pt;}
.x82{left:134.980133pt;}
.x32{left:137.953200pt;}
.x6e{left:140.976933pt;}
.x7e{left:142.699467pt;}
.x2e{left:143.654267pt;}
.x73{left:146.037867pt;}
.x14{left:148.843333pt;}
.x64{left:152.770933pt;}
.x2b{left:153.860533pt;}
.x81{left:158.349067pt;}
.x91{left:160.410667pt;}
.x8b{left:162.070667pt;}
.x87{left:163.308000pt;}
.x12{left:165.115733pt;}
.x11{left:171.373600pt;}
.x8c{left:175.837733pt;}
.x10{left:178.222533pt;}
.x13{left:180.363200pt;}
.x40{left:182.766821pt;}
.x61{left:186.023200pt;}
.x54{left:190.259469pt;}
.x55{left:193.684323pt;}
.x93{left:202.605733pt;}
.x42{left:209.634424pt;}
.x41{left:214.671709pt;}
.x1a{left:217.442234pt;}
.x2f{left:220.937486pt;}
.x57{left:225.764204pt;}
.x56{left:227.920362pt;}
.x1b{left:231.546839pt;}
.x30{left:234.290958pt;}
.x72{left:242.037867pt;}
.x65{left:250.420533pt;}
.x43{left:251.970118pt;}
.x74{left:258.859200pt;}
.x90{left:260.015333pt;}
.xa0{left:265.641884pt;}
.x4{left:266.834667pt;}
.xe{left:270.614133pt;}
.x1c{left:279.953175pt;}
.xb{left:281.952800pt;}
.x1d{left:287.853979pt;}
.x31{left:289.095833pt;}
.x8d{left:303.057650pt;}
.x44{left:313.789600pt;}
.xa1{left:326.355855pt;}
.x45{left:327.402933pt;}
.x8a{left:330.277467pt;}
.x58{left:334.518933pt;}
.x75{left:343.645200pt;}
.x1e{left:348.487088pt;}
.x2a{left:349.743333pt;}
.x3{left:352.045067pt;}
.x36{left:355.556133pt;}
.x94{left:357.326209pt;}
.x50{left:358.308667pt;}
.x7d{left:360.682400pt;}
.x6d{left:366.018800pt;}
.x99{left:380.648693pt;}
.x23{left:415.680533pt;}
.xa2{left:416.770078pt;}
.x35{left:420.696533pt;}
.x47{left:425.629733pt;}
.x85{left:427.437867pt;}
.x6c{left:428.520267pt;}
.x29{left:429.442933pt;}
.x83{left:433.340267pt;}
.x22{left:434.981333pt;}
.x88{left:439.440133pt;}
.x34{left:440.450800pt;}
.x86{left:444.849067pt;}
.x78{left:445.920400pt;}
.xd{left:447.924800pt;}
.x3c{left:451.212933pt;}
.x59{left:452.120000pt;}
.x70{left:454.850000pt;}
.x60{left:456.234000pt;}
.x37{left:458.123600pt;}
.x71{left:462.018800pt;}
.x21{left:464.473600pt;}
.x33{left:467.572267pt;}
.x84{left:469.358533pt;}
.x69{left:472.273067pt;}
.x89{left:474.317333pt;}
.x9a{left:482.023067pt;}
.x8{left:505.344533pt;}
.x5a{left:515.804783pt;}
.x48{left:518.813257pt;}
.x5b{left:522.029517pt;}
.x49{left:526.206692pt;}
.xa3{left:531.497600pt;}
.x24{left:532.676422pt;}
.x38{left:536.171862pt;}
.x79{left:539.660316pt;}
.x25{left:547.553024pt;}
.xa4{left:548.836933pt;}
.x39{left:550.276467pt;}
.x95{left:551.494643pt;}
.x7a{left:553.013788pt;}
.x5c{left:559.077936pt;}
.x68{left:561.339733pt;}
.x4a{left:564.417561pt;}
.x4b{left:566.229984pt;}
.x6b{left:571.461467pt;}
.x6f{left:573.636267pt;}
.x76{left:574.538267pt;}
.x8e{left:581.301733pt;}
.x26{left:596.724403pt;}
.x3a{left:598.682803pt;}
.x7b{left:600.668991pt;}
.x9{left:602.901867pt;}
.x27{left:605.390250pt;}
.x3b{left:606.576652pt;}
.x5d{left:607.769609pt;}
.x9c{left:614.456667pt;}
.x4c{left:615.421635pt;}
.x4f{left:624.492400pt;}
.x6a{left:625.737333pt;}
.xa5{left:626.927600pt;}
.x9d{left:634.990000pt;}
.x28{left:666.774491pt;}
.x7c{left:667.672819pt;}
.x5e{left:672.975867pt;}
.x4d{left:681.338267pt;}
.x5f{left:686.598933pt;}
.x4e{left:694.952533pt;}
.x77{left:702.461733pt;}
.x1{left:712.311867pt;}
}




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