
    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_8bb5d335198718d71efcaabc.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b648f3d3d2872dd60e63c7d3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.690430;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_024d803a0d41337d87b7fd2c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_19492e4d1fb7cb16c1bf9cf1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_99acfe3e479d4cc956066b33.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_9635dc82a0f237c304581427.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_aa4ddc1bd72946a12d4a0435.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.142090;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.191543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191543,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.192273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192273,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.214658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214658,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.220421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220421,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.221857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221857,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.221902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221902,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.221919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221919,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.222398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222398,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.222598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222598,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.222745,0.000001,-0.074241,0.238722,0,0);-ms-transform:matrix(0.222745,0.000001,-0.074241,0.238722,0,0);-webkit-transform:matrix(0.222745,0.000001,-0.074241,0.238722,0,0);}
.m17{transform:matrix(0.223661,0.000001,-0.074546,0.238627,0,0);-ms-transform:matrix(0.223661,0.000001,-0.074546,0.238627,0,0);-webkit-transform:matrix(0.223661,0.000001,-0.074546,0.238627,0,0);}
.m10{transform:matrix(0.224474,0.000000,-0.074817,0.238542,0,0);-ms-transform:matrix(0.224474,0.000000,-0.074817,0.238542,0,0);-webkit-transform:matrix(0.224474,0.000000,-0.074817,0.238542,0,0);}
.m14{transform:matrix(0.224474,0.000001,-0.074817,0.238542,0,0);-ms-transform:matrix(0.224474,0.000001,-0.074817,0.238542,0,0);-webkit-transform:matrix(0.224474,0.000001,-0.074817,0.238542,0,0);}
.m15{transform:matrix(0.224474,0.000001,-0.074817,0.238542,0,0);-ms-transform:matrix(0.224474,0.000001,-0.074817,0.238542,0,0);-webkit-transform:matrix(0.224474,0.000001,-0.074817,0.238542,0,0);}
.m13{transform:matrix(0.229108,0.000000,-0.076361,0.238052,0,0);-ms-transform:matrix(0.229108,0.000000,-0.076361,0.238052,0,0);-webkit-transform:matrix(0.229108,0.000000,-0.076361,0.238052,0,0);}
.md{transform:matrix(0.234687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234687,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.237370,0.000000,-0.079115,0.237151,0,0);-ms-transform:matrix(0.237370,0.000000,-0.079115,0.237151,0,0);-webkit-transform:matrix(0.237370,0.000000,-0.079115,0.237151,0,0);}
.mf{transform:matrix(0.238439,0.000000,-0.079472,0.237032,0,0);-ms-transform:matrix(0.238439,0.000000,-0.079472,0.237032,0,0);-webkit-transform:matrix(0.238439,0.000000,-0.079472,0.237032,0,0);}
.m19{transform:matrix(0.239160,0.000000,-0.079712,0.236952,0,0);-ms-transform:matrix(0.239160,0.000000,-0.079712,0.236952,0,0);-webkit-transform:matrix(0.239160,0.000000,-0.079712,0.236952,0,0);}
.m12{transform:matrix(0.240607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240607,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.241434,0.000000,-0.080470,0.236695,0,0);-ms-transform:matrix(0.241434,0.000000,-0.080470,0.236695,0,0);-webkit-transform:matrix(0.241434,0.000000,-0.080470,0.236695,0,0);}
.m3a{transform:matrix(0.248511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248511,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.248982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248982,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);}
.m37{transform:matrix(0.250231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250231,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.250585,0.000000,-0.083520,0.235636,0,0);-ms-transform:matrix(0.250585,0.000000,-0.083520,0.235636,0,0);-webkit-transform:matrix(0.250585,0.000000,-0.083520,0.235636,0,0);}
.m35{transform:matrix(0.250585,0.000000,-0.083520,0.235636,0,0);-ms-transform:matrix(0.250585,0.000000,-0.083520,0.235636,0,0);-webkit-transform:matrix(0.250585,0.000000,-0.083520,0.235636,0,0);}
.m2{transform:matrix(0.250672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250672,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.251166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251166,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251484,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252330,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252734,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.253269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253269,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.253355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253355,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.254243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254243,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.255005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255005,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.255463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255463,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.255900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255900,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.255952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255952,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.255973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255973,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.256403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256403,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.256523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256523,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.256754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256754,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.257743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257743,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.258052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258052,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.258216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258216,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.259129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259129,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.259602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259602,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.260610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260610,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.265860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265860,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.267894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267894,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.269241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269241,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.269243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269243,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.269837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269837,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.284105,0.000000,-0.094692,0.231373,0,0);-ms-transform:matrix(0.284105,0.000000,-0.094692,0.231373,0,0);-webkit-transform:matrix(0.284105,0.000000,-0.094692,0.231373,0,0);}
.mb{transform:matrix(0.306977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306977,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.328968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328968,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.431106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431106,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-70.680000px;}
.va{vertical-align:-56.033345px;}
.v9{vertical-align:-52.797816px;}
.v3{vertical-align:-44.571601px;}
.vc{vertical-align:-38.524729px;}
.v2{vertical-align:-27.480000px;}
.vd{vertical-align:-19.625488px;}
.v5{vertical-align:-17.043410px;}
.v6{vertical-align:-4.584396px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:15.726368px;}
.v7{vertical-align:19.305911px;}
.v1{vertical-align:27.360000px;}
.vb{vertical-align:49.713714px;}
.lse{letter-spacing:-2.052000px;}
.ls3b{letter-spacing:-1.590000px;}
.ls1f{letter-spacing:-1.440000px;}
.ls47{letter-spacing:-0.938321px;}
.ls21{letter-spacing:-0.612000px;}
.ls6{letter-spacing:-0.501000px;}
.ls8{letter-spacing:-0.457800px;}
.ls4b{letter-spacing:-0.208014px;}
.ls5{letter-spacing:0.000000px;}
.ls40{letter-spacing:0.020160px;}
.ls10{letter-spacing:0.025167px;}
.ls0{letter-spacing:0.095040px;}
.ls3{letter-spacing:0.118080px;}
.ls50{letter-spacing:0.120000px;}
.ls33{letter-spacing:0.178560px;}
.ls1{letter-spacing:0.190080px;}
.ls3f{letter-spacing:0.190560px;}
.ls9{letter-spacing:0.464160px;}
.ls3a{letter-spacing:0.612000px;}
.ls4{letter-spacing:0.642720px;}
.ls2{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.821280px;}
.ls3c{letter-spacing:1.440000px;}
.lsa{letter-spacing:1.590000px;}
.ls7{letter-spacing:1.746000px;}
.ls17{letter-spacing:5.504533px;}
.ls32{letter-spacing:6.480000px;}
.ls4e{letter-spacing:7.454848px;}
.ls1b{letter-spacing:15.499386px;}
.ls4f{letter-spacing:20.880000px;}
.ls34{letter-spacing:21.024141px;}
.ls30{letter-spacing:21.041326px;}
.ls35{letter-spacing:22.518185px;}
.ls28{letter-spacing:30.272899px;}
.ls2c{letter-spacing:30.963536px;}
.ls2a{letter-spacing:31.066885px;}
.ls2b{letter-spacing:31.711725px;}
.ls29{letter-spacing:31.817572px;}
.ls27{letter-spacing:36.305076px;}
.ls25{letter-spacing:36.426254px;}
.ls23{letter-spacing:36.771170px;}
.ls1e{letter-spacing:37.966379px;}
.ls26{letter-spacing:38.712600px;}
.ls24{letter-spacing:38.841814px;}
.ls22{letter-spacing:47.302700px;}
.ls41{letter-spacing:49.692000px;}
.ls49{letter-spacing:58.075669px;}
.ls16{letter-spacing:60.742020px;}
.ls14{letter-spacing:62.784000px;}
.ls4c{letter-spacing:63.366206px;}
.ls48{letter-spacing:64.809080px;}
.ls1a{letter-spacing:69.840000px;}
.ls20{letter-spacing:70.689052px;}
.ls4a{letter-spacing:71.001413px;}
.ls15{letter-spacing:72.844320px;}
.lsf{letter-spacing:80.640771px;}
.ls18{letter-spacing:85.038469px;}
.ls11{letter-spacing:109.234275px;}
.ls2d{letter-spacing:116.361592px;}
.ls2f{letter-spacing:134.904326px;}
.ls1c{letter-spacing:161.579222px;}
.ls2e{letter-spacing:165.670163px;}
.ls1d{letter-spacing:171.543528px;}
.ls3e{letter-spacing:182.466116px;}
.lsd{letter-spacing:189.278742px;}
.lsc{letter-spacing:215.464989px;}
.ls46{letter-spacing:224.183867px;}
.ls44{letter-spacing:230.578875px;}
.ls31{letter-spacing:235.370615px;}
.ls13{letter-spacing:240.147658px;}
.ls42{letter-spacing:241.157533px;}
.ls12{letter-spacing:242.218917px;}
.ls3d{letter-spacing:309.264516px;}
.ls19{letter-spacing:345.862212px;}
.ls45{letter-spacing:350.350794px;}
.ls43{letter-spacing:360.929452px;}
.ls4d{letter-spacing:396.730164px;}
.ls36{letter-spacing:445.956000px;}
.ls37{letter-spacing:684.996000px;}
.ls38{letter-spacing:697.956000px;}
.ls39{letter-spacing:989.016000px;}
.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;}
}
.ws0{word-spacing:-29.880000px;}
.ws1{word-spacing:-24.120000px;}
.wsf{word-spacing:-20.986526px;}
.ws4{word-spacing:-20.880000px;}
.ws16{word-spacing:-18.015138px;}
.ws6f{word-spacing:-18.000000px;}
.ws5e{word-spacing:-17.172000px;}
.ws5{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.102200px;}
.ws2b{word-spacing:-15.948000px;}
.ws2{word-spacing:-15.840000px;}
.ws3{word-spacing:-15.339000px;}
.ws71{word-spacing:-15.140160px;}
.ws5f{word-spacing:-14.970000px;}
.wsa{word-spacing:-14.508000px;}
.ws70{word-spacing:-14.400000px;}
.ws22{word-spacing:-10.873922px;}
.ws29{word-spacing:-7.812952px;}
.ws67{word-spacing:-7.039180px;}
.ws36{word-spacing:-2.131131px;}
.ws3e{word-spacing:-1.887323px;}
.ws38{word-spacing:-1.833764px;}
.ws3a{word-spacing:-1.631105px;}
.ws7{word-spacing:0.000000px;}
.ws55{word-spacing:0.776871px;}
.ws40{word-spacing:3.128731px;}
.ws4f{word-spacing:3.320546px;}
.ws48{word-spacing:3.882666px;}
.ws58{word-spacing:4.133481px;}
.ws52{word-spacing:4.760468px;}
.ws1f{word-spacing:4.807020px;}
.ws44{word-spacing:5.000962px;}
.ws51{word-spacing:5.296021px;}
.ws4e{word-spacing:5.355526px;}
.ws2a{word-spacing:5.599703px;}
.ws5b{word-spacing:5.915011px;}
.ws4d{word-spacing:6.391261px;}
.ws5a{word-spacing:6.545545px;}
.ws4b{word-spacing:6.923284px;}
.ws49{word-spacing:7.340666px;}
.ws57{word-spacing:7.476334px;}
.ws53{word-spacing:8.585983px;}
.ws3d{word-spacing:8.687260px;}
.ws46{word-spacing:8.987145px;}
.ws54{word-spacing:9.534710px;}
.ws5c{word-spacing:10.603277px;}
.ws6d{word-spacing:10.915024px;}
.ws3f{word-spacing:11.807867px;}
.ws5d{word-spacing:11.921198px;}
.ws20{word-spacing:12.214532px;}
.ws45{word-spacing:12.533424px;}
.ws27{word-spacing:12.747949px;}
.ws66{word-spacing:13.314535px;}
.ws3c{word-spacing:13.491945px;}
.ws43{word-spacing:13.699324px;}
.ws4c{word-spacing:13.999905px;}
.ws50{word-spacing:14.278347px;}
.ws61{word-spacing:14.440397px;}
.ws4a{word-spacing:14.514605px;}
.ws6c{word-spacing:15.232523px;}
.ws1c{word-spacing:17.603543px;}
.ws59{word-spacing:18.151372px;}
.ws56{word-spacing:21.853566px;}
.ws10{word-spacing:21.922907px;}
.ws6a{word-spacing:22.426326px;}
.ws25{word-spacing:24.824954px;}
.ws6e{word-spacing:28.569410px;}
.ws12{word-spacing:28.861146px;}
.ws24{word-spacing:30.314501px;}
.ws41{word-spacing:32.160444px;}
.ws64{word-spacing:34.380190px;}
.ws1b{word-spacing:36.937348px;}
.ws37{word-spacing:38.707292px;}
.ws26{word-spacing:41.960150px;}
.ws6b{word-spacing:48.518951px;}
.ws28{word-spacing:49.646230px;}
.ws1e{word-spacing:51.458249px;}
.ws1a{word-spacing:60.634424px;}
.ws47{word-spacing:66.164819px;}
.ws19{word-spacing:70.072950px;}
.wsb{word-spacing:72.649409px;}
.ws68{word-spacing:77.430977px;}
.ws2d{word-spacing:78.289006px;}
.ws69{word-spacing:78.536073px;}
.wsd{word-spacing:79.915157px;}
.ws42{word-spacing:84.002789px;}
.ws1d{word-spacing:84.137961px;}
.ws23{word-spacing:86.055503px;}
.ws33{word-spacing:86.359877px;}
.ws2f{word-spacing:86.648127px;}
.wse{word-spacing:87.081288px;}
.ws39{word-spacing:87.475507px;}
.ws35{word-spacing:93.073231px;}
.ws31{word-spacing:93.383889px;}
.ws60{word-spacing:113.643247px;}
.ws65{word-spacing:115.186497px;}
.ws2c{word-spacing:120.080992px;}
.ws34{word-spacing:122.165453px;}
.ws17{word-spacing:122.269347px;}
.ws30{word-spacing:122.573215px;}
.ws32{word-spacing:124.224135px;}
.ws2e{word-spacing:124.638769px;}
.ws21{word-spacing:144.034723px;}
.ws3b{word-spacing:147.293710px;}
.ws14{word-spacing:177.792366px;}
.ws62{word-spacing:178.452092px;}
.ws11{word-spacing:209.621711px;}
.ws63{word-spacing:320.331612px;}
.wsc{word-spacing:333.671334px;}
.ws13{word-spacing:343.201903px;}
.ws8{word-spacing:509.768253px;}
.ws18{word-spacing:634.631713px;}
.ws15{word-spacing:634.827532px;}
.ws9{word-spacing:650.834109px;}
._1e{margin-left:-1134.306792px;}
._1b{margin-left:-947.900173px;}
._3a{margin-left:-693.284783px;}
._89{margin-left:-627.321571px;}
._63{margin-left:-502.806349px;}
._8b{margin-left:-487.995895px;}
._58{margin-left:-337.671482px;}
._55{margin-left:-288.451643px;}
._5a{margin-left:-242.697155px;}
._6f{margin-left:-187.327122px;}
._59{margin-left:-180.694756px;}
._5e{margin-left:-151.685994px;}
._56{margin-left:-132.315050px;}
._54{margin-left:-100.011480px;}
._53{margin-left:-92.556423px;}
._52{margin-left:-85.452813px;}
._32{margin-left:-76.804077px;}
._47{margin-left:-26.609781px;}
._88{margin-left:-10.800000px;}
._78{margin-left:-7.200000px;}
._72{margin-left:-5.890865px;}
._3{margin-left:-2.903040px;}
._0{margin-left:-1.512000px;}
._1{width:1.391040px;}
._2{width:2.450880px;}
._4{width:4.152000px;}
._7{width:5.612640px;}
._6{width:6.894720px;}
._8{width:7.922880px;}
._5{width:9.253440px;}
._9{width:11.189280px;}
._a{width:12.619200px;}
._b{width:14.134560px;}
._f{width:15.503040px;}
._7b{width:16.814245px;}
._e{width:18.060480px;}
._4f{width:19.085280px;}
._c{width:20.125440px;}
._d{width:21.173760px;}
._12{width:22.366080px;}
._10{width:23.955840px;}
._11{width:25.689600px;}
._13{width:26.881920px;}
._31{width:28.249920px;}
._68{width:29.779026px;}
._50{width:31.043520px;}
._51{width:32.163840px;}
._75{width:33.529170px;}
._5b{width:34.554910px;}
._5c{width:36.292293px;}
._70{width:37.734662px;}
._17{width:39.087840px;}
._6e{width:40.282662px;}
._66{width:42.390049px;}
._7d{width:43.462802px;}
._69{width:44.588340px;}
._7e{width:47.505077px;}
._4a{width:49.283937px;}
._1f{width:53.681999px;}
._24{width:55.746820px;}
._27{width:57.192287px;}
._7c{width:59.069893px;}
._21{width:60.534177px;}
._5f{width:62.059844px;}
._37{width:63.549960px;}
._48{width:66.001361px;}
._49{width:67.765414px;}
._41{width:70.170395px;}
._2e{width:71.550586px;}
._2f{width:72.610595px;}
._2c{width:76.020053px;}
._4c{width:77.923793px;}
._39{width:79.291170px;}
._71{width:82.130365px;}
._43{width:83.203938px;}
._3e{width:84.231893px;}
._8d{width:88.560000px;}
._62{width:90.696818px;}
._67{width:92.737621px;}
._45{width:99.360000px;}
._2d{width:101.568105px;}
._60{width:106.873830px;}
._22{width:108.899598px;}
._65{width:110.265927px;}
._23{width:112.936510px;}
._20{width:116.769545px;}
._15{width:119.509231px;}
._64{width:122.130668px;}
._2b{width:123.924652px;}
._61{width:125.694949px;}
._1d{width:128.606458px;}
._46{width:133.200000px;}
._5d{width:137.242260px;}
._80{width:139.357440px;}
._16{width:144.000000px;}
._57{width:145.919295px;}
._4d{width:149.040000px;}
._6d{width:151.920000px;}
._40{width:157.633967px;}
._81{width:158.665622px;}
._36{width:180.850070px;}
._1c{width:183.184223px;}
._38{width:185.815171px;}
._42{width:187.208860px;}
._26{width:190.560652px;}
._77{width:196.740000px;}
._4e{width:198.953760px;}
._3c{width:200.046240px;}
._87{width:202.650882px;}
._3f{width:209.392569px;}
._86{width:210.400437px;}
._7a{width:212.755168px;}
._8a{width:214.451852px;}
._84{width:220.470470px;}
._6a{width:221.993105px;}
._1a{width:225.029309px;}
._6b{width:226.816109px;}
._82{width:230.602805px;}
._19{width:232.835274px;}
._6c{width:233.860087px;}
._29{width:248.287747px;}
._44{width:249.430409px;}
._33{width:258.183158px;}
._3d{width:297.865259px;}
._8c{width:307.124530px;}
._76{width:310.275103px;}
._83{width:344.713326px;}
._18{width:351.466606px;}
._7f{width:358.687303px;}
._74{width:365.840038px;}
._2a{width:381.717843px;}
._35{width:385.964996px;}
._73{width:402.532292px;}
._85{width:413.563063px;}
._25{width:455.707371px;}
._79{width:457.869288px;}
._3b{width:472.286496px;}
._30{width:495.313150px;}
._34{width:499.876281px;}
._4b{width:501.561653px;}
._28{width:513.439185px;}
._14{width:535.656584px;}
.fc0{color:rgb(0,0,0);}
.fs61{font-size:11.520000px;}
.fs42{font-size:18.190296px;}
.fs24{font-size:18.371344px;}
.fs52{font-size:18.720000px;}
.fs60{font-size:24.480000px;}
.fs5a{font-size:29.691793px;}
.fs4c{font-size:29.752924px;}
.fse{font-size:29.776235px;}
.fs53{font-size:30.025438px;}
.fs14{font-size:30.113735px;}
.fs1e{font-size:30.232828px;}
.fs34{font-size:30.240000px;}
.fs37{font-size:30.263115px;}
.fs5c{font-size:30.301551px;}
.fs43{font-size:30.308862px;}
.fs46{font-size:30.362684px;}
.fs3a{font-size:30.364127px;}
.fs25{font-size:30.570339px;}
.fs2b{font-size:31.251808px;}
.fs27{font-size:32.242812px;}
.fs13{font-size:36.000000px;}
.fs41{font-size:36.380593px;}
.fs1c{font-size:37.612963px;}
.fs11{font-size:39.989374px;}
.fs9{font-size:41.760000px;}
.fs18{font-size:42.033593px;}
.fs4a{font-size:42.537380px;}
.fs56{font-size:42.868067px;}
.fs22{font-size:43.495689px;}
.fs4d{font-size:47.436370px;}
.fs6{font-size:47.520000px;}
.fs5b{font-size:47.614279px;}
.fsf{font-size:47.670216px;}
.fs15{font-size:48.182213px;}
.fs3e{font-size:48.392898px;}
.fs5d{font-size:48.511219px;}
.fs36{font-size:48.532177px;}
.fs39{font-size:48.554423px;}
.fs44{font-size:48.579162px;}
.fs47{font-size:48.691852px;}
.fs3c{font-size:48.694167px;}
.fs57{font-size:48.950497px;}
.fs17{font-size:49.050798px;}
.fs40{font-size:49.427419px;}
.fs3f{font-size:49.561194px;}
.fs5{font-size:50.400000px;}
.fs45{font-size:51.309825px;}
.fsb{font-size:54.720000px;}
.fsc{font-size:56.810951px;}
.fs5f{font-size:57.600000px;}
.fs4f{font-size:59.384690px;}
.fs10{font-size:59.697801px;}
.fs54{font-size:59.905520px;}
.fs16{font-size:60.226287px;}
.fs1f{font-size:60.467978px;}
.fs0{font-size:60.480000px;}
.fs32{font-size:60.666660px;}
.fs49{font-size:60.730563px;}
.fs48{font-size:60.866259px;}
.fs4b{font-size:60.869152px;}
.fs26{font-size:60.994972px;}
.fs58{font-size:61.260588px;}
.fs2a{font-size:61.884467px;}
.fs2c{font-size:62.354991px;}
.fs51{font-size:63.004617px;}
.fs50{font-size:63.004625px;}
.fs8{font-size:63.360000px;}
.fs12{font-size:63.983312px;}
.fs33{font-size:64.007414px;}
.fs28{font-size:64.331946px;}
.fs59{font-size:64.579631px;}
.fsd{font-size:65.118301px;}
.fs20{font-size:65.336062px;}
.fs2f{font-size:65.355007px;}
.fs2e{font-size:65.355017px;}
.fs29{font-size:65.355053px;}
.fs2d{font-size:65.484530px;}
.fs30{font-size:65.566311px;}
.fs31{font-size:65.592479px;}
.fs3{font-size:66.240000px;}
.fs3d{font-size:68.890989px;}
.fs35{font-size:69.034872px;}
.fs38{font-size:69.120932px;}
.fs3b{font-size:69.265295px;}
.fs7{font-size:72.000000px;}
.fs19{font-size:72.060552px;}
.fs23{font-size:74.519579px;}
.fs1d{font-size:75.228814px;}
.fs4{font-size:77.760000px;}
.fsa{font-size:83.520000px;}
.fs4e{font-size:95.014060px;}
.fs55{font-size:95.851214px;}
.fs2{font-size:96.480000px;}
.fs21{font-size:96.742962px;}
.fs5e{font-size:97.021236px;}
.fs1a{font-size:102.519113px;}
.fs1b{font-size:103.219420px;}
.fs1{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y11a{bottom:2.673448px;}
.y252{bottom:3.169917px;}
.yf6{bottom:3.192413px;}
.y1b8{bottom:3.385885px;}
.y1eb{bottom:3.421008px;}
.y175{bottom:3.583540px;}
.y198{bottom:3.583573px;}
.y18b{bottom:3.583609px;}
.y1ba{bottom:3.595344px;}
.y17d{bottom:3.595570px;}
.y1cd{bottom:3.595571px;}
.y22b{bottom:3.600000px;}
.y186{bottom:3.653179px;}
.y19a{bottom:3.653217px;}
.y19e{bottom:3.665411px;}
.y179{bottom:3.665441px;}
.y1ca{bottom:3.665443px;}
.ycf{bottom:3.696485px;}
.y22d{bottom:3.960000px;}
.y22f{bottom:3.990000px;}
.y18d{bottom:4.210576px;}
.y190{bottom:4.244068px;}
.ydc{bottom:4.354811px;}
.y1b9{bottom:4.502930px;}
.y1ec{bottom:4.538118px;}
.y1f7{bottom:4.538125px;}
.y79{bottom:4.653841px;}
.y8c{bottom:4.714254px;}
.y95{bottom:4.714256px;}
.y91{bottom:4.714276px;}
.yc2{bottom:4.722322px;}
.y11e{bottom:4.863634px;}
.ye3{bottom:5.455591px;}
.ye1{bottom:5.455607px;}
.y24a{bottom:5.455629px;}
.y1e4{bottom:5.532059px;}
.y1d7{bottom:5.532065px;}
.y1e0{bottom:5.532066px;}
.y9a{bottom:5.749925px;}
.y237{bottom:5.760000px;}
.y1ad{bottom:5.900669px;}
.y1b1{bottom:5.900670px;}
.y1b3{bottom:5.900671px;}
.y7f{bottom:5.908251px;}
.y258{bottom:6.251151px;}
.y25b{bottom:6.251154px;}
.y210{bottom:6.374218px;}
.y209{bottom:6.374221px;}
.yfd{bottom:6.444067px;}
.y173{bottom:6.993270px;}
.y189{bottom:6.993331px;}
.y17b{bottom:7.016670px;}
.y184{bottom:7.027946px;}
.y1fd{bottom:7.040470px;}
.y1ff{bottom:7.040476px;}
.y1fe{bottom:7.040484px;}
.y253{bottom:7.040505px;}
.y177{bottom:7.051463px;}
.ybd{bottom:7.512751px;}
.y174{bottom:7.515132px;}
.y150{bottom:7.515155px;}
.y197{bottom:7.515162px;}
.y151{bottom:7.515171px;}
.y18a{bottom:7.515181px;}
.y1bb{bottom:7.539891px;}
.y17c{bottom:7.540262px;}
.y1cc{bottom:7.540281px;}
.y1ce{bottom:7.540294px;}
.y185{bottom:7.549808px;}
.y199{bottom:7.549844px;}
.y19b{bottom:7.549847px;}
.y19d{bottom:7.575045px;}
.y19f{bottom:7.575047px;}
.y178{bottom:7.575055px;}
.y1c9{bottom:7.575072px;}
.y1cb{bottom:7.575086px;}
.y119{bottom:7.760719px;}
.y137{bottom:7.760751px;}
.y136{bottom:7.760752px;}
.y13b{bottom:7.791718px;}
.y13a{bottom:7.791719px;}
.y114{bottom:8.342702px;}
.y111{bottom:8.342707px;}
.y109{bottom:8.342709px;}
.ya7{bottom:8.456308px;}
.y8e{bottom:8.571314px;}
.ydd{bottom:9.023129px;}
.y24c{bottom:9.429947px;}
.y11f{bottom:9.690112px;}
.ydf{bottom:10.518398px;}
.ye0{bottom:10.562044px;}
.y25d{bottom:11.157535px;}
.yfe{bottom:11.258569px;}
.ye2{bottom:11.303888px;}
.ye4{bottom:11.303893px;}
.y1ab{bottom:12.719944px;}
.yc1{bottom:13.200872px;}
.y251{bottom:13.713723px;}
.y106{bottom:13.856861px;}
.yf5{bottom:14.558449px;}
.y90{bottom:15.856474px;}
.yf9{bottom:15.996159px;}
.y249{bottom:16.295316px;}
.y99{bottom:17.142871px;}
.y238{bottom:17.280000px;}
.ya6{bottom:17.435165px;}
.y208{bottom:17.646710px;}
.y11d{bottom:18.043826px;}
.y1e7{bottom:18.100794px;}
.y1d6{bottom:18.171731px;}
.y1df{bottom:18.171732px;}
.y213{bottom:19.086867px;}
.y25f{bottom:19.116629px;}
.yf7{bottom:19.224116px;}
.y97{bottom:19.714225px;}
.y93{bottom:19.714237px;}
.y1de{bottom:20.902535px;}
.y235{bottom:22.680000px;}
.y24b{bottom:22.906977px;}
.y25e{bottom:23.078533px;}
.y25c{bottom:23.078545px;}
.y105{bottom:24.527127px;}
.yb9{bottom:26.186629px;}
.y8b{bottom:26.999907px;}
.y94{bottom:26.999909px;}
.y8f{bottom:26.999929px;}
.yc0{bottom:27.475247px;}
.y98{bottom:28.534488px;}
.y257{bottom:29.875005px;}
.y10d{bottom:29.933357px;}
.y1aa{bottom:30.033610px;}
.ybb{bottom:30.086513px;}
.y96{bottom:30.891652px;}
.y92{bottom:30.891662px;}
.y8d{bottom:30.891675px;}
.y1dd{bottom:31.336474px;}
.y248{bottom:31.360938px;}
.y20c{bottom:31.655066px;}
.y259{bottom:32.709709px;}
.y1ae{bottom:32.824498px;}
.y1b0{bottom:33.955458px;}
.y1b2{bottom:33.955472px;}
.y1ac{bottom:33.955477px;}
.y1af{bottom:33.955481px;}
.y113{bottom:34.659900px;}
.y110{bottom:34.659903px;}
.y108{bottom:34.659907px;}
.y10e{bottom:34.659909px;}
.y1e5{bottom:35.187989px;}
.y1d9{bottom:35.188002px;}
.y1e2{bottom:35.188006px;}
.y24d{bottom:35.335406px;}
.y211{bottom:36.264436px;}
.y20b{bottom:36.264443px;}
.y20e{bottom:36.264445px;}
.yf8{bottom:36.343170px;}
.ybf{bottom:38.779882px;}
.y25a{bottom:39.542309px;}
.y104{bottom:40.174188px;}
.y1a9{bottom:40.739808px;}
.y234{bottom:41.400000px;}
.y1e3{bottom:42.750588px;}
.y1d5{bottom:42.750594px;}
.y1dc{bottom:42.750595px;}
.y20f{bottom:44.655135px;}
.y207{bottom:44.655138px;}
.y10b{bottom:45.688491px;}
.y107{bottom:46.153456px;}
.y10f{bottom:48.445642px;}
.y10c{bottom:48.445644px;}
.y112{bottom:48.445647px;}
.ybc{bottom:48.724883px;}
.ybe{bottom:50.263532px;}
.yba{bottom:52.624767px;}
.y102{bottom:53.172186px;}
.y10a{bottom:53.172188px;}
.y103{bottom:55.104570px;}
.y1e6{bottom:55.320191px;}
.y1d4{bottom:55.389680px;}
.y1db{bottom:55.389681px;}
.y206{bottom:55.891885px;}
.y212{bottom:57.367785px;}
.y1da{bottom:58.120484px;}
.y1d8{bottom:59.206455px;}
.y1e1{bottom:59.206463px;}
.y20a{bottom:60.537003px;}
.y20d{bottom:60.537007px;}
.y2{bottom:94.716000px;}
.y38{bottom:95.796000px;}
.y37{bottom:115.596000px;}
.y2bd{bottom:135.756000px;}
.yc5{bottom:136.116000px;}
.y36{bottom:136.476000px;}
.y165{bottom:137.916000px;}
.y226{bottom:140.796000px;}
.y6c{bottom:146.556000px;}
.y133{bottom:149.436000px;}
.y2bc{bottom:154.830000px;}
.yc4{bottom:155.190000px;}
.y35{bottom:155.550000px;}
.y164{bottom:156.630000px;}
.y285{bottom:158.790000px;}
.y225{bottom:159.510000px;}
.y1c6{bottom:162.390000px;}
.yda{bottom:163.830000px;}
.ydb{bottom:163.950000px;}
.y6b{bottom:165.270000px;}
.y132{bottom:168.510000px;}
.y87{bottom:170.670000px;}
.y2bb{bottom:171.750000px;}
.yc3{bottom:174.270000px;}
.yb8{bottom:174.450000px;}
.y34{bottom:174.630000px;}
.y163{bottom:175.710000px;}
.y224{bottom:178.590000px;}
.y246{bottom:180.030000px;}
.y1c5{bottom:181.470000px;}
.y6a{bottom:184.350000px;}
.y131{bottom:187.590000px;}
.y86{bottom:189.390000px;}
.y284{bottom:192.990000px;}
.y33{bottom:193.350000px;}
.yd9{bottom:194.115000px;}
.y162{bottom:194.835000px;}
.y245{bottom:195.555000px;}
.y223{bottom:197.715000px;}
.y2ba{bottom:199.515000px;}
.y1c4{bottom:200.595000px;}
.y69{bottom:203.475000px;}
.y130{bottom:206.355000px;}
.y85{bottom:208.515000px;}
.y283{bottom:208.875000px;}
.y32{bottom:212.475000px;}
.yd8{bottom:213.195000px;}
.y161{bottom:213.555000px;}
.y244{bottom:215.355000px;}
.y222{bottom:216.435000px;}
.y2b9{bottom:216.795000px;}
.y1c3{bottom:219.315000px;}
.y282{bottom:220.755000px;}
.y68{bottom:222.195000px;}
.y12f{bottom:225.435000px;}
.y84{bottom:227.595000px;}
.y31{bottom:231.555000px;}
.yd7{bottom:232.275000px;}
.y160{bottom:232.635000px;}
.y2b8{bottom:234.075000px;}
.y243{bottom:235.155000px;}
.y221{bottom:235.515000px;}
.y1c2{bottom:236.955000px;}
.y281{bottom:238.035000px;}
.y67{bottom:241.275000px;}
.y12e{bottom:244.515000px;}
.yb7{bottom:245.235000px;}
.y83{bottom:246.315000px;}
.y2b7{bottom:249.195000px;}
.y30{bottom:250.275000px;}
.y1c1{bottom:250.635000px;}
.yd6{bottom:251.355000px;}
.y15f{bottom:251.715000px;}
.y220{bottom:254.595000px;}
.y242{bottom:254.955000px;}
.y280{bottom:255.315000px;}
.y2b6{bottom:258.195000px;}
.y66{bottom:260.355000px;}
.y82{bottom:263.235000px;}
.y12d{bottom:263.595000px;}
.yb6{bottom:263.955000px;}
.y1c0{bottom:267.915000px;}
.y2f{bottom:269.355000px;}
.yd5{bottom:270.075000px;}
.y15e{bottom:270.795000px;}
.y27f{bottom:272.595000px;}
.y21f{bottom:273.315000px;}
.y241{bottom:274.755000px;}
.y2b5{bottom:275.475000px;}
.y65{bottom:279.075000px;}
.y81{bottom:280.515000px;}
.y1bf{bottom:281.595000px;}
.y12c{bottom:282.315000px;}
.yb5{bottom:283.035000px;}
.y2e{bottom:287.355000px;}
.yd4{bottom:288.795000px;}
.y15d{bottom:289.515000px;}
.y27e{bottom:289.875000px;}
.y21e{bottom:292.395000px;}
.y2b4{bottom:292.755000px;}
.y80{bottom:294.195000px;}
.y7e{bottom:294.300000px;}
.y64{bottom:298.155000px;}
.y1be{bottom:300.315000px;}
.y12b{bottom:301.395000px;}
.y2d{bottom:302.115000px;}
.yd3{bottom:302.475000px;}
.y2b3{bottom:307.875000px;}
.y15c{bottom:308.595000px;}
.y27d{bottom:309.315000px;}
.y21d{bottom:311.475000px;}
.y240{bottom:313.995000px;}
.y2b2{bottom:316.875000px;}
.y63{bottom:317.235000px;}
.y1bc{bottom:319.755000px;}
.y1bd{bottom:319.875000px;}
.y12a{bottom:320.505000px;}
.yb4{bottom:320.865000px;}
.y2c{bottom:321.225000px;}
.y15b{bottom:327.705000px;}
.y27c{bottom:329.865000px;}
.y21c{bottom:330.585000px;}
.y23f{bottom:333.825000px;}
.y2b1{bottom:334.185000px;}
.y62{bottom:336.345000px;}
.y129{bottom:339.225000px;}
.yb3{bottom:339.945000px;}
.y2b{bottom:340.305000px;}
.y1b6{bottom:345.705000px;}
.y1b7{bottom:345.749959px;}
.y15a{bottom:346.425000px;}
.y27b{bottom:348.945000px;}
.y21b{bottom:349.305000px;}
.y61{bottom:355.065000px;}
.y128{bottom:358.305000px;}
.y2a{bottom:359.025000px;}
.y159{bottom:365.505000px;}
.y27a{bottom:367.665000px;}
.y21a{bottom:368.025000px;}
.y1b5{bottom:369.825000px;}
.y60{bottom:374.145000px;}
.y2b0{bottom:375.585000px;}
.y23e{bottom:376.305000px;}
.y127{bottom:377.385000px;}
.y29{bottom:378.105000px;}
.y1b4{bottom:382.065000px;}
.y1a8{bottom:382.124959px;}
.y158{bottom:384.585000px;}
.y279{bottom:386.745000px;}
.y219{bottom:388.185000px;}
.y2af{bottom:392.865000px;}
.y5f{bottom:393.225000px;}
.yb2{bottom:395.025000px;}
.y126{bottom:396.105000px;}
.y28{bottom:397.185000px;}
.y157{bottom:403.305000px;}
.y278{bottom:405.825000px;}
.yb1{bottom:407.265000px;}
.y2ae{bottom:407.625000px;}
.y218{bottom:409.785000px;}
.y5e{bottom:411.945000px;}
.y23d{bottom:412.665000px;}
.y125{bottom:415.185000px;}
.y27{bottom:415.905000px;}
.y217{bottom:422.025000px;}
.y156{bottom:422.385000px;}
.y277{bottom:424.545000px;}
.yb0{bottom:426.345000px;}
.y5d{bottom:431.025000px;}
.y2ad{bottom:432.465000px;}
.y26{bottom:433.905000px;}
.y124{bottom:434.265000px;}
.y1a7{bottom:438.225000px;}
.y216{bottom:440.025000px;}
.y155{bottom:441.465000px;}
.y276{bottom:443.265000px;}
.y7d{bottom:445.065000px;}
.y2ac{bottom:448.350000px;}
.y25{bottom:448.710000px;}
.y23c{bottom:449.070000px;}
.y5c{bottom:450.150000px;}
.y123{bottom:453.390000px;}
.y215{bottom:456.270000px;}
.y1a6{bottom:456.990000px;}
.y2ab{bottom:460.230000px;}
.y154{bottom:460.590000px;}
.y7c{bottom:462.390000px;}
.y275{bottom:462.750000px;}
.yaf{bottom:464.190000px;}
.y23b{bottom:464.550000px;}
.y24{bottom:467.790000px;}
.y5b{bottom:469.230000px;}
.y122{bottom:472.110000px;}
.y205{bottom:475.349959px;}
.y214{bottom:475.350000px;}
.y1a5{bottom:476.070000px;}
.y2aa{bottom:477.150000px;}
.y153{bottom:479.310000px;}
.y7b{bottom:479.670000px;}
.yae{bottom:483.270000px;}
.y23a{bottom:484.350000px;}
.y23{bottom:486.870000px;}
.y5a{bottom:487.950000px;}
.y121{bottom:491.190000px;}
.y2a9{bottom:492.270000px;}
.y78{bottom:493.349959px;}
.y7a{bottom:493.350000px;}
.y1a4{bottom:495.150000px;}
.y152{bottom:498.390000px;}
.y2a8{bottom:499.830000px;}
.yad{bottom:502.350000px;}
.y239{bottom:504.150000px;}
.y22{bottom:505.950000px;}
.y59{bottom:507.030000px;}
.y120{bottom:510.270000px;}
.y1a3{bottom:513.870000px;}
.y2a7{bottom:517.110000px;}
.y14e{bottom:517.470000px;}
.y14f{bottom:517.499959px;}
.yac{bottom:521.070000px;}
.y274{bottom:521.430000px;}
.y233{bottom:523.950000px;}
.y21{bottom:524.670000px;}
.y58{bottom:526.110000px;}
.y11c{bottom:529.350000px;}
.y1a2{bottom:532.950000px;}
.yab{bottom:540.150000px;}
.y14d{bottom:543.390000px;}
.y20{bottom:543.750000px;}
.y2a6{bottom:544.470000px;}
.y57{bottom:544.830000px;}
.yd2{bottom:549.870000px;}
.y1a1{bottom:550.230000px;}
.y204{bottom:554.910000px;}
.y236{bottom:557.430000px;}
.yaa{bottom:559.230000px;}
.y2a5{bottom:561.750000px;}
.y1a0{bottom:562.110000px;}
.y14c{bottom:562.470000px;}
.y1f{bottom:562.830000px;}
.y56{bottom:563.910000px;}
.y203{bottom:570.750000px;}
.ya9{bottom:577.980000px;}
.y273{bottom:578.340000px;}
.y2a4{bottom:579.060000px;}
.y1e{bottom:579.780000px;}
.y19c{bottom:581.549959px;}
.y11b{bottom:581.580000px;}
.y55{bottom:583.020000px;}
.yd1{bottom:584.820000px;}
.y232{bottom:585.540000px;}
.y202{bottom:589.860000px;}
.y1d{bottom:594.540000px;}
.ya8{bottom:597.060000px;}
.ya5{bottom:597.074959px;}
.y272{bottom:597.420000px;}
.yce{bottom:599.924959px;}
.yd0{bottom:599.940000px;}
.y14b{bottom:600.300000px;}
.y117{bottom:600.660000px;}
.y118{bottom:600.674959px;}
.y54{bottom:601.740000px;}
.y2a3{bottom:604.980000px;}
.y196{bottom:607.499959px;}
.y195{bottom:607.500000px;}
.y201{bottom:608.580000px;}
.y271{bottom:616.140000px;}
.y1c{bottom:616.500000px;}
.y14a{bottom:619.380000px;}
.y53{bottom:620.820000px;}
.y231{bottom:621.900000px;}
.y2a2{bottom:622.260000px;}
.y116{bottom:622.980000px;}
.y200{bottom:627.660000px;}
.y1b{bottom:629.820000px;}
.ya4{bottom:633.060000px;}
.y194{bottom:633.420000px;}
.y270{bottom:635.220000px;}
.y230{bottom:637.380000px;}
.y149{bottom:638.460000px;}
.y77{bottom:639.540000px;}
.y52{bottom:639.900000px;}
.y115{bottom:642.060000px;}
.y101{bottom:642.074959px;}
.y1fc{bottom:646.724959px;}
.y1a{bottom:646.740000px;}
.ya3{bottom:651.780000px;}
.y193{bottom:652.500000px;}
.y2a1{bottom:653.940000px;}
.y26f{bottom:654.300000px;}
.y148{bottom:657.180000px;}
.y76{bottom:658.620000px;}
.y51{bottom:658.980000px;}
.y2a0{bottom:660.060000px;}
.y19{bottom:662.940000px;}
.ya2{bottom:670.860000px;}
.y192{bottom:671.220000px;}
.y26e{bottom:673.020000px;}
.y1fb{bottom:674.820000px;}
.y147{bottom:676.260000px;}
.y18{bottom:676.980000px;}
.y75{bottom:677.340000px;}
.y50{bottom:677.700000px;}
.ya1{bottom:689.940000px;}
.y191{bottom:690.300000px;}
.y26d{bottom:691.740000px;}
.y1fa{bottom:693.900000px;}
.y29f{bottom:694.620000px;}
.y146{bottom:695.340000px;}
.y74{bottom:696.420000px;}
.y4f{bottom:696.780000px;}
.y17{bottom:698.220000px;}
.ya0{bottom:708.690000px;}
.y18f{bottom:709.349919px;}
.y18e{bottom:709.410000px;}
.y29e{bottom:710.130000px;}
.y26c{bottom:711.930000px;}
.y100{bottom:712.290000px;}
.y16{bottom:712.650000px;}
.y1f9{bottom:713.010000px;}
.y145{bottom:714.090000px;}
.y4e{bottom:715.890000px;}
.y22e{bottom:716.610000px;}
.y29d{bottom:720.570000px;}
.y9f{bottom:727.770000px;}
.y18c{bottom:729.525000px;}
.y15{bottom:729.570000px;}
.yff{bottom:731.370000px;}
.y1f8{bottom:732.090000px;}
.y144{bottom:733.170000px;}
.y4d{bottom:734.610000px;}
.y26b{bottom:735.330000px;}
.y22c{bottom:736.050000px;}
.y29c{bottom:737.850000px;}
.y14{bottom:746.850000px;}
.y188{bottom:749.699919px;}
.y187{bottom:749.730000px;}
.yfc{bottom:750.449919px;}
.yfb{bottom:750.450000px;}
.y1f6{bottom:751.124919px;}
.y1f5{bottom:751.170000px;}
.y143{bottom:752.250000px;}
.y4c{bottom:753.690000px;}
.y26a{bottom:754.410000px;}
.y22a{bottom:755.850000px;}
.ycd{bottom:757.290000px;}
.y29b{bottom:758.370000px;}
.y13{bottom:764.130000px;}
.y9e{bottom:765.570000px;}
.y142{bottom:771.330000px;}
.y4b{bottom:772.770000px;}
.y269{bottom:773.130000px;}
.y183{bottom:775.650000px;}
.ycc{bottom:776.010000px;}
.y1f4{bottom:777.090000px;}
.y229{bottom:779.610000px;}
.y12{bottom:781.410000px;}
.yf4{bottom:783.900000px;}
.yfa{bottom:783.930000px;}
.y9d{bottom:784.650000px;}
.y141{bottom:790.050000px;}
.y29a{bottom:790.770000px;}
.y4a{bottom:791.490000px;}
.y268{bottom:792.210000px;}
.ycb{bottom:795.090000px;}
.y1f3{bottom:795.810000px;}
.y11{bottom:798.690000px;}
.y299{bottom:799.770000px;}
.y182{bottom:801.570000px;}
.y9c{bottom:803.730000px;}
.y140{bottom:809.130000px;}
.y49{bottom:810.570000px;}
.y267{bottom:811.290000px;}
.yca{bottom:814.170000px;}
.y1f2{bottom:814.890000px;}
.y10{bottom:815.970000px;}
.y298{bottom:817.050000px;}
.y181{bottom:820.650000px;}
.y8a{bottom:822.749919px;}
.y9b{bottom:822.810000px;}
.y13f{bottom:828.255000px;}
.y48{bottom:829.695000px;}
.y266{bottom:830.055000px;}
.y297{bottom:832.215000px;}
.yc9{bottom:832.935000px;}
.yf{bottom:833.295000px;}
.y1f1{bottom:834.015000px;}
.y228{bottom:834.735000px;}
.yf3{bottom:835.455000px;}
.y180{bottom:839.775000px;}
.y13e{bottom:846.975000px;}
.y47{bottom:848.775000px;}
.y265{bottom:849.135000px;}
.ye{bottom:850.575000px;}
.yc8{bottom:852.015000px;}
.y1f0{bottom:853.095000px;}
.y227{bottom:853.815000px;}
.yf2{bottom:854.535000px;}
.y296{bottom:857.055000px;}
.y17f{bottom:858.495000px;}
.y13d{bottom:866.055000px;}
.y46{bottom:867.135000px;}
.y73{bottom:867.495000px;}
.yd{bottom:868.215000px;}
.yc7{bottom:870.735000px;}
.y1ef{bottom:871.815000px;}
.y295{bottom:872.535000px;}
.y89{bottom:872.895000px;}
.yf1{bottom:873.255000px;}
.y17e{bottom:877.575000px;}
.y294{bottom:884.415000px;}
.y13c{bottom:885.135000px;}
.y72{bottom:886.575000px;}
.y264{bottom:886.935000px;}
.y45{bottom:887.295000px;}
.yc{bottom:887.655000px;}
.yc6{bottom:890.175000px;}
.y1ee{bottom:890.895000px;}
.y88{bottom:891.615000px;}
.yf0{bottom:892.335000px;}
.y176{bottom:896.549919px;}
.y17a{bottom:896.655000px;}
.y293{bottom:901.695000px;}
.y139{bottom:903.749919px;}
.y138{bottom:903.855000px;}
.y71{bottom:905.655000px;}
.y263{bottom:906.015000px;}
.yb{bottom:909.615000px;}
.y1ed{bottom:909.975000px;}
.y44{bottom:910.695000px;}
.yef{bottom:911.415000px;}
.y292{bottom:918.975000px;}
.y172{bottom:922.875000px;}
.y171{bottom:922.935000px;}
.y70{bottom:924.375000px;}
.y262{bottom:925.095000px;}
.y135{bottom:926.474919px;}
.y134{bottom:926.535000px;}
.y1ea{bottom:928.949919px;}
.y1e9{bottom:929.055000px;}
.y43{bottom:929.775000px;}
.yee{bottom:930.495000px;}
.y291{bottom:934.815000px;}
.ya{bottom:935.895000px;}
.y6f{bottom:943.455000px;}
.y261{bottom:944.175000px;}
.y170{bottom:946.695000px;}
.y42{bottom:948.855000px;}
.yed{bottom:949.215000px;}
.y1d3{bottom:954.899919px;}
.y1e8{bottom:955.005000px;}
.y9{bottom:956.445000px;}
.y16f{bottom:957.165000px;}
.y6e{bottom:962.205000px;}
.y256{bottom:962.849919px;}
.y260{bottom:962.925000px;}
.y290{bottom:964.005000px;}
.y41{bottom:967.605000px;}
.yec{bottom:968.325000px;}
.y8{bottom:970.845000px;}
.y16e{bottom:976.245000px;}
.y28f{bottom:979.125000px;}
.y6d{bottom:982.365000px;}
.y40{bottom:986.685000px;}
.yeb{bottom:987.405000px;}
.y28e{bottom:988.125000px;}
.y7{bottom:993.165000px;}
.y16d{bottom:995.325000px;}
.y28d{bottom:1005.405000px;}
.y3f{bottom:1005.765000px;}
.yea{bottom:1006.125000px;}
.y16c{bottom:1014.405000px;}
.y6{bottom:1015.485000px;}
.y255{bottom:1018.365000px;}
.y28c{bottom:1022.685000px;}
.y3e{bottom:1024.485000px;}
.ye9{bottom:1025.205000px;}
.y16b{bottom:1033.125000px;}
.y1d2{bottom:1036.365000px;}
.y250{bottom:1037.324919px;}
.y254{bottom:1037.445000px;}
.y5{bottom:1041.045000px;}
.y3d{bottom:1043.565000px;}
.ye8{bottom:1044.285000px;}
.y28b{bottom:1045.005000px;}
.y16a{bottom:1052.205000px;}
.y1d1{bottom:1055.445000px;}
.y28a{bottom:1062.285000px;}
.y3c{bottom:1062.645000px;}
.ye7{bottom:1063.005000px;}
.y24f{bottom:1065.525000px;}
.y169{bottom:1071.285000px;}
.y1d0{bottom:1074.525000px;}
.y4{bottom:1074.885000px;}
.y289{bottom:1077.405000px;}
.y3b{bottom:1081.410000px;}
.ye6{bottom:1082.130000px;}
.y247{bottom:1084.875000px;}
.y24e{bottom:1085.010000px;}
.y288{bottom:1086.450000px;}
.y168{bottom:1090.050000px;}
.y1cf{bottom:1093.290000px;}
.y3a{bottom:1100.490000px;}
.yde{bottom:1101.074919px;}
.ye5{bottom:1101.210000px;}
.y287{bottom:1103.730000px;}
.y167{bottom:1106.970000px;}
.y3{bottom:1108.770000px;}
.y1c8{bottom:1112.549919px;}
.y1c7{bottom:1112.730000px;}
.y166{bottom:1118.130000px;}
.y39{bottom:1119.570000px;}
.y286{bottom:1121.010000px;}
.y1{bottom:1154.850000px;}
.hc0{height:11.306250px;}
.h71{height:16.575308px;}
.h4f{height:16.575349px;}
.h73{height:16.575390px;}
.h4a{height:17.016817px;}
.h7a{height:17.843899px;}
.h45{height:18.021499px;}
.h42{height:18.030470px;}
.h99{height:18.372656px;}
.h4d{height:18.674869px;}
.h56{height:18.674910px;}
.ha4{height:18.720000px;}
.h59{height:18.749428px;}
.ha3{height:19.080000px;}
.ha5{height:19.116000px;}
.h62{height:22.649999px;}
.h5c{height:22.650040px;}
.h70{height:22.650080px;}
.h83{height:22.724560px;}
.h78{height:22.725640px;}
.h66{height:22.725681px;}
.ha7{height:23.436000px;}
.hbf{height:24.025781px;}
.h94{height:24.825535px;}
.hb4{height:24.825576px;}
.h2b{height:26.999655px;}
.h91{height:27.559227px;}
.h19{height:27.580820px;}
.h9f{height:27.811648px;}
.h25{height:27.893435px;}
.h3b{height:28.003748px;}
.h4b{height:28.316373px;}
.hb5{height:29.140871px;}
.h8f{height:29.186340px;}
.h8d{height:29.200868px;}
.h17{height:29.209207px;}
.h15{height:29.223747px;}
.h9d{height:29.453664px;}
.h9b{height:29.468325px;}
.h23{height:29.540280px;}
.h21{height:29.554984px;}
.h38{height:29.657106px;}
.h36{height:29.671868px;}
.h61{height:29.678906px;}
.h75{height:29.686816px;}
.hba{height:29.724520px;}
.h7f{height:29.731691px;}
.hb8{height:29.739316px;}
.h7d{height:29.746490px;}
.h84{height:29.784488px;}
.h3e{height:29.850184px;}
.h48{height:29.865534px;}
.h51{height:29.924623px;}
.h46{height:29.988189px;}
.h43{height:30.003116px;}
.h60{height:30.476250px;}
.h52{height:30.671940px;}
.h1c{height:32.399166px;}
.ha8{height:32.760000px;}
.h2e{height:33.824169px;}
.h1f{height:35.332031px;}
.h7b{height:35.687798px;}
.h79{height:35.705562px;}
.h33{height:36.896701px;}
.h31{height:36.915066px;}
.ha9{height:37.800000px;}
.h1d{height:39.247383px;}
.hb{height:40.985156px;}
.h2c{height:41.253673px;}
.h88{height:41.727342px;}
.hae{height:42.051732px;}
.hab{height:42.072664px;}
.hd{height:42.086250px;}
.hbe{height:42.229688px;}
.h3f{height:42.688640px;}
.h92{height:43.938864px;}
.h1a{height:44.155468px;}
.h26{height:44.629716px;}
.hbc{height:44.934464px;}
.h82{height:44.997398px;}
.h5f{height:46.251562px;}
.h14{height:46.498495px;}
.h90{height:46.533041px;}
.h8e{height:46.556203px;}
.ha{height:46.615078px;}
.h6{height:46.638281px;}
.hb6{height:46.730811px;}
.h18{height:46.762433px;}
.h16{height:46.785710px;}
.h24{height:47.264681px;}
.h22{height:47.288207px;}
.h77{height:47.471354px;}
.h6e{height:47.494983px;}
.h81{height:47.526727px;}
.hbb{height:47.587422px;}
.h76{height:47.607980px;}
.hb9{height:47.611109px;}
.h64{height:47.631677px;}
.h68{height:47.653511px;}
.h80{height:47.654071px;}
.h7e{height:47.677791px;}
.h85{height:47.764615px;}
.h6b{height:47.790662px;}
.h35{height:47.850655px;}
.h2a{height:48.140676px;}
.h74{height:48.510309px;}
.h72{height:48.641601px;}
.haa{height:50.401028px;}
.hb7{height:51.826303px;}
.h7c{height:52.575594px;}
.ha2{height:53.704687px;}
.h97{height:55.006229px;}
.h1b{height:55.296254px;}
.ha0{height:55.488658px;}
.h11{height:55.756841px;}
.h27{height:55.785774px;}
.h3c{height:56.009646px;}
.h4c{height:56.497784px;}
.hb3{height:56.743816px;}
.ha6{height:56.916000px;}
.h50{height:57.321696px;}
.h55{height:57.757528px;}
.h95{height:58.282826px;}
.h98{height:58.359257px;}
.h96{height:58.359265px;}
.h9e{height:58.764741px;}
.h9c{height:58.793991px;}
.h5e{height:59.288118px;}
.h39{height:59.316488px;}
.h9{height:59.328281px;}
.h37{height:59.346014px;}
.h2{height:59.357813px;}
.h5d{height:59.541009px;}
.h89{height:59.574073px;}
.h49{height:59.588722px;}
.h87{height:59.603727px;}
.h86{height:59.707185px;}
.h8b{height:59.710022px;}
.h8a{height:59.739744px;}
.hb1{height:59.818144px;}
.h47{height:59.833446px;}
.h44{height:59.863229px;}
.hb0{height:60.094004px;}
.had{height:60.123917px;}
.h3a{height:60.518803px;}
.h58{height:60.536352px;}
.h57{height:60.536361px;}
.h4e{height:60.536394px;}
.h54{height:60.656325px;}
.h5a{height:60.732076px;}
.h5b{height:60.756315px;}
.h1e{height:62.796122px;}
.h6f{height:63.057868px;}
.h69{height:63.268342px;}
.h65{height:63.334348px;}
.h6c{height:63.545745px;}
.h6d{height:63.811624px;}
.h13{height:63.910051px;}
.h63{height:63.944898px;}
.h67{height:64.024614px;}
.h6a{height:64.158332px;}
.h7{height:65.010937px;}
.h41{height:66.598163px;}
.hf{height:66.757500px;}
.h20{height:67.650270px;}
.he{height:70.664062px;}
.h2d{height:70.723491px;}
.h28{height:72.562500px;}
.h40{height:73.100505px;}
.h34{height:73.796234px;}
.h32{height:73.832967px;}
.h8{height:76.279219px;}
.h4{height:76.317188px;}
.h5{height:76.824844px;}
.h9a{height:78.146481px;}
.h8c{height:78.148494px;}
.h53{height:80.473478px;}
.h3{height:80.944453px;}
.hc{height:84.172500px;}
.h93{height:88.008629px;}
.ha1{height:88.784059px;}
.h3d{height:89.610058px;}
.hbd{height:89.867815px;}
.h2f{height:94.960331px;}
.h30{height:95.609004px;}
.hb2{height:106.457530px;}
.haf{height:109.807718px;}
.hac{height:109.837630px;}
.h10{height:142.563328px;}
.h12{height:147.225633px;}
.h29{height:153.364760px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:15.151036px;}
.w12{width:16.500494px;}
.w11{width:16.575005px;}
.we{width:16.575015px;}
.w1f{width:18.675322px;}
.w20{width:18.675352px;}
.wc{width:27.000965px;}
.w13{width:35.999506px;}
.w25{width:44.324532px;}
.w9{width:44.324552px;}
.w37{width:48.276000px;}
.w36{width:48.600000px;}
.w21{width:52.576044px;}
.w1b{width:55.425004px;}
.w38{width:56.556000px;}
.w39{width:56.880000px;}
.w14{width:63.752166px;}
.w15{width:66.601223px;}
.w10{width:66.601254px;}
.w17{width:67.650222px;}
.w16{width:67.724762px;}
.w31{width:69.516000px;}
.w26{width:72.752042px;}
.w27{width:72.752052px;}
.w35{width:73.116000px;}
.w32{width:73.476000px;}
.w33{width:73.836000px;}
.w22{width:83.177257px;}
.w23{width:83.851587px;}
.w18{width:83.851607px;}
.w30{width:84.240000px;}
.w2f{width:84.276000px;}
.w19{width:96.148850px;}
.w1a{width:99.004278px;}
.w2b{width:102.636000px;}
.w2d{width:103.716000px;}
.w29{width:104.076000px;}
.w2a{width:105.552000px;}
.w1c{width:124.578607px;}
.w2c{width:147.996000px;}
.w34{width:154.875000px;}
.w1d{width:163.421886px;}
.w3b{width:175.657023px;}
.w3c{width:189.668831px;}
.w2e{width:218.265000px;}
.w5{width:225.751439px;}
.wb{width:236.856483px;}
.wd{width:248.395314px;}
.w6{width:255.973060px;}
.wa{width:256.348820px;}
.w3a{width:268.494014px;}
.w24{width:270.735599px;}
.w1e{width:294.454255px;}
.w28{width:313.583265px;}
.w7{width:335.923323px;}
.w8{width:336.894927px;}
.w4{width:360.350853px;}
.w3{width:572.409664px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x37{left:1.397660px;}
.x21{left:2.984005px;}
.x1a{left:5.430943px;}
.x96{left:7.605000px;}
.x71{left:8.702041px;}
.x60{left:9.963416px;}
.x35{left:11.545915px;}
.x18{left:13.453819px;}
.x6f{left:14.482021px;}
.x3f{left:15.669496px;}
.x8b{left:16.677300px;}
.x28{left:17.795273px;}
.x63{left:19.412016px;}
.x26{left:22.252313px;}
.x5f{left:25.564382px;}
.x8a{left:26.881779px;}
.x39{left:28.573292px;}
.x74{left:30.770445px;}
.x41{left:36.821799px;}
.x1c{left:38.941552px;}
.x55{left:40.067741px;}
.x2d{left:42.765172px;}
.xa8{left:45.329182px;}
.xac{left:47.208793px;}
.x2e{left:53.203317px;}
.x4f{left:55.042899px;}
.x1d{left:56.777232px;}
.x69{left:59.506825px;}
.x2a{left:61.248438px;}
.x20{left:62.787122px;}
.xad{left:64.659239px;}
.x76{left:66.778340px;}
.x43{left:68.634240px;}
.x16{left:69.799343px;}
.x29{left:72.702123px;}
.x3a{left:73.998303px;}
.x40{left:75.540755px;}
.x10{left:78.016344px;}
.xb{left:79.940999px;}
.x3e{left:81.109474px;}
.x8f{left:83.716468px;}
.x75{left:85.775677px;}
.x4a{left:87.455251px;}
.xa5{left:88.823030px;}
.x93{left:93.216134px;}
.x85{left:94.439671px;}
.x86{left:95.960615px;}
.x81{left:98.534429px;}
.x4d{left:100.088018px;}
.x38{left:103.037812px;}
.x19{left:105.162540px;}
.x3d{left:107.312243px;}
.x92{left:110.183566px;}
.x90{left:112.395017px;}
.x17{left:114.173345px;}
.x84{left:116.109871px;}
.x49{left:117.485813px;}
.x80{left:120.096951px;}
.x94{left:121.097185px;}
.x91{left:122.728093px;}
.x73{left:124.889688px;}
.x2{left:127.475987px;}
.x50{left:129.253163px;}
.x12{left:132.155987px;}
.x82{left:136.004889px;}
.x13{left:138.635987px;}
.x48{left:142.606856px;}
.xe{left:147.311987px;}
.xa6{left:151.154074px;}
.x8e{left:153.110867px;}
.xd{left:156.674987px;}
.x57{left:158.204990px;}
.x4e{left:160.408304px;}
.xa4{left:162.355647px;}
.x77{left:164.354990px;}
.xa{left:165.779990px;}
.x7{left:167.474987px;}
.x1b{left:168.604908px;}
.x6{left:171.794987px;}
.x42{left:174.263019px;}
.x15{left:175.517095px;}
.x83{left:177.713692px;}
.x4{left:178.994987px;}
.x4b{left:180.755388px;}
.xab{left:181.854961px;}
.x78{left:182.954987px;}
.x7b{left:185.954980px;}
.x4c{left:189.171274px;}
.x1{left:194.114987px;}
.x45{left:199.514987px;}
.x88{left:202.754987px;}
.x99{left:205.635000px;}
.x58{left:208.229980px;}
.x2b{left:209.690338px;}
.x47{left:212.557009px;}
.x24{left:213.713640px;}
.x59{left:216.929980px;}
.x27{left:220.638499px;}
.x25{left:225.095539px;}
.x89{left:230.834987px;}
.x5a{left:233.384987px;}
.x7c{left:238.424987px;}
.x2c{left:245.615876px;}
.x7d{left:263.354980px;}
.x5b{left:270.554980px;}
.xf{left:271.621227px;}
.x8d{left:280.605000px;}
.x5{left:284.504987px;}
.x5c{left:287.024987px;}
.x8{left:290.264987px;}
.x33{left:295.664987px;}
.x1f{left:297.554980px;}
.x23{left:305.804980px;}
.x9a{left:310.065000px;}
.x7f{left:313.379980px;}
.x72{left:317.354980px;}
.x6d{left:319.424987px;}
.x31{left:321.224987px;}
.x62{left:323.429980px;}
.x14{left:325.229980px;}
.x6e{left:337.529980px;}
.x7e{left:347.189987px;}
.x79{left:351.554959px;}
.xaa{left:359.129959px;}
.x46{left:367.379959px;}
.x7a{left:370.229987px;}
.x3c{left:375.329959px;}
.x9d{left:380.310000px;}
.x9f{left:386.790000px;}
.x64{left:391.109987px;}
.x54{left:392.579959px;}
.x52{left:394.379959px;}
.x8c{left:396.869987px;}
.x53{left:409.469987px;}
.x5d{left:423.554959px;}
.x97{left:431.820000px;}
.x34{left:438.629959px;}
.x3{left:451.979987px;}
.x9e{left:454.500000px;}
.x68{left:456.329959px;}
.x56{left:459.179987px;}
.xa0{left:460.620000px;}
.x36{left:482.939987px;}
.xa1{left:509.940000px;}
.x9b{left:529.050000px;}
.x98{left:535.170000px;}
.x6a{left:540.209987px;}
.xae{left:548.849987px;}
.x1e{left:551.009987px;}
.x22{left:553.529987px;}
.xa9{left:555.689987px;}
.xa2{left:559.290000px;}
.xa7{left:573.689987px;}
.x65{left:574.755000px;}
.x3b{left:578.009987px;}
.x87{left:584.129987px;}
.x95{left:594.209987px;}
.x32{left:605.729987px;}
.x44{left:612.254987px;}
.x9c{left:614.055000px;}
.x51{left:615.854987px;}
.x30{left:620.534987px;}
.x70{left:623.354959px;}
.x5e{left:626.579959px;}
.x11{left:632.054987px;}
.x2f{left:641.774987px;}
.x6b{left:651.779959px;}
.x66{left:664.379959px;}
.x61{left:690.374987px;}
.x67{left:728.204987px;}
.xc{left:738.284987px;}
.x6c{left:748.004987px;}
.x9{left:761.324987px;}
.xa3{left:776.444987px;}
@media print{
.v4{vertical-align:-62.826667pt;}
.va{vertical-align:-49.807418pt;}
.v9{vertical-align:-46.931392pt;}
.v3{vertical-align:-39.619201pt;}
.vc{vertical-align:-34.244204pt;}
.v2{vertical-align:-24.426667pt;}
.vd{vertical-align:-17.444878pt;}
.v5{vertical-align:-15.149697pt;}
.v6{vertical-align:-4.075019pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:13.978994pt;}
.v7{vertical-align:17.160810pt;}
.v1{vertical-align:24.320000pt;}
.vb{vertical-align:44.189968pt;}
.lse{letter-spacing:-1.824000pt;}
.ls3b{letter-spacing:-1.413333pt;}
.ls1f{letter-spacing:-1.280000pt;}
.ls47{letter-spacing:-0.834063pt;}
.ls21{letter-spacing:-0.544000pt;}
.ls6{letter-spacing:-0.445333pt;}
.ls8{letter-spacing:-0.406933pt;}
.ls4b{letter-spacing:-0.184902pt;}
.ls5{letter-spacing:0.000000pt;}
.ls40{letter-spacing:0.017920pt;}
.ls10{letter-spacing:0.022371pt;}
.ls0{letter-spacing:0.084480pt;}
.ls3{letter-spacing:0.104960pt;}
.ls50{letter-spacing:0.106667pt;}
.ls33{letter-spacing:0.158720pt;}
.ls1{letter-spacing:0.168960pt;}
.ls3f{letter-spacing:0.169387pt;}
.ls9{letter-spacing:0.412587pt;}
.ls3a{letter-spacing:0.544000pt;}
.ls4{letter-spacing:0.571307pt;}
.ls2{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.730027pt;}
.ls3c{letter-spacing:1.280000pt;}
.lsa{letter-spacing:1.413333pt;}
.ls7{letter-spacing:1.552000pt;}
.ls17{letter-spacing:4.892918pt;}
.ls32{letter-spacing:5.760000pt;}
.ls4e{letter-spacing:6.626531pt;}
.ls1b{letter-spacing:13.777232pt;}
.ls4f{letter-spacing:18.560000pt;}
.ls34{letter-spacing:18.688126pt;}
.ls30{letter-spacing:18.703401pt;}
.ls35{letter-spacing:20.016164pt;}
.ls28{letter-spacing:26.909244pt;}
.ls2c{letter-spacing:27.523143pt;}
.ls2a{letter-spacing:27.615009pt;}
.ls2b{letter-spacing:28.188200pt;}
.ls29{letter-spacing:28.282286pt;}
.ls27{letter-spacing:32.271179pt;}
.ls25{letter-spacing:32.378893pt;}
.ls23{letter-spacing:32.685485pt;}
.ls1e{letter-spacing:33.747892pt;}
.ls26{letter-spacing:34.411200pt;}
.ls24{letter-spacing:34.526057pt;}
.ls22{letter-spacing:42.046844pt;}
.ls41{letter-spacing:44.170667pt;}
.ls49{letter-spacing:51.622817pt;}
.ls16{letter-spacing:53.992907pt;}
.ls14{letter-spacing:55.808000pt;}
.ls4c{letter-spacing:56.325516pt;}
.ls48{letter-spacing:57.608071pt;}
.ls1a{letter-spacing:62.080000pt;}
.ls20{letter-spacing:62.834713pt;}
.ls4a{letter-spacing:63.112367pt;}
.ls15{letter-spacing:64.750507pt;}
.lsf{letter-spacing:71.680685pt;}
.ls18{letter-spacing:75.589751pt;}
.ls11{letter-spacing:97.097133pt;}
.ls2d{letter-spacing:103.432527pt;}
.ls2f{letter-spacing:119.914957pt;}
.ls1c{letter-spacing:143.625975pt;}
.ls2e{letter-spacing:147.262367pt;}
.ls1d{letter-spacing:152.483136pt;}
.ls3e{letter-spacing:162.192103pt;}
.lsd{letter-spacing:168.247770pt;}
.lsc{letter-spacing:191.524435pt;}
.ls46{letter-spacing:199.274549pt;}
.ls44{letter-spacing:204.959000pt;}
.ls31{letter-spacing:209.218324pt;}
.ls13{letter-spacing:213.464585pt;}
.ls42{letter-spacing:214.362251pt;}
.ls12{letter-spacing:215.305704pt;}
.ls3d{letter-spacing:274.901792pt;}
.ls19{letter-spacing:307.433077pt;}
.ls45{letter-spacing:311.422928pt;}
.ls43{letter-spacing:320.826180pt;}
.ls4d{letter-spacing:352.649035pt;}
.ls36{letter-spacing:396.405333pt;}
.ls37{letter-spacing:608.885333pt;}
.ls38{letter-spacing:620.405333pt;}
.ls39{letter-spacing:879.125333pt;}
.ws0{word-spacing:-26.560000pt;}
.ws1{word-spacing:-21.440000pt;}
.wsf{word-spacing:-18.654690pt;}
.ws4{word-spacing:-18.560000pt;}
.ws16{word-spacing:-16.013456pt;}
.ws6f{word-spacing:-16.000000pt;}
.ws5e{word-spacing:-15.264000pt;}
.ws5{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.313067pt;}
.ws2b{word-spacing:-14.176000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws3{word-spacing:-13.634667pt;}
.ws71{word-spacing:-13.457920pt;}
.ws5f{word-spacing:-13.306667pt;}
.wsa{word-spacing:-12.896000pt;}
.ws70{word-spacing:-12.800000pt;}
.ws22{word-spacing:-9.665709pt;}
.ws29{word-spacing:-6.944846pt;}
.ws67{word-spacing:-6.257049pt;}
.ws36{word-spacing:-1.894339pt;}
.ws3e{word-spacing:-1.677620pt;}
.ws38{word-spacing:-1.630013pt;}
.ws3a{word-spacing:-1.449871pt;}
.ws7{word-spacing:0.000000pt;}
.ws55{word-spacing:0.690552pt;}
.ws40{word-spacing:2.781094pt;}
.ws4f{word-spacing:2.951596pt;}
.ws48{word-spacing:3.451259pt;}
.ws58{word-spacing:3.674205pt;}
.ws52{word-spacing:4.231527pt;}
.ws1f{word-spacing:4.272906pt;}
.ws44{word-spacing:4.445300pt;}
.ws51{word-spacing:4.707574pt;}
.ws4e{word-spacing:4.760468pt;}
.ws2a{word-spacing:4.977514pt;}
.ws5b{word-spacing:5.257788pt;}
.ws4d{word-spacing:5.681121pt;}
.ws5a{word-spacing:5.818263pt;}
.ws4b{word-spacing:6.154030pt;}
.ws49{word-spacing:6.525036pt;}
.ws57{word-spacing:6.645630pt;}
.ws53{word-spacing:7.631985pt;}
.ws3d{word-spacing:7.722009pt;}
.ws46{word-spacing:7.988573pt;}
.ws54{word-spacing:8.475298pt;}
.ws5c{word-spacing:9.425135pt;}
.ws6d{word-spacing:9.702244pt;}
.ws3f{word-spacing:10.495882pt;}
.ws5d{word-spacing:10.596621pt;}
.ws20{word-spacing:10.857361pt;}
.ws45{word-spacing:11.140821pt;}
.ws27{word-spacing:11.331510pt;}
.ws66{word-spacing:11.835142pt;}
.ws3c{word-spacing:11.992840pt;}
.ws43{word-spacing:12.177177pt;}
.ws4c{word-spacing:12.444360pt;}
.ws50{word-spacing:12.691864pt;}
.ws61{word-spacing:12.835908pt;}
.ws4a{word-spacing:12.901871pt;}
.ws6c{word-spacing:13.540020pt;}
.ws1c{word-spacing:15.647593pt;}
.ws59{word-spacing:16.134553pt;}
.ws56{word-spacing:19.425392pt;}
.ws10{word-spacing:19.487028pt;}
.ws6a{word-spacing:19.934512pt;}
.ws25{word-spacing:22.066625pt;}
.ws6e{word-spacing:25.395031pt;}
.ws12{word-spacing:25.654352pt;}
.ws24{word-spacing:26.946223pt;}
.ws41{word-spacing:28.587061pt;}
.ws64{word-spacing:30.560169pt;}
.ws1b{word-spacing:32.833198pt;}
.ws37{word-spacing:34.406482pt;}
.ws26{word-spacing:37.297912pt;}
.ws6b{word-spacing:43.127956pt;}
.ws28{word-spacing:44.129982pt;}
.ws1e{word-spacing:45.740666pt;}
.ws1a{word-spacing:53.897266pt;}
.ws47{word-spacing:58.813172pt;}
.ws19{word-spacing:62.287067pt;}
.wsb{word-spacing:64.577252pt;}
.ws68{word-spacing:68.827535pt;}
.ws2d{word-spacing:69.590227pt;}
.ws69{word-spacing:69.809843pt;}
.wsd{word-spacing:71.035695pt;}
.ws42{word-spacing:74.669146pt;}
.ws1d{word-spacing:74.789299pt;}
.ws23{word-spacing:76.493781pt;}
.ws33{word-spacing:76.764335pt;}
.ws2f{word-spacing:77.020558pt;}
.wse{word-spacing:77.405589pt;}
.ws39{word-spacing:77.756006pt;}
.ws35{word-spacing:82.731761pt;}
.ws31{word-spacing:83.007901pt;}
.ws60{word-spacing:101.016219pt;}
.ws65{word-spacing:102.387997pt;}
.ws2c{word-spacing:106.738659pt;}
.ws34{word-spacing:108.591514pt;}
.ws17{word-spacing:108.683864pt;}
.ws30{word-spacing:108.953969pt;}
.ws32{word-spacing:110.421454pt;}
.ws2e{word-spacing:110.790017pt;}
.ws21{word-spacing:128.030865pt;}
.ws3b{word-spacing:130.927742pt;}
.ws14{word-spacing:158.037659pt;}
.ws62{word-spacing:158.624081pt;}
.ws11{word-spacing:186.330409pt;}
.ws63{word-spacing:284.739211pt;}
.wsc{word-spacing:296.596742pt;}
.ws13{word-spacing:305.068358pt;}
.ws8{word-spacing:453.127336pt;}
.ws18{word-spacing:564.117078pt;}
.ws15{word-spacing:564.291139pt;}
.ws9{word-spacing:578.519208pt;}
._1e{margin-left:-1008.272704pt;}
._1b{margin-left:-842.577932pt;}
._3a{margin-left:-616.253140pt;}
._89{margin-left:-557.619175pt;}
._63{margin-left:-446.938977pt;}
._8b{margin-left:-433.774129pt;}
._58{margin-left:-300.152428pt;}
._55{margin-left:-256.401460pt;}
._5a{margin-left:-215.730804pt;}
._6f{margin-left:-166.512997pt;}
._59{margin-left:-160.617561pt;}
._5e{margin-left:-134.831994pt;}
._56{margin-left:-117.613378pt;}
._54{margin-left:-88.899093pt;}
._53{margin-left:-82.272376pt;}
._52{margin-left:-75.958056pt;}
._32{margin-left:-68.270291pt;}
._47{margin-left:-23.653139pt;}
._88{margin-left:-9.600000pt;}
._78{margin-left:-6.400000pt;}
._72{margin-left:-5.236324pt;}
._3{margin-left:-2.580480pt;}
._0{margin-left:-1.344000pt;}
._1{width:1.236480pt;}
._2{width:2.178560pt;}
._4{width:3.690667pt;}
._7{width:4.989013pt;}
._6{width:6.128640pt;}
._8{width:7.042560pt;}
._5{width:8.225280pt;}
._9{width:9.946027pt;}
._a{width:11.217067pt;}
._b{width:12.564053pt;}
._f{width:13.780480pt;}
._7b{width:14.945996pt;}
._e{width:16.053760pt;}
._4f{width:16.964693pt;}
._c{width:17.889280pt;}
._d{width:18.821120pt;}
._12{width:19.880960pt;}
._10{width:21.294080pt;}
._11{width:22.835200pt;}
._13{width:23.895040pt;}
._31{width:25.111040pt;}
._68{width:26.470246pt;}
._50{width:27.594240pt;}
._51{width:28.590080pt;}
._75{width:29.803707pt;}
._5b{width:30.715475pt;}
._5c{width:32.259816pt;}
._70{width:33.541922pt;}
._17{width:34.744747pt;}
._6e{width:35.806811pt;}
._66{width:37.680043pt;}
._7d{width:38.633602pt;}
._69{width:39.634080pt;}
._7e{width:42.226735pt;}
._4a{width:43.807944pt;}
._1f{width:47.717332pt;}
._24{width:49.552729pt;}
._27{width:50.837588pt;}
._7c{width:52.506572pt;}
._21{width:53.808158pt;}
._5f{width:55.164305pt;}
._37{width:56.488853pt;}
._48{width:58.667877pt;}
._49{width:60.235923pt;}
._41{width:62.373684pt;}
._2e{width:63.600521pt;}
._2f{width:64.542751pt;}
._2c{width:67.573380pt;}
._4c{width:69.265594pt;}
._39{width:70.481040pt;}
._71{width:73.004769pt;}
._43{width:73.959056pt;}
._3e{width:74.872794pt;}
._8d{width:78.720000pt;}
._62{width:80.619394pt;}
._67{width:82.433441pt;}
._45{width:88.320000pt;}
._2d{width:90.282760pt;}
._60{width:94.998960pt;}
._22{width:96.799642pt;}
._65{width:98.014157pt;}
._23{width:100.388009pt;}
._20{width:103.795151pt;}
._15{width:106.230427pt;}
._64{width:108.560594pt;}
._2b{width:110.155246pt;}
._61{width:111.728843pt;}
._1d{width:114.316851pt;}
._46{width:118.400000pt;}
._5d{width:121.993120pt;}
._80{width:123.873280pt;}
._16{width:128.000000pt;}
._57{width:129.706040pt;}
._4d{width:132.480000pt;}
._6d{width:135.040000pt;}
._40{width:140.119082pt;}
._81{width:141.036109pt;}
._36{width:160.755617pt;}
._1c{width:162.830421pt;}
._38{width:165.169041pt;}
._42{width:166.407875pt;}
._26{width:169.387247pt;}
._77{width:174.880000pt;}
._4e{width:176.847787pt;}
._3c{width:177.818880pt;}
._87{width:180.134117pt;}
._3f{width:186.126728pt;}
._86{width:187.022611pt;}
._7a{width:189.115705pt;}
._8a{width:190.623869pt;}
._84{width:195.973751pt;}
._6a{width:197.327204pt;}
._1a{width:200.026053pt;}
._6b{width:201.614319pt;}
._82{width:204.980271pt;}
._19{width:206.964688pt;}
._6c{width:207.875633pt;}
._29{width:220.700219pt;}
._44{width:221.715919pt;}
._33{width:229.496141pt;}
._3d{width:264.769119pt;}
._8c{width:272.999582pt;}
._76{width:275.800092pt;}
._83{width:306.411846pt;}
._18{width:312.414761pt;}
._7f{width:318.833158pt;}
._74{width:325.191145pt;}
._2a{width:339.304749pt;}
._35{width:343.079996pt;}
._73{width:357.806481pt;}
._85{width:367.611612pt;}
._25{width:405.073218pt;}
._79{width:406.994923pt;}
._3b{width:419.810219pt;}
._30{width:440.278355pt;}
._34{width:444.334472pt;}
._4b{width:445.832580pt;}
._28{width:456.390387pt;}
._14{width:476.139185pt;}
.fs61{font-size:10.240000pt;}
.fs42{font-size:16.169152pt;}
.fs24{font-size:16.330084pt;}
.fs52{font-size:16.640000pt;}
.fs60{font-size:21.760000pt;}
.fs5a{font-size:26.392705pt;}
.fs4c{font-size:26.447044pt;}
.fse{font-size:26.467765pt;}
.fs53{font-size:26.689278pt;}
.fs14{font-size:26.767765pt;}
.fs1e{font-size:26.873625pt;}
.fs34{font-size:26.880000pt;}
.fs37{font-size:26.900547pt;}
.fs5c{font-size:26.934712pt;}
.fs43{font-size:26.941210pt;}
.fs46{font-size:26.989052pt;}
.fs3a{font-size:26.990335pt;}
.fs25{font-size:27.173634pt;}
.fs2b{font-size:27.779385pt;}
.fs27{font-size:28.660277pt;}
.fs13{font-size:32.000000pt;}
.fs41{font-size:32.338305pt;}
.fs1c{font-size:33.433745pt;}
.fs11{font-size:35.546110pt;}
.fs9{font-size:37.120000pt;}
.fs18{font-size:37.363194pt;}
.fs4a{font-size:37.811004pt;}
.fs56{font-size:38.104949pt;}
.fs22{font-size:38.662834pt;}
.fs4d{font-size:42.165662pt;}
.fs6{font-size:42.240000pt;}
.fs5b{font-size:42.323804pt;}
.fsf{font-size:42.373525pt;}
.fs15{font-size:42.828634pt;}
.fs3e{font-size:43.015910pt;}
.fs5d{font-size:43.121084pt;}
.fs36{font-size:43.139713pt;}
.fs39{font-size:43.159487pt;}
.fs44{font-size:43.181478pt;}
.fs47{font-size:43.281647pt;}
.fs3c{font-size:43.283704pt;}
.fs57{font-size:43.511553pt;}
.fs17{font-size:43.600709pt;}
.fs40{font-size:43.935484pt;}
.fs3f{font-size:44.054394pt;}
.fs5{font-size:44.800000pt;}
.fs45{font-size:45.608733pt;}
.fsb{font-size:48.640000pt;}
.fsc{font-size:50.498623pt;}
.fs5f{font-size:51.200000pt;}
.fs4f{font-size:52.786391pt;}
.fs10{font-size:53.064712pt;}
.fs54{font-size:53.249351pt;}
.fs16{font-size:53.534477pt;}
.fs1f{font-size:53.749314pt;}
.fs0{font-size:53.760000pt;}
.fs32{font-size:53.925920pt;}
.fs49{font-size:53.982723pt;}
.fs48{font-size:54.103341pt;}
.fs4b{font-size:54.105913pt;}
.fs26{font-size:54.217753pt;}
.fs58{font-size:54.453856pt;}
.fs2a{font-size:55.008415pt;}
.fs2c{font-size:55.426658pt;}
.fs51{font-size:56.004104pt;}
.fs50{font-size:56.004112pt;}
.fs8{font-size:56.320000pt;}
.fs12{font-size:56.874055pt;}
.fs33{font-size:56.895480pt;}
.fs28{font-size:57.183952pt;}
.fs59{font-size:57.404116pt;}
.fsd{font-size:57.882934pt;}
.fs20{font-size:58.076499pt;}
.fs2f{font-size:58.093340pt;}
.fs2e{font-size:58.093349pt;}
.fs29{font-size:58.093381pt;}
.fs2d{font-size:58.208472pt;}
.fs30{font-size:58.281166pt;}
.fs31{font-size:58.304426pt;}
.fs3{font-size:58.880000pt;}
.fs3d{font-size:61.236435pt;}
.fs35{font-size:61.364330pt;}
.fs38{font-size:61.440829pt;}
.fs3b{font-size:61.569151pt;}
.fs7{font-size:64.000000pt;}
.fs19{font-size:64.053824pt;}
.fs23{font-size:66.239626pt;}
.fs1d{font-size:66.870057pt;}
.fs4{font-size:69.120000pt;}
.fsa{font-size:74.240000pt;}
.fs4e{font-size:84.456942pt;}
.fs55{font-size:85.201079pt;}
.fs2{font-size:85.760000pt;}
.fs21{font-size:85.993744pt;}
.fs5e{font-size:86.241099pt;}
.fs1a{font-size:91.128101pt;}
.fs1b{font-size:91.750596pt;}
.fs1{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y11a{bottom:2.376399pt;}
.y252{bottom:2.817704pt;}
.yf6{bottom:2.837701pt;}
.y1b8{bottom:3.009675pt;}
.y1eb{bottom:3.040896pt;}
.y175{bottom:3.185369pt;}
.y198{bottom:3.185399pt;}
.y18b{bottom:3.185430pt;}
.y1ba{bottom:3.195861pt;}
.y17d{bottom:3.196062pt;}
.y1cd{bottom:3.196063pt;}
.y22b{bottom:3.200000pt;}
.y186{bottom:3.247270pt;}
.y19a{bottom:3.247304pt;}
.y19e{bottom:3.258143pt;}
.y179{bottom:3.258170pt;}
.y1ca{bottom:3.258171pt;}
.ycf{bottom:3.285765pt;}
.y22d{bottom:3.520000pt;}
.y22f{bottom:3.546667pt;}
.y18d{bottom:3.742734pt;}
.y190{bottom:3.772505pt;}
.ydc{bottom:3.870943pt;}
.y1b9{bottom:4.002604pt;}
.y1ec{bottom:4.033883pt;}
.y1f7{bottom:4.033889pt;}
.y79{bottom:4.136748pt;}
.y8c{bottom:4.190448pt;}
.y95{bottom:4.190450pt;}
.y91{bottom:4.190468pt;}
.yc2{bottom:4.197620pt;}
.y11e{bottom:4.323230pt;}
.ye3{bottom:4.849414pt;}
.ye1{bottom:4.849429pt;}
.y24a{bottom:4.849448pt;}
.y1e4{bottom:4.917386pt;}
.y1d7{bottom:4.917391pt;}
.y1e0{bottom:4.917392pt;}
.y9a{bottom:5.111045pt;}
.y237{bottom:5.120000pt;}
.y1ad{bottom:5.245039pt;}
.y1b1{bottom:5.245040pt;}
.y1b3{bottom:5.245041pt;}
.y7f{bottom:5.251779pt;}
.y258{bottom:5.556579pt;}
.y25b{bottom:5.556581pt;}
.y210{bottom:5.665971pt;}
.y209{bottom:5.665974pt;}
.yfd{bottom:5.728059pt;}
.y173{bottom:6.216240pt;}
.y189{bottom:6.216295pt;}
.y17b{bottom:6.237040pt;}
.y184{bottom:6.247063pt;}
.y1fd{bottom:6.258196pt;}
.y1ff{bottom:6.258201pt;}
.y1fe{bottom:6.258208pt;}
.y253{bottom:6.258227pt;}
.y177{bottom:6.267968pt;}
.ybd{bottom:6.678001pt;}
.y174{bottom:6.680117pt;}
.y150{bottom:6.680138pt;}
.y197{bottom:6.680144pt;}
.y151{bottom:6.680152pt;}
.y18a{bottom:6.680161pt;}
.y1bb{bottom:6.702125pt;}
.y17c{bottom:6.702455pt;}
.y1cc{bottom:6.702472pt;}
.y1ce{bottom:6.702484pt;}
.y185{bottom:6.710940pt;}
.y199{bottom:6.710972pt;}
.y19b{bottom:6.710976pt;}
.y19d{bottom:6.733373pt;}
.y19f{bottom:6.733375pt;}
.y178{bottom:6.733382pt;}
.y1c9{bottom:6.733398pt;}
.y1cb{bottom:6.733409pt;}
.y119{bottom:6.898417pt;}
.y137{bottom:6.898445pt;}
.y136{bottom:6.898446pt;}
.y13b{bottom:6.925972pt;}
.y13a{bottom:6.925973pt;}
.y114{bottom:7.415735pt;}
.y111{bottom:7.415739pt;}
.y109{bottom:7.415741pt;}
.ya7{bottom:7.516718pt;}
.y8e{bottom:7.618945pt;}
.ydd{bottom:8.020559pt;}
.y24c{bottom:8.382175pt;}
.y11f{bottom:8.613433pt;}
.ydf{bottom:9.349687pt;}
.ye0{bottom:9.388484pt;}
.y25d{bottom:9.917809pt;}
.yfe{bottom:10.007617pt;}
.ye2{bottom:10.047900pt;}
.ye4{bottom:10.047905pt;}
.y1ab{bottom:11.306617pt;}
.yc1{bottom:11.734108pt;}
.y251{bottom:12.189976pt;}
.y106{bottom:12.317210pt;}
.yf5{bottom:12.940844pt;}
.y90{bottom:14.094644pt;}
.yf9{bottom:14.218808pt;}
.y249{bottom:14.484726pt;}
.y99{bottom:15.238108pt;}
.y238{bottom:15.360000pt;}
.ya6{bottom:15.497924pt;}
.y208{bottom:15.685965pt;}
.y11d{bottom:16.038956pt;}
.y1e7{bottom:16.089594pt;}
.y1d6{bottom:16.152650pt;}
.y1df{bottom:16.152651pt;}
.y213{bottom:16.966104pt;}
.y25f{bottom:16.992560pt;}
.yf7{bottom:17.088104pt;}
.y97{bottom:17.523756pt;}
.y93{bottom:17.523766pt;}
.y1de{bottom:18.580031pt;}
.y235{bottom:20.160000pt;}
.y24b{bottom:20.361758pt;}
.y25e{bottom:20.514252pt;}
.y25c{bottom:20.514263pt;}
.y105{bottom:21.801891pt;}
.yb9{bottom:23.277003pt;}
.y8b{bottom:23.999917pt;}
.y94{bottom:23.999919pt;}
.y8f{bottom:23.999937pt;}
.yc0{bottom:24.422442pt;}
.y98{bottom:25.363989pt;}
.y257{bottom:26.555560pt;}
.y10d{bottom:26.607428pt;}
.y1aa{bottom:26.696542pt;}
.ybb{bottom:26.743567pt;}
.y96{bottom:27.459246pt;}
.y92{bottom:27.459255pt;}
.y8d{bottom:27.459266pt;}
.y1dd{bottom:27.854643pt;}
.y248{bottom:27.876390pt;}
.y20c{bottom:28.137837pt;}
.y259{bottom:29.075297pt;}
.y1ae{bottom:29.177332pt;}
.y1b0{bottom:30.182629pt;}
.y1b2{bottom:30.182642pt;}
.y1ac{bottom:30.182646pt;}
.y1af{bottom:30.182650pt;}
.y113{bottom:30.808800pt;}
.y110{bottom:30.808802pt;}
.y108{bottom:30.808807pt;}
.y10e{bottom:30.808808pt;}
.y1e5{bottom:31.278213pt;}
.y1d9{bottom:31.278224pt;}
.y1e2{bottom:31.278228pt;}
.y24d{bottom:31.409250pt;}
.y211{bottom:32.235054pt;}
.y20b{bottom:32.235060pt;}
.y20e{bottom:32.235062pt;}
.yf8{bottom:32.305040pt;}
.ybf{bottom:34.471006pt;}
.y25a{bottom:35.148719pt;}
.y104{bottom:35.710389pt;}
.y1a9{bottom:36.213163pt;}
.y234{bottom:36.800000pt;}
.y1e3{bottom:38.000522pt;}
.y1d5{bottom:38.000528pt;}
.y1dc{bottom:38.000529pt;}
.y20f{bottom:39.693454pt;}
.y207{bottom:39.693456pt;}
.y10b{bottom:40.611992pt;}
.y107{bottom:41.025295pt;}
.y10f{bottom:43.062793pt;}
.y10c{bottom:43.062795pt;}
.y112{bottom:43.062797pt;}
.ybc{bottom:43.311007pt;}
.ybe{bottom:44.678695pt;}
.yba{bottom:46.777571pt;}
.y102{bottom:47.264165pt;}
.y10a{bottom:47.264167pt;}
.y103{bottom:48.981840pt;}
.y1e6{bottom:49.173503pt;}
.y1d4{bottom:49.235271pt;}
.y1db{bottom:49.235272pt;}
.y206{bottom:49.681675pt;}
.y212{bottom:50.993586pt;}
.y1da{bottom:51.662653pt;}
.y1d8{bottom:52.627960pt;}
.y1e1{bottom:52.627967pt;}
.y20a{bottom:53.810669pt;}
.y20d{bottom:53.810673pt;}
.y2{bottom:84.192000pt;}
.y38{bottom:85.152000pt;}
.y37{bottom:102.752000pt;}
.y2bd{bottom:120.672000pt;}
.yc5{bottom:120.992000pt;}
.y36{bottom:121.312000pt;}
.y165{bottom:122.592000pt;}
.y226{bottom:125.152000pt;}
.y6c{bottom:130.272000pt;}
.y133{bottom:132.832000pt;}
.y2bc{bottom:137.626667pt;}
.yc4{bottom:137.946667pt;}
.y35{bottom:138.266667pt;}
.y164{bottom:139.226667pt;}
.y285{bottom:141.146667pt;}
.y225{bottom:141.786667pt;}
.y1c6{bottom:144.346667pt;}
.yda{bottom:145.626667pt;}
.ydb{bottom:145.733333pt;}
.y6b{bottom:146.906667pt;}
.y132{bottom:149.786667pt;}
.y87{bottom:151.706667pt;}
.y2bb{bottom:152.666667pt;}
.yc3{bottom:154.906667pt;}
.yb8{bottom:155.066667pt;}
.y34{bottom:155.226667pt;}
.y163{bottom:156.186667pt;}
.y224{bottom:158.746667pt;}
.y246{bottom:160.026667pt;}
.y1c5{bottom:161.306667pt;}
.y6a{bottom:163.866667pt;}
.y131{bottom:166.746667pt;}
.y86{bottom:168.346667pt;}
.y284{bottom:171.546667pt;}
.y33{bottom:171.866667pt;}
.yd9{bottom:172.546667pt;}
.y162{bottom:173.186667pt;}
.y245{bottom:173.826667pt;}
.y223{bottom:175.746667pt;}
.y2ba{bottom:177.346667pt;}
.y1c4{bottom:178.306667pt;}
.y69{bottom:180.866667pt;}
.y130{bottom:183.426667pt;}
.y85{bottom:185.346667pt;}
.y283{bottom:185.666667pt;}
.y32{bottom:188.866667pt;}
.yd8{bottom:189.506667pt;}
.y161{bottom:189.826667pt;}
.y244{bottom:191.426667pt;}
.y222{bottom:192.386667pt;}
.y2b9{bottom:192.706667pt;}
.y1c3{bottom:194.946667pt;}
.y282{bottom:196.226667pt;}
.y68{bottom:197.506667pt;}
.y12f{bottom:200.386667pt;}
.y84{bottom:202.306667pt;}
.y31{bottom:205.826667pt;}
.yd7{bottom:206.466667pt;}
.y160{bottom:206.786667pt;}
.y2b8{bottom:208.066667pt;}
.y243{bottom:209.026667pt;}
.y221{bottom:209.346667pt;}
.y1c2{bottom:210.626667pt;}
.y281{bottom:211.586667pt;}
.y67{bottom:214.466667pt;}
.y12e{bottom:217.346667pt;}
.yb7{bottom:217.986667pt;}
.y83{bottom:218.946667pt;}
.y2b7{bottom:221.506667pt;}
.y30{bottom:222.466667pt;}
.y1c1{bottom:222.786667pt;}
.yd6{bottom:223.426667pt;}
.y15f{bottom:223.746667pt;}
.y220{bottom:226.306667pt;}
.y242{bottom:226.626667pt;}
.y280{bottom:226.946667pt;}
.y2b6{bottom:229.506667pt;}
.y66{bottom:231.426667pt;}
.y82{bottom:233.986667pt;}
.y12d{bottom:234.306667pt;}
.yb6{bottom:234.626667pt;}
.y1c0{bottom:238.146667pt;}
.y2f{bottom:239.426667pt;}
.yd5{bottom:240.066667pt;}
.y15e{bottom:240.706667pt;}
.y27f{bottom:242.306667pt;}
.y21f{bottom:242.946667pt;}
.y241{bottom:244.226667pt;}
.y2b5{bottom:244.866667pt;}
.y65{bottom:248.066667pt;}
.y81{bottom:249.346667pt;}
.y1bf{bottom:250.306667pt;}
.y12c{bottom:250.946667pt;}
.yb5{bottom:251.586667pt;}
.y2e{bottom:255.426667pt;}
.yd4{bottom:256.706667pt;}
.y15d{bottom:257.346667pt;}
.y27e{bottom:257.666667pt;}
.y21e{bottom:259.906667pt;}
.y2b4{bottom:260.226667pt;}
.y80{bottom:261.506667pt;}
.y7e{bottom:261.600000pt;}
.y64{bottom:265.026667pt;}
.y1be{bottom:266.946667pt;}
.y12b{bottom:267.906667pt;}
.y2d{bottom:268.546667pt;}
.yd3{bottom:268.866667pt;}
.y2b3{bottom:273.666667pt;}
.y15c{bottom:274.306667pt;}
.y27d{bottom:274.946667pt;}
.y21d{bottom:276.866667pt;}
.y240{bottom:279.106667pt;}
.y2b2{bottom:281.666667pt;}
.y63{bottom:281.986667pt;}
.y1bc{bottom:284.226667pt;}
.y1bd{bottom:284.333333pt;}
.y12a{bottom:284.893333pt;}
.yb4{bottom:285.213333pt;}
.y2c{bottom:285.533333pt;}
.y15b{bottom:291.293333pt;}
.y27c{bottom:293.213333pt;}
.y21c{bottom:293.853333pt;}
.y23f{bottom:296.733333pt;}
.y2b1{bottom:297.053333pt;}
.y62{bottom:298.973333pt;}
.y129{bottom:301.533333pt;}
.yb3{bottom:302.173333pt;}
.y2b{bottom:302.493333pt;}
.y1b6{bottom:307.293333pt;}
.y1b7{bottom:307.333297pt;}
.y15a{bottom:307.933333pt;}
.y27b{bottom:310.173333pt;}
.y21b{bottom:310.493333pt;}
.y61{bottom:315.613333pt;}
.y128{bottom:318.493333pt;}
.y2a{bottom:319.133333pt;}
.y159{bottom:324.893333pt;}
.y27a{bottom:326.813333pt;}
.y21a{bottom:327.133333pt;}
.y1b5{bottom:328.733333pt;}
.y60{bottom:332.573333pt;}
.y2b0{bottom:333.853333pt;}
.y23e{bottom:334.493333pt;}
.y127{bottom:335.453333pt;}
.y29{bottom:336.093333pt;}
.y1b4{bottom:339.613333pt;}
.y1a8{bottom:339.666630pt;}
.y158{bottom:341.853333pt;}
.y279{bottom:343.773333pt;}
.y219{bottom:345.053333pt;}
.y2af{bottom:349.213333pt;}
.y5f{bottom:349.533333pt;}
.yb2{bottom:351.133333pt;}
.y126{bottom:352.093333pt;}
.y28{bottom:353.053333pt;}
.y157{bottom:358.493333pt;}
.y278{bottom:360.733333pt;}
.yb1{bottom:362.013333pt;}
.y2ae{bottom:362.333333pt;}
.y218{bottom:364.253333pt;}
.y5e{bottom:366.173333pt;}
.y23d{bottom:366.813333pt;}
.y125{bottom:369.053333pt;}
.y27{bottom:369.693333pt;}
.y217{bottom:375.133333pt;}
.y156{bottom:375.453333pt;}
.y277{bottom:377.373333pt;}
.yb0{bottom:378.973333pt;}
.y5d{bottom:383.133333pt;}
.y2ad{bottom:384.413333pt;}
.y26{bottom:385.693333pt;}
.y124{bottom:386.013333pt;}
.y1a7{bottom:389.533333pt;}
.y216{bottom:391.133333pt;}
.y155{bottom:392.413333pt;}
.y276{bottom:394.013333pt;}
.y7d{bottom:395.613333pt;}
.y2ac{bottom:398.533333pt;}
.y25{bottom:398.853333pt;}
.y23c{bottom:399.173333pt;}
.y5c{bottom:400.133333pt;}
.y123{bottom:403.013333pt;}
.y215{bottom:405.573333pt;}
.y1a6{bottom:406.213333pt;}
.y2ab{bottom:409.093333pt;}
.y154{bottom:409.413333pt;}
.y7c{bottom:411.013333pt;}
.y275{bottom:411.333333pt;}
.yaf{bottom:412.613333pt;}
.y23b{bottom:412.933333pt;}
.y24{bottom:415.813333pt;}
.y5b{bottom:417.093333pt;}
.y122{bottom:419.653333pt;}
.y205{bottom:422.533297pt;}
.y214{bottom:422.533333pt;}
.y1a5{bottom:423.173333pt;}
.y2aa{bottom:424.133333pt;}
.y153{bottom:426.053333pt;}
.y7b{bottom:426.373333pt;}
.yae{bottom:429.573333pt;}
.y23a{bottom:430.533333pt;}
.y23{bottom:432.773333pt;}
.y5a{bottom:433.733333pt;}
.y121{bottom:436.613333pt;}
.y2a9{bottom:437.573333pt;}
.y78{bottom:438.533297pt;}
.y7a{bottom:438.533333pt;}
.y1a4{bottom:440.133333pt;}
.y152{bottom:443.013333pt;}
.y2a8{bottom:444.293333pt;}
.yad{bottom:446.533333pt;}
.y239{bottom:448.133333pt;}
.y22{bottom:449.733333pt;}
.y59{bottom:450.693333pt;}
.y120{bottom:453.573333pt;}
.y1a3{bottom:456.773333pt;}
.y2a7{bottom:459.653333pt;}
.y14e{bottom:459.973333pt;}
.y14f{bottom:459.999964pt;}
.yac{bottom:463.173333pt;}
.y274{bottom:463.493333pt;}
.y233{bottom:465.733333pt;}
.y21{bottom:466.373333pt;}
.y58{bottom:467.653333pt;}
.y11c{bottom:470.533333pt;}
.y1a2{bottom:473.733333pt;}
.yab{bottom:480.133333pt;}
.y14d{bottom:483.013333pt;}
.y20{bottom:483.333333pt;}
.y2a6{bottom:483.973333pt;}
.y57{bottom:484.293333pt;}
.yd2{bottom:488.773333pt;}
.y1a1{bottom:489.093333pt;}
.y204{bottom:493.253333pt;}
.y236{bottom:495.493333pt;}
.yaa{bottom:497.093333pt;}
.y2a5{bottom:499.333333pt;}
.y1a0{bottom:499.653333pt;}
.y14c{bottom:499.973333pt;}
.y1f{bottom:500.293333pt;}
.y56{bottom:501.253333pt;}
.y203{bottom:507.333333pt;}
.ya9{bottom:513.760000pt;}
.y273{bottom:514.080000pt;}
.y2a4{bottom:514.720000pt;}
.y1e{bottom:515.360000pt;}
.y19c{bottom:516.933297pt;}
.y11b{bottom:516.960000pt;}
.y55{bottom:518.240000pt;}
.yd1{bottom:519.840000pt;}
.y232{bottom:520.480000pt;}
.y202{bottom:524.320000pt;}
.y1d{bottom:528.480000pt;}
.ya8{bottom:530.720000pt;}
.ya5{bottom:530.733297pt;}
.y272{bottom:531.040000pt;}
.yce{bottom:533.266630pt;}
.yd0{bottom:533.280000pt;}
.y14b{bottom:533.600000pt;}
.y117{bottom:533.920000pt;}
.y118{bottom:533.933297pt;}
.y54{bottom:534.880000pt;}
.y2a3{bottom:537.760000pt;}
.y196{bottom:539.999964pt;}
.y195{bottom:540.000000pt;}
.y201{bottom:540.960000pt;}
.y271{bottom:547.680000pt;}
.y1c{bottom:548.000000pt;}
.y14a{bottom:550.560000pt;}
.y53{bottom:551.840000pt;}
.y231{bottom:552.800000pt;}
.y2a2{bottom:553.120000pt;}
.y116{bottom:553.760000pt;}
.y200{bottom:557.920000pt;}
.y1b{bottom:559.840000pt;}
.ya4{bottom:562.720000pt;}
.y194{bottom:563.040000pt;}
.y270{bottom:564.640000pt;}
.y230{bottom:566.560000pt;}
.y149{bottom:567.520000pt;}
.y77{bottom:568.480000pt;}
.y52{bottom:568.800000pt;}
.y115{bottom:570.720000pt;}
.y101{bottom:570.733297pt;}
.y1fc{bottom:574.866630pt;}
.y1a{bottom:574.880000pt;}
.ya3{bottom:579.360000pt;}
.y193{bottom:580.000000pt;}
.y2a1{bottom:581.280000pt;}
.y26f{bottom:581.600000pt;}
.y148{bottom:584.160000pt;}
.y76{bottom:585.440000pt;}
.y51{bottom:585.760000pt;}
.y2a0{bottom:586.720000pt;}
.y19{bottom:589.280000pt;}
.ya2{bottom:596.320000pt;}
.y192{bottom:596.640000pt;}
.y26e{bottom:598.240000pt;}
.y1fb{bottom:599.840000pt;}
.y147{bottom:601.120000pt;}
.y18{bottom:601.760000pt;}
.y75{bottom:602.080000pt;}
.y50{bottom:602.400000pt;}
.ya1{bottom:613.280000pt;}
.y191{bottom:613.600000pt;}
.y26d{bottom:614.880000pt;}
.y1fa{bottom:616.800000pt;}
.y29f{bottom:617.440000pt;}
.y146{bottom:618.080000pt;}
.y74{bottom:619.040000pt;}
.y4f{bottom:619.360000pt;}
.y17{bottom:620.640000pt;}
.ya0{bottom:629.946667pt;}
.y18f{bottom:630.533261pt;}
.y18e{bottom:630.586667pt;}
.y29e{bottom:631.226667pt;}
.y26c{bottom:632.826667pt;}
.y100{bottom:633.146667pt;}
.y16{bottom:633.466667pt;}
.y1f9{bottom:633.786667pt;}
.y145{bottom:634.746667pt;}
.y4e{bottom:636.346667pt;}
.y22e{bottom:636.986667pt;}
.y29d{bottom:640.506667pt;}
.y9f{bottom:646.906667pt;}
.y18c{bottom:648.466667pt;}
.y15{bottom:648.506667pt;}
.yff{bottom:650.106667pt;}
.y1f8{bottom:650.746667pt;}
.y144{bottom:651.706667pt;}
.y4d{bottom:652.986667pt;}
.y26b{bottom:653.626667pt;}
.y22c{bottom:654.266667pt;}
.y29c{bottom:655.866667pt;}
.y14{bottom:663.866667pt;}
.y188{bottom:666.399928pt;}
.y187{bottom:666.426667pt;}
.yfc{bottom:667.066594pt;}
.yfb{bottom:667.066667pt;}
.y1f6{bottom:667.666594pt;}
.y1f5{bottom:667.706667pt;}
.y143{bottom:668.666667pt;}
.y4c{bottom:669.946667pt;}
.y26a{bottom:670.586667pt;}
.y22a{bottom:671.866667pt;}
.ycd{bottom:673.146667pt;}
.y29b{bottom:674.106667pt;}
.y13{bottom:679.226667pt;}
.y9e{bottom:680.506667pt;}
.y142{bottom:685.626667pt;}
.y4b{bottom:686.906667pt;}
.y269{bottom:687.226667pt;}
.y183{bottom:689.466667pt;}
.ycc{bottom:689.786667pt;}
.y1f4{bottom:690.746667pt;}
.y229{bottom:692.986667pt;}
.y12{bottom:694.586667pt;}
.yf4{bottom:696.800000pt;}
.yfa{bottom:696.826667pt;}
.y9d{bottom:697.466667pt;}
.y141{bottom:702.266667pt;}
.y29a{bottom:702.906667pt;}
.y4a{bottom:703.546667pt;}
.y268{bottom:704.186667pt;}
.ycb{bottom:706.746667pt;}
.y1f3{bottom:707.386667pt;}
.y11{bottom:709.946667pt;}
.y299{bottom:710.906667pt;}
.y182{bottom:712.506667pt;}
.y9c{bottom:714.426667pt;}
.y140{bottom:719.226667pt;}
.y49{bottom:720.506667pt;}
.y267{bottom:721.146667pt;}
.yca{bottom:723.706667pt;}
.y1f2{bottom:724.346667pt;}
.y10{bottom:725.306667pt;}
.y298{bottom:726.266667pt;}
.y181{bottom:729.466667pt;}
.y8a{bottom:731.333261pt;}
.y9b{bottom:731.386667pt;}
.y13f{bottom:736.226667pt;}
.y48{bottom:737.506667pt;}
.y266{bottom:737.826667pt;}
.y297{bottom:739.746667pt;}
.yc9{bottom:740.386667pt;}
.yf{bottom:740.706667pt;}
.y1f1{bottom:741.346667pt;}
.y228{bottom:741.986667pt;}
.yf3{bottom:742.626667pt;}
.y180{bottom:746.466667pt;}
.y13e{bottom:752.866667pt;}
.y47{bottom:754.466667pt;}
.y265{bottom:754.786667pt;}
.ye{bottom:756.066667pt;}
.yc8{bottom:757.346667pt;}
.y1f0{bottom:758.306667pt;}
.y227{bottom:758.946667pt;}
.yf2{bottom:759.586667pt;}
.y296{bottom:761.826667pt;}
.y17f{bottom:763.106667pt;}
.y13d{bottom:769.826667pt;}
.y46{bottom:770.786667pt;}
.y73{bottom:771.106667pt;}
.yd{bottom:771.746667pt;}
.yc7{bottom:773.986667pt;}
.y1ef{bottom:774.946667pt;}
.y295{bottom:775.586667pt;}
.y89{bottom:775.906667pt;}
.yf1{bottom:776.226667pt;}
.y17e{bottom:780.066667pt;}
.y294{bottom:786.146667pt;}
.y13c{bottom:786.786667pt;}
.y72{bottom:788.066667pt;}
.y264{bottom:788.386667pt;}
.y45{bottom:788.706667pt;}
.yc{bottom:789.026667pt;}
.yc6{bottom:791.266667pt;}
.y1ee{bottom:791.906667pt;}
.y88{bottom:792.546667pt;}
.yf0{bottom:793.186667pt;}
.y176{bottom:796.933261pt;}
.y17a{bottom:797.026667pt;}
.y293{bottom:801.506667pt;}
.y139{bottom:803.333261pt;}
.y138{bottom:803.426667pt;}
.y71{bottom:805.026667pt;}
.y263{bottom:805.346667pt;}
.yb{bottom:808.546667pt;}
.y1ed{bottom:808.866667pt;}
.y44{bottom:809.506667pt;}
.yef{bottom:810.146667pt;}
.y292{bottom:816.866667pt;}
.y172{bottom:820.333333pt;}
.y171{bottom:820.386667pt;}
.y70{bottom:821.666667pt;}
.y262{bottom:822.306667pt;}
.y135{bottom:823.533261pt;}
.y134{bottom:823.586667pt;}
.y1ea{bottom:825.733261pt;}
.y1e9{bottom:825.826667pt;}
.y43{bottom:826.466667pt;}
.yee{bottom:827.106667pt;}
.y291{bottom:830.946667pt;}
.ya{bottom:831.906667pt;}
.y6f{bottom:838.626667pt;}
.y261{bottom:839.266667pt;}
.y170{bottom:841.506667pt;}
.y42{bottom:843.426667pt;}
.yed{bottom:843.746667pt;}
.y1d3{bottom:848.799928pt;}
.y1e8{bottom:848.893333pt;}
.y9{bottom:850.173333pt;}
.y16f{bottom:850.813333pt;}
.y6e{bottom:855.293333pt;}
.y256{bottom:855.866594pt;}
.y260{bottom:855.933333pt;}
.y290{bottom:856.893333pt;}
.y41{bottom:860.093333pt;}
.yec{bottom:860.733333pt;}
.y8{bottom:862.973333pt;}
.y16e{bottom:867.773333pt;}
.y28f{bottom:870.333333pt;}
.y6d{bottom:873.213333pt;}
.y40{bottom:877.053333pt;}
.yeb{bottom:877.693333pt;}
.y28e{bottom:878.333333pt;}
.y7{bottom:882.813333pt;}
.y16d{bottom:884.733333pt;}
.y28d{bottom:893.693333pt;}
.y3f{bottom:894.013333pt;}
.yea{bottom:894.333333pt;}
.y16c{bottom:901.693333pt;}
.y6{bottom:902.653333pt;}
.y255{bottom:905.213333pt;}
.y28c{bottom:909.053333pt;}
.y3e{bottom:910.653333pt;}
.ye9{bottom:911.293333pt;}
.y16b{bottom:918.333333pt;}
.y1d2{bottom:921.213333pt;}
.y250{bottom:922.066594pt;}
.y254{bottom:922.173333pt;}
.y5{bottom:925.373333pt;}
.y3d{bottom:927.613333pt;}
.ye8{bottom:928.253333pt;}
.y28b{bottom:928.893333pt;}
.y16a{bottom:935.293333pt;}
.y1d1{bottom:938.173333pt;}
.y28a{bottom:944.253333pt;}
.y3c{bottom:944.573333pt;}
.ye7{bottom:944.893333pt;}
.y24f{bottom:947.133333pt;}
.y169{bottom:952.253333pt;}
.y1d0{bottom:955.133333pt;}
.y4{bottom:955.453333pt;}
.y289{bottom:957.693333pt;}
.y3b{bottom:961.253333pt;}
.ye6{bottom:961.893333pt;}
.y247{bottom:964.333333pt;}
.y24e{bottom:964.453333pt;}
.y288{bottom:965.733333pt;}
.y168{bottom:968.933333pt;}
.y1cf{bottom:971.813333pt;}
.y3a{bottom:978.213333pt;}
.yde{bottom:978.733261pt;}
.ye5{bottom:978.853333pt;}
.y287{bottom:981.093333pt;}
.y167{bottom:983.973333pt;}
.y3{bottom:985.573333pt;}
.y1c8{bottom:988.933261pt;}
.y1c7{bottom:989.093333pt;}
.y166{bottom:993.893333pt;}
.y39{bottom:995.173333pt;}
.y286{bottom:996.453333pt;}
.y1{bottom:1026.533333pt;}
.hc0{height:10.050000pt;}
.h71{height:14.733607pt;}
.h4f{height:14.733643pt;}
.h73{height:14.733680pt;}
.h4a{height:15.126059pt;}
.h7a{height:15.861244pt;}
.h45{height:16.019111pt;}
.h42{height:16.027084pt;}
.h99{height:16.331250pt;}
.h4d{height:16.599884pt;}
.h56{height:16.599920pt;}
.ha4{height:16.640000pt;}
.h59{height:16.666158pt;}
.ha3{height:16.960000pt;}
.ha5{height:16.992000pt;}
.h62{height:20.133332pt;}
.h5c{height:20.133369pt;}
.h70{height:20.133405pt;}
.h83{height:20.199609pt;}
.h78{height:20.200569pt;}
.h66{height:20.200605pt;}
.ha7{height:20.832000pt;}
.hbf{height:21.356250pt;}
.h94{height:22.067142pt;}
.hb4{height:22.067178pt;}
.h2b{height:23.999693pt;}
.h91{height:24.497091pt;}
.h19{height:24.516284pt;}
.h9f{height:24.721465pt;}
.h25{height:24.794165pt;}
.h3b{height:24.892220pt;}
.h4b{height:25.170110pt;}
.hb5{height:25.902997pt;}
.h8f{height:25.943414pt;}
.h8d{height:25.956327pt;}
.h17{height:25.963740pt;}
.h15{height:25.976664pt;}
.h9d{height:26.181035pt;}
.h9b{height:26.194067pt;}
.h23{height:26.258027pt;}
.h21{height:26.271097pt;}
.h38{height:26.361872pt;}
.h36{height:26.374993pt;}
.h61{height:26.381250pt;}
.h75{height:26.388280pt;}
.hba{height:26.421795pt;}
.h7f{height:26.428170pt;}
.hb8{height:26.434947pt;}
.h7d{height:26.441325pt;}
.h84{height:26.475101pt;}
.h3e{height:26.533497pt;}
.h48{height:26.547141pt;}
.h51{height:26.599664pt;}
.h46{height:26.656168pt;}
.h43{height:26.669436pt;}
.h60{height:27.090000pt;}
.h52{height:27.263947pt;}
.h1c{height:28.799259pt;}
.ha8{height:29.120000pt;}
.h2e{height:30.065928pt;}
.h1f{height:31.406250pt;}
.h7b{height:31.722488pt;}
.h79{height:31.738278pt;}
.h33{height:32.797067pt;}
.h31{height:32.813392pt;}
.ha9{height:33.600000pt;}
.h1d{height:34.886563pt;}
.hb{height:36.431250pt;}
.h2c{height:36.669931pt;}
.h88{height:37.090970pt;}
.hae{height:37.379317pt;}
.hab{height:37.397923pt;}
.hd{height:37.410000pt;}
.hbe{height:37.537500pt;}
.h3f{height:37.945458pt;}
.h92{height:39.056768pt;}
.h1a{height:39.249305pt;}
.h26{height:39.670859pt;}
.hbc{height:39.941746pt;}
.h82{height:39.997687pt;}
.h5f{height:41.112500pt;}
.h14{height:41.331996pt;}
.h90{height:41.362703pt;}
.h8e{height:41.383292pt;}
.ha{height:41.435625pt;}
.h6{height:41.456250pt;}
.hb6{height:41.538499pt;}
.h18{height:41.566607pt;}
.h16{height:41.587297pt;}
.h24{height:42.013049pt;}
.h22{height:42.033962pt;}
.h77{height:42.196759pt;}
.h6e{height:42.217763pt;}
.h81{height:42.245980pt;}
.hbb{height:42.299930pt;}
.h76{height:42.318204pt;}
.hb9{height:42.320986pt;}
.h64{height:42.339269pt;}
.h68{height:42.358677pt;}
.h80{height:42.359174pt;}
.h7e{height:42.380259pt;}
.h85{height:42.457436pt;}
.h6b{height:42.480588pt;}
.h35{height:42.533916pt;}
.h2a{height:42.791712pt;}
.h74{height:43.120275pt;}
.h72{height:43.236979pt;}
.haa{height:44.800914pt;}
.hb7{height:46.067825pt;}
.h7c{height:46.733861pt;}
.ha2{height:47.737500pt;}
.h97{height:48.894426pt;}
.h1b{height:49.152226pt;}
.ha0{height:49.323251pt;}
.h11{height:49.561637pt;}
.h27{height:49.587355pt;}
.h3c{height:49.786352pt;}
.h4c{height:50.220252pt;}
.hb3{height:50.438947pt;}
.ha6{height:50.592000pt;}
.h50{height:50.952619pt;}
.h55{height:51.340025pt;}
.h95{height:51.806956pt;}
.h98{height:51.874895pt;}
.h96{height:51.874902pt;}
.h9e{height:52.235325pt;}
.h9c{height:52.261326pt;}
.h5e{height:52.700549pt;}
.h39{height:52.725767pt;}
.h9{height:52.736250pt;}
.h37{height:52.752012pt;}
.h2{height:52.762500pt;}
.h5d{height:52.925341pt;}
.h89{height:52.954732pt;}
.h49{height:52.967753pt;}
.h87{height:52.981091pt;}
.h86{height:53.073053pt;}
.h8b{height:53.075576pt;}
.h8a{height:53.101994pt;}
.hb1{height:53.171684pt;}
.h47{height:53.185286pt;}
.h44{height:53.211759pt;}
.hb0{height:53.416893pt;}
.had{height:53.443481pt;}
.h3a{height:53.794492pt;}
.h58{height:53.810091pt;}
.h57{height:53.810099pt;}
.h4e{height:53.810128pt;}
.h54{height:53.916734pt;}
.h5a{height:53.984068pt;}
.h5b{height:54.005613pt;}
.h1e{height:55.818775pt;}
.h6f{height:56.051438pt;}
.h69{height:56.238526pt;}
.h65{height:56.297198pt;}
.h6c{height:56.485106pt;}
.h6d{height:56.721444pt;}
.h13{height:56.808934pt;}
.h63{height:56.839910pt;}
.h67{height:56.910768pt;}
.h6a{height:57.029629pt;}
.h7{height:57.787500pt;}
.h41{height:59.198367pt;}
.hf{height:59.340000pt;}
.h20{height:60.133573pt;}
.he{height:62.812500pt;}
.h2d{height:62.865325pt;}
.h28{height:64.500000pt;}
.h40{height:64.978227pt;}
.h34{height:65.596653pt;}
.h32{height:65.629304pt;}
.h8{height:67.803750pt;}
.h4{height:67.837500pt;}
.h5{height:68.288750pt;}
.h9a{height:69.463539pt;}
.h8c{height:69.465328pt;}
.h53{height:71.531980pt;}
.h3{height:71.950625pt;}
.hc{height:74.820000pt;}
.h93{height:78.229892pt;}
.ha1{height:78.919164pt;}
.h3d{height:79.653385pt;}
.hbd{height:79.882502pt;}
.h2f{height:84.409183pt;}
.h30{height:84.985781pt;}
.hb2{height:94.628915pt;}
.haf{height:97.606860pt;}
.hac{height:97.633449pt;}
.h10{height:126.722958pt;}
.h12{height:130.867229pt;}
.h29{height:136.324231pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:13.467587pt;}
.w12{width:14.667106pt;}
.w11{width:14.733338pt;}
.we{width:14.733347pt;}
.w1f{width:16.600286pt;}
.w20{width:16.600313pt;}
.wc{width:24.000858pt;}
.w13{width:31.999561pt;}
.w25{width:39.399584pt;}
.w9{width:39.399602pt;}
.w37{width:42.912000pt;}
.w36{width:43.200000pt;}
.w21{width:46.734261pt;}
.w1b{width:49.266671pt;}
.w38{width:50.272000pt;}
.w39{width:50.560000pt;}
.w14{width:56.668592pt;}
.w15{width:59.201088pt;}
.w10{width:59.201115pt;}
.w17{width:60.133531pt;}
.w16{width:60.199789pt;}
.w31{width:61.792000pt;}
.w26{width:64.668482pt;}
.w27{width:64.668491pt;}
.w35{width:64.992000pt;}
.w32{width:65.312000pt;}
.w33{width:65.632000pt;}
.w22{width:73.935340pt;}
.w23{width:74.534744pt;}
.w18{width:74.534762pt;}
.w30{width:74.880000pt;}
.w2f{width:74.912000pt;}
.w19{width:85.465645pt;}
.w1a{width:88.003803pt;}
.w2b{width:91.232000pt;}
.w2d{width:92.192000pt;}
.w29{width:92.512000pt;}
.w2a{width:93.824000pt;}
.w1c{width:110.736540pt;}
.w2c{width:131.552000pt;}
.w34{width:137.666667pt;}
.w1d{width:145.263899pt;}
.w3b{width:156.139576pt;}
.w3c{width:168.594516pt;}
.w2e{width:194.013333pt;}
.w5{width:200.667945pt;}
.wb{width:210.539096pt;}
.wd{width:220.795835pt;}
.w6{width:227.531609pt;}
.wa{width:227.865618pt;}
.w3a{width:238.661346pt;}
.w24{width:240.653866pt;}
.w1e{width:261.737115pt;}
.w28{width:278.740680pt;}
.w7{width:298.598509pt;}
.w8{width:299.462158pt;}
.w4{width:320.311869pt;}
.w3{width:508.808590pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x37{left:1.242364pt;}
.x21{left:2.652449pt;}
.x1a{left:4.827505pt;}
.x96{left:6.760000pt;}
.x71{left:7.735148pt;}
.x60{left:8.856370pt;}
.x35{left:10.263036pt;}
.x18{left:11.958950pt;}
.x6f{left:12.872907pt;}
.x3f{left:13.928441pt;}
.x8b{left:14.824267pt;}
.x28{left:15.818020pt;}
.x63{left:17.255126pt;}
.x26{left:19.779833pt;}
.x5f{left:22.723895pt;}
.x8a{left:23.894914pt;}
.x39{left:25.398481pt;}
.x74{left:27.351507pt;}
.x41{left:32.730488pt;}
.x1c{left:34.614713pt;}
.x55{left:35.615769pt;}
.x2d{left:38.013486pt;}
.xa8{left:40.292606pt;}
.xac{left:41.963372pt;}
.x2e{left:47.291837pt;}
.x4f{left:48.927021pt;}
.x1d{left:50.468651pt;}
.x69{left:52.894956pt;}
.x2a{left:54.443056pt;}
.x20{left:55.810776pt;}
.xad{left:57.474879pt;}
.x76{left:59.358525pt;}
.x43{left:61.008214pt;}
.x16{left:62.043861pt;}
.x29{left:64.624109pt;}
.x3a{left:65.776269pt;}
.x40{left:67.147337pt;}
.x10{left:69.347861pt;}
.xb{left:71.058666pt;}
.x3e{left:72.097311pt;}
.x8f{left:74.414638pt;}
.x75{left:76.245046pt;}
.x4a{left:77.738001pt;}
.xa5{left:78.953804pt;}
.x93{left:82.858786pt;}
.x85{left:83.946375pt;}
.x86{left:85.298324pt;}
.x81{left:87.586159pt;}
.x4d{left:88.967127pt;}
.x38{left:91.589166pt;}
.x19{left:93.477814pt;}
.x3d{left:95.388661pt;}
.x92{left:97.940947pt;}
.x90{left:99.906682pt;}
.x17{left:101.487417pt;}
.x84{left:103.208774pt;}
.x49{left:104.431834pt;}
.x80{left:106.752845pt;}
.x94{left:107.641942pt;}
.x91{left:109.091638pt;}
.x73{left:111.013056pt;}
.x2{left:113.311988pt;}
.x50{left:114.891700pt;}
.x12{left:117.471988pt;}
.x82{left:120.893235pt;}
.x13{left:123.231988pt;}
.x48{left:126.761650pt;}
.xe{left:130.943988pt;}
.xa6{left:134.359177pt;}
.x8e{left:136.098549pt;}
.xd{left:139.266655pt;}
.x57{left:140.626658pt;}
.x4e{left:142.585160pt;}
.xa4{left:144.316131pt;}
.x77{left:146.093324pt;}
.xa{left:147.359991pt;}
.x7{left:148.866655pt;}
.x1b{left:149.871029pt;}
.x6{left:152.706655pt;}
.x42{left:154.900461pt;}
.x15{left:156.015195pt;}
.x83{left:157.967727pt;}
.x4{left:159.106655pt;}
.x4b{left:160.671456pt;}
.xab{left:161.648854pt;}
.x78{left:162.626655pt;}
.x7b{left:165.293315pt;}
.x4c{left:168.152243pt;}
.x1{left:172.546655pt;}
.x45{left:177.346655pt;}
.x88{left:180.226655pt;}
.x99{left:182.786667pt;}
.x58{left:185.093315pt;}
.x2b{left:186.391411pt;}
.x47{left:188.939564pt;}
.x24{left:189.967680pt;}
.x59{left:192.826649pt;}
.x27{left:196.123110pt;}
.x25{left:200.084924pt;}
.x89{left:205.186655pt;}
.x5a{left:207.453322pt;}
.x7c{left:211.933322pt;}
.x2c{left:218.325223pt;}
.x7d{left:234.093315pt;}
.x5b{left:240.493315pt;}
.xf{left:241.441091pt;}
.x8d{left:249.426667pt;}
.x5{left:252.893322pt;}
.x5c{left:255.133322pt;}
.x8{left:258.013322pt;}
.x33{left:262.813322pt;}
.x1f{left:264.493315pt;}
.x23{left:271.826649pt;}
.x9a{left:275.613333pt;}
.x7f{left:278.559982pt;}
.x72{left:282.093315pt;}
.x6d{left:283.933322pt;}
.x31{left:285.533322pt;}
.x62{left:287.493315pt;}
.x14{left:289.093315pt;}
.x6e{left:300.026649pt;}
.x7e{left:308.613322pt;}
.x79{left:312.493297pt;}
.xaa{left:319.226630pt;}
.x46{left:326.559964pt;}
.x7a{left:329.093322pt;}
.x3c{left:333.626630pt;}
.x9d{left:338.053333pt;}
.x9f{left:343.813333pt;}
.x64{left:347.653322pt;}
.x54{left:348.959964pt;}
.x52{left:350.559964pt;}
.x8c{left:352.773322pt;}
.x53{left:363.973322pt;}
.x5d{left:376.493297pt;}
.x97{left:383.840000pt;}
.x34{left:389.893297pt;}
.x3{left:401.759988pt;}
.x9e{left:404.000000pt;}
.x68{left:405.626630pt;}
.x56{left:408.159988pt;}
.xa0{left:409.440000pt;}
.x36{left:429.279988pt;}
.xa1{left:453.280000pt;}
.x9b{left:470.266667pt;}
.x98{left:475.706667pt;}
.x6a{left:480.186655pt;}
.xae{left:487.866655pt;}
.x1e{left:489.786655pt;}
.x22{left:492.026655pt;}
.xa9{left:493.946655pt;}
.xa2{left:497.146667pt;}
.xa7{left:509.946655pt;}
.x65{left:510.893333pt;}
.x3b{left:513.786655pt;}
.x87{left:519.226655pt;}
.x95{left:528.186655pt;}
.x32{left:538.426655pt;}
.x44{left:544.226655pt;}
.x9c{left:545.826667pt;}
.x51{left:547.426655pt;}
.x30{left:551.586655pt;}
.x70{left:554.093297pt;}
.x5e{left:556.959964pt;}
.x11{left:561.826655pt;}
.x2f{left:570.466655pt;}
.x6b{left:579.359964pt;}
.x66{left:590.559964pt;}
.x61{left:613.666655pt;}
.x67{left:647.293322pt;}
.xc{left:656.253322pt;}
.x6c{left:664.893322pt;}
.x9{left:676.733322pt;}
.xa3{left:690.173322pt;}
}




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