
    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_aa9dff1c0c3309eaf8295524.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_1f84b0789a8e281aa138f0c7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.024902;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_74f7c0c458c9b4ec9cd64878.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861816;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_2ee9e6f8d2e5afd77aefd3e3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.873535;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_7f8a0aec91f0b5a91e6e919b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.873535;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_4befb6297d64e379beb83425.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895996;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_bd4758acfcbff53eb6d7167a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_80183c346773c2e352b871af.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_d92ddd30850eedb4eb950ad3.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8ade67ba21daefcf38c6cbb9.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_52ecd08d7257c38f06b4af63.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.861816;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_dfc8701c02110fcff84fc5e1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.861816;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_ca1d5e06ec41404e0831f1c2.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.435059;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_65a4e0324ca366ef9de6a69f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.792969;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_f4722891499d0633f6047b27.woff2')format("woff");}.fff{font-family:fff;line-height:0.861816;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_749faf2263ac5f213b946048.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.024902;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_0bdb6f4a90f6ab6defa1186e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.895996;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_83f94fb98d632c95e4d42051.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.873535;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;}
.m9{transform:matrix(0.000000,-0.223982,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.223982,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.223982,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.230179,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.230179,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.230179,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.232550,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.232550,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.232550,0.250000,0.000000,0,0);}
.md{transform:matrix(0.000000,-0.248921,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248921,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248921,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.250001,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250001,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250001,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.251785,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.251785,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.251785,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.248227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248227,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249999,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);}
.mc{transform:matrix(0.251084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251084,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.268759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268759,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.271528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271528,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.279040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279040,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);}
.v3{vertical-align:-13.569228px;}
.v2{vertical-align:-10.533401px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:3.264971px;}
.v4{vertical-align:22.860699px;}
.v6{vertical-align:27.360000px;}
.v1{vertical-align:33.120000px;}
.lsd{letter-spacing:-0.864000px;}
.ls2e{letter-spacing:-0.792000px;}
.ls1f{letter-spacing:-0.720000px;}
.ls30{letter-spacing:-0.576000px;}
.ls27{letter-spacing:-0.570000px;}
.ls1b{letter-spacing:-0.538800px;}
.ls2b{letter-spacing:-0.504000px;}
.ls19{letter-spacing:-0.463800px;}
.ls16{letter-spacing:-0.399339px;}
.ls20{letter-spacing:-0.397877px;}
.ls25{letter-spacing:-0.371400px;}
.ls21{letter-spacing:-0.340023px;}
.ls18{letter-spacing:-0.294000px;}
.ls17{letter-spacing:-0.291000px;}
.ls37{letter-spacing:-0.252000px;}
.ls4{letter-spacing:-0.229800px;}
.lsa{letter-spacing:-0.216000px;}
.ls33{letter-spacing:-0.207600px;}
.ls1a{letter-spacing:-0.164400px;}
.ls7{letter-spacing:-0.144000px;}
.ls35{letter-spacing:-0.126000px;}
.ls34{letter-spacing:-0.089400px;}
.ls14{letter-spacing:-0.037441px;}
.ls32{letter-spacing:-0.018000px;}
.ls15{letter-spacing:-0.016251px;}
.ls22{letter-spacing:-0.012314px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.022320px;}
.ls3{letter-spacing:0.036000px;}
.ls9{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.149760px;}
.lsf{letter-spacing:0.150000px;}
.ls36{letter-spacing:0.198000px;}
.ls26{letter-spacing:0.210000px;}
.ls2{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.256200px;}
.ls1c{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.313920px;}
.ls6{letter-spacing:0.324000px;}
.ls11{letter-spacing:0.329760px;}
.ls31{letter-spacing:0.331200px;}
.ls28{letter-spacing:0.358560px;}
.ls8{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.504000px;}
.ls23{letter-spacing:0.704597px;}
.ls29{letter-spacing:0.720000px;}
.ls2c{letter-spacing:1.728000px;}
.ls2d{letter-spacing:3.168000px;}
.ls2a{letter-spacing:5.328000px;}
.lse{letter-spacing:8.208000px;}
.ls1{letter-spacing:18.684000px;}
.ls1e{letter-spacing:175.783449px;}
.ls1d{letter-spacing:176.933384px;}
.ls2f{letter-spacing:194.376000px;}
.ls12{letter-spacing:197.429760px;}
.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;}
}
.ws1{word-spacing:-19.038240px;}
.ws6{word-spacing:-18.808440px;}
.ws23{word-spacing:-16.776000px;}
.ws28{word-spacing:-16.632000px;}
.ws2a{word-spacing:-16.488000px;}
.ws7{word-spacing:-16.416000px;}
.wsa{word-spacing:-16.344000px;}
.ws8{word-spacing:-16.272000px;}
.ws2b{word-spacing:-16.128000px;}
.wsb{word-spacing:-16.056000px;}
.ws29{word-spacing:-15.768000px;}
.ws2c{word-spacing:-15.301440px;}
.wsc{word-spacing:-15.226440px;}
.ws25{word-spacing:-15.180240px;}
.ws9{word-spacing:-14.970240px;}
.ws26{word-spacing:-14.907250px;}
.ws2e{word-spacing:-14.880840px;}
.ws16{word-spacing:-14.797431px;}
.ws11{word-spacing:-14.679240px;}
.ws12{word-spacing:-14.676240px;}
.ws24{word-spacing:-14.598840px;}
.ws13{word-spacing:-14.506440px;}
.ws14{word-spacing:-14.431440px;}
.ws22{word-spacing:-12.878018px;}
.ws1a{word-spacing:-12.862717px;}
.ws32{word-spacing:-12.402000px;}
.ws31{word-spacing:-12.204000px;}
.ws2d{word-spacing:-12.186000px;}
.ws2f{word-spacing:-12.078000px;}
.ws33{word-spacing:-11.952000px;}
.ws21{word-spacing:-11.874921px;}
.ws27{word-spacing:-10.902240px;}
.ws1b{word-spacing:-8.304310px;}
.ws30{word-spacing:-8.136000px;}
.ws3{word-spacing:-0.504000px;}
.ws4{word-spacing:-0.420000px;}
.ws5{word-spacing:-0.336000px;}
.ws2{word-spacing:-0.252000px;}
.ws0{word-spacing:0.000000px;}
.wse{word-spacing:13.104690px;}
.ws10{word-spacing:17.767493px;}
.wsd{word-spacing:34.434569px;}
.wsf{word-spacing:39.402069px;}
.ws1d{word-spacing:86.367722px;}
.ws1c{word-spacing:100.612268px;}
.ws1f{word-spacing:112.674061px;}
.ws1e{word-spacing:141.601649px;}
.ws18{word-spacing:142.127091px;}
.ws15{word-spacing:143.828994px;}
.ws19{word-spacing:147.671928px;}
.ws17{word-spacing:148.177899px;}
.ws20{word-spacing:1103.112047px;}
._5{margin-left:-14.544077px;}
._2d{margin-left:-2.878080px;}
._2{margin-left:-1.080000px;}
._0{width:1.006560px;}
._1{width:2.090640px;}
._e{width:3.138720px;}
._b{width:4.248000px;}
._a{width:5.400000px;}
._c{width:6.972000px;}
._11{width:8.568000px;}
._18{width:9.842880px;}
._d{width:11.160000px;}
._12{width:12.600000px;}
._19{width:13.680000px;}
._17{width:14.904000px;}
._37{width:16.121760px;}
._16{width:17.712000px;}
._9{width:18.864000px;}
._8{width:19.872000px;}
._10{width:21.168000px;}
._f{width:22.392000px;}
._7{width:23.472000px;}
._1c{width:24.840000px;}
._14{width:26.136000px;}
._13{width:27.144000px;}
._1b{width:28.452000px;}
._1a{width:30.024000px;}
._15{width:33.192000px;}
._26{width:46.402560px;}
._25{width:51.468000px;}
._35{width:55.021440px;}
._27{width:61.150080px;}
._1e{width:65.672640px;}
._24{width:73.694640px;}
._2e{width:76.408320px;}
._20{width:77.741280px;}
._22{width:79.986240px;}
._23{width:84.891360px;}
._2b{width:86.701200px;}
._29{width:88.328640px;}
._2c{width:104.786880px;}
._21{width:118.485360px;}
._36{width:124.643939px;}
._31{width:130.273804px;}
._32{width:140.856974px;}
._2f{width:143.668077px;}
._33{width:144.973985px;}
._34{width:156.990821px;}
._28{width:166.393920px;}
._2a{width:167.403360px;}
._38{width:196.104000px;}
._1f{width:197.429760px;}
._4{width:283.189230px;}
._6{width:302.927545px;}
._3{width:374.971440px;}
._1d{width:875.825760px;}
._30{width:901.279609px;}
.fc5{color:rgb(27,28,32);}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,0,255);}
.fc7{color:rgb(48,48,48);}
.fc6{color:rgb(35,31,32);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1d{font-size:2.880000px;}
.fs11{font-size:29.871620px;}
.fs1e{font-size:36.000000px;}
.fs16{font-size:42.715545px;}
.fs10{font-size:46.268767px;}
.fs18{font-size:46.323806px;}
.fs7{font-size:48.240000px;}
.fsf{font-size:50.873105px;}
.fsd{font-size:53.228171px;}
.fsb{font-size:53.423711px;}
.fs1a{font-size:53.623203px;}
.fs13{font-size:53.862695px;}
.fs3{font-size:54.000000px;}
.fs8{font-size:55.681246px;}
.fs15{font-size:56.138847px;}
.fs17{font-size:57.280260px;}
.fse{font-size:62.551552px;}
.fsc{font-size:62.551840px;}
.fs12{font-size:63.312455px;}
.fs1c{font-size:63.360000px;}
.fs9{font-size:64.697536px;}
.fs0{font-size:66.240000px;}
.fsa{font-size:67.368489px;}
.fs1b{font-size:68.272589px;}
.fs19{font-size:70.339951px;}
.fs6{font-size:72.000000px;}
.fs14{font-size:74.172850px;}
.fs5{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs4{font-size:131.760000px;}
.fs1{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y29d{bottom:2.865000px;}
.y28a{bottom:2.880000px;}
.y2a3{bottom:3.045000px;}
.y2a2{bottom:3.585000px;}
.y2c8{bottom:3.600000px;}
.y29c{bottom:3.765000px;}
.y289{bottom:3.780000px;}
.y1d{bottom:4.500000px;}
.y306{bottom:4.665000px;}
.y153{bottom:4.667929px;}
.yde{bottom:4.680000px;}
.y272{bottom:4.725000px;}
.y27c{bottom:4.860000px;}
.y1ca{bottom:5.385000px;}
.y1ce{bottom:5.400000px;}
.y37{bottom:5.565000px;}
.y28{bottom:5.580000px;}
.y25{bottom:5.625000px;}
.y293{bottom:5.745000px;}
.y2a{bottom:5.760000px;}
.y28d{bottom:5.790000px;}
.y29f{bottom:5.925000px;}
.y2ab{bottom:5.940000px;}
.y15d{bottom:6.069125px;}
.y16c{bottom:6.277490px;}
.y1c8{bottom:6.465000px;}
.ybe{bottom:6.480000px;}
.y290{bottom:6.510000px;}
.y296{bottom:6.645000px;}
.y284{bottom:6.660000px;}
.y2b7{bottom:6.840000px;}
.y300{bottom:7.005000px;}
.y177{bottom:7.129997px;}
.yc0{bottom:7.740000px;}
.y139{bottom:8.265000px;}
.y145{bottom:8.280000px;}
.y141{bottom:8.310000px;}
.y1a0{bottom:8.625000px;}
.y1aa{bottom:8.640000px;}
.ye0{bottom:9.000000px;}
.y2fa{bottom:9.180000px;}
.y2ba{bottom:9.360000px;}
.y1a6{bottom:9.390000px;}
.y1a8{bottom:9.720000px;}
.y19e{bottom:9.885000px;}
.y1ac{bottom:9.900000px;}
.y13b{bottom:10.065000px;}
.y143{bottom:10.080000px;}
.y303{bottom:11.865000px;}
.y2f3{bottom:11.880000px;}
.y2e9{bottom:12.060000px;}
.y305{bottom:12.945000px;}
.y181{bottom:13.478391px;}
.y280{bottom:13.860000px;}
.y27e{bottom:14.040000px;}
.y2fe{bottom:15.150000px;}
.y294{bottom:15.825000px;}
.y27a{bottom:15.840000px;}
.y28e{bottom:15.870000px;}
.y2af{bottom:15.885000px;}
.y18b{bottom:15.977776px;}
.y2ac{bottom:16.020000px;}
.y307{bottom:16.545000px;}
.y124{bottom:17.274297px;}
.y2f9{bottom:17.460000px;}
.y2bb{bottom:17.640000px;}
.y122{bottom:17.696720px;}
.y2fc{bottom:18.000000px;}
.y1b3{bottom:18.466840px;}
.y2ec{bottom:18.720000px;}
.y2d4{bottom:19.620000px;}
.y2d9{bottom:19.980000px;}
.y2cb{bottom:20.145000px;}
.y2c2{bottom:20.160000px;}
.y2d1{bottom:20.190000px;}
.y2c5{bottom:20.340000px;}
.y2a1{bottom:21.045000px;}
.y29b{bottom:21.225000px;}
.y288{bottom:21.240000px;}
.y2ff{bottom:23.430000px;}
.y27f{bottom:23.580000px;}
.y28f{bottom:23.970000px;}
.y295{bottom:24.105000px;}
.y283{bottom:24.120000px;}
.y2b0{bottom:24.165000px;}
.y1c{bottom:24.660000px;}
.y308{bottom:24.825000px;}
.y2b9{bottom:25.740000px;}
.y292{bottom:25.905000px;}
.y281{bottom:25.920000px;}
.y28c{bottom:25.950000px;}
.y2ae{bottom:25.965000px;}
.y2aa{bottom:26.100000px;}
.y2fd{bottom:26.280000px;}
.y279{bottom:26.670000px;}
.y27b{bottom:26.850000px;}
.y2ea{bottom:27.000000px;}
.y2d7{bottom:27.720000px;}
.y2da{bottom:28.080000px;}
.y30a{bottom:28.245000px;}
.y30d{bottom:28.425000px;}
.y2e8{bottom:28.440000px;}
.y2f2{bottom:28.470000px;}
.y183{bottom:28.511002px;}
.y2de{bottom:28.620000px;}
.y2d{bottom:31.140000px;}
.y27{bottom:31.320000px;}
.y2f{bottom:31.350000px;}
.y24{bottom:31.365000px;}
.y154{bottom:31.880786px;}
.y18d{bottom:32.279067px;}
.y15e{bottom:33.309004px;}
.y16d{bottom:33.814606px;}
.y178{bottom:34.666997px;}
.y2eb{bottom:35.280000px;}
.y2d6{bottom:35.460000px;}
.y2d3{bottom:36.000000px;}
.y126{bottom:36.091705px;}
.y2ca{bottom:36.525000px;}
.y2c7{bottom:36.540000px;}
.y2d0{bottom:36.570000px;}
.y2cd{bottom:36.705000px;}
.y2c1{bottom:36.720000px;}
.y2f1{bottom:36.750000px;}
.y1b5{bottom:37.799863px;}
.y156{bottom:49.732370px;}
.y301{bottom:51.285000px;}
.y16f{bottom:51.803431px;}
.y2d5{bottom:51.840000px;}
.y2e6{bottom:52.200000px;}
.y2f7{bottom:52.230000px;}
.y2dc{bottom:53.640000px;}
.y23{bottom:56.925000px;}
.y13{bottom:61.380000px;}
.y2e1{bottom:62.100000px;}
.y2f6{bottom:68.610000px;}
.y2e2{bottom:70.380000px;}
.y127{bottom:75.808624px;}
.y2e0{bottom:78.660000px;}
.y18e{bottom:81.466162px;}
.y184{bottom:82.870449px;}
.y1b6{bottom:87.244003px;}
.y170{bottom:91.844804px;}
.y157{bottom:95.609009px;}
.y189{bottom:107.640000px;}
.y180{bottom:107.715000px;}
.y217{bottom:111.240000px;}
.y16a{bottom:112.860000px;}
.y26d{bottom:113.400000px;}
.y207{bottom:113.580000px;}
.y30b{bottom:113.940000px;}
.y128{bottom:115.531314px;}
.yf8{bottom:116.460000px;}
.y12{bottom:117.900000px;}
.y1ab{bottom:120.420000px;}
.y5b{bottom:122.220000px;}
.y96{bottom:123.840000px;}
.y125{bottom:124.187506px;}
.y146{bottom:124.200000px;}
.yab{bottom:124.920000px;}
.y1cf{bottom:125.460000px;}
.y18c{bottom:126.746888px;}
.y120{bottom:127.620000px;}
.y182{bottom:128.042594px;}
.y25b{bottom:128.520000px;}
.y2d2{bottom:130.320000px;}
.y18f{bottom:130.592238px;}
.y1f1{bottom:131.400000px;}
.y171{bottom:131.916495px;}
.y2a5{bottom:135.180000px;}
.y155{bottom:136.531730px;}
.y1b7{bottom:136.572733px;}
.ydc{bottom:136.800000px;}
.y185{bottom:137.257500px;}
.y206{bottom:138.780000px;}
.y1b4{bottom:140.363045px;}
.y158{bottom:141.510947px;}
.yf7{bottom:141.660000px;}
.y1a9{bottom:145.800000px;}
.y1cd{bottom:146.520000px;}
.ybc{bottom:146.700000px;}
.y3f{bottom:148.320000px;}
.y95{bottom:149.040000px;}
.y144{bottom:149.760000px;}
.yaa{bottom:150.120000px;}
.y25a{bottom:150.480000px;}
.y216{bottom:151.380000px;}
.y26c{bottom:151.560000px;}
.y11{bottom:151.740000px;}
.y169{bottom:152.460000px;}
.y231{bottom:152.640000px;}
.y129{bottom:155.245924px;}
.y1f0{bottom:156.600000px;}
.y16e{bottom:157.348288px;}
.y5a{bottom:160.380000px;}
.y71{bottom:162.000000px;}
.y205{bottom:163.980000px;}
.y30e{bottom:164.160000px;}
.yf6{bottom:167.040000px;}
.y11f{bottom:167.220000px;}
.y1cc{bottom:167.400000px;}
.y1a7{bottom:169.920000px;}
.y1f5{bottom:170.460000px;}
.ybb{bottom:171.900000px;}
.y172{bottom:171.959033px;}
.ydb{bottom:172.080000px;}
.y259{bottom:172.440000px;}
.y142{bottom:173.520000px;}
.y94{bottom:174.240000px;}
.y230{bottom:174.600000px;}
.ya9{bottom:175.500000px;}
.y2a4{bottom:178.380000px;}
.y190{bottom:179.787393px;}
.y1ef{bottom:181.980000px;}
.y1b8{bottom:185.919685px;}
.y3e{bottom:186.480000px;}
.y159{bottom:187.312840px;}
.y1b{bottom:187.920000px;}
.y1cb{bottom:188.460000px;}
.y204{bottom:189.360000px;}
.y26b{bottom:189.720000px;}
.y168{bottom:191.160000px;}
.y186{bottom:191.559620px;}
.y215{bottom:191.700000px;}
.y2ee{bottom:191.910000px;}
.yf5{bottom:192.240000px;}
.y258{bottom:194.400000px;}
.y12a{bottom:194.960535px;}
.y1a5{bottom:195.120000px;}
.y2bc{bottom:195.840000px;}
.y22f{bottom:196.560000px;}
.y59{bottom:198.540000px;}
.y140{bottom:199.080000px;}
.y93{bottom:199.620000px;}
.ya8{bottom:200.700000px;}
.y70{bottom:201.600000px;}
.y11e{bottom:205.410000px;}
.y1ee{bottom:207.210000px;}
.y1f4{bottom:209.370000px;}
.y1c9{bottom:209.565000px;}
.y173{bottom:212.024893px;}
.y2be{bottom:212.610000px;}
.y30c{bottom:214.425000px;}
.y203{bottom:214.590000px;}
.y257{bottom:216.390000px;}
.y167{bottom:216.570000px;}
.yf4{bottom:217.470000px;}
.y22e{bottom:218.550000px;}
.y1a4{bottom:220.005000px;}
.y2bf{bottom:220.890000px;}
.y29e{bottom:221.625000px;}
.y13f{bottom:222.885000px;}
.y2a0{bottom:224.685000px;}
.y3d{bottom:224.850000px;}
.y26a{bottom:227.910000px;}
.y11d{bottom:228.090000px;}
.y191{bottom:228.890443px;}
.y2bd{bottom:229.170000px;}
.y214{bottom:232.050000px;}
.y1c7{bottom:232.065000px;}
.y1ed{bottom:232.590000px;}
.y15a{bottom:233.183730px;}
.y12b{bottom:234.675145px;}
.y1b9{bottom:235.278786px;}
.y58{bottom:236.730000px;}
.y256{bottom:238.350000px;}
.y202{bottom:239.970000px;}
.y6f{bottom:240.510000px;}
.ya7{bottom:241.050000px;}
.y166{bottom:241.770000px;}
.yf3{bottom:242.850000px;}
.y1a3{bottom:244.125000px;}
.y1f3{bottom:244.650000px;}
.y2cf{bottom:245.925000px;}
.y187{bottom:245.925437px;}
.y13e{bottom:246.645000px;}
.y92{bottom:250.230000px;}
.y174{bottom:252.067432px;}
.y11c{bottom:253.110000px;}
.y1ec{bottom:257.790000px;}
.y255{bottom:260.310000px;}
.y22d{bottom:262.650000px;}
.y3c{bottom:263.010000px;}
.y309{bottom:264.645000px;}
.y299{bottom:265.005000px;}
.y201{bottom:265.170000px;}
.y269{bottom:266.070000px;}
.ya6{bottom:266.250000px;}
.y29a{bottom:267.885000px;}
.yf2{bottom:268.050000px;}
.y1a2{bottom:268.245000px;}
.y12f{bottom:268.653586px;}
.y13d{bottom:272.205000px;}
.y213{bottom:272.370000px;}
.y12c{bottom:274.389756px;}
.y57{bottom:274.890000px;}
.y91{bottom:275.430000px;}
.y6e{bottom:275.610000px;}
.y196{bottom:275.909635px;}
.y192{bottom:278.074084px;}
.y11b{bottom:278.310000px;}
.y1c6{bottom:278.850000px;}
.y15b{bottom:279.089117px;}
.y165{bottom:281.370000px;}
.y254{bottom:282.270000px;}
.y1eb{bottom:282.990000px;}
.y22c{bottom:284.610000px;}
.y1ba{bottom:284.637887px;}
.y12e{bottom:285.954429px;}
.y195{bottom:290.300916px;}
.y200{bottom:290.370000px;}
.y123{bottom:290.455649px;}
.ya5{bottom:291.630000px;}
.y175{bottom:292.133292px;}
.y130{bottom:292.198429px;}
.y1a1{bottom:292.365000px;}
.yf1{bottom:293.430000px;}
.y13c{bottom:295.965000px;}
.y2ce{bottom:296.145000px;}
.y147{bottom:297.090000px;}
.y188{bottom:300.227557px;}
.y90{bottom:300.630000px;}
.y3b{bottom:301.170000px;}
.y11a{bottom:303.510000px;}
.y253{bottom:304.230000px;}
.y194{bottom:304.726736px;}
.y160{bottom:305.457117px;}
.y22b{bottom:306.570000px;}
.y179{bottom:307.513639px;}
.y298{bottom:308.205000px;}
.y1ea{bottom:308.370000px;}
.y164{bottom:310.700818px;}
.y162{bottom:311.597767px;}
.y212{bottom:312.510000px;}
.y56{bottom:313.050000px;}
.y12d{bottom:314.104366px;}
.y2ed{bottom:314.685000px;}
.y1ff{bottom:315.750000px;}
.y19f{bottom:316.485000px;}
.ya4{bottom:316.830000px;}
.yf0{bottom:318.630000px;}
.y1c5{bottom:318.990000px;}
.y13a{bottom:319.725000px;}
.y15c{bottom:324.879511px;}
.y8f{bottom:326.010000px;}
.y1bf{bottom:326.027613px;}
.y252{bottom:326.370000px;}
.y193{bottom:327.200160px;}
.y119{bottom:328.890000px;}
.y176{bottom:332.199152px;}
.y1e9{bottom:333.570000px;}
.y1bb{bottom:333.984840px;}
.y3a{bottom:339.330000px;}
.y1fe{bottom:340.950000px;}
.ya3{bottom:342.030000px;}
.y19d{bottom:342.225000px;}
.y268{bottom:342.390000px;}
.y1be{bottom:342.816754px;}
.yef{bottom:343.830000px;}
.y1c4{bottom:344.370000px;}
.y2cc{bottom:346.365000px;}
.y22a{bottom:346.710000px;}
.y138{bottom:346.905000px;}
.y251{bottom:348.330000px;}
.y55{bottom:351.210000px;}
.y297{bottom:351.585000px;}
.y211{bottom:352.830000px;}
.y118{bottom:354.090000px;}
.y304{bottom:357.525000px;}
.y1e8{bottom:358.950000px;}
.yda{bottom:359.310000px;}
.y1bd{bottom:359.593746px;}
.y1fd{bottom:366.150000px;}
.ya2{bottom:367.410000px;}
.yee{bottom:369.210000px;}
.y1c3{bottom:369.570000px;}
.y250{bottom:370.290000px;}
.y229{bottom:372.090000px;}
.y8e{bottom:376.410000px;}
.y39{bottom:377.490000px;}
.y148{bottom:378.408965px;}
.y117{bottom:379.470000px;}
.y151{bottom:379.984376px;}
.y267{bottom:380.550000px;}
.y1bc{bottom:383.319644px;}
.y1e7{bottom:384.150000px;}
.yd9{bottom:384.690000px;}
.y10{bottom:387.930000px;}
.y54{bottom:389.370000px;}
.y1fc{bottom:391.530000px;}
.y19c{bottom:392.250000px;}
.ya1{bottom:392.610000px;}
.y210{bottom:393.150000px;}
.y38{bottom:393.165000px;}
.y302{bottom:393.345000px;}
.y291{bottom:394.785000px;}
.y137{bottom:395.310000px;}
.y2c9{bottom:396.585000px;}
.y228{bottom:397.290000px;}
.y8d{bottom:401.790000px;}
.y116{bottom:404.670000px;}
.y149{bottom:405.627916px;}
.y152{bottom:407.191827px;}
.yed{bottom:408.810000px;}
.y1e6{bottom:409.350000px;}
.yd8{bottom:409.890000px;}
.y24f{bottom:414.210000px;}
.y1fb{bottom:416.730000px;}
.ya0{bottom:417.810000px;}
.y266{bottom:418.710000px;}
.y36{bottom:418.725000px;}
.y136{bottom:420.510000px;}
.y14b{bottom:423.474901px;}
.yf{bottom:426.090000px;}
.y8c{bottom:426.990000px;}
.y2f5{bottom:427.005000px;}
.y53{bottom:427.530000px;}
.y115{bottom:429.870000px;}
.y19b{bottom:432.570000px;}
.y20f{bottom:433.290000px;}
.y1e5{bottom:434.730000px;}
.yd7{bottom:435.090000px;}
.y24e{bottom:436.170000px;}
.y227{bottom:437.610000px;}
.y28b{bottom:438.165000px;}
.y1fa{bottom:442.155000px;}
.y9f{bottom:443.235000px;}
.y35{bottom:444.315000px;}
.y135{bottom:445.755000px;}
.y2c6{bottom:446.835000px;}
.yec{bottom:447.015000px;}
.y1c2{bottom:450.075000px;}
.y8b{bottom:452.415000px;}
.y1f2{bottom:453.855000px;}
.y265{bottom:456.915000px;}
.y19a{bottom:457.815000px;}
.y24d{bottom:458.175000px;}
.yd6{bottom:460.515000px;}
.y226{bottom:462.855000px;}
.ye{bottom:466.455000px;}
.y2fb{bottom:467.175000px;}
.y1f9{bottom:467.355000px;}
.y9e{bottom:468.435000px;}
.y34{bottom:470.055000px;}
.y114{bottom:470.235000px;}
.y20e{bottom:473.655000px;}
.y17f{bottom:474.375000px;}
.y1e4{bottom:474.915000px;}
.y1c1{bottom:475.455000px;}
.y14c{bottom:478.993741px;}
.y24c{bottom:480.135000px;}
.yeb{bottom:480.675000px;}
.y286{bottom:481.395000px;}
.y287{bottom:484.275000px;}
.y134{bottom:485.535000px;}
.yd5{bottom:485.715000px;}
.y225{bottom:488.235000px;}
.y9d{bottom:490.215000px;}
.y8a{bottom:492.555000px;}
.y264{bottom:495.075000px;}
.y113{bottom:495.435000px;}
.y33{bottom:495.615000px;}
.y2c4{bottom:496.875000px;}
.y199{bottom:498.135000px;}
.y17e{bottom:499.755000px;}
.y1e3{bottom:500.295000px;}
.y24b{bottom:502.095000px;}
.y9c{bottom:510.375000px;}
.y1c0{bottom:510.735000px;}
.y1b2{bottom:510.765000px;}
.yd4{bottom:511.095000px;}
.y14a{bottom:511.421896px;}
.y2f8{bottom:512.895000px;}
.y224{bottom:513.435000px;}
.y20d{bottom:513.975000px;}
.y52{bottom:514.335000px;}
.yd{bottom:514.875000px;}
.y89{bottom:517.935000px;}
.y112{bottom:520.815000px;}
.y32{bottom:521.355000px;}
.y24a{bottom:524.055000px;}
.y133{bottom:524.235000px;}
.y285{bottom:524.595000px;}
.y1e2{bottom:525.495000px;}
.y9b{bottom:530.715000px;}
.y263{bottom:533.235000px;}
.y14d{bottom:534.478083px;}
.yd3{bottom:536.295000px;}
.y100{bottom:538.455000px;}
.y17d{bottom:539.895000px;}
.y88{bottom:543.135000px;}
.y1a{bottom:543.855000px;}
.y111{bottom:546.015000px;}
.y31{bottom:546.915000px;}
.y2c3{bottom:547.095000px;}
.y51{bottom:547.275000px;}
.y9a{bottom:547.815000px;}
.y132{bottom:549.615000px;}
.y1e1{bottom:550.875000px;}
.y223{bottom:553.755000px;}
.y20c{bottom:554.295000px;}
.y2ef{bottom:557.535000px;}
.yd2{bottom:561.495000px;}
.yc{bottom:563.475000px;}
.yff{bottom:563.655000px;}
.y249{bottom:567.975000px;}
.y87{bottom:568.335000px;}
.y110{bottom:571.395000px;}
.y131{bottom:574.815000px;}
.y1e0{bottom:576.075000px;}
.y222{bottom:578.955000px;}
.y50{bottom:580.215000px;}
.yba{bottom:585.075000px;}
.y282{bottom:586.155000px;}
.yd1{bottom:586.875000px;}
.y198{bottom:588.855000px;}
.yfe{bottom:589.035000px;}
.y14e{bottom:589.916429px;}
.y248{bottom:589.935000px;}
.y121{bottom:591.915000px;}
.y86{bottom:593.715000px;}
.y20b{bottom:594.435000px;}
.y10f{bottom:596.595000px;}
.y2c0{bottom:597.315000px;}
.y30{bottom:598.215000px;}
.y1df{bottom:601.275000px;}
.y221{bottom:604.155000px;}
.y17c{bottom:605.415000px;}
.y2f4{bottom:607.755000px;}
.y262{bottom:609.555000px;}
.y247{bottom:611.895000px;}
.yb{bottom:612.075000px;}
.y4f{bottom:613.155000px;}
.y27d{bottom:613.875000px;}
.yfd{bottom:614.235000px;}
.y85{bottom:618.915000px;}
.y10e{bottom:621.795000px;}
.yb9{bottom:623.955000px;}
.y197{bottom:624.135000px;}
.y18a{bottom:624.165000px;}
.y1de{bottom:626.655000px;}
.y17b{bottom:630.795000px;}
.y246{bottom:634.035000px;}
.y20a{bottom:634.755000px;}
.yd0{bottom:637.455000px;}
.yfc{bottom:639.435000px;}
.y84{bottom:644.295000px;}
.y220{bottom:644.475000px;}
.y14f{bottom:645.435269px;}
.y4e{bottom:646.095000px;}
.y10d{bottom:647.175000px;}
.y2b8{bottom:647.535000px;}
.y261{bottom:647.715000px;}
.yb8{bottom:649.155000px;}
.y2e{bottom:649.515000px;}
.y6d{bottom:649.695000px;}
.y1dd{bottom:651.855000px;}
.y278{bottom:653.115000px;}
.y245{bottom:655.995000px;}
.y2f0{bottom:657.975000px;}
.ya{bottom:660.495000px;}
.ycf{bottom:662.655000px;}
.yfb{bottom:664.815000px;}
.y17a{bottom:665.895000px;}
.y16b{bottom:665.940000px;}
.y83{bottom:669.495000px;}
.y21f{bottom:669.855000px;}
.y10c{bottom:672.375000px;}
.yb7{bottom:674.565000px;}
.y209{bottom:675.105000px;}
.y1dc{bottom:677.085000px;}
.y244{bottom:677.985000px;}
.y15f{bottom:678.863867px;}
.y4d{bottom:679.245000px;}
.y260{bottom:685.905000px;}
.y163{bottom:686.602926px;}
.yce{bottom:687.885000px;}
.y161{bottom:688.339327px;}
.y6c{bottom:690.045000px;}
.y2b6{bottom:692.565000px;}
.y82{bottom:694.725000px;}
.y21e{bottom:695.085000px;}
.y10b{bottom:697.785000px;}
.y243{bottom:699.945000px;}
.y2c{bottom:700.845000px;}
.y150{bottom:700.862115px;}
.y1db{bottom:702.465000px;}
.y2e5{bottom:708.225000px;}
.y9{bottom:709.125000px;}
.y4c{bottom:712.185000px;}
.ycd{bottom:713.265000px;}
.yb6{bottom:714.885000px;}
.y6b{bottom:715.245000px;}
.y81{bottom:720.105000px;}
.y277{bottom:721.005000px;}
.y242{bottom:721.905000px;}
.y10a{bottom:722.985000px;}
.y25f{bottom:724.065000px;}
.y1da{bottom:727.665000px;}
.y21d{bottom:735.405000px;}
.ycc{bottom:738.465000px;}
.y2b5{bottom:739.185000px;}
.y6a{bottom:740.625000px;}
.y241{bottom:743.865000px;}
.y4b{bottom:745.125000px;}
.y80{bottom:745.305000px;}
.y276{bottom:746.205000px;}
.y109{bottom:748.185000px;}
.y2b{bottom:751.965000px;}
.y1d9{bottom:753.045000px;}
.yb5{bottom:755.025000px;}
.y208{bottom:755.565000px;}
.y8{bottom:757.725000px;}
.y25e{bottom:762.945000px;}
.ycb{bottom:763.665000px;}
.y2b4{bottom:764.385000px;}
.y69{bottom:765.825000px;}
.yea{bottom:769.425000px;}
.y7f{bottom:770.685000px;}
.y275{bottom:771.405000px;}
.y2e7{bottom:772.125000px;}
.y21c{bottom:775.545000px;}
.y4a{bottom:778.065000px;}
.y1d8{bottom:778.245000px;}
.y240{bottom:787.785000px;}
.y108{bottom:788.505000px;}
.yca{bottom:789.045000px;}
.y68{bottom:791.205000px;}
.yb4{bottom:794.625000px;}
.y7e{bottom:795.885000px;}
.y25d{bottom:803.085000px;}
.y29{bottom:803.265000px;}
.y1d7{bottom:803.445000px;}
.y2b3{bottom:803.985000px;}
.y7{bottom:807.405000px;}
.y23f{bottom:809.745000px;}
.y19{bottom:810.645000px;}
.y1f8{bottom:810.825000px;}
.y49{bottom:811.005000px;}
.yc9{bottom:814.245000px;}
.y21b{bottom:815.865000px;}
.y67{bottom:816.405000px;}
.ye9{bottom:819.825000px;}
.y7d{bottom:821.085000px;}
.y2df{bottom:822.345000px;}
.y25c{bottom:828.465000px;}
.y107{bottom:828.825000px;}
.y23e{bottom:831.705000px;}
.yb3{bottom:832.785000px;}
.y1f7{bottom:836.205000px;}
.yc8{bottom:839.625000px;}
.y66{bottom:841.605000px;}
.y2b2{bottom:842.145000px;}
.y1d6{bottom:843.765000px;}
.y48{bottom:843.945000px;}
.y7c{bottom:846.465000px;}
.y274{bottom:849.165000px;}
.y23d{bottom:853.665000px;}
.y26{bottom:854.565000px;}
.y18{bottom:855.195000px;}
.y21a{bottom:855.465000px;}
.ye8{bottom:860.145000px;}
.y1f6{bottom:861.405000px;}
.y6{bottom:862.125000px;}
.y99{bottom:863.025000px;}
.yc7{bottom:864.825000px;}
.y273{bottom:866.445000px;}
.y65{bottom:866.985000px;}
.y106{bottom:868.965000px;}
.y7b{bottom:871.665000px;}
.y2e4{bottom:872.565000px;}
.y23c{bottom:875.625000px;}
.y47{bottom:876.885000px;}
.y2b1{bottom:880.305000px;}
.ye7{bottom:885.345000px;}
.y98{bottom:886.605000px;}
.y64{bottom:892.185000px;}
.y219{bottom:893.625000px;}
.y1d5{bottom:894.345000px;}
.y7a{bottom:896.865000px;}
.y23b{bottom:897.585000px;}
.y17{bottom:899.745000px;}
.yc6{bottom:905.145000px;}
.y22{bottom:905.865000px;}
.y271{bottom:906.585000px;}
.y105{bottom:909.285000px;}
.ye6{bottom:910.770000px;}
.y97{bottom:912.030000px;}
.y63{bottom:917.610000px;}
.y1d4{bottom:919.590000px;}
.y5{bottom:920.850000px;}
.yb2{bottom:922.290000px;}
.y2e3{bottom:922.830000px;}
.y46{bottom:924.990000px;}
.y270{bottom:926.790000px;}
.y218{bottom:932.550000px;}
.y104{bottom:934.710000px;}
.ye5{bottom:935.970000px;}
.y79{bottom:937.230000px;}
.y2ad{bottom:940.110000px;}
.y23a{bottom:941.730000px;}
.yfa{bottom:942.810000px;}
.y1d3{bottom:944.970000px;}
.yc5{bottom:945.330000px;}
.y1b1{bottom:946.410000px;}
.y26f{bottom:946.950000px;}
.yb1{bottom:947.490000px;}
.y62{bottom:957.750000px;}
.y45{bottom:957.930000px;}
.y103{bottom:959.910000px;}
.ye4{bottom:961.350000px;}
.y78{bottom:962.610000px;}
.y239{bottom:963.690000px;}
.yf9{bottom:968.010000px;}
.y26e{bottom:968.730000px;}
.y1d2{bottom:970.170000px;}
.yb0{bottom:972.870000px;}
.y2db{bottom:973.050000px;}
.y4{bottom:979.530000px;}
.y61{bottom:983.130000px;}
.y2a9{bottom:983.310000px;}
.yc4{bottom:984.930000px;}
.y102{bottom:985.110000px;}
.y238{bottom:985.650000px;}
.ye3{bottom:986.550000px;}
.y77{bottom:987.810000px;}
.y44{bottom:990.870000px;}
.y16{bottom:994.290000px;}
.y1d1{bottom:995.370000px;}
.yaf{bottom:998.070000px;}
.yc3{bottom:1002.210000px;}
.y21{bottom:1005.270000px;}
.y237{bottom:1007.610000px;}
.y60{bottom:1008.330000px;}
.y1b0{bottom:1010.490000px;}
.ye2{bottom:1011.750000px;}
.y76{bottom:1013.010000px;}
.y1d0{bottom:1020.750000px;}
.yae{bottom:1023.270000px;}
.y43{bottom:1023.810000px;}
.yc2{bottom:1024.170000px;}
.y101{bottom:1024.710000px;}
.y2a8{bottom:1026.690000px;}
.y236{bottom:1029.570000px;}
.y5f{bottom:1033.530000px;}
.y1af{bottom:1035.690000px;}
.y3{bottom:1038.210000px;}
.y75{bottom:1038.390000px;}
.y2dd{bottom:1040.190000px;}
.y15{bottom:1040.730000px;}
.y20{bottom:1043.430000px;}
.yc1{bottom:1046.130000px;}
.yad{bottom:1048.650000px;}
.ye1{bottom:1051.350000px;}
.y235{bottom:1051.530000px;}
.y42{bottom:1056.750000px;}
.y5e{bottom:1058.910000px;}
.y1ae{bottom:1060.890000px;}
.y74{bottom:1063.590000px;}
.ybf{bottom:1068.090000px;}
.ydf{bottom:1068.630000px;}
.y2a7{bottom:1069.890000px;}
.y234{bottom:1073.490000px;}
.yac{bottom:1073.850000px;}
.y1f{bottom:1085.010000px;}
.y14{bottom:1086.990000px;}
.y73{bottom:1088.790000px;}
.y2d8{bottom:1090.410000px;}
.ybd{bottom:1092.750000px;}
.ydd{bottom:1094.550000px;}
.y233{bottom:1095.450000px;}
.y41{bottom:1096.350000px;}
.y5d{bottom:1099.050000px;}
.y1ad{bottom:1101.210000px;}
.y2{bottom:1102.650000px;}
.y2a6{bottom:1113.270000px;}
.y72{bottom:1114.170000px;}
.y232{bottom:1117.410000px;}
.y1e{bottom:1133.610000px;}
.y40{bottom:1136.310000px;}
.y5c{bottom:1139.370000px;}
.y1{bottom:1140.810000px;}
.h55{height:2.067188px;}
.h4b{height:19.980000px;}
.h1c{height:20.145000px;}
.h4c{height:20.160000px;}
.h4a{height:20.182500px;}
.h43{height:20.865000px;}
.h46{height:20.878500px;}
.h47{height:21.058500px;}
.h45{height:21.060000px;}
.h44{height:21.096000px;}
.h19{height:21.945000px;}
.h51{height:22.485000px;}
.h5c{height:22.680000px;}
.h1a{height:23.205000px;}
.h23{height:23.745000px;}
.h26{height:23.758500px;}
.h24{height:23.796000px;}
.h3b{height:24.105000px;}
.h3e{height:24.118500px;}
.h1d{height:24.465000px;}
.h3c{height:24.876000px;}
.h3d{height:25.200000px;}
.h3a{height:25.365000px;}
.h3f{height:25.378500px;}
.h11{height:25.545000px;}
.h27{height:25.558500px;}
.h25{height:25.560000px;}
.h13{height:25.581000px;}
.h12{height:25.725000px;}
.h78{height:32.925000px;}
.h79{height:35.085000px;}
.h67{height:35.991211px;}
.h57{height:36.525000px;}
.h54{height:36.705000px;}
.h62{height:36.914062px;}
.h5d{height:37.546875px;}
.h4e{height:38.325000px;}
.h52{height:38.759766px;}
.h76{height:39.441000px;}
.h49{height:40.125000px;}
.h7a{height:42.105000px;}
.h50{height:42.465000px;}
.h59{height:42.478500px;}
.h56{height:42.501000px;}
.h5b{height:42.502500px;}
.h5a{height:42.510000px;}
.h58{height:42.516000px;}
.h53{height:42.645000px;}
.h74{height:43.905000px;}
.h4d{height:43.950000px;}
.h4f{height:44.055000px;}
.h6{height:44.191406px;}
.h5e{height:44.310000px;}
.h35{height:44.550978px;}
.h75{height:44.985000px;}
.h18{height:45.281250px;}
.ha{height:46.057500px;}
.h2{height:47.545312px;}
.h38{height:48.314282px;}
.h17{height:49.218750px;}
.h63{height:49.305000px;}
.h64{height:49.341000px;}
.h65{height:49.356000px;}
.h61{height:49.485000px;}
.h7d{height:49.498500px;}
.h6d{height:49.500000px;}
.h6c{height:49.522500px;}
.h72{height:49.530000px;}
.h7c{height:49.536000px;}
.h15{height:50.062500px;}
.he{height:51.120000px;}
.h10{height:51.285000px;}
.hd{height:51.300000px;}
.hf{height:51.330000px;}
.h14{height:51.679688px;}
.h2c{height:53.059059px;}
.h5f{height:53.199844px;}
.h2d{height:54.015865px;}
.h2e{height:54.153857px;}
.h2a{height:55.515319px;}
.h22{height:55.719261px;}
.h41{height:55.927324px;}
.h31{height:56.177108px;}
.h1f{height:58.073799px;}
.hc{height:58.573125px;}
.h36{height:59.741521px;}
.h8{height:60.465234px;}
.h33{height:61.816034px;}
.h6f{height:63.180000px;}
.h66{height:64.618500px;}
.h2b{height:65.239314px;}
.h29{height:65.239615px;}
.h68{height:65.370000px;}
.h30{height:66.032912px;}
.h6a{height:66.405000px;}
.h9{height:66.583125px;}
.h20{height:67.477508px;}
.h1b{height:67.745391px;}
.h4{height:68.733984px;}
.h21{height:70.263229px;}
.h42{height:71.206176px;}
.h39{height:73.362370px;}
.h16{height:74.004654px;}
.h48{height:74.953125px;}
.hb{height:76.882500px;}
.h32{height:77.359965px;}
.h5{height:78.366094px;}
.h7{height:94.573828px;}
.h77{height:111.585000px;}
.h6e{height:113.400000px;}
.h69{height:116.625000px;}
.h73{height:129.801000px;}
.h3{height:137.287969px;}
.h6b{height:149.782500px;}
.h7b{height:149.796000px;}
.h71{height:149.970000px;}
.h1e{height:342.739051px;}
.h34{height:343.648021px;}
.h2f{height:359.403358px;}
.h37{height:375.969333px;}
.h70{height:392.820000px;}
.h40{height:413.241245px;}
.h60{height:450.975000px;}
.h28{height:728.253556px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:37.425000px;}
.w14{width:53.280000px;}
.w2e{width:53.625000px;}
.w2a{width:53.640000px;}
.w2c{width:53.676000px;}
.w2d{width:53.985000px;}
.w2f{width:54.021000px;}
.w2b{width:54.360000px;}
.w30{width:55.245000px;}
.w29{width:68.421000px;}
.w16{width:80.265000px;}
.w17{width:91.101000px;}
.w15{width:91.116000px;}
.wc{width:95.565000px;}
.wa{width:95.616000px;}
.wb{width:95.745000px;}
.w9{width:95.760000px;}
.w8{width:95.781000px;}
.w7{width:101.149500px;}
.w1d{width:101.325000px;}
.w18{width:101.505000px;}
.w1b{width:101.520000px;}
.w1e{width:101.541000px;}
.w1c{width:101.556000px;}
.w31{width:104.421000px;}
.w32{width:104.436000px;}
.w26{width:108.381000px;}
.w25{width:108.396000px;}
.w24{width:109.260000px;}
.w27{width:109.605000px;}
.w33{width:116.269500px;}
.w22{width:122.385000px;}
.w6{width:122.790000px;}
.w1f{width:129.589500px;}
.w28{width:133.729500px;}
.w34{width:158.595000px;}
.w1a{width:164.539500px;}
.w35{width:169.230000px;}
.w20{width:190.815000px;}
.w23{width:203.779500px;}
.w4{width:207.919500px;}
.w21{width:223.455000px;}
.w36{width:233.115000px;}
.w13{width:256.339500px;}
.w5{width:375.375000px;}
.w11{width:498.909407px;}
.w12{width:532.788988px;}
.w19{width:547.195842px;}
.w2{width:614.250000px;}
.we{width:625.050000px;}
.wf{width:653.631291px;}
.w10{width:657.510641px;}
.wd{width:709.555357px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7b{left:5.205000px;}
.x14{left:8.089500px;}
.x76{left:10.065000px;}
.x7d{left:11.550000px;}
.x7e{left:12.960000px;}
.x4d{left:14.898318px;}
.x3e{left:16.086360px;}
.x7c{left:17.640000px;}
.x17{left:18.720000px;}
.x40{left:20.663079px;}
.x33{left:22.680000px;}
.x7f{left:23.749500px;}
.x71{left:25.365000px;}
.x32{left:26.820000px;}
.x16{left:29.340000px;}
.x67{left:30.420000px;}
.x31{left:31.845000px;}
.x39{left:33.534112px;}
.x73{left:34.560000px;}
.x81{left:35.803500px;}
.x28{left:36.889500px;}
.x80{left:38.503500px;}
.x47{left:40.110580px;}
.x38{left:41.379459px;}
.x6b{left:42.469500px;}
.x2c{left:43.725000px;}
.x74{left:45.703500px;}
.x29{left:47.143500px;}
.x65{left:48.990000px;}
.x82{left:50.383500px;}
.x27{left:52.920000px;}
.x8d{left:54.705000px;}
.x46{left:55.883194px;}
.x25{left:57.240000px;}
.x88{left:59.205000px;}
.x85{left:60.300000px;}
.x63{left:61.950000px;}
.x8a{left:63.345000px;}
.x61{left:64.783500px;}
.x23{left:67.123500px;}
.x26{left:68.923500px;}
.x41{left:72.123563px;}
.x1f{left:73.423500px;}
.x69{left:76.530000px;}
.x3b{left:78.305818px;}
.x89{left:79.410000px;}
.x24{left:80.820000px;}
.x49{left:82.397812px;}
.x87{left:84.450000px;}
.x3d{left:87.143939px;}
.x6a{left:90.390000px;}
.x68{left:92.910000px;}
.x83{left:94.006500px;}
.x37{left:99.328072px;}
.x6d{left:102.403500px;}
.x13{left:106.786500px;}
.x8e{left:108.210000px;}
.x8b{left:110.010000px;}
.x8c{left:111.630000px;}
.x1{left:114.876000px;}
.x4{left:117.036000px;}
.x6c{left:120.466500px;}
.x3c{left:133.966500px;}
.x57{left:137.140592px;}
.xf{left:139.536000px;}
.x11{left:141.156000px;}
.x4c{left:142.821468px;}
.x35{left:144.936000px;}
.x3{left:146.376000px;}
.xd{left:153.570000px;}
.x4f{left:155.180045px;}
.x19{left:167.970000px;}
.x21{left:171.030000px;}
.x56{left:172.890000px;}
.xe{left:184.170000px;}
.x5{left:185.970000px;}
.x4b{left:197.040000px;}
.xb{left:200.010000px;}
.x2b{left:207.945000px;}
.x84{left:211.005000px;}
.x43{left:228.525442px;}
.x42{left:231.112783px;}
.xa{left:232.590000px;}
.x62{left:236.385000px;}
.x75{left:255.285000px;}
.x59{left:271.335000px;}
.x8{left:303.375000px;}
.x20{left:314.715000px;}
.x6e{left:326.415000px;}
.x7{left:331.275000px;}
.x1e{left:352.335000px;}
.x5f{left:360.255000px;}
.x51{left:363.135000px;}
.x58{left:369.913564px;}
.x5a{left:372.855000px;}
.x6{left:382.035000px;}
.x9{left:384.915000px;}
.x1a{left:387.435000px;}
.x2d{left:399.495000px;}
.x18{left:401.115000px;}
.x10{left:406.875000px;}
.x60{left:408.135000px;}
.x12{left:415.335000px;}
.x52{left:416.415000px;}
.x3f{left:419.885170px;}
.x64{left:427.215000px;}
.x48{left:433.350340px;}
.x6f{left:438.915000px;}
.x2{left:446.475000px;}
.x5b{left:474.420000px;}
.x77{left:493.320000px;}
.x2e{left:495.120000px;}
.x53{left:507.540000px;}
.x45{left:522.355367px;}
.x44{left:524.011265px;}
.xc{left:529.845000px;}
.x3a{left:533.937707px;}
.x86{left:540.660000px;}
.x70{left:550.740000px;}
.x7a{left:557.940000px;}
.x5c{left:575.760000px;}
.x54{left:587.820000px;}
.x2f{left:590.880000px;}
.x78{left:605.100000px;}
.x2a{left:640.050000px;}
.x66{left:650.670000px;}
.x5e{left:660.390000px;}
.x72{left:662.550000px;}
.x5d{left:677.310000px;}
.x55{left:678.930000px;}
.x30{left:686.670000px;}
.x34{left:687.930000px;}
.x22{left:690.090000px;}
.x4e{left:696.030000px;}
.x50{left:700.890000px;}
.x1d{left:704.130000px;}
.x79{left:716.910000px;}
.x15{left:721.050000px;}
.x36{left:762.270000px;}
.x4a{left:775.410000px;}
.x1c{left:778.290000px;}
.x1b{left:789.090000px;}
@media print{
.v3{vertical-align:-12.061536pt;}
.v2{vertical-align:-9.363023pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.902197pt;}
.v4{vertical-align:20.320621pt;}
.v6{vertical-align:24.320000pt;}
.v1{vertical-align:29.440000pt;}
.lsd{letter-spacing:-0.768000pt;}
.ls2e{letter-spacing:-0.704000pt;}
.ls1f{letter-spacing:-0.640000pt;}
.ls30{letter-spacing:-0.512000pt;}
.ls27{letter-spacing:-0.506667pt;}
.ls1b{letter-spacing:-0.478933pt;}
.ls2b{letter-spacing:-0.448000pt;}
.ls19{letter-spacing:-0.412267pt;}
.ls16{letter-spacing:-0.354968pt;}
.ls20{letter-spacing:-0.353669pt;}
.ls25{letter-spacing:-0.330133pt;}
.ls21{letter-spacing:-0.302243pt;}
.ls18{letter-spacing:-0.261333pt;}
.ls17{letter-spacing:-0.258667pt;}
.ls37{letter-spacing:-0.224000pt;}
.ls4{letter-spacing:-0.204267pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls33{letter-spacing:-0.184533pt;}
.ls1a{letter-spacing:-0.146133pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls35{letter-spacing:-0.112000pt;}
.ls34{letter-spacing:-0.079467pt;}
.ls14{letter-spacing:-0.033281pt;}
.ls32{letter-spacing:-0.016000pt;}
.ls15{letter-spacing:-0.014445pt;}
.ls22{letter-spacing:-0.010945pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.019840pt;}
.ls3{letter-spacing:0.032000pt;}
.ls9{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.133120pt;}
.lsf{letter-spacing:0.133333pt;}
.ls36{letter-spacing:0.176000pt;}
.ls26{letter-spacing:0.186667pt;}
.ls2{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.227733pt;}
.ls1c{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.279040pt;}
.ls6{letter-spacing:0.288000pt;}
.ls11{letter-spacing:0.293120pt;}
.ls31{letter-spacing:0.294400pt;}
.ls28{letter-spacing:0.318720pt;}
.ls8{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.448000pt;}
.ls23{letter-spacing:0.626309pt;}
.ls29{letter-spacing:0.640000pt;}
.ls2c{letter-spacing:1.536000pt;}
.ls2d{letter-spacing:2.816000pt;}
.ls2a{letter-spacing:4.736000pt;}
.lse{letter-spacing:7.296000pt;}
.ls1{letter-spacing:16.608000pt;}
.ls1e{letter-spacing:156.251955pt;}
.ls1d{letter-spacing:157.274119pt;}
.ls2f{letter-spacing:172.778667pt;}
.ls12{letter-spacing:175.493120pt;}
.ws1{word-spacing:-16.922880pt;}
.ws6{word-spacing:-16.718613pt;}
.ws23{word-spacing:-14.912000pt;}
.ws28{word-spacing:-14.784000pt;}
.ws2a{word-spacing:-14.656000pt;}
.ws7{word-spacing:-14.592000pt;}
.wsa{word-spacing:-14.528000pt;}
.ws8{word-spacing:-14.464000pt;}
.ws2b{word-spacing:-14.336000pt;}
.wsb{word-spacing:-14.272000pt;}
.ws29{word-spacing:-14.016000pt;}
.ws2c{word-spacing:-13.601280pt;}
.wsc{word-spacing:-13.534613pt;}
.ws25{word-spacing:-13.493547pt;}
.ws9{word-spacing:-13.306880pt;}
.ws26{word-spacing:-13.250889pt;}
.ws2e{word-spacing:-13.227413pt;}
.ws16{word-spacing:-13.153272pt;}
.ws11{word-spacing:-13.048213pt;}
.ws12{word-spacing:-13.045547pt;}
.ws24{word-spacing:-12.976747pt;}
.ws13{word-spacing:-12.894613pt;}
.ws14{word-spacing:-12.827947pt;}
.ws22{word-spacing:-11.447127pt;}
.ws1a{word-spacing:-11.433526pt;}
.ws32{word-spacing:-11.024000pt;}
.ws31{word-spacing:-10.848000pt;}
.ws2d{word-spacing:-10.832000pt;}
.ws2f{word-spacing:-10.736000pt;}
.ws33{word-spacing:-10.624000pt;}
.ws21{word-spacing:-10.555486pt;}
.ws27{word-spacing:-9.690880pt;}
.ws1b{word-spacing:-7.381609pt;}
.ws30{word-spacing:-7.232000pt;}
.ws3{word-spacing:-0.448000pt;}
.ws4{word-spacing:-0.373333pt;}
.ws5{word-spacing:-0.298667pt;}
.ws2{word-spacing:-0.224000pt;}
.ws0{word-spacing:0.000000pt;}
.wse{word-spacing:11.648614pt;}
.ws10{word-spacing:15.793327pt;}
.wsd{word-spacing:30.608505pt;}
.wsf{word-spacing:35.024061pt;}
.ws1d{word-spacing:76.771308pt;}
.ws1c{word-spacing:89.433127pt;}
.ws1f{word-spacing:100.154721pt;}
.ws1e{word-spacing:125.868132pt;}
.ws18{word-spacing:126.335192pt;}
.ws15{word-spacing:127.847995pt;}
.ws19{word-spacing:131.263936pt;}
.ws17{word-spacing:131.713688pt;}
.ws20{word-spacing:980.544042pt;}
._5{margin-left:-12.928068pt;}
._2d{margin-left:-2.558293pt;}
._2{margin-left:-0.960000pt;}
._0{width:0.894720pt;}
._1{width:1.858347pt;}
._e{width:2.789973pt;}
._b{width:3.776000pt;}
._a{width:4.800000pt;}
._c{width:6.197333pt;}
._11{width:7.616000pt;}
._18{width:8.749227pt;}
._d{width:9.920000pt;}
._12{width:11.200000pt;}
._19{width:12.160000pt;}
._17{width:13.248000pt;}
._37{width:14.330453pt;}
._16{width:15.744000pt;}
._9{width:16.768000pt;}
._8{width:17.664000pt;}
._10{width:18.816000pt;}
._f{width:19.904000pt;}
._7{width:20.864000pt;}
._1c{width:22.080000pt;}
._14{width:23.232000pt;}
._13{width:24.128000pt;}
._1b{width:25.290667pt;}
._1a{width:26.688000pt;}
._15{width:29.504000pt;}
._26{width:41.246720pt;}
._25{width:45.749333pt;}
._35{width:48.907947pt;}
._27{width:54.355627pt;}
._1e{width:58.375680pt;}
._24{width:65.506347pt;}
._2e{width:67.918507pt;}
._20{width:69.103360pt;}
._22{width:71.098880pt;}
._23{width:75.458987pt;}
._2b{width:77.067733pt;}
._29{width:78.514347pt;}
._2c{width:93.143893pt;}
._21{width:105.320320pt;}
._36{width:110.794613pt;}
._31{width:115.798937pt;}
._32{width:125.206199pt;}
._2f{width:127.704957pt;}
._33{width:128.865765pt;}
._34{width:139.547397pt;}
._28{width:147.905707pt;}
._2a{width:148.802987pt;}
._38{width:174.314667pt;}
._1f{width:175.493120pt;}
._4{width:251.723760pt;}
._6{width:269.268929pt;}
._3{width:333.307947pt;}
._1d{width:778.511787pt;}
._30{width:801.137430pt;}
.fs1d{font-size:2.560000pt;}
.fs11{font-size:26.552551pt;}
.fs1e{font-size:32.000000pt;}
.fs16{font-size:37.969373pt;}
.fs10{font-size:41.127793pt;}
.fs18{font-size:41.176716pt;}
.fs7{font-size:42.880000pt;}
.fsf{font-size:45.220538pt;}
.fsd{font-size:47.313930pt;}
.fsb{font-size:47.487743pt;}
.fs1a{font-size:47.665069pt;}
.fs13{font-size:47.877951pt;}
.fs3{font-size:48.000000pt;}
.fs8{font-size:49.494441pt;}
.fs15{font-size:49.901197pt;}
.fs17{font-size:50.915787pt;}
.fse{font-size:55.601380pt;}
.fsc{font-size:55.601636pt;}
.fs12{font-size:56.277737pt;}
.fs1c{font-size:56.320000pt;}
.fs9{font-size:57.508921pt;}
.fs0{font-size:58.880000pt;}
.fsa{font-size:59.883101pt;}
.fs1b{font-size:60.686745pt;}
.fs19{font-size:62.524401pt;}
.fs6{font-size:64.000000pt;}
.fs14{font-size:65.931423pt;}
.fs5{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs4{font-size:117.120000pt;}
.fs1{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y29d{bottom:2.546667pt;}
.y28a{bottom:2.560000pt;}
.y2a3{bottom:2.706667pt;}
.y2a2{bottom:3.186667pt;}
.y2c8{bottom:3.200000pt;}
.y29c{bottom:3.346667pt;}
.y289{bottom:3.360000pt;}
.y1d{bottom:4.000000pt;}
.y306{bottom:4.146667pt;}
.y153{bottom:4.149271pt;}
.yde{bottom:4.160000pt;}
.y272{bottom:4.200000pt;}
.y27c{bottom:4.320000pt;}
.y1ca{bottom:4.786667pt;}
.y1ce{bottom:4.800000pt;}
.y37{bottom:4.946667pt;}
.y28{bottom:4.960000pt;}
.y25{bottom:5.000000pt;}
.y293{bottom:5.106667pt;}
.y2a{bottom:5.120000pt;}
.y28d{bottom:5.146667pt;}
.y29f{bottom:5.266667pt;}
.y2ab{bottom:5.280000pt;}
.y15d{bottom:5.394777pt;}
.y16c{bottom:5.579991pt;}
.y1c8{bottom:5.746667pt;}
.ybe{bottom:5.760000pt;}
.y290{bottom:5.786667pt;}
.y296{bottom:5.906667pt;}
.y284{bottom:5.920000pt;}
.y2b7{bottom:6.080000pt;}
.y300{bottom:6.226667pt;}
.y177{bottom:6.337775pt;}
.yc0{bottom:6.880000pt;}
.y139{bottom:7.346667pt;}
.y145{bottom:7.360000pt;}
.y141{bottom:7.386667pt;}
.y1a0{bottom:7.666667pt;}
.y1aa{bottom:7.680000pt;}
.ye0{bottom:8.000000pt;}
.y2fa{bottom:8.160000pt;}
.y2ba{bottom:8.320000pt;}
.y1a6{bottom:8.346667pt;}
.y1a8{bottom:8.640000pt;}
.y19e{bottom:8.786667pt;}
.y1ac{bottom:8.800000pt;}
.y13b{bottom:8.946667pt;}
.y143{bottom:8.960000pt;}
.y303{bottom:10.546667pt;}
.y2f3{bottom:10.560000pt;}
.y2e9{bottom:10.720000pt;}
.y305{bottom:11.506667pt;}
.y181{bottom:11.980792pt;}
.y280{bottom:12.320000pt;}
.y27e{bottom:12.480000pt;}
.y2fe{bottom:13.466667pt;}
.y294{bottom:14.066667pt;}
.y27a{bottom:14.080000pt;}
.y28e{bottom:14.106667pt;}
.y2af{bottom:14.120000pt;}
.y18b{bottom:14.202467pt;}
.y2ac{bottom:14.240000pt;}
.y307{bottom:14.706667pt;}
.y124{bottom:15.354931pt;}
.y2f9{bottom:15.520000pt;}
.y2bb{bottom:15.680000pt;}
.y122{bottom:15.730417pt;}
.y2fc{bottom:16.000000pt;}
.y1b3{bottom:16.414969pt;}
.y2ec{bottom:16.640000pt;}
.y2d4{bottom:17.440000pt;}
.y2d9{bottom:17.760000pt;}
.y2cb{bottom:17.906667pt;}
.y2c2{bottom:17.920000pt;}
.y2d1{bottom:17.946667pt;}
.y2c5{bottom:18.080000pt;}
.y2a1{bottom:18.706667pt;}
.y29b{bottom:18.866667pt;}
.y288{bottom:18.880000pt;}
.y2ff{bottom:20.826667pt;}
.y27f{bottom:20.960000pt;}
.y28f{bottom:21.306667pt;}
.y295{bottom:21.426667pt;}
.y283{bottom:21.440000pt;}
.y2b0{bottom:21.480000pt;}
.y1c{bottom:21.920000pt;}
.y308{bottom:22.066667pt;}
.y2b9{bottom:22.880000pt;}
.y292{bottom:23.026667pt;}
.y281{bottom:23.040000pt;}
.y28c{bottom:23.066667pt;}
.y2ae{bottom:23.080000pt;}
.y2aa{bottom:23.200000pt;}
.y2fd{bottom:23.360000pt;}
.y279{bottom:23.706667pt;}
.y27b{bottom:23.866667pt;}
.y2ea{bottom:24.000000pt;}
.y2d7{bottom:24.640000pt;}
.y2da{bottom:24.960000pt;}
.y30a{bottom:25.106667pt;}
.y30d{bottom:25.266667pt;}
.y2e8{bottom:25.280000pt;}
.y2f2{bottom:25.306667pt;}
.y183{bottom:25.343113pt;}
.y2de{bottom:25.440000pt;}
.y2d{bottom:27.680000pt;}
.y27{bottom:27.840000pt;}
.y2f{bottom:27.866667pt;}
.y24{bottom:27.880000pt;}
.y154{bottom:28.338476pt;}
.y18d{bottom:28.692504pt;}
.y15e{bottom:29.608004pt;}
.y16d{bottom:30.057428pt;}
.y178{bottom:30.815109pt;}
.y2eb{bottom:31.360000pt;}
.y2d6{bottom:31.520000pt;}
.y2d3{bottom:32.000000pt;}
.y126{bottom:32.081516pt;}
.y2ca{bottom:32.466667pt;}
.y2c7{bottom:32.480000pt;}
.y2d0{bottom:32.506667pt;}
.y2cd{bottom:32.626667pt;}
.y2c1{bottom:32.640000pt;}
.y2f1{bottom:32.666667pt;}
.y1b5{bottom:33.599878pt;}
.y156{bottom:44.206551pt;}
.y301{bottom:45.586667pt;}
.y16f{bottom:46.047495pt;}
.y2d5{bottom:46.080000pt;}
.y2e6{bottom:46.400000pt;}
.y2f7{bottom:46.426667pt;}
.y2dc{bottom:47.680000pt;}
.y23{bottom:50.600000pt;}
.y13{bottom:54.560000pt;}
.y2e1{bottom:55.200000pt;}
.y2f6{bottom:60.986667pt;}
.y2e2{bottom:62.560000pt;}
.y127{bottom:67.385444pt;}
.y2e0{bottom:69.920000pt;}
.y18e{bottom:72.414367pt;}
.y184{bottom:73.662622pt;}
.y1b6{bottom:77.550225pt;}
.y170{bottom:81.639826pt;}
.y157{bottom:84.985786pt;}
.y189{bottom:95.680000pt;}
.y180{bottom:95.746667pt;}
.y217{bottom:98.880000pt;}
.y16a{bottom:100.320000pt;}
.y26d{bottom:100.800000pt;}
.y207{bottom:100.960000pt;}
.y30b{bottom:101.280000pt;}
.y128{bottom:102.694501pt;}
.yf8{bottom:103.520000pt;}
.y12{bottom:104.800000pt;}
.y1ab{bottom:107.040000pt;}
.y5b{bottom:108.640000pt;}
.y96{bottom:110.080000pt;}
.y125{bottom:110.388894pt;}
.y146{bottom:110.400000pt;}
.yab{bottom:111.040000pt;}
.y1cf{bottom:111.520000pt;}
.y18c{bottom:112.663901pt;}
.y120{bottom:113.440000pt;}
.y182{bottom:113.815639pt;}
.y25b{bottom:114.240000pt;}
.y2d2{bottom:115.840000pt;}
.y18f{bottom:116.081990pt;}
.y1f1{bottom:116.800000pt;}
.y171{bottom:117.259106pt;}
.y2a5{bottom:120.160000pt;}
.y155{bottom:121.361538pt;}
.y1b7{bottom:121.397985pt;}
.ydc{bottom:121.600000pt;}
.y185{bottom:122.006666pt;}
.y206{bottom:123.360000pt;}
.y1b4{bottom:124.767151pt;}
.y158{bottom:125.787508pt;}
.yf7{bottom:125.920000pt;}
.y1a9{bottom:129.600000pt;}
.y1cd{bottom:130.240000pt;}
.ybc{bottom:130.400000pt;}
.y3f{bottom:131.840000pt;}
.y95{bottom:132.480000pt;}
.y144{bottom:133.120000pt;}
.yaa{bottom:133.440000pt;}
.y25a{bottom:133.760000pt;}
.y216{bottom:134.560000pt;}
.y26c{bottom:134.720000pt;}
.y11{bottom:134.880000pt;}
.y169{bottom:135.520000pt;}
.y231{bottom:135.680000pt;}
.y129{bottom:137.996377pt;}
.y1f0{bottom:139.200000pt;}
.y16e{bottom:139.865144pt;}
.y5a{bottom:142.560000pt;}
.y71{bottom:144.000000pt;}
.y205{bottom:145.760000pt;}
.y30e{bottom:145.920000pt;}
.yf6{bottom:148.480000pt;}
.y11f{bottom:148.640000pt;}
.y1cc{bottom:148.800000pt;}
.y1a7{bottom:151.040000pt;}
.y1f5{bottom:151.520000pt;}
.ybb{bottom:152.800000pt;}
.y172{bottom:152.852474pt;}
.ydb{bottom:152.960000pt;}
.y259{bottom:153.280000pt;}
.y142{bottom:154.240000pt;}
.y94{bottom:154.880000pt;}
.y230{bottom:155.200000pt;}
.ya9{bottom:156.000000pt;}
.y2a4{bottom:158.560000pt;}
.y190{bottom:159.811016pt;}
.y1ef{bottom:161.760000pt;}
.y1b8{bottom:165.261943pt;}
.y3e{bottom:165.760000pt;}
.y159{bottom:166.500302pt;}
.y1b{bottom:167.040000pt;}
.y1cb{bottom:167.520000pt;}
.y204{bottom:168.320000pt;}
.y26b{bottom:168.640000pt;}
.y168{bottom:169.920000pt;}
.y186{bottom:170.275217pt;}
.y215{bottom:170.400000pt;}
.y2ee{bottom:170.586667pt;}
.yf5{bottom:170.880000pt;}
.y258{bottom:172.800000pt;}
.y12a{bottom:173.298253pt;}
.y1a5{bottom:173.440000pt;}
.y2bc{bottom:174.080000pt;}
.y22f{bottom:174.720000pt;}
.y59{bottom:176.480000pt;}
.y140{bottom:176.960000pt;}
.y93{bottom:177.440000pt;}
.ya8{bottom:178.400000pt;}
.y70{bottom:179.200000pt;}
.y11e{bottom:182.586667pt;}
.y1ee{bottom:184.186667pt;}
.y1f4{bottom:186.106667pt;}
.y1c9{bottom:186.280000pt;}
.y173{bottom:188.466572pt;}
.y2be{bottom:188.986667pt;}
.y30c{bottom:190.600000pt;}
.y203{bottom:190.746667pt;}
.y257{bottom:192.346667pt;}
.y167{bottom:192.506667pt;}
.yf4{bottom:193.306667pt;}
.y22e{bottom:194.266667pt;}
.y1a4{bottom:195.560000pt;}
.y2bf{bottom:196.346667pt;}
.y29e{bottom:197.000000pt;}
.y13f{bottom:198.120000pt;}
.y2a0{bottom:199.720000pt;}
.y3d{bottom:199.866667pt;}
.y26a{bottom:202.586667pt;}
.y11d{bottom:202.746667pt;}
.y191{bottom:203.458171pt;}
.y2bd{bottom:203.706667pt;}
.y214{bottom:206.266667pt;}
.y1c7{bottom:206.280000pt;}
.y1ed{bottom:206.746667pt;}
.y15a{bottom:207.274426pt;}
.y12b{bottom:208.600129pt;}
.y1b9{bottom:209.136699pt;}
.y58{bottom:210.426667pt;}
.y256{bottom:211.866667pt;}
.y202{bottom:213.306667pt;}
.y6f{bottom:213.786667pt;}
.ya7{bottom:214.266667pt;}
.y166{bottom:214.906667pt;}
.yf3{bottom:215.866667pt;}
.y1a3{bottom:217.000000pt;}
.y1f3{bottom:217.466667pt;}
.y2cf{bottom:218.600000pt;}
.y187{bottom:218.600389pt;}
.y13e{bottom:219.240000pt;}
.y92{bottom:222.426667pt;}
.y174{bottom:224.059940pt;}
.y11c{bottom:224.986667pt;}
.y1ec{bottom:229.146667pt;}
.y255{bottom:231.386667pt;}
.y22d{bottom:233.466667pt;}
.y3c{bottom:233.786667pt;}
.y309{bottom:235.240000pt;}
.y299{bottom:235.560000pt;}
.y201{bottom:235.706667pt;}
.y269{bottom:236.506667pt;}
.ya6{bottom:236.666667pt;}
.y29a{bottom:238.120000pt;}
.yf2{bottom:238.266667pt;}
.y1a2{bottom:238.440000pt;}
.y12f{bottom:238.803187pt;}
.y13d{bottom:241.960000pt;}
.y213{bottom:242.106667pt;}
.y12c{bottom:243.902005pt;}
.y57{bottom:244.346667pt;}
.y91{bottom:244.826667pt;}
.y6e{bottom:244.986667pt;}
.y196{bottom:245.253009pt;}
.y192{bottom:247.176964pt;}
.y11b{bottom:247.386667pt;}
.y1c6{bottom:247.866667pt;}
.y15b{bottom:248.079215pt;}
.y165{bottom:250.106667pt;}
.y254{bottom:250.906667pt;}
.y1eb{bottom:251.546667pt;}
.y22c{bottom:252.986667pt;}
.y1ba{bottom:253.011455pt;}
.y12e{bottom:254.181715pt;}
.y195{bottom:258.045259pt;}
.y200{bottom:258.106667pt;}
.y123{bottom:258.182799pt;}
.ya5{bottom:259.226667pt;}
.y175{bottom:259.674038pt;}
.y130{bottom:259.731937pt;}
.y1a1{bottom:259.880000pt;}
.yf1{bottom:260.826667pt;}
.y13c{bottom:263.080000pt;}
.y2ce{bottom:263.240000pt;}
.y147{bottom:264.080000pt;}
.y188{bottom:266.868940pt;}
.y90{bottom:267.226667pt;}
.y3b{bottom:267.706667pt;}
.y11a{bottom:269.786667pt;}
.y253{bottom:270.426667pt;}
.y194{bottom:270.868210pt;}
.y160{bottom:271.517437pt;}
.y22b{bottom:272.506667pt;}
.y179{bottom:273.345457pt;}
.y298{bottom:273.960000pt;}
.y1ea{bottom:274.106667pt;}
.y164{bottom:276.178505pt;}
.y162{bottom:276.975793pt;}
.y212{bottom:277.786667pt;}
.y56{bottom:278.266667pt;}
.y12d{bottom:279.203881pt;}
.y2ed{bottom:279.720000pt;}
.y1ff{bottom:280.666667pt;}
.y19f{bottom:281.320000pt;}
.ya4{bottom:281.626667pt;}
.yf0{bottom:283.226667pt;}
.y1c5{bottom:283.546667pt;}
.y13a{bottom:284.200000pt;}
.y15c{bottom:288.781788pt;}
.y8f{bottom:289.786667pt;}
.y1bf{bottom:289.802323pt;}
.y252{bottom:290.106667pt;}
.y193{bottom:290.844587pt;}
.y119{bottom:292.346667pt;}
.y176{bottom:295.288136pt;}
.y1e9{bottom:296.506667pt;}
.y1bb{bottom:296.875413pt;}
.y3a{bottom:301.626667pt;}
.y1fe{bottom:303.066667pt;}
.ya3{bottom:304.026667pt;}
.y19d{bottom:304.200000pt;}
.y268{bottom:304.346667pt;}
.y1be{bottom:304.726003pt;}
.yef{bottom:305.626667pt;}
.y1c4{bottom:306.106667pt;}
.y2cc{bottom:307.880000pt;}
.y22a{bottom:308.186667pt;}
.y138{bottom:308.360000pt;}
.y251{bottom:309.626667pt;}
.y55{bottom:312.186667pt;}
.y297{bottom:312.520000pt;}
.y211{bottom:313.626667pt;}
.y118{bottom:314.746667pt;}
.y304{bottom:317.800000pt;}
.y1e8{bottom:319.066667pt;}
.yda{bottom:319.386667pt;}
.y1bd{bottom:319.638885pt;}
.y1fd{bottom:325.466667pt;}
.ya2{bottom:326.586667pt;}
.yee{bottom:328.186667pt;}
.y1c3{bottom:328.506667pt;}
.y250{bottom:329.146667pt;}
.y229{bottom:330.746667pt;}
.y8e{bottom:334.586667pt;}
.y39{bottom:335.546667pt;}
.y148{bottom:336.363525pt;}
.y117{bottom:337.306667pt;}
.y151{bottom:337.763889pt;}
.y267{bottom:338.266667pt;}
.y1bc{bottom:340.728572pt;}
.y1e7{bottom:341.466667pt;}
.yd9{bottom:341.946667pt;}
.y10{bottom:344.826667pt;}
.y54{bottom:346.106667pt;}
.y1fc{bottom:348.026667pt;}
.y19c{bottom:348.666667pt;}
.ya1{bottom:348.986667pt;}
.y210{bottom:349.466667pt;}
.y38{bottom:349.480000pt;}
.y302{bottom:349.640000pt;}
.y291{bottom:350.920000pt;}
.y137{bottom:351.386667pt;}
.y2c9{bottom:352.520000pt;}
.y228{bottom:353.146667pt;}
.y8d{bottom:357.146667pt;}
.y116{bottom:359.706667pt;}
.y149{bottom:360.558148pt;}
.y152{bottom:361.948291pt;}
.yed{bottom:363.386667pt;}
.y1e6{bottom:363.866667pt;}
.yd8{bottom:364.346667pt;}
.y24f{bottom:368.186667pt;}
.y1fb{bottom:370.426667pt;}
.ya0{bottom:371.386667pt;}
.y266{bottom:372.186667pt;}
.y36{bottom:372.200000pt;}
.y136{bottom:373.786667pt;}
.y14b{bottom:376.422134pt;}
.yf{bottom:378.746667pt;}
.y8c{bottom:379.546667pt;}
.y2f5{bottom:379.560000pt;}
.y53{bottom:380.026667pt;}
.y115{bottom:382.106667pt;}
.y19b{bottom:384.506667pt;}
.y20f{bottom:385.146667pt;}
.y1e5{bottom:386.426667pt;}
.yd7{bottom:386.746667pt;}
.y24e{bottom:387.706667pt;}
.y227{bottom:388.986667pt;}
.y28b{bottom:389.480000pt;}
.y1fa{bottom:393.026667pt;}
.y9f{bottom:393.986667pt;}
.y35{bottom:394.946667pt;}
.y135{bottom:396.226667pt;}
.y2c6{bottom:397.186667pt;}
.yec{bottom:397.346667pt;}
.y1c2{bottom:400.066667pt;}
.y8b{bottom:402.146667pt;}
.y1f2{bottom:403.426667pt;}
.y265{bottom:406.146667pt;}
.y19a{bottom:406.946667pt;}
.y24d{bottom:407.266667pt;}
.yd6{bottom:409.346667pt;}
.y226{bottom:411.426667pt;}
.ye{bottom:414.626667pt;}
.y2fb{bottom:415.266667pt;}
.y1f9{bottom:415.426667pt;}
.y9e{bottom:416.386667pt;}
.y34{bottom:417.826667pt;}
.y114{bottom:417.986667pt;}
.y20e{bottom:421.026667pt;}
.y17f{bottom:421.666667pt;}
.y1e4{bottom:422.146667pt;}
.y1c1{bottom:422.626667pt;}
.y14c{bottom:425.772214pt;}
.y24c{bottom:426.786667pt;}
.yeb{bottom:427.266667pt;}
.y286{bottom:427.906667pt;}
.y287{bottom:430.466667pt;}
.y134{bottom:431.586667pt;}
.yd5{bottom:431.746667pt;}
.y225{bottom:433.986667pt;}
.y9d{bottom:435.746667pt;}
.y8a{bottom:437.826667pt;}
.y264{bottom:440.066667pt;}
.y113{bottom:440.386667pt;}
.y33{bottom:440.546667pt;}
.y2c4{bottom:441.666667pt;}
.y199{bottom:442.786667pt;}
.y17e{bottom:444.226667pt;}
.y1e3{bottom:444.706667pt;}
.y24b{bottom:446.306667pt;}
.y9c{bottom:453.666667pt;}
.y1c0{bottom:453.986667pt;}
.y1b2{bottom:454.013333pt;}
.yd4{bottom:454.306667pt;}
.y14a{bottom:454.597240pt;}
.y2f8{bottom:455.906667pt;}
.y224{bottom:456.386667pt;}
.y20d{bottom:456.866667pt;}
.y52{bottom:457.186667pt;}
.yd{bottom:457.666667pt;}
.y89{bottom:460.386667pt;}
.y112{bottom:462.946667pt;}
.y32{bottom:463.426667pt;}
.y24a{bottom:465.826667pt;}
.y133{bottom:465.986667pt;}
.y285{bottom:466.306667pt;}
.y1e2{bottom:467.106667pt;}
.y9b{bottom:471.746667pt;}
.y263{bottom:473.986667pt;}
.y14d{bottom:475.091630pt;}
.yd3{bottom:476.706667pt;}
.y100{bottom:478.626667pt;}
.y17d{bottom:479.906667pt;}
.y88{bottom:482.786667pt;}
.y1a{bottom:483.426667pt;}
.y111{bottom:485.346667pt;}
.y31{bottom:486.146667pt;}
.y2c3{bottom:486.306667pt;}
.y51{bottom:486.466667pt;}
.y9a{bottom:486.946667pt;}
.y132{bottom:488.546667pt;}
.y1e1{bottom:489.666667pt;}
.y223{bottom:492.226667pt;}
.y20c{bottom:492.706667pt;}
.y2ef{bottom:495.586667pt;}
.yd2{bottom:499.106667pt;}
.yc{bottom:500.866667pt;}
.yff{bottom:501.026667pt;}
.y249{bottom:504.866667pt;}
.y87{bottom:505.186667pt;}
.y110{bottom:507.906667pt;}
.y131{bottom:510.946667pt;}
.y1e0{bottom:512.066667pt;}
.y222{bottom:514.626667pt;}
.y50{bottom:515.746667pt;}
.yba{bottom:520.066667pt;}
.y282{bottom:521.026667pt;}
.yd1{bottom:521.666667pt;}
.y198{bottom:523.426667pt;}
.yfe{bottom:523.586667pt;}
.y14e{bottom:524.370159pt;}
.y248{bottom:524.386667pt;}
.y121{bottom:526.146667pt;}
.y86{bottom:527.746667pt;}
.y20b{bottom:528.386667pt;}
.y10f{bottom:530.306667pt;}
.y2c0{bottom:530.946667pt;}
.y30{bottom:531.746667pt;}
.y1df{bottom:534.466667pt;}
.y221{bottom:537.026667pt;}
.y17c{bottom:538.146667pt;}
.y2f4{bottom:540.226667pt;}
.y262{bottom:541.826667pt;}
.y247{bottom:543.906667pt;}
.yb{bottom:544.066667pt;}
.y4f{bottom:545.026667pt;}
.y27d{bottom:545.666667pt;}
.yfd{bottom:545.986667pt;}
.y85{bottom:550.146667pt;}
.y10e{bottom:552.706667pt;}
.yb9{bottom:554.626667pt;}
.y197{bottom:554.786667pt;}
.y18a{bottom:554.813333pt;}
.y1de{bottom:557.026667pt;}
.y17b{bottom:560.706667pt;}
.y246{bottom:563.586667pt;}
.y20a{bottom:564.226667pt;}
.yd0{bottom:566.626667pt;}
.yfc{bottom:568.386667pt;}
.y84{bottom:572.706667pt;}
.y220{bottom:572.866667pt;}
.y14f{bottom:573.720239pt;}
.y4e{bottom:574.306667pt;}
.y10d{bottom:575.266667pt;}
.y2b8{bottom:575.586667pt;}
.y261{bottom:575.746667pt;}
.yb8{bottom:577.026667pt;}
.y2e{bottom:577.346667pt;}
.y6d{bottom:577.506667pt;}
.y1dd{bottom:579.426667pt;}
.y278{bottom:580.546667pt;}
.y245{bottom:583.106667pt;}
.y2f0{bottom:584.866667pt;}
.ya{bottom:587.106667pt;}
.ycf{bottom:589.026667pt;}
.yfb{bottom:590.946667pt;}
.y17a{bottom:591.906667pt;}
.y16b{bottom:591.946667pt;}
.y83{bottom:595.106667pt;}
.y21f{bottom:595.426667pt;}
.y10c{bottom:597.666667pt;}
.yb7{bottom:599.613333pt;}
.y209{bottom:600.093333pt;}
.y1dc{bottom:601.853333pt;}
.y244{bottom:602.653333pt;}
.y15f{bottom:603.434548pt;}
.y4d{bottom:603.773333pt;}
.y260{bottom:609.693333pt;}
.y163{bottom:610.313712pt;}
.yce{bottom:611.453333pt;}
.y161{bottom:611.857180pt;}
.y6c{bottom:613.373333pt;}
.y2b6{bottom:615.613333pt;}
.y82{bottom:617.533333pt;}
.y21e{bottom:617.853333pt;}
.y10b{bottom:620.253333pt;}
.y243{bottom:622.173333pt;}
.y2c{bottom:622.973333pt;}
.y150{bottom:622.988546pt;}
.y1db{bottom:624.413333pt;}
.y2e5{bottom:629.533333pt;}
.y9{bottom:630.333333pt;}
.y4c{bottom:633.053333pt;}
.ycd{bottom:634.013333pt;}
.yb6{bottom:635.453333pt;}
.y6b{bottom:635.773333pt;}
.y81{bottom:640.093333pt;}
.y277{bottom:640.893333pt;}
.y242{bottom:641.693333pt;}
.y10a{bottom:642.653333pt;}
.y25f{bottom:643.613333pt;}
.y1da{bottom:646.813333pt;}
.y21d{bottom:653.693333pt;}
.ycc{bottom:656.413333pt;}
.y2b5{bottom:657.053333pt;}
.y6a{bottom:658.333333pt;}
.y241{bottom:661.213333pt;}
.y4b{bottom:662.333333pt;}
.y80{bottom:662.493333pt;}
.y276{bottom:663.293333pt;}
.y109{bottom:665.053333pt;}
.y2b{bottom:668.413333pt;}
.y1d9{bottom:669.373333pt;}
.yb5{bottom:671.133333pt;}
.y208{bottom:671.613333pt;}
.y8{bottom:673.533333pt;}
.y25e{bottom:678.173333pt;}
.ycb{bottom:678.813333pt;}
.y2b4{bottom:679.453333pt;}
.y69{bottom:680.733333pt;}
.yea{bottom:683.933333pt;}
.y7f{bottom:685.053333pt;}
.y275{bottom:685.693333pt;}
.y2e7{bottom:686.333333pt;}
.y21c{bottom:689.373333pt;}
.y4a{bottom:691.613333pt;}
.y1d8{bottom:691.773333pt;}
.y240{bottom:700.253333pt;}
.y108{bottom:700.893333pt;}
.yca{bottom:701.373333pt;}
.y68{bottom:703.293333pt;}
.yb4{bottom:706.333333pt;}
.y7e{bottom:707.453333pt;}
.y25d{bottom:713.853333pt;}
.y29{bottom:714.013333pt;}
.y1d7{bottom:714.173333pt;}
.y2b3{bottom:714.653333pt;}
.y7{bottom:717.693333pt;}
.y23f{bottom:719.773333pt;}
.y19{bottom:720.573333pt;}
.y1f8{bottom:720.733333pt;}
.y49{bottom:720.893333pt;}
.yc9{bottom:723.773333pt;}
.y21b{bottom:725.213333pt;}
.y67{bottom:725.693333pt;}
.ye9{bottom:728.733333pt;}
.y7d{bottom:729.853333pt;}
.y2df{bottom:730.973333pt;}
.y25c{bottom:736.413333pt;}
.y107{bottom:736.733333pt;}
.y23e{bottom:739.293333pt;}
.yb3{bottom:740.253333pt;}
.y1f7{bottom:743.293333pt;}
.yc8{bottom:746.333333pt;}
.y66{bottom:748.093333pt;}
.y2b2{bottom:748.573333pt;}
.y1d6{bottom:750.013333pt;}
.y48{bottom:750.173333pt;}
.y7c{bottom:752.413333pt;}
.y274{bottom:754.813333pt;}
.y23d{bottom:758.813333pt;}
.y26{bottom:759.613333pt;}
.y18{bottom:760.173333pt;}
.y21a{bottom:760.413333pt;}
.ye8{bottom:764.573333pt;}
.y1f6{bottom:765.693333pt;}
.y6{bottom:766.333333pt;}
.y99{bottom:767.133333pt;}
.yc7{bottom:768.733333pt;}
.y273{bottom:770.173333pt;}
.y65{bottom:770.653333pt;}
.y106{bottom:772.413333pt;}
.y7b{bottom:774.813333pt;}
.y2e4{bottom:775.613333pt;}
.y23c{bottom:778.333333pt;}
.y47{bottom:779.453333pt;}
.y2b1{bottom:782.493333pt;}
.ye7{bottom:786.973333pt;}
.y98{bottom:788.093333pt;}
.y64{bottom:793.053333pt;}
.y219{bottom:794.333333pt;}
.y1d5{bottom:794.973333pt;}
.y7a{bottom:797.213333pt;}
.y23b{bottom:797.853333pt;}
.y17{bottom:799.773333pt;}
.yc6{bottom:804.573333pt;}
.y22{bottom:805.213333pt;}
.y271{bottom:805.853333pt;}
.y105{bottom:808.253333pt;}
.ye6{bottom:809.573333pt;}
.y97{bottom:810.693333pt;}
.y63{bottom:815.653333pt;}
.y1d4{bottom:817.413333pt;}
.y5{bottom:818.533333pt;}
.yb2{bottom:819.813333pt;}
.y2e3{bottom:820.293333pt;}
.y46{bottom:822.213333pt;}
.y270{bottom:823.813333pt;}
.y218{bottom:828.933333pt;}
.y104{bottom:830.853333pt;}
.ye5{bottom:831.973333pt;}
.y79{bottom:833.093333pt;}
.y2ad{bottom:835.653333pt;}
.y23a{bottom:837.093333pt;}
.yfa{bottom:838.053333pt;}
.y1d3{bottom:839.973333pt;}
.yc5{bottom:840.293333pt;}
.y1b1{bottom:841.253333pt;}
.y26f{bottom:841.733333pt;}
.yb1{bottom:842.213333pt;}
.y62{bottom:851.333333pt;}
.y45{bottom:851.493333pt;}
.y103{bottom:853.253333pt;}
.ye4{bottom:854.533333pt;}
.y78{bottom:855.653333pt;}
.y239{bottom:856.613333pt;}
.yf9{bottom:860.453333pt;}
.y26e{bottom:861.093333pt;}
.y1d2{bottom:862.373333pt;}
.yb0{bottom:864.773333pt;}
.y2db{bottom:864.933333pt;}
.y4{bottom:870.693333pt;}
.y61{bottom:873.893333pt;}
.y2a9{bottom:874.053333pt;}
.yc4{bottom:875.493333pt;}
.y102{bottom:875.653333pt;}
.y238{bottom:876.133333pt;}
.ye3{bottom:876.933333pt;}
.y77{bottom:878.053333pt;}
.y44{bottom:880.773333pt;}
.y16{bottom:883.813333pt;}
.y1d1{bottom:884.773333pt;}
.yaf{bottom:887.173333pt;}
.yc3{bottom:890.853333pt;}
.y21{bottom:893.573333pt;}
.y237{bottom:895.653333pt;}
.y60{bottom:896.293333pt;}
.y1b0{bottom:898.213333pt;}
.ye2{bottom:899.333333pt;}
.y76{bottom:900.453333pt;}
.y1d0{bottom:907.333333pt;}
.yae{bottom:909.573333pt;}
.y43{bottom:910.053333pt;}
.yc2{bottom:910.373333pt;}
.y101{bottom:910.853333pt;}
.y2a8{bottom:912.613333pt;}
.y236{bottom:915.173333pt;}
.y5f{bottom:918.693333pt;}
.y1af{bottom:920.613333pt;}
.y3{bottom:922.853333pt;}
.y75{bottom:923.013333pt;}
.y2dd{bottom:924.613333pt;}
.y15{bottom:925.093333pt;}
.y20{bottom:927.493333pt;}
.yc1{bottom:929.893333pt;}
.yad{bottom:932.133333pt;}
.ye1{bottom:934.533333pt;}
.y235{bottom:934.693333pt;}
.y42{bottom:939.333333pt;}
.y5e{bottom:941.253333pt;}
.y1ae{bottom:943.013333pt;}
.y74{bottom:945.413333pt;}
.ybf{bottom:949.413333pt;}
.ydf{bottom:949.893333pt;}
.y2a7{bottom:951.013333pt;}
.y234{bottom:954.213333pt;}
.yac{bottom:954.533333pt;}
.y1f{bottom:964.453333pt;}
.y14{bottom:966.213333pt;}
.y73{bottom:967.813333pt;}
.y2d8{bottom:969.253333pt;}
.ybd{bottom:971.333333pt;}
.ydd{bottom:972.933333pt;}
.y233{bottom:973.733333pt;}
.y41{bottom:974.533333pt;}
.y5d{bottom:976.933333pt;}
.y1ad{bottom:978.853333pt;}
.y2{bottom:980.133333pt;}
.y2a6{bottom:989.573333pt;}
.y72{bottom:990.373333pt;}
.y232{bottom:993.253333pt;}
.y1e{bottom:1007.653333pt;}
.y40{bottom:1010.053333pt;}
.y5c{bottom:1012.773333pt;}
.y1{bottom:1014.053333pt;}
.h55{height:1.837500pt;}
.h4b{height:17.760000pt;}
.h1c{height:17.906667pt;}
.h4c{height:17.920000pt;}
.h4a{height:17.940000pt;}
.h43{height:18.546667pt;}
.h46{height:18.558667pt;}
.h47{height:18.718667pt;}
.h45{height:18.720000pt;}
.h44{height:18.752000pt;}
.h19{height:19.506667pt;}
.h51{height:19.986667pt;}
.h5c{height:20.160000pt;}
.h1a{height:20.626667pt;}
.h23{height:21.106667pt;}
.h26{height:21.118667pt;}
.h24{height:21.152000pt;}
.h3b{height:21.426667pt;}
.h3e{height:21.438667pt;}
.h1d{height:21.746667pt;}
.h3c{height:22.112000pt;}
.h3d{height:22.400000pt;}
.h3a{height:22.546667pt;}
.h3f{height:22.558667pt;}
.h11{height:22.706667pt;}
.h27{height:22.718667pt;}
.h25{height:22.720000pt;}
.h13{height:22.738667pt;}
.h12{height:22.866667pt;}
.h78{height:29.266667pt;}
.h79{height:31.186667pt;}
.h67{height:31.992188pt;}
.h57{height:32.466667pt;}
.h54{height:32.626667pt;}
.h62{height:32.812500pt;}
.h5d{height:33.375000pt;}
.h4e{height:34.066667pt;}
.h52{height:34.453125pt;}
.h76{height:35.058667pt;}
.h49{height:35.666667pt;}
.h7a{height:37.426667pt;}
.h50{height:37.746667pt;}
.h59{height:37.758667pt;}
.h56{height:37.778667pt;}
.h5b{height:37.780000pt;}
.h5a{height:37.786667pt;}
.h58{height:37.792000pt;}
.h53{height:37.906667pt;}
.h74{height:39.026667pt;}
.h4d{height:39.066667pt;}
.h4f{height:39.160000pt;}
.h6{height:39.281250pt;}
.h5e{height:39.386667pt;}
.h35{height:39.600869pt;}
.h75{height:39.986667pt;}
.h18{height:40.250000pt;}
.ha{height:40.940000pt;}
.h2{height:42.262500pt;}
.h38{height:42.946028pt;}
.h17{height:43.750000pt;}
.h63{height:43.826667pt;}
.h64{height:43.858667pt;}
.h65{height:43.872000pt;}
.h61{height:43.986667pt;}
.h7d{height:43.998667pt;}
.h6d{height:44.000000pt;}
.h6c{height:44.020000pt;}
.h72{height:44.026667pt;}
.h7c{height:44.032000pt;}
.h15{height:44.500000pt;}
.he{height:45.440000pt;}
.h10{height:45.586667pt;}
.hd{height:45.600000pt;}
.hf{height:45.626667pt;}
.h14{height:45.937500pt;}
.h2c{height:47.163608pt;}
.h5f{height:47.288750pt;}
.h2d{height:48.014102pt;}
.h2e{height:48.136762pt;}
.h2a{height:49.346950pt;}
.h22{height:49.528232pt;}
.h41{height:49.713177pt;}
.h31{height:49.935207pt;}
.h1f{height:51.621155pt;}
.hc{height:52.065000pt;}
.h36{height:53.103575pt;}
.h8{height:53.746875pt;}
.h33{height:54.947586pt;}
.h6f{height:56.160000pt;}
.h66{height:57.438667pt;}
.h2b{height:57.990501pt;}
.h29{height:57.990769pt;}
.h68{height:58.106667pt;}
.h30{height:58.695921pt;}
.h6a{height:59.026667pt;}
.h9{height:59.185000pt;}
.h20{height:59.980007pt;}
.h1b{height:60.218125pt;}
.h4{height:61.096875pt;}
.h21{height:62.456203pt;}
.h42{height:63.294379pt;}
.h39{height:65.210996pt;}
.h16{height:65.781915pt;}
.h48{height:66.625000pt;}
.hb{height:68.340000pt;}
.h32{height:68.764413pt;}
.h5{height:69.658750pt;}
.h7{height:84.065625pt;}
.h77{height:99.186667pt;}
.h6e{height:100.800000pt;}
.h69{height:103.666667pt;}
.h73{height:115.378667pt;}
.h3{height:122.033750pt;}
.h6b{height:133.140000pt;}
.h7b{height:133.152000pt;}
.h71{height:133.306667pt;}
.h1e{height:304.656934pt;}
.h34{height:305.464907pt;}
.h2f{height:319.469652pt;}
.h37{height:334.194962pt;}
.h70{height:349.173333pt;}
.h40{height:367.325551pt;}
.h60{height:400.866667pt;}
.h28{height:647.336494pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:33.266667pt;}
.w14{width:47.360000pt;}
.w2e{width:47.666667pt;}
.w2a{width:47.680000pt;}
.w2c{width:47.712000pt;}
.w2d{width:47.986667pt;}
.w2f{width:48.018667pt;}
.w2b{width:48.320000pt;}
.w30{width:49.106667pt;}
.w29{width:60.818667pt;}
.w16{width:71.346667pt;}
.w17{width:80.978667pt;}
.w15{width:80.992000pt;}
.wc{width:84.946667pt;}
.wa{width:84.992000pt;}
.wb{width:85.106667pt;}
.w9{width:85.120000pt;}
.w8{width:85.138667pt;}
.w7{width:89.910667pt;}
.w1d{width:90.066667pt;}
.w18{width:90.226667pt;}
.w1b{width:90.240000pt;}
.w1e{width:90.258667pt;}
.w1c{width:90.272000pt;}
.w31{width:92.818667pt;}
.w32{width:92.832000pt;}
.w26{width:96.338667pt;}
.w25{width:96.352000pt;}
.w24{width:97.120000pt;}
.w27{width:97.426667pt;}
.w33{width:103.350667pt;}
.w22{width:108.786667pt;}
.w6{width:109.146667pt;}
.w1f{width:115.190667pt;}
.w28{width:118.870667pt;}
.w34{width:140.973333pt;}
.w1a{width:146.257333pt;}
.w35{width:150.426667pt;}
.w20{width:169.613333pt;}
.w23{width:181.137333pt;}
.w4{width:184.817333pt;}
.w21{width:198.626667pt;}
.w36{width:207.213333pt;}
.w13{width:227.857333pt;}
.w5{width:333.666667pt;}
.w11{width:443.475029pt;}
.w12{width:473.590212pt;}
.w19{width:486.396304pt;}
.w2{width:546.000000pt;}
.we{width:555.600000pt;}
.wf{width:581.005592pt;}
.w10{width:584.453903pt;}
.wd{width:630.715873pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7b{left:4.626667pt;}
.x14{left:7.190667pt;}
.x76{left:8.946667pt;}
.x7d{left:10.266667pt;}
.x7e{left:11.520000pt;}
.x4d{left:13.242950pt;}
.x3e{left:14.298987pt;}
.x7c{left:15.680000pt;}
.x17{left:16.640000pt;}
.x40{left:18.367181pt;}
.x33{left:20.160000pt;}
.x7f{left:21.110667pt;}
.x71{left:22.546667pt;}
.x32{left:23.840000pt;}
.x16{left:26.080000pt;}
.x67{left:27.040000pt;}
.x31{left:28.306667pt;}
.x39{left:29.808100pt;}
.x73{left:30.720000pt;}
.x81{left:31.825333pt;}
.x28{left:32.790667pt;}
.x80{left:34.225333pt;}
.x47{left:35.653849pt;}
.x38{left:36.781741pt;}
.x6b{left:37.750667pt;}
.x2c{left:38.866667pt;}
.x74{left:40.625333pt;}
.x29{left:41.905333pt;}
.x65{left:43.546667pt;}
.x82{left:44.785333pt;}
.x27{left:47.040000pt;}
.x8d{left:48.626667pt;}
.x46{left:49.673951pt;}
.x25{left:50.880000pt;}
.x88{left:52.626667pt;}
.x85{left:53.600000pt;}
.x63{left:55.066667pt;}
.x8a{left:56.306667pt;}
.x61{left:57.585333pt;}
.x23{left:59.665333pt;}
.x26{left:61.265333pt;}
.x41{left:64.109834pt;}
.x1f{left:65.265333pt;}
.x69{left:68.026667pt;}
.x3b{left:69.605172pt;}
.x89{left:70.586667pt;}
.x24{left:71.840000pt;}
.x49{left:73.242499pt;}
.x87{left:75.066667pt;}
.x3d{left:77.461279pt;}
.x6a{left:80.346667pt;}
.x68{left:82.586667pt;}
.x83{left:83.561333pt;}
.x37{left:88.291620pt;}
.x6d{left:91.025333pt;}
.x13{left:94.921333pt;}
.x8e{left:96.186667pt;}
.x8b{left:97.786667pt;}
.x8c{left:99.226667pt;}
.x1{left:102.112000pt;}
.x4{left:104.032000pt;}
.x6c{left:107.081333pt;}
.x3c{left:119.081333pt;}
.x57{left:121.902748pt;}
.xf{left:124.032000pt;}
.x11{left:125.472000pt;}
.x4c{left:126.952416pt;}
.x35{left:128.832000pt;}
.x3{left:130.112000pt;}
.xd{left:136.506667pt;}
.x4f{left:137.937817pt;}
.x19{left:149.306667pt;}
.x21{left:152.026667pt;}
.x56{left:153.680000pt;}
.xe{left:163.706667pt;}
.x5{left:165.306667pt;}
.x4b{left:175.146667pt;}
.xb{left:177.786667pt;}
.x2b{left:184.840000pt;}
.x84{left:187.560000pt;}
.x43{left:203.133726pt;}
.x42{left:205.433585pt;}
.xa{left:206.746667pt;}
.x62{left:210.120000pt;}
.x75{left:226.920000pt;}
.x59{left:241.186667pt;}
.x8{left:269.666667pt;}
.x20{left:279.746667pt;}
.x6e{left:290.146667pt;}
.x7{left:294.466667pt;}
.x1e{left:313.186667pt;}
.x5f{left:320.226667pt;}
.x51{left:322.786667pt;}
.x58{left:328.812057pt;}
.x5a{left:331.426667pt;}
.x6{left:339.586667pt;}
.x9{left:342.146667pt;}
.x1a{left:344.386667pt;}
.x2d{left:355.106667pt;}
.x18{left:356.546667pt;}
.x10{left:361.666667pt;}
.x60{left:362.786667pt;}
.x12{left:369.186667pt;}
.x52{left:370.146667pt;}
.x3f{left:373.231262pt;}
.x64{left:379.746667pt;}
.x48{left:385.200302pt;}
.x6f{left:390.146667pt;}
.x2{left:396.866667pt;}
.x5b{left:421.706667pt;}
.x77{left:438.506667pt;}
.x2e{left:440.106667pt;}
.x53{left:451.146667pt;}
.x45{left:464.315881pt;}
.x44{left:465.787791pt;}
.xc{left:470.973333pt;}
.x3a{left:474.611296pt;}
.x86{left:480.586667pt;}
.x70{left:489.546667pt;}
.x7a{left:495.946667pt;}
.x5c{left:511.786667pt;}
.x54{left:522.506667pt;}
.x2f{left:525.226667pt;}
.x78{left:537.866667pt;}
.x2a{left:568.933333pt;}
.x66{left:578.373333pt;}
.x5e{left:587.013333pt;}
.x72{left:588.933333pt;}
.x5d{left:602.053333pt;}
.x55{left:603.493333pt;}
.x30{left:610.373333pt;}
.x34{left:611.493333pt;}
.x22{left:613.413333pt;}
.x4e{left:618.693333pt;}
.x50{left:623.013333pt;}
.x1d{left:625.893333pt;}
.x79{left:637.253333pt;}
.x15{left:640.933333pt;}
.x36{left:677.573333pt;}
.x4a{left:689.253333pt;}
.x1c{left:691.813333pt;}
.x1b{left:701.413333pt;}
}




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