
    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_7b05dbe4cdaf505eee6f16e4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691406;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_0cc8708af588771b8a72ba50.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3f67b68bcb54f6f263e660ed.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d0a012cb76328da5b1b418d9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_eb35aa526bb3c9d8e833b695.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8c8399f71e5e612668814c77.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6782ee7c1016b334e2dd38e4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d9c6828a66e2062d15ce6eb5.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_79eac1c501af8d899b570d34.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_9a113a5bc2ffd5021a988267.woff2')format("woff");}.ffa{font-family:ffa;line-height:2.150879;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_28591d42f3038a0ce2eb2297.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_3a56623e4c60f81c949d1b08.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.046387;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_04cf4da9b6240a16b5ed629e.woff2')format("woff");}.ffd{font-family:ffd;line-height:2.150879;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_5dd5ee29f382b5d6cdaa0392.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.708984;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_04f241459b528d2405e2b925.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_f5f94bb61515d716a8f9c2f7.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.727539;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_73400724f5dbb162126d745d.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_4dfa92d7a44cc963aff96ba8.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.691406;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.238622,0.237012,0.079533,0,0);-ms-transform:matrix(0.000000,-0.238622,0.237012,0.079533,0,0);-webkit-transform:matrix(0.000000,-0.238622,0.237012,0.079533,0,0);}
