
    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_6cb3b2306a8ea6793c7d03a4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f524bc6f9b08ca5d6fcc6e0c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5b1ee6fae703e3e19dcda0b2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_21c184e9615c2a2bcb3df14a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_30da45dbc4dae25056a2f99f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_075fe481892ccd0d2173f8b0.woff2')format("woff");}.ff8{font-family:ff8;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;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff11;src:url('chunks/assets/font_c3f23592b7cdc5c9270aaafa.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_adfbf87e45e4f27985d9348e.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;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;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
.ff15{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff16;src:url('chunks/assets/font_9e80caae845bc4fd2a89ba2d.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_8f5847daa9b953a1a87c59fd.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.432000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_a5e6a80e39ccb1912e0493f8.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_b2e98d362970d834d6238002.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_c0362f89e6d8dbfb7f285251.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_aa673f4536c530c002320f83.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_13d437317926e520417c0722.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_116212a86eb525bd590199a4.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.722000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_df8d26ad7c8b64ee01837745.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.432000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_c8f99517fee7befb91900506.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:2.399000;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:ff20;src:url('chunks/assets/font_893f3da024296e0353f7502e.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.666000;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;}
.ff21{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff22;src:url('chunks/assets/font_539f450f0e69d6bb6593d84b.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.804000;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:ff23;src:url('chunks/assets/font_7853ee19590b168c6cf5b1bf.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.839000;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:ff24;src:url('chunks/assets/font_088180cfd57b23e693c1ceec.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.432000;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:ff25;src:url('chunks/assets/font_e88475f60151ea38c85c3bd3.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.727000;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:ff26;src:url('chunks/assets/font_43be8944c9cd300e4c6a5ea7.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.432000;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:ff27;src:url('chunks/assets/font_824b4c86d04d84881cc2fb6d.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.303000;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:ff28;src:url('chunks/assets/font_824b4c86d04d84881cc2fb6d.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.303000;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:ff29;src:url('chunks/assets/font_5fc4221c2280685276302a4e.woff2')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_535d26f1a03cb5b5cb5ec6c5.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.151893,-0.198566,0.198566,0.151893,0,0);-ms-transform:matrix(0.151893,-0.198566,0.198566,0.151893,0,0);-webkit-transform:matrix(0.151893,-0.198566,0.198566,0.151893,0,0);}
.m3{transform:matrix(0.189032,0.163606,-0.163606,0.189032,0,0);-ms-transform:matrix(0.189032,0.163606,-0.163606,0.189032,0,0);-webkit-transform:matrix(0.189032,0.163606,-0.163606,0.189032,0,0);}
.m5{transform:matrix(0.235847,-0.082922,0.082922,0.235847,0,0);-ms-transform:matrix(0.235847,-0.082922,0.082922,0.235847,0,0);-webkit-transform:matrix(0.235847,-0.082922,0.082922,0.235847,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1b{vertical-align:-18.930000px;}
.v14{vertical-align:-15.798000px;}
.vb{vertical-align:-14.388759px;}
.v13{vertical-align:-13.320000px;}
.v1{vertical-align:-11.880066px;}
.v9{vertical-align:-9.816000px;}
.v1e{vertical-align:-8.111855px;}
.v1d{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:6.360000px;}
.vd{vertical-align:7.668000px;}
.v4{vertical-align:9.468000px;}
.v1c{vertical-align:10.662000px;}
.v1a{vertical-align:13.614000px;}
.v3{vertical-align:16.182000px;}
.vc{vertical-align:18.336000px;}
.v12{vertical-align:19.356000px;}
.v8{vertical-align:22.548000px;}
.v2{vertical-align:23.754000px;}
.v5{vertical-align:27.024000px;}
.v10{vertical-align:30.162000px;}
.va{vertical-align:31.842000px;}
.v17{vertical-align:34.458000px;}
.v15{vertical-align:44.280000px;}
.v11{vertical-align:47.034000px;}
.vf{vertical-align:49.086000px;}
.v6{vertical-align:53.160000px;}
.v19{vertical-align:62.184000px;}
.v16{vertical-align:68.034000px;}
.v7{vertical-align:93.096000px;}
.v18{vertical-align:137.190000px;}
.lsc6{letter-spacing:-0.725760px;}
.lsc4{letter-spacing:-0.241200px;}
.lsc5{letter-spacing:-0.045360px;}
.ls0{letter-spacing:0.000000px;}
.ls5c{letter-spacing:0.000141px;}
.ls5e{letter-spacing:0.000499px;}
.lsb5{letter-spacing:0.000532px;}
.ls8{letter-spacing:0.000780px;}
.ls69{letter-spacing:0.001062px;}
.ls89{letter-spacing:0.001068px;}
.lsa5{letter-spacing:0.001289px;}
.ls6{letter-spacing:0.001405px;}
.lsa{letter-spacing:0.001641px;}
.ls23{letter-spacing:0.001739px;}
.ls4f{letter-spacing:0.002124px;}
.ls84{letter-spacing:0.002147px;}
.lsc{letter-spacing:0.002149px;}
.lsb{letter-spacing:0.002682px;}
.ls5b{letter-spacing:0.002694px;}
.ls26{letter-spacing:0.002698px;}
.ls16{letter-spacing:0.002700px;}
.ls5{letter-spacing:0.002706px;}
.ls34{letter-spacing:0.002712px;}
.ls63{letter-spacing:0.003056px;}
.ls9f{letter-spacing:0.003537px;}
.ls81{letter-spacing:0.003543px;}
.ls3{letter-spacing:0.003791px;}
.lsb2{letter-spacing:0.004113px;}
.ls24{letter-spacing:0.004200px;}
.ls97{letter-spacing:0.004332px;}
.ls91{letter-spacing:0.005236px;}
.ls65{letter-spacing:0.005282px;}
.ls58{letter-spacing:0.006141px;}
.lsc2{letter-spacing:0.132480px;}
.lsc1{letter-spacing:0.269280px;}
.ls66{letter-spacing:0.295956px;}
.ls72{letter-spacing:0.301956px;}
.lsc3{letter-spacing:0.331200px;}
.lsc0{letter-spacing:0.349920px;}
.ls13{letter-spacing:0.402601px;}
.lsa9{letter-spacing:0.508322px;}
.ls64{letter-spacing:1.406022px;}
.ls6f{letter-spacing:1.712056px;}
.ls87{letter-spacing:1.718056px;}
.ls2b{letter-spacing:1.810884px;}
.ls40{letter-spacing:1.816884px;}
.lsa4{letter-spacing:1.869791px;}
.ls15{letter-spacing:1.928661px;}
.ls9{letter-spacing:2.349791px;}
.ls70{letter-spacing:2.355791px;}
.ls5a{letter-spacing:2.875066px;}
.ls8a{letter-spacing:2.982960px;}
.lsb4{letter-spacing:2.984375px;}
.ls86{letter-spacing:2.984915px;}
.ls50{letter-spacing:2.986200px;}
.ls19{letter-spacing:2.987236px;}
.ls59{letter-spacing:2.988141px;}
.lsb0{letter-spacing:2.988557px;}
.ls33{letter-spacing:2.988960px;}
.ls1b{letter-spacing:2.989289px;}
.ls38{letter-spacing:2.989739px;}
.lsb1{letter-spacing:2.990375px;}
.ls83{letter-spacing:2.990915px;}
.ls1a{letter-spacing:2.993236px;}
.lsb3{letter-spacing:2.993543px;}
.ls5d{letter-spacing:2.994141px;}
.ls3a{letter-spacing:2.995739px;}
.ls4{letter-spacing:3.061739px;}
.lsa3{letter-spacing:3.067739px;}
.ls7{letter-spacing:3.150557px;}
.ls7d{letter-spacing:3.556088px;}
.lsaa{letter-spacing:3.562088px;}
.ls18{letter-spacing:3.818153px;}
.ls14{letter-spacing:4.274554px;}
.ls39{letter-spacing:4.700056px;}
.ls12{letter-spacing:4.706056px;}
.ls7b{letter-spacing:4.838149px;}
.ls7c{letter-spacing:4.841412px;}
.ls1c{letter-spacing:5.743488px;}
.lsf{letter-spacing:7.131229px;}
.lsd{letter-spacing:7.137229px;}
.ls6d{letter-spacing:7.174869px;}
.ls82{letter-spacing:7.262554px;}
.ls85{letter-spacing:7.268554px;}
.ls96{letter-spacing:7.564344px;}
.ls8f{letter-spacing:9.664344px;}
.ls90{letter-spacing:9.665412px;}
.ls9e{letter-spacing:9.791412px;}
.ls9d{letter-spacing:9.800149px;}
.lsa1{letter-spacing:10.042177px;}
.lsa0{letter-spacing:10.048177px;}
.lsb8{letter-spacing:10.267599px;}
.lsb9{letter-spacing:10.312040px;}
.lsba{letter-spacing:10.312047px;}
.ls68{letter-spacing:10.904706px;}
.ls4e{letter-spacing:10.904712px;}
.ls8b{letter-spacing:10.909068px;}
.ls67{letter-spacing:10.910706px;}
.ls3c{letter-spacing:10.910712px;}
.ls98{letter-spacing:10.912332px;}
.lsa7{letter-spacing:11.840712px;}
.lsb7{letter-spacing:11.964031px;}
.ls53{letter-spacing:12.406344px;}
.ls2a{letter-spacing:12.941412px;}
.ls51{letter-spacing:12.946344px;}
.ls2f{letter-spacing:14.464088px;}
.ls6a{letter-spacing:14.540700px;}
.ls37{letter-spacing:14.540712px;}
.ls20{letter-spacing:14.543412px;}
.ls80{letter-spacing:14.546700px;}
.ls28{letter-spacing:14.546712px;}
.ls44{letter-spacing:14.548344px;}
.ls6b{letter-spacing:14.549412px;}
.ls4b{letter-spacing:14.690149px;}
.ls4c{letter-spacing:14.693412px;}
.ls57{letter-spacing:15.329236px;}
.ls95{letter-spacing:15.905412px;}
.ls92{letter-spacing:15.910344px;}
.ls29{letter-spacing:15.929236px;}
.ls52{letter-spacing:15.935236px;}
.ls8e{letter-spacing:15.977412px;}
.ls62{letter-spacing:16.115412px;}
.ls61{letter-spacing:16.126344px;}
.ls2c{letter-spacing:16.276344px;}
.ls43{letter-spacing:16.978344px;}
.ls1f{letter-spacing:17.531236px;}
.ls27{letter-spacing:17.532960px;}
.ls32{letter-spacing:17.536200px;}
.ls35{letter-spacing:17.537236px;}
.ls3f{letter-spacing:17.741236px;}
.ls77{letter-spacing:17.752344px;}
.ls79{letter-spacing:17.753412px;}
.ls36{letter-spacing:18.106088px;}
.ls6c{letter-spacing:18.176554px;}
.ls17{letter-spacing:18.178344px;}
.lsa2{letter-spacing:18.178884px;}
.ls1e{letter-spacing:18.179412px;}
.ls4d{letter-spacing:18.179418px;}
.ls9b{letter-spacing:18.184344px;}
.ls45{letter-spacing:18.196379px;}
.ls7f{letter-spacing:18.449412px;}
.ls4a{letter-spacing:18.545412px;}
.ls73{letter-spacing:18.551412px;}
.lsaf{letter-spacing:18.682322px;}
.ls3e{letter-spacing:18.701412px;}
.ls94{letter-spacing:18.899236px;}
.ls3b{letter-spacing:19.066344px;}
.ls71{letter-spacing:19.696344px;}
.lsae{letter-spacing:19.829412px;}
.lsac{letter-spacing:19.835412px;}
.ls42{letter-spacing:19.967236px;}
.ls11{letter-spacing:20.399412px;}
.ls78{letter-spacing:20.741236px;}
.ls9a{letter-spacing:20.831412px;}
.lsa6{letter-spacing:20.880017px;}
.ls88{letter-spacing:21.164915px;}
.ls21{letter-spacing:21.167236px;}
.ls3d{letter-spacing:21.170915px;}
.ls25{letter-spacing:21.172200px;}
.ls1d{letter-spacing:21.173236px;}
.ls2e{letter-spacing:21.281412px;}
.ls7e{letter-spacing:21.437236px;}
.ls93{letter-spacing:21.587412px;}
.ls8d{letter-spacing:21.767412px;}
.ls30{letter-spacing:21.927796px;}
.ls60{letter-spacing:22.121412px;}
.ls56{letter-spacing:22.685236px;}
.lsab{letter-spacing:22.818960px;}
.lsad{letter-spacing:23.392088px;}
.ls10{letter-spacing:23.395289px;}
.ls99{letter-spacing:23.819236px;}
.ls41{letter-spacing:24.269412px;}
.ls47{letter-spacing:24.557236px;}
.ls8c{letter-spacing:24.749236px;}
.lsa8{letter-spacing:25.100712px;}
.ls5f{letter-spacing:25.109236px;}
.lsb6{letter-spacing:25.320493px;}
.ls74{letter-spacing:26.195412px;}
.ls75{letter-spacing:26.201412px;}
.ls9c{letter-spacing:27.268332px;}
.ls7a{letter-spacing:27.274332px;}
.ls49{letter-spacing:27.634332px;}
.ls76{letter-spacing:29.183236px;}
.ls55{letter-spacing:31.061412px;}
.ls54{letter-spacing:31.067412px;}
.ls48{letter-spacing:31.126344px;}
.lsbe{letter-spacing:31.860960px;}
.lsbf{letter-spacing:32.434088px;}
.ls2{letter-spacing:32.654149px;}
.ls46{letter-spacing:32.843236px;}
.lse{letter-spacing:35.573412px;}
.ls1{letter-spacing:39.783229px;}
.lsbc{letter-spacing:50.171218px;}
.lsbb{letter-spacing:50.208292px;}
.ls2d{letter-spacing:71.515488px;}
.lsbd{letter-spacing:74.803058px;}
.ls22{letter-spacing:75.992712px;}
.ls31{letter-spacing:86.593488px;}
.ls6e{letter-spacing:251.332088px;}
.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;}
}
.wsb7{word-spacing:-65.454600px;}
.wsaa{word-spacing:-54.589136px;}
.ws87{word-spacing:-51.820407px;}
.ws95{word-spacing:-47.258221px;}
.wsb8{word-spacing:-43.920037px;}
.ws50{word-spacing:-42.637126px;}
.wsee{word-spacing:-39.063305px;}
.wsb5{word-spacing:-36.379667px;}
.ws55{word-spacing:-36.071827px;}
.ws69{word-spacing:-33.211407px;}
.wsb4{word-spacing:-31.771663px;}
.wsf5{word-spacing:-31.748345px;}
.ws85{word-spacing:-31.706208px;}
.wscf{word-spacing:-29.388273px;}
.wsf2{word-spacing:-26.872301px;}
.ws6e{word-spacing:-18.183288px;}
.ws116{word-spacing:-16.891200px;}
.ws115{word-spacing:-16.692480px;}
.wsd9{word-spacing:-14.688012px;}
.ws6a{word-spacing:-14.111859px;}
.ws1{word-spacing:-13.344000px;}
.ws2{word-spacing:-13.200000px;}
.wsf7{word-spacing:-12.356677px;}
.ws117{word-spacing:-11.884320px;}
.wsf8{word-spacing:-10.297231px;}
.wsd4{word-spacing:-7.292304px;}
.wsef{word-spacing:-7.274478px;}
.wsd1{word-spacing:-7.263391px;}
.wsc6{word-spacing:-5.877823px;}
.wsbe{word-spacing:-5.746914px;}
.wsbc{word-spacing:-5.223277px;}
.wsb0{word-spacing:-3.652367px;}
.wsad{word-spacing:-3.456003px;}
.wse1{word-spacing:-2.277820px;}
.ws93{word-spacing:-1.885092px;}
.wsdf{word-spacing:-1.457888px;}
.wsaf{word-spacing:-1.230546px;}
.wsd7{word-spacing:-0.445091px;}
.wsba{word-spacing:-0.221888px;}
.wsbb{word-spacing:-0.215888px;}
.ws118{word-spacing:-0.132480px;}
.wsca{word-spacing:-0.065455px;}
.wsf3{word-spacing:-0.053798px;}
.wsde{word-spacing:-0.052364px;}
.wsd2{word-spacing:-0.047821px;}
.wsd0{word-spacing:-0.035866px;}
.ws71{word-spacing:-0.026575px;}
.wsce{word-spacing:-0.017548px;}
.ws98{word-spacing:-0.003876px;}
.ws0{word-spacing:0.000000px;}
.ws80{word-spacing:0.013091px;}
.ws11b{word-spacing:0.241200px;}
.ws11d{word-spacing:0.362880px;}
.ws11c{word-spacing:0.408240px;}
.wsa9{word-spacing:0.864001px;}
.ws11e{word-spacing:1.088640px;}
.ws60{word-spacing:1.235259px;}
.wsc4{word-spacing:1.518547px;}
.ws11a{word-spacing:2.914560px;}
.wsd3{word-spacing:3.420112px;}
.wsdb{word-spacing:4.854112px;}
.wsc5{word-spacing:7.056112px;}
.wsd5{word-spacing:7.428112px;}
.wsac{word-spacing:7.572112px;}
.wse3{word-spacing:10.470112px;}
.ws103{word-spacing:10.682191px;}
.wsae{word-spacing:13.146112px;}
.wsb3{word-spacing:13.300375px;}
.wsfc{word-spacing:13.826189px;}
.wsc0{word-spacing:14.465467px;}
.wsbf{word-spacing:14.530921px;}
.ws107{word-spacing:14.596376px;}
.ws113{word-spacing:14.792740px;}
.ws10e{word-spacing:14.858194px;}
.wsdd{word-spacing:14.989103px;}
.wsd6{word-spacing:15.072112px;}
.wse7{word-spacing:15.185467px;}
.wsb1{word-spacing:15.250922px;}
.wsf4{word-spacing:15.316376px;}
.ws78{word-spacing:15.381831px;}
.ws10{word-spacing:15.709104px;}
.wsb9{word-spacing:16.101832px;}
.ws83{word-spacing:16.167286px;}
.ws10b{word-spacing:16.363650px;}
.ws10f{word-spacing:16.429105px;}
.wsfe{word-spacing:16.494559px;}
.ws57{word-spacing:16.625468px;}
.ws104{word-spacing:16.756378px;}
.ws5b{word-spacing:16.821832px;}
.ws1a{word-spacing:16.887287px;}
.ws43{word-spacing:16.946496px;}
.wsfd{word-spacing:16.952741px;}
.wse{word-spacing:17.083651px;}
.ws10a{word-spacing:17.345469px;}
.ws2e{word-spacing:17.410924px;}
.wsc8{word-spacing:17.476378px;}
.ws84{word-spacing:17.672742px;}
.wsa7{word-spacing:17.869106px;}
.ws119{word-spacing:17.884800px;}
.ws49{word-spacing:17.934560px;}
.wsa2{word-spacing:18.000015px;}
.wsc7{word-spacing:18.130924px;}
.ws9a{word-spacing:18.196379px;}
.wsdc{word-spacing:18.261833px;}
.ws94{word-spacing:18.327288px;}
.ws42{word-spacing:18.392743px;}
.wsf1{word-spacing:18.399053px;}
.ws4{word-spacing:18.452851px;}
.ws24{word-spacing:18.589106px;}
.ws1f{word-spacing:18.720016px;}
.ws1b{word-spacing:18.785470px;}
.ws47{word-spacing:18.850925px;}
.wscc{word-spacing:18.916379px;}
.ws9c{word-spacing:18.981834px;}
.ws81{word-spacing:19.047289px;}
.ws8e{word-spacing:19.112743px;}
.ws45{word-spacing:19.206029px;}
.wse0{word-spacing:19.243652px;}
.ws44{word-spacing:19.259827px;}
.ws7c{word-spacing:19.309107px;}
.ws54{word-spacing:19.313626px;}
.ws86{word-spacing:19.374562px;}
.ws25{word-spacing:19.440016px;}
.wsf9{word-spacing:19.528819px;}
.wsff{word-spacing:19.570925px;}
.wsa1{word-spacing:19.636380px;}
.wsa{word-spacing:19.701835px;}
.ws90{word-spacing:19.767289px;}
.ws75{word-spacing:19.797811px;}
.ws99{word-spacing:19.832744px;}
.ws3f{word-spacing:19.898198px;}
.wsc2{word-spacing:19.938112px;}
.wsc3{word-spacing:19.944112px;}
.ws65{word-spacing:19.963653px;}
.wse6{word-spacing:20.029108px;}
.ws5f{word-spacing:20.094562px;}
.ws76{word-spacing:20.160017px;}
.ws51{word-spacing:20.225471px;}
.wsc9{word-spacing:20.290926px;}
.ws4a{word-spacing:20.421835px;}
.wsa8{word-spacing:20.487290px;}
.ws8f{word-spacing:20.552744px;}
.ws26{word-spacing:20.618199px;}
.ws3d{word-spacing:20.683654px;}
.ws2d{word-spacing:20.749108px;}
.wsa6{word-spacing:20.814563px;}
.ws88{word-spacing:20.880017px;}
.ws5c{word-spacing:20.945472px;}
.ws35{word-spacing:21.010927px;}
.wscb{word-spacing:21.076381px;}
.ws13{word-spacing:21.141836px;}
.wsab{word-spacing:21.207290px;}
.ws9d{word-spacing:21.272745px;}
.ws4e{word-spacing:21.338200px;}
.ws4f{word-spacing:21.403654px;}
.ws40{word-spacing:21.534563px;}
.ws7f{word-spacing:21.600018px;}
.ws1d{word-spacing:21.665473px;}
.wsf{word-spacing:21.730927px;}
.ws6c{word-spacing:21.796382px;}
.ws6b{word-spacing:21.861836px;}
.ws68{word-spacing:21.927291px;}
.ws66{word-spacing:21.992746px;}
.wsfa{word-spacing:22.003546px;}
.ws4b{word-spacing:22.058200px;}
.ws36{word-spacing:22.189109px;}
.ws2b{word-spacing:22.254564px;}
.wsa0{word-spacing:22.320019px;}
.wsfb{word-spacing:22.380134px;}
.ws10c{word-spacing:22.385473px;}
.ws48{word-spacing:22.450928px;}
.ws5d{word-spacing:22.516382px;}
.ws18{word-spacing:22.581837px;}
.ws9f{word-spacing:22.712746px;}
.ws105{word-spacing:22.778201px;}
.ws3e{word-spacing:22.843655px;}
.ws37{word-spacing:22.909110px;}
.ws27{word-spacing:22.974565px;}
.ws11{word-spacing:23.040019px;}
.ws2c{word-spacing:23.105474px;}
.ws89{word-spacing:23.170928px;}
.wse4{word-spacing:23.236383px;}
.wse5{word-spacing:23.301838px;}
.ws58{word-spacing:23.367292px;}
.ws5a{word-spacing:23.432747px;}
.ws67{word-spacing:23.498201px;}
.ws17{word-spacing:23.563656px;}
.ws79{word-spacing:23.629111px;}
.ws2f{word-spacing:23.694565px;}
.wse2{word-spacing:23.760020px;}
.wscd{word-spacing:23.825474px;}
.wsa3{word-spacing:23.890929px;}
.ws56{word-spacing:23.956384px;}
.ws23{word-spacing:24.021838px;}
.ws34{word-spacing:24.087293px;}
.ws6f{word-spacing:24.152747px;}
.ws21{word-spacing:24.218202px;}
.ws92{word-spacing:24.283657px;}
.ws3c{word-spacing:24.349111px;}
.ws64{word-spacing:24.480020px;}
.ws1e{word-spacing:24.545475px;}
.wsbd{word-spacing:24.676384px;}
.wsc{word-spacing:24.741839px;}
.ws59{word-spacing:24.807293px;}
.ws39{word-spacing:24.872748px;}
.ws16{word-spacing:24.938203px;}
.ws7a{word-spacing:25.003657px;}
.ws7d{word-spacing:25.069112px;}
.ws4d{word-spacing:25.134566px;}
.ws70{word-spacing:25.200021px;}
.ws9{word-spacing:25.265476px;}
.ws30{word-spacing:25.330930px;}
.ws5e{word-spacing:25.396385px;}
.wsec{word-spacing:25.461839px;}
.wsea{word-spacing:25.592749px;}
.ws108{word-spacing:25.658203px;}
.ws22{word-spacing:25.854567px;}
.ws41{word-spacing:25.920022px;}
.ws61{word-spacing:25.985476px;}
.wsd{word-spacing:26.050931px;}
.wseb{word-spacing:26.181840px;}
.ws101{word-spacing:26.247295px;}
.ws7e{word-spacing:26.312749px;}
.ws82{word-spacing:26.378204px;}
.ws4c{word-spacing:26.443658px;}
.ws106{word-spacing:26.509113px;}
.ws31{word-spacing:26.640022px;}
.wsa5{word-spacing:26.705477px;}
.ws102{word-spacing:26.836386px;}
.ws33{word-spacing:26.899200px;}
.ws6d{word-spacing:26.967295px;}
.wsb{word-spacing:27.098204px;}
.ws12{word-spacing:27.294568px;}
.ws100{word-spacing:27.360023px;}
.wsda{word-spacing:27.490932px;}
.wsd8{word-spacing:27.556387px;}
.wsa4{word-spacing:27.621841px;}
.ws9b{word-spacing:27.687296px;}
.ws111{word-spacing:27.818205px;}
.ws8{word-spacing:27.883660px;}
.ws63{word-spacing:27.949114px;}
.ws29{word-spacing:28.080023px;}
.ws1c{word-spacing:28.210933px;}
.ws62{word-spacing:28.276387px;}
.ws7b{word-spacing:28.341842px;}
.ws6{word-spacing:28.603660px;}
.wsb6{word-spacing:28.669115px;}
.ws110{word-spacing:28.734569px;}
.ws28{word-spacing:28.930933px;}
.ws3b{word-spacing:28.996388px;}
.ws2a{word-spacing:29.061842px;}
.ws114{word-spacing:29.192752px;}
.ws10d{word-spacing:29.258206px;}
.wsf0{word-spacing:29.323661px;}
.wsc1{word-spacing:29.389115px;}
.ws9e{word-spacing:29.454570px;}
.ws14{word-spacing:29.520025px;}
.wsb2{word-spacing:29.650934px;}
.ws46{word-spacing:29.716388px;}
.ws109{word-spacing:30.109116px;}
.ws91{word-spacing:30.240025px;}
.ws3a{word-spacing:30.305480px;}
.ws15{word-spacing:30.436389px;}
.ws8c{word-spacing:30.501844px;}
.ws20{word-spacing:30.632753px;}
.ws8d{word-spacing:30.894571px;}
.wse8{word-spacing:31.025480px;}
.wse9{word-spacing:31.090935px;}
.wsed{word-spacing:31.221844px;}
.ws32{word-spacing:31.504255px;}
.ws8b{word-spacing:31.614572px;}
.ws19{word-spacing:31.941845px;}
.ws77{word-spacing:32.072754px;}
.ws38{word-spacing:32.138209px;}
.ws7{word-spacing:32.989118px;}
.ws112{word-spacing:33.316391px;}
.ws8a{word-spacing:36.261848px;}
.ws3{word-spacing:37.499989px;}
.ws72{word-spacing:40.131634px;}
.ws97{word-spacing:51.984498px;}
.ws96{word-spacing:53.958112px;}
.ws53{word-spacing:59.423784px;}
.ws74{word-spacing:79.923353px;}
.ws5{word-spacing:94.684920px;}
.ws73{word-spacing:123.466211px;}
.wsf6{word-spacing:251.296905px;}
.ws52{word-spacing:275.617553px;}
._2a{margin-left:-35.343300px;}
._2d{margin-left:-32.730594px;}
._2b{margin-left:-27.273085px;}
._2c{margin-left:-20.428592px;}
._20{margin-left:-19.386384px;}
._1d{margin-left:-18.178438px;}
._1c{margin-left:-16.757326px;}
._1a{margin-left:-15.513853px;}
._1b{margin-left:-13.879575px;}
._1f{margin-left:-12.280824px;}
._1e{margin-left:-10.753128px;}
._21{margin-left:-9.367544px;}
._19{margin-left:-7.555626px;}
._d{margin-left:-6.110730px;}
._b{margin-left:-4.680461px;}
._8{margin-left:-2.922005px;}
._5{margin-left:-1.386000px;}
._7{width:1.469998px;}
._3{width:2.777993px;}
._2{width:4.674001px;}
._4{width:6.149999px;}
._0{width:8.310001px;}
._6{width:9.443993px;}
._1{width:11.340001px;}
._2e{width:12.673630px;}
._28{width:14.034183px;}
._c{width:16.738938px;}
._27{width:18.762018px;}
._18{width:20.987474px;}
._26{width:22.979473px;}
._14{width:24.121660px;}
._12{width:25.365297px;}
._13{width:26.936753px;}
._33{width:28.865479px;}
._11{width:31.179296px;}
._35{width:34.475479px;}
._a{width:36.000000px;}
._36{width:37.201665px;}
._10{width:38.343851px;}
._34{width:39.819849px;}
._38{width:44.237946px;}
._22{width:45.447162px;}
._31{width:47.258221px;}
._37{width:52.101862px;}
._9{width:53.999999px;}
._32{width:59.694595px;}
._30{width:63.556417px;}
._29{width:75.973536px;}
._f{width:80.697600px;}
._e{width:94.684920px;}
._25{width:103.641698px;}
._17{width:118.648641px;}
._24{width:127.345846px;}
._16{width:142.352789px;}
._23{width:151.049994px;}
._2f{width:372.833850px;}
._15{width:403.354219px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(0,100,0);}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,139);}
.fc6{color:rgb(51,51,51);}
.fc1{color:rgb(88,88,88);}
.fc0{color:rgb(0,0,0);}
.fs18{font-size:25.928280px;}
.fs10{font-size:26.574794px;}
.fs16{font-size:29.632320px;}
.fs12{font-size:31.748400px;}
.fsb{font-size:35.865600px;}
.fs17{font-size:37.040400px;}
.fs4{font-size:42.000000px;}
.fsf{font-size:42.633360px;}
.fs15{font-size:44.448480px;}
.fs1c{font-size:45.360000px;}
.fse{font-size:47.820600px;}
.fs5{font-size:48.000000px;}
.fs1b{font-size:48.240000px;}
.fs8{font-size:52.800000px;}
.fs9{font-size:53.798400px;}
.fs19{font-size:54.000000px;}
.fs11{font-size:58.192173px;}
.fs13{font-size:58.202754px;}
.fs14{font-size:58.202756px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsc{font-size:65.454600px;}
.fs7{font-size:66.000000px;}
.fs1a{font-size:66.240000px;}
.fsd{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fsa{font-size:86.077200px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.yf8{bottom:0.595090px;}
.yfb{bottom:0.781612px;}
.yae{bottom:2.558002px;}
.y1d8{bottom:12.096802px;}
.yf5{bottom:14.637453px;}
.yac{bottom:15.348010px;}
.y1f6{bottom:17.334899px;}
.yf7{bottom:22.853256px;}
.y1d7{bottom:27.547685px;}
.yf4{bottom:28.679815px;}
.y1d3{bottom:30.854818px;}
.yf6{bottom:33.209609px;}
.yad{bottom:36.353820px;}
.yf3{bottom:36.895619px;}
.yf2{bottom:40.022065px;}
.y1d6{bottom:41.622809px;}
.y26a{bottom:42.660000px;}
.y1da{bottom:43.627591px;}
.y1f4{bottom:44.003994px;}
.yef{bottom:45.111422px;}
.y1e7{bottom:45.724308px;}
.yf0{bottom:47.251972px;}
.y23{bottom:52.102499px;}
.y26b{bottom:52.380000px;}
.yf1{bottom:52.563377px;}
.y1d5{bottom:54.500753px;}
.yee{bottom:56.773422px;}
.y1dc{bottom:57.967285px;}
.yeb{bottom:57.999131px;}
.yed{bottom:60.255146px;}
.yec{bottom:62.280231px;}
.y1d4{bottom:66.320425px;}
.y5{bottom:66.525004px;}
.y259{bottom:66.960000px;}
.y71{bottom:67.819500px;}
.yea{bottom:70.815785px;}
.y22{bottom:71.002500px;}
.ye8{bottom:73.205029px;}
.ye9{bottom:78.605255px;}
.y1dd{bottom:81.494172px;}
.ye7{bottom:82.868591px;}
.y1e8{bottom:83.061752px;}
.ye6{bottom:84.538397px;}
.y1db{bottom:84.958032px;}
.y21{bottom:85.402500px;}
.ye5{bottom:90.844581px;}
.ye4{bottom:93.287117px;}
.y4{bottom:97.125005px;}
.ye3{bottom:99.220260px;}
.y1de{bottom:101.918973px;}
.y97{bottom:105.325500px;}
.ye2{bottom:109.967419px;}
.y96{bottom:111.039000px;}
.y1f8{bottom:112.121290px;}
.yfc{bottom:112.436602px;}
.yaf{bottom:114.212989px;}
.ye1{bottom:118.991481px;}
.y1df{bottom:119.830363px;}
.y1e9{bottom:120.392584px;}
.y95{bottom:122.232000px;}
.y1f7{bottom:127.344896px;}
.y123{bottom:127.594500px;}
.y94{bottom:127.945500px;}
.yaa{bottom:129.148500px;}
.y209{bottom:130.321500px;}
.yca{bottom:130.662000px;}
.ye0{bottom:131.319626px;}
.y1e2{bottom:131.736013px;}
.y1e0{bottom:135.651647px;}
.y20{bottom:139.264499px;}
.y1f2{bottom:139.804500px;}
.ydf{bottom:141.489459px;}
.y70{bottom:141.873000px;}
.ya9{bottom:147.357000px;}
.y122{bottom:149.848500px;}
.y168{bottom:149.850000px;}
.ya8{bottom:151.402500px;}
.y1e3{bottom:151.955780px;}
.y208{bottom:152.575500px;}
.yc9{bottom:152.916000px;}
.y1ea{bottom:157.730020px;}
.yde{bottom:160.274782px;}
.y1f1{bottom:162.058500px;}
.y6f{bottom:164.127000px;}
.y1a5{bottom:172.104000px;}
.y207{bottom:174.831000px;}
.yc8{bottom:175.170000px;}
.y1e4{bottom:175.767069px;}
.y93{bottom:176.710500px;}
.y121{bottom:177.904500px;}
.y167{bottom:178.177500px;}
.y1e1{bottom:178.353313px;}
.ya7{bottom:181.129500px;}
.y49{bottom:183.845999px;}
.y245{bottom:183.898500px;}
.ydd{bottom:184.158346px;}
.y182{bottom:187.800000px;}
.y146{bottom:192.838500px;}
.y6e{bottom:193.854000px;}
.y1a4{bottom:194.358000px;}
.y1eb{bottom:195.067472px;}
.y17{bottom:196.933500px;}
.y11e{bottom:197.335500px;}
.yc7{bottom:197.425500px;}
.y92{bottom:198.964500px;}
.y166{bottom:200.431500px;}
.y227{bottom:200.518500px;}
.y1f0{bottom:202.350000px;}
.ya6{bottom:203.383500px;}
.y48{bottom:203.646000px;}
.y1e5{bottom:204.201742px;}
.y244{bottom:206.152500px;}
.y143{bottom:208.225500px;}
.y1c2{bottom:208.338000px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y181{bottom:210.054000px;}
.y142{bottom:212.271000px;}
.y120{bottom:212.881500px;}
.y6d{bottom:216.108000px;}
.y1a3{bottom:216.613500px;}
.y11f{bottom:217.791000px;}
.yc6{bottom:219.679500px;}
.y206{bottom:220.758000px;}
.y91{bottom:221.218500px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y165{bottom:222.687000px;}
.y226{bottom:222.774000px;}
.y47{bottom:223.445999px;}
.y1c0{bottom:224.400000px;}
.y1c1{bottom:225.448500px;}
.ya5{bottom:225.637500px;}
.y145{bottom:227.817000px;}
.y180{bottom:232.309500px;}
.y1ec{bottom:232.398280px;}
.y144{bottom:232.725000px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y6c{bottom:238.363500px;}
.y1e6{bottom:238.767798px;}
.y243{bottom:240.202500px;}
.yc5{bottom:241.935000px;}
.y46{bottom:243.246000px;}
.y90{bottom:243.474000px;}
.y11d{bottom:244.309500px;}
.y164{bottom:244.941000px;}
.y225{bottom:245.028000px;}
.y1a2{bottom:245.685000px;}
.ya4{bottom:247.893000px;}
.y1ef{bottom:252.442500px;}
.y17f{bottom:254.563500px;}
.y141{bottom:259.659000px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y6b{bottom:260.617500px;}
.y242{bottom:262.456500px;}
.y8f{bottom:265.728000px;}
.y11c{bottom:266.565000px;}
.y163{bottom:267.196500px;}
.y224{bottom:267.282000px;}
.y1a1{bottom:267.939000px;}
.y1ed{bottom:269.735732px;}
.ya3{bottom:270.147000px;}
.yc4{bottom:271.884000px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y1ee{bottom:275.775000px;}
.yc3{bottom:276.219000px;}
.y17e{bottom:276.819000px;}
.y45{bottom:281.045999px;}
.y205{bottom:282.337500px;}
.y6a{bottom:282.873000px;}
.yc1{bottom:284.179500px;}
.y241{bottom:284.712000px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.yff{bottom:285.351000px;}
.y162{bottom:285.405000px;}
.yc0{bottom:288.225000px;}
.y140{bottom:288.460500px;}
.y11b{bottom:288.819000px;}
.y161{bottom:289.450500px;}
.y223{bottom:289.537500px;}
.y1bf{bottom:289.914000px;}
.y1a0{bottom:290.194500px;}
.y1be{bottom:293.959500px;}
.y1d9{bottom:294.352500px;}
.yc2{bottom:296.931000px;}
.y17d{bottom:299.073000px;}
.y44{bottom:300.845995px;}
.yfe{bottom:300.985500px;}
.y1f5{bottom:303.184929px;}
.yfd{bottom:303.351000px;}
.y204{bottom:304.591500px;}
.y69{bottom:305.127000px;}
.y13f{bottom:306.132000px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y13e{bottom:310.716000px;}
.y11a{bottom:311.073000px;}
.y160{bottom:311.704500px;}
.y222{bottom:311.791500px;}
.y19f{bottom:312.448500px;}
.y8d{bottom:315.444000px;}
.y1bd{bottom:316.213500px;}
.y240{bottom:318.760500px;}
.y43{bottom:320.646002px;}
.y17c{bottom:321.327000px;}
.y8e{bottom:321.382500px;}
.ya2{bottom:322.765500px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y203{bottom:326.845500px;}
.y68{bottom:327.381000px;}
.y13d{bottom:332.970000px;}
.y119{bottom:333.328500px;}
.yf9{bottom:333.883500px;}
.y15f{bottom:333.960000px;}
.y221{bottom:334.045500px;}
.y19e{bottom:334.702500px;}
.yfa{bottom:335.659890px;}
.y8c{bottom:337.698000px;}
.y1bc{bottom:338.469000px;}
.y42{bottom:340.445997px;}
.ybf{bottom:342.798000px;}
.y1d2{bottom:342.928213px;}
.y17b{bottom:343.582500px;}
.ya1{bottom:345.021000px;}
.ybe{bottom:346.843500px;}
.ye{bottom:348.133500px;}
.y202{bottom:349.101000px;}
.y23f{bottom:352.810500px;}
.y13c{bottom:355.224000px;}
.y118{bottom:355.582500px;}
.y220{bottom:356.301000px;}
.y19d{bottom:356.958000px;}
.y67{bottom:357.108000px;}
.y41{bottom:360.246004px;}
.y15e{bottom:362.287500px;}
.y8b{bottom:365.931000px;}
.ya0{bottom:367.275000px;}
.y1bb{bottom:367.989000px;}
.ybd{bottom:369.097500px;}
.ydc{bottom:370.299495px;}
.y201{bottom:371.355000px;}
.y17a{bottom:373.308000px;}
.y23e{bottom:375.064500px;}
.y13b{bottom:377.479500px;}
.y117{bottom:377.836500px;}
.y21f{bottom:378.555000px;}
.y19c{bottom:379.212000px;}
.y66{bottom:379.362000px;}
.y40{bottom:380.045999px;}
.y15d{bottom:384.543000px;}
.y22e{bottom:384.715500px;}
.ybc{bottom:386.769000px;}
.yd{bottom:386.785499px;}
.y8a{bottom:388.185000px;}
.y9f{bottom:389.529000px;}
.y200{bottom:389.565000px;}
.y1ba{bottom:390.243000px;}
.ybb{bottom:391.353000px;}
.y1ff{bottom:393.610500px;}
.y179{bottom:395.563500px;}
.y13a{bottom:399.733500px;}
.y3f{bottom:399.846000px;}
.y116{bottom:400.092000px;}
.y21e{bottom:400.810500px;}
.y65{bottom:401.617500px;}
.y15c{bottom:406.797000px;}
.y22d{bottom:406.969500px;}
.yc{bottom:408.044999px;}
.y19b{bottom:408.283500px;}
.yba{bottom:409.023000px;}
.y23d{bottom:409.114500px;}
.y89{bottom:410.439000px;}
.y9e{bottom:411.784500px;}
.y1b9{bottom:412.498500px;}
.yb9{bottom:413.607000px;}
.y178{bottom:417.817500px;}
.y1fe{bottom:419.245500px;}
.y139{bottom:421.987500px;}
.y115{bottom:422.346000px;}
.y21d{bottom:423.064500px;}
.y64{bottom:423.871500px;}
.y3e{bottom:428.645999px;}
.y15b{bottom:429.051000px;}
.y22c{bottom:429.225000px;}
.y19a{bottom:430.539000px;}
.y23c{bottom:431.368500px;}
.y88{bottom:432.694500px;}
.y9d{bottom:434.038500px;}
.y1b8{bottom:434.752500px;}
.yb8{bottom:435.861000px;}
.y258{bottom:437.932500px;}
.y177{bottom:440.071500px;}
.y1fd{bottom:442.578000px;}
.y138{bottom:444.243000px;}
.y63{bottom:446.127000px;}
.y3d{bottom:448.446000px;}
.y15a{bottom:451.306500px;}
.y21c{bottom:451.479000px;}
.y199{bottom:452.793000px;}
.y87{bottom:454.948500px;}
.y9c{bottom:456.294000px;}
.y1b7{bottom:457.006500px;}
.yb7{bottom:458.116500px;}
.y257{bottom:460.186500px;}
.y1fc{bottom:460.578000px;}
.y176{bottom:462.327000px;}
.y23b{bottom:465.417000px;}
.y137{bottom:466.497000px;}
.y21b{bottom:473.734500px;}
.y114{bottom:474.063000px;}
.y198{bottom:475.047000px;}
.y62{bottom:475.852500px;}
.y1fb{bottom:476.212500px;}
.y86{bottom:477.204000px;}
.y3c{bottom:477.246005px;}
.y9b{bottom:478.548000px;}
.y1fa{bottom:478.578000px;}
.y1b6{bottom:479.262000px;}
.yb6{bottom:480.370500px;}
.y175{bottom:484.581000px;}
.y23a{bottom:487.672500px;}
.y159{bottom:490.200000px;}
.y136{bottom:495.298500px;}
.y256{bottom:495.891000px;}
.y21a{bottom:495.988500px;}
.y113{bottom:496.318500px;}
.y1f9{bottom:496.578000px;}
.y197{bottom:497.302500px;}
.y61{bottom:498.108000px;}
.y85{bottom:499.458000px;}
.y1b5{bottom:501.516000px;}
.yb5{bottom:502.624500px;}
.y174{bottom:506.836500px;}
.y3b{bottom:507.396015px;}
.y135{bottom:512.970000px;}
.y1f3{bottom:515.155500px;}
.y134{bottom:517.552500px;}
.y255{bottom:518.146500px;}
.y219{bottom:518.242500px;}
.y112{bottom:518.572500px;}
.y196{bottom:519.556500px;}
.y60{bottom:520.362000px;}
.yb{bottom:520.864502px;}
.y84{bottom:521.712000px;}
.y239{bottom:521.721000px;}
.y1b4{bottom:523.770000px;}
.yb4{bottom:524.880000px;}
.y3a{bottom:529.896015px;}
.y9a{bottom:530.274000px;}
.y269{bottom:530.652960px;}
.y173{bottom:536.562000px;}
.ya{bottom:538.864499px;}
.y133{bottom:539.808000px;}
.y254{bottom:540.400500px;}
.y218{bottom:540.498000px;}
.y158{bottom:540.757500px;}
.y111{bottom:540.826500px;}
.y1b3{bottom:541.980000px;}
.y5f{bottom:542.616000px;}
.y83{bottom:543.967500px;}
.y238{bottom:543.976500px;}
.y1b2{bottom:546.025500px;}
.y99{bottom:548.274000px;}
.y39{bottom:552.396015px;}
.y9{bottom:556.864499px;}
.y195{bottom:557.980500px;}
.y172{bottom:558.817500px;}
.y132{bottom:562.062000px;}
.y217{bottom:562.752000px;}
.y157{bottom:563.011500px;}
.y110{bottom:563.082000px;}
.y5e{bottom:564.871500px;}
.yb3{bottom:565.171500px;}
.y81{bottom:566.221500px;}
.y98{bottom:566.274000px;}
.y1b1{bottom:568.279500px;}
.y268{bottom:570.612240px;}
.y82{bottom:572.160000px;}
.y38{bottom:574.896015px;}
.y253{bottom:576.105000px;}
.y194{bottom:577.701000px;}
.y237{bottom:578.025000px;}
.y171{bottom:581.071500px;}
.y215{bottom:585.006000px;}
.y156{bottom:585.265500px;}
.y5d{bottom:587.125500px;}
.y216{bottom:589.143000px;}
.y22b{bottom:591.166500px;}
.y10f{bottom:592.344000px;}
.y37{bottom:597.396015px;}
.y252{bottom:598.359000px;}
.y170{bottom:598.488000px;}
.y236{bottom:600.280500px;}
.y16f{bottom:603.327000px;}
.y80{bottom:605.019000px;}
.y155{bottom:607.521000px;}
.y1b0{bottom:608.365500px;}
.y267{bottom:610.571520px;}
.ydb{bottom:610.798500px;}
.y131{bottom:612.883500px;}
.y214{bottom:613.422000px;}
.y10e{bottom:614.599500px;}
.y5c{bottom:616.852500px;}
.y36{bottom:619.896015px;}
.y16e{bottom:625.581000px;}
.y154{bottom:629.775000px;}
.yb2{bottom:631.125000px;}
.yda{bottom:633.052500px;}
.y251{bottom:634.063500px;}
.y130{bottom:635.137500px;}
.y213{bottom:635.676000px;}
.y10d{bottom:636.853500px;}
.y235{bottom:638.734500px;}
.y5b{bottom:639.106500px;}
.y193{bottom:641.536500px;}
.y35{bottom:642.396015px;}
.y8{bottom:645.510000px;}
.yb1{bottom:646.758000px;}
.y16d{bottom:647.835000px;}
.y1d0{bottom:648.823500px;}
.yb0{bottom:649.125000px;}
.y7f{bottom:650.106000px;}
.y266{bottom:650.530800px;}
.y153{bottom:652.030500px;}
.y1d1{bottom:652.959000px;}
.y1af{bottom:654.741000px;}
.yd9{bottom:655.308000px;}
.y250{bottom:656.317500px;}
.y12f{bottom:657.393000px;}
.y212{bottom:657.930000px;}
.y10c{bottom:659.107500px;}
.y5a{bottom:661.362000px;}
.y192{bottom:663.790500px;}
.y34{bottom:664.896015px;}
.y7{bottom:666.771000px;}
.y16c{bottom:670.090500px;}
.y1cf{bottom:671.077500px;}
.yd8{bottom:673.516500px;}
.yd7{bottom:677.562000px;}
.y24f{bottom:678.571500px;}
.y12e{bottom:679.647000px;}
.y211{bottom:680.185500px;}
.y152{bottom:680.358000px;}
.y10b{bottom:681.363000px;}
.yab{bottom:682.647000px;}
.y59{bottom:683.616000px;}
.y191{bottom:686.046000px;}
.y33{bottom:687.396015px;}
.y265{bottom:690.490080px;}
.y16b{bottom:692.344500px;}
.y1ce{bottom:693.331500px;}
.y1cd{bottom:693.333000px;}
.y234{bottom:698.707500px;}
.yd6{bottom:699.816000px;}
.y12d{bottom:701.902500px;}
.y210{bottom:702.439500px;}
.y151{bottom:702.613500px;}
.y10a{bottom:703.617000px;}
.y58{bottom:705.870000px;}
.y190{bottom:708.300000px;}
.y7e{bottom:708.783000px;}
.y32{bottom:712.148990px;}
.y24e{bottom:714.276000px;}
.y1cc{bottom:715.587000px;}
.y1ae{bottom:715.920000px;}
.y16a{bottom:718.026000px;}
.y233{bottom:720.961500px;}
.yd5{bottom:722.071500px;}
.y12c{bottom:724.156500px;}
.y20f{bottom:724.695000px;}
.y150{bottom:724.867500px;}
.y6{bottom:726.298500px;}
.y57{bottom:728.125500px;}
.y109{bottom:728.835000px;}
.y264{bottom:730.449360px;}
.y7d{bottom:731.037000px;}
.y108{bottom:732.879000px;}
.y31{bottom:734.648990px;}
.y24d{bottom:736.531500px;}
.y18f{bottom:737.371500px;}
.y1cb{bottom:737.841000px;}
.y1ad{bottom:738.174000px;}
.yd4{bottom:739.440000px;}
.y232{bottom:743.215500px;}
.yd3{bottom:744.325500px;}
.y12b{bottom:746.410500px;}
.y20e{bottom:746.949000px;}
.y14f{bottom:747.121500px;}
.y56{bottom:750.379500px;}
.y3{bottom:752.599495px;}
.y7c{bottom:753.292500px;}
.y107{bottom:755.134500px;}
.y30{bottom:759.402011px;}
.y18e{bottom:759.627000px;}
.y1ca{bottom:760.096500px;}
.y1ac{bottom:760.429500px;}
.y231{bottom:765.471000px;}
.yd2{bottom:766.579500px;}
.y14e{bottom:769.377000px;}
.y263{bottom:770.408640px;}
.y24c{bottom:772.234500px;}
.y12a{bottom:775.212000px;}
.y20d{bottom:775.363500px;}
.y7b{bottom:775.546500px;}
.y106{bottom:777.388500px;}
.y55{bottom:780.106500px;}
.y18d{bottom:781.881000px;}
.y2f{bottom:781.902011px;}
.y230{bottom:787.725000px;}
.y262{bottom:789.485760px;}
.y1ab{bottom:789.949500px;}
.y24b{bottom:794.490000px;}
.yd1{bottom:796.306500px;}
.y129{bottom:797.467500px;}
.y20c{bottom:797.619000px;}
.y14d{bottom:797.704500px;}
.y7a{bottom:797.800500px;}
.y105{bottom:799.644000px;}
.y54{bottom:802.360500px;}
.y18c{bottom:804.135000px;}
.y2e{bottom:804.402011px;}
.y1c9{bottom:806.260500px;}
.y1aa{bottom:808.159500px;}
.y261{bottom:808.380720px;}
.y1a9{bottom:812.203500px;}
.yd0{bottom:818.562000px;}
.y128{bottom:819.721500px;}
.y20b{bottom:819.873000px;}
.y14c{bottom:819.960000px;}
.y79{bottom:820.056000px;}
.y53{bottom:824.616000px;}
.y18b{bottom:826.390500px;}
.y2d{bottom:826.902011px;}
.y24a{bottom:830.194500px;}
.y22f{bottom:832.825500px;}
.y1a8{bottom:834.459000px;}
.ycf{bottom:840.816000px;}
.y127{bottom:841.975500px;}
.y20a{bottom:842.127000px;}
.y14b{bottom:842.214000px;}
.y78{bottom:842.310000px;}
.y52{bottom:846.870000px;}
.y260{bottom:848.340000px;}
.y2c{bottom:849.402011px;}
.y104{bottom:851.361000px;}
.y249{bottom:852.448500px;}
.yce{bottom:863.070000px;}
.y126{bottom:864.231000px;}
.y22a{bottom:864.382500px;}
.y14a{bottom:864.468000px;}
.y77{bottom:864.565500px;}
.y189{bottom:864.814500px;}
.y51{bottom:869.124000px;}
.y169{bottom:870.543000px;}
.y1a7{bottom:871.326000px;}
.y2b{bottom:871.902011px;}
.y103{bottom:873.615000px;}
.y1c8{bottom:874.680000px;}
.y2{bottom:879.369000px;}
.y186{bottom:884.245500px;}
.ycd{bottom:885.325500px;}
.y125{bottom:886.485000px;}
.y229{bottom:886.636500px;}
.y149{bottom:886.723500px;}
.y248{bottom:888.153000px;}
.y25f{bottom:888.840000px;}
.y50{bottom:891.379500px;}
.y1a6{bottom:892.584000px;}
.y76{bottom:892.797000px;}
.y2a{bottom:894.402011px;}
.y102{bottom:895.869000px;}
.y1c7{bottom:896.935500px;}
.y188{bottom:899.791500px;}
.y187{bottom:905.571000px;}
.ycc{bottom:907.579500px;}
.y148{bottom:908.977500px;}
.y247{bottom:910.407000px;}
.y4f{bottom:913.633500px;}
.y75{bottom:915.051000px;}
.y29{bottom:915.511497px;}
.y101{bottom:918.124500px;}
.y18a{bottom:921.369000px;}
.y185{bottom:925.897500px;}
.ycb{bottom:929.833500px;}
.y25e{bottom:930.600000px;}
.y147{bottom:931.233000px;}
.y228{bottom:932.722500px;}
.y4e{bottom:935.887500px;}
.y1c6{bottom:936.246000px;}
.y184{bottom:937.122000px;}
.y74{bottom:937.306500px;}
.y246{bottom:946.111500px;}
.y1c3{bottom:955.876500px;}
.y100{bottom:957.952500px;}
.y4d{bottom:958.143000px;}
.y73{bottom:959.560500px;}
.y28{bottom:963.877502px;}
.y1{bottom:966.726000px;}
.y1c5{bottom:971.422500px;}
.y25d{bottom:972.180000px;}
.y183{bottom:974.488500px;}
.y1c4{bottom:976.332000px;}
.y72{bottom:981.814500px;}
.y124{bottom:981.816000px;}
.y4c{bottom:1004.070000px;}
.y27{bottom:1012.051498px;}
.y25c{bottom:1013.940000px;}
.y26{bottom:1042.651500px;}
.y25b{bottom:1055.520000px;}
.y4b{bottom:1090.201500px;}
.y25a{bottom:1092.960000px;}
.y4a{bottom:1106.640000px;}
.y25{bottom:1110.609000px;}
.y24{bottom:1125.009000px;}
.h28{height:2.618184px;}
.h33{height:16.935450px;}
.h22{height:18.814954px;}
.h7{height:32.130000px;}
.h10{height:34.072320px;}
.h1b{height:35.865450px;}
.h38{height:36.447163px;}
.h41{height:36.744307px;}
.h3c{height:40.348800px;}
.h31{height:40.513200px;}
.h27{height:43.771200px;}
.h2a{height:43.777200px;}
.h13{height:45.429570px;}
.h6{height:45.900000px;}
.h40{height:48.174748px;}
.h3{height:48.195000px;}
.h18{height:48.943097px;}
.h14{height:49.090950px;}
.h19{height:49.753200px;}
.h24{height:49.810800px;}
.h1a{height:49.816800px;}
.h8{height:50.062500px;}
.h48{height:50.312812px;}
.h3f{height:51.026855px;}
.he{height:51.108480px;}
.h43{height:52.998047px;}
.h2{height:55.080000px;}
.h1f{height:58.413450px;}
.h1c{height:59.613450px;}
.h15{height:59.619450px;}
.h11{height:62.181870px;}
.h1d{height:62.889450px;}
.h26{height:62.895450px;}
.h47{height:63.540000px;}
.hc{height:64.775391px;}
.h30{height:64.802184px;}
.h46{height:64.978594px;}
.h44{height:65.010937px;}
.h25{height:65.266950px;}
.h16{height:65.272950px;}
.h3d{height:65.632950px;}
.h35{height:65.638950px;}
.hb{height:66.515625px;}
.h37{height:66.804614px;}
.h3a{height:66.816762px;}
.h3b{height:66.816764px;}
.h29{height:67.426950px;}
.h20{height:67.707450px;}
.h12{height:68.144640px;}
.h34{height:68.440950px;}
.h2d{height:68.446950px;}
.h45{height:70.664062px;}
.h2b{height:73.933200px;}
.h5{height:78.030000px;}
.hf{height:81.773340px;}
.ha{height:82.400391px;}
.h2c{height:85.383450px;}
.h32{height:93.370950px;}
.h9{height:102.796875px;}
.h2e{height:103.899450px;}
.h4{height:119.055004px;}
.h1e{height:128.961450px;}
.h2f{height:139.808184px;}
.h23{height:146.552175px;}
.h21{height:190.073730px;}
.h36{height:245.732616px;}
.h17{height:255.800160px;}
.h39{height:333.358200px;}
.h3e{height:333.363600px;}
.h42{height:1262.700000px;}
.h0{height:1262.833500px;}
.hd{height:1262.835000px;}
.h1{height:1263.000000px;}
.w6{width:182.079975px;}
.w7{width:247.638843px;}
.w5{width:254.911965px;}
.w4{width:319.750200px;}
.w8{width:333.358200px;}
.w9{width:333.363600px;}
.wc{width:579.420000px;}
.w2{width:637.794021px;}
.wb{width:892.500000px;}
.wa{width:892.800000px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x98{left:8.633255px;}
.x15b{left:12.001090px;}
.x44{left:16.627010px;}
.x75{left:24.789521px;}
.x42{left:29.417018px;}
.x15c{left:38.494235px;}
.x152{left:39.750549px;}
.x14d{left:42.669188px;}
.x41{left:44.773909px;}
.x76{left:45.990734px;}
.x154{left:52.947072px;}
.x77{left:55.805289px;}
.x14c{left:58.565836px;}
.x159{left:60.866639px;}
.x78{left:63.736871px;}
.x14e{left:70.541636px;}
.x153{left:71.566181px;}
.x79{left:73.364904px;}
.x35{left:77.265000px;}
.x9{left:82.528500px;}
.x7a{left:85.657522px;}
.x7b{left:89.716573px;}
.x7c{left:93.402583px;}
.x7d{left:98.394239px;}
.x1{left:102.045000px;}
.x7e{left:104.229680px;}
.x2{left:106.297500px;}
.x8{left:108.000000px;}
.x7f{left:110.526982px;}
.x155{left:113.512500px;}
.x80{left:115.998263px;}
.x81{left:117.996701px;}
.x15a{left:119.344171px;}
.x5d{left:121.147500px;}
.x82{left:122.615315px;}
.x83{left:124.329532px;}
.x31{left:126.651000px;}
.x84{left:128.326409px;}
.x43{left:130.484727px;}
.x32{left:132.876000px;}
.xa2{left:134.185500px;}
.x2d{left:136.246500px;}
.x85{left:137.812332px;}
.x110{left:139.638000px;}
.x86{left:140.743375px;}
.x87{left:142.404300px;}
.x20{left:143.473500px;}
.x88{left:144.518204px;}
.x89{left:146.037017px;}
.x97{left:147.493658px;}
.x8a{left:149.376631px;}
.x8b{left:151.605999px;}
.x5{left:153.070500px;}
.x8c{left:154.545925px;}
.x8d{left:157.290447px;}
.x8e{left:159.137893px;}
.x8f{left:162.282103px;}
.x90{left:163.934146px;}
.x91{left:165.515133px;}
.xdb{left:167.410500px;}
.x92{left:169.654122px;}
.x93{left:171.039706px;}
.x94{left:172.114422px;}
.x7{left:173.559000px;}
.x10f{left:174.627000px;}
.x104{left:176.841000px;}
.x143{left:178.905000px;}
.xcb{left:179.950500px;}
.x37{left:182.857500px;}
.x103{left:184.660500px;}
.x105{left:186.223500px;}
.x133{left:188.584500px;}
.x14f{left:190.199366px;}
.x16{left:191.848500px;}
.x95{left:193.422219px;}
.x1e{left:194.796000px;}
.x38{left:195.867000px;}
.x12b{left:197.032500px;}
.xc4{left:200.302500px;}
.x170{left:202.080000px;}
.x4{left:203.484001px;}
.x50{left:206.380500px;}
.x150{left:207.687445px;}
.x158{left:208.866000px;}
.xfb{left:210.732000px;}
.x11c{left:212.125500px;}
.x5e{left:213.888000px;}
.x146{left:215.305500px;}
.x58{left:216.405000px;}
.x168{left:218.743500px;}
.xce{left:220.074000px;}
.x166{left:221.473500px;}
.xe{left:223.039500px;}
.x134{left:224.755500px;}
.xc{left:225.874500px;}
.xf7{left:227.035500px;}
.x17{left:228.907500px;}
.x29{left:231.001500px;}
.x9d{left:232.350000px;}
.x12f{left:233.527500px;}
.x9f{left:234.714000px;}
.x151{left:236.181624px;}
.x135{left:237.255000px;}
.xcf{left:238.344000px;}
.x10a{left:239.872500px;}
.x2e{left:242.230500px;}
.x102{left:244.387500px;}
.x5f{left:246.066000px;}
.x14{left:249.570000px;}
.x169{left:250.791000px;}
.xe5{left:252.187500px;}
.x15e{left:254.067000px;}
.xbd{left:255.468000px;}
.x125{left:257.482500px;}
.x144{left:259.831500px;}
.xb7{left:260.968500px;}
.xd{left:262.678500px;}
.x51{left:264.502500px;}
.x2a{left:266.823000px;}
.xb9{left:269.221500px;}
.x52{left:270.411000px;}
.x1f{left:273.039000px;}
.x16a{left:277.584000px;}
.x72{left:278.926500px;}
.xb2{left:280.357500px;}
.xb8{left:281.358000px;}
.x69{left:283.572000px;}
.xab{left:285.520500px;}
.x40{left:288.283500px;}
.x115{left:289.858500px;}
.x145{left:291.153000px;}
.x10b{left:293.172000px;}
.xa7{left:294.556500px;}
.x96{left:296.277255px;}
.xa9{left:298.038000px;}
.x33{left:299.532000px;}
.xf5{left:301.626000px;}
.x121{left:303.874500px;}
.x13{left:306.558000px;}
.x6{left:310.558500px;}
.x73{left:312.186000px;}
.x106{left:315.043500px;}
.xf1{left:317.118000px;}
.x14b{left:320.527871px;}
.x11f{left:322.299000px;}
.x118{left:324.696000px;}
.xe9{left:325.807500px;}
.x123{left:328.768500px;}
.x109{left:330.157500px;}
.xd6{left:331.441500px;}
.x74{left:333.581445px;}
.xf6{left:335.335500px;}
.x15{left:338.074500px;}
.xbe{left:340.198500px;}
.x34{left:342.268500px;}
.x16f{left:345.021000px;}
.x1c{left:347.772000px;}
.xae{left:349.204500px;}
.x141{left:350.632500px;}
.xb6{left:351.811500px;}
.x107{left:354.103500px;}
.x36{left:356.085000px;}
.x59{left:358.089000px;}
.xea{left:361.059000px;}
.xbc{left:362.808000px;}
.x108{left:364.051500px;}
.x12d{left:365.058000px;}
.xaa{left:367.644000px;}
.xf9{left:368.791500px;}
.x9e{left:370.869000px;}
.x11e{left:372.649500px;}
.x122{left:375.048000px;}
.xd0{left:376.281000px;}
.x172{left:380.082000px;}
.xc2{left:381.565500px;}
.x5a{left:382.660500px;}
.x1d{left:384.195000px;}
.xe0{left:385.213500px;}
.x163{left:387.042000px;}
.x126{left:388.686000px;}
.xd9{left:390.424500px;}
.x11b{left:393.279000px;}
.x127{left:394.596000px;}
.x2f{left:395.977500px;}
.xe6{left:399.291000px;}
.x60{left:405.441000px;}
.x137{left:407.034000px;}
.x6f{left:408.550500px;}
.xe8{left:410.644500px;}
.x61{left:413.566500px;}
.x16b{left:414.964500px;}
.xb3{left:417.901500px;}
.xfa{left:420.283500px;}
.xed{left:421.833000px;}
.x67{left:423.691500px;}
.x39{left:425.611500px;}
.x53{left:427.918500px;}
.x136{left:429.964500px;}
.x1a{left:431.886000px;}
.x15d{left:434.047500px;}
.x13d{left:436.540500px;}
.xfc{left:439.183500px;}
.x3a{left:440.772000px;}
.x138{left:442.002000px;}
.xa{left:443.053500px;}
.x167{left:445.336500px;}
.x54{left:447.463500px;}
.xa4{left:448.861500px;}
.xbf{left:449.880000px;}
.x23{left:450.987000px;}
.xfd{left:452.188500px;}
.x63{left:453.684000px;}
.x3{left:454.959000px;}
.xe1{left:457.033500px;}
.x68{left:460.321500px;}
.xb4{left:461.338500px;}
.xee{left:462.949500px;}
.x132{left:464.916000px;}
.x62{left:466.060500px;}
.x160{left:467.299500px;}
.x30{left:468.435000px;}
.xf2{left:469.839000px;}
.x2b{left:474.982500px;}
.xe7{left:477.178500px;}
.x10c{left:479.154000px;}
.x99{left:480.733500px;}
.xa8{left:485.622000px;}
.x45{left:487.158000px;}
.xa0{left:489.427500px;}
.x5b{left:490.848000px;}
.x21{left:493.254000px;}
.x12e{left:494.724000px;}
.x5c{left:496.756500px;}
.xb{left:499.018500px;}
.xe2{left:503.497500px;}
.x2c{left:505.695000px;}
.x4b{left:507.232500px;}
.xdc{left:508.584000px;}
.x9a{left:509.968500px;}
.x164{left:511.783500px;}
.x3d{left:513.234000px;}
.x161{left:514.821000px;}
.x157{left:516.859500px;}
.x111{left:519.418500px;}
.x3e{left:521.467500px;}
.x120{left:523.416000px;}
.x112{left:525.327000px;}
.x22{left:527.995500px;}
.x116{left:530.191500px;}
.x171{left:532.065000px;}
.x113{left:534.210000px;}
.xb5{left:536.392500px;}
.xa6{left:537.588000px;}
.xf3{left:538.884000px;}
.xd1{left:540.109500px;}
.x114{left:541.881000px;}
.x4c{left:543.162000px;}
.xfe{left:544.842000px;}
.xf4{left:546.553500px;}
.x24{left:547.788000px;}
.xd2{left:549.774000px;}
.x3f{left:553.935000px;}
.xff{left:557.367000px;}
.xd3{left:562.945500px;}
.x70{left:566.911500px;}
.x25{left:569.071500px;}
.x124{left:571.152000px;}
.x11d{left:572.712000px;}
.xeb{left:578.299500px;}
.x55{left:580.756500px;}
.xd7{left:583.857000px;}
.xf8{left:585.105000px;}
.x48{left:588.073500px;}
.x10d{left:590.559000px;}
.x165{left:592.336500px;}
.xac{left:594.190500px;}
.xc9{left:595.575000px;}
.x119{left:599.710500px;}
.x162{left:600.763500px;}
.xd8{left:602.529000px;}
.xe3{left:604.590000px;}
.xde{left:606.676500px;}
.xa5{left:607.908000px;}
.x11{left:610.815000px;}
.x46{left:615.939000px;}
.x128{left:617.128500px;}
.xc7{left:618.447000px;}
.xe4{left:619.585500px;}
.x117{left:621.507000px;}
.x16c{left:622.783500px;}
.xa1{left:624.313500px;}
.xaf{left:626.805000px;}
.xd4{left:628.917000px;}
.xcc{left:630.802500px;}
.xc8{left:633.345000px;}
.x147{left:635.682000px;}
.xb0{left:639.162000px;}
.xd5{left:641.467500px;}
.x13e{left:643.188000px;}
.x47{left:644.475000px;}
.xcd{left:645.501000px;}
.xf{left:647.103000px;}
.xda{left:648.742500px;}
.xc0{left:650.445000px;}
.x101{left:651.792000px;}
.x142{left:654.082500px;}
.xba{left:656.329500px;}
.x6a{left:657.550500px;}
.x6e{left:660.562500px;}
.xad{left:662.935500px;}
.xc5{left:664.360500px;}
.xca{left:666.408000px;}
.xf0{left:668.829000px;}
.x16e{left:670.264500px;}
.x6c{left:672.145500px;}
.xdf{left:675.889500px;}
.x26{left:679.152000px;}
.x11a{left:680.982000px;}
.xa3{left:682.017000px;}
.x3b{left:686.325000px;}
.x15f{left:687.897000px;}
.x1b{left:690.219000px;}
.x10e{left:692.149500px;}
.x100{left:693.378000px;}
.x139{left:695.080500px;}
.x49{left:698.058000px;}
.x6b{left:699.205500px;}
.xc6{left:700.755000px;}
.xec{left:702.103500px;}
.x12c{left:704.022000px;}
.x4d{left:705.133500px;}
.x3c{left:706.596000px;}
.x10{left:707.683500px;}
.x12a{left:708.859500px;}
.x13a{left:709.978500px;}
.x149{left:710.988000px;}
.x129{left:712.210500px;}
.x6d{left:716.395500px;}
.x18{left:720.720000px;}
.x16d{left:722.136000px;}
.x13f{left:723.412500px;}
.x12{left:725.620500px;}
.x56{left:726.732000px;}
.x14a{left:728.356500px;}
.x140{left:733.534500px;}
.x4a{left:734.550000px;}
.x57{left:736.554000px;}
.xbb{left:738.066000px;}
.x148{left:739.872000px;}
.x130{left:741.252000px;}
.x13b{left:743.818500px;}
.x27{left:746.137500px;}
.x66{left:747.180000px;}
.x173{left:748.260000px;}
.x131{left:749.964000px;}
.xef{left:751.092000px;}
.xb1{left:752.925000px;}
.x71{left:754.803000px;}
.xc3{left:755.953500px;}
.x28{left:758.482500px;}
.xc1{left:760.200000px;}
.x13c{left:762.102000px;}
.x4e{left:763.683000px;}
.x9b{left:764.986500px;}
.xdd{left:766.098000px;}
.x64{left:767.521500px;}
.x4f{left:771.808500px;}
.x65{left:775.611000px;}
.x9c{left:777.373500px;}
.x156{left:778.963500px;}
.x19{left:783.792000px;}
@media print{
.v1b{vertical-align:-16.826667pt;}
.v14{vertical-align:-14.042667pt;}
.vb{vertical-align:-12.790008pt;}
.v13{vertical-align:-11.840000pt;}
.v1{vertical-align:-10.560059pt;}
.v9{vertical-align:-8.725333pt;}
.v1e{vertical-align:-7.210538pt;}
.v1d{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:5.653333pt;}
.vd{vertical-align:6.816000pt;}
.v4{vertical-align:8.416000pt;}
.v1c{vertical-align:9.477333pt;}
.v1a{vertical-align:12.101333pt;}
.v3{vertical-align:14.384000pt;}
.vc{vertical-align:16.298667pt;}
.v12{vertical-align:17.205333pt;}
.v8{vertical-align:20.042667pt;}
.v2{vertical-align:21.114667pt;}
.v5{vertical-align:24.021333pt;}
.v10{vertical-align:26.810667pt;}
.va{vertical-align:28.304000pt;}
.v17{vertical-align:30.629333pt;}
.v15{vertical-align:39.360000pt;}
.v11{vertical-align:41.808000pt;}
.vf{vertical-align:43.632000pt;}
.v6{vertical-align:47.253333pt;}
.v19{vertical-align:55.274667pt;}
.v16{vertical-align:60.474667pt;}
.v7{vertical-align:82.752000pt;}
.v18{vertical-align:121.946667pt;}
.lsc6{letter-spacing:-0.645120pt;}
.lsc4{letter-spacing:-0.214400pt;}
.lsc5{letter-spacing:-0.040320pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5c{letter-spacing:0.000125pt;}
.ls5e{letter-spacing:0.000444pt;}
.lsb5{letter-spacing:0.000473pt;}
.ls8{letter-spacing:0.000693pt;}
.ls69{letter-spacing:0.000944pt;}
.ls89{letter-spacing:0.000949pt;}
.lsa5{letter-spacing:0.001146pt;}
.ls6{letter-spacing:0.001249pt;}
.lsa{letter-spacing:0.001458pt;}
.ls23{letter-spacing:0.001546pt;}
.ls4f{letter-spacing:0.001888pt;}
.ls84{letter-spacing:0.001908pt;}
.lsc{letter-spacing:0.001910pt;}
.lsb{letter-spacing:0.002384pt;}
.ls5b{letter-spacing:0.002395pt;}
.ls26{letter-spacing:0.002399pt;}
.ls16{letter-spacing:0.002400pt;}
.ls5{letter-spacing:0.002405pt;}
.ls34{letter-spacing:0.002411pt;}
.ls63{letter-spacing:0.002717pt;}
.ls9f{letter-spacing:0.003144pt;}
.ls81{letter-spacing:0.003149pt;}
.ls3{letter-spacing:0.003370pt;}
.lsb2{letter-spacing:0.003656pt;}
.ls24{letter-spacing:0.003733pt;}
.ls97{letter-spacing:0.003851pt;}
.ls91{letter-spacing:0.004654pt;}
.ls65{letter-spacing:0.004695pt;}
.ls58{letter-spacing:0.005459pt;}
.lsc2{letter-spacing:0.117760pt;}
.lsc1{letter-spacing:0.239360pt;}
.ls66{letter-spacing:0.263072pt;}
.ls72{letter-spacing:0.268405pt;}
.lsc3{letter-spacing:0.294400pt;}
.lsc0{letter-spacing:0.311040pt;}
.ls13{letter-spacing:0.357868pt;}
.lsa9{letter-spacing:0.451842pt;}
.ls64{letter-spacing:1.249798pt;}
.ls6f{letter-spacing:1.521828pt;}
.ls87{letter-spacing:1.527161pt;}
.ls2b{letter-spacing:1.609675pt;}
.ls40{letter-spacing:1.615008pt;}
.lsa4{letter-spacing:1.662036pt;}
.ls15{letter-spacing:1.714365pt;}
.ls9{letter-spacing:2.088703pt;}
.ls70{letter-spacing:2.094037pt;}
.ls5a{letter-spacing:2.555614pt;}
.ls8a{letter-spacing:2.651520pt;}
.lsb4{letter-spacing:2.652778pt;}
.ls86{letter-spacing:2.653258pt;}
.ls50{letter-spacing:2.654400pt;}
.ls19{letter-spacing:2.655321pt;}
.ls59{letter-spacing:2.656125pt;}
.lsb0{letter-spacing:2.656495pt;}
.ls33{letter-spacing:2.656853pt;}
.ls1b{letter-spacing:2.657146pt;}
.ls38{letter-spacing:2.657546pt;}
.lsb1{letter-spacing:2.658111pt;}
.ls83{letter-spacing:2.658591pt;}
.ls1a{letter-spacing:2.660654pt;}
.lsb3{letter-spacing:2.660927pt;}
.ls5d{letter-spacing:2.661459pt;}
.ls3a{letter-spacing:2.662879pt;}
.ls4{letter-spacing:2.721546pt;}
.lsa3{letter-spacing:2.726879pt;}
.ls7{letter-spacing:2.800495pt;}
.ls7d{letter-spacing:3.160967pt;}
.lsaa{letter-spacing:3.166300pt;}
.ls18{letter-spacing:3.393914pt;}
.ls14{letter-spacing:3.799603pt;}
.ls39{letter-spacing:4.177828pt;}
.ls12{letter-spacing:4.183161pt;}
.ls7b{letter-spacing:4.300577pt;}
.ls7c{letter-spacing:4.303477pt;}
.ls1c{letter-spacing:5.105323pt;}
.lsf{letter-spacing:6.338870pt;}
.lsd{letter-spacing:6.344203pt;}
.ls6d{letter-spacing:6.377661pt;}
.ls82{letter-spacing:6.455603pt;}
.ls85{letter-spacing:6.460937pt;}
.ls96{letter-spacing:6.723861pt;}
.ls8f{letter-spacing:8.590528pt;}
.ls90{letter-spacing:8.591477pt;}
.ls9e{letter-spacing:8.703477pt;}
.ls9d{letter-spacing:8.711244pt;}
.lsa1{letter-spacing:8.926379pt;}
.lsa0{letter-spacing:8.931713pt;}
.lsb8{letter-spacing:9.126755pt;}
.lsb9{letter-spacing:9.166258pt;}
.lsba{letter-spacing:9.166264pt;}
.ls68{letter-spacing:9.693072pt;}
.ls4e{letter-spacing:9.693077pt;}
.ls8b{letter-spacing:9.696949pt;}
.ls67{letter-spacing:9.698405pt;}
.ls3c{letter-spacing:9.698411pt;}
.ls98{letter-spacing:9.699851pt;}
.lsa7{letter-spacing:10.525077pt;}
.lsb7{letter-spacing:10.634694pt;}
.ls53{letter-spacing:11.027861pt;}
.ls2a{letter-spacing:11.503477pt;}
.ls51{letter-spacing:11.507861pt;}
.ls2f{letter-spacing:12.856967pt;}
.ls6a{letter-spacing:12.925067pt;}
.ls37{letter-spacing:12.925077pt;}
.ls20{letter-spacing:12.927477pt;}
.ls80{letter-spacing:12.930400pt;}
.ls28{letter-spacing:12.930411pt;}
.ls44{letter-spacing:12.931861pt;}
.ls6b{letter-spacing:12.932811pt;}
.ls4b{letter-spacing:13.057910pt;}
.ls4c{letter-spacing:13.060811pt;}
.ls57{letter-spacing:13.625987pt;}
.ls95{letter-spacing:14.138144pt;}
.ls92{letter-spacing:14.142528pt;}
.ls29{letter-spacing:14.159321pt;}
.ls52{letter-spacing:14.164654pt;}
.ls8e{letter-spacing:14.202144pt;}
.ls62{letter-spacing:14.324811pt;}
.ls61{letter-spacing:14.334528pt;}
.ls2c{letter-spacing:14.467861pt;}
.ls43{letter-spacing:15.091861pt;}
.ls1f{letter-spacing:15.583321pt;}
.ls27{letter-spacing:15.584853pt;}
.ls32{letter-spacing:15.587733pt;}
.ls35{letter-spacing:15.588654pt;}
.ls3f{letter-spacing:15.769987pt;}
.ls77{letter-spacing:15.779861pt;}
.ls79{letter-spacing:15.780811pt;}
.ls36{letter-spacing:16.094300pt;}
.ls6c{letter-spacing:16.156937pt;}
.ls17{letter-spacing:16.158528pt;}
.lsa2{letter-spacing:16.159008pt;}
.ls1e{letter-spacing:16.159477pt;}
.ls4d{letter-spacing:16.159483pt;}
.ls9b{letter-spacing:16.163861pt;}
.ls45{letter-spacing:16.174559pt;}
.ls7f{letter-spacing:16.399477pt;}
.ls4a{letter-spacing:16.484811pt;}
.ls73{letter-spacing:16.490144pt;}
.lsaf{letter-spacing:16.606509pt;}
.ls3e{letter-spacing:16.623477pt;}
.ls94{letter-spacing:16.799321pt;}
.ls3b{letter-spacing:16.947861pt;}
.ls71{letter-spacing:17.507861pt;}
.lsae{letter-spacing:17.626144pt;}
.lsac{letter-spacing:17.631477pt;}
.ls42{letter-spacing:17.748654pt;}
.ls11{letter-spacing:18.132811pt;}
.ls78{letter-spacing:18.436654pt;}
.ls9a{letter-spacing:18.516811pt;}
.lsa6{letter-spacing:18.560015pt;}
.ls88{letter-spacing:18.813258pt;}
.ls21{letter-spacing:18.815321pt;}
.ls3d{letter-spacing:18.818591pt;}
.ls25{letter-spacing:18.819733pt;}
.ls1d{letter-spacing:18.820654pt;}
.ls2e{letter-spacing:18.916811pt;}
.ls7e{letter-spacing:19.055321pt;}
.ls93{letter-spacing:19.188811pt;}
.ls8d{letter-spacing:19.348811pt;}
.ls30{letter-spacing:19.491374pt;}
.ls60{letter-spacing:19.663477pt;}
.ls56{letter-spacing:20.164654pt;}
.lsab{letter-spacing:20.283520pt;}
.lsad{letter-spacing:20.792967pt;}
.ls10{letter-spacing:20.795812pt;}
.ls99{letter-spacing:21.172654pt;}
.ls41{letter-spacing:21.572811pt;}
.ls47{letter-spacing:21.828654pt;}
.ls8c{letter-spacing:21.999321pt;}
.lsa8{letter-spacing:22.311744pt;}
.ls5f{letter-spacing:22.319321pt;}
.lsb6{letter-spacing:22.507104pt;}
.ls74{letter-spacing:23.284811pt;}
.ls75{letter-spacing:23.290144pt;}
.ls9c{letter-spacing:24.238517pt;}
.ls7a{letter-spacing:24.243850pt;}
.ls49{letter-spacing:24.563850pt;}
.ls76{letter-spacing:25.940654pt;}
.ls55{letter-spacing:27.610144pt;}
.ls54{letter-spacing:27.615477pt;}
.ls48{letter-spacing:27.667861pt;}
.lsbe{letter-spacing:28.320853pt;}
.lsbf{letter-spacing:28.830300pt;}
.ls2{letter-spacing:29.025910pt;}
.ls46{letter-spacing:29.193987pt;}
.lse{letter-spacing:31.620811pt;}
.ls1{letter-spacing:35.362870pt;}
.lsbc{letter-spacing:44.596638pt;}
.lsbb{letter-spacing:44.629593pt;}
.ls2d{letter-spacing:63.569323pt;}
.lsbd{letter-spacing:66.491607pt;}
.ls22{letter-spacing:67.549077pt;}
.ls31{letter-spacing:76.971989pt;}
.ls6e{letter-spacing:223.406300pt;}
.wsb7{word-spacing:-58.181867pt;}
.wsaa{word-spacing:-48.523677pt;}
.ws87{word-spacing:-46.062584pt;}
.ws95{word-spacing:-42.007308pt;}
.wsb8{word-spacing:-39.040033pt;}
.ws50{word-spacing:-37.899668pt;}
.wsee{word-spacing:-34.722938pt;}
.wsb5{word-spacing:-32.337481pt;}
.ws55{word-spacing:-32.063846pt;}
.ws69{word-spacing:-29.521250pt;}
.wsb4{word-spacing:-28.241478pt;}
.wsf5{word-spacing:-28.220751pt;}
.ws85{word-spacing:-28.183296pt;}
.wscf{word-spacing:-26.122909pt;}
.wsf2{word-spacing:-23.886490pt;}
.ws6e{word-spacing:-16.162923pt;}
.ws116{word-spacing:-15.014400pt;}
.ws115{word-spacing:-14.837760pt;}
.wsd9{word-spacing:-13.056011pt;}
.ws6a{word-spacing:-12.543875pt;}
.ws1{word-spacing:-11.861333pt;}
.ws2{word-spacing:-11.733333pt;}
.wsf7{word-spacing:-10.983713pt;}
.ws117{word-spacing:-10.563840pt;}
.wsf8{word-spacing:-9.153094pt;}
.wsd4{word-spacing:-6.482048pt;}
.wsef{word-spacing:-6.466203pt;}
.wsd1{word-spacing:-6.456347pt;}
.wsc6{word-spacing:-5.224732pt;}
.wsbe{word-spacing:-5.108368pt;}
.wsbc{word-spacing:-4.642913pt;}
.wsb0{word-spacing:-3.246548pt;}
.wsad{word-spacing:-3.072003pt;}
.wse1{word-spacing:-2.024729pt;}
.ws93{word-spacing:-1.675638pt;}
.wsdf{word-spacing:-1.295900pt;}
.wsaf{word-spacing:-1.093819pt;}
.wsd7{word-spacing:-0.395637pt;}
.wsba{word-spacing:-0.197233pt;}
.wsbb{word-spacing:-0.191900pt;}
.ws118{word-spacing:-0.117760pt;}
.wsca{word-spacing:-0.058182pt;}
.wsf3{word-spacing:-0.047821pt;}
.wsde{word-spacing:-0.046545pt;}
.wsd2{word-spacing:-0.042507pt;}
.wsd0{word-spacing:-0.031881pt;}
.ws71{word-spacing:-0.023622pt;}
.wsce{word-spacing:-0.015599pt;}
.ws98{word-spacing:-0.003445pt;}
.ws0{word-spacing:0.000000pt;}
.ws80{word-spacing:0.011636pt;}
.ws11b{word-spacing:0.214400pt;}
.ws11d{word-spacing:0.322560pt;}
.ws11c{word-spacing:0.362880pt;}
.wsa9{word-spacing:0.768001pt;}
.ws11e{word-spacing:0.967680pt;}
.ws60{word-spacing:1.098008pt;}
.wsc4{word-spacing:1.349819pt;}
.ws11a{word-spacing:2.590720pt;}
.wsd3{word-spacing:3.040100pt;}
.wsdb{word-spacing:4.314767pt;}
.wsc5{word-spacing:6.272100pt;}
.wsd5{word-spacing:6.602767pt;}
.wsac{word-spacing:6.730767pt;}
.wse3{word-spacing:9.306767pt;}
.ws103{word-spacing:9.495281pt;}
.wsae{word-spacing:11.685433pt;}
.wsb3{word-spacing:11.822555pt;}
.wsfc{word-spacing:12.289946pt;}
.wsc0{word-spacing:12.858193pt;}
.wsbf{word-spacing:12.916374pt;}
.ws107{word-spacing:12.974556pt;}
.ws113{word-spacing:13.149102pt;}
.ws10e{word-spacing:13.207284pt;}
.wsdd{word-spacing:13.323647pt;}
.wsd6{word-spacing:13.397433pt;}
.wse7{word-spacing:13.498193pt;}
.wsb1{word-spacing:13.556375pt;}
.wsf4{word-spacing:13.614557pt;}
.ws78{word-spacing:13.672739pt;}
.ws10{word-spacing:13.963648pt;}
.wsb9{word-spacing:14.312739pt;}
.ws83{word-spacing:14.370921pt;}
.ws10b{word-spacing:14.545467pt;}
.ws10f{word-spacing:14.603649pt;}
.wsfe{word-spacing:14.661830pt;}
.ws57{word-spacing:14.778194pt;}
.ws104{word-spacing:14.894558pt;}
.ws5b{word-spacing:14.952740pt;}
.ws1a{word-spacing:15.010922pt;}
.ws43{word-spacing:15.063552pt;}
.wsfd{word-spacing:15.069103pt;}
.wse{word-spacing:15.185467pt;}
.ws10a{word-spacing:15.418195pt;}
.ws2e{word-spacing:15.476377pt;}
.wsc8{word-spacing:15.534558pt;}
.ws84{word-spacing:15.709104pt;}
.wsa7{word-spacing:15.883650pt;}
.ws119{word-spacing:15.897600pt;}
.ws49{word-spacing:15.941831pt;}
.wsa2{word-spacing:16.000013pt;}
.wsc7{word-spacing:16.116377pt;}
.ws9a{word-spacing:16.174559pt;}
.wsdc{word-spacing:16.232741pt;}
.ws94{word-spacing:16.290923pt;}
.ws42{word-spacing:16.349105pt;}
.wsf1{word-spacing:16.354714pt;}
.ws4{word-spacing:16.402534pt;}
.ws24{word-spacing:16.523650pt;}
.ws1f{word-spacing:16.640014pt;}
.ws1b{word-spacing:16.698196pt;}
.ws47{word-spacing:16.756378pt;}
.wscc{word-spacing:16.814559pt;}
.ws9c{word-spacing:16.872741pt;}
.ws81{word-spacing:16.930923pt;}
.ws8e{word-spacing:16.989105pt;}
.ws45{word-spacing:17.072026pt;}
.wse0{word-spacing:17.105469pt;}
.ws44{word-spacing:17.119846pt;}
.ws7c{word-spacing:17.163651pt;}
.ws54{word-spacing:17.167667pt;}
.ws86{word-spacing:17.221833pt;}
.ws25{word-spacing:17.280014pt;}
.wsf9{word-spacing:17.358950pt;}
.wsff{word-spacing:17.396378pt;}
.wsa1{word-spacing:17.454560pt;}
.wsa{word-spacing:17.512742pt;}
.ws90{word-spacing:17.570924pt;}
.ws75{word-spacing:17.598054pt;}
.ws99{word-spacing:17.629106pt;}
.ws3f{word-spacing:17.687287pt;}
.wsc2{word-spacing:17.722767pt;}
.wsc3{word-spacing:17.728100pt;}
.ws65{word-spacing:17.745469pt;}
.wse6{word-spacing:17.803651pt;}
.ws5f{word-spacing:17.861833pt;}
.ws76{word-spacing:17.920015pt;}
.ws51{word-spacing:17.978197pt;}
.wsc9{word-spacing:18.036379pt;}
.ws4a{word-spacing:18.152742pt;}
.wsa8{word-spacing:18.210924pt;}
.ws8f{word-spacing:18.269106pt;}
.ws26{word-spacing:18.327288pt;}
.ws3d{word-spacing:18.385470pt;}
.ws2d{word-spacing:18.443652pt;}
.wsa6{word-spacing:18.501834pt;}
.ws88{word-spacing:18.560015pt;}
.ws5c{word-spacing:18.618197pt;}
.ws35{word-spacing:18.676379pt;}
.wscb{word-spacing:18.734561pt;}
.ws13{word-spacing:18.792743pt;}
.wsab{word-spacing:18.850925pt;}
.ws9d{word-spacing:18.909107pt;}
.ws4e{word-spacing:18.967289pt;}
.ws4f{word-spacing:19.025470pt;}
.ws40{word-spacing:19.141834pt;}
.ws7f{word-spacing:19.200016pt;}
.ws1d{word-spacing:19.258198pt;}
.wsf{word-spacing:19.316380pt;}
.ws6c{word-spacing:19.374562pt;}
.ws6b{word-spacing:19.432743pt;}
.ws68{word-spacing:19.490925pt;}
.ws66{word-spacing:19.549107pt;}
.wsfa{word-spacing:19.558707pt;}
.ws4b{word-spacing:19.607289pt;}
.ws36{word-spacing:19.723653pt;}
.ws2b{word-spacing:19.781835pt;}
.wsa0{word-spacing:19.840017pt;}
.wsfb{word-spacing:19.893453pt;}
.ws10c{word-spacing:19.898198pt;}
.ws48{word-spacing:19.956380pt;}
.ws5d{word-spacing:20.014562pt;}
.ws18{word-spacing:20.072744pt;}
.ws9f{word-spacing:20.189108pt;}
.ws105{word-spacing:20.247290pt;}
.ws3e{word-spacing:20.305471pt;}
.ws37{word-spacing:20.363653pt;}
.ws27{word-spacing:20.421835pt;}
.ws11{word-spacing:20.480017pt;}
.ws2c{word-spacing:20.538199pt;}
.ws89{word-spacing:20.596381pt;}
.wse4{word-spacing:20.654563pt;}
.wse5{word-spacing:20.712745pt;}
.ws58{word-spacing:20.770926pt;}
.ws5a{word-spacing:20.829108pt;}
.ws67{word-spacing:20.887290pt;}
.ws17{word-spacing:20.945472pt;}
.ws79{word-spacing:21.003654pt;}
.ws2f{word-spacing:21.061836pt;}
.wse2{word-spacing:21.120018pt;}
.wscd{word-spacing:21.178199pt;}
.wsa3{word-spacing:21.236381pt;}
.ws56{word-spacing:21.294563pt;}
.ws23{word-spacing:21.352745pt;}
.ws34{word-spacing:21.410927pt;}
.ws6f{word-spacing:21.469109pt;}
.ws21{word-spacing:21.527291pt;}
.ws92{word-spacing:21.585473pt;}
.ws3c{word-spacing:21.643654pt;}
.ws64{word-spacing:21.760018pt;}
.ws1e{word-spacing:21.818200pt;}
.wsbd{word-spacing:21.934564pt;}
.wsc{word-spacing:21.992746pt;}
.ws59{word-spacing:22.050927pt;}
.ws39{word-spacing:22.109109pt;}
.ws16{word-spacing:22.167291pt;}
.ws7a{word-spacing:22.225473pt;}
.ws7d{word-spacing:22.283655pt;}
.ws4d{word-spacing:22.341837pt;}
.ws70{word-spacing:22.400019pt;}
.ws9{word-spacing:22.458201pt;}
.ws30{word-spacing:22.516382pt;}
.ws5e{word-spacing:22.574564pt;}
.wsec{word-spacing:22.632746pt;}
.wsea{word-spacing:22.749110pt;}
.ws108{word-spacing:22.807292pt;}
.ws22{word-spacing:22.981837pt;}
.ws41{word-spacing:23.040019pt;}
.ws61{word-spacing:23.098201pt;}
.wsd{word-spacing:23.156383pt;}
.wseb{word-spacing:23.272747pt;}
.ws101{word-spacing:23.330929pt;}
.ws7e{word-spacing:23.389110pt;}
.ws82{word-spacing:23.447292pt;}
.ws4c{word-spacing:23.505474pt;}
.ws106{word-spacing:23.563656pt;}
.ws31{word-spacing:23.680020pt;}
.wsa5{word-spacing:23.738202pt;}
.ws102{word-spacing:23.854565pt;}
.ws33{word-spacing:23.910400pt;}
.ws6d{word-spacing:23.970929pt;}
.wsb{word-spacing:24.087293pt;}
.ws12{word-spacing:24.261838pt;}
.ws100{word-spacing:24.320020pt;}
.wsda{word-spacing:24.436384pt;}
.wsd8{word-spacing:24.494566pt;}
.wsa4{word-spacing:24.552748pt;}
.ws9b{word-spacing:24.610930pt;}
.ws111{word-spacing:24.727293pt;}
.ws8{word-spacing:24.785475pt;}
.ws63{word-spacing:24.843657pt;}
.ws29{word-spacing:24.960021pt;}
.ws1c{word-spacing:25.076385pt;}
.ws62{word-spacing:25.134566pt;}
.ws7b{word-spacing:25.192748pt;}
.ws6{word-spacing:25.425476pt;}
.wsb6{word-spacing:25.483658pt;}
.ws110{word-spacing:25.541839pt;}
.ws28{word-spacing:25.716385pt;}
.ws3b{word-spacing:25.774567pt;}
.ws2a{word-spacing:25.832749pt;}
.ws114{word-spacing:25.949113pt;}
.ws10d{word-spacing:26.007294pt;}
.wsf0{word-spacing:26.065476pt;}
.wsc1{word-spacing:26.123658pt;}
.ws9e{word-spacing:26.181840pt;}
.ws14{word-spacing:26.240022pt;}
.wsb2{word-spacing:26.356386pt;}
.ws46{word-spacing:26.414567pt;}
.ws109{word-spacing:26.763659pt;}
.ws91{word-spacing:26.880022pt;}
.ws3a{word-spacing:26.938204pt;}
.ws15{word-spacing:27.054568pt;}
.ws8c{word-spacing:27.112750pt;}
.ws20{word-spacing:27.229114pt;}
.ws8d{word-spacing:27.461841pt;}
.wse8{word-spacing:27.578205pt;}
.wse9{word-spacing:27.636387pt;}
.wsed{word-spacing:27.752750pt;}
.ws32{word-spacing:28.003782pt;}
.ws8b{word-spacing:28.101842pt;}
.ws19{word-spacing:28.392751pt;}
.ws77{word-spacing:28.509115pt;}
.ws38{word-spacing:28.567297pt;}
.ws7{word-spacing:29.323661pt;}
.ws112{word-spacing:29.614570pt;}
.ws8a{word-spacing:32.232754pt;}
.ws3{word-spacing:33.333324pt;}
.ws72{word-spacing:35.672564pt;}
.ws97{word-spacing:46.208443pt;}
.ws96{word-spacing:47.962767pt;}
.ws53{word-spacing:52.821141pt;}
.ws74{word-spacing:71.042981pt;}
.ws5{word-spacing:84.164373pt;}
.ws73{word-spacing:109.747743pt;}
.wsf6{word-spacing:223.375026pt;}
.ws52{word-spacing:244.993380pt;}
._2a{margin-left:-31.416267pt;}
._2d{margin-left:-29.093861pt;}
._2b{margin-left:-24.242742pt;}
._2c{margin-left:-18.158749pt;}
._20{margin-left:-17.232341pt;}
._1d{margin-left:-16.158612pt;}
._1c{margin-left:-14.895401pt;}
._1a{margin-left:-13.790092pt;}
._1b{margin-left:-12.337400pt;}
._1f{margin-left:-10.916288pt;}
._1e{margin-left:-9.558336pt;}
._21{margin-left:-8.326706pt;}
._19{margin-left:-6.716112pt;}
._d{margin-left:-5.431760pt;}
._b{margin-left:-4.160410pt;}
._8{margin-left:-2.597338pt;}
._5{margin-left:-1.232000pt;}
._7{width:1.306665pt;}
._3{width:2.469327pt;}
._2{width:4.154668pt;}
._4{width:5.466666pt;}
._0{width:7.386667pt;}
._6{width:8.394660pt;}
._1{width:10.080001pt;}
._2e{width:11.265449pt;}
._28{width:12.474829pt;}
._c{width:14.879056pt;}
._27{width:16.677349pt;}
._18{width:18.655533pt;}
._26{width:20.426198pt;}
._14{width:21.441475pt;}
._12{width:22.546931pt;}
._13{width:23.943780pt;}
._33{width:25.658203pt;}
._11{width:27.714930pt;}
._35{width:30.644870pt;}
._a{width:32.000000pt;}
._36{width:33.068147pt;}
._10{width:34.083423pt;}
._34{width:35.395421pt;}
._38{width:39.322619pt;}
._22{width:40.397477pt;}
._31{width:42.007308pt;}
._37{width:46.312766pt;}
._9{width:47.999999pt;}
._32{width:53.061862pt;}
._30{width:56.494593pt;}
._29{width:67.532032pt;}
._f{width:71.731200pt;}
._e{width:84.164373pt;}
._25{width:92.125954pt;}
._17{width:105.465459pt;}
._24{width:113.196308pt;}
._16{width:126.535812pt;}
._23{width:134.266662pt;}
._2f{width:331.407867pt;}
._15{width:358.537084pt;}
.fs18{font-size:23.047360pt;}
.fs10{font-size:23.622039pt;}
.fs16{font-size:26.339840pt;}
.fs12{font-size:28.220800pt;}
.fsb{font-size:31.880533pt;}
.fs17{font-size:32.924800pt;}
.fs4{font-size:37.333333pt;}
.fsf{font-size:37.896320pt;}
.fs15{font-size:39.509760pt;}
.fs1c{font-size:40.320000pt;}
.fse{font-size:42.507200pt;}
.fs5{font-size:42.666667pt;}
.fs1b{font-size:42.880000pt;}
.fs8{font-size:46.933333pt;}
.fs9{font-size:47.820800pt;}
.fs19{font-size:48.000000pt;}
.fs11{font-size:51.726376pt;}
.fs13{font-size:51.735782pt;}
.fs14{font-size:51.735783pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsc{font-size:58.181867pt;}
.fs7{font-size:58.666667pt;}
.fs1a{font-size:58.880000pt;}
.fsd{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fsa{font-size:76.513067pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.yf8{bottom:0.528969pt;}
.yfb{bottom:0.694766pt;}
.yae{bottom:2.273779pt;}
.y1d8{bottom:10.752713pt;}
.yf5{bottom:13.011069pt;}
.yac{bottom:13.642675pt;}
.y1f6{bottom:15.408799pt;}
.yf7{bottom:20.314005pt;}
.y1d7{bottom:24.486831pt;}
.yf4{bottom:25.493169pt;}
.y1d3{bottom:27.426505pt;}
.yf6{bottom:29.519653pt;}
.yad{bottom:32.314507pt;}
.yf3{bottom:32.796105pt;}
.yf2{bottom:35.575169pt;}
.y1d6{bottom:36.998052pt;}
.y26a{bottom:37.920000pt;}
.y1da{bottom:38.780081pt;}
.y1f4{bottom:39.114662pt;}
.yef{bottom:40.099042pt;}
.y1e7{bottom:40.643829pt;}
.yf0{bottom:42.001753pt;}
.y23{bottom:46.313332pt;}
.y26b{bottom:46.560000pt;}
.yf1{bottom:46.723002pt;}
.y1d5{bottom:48.445114pt;}
.yee{bottom:50.465264pt;}
.y1dc{bottom:51.526476pt;}
.yeb{bottom:51.554783pt;}
.yed{bottom:53.560130pt;}
.yec{bottom:55.360205pt;}
.y1d4{bottom:58.951489pt;}
.y5{bottom:59.133337pt;}
.y259{bottom:59.520000pt;}
.y71{bottom:60.284000pt;}
.yea{bottom:62.947364pt;}
.y22{bottom:63.113333pt;}
.ye8{bottom:65.071137pt;}
.ye9{bottom:69.871338pt;}
.y1dd{bottom:72.439264pt;}
.ye7{bottom:73.660970pt;}
.y1e8{bottom:73.832668pt;}
.ye6{bottom:75.145242pt;}
.y1db{bottom:75.518251pt;}
.y21{bottom:75.913334pt;}
.ye5{bottom:80.750739pt;}
.ye4{bottom:82.921882pt;}
.y4{bottom:86.333337pt;}
.ye3{bottom:88.195787pt;}
.y1de{bottom:90.594643pt;}
.y97{bottom:93.622667pt;}
.ye2{bottom:97.748817pt;}
.y96{bottom:98.701333pt;}
.y1f8{bottom:99.663369pt;}
.yfc{bottom:99.943647pt;}
.yaf{bottom:101.522657pt;}
.ye1{bottom:105.770205pt;}
.y1df{bottom:106.515878pt;}
.y1e9{bottom:107.015630pt;}
.y95{bottom:108.650667pt;}
.y1f7{bottom:113.195463pt;}
.y123{bottom:113.417333pt;}
.y94{bottom:113.729333pt;}
.yaa{bottom:114.798667pt;}
.y209{bottom:115.841333pt;}
.yca{bottom:116.144000pt;}
.ye0{bottom:116.728557pt;}
.y1e2{bottom:117.098678pt;}
.y1e0{bottom:120.579242pt;}
.y20{bottom:123.790666pt;}
.y1f2{bottom:124.270667pt;}
.ydf{bottom:125.768408pt;}
.y70{bottom:126.109333pt;}
.ya9{bottom:130.984000pt;}
.y122{bottom:133.198667pt;}
.y168{bottom:133.200000pt;}
.ya8{bottom:134.580000pt;}
.y1e3{bottom:135.071804pt;}
.y208{bottom:135.622667pt;}
.yc9{bottom:135.925333pt;}
.y1ea{bottom:140.204462pt;}
.yde{bottom:142.466473pt;}
.y1f1{bottom:144.052000pt;}
.y6f{bottom:145.890667pt;}
.y1a5{bottom:152.981333pt;}
.y207{bottom:155.405333pt;}
.yc8{bottom:155.706667pt;}
.y1e4{bottom:156.237395pt;}
.y93{bottom:157.076000pt;}
.y121{bottom:158.137333pt;}
.y167{bottom:158.380000pt;}
.y1e1{bottom:158.536278pt;}
.ya7{bottom:161.004000pt;}
.y49{bottom:163.418666pt;}
.y245{bottom:163.465333pt;}
.ydd{bottom:163.696308pt;}
.y182{bottom:166.933333pt;}
.y146{bottom:171.412000pt;}
.y6e{bottom:172.314667pt;}
.y1a4{bottom:172.762667pt;}
.y1eb{bottom:173.393308pt;}
.y17{bottom:175.052000pt;}
.y11e{bottom:175.409333pt;}
.yc7{bottom:175.489333pt;}
.y92{bottom:176.857333pt;}
.y166{bottom:178.161333pt;}
.y227{bottom:178.238667pt;}
.y1f0{bottom:179.866667pt;}
.ya6{bottom:180.785333pt;}
.y48{bottom:181.018667pt;}
.y1e5{bottom:181.512660pt;}
.y244{bottom:183.246667pt;}
.y143{bottom:185.089333pt;}
.y1c2{bottom:185.189333pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y181{bottom:186.714667pt;}
.y142{bottom:188.685333pt;}
.y120{bottom:189.228000pt;}
.y6d{bottom:192.096000pt;}
.y1a3{bottom:192.545333pt;}
.y11f{bottom:193.592000pt;}
.yc6{bottom:195.270667pt;}
.y206{bottom:196.229333pt;}
.y91{bottom:196.638667pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y165{bottom:197.944000pt;}
.y226{bottom:198.021333pt;}
.y47{bottom:198.618666pt;}
.y1c0{bottom:199.466667pt;}
.y1c1{bottom:200.398667pt;}
.ya5{bottom:200.566667pt;}
.y145{bottom:202.504000pt;}
.y180{bottom:206.497333pt;}
.y1ec{bottom:206.576249pt;}
.y144{bottom:206.866667pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y6c{bottom:211.878667pt;}
.y1e6{bottom:212.238043pt;}
.y243{bottom:213.513333pt;}
.yc5{bottom:215.053333pt;}
.y46{bottom:216.218667pt;}
.y90{bottom:216.421333pt;}
.y11d{bottom:217.164000pt;}
.y164{bottom:217.725333pt;}
.y225{bottom:217.802667pt;}
.y1a2{bottom:218.386667pt;}
.ya4{bottom:220.349333pt;}
.y1ef{bottom:224.393333pt;}
.y17f{bottom:226.278667pt;}
.y141{bottom:230.808000pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y6b{bottom:231.660000pt;}
.y242{bottom:233.294667pt;}
.y8f{bottom:236.202667pt;}
.y11c{bottom:236.946667pt;}
.y163{bottom:237.508000pt;}
.y224{bottom:237.584000pt;}
.y1a1{bottom:238.168000pt;}
.y1ed{bottom:239.765095pt;}
.ya3{bottom:240.130667pt;}
.yc4{bottom:241.674667pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y1ee{bottom:245.133333pt;}
.yc3{bottom:245.528000pt;}
.y17e{bottom:246.061333pt;}
.y45{bottom:249.818666pt;}
.y205{bottom:250.966667pt;}
.y6a{bottom:251.442667pt;}
.yc1{bottom:252.604000pt;}
.y241{bottom:253.077333pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.yff{bottom:253.645333pt;}
.y162{bottom:253.693333pt;}
.yc0{bottom:256.200000pt;}
.y140{bottom:256.409333pt;}
.y11b{bottom:256.728000pt;}
.y161{bottom:257.289333pt;}
.y223{bottom:257.366667pt;}
.y1bf{bottom:257.701333pt;}
.y1a0{bottom:257.950667pt;}
.y1be{bottom:261.297333pt;}
.y1d9{bottom:261.646667pt;}
.yc2{bottom:263.938667pt;}
.y17d{bottom:265.842667pt;}
.y44{bottom:267.418662pt;}
.yfe{bottom:267.542667pt;}
.y1f5{bottom:269.497715pt;}
.yfd{bottom:269.645333pt;}
.y204{bottom:270.748000pt;}
.y69{bottom:271.224000pt;}
.y13f{bottom:272.117333pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y13e{bottom:276.192000pt;}
.y11a{bottom:276.509333pt;}
.y160{bottom:277.070667pt;}
.y222{bottom:277.148000pt;}
.y19f{bottom:277.732000pt;}
.y8d{bottom:280.394667pt;}
.y1bd{bottom:281.078667pt;}
.y240{bottom:283.342667pt;}
.y43{bottom:285.018668pt;}
.y17c{bottom:285.624000pt;}
.y8e{bottom:285.673333pt;}
.ya2{bottom:286.902667pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y203{bottom:290.529333pt;}
.y68{bottom:291.005333pt;}
.y13d{bottom:295.973333pt;}
.y119{bottom:296.292000pt;}
.yf9{bottom:296.785333pt;}
.y15f{bottom:296.853333pt;}
.y221{bottom:296.929333pt;}
.y19e{bottom:297.513333pt;}
.yfa{bottom:298.364347pt;}
.y8c{bottom:300.176000pt;}
.y1bc{bottom:300.861333pt;}
.y42{bottom:302.618664pt;}
.ybf{bottom:304.709333pt;}
.y1d2{bottom:304.825079pt;}
.y17b{bottom:305.406667pt;}
.ya1{bottom:306.685333pt;}
.ybe{bottom:308.305333pt;}
.ye{bottom:309.452000pt;}
.y202{bottom:310.312000pt;}
.y23f{bottom:313.609333pt;}
.y13c{bottom:315.754667pt;}
.y118{bottom:316.073333pt;}
.y220{bottom:316.712000pt;}
.y19d{bottom:317.296000pt;}
.y67{bottom:317.429333pt;}
.y41{bottom:320.218670pt;}
.y15e{bottom:322.033333pt;}
.y8b{bottom:325.272000pt;}
.ya0{bottom:326.466667pt;}
.y1bb{bottom:327.101333pt;}
.ybd{bottom:328.086667pt;}
.ydc{bottom:329.155107pt;}
.y201{bottom:330.093333pt;}
.y17a{bottom:331.829333pt;}
.y23e{bottom:333.390667pt;}
.y13b{bottom:335.537333pt;}
.y117{bottom:335.854667pt;}
.y21f{bottom:336.493333pt;}
.y19c{bottom:337.077333pt;}
.y66{bottom:337.210667pt;}
.y40{bottom:337.818666pt;}
.y15d{bottom:341.816000pt;}
.y22e{bottom:341.969333pt;}
.ybc{bottom:343.794667pt;}
.yd{bottom:343.809333pt;}
.y8a{bottom:345.053333pt;}
.y9f{bottom:346.248000pt;}
.y200{bottom:346.280000pt;}
.y1ba{bottom:346.882667pt;}
.ybb{bottom:347.869333pt;}
.y1ff{bottom:349.876000pt;}
.y179{bottom:351.612000pt;}
.y13a{bottom:355.318667pt;}
.y3f{bottom:355.418667pt;}
.y116{bottom:355.637333pt;}
.y21e{bottom:356.276000pt;}
.y65{bottom:356.993333pt;}
.y15c{bottom:361.597333pt;}
.y22d{bottom:361.750667pt;}
.yc{bottom:362.706666pt;}
.y19b{bottom:362.918667pt;}
.yba{bottom:363.576000pt;}
.y23d{bottom:363.657333pt;}
.y89{bottom:364.834667pt;}
.y9e{bottom:366.030667pt;}
.y1b9{bottom:366.665333pt;}
.yb9{bottom:367.650667pt;}
.y178{bottom:371.393333pt;}
.y1fe{bottom:372.662667pt;}
.y139{bottom:375.100000pt;}
.y115{bottom:375.418667pt;}
.y21d{bottom:376.057333pt;}
.y64{bottom:376.774667pt;}
.y3e{bottom:381.018666pt;}
.y15b{bottom:381.378667pt;}
.y22c{bottom:381.533333pt;}
.y19a{bottom:382.701333pt;}
.y23c{bottom:383.438667pt;}
.y88{bottom:384.617333pt;}
.y9d{bottom:385.812000pt;}
.y1b8{bottom:386.446667pt;}
.yb8{bottom:387.432000pt;}
.y258{bottom:389.273333pt;}
.y177{bottom:391.174667pt;}
.y1fd{bottom:393.402667pt;}
.y138{bottom:394.882667pt;}
.y63{bottom:396.557333pt;}
.y3d{bottom:398.618667pt;}
.y15a{bottom:401.161333pt;}
.y21c{bottom:401.314667pt;}
.y199{bottom:402.482667pt;}
.y87{bottom:404.398667pt;}
.y9c{bottom:405.594667pt;}
.y1b7{bottom:406.228000pt;}
.yb7{bottom:407.214667pt;}
.y257{bottom:409.054667pt;}
.y1fc{bottom:409.402667pt;}
.y176{bottom:410.957333pt;}
.y23b{bottom:413.704000pt;}
.y137{bottom:414.664000pt;}
.y21b{bottom:421.097333pt;}
.y114{bottom:421.389333pt;}
.y198{bottom:422.264000pt;}
.y62{bottom:422.980000pt;}
.y1fb{bottom:423.300000pt;}
.y86{bottom:424.181333pt;}
.y3c{bottom:424.218672pt;}
.y9b{bottom:425.376000pt;}
.y1fa{bottom:425.402667pt;}
.y1b6{bottom:426.010667pt;}
.yb6{bottom:426.996000pt;}
.y175{bottom:430.738667pt;}
.y23a{bottom:433.486667pt;}
.y159{bottom:435.733333pt;}
.y136{bottom:440.265333pt;}
.y256{bottom:440.792000pt;}
.y21a{bottom:440.878667pt;}
.y113{bottom:441.172000pt;}
.y1f9{bottom:441.402667pt;}
.y197{bottom:442.046667pt;}
.y61{bottom:442.762667pt;}
.y85{bottom:443.962667pt;}
.y1b5{bottom:445.792000pt;}
.yb5{bottom:446.777333pt;}
.y174{bottom:450.521333pt;}
.y3b{bottom:451.018680pt;}
.y135{bottom:455.973333pt;}
.y1f3{bottom:457.916000pt;}
.y134{bottom:460.046667pt;}
.y255{bottom:460.574667pt;}
.y219{bottom:460.660000pt;}
.y112{bottom:460.953333pt;}
.y196{bottom:461.828000pt;}
.y60{bottom:462.544000pt;}
.yb{bottom:462.990669pt;}
.y84{bottom:463.744000pt;}
.y239{bottom:463.752000pt;}
.y1b4{bottom:465.573333pt;}
.yb4{bottom:466.560000pt;}
.y3a{bottom:471.018680pt;}
.y9a{bottom:471.354667pt;}
.y269{bottom:471.691520pt;}
.y173{bottom:476.944000pt;}
.ya{bottom:478.990666pt;}
.y133{bottom:479.829333pt;}
.y254{bottom:480.356000pt;}
.y218{bottom:480.442667pt;}
.y158{bottom:480.673333pt;}
.y111{bottom:480.734667pt;}
.y1b3{bottom:481.760000pt;}
.y5f{bottom:482.325333pt;}
.y83{bottom:483.526667pt;}
.y238{bottom:483.534667pt;}
.y1b2{bottom:485.356000pt;}
.y99{bottom:487.354667pt;}
.y39{bottom:491.018680pt;}
.y9{bottom:494.990666pt;}
.y195{bottom:495.982667pt;}
.y172{bottom:496.726667pt;}
.y132{bottom:499.610667pt;}
.y217{bottom:500.224000pt;}
.y157{bottom:500.454667pt;}
.y110{bottom:500.517333pt;}
.y5e{bottom:502.108000pt;}
.yb3{bottom:502.374667pt;}
.y81{bottom:503.308000pt;}
.y98{bottom:503.354667pt;}
.y1b1{bottom:505.137333pt;}
.y268{bottom:507.210880pt;}
.y82{bottom:508.586667pt;}
.y38{bottom:511.018680pt;}
.y253{bottom:512.093333pt;}
.y194{bottom:513.512000pt;}
.y237{bottom:513.800000pt;}
.y171{bottom:516.508000pt;}
.y215{bottom:520.005333pt;}
.y156{bottom:520.236000pt;}
.y5d{bottom:521.889333pt;}
.y216{bottom:523.682667pt;}
.y22b{bottom:525.481333pt;}
.y10f{bottom:526.528000pt;}
.y37{bottom:531.018680pt;}
.y252{bottom:531.874667pt;}
.y170{bottom:531.989333pt;}
.y236{bottom:533.582667pt;}
.y16f{bottom:536.290667pt;}
.y80{bottom:537.794667pt;}
.y155{bottom:540.018667pt;}
.y1b0{bottom:540.769333pt;}
.y267{bottom:542.730240pt;}
.ydb{bottom:542.932000pt;}
.y131{bottom:544.785333pt;}
.y214{bottom:545.264000pt;}
.y10e{bottom:546.310667pt;}
.y5c{bottom:548.313333pt;}
.y36{bottom:551.018680pt;}
.y16e{bottom:556.072000pt;}
.y154{bottom:559.800000pt;}
.yb2{bottom:561.000000pt;}
.yda{bottom:562.713333pt;}
.y251{bottom:563.612000pt;}
.y130{bottom:564.566667pt;}
.y213{bottom:565.045333pt;}
.y10d{bottom:566.092000pt;}
.y235{bottom:567.764000pt;}
.y5b{bottom:568.094667pt;}
.y193{bottom:570.254667pt;}
.y35{bottom:571.018680pt;}
.y8{bottom:573.786667pt;}
.yb1{bottom:574.896000pt;}
.y16d{bottom:575.853333pt;}
.y1d0{bottom:576.732000pt;}
.yb0{bottom:577.000000pt;}
.y7f{bottom:577.872000pt;}
.y266{bottom:578.249600pt;}
.y153{bottom:579.582667pt;}
.y1d1{bottom:580.408000pt;}
.y1af{bottom:581.992000pt;}
.yd9{bottom:582.496000pt;}
.y250{bottom:583.393333pt;}
.y12f{bottom:584.349333pt;}
.y212{bottom:584.826667pt;}
.y10c{bottom:585.873333pt;}
.y5a{bottom:587.877333pt;}
.y192{bottom:590.036000pt;}
.y34{bottom:591.018680pt;}
.y7{bottom:592.685334pt;}
.y16c{bottom:595.636000pt;}
.y1cf{bottom:596.513333pt;}
.yd8{bottom:598.681333pt;}
.yd7{bottom:602.277333pt;}
.y24f{bottom:603.174667pt;}
.y12e{bottom:604.130667pt;}
.y211{bottom:604.609333pt;}
.y152{bottom:604.762667pt;}
.y10b{bottom:605.656000pt;}
.yab{bottom:606.797333pt;}
.y59{bottom:607.658667pt;}
.y191{bottom:609.818667pt;}
.y33{bottom:611.018680pt;}
.y265{bottom:613.768960pt;}
.y16b{bottom:615.417333pt;}
.y1ce{bottom:616.294667pt;}
.y1cd{bottom:616.296000pt;}
.y234{bottom:621.073333pt;}
.yd6{bottom:622.058667pt;}
.y12d{bottom:623.913333pt;}
.y210{bottom:624.390667pt;}
.y151{bottom:624.545333pt;}
.y10a{bottom:625.437333pt;}
.y58{bottom:627.440000pt;}
.y190{bottom:629.600000pt;}
.y7e{bottom:630.029333pt;}
.y32{bottom:633.021325pt;}
.y24e{bottom:634.912000pt;}
.y1cc{bottom:636.077333pt;}
.y1ae{bottom:636.373333pt;}
.y16a{bottom:638.245333pt;}
.y233{bottom:640.854667pt;}
.yd5{bottom:641.841333pt;}
.y12c{bottom:643.694667pt;}
.y20f{bottom:644.173333pt;}
.y150{bottom:644.326667pt;}
.y6{bottom:645.598667pt;}
.y57{bottom:647.222667pt;}
.y109{bottom:647.853333pt;}
.y264{bottom:649.288320pt;}
.y7d{bottom:649.810667pt;}
.y108{bottom:651.448000pt;}
.y31{bottom:653.021325pt;}
.y24d{bottom:654.694667pt;}
.y18f{bottom:655.441333pt;}
.y1cb{bottom:655.858667pt;}
.y1ad{bottom:656.154667pt;}
.yd4{bottom:657.280000pt;}
.y232{bottom:660.636000pt;}
.yd3{bottom:661.622667pt;}
.y12b{bottom:663.476000pt;}
.y20e{bottom:663.954667pt;}
.y14f{bottom:664.108000pt;}
.y56{bottom:667.004000pt;}
.y3{bottom:668.977329pt;}
.y7c{bottom:669.593333pt;}
.y107{bottom:671.230667pt;}
.y30{bottom:675.024010pt;}
.y18e{bottom:675.224000pt;}
.y1ca{bottom:675.641333pt;}
.y1ac{bottom:675.937333pt;}
.y231{bottom:680.418667pt;}
.yd2{bottom:681.404000pt;}
.y14e{bottom:683.890667pt;}
.y263{bottom:684.807680pt;}
.y24c{bottom:686.430667pt;}
.y12a{bottom:689.077333pt;}
.y20d{bottom:689.212000pt;}
.y7b{bottom:689.374667pt;}
.y106{bottom:691.012000pt;}
.y55{bottom:693.428000pt;}
.y18d{bottom:695.005333pt;}
.y2f{bottom:695.024010pt;}
.y230{bottom:700.200000pt;}
.y262{bottom:701.765120pt;}
.y1ab{bottom:702.177333pt;}
.y24b{bottom:706.213333pt;}
.yd1{bottom:707.828000pt;}
.y129{bottom:708.860000pt;}
.y20c{bottom:708.994667pt;}
.y14d{bottom:709.070667pt;}
.y7a{bottom:709.156000pt;}
.y105{bottom:710.794667pt;}
.y54{bottom:713.209333pt;}
.y18c{bottom:714.786667pt;}
.y2e{bottom:715.024010pt;}
.y1c9{bottom:716.676000pt;}
.y1aa{bottom:718.364000pt;}
.y261{bottom:718.560640pt;}
.y1a9{bottom:721.958667pt;}
.yd0{bottom:727.610667pt;}
.y128{bottom:728.641333pt;}
.y20b{bottom:728.776000pt;}
.y14c{bottom:728.853333pt;}
.y79{bottom:728.938667pt;}
.y53{bottom:732.992000pt;}
.y18b{bottom:734.569333pt;}
.y2d{bottom:735.024010pt;}
.y24a{bottom:737.950667pt;}
.y22f{bottom:740.289333pt;}
.y1a8{bottom:741.741333pt;}
.ycf{bottom:747.392000pt;}
.y127{bottom:748.422667pt;}
.y20a{bottom:748.557333pt;}
.y14b{bottom:748.634667pt;}
.y78{bottom:748.720000pt;}
.y52{bottom:752.773333pt;}
.y260{bottom:754.080000pt;}
.y2c{bottom:755.024010pt;}
.y104{bottom:756.765333pt;}
.y249{bottom:757.732000pt;}
.yce{bottom:767.173333pt;}
.y126{bottom:768.205333pt;}
.y22a{bottom:768.340000pt;}
.y14a{bottom:768.416000pt;}
.y77{bottom:768.502667pt;}
.y189{bottom:768.724000pt;}
.y51{bottom:772.554667pt;}
.y169{bottom:773.816000pt;}
.y1a7{bottom:774.512000pt;}
.y2b{bottom:775.024010pt;}
.y103{bottom:776.546667pt;}
.y1c8{bottom:777.493333pt;}
.y2{bottom:781.661334pt;}
.y186{bottom:785.996000pt;}
.ycd{bottom:786.956000pt;}
.y125{bottom:787.986667pt;}
.y229{bottom:788.121333pt;}
.y149{bottom:788.198667pt;}
.y248{bottom:789.469333pt;}
.y25f{bottom:790.080000pt;}
.y50{bottom:792.337333pt;}
.y1a6{bottom:793.408000pt;}
.y76{bottom:793.597333pt;}
.y2a{bottom:795.024010pt;}
.y102{bottom:796.328000pt;}
.y1c7{bottom:797.276000pt;}
.y188{bottom:799.814667pt;}
.y187{bottom:804.952000pt;}
.ycc{bottom:806.737333pt;}
.y148{bottom:807.980000pt;}
.y247{bottom:809.250667pt;}
.y4f{bottom:812.118667pt;}
.y75{bottom:813.378667pt;}
.y29{bottom:813.787997pt;}
.y101{bottom:816.110667pt;}
.y18a{bottom:818.994667pt;}
.y185{bottom:823.020000pt;}
.ycb{bottom:826.518667pt;}
.y25e{bottom:827.200000pt;}
.y147{bottom:827.762667pt;}
.y228{bottom:829.086667pt;}
.y4e{bottom:831.900000pt;}
.y1c6{bottom:832.218667pt;}
.y184{bottom:832.997333pt;}
.y74{bottom:833.161333pt;}
.y246{bottom:840.988000pt;}
.y1c3{bottom:849.668000pt;}
.y100{bottom:851.513333pt;}
.y4d{bottom:851.682667pt;}
.y73{bottom:852.942667pt;}
.y28{bottom:856.780002pt;}
.y1{bottom:859.312000pt;}
.y1c5{bottom:863.486667pt;}
.y25d{bottom:864.160000pt;}
.y183{bottom:866.212000pt;}
.y1c4{bottom:867.850667pt;}
.y72{bottom:872.724000pt;}
.y124{bottom:872.725333pt;}
.y4c{bottom:892.506667pt;}
.y27{bottom:899.601331pt;}
.y25c{bottom:901.280000pt;}
.y26{bottom:926.801333pt;}
.y25b{bottom:938.240000pt;}
.y4b{bottom:969.068000pt;}
.y25a{bottom:971.520000pt;}
.y4a{bottom:983.680000pt;}
.y25{bottom:987.208000pt;}
.y24{bottom:1000.008000pt;}
.h28{height:2.327275pt;}
.h33{height:15.053733pt;}
.h22{height:16.724404pt;}
.h7{height:28.560000pt;}
.h10{height:30.286507pt;}
.h1b{height:31.880400pt;}
.h38{height:32.397478pt;}
.h41{height:32.661606pt;}
.h3c{height:35.865600pt;}
.h31{height:36.011733pt;}
.h27{height:38.907733pt;}
.h2a{height:38.913067pt;}
.h13{height:40.381840pt;}
.h6{height:40.800000pt;}
.h40{height:42.821998pt;}
.h3{height:42.840000pt;}
.h18{height:43.504975pt;}
.h14{height:43.636400pt;}
.h19{height:44.225067pt;}
.h24{height:44.276267pt;}
.h1a{height:44.281600pt;}
.h8{height:44.500000pt;}
.h48{height:44.722500pt;}
.h3f{height:45.357204pt;}
.he{height:45.429760pt;}
.h43{height:47.109375pt;}
.h2{height:48.960000pt;}
.h1f{height:51.923067pt;}
.h1c{height:52.989733pt;}
.h15{height:52.995067pt;}
.h11{height:55.272773pt;}
.h1d{height:55.901733pt;}
.h26{height:55.907067pt;}
.h47{height:56.480000pt;}
.hc{height:57.578125pt;}
.h30{height:57.601941pt;}
.h46{height:57.758750pt;}
.h44{height:57.787500pt;}
.h25{height:58.015067pt;}
.h16{height:58.020400pt;}
.h3d{height:58.340400pt;}
.h35{height:58.345733pt;}
.hb{height:59.125000pt;}
.h37{height:59.381879pt;}
.h3a{height:59.392677pt;}
.h3b{height:59.392679pt;}
.h29{height:59.935067pt;}
.h20{height:60.184400pt;}
.h12{height:60.573013pt;}
.h34{height:60.836400pt;}
.h2d{height:60.841733pt;}
.h45{height:62.812500pt;}
.h2b{height:65.718400pt;}
.h5{height:69.360000pt;}
.hf{height:72.687413pt;}
.ha{height:73.244792pt;}
.h2c{height:75.896400pt;}
.h32{height:82.996400pt;}
.h9{height:91.375000pt;}
.h2e{height:92.355067pt;}
.h4{height:105.826671pt;}
.h1e{height:114.632400pt;}
.h2f{height:124.273941pt;}
.h23{height:130.268600pt;}
.h21{height:168.954427pt;}
.h36{height:218.428992pt;}
.h17{height:227.377920pt;}
.h39{height:296.318400pt;}
.h3e{height:296.323200pt;}
.h42{height:1122.400000pt;}
.h0{height:1122.518667pt;}
.hd{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w6{width:161.848867pt;}
.w7{width:220.123416pt;}
.w5{width:226.588413pt;}
.w4{width:284.222400pt;}
.w8{width:296.318400pt;}
.w9{width:296.323200pt;}
.wc{width:515.040000pt;}
.w2{width:566.928019pt;}
.wb{width:793.333333pt;}
.wa{width:793.600000pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x98{left:7.674005pt;}
.x15b{left:10.667635pt;}
.x44{left:14.779564pt;}
.x75{left:22.035129pt;}
.x42{left:26.148460pt;}
.x15c{left:34.217098pt;}
.x152{left:35.333821pt;}
.x14d{left:37.928167pt;}
.x41{left:39.799030pt;}
.x76{left:40.880653pt;}
.x154{left:47.064064pt;}
.x77{left:49.604701pt;}
.x14c{left:52.058521pt;}
.x159{left:54.103679pt;}
.x78{left:56.654996pt;}
.x14e{left:62.703677pt;}
.x153{left:63.614383pt;}
.x79{left:65.213248pt;}
.x35{left:68.680000pt;}
.x9{left:73.358667pt;}
.x7a{left:76.140020pt;}
.x7b{left:79.748065pt;}
.x7c{left:83.024518pt;}
.x7d{left:87.461545pt;}
.x1{left:90.706667pt;}
.x7e{left:92.648604pt;}
.x2{left:94.486667pt;}
.x8{left:96.000000pt;}
.x7f{left:98.246206pt;}
.x155{left:100.900000pt;}
.x80{left:103.109567pt;}
.x81{left:104.885957pt;}
.x15a{left:106.083707pt;}
.x5d{left:107.686667pt;}
.x82{left:108.991391pt;}
.x83{left:110.515139pt;}
.x31{left:112.578667pt;}
.x84{left:114.067919pt;}
.x43{left:115.986424pt;}
.x32{left:118.112000pt;}
.xa2{left:119.276000pt;}
.x2d{left:121.108000pt;}
.x85{left:122.499850pt;}
.x110{left:124.122667pt;}
.x86{left:125.105222pt;}
.x87{left:126.581600pt;}
.x20{left:127.532000pt;}
.x88{left:128.460626pt;}
.x89{left:129.810682pt;}
.x97{left:131.105474pt;}
.x8a{left:132.779227pt;}
.x8b{left:134.760888pt;}
.x5{left:136.062667pt;}
.x8c{left:137.374155pt;}
.x8d{left:139.813731pt;}
.x8e{left:141.455905pt;}
.x8f{left:144.250758pt;}
.x90{left:145.719241pt;}
.x91{left:147.124563pt;}
.xdb{left:148.809333pt;}
.x92{left:150.803664pt;}
.x93{left:152.035294pt;}
.x94{left:152.990597pt;}
.x7{left:154.274667pt;}
.x10f{left:155.224000pt;}
.x104{left:157.192000pt;}
.x143{left:159.026667pt;}
.xcb{left:159.956000pt;}
.x37{left:162.540000pt;}
.x103{left:164.142667pt;}
.x105{left:165.532000pt;}
.x133{left:167.630667pt;}
.x14f{left:169.066103pt;}
.x16{left:170.532000pt;}
.x95{left:171.930861pt;}
.x1e{left:173.152000pt;}
.x38{left:174.104000pt;}
.x12b{left:175.140000pt;}
.xc4{left:178.046667pt;}
.x170{left:179.626667pt;}
.x4{left:180.874667pt;}
.x50{left:183.449333pt;}
.x150{left:184.611062pt;}
.x158{left:185.658667pt;}
.xfb{left:187.317333pt;}
.x11c{left:188.556000pt;}
.x5e{left:190.122667pt;}
.x146{left:191.382667pt;}
.x58{left:192.360000pt;}
.x168{left:194.438667pt;}
.xce{left:195.621333pt;}
.x166{left:196.865333pt;}
.xe{left:198.257333pt;}
.x134{left:199.782667pt;}
.xc{left:200.777333pt;}
.xf7{left:201.809333pt;}
.x17{left:203.473333pt;}
.x29{left:205.334667pt;}
.x9d{left:206.533333pt;}
.x12f{left:207.580000pt;}
.x9f{left:208.634667pt;}
.x151{left:209.939222pt;}
.x135{left:210.893333pt;}
.xcf{left:211.861333pt;}
.x10a{left:213.220000pt;}
.x2e{left:215.316000pt;}
.x102{left:217.233333pt;}
.x5f{left:218.725333pt;}
.x14{left:221.840000pt;}
.x169{left:222.925333pt;}
.xe5{left:224.166667pt;}
.x15e{left:225.837333pt;}
.xbd{left:227.082667pt;}
.x125{left:228.873333pt;}
.x144{left:230.961333pt;}
.xb7{left:231.972000pt;}
.xd{left:233.492000pt;}
.x51{left:235.113333pt;}
.x2a{left:237.176000pt;}
.xb9{left:239.308000pt;}
.x52{left:240.365333pt;}
.x1f{left:242.701333pt;}
.x16a{left:246.741333pt;}
.x72{left:247.934667pt;}
.xb2{left:249.206667pt;}
.xb8{left:250.096000pt;}
.x69{left:252.064000pt;}
.xab{left:253.796000pt;}
.x40{left:256.252000pt;}
.x115{left:257.652000pt;}
.x145{left:258.802667pt;}
.x10b{left:260.597333pt;}
.xa7{left:261.828000pt;}
.x96{left:263.357560pt;}
.xa9{left:264.922667pt;}
.x33{left:266.250667pt;}
.xf5{left:268.112000pt;}
.x121{left:270.110667pt;}
.x13{left:272.496000pt;}
.x6{left:276.052000pt;}
.x73{left:277.498667pt;}
.x106{left:280.038667pt;}
.xf1{left:281.882667pt;}
.x14b{left:284.913663pt;}
.x11f{left:286.488000pt;}
.x118{left:288.618667pt;}
.xe9{left:289.606667pt;}
.x123{left:292.238667pt;}
.x109{left:293.473333pt;}
.xd6{left:294.614667pt;}
.x74{left:296.516840pt;}
.xf6{left:298.076000pt;}
.x15{left:300.510667pt;}
.xbe{left:302.398667pt;}
.x34{left:304.238667pt;}
.x16f{left:306.685333pt;}
.x1c{left:309.130667pt;}
.xae{left:310.404000pt;}
.x141{left:311.673333pt;}
.xb6{left:312.721333pt;}
.x107{left:314.758667pt;}
.x36{left:316.520000pt;}
.x59{left:318.301333pt;}
.xea{left:320.941333pt;}
.xbc{left:322.496000pt;}
.x108{left:323.601333pt;}
.x12d{left:324.496000pt;}
.xaa{left:326.794667pt;}
.xf9{left:327.814667pt;}
.x9e{left:329.661333pt;}
.x11e{left:331.244000pt;}
.x122{left:333.376000pt;}
.xd0{left:334.472000pt;}
.x172{left:337.850667pt;}
.xc2{left:339.169333pt;}
.x5a{left:340.142667pt;}
.x1d{left:341.506667pt;}
.xe0{left:342.412000pt;}
.x163{left:344.037333pt;}
.x126{left:345.498667pt;}
.xd9{left:347.044000pt;}
.x11b{left:349.581333pt;}
.x127{left:350.752000pt;}
.x2f{left:351.980000pt;}
.xe6{left:354.925333pt;}
.x60{left:360.392000pt;}
.x137{left:361.808000pt;}
.x6f{left:363.156000pt;}
.xe8{left:365.017333pt;}
.x61{left:367.614667pt;}
.x16b{left:368.857333pt;}
.xb3{left:371.468000pt;}
.xfa{left:373.585333pt;}
.xed{left:374.962667pt;}
.x67{left:376.614667pt;}
.x39{left:378.321333pt;}
.x53{left:380.372000pt;}
.x136{left:382.190667pt;}
.x1a{left:383.898667pt;}
.x15d{left:385.820000pt;}
.x13d{left:388.036000pt;}
.xfc{left:390.385333pt;}
.x3a{left:391.797333pt;}
.x138{left:392.890667pt;}
.xa{left:393.825333pt;}
.x167{left:395.854667pt;}
.x54{left:397.745333pt;}
.xa4{left:398.988000pt;}
.xbf{left:399.893333pt;}
.x23{left:400.877333pt;}
.xfd{left:401.945333pt;}
.x63{left:403.274667pt;}
.x3{left:404.408000pt;}
.xe1{left:406.252000pt;}
.x68{left:409.174667pt;}
.xb4{left:410.078667pt;}
.xee{left:411.510667pt;}
.x132{left:413.258667pt;}
.x62{left:414.276000pt;}
.x160{left:415.377333pt;}
.x30{left:416.386667pt;}
.xf2{left:417.634667pt;}
.x2b{left:422.206667pt;}
.xe7{left:424.158667pt;}
.x10c{left:425.914667pt;}
.x99{left:427.318667pt;}
.xa8{left:431.664000pt;}
.x45{left:433.029333pt;}
.xa0{left:435.046667pt;}
.x5b{left:436.309333pt;}
.x21{left:438.448000pt;}
.x12e{left:439.754667pt;}
.x5c{left:441.561333pt;}
.xb{left:443.572000pt;}
.xe2{left:447.553333pt;}
.x2c{left:449.506667pt;}
.x4b{left:450.873333pt;}
.xdc{left:452.074667pt;}
.x9a{left:453.305333pt;}
.x164{left:454.918667pt;}
.x3d{left:456.208000pt;}
.x161{left:457.618667pt;}
.x157{left:459.430667pt;}
.x111{left:461.705333pt;}
.x3e{left:463.526667pt;}
.x120{left:465.258667pt;}
.x112{left:466.957333pt;}
.x22{left:469.329333pt;}
.x116{left:471.281333pt;}
.x171{left:472.946667pt;}
.x113{left:474.853333pt;}
.xb5{left:476.793333pt;}
.xa6{left:477.856000pt;}
.xf3{left:479.008000pt;}
.xd1{left:480.097333pt;}
.x114{left:481.672000pt;}
.x4c{left:482.810667pt;}
.xfe{left:484.304000pt;}
.xf4{left:485.825333pt;}
.x24{left:486.922667pt;}
.xd2{left:488.688000pt;}
.x3f{left:492.386667pt;}
.xff{left:495.437333pt;}
.xd3{left:500.396000pt;}
.x70{left:503.921333pt;}
.x25{left:505.841333pt;}
.x124{left:507.690667pt;}
.x11d{left:509.077333pt;}
.xeb{left:514.044000pt;}
.x55{left:516.228000pt;}
.xd7{left:518.984000pt;}
.xf8{left:520.093333pt;}
.x48{left:522.732000pt;}
.x10d{left:524.941333pt;}
.x165{left:526.521333pt;}
.xac{left:528.169333pt;}
.xc9{left:529.400000pt;}
.x119{left:533.076000pt;}
.x162{left:534.012000pt;}
.xd8{left:535.581333pt;}
.xe3{left:537.413333pt;}
.xde{left:539.268000pt;}
.xa5{left:540.362667pt;}
.x11{left:542.946667pt;}
.x46{left:547.501333pt;}
.x128{left:548.558667pt;}
.xc7{left:549.730667pt;}
.xe4{left:550.742667pt;}
.x117{left:552.450667pt;}
.x16c{left:553.585333pt;}
.xa1{left:554.945333pt;}
.xaf{left:557.160000pt;}
.xd4{left:559.037333pt;}
.xcc{left:560.713333pt;}
.xc8{left:562.973333pt;}
.x147{left:565.050667pt;}
.xb0{left:568.144000pt;}
.xd5{left:570.193333pt;}
.x13e{left:571.722667pt;}
.x47{left:572.866667pt;}
.xcd{left:573.778667pt;}
.xf{left:575.202667pt;}
.xda{left:576.660000pt;}
.xc0{left:578.173333pt;}
.x101{left:579.370667pt;}
.x142{left:581.406667pt;}
.xba{left:583.404000pt;}
.x6a{left:584.489333pt;}
.x6e{left:587.166667pt;}
.xad{left:589.276000pt;}
.xc5{left:590.542667pt;}
.xca{left:592.362667pt;}
.xf0{left:594.514667pt;}
.x16e{left:595.790667pt;}
.x6c{left:597.462667pt;}
.xdf{left:600.790667pt;}
.x26{left:603.690667pt;}
.x11a{left:605.317333pt;}
.xa3{left:606.237333pt;}
.x3b{left:610.066667pt;}
.x15f{left:611.464000pt;}
.x1b{left:613.528000pt;}
.x10e{left:615.244000pt;}
.x100{left:616.336000pt;}
.x139{left:617.849333pt;}
.x49{left:620.496000pt;}
.x6b{left:621.516000pt;}
.xc6{left:622.893333pt;}
.xec{left:624.092000pt;}
.x12c{left:625.797333pt;}
.x4d{left:626.785333pt;}
.x3c{left:628.085333pt;}
.x10{left:629.052000pt;}
.x12a{left:630.097333pt;}
.x13a{left:631.092000pt;}
.x149{left:631.989333pt;}
.x129{left:633.076000pt;}
.x6d{left:636.796000pt;}
.x18{left:640.640000pt;}
.x16d{left:641.898667pt;}
.x13f{left:643.033333pt;}
.x12{left:644.996000pt;}
.x56{left:645.984000pt;}
.x14a{left:647.428000pt;}
.x140{left:652.030667pt;}
.x4a{left:652.933333pt;}
.x57{left:654.714667pt;}
.xbb{left:656.058667pt;}
.x148{left:657.664000pt;}
.x130{left:658.890667pt;}
.x13b{left:661.172000pt;}
.x27{left:663.233333pt;}
.x66{left:664.160000pt;}
.x173{left:665.120000pt;}
.x131{left:666.634667pt;}
.xef{left:667.637333pt;}
.xb1{left:669.266667pt;}
.x71{left:670.936000pt;}
.xc3{left:671.958667pt;}
.x28{left:674.206667pt;}
.xc1{left:675.733333pt;}
.x13c{left:677.424000pt;}
.x4e{left:678.829333pt;}
.x9b{left:679.988000pt;}
.xdd{left:680.976000pt;}
.x64{left:682.241333pt;}
.x4f{left:686.052000pt;}
.x65{left:689.432000pt;}
.x9c{left:690.998667pt;}
.x156{left:692.412000pt;}
.x19{left:696.704000pt;}
}




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