
    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_0f7f01d8cfcb4eab7b510b4d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_a41315181092dc1a1bee96dd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_b5522d4b4c1806d23c4dce3b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_3c8d4a631e2ab1b401a3fdb9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_d657cf9bb50ddc0fe075d3cd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_f41e83992d88dbaf91268f6f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_208b2552dd1b1e6a0fc05551.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_88cba762517d318335f1aa1d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;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_a0aa1103ac2944e879ab332a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.690918;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_4923ddaa3c5b445b50d50609.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_0f6287266900f23d7d69d5b6.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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_8210edf1091b101d732801b2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.916016;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_0660ee586cb4b79595208f38.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;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_2a09fadc9385aaf452ad9341.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;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;}
.m17{transform:matrix(0.000000,-0.199848,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.199848,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.199848,0.250000,0.000000,0,0);}
.m13{transform:matrix(0.000000,-0.202637,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.202637,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.202637,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.223345,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.223345,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.223345,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.225473,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.225473,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.225473,0.250000,0.000000,0,0);}
.m15{transform:matrix(0.000000,-0.249815,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249815,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249815,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.249861,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249861,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249861,0.250000,0.000000,0,0);}
.m11{transform:matrix(0.000000,-0.249997,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249997,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249997,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.239397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239397,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);}
.m10{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250374,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253223,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.254880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254880,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.277195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277195,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.279836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279836,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.308433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308433,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.312738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312738,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.401018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401018,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.403029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403029,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.403509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403509,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.405532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405532,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.vb{vertical-align:-85.648558px;}
.ve{vertical-align:-81.360000px;}
.vf{vertical-align:-78.480000px;}
.va{vertical-align:-76.530649px;}
.vd{vertical-align:-72.000000px;}
.v1{vertical-align:-68.400000px;}
.v9{vertical-align:-63.077996px;}
.v8{vertical-align:-54.109560px;}
.v7{vertical-align:-40.507433px;}
.v6{vertical-align:-31.538998px;}
.v5{vertical-align:-18.086345px;}
.vc{vertical-align:-13.452653px;}
.v2{vertical-align:-9.360000px;}
.v10{vertical-align:-6.308057px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:9.360000px;}
.v3{vertical-align:27.360000px;}
.ls23{letter-spacing:-0.756776px;}
.ls22{letter-spacing:-0.753700px;}
.ls8{letter-spacing:-0.666000px;}
.ls2e{letter-spacing:-0.603875px;}
.ls3c{letter-spacing:-0.540000px;}
.ls3b{letter-spacing:-0.413400px;}
.ls3a{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.223200px;}
.ls1a{letter-spacing:-0.108000px;}
.ls7{letter-spacing:-0.100200px;}
.ls21{letter-spacing:-0.072000px;}
.ls16{letter-spacing:-0.053280px;}
.ls39{letter-spacing:-0.018000px;}
.ls14{letter-spacing:-0.008640px;}
.lsd{letter-spacing:-0.004320px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.008640px;}
.ls33{letter-spacing:0.017280px;}
.ls1c{letter-spacing:0.018000px;}
.ls11{letter-spacing:0.053280px;}
.ls36{letter-spacing:0.074435px;}
.ls2{letter-spacing:0.106800px;}
.ls34{letter-spacing:0.115680px;}
.ls1d{letter-spacing:0.119520px;}
.ls1f{letter-spacing:0.126000px;}
.ls30{letter-spacing:0.135360px;}
.ls18{letter-spacing:0.135600px;}
.ls1{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.206400px;}
.lsf{letter-spacing:0.206640px;}
.ls1b{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.235920px;}
.lsb{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.259920px;}
.ls31{letter-spacing:0.298800px;}
.ls12{letter-spacing:0.306600px;}
.ls35{letter-spacing:0.342000px;}
.ls3{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.368640px;}
.ls26{letter-spacing:0.439920px;}
.ls13{letter-spacing:0.460200px;}
.lsc{letter-spacing:0.666000px;}
.ls1e{letter-spacing:0.720000px;}
.lse{letter-spacing:0.900000px;}
.ls37{letter-spacing:1.190120px;}
.ls38{letter-spacing:1.620000px;}
.ls25{letter-spacing:3.060000px;}
.ls17{letter-spacing:4.500000px;}
.ls24{letter-spacing:6.660000px;}
.ls19{letter-spacing:30.520302px;}
.ls6{letter-spacing:49.116000px;}
.ls27{letter-spacing:53.356810px;}
.ls2d{letter-spacing:53.386705px;}
.ls28{letter-spacing:57.811133px;}
.ls29{letter-spacing:57.870922px;}
.ls2a{letter-spacing:62.295350px;}
.ls2b{letter-spacing:62.355140px;}
.ls2c{letter-spacing:62.474719px;}
.ls5{letter-spacing:103.860000px;}
.ls32{letter-spacing:646.896000px;}
.ls2f{letter-spacing:679.296000px;}
.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;}
}
.ws10{word-spacing:-40.927186px;}
.ws2e{word-spacing:-16.595994px;}
.ws5{word-spacing:-15.606000px;}
.ws9{word-spacing:-15.400200px;}
.ws2{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.246600px;}
.ws28{word-spacing:-15.238800px;}
.wse{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.146400px;}
.ws20{word-spacing:-15.120000px;}
.wsf{word-spacing:-15.075600px;}
.ws8{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886720px;}
.ws3{word-spacing:-14.839800px;}
.ws18{word-spacing:-14.716800px;}
.ws3e{word-spacing:-14.580000px;}
.ws3d{word-spacing:-14.526600px;}
.ws4{word-spacing:-14.274000px;}
.ws15{word-spacing:-13.860000px;}
.ws22{word-spacing:-13.754292px;}
.ws2f{word-spacing:-13.680000px;}
.ws17{word-spacing:-13.500000px;}
.ws39{word-spacing:-13.482000px;}
.ws2c{word-spacing:-13.410872px;}
.ws2d{word-spacing:-13.410715px;}
.ws37{word-spacing:-13.410549px;}
.ws38{word-spacing:-13.400629px;}
.ws13{word-spacing:-13.392000px;}
.ws3a{word-spacing:-13.140000px;}
.ws1c{word-spacing:-12.392292px;}
.ws1f{word-spacing:-12.325430px;}
.ws30{word-spacing:-11.427887px;}
.ws3b{word-spacing:-11.219648px;}
.ws1d{word-spacing:-11.116224px;}
.ws1a{word-spacing:-11.071034px;}
.ws12{word-spacing:-10.406883px;}
.wsa{word-spacing:-9.728640px;}
.ws6{word-spacing:-9.720000px;}
.ws16{word-spacing:-9.715680px;}
.wsb{word-spacing:-9.711360px;}
.ws33{word-spacing:-9.674247px;}
.ws14{word-spacing:-9.000000px;}
.ws19{word-spacing:-8.928000px;}
.ws26{word-spacing:-8.805816px;}
.ws27{word-spacing:-8.800923px;}
.ws32{word-spacing:-7.920607px;}
.ws24{word-spacing:-0.048350px;}
.ws35{word-spacing:-0.048348px;}
.ws23{word-spacing:-0.048206px;}
.ws34{word-spacing:-0.048204px;}
.ws29{word-spacing:-0.031824px;}
.ws2a{word-spacing:-0.031680px;}
.ws0{word-spacing:0.000000px;}
.ws11{word-spacing:5.619717px;}
.ws21{word-spacing:27.328317px;}
.ws1e{word-spacing:98.780360px;}
.ws1b{word-spacing:104.449135px;}
.ws3c{word-spacing:105.932459px;}
.ws2b{word-spacing:109.332681px;}
.ws31{word-spacing:111.178773px;}
.ws25{word-spacing:184.613128px;}
.ws36{word-spacing:210.191633px;}
._13{margin-left:-115.573338px;}
._1c{margin-left:-6.769943px;}
._1b{margin-left:-4.613764px;}
._14{margin-left:-3.054996px;}
._2{margin-left:-1.232640px;}
._0{width:1.053360px;}
._1{width:2.130240px;}
._3{width:3.534720px;}
._6{width:4.780800px;}
._7{width:6.118800px;}
._5{width:7.709040px;}
._4{width:8.724960px;}
._9{width:10.290480px;}
._d{width:11.451600px;}
._c{width:12.728880px;}
._12{width:13.744800px;}
._a{width:16.434000px;}
._b{width:17.472240px;}
._8{width:18.525600px;}
._11{width:19.929600px;}
._10{width:21.013200px;}
._f{width:22.470480px;}
._16{width:25.338240px;}
._e{width:49.080000px;}
._15{width:61.320000px;}
._1a{width:97.624538px;}
._18{width:103.481344px;}
._19{width:112.862329px;}
._17{width:118.677561px;}
._22{width:129.498385px;}
._21{width:136.337424px;}
._1f{width:138.209955px;}
._1e{width:141.662966px;}
._1d{width:197.489538px;}
._20{width:230.350372px;}
.fc0{color:rgb(0,0,0);}
.fs20{font-size:28.491392px;}
.fs16{font-size:31.657997px;}
.fs15{font-size:31.675597px;}
.fs19{font-size:31.679989px;}
.fs18{font-size:31.823989px;}
.fs1a{font-size:34.703988px;}
.fs22{font-size:34.799449px;}
.fsb{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fse{font-size:39.823864px;}
.fs10{font-size:39.986418px;}
.fs26{font-size:40.358447px;}
.fs1f{font-size:41.107506px;}
.fs8{font-size:41.627533px;}
.fs4{font-size:42.000000px;}
.fs11{font-size:44.336079px;}
.fsf{font-size:44.576590px;}
.fs23{font-size:48.203700px;}
.fs13{font-size:48.206495px;}
.fs25{font-size:48.239384px;}
.fs1c{font-size:48.239983px;}
.fs1b{font-size:48.240546px;}
.fs24{font-size:48.347591px;}
.fs14{font-size:48.350395px;}
.fs12{font-size:49.475869px;}
.fs27{font-size:50.486404px;}
.fs21{font-size:50.715654px;}
.fsa{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs1e{font-size:66.239976px;}
.fs1d{font-size:66.383976px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:72.015410px;}
.fsd{font-size:72.375844px;}
.fsc{font-size:72.825303px;}
.fs17{font-size:72.831817px;}
.fs6{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y19a{bottom:1.548140px;}
.y275{bottom:1.548278px;}
.y1af{bottom:1.554459px;}
.y238{bottom:1.577014px;}
.y17d{bottom:2.880000px;}
.y13d{bottom:2.959364px;}
.y13a{bottom:2.977742px;}
.y1f5{bottom:2.978008px;}
.y19d{bottom:3.055539px;}
.y1b2{bottom:3.068012px;}
.y278{bottom:3.096556px;}
.y23b{bottom:3.185569px;}
.y1ea{bottom:4.281025px;}
.y1d6{bottom:4.521586px;}
.y100{bottom:4.680000px;}
.y104{bottom:5.040000px;}
.y262{bottom:5.085000px;}
.y102{bottom:5.220000px;}
.y198{bottom:5.347194px;}
.y1ad{bottom:5.369020px;}
.y273{bottom:5.418973px;}
.y151{bottom:6.300000px;}
.y236{bottom:6.334131px;}
.y15a{bottom:6.345000px;}
.y117{bottom:6.480000px;}
.y24c{bottom:6.654988px;}
.y11f{bottom:6.660000px;}
.y15b{bottom:6.705000px;}
.y20b{bottom:6.731998px;}
.y11d{bottom:6.840000px;}
.y21d{bottom:7.020000px;}
.y182{bottom:7.740000px;}
.y1d0{bottom:7.884749px;}
.y1d3{bottom:7.892223px;}
.y17f{bottom:7.920000px;}
.y223{bottom:8.100000px;}
.yf6{bottom:8.943244px;}
.ye6{bottom:9.540000px;}
.ye4{bottom:10.620000px;}
.y9c{bottom:11.700000px;}
.ye0{bottom:12.060000px;}
.ye2{bottom:12.105000px;}
.yeb{bottom:13.140000px;}
.y17a{bottom:14.220000px;}
.ye9{bottom:15.840000px;}
.yf5{bottom:16.985088px;}
.y23a{bottom:18.188232px;}
.y1eb{bottom:18.238873px;}
.y17c{bottom:18.360000px;}
.y19c{bottom:19.148047px;}
.y1b1{bottom:19.226206px;}
.y277{bottom:19.405084px;}
.y20c{bottom:19.763993px;}
.y24d{bottom:22.734430px;}
.y1d2{bottom:24.737934px;}
.y1d5{bottom:25.896357px;}
.y9b{bottom:29.160000px;}
.y11b{bottom:29.880000px;}
.y125{bottom:29.925000px;}
.y120{bottom:30.060000px;}
.y196{bottom:35.225278px;}
.y1ab{bottom:35.369060px;}
.y271{bottom:35.698130px;}
.y6{bottom:35.925007px;}
.y234{bottom:36.372258px;}
.y209{bottom:38.375986px;}
.y1e8{bottom:38.528771px;}
.y24a{bottom:47.375873px;}
.y201{bottom:49.067982px;}
.y18f{bottom:49.764553px;}
.y1a2{bottom:49.967682px;}
.y267{bottom:50.432576px;}
.y22a{bottom:51.406461px;}
.y1c9{bottom:52.876401px;}
.y1e0{bottom:53.026695px;}
.y61{bottom:56.700000px;}
.y1c8{bottom:59.640096px;}
.y240{bottom:61.872956px;}
.y119{bottom:64.980000px;}
.y5{bottom:66.525004px;}
.y20e{bottom:69.905975px;}
.y210{bottom:69.947975px;}
.y268{bottom:71.411743px;}
.y1e1{bottom:71.985518px;}
.y22b{bottom:72.748722px;}
.y1a3{bottom:73.054469px;}
.y60{bottom:73.980000px;}
.y202{bottom:76.031973px;}
.y241{bottom:76.046283px;}
.y1ca{bottom:76.493280px;}
.y190{bottom:80.421799px;}
.y242{bottom:90.255582px;}
.y1e2{bottom:90.944341px;}
.y269{bottom:91.590966px;}
.y22c{bottom:94.090982px;}
.y1a4{bottom:96.141256px;}
.y4{bottom:97.125005px;}
.y203{bottom:102.959963px;}
.y243{bottom:104.428909px;}
.y1cb{bottom:109.153333px;}
.y1e3{bottom:109.903164px;}
.y1ed{bottom:111.050316px;}
.y191{bottom:111.079045px;}
.y24f{bottom:112.229484px;}
.y99{bottom:112.320000px;}
.y26a{bottom:112.570133px;}
.yb5{bottom:113.760000px;}
.y291{bottom:114.660000px;}
.y22d{bottom:115.458475px;}
.y1de{bottom:115.560000px;}
.y178{bottom:117.900000px;}
.y244{bottom:118.638208px;}
.y1a5{bottom:119.222930px;}
.y1b4{bottom:120.060000px;}
.y5d{bottom:123.480000px;}
.y21b{bottom:123.660000px;}
.y1e4{bottom:128.861987px;}
.y98{bottom:129.600000px;}
.y204{bottom:129.923953px;}
.yb4{bottom:131.040000px;}
.y259{bottom:131.760000px;}
.y290{bottom:131.940000px;}
.y1dd{bottom:132.660000px;}
.y26b{bottom:132.749356px;}
.y245{bottom:132.811535px;}
.y1b3{bottom:133.920000px;}
.y1a1{bottom:134.040000px;}
.y14e{bottom:135.180000px;}
.y22e{bottom:136.800735px;}
.yde{bottom:138.060000px;}
.y23{bottom:139.264499px;}
.y2b9{bottom:140.040000px;}
.y5c{bottom:140.760000px;}
.y21a{bottom:141.300000px;}
.y192{bottom:141.705736px;}
.y1cc{bottom:141.776017px;}
.y1a6{bottom:142.284151px;}
.y177{bottom:144.180000px;}
.y1ac{bottom:146.322273px;}
.y97{bottom:146.700000px;}
.y246{bottom:146.987859px;}
.y1e5{bottom:147.864279px;}
.yb3{bottom:148.320000px;}
.y258{bottom:149.040000px;}
.y28f{bottom:149.220000px;}
.y115{bottom:149.400000px;}
.y1dc{bottom:150.300000px;}
.y26c{bottom:153.702719px;}
.ydd{bottom:155.340000px;}
.y205{bottom:156.845944px;}
.y2b8{bottom:157.320000px;}
.y22f{bottom:157.386028px;}
.y5b{bottom:158.040000px;}
.y219{bottom:158.580000px;}
.y247{bottom:161.197159px;}
.y14d{bottom:161.460000px;}
.y96{bottom:164.010000px;}
.y1a7{bottom:164.609048px;}
.yb2{bottom:165.630000px;}
.y257{bottom:166.170000px;}
.y1e6{bottom:166.811111px;}
.y1db{bottom:167.610000px;}
.y176{bottom:170.490000px;}
.y193{bottom:171.599097px;}
.ydc{bottom:172.650000px;}
.y26d{bottom:173.902586px;}
.y5a{bottom:175.350000px;}
.y248{bottom:175.361492px;}
.y1cd{bottom:175.519755px;}
.y114{bottom:175.710000px;}
.y218{bottom:175.890000px;}
.y230{bottom:178.728289px;}
.y2b7{bottom:179.130000px;}
.y95{bottom:181.290000px;}
.yb1{bottom:182.730000px;}
.y256{bottom:183.450000px;}
.y28e{bottom:183.810000px;}
.y206{bottom:183.815934px;}
.y1da{bottom:184.890000px;}
.y1e7{bottom:185.772932px;}
.y14c{bottom:187.590000px;}
.y1a8{bottom:187.690722px;}
.y249{bottom:189.570792px;}
.ydb{bottom:189.930000px;}
.y59{bottom:192.630000px;}
.y217{bottom:193.170000px;}
.y26e{bottom:194.855948px;}
.y2b6{bottom:196.230000px;}
.y175{bottom:196.590000px;}
.y1a{bottom:196.933500px;}
.y94{bottom:198.570000px;}
.yb0{bottom:200.010000px;}
.y231{bottom:200.070549px;}
.y255{bottom:200.730000px;}
.y28d{bottom:200.910000px;}
.y113{bottom:201.990000px;}
.y1d9{bottom:202.170000px;}
.y194{bottom:202.256343px;}
.yda{bottom:207.210000px;}
.y1ce{bottom:209.300862px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y58{bottom:209.730000px;}
.y216{bottom:210.450000px;}
.y207{bottom:210.740924px;}
.y1a9{bottom:210.751943px;}
.y14b{bottom:213.870000px;}
.y26f{bottom:215.066137px;}
.y93{bottom:215.850000px;}
.yaf{bottom:217.290000px;}
.y254{bottom:218.010000px;}
.y28c{bottom:218.190000px;}
.y1d8{bottom:219.270000px;}
.y232{bottom:221.433836px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y174{bottom:222.870000px;}
.yd9{bottom:224.490000px;}
.y57{bottom:227.010000px;}
.y215{bottom:227.550000px;}
.y112{bottom:228.090000px;}
.y1d7{bottom:232.770000px;}
.y195{bottom:232.893219px;}
.y92{bottom:233.130000px;}
.y1aa{bottom:233.843843px;}
.yae{bottom:234.570000px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y253{bottom:235.290000px;}
.y28b{bottom:235.470000px;}
.y270{bottom:236.019500px;}
.y208{bottom:237.665914px;}
.y1c7{bottom:238.457641px;}
.y2b5{bottom:239.790000px;}
.y14a{bottom:240.150000px;}
.yd8{bottom:241.590000px;}
.y233{bottom:242.776097px;}
.y56{bottom:244.290000px;}
.y214{bottom:244.830000px;}
.y173{bottom:249.150000px;}
.y91{bottom:250.230000px;}
.yad{bottom:251.850000px;}
.y252{bottom:252.030000px;}
.y28a{bottom:252.750000px;}
.y1cf{bottom:254.189771px;}
.y111{bottom:254.370000px;}
.y2b4{bottom:257.070000px;}
.yd7{bottom:258.870000px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y55{bottom:261.570000px;}
.y213{bottom:262.110000px;}
.y1b0{bottom:264.798654px;}
.y149{bottom:266.430000px;}
.y90{bottom:267.510000px;}
.y1ae{bottom:268.633668px;}
.yac{bottom:269.130000px;}
.y289{bottom:270.030000px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y172{bottom:275.430000px;}
.yd6{bottom:276.150000px;}
.y54{bottom:278.850000px;}
.y212{bottom:279.030000px;}
.y110{bottom:280.650000px;}
.y8f{bottom:284.790000px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.yab{bottom:286.230000px;}
.y288{bottom:287.130000px;}
.y251{bottom:287.670000px;}
.y148{bottom:292.710000px;}
.yd5{bottom:293.430000px;}
.y53{bottom:296.130000px;}
.y171{bottom:301.710000px;}
.y8e{bottom:302.070000px;}
.yaa{bottom:303.510000px;}
.y287{bottom:304.410000px;}
.y250{bottom:304.950000px;}
.y10f{bottom:306.930000px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y147{bottom:310.350000px;}
.yd4{bottom:310.710000px;}
.y211{bottom:310.890000px;}
.y52{bottom:313.230000px;}
.y200{bottom:316.358998px;}
.y2b3{bottom:317.730000px;}
.y170{bottom:319.350000px;}
.ya9{bottom:320.790000px;}
.y286{bottom:321.690000px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y23f{bottom:324.122246px;}
.y146{bottom:327.450000px;}
.yd3{bottom:327.810000px;}
.y8d{bottom:327.990000px;}
.y51{bottom:330.510000px;}
.y10e{bottom:333.210000px;}
.y2b2{bottom:335.010000px;}
.y1d4{bottom:336.325692px;}
.y16f{bottom:336.450000px;}
.ya8{bottom:338.070000px;}
.y285{bottom:338.970000px;}
.y145{bottom:341.715000px;}
.y144{bottom:344.730000px;}
.yd2{bottom:345.090000px;}
.y50{bottom:347.790000px;}
.y11{bottom:348.133500px;}
.y16e{bottom:353.730000px;}
.y20f{bottom:355.418984px;}
.y284{bottom:356.250000px;}
.y2b1{bottom:356.790000px;}
.y143{bottom:359.040000px;}
.y10d{bottom:359.490000px;}
.y142{bottom:362.010000px;}
.yd1{bottom:362.370000px;}
.y8c{bottom:363.630000px;}
.ya7{bottom:363.990000px;}
.y4f{bottom:365.070000px;}
.y16d{bottom:371.010000px;}
.y283{bottom:373.530000px;}
.y2b0{bottom:374.070000px;}
.y141{bottom:379.290000px;}
.yd0{bottom:379.650000px;}
.y8b{bottom:380.730000px;}
.y4e{bottom:382.350000px;}
.y10c{bottom:385.590000px;}
.y10{bottom:386.785499px;}
.y16c{bottom:388.290000px;}
.y282{bottom:390.630000px;}
.y2af{bottom:395.850000px;}
.y13f{bottom:396.570000px;}
.y140{bottom:396.615000px;}
.ycf{bottom:396.930000px;}
.y8a{bottom:398.010000px;}
.y20d{bottom:398.258969px;}
.y4d{bottom:399.630000px;}
.y1a0{bottom:404.130000px;}
.y16b{bottom:405.570000px;}
.y281{bottom:407.910000px;}
.yf{bottom:408.044999px;}
.y10b{bottom:411.915000px;}
.y2ae{bottom:412.995000px;}
.y13e{bottom:413.715000px;}
.yce{bottom:414.255000px;}
.y89{bottom:415.335000px;}
.y4c{bottom:416.775000px;}
.y24b{bottom:417.471499px;}
.y19f{bottom:421.455000px;}
.y20a{bottom:422.198960px;}
.y16a{bottom:422.895000px;}
.y280{bottom:425.235000px;}
.y13b{bottom:430.995000px;}
.y13c{bottom:431.040000px;}
.ycd{bottom:431.355000px;}
.y88{bottom:432.615000px;}
.y4b{bottom:434.055000px;}
.y2ad{bottom:434.775000px;}
.y10a{bottom:438.195000px;}
.y169{bottom:439.995000px;}
.y27f{bottom:442.515000px;}
.y19e{bottom:444.495000px;}
.y18e{bottom:444.540000px;}
.y24e{bottom:445.530369px;}
.y138{bottom:448.275000px;}
.y139{bottom:448.290000px;}
.ycc{bottom:448.635000px;}
.y4a{bottom:451.335000px;}
.y2ac{bottom:452.055000px;}
.y197{bottom:456.772343px;}
.y27e{bottom:459.795000px;}
.y109{bottom:464.475000px;}
.y137{bottom:465.555000px;}
.ycb{bottom:465.915000px;}
.y87{bottom:466.995000px;}
.y49{bottom:468.615000px;}
.y2ab{bottom:473.835000px;}
.y27d{bottom:477.075000px;}
.y1d1{bottom:480.373713px;}
.y136{bottom:482.835000px;}
.yca{bottom:483.195000px;}
.y86{bottom:484.275000px;}
.ye{bottom:484.864502px;}
.y48{bottom:485.895000px;}
.y108{bottom:490.755000px;}
.y2aa{bottom:491.115000px;}
.y27c{bottom:494.175000px;}
.y135{bottom:500.115000px;}
.yc9{bottom:500.475000px;}
.y85{bottom:501.555000px;}
.yd{bottom:502.864502px;}
.y47{bottom:502.995000px;}
.y2a9{bottom:508.395000px;}
.y27b{bottom:511.455000px;}
.y107{bottom:517.035000px;}
.y134{bottom:517.215000px;}
.y84{bottom:518.835000px;}
.y46{bottom:520.275000px;}
.yc{bottom:520.864502px;}
.y9a{bottom:526.215000px;}
.yc8{bottom:526.395000px;}
.y2a8{bottom:529.995000px;}
.y106{bottom:534.495000px;}
.y83{bottom:536.115000px;}
.y27a{bottom:537.375000px;}
.y45{bottom:537.555000px;}
.yb{bottom:538.864499px;}
.y1c6{bottom:544.575000px;}
.y2a7{bottom:547.275000px;}
.y105{bottom:548.895000px;}
.y133{bottom:551.775000px;}
.y168{bottom:553.215000px;}
.y82{bottom:553.395000px;}
.y44{bottom:554.475000px;}
.ya6{bottom:554.835000px;}
.ya{bottom:556.864499px;}
.yc7{bottom:561.855000px;}
.y103{bottom:568.695000px;}
.y132{bottom:569.055000px;}
.y279{bottom:569.235000px;}
.y266{bottom:569.265000px;}
.y81{bottom:570.495000px;}
.y43{bottom:572.115000px;}
.y19b{bottom:574.767092px;}
.y1c5{bottom:577.155000px;}
.y199{bottom:578.586517px;}
.yc6{bottom:579.135000px;}
.y272{bottom:581.661546px;}
.y131{bottom:586.335000px;}
.y80{bottom:587.775000px;}
.y101{bottom:588.495000px;}
.y42{bottom:589.395000px;}
.y1ff{bottom:593.355000px;}
.y23e{bottom:594.255000px;}
.yc5{bottom:596.415000px;}
.y1c4{bottom:603.435000px;}
.y130{bottom:603.615000px;}
.y7f{bottom:605.055000px;}
.y41{bottom:606.495000px;}
.y2a6{bottom:608.115000px;}
.yff{bottom:608.475000px;}
.y1fe{bottom:610.995000px;}
.y23d{bottom:611.895000px;}
.yc4{bottom:613.695000px;}
.y12f{bottom:620.715000px;}
.y7e{bottom:622.335000px;}
.y40{bottom:623.775000px;}
.y23c{bottom:625.395000px;}
.y229{bottom:625.440000px;}
.y1fd{bottom:628.275000px;}
.y1c3{bottom:629.715000px;}
.yc3{bottom:630.975000px;}
.y235{bottom:635.712882px;}
.y167{bottom:639.615000px;}
.yfe{bottom:640.695000px;}
.y3f{bottom:641.055000px;}
.y9{bottom:645.510000px;}
.y1fc{bottom:645.555000px;}
.y2a5{bottom:646.995000px;}
.y7d{bottom:648.255000px;}
.y12e{bottom:655.305000px;}
.y1c2{bottom:655.845000px;}
.y166{bottom:656.745000px;}
.y3e{bottom:658.365000px;}
.y1fb{bottom:662.685000px;}
.y2a4{bottom:664.305000px;}
.yc2{bottom:665.385000px;}
.y7c{bottom:665.565000px;}
.y8{bottom:666.771000px;}
.y129{bottom:669.525000px;}
.y165{bottom:674.025000px;}
.y274{bottom:674.836916px;}
.y3d{bottom:675.645000px;}
.y1fa{bottom:679.965000px;}
.y1c1{bottom:682.125000px;}
.yc1{bottom:682.665000px;}
.y7b{bottom:683.025000px;}
.y2a3{bottom:686.085000px;}
.y164{bottom:691.305000px;}
.yfd{bottom:692.745000px;}
.y3c{bottom:692.925000px;}
.yc0{bottom:699.945000px;}
.y7a{bottom:700.305000px;}
.y276{bottom:701.240217px;}
.y2a2{bottom:703.365000px;}
.y1c0{bottom:708.405000px;}
.y163{bottom:708.585000px;}
.y3b{bottom:710.025000px;}
.y18d{bottom:713.445000px;}
.y1f9{bottom:714.525000px;}
.y12d{bottom:716.145000px;}
.ybf{bottom:717.225000px;}
.y79{bottom:717.585000px;}
.y2a1{bottom:720.645000px;}
.y162{bottom:725.865000px;}
.y7{bottom:726.298500px;}
.y3a{bottom:727.305000px;}
.y18c{bottom:730.545000px;}
.y1f8{bottom:731.805000px;}
.y237{bottom:733.780883px;}
.ybe{bottom:734.505000px;}
.y1bf{bottom:734.685000px;}
.y78{bottom:734.865000px;}
.y2a0{bottom:737.745000px;}
.y12a{bottom:739.365000px;}
.yfc{bottom:740.790000px;}
.y161{bottom:743.145000px;}
.y39{bottom:744.585000px;}
.y18b{bottom:748.185000px;}
.y1f7{bottom:748.905000px;}
.yfb{bottom:749.805000px;}
.ybd{bottom:751.605000px;}
.y77{bottom:752.145000px;}
.y3{bottom:752.599495px;}
.y29f{bottom:759.525000px;}
.y160{bottom:760.245000px;}
.y1be{bottom:760.965000px;}
.y38{bottom:761.865000px;}
.y239{bottom:762.240735px;}
.y12c{bottom:762.585000px;}
.y1f4{bottom:763.815000px;}
.y18a{bottom:765.465000px;}
.y1f6{bottom:766.905000px;}
.ybc{bottom:768.885000px;}
.y76{bottom:769.245000px;}
.yfa{bottom:773.025000px;}
.y29e{bottom:776.805000px;}
.y15f{bottom:777.525000px;}
.y37{bottom:779.145000px;}
.y189{bottom:782.745000px;}
.y1f3{bottom:784.905000px;}
.y12b{bottom:785.805000px;}
.ybb{bottom:786.165000px;}
.y75{bottom:786.525000px;}
.yf8{bottom:786.690000px;}
.y1bd{bottom:787.245000px;}
.yf9{bottom:795.705000px;}
.y36{bottom:796.245000px;}
.y188{bottom:797.685000px;}
.y29d{bottom:798.585000px;}
.y1f2{bottom:802.185000px;}
.yba{bottom:803.445000px;}
.y74{bottom:803.805000px;}
.y123{bottom:809.025000px;}
.y15e{bottom:812.085000px;}
.y1bc{bottom:813.345000px;}
.y35{bottom:813.525000px;}
.y29c{bottom:815.865000px;}
.yf7{bottom:818.745000px;}
.y1f1{bottom:819.465000px;}
.yb9{bottom:820.725000px;}
.y73{bottom:821.085000px;}
.y187{bottom:823.605000px;}
.y15d{bottom:826.305000px;}
.y34{bottom:830.805000px;}
.y128{bottom:832.245000px;}
.yf4{bottom:832.440000px;}
.yb8{bottom:834.225000px;}
.y1f0{bottom:836.745000px;}
.y29b{bottom:837.645000px;}
.y72{bottom:838.365000px;}
.y1bb{bottom:839.625000px;}
.yf3{bottom:841.425000px;}
.y265{bottom:841.785000px;}
.y33{bottom:848.085000px;}
.y15c{bottom:849.525000px;}
.y1ef{bottom:854.025000px;}
.y29a{bottom:854.745000px;}
.y71{bottom:855.645000px;}
.y264{bottom:859.245000px;}
.yec{bottom:862.305000px;}
.yf2{bottom:864.645000px;}
.y32{bottom:865.365000px;}
.y1ee{bottom:867.525000px;}
.y1ba{bottom:872.385000px;}
.y70{bottom:872.745000px;}
.y1df{bottom:873.124069px;}
.y263{bottom:873.645000px;}
.y186{bottom:875.445000px;}
.y299{bottom:876.525000px;}
.y124{bottom:878.865000px;}
.y2{bottom:879.369000px;}
.yf1{bottom:881.745000px;}
.y31{bottom:882.645000px;}
.ye1{bottom:889.845000px;}
.y6f{bottom:890.025000px;}
.y261{bottom:893.445000px;}
.y298{bottom:893.805000px;}
.y159{bottom:896.145000px;}
.yf0{bottom:899.070000px;}
.y30{bottom:899.790000px;}
.y185{bottom:901.230000px;}
.y127{bottom:902.130000px;}
.y228{bottom:905.190000px;}
.y6e{bottom:907.350000px;}
.y297{bottom:911.130000px;}
.y260{bottom:913.290000px;}
.yef{bottom:916.350000px;}
.y2f{bottom:917.070000px;}
.ye5{bottom:918.150000px;}
.y158{bottom:919.410000px;}
.y227{bottom:922.830000px;}
.y6d{bottom:924.630000px;}
.y126{bottom:925.350000px;}
.y184{bottom:927.150000px;}
.ye3{bottom:931.110000px;}
.y296{bottom:932.910000px;}
.yee{bottom:933.270000px;}
.y2e{bottom:934.350000px;}
.y226{bottom:937.770000px;}
.y6c{bottom:941.910000px;}
.y157{bottom:942.630000px;}
.y118{bottom:948.570000px;}
.y295{bottom:950.190000px;}
.y2d{bottom:951.630000px;}
.y183{bottom:953.070000px;}
.y225{bottom:958.470000px;}
.y6b{bottom:959.190000px;}
.y156{bottom:965.850000px;}
.y1{bottom:966.726000px;}
.y294{bottom:967.290000px;}
.y1e9{bottom:968.097609px;}
.y2c{bottom:968.910000px;}
.ydf{bottom:970.890000px;}
.y122{bottom:971.790000px;}
.y25f{bottom:973.050000px;}
.y6a{bottom:976.290000px;}
.y181{bottom:978.990000px;}
.y2b{bottom:986.190000px;}
.y155{bottom:989.070000px;}
.y2be{bottom:989.790000px;}
.y25e{bottom:992.850000px;}
.y1ec{bottom:993.459981px;}
.y69{bottom:993.570000px;}
.y121{bottom:995.190000px;}
.yea{bottom:997.350000px;}
.y224{bottom:999.690000px;}
.ya5{bottom:1003.290000px;}
.y180{bottom:1004.730000px;}
.y2a{bottom:1004.910000px;}
.y293{bottom:1006.350000px;}
.y68{bottom:1010.850000px;}
.y2bd{bottom:1011.570000px;}
.y154{bottom:1012.290000px;}
.y25d{bottom:1012.650000px;}
.y11a{bottom:1018.410000px;}
.y222{bottom:1020.390000px;}
.ya4{bottom:1020.570000px;}
.y1b9{bottom:1027.770000px;}
.y67{bottom:1028.130000px;}
.y2bc{bottom:1028.850000px;}
.y17e{bottom:1030.650000px;}
.y29{bottom:1032.450000px;}
.y25c{bottom:1032.630000px;}
.y153{bottom:1035.690000px;}
.ya3{bottom:1037.850000px;}
.ye7{bottom:1039.110000px;}
.y11e{bottom:1041.630000px;}
.ye8{bottom:1043.250000px;}
.y66{bottom:1045.410000px;}
.y2bb{bottom:1046.130000px;}
.y221{bottom:1047.210000px;}
.y25b{bottom:1052.430000px;}
.ya2{bottom:1055.130000px;}
.y17b{bottom:1056.570000px;}
.y152{bottom:1058.910000px;}
.y28{bottom:1060.170000px;}
.y65{bottom:1062.690000px;}
.y1b8{bottom:1063.410000px;}
.y11c{bottom:1064.850000px;}
.y220{bottom:1067.910000px;}
.y292{bottom:1071.330000px;}
.ya1{bottom:1072.410000px;}
.y64{bottom:1079.790000px;}
.y1b7{bottom:1080.690000px;}
.y150{bottom:1082.130000px;}
.y2ba{bottom:1085.190000px;}
.y27{bottom:1086.090000px;}
.y116{bottom:1088.070000px;}
.y21f{bottom:1088.430000px;}
.y179{bottom:1088.790000px;}
.y25a{bottom:1089.330000px;}
.ya0{bottom:1089.690000px;}
.y63{bottom:1097.070000px;}
.y1b6{bottom:1097.790000px;}
.y26{bottom:1103.370000px;}
.y14f{bottom:1105.350000px;}
.yb7{bottom:1106.430000px;}
.y9f{bottom:1106.790000px;}
.y21e{bottom:1109.130000px;}
.y1b5{bottom:1115.070000px;}
.y25{bottom:1120.650000px;}
.y62{bottom:1122.990000px;}
.yb6{bottom:1123.710000px;}
.y9e{bottom:1124.070000px;}
.y21c{bottom:1129.650000px;}
.y24{bottom:1138.650000px;}
.yed{bottom:1141.020000px;}
.y9d{bottom:1141.380000px;}
.y5f{bottom:1179.000000px;}
.y5e{bottom:1196.280000px;}
.h28{height:11.999813px;}
.h26{height:12.074332px;}
.h49{height:12.075412px;}
.h31{height:17.620278px;}
.h37{height:17.692200px;}
.h6b{height:17.856806px;}
.h3b{height:18.900000px;}
.h1b{height:19.080000px;}
.h68{height:19.116000px;}
.h1d{height:19.260000px;}
.h5a{height:19.765246px;}
.h1f{height:22.500000px;}
.h25{height:22.536000px;}
.h32{height:22.992935px;}
.h38{height:23.086787px;}
.h13{height:23.400000px;}
.h3e{height:23.654248px;}
.h67{height:23.760000px;}
.h56{height:23.796000px;}
.h12{height:24.480000px;}
.h2d{height:24.660000px;}
.h2e{height:24.696000px;}
.h2c{height:24.840000px;}
.h57{height:25.380000px;}
.h10{height:25.920000px;}
.h11{height:25.956000px;}
.h15{height:27.000000px;}
.h46{height:28.060497px;}
.h16{height:28.424518px;}
.h5e{height:28.465108px;}
.h6c{height:29.007634px;}
.h5b{height:29.546020px;}
.h14{height:29.700000px;}
.h34{height:30.657246px;}
.h3a{height:30.782383px;}
.h2b{height:30.960000px;}
.h6f{height:31.068779px;}
.h7{height:32.130000px;}
.h47{height:33.018301px;}
.h45{height:33.036658px;}
.h4d{height:33.041238px;}
.h4c{height:33.191426px;}
.h51{height:33.479988px;}
.h40{height:35.560781px;}
.h4e{height:36.195174px;}
.h5f{height:36.294738px;}
.h65{height:36.512504px;}
.h2a{height:38.340000px;}
.h3f{height:40.507433px;}
.h17{height:40.855147px;}
.hd{height:41.493516px;}
.h30{height:41.535046px;}
.h36{height:41.704584px;}
.h6a{height:42.092599px;}
.h59{height:42.873845px;}
.hf{height:43.020000px;}
.h6{height:45.900000px;}
.h39{height:46.241145px;}
.h33{height:46.491990px;}
.h3{height:48.195000px;}
.h29{height:49.016258px;}
.h27{height:49.320652px;}
.h4a{height:49.325063px;}
.h61{height:50.274952px;}
.h42{height:50.277868px;}
.h64{height:50.312171px;}
.h52{height:50.312794px;}
.h50{height:50.313382px;}
.h62{height:50.425027px;}
.h43{height:50.427951px;}
.h44{height:51.084495px;}
.h3d{height:51.601785px;}
.h6e{height:52.655742px;}
.h5d{height:52.894842px;}
.h1e{height:52.998047px;}
.h1c{height:54.421875px;}
.h2{height:55.080000px;}
.hc{height:58.621992px;}
.ha{height:58.651172px;}
.he{height:60.226875px;}
.h1a{height:65.518594px;}
.h19{height:66.543750px;}
.h55{height:66.757476px;}
.h54{height:66.902601px;}
.h21{height:68.940000px;}
.h24{height:68.976000px;}
.h22{height:69.120000px;}
.h9{height:70.628906px;}
.h18{height:70.644023px;}
.h63{height:77.701486px;}
.h4f{height:77.759972px;}
.h5{height:78.030000px;}
.h6d{height:83.090920px;}
.h5c{height:84.633101px;}
.h53{height:85.499969px;}
.hb{height:96.508125px;}
.h4{height:119.055004px;}
.h48{height:124.653362px;}
.h66{height:125.905186px;}
.h20{height:138.780000px;}
.h23{height:138.816000px;}
.h41{height:249.486599px;}
.h60{height:251.810372px;}
.h2f{height:256.644946px;}
.h35{height:257.692520px;}
.h4b{height:258.659907px;}
.h69{height:260.090062px;}
.h58{height:267.299947px;}
.h3c{height:288.036251px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w35{width:9.000327px;}
.w48{width:11.620912px;}
.w12{width:15.075248px;}
.w13{width:15.150851px;}
.w28{width:19.588383px;}
.w24{width:19.694644px;}
.w49{width:22.305694px;}
.w3e{width:22.406980px;}
.wa{width:27.000000px;}
.wc{width:34.575085px;}
.w3d{width:36.999080px;}
.w1b{width:39.060000px;}
.w6{width:39.240000px;}
.w14{width:39.780000px;}
.w1a{width:39.996000px;}
.w16{width:43.380000px;}
.w27{width:43.428947px;}
.w15{width:43.560000px;}
.w23{width:43.664537px;}
.w44{width:45.900000px;}
.wb{width:47.850381px;}
.w3b{width:48.420000px;}
.w33{width:53.272595px;}
.w7{width:53.856000px;}
.w8{width:54.036000px;}
.w45{width:59.256000px;}
.w19{width:59.580000px;}
.w17{width:59.616000px;}
.w18{width:59.760000px;}
.w2a{width:64.620000px;}
.w2b{width:65.376000px;}
.w2c{width:71.100000px;}
.w10{width:71.280000px;}
.w11{width:71.316000px;}
.w46{width:72.000000px;}
.w2e{width:76.495392px;}
.w30{width:77.618122px;}
.w38{width:81.000917px;}
.w42{width:81.178964px;}
.w1d{width:85.860000px;}
.w3f{width:86.709501px;}
.w21{width:88.380000px;}
.w1e{width:88.596000px;}
.w20{width:90.036000px;}
.w1f{width:91.980000px;}
.w9{width:94.500000px;}
.w1c{width:95.796000px;}
.w39{width:99.721129px;}
.w4a{width:101.844377px;}
.we{width:107.136000px;}
.w25{width:108.762319px;}
.wd{width:113.760000px;}
.wf{width:113.976000px;}
.w32{width:115.723914px;}
.w37{width:117.541331px;}
.w4{width:122.580000px;}
.w5{width:122.616000px;}
.w29{width:126.034658px;}
.w3a{width:127.621445px;}
.w41{width:133.738293px;}
.w43{width:192.597542px;}
.w34{width:273.022048px;}
.w2f{width:442.056539px;}
.w2d{width:579.329091px;}
.w31{width:579.339469px;}
.w36{width:587.166647px;}
.w26{width:595.294065px;}
.w22{width:598.523371px;}
.w2{width:637.794021px;}
.w40{width:669.411458px;}
.w47{width:677.873593px;}
.w3c{width:680.951694px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:2.160000px;}
.x2c{left:3.167518px;}
.x6a{left:4.289404px;}
.x13{left:6.480000px;}
.x23{left:7.740000px;}
.x3d{left:9.180000px;}
.x46{left:10.440000px;}
.x36{left:11.514000px;}
.x21{left:13.035746px;}
.x16{left:15.480000px;}
.x18{left:18.900000px;}
.x44{left:19.980000px;}
.x45{left:21.594000px;}
.x1c{left:22.953175px;}
.x10{left:25.920000px;}
.xd{left:27.000000px;}
.x43{left:29.745000px;}
.x75{left:32.167474px;}
.x65{left:33.619327px;}
.x4d{left:35.114040px;}
.x66{left:40.386386px;}
.xe{left:41.580000px;}
.x78{left:43.703442px;}
.x6c{left:48.816553px;}
.x72{left:50.650800px;}
.x79{left:53.747314px;}
.x67{left:55.648265px;}
.x7a{left:62.387204px;}
.x80{left:85.349139px;}
.x60{left:86.637393px;}
.x5f{left:88.882855px;}
.x5e{left:90.005586px;}
.x5d{left:91.128316px;}
.x5c{left:92.251047px;}
.x53{left:98.792349px;}
.x35{left:100.296000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:108.036000px;}
.xb{left:111.096000px;}
.x77{left:114.029924px;}
.x74{left:123.687334px;}
.x7b{left:126.269768px;}
.x8{left:137.736000px;}
.xa{left:140.796000px;}
.x4c{left:147.315000px;}
.x52{left:148.965000px;}
.x47{left:153.570000px;}
.x5a{left:156.903654px;}
.x4f{left:161.024296px;}
.x55{left:162.600329px;}
.x6d{left:165.135202px;}
.x68{left:168.957523px;}
.x6{left:171.210000px;}
.x37{left:185.070000px;}
.x1b{left:188.040000px;}
.x48{left:193.530000px;}
.x4{left:203.484001px;}
.x11{left:217.650000px;}
.x62{left:225.539930px;}
.x38{left:229.170000px;}
.x1d{left:235.830000px;}
.x17{left:266.295000px;}
.xc{left:279.435000px;}
.x33{left:281.790000px;}
.x61{left:282.911474px;}
.x39{left:289.515000px;}
.x34{left:296.895000px;}
.x26{left:302.835000px;}
.x6e{left:324.977011px;}
.x1e{left:327.540000px;}
.x31{left:332.565000px;}
.x19{left:333.795000px;}
.x5b{left:339.738339px;}
.x58{left:344.415000px;}
.x32{left:347.655000px;}
.x3a{left:349.995000px;}
.x70{left:352.515000px;}
.x7d{left:357.195000px;}
.x1f{left:375.375000px;}
.x49{left:377.355000px;}
.x73{left:391.604774px;}
.x24{left:393.015000px;}
.x54{left:394.264844px;}
.x4e{left:402.496025px;}
.x7e{left:403.815000px;}
.x3b{left:410.295000px;}
.x81{left:412.622442px;}
.x7c{left:416.426066px;}
.x14{left:428.295000px;}
.x6b{left:434.415000px;}
.x69{left:444.319247px;}
.x27{left:446.865000px;}
.x3{left:454.959000px;}
.x9{left:461.445000px;}
.x7f{left:463.965000px;}
.x4a{left:467.025000px;}
.x71{left:469.365000px;}
.x3c{left:470.805000px;}
.x59{left:477.465000px;}
.x25{left:500.505000px;}
.x3e{left:511.305000px;}
.x28{left:518.865000px;}
.x20{left:525.315000px;}
.xf{left:526.965000px;}
.x2e{left:547.815000px;}
.x2f{left:551.265000px;}
.x22{left:559.905000px;}
.x15{left:563.865000px;}
.x30{left:566.385000px;}
.x3f{left:571.785000px;}
.x6f{left:595.700076px;}
.x29{left:599.865000px;}
.x2b{left:603.240000px;}
.x56{left:609.731383px;}
.x2a{left:615.030000px;}
.x2d{left:618.450000px;}
.x50{left:628.536957px;}
.x40{left:632.130000px;}
.x4b{left:651.030000px;}
.x63{left:652.971029px;}
.x82{left:674.454491px;}
.x12{left:685.950000px;}
.x41{left:692.610000px;}
.x64{left:741.930000px;}
.x57{left:744.270000px;}
.x51{left:745.890000px;}
.x42{left:752.910000px;}
.x7{left:770.190000px;}
.x83{left:786.060000px;}
.x76{left:789.120000px;}
@media print{
.vb{vertical-align:-76.132052pt;}
.ve{vertical-align:-72.320000pt;}
.vf{vertical-align:-69.760000pt;}
.va{vertical-align:-68.027244pt;}
.vd{vertical-align:-64.000000pt;}
.v1{vertical-align:-60.800000pt;}
.v9{vertical-align:-56.069330pt;}
.v8{vertical-align:-48.097387pt;}
.v7{vertical-align:-36.006607pt;}
.v6{vertical-align:-28.034665pt;}
.v5{vertical-align:-16.076751pt;}
.vc{vertical-align:-11.957914pt;}
.v2{vertical-align:-8.320000pt;}
.v10{vertical-align:-5.607162pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:8.320000pt;}
.v3{vertical-align:24.320000pt;}
.ls23{letter-spacing:-0.672690pt;}
.ls22{letter-spacing:-0.669955pt;}
.ls8{letter-spacing:-0.592000pt;}
.ls2e{letter-spacing:-0.536777pt;}
.ls3c{letter-spacing:-0.480000pt;}
.ls3b{letter-spacing:-0.367467pt;}
.ls3a{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.198400pt;}
.ls1a{letter-spacing:-0.096000pt;}
.ls7{letter-spacing:-0.089067pt;}
.ls21{letter-spacing:-0.064000pt;}
.ls16{letter-spacing:-0.047360pt;}
.ls39{letter-spacing:-0.016000pt;}
.ls14{letter-spacing:-0.007680pt;}
.lsd{letter-spacing:-0.003840pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.007680pt;}
.ls33{letter-spacing:0.015360pt;}
.ls1c{letter-spacing:0.016000pt;}
.ls11{letter-spacing:0.047360pt;}
.ls36{letter-spacing:0.066165pt;}
.ls2{letter-spacing:0.094933pt;}
.ls34{letter-spacing:0.102827pt;}
.ls1d{letter-spacing:0.106240pt;}
.ls1f{letter-spacing:0.112000pt;}
.ls30{letter-spacing:0.120320pt;}
.ls18{letter-spacing:0.120533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.183467pt;}
.lsf{letter-spacing:0.183680pt;}
.ls1b{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.209707pt;}
.lsb{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.231040pt;}
.ls31{letter-spacing:0.265600pt;}
.ls12{letter-spacing:0.272533pt;}
.ls35{letter-spacing:0.304000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.327680pt;}
.ls26{letter-spacing:0.391040pt;}
.ls13{letter-spacing:0.409067pt;}
.lsc{letter-spacing:0.592000pt;}
.ls1e{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.800000pt;}
.ls37{letter-spacing:1.057885pt;}
.ls38{letter-spacing:1.440000pt;}
.ls25{letter-spacing:2.720000pt;}
.ls17{letter-spacing:4.000000pt;}
.ls24{letter-spacing:5.920000pt;}
.ls19{letter-spacing:27.129158pt;}
.ls6{letter-spacing:43.658667pt;}
.ls27{letter-spacing:47.428275pt;}
.ls2d{letter-spacing:47.454848pt;}
.ls28{letter-spacing:51.387673pt;}
.ls29{letter-spacing:51.440820pt;}
.ls2a{letter-spacing:55.373645pt;}
.ls2b{letter-spacing:55.426791pt;}
.ls2c{letter-spacing:55.533084pt;}
.ls5{letter-spacing:92.320000pt;}
.ls32{letter-spacing:575.018667pt;}
.ls2f{letter-spacing:603.818667pt;}
.ws10{word-spacing:-36.379721pt;}
.ws2e{word-spacing:-14.751995pt;}
.ws5{word-spacing:-13.872000pt;}
.ws9{word-spacing:-13.689067pt;}
.ws2{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.552533pt;}
.ws28{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.463467pt;}
.ws20{word-spacing:-13.440000pt;}
.wsf{word-spacing:-13.400533pt;}
.ws8{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232640pt;}
.ws3{word-spacing:-13.190933pt;}
.ws18{word-spacing:-13.081600pt;}
.ws3e{word-spacing:-12.960000pt;}
.ws3d{word-spacing:-12.912533pt;}
.ws4{word-spacing:-12.688000pt;}
.ws15{word-spacing:-12.320000pt;}
.ws22{word-spacing:-12.226037pt;}
.ws2f{word-spacing:-12.160000pt;}
.ws17{word-spacing:-12.000000pt;}
.ws39{word-spacing:-11.984000pt;}
.ws2c{word-spacing:-11.920775pt;}
.ws2d{word-spacing:-11.920636pt;}
.ws37{word-spacing:-11.920488pt;}
.ws38{word-spacing:-11.911670pt;}
.ws13{word-spacing:-11.904000pt;}
.ws3a{word-spacing:-11.680000pt;}
.ws1c{word-spacing:-11.015371pt;}
.ws1f{word-spacing:-10.955938pt;}
.ws30{word-spacing:-10.158122pt;}
.ws3b{word-spacing:-9.973021pt;}
.ws1d{word-spacing:-9.881088pt;}
.ws1a{word-spacing:-9.840919pt;}
.ws12{word-spacing:-9.250563pt;}
.wsa{word-spacing:-8.647680pt;}
.ws6{word-spacing:-8.640000pt;}
.ws16{word-spacing:-8.636160pt;}
.wsb{word-spacing:-8.632320pt;}
.ws33{word-spacing:-8.599331pt;}
.ws14{word-spacing:-8.000000pt;}
.ws19{word-spacing:-7.936000pt;}
.ws26{word-spacing:-7.827392pt;}
.ws27{word-spacing:-7.823043pt;}
.ws32{word-spacing:-7.040540pt;}
.ws24{word-spacing:-0.042978pt;}
.ws35{word-spacing:-0.042976pt;}
.ws23{word-spacing:-0.042850pt;}
.ws34{word-spacing:-0.042848pt;}
.ws29{word-spacing:-0.028288pt;}
.ws2a{word-spacing:-0.028160pt;}
.ws0{word-spacing:0.000000pt;}
.ws11{word-spacing:4.995304pt;}
.ws21{word-spacing:24.291838pt;}
.ws1e{word-spacing:87.804764pt;}
.ws1b{word-spacing:92.843676pt;}
.ws3c{word-spacing:94.162186pt;}
.ws2b{word-spacing:97.184605pt;}
.ws31{word-spacing:98.825576pt;}
.ws25{word-spacing:164.100558pt;}
.ws36{word-spacing:186.837007pt;}
._13{margin-left:-102.731856pt;}
._1c{margin-left:-6.017727pt;}
._1b{margin-left:-4.101123pt;}
._14{margin-left:-2.715552pt;}
._2{margin-left:-1.095680pt;}
._0{width:0.936320pt;}
._1{width:1.893547pt;}
._3{width:3.141973pt;}
._6{width:4.249600pt;}
._7{width:5.438933pt;}
._5{width:6.852480pt;}
._4{width:7.755520pt;}
._9{width:9.147093pt;}
._d{width:10.179200pt;}
._c{width:11.314560pt;}
._12{width:12.217600pt;}
._a{width:14.608000pt;}
._b{width:15.530880pt;}
._8{width:16.467200pt;}
._11{width:17.715200pt;}
._10{width:18.678400pt;}
._f{width:19.973760pt;}
._16{width:22.522880pt;}
._e{width:43.626667pt;}
._15{width:54.506667pt;}
._1a{width:86.777367pt;}
._18{width:91.983417pt;}
._19{width:100.322070pt;}
._17{width:105.491165pt;}
._22{width:115.109676pt;}
._21{width:121.188822pt;}
._1f{width:122.853293pt;}
._1e{width:125.922636pt;}
._1d{width:175.546256pt;}
._20{width:204.755886pt;}
.fs20{font-size:25.325682pt;}
.fs16{font-size:28.140441pt;}
.fs15{font-size:28.156086pt;}
.fs19{font-size:28.159990pt;}
.fs18{font-size:28.287990pt;}
.fs1a{font-size:30.847989pt;}
.fs22{font-size:30.932844pt;}
.fsb{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fse{font-size:35.398991pt;}
.fs10{font-size:35.543482pt;}
.fs26{font-size:35.874175pt;}
.fs1f{font-size:36.540006pt;}
.fs8{font-size:37.002251pt;}
.fs4{font-size:37.333333pt;}
.fs11{font-size:39.409848pt;}
.fsf{font-size:39.623635pt;}
.fs23{font-size:42.847733pt;}
.fs13{font-size:42.850218pt;}
.fs25{font-size:42.879453pt;}
.fs1c{font-size:42.879985pt;}
.fs1b{font-size:42.880485pt;}
.fs24{font-size:42.975637pt;}
.fs14{font-size:42.978129pt;}
.fs12{font-size:43.978550pt;}
.fs27{font-size:44.876804pt;}
.fs21{font-size:45.080581pt;}
.fsa{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs1e{font-size:58.879979pt;}
.fs1d{font-size:59.007979pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:64.013698pt;}
.fsd{font-size:64.334084pt;}
.fsc{font-size:64.733602pt;}
.fs17{font-size:64.739393pt;}
.fs6{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y19a{bottom:1.376124pt;}
.y275{bottom:1.376247pt;}
.y1af{bottom:1.381742pt;}
.y238{bottom:1.401791pt;}
.y17d{bottom:2.560000pt;}
.y13d{bottom:2.630546pt;}
.y13a{bottom:2.646881pt;}
.y1f5{bottom:2.647118pt;}
.y19d{bottom:2.716035pt;}
.y1b2{bottom:2.727121pt;}
.y278{bottom:2.752494pt;}
.y23b{bottom:2.831617pt;}
.y1ea{bottom:3.805355pt;}
.y1d6{bottom:4.019188pt;}
.y100{bottom:4.160000pt;}
.y104{bottom:4.480000pt;}
.y262{bottom:4.520000pt;}
.y102{bottom:4.640000pt;}
.y198{bottom:4.753061pt;}
.y1ad{bottom:4.772462pt;}
.y273{bottom:4.816865pt;}
.y151{bottom:5.600000pt;}
.y236{bottom:5.630338pt;}
.y15a{bottom:5.640000pt;}
.y117{bottom:5.760000pt;}
.y24c{bottom:5.915545pt;}
.y11f{bottom:5.920000pt;}
.y15b{bottom:5.960000pt;}
.y20b{bottom:5.983998pt;}
.y11d{bottom:6.080000pt;}
.y21d{bottom:6.240000pt;}
.y182{bottom:6.880000pt;}
.y1d0{bottom:7.008666pt;}
.y1d3{bottom:7.015309pt;}
.y17f{bottom:7.040000pt;}
.y223{bottom:7.200000pt;}
.yf6{bottom:7.949551pt;}
.ye6{bottom:8.480000pt;}
.ye4{bottom:9.440000pt;}
.y9c{bottom:10.400000pt;}
.ye0{bottom:10.720000pt;}
.ye2{bottom:10.760000pt;}
.yeb{bottom:11.680000pt;}
.y17a{bottom:12.640000pt;}
.ye9{bottom:14.080000pt;}
.yf5{bottom:15.097856pt;}
.y23a{bottom:16.167317pt;}
.y1eb{bottom:16.212332pt;}
.y17c{bottom:16.320000pt;}
.y19c{bottom:17.020487pt;}
.y1b1{bottom:17.089961pt;}
.y277{bottom:17.248964pt;}
.y20c{bottom:17.567994pt;}
.y24d{bottom:20.208382pt;}
.y1d2{bottom:21.989275pt;}
.y1d5{bottom:23.018984pt;}
.y9b{bottom:25.920000pt;}
.y11b{bottom:26.560000pt;}
.y125{bottom:26.600000pt;}
.y120{bottom:26.720000pt;}
.y196{bottom:31.311358pt;}
.y1ab{bottom:31.439165pt;}
.y271{bottom:31.731671pt;}
.y6{bottom:31.933340pt;}
.y234{bottom:32.330896pt;}
.y209{bottom:34.111988pt;}
.y1e8{bottom:34.247797pt;}
.y24a{bottom:42.111887pt;}
.y201{bottom:43.615984pt;}
.y18f{bottom:44.235158pt;}
.y1a2{bottom:44.415717pt;}
.y267{bottom:44.828956pt;}
.y22a{bottom:45.694632pt;}
.y1c9{bottom:47.001245pt;}
.y1e0{bottom:47.134840pt;}
.y61{bottom:50.400000pt;}
.y1c8{bottom:53.013418pt;}
.y240{bottom:54.998183pt;}
.y119{bottom:57.760000pt;}
.y5{bottom:59.133337pt;}
.y20e{bottom:62.138644pt;}
.y210{bottom:62.175978pt;}
.y268{bottom:63.477105pt;}
.y1e1{bottom:63.987127pt;}
.y22b{bottom:64.665530pt;}
.y1a3{bottom:64.937306pt;}
.y60{bottom:65.760000pt;}
.y202{bottom:67.583976pt;}
.y241{bottom:67.596696pt;}
.y1ca{bottom:67.994027pt;}
.y190{bottom:71.486044pt;}
.y242{bottom:80.227184pt;}
.y1e2{bottom:80.839414pt;}
.y269{bottom:81.414192pt;}
.y22c{bottom:83.636428pt;}
.y1a4{bottom:85.458895pt;}
.y4{bottom:86.333337pt;}
.y203{bottom:91.519967pt;}
.y243{bottom:92.825697pt;}
.y1cb{bottom:97.025185pt;}
.y1e3{bottom:97.691701pt;}
.y1ed{bottom:98.711392pt;}
.y191{bottom:98.736929pt;}
.y24f{bottom:99.759542pt;}
.y99{bottom:99.840000pt;}
.y26a{bottom:100.062340pt;}
.yb5{bottom:101.120000pt;}
.y291{bottom:101.920000pt;}
.y22d{bottom:102.629755pt;}
.y1de{bottom:102.720000pt;}
.y178{bottom:104.800000pt;}
.y244{bottom:105.456185pt;}
.y1a5{bottom:105.975938pt;}
.y1b4{bottom:106.720000pt;}
.y5d{bottom:109.760000pt;}
.y21b{bottom:109.920000pt;}
.y1e4{bottom:114.543988pt;}
.y98{bottom:115.200000pt;}
.y204{bottom:115.487958pt;}
.yb4{bottom:116.480000pt;}
.y259{bottom:117.120000pt;}
.y290{bottom:117.280000pt;}
.y1dd{bottom:117.920000pt;}
.y26b{bottom:117.999428pt;}
.y245{bottom:118.054698pt;}
.y1b3{bottom:119.040000pt;}
.y1a1{bottom:119.146667pt;}
.y14e{bottom:120.160000pt;}
.y22e{bottom:121.600653pt;}
.yde{bottom:122.720000pt;}
.y23{bottom:123.790666pt;}
.y2b9{bottom:124.480000pt;}
.y5c{bottom:125.120000pt;}
.y21a{bottom:125.600000pt;}
.y192{bottom:125.960654pt;}
.y1cc{bottom:126.023126pt;}
.y1a6{bottom:126.474801pt;}
.y177{bottom:128.160000pt;}
.y1ac{bottom:130.064243pt;}
.y97{bottom:130.400000pt;}
.y246{bottom:130.655875pt;}
.y1e5{bottom:131.434915pt;}
.yb3{bottom:131.840000pt;}
.y258{bottom:132.480000pt;}
.y28f{bottom:132.640000pt;}
.y115{bottom:132.800000pt;}
.y1dc{bottom:133.600000pt;}
.y26c{bottom:136.624639pt;}
.ydd{bottom:138.080000pt;}
.y205{bottom:139.418616pt;}
.y2b8{bottom:139.840000pt;}
.y22f{bottom:139.898692pt;}
.y5b{bottom:140.480000pt;}
.y219{bottom:140.960000pt;}
.y247{bottom:143.286363pt;}
.y14d{bottom:143.520000pt;}
.y96{bottom:145.786667pt;}
.y1a7{bottom:146.319154pt;}
.yb2{bottom:147.226667pt;}
.y257{bottom:147.706667pt;}
.y1e6{bottom:148.276543pt;}
.y1db{bottom:148.986667pt;}
.y176{bottom:151.546667pt;}
.y193{bottom:152.532531pt;}
.ydc{bottom:153.466667pt;}
.y26d{bottom:154.580076pt;}
.y5a{bottom:155.866667pt;}
.y248{bottom:155.876882pt;}
.y1cd{bottom:156.017560pt;}
.y114{bottom:156.186667pt;}
.y218{bottom:156.346667pt;}
.y230{bottom:158.869590pt;}
.y2b7{bottom:159.226667pt;}
.y95{bottom:161.146667pt;}
.yb1{bottom:162.426667pt;}
.y256{bottom:163.066667pt;}
.y28e{bottom:163.386667pt;}
.y206{bottom:163.391941pt;}
.y1da{bottom:164.346667pt;}
.y1e7{bottom:165.131495pt;}
.y14c{bottom:166.746667pt;}
.y1a8{bottom:166.836198pt;}
.y249{bottom:168.507370pt;}
.ydb{bottom:168.826667pt;}
.y59{bottom:171.226667pt;}
.y217{bottom:171.706667pt;}
.y26e{bottom:173.205287pt;}
.y2b6{bottom:174.426667pt;}
.y175{bottom:174.746667pt;}
.y1a{bottom:175.052000pt;}
.y94{bottom:176.506667pt;}
.yb0{bottom:177.786667pt;}
.y231{bottom:177.840488pt;}
.y255{bottom:178.426667pt;}
.y28d{bottom:178.586667pt;}
.y113{bottom:179.546667pt;}
.y1d9{bottom:179.706667pt;}
.y194{bottom:179.783416pt;}
.yda{bottom:184.186667pt;}
.y1ce{bottom:186.045210pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y58{bottom:186.426667pt;}
.y216{bottom:187.066667pt;}
.y207{bottom:187.325266pt;}
.y1a9{bottom:187.335060pt;}
.y14b{bottom:190.106667pt;}
.y26f{bottom:191.169900pt;}
.y93{bottom:191.866667pt;}
.yaf{bottom:193.146667pt;}
.y254{bottom:193.786667pt;}
.y28c{bottom:193.946667pt;}
.y1d8{bottom:194.906667pt;}
.y232{bottom:196.830077pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y174{bottom:198.106667pt;}
.yd9{bottom:199.546667pt;}
.y57{bottom:201.786667pt;}
.y215{bottom:202.266667pt;}
.y112{bottom:202.746667pt;}
.y1d7{bottom:206.906667pt;}
.y195{bottom:207.016194pt;}
.y92{bottom:207.226667pt;}
.y1aa{bottom:207.861194pt;}
.yae{bottom:208.506667pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y253{bottom:209.146667pt;}
.y28b{bottom:209.306667pt;}
.y270{bottom:209.795111pt;}
.y208{bottom:211.258591pt;}
.y1c7{bottom:211.962347pt;}
.y2b5{bottom:213.146667pt;}
.y14a{bottom:213.466667pt;}
.yd8{bottom:214.746667pt;}
.y233{bottom:215.800975pt;}
.y56{bottom:217.146667pt;}
.y214{bottom:217.626667pt;}
.y173{bottom:221.466667pt;}
.y91{bottom:222.426667pt;}
.yad{bottom:223.866667pt;}
.y252{bottom:224.026667pt;}
.y28a{bottom:224.666667pt;}
.y1cf{bottom:225.946463pt;}
.y111{bottom:226.106667pt;}
.y2b4{bottom:228.506667pt;}
.yd7{bottom:230.106667pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y55{bottom:232.506667pt;}
.y213{bottom:232.986667pt;}
.y1b0{bottom:235.376581pt;}
.y149{bottom:236.826667pt;}
.y90{bottom:237.786667pt;}
.y1ae{bottom:238.785483pt;}
.yac{bottom:239.226667pt;}
.y289{bottom:240.026667pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y172{bottom:244.826667pt;}
.yd6{bottom:245.466667pt;}
.y54{bottom:247.866667pt;}
.y212{bottom:248.026667pt;}
.y110{bottom:249.466667pt;}
.y8f{bottom:253.146667pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.yab{bottom:254.426667pt;}
.y288{bottom:255.226667pt;}
.y251{bottom:255.706667pt;}
.y148{bottom:260.186667pt;}
.yd5{bottom:260.826667pt;}
.y53{bottom:263.226667pt;}
.y171{bottom:268.186667pt;}
.y8e{bottom:268.506667pt;}
.yaa{bottom:269.786667pt;}
.y287{bottom:270.586667pt;}
.y250{bottom:271.066667pt;}
.y10f{bottom:272.826667pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y147{bottom:275.866667pt;}
.yd4{bottom:276.186667pt;}
.y211{bottom:276.346667pt;}
.y52{bottom:278.426667pt;}
.y200{bottom:281.207998pt;}
.y2b3{bottom:282.426667pt;}
.y170{bottom:283.866667pt;}
.ya9{bottom:285.146667pt;}
.y286{bottom:285.946667pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y23f{bottom:288.108663pt;}
.y146{bottom:291.066667pt;}
.yd3{bottom:291.386667pt;}
.y8d{bottom:291.546667pt;}
.y51{bottom:293.786667pt;}
.y10e{bottom:296.186667pt;}
.y2b2{bottom:297.786667pt;}
.y1d4{bottom:298.956171pt;}
.y16f{bottom:299.066667pt;}
.ya8{bottom:300.506667pt;}
.y285{bottom:301.306667pt;}
.y145{bottom:303.746667pt;}
.y144{bottom:306.426667pt;}
.yd2{bottom:306.746667pt;}
.y50{bottom:309.146667pt;}
.y11{bottom:309.452000pt;}
.y16e{bottom:314.426667pt;}
.y20f{bottom:315.927986pt;}
.y284{bottom:316.666667pt;}
.y2b1{bottom:317.146667pt;}
.y143{bottom:319.146667pt;}
.y10d{bottom:319.546667pt;}
.y142{bottom:321.786667pt;}
.yd1{bottom:322.106667pt;}
.y8c{bottom:323.226667pt;}
.ya7{bottom:323.546667pt;}
.y4f{bottom:324.506667pt;}
.y16d{bottom:329.786667pt;}
.y283{bottom:332.026667pt;}
.y2b0{bottom:332.506667pt;}
.y141{bottom:337.146667pt;}
.yd0{bottom:337.466667pt;}
.y8b{bottom:338.426667pt;}
.y4e{bottom:339.866667pt;}
.y10c{bottom:342.746667pt;}
.y10{bottom:343.809333pt;}
.y16c{bottom:345.146667pt;}
.y282{bottom:347.226667pt;}
.y2af{bottom:351.866667pt;}
.y13f{bottom:352.506667pt;}
.y140{bottom:352.546667pt;}
.ycf{bottom:352.826667pt;}
.y8a{bottom:353.786667pt;}
.y20d{bottom:354.007972pt;}
.y4d{bottom:355.226667pt;}
.y1a0{bottom:359.226667pt;}
.y16b{bottom:360.506667pt;}
.y281{bottom:362.586667pt;}
.yf{bottom:362.706666pt;}
.y10b{bottom:366.146667pt;}
.y2ae{bottom:367.106667pt;}
.y13e{bottom:367.746667pt;}
.yce{bottom:368.226667pt;}
.y89{bottom:369.186667pt;}
.y4c{bottom:370.466667pt;}
.y24b{bottom:371.085777pt;}
.y19f{bottom:374.626667pt;}
.y20a{bottom:375.287964pt;}
.y16a{bottom:375.906667pt;}
.y280{bottom:377.986667pt;}
.y13b{bottom:383.106667pt;}
.y13c{bottom:383.146667pt;}
.ycd{bottom:383.426667pt;}
.y88{bottom:384.546667pt;}
.y4b{bottom:385.826667pt;}
.y2ad{bottom:386.466667pt;}
.y10a{bottom:389.506667pt;}
.y169{bottom:391.106667pt;}
.y27f{bottom:393.346667pt;}
.y19e{bottom:395.106667pt;}
.y18e{bottom:395.146667pt;}
.y24e{bottom:396.026994pt;}
.y138{bottom:398.466667pt;}
.y139{bottom:398.480000pt;}
.ycc{bottom:398.786667pt;}
.y4a{bottom:401.186667pt;}
.y2ac{bottom:401.826667pt;}
.y197{bottom:406.019860pt;}
.y27e{bottom:408.706667pt;}
.y109{bottom:412.866667pt;}
.y137{bottom:413.826667pt;}
.ycb{bottom:414.146667pt;}
.y87{bottom:415.106667pt;}
.y49{bottom:416.546667pt;}
.y2ab{bottom:421.186667pt;}
.y27d{bottom:424.066667pt;}
.y1d1{bottom:426.998856pt;}
.y136{bottom:429.186667pt;}
.yca{bottom:429.506667pt;}
.y86{bottom:430.466667pt;}
.ye{bottom:430.990669pt;}
.y48{bottom:431.906667pt;}
.y108{bottom:436.226667pt;}
.y2aa{bottom:436.546667pt;}
.y27c{bottom:439.266667pt;}
.y135{bottom:444.546667pt;}
.yc9{bottom:444.866667pt;}
.y85{bottom:445.826667pt;}
.yd{bottom:446.990669pt;}
.y47{bottom:447.106667pt;}
.y2a9{bottom:451.906667pt;}
.y27b{bottom:454.626667pt;}
.y107{bottom:459.586667pt;}
.y134{bottom:459.746667pt;}
.y84{bottom:461.186667pt;}
.y46{bottom:462.466667pt;}
.yc{bottom:462.990669pt;}
.y9a{bottom:467.746667pt;}
.yc8{bottom:467.906667pt;}
.y2a8{bottom:471.106667pt;}
.y106{bottom:475.106667pt;}
.y83{bottom:476.546667pt;}
.y27a{bottom:477.666667pt;}
.y45{bottom:477.826667pt;}
.yb{bottom:478.990666pt;}
.y1c6{bottom:484.066667pt;}
.y2a7{bottom:486.466667pt;}
.y105{bottom:487.906667pt;}
.y133{bottom:490.466667pt;}
.y168{bottom:491.746667pt;}
.y82{bottom:491.906667pt;}
.y44{bottom:492.866667pt;}
.ya6{bottom:493.186667pt;}
.ya{bottom:494.990666pt;}
.yc7{bottom:499.426667pt;}
.y103{bottom:505.506667pt;}
.y132{bottom:505.826667pt;}
.y279{bottom:505.986667pt;}
.y266{bottom:506.013333pt;}
.y81{bottom:507.106667pt;}
.y43{bottom:508.546667pt;}
.y19b{bottom:510.904082pt;}
.y1c5{bottom:513.026667pt;}
.y199{bottom:514.299126pt;}
.yc6{bottom:514.786667pt;}
.y272{bottom:517.032485pt;}
.y131{bottom:521.186667pt;}
.y80{bottom:522.466667pt;}
.y101{bottom:523.106667pt;}
.y42{bottom:523.906667pt;}
.y1ff{bottom:527.426667pt;}
.y23e{bottom:528.226667pt;}
.yc5{bottom:530.146667pt;}
.y1c4{bottom:536.386667pt;}
.y130{bottom:536.546667pt;}
.y7f{bottom:537.826667pt;}
.y41{bottom:539.106667pt;}
.y2a6{bottom:540.546667pt;}
.yff{bottom:540.866667pt;}
.y1fe{bottom:543.106667pt;}
.y23d{bottom:543.906667pt;}
.yc4{bottom:545.506667pt;}
.y12f{bottom:551.746667pt;}
.y7e{bottom:553.186667pt;}
.y40{bottom:554.466667pt;}
.y23c{bottom:555.906667pt;}
.y229{bottom:555.946667pt;}
.y1fd{bottom:558.466667pt;}
.y1c3{bottom:559.746667pt;}
.yc3{bottom:560.866667pt;}
.y235{bottom:565.078117pt;}
.y167{bottom:568.546667pt;}
.yfe{bottom:569.506667pt;}
.y3f{bottom:569.826667pt;}
.y9{bottom:573.786667pt;}
.y1fc{bottom:573.826667pt;}
.y2a5{bottom:575.106667pt;}
.y7d{bottom:576.226667pt;}
.y12e{bottom:582.493333pt;}
.y1c2{bottom:582.973333pt;}
.y166{bottom:583.773333pt;}
.y3e{bottom:585.213333pt;}
.y1fb{bottom:589.053333pt;}
.y2a4{bottom:590.493333pt;}
.yc2{bottom:591.453333pt;}
.y7c{bottom:591.613333pt;}
.y8{bottom:592.685334pt;}
.y129{bottom:595.133333pt;}
.y165{bottom:599.133333pt;}
.y274{bottom:599.855037pt;}
.y3d{bottom:600.573333pt;}
.y1fa{bottom:604.413333pt;}
.y1c1{bottom:606.333333pt;}
.yc1{bottom:606.813333pt;}
.y7b{bottom:607.133333pt;}
.y2a3{bottom:609.853333pt;}
.y164{bottom:614.493333pt;}
.yfd{bottom:615.773333pt;}
.y3c{bottom:615.933333pt;}
.yc0{bottom:622.173333pt;}
.y7a{bottom:622.493333pt;}
.y276{bottom:623.324638pt;}
.y2a2{bottom:625.213333pt;}
.y1c0{bottom:629.693333pt;}
.y163{bottom:629.853333pt;}
.y3b{bottom:631.133333pt;}
.y18d{bottom:634.173333pt;}
.y1f9{bottom:635.133333pt;}
.y12d{bottom:636.573333pt;}
.ybf{bottom:637.533333pt;}
.y79{bottom:637.853333pt;}
.y2a1{bottom:640.573333pt;}
.y162{bottom:645.213333pt;}
.y7{bottom:645.598667pt;}
.y3a{bottom:646.493333pt;}
.y18c{bottom:649.373333pt;}
.y1f8{bottom:650.493333pt;}
.y237{bottom:652.249674pt;}
.ybe{bottom:652.893333pt;}
.y1bf{bottom:653.053333pt;}
.y78{bottom:653.213333pt;}
.y2a0{bottom:655.773333pt;}
.y12a{bottom:657.213333pt;}
.yfc{bottom:658.480000pt;}
.y161{bottom:660.573333pt;}
.y39{bottom:661.853333pt;}
.y18b{bottom:665.053333pt;}
.y1f7{bottom:665.693333pt;}
.yfb{bottom:666.493333pt;}
.ybd{bottom:668.093333pt;}
.y77{bottom:668.573333pt;}
.y3{bottom:668.977329pt;}
.y29f{bottom:675.133333pt;}
.y160{bottom:675.773333pt;}
.y1be{bottom:676.413333pt;}
.y38{bottom:677.213333pt;}
.y239{bottom:677.547320pt;}
.y12c{bottom:677.853333pt;}
.y1f4{bottom:678.946667pt;}
.y18a{bottom:680.413333pt;}
.y1f6{bottom:681.693333pt;}
.ybc{bottom:683.453333pt;}
.y76{bottom:683.773333pt;}
.yfa{bottom:687.133333pt;}
.y29e{bottom:690.493333pt;}
.y15f{bottom:691.133333pt;}
.y37{bottom:692.573333pt;}
.y189{bottom:695.773333pt;}
.y1f3{bottom:697.693333pt;}
.y12b{bottom:698.493333pt;}
.ybb{bottom:698.813333pt;}
.y75{bottom:699.133333pt;}
.yf8{bottom:699.280000pt;}
.y1bd{bottom:699.773333pt;}
.yf9{bottom:707.293333pt;}
.y36{bottom:707.773333pt;}
.y188{bottom:709.053333pt;}
.y29d{bottom:709.853333pt;}
.y1f2{bottom:713.053333pt;}
.yba{bottom:714.173333pt;}
.y74{bottom:714.493333pt;}
.y123{bottom:719.133333pt;}
.y15e{bottom:721.853333pt;}
.y1bc{bottom:722.973333pt;}
.y35{bottom:723.133333pt;}
.y29c{bottom:725.213333pt;}
.yf7{bottom:727.773333pt;}
.y1f1{bottom:728.413333pt;}
.yb9{bottom:729.533333pt;}
.y73{bottom:729.853333pt;}
.y187{bottom:732.093333pt;}
.y15d{bottom:734.493333pt;}
.y34{bottom:738.493333pt;}
.y128{bottom:739.773333pt;}
.yf4{bottom:739.946667pt;}
.yb8{bottom:741.533333pt;}
.y1f0{bottom:743.773333pt;}
.y29b{bottom:744.573333pt;}
.y72{bottom:745.213333pt;}
.y1bb{bottom:746.333333pt;}
.yf3{bottom:747.933333pt;}
.y265{bottom:748.253333pt;}
.y33{bottom:753.853333pt;}
.y15c{bottom:755.133333pt;}
.y1ef{bottom:759.133333pt;}
.y29a{bottom:759.773333pt;}
.y71{bottom:760.573333pt;}
.y264{bottom:763.773333pt;}
.yec{bottom:766.493333pt;}
.yf2{bottom:768.573333pt;}
.y32{bottom:769.213333pt;}
.y1ee{bottom:771.133333pt;}
.y1ba{bottom:775.453333pt;}
.y70{bottom:775.773333pt;}
.y1df{bottom:776.110283pt;}
.y263{bottom:776.573333pt;}
.y186{bottom:778.173333pt;}
.y299{bottom:779.133333pt;}
.y124{bottom:781.213333pt;}
.y2{bottom:781.661334pt;}
.yf1{bottom:783.773333pt;}
.y31{bottom:784.573333pt;}
.ye1{bottom:790.973333pt;}
.y6f{bottom:791.133333pt;}
.y261{bottom:794.173333pt;}
.y298{bottom:794.493333pt;}
.y159{bottom:796.573333pt;}
.yf0{bottom:799.173333pt;}
.y30{bottom:799.813333pt;}
.y185{bottom:801.093333pt;}
.y127{bottom:801.893333pt;}
.y228{bottom:804.613333pt;}
.y6e{bottom:806.533333pt;}
.y297{bottom:809.893333pt;}
.y260{bottom:811.813333pt;}
.yef{bottom:814.533333pt;}
.y2f{bottom:815.173333pt;}
.ye5{bottom:816.133333pt;}
.y158{bottom:817.253333pt;}
.y227{bottom:820.293333pt;}
.y6d{bottom:821.893333pt;}
.y126{bottom:822.533333pt;}
.y184{bottom:824.133333pt;}
.ye3{bottom:827.653333pt;}
.y296{bottom:829.253333pt;}
.yee{bottom:829.573333pt;}
.y2e{bottom:830.533333pt;}
.y226{bottom:833.573333pt;}
.y6c{bottom:837.253333pt;}
.y157{bottom:837.893333pt;}
.y118{bottom:843.173333pt;}
.y295{bottom:844.613333pt;}
.y2d{bottom:845.893333pt;}
.y183{bottom:847.173333pt;}
.y225{bottom:851.973333pt;}
.y6b{bottom:852.613333pt;}
.y156{bottom:858.533333pt;}
.y1{bottom:859.312000pt;}
.y294{bottom:859.813333pt;}
.y1e9{bottom:860.531208pt;}
.y2c{bottom:861.253333pt;}
.ydf{bottom:863.013333pt;}
.y122{bottom:863.813333pt;}
.y25f{bottom:864.933333pt;}
.y6a{bottom:867.813333pt;}
.y181{bottom:870.213333pt;}
.y2b{bottom:876.613333pt;}
.y155{bottom:879.173333pt;}
.y2be{bottom:879.813333pt;}
.y25e{bottom:882.533333pt;}
.y1ec{bottom:883.075539pt;}
.y69{bottom:883.173333pt;}
.y121{bottom:884.613333pt;}
.yea{bottom:886.533333pt;}
.y224{bottom:888.613333pt;}
.ya5{bottom:891.813333pt;}
.y180{bottom:893.093333pt;}
.y2a{bottom:893.253333pt;}
.y293{bottom:894.533333pt;}
.y68{bottom:898.533333pt;}
.y2bd{bottom:899.173333pt;}
.y154{bottom:899.813333pt;}
.y25d{bottom:900.133333pt;}
.y11a{bottom:905.253333pt;}
.y222{bottom:907.013333pt;}
.ya4{bottom:907.173333pt;}
.y1b9{bottom:913.573333pt;}
.y67{bottom:913.893333pt;}
.y2bc{bottom:914.533333pt;}
.y17e{bottom:916.133333pt;}
.y29{bottom:917.733333pt;}
.y25c{bottom:917.893333pt;}
.y153{bottom:920.613333pt;}
.ya3{bottom:922.533333pt;}
.ye7{bottom:923.653333pt;}
.y11e{bottom:925.893333pt;}
.ye8{bottom:927.333333pt;}
.y66{bottom:929.253333pt;}
.y2bb{bottom:929.893333pt;}
.y221{bottom:930.853333pt;}
.y25b{bottom:935.493333pt;}
.ya2{bottom:937.893333pt;}
.y17b{bottom:939.173333pt;}
.y152{bottom:941.253333pt;}
.y28{bottom:942.373333pt;}
.y65{bottom:944.613333pt;}
.y1b8{bottom:945.253333pt;}
.y11c{bottom:946.533333pt;}
.y220{bottom:949.253333pt;}
.y292{bottom:952.293333pt;}
.ya1{bottom:953.253333pt;}
.y64{bottom:959.813333pt;}
.y1b7{bottom:960.613333pt;}
.y150{bottom:961.893333pt;}
.y2ba{bottom:964.613333pt;}
.y27{bottom:965.413333pt;}
.y116{bottom:967.173333pt;}
.y21f{bottom:967.493333pt;}
.y179{bottom:967.813333pt;}
.y25a{bottom:968.293333pt;}
.ya0{bottom:968.613333pt;}
.y63{bottom:975.173333pt;}
.y1b6{bottom:975.813333pt;}
.y26{bottom:980.773333pt;}
.y14f{bottom:982.533333pt;}
.yb7{bottom:983.493333pt;}
.y9f{bottom:983.813333pt;}
.y21e{bottom:985.893333pt;}
.y1b5{bottom:991.173333pt;}
.y25{bottom:996.133333pt;}
.y62{bottom:998.213333pt;}
.yb6{bottom:998.853333pt;}
.y9e{bottom:999.173333pt;}
.y21c{bottom:1004.133333pt;}
.y24{bottom:1012.133333pt;}
.yed{bottom:1014.240000pt;}
.y9d{bottom:1014.560000pt;}
.y5f{bottom:1048.000000pt;}
.y5e{bottom:1063.360000pt;}
.h28{height:10.666500pt;}
.h26{height:10.732740pt;}
.h49{height:10.733700pt;}
.h31{height:15.662469pt;}
.h37{height:15.726400pt;}
.h6b{height:15.872717pt;}
.h3b{height:16.800000pt;}
.h1b{height:16.960000pt;}
.h68{height:16.992000pt;}
.h1d{height:17.120000pt;}
.h5a{height:17.569108pt;}
.h1f{height:20.000000pt;}
.h25{height:20.032000pt;}
.h32{height:20.438164pt;}
.h38{height:20.521589pt;}
.h13{height:20.800000pt;}
.h3e{height:21.025999pt;}
.h67{height:21.120000pt;}
.h56{height:21.152000pt;}
.h12{height:21.760000pt;}
.h2d{height:21.920000pt;}
.h2e{height:21.952000pt;}
.h2c{height:22.080000pt;}
.h57{height:22.560000pt;}
.h10{height:23.040000pt;}
.h11{height:23.072000pt;}
.h15{height:24.000000pt;}
.h46{height:24.942664pt;}
.h16{height:25.266238pt;}
.h5e{height:25.302319pt;}
.h6c{height:25.784563pt;}
.h5b{height:26.263129pt;}
.h14{height:26.400000pt;}
.h34{height:27.250885pt;}
.h3a{height:27.362118pt;}
.h2b{height:27.520000pt;}
.h6f{height:27.616692pt;}
.h7{height:28.560000pt;}
.h47{height:29.349601pt;}
.h45{height:29.365918pt;}
.h4d{height:29.369989pt;}
.h4c{height:29.503489pt;}
.h51{height:29.759989pt;}
.h40{height:31.609583pt;}
.h4e{height:32.173488pt;}
.h5f{height:32.261989pt;}
.h65{height:32.455559pt;}
.h2a{height:34.080000pt;}
.h3f{height:36.006607pt;}
.h17{height:36.315686pt;}
.hd{height:36.883125pt;}
.h30{height:36.920041pt;}
.h36{height:37.070741pt;}
.h6a{height:37.415643pt;}
.h59{height:38.110084pt;}
.hf{height:38.240000pt;}
.h6{height:40.800000pt;}
.h39{height:41.103240pt;}
.h33{height:41.326213pt;}
.h3{height:42.840000pt;}
.h29{height:43.570007pt;}
.h27{height:43.840579pt;}
.h4a{height:43.844501pt;}
.h61{height:44.688847pt;}
.h42{height:44.691438pt;}
.h64{height:44.721929pt;}
.h52{height:44.722484pt;}
.h50{height:44.723006pt;}
.h62{height:44.822246pt;}
.h43{height:44.824845pt;}
.h44{height:45.408440pt;}
.h3d{height:45.868253pt;}
.h6e{height:46.805104pt;}
.h5d{height:47.017638pt;}
.h1e{height:47.109375pt;}
.h1c{height:48.375000pt;}
.h2{height:48.960000pt;}
.hc{height:52.108438pt;}
.ha{height:52.134375pt;}
.he{height:53.535000pt;}
.h1a{height:58.238750pt;}
.h19{height:59.150000pt;}
.h55{height:59.339979pt;}
.h54{height:59.468979pt;}
.h21{height:61.280000pt;}
.h24{height:61.312000pt;}
.h22{height:61.440000pt;}
.h9{height:62.781250pt;}
.h18{height:62.794687pt;}
.h63{height:69.067988pt;}
.h4f{height:69.119975pt;}
.h5{height:69.360000pt;}
.h6d{height:73.858595pt;}
.h5c{height:75.229424pt;}
.h53{height:75.999973pt;}
.hb{height:85.785000pt;}
.h4{height:105.826671pt;}
.h48{height:110.802988pt;}
.h66{height:111.915721pt;}
.h20{height:123.360000pt;}
.h23{height:123.392000pt;}
.h41{height:221.765865pt;}
.h60{height:223.831441pt;}
.h2f{height:228.128840pt;}
.h35{height:229.060018pt;}
.h4b{height:229.919917pt;}
.h69{height:231.191166pt;}
.h58{height:237.599953pt;}
.h3c{height:256.032223pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w35{width:8.000291pt;}
.w48{width:10.329699pt;}
.w12{width:13.400221pt;}
.w13{width:13.467423pt;}
.w28{width:17.411896pt;}
.w24{width:17.506350pt;}
.w49{width:19.827284pt;}
.w3e{width:19.917316pt;}
.wa{width:24.000000pt;}
.wc{width:30.733409pt;}
.w3d{width:32.888071pt;}
.w1b{width:34.720000pt;}
.w6{width:34.880000pt;}
.w14{width:35.360000pt;}
.w1a{width:35.552000pt;}
.w16{width:38.560000pt;}
.w27{width:38.603508pt;}
.w15{width:38.720000pt;}
.w23{width:38.812922pt;}
.w44{width:40.800000pt;}
.wb{width:42.533672pt;}
.w3b{width:43.040000pt;}
.w33{width:47.353418pt;}
.w7{width:47.872000pt;}
.w8{width:48.032000pt;}
.w45{width:52.672000pt;}
.w19{width:52.960000pt;}
.w17{width:52.992000pt;}
.w18{width:53.120000pt;}
.w2a{width:57.440000pt;}
.w2b{width:58.112000pt;}
.w2c{width:63.200000pt;}
.w10{width:63.360000pt;}
.w11{width:63.392000pt;}
.w46{width:64.000000pt;}
.w2e{width:67.995904pt;}
.w30{width:68.993887pt;}
.w38{width:72.000815pt;}
.w42{width:72.159079pt;}
.w1d{width:76.320000pt;}
.w3f{width:77.075112pt;}
.w21{width:78.560000pt;}
.w1e{width:78.752000pt;}
.w20{width:80.032000pt;}
.w1f{width:81.760000pt;}
.w9{width:84.000000pt;}
.w1c{width:85.152000pt;}
.w39{width:88.641003pt;}
.w4a{width:90.528335pt;}
.we{width:95.232000pt;}
.w25{width:96.677617pt;}
.wd{width:101.120000pt;}
.wf{width:101.312000pt;}
.w32{width:102.865701pt;}
.w37{width:104.481183pt;}
.w4{width:108.960000pt;}
.w5{width:108.992000pt;}
.w29{width:112.030807pt;}
.w3a{width:113.441284pt;}
.w41{width:118.878483pt;}
.w43{width:171.197815pt;}
.w34{width:242.686265pt;}
.w2f{width:392.939146pt;}
.w2d{width:514.959192pt;}
.w31{width:514.968417pt;}
.w36{width:521.925908pt;}
.w26{width:529.150280pt;}
.w22{width:532.020775pt;}
.w2{width:566.928019pt;}
.w40{width:595.032407pt;}
.w47{width:602.554305pt;}
.w3c{width:605.290395pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:1.920000pt;}
.x2c{left:2.815572pt;}
.x6a{left:3.812803pt;}
.x13{left:5.760000pt;}
.x23{left:6.880000pt;}
.x3d{left:8.160000pt;}
.x46{left:9.280000pt;}
.x36{left:10.234667pt;}
.x21{left:11.587329pt;}
.x16{left:13.760000pt;}
.x18{left:16.800000pt;}
.x44{left:17.760000pt;}
.x45{left:19.194667pt;}
.x1c{left:20.402822pt;}
.x10{left:23.040000pt;}
.xd{left:24.000000pt;}
.x43{left:26.440000pt;}
.x75{left:28.593310pt;}
.x65{left:29.883846pt;}
.x4d{left:31.212480pt;}
.x66{left:35.899010pt;}
.xe{left:36.960000pt;}
.x78{left:38.847504pt;}
.x6c{left:43.392491pt;}
.x72{left:45.022934pt;}
.x79{left:47.775390pt;}
.x67{left:49.465124pt;}
.x7a{left:55.455292pt;}
.x80{left:75.865901pt;}
.x60{left:77.011016pt;}
.x5f{left:79.006982pt;}
.x5e{left:80.004965pt;}
.x5d{left:81.002948pt;}
.x5c{left:82.000931pt;}
.x53{left:87.815421pt;}
.x35{left:89.152000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:96.032000pt;}
.xb{left:98.752000pt;}
.x77{left:101.359933pt;}
.x74{left:109.944296pt;}
.x7b{left:112.239794pt;}
.x8{left:122.432000pt;}
.xa{left:125.152000pt;}
.x4c{left:130.946667pt;}
.x52{left:132.413333pt;}
.x47{left:136.506667pt;}
.x5a{left:139.469915pt;}
.x4f{left:143.132708pt;}
.x55{left:144.533625pt;}
.x6d{left:146.786846pt;}
.x68{left:150.184465pt;}
.x6{left:152.186667pt;}
.x37{left:164.506667pt;}
.x1b{left:167.146667pt;}
.x48{left:172.026667pt;}
.x4{left:180.874667pt;}
.x11{left:193.466667pt;}
.x62{left:200.479938pt;}
.x38{left:203.706667pt;}
.x1d{left:209.626667pt;}
.x17{left:236.706667pt;}
.xc{left:248.386667pt;}
.x33{left:250.480000pt;}
.x61{left:251.476866pt;}
.x39{left:257.346667pt;}
.x34{left:263.906667pt;}
.x26{left:269.186667pt;}
.x6e{left:288.868454pt;}
.x1e{left:291.146667pt;}
.x31{left:295.613333pt;}
.x19{left:296.706667pt;}
.x5b{left:301.989635pt;}
.x58{left:306.146667pt;}
.x32{left:309.026667pt;}
.x3a{left:311.106667pt;}
.x70{left:313.346667pt;}
.x7d{left:317.506667pt;}
.x1f{left:333.666667pt;}
.x49{left:335.426667pt;}
.x73{left:348.093133pt;}
.x24{left:349.346667pt;}
.x54{left:350.457639pt;}
.x4e{left:357.774244pt;}
.x7e{left:358.946667pt;}
.x3b{left:364.706667pt;}
.x81{left:366.775504pt;}
.x7c{left:370.156503pt;}
.x14{left:380.706667pt;}
.x6b{left:386.146667pt;}
.x69{left:394.950441pt;}
.x27{left:397.213333pt;}
.x3{left:404.408000pt;}
.x9{left:410.173333pt;}
.x7f{left:412.413333pt;}
.x4a{left:415.133333pt;}
.x71{left:417.213333pt;}
.x3c{left:418.493333pt;}
.x59{left:424.413333pt;}
.x25{left:444.893333pt;}
.x3e{left:454.493333pt;}
.x28{left:461.213333pt;}
.x20{left:466.946667pt;}
.xf{left:468.413333pt;}
.x2e{left:486.946667pt;}
.x2f{left:490.013333pt;}
.x22{left:497.693333pt;}
.x15{left:501.213333pt;}
.x30{left:503.453333pt;}
.x3f{left:508.253333pt;}
.x6f{left:529.511178pt;}
.x29{left:533.213333pt;}
.x2b{left:536.213333pt;}
.x56{left:541.983451pt;}
.x2a{left:546.693333pt;}
.x2d{left:549.733333pt;}
.x50{left:558.699517pt;}
.x40{left:561.893333pt;}
.x4b{left:578.693333pt;}
.x63{left:580.418693pt;}
.x82{left:599.515103pt;}
.x12{left:609.733333pt;}
.x41{left:615.653333pt;}
.x64{left:659.493333pt;}
.x57{left:661.573333pt;}
.x51{left:663.013333pt;}
.x42{left:669.253333pt;}
.x7{left:684.613333pt;}
.x83{left:698.720000pt;}
.x76{left:701.440000pt;}
}




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