.m10{transform:matrix(0.000000,-0.250421,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250421,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250421,0.250000,0.000000,0,0);}
.md{transform:matrix(0.000000,-0.248720,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248720,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248720,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.250229,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250229,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250229,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.251698,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.251698,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.251698,0.250000,0.000000,0,0);}
.m14{transform:matrix(0.000000,-0.251148,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.251148,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.251148,0.250000,0.000000,0,0);}
.m11{transform:matrix(0.000000,-0.250663,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250663,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250663,0.250000,0.000000,0,0);}
.m16{transform:matrix(0.000000,-0.249848,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249848,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249848,0.250000,0.000000,0,0);}
.m1f{transform:matrix(0.000000,-0.249977,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249977,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249977,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.249634,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249634,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249634,0.250000,0.000000,0,0);}
.m1d{transform:matrix(0.000000,-0.249821,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249821,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249821,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.249652,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249652,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249652,0.250000,0.000000,0,0);}
.me{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m17{transform:matrix(0.245332,-0.039114,0.038856,0.246962,0,0);-ms-transform:matrix(0.245332,-0.039114,0.038856,0.246962,0,0);-webkit-transform:matrix(0.245332,-0.039114,0.038856,0.246962,0,0);}
.m7{transform:matrix(0.248313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248313,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248857,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249339,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249772,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);}
.m1e{transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250367,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250766,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251286,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.279058,0.000000,-0.093010,0.232054,0,0);-ms-transform:matrix(0.279058,0.000000,-0.093010,0.232054,0,0);-webkit-transform:matrix(0.279058,0.000000,-0.093010,0.232054,0,0);}
.m19{transform:matrix(0.279178,0.000000,-0.093050,0.232038,0,0);-ms-transform:matrix(0.279178,0.000000,-0.093050,0.232038,0,0);-webkit-transform:matrix(0.279178,0.000000,-0.093050,0.232038,0,0);}
.m1a{transform:matrix(0.280445,0.000000,-0.093472,0.231868,0,0);-ms-transform:matrix(0.280445,0.000000,-0.093472,0.231868,0,0);-webkit-transform:matrix(0.280445,0.000000,-0.093472,0.231868,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);}
.v25{vertical-align:-39.751620px;}
.v16{vertical-align:-33.120000px;}
.v26{vertical-align:-29.272001px;}
.v1f{vertical-align:-27.360000px;}
.v23{vertical-align:-25.003891px;}
.v2{vertical-align:-23.760000px;}
.vd{vertical-align:-21.193017px;}
.v18{vertical-align:-19.725948px;}
.va{vertical-align:-14.400000px;}
.v11{vertical-align:-13.023089px;}
.v1c{vertical-align:-11.520000px;}
.v4{vertical-align:-7.200498px;}
.v3{vertical-align:-5.760000px;}
.v17{vertical-align:-2.880000px;}
.vf{vertical-align:-1.597930px;}
.v0{vertical-align:0.000000px;}
.v1b{vertical-align:2.171747px;}
.v7{vertical-align:5.760000px;}
.v1a{vertical-align:7.173347px;}
.v1d{vertical-align:10.080000px;}
.v13{vertical-align:11.671325px;}
.v5{vertical-align:13.224677px;}
.vb{vertical-align:14.400000px;}
.v14{vertical-align:18.092706px;}
.v12{vertical-align:19.748937px;}
.v24{vertical-align:22.072490px;}
.v1{vertical-align:23.760000px;}
.v19{vertical-align:26.194872px;}
.v6{vertical-align:27.668448px;}
.v10{vertical-align:31.923066px;}
.ve{vertical-align:33.025894px;}
.v20{vertical-align:37.868184px;}
.v22{vertical-align:40.476314px;}
.v9{vertical-align:42.660000px;}
.v15{vertical-align:47.520000px;}
.v21{vertical-align:54.900000px;}
.v8{vertical-align:57.060000px;}
.vc{vertical-align:62.640000px;}
.v1e{vertical-align:100.980000px;}
.lsb{letter-spacing:-1.512000px;}
.lsc{letter-spacing:-1.440000px;}
.ls51{letter-spacing:-0.936000px;}
.ls11{letter-spacing:-0.720000px;}
.ls86{letter-spacing:-0.432000px;}
.ls7e{letter-spacing:-0.383682px;}
.ls7d{letter-spacing:-0.383407px;}
.ls7a{letter-spacing:-0.346759px;}
.ls79{letter-spacing:-0.346505px;}
.ls78{letter-spacing:-0.345447px;}
.ls77{letter-spacing:-0.345392px;}
.ls7b{letter-spacing:-0.342945px;}
.ls5{letter-spacing:-0.288000px;}
.ls28{letter-spacing:-0.269400px;}
.ls60{letter-spacing:-0.235526px;}
.lsf{letter-spacing:-0.216000px;}
.ls42{letter-spacing:-0.211201px;}
.ls18{letter-spacing:-0.144000px;}
.ls25{letter-spacing:-0.118857px;}
.ls23{letter-spacing:-0.072534px;}
.ls17{letter-spacing:-0.072000px;}
.ls63{letter-spacing:-0.060617px;}
.ls5d{letter-spacing:-0.045360px;}
.ls6a{letter-spacing:-0.044821px;}
.ls6b{letter-spacing:-0.044616px;}
.ls3a{letter-spacing:-0.040533px;}
.ls7c{letter-spacing:-0.037440px;}
.ls39{letter-spacing:-0.027483px;}
.ls3b{letter-spacing:-0.026785px;}
.ls58{letter-spacing:-0.009863px;}
.ls27{letter-spacing:-0.003198px;}
.ls1{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.001312px;}
.ls81{letter-spacing:0.001351px;}
.ls26{letter-spacing:0.008815px;}
.ls5f{letter-spacing:0.012895px;}
.ls64{letter-spacing:0.016997px;}
.ls24{letter-spacing:0.020008px;}
.ls3c{letter-spacing:0.020160px;}
.ls66{letter-spacing:0.027157px;}
.ls83{letter-spacing:0.029068px;}
.ls69{letter-spacing:0.032015px;}
.ls6c{letter-spacing:0.035547px;}
.ls70{letter-spacing:0.042244px;}
.ls76{letter-spacing:0.047951px;}
.ls3d{letter-spacing:0.050400px;}
.ls67{letter-spacing:0.053840px;}
.ls1f{letter-spacing:0.055172px;}
.ls3f{letter-spacing:0.057725px;}
.ls2e{letter-spacing:0.058525px;}
.ls74{letter-spacing:0.066393px;}
.ls19{letter-spacing:0.067252px;}
.ls2{letter-spacing:0.072000px;}
.ls65{letter-spacing:0.076173px;}
.ls20{letter-spacing:0.078309px;}
.ls2b{letter-spacing:0.080407px;}
.ls68{letter-spacing:0.083234px;}
.ls1a{letter-spacing:0.090763px;}
.ls57{letter-spacing:0.097701px;}
.ls3e{letter-spacing:0.097729px;}
.ls33{letter-spacing:0.103800px;}
.lsd{letter-spacing:0.108000px;}
.ls6d{letter-spacing:0.108629px;}
.ls1c{letter-spacing:0.111325px;}
.ls2d{letter-spacing:0.119446px;}
.ls1b{letter-spacing:0.119681px;}
.ls85{letter-spacing:0.120000px;}
.ls1e{letter-spacing:0.123780px;}
.ls2c{letter-spacing:0.131621px;}
.ls71{letter-spacing:0.133895px;}
.ls75{letter-spacing:0.134542px;}
.ls31{letter-spacing:0.140400px;}
.ls6{letter-spacing:0.144000px;}
.ls80{letter-spacing:0.146145px;}
.ls41{letter-spacing:0.152510px;}
.ls7f{letter-spacing:0.154960px;}
.ls82{letter-spacing:0.156210px;}
.ls2a{letter-spacing:0.157386px;}
.ls84{letter-spacing:0.165873px;}
.ls5e{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.181200px;}
.ls5a{letter-spacing:0.181440px;}
.ls72{letter-spacing:0.182753px;}
.ls73{letter-spacing:0.185040px;}
.ls54{letter-spacing:0.192000px;}
.ls4d{letter-spacing:0.199920px;}
.ls59{letter-spacing:0.208678px;}
.ls4b{letter-spacing:0.216000px;}
.ls43{letter-spacing:0.216151px;}
.ls40{letter-spacing:0.256200px;}
.ls44{letter-spacing:0.264000px;}
.ls5b{letter-spacing:0.269400px;}
.ls7{letter-spacing:0.288000px;}
.ls32{letter-spacing:0.290160px;}
.ls30{letter-spacing:0.305280px;}
.ls0{letter-spacing:0.360000px;}
.ls62{letter-spacing:0.432000px;}
.ls29{letter-spacing:0.450600px;}
.ls15{letter-spacing:0.468000px;}
.ls2f{letter-spacing:0.480000px;}
.ls3{letter-spacing:0.504000px;}
.ls56{letter-spacing:0.540000px;}
.ls12{letter-spacing:0.576000px;}
.ls55{letter-spacing:0.648000px;}
.ls52{letter-spacing:0.720000px;}
.ls6f{letter-spacing:0.792000px;}
.ls61{letter-spacing:0.869760px;}
.ls6e{letter-spacing:0.900000px;}
.ls16{letter-spacing:1.080000px;}
.lse{letter-spacing:1.440000px;}
.lsa{letter-spacing:2.160000px;}
.ls49{letter-spacing:2.801520px;}
.ls53{letter-spacing:2.880000px;}
.ls37{letter-spacing:3.200400px;}
.ls21{letter-spacing:3.337920px;}
.ls8{letter-spacing:4.320000px;}
.ls47{letter-spacing:4.774320px;}
.ls5c{letter-spacing:8.100000px;}
.ls9{letter-spacing:12.960000px;}
.ls36{letter-spacing:13.550400px;}
.ls35{letter-spacing:13.878720px;}
.ls45{letter-spacing:15.048000px;}
.ls34{letter-spacing:16.700400px;}
.ls48{letter-spacing:18.641520px;}
.ls13{letter-spacing:19.685520px;}
.ls14{letter-spacing:24.217920px;}
.ls4f{letter-spacing:52.481520px;}
.ls4c{letter-spacing:53.201520px;}
.ls4a{letter-spacing:53.921520px;}
.ls50{letter-spacing:54.641520px;}
.ls4e{letter-spacing:55.361520px;}
.ls4{letter-spacing:105.766533px;}
.ls38{letter-spacing:230.321520px;}
.ls22{letter-spacing:243.252000px;}
.ls46{letter-spacing:262.344000px;}
.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;}
}
.ws54{word-spacing:-86.008815px;}
.ws50{word-spacing:-84.240000px;}
.ws7{word-spacing:-72.000000px;}
.ws43{word-spacing:-68.065335px;}
.ws38{word-spacing:-63.288434px;}
.ws49{word-spacing:-44.092599px;}
.ws52{word-spacing:-24.300000px;}
.ws51{word-spacing:-23.902560px;}
.ws4f{word-spacing:-22.045578px;}
.ws46{word-spacing:-18.914310px;}
.ws4b{word-spacing:-18.876856px;}
.ws5a{word-spacing:-18.720000px;}
.ws13{word-spacing:-18.576000px;}
.ws5{word-spacing:-18.504000px;}
.ws44{word-spacing:-18.432000px;}
.wsa{word-spacing:-18.288000px;}
.ws59{word-spacing:-18.216000px;}
.ws9{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.928000px;}
.ws11{word-spacing:-17.856000px;}
.wse{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.ws5b{word-spacing:-17.568000px;}
.ws12{word-spacing:-17.280000px;}
.ws2{word-spacing:-16.560000px;}
.ws1c{word-spacing:-16.541722px;}
.ws14{word-spacing:-16.446183px;}
.wsb{word-spacing:-16.272000px;}
.wsf{word-spacing:-15.840000px;}
.ws3a{word-spacing:-15.459015px;}
.ws3f{word-spacing:-15.300000px;}
.ws36{word-spacing:-15.226440px;}
.ws2c{word-spacing:-14.572800px;}
.ws58{word-spacing:-14.562532px;}
.ws25{word-spacing:-14.433636px;}
.ws29{word-spacing:-14.412504px;}
.ws47{word-spacing:-12.616101px;}
.ws4d{word-spacing:-12.578795px;}
.ws21{word-spacing:-12.510600px;}
.wsc{word-spacing:-12.420000px;}
.ws41{word-spacing:-12.329400px;}
.wsd{word-spacing:-12.241200px;}
.ws0{word-spacing:-12.060000px;}
.ws40{word-spacing:-12.014640px;}
.ws20{word-spacing:-11.790600px;}
.ws23{word-spacing:-11.246400px;}
.ws30{word-spacing:-10.632960px;}
.ws2d{word-spacing:-10.612800px;}
.ws1f{word-spacing:-10.361171px;}
.ws1d{word-spacing:-10.346762px;}
.ws48{word-spacing:-9.986494px;}
.ws19{word-spacing:-9.941046px;}
.ws16{word-spacing:-9.927220px;}
.ws26{word-spacing:-9.489054px;}
.ws28{word-spacing:-9.475484px;}
.ws34{word-spacing:-8.657400px;}
.ws32{word-spacing:-8.604000px;}
.ws33{word-spacing:-8.553600px;}
.ws1a{word-spacing:-6.609409px;}
.ws17{word-spacing:-6.591414px;}
.ws6{word-spacing:-0.033689px;}
.ws4{word-spacing:0.000000px;}
.ws31{word-spacing:6.529680px;}
.ws3b{word-spacing:7.416000px;}
.ws2f{word-spacing:8.366400px;}
.ws3c{word-spacing:8.587440px;}
.ws2e{word-spacing:11.170080px;}
.ws22{word-spacing:11.715120px;}
.ws35{word-spacing:12.712320px;}
.ws24{word-spacing:24.984000px;}
.ws3d{word-spacing:34.128000px;}
.ws15{word-spacing:62.871022px;}
.ws1e{word-spacing:76.485920px;}
.ws18{word-spacing:79.411499px;}
.ws27{word-spacing:82.969955px;}
.ws3e{word-spacing:107.538697px;}
.ws53{word-spacing:140.772745px;}
.ws42{word-spacing:153.920298px;}
.ws37{word-spacing:168.423706px;}
.ws39{word-spacing:187.921079px;}
.ws1b{word-spacing:188.105331px;}
.ws55{word-spacing:189.097707px;}
.ws56{word-spacing:189.351348px;}
.ws45{word-spacing:204.635674px;}
.ws4c{word-spacing:205.174995px;}
.ws4e{word-spacing:216.486572px;}
.ws57{word-spacing:218.182570px;}
.ws4a{word-spacing:243.100340px;}
.ws2a{word-spacing:989.390867px;}
.ws2b{word-spacing:999.361161px;}
._3c{margin-left:-291.742815px;}
._18{margin-left:-242.263074px;}
._16{margin-left:-185.809744px;}
._15{margin-left:-164.231242px;}
._17{margin-left:-159.599930px;}
._19{margin-left:-105.237062px;}
._43{margin-left:-36.636000px;}
._47{margin-left:-35.496000px;}
._21{margin-left:-27.216000px;}
._48{margin-left:-24.912000px;}
._2f{margin-left:-23.832000px;}
._46{margin-left:-19.944000px;}
._20{margin-left:-17.088000px;}
._11{margin-left:-4.536000px;}
._10{margin-left:-3.456000px;}
._c{margin-left:-2.160000px;}
._0{margin-left:-1.080000px;}
._1{width:1.008000px;}
._b{width:2.663040px;}
._d{width:4.104960px;}
._e{width:5.172960px;}
._a{width:6.205440px;}
._6{width:7.738560px;}
._8{width:9.339840px;}
._7{width:10.618560px;}
._12{width:11.627040px;}
._3{width:12.684000px;}
._2{width:14.112000px;}
._13{width:15.312000px;}
._14{width:16.392000px;}
._2e{width:18.149760px;}
._5{width:19.414560px;}
._4{width:20.592000px;}
._f{width:22.248000px;}
._1e{width:23.544000px;}
._1f{width:24.708000px;}
._34{width:25.752000px;}
._27{width:26.760000px;}
._2d{width:29.088000px;}
._23{width:31.248000px;}
._24{width:32.556000px;}
._25{width:34.488000px;}
._26{width:35.676000px;}
._1c{width:36.696000px;}
._1d{width:38.028000px;}
._3a{width:39.228000px;}
._3b{width:40.380960px;}
._9{width:41.616000px;}
._1a{width:51.276000px;}
._1b{width:52.320000px;}
._45{width:54.264000px;}
._44{width:90.264000px;}
._29{width:92.747472px;}
._2c{width:97.317092px;}
._2a{width:99.712022px;}
._35{width:103.248960px;}
._28{width:107.547635px;}
._36{width:131.297018px;}
._37{width:140.688777px;}
._40{width:172.316775px;}
._41{width:184.518720px;}
._30{width:193.138606px;}
._22{width:194.376000px;}
._31{width:202.791510px;}
._32{width:212.565440px;}
._2b{width:217.472397px;}
._33{width:222.207632px;}
._42{width:226.399451px;}
._38{width:236.272367px;}
._3f{width:245.494202px;}
._39{width:248.680863px;}
._3e{width:250.156800px;}
._3d{width:485.929718px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:24.877721px;}
.fs10{font-size:26.365656px;}
.fs12{font-size:26.402375px;}
.fs40{font-size:28.727663px;}
.fs3d{font-size:28.859610px;}
.fs7{font-size:29.714887px;}
.fs4{font-size:33.688706px;}
.fs1f{font-size:35.540006px;}
.fs1e{font-size:36.591433px;}
.fs1a{font-size:37.956217px;}
.fs18{font-size:38.011869px;}
.fs1c{font-size:38.880000px;}
.fsf{font-size:39.708882px;}
.fs11{font-size:39.764184px;}
.fs3e{font-size:39.837345px;}
.fs15{font-size:41.387047px;}
.fs16{font-size:41.444686px;}
.fs3{font-size:41.760000px;}
.fs24{font-size:42.185458px;}
.fs4a{font-size:42.205036px;}
.fsa{font-size:43.065212px;}
.fse{font-size:43.125188px;}
.fs36{font-size:43.439036px;}
.fs3f{font-size:44.092599px;}
.fs3c{font-size:44.295119px;}
.fs6{font-size:46.903046px;}
.fs2b{font-size:48.139499px;}
.fs2{font-size:48.240000px;}
.fs2a{font-size:48.387163px;}
.fs45{font-size:50.315178px;}
.fs38{font-size:50.330967px;}
.fs44{font-size:50.345720px;}
.fs3a{font-size:50.464403px;}
.fs8{font-size:51.120000px;}
.fs41{font-size:53.045071px;}
.fs4e{font-size:54.345312px;}
.fs4c{font-size:55.053882px;}
.fs4d{font-size:55.238680px;}
.fs53{font-size:56.017637px;}
.fs29{font-size:56.158944px;}
.fs48{font-size:56.425561px;}
.fs49{font-size:56.434591px;}
.fs19{font-size:57.650015px;}
.fs17{font-size:57.734543px;}
.fsd{font-size:57.843615px;}
.fs57{font-size:58.244771px;}
.fs56{font-size:58.250128px;}
.fs26{font-size:58.810554px;}
.fs1d{font-size:58.949921px;}
.fs1b{font-size:59.324893px;}
.fsb{font-size:59.441334px;}
.fs2f{font-size:59.760000px;}
.fs2e{font-size:60.169482px;}
.fs32{font-size:61.439166px;}
.fs28{font-size:61.836059px;}
.fs25{font-size:61.982596px;}
.fs22{font-size:63.288434px;}
.fs27{font-size:63.509626px;}
.fs9{font-size:66.074867px;}
.fsc{font-size:66.166888px;}
.fs0{font-size:66.240000px;}
.fs21{font-size:66.756645px;}
.fs31{font-size:67.430684px;}
.fs33{font-size:68.065335px;}
.fs20{font-size:69.350350px;}
.fs46{font-size:69.401550px;}
.fs23{font-size:70.172461px;}
.fs1{font-size:72.000000px;}
.fs13{font-size:72.705103px;}
.fs35{font-size:73.422201px;}
.fs2d{font-size:73.937366px;}
.fs34{font-size:74.794733px;}
.fs37{font-size:75.457191px;}
.fs42{font-size:75.507424px;}
.fs43{font-size:75.553258px;}
.fs39{font-size:75.657241px;}
.fs30{font-size:75.893905px;}
.fs2c{font-size:76.044930px;}
.fs51{font-size:76.652689px;}
.fs14{font-size:82.565817px;}
.fs4b{font-size:84.240000px;}
.fs50{font-size:86.330526px;}
.fs52{font-size:86.392497px;}
.fs47{font-size:88.182312px;}
.fs3b{font-size:88.445755px;}
.fs54{font-size:88.685686px;}
.fs55{font-size:88.693843px;}
.fs4f{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y25b{bottom:1.875000px;}
.y267{bottom:2.089022px;}
.y66{bottom:2.196063px;}
.y261{bottom:3.705000px;}
.y265{bottom:4.237876px;}
.y263{bottom:4.254627px;}
.y25d{bottom:4.605000px;}
.y269{bottom:5.730000px;}
.y25f{bottom:5.865000px;}
.y228{bottom:6.164397px;}
.y26c{bottom:6.254410px;}
.y1d5{bottom:6.288526px;}
.y275{bottom:6.844878px;}
.y1ec{bottom:9.859980px;}
.yd9{bottom:9.872820px;}
.y65{bottom:11.641993px;}
.ycb{bottom:12.252419px;}
.y63{bottom:13.241609px;}
.y13c{bottom:13.589795px;}
.y191{bottom:13.755000px;}
.y18b{bottom:15.481329px;}
.y132{bottom:18.701593px;}
.yfc{bottom:21.778346px;}
.y62{bottom:24.481693px;}
.y152{bottom:25.560000px;}
.y116{bottom:25.905000px;}
.y1ed{bottom:28.218212px;}
.y148{bottom:28.425000px;}
.y111{bottom:30.600000px;}
.y110{bottom:30.780000px;}
.yb8{bottom:31.680000px;}
.y64{bottom:33.905613px;}
.y229{bottom:34.191164px;}
.y1d6{bottom:34.310283px;}
.y26d{bottom:34.657617px;}
.yda{bottom:37.402641px;}
.y151{bottom:37.620000px;}
.y1bd{bottom:38.432783px;}
.y60{bottom:39.330938px;}
.ycc{bottom:39.782240px;}
.y180{bottom:40.290827px;}
.y154{bottom:40.320000px;}
.y147{bottom:40.485000px;}
.y276{bottom:40.486900px;}
.y149{bottom:41.025000px;}
.y52{bottom:41.233545px;}
.y136{bottom:43.684242px;}
.yb7{bottom:43.740000px;}
.y50{bottom:44.237614px;}
.y153{bottom:44.280000px;}
.y6b{bottom:44.843597px;}
.yfd{bottom:45.402677px;}
.y51{bottom:48.150657px;}
.y12a{bottom:48.547369px;}
.y251{bottom:48.586457px;}
.y117{bottom:50.970000px;}
.y114{bottom:51.150000px;}
.y181{bottom:55.350723px;}
.yb9{bottom:56.025000px;}
.y2{bottom:57.600000px;}
.y6c{bottom:60.990357px;}
.y12b{bottom:61.736801px;}
.yce{bottom:62.093758px;}
.y254{bottom:63.773189px;}
.y258{bottom:66.043066px;}
.y1f2{bottom:67.170185px;}
.y61{bottom:67.604478px;}
.y67{bottom:68.425228px;}
.y137{bottom:68.818575px;}
.y1d7{bottom:72.523094px;}
.y1b4{bottom:72.735873px;}
.y4f{bottom:75.126682px;}
.y22b{bottom:75.267191px;}
.y1{bottom:77.796000px;}
.y253{bottom:79.049881px;}
.y115{bottom:80.130000px;}
.y53{bottom:81.460090px;}
.y70{bottom:83.469635px;}
.y6e{bottom:85.760784px;}
.y256{bottom:86.764873px;}
.y257{bottom:90.341693px;}
.y6a{bottom:90.772615px;}
.y26f{bottom:94.525856px;}
.y68{bottom:95.513537px;}
.y69{bottom:95.700679px;}
.y182{bottom:97.940273px;}
.y6f{bottom:103.221991px;}
.yff{bottom:104.465974px;}
.y54{bottom:105.931090px;}
.y24f{bottom:106.189092px;}
.y6d{bottom:107.740126px;}
.y18a{bottom:108.408837px;}
.y12c{bottom:109.851755px;}
.yfe{bottom:110.413599px;}
.y255{bottom:111.219670px;}
.y13f{bottom:112.536000px;}
.yb4{bottom:114.156000px;}
.y278{bottom:115.265625px;}
.y8d{bottom:118.116000px;}
.y1f1{bottom:120.022064px;}
.y2d0{bottom:120.276000px;}
.y18f{bottom:120.816000px;}
.y250{bottom:121.957327px;}
.y1f{bottom:122.256000px;}
.y24d{bottom:123.156000px;}
.y1ee{bottom:123.168338px;}
.y1c6{bottom:125.676000px;}
.y1b2{bottom:126.396000px;}
.y2b0{bottom:127.116000px;}
.y299{bottom:127.836000px;}
.y27f{bottom:128.196000px;}
.y222{bottom:128.736000px;}
.y219{bottom:128.760000px;}
.y138{bottom:128.795858px;}
.y1f5{bottom:130.597960px;}
.y1cf{bottom:131.545977px;}
.y11c{bottom:131.616000px;}
.y74{bottom:131.796000px;}
.y175{bottom:132.516000px;}
.y9b{bottom:133.236000px;}
.y133{bottom:133.425229px;}
.y55{bottom:133.530028px;}
.y3a{bottom:134.136000px;}
.y1fa{bottom:134.316000px;}
.y13e{bottom:134.856000px;}
.y2c2{bottom:135.936000px;}
.y2df{bottom:136.296000px;}
.y23d{bottom:136.836000px;}
.y1ea{bottom:138.816000px;}
.y18e{bottom:140.076000px;}
.y183{bottom:140.391247px;}
.y134{bottom:143.047613px;}
.yb3{bottom:145.296000px;}
.ycf{bottom:145.380533px;}
.y13b{bottom:146.487522px;}
.y161{bottom:147.096000px;}
.y100{bottom:147.267490px;}
.y259{bottom:148.189739px;}
.y1be{bottom:148.287930px;}
.y27e{bottom:148.716000px;}
.y221{bottom:149.036603px;}
.y8c{bottom:149.256000px;}
.y1d8{bottom:149.802911px;}
.y2cf{bottom:151.230000px;}
.y73{bottom:152.490000px;}
.y1e{bottom:153.390000px;}
.y24c{bottom:154.290000px;}
.y234{bottom:154.647497px;}
.y130{bottom:154.939799px;}
.y1f9{bottom:155.010000px;}
.y1c5{bottom:156.810000px;}
.y5e{bottom:157.894090px;}
.y12d{bottom:157.969743px;}
.y2af{bottom:158.070000px;}
.y298{bottom:158.790000px;}
.y252{bottom:162.086800px;}
.y18d{bottom:162.210000px;}
.y11b{bottom:163.110000px;}
.y174{bottom:163.470000px;}
.y9a{bottom:164.190000px;}
.y39{bottom:165.270000px;}
.yf4{bottom:166.530000px;}
.y22c{bottom:166.604047px;}
.y2c1{bottom:167.070000px;}
.y2de{bottom:167.250000px;}
.y23c{bottom:167.790000px;}
.y1e9{bottom:169.950000px;}
.y27d{bottom:170.850000px;}
.y216{bottom:171.570000px;}
.y1b1{bottom:172.470000px;}
.y1f0{bottom:172.890502px;}
.y72{bottom:173.190000px;}
.y1f8{bottom:175.710000px;}
.yb2{bottom:176.250000px;}
.y129{bottom:176.310000px;}
.y188{bottom:177.101528px;}
.y160{bottom:178.230000px;}
.y2ce{bottom:182.370000px;}
.y184{bottom:182.978759px;}
.y1d{bottom:184.350000px;}
.y24b{bottom:185.250000px;}
.y1c4{bottom:187.770000px;}
.y139{bottom:188.770115px;}
.y2ae{bottom:189.210000px;}
.y26e{bottom:189.554933px;}
.y297{bottom:189.930000px;}
.y101{bottom:190.069007px;}
.ydc{bottom:191.183891px;}
.y5c{bottom:192.408358px;}
.y22a{bottom:192.895855px;}
.ydb{bottom:192.923050px;}
.y11a{bottom:194.430000px;}
.y173{bottom:194.610000px;}
.ycd{bottom:195.066090px;}
.y8b{bottom:195.330000px;}
.y38{bottom:196.230000px;}
.y5a{bottom:196.409625px;}
.y27c{bottom:197.310000px;}
.y273{bottom:197.385000px;}
.y2dd{bottom:198.390000px;}
.y23b{bottom:198.930000px;}
.y1e8{bottom:200.910000px;}
.yd3{bottom:201.000662px;}
.y17e{bottom:203.430000px;}
.y17f{bottom:203.460000px;}
.y1b0{bottom:203.610000px;}
.y12e{bottom:206.084696px;}
.y107{bottom:206.085642px;}
.yb1{bottom:207.210000px;}
.y15f{bottom:209.190000px;}
.y277{bottom:211.598781px;}
.yf3{bottom:212.610000px;}
.y2c0{bottom:213.150000px;}
.y2e1{bottom:213.330000px;}
.ydd{bottom:214.757330px;}
.y1c{bottom:215.310000px;}
.y71{bottom:215.490000px;}
.y3f{bottom:215.535000px;}
.y24a{bottom:216.390000px;}
.y58{bottom:216.487252px;}
.yd4{bottom:216.537702px;}
.y215{bottom:217.470000px;}
.y5b{bottom:217.485341px;}
.y1f7{bottom:218.550000px;}
.y2ad{bottom:220.170000px;}
.y1c3{bottom:222.330000px;}
.y220{bottom:222.896819px;}
.y185{bottom:225.572385px;}
.y1ef{bottom:225.753421px;}
.y119{bottom:225.930000px;}
.y8a{bottom:226.290000px;}
.y1d9{bottom:227.034705px;}
.y37{bottom:227.370000px;}
.y13d{bottom:227.606102px;}
.y1bc{bottom:228.145524px;}
.y2cd{bottom:228.270000px;}
.yd0{bottom:228.670605px;}
.ydf{bottom:228.794242px;}
.y1db{bottom:228.955658px;}
.y5f{bottom:229.025743px;}
.y23a{bottom:229.890000px;}
.yc9{bottom:230.430000px;}
.y1e7{bottom:232.050000px;}
.y135{bottom:232.252664px;}
.y1af{bottom:234.570000px;}
.y59{bottom:236.547055px;}
.y296{bottom:238.890000px;}
.yf7{bottom:238.990902px;}
.yb0{bottom:239.070000px;}
.y15e{bottom:240.330000px;}
.y172{bottom:240.690000px;}
.yf2{bottom:243.570000px;}
.y2bf{bottom:244.110000px;}
.y2dc{bottom:244.470000px;}
.y1c2{bottom:244.650000px;}
.y1b{bottom:246.450000px;}
.y249{bottom:247.350000px;}
.y13a{bottom:248.747398px;}
.y270{bottom:249.246645px;}
.y2ac{bottom:251.310000px;}
.y5d{bottom:252.088724px;}
.y12f{bottom:254.199649px;}
.y1f4{bottom:256.350000px;}
.y1eb{bottom:256.410000px;}
.y118{bottom:257.070000px;}
.y89{bottom:257.430000px;}
.y22d{bottom:258.026758px;}
.y36{bottom:258.330000px;}
.y2cc{bottom:259.410000px;}
.yc8{bottom:261.390000px;}
.y1e6{bottom:263.010000px;}
.y214{bottom:263.550000px;}
.y1ae{bottom:265.710000px;}
.y102{bottom:266.762941px;}
.y186{bottom:268.023359px;}
.y1c1{bottom:268.230000px;}
.y131{bottom:268.258465px;}
.y239{bottom:268.770000px;}
.y295{bottom:270.030000px;}
.y15d{bottom:271.290000px;}
.yaf{bottom:271.470000px;}
.y1f3{bottom:271.854611px;}
.y1d0{bottom:273.413144px;}
.y113{bottom:273.465000px;}
.yf1{bottom:274.710000px;}
.y2db{bottom:275.430000px;}
.yf8{bottom:277.259719px;}
.y1a{bottom:277.410000px;}
.y1f6{bottom:279.692697px;}
.y56{bottom:280.195619px;}
.y2ab{bottom:282.270000px;}
.y247{bottom:286.230000px;}
.y171{bottom:286.590000px;}
.y279{bottom:286.674427px;}
.yde{bottom:287.686628px;}
.y88{bottom:288.390000px;}
.y35{bottom:289.470000px;}
.y248{bottom:289.830000px;}
.y2cb{bottom:290.370000px;}
.y1c0{bottom:290.550000px;}
.yf6{bottom:291.507697px;}
.y18c{bottom:291.972467px;}
.yc7{bottom:292.530000px;}
.y1e5{bottom:294.150000px;}
.y213{bottom:294.690000px;}
.y1ad{bottom:296.670000px;}
.y1bb{bottom:297.319205px;}
.yd6{bottom:298.088614px;}
.ye0{bottom:298.805708px;}
.y294{bottom:300.990000px;}
.yae{bottom:302.430000px;}
.yf0{bottom:305.670000px;}
.y1cd{bottom:306.390000px;}
.y21f{bottom:307.257110px;}
.y245{bottom:307.830000px;}
.y19{bottom:308.550000px;}
.yd5{bottom:309.759939px;}
.y187{bottom:310.612909px;}
.y103{bottom:311.045195px;}
.y246{bottom:311.475000px;}
.y238{bottom:311.655000px;}
.yd1{bottom:311.960676px;}
.y2aa{bottom:313.455000px;}
.yf9{bottom:315.495631px;}
.y170{bottom:318.135000px;}
.y4e{bottom:318.408163px;}
.y87{bottom:319.575000px;}
.y2ca{bottom:321.555000px;}
.yc6{bottom:323.535000px;}
.y2be{bottom:324.795000px;}
.y1e4{bottom:325.155000px;}
.y189{bottom:327.392772px;}
.y1ac{bottom:327.855000px;}
.y243{bottom:329.475000px;}
.y1bf{bottom:330.195000px;}
.y1b3{bottom:330.210000px;}
.y293{bottom:332.175000px;}
.y237{bottom:332.355000px;}
.y212{bottom:332.535000px;}
.y244{bottom:333.075000px;}
.yad{bottom:333.615000px;}
.y99{bottom:334.515000px;}
.y34{bottom:335.415000px;}
.y15b{bottom:335.595000px;}
.y44{bottom:335.954921px;}
.y2e2{bottom:336.495000px;}
.yef{bottom:336.855000px;}
.y1cc{bottom:337.395000px;}
.y18{bottom:339.555000px;}
.y15c{bottom:342.255000px;}
.y46{bottom:343.672287px;}
.y2a9{bottom:344.415000px;}
.y22e{bottom:345.070126px;}
.y2bd{bottom:346.935000px;}
.y16f{bottom:349.455000px;}
.y86{bottom:350.535000px;}
.y1d1{bottom:350.692174px;}
.y242{bottom:351.255000px;}
.y2da{bottom:352.515000px;}
.y4c{bottom:352.904609px;}
.y236{bottom:353.055000px;}
.yfa{bottom:353.723317px;}
.yc5{bottom:354.675000px;}
.y104{bottom:355.319222px;}
.y1e3{bottom:356.295000px;}
.y211{bottom:356.835000px;}
.y48{bottom:356.923698px;}
.y1ab{bottom:358.815000px;}
.y45{bottom:359.543682px;}
.y292{bottom:363.135000px;}
.yac{bottom:364.575000px;}
.y33{bottom:366.555000px;}
.y2c9{bottom:367.635000px;}
.yee{bottom:367.815000px;}
.y1cb{bottom:368.535000px;}
.yd7{bottom:368.660568px;}
.ye1{bottom:368.775962px;}
.y2bc{bottom:369.255000px;}
.y159{bottom:369.435000px;}
.y17{bottom:370.695000px;}
.y43{bottom:371.672243px;}
.y241{bottom:371.955000px;}
.yd8{bottom:373.062042px;}
.y1ba{bottom:373.619935px;}
.y2a8{bottom:375.555000px;}
.ye2{bottom:375.856237px;}
.y15a{bottom:376.095000px;}
.y47{bottom:376.983502px;}
.y21e{bottom:377.744299px;}
.y4b{bottom:377.999414px;}
.y16e{bottom:380.415000px;}
.y98{bottom:380.595000px;}
.y85{bottom:381.495000px;}
.y106{bottom:381.799730px;}
.y2d9{bottom:383.655000px;}
.yc4{bottom:385.635000px;}
.y1e2{bottom:387.255000px;}
.y210{bottom:387.795000px;}
.y1aa{bottom:389.955000px;}
.y2bb{bottom:391.575000px;}
.yfb{bottom:392.016813px;}
.y112{bottom:392.115000px;}
.y240{bottom:392.655000px;}
.y227{bottom:394.260000px;}
.y235{bottom:394.275000px;}
.yd2{bottom:395.193051px;}
.y49{bottom:396.954190px;}
.y4a{bottom:397.043305px;}
.y32{bottom:397.515000px;}
.y2c8{bottom:398.595000px;}
.yed{bottom:398.955000px;}
.y1ca{bottom:399.495000px;}
.y105{bottom:399.617928px;}
.y42{bottom:400.866342px;}
.y16{bottom:401.655000px;}
.y157{bottom:403.455000px;}
.y233{bottom:403.569004px;}
.y271{bottom:403.919509px;}
.y2a7{bottom:406.515000px;}
.y10f{bottom:408.855000px;}
.y158{bottom:410.115000px;}
.yab{bottom:410.655000px;}
.y97{bottom:411.555000px;}
.y4d{bottom:412.611709px;}
.y84{bottom:412.635000px;}
.y22f{bottom:413.217735px;}
.y23f{bottom:413.355000px;}
.yc3{bottom:416.775000px;}
.y20f{bottom:418.935000px;}
.y1a9{bottom:420.915000px;}
.y291{bottom:425.235000px;}
.y1e1{bottom:426.135000px;}
.y1d2{bottom:427.923967px;}
.y31{bottom:428.655000px;}
.y2c7{bottom:429.735000px;}
.y1c9{bottom:430.635000px;}
.y40{bottom:430.960503px;}
.y15{bottom:432.795000px;}
.y156{bottom:435.135000px;}
.y1da{bottom:435.702256px;}
.y2ba{bottom:437.295000px;}
.y2a6{bottom:437.655000px;}
.yaa{bottom:441.615000px;}
.y16d{bottom:442.515000px;}
.y96{bottom:442.695000px;}
.yec{bottom:445.035000px;}
.yc2{bottom:447.735000px;}
.y1e0{bottom:448.275000px;}
.y20e{bottom:449.895000px;}
.y1b9{bottom:450.853176px;}
.y1a8{bottom:451.875000px;}
.y27a{bottom:457.982578px;}
.y83{bottom:458.715000px;}
.y23e{bottom:459.255000px;}
.y30{bottom:459.615000px;}
.y41{bottom:459.646645px;}
.y2d8{bottom:460.695000px;}
.y1c8{bottom:461.595000px;}
.y21d{bottom:462.291092px;}
.y14{bottom:463.755000px;}
.y57{bottom:467.078843px;}
.y2a5{bottom:468.615000px;}
.y1df{bottom:468.975000px;}
.y190{bottom:471.960000px;}
.ya9{bottom:472.755000px;}
.y95{bottom:473.655000px;}
.y128{bottom:474.015000px;}
.y290{bottom:474.195000px;}
.y26b{bottom:474.360000px;}
.y2c6{bottom:475.635000px;}
.y1d3{bottom:477.435766px;}
.y1b7{bottom:479.539885px;}
.yeb{bottom:480.675000px;}
.y20d{bottom:481.035000px;}
.y155{bottom:481.215000px;}
.y230{bottom:481.420479px;}
.y1a7{bottom:483.015000px;}
.y10e{bottom:486.255000px;}
.y2b9{bottom:486.615000px;}
.y82{bottom:489.675000px;}
.y2f{bottom:490.755000px;}
.y2d7{bottom:491.835000px;}
.y1c7{bottom:492.735000px;}
.yc1{bottom:493.815000px;}
.y1de{bottom:496.515000px;}
.y150{bottom:497.595000px;}
.y232{bottom:499.741253px;}
.y2a4{bottom:499.755000px;}
.ye9{bottom:501.375000px;}
.yea{bottom:502.095000px;}
.ya8{bottom:503.715000px;}
.y16c{bottom:504.615000px;}
.y94{bottom:504.795000px;}
.y127{bottom:505.155000px;}
.y28f{bottom:505.335000px;}
.y21b{bottom:505.783414px;}
.y2c5{bottom:506.775000px;}
.y13{bottom:509.475000px;}
.y1dd{bottom:510.375000px;}
.y20c{bottom:511.995000px;}
.y1d4{bottom:513.327687px;}
.y1a6{bottom:513.975000px;}
.y10d{bottom:517.215000px;}
.y2b8{bottom:517.755000px;}
.y25a{bottom:518.760000px;}
.y1b6{bottom:518.902515px;}
.y21c{bottom:519.091681px;}
.y1b8{bottom:520.402526px;}
.y81{bottom:520.815000px;}
.y274{bottom:521.604130px;}
.y2e{bottom:521.715000px;}
.ye8{bottom:522.615000px;}
.y2d6{bottom:522.795000px;}
.y2a3{bottom:530.715000px;}
.y231{bottom:532.318519px;}
.ya7{bottom:534.855000px;}
.y93{bottom:535.755000px;}
.y126{bottom:536.115000px;}
.y28e{bottom:536.295000px;}
.y2c4{bottom:537.735000px;}
.yc0{bottom:539.535000px;}
.y20b{bottom:543.135000px;}
.ye7{bottom:545.475000px;}
.y1dc{bottom:548.715000px;}
.y1ce{bottom:548.760000px;}
.y80{bottom:551.775000px;}
.y2d{bottom:552.855000px;}
.y12{bottom:555.555000px;}
.y10c{bottom:556.095000px;}
.y1a5{bottom:560.055000px;}
.y2a2{bottom:561.885000px;}
.ya6{bottom:565.845000px;}
.y262{bottom:566.100000px;}
.ye6{bottom:566.205000px;}
.y16b{bottom:566.745000px;}
.y125{bottom:567.285000px;}
.y28d{bottom:567.465000px;}
.y27b{bottom:567.863370px;}
.y2c3{bottom:568.905000px;}
.y20a{bottom:574.125000px;}
.y10b{bottom:576.825000px;}
.y2b7{bottom:579.885000px;}
.y92{bottom:581.865000px;}
.y7f{bottom:582.945000px;}
.y2c{bottom:583.845000px;}
.y264{bottom:584.100000px;}
.ybf{bottom:586.005000px;}
.y11{bottom:586.545000px;}
.ye5{bottom:586.905000px;}
.y17d{bottom:588.705000px;}
.y260{bottom:589.500000px;}
.y1b5{bottom:589.584199px;}
.y21a{bottom:592.205887px;}
.y2a1{bottom:592.845000px;}
.y14f{bottom:594.645000px;}
.ya5{bottom:596.985000px;}
.y10a{bottom:597.525000px;}
.y16a{bottom:597.885000px;}
.y124{bottom:598.245000px;}
.y28c{bottom:598.425000px;}
.y2d5{bottom:599.865000px;}
.y1a4{bottom:603.105000px;}
.y209{bottom:605.265000px;}
.y25c{bottom:606.060000px;}
.ye4{bottom:607.605000px;}
.y266{bottom:607.860000px;}
.y2b6{bottom:610.845000px;}
.y91{bottom:612.825000px;}
.y7e{bottom:613.905000px;}
.y2b{bottom:614.985000px;}
.ybe{bottom:616.965000px;}
.y10{bottom:617.685000px;}
.y109{bottom:618.225000px;}
.y17c{bottom:619.845000px;}
.y2a0{bottom:623.985000px;}
.y14e{bottom:625.785000px;}
.ya4{bottom:627.945000px;}
.y169{bottom:628.845000px;}
.y123{bottom:629.385000px;}
.y28b{bottom:629.565000px;}
.y2d4{bottom:631.005000px;}
.y1a3{bottom:634.245000px;}
.y208{bottom:636.225000px;}
.y26a{bottom:641.520000px;}
.y2b5{bottom:641.985000px;}
.y90{bottom:643.965000px;}
.y2a{bottom:645.945000px;}
.ybd{bottom:648.105000px;}
.yca{bottom:648.810000px;}
.ye3{bottom:648.825000px;}
.y17b{bottom:651.525000px;}
.y29f{bottom:654.945000px;}
.y14d{bottom:656.745000px;}
.ya3{bottom:659.085000px;}
.yf5{bottom:659.610000px;}
.y108{bottom:659.625000px;}
.y168{bottom:659.985000px;}
.y122{bottom:660.345000px;}
.y7d{bottom:660.525000px;}
.y2d3{bottom:661.965000px;}
.yf{bottom:663.765000px;}
.y1a2{bottom:664.665000px;}
.y1a1{bottom:666.105000px;}
.y207{bottom:667.185000px;}
.y2b4{bottom:672.945000px;}
.y8f{bottom:675.825000px;}
.y29{bottom:677.085000px;}
.ybc{bottom:679.065000px;}
.y17a{bottom:684.645000px;}
.y29e{bottom:686.085000px;}
.y14c{bottom:687.885000px;}
.y167{bottom:690.945000px;}
.y121{bottom:691.485000px;}
.y28a{bottom:691.665000px;}
.y7c{bottom:693.105000px;}
.ye{bottom:694.005000px;}
.y206{bottom:698.325000px;}
.y1a0{bottom:698.505000px;}
.y25e{bottom:699.300000px;}
.y2b3{bottom:704.085000px;}
.ya2{bottom:705.165000px;}
.y28{bottom:708.045000px;}
.ybb{bottom:710.925000px;}
.y29d{bottom:717.045000px;}
.y179{bottom:717.765000px;}
.y24e{bottom:718.380000px;}
.y14b{bottom:718.845000px;}
.y166{bottom:722.085000px;}
.yd{bottom:722.445000px;}
.y289{bottom:722.625000px;}
.y3e{bottom:722.985000px;}
.y7b{bottom:724.065000px;}
.y205{bottom:729.285000px;}
.y19f{bottom:730.005000px;}
.y2b2{bottom:735.045000px;}
.y2d2{bottom:739.185000px;}
.yba{bottom:743.685000px;}
.y29c{bottom:748.185000px;}
.y14a{bottom:749.985000px;}
.yc{bottom:750.885000px;}
.ya1{bottom:751.245000px;}
.y165{bottom:753.045000px;}
.y288{bottom:753.765000px;}
.y27{bottom:754.125000px;}
.y7a{bottom:755.205000px;}
.yb6{bottom:760.245000px;}
.y204{bottom:760.425000px;}
.y19e{bottom:760.965000px;}
.y2b1{bottom:766.185000px;}
.y146{bottom:766.380000px;}
.y120{bottom:768.525000px;}
.y2e0{bottom:770.145000px;}
.y29b{bottom:779.145000px;}
.yb{bottom:779.325000px;}
.ya0{bottom:782.205000px;}
.y178{bottom:783.825000px;}
.y164{bottom:784.185000px;}
.y287{bottom:784.725000px;}
.y26{bottom:785.085000px;}
.y203{bottom:791.385000px;}
.y19d{bottom:792.105000px;}
.y218{bottom:800.205000px;}
.y272{bottom:801.105000px;}
.y79{bottom:801.285000px;}
.y2e3{bottom:802.185000px;}
.y9f{bottom:813.210000px;}
.ya{bottom:813.750000px;}
.y11f{bottom:814.650000px;}
.y163{bottom:815.190000px;}
.y286{bottom:815.910000px;}
.y25{bottom:816.270000px;}
.y202{bottom:822.570000px;}
.y19c{bottom:823.110000px;}
.y29a{bottom:827.970000px;}
.y9{bottom:836.250000px;}
.y9e{bottom:845.610000px;}
.y162{bottom:846.330000px;}
.y285{bottom:846.870000px;}
.y24{bottom:847.230000px;}
.y19b{bottom:853.530000px;}
.y19a{bottom:854.970000px;}
.y145{bottom:861.810000px;}
.yb5{bottom:862.350000px;}
.y8{bottom:870.810000px;}
.y11e{bottom:876.750000px;}
.y9d{bottom:877.290000px;}
.y284{bottom:878.010000px;}
.y23{bottom:878.370000px;}
.y201{bottom:884.670000px;}
.y199{bottom:886.650000px;}
.y198{bottom:888.090000px;}
.y144{bottom:892.770000px;}
.y268{bottom:892.800000px;}
.y78{bottom:893.310000px;}
.y11d{bottom:908.250000px;}
.y9c{bottom:908.430000px;}
.y7{bottom:908.970000px;}
.y22{bottom:909.330000px;}
.y200{bottom:915.630000px;}
.y197{bottom:919.590000px;}
.y196{bottom:921.030000px;}
.y143{bottom:923.910000px;}
.y177{bottom:924.450000px;}
.y77{bottom:939.390000px;}
.y6{bottom:940.110000px;}
.y21{bottom:940.470000px;}
.y195{bottom:954.150000px;}
.y142{bottom:954.870000px;}
.y8e{bottom:955.410000px;}
.y1ff{bottom:958.830000px;}
.y226{bottom:962.250000px;}
.y76{bottom:970.530000px;}
.y20{bottom:971.430000px;}
.y283{bottom:971.970000px;}
.y217{bottom:977.370000px;}
.y1fe{bottom:979.710000px;}
.y5{bottom:986.190000px;}
.y3d{bottom:986.550000px;}
.y225{bottom:995.370000px;}
.y141{bottom:997.350000px;}
.y1fd{bottom:1000.410000px;}
.y75{bottom:1001.490000px;}
.y282{bottom:1004.190000px;}
.y4{bottom:1017.150000px;}
.y2d1{bottom:1017.510000px;}
.y224{bottom:1017.690000px;}
.y1fc{bottom:1020.930000px;}
.y3c{bottom:1032.630000px;}
.y194{bottom:1038.750000px;}
.y176{bottom:1039.470000px;}
.y193{bottom:1040.190000px;}
.y223{bottom:1041.270000px;}
.y140{bottom:1041.450000px;}
.y1fb{bottom:1041.630000px;}
.y281{bottom:1043.070000px;}
.y192{bottom:1062.330000px;}
.y3{bottom:1063.260000px;}
.y3b{bottom:1063.620000px;}
.y280{bottom:1063.800000px;}
.h6c{height:12.060360px;}
.h6f{height:12.600448px;}
.h68{height:21.960000px;}
.h6b{height:23.760000px;}
.h69{height:24.660000px;}
.h6a{height:25.740000px;}
.h4b{height:27.360000px;}
.h71{height:27.540000px;}
.h73{height:27.720000px;}
.hd{height:30.991699px;}
.h46{height:34.459231px;}
.h45{height:34.636514px;}
.h32{height:34.880572px;}
.h9{height:35.136268px;}
.h31{height:35.912490px;}
.h70{height:37.733903px;}
.h6d{height:38.225889px;}
.h6e{height:38.354201px;}
.h19{height:38.972096px;}
.h5a{height:39.098176px;}
.ha{height:39.171362px;}
.h1f{height:40.619123px;}
.h5{height:41.070937px;}
.h3{height:41.250938px;}
.h20{height:44.005224px;}
.h1{height:45.184219px;}
.h18{height:45.625386px;}
.h1a{height:45.689025px;}
.hb{height:46.032775px;}
.h34{height:46.351538px;}
.h42{height:47.344922px;}
.h2a{height:47.700000px;}
.he{height:49.113281px;}
.h59{height:50.396619px;}
.h5d{height:50.590444px;}
.h5b{height:50.592641px;}
.h5c{height:52.060837px;}
.h4d{height:52.695866px;}
.h44{height:55.116933px;}
.h24{height:56.580337px;}
.h38{height:57.719343px;}
.h30{height:57.856124px;}
.h16{height:58.338419px;}
.h4c{height:58.651172px;}
.hc{height:58.660147px;}
.h1e{height:58.686598px;}
.h66{height:58.850097px;}
.h67{height:58.859514px;}
.h49{height:59.053056px;}
.h51{height:60.299182px;}
.h28{height:60.395885px;}
.h3a{height:60.688710px;}
.h36{height:60.832528px;}
.h39{height:62.300214px;}
.h25{height:63.900198px;}
.h5e{height:64.546875px;}
.h4{height:65.010937px;}
.h27{height:65.397485px;}
.h26{height:65.580782px;}
.h23{height:65.656576px;}
.h50{height:66.179528px;}
.h3e{height:67.350000px;}
.h33{height:68.063575px;}
.h62{height:68.113826px;}
.h3b{height:68.781000px;}
.h2d{height:69.441328px;}
.h6{height:70.628906px;}
.h7{height:70.664062px;}
.h41{height:71.164688px;}
.h1b{height:71.356082px;}
.h10{height:72.382500px;}
.h2{height:72.562500px;}
.h48{height:72.565481px;}
.h52{height:73.406944px;}
.h60{height:74.106408px;}
.h17{height:74.248080px;}
.h56{height:74.253444px;}
.h47{height:74.633941px;}
.hf{height:74.704922px;}
.h76{height:75.230422px;}
.h15{height:75.292044px;}
.h1c{height:75.295341px;}
.h4a{height:76.424063px;}
.h35{height:79.270910px;}
.h4e{height:80.464922px;}
.h1d{height:80.802742px;}
.h77{height:81.768059px;}
.h53{height:83.109352px;}
.h7a{height:83.339952px;}
.h75{height:84.728690px;}
.h72{height:85.847344px;}
.h63{height:86.546117px;}
.h57{height:86.804672px;}
.h79{height:87.040151px;}
.h55{height:87.589334px;}
.h61{height:87.762342px;}
.h2c{height:88.761000px;}
.h29{height:89.980312px;}
.h2b{height:92.140312px;}
.h13{height:97.804688px;}
.h21{height:102.561328px;}
.h40{height:125.884687px;}
.h12{height:146.044688px;}
.h3c{height:152.704687px;}
.h11{height:154.864687px;}
.h3f{height:155.404687px;}
.h65{height:174.602071px;}
.h2e{height:198.784688px;}
.h3d{height:203.104687px;}
.h37{height:267.300335px;}
.h2f{height:268.041498px;}
.h58{height:307.269510px;}
.h43{height:355.499144px;}
.h22{height:420.446957px;}
.h14{height:431.113697px;}
.h74{height:440.343195px;}
.h8{height:477.906324px;}
.h54{height:531.293329px;}
.h5f{height:550.292727px;}
.h78{height:589.130944px;}
.h4f{height:641.695589px;}
.h64{height:1187.984910px;}
.h0{height:1188.000000px;}
.w17{width:5.040000px;}
.w18{width:5.220000px;}
.w14{width:5.400000px;}
.w11{width:5.580000px;}
.w23{width:11.159575px;}
.w21{width:16.920829px;}
.w22{width:17.819649px;}
.w1e{width:25.380000px;}
.w20{width:25.920000px;}
.w7{width:31.845000px;}
.w1f{width:33.300000px;}
.w1d{width:38.880000px;}
.w24{width:40.320000px;}
.w25{width:41.580000px;}
.wb{width:50.040000px;}
.w3{width:73.965000px;}
.w1c{width:147.061790px;}
.w13{width:274.530000px;}
.w19{width:304.080000px;}
.we{width:304.573443px;}
.w26{width:315.083221px;}
.w9{width:318.449445px;}
.w12{width:323.520000px;}
.w8{width:326.848083px;}
.wd{width:372.441303px;}
.wf{width:377.845103px;}
.w27{width:386.857837px;}
.w1a{width:433.125000px;}
.wc{width:447.305487px;}
.w1b{width:474.585000px;}
.wa{width:505.119266px;}
.w1{width:533.191490px;}
.w2{width:563.130000px;}
.w6{width:574.290000px;}
.w10{width:583.830000px;}
.w16{width:604.170000px;}
.w15{width:633.015000px;}
.w4{width:637.047380px;}
.w5{width:637.205469px;}
.w0{width:918.000000px;}
.x94{left:-2.175000px;}
.x0{left:0.000000px;}
.xa4{left:1.368668px;}
.x17{left:3.010951px;}
.x18{left:4.332287px;}
.x52{left:6.120000px;}
.x16{left:11.177097px;}
.x5d{left:13.289445px;}
.x87{left:14.756142px;}
.x48{left:16.091197px;}
.x32{left:18.081907px;}
.x14{left:20.340278px;}
.x42{left:23.358269px;}
.x2f{left:26.460000px;}
.x8a{left:27.996888px;}
.x34{left:29.242886px;}
.x49{left:31.244043px;}
.x56{left:32.521298px;}
.x33{left:36.682988px;}
.x43{left:38.490519px;}
.x7c{left:39.647592px;}
.xa6{left:40.678993px;}
.xae{left:41.936491px;}
.x45{left:43.301731px;}
.x57{left:44.681369px;}
.x44{left:50.568803px;}
.x6b{left:56.299156px;}
.x13{left:57.878840px;}
.xa5{left:61.295526px;}
.x38{left:66.225491px;}
.x5f{left:67.497503px;}
.x47{left:68.915667px;}
.x31{left:72.585978px;}
.x12{left:75.684963px;}
.x5b{left:79.978581px;}
.x50{left:81.452828px;}
.x7d{left:82.465715px;}
.x7e{left:84.154714px;}
.x4f{left:86.502953px;}
.x84{left:89.951881px;}
.x15{left:93.598352px;}
.x85{left:95.825136px;}
.x80{left:97.424662px;}
.x82{left:101.878985px;}
.xaf{left:103.448636px;}
.x68{left:105.689196px;}
.x8f{left:107.737319px;}
.x6d{left:113.034613px;}
.x8c{left:129.220403px;}
.x89{left:131.110757px;}
.x5e{left:132.395399px;}
.x2{left:135.036000px;}
.x5a{left:137.763412px;}
.x30{left:139.590641px;}
.x64{left:142.365000px;}
.x36{left:146.614745px;}
.x37{left:149.990606px;}
.x90{left:158.808119px;}
.x2a{left:161.551238px;}
.x46{left:162.963326px;}
.x7f{left:164.936750px;}
.x83{left:167.364206px;}
.x61{left:168.690000px;}
.x78{left:170.130000px;}
.x91{left:171.181754px;}
.xad{left:174.015000px;}
.x79{left:179.490000px;}
.x66{left:181.650000px;}
.xb1{left:183.090000px;}
.x59{left:185.757191px;}
.x4{left:188.130000px;}
.x2c{left:192.990000px;}
.x65{left:194.250000px;}
.x35{left:200.661547px;}
.x53{left:205.050000px;}
.x62{left:211.710000px;}
.x6c{left:213.105160px;}
.x1e{left:214.299197px;}
.x1b{left:220.037917px;}
.x1c{left:226.661581px;}
.x67{left:228.270000px;}
.x7a{left:235.365000px;}
.x2d{left:236.910000px;}
.x29{left:241.571527px;}
.x28{left:246.398488px;}
.x10{left:248.105802px;}
.x25{left:250.537161px;}
.x6a{left:261.055203px;}
.x70{left:263.370000px;}
.xe{left:264.723063px;}
.x97{left:266.767500px;}
.x54{left:271.650000px;}
.x71{left:272.730000px;}
.x23{left:274.385924px;}
.x1d{left:276.397158px;}
.x11{left:277.505571px;}
.x24{left:279.516805px;}
.x20{left:281.233058px;}
.x8e{left:283.310321px;}
.x98{left:284.985000px;}
.x1f{left:286.060019px;}
.x8d{left:287.422435px;}
.x99{left:290.595000px;}
.x26{left:295.722880px;}
.xf{left:297.823502px;}
.x63{left:299.910000px;}
.x22{left:311.428381px;}
.x7b{left:321.080065px;}
.x21{left:322.995211px;}
.x58{left:329.630026px;}
.xd{left:334.865959px;}
.x4d{left:337.929966px;}
.x27{left:339.996840px;}
.xc{left:355.309034px;}
.x40{left:357.668003px;}
.x19{left:374.527490px;}
.x3a{left:381.810778px;}
.xb{left:395.256607px;}
.x72{left:403.455000px;}
.x73{left:412.815000px;}
.xa{left:415.485149px;}
.x9f{left:425.392500px;}
.x3e{left:427.760465px;}
.x39{left:431.573786px;}
.xa0{left:432.975000px;}
.xa1{left:438.195000px;}
.x1a{left:440.156284px;}
.x88{left:443.415000px;}
.xa2{left:449.175000px;}
.x3f{left:451.416258px;}
.x69{left:453.859074px;}
.x3{left:459.075000px;}
.x5c{left:461.940000px;}
.x8{left:463.897782px;}
.x9{left:480.014469px;}
.x6{left:490.589089px;}
.xac{left:493.020000px;}
.x3d{left:494.765954px;}
.x5{left:508.001904px;}
.x74{left:514.005000px;}
.x76{left:521.025000px;}
.x75{left:523.365000px;}
.x7{left:525.200188px;}
.x77{left:530.385000px;}
.x93{left:576.082500px;}
.x4b{left:579.858130px;}
.x4c{left:584.669342px;}
.x3c{left:589.768809px;}
.x95{left:594.480000px;}
.x9a{left:596.422500px;}
.xa3{left:597.780000px;}
.x96{left:600.585000px;}
.x9b{left:604.020000px;}
.x9c{left:608.880000px;}
.x9d{left:613.920000px;}
.x9e{left:619.485000px;}
.x4a{left:621.379548px;}
.x4e{left:628.629319px;}
.x3b{left:631.575017px;}
.x6f{left:640.980000px;}
.x6e{left:643.965000px;}
.x86{left:645.225000px;}
.xb0{left:652.425000px;}
.x2b{left:668.265000px;}
.xa8{left:670.320000px;}
.x92{left:674.565000px;}
.x81{left:682.710000px;}
.xa9{left:695.700000px;}
.x2e{left:698.190000px;}
.x51{left:709.350000px;}
.xab{left:715.500000px;}
.xaa{left:727.020000px;}
.x8b{left:748.050000px;}
.xa7{left:758.340000px;}
.x55{left:766.410000px;}
.x41{left:772.170000px;}
.x1{left:774.870000px;}
.x60{left:780.450000px;}
@media print{
.v25{vertical-align:-35.334773pt;}
.v16{vertical-align:-29.440000pt;}
.v26{vertical-align:-26.019556pt;}
.v1f{vertical-align:-24.320000pt;}
.v23{vertical-align:-22.225681pt;}
.v2{vertical-align:-21.120000pt;}
.vd{vertical-align:-18.838237pt;}
.v18{vertical-align:-17.534176pt;}
.va{vertical-align:-12.800000pt;}
.v11{vertical-align:-11.576079pt;}
.v1c{vertical-align:-10.240000pt;}
.v4{vertical-align:-6.400443pt;}
.v3{vertical-align:-5.120000pt;}
.v17{vertical-align:-2.560000pt;}
.vf{vertical-align:-1.420382pt;}
.v0{vertical-align:0.000000pt;}
.v1b{vertical-align:1.930442pt;}
.v7{vertical-align:5.120000pt;}
.v1a{vertical-align:6.376308pt;}
.v1d{vertical-align:8.960000pt;}
.v13{vertical-align:10.374511pt;}
.v5{vertical-align:11.755269pt;}
.vb{vertical-align:12.800000pt;}
.v14{vertical-align:16.082405pt;}
.v12{vertical-align:17.554611pt;}
.v24{vertical-align:19.619991pt;}
.v1{vertical-align:21.120000pt;}
.v19{vertical-align:23.284331pt;}
.v6{vertical-align:24.594176pt;}
.v10{vertical-align:28.376058pt;}
.ve{vertical-align:29.356350pt;}
.v20{vertical-align:33.660608pt;}
.v22{vertical-align:35.978946pt;}
.v9{vertical-align:37.920000pt;}
.v15{vertical-align:42.240000pt;}
.v21{vertical-align:48.800000pt;}
.v8{vertical-align:50.720000pt;}
.vc{vertical-align:55.680000pt;}
.v1e{vertical-align:89.760000pt;}
.lsb{letter-spacing:-1.344000pt;}
.lsc{letter-spacing:-1.280000pt;}
.ls51{letter-spacing:-0.832000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls86{letter-spacing:-0.384000pt;}
.ls7e{letter-spacing:-0.341051pt;}
.ls7d{letter-spacing:-0.340806pt;}
.ls7a{letter-spacing:-0.308230pt;}
.ls79{letter-spacing:-0.308005pt;}
.ls78{letter-spacing:-0.307064pt;}
.ls77{letter-spacing:-0.307015pt;}
.ls7b{letter-spacing:-0.304840pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls28{letter-spacing:-0.239467pt;}
.ls60{letter-spacing:-0.209356pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls42{letter-spacing:-0.187734pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls25{letter-spacing:-0.105650pt;}
.ls23{letter-spacing:-0.064474pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls63{letter-spacing:-0.053882pt;}
.ls5d{letter-spacing:-0.040320pt;}
.ls6a{letter-spacing:-0.039841pt;}
.ls6b{letter-spacing:-0.039658pt;}
.ls3a{letter-spacing:-0.036029pt;}
.ls7c{letter-spacing:-0.033280pt;}
.ls39{letter-spacing:-0.024430pt;}
.ls3b{letter-spacing:-0.023809pt;}
.ls58{letter-spacing:-0.008767pt;}
.ls27{letter-spacing:-0.002843pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.001166pt;}
.ls81{letter-spacing:0.001201pt;}
.ls26{letter-spacing:0.007836pt;}
.ls5f{letter-spacing:0.011462pt;}
.ls64{letter-spacing:0.015108pt;}
.ls24{letter-spacing:0.017784pt;}
.ls3c{letter-spacing:0.017920pt;}
.ls66{letter-spacing:0.024140pt;}
.ls83{letter-spacing:0.025838pt;}
.ls69{letter-spacing:0.028458pt;}
.ls6c{letter-spacing:0.031598pt;}
.ls70{letter-spacing:0.037550pt;}
.ls76{letter-spacing:0.042623pt;}
.ls3d{letter-spacing:0.044800pt;}
.ls67{letter-spacing:0.047858pt;}
.ls1f{letter-spacing:0.049042pt;}
.ls3f{letter-spacing:0.051311pt;}
.ls2e{letter-spacing:0.052022pt;}
.ls74{letter-spacing:0.059016pt;}
.ls19{letter-spacing:0.059779pt;}
.ls2{letter-spacing:0.064000pt;}
.ls65{letter-spacing:0.067709pt;}
.ls20{letter-spacing:0.069608pt;}
.ls2b{letter-spacing:0.071472pt;}
.ls68{letter-spacing:0.073986pt;}
.ls1a{letter-spacing:0.080679pt;}
.ls57{letter-spacing:0.086845pt;}
.ls3e{letter-spacing:0.086870pt;}
.ls33{letter-spacing:0.092267pt;}
.lsd{letter-spacing:0.096000pt;}
.ls6d{letter-spacing:0.096559pt;}
.ls1c{letter-spacing:0.098956pt;}
.ls2d{letter-spacing:0.106174pt;}
.ls1b{letter-spacing:0.106383pt;}
.ls85{letter-spacing:0.106667pt;}
.ls1e{letter-spacing:0.110026pt;}
.ls2c{letter-spacing:0.116996pt;}
.ls71{letter-spacing:0.119018pt;}
.ls75{letter-spacing:0.119593pt;}
.ls31{letter-spacing:0.124800pt;}
.ls6{letter-spacing:0.128000pt;}
.ls80{letter-spacing:0.129907pt;}
.ls41{letter-spacing:0.135564pt;}
.ls7f{letter-spacing:0.137743pt;}
.ls82{letter-spacing:0.138854pt;}
.ls2a{letter-spacing:0.139898pt;}
.ls84{letter-spacing:0.147443pt;}
.ls5e{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.161067pt;}
.ls5a{letter-spacing:0.161280pt;}
.ls72{letter-spacing:0.162447pt;}
.ls73{letter-spacing:0.164480pt;}
.ls54{letter-spacing:0.170667pt;}
.ls4d{letter-spacing:0.177707pt;}
.ls59{letter-spacing:0.185492pt;}
.ls4b{letter-spacing:0.192000pt;}
.ls43{letter-spacing:0.192134pt;}
.ls40{letter-spacing:0.227733pt;}
.ls44{letter-spacing:0.234667pt;}
.ls5b{letter-spacing:0.239467pt;}
.ls7{letter-spacing:0.256000pt;}
.ls32{letter-spacing:0.257920pt;}
.ls30{letter-spacing:0.271360pt;}
.ls0{letter-spacing:0.320000pt;}
.ls62{letter-spacing:0.384000pt;}
.ls29{letter-spacing:0.400533pt;}
.ls15{letter-spacing:0.416000pt;}
.ls2f{letter-spacing:0.426667pt;}
.ls3{letter-spacing:0.448000pt;}
.ls56{letter-spacing:0.480000pt;}
.ls12{letter-spacing:0.512000pt;}
.ls55{letter-spacing:0.576000pt;}
.ls52{letter-spacing:0.640000pt;}
.ls6f{letter-spacing:0.704000pt;}
.ls61{letter-spacing:0.773120pt;}
.ls6e{letter-spacing:0.800000pt;}
.ls16{letter-spacing:0.960000pt;}
.lse{letter-spacing:1.280000pt;}
.lsa{letter-spacing:1.920000pt;}
.ls49{letter-spacing:2.490240pt;}
.ls53{letter-spacing:2.560000pt;}
.ls37{letter-spacing:2.844800pt;}
.ls21{letter-spacing:2.967040pt;}
.ls8{letter-spacing:3.840000pt;}
.ls47{letter-spacing:4.243840pt;}
.ls5c{letter-spacing:7.200000pt;}
.ls9{letter-spacing:11.520000pt;}
.ls36{letter-spacing:12.044800pt;}
.ls35{letter-spacing:12.336640pt;}
.ls45{letter-spacing:13.376000pt;}
.ls34{letter-spacing:14.844800pt;}
.ls48{letter-spacing:16.570240pt;}
.ls13{letter-spacing:17.498240pt;}
.ls14{letter-spacing:21.527040pt;}
.ls4f{letter-spacing:46.650240pt;}
.ls4c{letter-spacing:47.290240pt;}
.ls4a{letter-spacing:47.930240pt;}
.ls50{letter-spacing:48.570240pt;}
.ls4e{letter-spacing:49.210240pt;}
.ls4{letter-spacing:94.014696pt;}
.ls38{letter-spacing:204.730240pt;}
.ls22{letter-spacing:216.224000pt;}
.ls46{letter-spacing:233.194667pt;}
.ws54{word-spacing:-76.452280pt;}
.ws50{word-spacing:-74.880000pt;}
.ws7{word-spacing:-64.000000pt;}
.ws43{word-spacing:-60.502520pt;}
.ws38{word-spacing:-56.256386pt;}
.ws49{word-spacing:-39.193422pt;}
.ws52{word-spacing:-21.600000pt;}
.ws51{word-spacing:-21.246720pt;}
.ws4f{word-spacing:-19.596069pt;}
.ws46{word-spacing:-16.812720pt;}
.ws4b{word-spacing:-16.779428pt;}
.ws5a{word-spacing:-16.640000pt;}
.ws13{word-spacing:-16.512000pt;}
.ws5{word-spacing:-16.448000pt;}
.ws44{word-spacing:-16.384000pt;}
.wsa{word-spacing:-16.256000pt;}
.ws59{word-spacing:-16.192000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.936000pt;}
.ws11{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws5b{word-spacing:-15.616000pt;}
.ws12{word-spacing:-15.360000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1c{word-spacing:-14.703753pt;}
.ws14{word-spacing:-14.618829pt;}
.wsb{word-spacing:-14.464000pt;}
.wsf{word-spacing:-14.080000pt;}
.ws3a{word-spacing:-13.741346pt;}
.ws3f{word-spacing:-13.600000pt;}
.ws36{word-spacing:-13.534613pt;}
.ws2c{word-spacing:-12.953600pt;}
.ws58{word-spacing:-12.944473pt;}
.ws25{word-spacing:-12.829898pt;}
.ws29{word-spacing:-12.811114pt;}
.ws47{word-spacing:-11.214312pt;}
.ws4d{word-spacing:-11.181151pt;}
.ws21{word-spacing:-11.120533pt;}
.wsc{word-spacing:-11.040000pt;}
.ws41{word-spacing:-10.959467pt;}
.wsd{word-spacing:-10.881067pt;}
.ws0{word-spacing:-10.720000pt;}
.ws40{word-spacing:-10.679680pt;}
.ws20{word-spacing:-10.480533pt;}
.ws23{word-spacing:-9.996800pt;}
.ws30{word-spacing:-9.451520pt;}
.ws2d{word-spacing:-9.433600pt;}
.ws1f{word-spacing:-9.209930pt;}
.ws1d{word-spacing:-9.197122pt;}
.ws48{word-spacing:-8.876883pt;}
.ws19{word-spacing:-8.836485pt;}
.ws16{word-spacing:-8.824196pt;}
.ws26{word-spacing:-8.434715pt;}
.ws28{word-spacing:-8.422653pt;}
.ws34{word-spacing:-7.695467pt;}
.ws32{word-spacing:-7.648000pt;}
.ws33{word-spacing:-7.603200pt;}
.ws1a{word-spacing:-5.875030pt;}
.ws17{word-spacing:-5.859035pt;}
.ws6{word-spacing:-0.029946pt;}
.ws4{word-spacing:0.000000pt;}
.ws31{word-spacing:5.804160pt;}
.ws3b{word-spacing:6.592000pt;}
.ws2f{word-spacing:7.436800pt;}
.ws3c{word-spacing:7.633280pt;}
.ws2e{word-spacing:9.928960pt;}
.ws22{word-spacing:10.413440pt;}
.ws35{word-spacing:11.299840pt;}
.ws24{word-spacing:22.208000pt;}
.ws3d{word-spacing:30.336000pt;}
.ws15{word-spacing:55.885353pt;}
.ws1e{word-spacing:67.987484pt;}
.ws18{word-spacing:70.587999pt;}
.ws27{word-spacing:73.751071pt;}
.ws3e{word-spacing:95.589953pt;}
.ws53{word-spacing:125.131329pt;}
.ws42{word-spacing:136.818042pt;}
.ws37{word-spacing:149.709961pt;}
.ws39{word-spacing:167.040959pt;}
.ws1b{word-spacing:167.204739pt;}
.ws55{word-spacing:168.086851pt;}
.ws56{word-spacing:168.312309pt;}
.ws45{word-spacing:181.898377pt;}
.ws4c{word-spacing:182.377773pt;}
.ws4e{word-spacing:192.432508pt;}
.ws57{word-spacing:193.940062pt;}
.ws4a{word-spacing:216.089191pt;}
.ws2a{word-spacing:879.458549pt;}
.ws2b{word-spacing:888.321032pt;}
._3c{margin-left:-259.326947pt;}
._18{margin-left:-215.344954pt;}
._16{margin-left:-165.164217pt;}
._15{margin-left:-145.983326pt;}
._17{margin-left:-141.866604pt;}
._19{margin-left:-93.544055pt;}
._43{margin-left:-32.565333pt;}
._47{margin-left:-31.552000pt;}
._21{margin-left:-24.192000pt;}
._48{margin-left:-22.144000pt;}
._2f{margin-left:-21.184000pt;}
._46{margin-left:-17.728000pt;}
._20{margin-left:-15.189333pt;}
._11{margin-left:-4.032000pt;}
._10{margin-left:-3.072000pt;}
._c{margin-left:-1.920000pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.896000pt;}
._b{width:2.367147pt;}
._d{width:3.648853pt;}
._e{width:4.598187pt;}
._a{width:5.515947pt;}
._6{width:6.878720pt;}
._8{width:8.302080pt;}
._7{width:9.438720pt;}
._12{width:10.335147pt;}
._3{width:11.274667pt;}
._2{width:12.544000pt;}
._13{width:13.610667pt;}
._14{width:14.570667pt;}
._2e{width:16.133120pt;}
._5{width:17.257387pt;}
._4{width:18.304000pt;}
._f{width:19.776000pt;}
._1e{width:20.928000pt;}
._1f{width:21.962667pt;}
._34{width:22.890667pt;}
._27{width:23.786667pt;}
._2d{width:25.856000pt;}
._23{width:27.776000pt;}
._24{width:28.938667pt;}
._25{width:30.656000pt;}
._26{width:31.712000pt;}
._1c{width:32.618667pt;}
._1d{width:33.802667pt;}
._3a{width:34.869333pt;}
._3b{width:35.894187pt;}
._9{width:36.992000pt;}
._1a{width:45.578667pt;}
._1b{width:46.506667pt;}
._45{width:48.234667pt;}
._44{width:80.234667pt;}
._29{width:82.442197pt;}
._2c{width:86.504082pt;}
._2a{width:88.632908pt;}
._35{width:91.776853pt;}
._28{width:95.597898pt;}
._36{width:116.708460pt;}
._37{width:125.056691pt;}
._40{width:153.170467pt;}
._41{width:164.016640pt;}
._30{width:171.678761pt;}
._22{width:172.778667pt;}
._31{width:180.259120pt;}
._32{width:188.947057pt;}
._2b{width:193.308797pt;}
._33{width:197.517895pt;}
._42{width:201.243956pt;}
._38{width:210.019882pt;}
._3f{width:218.217068pt;}
._39{width:221.049656pt;}
._3e{width:222.361600pt;}
._3d{width:431.937527pt;}
.fs5{font-size:22.113530pt;}
.fs10{font-size:23.436138pt;}
.fs12{font-size:23.468777pt;}
.fs40{font-size:25.535700pt;}
.fs3d{font-size:25.652987pt;}
.fs7{font-size:26.413233pt;}
.fs4{font-size:29.945517pt;}
.fs1f{font-size:31.591116pt;}
.fs1e{font-size:32.525718pt;}
.fs1a{font-size:33.738860pt;}
.fs18{font-size:33.788328pt;}
.fs1c{font-size:34.560000pt;}
.fsf{font-size:35.296784pt;}
.fs11{font-size:35.345941pt;}
.fs3e{font-size:35.410974pt;}
.fs15{font-size:36.788486pt;}
.fs16{font-size:36.839721pt;}
.fs3{font-size:37.120000pt;}
.fs24{font-size:37.498185pt;}
.fs4a{font-size:37.515588pt;}
.fsa{font-size:38.280188pt;}
.fse{font-size:38.333501pt;}
.fs36{font-size:38.612476pt;}
.fs3f{font-size:39.193422pt;}
.fs3c{font-size:39.373439pt;}
.fs6{font-size:41.691597pt;}
.fs2b{font-size:42.790665pt;}
.fs2{font-size:42.880000pt;}
.fs2a{font-size:43.010812pt;}
.fs45{font-size:44.724603pt;}
.fs38{font-size:44.738637pt;}
.fs44{font-size:44.751751pt;}
.fs3a{font-size:44.857247pt;}
.fs8{font-size:45.440000pt;}
.fs41{font-size:47.151175pt;}
.fs4e{font-size:48.306944pt;}
.fs4c{font-size:48.936784pt;}
.fs4d{font-size:49.101049pt;}
.fs53{font-size:49.793455pt;}
.fs29{font-size:49.919062pt;}
.fs48{font-size:50.156054pt;}
.fs49{font-size:50.164081pt;}
.fs19{font-size:51.244458pt;}
.fs17{font-size:51.319593pt;}
.fsd{font-size:51.416547pt;}
.fs57{font-size:51.773130pt;}
.fs56{font-size:51.777892pt;}
.fs26{font-size:52.276048pt;}
.fs1d{font-size:52.399930pt;}
.fs1b{font-size:52.733238pt;}
.fsb{font-size:52.836741pt;}
.fs2f{font-size:53.120000pt;}
.fs2e{font-size:53.483984pt;}
.fs32{font-size:54.612592pt;}
.fs28{font-size:54.965386pt;}
.fs25{font-size:55.095641pt;}
.fs22{font-size:56.256386pt;}
.fs27{font-size:56.453000pt;}
.fs9{font-size:58.733215pt;}
.fsc{font-size:58.815012pt;}
.fs0{font-size:58.880000pt;}
.fs21{font-size:59.339240pt;}
.fs31{font-size:59.938386pt;}
.fs33{font-size:60.502520pt;}
.fs20{font-size:61.644755pt;}
.fs46{font-size:61.690266pt;}
.fs23{font-size:62.375521pt;}
.fs1{font-size:64.000000pt;}
.fs13{font-size:64.626758pt;}
.fs35{font-size:65.264179pt;}
.fs2d{font-size:65.722103pt;}
.fs34{font-size:66.484207pt;}
.fs37{font-size:67.073058pt;}
.fs42{font-size:67.117710pt;}
.fs43{font-size:67.158452pt;}
.fs39{font-size:67.250881pt;}
.fs30{font-size:67.461249pt;}
.fs2c{font-size:67.595494pt;}
.fs51{font-size:68.135723pt;}
.fs14{font-size:73.391838pt;}
.fs4b{font-size:74.880000pt;}
.fs50{font-size:76.738246pt;}
.fs52{font-size:76.793331pt;}
.fs47{font-size:78.384278pt;}
.fs3b{font-size:78.618449pt;}
.fs54{font-size:78.831721pt;}
.fs55{font-size:78.838972pt;}
.fs4f{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y25b{bottom:1.666667pt;}
.y267{bottom:1.856908pt;}
.y66{bottom:1.952056pt;}
.y261{bottom:3.293333pt;}
.y265{bottom:3.767001pt;}
.y263{bottom:3.781891pt;}
.y25d{bottom:4.093333pt;}
.y269{bottom:5.093333pt;}
.y25f{bottom:5.213333pt;}
.y228{bottom:5.479464pt;}
.y26c{bottom:5.559476pt;}
.y1d5{bottom:5.589801pt;}
.y275{bottom:6.084336pt;}
.y1ec{bottom:8.764427pt;}
.yd9{bottom:8.775840pt;}
.y65{bottom:10.348439pt;}
.ycb{bottom:10.891039pt;}
.y63{bottom:11.770319pt;}
.y13c{bottom:12.079818pt;}
.y191{bottom:12.226667pt;}
.y18b{bottom:13.761181pt;}
.y132{bottom:16.623638pt;}
.yfc{bottom:19.358530pt;}
.y62{bottom:21.761505pt;}
.y152{bottom:22.720000pt;}
.y116{bottom:23.026667pt;}
.y1ed{bottom:25.082855pt;}
.y148{bottom:25.266667pt;}
.y111{bottom:27.200000pt;}
.y110{bottom:27.360000pt;}
.yb8{bottom:28.160000pt;}
.y64{bottom:30.138322pt;}
.y229{bottom:30.392146pt;}
.y1d6{bottom:30.498029pt;}
.y26d{bottom:30.806770pt;}
.yda{bottom:33.246792pt;}
.y151{bottom:33.440000pt;}
.y1bd{bottom:34.162474pt;}
.y60{bottom:34.960834pt;}
.ycc{bottom:35.361991pt;}
.y180{bottom:35.814068pt;}
.y154{bottom:35.840000pt;}
.y147{bottom:35.986667pt;}
.y276{bottom:35.988355pt;}
.y149{bottom:36.466667pt;}
.y52{bottom:36.652040pt;}
.y136{bottom:38.830437pt;}
.yb7{bottom:38.880000pt;}
.y50{bottom:39.322324pt;}
.y153{bottom:39.360000pt;}
.y6b{bottom:39.860975pt;}
.yfd{bottom:40.357936pt;}
.y51{bottom:42.800584pt;}
.y12a{bottom:43.153217pt;}
.y251{bottom:43.187962pt;}
.y117{bottom:45.306667pt;}
.y114{bottom:45.466667pt;}
.y181{bottom:49.200643pt;}
.yb9{bottom:49.800000pt;}
.y2{bottom:51.200000pt;}
.y6c{bottom:54.213651pt;}
.y12b{bottom:54.877157pt;}
.yce{bottom:55.194452pt;}
.y254{bottom:56.687279pt;}
.y258{bottom:58.704948pt;}
.y1f2{bottom:59.706831pt;}
.y61{bottom:60.092870pt;}
.y67{bottom:60.822425pt;}
.y137{bottom:61.172066pt;}
.y1d7{bottom:64.464973pt;}
.y1b4{bottom:64.654109pt;}
.y4f{bottom:66.779273pt;}
.y22b{bottom:66.904169pt;}
.y1{bottom:69.152000pt;}
.y253{bottom:70.266561pt;}
.y115{bottom:71.226667pt;}
.y53{bottom:72.408969pt;}
.y70{bottom:74.195231pt;}
.y6e{bottom:76.231808pt;}
.y256{bottom:77.124331pt;}
.y257{bottom:80.303727pt;}
.y6a{bottom:80.686769pt;}
.y26f{bottom:84.022983pt;}
.y68{bottom:84.900922pt;}
.y69{bottom:85.067270pt;}
.y182{bottom:87.058020pt;}
.y6f{bottom:91.752881pt;}
.yff{bottom:92.858643pt;}
.y54{bottom:94.160969pt;}
.y24f{bottom:94.390304pt;}
.y6d{bottom:95.769001pt;}
.y18a{bottom:96.363411pt;}
.y12c{bottom:97.646004pt;}
.yfe{bottom:98.145422pt;}
.y255{bottom:98.861929pt;}
.y13f{bottom:100.032000pt;}
.yb4{bottom:101.472000pt;}
.y278{bottom:102.458334pt;}
.y8d{bottom:104.992000pt;}
.y1f1{bottom:106.686279pt;}
.y2d0{bottom:106.912000pt;}
.y18f{bottom:107.392000pt;}
.y250{bottom:108.406513pt;}
.y1f{bottom:108.672000pt;}
.y24d{bottom:109.472000pt;}
.y1ee{bottom:109.482967pt;}
.y1c6{bottom:111.712000pt;}
.y1b2{bottom:112.352000pt;}
.y2b0{bottom:112.992000pt;}
.y299{bottom:113.632000pt;}
.y27f{bottom:113.952000pt;}
.y222{bottom:114.432000pt;}
.y219{bottom:114.453333pt;}
.y138{bottom:114.485207pt;}
.y1f5{bottom:116.087075pt;}
.y1cf{bottom:116.929757pt;}
.y11c{bottom:116.992000pt;}
.y74{bottom:117.152000pt;}
.y175{bottom:117.792000pt;}
.y9b{bottom:118.432000pt;}
.y133{bottom:118.600204pt;}
.y55{bottom:118.693359pt;}
.y3a{bottom:119.232000pt;}
.y1fa{bottom:119.392000pt;}
.y13e{bottom:119.872000pt;}
.y2c2{bottom:120.832000pt;}
.y2df{bottom:121.152000pt;}
.y23d{bottom:121.632000pt;}
.y1ea{bottom:123.392000pt;}
.y18e{bottom:124.512000pt;}
.y183{bottom:124.792220pt;}
.y134{bottom:127.153434pt;}
.yb3{bottom:129.152000pt;}
.ycf{bottom:129.227140pt;}
.y13b{bottom:130.211131pt;}
.y161{bottom:130.752000pt;}
.y100{bottom:130.904436pt;}
.y259{bottom:131.724212pt;}
.y1be{bottom:131.811493pt;}
.y27e{bottom:132.192000pt;}
.y221{bottom:132.476981pt;}
.y8c{bottom:132.672000pt;}
.y1d8{bottom:133.158143pt;}
.y2cf{bottom:134.426667pt;}
.y73{bottom:135.546667pt;}
.y1e{bottom:136.346667pt;}
.y24c{bottom:137.146667pt;}
.y234{bottom:137.464442pt;}
.y130{bottom:137.724266pt;}
.y1f9{bottom:137.786667pt;}
.y1c5{bottom:139.386667pt;}
.y5e{bottom:140.350302pt;}
.y12d{bottom:140.417549pt;}
.y2af{bottom:140.506667pt;}
.y298{bottom:141.146667pt;}
.y252{bottom:144.077156pt;}
.y18d{bottom:144.186667pt;}
.y11b{bottom:144.986667pt;}
.y174{bottom:145.306667pt;}
.y9a{bottom:145.946667pt;}
.y39{bottom:146.906667pt;}
.yf4{bottom:148.026667pt;}
.y22c{bottom:148.092486pt;}
.y2c1{bottom:148.506667pt;}
.y2de{bottom:148.666667pt;}
.y23c{bottom:149.146667pt;}
.y1e9{bottom:151.066667pt;}
.y27d{bottom:151.866667pt;}
.y216{bottom:152.506667pt;}
.y1b1{bottom:153.306667pt;}
.y1f0{bottom:153.680447pt;}
.y72{bottom:153.946667pt;}
.y1f8{bottom:156.186667pt;}
.yb2{bottom:156.666667pt;}
.y129{bottom:156.720000pt;}
.y188{bottom:157.423580pt;}
.y160{bottom:158.426667pt;}
.y2ce{bottom:162.106667pt;}
.y184{bottom:162.647786pt;}
.y1d{bottom:163.866667pt;}
.y24b{bottom:164.666667pt;}
.y1c4{bottom:166.906667pt;}
.y139{bottom:167.795657pt;}
.y2ae{bottom:168.186667pt;}
.y26e{bottom:168.493274pt;}
.y297{bottom:168.826667pt;}
.y101{bottom:168.950228pt;}
.ydc{bottom:169.941236pt;}
.y5c{bottom:171.029652pt;}
.y22a{bottom:171.462982pt;}
.ydb{bottom:171.487155pt;}
.y11a{bottom:172.826667pt;}
.y173{bottom:172.986667pt;}
.ycd{bottom:173.392080pt;}
.y8b{bottom:173.626667pt;}
.y38{bottom:174.426667pt;}
.y5a{bottom:174.586334pt;}
.y27c{bottom:175.386667pt;}
.y273{bottom:175.453333pt;}
.y2dd{bottom:176.346667pt;}
.y23b{bottom:176.826667pt;}
.y1e8{bottom:178.586667pt;}
.yd3{bottom:178.667255pt;}
.y17e{bottom:180.826667pt;}
.y17f{bottom:180.853333pt;}
.y1b0{bottom:180.986667pt;}
.y12e{bottom:183.186396pt;}
.y107{bottom:183.187238pt;}
.yb1{bottom:184.186667pt;}
.y15f{bottom:185.946667pt;}
.y277{bottom:188.087805pt;}
.yf3{bottom:188.986667pt;}
.y2c0{bottom:189.466667pt;}
.y2e1{bottom:189.626667pt;}
.ydd{bottom:190.895404pt;}
.y1c{bottom:191.386667pt;}
.y71{bottom:191.546667pt;}
.y3f{bottom:191.586667pt;}
.y24a{bottom:192.346667pt;}
.y58{bottom:192.433113pt;}
.yd4{bottom:192.477957pt;}
.y215{bottom:193.306667pt;}
.y5b{bottom:193.320303pt;}
.y1f7{bottom:194.266667pt;}
.y2ad{bottom:195.706667pt;}
.y1c3{bottom:197.626667pt;}
.y220{bottom:198.130505pt;}
.y185{bottom:200.508787pt;}
.y1ef{bottom:200.669708pt;}
.y119{bottom:200.826667pt;}
.y8a{bottom:201.146667pt;}
.y1d9{bottom:201.808626pt;}
.y37{bottom:202.106667pt;}
.y13d{bottom:202.316535pt;}
.y1bc{bottom:202.796022pt;}
.y2cd{bottom:202.906667pt;}
.yd0{bottom:203.262760pt;}
.ydf{bottom:203.372659pt;}
.y1db{bottom:203.516141pt;}
.y5f{bottom:203.578438pt;}
.y23a{bottom:204.346667pt;}
.yc9{bottom:204.826667pt;}
.y1e7{bottom:206.266667pt;}
.y135{bottom:206.446812pt;}
.y1af{bottom:208.506667pt;}
.y59{bottom:210.264049pt;}
.y296{bottom:212.346667pt;}
.yf7{bottom:212.436357pt;}
.yb0{bottom:212.506667pt;}
.y15e{bottom:213.626667pt;}
.y172{bottom:213.946667pt;}
.yf2{bottom:216.506667pt;}
.y2bf{bottom:216.986667pt;}
.y2dc{bottom:217.306667pt;}
.y1c2{bottom:217.466667pt;}
.y1b{bottom:219.066667pt;}
.y249{bottom:219.866667pt;}
.y13a{bottom:221.108798pt;}
.y270{bottom:221.552573pt;}
.y2ac{bottom:223.386667pt;}
.y5d{bottom:224.078866pt;}
.y12f{bottom:225.955244pt;}
.y1f4{bottom:227.866667pt;}
.y1eb{bottom:227.920000pt;}
.y118{bottom:228.506667pt;}
.y89{bottom:228.826667pt;}
.y22d{bottom:229.357118pt;}
.y36{bottom:229.626667pt;}
.y2cc{bottom:230.586667pt;}
.yc8{bottom:232.346667pt;}
.y1e6{bottom:233.786667pt;}
.y214{bottom:234.266667pt;}
.y1ae{bottom:236.186667pt;}
.y102{bottom:237.122615pt;}
.y186{bottom:238.242986pt;}
.y1c1{bottom:238.426667pt;}
.y131{bottom:238.451969pt;}
.y239{bottom:238.906667pt;}
.y295{bottom:240.026667pt;}
.y15d{bottom:241.146667pt;}
.yaf{bottom:241.306667pt;}
.y1f3{bottom:241.648543pt;}
.y1d0{bottom:243.033906pt;}
.y113{bottom:243.080000pt;}
.yf1{bottom:244.186667pt;}
.y2db{bottom:244.826667pt;}
.yf8{bottom:246.453084pt;}
.y1a{bottom:246.586667pt;}
.y1f6{bottom:248.615731pt;}
.y56{bottom:249.062772pt;}
.y2ab{bottom:250.906667pt;}
.y247{bottom:254.426667pt;}
.y171{bottom:254.746667pt;}
.y279{bottom:254.821713pt;}
.yde{bottom:255.721447pt;}
.y88{bottom:256.346667pt;}
.y35{bottom:257.306667pt;}
.y248{bottom:257.626667pt;}
.y2cb{bottom:258.106667pt;}
.y1c0{bottom:258.266667pt;}
.yf6{bottom:259.117953pt;}
.y18c{bottom:259.531081pt;}
.yc7{bottom:260.026667pt;}
.y1e5{bottom:261.466667pt;}
.y213{bottom:261.946667pt;}
.y1ad{bottom:263.706667pt;}
.y1bb{bottom:264.283738pt;}
.yd6{bottom:264.967657pt;}
.ye0{bottom:265.605074pt;}
.y294{bottom:267.546667pt;}
.yae{bottom:268.826667pt;}
.yf0{bottom:271.706667pt;}
.y1cd{bottom:272.346667pt;}
.y21f{bottom:273.117431pt;}
.y245{bottom:273.626667pt;}
.y19{bottom:274.266667pt;}
.yd5{bottom:275.342168pt;}
.y187{bottom:276.100364pt;}
.y103{bottom:276.484618pt;}
.y246{bottom:276.866667pt;}
.y238{bottom:277.026667pt;}
.yd1{bottom:277.298379pt;}
.y2aa{bottom:278.626667pt;}
.yf9{bottom:280.440561pt;}
.y170{bottom:282.786667pt;}
.y4e{bottom:283.029478pt;}
.y87{bottom:284.066667pt;}
.y2ca{bottom:285.826667pt;}
.yc6{bottom:287.586667pt;}
.y2be{bottom:288.706667pt;}
.y1e4{bottom:289.026667pt;}
.y189{bottom:291.015797pt;}
.y1ac{bottom:291.426667pt;}
.y243{bottom:292.866667pt;}
.y1bf{bottom:293.506667pt;}
.y1b3{bottom:293.520000pt;}
.y293{bottom:295.266667pt;}
.y237{bottom:295.426667pt;}
.y212{bottom:295.586667pt;}
.y244{bottom:296.066667pt;}
.yad{bottom:296.546667pt;}
.y99{bottom:297.346667pt;}
.y34{bottom:298.146667pt;}
.y15b{bottom:298.306667pt;}
.y44{bottom:298.626597pt;}
.y2e2{bottom:299.106667pt;}
.yef{bottom:299.426667pt;}
.y1cc{bottom:299.906667pt;}
.y18{bottom:301.826667pt;}
.y15c{bottom:304.226667pt;}
.y46{bottom:305.486477pt;}
.y2a9{bottom:306.146667pt;}
.y22e{bottom:306.729001pt;}
.y2bd{bottom:308.386667pt;}
.y16f{bottom:310.626667pt;}
.y86{bottom:311.586667pt;}
.y1d1{bottom:311.726377pt;}
.y242{bottom:312.226667pt;}
.y2da{bottom:313.346667pt;}
.y4c{bottom:313.692985pt;}
.y236{bottom:313.826667pt;}
.yfa{bottom:314.420726pt;}
.yc5{bottom:315.266667pt;}
.y104{bottom:315.839308pt;}
.y1e3{bottom:316.706667pt;}
.y211{bottom:317.186667pt;}
.y48{bottom:317.265510pt;}
.y1ab{bottom:318.946667pt;}
.y45{bottom:319.594384pt;}
.y292{bottom:322.786667pt;}
.yac{bottom:324.066667pt;}
.y33{bottom:325.826667pt;}
.y2c9{bottom:326.786667pt;}
.yee{bottom:326.946667pt;}
.y1cb{bottom:327.586667pt;}
.yd7{bottom:327.698283pt;}
.ye1{bottom:327.800855pt;}
.y2bc{bottom:328.226667pt;}
.y159{bottom:328.386667pt;}
.y17{bottom:329.506667pt;}
.y43{bottom:330.375327pt;}
.y241{bottom:330.626667pt;}
.yd8{bottom:331.610704pt;}
.y1ba{bottom:332.106609pt;}
.y2a8{bottom:333.826667pt;}
.ye2{bottom:334.094433pt;}
.y15a{bottom:334.306667pt;}
.y47{bottom:335.096446pt;}
.y21e{bottom:335.772710pt;}
.y4b{bottom:335.999479pt;}
.y16e{bottom:338.146667pt;}
.y98{bottom:338.306667pt;}
.y85{bottom:339.106667pt;}
.y106{bottom:339.377538pt;}
.y2d9{bottom:341.026667pt;}
.yc4{bottom:342.786667pt;}
.y1e2{bottom:344.226667pt;}
.y210{bottom:344.706667pt;}
.y1aa{bottom:346.626667pt;}
.y2bb{bottom:348.066667pt;}
.yfb{bottom:348.459389pt;}
.y112{bottom:348.546667pt;}
.y240{bottom:349.026667pt;}
.y227{bottom:350.453333pt;}
.y235{bottom:350.466667pt;}
.yd2{bottom:351.282712pt;}
.y49{bottom:352.848169pt;}
.y4a{bottom:352.927382pt;}
.y32{bottom:353.346667pt;}
.y2c8{bottom:354.306667pt;}
.yed{bottom:354.626667pt;}
.y1ca{bottom:355.106667pt;}
.y105{bottom:355.215936pt;}
.y42{bottom:356.325637pt;}
.y16{bottom:357.026667pt;}
.y157{bottom:358.626667pt;}
.y233{bottom:358.728003pt;}
.y271{bottom:359.039563pt;}
.y2a7{bottom:361.346667pt;}
.y10f{bottom:363.426667pt;}
.y158{bottom:364.546667pt;}
.yab{bottom:365.026667pt;}
.y97{bottom:365.826667pt;}
.y4d{bottom:366.765963pt;}
.y84{bottom:366.786667pt;}
.y22f{bottom:367.304653pt;}
.y23f{bottom:367.426667pt;}
.yc3{bottom:370.466667pt;}
.y20f{bottom:372.386667pt;}
.y1a9{bottom:374.146667pt;}
.y291{bottom:377.986667pt;}
.y1e1{bottom:378.786667pt;}
.y1d2{bottom:380.376860pt;}
.y31{bottom:381.026667pt;}
.y2c7{bottom:381.986667pt;}
.y1c9{bottom:382.786667pt;}
.y40{bottom:383.076002pt;}
.y15{bottom:384.706667pt;}
.y156{bottom:386.786667pt;}
.y1da{bottom:387.290894pt;}
.y2ba{bottom:388.706667pt;}
.y2a6{bottom:389.026667pt;}
.yaa{bottom:392.546667pt;}
.y16d{bottom:393.346667pt;}
.y96{bottom:393.506667pt;}
.yec{bottom:395.586667pt;}
.yc2{bottom:397.986667pt;}
.y1e0{bottom:398.466667pt;}
.y20e{bottom:399.906667pt;}
.y1b9{bottom:400.758379pt;}
.y1a8{bottom:401.666667pt;}
.y27a{bottom:407.095625pt;}
.y83{bottom:407.746667pt;}
.y23e{bottom:408.226667pt;}
.y30{bottom:408.546667pt;}
.y41{bottom:408.574796pt;}
.y2d8{bottom:409.506667pt;}
.y1c8{bottom:410.306667pt;}
.y21d{bottom:410.925415pt;}
.y14{bottom:412.226667pt;}
.y57{bottom:415.181193pt;}
.y2a5{bottom:416.546667pt;}
.y1df{bottom:416.866667pt;}
.y190{bottom:419.520000pt;}
.ya9{bottom:420.226667pt;}
.y95{bottom:421.026667pt;}
.y128{bottom:421.346667pt;}
.y290{bottom:421.506667pt;}
.y26b{bottom:421.653333pt;}
.y2c6{bottom:422.786667pt;}
.y1d3{bottom:424.387348pt;}
.y1b7{bottom:426.257676pt;}
.yeb{bottom:427.266667pt;}
.y20d{bottom:427.586667pt;}
.y155{bottom:427.746667pt;}
.y230{bottom:427.929315pt;}
.y1a7{bottom:429.346667pt;}
.y10e{bottom:432.226667pt;}
.y2b9{bottom:432.546667pt;}
.y82{bottom:435.266667pt;}
.y2f{bottom:436.226667pt;}
.y2d7{bottom:437.186667pt;}
.y1c7{bottom:437.986667pt;}
.yc1{bottom:438.946667pt;}
.y1de{bottom:441.346667pt;}
.y150{bottom:442.306667pt;}
.y232{bottom:444.214447pt;}
.y2a4{bottom:444.226667pt;}
.ye9{bottom:445.666667pt;}
.yea{bottom:446.306667pt;}
.ya8{bottom:447.746667pt;}
.y16c{bottom:448.546667pt;}
.y94{bottom:448.706667pt;}
.y127{bottom:449.026667pt;}
.y28f{bottom:449.186667pt;}
.y21b{bottom:449.585257pt;}
.y2c5{bottom:450.466667pt;}
.y13{bottom:452.866667pt;}
.y1dd{bottom:453.666667pt;}
.y20c{bottom:455.106667pt;}
.y1d4{bottom:456.291277pt;}
.y1a6{bottom:456.866667pt;}
.y10d{bottom:459.746667pt;}
.y2b8{bottom:460.226667pt;}
.y25a{bottom:461.120000pt;}
.y1b6{bottom:461.246680pt;}
.y21c{bottom:461.414828pt;}
.y1b8{bottom:462.580023pt;}
.y81{bottom:462.946667pt;}
.y274{bottom:463.648116pt;}
.y2e{bottom:463.746667pt;}
.ye8{bottom:464.546667pt;}
.y2d6{bottom:464.706667pt;}
.y2a3{bottom:471.746667pt;}
.y231{bottom:473.172017pt;}
.ya7{bottom:475.426667pt;}
.y93{bottom:476.226667pt;}
.y126{bottom:476.546667pt;}
.y28e{bottom:476.706667pt;}
.y2c4{bottom:477.986667pt;}
.yc0{bottom:479.586667pt;}
.y20b{bottom:482.786667pt;}
.ye7{bottom:484.866667pt;}
.y1dc{bottom:487.746667pt;}
.y1ce{bottom:487.786667pt;}
.y80{bottom:490.466667pt;}
.y2d{bottom:491.426667pt;}
.y12{bottom:493.826667pt;}
.y10c{bottom:494.306667pt;}
.y1a5{bottom:497.826667pt;}
.y2a2{bottom:499.453333pt;}
.ya6{bottom:502.973333pt;}
.y262{bottom:503.200000pt;}
.ye6{bottom:503.293333pt;}
.y16b{bottom:503.773333pt;}
.y125{bottom:504.253333pt;}
.y28d{bottom:504.413333pt;}
.y27b{bottom:504.767440pt;}
.y2c3{bottom:505.693333pt;}
.y20a{bottom:510.333333pt;}
.y10b{bottom:512.733333pt;}
.y2b7{bottom:515.453333pt;}
.y92{bottom:517.213333pt;}
.y7f{bottom:518.173333pt;}
.y2c{bottom:518.973333pt;}
.y264{bottom:519.200000pt;}
.ybf{bottom:520.893333pt;}
.y11{bottom:521.373333pt;}
.ye5{bottom:521.693333pt;}
.y17d{bottom:523.293333pt;}
.y260{bottom:524.000000pt;}
.y1b5{bottom:524.074843pt;}
.y21a{bottom:526.405233pt;}
.y2a1{bottom:526.973333pt;}
.y14f{bottom:528.573333pt;}
.ya5{bottom:530.653333pt;}
.y10a{bottom:531.133333pt;}
.y16a{bottom:531.453333pt;}
.y124{bottom:531.773333pt;}
.y28c{bottom:531.933333pt;}
.y2d5{bottom:533.213333pt;}
.y1a4{bottom:536.093333pt;}
.y209{bottom:538.013333pt;}
.y25c{bottom:538.720000pt;}
.ye4{bottom:540.093333pt;}
.y266{bottom:540.320000pt;}
.y2b6{bottom:542.973333pt;}
.y91{bottom:544.733333pt;}
.y7e{bottom:545.693333pt;}
.y2b{bottom:546.653333pt;}
.ybe{bottom:548.413333pt;}
.y10{bottom:549.053333pt;}
.y109{bottom:549.533333pt;}
.y17c{bottom:550.973333pt;}
.y2a0{bottom:554.653333pt;}
.y14e{bottom:556.253333pt;}
.ya4{bottom:558.173333pt;}
.y169{bottom:558.973333pt;}
.y123{bottom:559.453333pt;}
.y28b{bottom:559.613333pt;}
.y2d4{bottom:560.893333pt;}
.y1a3{bottom:563.773333pt;}
.y208{bottom:565.533333pt;}
.y26a{bottom:570.240000pt;}
.y2b5{bottom:570.653333pt;}
.y90{bottom:572.413333pt;}
.y2a{bottom:574.173333pt;}
.ybd{bottom:576.093333pt;}
.yca{bottom:576.720000pt;}
.ye3{bottom:576.733333pt;}
.y17b{bottom:579.133333pt;}
.y29f{bottom:582.173333pt;}
.y14d{bottom:583.773333pt;}
.ya3{bottom:585.853333pt;}
.yf5{bottom:586.320000pt;}
.y108{bottom:586.333333pt;}
.y168{bottom:586.653333pt;}
.y122{bottom:586.973333pt;}
.y7d{bottom:587.133333pt;}
.y2d3{bottom:588.413333pt;}
.yf{bottom:590.013333pt;}
.y1a2{bottom:590.813333pt;}
.y1a1{bottom:592.093333pt;}
.y207{bottom:593.053333pt;}
.y2b4{bottom:598.173333pt;}
.y8f{bottom:600.733333pt;}
.y29{bottom:601.853333pt;}
.ybc{bottom:603.613333pt;}
.y17a{bottom:608.573333pt;}
.y29e{bottom:609.853333pt;}
.y14c{bottom:611.453333pt;}
.y167{bottom:614.173333pt;}
.y121{bottom:614.653333pt;}
.y28a{bottom:614.813333pt;}
.y7c{bottom:616.093333pt;}
.ye{bottom:616.893333pt;}
.y206{bottom:620.733333pt;}
.y1a0{bottom:620.893333pt;}
.y25e{bottom:621.600000pt;}
.y2b3{bottom:625.853333pt;}
.ya2{bottom:626.813333pt;}
.y28{bottom:629.373333pt;}
.ybb{bottom:631.933333pt;}
.y29d{bottom:637.373333pt;}
.y179{bottom:638.013333pt;}
.y24e{bottom:638.560000pt;}
.y14b{bottom:638.973333pt;}
.y166{bottom:641.853333pt;}
.yd{bottom:642.173333pt;}
.y289{bottom:642.333333pt;}
.y3e{bottom:642.653333pt;}
.y7b{bottom:643.613333pt;}
.y205{bottom:648.253333pt;}
.y19f{bottom:648.893333pt;}
.y2b2{bottom:653.373333pt;}
.y2d2{bottom:657.053333pt;}
.yba{bottom:661.053333pt;}
.y29c{bottom:665.053333pt;}
.y14a{bottom:666.653333pt;}
.yc{bottom:667.453333pt;}
.ya1{bottom:667.773333pt;}
.y165{bottom:669.373333pt;}
.y288{bottom:670.013333pt;}
.y27{bottom:670.333333pt;}
.y7a{bottom:671.293333pt;}
.yb6{bottom:675.773333pt;}
.y204{bottom:675.933333pt;}
.y19e{bottom:676.413333pt;}
.y2b1{bottom:681.053333pt;}
.y146{bottom:681.226667pt;}
.y120{bottom:683.133333pt;}
.y2e0{bottom:684.573333pt;}
.y29b{bottom:692.573333pt;}
.yb{bottom:692.733333pt;}
.ya0{bottom:695.293333pt;}
.y178{bottom:696.733333pt;}
.y164{bottom:697.053333pt;}
.y287{bottom:697.533333pt;}
.y26{bottom:697.853333pt;}
.y203{bottom:703.453333pt;}
.y19d{bottom:704.093333pt;}
.y218{bottom:711.293333pt;}
.y272{bottom:712.093333pt;}
.y79{bottom:712.253333pt;}
.y2e3{bottom:713.053333pt;}
.y9f{bottom:722.853333pt;}
.ya{bottom:723.333333pt;}
.y11f{bottom:724.133333pt;}
.y163{bottom:724.613333pt;}
.y286{bottom:725.253333pt;}
.y25{bottom:725.573333pt;}
.y202{bottom:731.173333pt;}
.y19c{bottom:731.653333pt;}
.y29a{bottom:735.973333pt;}
.y9{bottom:743.333333pt;}
.y9e{bottom:751.653333pt;}
.y162{bottom:752.293333pt;}
.y285{bottom:752.773333pt;}
.y24{bottom:753.093333pt;}
.y19b{bottom:758.693333pt;}
.y19a{bottom:759.973333pt;}
.y145{bottom:766.053333pt;}
.yb5{bottom:766.533333pt;}
.y8{bottom:774.053333pt;}
.y11e{bottom:779.333333pt;}
.y9d{bottom:779.813333pt;}
.y284{bottom:780.453333pt;}
.y23{bottom:780.773333pt;}
.y201{bottom:786.373333pt;}
.y199{bottom:788.133333pt;}
.y198{bottom:789.413333pt;}
.y144{bottom:793.573333pt;}
.y268{bottom:793.600000pt;}
.y78{bottom:794.053333pt;}
.y11d{bottom:807.333333pt;}
.y9c{bottom:807.493333pt;}
.y7{bottom:807.973333pt;}
.y22{bottom:808.293333pt;}
.y200{bottom:813.893333pt;}
.y197{bottom:817.413333pt;}
.y196{bottom:818.693333pt;}
.y143{bottom:821.253333pt;}
.y177{bottom:821.733333pt;}
.y77{bottom:835.013333pt;}
.y6{bottom:835.653333pt;}
.y21{bottom:835.973333pt;}
.y195{bottom:848.133333pt;}
.y142{bottom:848.773333pt;}
.y8e{bottom:849.253333pt;}
.y1ff{bottom:852.293333pt;}
.y226{bottom:855.333333pt;}
.y76{bottom:862.693333pt;}
.y20{bottom:863.493333pt;}
.y283{bottom:863.973333pt;}
.y217{bottom:868.773333pt;}
.y1fe{bottom:870.853333pt;}
.y5{bottom:876.613333pt;}
.y3d{bottom:876.933333pt;}
.y225{bottom:884.773333pt;}
.y141{bottom:886.533333pt;}
.y1fd{bottom:889.253333pt;}
.y75{bottom:890.213333pt;}
.y282{bottom:892.613333pt;}
.y4{bottom:904.133333pt;}
.y2d1{bottom:904.453333pt;}
.y224{bottom:904.613333pt;}
.y1fc{bottom:907.493333pt;}
.y3c{bottom:917.893333pt;}
.y194{bottom:923.333333pt;}
.y176{bottom:923.973333pt;}
.y193{bottom:924.613333pt;}
.y223{bottom:925.573333pt;}
.y140{bottom:925.733333pt;}
.y1fb{bottom:925.893333pt;}
.y281{bottom:927.173333pt;}
.y192{bottom:944.293333pt;}
.y3{bottom:945.120000pt;}
.y3b{bottom:945.440000pt;}
.y280{bottom:945.600000pt;}
.h6c{height:10.720320pt;}
.h6f{height:11.200398pt;}
.h68{height:19.520000pt;}
.h6b{height:21.120000pt;}
.h69{height:21.920000pt;}
.h6a{height:22.880000pt;}
.h4b{height:24.320000pt;}
.h71{height:24.480000pt;}
.h73{height:24.640000pt;}
.hd{height:27.548177pt;}
.h46{height:30.630428pt;}
.h45{height:30.788013pt;}
.h32{height:31.004953pt;}
.h9{height:31.232238pt;}
.h31{height:31.922214pt;}
.h70{height:33.541247pt;}
.h6d{height:33.978568pt;}
.h6e{height:34.092623pt;}
.h19{height:34.641863pt;}
.h5a{height:34.753934pt;}
.ha{height:34.818989pt;}
.h1f{height:36.105887pt;}
.h5{height:36.507500pt;}
.h3{height:36.667500pt;}
.h20{height:39.115755pt;}
.h1{height:40.163750pt;}
.h18{height:40.555899pt;}
.h1a{height:40.612466pt;}
.hb{height:40.918022pt;}
.h34{height:41.201367pt;}
.h42{height:42.084375pt;}
.h2a{height:42.400000pt;}
.he{height:43.656250pt;}
.h59{height:44.796995pt;}
.h5d{height:44.969283pt;}
.h5b{height:44.971237pt;}
.h5c{height:46.276299pt;}
.h4d{height:46.840769pt;}
.h44{height:48.992829pt;}
.h24{height:50.293633pt;}
.h38{height:51.306082pt;}
.h30{height:51.427666pt;}
.h16{height:51.856372pt;}
.h4c{height:52.134375pt;}
.hc{height:52.142353pt;}
.h1e{height:52.165865pt;}
.h66{height:52.311197pt;}
.h67{height:52.319568pt;}
.h49{height:52.491606pt;}
.h51{height:53.599273pt;}
.h28{height:53.685231pt;}
.h3a{height:53.945520pt;}
.h36{height:54.073358pt;}
.h39{height:55.377968pt;}
.h25{height:56.800176pt;}
.h5e{height:57.375000pt;}
.h4{height:57.787500pt;}
.h27{height:58.131098pt;}
.h26{height:58.294029pt;}
.h23{height:58.361400pt;}
.h50{height:58.826248pt;}
.h3e{height:59.866667pt;}
.h33{height:60.500956pt;}
.h62{height:60.545623pt;}
.h3b{height:61.138667pt;}
.h2d{height:61.725625pt;}
.h6{height:62.781250pt;}
.h7{height:62.812500pt;}
.h41{height:63.257500pt;}
.h1b{height:63.427629pt;}
.h10{height:64.340000pt;}
.h2{height:64.500000pt;}
.h48{height:64.502650pt;}
.h52{height:65.250616pt;}
.h60{height:65.872362pt;}
.h17{height:65.998293pt;}
.h56{height:66.003062pt;}
.h47{height:66.341280pt;}
.hf{height:66.404375pt;}
.h76{height:66.871486pt;}
.h15{height:66.926262pt;}
.h1c{height:66.929192pt;}
.h4a{height:67.932500pt;}
.h35{height:70.463031pt;}
.h4e{height:71.524375pt;}
.h1d{height:71.824659pt;}
.h77{height:72.682719pt;}
.h53{height:73.874980pt;}
.h7a{height:74.079957pt;}
.h75{height:75.314391pt;}
.h72{height:76.308750pt;}
.h63{height:76.929882pt;}
.h57{height:77.159708pt;}
.h79{height:77.369023pt;}
.h55{height:77.857186pt;}
.h61{height:78.010971pt;}
.h2c{height:78.898667pt;}
.h29{height:79.982500pt;}
.h2b{height:81.902500pt;}
.h13{height:86.937500pt;}
.h21{height:91.165625pt;}
.h40{height:111.897500pt;}
.h12{height:129.817500pt;}
.h3c{height:135.737500pt;}
.h11{height:137.657500pt;}
.h3f{height:138.137500pt;}
.h65{height:155.201841pt;}
.h2e{height:176.697500pt;}
.h3d{height:180.537500pt;}
.h37{height:237.600298pt;}
.h2f{height:238.259109pt;}
.h58{height:273.128454pt;}
.h43{height:315.999239pt;}
.h22{height:373.730629pt;}
.h14{height:383.212175pt;}
.h74{height:391.416173pt;}
.h8{height:424.805622pt;}
.h54{height:472.260737pt;}
.h5f{height:489.149090pt;}
.h78{height:523.671951pt;}
.h4f{height:570.396079pt;}
.h64{height:1055.986587pt;}
.h0{height:1056.000000pt;}
.w17{width:4.480000pt;}
.w18{width:4.640000pt;}
.w14{width:4.800000pt;}
.w11{width:4.960000pt;}
.w23{width:9.919622pt;}
.w21{width:15.040737pt;}
.w22{width:15.839688pt;}
.w1e{width:22.560000pt;}
.w20{width:23.040000pt;}
.w7{width:28.306667pt;}
.w1f{width:29.600000pt;}
.w1d{width:34.560000pt;}
.w24{width:35.840000pt;}
.w25{width:36.960000pt;}
.wb{width:44.480000pt;}
.w3{width:65.746667pt;}
.w1c{width:130.721591pt;}
.w13{width:244.026667pt;}
.w19{width:270.293333pt;}
.we{width:270.731949pt;}
.w26{width:280.073974pt;}
.w9{width:283.066174pt;}
.w12{width:287.573333pt;}
.w8{width:290.531630pt;}
.wd{width:331.058936pt;}
.wf{width:335.862314pt;}
.w27{width:343.873633pt;}
.w1a{width:385.000000pt;}
.wc{width:397.604878pt;}
.w1b{width:421.853333pt;}
.wa{width:448.994903pt;}
.w1{width:473.947992pt;}
.w2{width:500.560000pt;}
.w6{width:510.480000pt;}
.w10{width:518.960000pt;}
.w16{width:537.040000pt;}
.w15{width:562.680000pt;}
.w4{width:566.264337pt;}
.w5{width:566.404861pt;}
.w0{width:816.000000pt;}
.x94{left:-1.933333pt;}
.x0{left:0.000000pt;}
.xa4{left:1.216594pt;}
.x17{left:2.676401pt;}
.x18{left:3.850922pt;}
.x52{left:5.440000pt;}
.x16{left:9.935197pt;}
.x5d{left:11.812840pt;}
.x87{left:13.116570pt;}
.x48{left:14.303286pt;}
.x32{left:16.072807pt;}
.x14{left:18.080247pt;}
.x42{left:20.762906pt;}
.x2f{left:23.520000pt;}
.x8a{left:24.886123pt;}
.x34{left:25.993676pt;}
.x49{left:27.772483pt;}
.x56{left:28.907820pt;}
.x33{left:32.607100pt;}
.x43{left:34.213795pt;}
.x7c{left:35.242304pt;}
.xa6{left:36.159105pt;}
.xae{left:37.276881pt;}
.x45{left:38.490427pt;}
.x57{left:39.716773pt;}
.x44{left:44.950047pt;}
.x6b{left:50.043694pt;}
.x13{left:51.447857pt;}
.xa5{left:54.484912pt;}
.x38{left:58.867103pt;}
.x5f{left:59.997780pt;}
.x47{left:61.258371pt;}
.x31{left:64.520869pt;}
.x12{left:67.275523pt;}
.x5b{left:71.092072pt;}
.x50{left:72.402514pt;}
.x7d{left:73.302858pt;}
.x7e{left:74.804191pt;}
.x4f{left:76.891514pt;}
.x84{left:79.957227pt;}
.x15{left:83.198535pt;}
.x85{left:85.177898pt;}
.x80{left:86.599699pt;}
.x82{left:90.559098pt;}
.xaf{left:91.954343pt;}
.x68{left:93.945952pt;}
.x8f{left:95.766506pt;}
.x6d{left:100.475211pt;}
.x8c{left:114.862581pt;}
.x89{left:116.542895pt;}
.x5e{left:117.684799pt;}
.x2{left:120.032000pt;}
.x5a{left:122.456366pt;}
.x30{left:124.080570pt;}
.x64{left:126.546667pt;}
.x36{left:130.324217pt;}
.x37{left:133.324983pt;}
.x90{left:141.162772pt;}
.x2a{left:143.601101pt;}
.x46{left:144.856289pt;}
.x7f{left:146.610445pt;}
.x83{left:148.768183pt;}
.x61{left:149.946667pt;}
.x78{left:151.226667pt;}
.x91{left:152.161559pt;}
.xad{left:154.680000pt;}
.x79{left:159.546667pt;}
.x66{left:161.466667pt;}
.xb1{left:162.746667pt;}
.x59{left:165.117503pt;}
.x4{left:167.226667pt;}
.x2c{left:171.546667pt;}
.x65{left:172.666667pt;}
.x35{left:178.365819pt;}
.x53{left:182.266667pt;}
.x62{left:188.186667pt;}
.x6c{left:189.426809pt;}
.x1e{left:190.488175pt;}
.x1b{left:195.589260pt;}
.x1c{left:201.476961pt;}
.x67{left:202.906667pt;}
.x7a{left:209.213333pt;}
.x2d{left:210.586667pt;}
.x29{left:214.730246pt;}
.x28{left:219.020879pt;}
.x10{left:220.538491pt;}
.x25{left:222.699698pt;}
.x6a{left:232.049070pt;}
.x70{left:234.106667pt;}
.xe{left:235.309389pt;}
.x97{left:237.126667pt;}
.x54{left:241.466667pt;}
.x71{left:242.426667pt;}
.x23{left:243.898599pt;}
.x1d{left:245.686363pt;}
.x11{left:246.671619pt;}
.x24{left:248.459382pt;}
.x20{left:249.984940pt;}
.x8e{left:251.831396pt;}
.x98{left:253.320000pt;}
.x1f{left:254.275573pt;}
.x8d{left:255.486609pt;}
.x99{left:258.306667pt;}
.x26{left:262.864782pt;}
.xf{left:264.732002pt;}
.x63{left:266.586667pt;}
.x22{left:276.825228pt;}
.x7b{left:285.404503pt;}
.x21{left:287.106854pt;}
.x58{left:293.004467pt;}
.xd{left:297.658631pt;}
.x4d{left:300.382192pt;}
.x27{left:302.219414pt;}
.xc{left:315.830252pt;}
.x40{left:317.927113pt;}
.x19{left:332.913325pt;}
.x3a{left:339.387359pt;}
.xb{left:351.339206pt;}
.x72{left:358.626667pt;}
.x73{left:366.946667pt;}
.xa{left:369.320133pt;}
.x9f{left:378.126667pt;}
.x3e{left:380.231524pt;}
.x39{left:383.621143pt;}
.xa0{left:384.866667pt;}
.xa1{left:389.506667pt;}
.x1a{left:391.250030pt;}
.x88{left:394.146667pt;}
.xa2{left:399.266667pt;}
.x3f{left:401.258896pt;}
.x69{left:403.430288pt;}
.x3{left:408.066667pt;}
.x5c{left:410.613333pt;}
.x8{left:412.353584pt;}
.x9{left:426.679528pt;}
.x6{left:436.079190pt;}
.xac{left:438.240000pt;}
.x3d{left:439.791959pt;}
.x5{left:451.557248pt;}
.x74{left:456.893333pt;}
.x76{left:463.133333pt;}
.x75{left:465.213333pt;}
.x7{left:466.844612pt;}
.x77{left:471.453333pt;}
.x93{left:512.073333pt;}
.x4b{left:515.429449pt;}
.x4c{left:519.706082pt;}
.x3c{left:524.238941pt;}
.x95{left:528.426667pt;}
.x9a{left:530.153333pt;}
.xa3{left:531.360000pt;}
.x96{left:533.853333pt;}
.x9b{left:536.906667pt;}
.x9c{left:541.226667pt;}
.x9d{left:545.706667pt;}
.x9e{left:550.653333pt;}
.x4a{left:552.337376pt;}
.x4e{left:558.781617pt;}
.x3b{left:561.400015pt;}
.x6f{left:569.760000pt;}
.x6e{left:572.413333pt;}
.x86{left:573.533333pt;}
.xb0{left:579.933333pt;}
.x2b{left:594.013333pt;}
.xa8{left:595.840000pt;}
.x92{left:599.613333pt;}
.x81{left:606.853333pt;}
.xa9{left:618.400000pt;}
.x2e{left:620.613333pt;}
.x51{left:630.533333pt;}
.xab{left:636.000000pt;}
.xaa{left:646.240000pt;}
.x8b{left:664.933333pt;}
.xa7{left:674.080000pt;}
.x55{left:681.253333pt;}
.x41{left:686.373333pt;}
.x1{left:688.773333pt;}
.x60{left:693.733333pt;}
}




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