
    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_6dd30410a1d7ae5d7efe5989.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_a4726c811cf1e7c2a1996a5f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_5c142ee1de04d0d3c467042d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.762207;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_9c383245ca85a9ce91d9994f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_66ccf9a09b2e95728c3873c0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_cbbd5c0c31aeebc2b44381ba.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.973633;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_4ae124a7f42b3503fec787ea.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_9bd8045b2e01ccc72afe7a83.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_01075932d9a3eaaa5a94a9ad.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9c0ebb0aef66b3f0b060d83c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_990fc7dec6d385b6a4c6256c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.922852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a9de260c3a2279fa40ebbd73.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_66856e83a73e1468bd873951.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.883301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_d02e55b1165980efd66537f1.woff2')format("woff");}.fff{font-family:fff;line-height:0.969238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_62ad600c9c30d28d460c657f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.969238;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;}
.m22{transform:matrix(0.227431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227431,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.237002,0.000000,-0.078993,0.237192,0,0);-ms-transform:matrix(0.237002,0.000000,-0.078993,0.237192,0,0);-webkit-transform:matrix(0.237002,0.000000,-0.078993,0.237192,0,0);}
.m1c{transform:matrix(0.237025,0.000000,-0.079000,0.237190,0,0);-ms-transform:matrix(0.237025,0.000000,-0.079000,0.237190,0,0);-webkit-transform:matrix(0.237025,0.000000,-0.079000,0.237190,0,0);}
.m1e{transform:matrix(0.237050,0.000000,-0.079009,0.237187,0,0);-ms-transform:matrix(0.237050,0.000000,-0.079009,0.237187,0,0);-webkit-transform:matrix(0.237050,0.000000,-0.079009,0.237187,0,0);}
.m12{transform:matrix(0.238737,0.000000,-0.079571,0.236999,0,0);-ms-transform:matrix(0.238737,0.000000,-0.079571,0.236999,0,0);-webkit-transform:matrix(0.238737,0.000000,-0.079571,0.236999,0,0);}
.m16{transform:matrix(0.239217,0.000000,-0.079731,0.236945,0,0);-ms-transform:matrix(0.239217,0.000000,-0.079731,0.236945,0,0);-webkit-transform:matrix(0.239217,0.000000,-0.079731,0.236945,0,0);}
.m14{transform:matrix(0.239682,0.000000,-0.079886,0.236893,0,0);-ms-transform:matrix(0.239682,0.000000,-0.079886,0.236893,0,0);-webkit-transform:matrix(0.239682,0.000000,-0.079886,0.236893,0,0);}
.m5{transform:matrix(0.240220,0.000000,-0.080065,0.236832,0,0);-ms-transform:matrix(0.240220,0.000000,-0.080065,0.236832,0,0);-webkit-transform:matrix(0.240220,0.000000,-0.080065,0.236832,0,0);}
.m26{transform:matrix(0.240494,0.000000,-0.080157,0.236801,0,0);-ms-transform:matrix(0.240494,0.000000,-0.080157,0.236801,0,0);-webkit-transform:matrix(0.240494,0.000000,-0.080157,0.236801,0,0);}
.m9{transform:matrix(0.241779,0.000000,-0.080585,0.236656,0,0);-ms-transform:matrix(0.241779,0.000000,-0.080585,0.236656,0,0);-webkit-transform:matrix(0.241779,0.000000,-0.080585,0.236656,0,0);}
.m10{transform:matrix(0.241901,0.000000,-0.080626,0.236642,0,0);-ms-transform:matrix(0.241901,0.000000,-0.080626,0.236642,0,0);-webkit-transform:matrix(0.241901,0.000000,-0.080626,0.236642,0,0);}
.m23{transform:matrix(0.243105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243105,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.243547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243547,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.245834,0.000000,-0.081937,0.236191,0,0);-ms-transform:matrix(0.245834,0.000000,-0.081937,0.236191,0,0);-webkit-transform:matrix(0.245834,0.000000,-0.081937,0.236191,0,0);}
.m7{transform:matrix(0.247986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247986,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248289,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248971,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249826,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251833,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252397,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252473,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252943,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253122,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.253576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253576,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.253899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253899,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.253901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253901,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.253999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253999,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.254175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254175,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.254510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254510,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.255412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255412,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.256060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256060,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.257251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257251,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.260207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260207,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.263183,0.000000,-0.087719,0.234106,0,0);-ms-transform:matrix(0.263183,0.000000,-0.087719,0.234106,0,0);-webkit-transform:matrix(0.263183,0.000000,-0.087719,0.234106,0,0);}
.m1{transform:matrix(0.281052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281052,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.300424,0.000000,-0.100131,0.229071,0,0);-ms-transform:matrix(0.300424,0.000000,-0.100131,0.229071,0,0);-webkit-transform:matrix(0.300424,0.000000,-0.100131,0.229071,0,0);}
.m19{transform:matrix(0.327872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327872,0.000000,0.000000,0.250000,0,0);}
.v16{vertical-align:-57.792100px;}
.ve{vertical-align:-56.672741px;}
.v14{vertical-align:-48.359711px;}
.v12{vertical-align:-45.455133px;}
.v5{vertical-align:-40.940572px;}
.vb{vertical-align:-39.777878px;}
.v7{vertical-align:-32.281628px;}
.vc{vertical-align:-30.728574px;}
.v15{vertical-align:-29.333234px;}
.v2{vertical-align:-27.360000px;}
.vf{vertical-align:-26.034218px;}
.v3{vertical-align:-24.880959px;}
.v11{vertical-align:-23.157948px;}
.v8{vertical-align:-17.842838px;}
.v4{vertical-align:-16.008224px;}
.v13{vertical-align:-14.954080px;}
.v9{vertical-align:-10.329662px;}
.va{vertical-align:-7.161320px;}
.vd{vertical-align:-4.839316px;}
.v6{vertical-align:-2.889923px;}
.v0{vertical-align:0.000000px;}
.v17{vertical-align:5.760000px;}
.v18{vertical-align:8.940000px;}
.v1{vertical-align:23.760000px;}
.v10{vertical-align:28.944593px;}
.lsa6{letter-spacing:-1.008000px;}
.lsa4{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.216000px;}
.ls7d{letter-spacing:-0.206614px;}
.ls7{letter-spacing:-0.144000px;}
.ls6{letter-spacing:0.000000px;}
.lsa0{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.144000px;}
.ls2a{letter-spacing:0.196450px;}
.ls2{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.360000px;}
.lsa5{letter-spacing:0.432000px;}
.ls3{letter-spacing:0.576000px;}
.ls39{letter-spacing:0.720000px;}
.lsa3{letter-spacing:7.200000px;}
.ls4b{letter-spacing:8.984202px;}
.ls30{letter-spacing:11.418983px;}
.ls66{letter-spacing:12.823789px;}
.lsa1{letter-spacing:14.400000px;}
.ls1{letter-spacing:14.884822px;}
.ls5{letter-spacing:15.808640px;}
.ls50{letter-spacing:16.768765px;}
.ls74{letter-spacing:18.701436px;}
.ls62{letter-spacing:18.786820px;}
.ls41{letter-spacing:18.923246px;}
.ls6f{letter-spacing:19.951988px;}
.ls73{letter-spacing:20.747794px;}
.ls58{letter-spacing:22.589824px;}
.ls10{letter-spacing:22.622585px;}
.ls4{letter-spacing:22.822464px;}
.ls1c{letter-spacing:27.324264px;}
.ls93{letter-spacing:31.980292px;}
.ls86{letter-spacing:35.573583px;}
.lsf{letter-spacing:40.474399px;}
.ls9d{letter-spacing:44.721877px;}
.ls1d{letter-spacing:47.896784px;}
.lsa2{letter-spacing:54.144000px;}
.ls15{letter-spacing:70.111230px;}
.ls55{letter-spacing:82.106033px;}
.ls33{letter-spacing:82.485093px;}
.ls37{letter-spacing:86.760279px;}
.ls56{letter-spacing:87.334798px;}
.ls34{letter-spacing:95.977297px;}
.ls12{letter-spacing:119.247141px;}
.ls13{letter-spacing:119.625189px;}
.ls38{letter-spacing:120.074728px;}
.ls16{letter-spacing:120.273477px;}
.ls35{letter-spacing:121.783348px;}
.ls7e{letter-spacing:125.525639px;}
.ls80{letter-spacing:126.483850px;}
.ls7f{letter-spacing:128.400272px;}
.ls11{letter-spacing:133.180910px;}
.ls36{letter-spacing:135.744551px;}
.ls9f{letter-spacing:138.119805px;}
.ls9e{letter-spacing:161.406973px;}
.ls4f{letter-spacing:178.381973px;}
.ls4e{letter-spacing:181.420109px;}
.ls4c{letter-spacing:191.836575px;}
.ls5f{letter-spacing:193.350064px;}
.ls61{letter-spacing:194.400000px;}
.ls83{letter-spacing:208.171336px;}
.ls89{letter-spacing:215.417806px;}
.ls8e{letter-spacing:220.568191px;}
.ls8c{letter-spacing:226.497121px;}
.ls43{letter-spacing:228.815028px;}
.ls90{letter-spacing:229.132201px;}
.ls31{letter-spacing:246.197075px;}
.ls49{letter-spacing:249.430949px;}
.ls44{letter-spacing:259.630405px;}
.ls3c{letter-spacing:269.092028px;}
.ls81{letter-spacing:279.498166px;}
.ls3d{letter-spacing:280.333131px;}
.ls3a{letter-spacing:299.082769px;}
.ls97{letter-spacing:299.381044px;}
.ls2c{letter-spacing:303.539148px;}
.ls1e{letter-spacing:305.226352px;}
.ls3b{letter-spacing:310.367273px;}
.ls99{letter-spacing:311.837787px;}
.ls98{letter-spacing:317.886493px;}
.ls1b{letter-spacing:318.921756px;}
.ls9b{letter-spacing:320.521574px;}
.ls94{letter-spacing:323.755536px;}
.ls8f{letter-spacing:329.325137px;}
.ls2e{letter-spacing:329.472842px;}
.ls88{letter-spacing:333.397534px;}
.ls8b{letter-spacing:333.816751px;}
.ls8d{letter-spacing:337.170489px;}
.ls91{letter-spacing:338.907247px;}
.ls87{letter-spacing:341.662103px;}
.ls77{letter-spacing:344.057631px;}
.ls8a{letter-spacing:347.676013px;}
.ls75{letter-spacing:348.549245px;}
.ls76{letter-spacing:351.902983px;}
.ls82{letter-spacing:352.681530px;}
.ls7a{letter-spacing:352.741418px;}
.ls78{letter-spacing:353.639741px;}
.ls84{letter-spacing:354.418287px;}
.ls9a{letter-spacing:362.083975px;}
.ls57{letter-spacing:367.426001px;}
.ls59{letter-spacing:367.605666px;}
.ls9c{letter-spacing:371.666085px;}
.ls95{letter-spacing:376.816469px;}
.ls51{letter-spacing:387.208036px;}
.ls96{letter-spacing:394.124155px;}
.ls7b{letter-spacing:404.784252px;}
.ls7c{letter-spacing:415.324573px;}
.ls2f{letter-spacing:431.161323px;}
.ls85{letter-spacing:450.119609px;}
.ls40{letter-spacing:467.395492px;}
.ls45{letter-spacing:468.350335px;}
.ls68{letter-spacing:470.037002px;}
.ls92{letter-spacing:474.494101px;}
.ls6c{letter-spacing:481.291970px;}
.ls6b{letter-spacing:481.860403px;}
.ls69{letter-spacing:484.702566px;}
.ls79{letter-spacing:489.166707px;}
.ls42{letter-spacing:498.297673px;}
.ls6a{letter-spacing:507.891014px;}
.ls47{letter-spacing:508.800943px;}
.ls46{letter-spacing:510.524280px;}
.ls23{letter-spacing:612.566213px;}
.ls1f{letter-spacing:622.632236px;}
.ls4d{letter-spacing:628.416690px;}
.ls22{letter-spacing:629.667628px;}
.ls26{letter-spacing:637.495222px;}
.ls25{letter-spacing:659.703343px;}
.ls21{letter-spacing:669.715247px;}
.ls28{letter-spacing:681.946322px;}
.ls5c{letter-spacing:725.067327px;}
.ls24{letter-spacing:726.052506px;}
.ls20{letter-spacing:734.657332px;}
.ls27{letter-spacing:756.069677px;}
.ls2b{letter-spacing:773.189635px;}
.ls32{letter-spacing:778.313722px;}
.ls29{letter-spacing:781.740343px;}
.ls2d{letter-spacing:800.520777px;}
.ls53{letter-spacing:840.482786px;}
.ls54{letter-spacing:851.801653px;}
.lse{letter-spacing:871.584124px;}
.lsd{letter-spacing:872.049267px;}
.ls5e{letter-spacing:879.279407px;}
.lsa{letter-spacing:885.631430px;}
.lsb{letter-spacing:892.934168px;}
.ls5d{letter-spacing:900.719377px;}
.ls60{letter-spacing:904.911551px;}
.lsc{letter-spacing:918.093331px;}
.ls5a{letter-spacing:918.727087px;}
.ls71{letter-spacing:975.487362px;}
.ls52{letter-spacing:982.016017px;}
.ls6d{letter-spacing:990.607672px;}
.ls70{letter-spacing:994.473015px;}
.ls6e{letter-spacing:1012.435488px;}
.ls14{letter-spacing:1030.612856px;}
.ls3f{letter-spacing:1034.007819px;}
.ls5b{letter-spacing:1220.522293px;}
.ls64{letter-spacing:1258.229462px;}
.ls65{letter-spacing:1261.525296px;}
.ls67{letter-spacing:1284.715980px;}
.ls3e{letter-spacing:1292.422970px;}
.ls63{letter-spacing:1377.658491px;}
.ls18{letter-spacing:1794.502065px;}
.ls48{letter-spacing:1807.343586px;}
.ls4a{letter-spacing:1820.233962px;}
.ls17{letter-spacing:1826.702515px;}
.ls19{letter-spacing:1881.121680px;}
.ls1a{letter-spacing:1896.112710px;}
.ls72{letter-spacing:2517.872660px;}
.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;}
}
.wse1{word-spacing:-183.089330px;}
.wse4{word-spacing:-158.758866px;}
.ws1a{word-spacing:-87.886489px;}
.wsde{word-spacing:-65.533032px;}
.wsb5{word-spacing:-58.183657px;}
.wsb{word-spacing:-57.868200px;}
.wsb6{word-spacing:-56.137300px;}
.wsf{word-spacing:-37.489346px;}
.wsaa{word-spacing:-18.820216px;}
.ws58{word-spacing:-18.720000px;}
.wsf6{word-spacing:-18.432000px;}
.ws3{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.wse{word-spacing:-17.989130px;}
.wsd1{word-spacing:-17.960467px;}
.ws97{word-spacing:-17.933830px;}
.ws1{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.784000px;}
.wsf3{word-spacing:-17.712000px;}
.ws4d{word-spacing:-16.357977px;}
.ws77{word-spacing:-15.219975px;}
.ws2{word-spacing:-12.060000px;}
.ws6f{word-spacing:-7.001189px;}
.wsdf{word-spacing:-6.721633px;}
.wsc{word-spacing:-5.751581px;}
.ws5f{word-spacing:-2.069917px;}
.wsa1{word-spacing:-0.340946px;}
.wsf4{word-spacing:-0.054000px;}
.ws1c{word-spacing:0.000000px;}
.ws8{word-spacing:4.986212px;}
.wsf5{word-spacing:7.290000px;}
.ws11{word-spacing:8.610705px;}
.ws6{word-spacing:9.772975px;}
.wsa4{word-spacing:10.773892px;}
.ws25{word-spacing:12.577359px;}
.ws86{word-spacing:12.931902px;}
.wse9{word-spacing:12.936461px;}
.ws87{word-spacing:13.512180px;}
.ws96{word-spacing:13.926664px;}
.ws65{word-spacing:14.245897px;}
.ws47{word-spacing:16.908922px;}
.ws54{word-spacing:17.677898px;}
.ws84{word-spacing:18.071504px;}
.ws52{word-spacing:18.737422px;}
.ws50{word-spacing:18.816974px;}
.ws1b{word-spacing:20.109244px;}
.wscd{word-spacing:20.905984px;}
.ws61{word-spacing:24.063199px;}
.wsec{word-spacing:26.444053px;}
.wse8{word-spacing:38.844398px;}
.ws43{word-spacing:39.518936px;}
.ws62{word-spacing:44.259688px;}
.wsc5{word-spacing:45.978796px;}
.ws3d{word-spacing:48.325509px;}
.wse5{word-spacing:48.404357px;}
.ws89{word-spacing:53.658018px;}
.ws19{word-spacing:53.861947px;}
.wscc{word-spacing:53.881401px;}
.wsc9{word-spacing:55.174555px;}
.ws30{word-spacing:55.475311px;}
.wse2{word-spacing:55.554797px;}
.wsb8{word-spacing:55.700840px;}
.ws46{word-spacing:55.909577px;}
.ws7{word-spacing:56.842816px;}
.ws2b{word-spacing:56.881354px;}
.wse6{word-spacing:57.433027px;}
.ws76{word-spacing:57.835906px;}
.wsca{word-spacing:57.904546px;}
.wsd2{word-spacing:58.120072px;}
.ws9{word-spacing:59.435646px;}
.ws91{word-spacing:59.683785px;}
.ws60{word-spacing:60.210222px;}
.ws2e{word-spacing:60.898033px;}
.ws57{word-spacing:61.434166px;}
.wsa9{word-spacing:61.711214px;}
.wsea{word-spacing:62.271730px;}
.ws28{word-spacing:64.072505px;}
.wsab{word-spacing:64.302403px;}
.wsdc{word-spacing:65.016891px;}
.ws8b{word-spacing:65.279140px;}
.wseb{word-spacing:65.594431px;}
.ws78{word-spacing:66.115573px;}
.wse7{word-spacing:66.559701px;}
.ws2f{word-spacing:67.201242px;}
.ws4f{word-spacing:67.571100px;}
.wsdd{word-spacing:67.890566px;}
.ws8c{word-spacing:70.946230px;}
.ws4b{word-spacing:71.495985px;}
.wsd5{word-spacing:71.770027px;}
.wsef{word-spacing:75.354798px;}
.ws9f{word-spacing:75.826376px;}
.ws8a{word-spacing:76.398115px;}
.ws8d{word-spacing:76.970618px;}
.wsb0{word-spacing:78.076619px;}
.ws15{word-spacing:78.192367px;}
.wsa2{word-spacing:78.417565px;}
.wsc3{word-spacing:78.595004px;}
.ws16{word-spacing:78.711036px;}
.ws40{word-spacing:78.833093px;}
.ws93{word-spacing:79.841410px;}
.wsbc{word-spacing:79.888158px;}
.ws92{word-spacing:80.702234px;}
.ws51{word-spacing:81.249070px;}
.wsbf{word-spacing:82.618149px;}
.ws3c{word-spacing:82.875815px;}
.ws42{word-spacing:83.008729px;}
.wsf1{word-spacing:84.813048px;}
.ws94{word-spacing:85.508500px;}
.ws27{word-spacing:86.099453px;}
.wsf2{word-spacing:89.192073px;}
.wsce{word-spacing:89.412319px;}
.wsee{word-spacing:89.484749px;}
.wsa0{word-spacing:90.896186px;}
.ws31{word-spacing:90.927394px;}
.wsa3{word-spacing:91.850835px;}
.wsd0{word-spacing:93.361259px;}
.wse3{word-spacing:94.174808px;}
.wsb7{word-spacing:94.483590px;}
.wsbd{word-spacing:95.765211px;}
.ws6a{word-spacing:96.068484px;}
.wsc0{word-spacing:96.914680px;}
.wsc4{word-spacing:97.561257px;}
.ws12{word-spacing:98.074876px;}
.wsaf{word-spacing:99.424951px;}
.ws59{word-spacing:100.999756px;}
.wsd9{word-spacing:101.584402px;}
.wsd6{word-spacing:102.159137px;}
.ws2c{word-spacing:102.166168px;}
.ws85{word-spacing:103.082183px;}
.wsda{word-spacing:104.170709px;}
.ws88{word-spacing:105.113154px;}
.ws56{word-spacing:105.330004px;}
.ws63{word-spacing:106.235428px;}
.wsd7{word-spacing:106.254123px;}
.ws53{word-spacing:106.871183px;}
.wsa{word-spacing:108.167558px;}
.wsa6{word-spacing:108.284429px;}
.ws2d{word-spacing:108.515112px;}
.wsed{word-spacing:108.697630px;}
.ws9c{word-spacing:109.209628px;}
.ws23{word-spacing:109.551674px;}
.ws9d{word-spacing:111.853070px;}
.ws6e{word-spacing:112.506058px;}
.ws14{word-spacing:112.746454px;}
.ws73{word-spacing:113.053977px;}
.ws20{word-spacing:113.568353px;}
.ws21{word-spacing:114.669700px;}
.wse0{word-spacing:115.053333px;}
.ws9e{word-spacing:115.759050px;}
.wsc2{word-spacing:117.389613px;}
.wsac{word-spacing:117.558159px;}
.wsb4{word-spacing:118.103672px;}
.ws10{word-spacing:118.980805px;}
.ws37{word-spacing:119.031540px;}
.ws55{word-spacing:120.673745px;}
.wsf0{word-spacing:124.702189px;}
.ws7d{word-spacing:131.006143px;}
.wsae{word-spacing:137.401212px;}
.ws7a{word-spacing:140.815212px;}
.ws4a{word-spacing:140.907693px;}
.ws66{word-spacing:151.620756px;}
.ws6d{word-spacing:152.382393px;}
.ws82{word-spacing:152.581023px;}
.ws18{word-spacing:159.210789px;}
.ws7b{word-spacing:159.318535px;}
.ws64{word-spacing:160.053260px;}
.wsd{word-spacing:161.254558px;}
.ws3b{word-spacing:164.344658px;}
.ws33{word-spacing:164.619044px;}
.ws67{word-spacing:168.430595px;}
.ws6b{word-spacing:176.612594px;}
.ws5a{word-spacing:178.559663px;}
.ws4e{word-spacing:180.701881px;}
.ws95{word-spacing:183.267758px;}
.ws69{word-spacing:186.901297px;}
.ws7c{word-spacing:189.762652px;}
.ws5d{word-spacing:189.811946px;}
.ws39{word-spacing:190.144389px;}
.ws1e{word-spacing:190.457158px;}
.ws9a{word-spacing:203.681102px;}
.wsc7{word-spacing:203.917082px;}
.wsad{word-spacing:207.977021px;}
.ws6c{word-spacing:208.696302px;}
.wsc6{word-spacing:208.838957px;}
.wsbe{word-spacing:212.077196px;}
.ws5c{word-spacing:214.039517px;}
.wsc1{word-spacing:214.663503px;}
.wsc8{word-spacing:219.364198px;}
.wsba{word-spacing:225.006454px;}
.ws32{word-spacing:229.209830px;}
.ws75{word-spacing:234.448500px;}
.ws34{word-spacing:238.733245px;}
.ws5b{word-spacing:241.326303px;}
.ws36{word-spacing:243.980842px;}
.ws2a{word-spacing:248.191876px;}
.ws29{word-spacing:254.670390px;}
.ws38{word-spacing:254.735175px;}
.ws35{word-spacing:256.808300px;}
.ws70{word-spacing:261.826556px;}
.ws3a{word-spacing:261.926326px;}
.ws74{word-spacing:264.323156px;}
.wsd8{word-spacing:267.395434px;}
.ws22{word-spacing:268.923121px;}
.ws1d{word-spacing:271.611073px;}
.ws9b{word-spacing:272.961316px;}
.ws71{word-spacing:273.078838px;}
.ws49{word-spacing:273.522866px;}
.ws45{word-spacing:273.717222px;}
.ws5e{word-spacing:274.385715px;}
.ws44{word-spacing:280.195736px;}
.ws48{word-spacing:282.333645px;}
.wscf{word-spacing:286.111108px;}
.ws17{word-spacing:291.382835px;}
.ws41{word-spacing:294.448467px;}
.ws3f{word-spacing:297.140118px;}
.wscb{word-spacing:299.436908px;}
.wsdb{word-spacing:301.370214px;}
.ws1f{word-spacing:301.444869px;}
.wsd4{word-spacing:316.414027px;}
.wsb9{word-spacing:321.061310px;}
.ws3e{word-spacing:321.883078px;}
.wsb3{word-spacing:368.779539px;}
.wsd3{word-spacing:376.092181px;}
.ws8e{word-spacing:384.172603px;}
.ws8f{word-spacing:385.231138px;}
.ws90{word-spacing:393.472589px;}
.ws7f{word-spacing:408.432580px;}
.ws80{word-spacing:409.593136px;}
.ws81{word-spacing:417.261091px;}
.ws83{word-spacing:441.466959px;}
.ws7e{word-spacing:444.534141px;}
.ws72{word-spacing:448.136953px;}
.wsbb{word-spacing:464.852610px;}
.wsa7{word-spacing:484.351065px;}
.ws98{word-spacing:490.825769px;}
.wsa8{word-spacing:495.563228px;}
.ws99{word-spacing:501.463282px;}
.ws26{word-spacing:582.159279px;}
.ws24{word-spacing:582.612775px;}
.ws79{word-spacing:610.270223px;}
.ws68{word-spacing:681.854894px;}
.ws5{word-spacing:871.515415px;}
.ws4c{word-spacing:902.672435px;}
.wsa5{word-spacing:1014.111591px;}
.ws13{word-spacing:1154.031994px;}
.wsb1{word-spacing:2543.723206px;}
.wsb2{word-spacing:2552.192853px;}
._a4{margin-left:-594.299078px;}
._11f{margin-left:-494.861029px;}
._120{margin-left:-421.983768px;}
._2c{margin-left:-417.361482px;}
._3f{margin-left:-231.772997px;}
._11d{margin-left:-175.279982px;}
._29{margin-left:-153.622766px;}
._a3{margin-left:-80.432157px;}
._5{margin-left:-9.432000px;}
._9f{margin-left:-8.064000px;}
._9{margin-left:-6.912000px;}
._3{margin-left:-4.644000px;}
._1{margin-left:-3.570000px;}
._0{margin-left:-1.566000px;}
._2{width:1.062000px;}
._d4{width:2.080324px;}
._56{width:3.433612px;}
._126{width:4.471676px;}
._2b{width:6.476087px;}
._127{width:7.629913px;}
._11{width:8.646000px;}
._10{width:9.792000px;}
._8{width:11.808000px;}
._b{width:13.752000px;}
._124{width:14.808000px;}
._9e{width:16.416000px;}
._128{width:19.008000px;}
._f2{width:20.450768px;}
._c{width:21.672000px;}
._d{width:22.764000px;}
._12{width:23.958000px;}
._20{width:27.457407px;}
._1b{width:28.787064px;}
._d6{width:30.174439px;}
._11e{width:31.176848px;}
._14{width:33.839758px;}
._a1{width:35.280177px;}
._125{width:38.315952px;}
._ec{width:39.621024px;}
._129{width:41.880000px;}
._f{width:43.074000px;}
._e{width:44.352000px;}
._22{width:45.673701px;}
._7{width:47.388000px;}
._6{width:49.248000px;}
._a{width:50.328000px;}
._40{width:52.629813px;}
._1e{width:56.244471px;}
._b4{width:61.554253px;}
._105{width:64.945049px;}
._3e{width:66.009711px;}
._2a{width:68.756897px;}
._a6{width:70.255897px;}
._121{width:71.638508px;}
._123{width:73.076520px;}
._97{width:74.114202px;}
._62{width:75.669045px;}
._1a{width:79.779391px;}
._a5{width:81.008261px;}
._dc{width:84.504206px;}
._28{width:85.680000px;}
._1f{width:87.757330px;}
._1c{width:89.086987px;}
._8e{width:90.904152px;}
._dd{width:93.436529px;}
._a7{width:94.686231px;}
._3b{width:97.200000px;}
._db{width:98.564328px;}
._d9{width:100.776310px;}
._d8{width:101.935888px;}
._10e{width:103.471906px;}
._98{width:104.785535px;}
._63{width:107.867260px;}
._ef{width:109.070897px;}
._10a{width:110.502983px;}
._b3{width:111.714619px;}
._65{width:113.892278px;}
._d5{width:115.161912px;}
._da{width:117.340644px;}
._3a{width:119.553538px;}
._32{width:121.536184px;}
._36{width:123.851124px;}
._59{width:126.136670px;}
._f8{width:127.298959px;}
._b2{width:128.456592px;}
._51{width:129.764638px;}
._d7{width:131.708884px;}
._6e{width:132.825311px;}
._34{width:133.828587px;}
._2e{width:135.475089px;}
._a8{width:137.253015px;}
._5b{width:139.288054px;}
._70{width:141.945480px;}
._122{width:143.374174px;}
._c5{width:147.451121px;}
._93{width:150.301528px;}
._a0{width:152.636993px;}
._a2{width:155.533412px;}
._fe{width:157.585211px;}
._5e{width:158.723596px;}
._10c{width:160.207367px;}
._5c{width:161.379787px;}
._11b{width:163.467321px;}
._11c{width:165.127151px;}
._16{width:166.317313px;}
._18{width:167.779935px;}
._31{width:169.317946px;}
._102{width:171.418931px;}
._38{width:173.151061px;}
._113{width:174.791266px;}
._39{width:175.860677px;}
._ce{width:178.701269px;}
._35{width:181.022191px;}
._fb{width:184.282005px;}
._57{width:186.233722px;}
._2d{width:187.330667px;}
._33{width:190.567314px;}
._c1{width:192.489025px;}
._3d{width:194.220000px;}
._3c{width:195.300000px;}
._6a{width:206.535030px;}
._c7{width:208.659302px;}
._68{width:210.616494px;}
._10f{width:211.748609px;}
._119{width:213.154824px;}
._d1{width:214.193072px;}
._75{width:215.249692px;}
._cf{width:217.358016px;}
._d2{width:218.505781px;}
._73{width:219.569771px;}
._d0{width:220.801311px;}
._bc{width:222.211640px;}
._bd{width:224.098917px;}
._ab{width:226.100558px;}
._f6{width:227.196921px;}
._bf{width:228.689358px;}
._30{width:230.192842px;}
._89{width:231.745335px;}
._54{width:232.980612px;}
._12a{width:234.103762px;}
._26{width:235.216238px;}
._58{width:236.919261px;}
._24{width:239.404656px;}
._b8{width:241.908694px;}
._99{width:244.369553px;}
._be{width:246.015681px;}
._6d{width:247.936742px;}
._5a{width:250.122923px;}
._b0{width:252.262115px;}
._f9{width:253.461148px;}
._b9{width:254.677332px;}
._af{width:257.079499px;}
._69{width:258.363143px;}
._c9{width:259.835419px;}
._6f{width:262.300499px;}
._c6{width:263.731732px;}
._cb{width:265.558129px;}
._6b{width:266.590856px;}
._e2{width:267.787945px;}
._60{width:269.506187px;}
._74{width:271.205011px;}
._b7{width:272.681078px;}
._c8{width:274.811874px;}
._5f{width:275.984702px;}
._72{width:277.719417px;}
._76{width:278.816581px;}
._c0{width:280.818012px;}
._71{width:281.902352px;}
._64{width:283.888489px;}
._41{width:286.060063px;}
._f7{width:287.511554px;}
._4e{width:290.237433px;}
._7b{width:291.482833px;}
._115{width:292.611930px;}
._82{width:294.318897px;}
._104{width:295.912226px;}
._7c{width:297.493368px;}
._1d{width:299.372164px;}
._94{width:300.473485px;}
._80{width:301.963543px;}
._45{width:303.615961px;}
._7a{width:305.332371px;}
._21{width:306.485827px;}
._43{width:307.658684px;}
._8b{width:310.540995px;}
._48{width:312.262896px;}
._77{width:313.300943px;}
._91{width:314.661431px;}
._f0{width:318.170747px;}
._5d{width:319.325961px;}
._eb{width:320.870785px;}
._9a{width:321.982152px;}
._118{width:324.078668px;}
._6c{width:325.651732px;}
._c4{width:327.838268px;}
._87{width:328.914162px;}
._cc{width:331.551942px;}
._83{width:334.032188px;}
._88{width:335.133509px;}
._84{width:337.012305px;}
._a9{width:338.735771px;}
._fa{width:339.919555px;}
._aa{width:340.927447px;}
._47{width:342.208990px;}
._10b{width:344.481759px;}
._44{width:347.337258px;}
._49{width:348.909428px;}
._46{width:350.331868px;}
._b6{width:351.413423px;}
._ae{width:354.235928px;}
._ca{width:360.043736px;}
._15{width:361.473995px;}
._61{width:362.780675px;}
._17{width:368.720623px;}
._78{width:369.987941px;}
._b5{width:372.037077px;}
._10d{width:375.948497px;}
._79{width:378.086084px;}
._96{width:380.353564px;}
._e9{width:383.086853px;}
._ba{width:386.827417px;}
._81{width:389.747410px;}
._85{width:391.383154px;}
._86{width:394.411940px;}
._7d{width:396.808990px;}
._7e{width:398.493404px;}
._27{width:409.600689px;}
._9d{width:412.769308px;}
._25{width:415.185247px;}
._9b{width:418.447227px;}
._9c{width:420.753679px;}
._cd{width:423.146764px;}
._37{width:424.682717px;}
._8d{width:426.394947px;}
._df{width:428.479854px;}
._8a{width:431.898258px;}
._42{width:434.892151px;}
._e0{width:436.570086px;}
._4f{width:444.749994px;}
._95{width:446.369623px;}
._106{width:448.221417px;}
._8c{width:456.490771px;}
._b1{width:462.382850px;}
._e1{width:464.037113px;}
._92{width:466.388232px;}
._ff{width:472.076415px;}
._4a{width:473.320242px;}
._4b{width:480.381822px;}
._c2{width:487.708889px;}
._c3{width:489.900565px;}
._ee{width:495.258066px;}
._de{width:498.418775px;}
._e4{width:501.044871px;}
._ac{width:507.020831px;}
._f1{width:517.476315px;}
._50{width:519.447262px;}
._e3{width:520.942472px;}
._52{width:522.427379px;}
._2f{width:523.916939px;}
._114{width:531.609153px;}
._110{width:535.221920px;}
._e8{width:543.601972px;}
._111{width:546.572935px;}
._fc{width:558.955072px;}
._f3{width:568.124061px;}
._fd{width:571.604692px;}
._4c{width:584.361974px;}
._4d{width:591.423554px;}
._ea{width:598.632874px;}
._ed{width:604.019819px;}
._55{width:613.968783px;}
._7f{width:616.624974px;}
._8f{width:630.424209px;}
._90{width:633.404326px;}
._e6{width:639.554941px;}
._e7{width:643.263649px;}
._66{width:661.067581px;}
._67{width:664.695549px;}
._53{width:676.680800px;}
._ad{width:737.833282px;}
._23{width:750.724068px;}
._19{width:757.438834px;}
._d3{width:762.427346px;}
._117{width:787.889771px;}
._f5{width:789.453696px;}
._107{width:841.943569px;}
._108{width:853.301743px;}
._13{width:886.750488px;}
._100{width:896.282028px;}
._112{width:904.273598px;}
._101{width:910.036168px;}
._f4{width:1028.838803px;}
._bb{width:1061.684598px;}
._109{width:1186.040034px;}
._11a{width:1216.157538px;}
._4{width:1241.976000px;}
._116{width:1254.983511px;}
._103{width:1920.117617px;}
._e5{width:2067.106654px;}
.fc7{color:transparent;}
.fc4{color:rgb(192,0,0);}
.fc8{color:rgb(19,19,19);}
.fc6{color:rgb(26,26,26);}
.fc5{color:rgb(8,8,8);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,94,0);}
.fc0{color:rgb(0,32,79);}
.fs26{font-size:35.163384px;}
.fs17{font-size:37.432618px;}
.fsf{font-size:38.269799px;}
.fs6{font-size:38.472406px;}
.fs2f{font-size:39.454346px;}
.fs13{font-size:41.178859px;}
.fs2a{font-size:41.448405px;}
.fs31{font-size:41.567791px;}
.fsc{font-size:41.607282px;}
.fs38{font-size:47.780217px;}
.fs20{font-size:48.161867px;}
.fs5{font-size:48.240000px;}
.fs1c{font-size:48.373468px;}
.fs25{font-size:48.619559px;}
.fs36{font-size:50.110337px;}
.fs0{font-size:54.000000px;}
.fs3b{font-size:54.144000px;}
.fs1{font-size:59.760000px;}
.fs27{font-size:60.879901px;}
.fs18{font-size:64.785141px;}
.fs10{font-size:66.088191px;}
.fs3c{font-size:66.240000px;}
.fs28{font-size:66.442049px;}
.fs7{font-size:66.482826px;}
.fs2e{font-size:68.189187px;}
.fs19{font-size:68.572696px;}
.fs9{font-size:69.575201px;}
.fs11{font-size:69.814614px;}
.fs16{font-size:70.249336px;}
.fs8{font-size:70.996635px;}
.fs14{font-size:71.101036px;}
.fse{font-size:71.435903px;}
.fs15{font-size:71.686708px;}
.fs2b{font-size:71.735319px;}
.fs32{font-size:71.841868px;}
.fs30{font-size:71.872839px;}
.fsb{font-size:71.956518px;}
.fs2{font-size:72.000000px;}
.fs3d{font-size:72.144000px;}
.fsa{font-size:73.443485px;}
.fs2c{font-size:75.609644px;}
.fs33{font-size:75.721159px;}
.fs39{font-size:82.556247px;}
.fs34{font-size:83.244622px;}
.fs1f{font-size:83.357078px;}
.fs1b{font-size:83.697027px;}
.fs24{font-size:84.044202px;}
.fs3{font-size:84.240000px;}
.fs37{font-size:86.729429px;}
.fs21{font-size:87.929784px;}
.fs23{font-size:87.949741px;}
.fs22{font-size:87.969116px;}
.fs3a{font-size:88.003133px;}
.fs1d{font-size:88.421497px;}
.fs29{font-size:91.317682px;}
.fs35{font-size:94.765076px;}
.fs4{font-size:95.760000px;}
.fs1a{font-size:97.245360px;}
.fs12{font-size:99.134987px;}
.fs2d{font-size:107.677884px;}
.fsd{font-size:107.867022px;}
.fs1e{font-size:125.542607px;}
.y0{bottom:0.000000px;}
.y1ed{bottom:3.684900px;}
.y1e9{bottom:3.827362px;}
.y48{bottom:4.026751px;}
.yaa{bottom:4.160137px;}
.y124{bottom:4.358969px;}
.y3a{bottom:4.535820px;}
.y6{bottom:4.536000px;}
.y54{bottom:4.571370px;}
.y58{bottom:4.785858px;}
.y40{bottom:4.800902px;}
.y57{bottom:4.817758px;}
.y1e0{bottom:4.973435px;}
.y1e7{bottom:5.446610px;}
.y2a{bottom:5.864779px;}
.y2d{bottom:5.864782px;}
.yc7{bottom:6.678641px;}
.ybf{bottom:6.678673px;}
.yb8{bottom:6.678710px;}
.yb5{bottom:6.678711px;}
.y1f1{bottom:6.678715px;}
.y1fb{bottom:6.678717px;}
.yc5{bottom:6.686264px;}
.y4f{bottom:6.874938px;}
.y1f6{bottom:6.948913px;}
.y20e{bottom:7.020000px;}
.y210{bottom:7.200000px;}
.y7{bottom:7.416000px;}
.y36{bottom:7.660446px;}
.y34{bottom:7.660465px;}
.y33{bottom:7.660468px;}
.y35{bottom:7.660475px;}
.y1e5{bottom:7.797000px;}
.y8f{bottom:8.595024px;}
.y96{bottom:8.595026px;}
.y1bb{bottom:8.676317px;}
.y1cc{bottom:8.676319px;}
.y1ba{bottom:8.930545px;}
.y4c{bottom:8.937325px;}
.y1ee{bottom:9.070432px;}
.y55{bottom:9.178532px;}
.y1ea{bottom:9.475687px;}
.yc6{bottom:12.107191px;}
.y1f3{bottom:12.107199px;}
.yb9{bottom:12.107202px;}
.yb7{bottom:12.107204px;}
.ybe{bottom:12.107221px;}
.yc0{bottom:12.107232px;}
.y1f2{bottom:12.107233px;}
.yb4{bottom:12.107255px;}
.y1f0{bottom:12.107262px;}
.yb6{bottom:12.107271px;}
.yc4{bottom:12.150442px;}
.y1cb{bottom:12.488190px;}
.y1f5{bottom:12.597079px;}
.y1f7{bottom:12.597089px;}
.y123{bottom:13.076844px;}
.y16c{bottom:13.162667px;}
.y161{bottom:13.610593px;}
.y28{bottom:14.492719px;}
.y245{bottom:14.655000px;}
.y8b{bottom:15.844588px;}
.y50{bottom:15.942824px;}
.y127{bottom:16.745906px;}
.y1b4{bottom:16.771705px;}
.y1df{bottom:17.135528px;}
.y4e{bottom:17.252491px;}
.y128{bottom:17.291222px;}
.y3c{bottom:17.500130px;}
.y1c0{bottom:18.369212px;}
.yaf{bottom:18.737899px;}
.y2e{bottom:18.806905px;}
.y29{bottom:18.806914px;}
.y2f{bottom:18.806916px;}
.y2c{bottom:18.806917px;}
.y102{bottom:19.106908px;}
.y10d{bottom:19.106918px;}
.yb0{bottom:19.236482px;}
.y95{bottom:21.290258px;}
.y8e{bottom:21.290260px;}
.y9f{bottom:21.290261px;}
.ya9{bottom:21.368639px;}
.y15b{bottom:21.638844px;}
.y4b{bottom:21.868727px;}
.y1de{bottom:22.979115px;}
.y1ca{bottom:22.979117px;}
.y125{bottom:23.756992px;}
.y114{bottom:23.757032px;}
.y110{bottom:23.757041px;}
.y106{bottom:23.757042px;}
.y11f{bottom:23.757050px;}
.y39{bottom:23.964892px;}
.y3b{bottom:23.964904px;}
.y126{bottom:24.555486px;}
.y11e{bottom:24.555534px;}
.y27{bottom:24.896785px;}
.y9{bottom:26.640000px;}
.yf9{bottom:26.704129px;}
.ya8{bottom:26.773783px;}
.yae{bottom:26.773853px;}
.yab{bottom:26.773858px;}
.yac{bottom:26.773862px;}
.y8a{bottom:27.490871px;}
.yad{bottom:27.627298px;}
.y47{bottom:28.088966px;}
.y46{bottom:28.219933px;}
.y2b{bottom:29.210985px;}
.y1b3{bottom:30.457653px;}
.y15d{bottom:30.563243px;}
.y4d{bottom:31.198411px;}
.y98{bottom:31.525385px;}
.y94{bottom:31.525395px;}
.y9e{bottom:31.525397px;}
.y93{bottom:31.690461px;}
.y16b{bottom:32.321124px;}
.y4a{bottom:32.377111px;}
.y9d{bottom:32.411544px;}
.y49{bottom:32.508078px;}
.y1bf{bottom:32.564214px;}
.yf6{bottom:33.544274px;}
.y1b9{bottom:34.342893px;}
.y1ce{bottom:34.342896px;}
.y1c9{bottom:34.342899px;}
.y1dd{bottom:34.414767px;}
.y16a{bottom:34.525220px;}
.y163{bottom:34.974278px;}
.y15a{bottom:34.974282px;}
.y169{bottom:34.974284px;}
.y1c8{bottom:35.104977px;}
.y1c7{bottom:37.210041px;}
.yf8{bottom:38.543093px;}
.y89{bottom:38.808380px;}
.y88{bottom:38.972080px;}
.y1c6{bottom:41.095283px;}
.y159{bottom:42.210424px;}
.y1b2{bottom:42.438284px;}
.y1b1{bottom:43.164426px;}
.y244{bottom:43.410000px;}
.yf5{bottom:44.541241px;}
.yfa{bottom:46.304445px;}
.y8{bottom:47.700000px;}
.yf7{bottom:48.092605px;}
.yfc{bottom:48.487562px;}
.yfb{bottom:50.276807px;}
.y168{bottom:50.927346px;}
.y1dc{bottom:51.658073px;}
.y160{bottom:52.167944px;}
.y10c{bottom:53.868983px;}
.y90{bottom:57.540120px;}
.y9c{bottom:58.525071px;}
.y8d{bottom:62.362002px;}
.y92{bottom:62.362010px;}
.y68{bottom:62.362053px;}
.y76{bottom:62.362061px;}
.y11d{bottom:66.292774px;}
.y122{bottom:66.800636px;}
.y1b8{bottom:67.631745px;}
.y1ad{bottom:67.631747px;}
.y1b7{bottom:67.850333px;}
.y1c5{bottom:67.850334px;}
.y186{bottom:67.850340px;}
.y5{bottom:68.040000px;}
.y101{bottom:68.653775px;}
.y10b{bottom:68.653786px;}
.y1db{bottom:68.938809px;}
.ya0{bottom:69.218871px;}
.y87{bottom:69.644993px;}
.y62{bottom:69.645044px;}
.y9b{bottom:70.432473px;}
.y1c4{bottom:71.407685px;}
.ye1{bottom:72.691739px;}
.y113{bottom:73.266447px;}
.y10f{bottom:73.266456px;}
.y105{bottom:73.266457px;}
.y11c{bottom:73.266464px;}
.yef{bottom:73.350364px;}
.y242{bottom:73.515000px;}
.y11b{bottom:74.066447px;}
.y8c{bottom:75.058172px;}
.y97{bottom:75.058181px;}
.y9a{bottom:75.058183px;}
.y75{bottom:75.058241px;}
.y67{bottom:75.058243px;}
.y84{bottom:75.058248px;}
.y1b0{bottom:75.691198px;}
.y17f{bottom:75.691200px;}
.yd9{bottom:77.269559px;}
.y1be{bottom:77.288707px;}
.y61{bottom:81.291318px;}
.y1a4{bottom:81.934545px;}
.y167{bottom:82.283515px;}
.y15f{bottom:82.731157px;}
.yf2{bottom:83.636623px;}
.yf4{bottom:84.136831px;}
.yee{bottom:84.951702px;}
.y91{bottom:85.293329px;}
.y7a{bottom:85.293371px;}
.y74{bottom:85.293381px;}
.y83{bottom:85.293383px;}
.y73{bottom:85.457083px;}
.y99{bottom:86.015868px;}
.y1da{bottom:86.182115px;}
.yd8{bottom:89.135649px;}
.y1bd{bottom:89.377142px;}
.y1af{bottom:89.377143px;}
.y17e{bottom:89.377148px;}
.y23c{bottom:89.925000px;}
.y158{bottom:90.760247px;}
.y137{bottom:90.760260px;}
.y1bc{bottom:91.482210px;}
.y86{bottom:92.576314px;}
.y60{bottom:92.576366px;}
.y1b6{bottom:93.260890px;}
.y1cd{bottom:93.260893px;}
.y1a3{bottom:93.260896px;}
.y1c3{bottom:94.024467px;}
.y1a2{bottom:94.024472px;}
.ye0{bottom:95.133797px;}
.y1c2{bottom:96.129533px;}
.ydf{bottom:96.897001px;}
.yd7{bottom:98.659120px;}
.ye7{bottom:99.080119px;}
.yed{bottom:99.659535px;}
.y15c{bottom:99.684646px;}
.y13a{bottom:99.684660px;}
.y1c1{bottom:100.050711px;}
.ye6{bottom:100.843323px;}
.y1ae{bottom:101.357776px;}
.y17d{bottom:101.357779px;}
.y166{bottom:101.441119px;}
.y17c{bottom:102.082424px;}
.y10a{bottom:103.415850px;}
.y1d9{bottom:103.462851px;}
.y165{bottom:103.646637px;}
.y157{bottom:104.094264px;}
.y162{bottom:104.094266px;}
.y148{bottom:104.094273px;}
.y136{bottom:104.094277px;}
.y156{bottom:104.094279px;}
.yf3{bottom:105.920265px;}
.yd2{bottom:107.709509px;}
.y1ec{bottom:109.140000px;}
.y6a{bottom:109.240734px;}
.y135{bottom:111.330419px;}
.y23d{bottom:113.010000px;}
.y11a{bottom:115.839641px;}
.y53{bottom:116.340000px;}
.y121{bottom:116.347504px;}
.y82{bottom:116.523762px;}
.y66{bottom:116.523763px;}
.y72{bottom:116.523765px;}
.y1eb{bottom:118.116000px;}
.y100{bottom:118.163190px;}
.y109{bottom:118.163200px;}
.y164{bottom:120.047342px;}
.y1d8{bottom:120.706157px;}
.y56{bottom:120.840000px;}
.y15e{bottom:121.287926px;}
.y146{bottom:121.287939px;}
.y112{bottom:122.813315px;}
.y104{bottom:122.813324px;}
.y119{bottom:122.813332px;}
.y118{bottom:123.611816px;}
.y5f{bottom:123.806738px;}
.y81{bottom:124.790309px;}
.y52{bottom:125.316000px;}
.yde{bottom:126.364748px;}
.y1a1{bottom:126.768337px;}
.y1a0{bottom:127.022855px;}
.y185{bottom:127.022861px;}
.yec{bottom:127.048329px;}
.y71{bottom:129.219944px;}
.y65{bottom:129.219946px;}
.y80{bottom:129.219947px;}
.y19f{bottom:130.580206px;}
.yd6{bottom:130.965354px;}
.y17b{bottom:134.827790px;}
.y5e{bottom:135.458440px;}
.y23e{bottom:136.110000px;}
.y18e{bottom:136.425295px;}
.yf1{bottom:137.334589px;}
.yd1{bottom:137.812010px;}
.y1d7{bottom:137.986893px;}
.yeb{bottom:138.625796px;}
.ydd{bottom:138.864507px;}
.y79{bottom:139.449660px;}
.y70{bottom:139.449670px;}
.y6f{bottom:139.652617px;}
.y7f{bottom:140.369645px;}
.y1e8{bottom:140.640000px;}
.yfd{bottom:140.985000px;}
.y1b5{bottom:141.072613px;}
.y184{bottom:141.072614px;}
.y1ac{bottom:141.072630px;}
.y19e{bottom:141.072631px;}
.y1e4{bottom:142.140000px;}
.ye5{bottom:142.803233px;}
.y1e6{bottom:145.140000px;}
.y45{bottom:146.415000px;}
.y5d{bottom:146.904473px;}
.y18d{bottom:148.551158px;}
.yd0{bottom:148.803551px;}
.y145{bottom:149.540474px;}
.y1e3{bottom:149.616000px;}
.ydc{bottom:150.593881px;}
.y18c{bottom:150.648744px;}
.y108{bottom:150.859378px;}
.y1d6{bottom:151.487188px;}
.yd5{bottom:152.351660px;}
.y19d{bottom:152.430425px;}
.y19c{bottom:153.193990px;}
.yea{bottom:153.328204px;}
.ye4{bottom:154.543458px;}
.y23a{bottom:155.190000px;}
.y19b{bottom:155.305051px;}
.y155{bottom:155.509015px;}
.y144{bottom:157.541157px;}
.y23f{bottom:159.225000px;}
.y17a{bottom:160.500358px;}
.y143{bottom:160.951757px;}
.y179{bottom:161.263924px;}
.y117{bottom:163.278666px;}
.y178{bottom:163.360012px;}
.y120{bottom:163.788035px;}
.y154{bottom:164.049717px;}
.yff{bottom:165.600715px;}
.y107{bottom:165.600720px;}
.y69{bottom:166.752413px;}
.y1d5{bottom:167.387501px;}
.y153{bottom:168.256120px;}
.y7e{bottom:169.566560px;}
.y103{bottom:170.259840px;}
.y116{bottom:170.259846px;}
.y10e{bottom:170.259851px;}
.y111{bottom:170.259853px;}
.y51{bottom:170.310000px;}
.y147{bottom:170.899326px;}
.y134{bottom:170.899330px;}
.y152{bottom:170.899333px;}
.y115{bottom:171.053837px;}
.y64{bottom:171.609517px;}
.y6e{bottom:171.609524px;}
.y7d{bottom:177.833146px;}
.y85{bottom:178.428458px;}
.y239{bottom:178.950000px;}
.ydb{bottom:178.957049px;}
.ye9{bottom:180.215705px;}
.y1e2{bottom:180.390000px;}
.y151{bottom:180.449000px;}
.y142{bottom:181.685336px;}
.y150{bottom:182.211129px;}
.y240{bottom:182.340000px;}
.yd4{bottom:183.557655px;}
.y19a{bottom:184.021444px;}
.y1ab{bottom:184.231048px;}
.y183{bottom:184.231050px;}
.y63{bottom:184.300295px;}
.y7c{bottom:184.300299px;}
.y6d{bottom:184.300303px;}
.y78{bottom:184.300304px;}
.y1d4{bottom:184.665243px;}
.y199{bottom:187.824334px;}
.yf0{bottom:189.926890px;}
.ycf{bottom:190.404311px;}
.y5c{bottom:190.496841px;}
.ye8{bottom:190.632171px;}
.yda{bottom:191.456808px;}
.y177{bottom:192.076405px;}
.y7b{bottom:193.419247px;}
.y18b{bottom:193.678406px;}
.y77{bottom:194.528660px;}
.y6c{bottom:194.528669px;}
.y6b{bottom:194.704548px;}
.yca{bottom:195.150000px;}
.ye3{bottom:195.395534px;}
.y1aa{bottom:198.319748px;}
.y198{bottom:198.319749px;}
.y171{bottom:200.264980px;}
.yce{bottom:201.395852px;}
.y1d3{bottom:201.957957px;}
.y238{bottom:202.710000px;}
.y44{bottom:203.070000px;}
.yd3{bottom:204.943961px;}
.ye2{bottom:205.367130px;}
.y241{bottom:205.455000px;}
.y176{bottom:205.805770px;}
.y18a{bottom:207.901854px;}
.y133{bottom:208.330616px;}
.y182{bottom:209.683526px;}
.y1a6{bottom:209.683529px;}
.y197{bottom:209.683531px;}
.y196{bottom:210.447104px;}
.y14f{bottom:211.599087px;}
.y141{bottom:211.698585px;}
.y195{bottom:212.558160px;}
.y139{bottom:217.283440px;}
.y175{bottom:217.738493px;}
.yc9{bottom:218.910000px;}
.y1d2{bottom:219.190782px;}
.y140{bottom:221.703003px;}
.y132{bottom:221.703005px;}
.y14e{bottom:225.866747px;}
.y237{bottom:226.470000px;}
.y43{bottom:226.830000px;}
.y131{bottom:228.893669px;}
.y1d1{bottom:236.468524px;}
.y13f{bottom:238.883875px;}
.y194{bottom:239.058687px;}
.y1a9{bottom:239.268292px;}
.y181{bottom:239.268293px;}
.y243{bottom:240.480000px;}
.yc8{bottom:242.670000px;}
.y193{bottom:242.861577px;}
.y174{bottom:247.113648px;}
.y189{bottom:248.715650px;}
.y236{bottom:250.410000px;}
.y42{bottom:250.590000px;}
.y1a8{bottom:253.356991px;}
.y192{bottom:253.356992px;}
.y1d0{bottom:253.716322px;}
.y188{bottom:260.828038px;}
.y173{bottom:260.828041px;}
.yc3{bottom:262.740000px;}
.y187{bottom:262.939095px;}
.ycc{bottom:263.385000px;}
.y14d{bottom:263.795443px;}
.y13e{bottom:264.250194px;}
.y180{bottom:264.720770px;}
.y1a5{bottom:264.720772px;}
.y191{bottom:264.720775px;}
.y1a7{bottom:265.439429px;}
.y190{bottom:265.439431px;}
.y18f{bottom:267.580430px;}
.y1cf{bottom:270.994064px;}
.y130{bottom:272.279291px;}
.y172{bottom:272.775736px;}
.y235{bottom:274.170000px;}
.y41{bottom:274.350000px;}
.yc2{bottom:274.710000px;}
.y13d{bottom:275.661471px;}
.y138{bottom:281.232115px;}
.y14c{bottom:282.965840px;}
.y14b{bottom:285.196934px;}
.y12f{bottom:285.651680px;}
.y14a{bottom:285.651682px;}
.y13c{bottom:285.651684px;}
.y12e{bottom:292.856555px;}
.y3f{bottom:294.240000px;}
.ycb{bottom:297.390000px;}
.y234{bottom:297.930000px;}
.y3e{bottom:298.650000px;}
.y149{bottom:301.567796px;}
.y13b{bottom:302.846760px;}
.ycd{bottom:315.465000px;}
.y38{bottom:318.689980px;}
.y233{bottom:321.690000px;}
.y1e1{bottom:341.175000px;}
.y3d{bottom:342.615000px;}
.y232{bottom:345.675000px;}
.y21b{bottom:348.195000px;}
.y231{bottom:369.435000px;}
.y37{bottom:370.875000px;}
.y21a{bottom:372.675000px;}
.y32{bottom:390.689959px;}
.y230{bottom:393.195000px;}
.y219{bottom:397.335000px;}
.y31{bottom:398.235000px;}
.y22f{bottom:416.955000px;}
.y26{bottom:418.064959px;}
.y218{bottom:421.815000px;}
.y22e{bottom:440.895000px;}
.y30{bottom:441.975000px;}
.y217{bottom:446.295000px;}
.y22d{bottom:464.655000px;}
.y25{bottom:470.055000px;}
.y216{bottom:470.955000px;}
.y22c{bottom:488.415000px;}
.y24{bottom:493.815000px;}
.y215{bottom:495.435000px;}
.y170{bottom:498.495000px;}
.y22b{bottom:512.175000px;}
.y23{bottom:517.755000px;}
.y214{bottom:520.095000px;}
.y16f{bottom:522.255000px;}
.y22a{bottom:535.935000px;}
.y22{bottom:541.515000px;}
.y213{bottom:544.575000px;}
.y16e{bottom:546.195000px;}
.y229{bottom:559.875000px;}
.y21{bottom:565.275000px;}
.y12d{bottom:566.039959px;}
.y212{bottom:569.055000px;}
.y228{bottom:583.635000px;}
.yc1{bottom:584.535000px;}
.y20{bottom:589.035000px;}
.y211{bottom:593.715000px;}
.ybd{bottom:604.514959px;}
.y227{bottom:607.425000px;}
.y1f{bottom:613.005000px;}
.ybc{bottom:616.605000px;}
.y20f{bottom:618.225000px;}
.y226{bottom:631.185000px;}
.y1e{bottom:636.765000px;}
.y20d{bottom:642.885000px;}
.ybb{bottom:643.065000px;}
.y225{bottom:655.125000px;}
.y1d{bottom:660.525000px;}
.yba{bottom:666.825000px;}
.y20c{bottom:674.385000px;}
.y224{bottom:678.885000px;}
.y1c{bottom:684.285000px;}
.yb3{bottom:686.639919px;}
.y20b{bottom:698.325000px;}
.yb2{bottom:698.685000px;}
.y223{bottom:702.645000px;}
.y1b{bottom:708.225000px;}
.ya7{bottom:721.364919px;}
.y20a{bottom:722.085000px;}
.y222{bottom:726.405000px;}
.y1a{bottom:731.985000px;}
.y209{bottom:745.845000px;}
.y16d{bottom:746.025000px;}
.yb1{bottom:748.365000px;}
.y221{bottom:750.345000px;}
.y19{bottom:755.745000px;}
.y208{bottom:769.605000px;}
.y220{bottom:774.105000px;}
.ya6{bottom:779.145000px;}
.y18{bottom:779.505000px;}
.y207{bottom:793.545000px;}
.y21f{bottom:797.865000px;}
.ya5{bottom:802.905000px;}
.y17{bottom:803.265000px;}
.y206{bottom:817.305000px;}
.ya4{bottom:826.665000px;}
.y16{bottom:827.205000px;}
.y21e{bottom:839.625000px;}
.y205{bottom:841.065000px;}
.ya3{bottom:850.605000px;}
.y15{bottom:850.965000px;}
.y21d{bottom:863.565000px;}
.y204{bottom:864.825000px;}
.ya2{bottom:874.410000px;}
.y14{bottom:874.770000px;}
.y21c{bottom:883.410000px;}
.y23b{bottom:884.880000px;}
.y203{bottom:888.630000px;}
.y12c{bottom:893.670000px;}
.y5b{bottom:894.164919px;}
.y13{bottom:898.530000px;}
.y202{bottom:912.570000px;}
.y12b{bottom:917.610000px;}
.y12{bottom:922.470000px;}
.y201{bottom:936.330000px;}
.y12a{bottom:941.370000px;}
.y11{bottom:946.230000px;}
.y200{bottom:960.090000px;}
.yfe{bottom:961.139919px;}
.y249{bottom:969.990000px;}
.y10{bottom:976.830000px;}
.y1ff{bottom:983.850000px;}
.y248{bottom:993.750000px;}
.yf{bottom:1000.590000px;}
.ya1{bottom:1006.710000px;}
.y1fe{bottom:1007.790000px;}
.ye{bottom:1017.690000px;}
.y1fd{bottom:1031.550000px;}
.yd{bottom:1041.450000px;}
.y1fa{bottom:1051.289919px;}
.y129{bottom:1052.610000px;}
.y1fc{bottom:1063.410000px;}
.y247{bottom:1065.210000px;}
.yc{bottom:1067.550000px;}
.y1f9{bottom:1085.864919px;}
.y246{bottom:1088.970000px;}
.y1f8{bottom:1097.970000px;}
.yb{bottom:1099.410000px;}
.y5a{bottom:1112.910000px;}
.y1ef{bottom:1120.589919px;}
.ya{bottom:1131.090000px;}
.y1f4{bottom:1132.710000px;}
.y59{bottom:1136.670000px;}
.y4{bottom:1157.220000px;}
.y3{bottom:1176.660000px;}
.y2{bottom:1192.320000px;}
.y1{bottom:1207.800000px;}
.h2a{height:17.999809px;}
.h13{height:19.274881px;}
.h1c{height:21.225026px;}
.h28{height:21.299546px;}
.h75{height:23.760000px;}
.h78{height:23.796000px;}
.h77{height:23.940000px;}
.h5{height:24.156000px;}
.h4b{height:24.552558px;}
.h69{height:25.800800px;}
.h2d{height:26.137033px;}
.h1f{height:26.721588px;}
.h4d{height:26.801778px;}
.he{height:26.863057px;}
.h25{height:27.000188px;}
.h6e{height:28.274229px;}
.h2f{height:28.531404px;}
.h26{height:28.752816px;}
.h53{height:28.941025px;}
.h62{height:29.024386px;}
.h20{height:29.169510px;}
.h5c{height:30.072380px;}
.h47{height:31.500468px;}
.h41{height:31.500508px;}
.h3b{height:31.500549px;}
.h55{height:31.592266px;}
.h64{height:31.683263px;}
.h19{height:31.713363px;}
.h6b{height:32.774872px;}
.h72{height:32.774954px;}
.h6f{height:33.362163px;}
.hb{height:33.683203px;}
.h43{height:34.726350px;}
.h6c{height:34.989151px;}
.h3d{height:36.709314px;}
.h36{height:36.870597px;}
.h45{height:37.058170px;}
.h7c{height:37.151367px;}
.h7b{height:37.250437px;}
.h2{height:38.100586px;}
.h74{height:38.194451px;}
.h3{height:42.164648px;}
.h4c{height:42.508915px;}
.h17{height:45.000094px;}
.hd{height:45.000257px;}
.h2e{height:45.235719px;}
.h4e{height:46.403089px;}
.hf{height:46.421114px;}
.h5b{height:47.612567px;}
.h15{height:48.580341px;}
.h30{height:49.379690px;}
.h1e{height:49.498635px;}
.h54{height:50.088626px;}
.h63{height:50.163023px;}
.h18{height:50.243077px;}
.h7{height:50.273438px;}
.h21{height:50.372884px;}
.h10{height:50.673677px;}
.h34{height:50.774655px;}
.h9{height:50.800781px;}
.h5d{height:51.974278px;}
.h79{height:52.417969px;}
.h4{height:54.000000px;}
.h76{height:54.246094px;}
.h7e{height:54.354586px;}
.h56{height:54.677164px;}
.h65{height:54.758377px;}
.hc{height:54.878906px;}
.h50{height:56.391198px;}
.ha{height:57.796523px;}
.h3c{height:58.203428px;}
.h35{height:58.440795px;}
.h44{height:58.683207px;}
.h6{height:58.819922px;}
.h7d{height:58.846406px;}
.h32{height:60.008502px;}
.h73{height:60.558146px;}
.h23{height:61.215478px;}
.h4f{height:61.543246px;}
.h12{height:61.581016px;}
.h5f{height:63.161566px;}
.h31{height:63.516799px;}
.h48{height:63.535351px;}
.h37{height:63.794462px;}
.h46{height:64.059082px;}
.h14{height:64.445389px;}
.h22{height:64.667149px;}
.h2b{height:65.069820px;}
.h11{height:65.762019px;}
.h27{height:65.858723px;}
.h1d{height:66.168900px;}
.h29{height:66.401214px;}
.h58{height:66.446240px;}
.h67{height:66.544934px;}
.h5e{height:66.573621px;}
.h1a{height:66.651131px;}
.h8{height:67.565039px;}
.h16{height:68.028463px;}
.h57{height:70.034910px;}
.h66{height:70.138203px;}
.h70{height:76.469336px;}
.h60{height:76.557160px;}
.h68{height:77.106957px;}
.h3f{height:77.211122px;}
.h39{height:77.526006px;}
.h6d{height:80.334827px;}
.h3e{height:81.446680px;}
.h42{height:81.465165px;}
.h40{height:81.483111px;}
.h71{height:81.514621px;}
.h38{height:81.902138px;}
.h51{height:84.584786px;}
.h6a{height:87.778003px;}
.h33{height:90.075414px;}
.h24{height:91.825718px;}
.h59{height:99.738743px;}
.h1b{height:99.913936px;}
.h3a{height:116.286292px;}
.h52{height:192.222092px;}
.h2c{height:211.494804px;}
.h4a{height:223.205327px;}
.h7a{height:268.560000px;}
.h49{height:280.110000px;}
.h61{height:291.221299px;}
.h5a{height:320.553453px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:23.775032px;}
.wa{width:26.999430px;}
.wd{width:30.225058px;}
.w1c{width:32.775100px;}
.w8{width:49.500320px;}
.w26{width:57.456000px;}
.w23{width:57.780000px;}
.w7{width:61.726777px;}
.w1b{width:70.800860px;}
.wc{width:76.497197px;}
.w11{width:95.701685px;}
.w15{width:103.500183px;}
.w12{width:106.719660px;}
.w13{width:107.999987px;}
.w14{width:116.997300px;}
.w1e{width:129.223245px;}
.w4{width:133.596000px;}
.w1d{width:140.778585px;}
.w27{width:140.940000px;}
.w24{width:146.736000px;}
.w25{width:146.880000px;}
.w28{width:146.916000px;}
.w1f{width:175.501125px;}
.w20{width:185.771293px;}
.w21{width:234.008822px;}
.w9{width:237.301097px;}
.w22{width:266.767898px;}
.w3{width:287.130000px;}
.w5{width:301.170000px;}
.w10{width:318.223242px;}
.wb{width:396.522605px;}
.w18{width:553.509401px;}
.w6{width:612.151899px;}
.wf{width:696.592449px;}
.w1a{width:698.245742px;}
.w29{width:702.000000px;}
.w17{width:755.242546px;}
.w16{width:776.130000px;}
.w19{width:797.115010px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:1.770470px;}
.x27{left:3.006036px;}
.x26{left:4.816874px;}
.x73{left:8.100000px;}
.x12{left:10.022350px;}
.x1e{left:11.829121px;}
.x21{left:13.428593px;}
.x7e{left:15.142419px;}
.x36{left:16.338907px;}
.xa6{left:17.517490px;}
.x4f{left:18.969816px;}
.x1a{left:20.044692px;}
.x2d{left:22.317339px;}
.x6b{left:24.148674px;}
.x8e{left:25.398167px;}
.x72{left:26.800670px;}
.x4a{left:29.527063px;}
.x5f{left:31.399969px;}
.xae{left:32.734160px;}
.xdb{left:34.274795px;}
.x22{left:35.964520px;}
.x68{left:37.013377px;}
.xc6{left:38.097290px;}
.x88{left:39.439163px;}
.x4b{left:41.174255px;}
.x61{left:42.365590px;}
.x13{left:43.535397px;}
.x5e{left:44.749669px;}
.xa5{left:46.679693px;}
.x44{left:49.313631px;}
.x32{left:51.073709px;}
.x7{left:53.280000px;}
.xb3{left:54.957273px;}
.x43{left:55.988479px;}
.x5c{left:57.827589px;}
.x98{left:59.232832px;}
.xca{left:61.289868px;}
.x53{left:63.140707px;}
.x54{left:64.843217px;}
.x4d{left:66.511932px;}
.x97{left:68.610439px;}
.x81{left:69.691271px;}
.x49{left:71.313878px;}
.x8c{left:73.097995px;}
.x5a{left:74.379526px;}
.xb5{left:76.594007px;}
.x55{left:78.432313px;}
.x56{left:79.726446px;}
.x69{left:81.420617px;}
.x31{left:82.933728px;}
.x51{left:86.264695px;}
.x3f{left:87.798226px;}
.xd8{left:89.437218px;}
.x4c{left:93.008552px;}
.x41{left:94.166090px;}
.x4{left:95.795987px;}
.xb0{left:97.439990px;}
.x78{left:99.253212px;}
.x3c{left:100.739990px;}
.x8a{left:103.589172px;}
.xc2{left:104.596239px;}
.x30{left:105.817989px;}
.xbe{left:107.274086px;}
.x79{left:108.305080px;}
.x33{left:109.654112px;}
.x2c{left:113.824032px;}
.xb1{left:115.306143px;}
.x9{left:116.495987px;}
.x2e{left:117.694640px;}
.xe3{left:119.375987px;}
.x99{left:120.601976px;}
.x1{left:121.715987px;}
.x19{left:122.987287px;}
.x1b{left:124.694614px;}
.xd{left:127.655987px;}
.x48{left:130.538385px;}
.x15{left:131.840259px;}
.x17{left:133.552815px;}
.x2a{left:136.295987px;}
.x3e{left:137.587819px;}
.x95{left:139.970988px;}
.xc7{left:141.754029px;}
.x5{left:143.634000px;}
.x59{left:144.635845px;}
.xb4{left:146.493379px;}
.xcc{left:147.759001px;}
.x10{left:148.895987px;}
.x2{left:150.149987px;}
.x40{left:151.719070px;}
.x25{left:153.198925px;}
.xa3{left:154.950375px;}
.x45{left:156.211217px;}
.xe6{left:157.785000px;}
.xac{left:160.304759px;}
.xa4{left:161.369952px;}
.xd7{left:162.555994px;}
.x96{left:164.632103px;}
.x82{left:168.528960px;}
.xa1{left:169.777891px;}
.x1d{left:170.939980px;}
.xd6{left:173.013076px;}
.x11{left:174.235694px;}
.xa9{left:175.274301px;}
.x50{left:177.165176px;}
.x14{left:178.785069px;}
.x47{left:180.629334px;}
.x18{left:183.439021px;}
.xc{left:184.709987px;}
.xc0{left:185.893679px;}
.x90{left:188.209408px;}
.x3d{left:189.247495px;}
.x2b{left:191.264980px;}
.x42{left:193.753724px;}
.x85{left:195.196465px;}
.x29{left:197.489987px;}
.xa0{left:198.495546px;}
.xb9{left:199.746693px;}
.x80{left:204.873042px;}
.x4e{left:209.074898px;}
.x7b{left:212.656993px;}
.xcb{left:217.833407px;}
.xb6{left:225.507910px;}
.xb7{left:227.063758px;}
.x6f{left:230.639980px;}
.x1f{left:232.589987px;}
.xc8{left:239.585324px;}
.x66{left:245.264980px;}
.xbd{left:248.307038px;}
.xd1{left:252.465940px;}
.xd3{left:253.842268px;}
.x83{left:259.147250px;}
.x84{left:261.011414px;}
.xad{left:266.881070px;}
.x7d{left:268.809596px;}
.x7f{left:270.673760px;}
.xa2{left:278.740235px;}
.xce{left:279.887727px;}
.xcf{left:281.114453px;}
.x9e{left:287.148175px;}
.x2f{left:288.267209px;}
.xa{left:290.054987px;}
.x9f{left:293.709777px;}
.xf{left:295.814987px;}
.xc9{left:296.822510px;}
.xb2{left:300.771964px;}
.xa8{left:302.884662px;}
.x20{left:304.139980px;}
.xc5{left:305.544224px;}
.xc3{left:307.713431px;}
.x67{left:309.454067px;}
.xe5{left:312.375000px;}
.x7c{left:314.104511px;}
.xaa{left:322.356427px;}
.xba{left:324.962378px;}
.x24{left:327.839980px;}
.x7a{left:333.386512px;}
.xd0{left:338.531152px;}
.xde{left:339.764980px;}
.x70{left:347.654987px;}
.xe4{left:350.354987px;}
.x23{left:353.594987px;}
.x35{left:356.489959px;}
.xdf{left:362.594987px;}
.x6a{left:367.139959px;}
.xbf{left:371.503114px;}
.x9c{left:373.173099px;}
.xc1{left:375.302970px;}
.x6{left:383.295000px;}
.x9a{left:385.044815px;}
.xbb{left:391.040952px;}
.x77{left:392.612851px;}
.x9b{left:394.970347px;}
.x52{left:397.885854px;}
.x3{left:402.554987px;}
.xd2{left:410.354389px;}
.xe{left:412.094987px;}
.xab{left:417.400228px;}
.x63{left:422.641949px;}
.x37{left:432.974987px;}
.x92{left:438.007378px;}
.x46{left:442.497513px;}
.xb{left:446.474987px;}
.xe1{left:450.075000px;}
.x91{left:454.898696px;}
.x93{left:463.806838px;}
.x86{left:465.941377px;}
.x6c{left:473.864987px;}
.x76{left:478.606307px;}
.xd4{left:480.576900px;}
.x87{left:483.288063px;}
.xd5{left:484.376757px;}
.xbc{left:487.967166px;}
.x74{left:492.509271px;}
.x75{left:496.408362px;}
.x38{left:508.440000px;}
.x8{left:517.605000px;}
.x5d{left:523.989832px;}
.x58{left:532.298189px;}
.x57{left:533.565565px;}
.x39{left:538.664987px;}
.x8d{left:541.418671px;}
.xa7{left:547.126777px;}
.xc4{left:557.531435px;}
.x8b{left:561.212962px;}
.x62{left:562.954621px;}
.x28{left:565.124987px;}
.x89{left:570.875308px;}
.x6d{left:572.489959px;}
.x60{left:575.656552px;}
.x8f{left:576.795096px;}
.x3a{left:584.189959px;}
.x34{left:587.804987px;}
.x71{left:604.139959px;}
.x3b{left:607.964987px;}
.xb8{left:629.354671px;}
.xda{left:645.914959px;}
.xe2{left:649.905000px;}
.x5b{left:654.501460px;}
.xcd{left:674.070284px;}
.x6e{left:680.549987px;}
.x1c{left:708.089987px;}
.xe0{left:733.829987px;}
.x9d{left:743.549987px;}
.x94{left:765.864000px;}
.xdd{left:773.249987px;}
.x65{left:776.309987px;}
.xdc{left:786.749987px;}
.xd9{left:795.749987px;}
.x64{left:797.369987px;}
.xaf{left:893.699987px;}
@media print{
.v16{vertical-align:-51.370755pt;}
.ve{vertical-align:-50.375769pt;}
.v14{vertical-align:-42.986409pt;}
.v12{vertical-align:-40.404563pt;}
.v5{vertical-align:-36.391620pt;}
.vb{vertical-align:-35.358114pt;}
.v7{vertical-align:-28.694780pt;}
.vc{vertical-align:-27.314288pt;}
.v15{vertical-align:-26.073986pt;}
.v2{vertical-align:-24.320000pt;}
.vf{vertical-align:-23.141527pt;}
.v3{vertical-align:-22.116408pt;}
.v11{vertical-align:-20.584843pt;}
.v8{vertical-align:-15.860300pt;}
.v4{vertical-align:-14.229532pt;}
.v13{vertical-align:-13.292516pt;}
.v9{vertical-align:-9.181922pt;}
.va{vertical-align:-6.365618pt;}
.vd{vertical-align:-4.301614pt;}
.v6{vertical-align:-2.568820pt;}
.v0{vertical-align:0.000000pt;}
.v17{vertical-align:5.120000pt;}
.v18{vertical-align:7.946667pt;}
.v1{vertical-align:21.120000pt;}
.v10{vertical-align:25.728527pt;}
.lsa6{letter-spacing:-0.896000pt;}
.lsa4{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls7d{letter-spacing:-0.183657pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsa0{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls2a{letter-spacing:0.174622pt;}
.ls2{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa5{letter-spacing:0.384000pt;}
.ls3{letter-spacing:0.512000pt;}
.ls39{letter-spacing:0.640000pt;}
.lsa3{letter-spacing:6.400000pt;}
.ls4b{letter-spacing:7.985957pt;}
.ls30{letter-spacing:10.150207pt;}
.ls66{letter-spacing:11.398924pt;}
.lsa1{letter-spacing:12.800000pt;}
.ls1{letter-spacing:13.230953pt;}
.ls5{letter-spacing:14.052125pt;}
.ls50{letter-spacing:14.905569pt;}
.ls74{letter-spacing:16.623499pt;}
.ls62{letter-spacing:16.699396pt;}
.ls41{letter-spacing:16.820663pt;}
.ls6f{letter-spacing:17.735100pt;}
.ls73{letter-spacing:18.442483pt;}
.ls58{letter-spacing:20.079843pt;}
.ls10{letter-spacing:20.108965pt;}
.ls4{letter-spacing:20.286635pt;}
.ls1c{letter-spacing:24.288235pt;}
.ls93{letter-spacing:28.426926pt;}
.ls86{letter-spacing:31.620962pt;}
.lsf{letter-spacing:35.977244pt;}
.ls9d{letter-spacing:39.752779pt;}
.ls1d{letter-spacing:42.574919pt;}
.lsa2{letter-spacing:48.128000pt;}
.ls15{letter-spacing:62.321093pt;}
.ls55{letter-spacing:72.983140pt;}
.ls33{letter-spacing:73.320082pt;}
.ls37{letter-spacing:77.120248pt;}
.ls56{letter-spacing:77.630932pt;}
.ls34{letter-spacing:85.313153pt;}
.ls12{letter-spacing:105.997458pt;}
.ls13{letter-spacing:106.333501pt;}
.ls38{letter-spacing:106.733091pt;}
.ls16{letter-spacing:106.909757pt;}
.ls35{letter-spacing:108.251864pt;}
.ls7e{letter-spacing:111.578346pt;}
.ls80{letter-spacing:112.430089pt;}
.ls7f{letter-spacing:114.133575pt;}
.ls11{letter-spacing:118.383031pt;}
.ls36{letter-spacing:120.661823pt;}
.ls9f{letter-spacing:122.773160pt;}
.ls9e{letter-spacing:143.472865pt;}
.ls4f{letter-spacing:158.561754pt;}
.ls4e{letter-spacing:161.262319pt;}
.ls4c{letter-spacing:170.521400pt;}
.ls5f{letter-spacing:171.866723pt;}
.ls61{letter-spacing:172.800000pt;}
.ls83{letter-spacing:185.041187pt;}
.ls89{letter-spacing:191.482495pt;}
.ls8e{letter-spacing:196.060614pt;}
.ls8c{letter-spacing:201.330774pt;}
.ls43{letter-spacing:203.391136pt;}
.ls90{letter-spacing:203.673068pt;}
.ls31{letter-spacing:218.841844pt;}
.ls49{letter-spacing:221.716399pt;}
.ls44{letter-spacing:230.782582pt;}
.ls3c{letter-spacing:239.192914pt;}
.ls81{letter-spacing:248.442814pt;}
.ls3d{letter-spacing:249.185005pt;}
.ls3a{letter-spacing:265.851350pt;}
.ls97{letter-spacing:266.116483pt;}
.ls2c{letter-spacing:269.812576pt;}
.ls1e{letter-spacing:271.312313pt;}
.ls3b{letter-spacing:275.882021pt;}
.ls99{letter-spacing:277.189144pt;}
.ls98{letter-spacing:282.565772pt;}
.ls1b{letter-spacing:283.486006pt;}
.ls9b{letter-spacing:284.908065pt;}
.ls94{letter-spacing:287.782698pt;}
.ls8f{letter-spacing:292.733455pt;}
.ls2e{letter-spacing:292.864749pt;}
.ls88{letter-spacing:296.353363pt;}
.ls8b{letter-spacing:296.726001pt;}
.ls8d{letter-spacing:299.707102pt;}
.ls91{letter-spacing:301.250886pt;}
.ls87{letter-spacing:303.699647pt;}
.ls77{letter-spacing:305.829005pt;}
.ls8a{letter-spacing:309.045345pt;}
.ls75{letter-spacing:309.821551pt;}
.ls76{letter-spacing:312.802652pt;}
.ls82{letter-spacing:313.494693pt;}
.ls7a{letter-spacing:313.547927pt;}
.ls78{letter-spacing:314.346436pt;}
.ls84{letter-spacing:315.038477pt;}
.ls9a{letter-spacing:321.852422pt;}
.ls57{letter-spacing:326.600890pt;}
.ls59{letter-spacing:326.760592pt;}
.ls9c{letter-spacing:330.369853pt;}
.ls95{letter-spacing:334.947972pt;}
.ls51{letter-spacing:344.184921pt;}
.ls96{letter-spacing:350.332582pt;}
.ls7b{letter-spacing:359.808224pt;}
.ls7c{letter-spacing:369.177398pt;}
.ls2f{letter-spacing:383.254510pt;}
.ls85{letter-spacing:400.106319pt;}
.ls40{letter-spacing:415.462660pt;}
.ls45{letter-spacing:416.311409pt;}
.ls68{letter-spacing:417.810669pt;}
.ls92{letter-spacing:421.772534pt;}
.ls6c{letter-spacing:427.815084pt;}
.ls6b{letter-spacing:428.320358pt;}
.ls69{letter-spacing:430.846726pt;}
.ls79{letter-spacing:434.814850pt;}
.ls42{letter-spacing:442.931265pt;}
.ls6a{letter-spacing:451.458679pt;}
.ls47{letter-spacing:452.267505pt;}
.ls46{letter-spacing:453.799360pt;}
.ls23{letter-spacing:544.503300pt;}
.ls1f{letter-spacing:553.450876pt;}
.ls4d{letter-spacing:558.592613pt;}
.ls22{letter-spacing:559.704559pt;}
.ls26{letter-spacing:566.662419pt;}
.ls25{letter-spacing:586.402971pt;}
.ls21{letter-spacing:595.302442pt;}
.ls28{letter-spacing:606.174508pt;}
.ls5c{letter-spacing:644.504290pt;}
.ls24{letter-spacing:645.380005pt;}
.ls20{letter-spacing:653.028739pt;}
.ls27{letter-spacing:672.061935pt;}
.ls2b{letter-spacing:687.279676pt;}
.ls32{letter-spacing:691.834419pt;}
.ls29{letter-spacing:694.880305pt;}
.ls2d{letter-spacing:711.574024pt;}
.ls53{letter-spacing:747.095809pt;}
.ls54{letter-spacing:757.157025pt;}
.lse{letter-spacing:774.741444pt;}
.lsd{letter-spacing:775.154904pt;}
.ls5e{letter-spacing:781.581695pt;}
.lsa{letter-spacing:787.227937pt;}
.lsb{letter-spacing:793.719260pt;}
.ls5d{letter-spacing:800.639447pt;}
.ls60{letter-spacing:804.365823pt;}
.lsc{letter-spacing:816.082961pt;}
.ls5a{letter-spacing:816.646300pt;}
.ls71{letter-spacing:867.099878pt;}
.ls52{letter-spacing:872.903126pt;}
.ls6d{letter-spacing:880.540153pt;}
.ls70{letter-spacing:883.976013pt;}
.ls6e{letter-spacing:899.942656pt;}
.ls14{letter-spacing:916.100317pt;}
.ls3f{letter-spacing:919.118061pt;}
.ls5b{letter-spacing:1084.908705pt;}
.ls64{letter-spacing:1118.426189pt;}
.ls65{letter-spacing:1121.355819pt;}
.ls67{letter-spacing:1141.969760pt;}
.ls3e{letter-spacing:1148.820418pt;}
.ls63{letter-spacing:1224.585325pt;}
.ls18{letter-spacing:1595.112946pt;}
.ls48{letter-spacing:1606.527632pt;}
.ls4a{letter-spacing:1617.985744pt;}
.ls17{letter-spacing:1623.735569pt;}
.ls19{letter-spacing:1672.108160pt;}
.ls1a{letter-spacing:1685.433520pt;}
.ls72{letter-spacing:2238.109031pt;}
.wse1{word-spacing:-162.746071pt;}
.wse4{word-spacing:-141.118992pt;}
.ws1a{word-spacing:-78.121323pt;}
.wsde{word-spacing:-58.251584pt;}
.wsb5{word-spacing:-51.718807pt;}
.wsb{word-spacing:-51.438400pt;}
.wsb6{word-spacing:-49.899822pt;}
.wsf{word-spacing:-33.323863pt;}
.wsaa{word-spacing:-16.729081pt;}
.ws58{word-spacing:-16.640000pt;}
.wsf6{word-spacing:-16.384000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.990337pt;}
.wsd1{word-spacing:-15.964860pt;}
.ws97{word-spacing:-15.941182pt;}
.ws1{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.808000pt;}
.wsf3{word-spacing:-15.744000pt;}
.ws4d{word-spacing:-14.540424pt;}
.ws77{word-spacing:-13.528867pt;}
.ws2{word-spacing:-10.720000pt;}
.ws6f{word-spacing:-6.223279pt;}
.wsdf{word-spacing:-5.974784pt;}
.wsc{word-spacing:-5.112516pt;}
.ws5f{word-spacing:-1.839926pt;}
.wsa1{word-spacing:-0.303063pt;}
.wsf4{word-spacing:-0.048000pt;}
.ws1c{word-spacing:0.000000pt;}
.ws8{word-spacing:4.432188pt;}
.wsf5{word-spacing:6.480000pt;}
.ws11{word-spacing:7.653960pt;}
.ws6{word-spacing:8.687089pt;}
.wsa4{word-spacing:9.576792pt;}
.ws25{word-spacing:11.179875pt;}
.ws86{word-spacing:11.495024pt;}
.wse9{word-spacing:11.499076pt;}
.ws87{word-spacing:12.010827pt;}
.ws96{word-spacing:12.379257pt;}
.ws65{word-spacing:12.663019pt;}
.ws47{word-spacing:15.030153pt;}
.ws54{word-spacing:15.713687pt;}
.ws84{word-spacing:16.063560pt;}
.ws52{word-spacing:16.655486pt;}
.ws50{word-spacing:16.726199pt;}
.ws1b{word-spacing:17.874884pt;}
.wscd{word-spacing:18.583097pt;}
.ws61{word-spacing:21.389510pt;}
.wsec{word-spacing:23.505825pt;}
.wse8{word-spacing:34.528354pt;}
.ws43{word-spacing:35.127943pt;}
.ws62{word-spacing:39.341945pt;}
.wsc5{word-spacing:40.870041pt;}
.ws3d{word-spacing:42.956008pt;}
.wse5{word-spacing:43.026095pt;}
.ws89{word-spacing:47.696016pt;}
.ws19{word-spacing:47.877287pt;}
.wscc{word-spacing:47.894579pt;}
.wsc9{word-spacing:49.044049pt;}
.ws30{word-spacing:49.311387pt;}
.wse2{word-spacing:49.382041pt;}
.wsb8{word-spacing:49.511858pt;}
.ws46{word-spacing:49.697402pt;}
.ws7{word-spacing:50.526948pt;}
.ws2b{word-spacing:50.561204pt;}
.wse6{word-spacing:51.051579pt;}
.ws76{word-spacing:51.409694pt;}
.wsca{word-spacing:51.470707pt;}
.wsd2{word-spacing:51.662286pt;}
.ws9{word-spacing:52.831686pt;}
.ws91{word-spacing:53.052254pt;}
.ws60{word-spacing:53.520198pt;}
.ws2e{word-spacing:54.131585pt;}
.ws57{word-spacing:54.608148pt;}
.wsa9{word-spacing:54.854413pt;}
.wsea{word-spacing:55.352649pt;}
.ws28{word-spacing:56.953337pt;}
.wsab{word-spacing:57.157692pt;}
.wsdc{word-spacing:57.792792pt;}
.ws8b{word-spacing:58.025902pt;}
.wseb{word-spacing:58.306160pt;}
.ws78{word-spacing:58.769398pt;}
.wse7{word-spacing:59.164178pt;}
.ws2f{word-spacing:59.734437pt;}
.ws4f{word-spacing:60.063200pt;}
.wsdd{word-spacing:60.347169pt;}
.ws8c{word-spacing:63.063316pt;}
.ws4b{word-spacing:63.551987pt;}
.wsd5{word-spacing:63.795579pt;}
.wsef{word-spacing:66.982043pt;}
.ws9f{word-spacing:67.401223pt;}
.ws8a{word-spacing:67.909435pt;}
.ws8d{word-spacing:68.418327pt;}
.wsb0{word-spacing:69.401439pt;}
.ws15{word-spacing:69.504326pt;}
.wsa2{word-spacing:69.704502pt;}
.wsc3{word-spacing:69.862226pt;}
.ws16{word-spacing:69.965365pt;}
.ws40{word-spacing:70.073860pt;}
.ws93{word-spacing:70.970142pt;}
.wsbc{word-spacing:71.011696pt;}
.ws92{word-spacing:71.735319pt;}
.ws51{word-spacing:72.221396pt;}
.wsbf{word-spacing:73.438354pt;}
.ws3c{word-spacing:73.667391pt;}
.ws42{word-spacing:73.785537pt;}
.wsf1{word-spacing:75.389376pt;}
.ws94{word-spacing:76.007556pt;}
.ws27{word-spacing:76.532847pt;}
.wsf2{word-spacing:79.281843pt;}
.wsce{word-spacing:79.477617pt;}
.wsee{word-spacing:79.541999pt;}
.wsa0{word-spacing:80.796610pt;}
.ws31{word-spacing:80.824351pt;}
.wsa3{word-spacing:81.645187pt;}
.wsd0{word-spacing:82.987786pt;}
.wse3{word-spacing:83.710940pt;}
.wsb7{word-spacing:83.985413pt;}
.wsbd{word-spacing:85.124632pt;}
.ws6a{word-spacing:85.394208pt;}
.wsc0{word-spacing:86.146383pt;}
.wsc4{word-spacing:86.721118pt;}
.ws12{word-spacing:87.177667pt;}
.wsaf{word-spacing:88.377734pt;}
.ws59{word-spacing:89.777561pt;}
.wsd9{word-spacing:90.297246pt;}
.wsd6{word-spacing:90.808122pt;}
.ws2c{word-spacing:90.814371pt;}
.ws85{word-spacing:91.628607pt;}
.wsda{word-spacing:92.596186pt;}
.ws88{word-spacing:93.433915pt;}
.ws56{word-spacing:93.626670pt;}
.ws63{word-spacing:94.431491pt;}
.wsd7{word-spacing:94.448110pt;}
.ws53{word-spacing:94.996608pt;}
.wsa{word-spacing:96.148940pt;}
.wsa6{word-spacing:96.252826pt;}
.ws2d{word-spacing:96.457877pt;}
.wsed{word-spacing:96.620115pt;}
.ws9c{word-spacing:97.075225pt;}
.ws23{word-spacing:97.379266pt;}
.ws9d{word-spacing:99.424951pt;}
.ws6e{word-spacing:100.005384pt;}
.ws14{word-spacing:100.219070pt;}
.ws73{word-spacing:100.492424pt;}
.ws20{word-spacing:100.949647pt;}
.ws21{word-spacing:101.928622pt;}
.wse0{word-spacing:102.269629pt;}
.ws9e{word-spacing:102.896933pt;}
.wsc2{word-spacing:104.346323pt;}
.wsac{word-spacing:104.496141pt;}
.wsb4{word-spacing:104.981042pt;}
.ws10{word-spacing:105.760716pt;}
.ws37{word-spacing:105.805814pt;}
.ws55{word-spacing:107.265551pt;}
.wsf0{word-spacing:110.846390pt;}
.ws7d{word-spacing:116.449905pt;}
.wsae{word-spacing:122.134411pt;}
.ws7a{word-spacing:125.169077pt;}
.ws4a{word-spacing:125.251283pt;}
.ws66{word-spacing:134.774006pt;}
.ws6d{word-spacing:135.451016pt;}
.ws82{word-spacing:135.627576pt;}
.ws18{word-spacing:141.520702pt;}
.ws7b{word-spacing:141.616476pt;}
.ws64{word-spacing:142.269565pt;}
.wsd{word-spacing:143.337385pt;}
.ws3b{word-spacing:146.084141pt;}
.ws33{word-spacing:146.328039pt;}
.ws67{word-spacing:149.716084pt;}
.ws6b{word-spacing:156.988972pt;}
.ws5a{word-spacing:158.719700pt;}
.ws4e{word-spacing:160.623894pt;}
.ws95{word-spacing:162.904674pt;}
.ws69{word-spacing:166.134486pt;}
.ws7c{word-spacing:168.677913pt;}
.ws5d{word-spacing:168.721729pt;}
.ws39{word-spacing:169.017235pt;}
.ws1e{word-spacing:169.295252pt;}
.ws9a{word-spacing:181.049868pt;}
.wsc7{word-spacing:181.259628pt;}
.wsad{word-spacing:184.868463pt;}
.ws6c{word-spacing:185.507824pt;}
.wsc6{word-spacing:185.634629pt;}
.wsbe{word-spacing:188.513063pt;}
.ws5c{word-spacing:190.257348pt;}
.wsc1{word-spacing:190.812002pt;}
.wsc8{word-spacing:194.990398pt;}
.wsba{word-spacing:200.005737pt;}
.ws32{word-spacing:203.742071pt;}
.ws75{word-spacing:208.398666pt;}
.ws34{word-spacing:212.207329pt;}
.ws5b{word-spacing:214.512269pt;}
.ws36{word-spacing:216.871859pt;}
.ws2a{word-spacing:220.615001pt;}
.ws29{word-spacing:226.373680pt;}
.ws38{word-spacing:226.431267pt;}
.ws35{word-spacing:228.274044pt;}
.ws70{word-spacing:232.734716pt;}
.ws3a{word-spacing:232.823401pt;}
.ws74{word-spacing:234.953916pt;}
.wsd8{word-spacing:237.684830pt;}
.ws22{word-spacing:239.042774pt;}
.ws1d{word-spacing:241.432065pt;}
.ws9b{word-spacing:242.632281pt;}
.ws71{word-spacing:242.736745pt;}
.ws49{word-spacing:243.131437pt;}
.ws45{word-spacing:243.304197pt;}
.ws5e{word-spacing:243.898413pt;}
.ws44{word-spacing:249.062876pt;}
.ws48{word-spacing:250.963240pt;}
.wscf{word-spacing:254.320984pt;}
.ws17{word-spacing:259.006964pt;}
.ws41{word-spacing:261.731971pt;}
.ws3f{word-spacing:264.124549pt;}
.wscb{word-spacing:266.166140pt;}
.wsdb{word-spacing:267.884634pt;}
.ws1f{word-spacing:267.950995pt;}
.wsd4{word-spacing:281.256913pt;}
.wsb9{word-spacing:285.387831pt;}
.ws3e{word-spacing:286.118292pt;}
.wsb3{word-spacing:327.804035pt;}
.wsd3{word-spacing:334.304161pt;}
.ws8e{word-spacing:341.486758pt;}
.ws8f{word-spacing:342.427678pt;}
.ws90{word-spacing:349.753413pt;}
.ws7f{word-spacing:363.051183pt;}
.ws80{word-spacing:364.082787pt;}
.ws81{word-spacing:370.898747pt;}
.ws83{word-spacing:392.415075pt;}
.ws7e{word-spacing:395.141459pt;}
.ws72{word-spacing:398.343958pt;}
.wsbb{word-spacing:413.202320pt;}
.wsa7{word-spacing:430.534280pt;}
.ws98{word-spacing:436.289572pt;}
.wsa8{word-spacing:440.500647pt;}
.ws99{word-spacing:445.745139pt;}
.ws26{word-spacing:517.474915pt;}
.ws24{word-spacing:517.878022pt;}
.ws79{word-spacing:542.462420pt;}
.ws68{word-spacing:606.093239pt;}
.ws5{word-spacing:774.680369pt;}
.ws4c{word-spacing:802.375497pt;}
.wsa5{word-spacing:901.432526pt;}
.ws13{word-spacing:1025.806217pt;}
.wsb1{word-spacing:2261.087294pt;}
.wsb2{word-spacing:2268.615869pt;}
._a4{margin-left:-528.265847pt;}
._11f{margin-left:-439.876470pt;}
._120{margin-left:-375.096682pt;}
._2c{margin-left:-370.987984pt;}
._3f{margin-left:-206.020442pt;}
._11d{margin-left:-155.804428pt;}
._29{margin-left:-136.553570pt;}
._a3{margin-left:-71.495251pt;}
._5{margin-left:-8.384000pt;}
._9f{margin-left:-7.168000pt;}
._9{margin-left:-6.144000pt;}
._3{margin-left:-4.128000pt;}
._1{margin-left:-3.173333pt;}
._0{margin-left:-1.392000pt;}
._2{width:0.944000pt;}
._d4{width:1.849177pt;}
._56{width:3.052100pt;}
._126{width:3.974823pt;}
._2b{width:5.756521pt;}
._127{width:6.782145pt;}
._11{width:7.685333pt;}
._10{width:8.704000pt;}
._8{width:10.496000pt;}
._b{width:12.224000pt;}
._124{width:13.162667pt;}
._9e{width:14.592000pt;}
._128{width:16.896000pt;}
._f2{width:18.178460pt;}
._c{width:19.264000pt;}
._d{width:20.234667pt;}
._12{width:21.296000pt;}
._20{width:24.406584pt;}
._1b{width:25.588501pt;}
._d6{width:26.821723pt;}
._11e{width:27.712754pt;}
._14{width:30.079785pt;}
._a1{width:31.360157pt;}
._125{width:34.058624pt;}
._ec{width:35.218688pt;}
._129{width:37.226667pt;}
._f{width:38.288000pt;}
._e{width:39.424000pt;}
._22{width:40.598846pt;}
._7{width:42.122667pt;}
._6{width:43.776000pt;}
._a{width:44.736000pt;}
._40{width:46.782056pt;}
._1e{width:49.995085pt;}
._b4{width:54.714891pt;}
._105{width:57.728932pt;}
._3e{width:58.675298pt;}
._2a{width:61.117242pt;}
._a6{width:62.449686pt;}
._121{width:63.678674pt;}
._123{width:64.956907pt;}
._97{width:65.879290pt;}
._62{width:67.261373pt;}
._1a{width:70.915014pt;}
._a5{width:72.007343pt;}
._dc{width:75.114849pt;}
._28{width:76.160000pt;}
._1f{width:78.006516pt;}
._1c{width:79.188432pt;}
._8e{width:80.803691pt;}
._dd{width:83.054692pt;}
._a7{width:84.165539pt;}
._3b{width:86.400000pt;}
._db{width:87.612736pt;}
._d9{width:89.578943pt;}
._d8{width:90.609678pt;}
._10e{width:91.975028pt;}
._98{width:93.142698pt;}
._63{width:95.882009pt;}
._ef{width:96.951909pt;}
._10a{width:98.224874pt;}
._b3{width:99.301883pt;}
._65{width:101.237581pt;}
._d5{width:102.366144pt;}
._da{width:104.302795pt;}
._3a{width:106.269811pt;}
._32{width:108.032163pt;}
._36{width:110.089888pt;}
._59{width:112.121484pt;}
._f8{width:113.154630pt;}
._b2{width:114.183637pt;}
._51{width:115.346345pt;}
._d7{width:117.074563pt;}
._6e{width:118.066944pt;}
._34{width:118.958744pt;}
._2e{width:120.422301pt;}
._a8{width:122.002680pt;}
._5b{width:123.811603pt;}
._70{width:126.173760pt;}
._122{width:127.443710pt;}
._c5{width:131.067663pt;}
._93{width:133.601358pt;}
._a0{width:135.677327pt;}
._a2{width:138.251922pt;}
._fe{width:140.075743pt;}
._5e{width:141.087641pt;}
._10c{width:142.406548pt;}
._5c{width:143.448699pt;}
._11b{width:145.304285pt;}
._11c{width:146.779689pt;}
._16{width:147.837612pt;}
._18{width:149.137720pt;}
._31{width:150.504841pt;}
._102{width:152.372383pt;}
._38{width:153.912054pt;}
._113{width:155.370014pt;}
._39{width:156.320602pt;}
._ce{width:158.845572pt;}
._35{width:160.908615pt;}
._fb{width:163.806226pt;}
._57{width:165.541086pt;}
._2d{width:166.516148pt;}
._33{width:169.393168pt;}
._c1{width:171.101356pt;}
._3d{width:172.640000pt;}
._3c{width:173.600000pt;}
._6a{width:183.586693pt;}
._c7{width:185.474935pt;}
._68{width:187.214661pt;}
._10f{width:188.220986pt;}
._119{width:189.470954pt;}
._d1{width:190.393842pt;}
._75{width:191.333059pt;}
._cf{width:193.207125pt;}
._d2{width:194.227361pt;}
._73{width:195.173130pt;}
._d0{width:196.267832pt;}
._bc{width:197.521457pt;}
._bd{width:199.199037pt;}
._ab{width:200.978273pt;}
._f6{width:201.952819pt;}
._bf{width:203.279429pt;}
._30{width:204.615859pt;}
._89{width:205.995854pt;}
._54{width:207.093877pt;}
._12a{width:208.092233pt;}
._26{width:209.081100pt;}
._58{width:210.594899pt;}
._24{width:212.804138pt;}
._b8{width:215.029950pt;}
._99{width:217.217380pt;}
._be{width:218.680605pt;}
._6d{width:220.388215pt;}
._5a{width:222.331487pt;}
._b0{width:224.232991pt;}
._f9{width:225.298798pt;}
._b9{width:226.379850pt;}
._af{width:228.515110pt;}
._69{width:229.656127pt;}
._c9{width:230.964817pt;}
._6f{width:233.155999pt;}
._c6{width:234.428206pt;}
._cb{width:236.051671pt;}
._6b{width:236.969650pt;}
._e2{width:238.033729pt;}
._60{width:239.561056pt;}
._74{width:241.071121pt;}
._b7{width:242.383180pt;}
._c8{width:244.277222pt;}
._5f{width:245.319735pt;}
._72{width:246.861704pt;}
._76{width:247.836960pt;}
._c0{width:249.616010pt;}
._71{width:250.579868pt;}
._64{width:252.345323pt;}
._41{width:254.275612pt;}
._f7{width:255.565826pt;}
._4e{width:257.988829pt;}
._7b{width:259.095852pt;}
._115{width:260.099493pt;}
._82{width:261.616797pt;}
._104{width:263.033090pt;}
._7c{width:264.438550pt;}
._1d{width:266.108591pt;}
._94{width:267.087542pt;}
._80{width:268.412038pt;}
._45{width:269.880854pt;}
._7a{width:271.406552pt;}
._21{width:272.431846pt;}
._43{width:273.474385pt;}
._8b{width:276.036440pt;}
._48{width:277.567018pt;}
._77{width:278.489727pt;}
._91{width:279.699050pt;}
._f0{width:282.818442pt;}
._5d{width:283.845299pt;}
._eb{width:285.218475pt;}
._9a{width:286.206357pt;}
._118{width:288.069927pt;}
._6c{width:289.468206pt;}
._c4{width:291.411794pt;}
._87{width:292.368144pt;}
._cc{width:294.712838pt;}
._83{width:296.917501pt;}
._88{width:297.896452pt;}
._84{width:299.566493pt;}
._a9{width:301.098463pt;}
._fa{width:302.150715pt;}
._aa{width:303.046620pt;}
._47{width:304.185769pt;}
._10b{width:306.206008pt;}
._44{width:308.744230pt;}
._49{width:310.141714pt;}
._46{width:311.406105pt;}
._b6{width:312.367487pt;}
._ae{width:314.876380pt;}
._ca{width:320.038877pt;}
._15{width:321.310218pt;}
._61{width:322.471711pt;}
._17{width:327.751665pt;}
._78{width:328.878170pt;}
._b5{width:330.699624pt;}
._10d{width:334.176442pt;}
._79{width:336.076519pt;}
._96{width:338.092057pt;}
._e9{width:340.521647pt;}
._ba{width:343.846593pt;}
._81{width:346.442142pt;}
._85{width:347.896137pt;}
._86{width:350.588391pt;}
._7d{width:352.719102pt;}
._7e{width:354.216359pt;}
._27{width:364.089502pt;}
._9d{width:366.906051pt;}
._25{width:369.053553pt;}
._9b{width:371.953091pt;}
._9c{width:374.003270pt;}
._cd{width:376.130457pt;}
._37{width:377.495748pt;}
._8d{width:379.017730pt;}
._df{width:380.870982pt;}
._8a{width:383.909562pt;}
._42{width:386.570801pt;}
._e0{width:388.062299pt;}
._4f{width:395.333328pt;}
._95{width:396.772998pt;}
._106{width:398.419037pt;}
._8c{width:405.769574pt;}
._b1{width:411.006978pt;}
._e1{width:412.477434pt;}
._92{width:414.567317pt;}
._ff{width:419.623480pt;}
._4a{width:420.729104pt;}
._4b{width:427.006064pt;}
._c2{width:433.519012pt;}
._c3{width:435.467169pt;}
._ee{width:440.229392pt;}
._de{width:443.038911pt;}
._e4{width:445.373219pt;}
._ac{width:450.685183pt;}
._f1{width:459.978947pt;}
._50{width:461.730900pt;}
._e3{width:463.059976pt;}
._52{width:464.379892pt;}
._2f{width:465.703946pt;}
._114{width:472.541469pt;}
._110{width:475.752817pt;}
._e8{width:483.201753pt;}
._111{width:485.842609pt;}
._fc{width:496.848953pt;}
._f3{width:504.999165pt;}
._fd{width:508.093060pt;}
._4c{width:519.432866pt;}
._4d{width:525.709826pt;}
._ea{width:532.118110pt;}
._ed{width:536.906506pt;}
._55{width:545.750030pt;}
._7f{width:548.111088pt;}
._8f{width:560.377075pt;}
._90{width:563.026067pt;}
._e6{width:568.493281pt;}
._e7{width:571.789910pt;}
._66{width:587.615627pt;}
._67{width:590.840488pt;}
._53{width:601.494044pt;}
._ad{width:655.851806pt;}
._23{width:667.310283pt;}
._19{width:673.278963pt;}
._d3{width:677.713197pt;}
._117{width:700.346463pt;}
._f5{width:701.736619pt;}
._107{width:748.394284pt;}
._108{width:758.490438pt;}
._13{width:788.222656pt;}
._100{width:796.695136pt;}
._112{width:803.798753pt;}
._101{width:808.921038pt;}
._f4{width:914.523381pt;}
._bb{width:943.719643pt;}
._109{width:1054.257808pt;}
._11a{width:1081.028923pt;}
._4{width:1103.978667pt;}
._116{width:1115.540898pt;}
._103{width:1706.771215pt;}
._e5{width:1837.428137pt;}
.fs26{font-size:31.256341pt;}
.fs17{font-size:33.273438pt;}
.fsf{font-size:34.017599pt;}
.fs6{font-size:34.197694pt;}
.fs2f{font-size:35.070529pt;}
.fs13{font-size:36.603430pt;}
.fs2a{font-size:36.843026pt;}
.fs31{font-size:36.949148pt;}
.fsc{font-size:36.984251pt;}
.fs38{font-size:42.471304pt;}
.fs20{font-size:42.810549pt;}
.fs5{font-size:42.880000pt;}
.fs1c{font-size:42.998638pt;}
.fs25{font-size:43.217386pt;}
.fs36{font-size:44.542521pt;}
.fs0{font-size:48.000000pt;}
.fs3b{font-size:48.128000pt;}
.fs1{font-size:53.120000pt;}
.fs27{font-size:54.115468pt;}
.fs18{font-size:57.586792pt;}
.fs10{font-size:58.745059pt;}
.fs3c{font-size:58.880000pt;}
.fs28{font-size:59.059599pt;}
.fs7{font-size:59.095845pt;}
.fs2e{font-size:60.612611pt;}
.fs19{font-size:60.953507pt;}
.fs9{font-size:61.844623pt;}
.fs11{font-size:62.057434pt;}
.fs16{font-size:62.443855pt;}
.fs8{font-size:63.108120pt;}
.fs14{font-size:63.200921pt;}
.fse{font-size:63.498581pt;}
.fs15{font-size:63.721519pt;}
.fs2b{font-size:63.764728pt;}
.fs32{font-size:63.859439pt;}
.fs30{font-size:63.886968pt;}
.fsb{font-size:63.961350pt;}
.fs2{font-size:64.000000pt;}
.fs3d{font-size:64.128000pt;}
.fsa{font-size:65.283098pt;}
.fs2c{font-size:67.208573pt;}
.fs33{font-size:67.307697pt;}
.fs39{font-size:73.383331pt;}
.fs34{font-size:73.995220pt;}
.fs1f{font-size:74.095180pt;}
.fs1b{font-size:74.397357pt;}
.fs24{font-size:74.705957pt;}
.fs3{font-size:74.880000pt;}
.fs37{font-size:77.092825pt;}
.fs21{font-size:78.159808pt;}
.fs23{font-size:78.177547pt;}
.fs22{font-size:78.194769pt;}
.fs3a{font-size:78.225007pt;}
.fs1d{font-size:78.596886pt;}
.fs29{font-size:81.171273pt;}
.fs35{font-size:84.235623pt;}
.fs4{font-size:85.120000pt;}
.fs1a{font-size:86.440320pt;}
.fs12{font-size:88.119989pt;}
.fs2d{font-size:95.713674pt;}
.fsd{font-size:95.881797pt;}
.fs1e{font-size:111.593429pt;}
.y0{bottom:0.000000pt;}
.y1ed{bottom:3.275466pt;}
.y1e9{bottom:3.402100pt;}
.y48{bottom:3.579334pt;}
.yaa{bottom:3.697899pt;}
.y124{bottom:3.874639pt;}
.y3a{bottom:4.031840pt;}
.y6{bottom:4.032000pt;}
.y54{bottom:4.063440pt;}
.y58{bottom:4.254096pt;}
.y40{bottom:4.267469pt;}
.y57{bottom:4.282452pt;}
.y1e0{bottom:4.420831pt;}
.y1e7{bottom:4.841431pt;}
.y2a{bottom:5.213137pt;}
.y2d{bottom:5.213139pt;}
.yc7{bottom:5.936570pt;}
.ybf{bottom:5.936598pt;}
.yb8{bottom:5.936631pt;}
.yb5{bottom:5.936632pt;}
.y1f1{bottom:5.936636pt;}
.y1fb{bottom:5.936637pt;}
.yc5{bottom:5.943346pt;}
.y4f{bottom:6.111056pt;}
.y1f6{bottom:6.176811pt;}
.y20e{bottom:6.240000pt;}
.y210{bottom:6.400000pt;}
.y7{bottom:6.592000pt;}
.y36{bottom:6.809286pt;}
.y34{bottom:6.809302pt;}
.y33{bottom:6.809305pt;}
.y35{bottom:6.809311pt;}
.y1e5{bottom:6.930667pt;}
.y8f{bottom:7.640022pt;}
.y96{bottom:7.640023pt;}
.y1bb{bottom:7.712282pt;}
.y1cc{bottom:7.712284pt;}
.y1ba{bottom:7.938262pt;}
.y4c{bottom:7.944289pt;}
.y1ee{bottom:8.062606pt;}
.y55{bottom:8.158695pt;}
.y1ea{bottom:8.422833pt;}
.yc6{bottom:10.761948pt;}
.y1f3{bottom:10.761954pt;}
.yb9{bottom:10.761958pt;}
.yb7{bottom:10.761959pt;}
.ybe{bottom:10.761974pt;}
.yc0{bottom:10.761984pt;}
.y1f2{bottom:10.761985pt;}
.yb4{bottom:10.762005pt;}
.y1f0{bottom:10.762011pt;}
.yb6{bottom:10.762019pt;}
.yc4{bottom:10.800393pt;}
.y1cb{bottom:11.100614pt;}
.y1f5{bottom:11.197403pt;}
.y1f7{bottom:11.197412pt;}
.y123{bottom:11.623862pt;}
.y16c{bottom:11.700148pt;}
.y161{bottom:12.098305pt;}
.y28{bottom:12.882417pt;}
.y245{bottom:13.026667pt;}
.y8b{bottom:14.084078pt;}
.y50{bottom:14.171399pt;}
.y127{bottom:14.885250pt;}
.y1b4{bottom:14.908182pt;}
.y1df{bottom:15.231580pt;}
.y4e{bottom:15.335547pt;}
.y128{bottom:15.369975pt;}
.y3c{bottom:15.555672pt;}
.y1c0{bottom:16.328189pt;}
.yaf{bottom:16.655910pt;}
.y2e{bottom:16.717249pt;}
.y29{bottom:16.717257pt;}
.y2f{bottom:16.717259pt;}
.y2c{bottom:16.717260pt;}
.y102{bottom:16.983918pt;}
.y10d{bottom:16.983927pt;}
.yb0{bottom:17.099095pt;}
.y95{bottom:18.924674pt;}
.y8e{bottom:18.924675pt;}
.y9f{bottom:18.924677pt;}
.ya9{bottom:18.994346pt;}
.y15b{bottom:19.234528pt;}
.y4b{bottom:19.438868pt;}
.y1de{bottom:20.425880pt;}
.y1ca{bottom:20.425882pt;}
.y125{bottom:21.117326pt;}
.y114{bottom:21.117362pt;}
.y110{bottom:21.117370pt;}
.y106{bottom:21.117371pt;}
.y11f{bottom:21.117377pt;}
.y39{bottom:21.302126pt;}
.y3b{bottom:21.302137pt;}
.y126{bottom:21.827098pt;}
.y11e{bottom:21.827141pt;}
.y27{bottom:22.130475pt;}
.y9{bottom:23.680000pt;}
.yf9{bottom:23.737003pt;}
.ya8{bottom:23.798918pt;}
.yae{bottom:23.798980pt;}
.yab{bottom:23.798985pt;}
.yac{bottom:23.798988pt;}
.y8a{bottom:24.436330pt;}
.yad{bottom:24.557599pt;}
.y47{bottom:24.967970pt;}
.y46{bottom:25.084385pt;}
.y2b{bottom:25.965320pt;}
.y1b3{bottom:27.073470pt;}
.y15d{bottom:27.167327pt;}
.y4d{bottom:27.731921pt;}
.y98{bottom:28.022564pt;}
.y94{bottom:28.022574pt;}
.y9e{bottom:28.022575pt;}
.y93{bottom:28.169298pt;}
.y16b{bottom:28.729888pt;}
.y4a{bottom:28.779654pt;}
.y9d{bottom:28.810261pt;}
.y49{bottom:28.896069pt;}
.y1bf{bottom:28.945968pt;}
.yf6{bottom:29.817133pt;}
.y1b9{bottom:30.527016pt;}
.y1ce{bottom:30.527018pt;}
.y1c9{bottom:30.527021pt;}
.y1dd{bottom:30.590904pt;}
.y16a{bottom:30.689085pt;}
.y163{bottom:31.088247pt;}
.y15a{bottom:31.088251pt;}
.y169{bottom:31.088252pt;}
.y1c8{bottom:31.204424pt;}
.y1c7{bottom:33.075592pt;}
.yf8{bottom:34.260527pt;}
.y89{bottom:34.496338pt;}
.y88{bottom:34.641849pt;}
.y1c6{bottom:36.529140pt;}
.y159{bottom:37.520377pt;}
.y1b2{bottom:37.722919pt;}
.y1b1{bottom:38.368379pt;}
.y244{bottom:38.586667pt;}
.yf5{bottom:39.592214pt;}
.yfa{bottom:41.159506pt;}
.y8{bottom:42.400000pt;}
.yf7{bottom:42.748982pt;}
.yfc{bottom:43.100055pt;}
.yfb{bottom:44.690495pt;}
.y168{bottom:45.268752pt;}
.y1dc{bottom:45.918287pt;}
.y160{bottom:46.371506pt;}
.y10c{bottom:47.883540pt;}
.y90{bottom:51.146773pt;}
.y9c{bottom:52.022286pt;}
.y8d{bottom:55.432891pt;}
.y92{bottom:55.432898pt;}
.y68{bottom:55.432936pt;}
.y76{bottom:55.432943pt;}
.y11d{bottom:58.926910pt;}
.y122{bottom:59.378343pt;}
.y1b8{bottom:60.117107pt;}
.y1ad{bottom:60.117109pt;}
.y1b7{bottom:60.311407pt;}
.y1c5{bottom:60.311408pt;}
.y186{bottom:60.311413pt;}
.y5{bottom:60.480000pt;}
.y101{bottom:61.025578pt;}
.y10b{bottom:61.025587pt;}
.y1db{bottom:61.278941pt;}
.ya0{bottom:61.527886pt;}
.y87{bottom:61.906661pt;}
.y62{bottom:61.906706pt;}
.y9b{bottom:62.606643pt;}
.y1c4{bottom:63.473498pt;}
.ye1{bottom:64.614879pt;}
.y113{bottom:65.125731pt;}
.y10f{bottom:65.125739pt;}
.y105{bottom:65.125740pt;}
.y11c{bottom:65.125746pt;}
.yef{bottom:65.200323pt;}
.y242{bottom:65.346667pt;}
.y11b{bottom:65.836842pt;}
.y8c{bottom:66.718375pt;}
.y97{bottom:66.718383pt;}
.y9a{bottom:66.718385pt;}
.y75{bottom:66.718436pt;}
.y67{bottom:66.718438pt;}
.y84{bottom:66.718443pt;}
.y1b0{bottom:67.281065pt;}
.y17f{bottom:67.281066pt;}
.yd9{bottom:68.684052pt;}
.y1be{bottom:68.701073pt;}
.y61{bottom:72.258949pt;}
.y1a4{bottom:72.830706pt;}
.y167{bottom:73.140902pt;}
.y15f{bottom:73.538806pt;}
.yf2{bottom:74.343665pt;}
.yf4{bottom:74.788294pt;}
.yee{bottom:75.512624pt;}
.y91{bottom:75.816292pt;}
.y7a{bottom:75.816330pt;}
.y74{bottom:75.816339pt;}
.y83{bottom:75.816340pt;}
.y73{bottom:75.961852pt;}
.y99{bottom:76.458549pt;}
.y1da{bottom:76.606324pt;}
.yd8{bottom:79.231688pt;}
.y1bd{bottom:79.446349pt;}
.y1af{bottom:79.446350pt;}
.y17e{bottom:79.446354pt;}
.y23c{bottom:79.933333pt;}
.y158{bottom:80.675775pt;}
.y137{bottom:80.675787pt;}
.y1bc{bottom:81.317520pt;}
.y86{bottom:82.290057pt;}
.y60{bottom:82.290103pt;}
.y1b6{bottom:82.898569pt;}
.y1cd{bottom:82.898572pt;}
.y1a3{bottom:82.898575pt;}
.y1c3{bottom:83.577304pt;}
.y1a2{bottom:83.577308pt;}
.ye0{bottom:84.563375pt;}
.y1c2{bottom:85.448474pt;}
.ydf{bottom:86.130668pt;}
.yd7{bottom:87.696996pt;}
.ye7{bottom:88.071217pt;}
.yed{bottom:88.586253pt;}
.y15c{bottom:88.608575pt;}
.y13a{bottom:88.608586pt;}
.y1c1{bottom:88.933965pt;}
.ye6{bottom:89.638509pt;}
.y1ae{bottom:90.095801pt;}
.y17d{bottom:90.095804pt;}
.y166{bottom:90.169884pt;}
.y17c{bottom:90.739933pt;}
.y10a{bottom:91.925200pt;}
.y1d9{bottom:91.966979pt;}
.y165{bottom:92.130344pt;}
.y157{bottom:92.528235pt;}
.y162{bottom:92.528236pt;}
.y148{bottom:92.528243pt;}
.y136{bottom:92.528247pt;}
.y156{bottom:92.528248pt;}
.yf3{bottom:94.151346pt;}
.yd2{bottom:95.741786pt;}
.y1ec{bottom:97.013333pt;}
.y6a{bottom:97.102874pt;}
.y135{bottom:98.960373pt;}
.y23d{bottom:100.453333pt;}
.y11a{bottom:102.968570pt;}
.y53{bottom:103.413333pt;}
.y121{bottom:103.420003pt;}
.y82{bottom:103.576677pt;}
.y66{bottom:103.576678pt;}
.y72{bottom:103.576680pt;}
.y1eb{bottom:104.992000pt;}
.y100{bottom:105.033947pt;}
.y109{bottom:105.033956pt;}
.y164{bottom:106.708748pt;}
.y1d8{bottom:107.294362pt;}
.y56{bottom:107.413333pt;}
.y15e{bottom:107.811490pt;}
.y146{bottom:107.811502pt;}
.y112{bottom:109.167391pt;}
.y104{bottom:109.167400pt;}
.y119{bottom:109.167406pt;}
.y118{bottom:109.877170pt;}
.y5f{bottom:110.050434pt;}
.y81{bottom:110.924719pt;}
.y52{bottom:111.392000pt;}
.yde{bottom:112.324221pt;}
.y1a1{bottom:112.682967pt;}
.y1a0{bottom:112.909204pt;}
.y185{bottom:112.909210pt;}
.yec{bottom:112.931848pt;}
.y71{bottom:114.862172pt;}
.y65{bottom:114.862174pt;}
.y80{bottom:114.862175pt;}
.y19f{bottom:116.071294pt;}
.yd6{bottom:116.413648pt;}
.y17b{bottom:119.846924pt;}
.y5e{bottom:120.407502pt;}
.y23e{bottom:120.986667pt;}
.y18e{bottom:121.266929pt;}
.yf1{bottom:122.075190pt;}
.yd1{bottom:122.499564pt;}
.y1d7{bottom:122.655016pt;}
.yeb{bottom:123.222930pt;}
.ydd{bottom:123.435117pt;}
.y79{bottom:123.955253pt;}
.y70{bottom:123.955262pt;}
.y6f{bottom:124.135660pt;}
.y7f{bottom:124.773018pt;}
.y1e8{bottom:125.013333pt;}
.yfd{bottom:125.320000pt;}
.y1b5{bottom:125.397878pt;}
.y184{bottom:125.397879pt;}
.y1ac{bottom:125.397893pt;}
.y19e{bottom:125.397895pt;}
.y1e4{bottom:126.346667pt;}
.ye5{bottom:126.936207pt;}
.y1e6{bottom:129.013333pt;}
.y45{bottom:130.146667pt;}
.y5d{bottom:130.581753pt;}
.y18d{bottom:132.045474pt;}
.yd0{bottom:132.269823pt;}
.y145{bottom:132.924865pt;}
.y1e3{bottom:132.992000pt;}
.ydc{bottom:133.861228pt;}
.y18c{bottom:133.909994pt;}
.y108{bottom:134.097225pt;}
.y1d6{bottom:134.655278pt;}
.yd5{bottom:135.423698pt;}
.y19d{bottom:135.493711pt;}
.y19c{bottom:136.172436pt;}
.yea{bottom:136.291737pt;}
.ye4{bottom:137.371963pt;}
.y23a{bottom:137.946667pt;}
.y19b{bottom:138.048934pt;}
.y155{bottom:138.230236pt;}
.y144{bottom:140.036584pt;}
.y23f{bottom:141.533333pt;}
.y17a{bottom:142.666985pt;}
.y143{bottom:143.068228pt;}
.y179{bottom:143.345710pt;}
.y117{bottom:145.136592pt;}
.y178{bottom:145.208900pt;}
.y120{bottom:145.589365pt;}
.y154{bottom:145.821970pt;}
.yff{bottom:147.200636pt;}
.y107{bottom:147.200640pt;}
.y69{bottom:148.224367pt;}
.y1d5{bottom:148.788890pt;}
.y153{bottom:149.560996pt;}
.y7e{bottom:150.725831pt;}
.y103{bottom:151.342080pt;}
.y116{bottom:151.342086pt;}
.y10e{bottom:151.342090pt;}
.y111{bottom:151.342091pt;}
.y51{bottom:151.386667pt;}
.y147{bottom:151.910512pt;}
.y134{bottom:151.910516pt;}
.y152{bottom:151.910518pt;}
.y115{bottom:152.047856pt;}
.y64{bottom:152.541793pt;}
.y6e{bottom:152.541800pt;}
.y7d{bottom:158.073908pt;}
.y85{bottom:158.603074pt;}
.y239{bottom:159.066667pt;}
.ydb{bottom:159.072933pt;}
.ye9{bottom:160.191738pt;}
.y1e2{bottom:160.346667pt;}
.y151{bottom:160.399111pt;}
.y142{bottom:161.498076pt;}
.y150{bottom:161.965448pt;}
.y240{bottom:162.080000pt;}
.yd4{bottom:163.162360pt;}
.y19a{bottom:163.574617pt;}
.y1ab{bottom:163.760932pt;}
.y183{bottom:163.760934pt;}
.y63{bottom:163.822484pt;}
.y7c{bottom:163.822488pt;}
.y6d{bottom:163.822492pt;}
.y78{bottom:163.822493pt;}
.y1d4{bottom:164.146883pt;}
.y199{bottom:166.954964pt;}
.yf0{bottom:168.823902pt;}
.ycf{bottom:169.248276pt;}
.y5c{bottom:169.330525pt;}
.ye8{bottom:169.450819pt;}
.yda{bottom:170.183829pt;}
.y177{bottom:170.734582pt;}
.y7b{bottom:171.928219pt;}
.y18b{bottom:172.158583pt;}
.y77{bottom:172.914364pt;}
.y6c{bottom:172.914372pt;}
.y6b{bottom:173.070709pt;}
.yca{bottom:173.466667pt;}
.ye3{bottom:173.684919pt;}
.y1aa{bottom:176.284220pt;}
.y198{bottom:176.284221pt;}
.y171{bottom:178.013315pt;}
.yce{bottom:179.018535pt;}
.y1d3{bottom:179.518184pt;}
.y238{bottom:180.186667pt;}
.y44{bottom:180.506667pt;}
.yd3{bottom:182.172410pt;}
.ye2{bottom:182.548560pt;}
.y241{bottom:182.626667pt;}
.y176{bottom:182.938462pt;}
.y18a{bottom:184.801648pt;}
.y133{bottom:185.182770pt;}
.y182{bottom:186.385357pt;}
.y1a6{bottom:186.385359pt;}
.y197{bottom:186.385361pt;}
.y196{bottom:187.064093pt;}
.y14f{bottom:188.088077pt;}
.y141{bottom:188.176520pt;}
.y195{bottom:188.940587pt;}
.y139{bottom:193.140836pt;}
.y175{bottom:193.545327pt;}
.yc9{bottom:194.586667pt;}
.y1d2{bottom:194.836251pt;}
.y140{bottom:197.069336pt;}
.y132{bottom:197.069338pt;}
.y14e{bottom:200.770442pt;}
.y237{bottom:201.306667pt;}
.y43{bottom:201.626667pt;}
.y131{bottom:203.461039pt;}
.y1d1{bottom:210.194244pt;}
.y13f{bottom:212.341222pt;}
.y194{bottom:212.496611pt;}
.y1a9{bottom:212.682926pt;}
.y181{bottom:212.682928pt;}
.y243{bottom:213.760000pt;}
.yc8{bottom:215.706667pt;}
.y193{bottom:215.876958pt;}
.y174{bottom:219.656576pt;}
.y189{bottom:221.080577pt;}
.y236{bottom:222.586667pt;}
.y42{bottom:222.746667pt;}
.y1a8{bottom:225.206214pt;}
.y192{bottom:225.206215pt;}
.y1d0{bottom:225.525619pt;}
.y188{bottom:231.847145pt;}
.y173{bottom:231.847147pt;}
.yc3{bottom:233.546667pt;}
.y187{bottom:233.723640pt;}
.ycc{bottom:234.120000pt;}
.y14d{bottom:234.484838pt;}
.y13e{bottom:234.889061pt;}
.y180{bottom:235.307351pt;}
.y1a5{bottom:235.307353pt;}
.y191{bottom:235.307355pt;}
.y1a7{bottom:235.946159pt;}
.y190{bottom:235.946161pt;}
.y18f{bottom:237.849271pt;}
.y1cf{bottom:240.883612pt;}
.y130{bottom:242.026036pt;}
.y172{bottom:242.467321pt;}
.y235{bottom:243.706667pt;}
.y41{bottom:243.866667pt;}
.yc2{bottom:244.186667pt;}
.y13d{bottom:245.032419pt;}
.y138{bottom:249.984102pt;}
.y14c{bottom:251.525191pt;}
.y14b{bottom:253.508386pt;}
.y12f{bottom:253.912604pt;}
.y14a{bottom:253.912607pt;}
.y13c{bottom:253.912608pt;}
.y12e{bottom:260.316938pt;}
.y3f{bottom:261.546667pt;}
.ycb{bottom:264.346667pt;}
.y234{bottom:264.826667pt;}
.y3e{bottom:265.466667pt;}
.y149{bottom:268.060263pt;}
.y13b{bottom:269.197120pt;}
.ycd{bottom:280.413333pt;}
.y38{bottom:283.279982pt;}
.y233{bottom:285.946667pt;}
.y1e1{bottom:303.266667pt;}
.y3d{bottom:304.546667pt;}
.y232{bottom:307.266667pt;}
.y21b{bottom:309.506667pt;}
.y231{bottom:328.386667pt;}
.y37{bottom:329.666667pt;}
.y21a{bottom:331.266667pt;}
.y32{bottom:347.279964pt;}
.y230{bottom:349.506667pt;}
.y219{bottom:353.186667pt;}
.y31{bottom:353.986667pt;}
.y22f{bottom:370.626667pt;}
.y26{bottom:371.613297pt;}
.y218{bottom:374.946667pt;}
.y22e{bottom:391.906667pt;}
.y30{bottom:392.866667pt;}
.y217{bottom:396.706667pt;}
.y22d{bottom:413.026667pt;}
.y25{bottom:417.826667pt;}
.y216{bottom:418.626667pt;}
.y22c{bottom:434.146667pt;}
.y24{bottom:438.946667pt;}
.y215{bottom:440.386667pt;}
.y170{bottom:443.106667pt;}
.y22b{bottom:455.266667pt;}
.y23{bottom:460.226667pt;}
.y214{bottom:462.306667pt;}
.y16f{bottom:464.226667pt;}
.y22a{bottom:476.386667pt;}
.y22{bottom:481.346667pt;}
.y213{bottom:484.066667pt;}
.y16e{bottom:485.506667pt;}
.y229{bottom:497.666667pt;}
.y21{bottom:502.466667pt;}
.y12d{bottom:503.146630pt;}
.y212{bottom:505.826667pt;}
.y228{bottom:518.786667pt;}
.yc1{bottom:519.586667pt;}
.y20{bottom:523.586667pt;}
.y211{bottom:527.746667pt;}
.ybd{bottom:537.346630pt;}
.y227{bottom:539.933333pt;}
.y1f{bottom:544.893333pt;}
.ybc{bottom:548.093333pt;}
.y20f{bottom:549.533333pt;}
.y226{bottom:561.053333pt;}
.y1e{bottom:566.013333pt;}
.y20d{bottom:571.453333pt;}
.ybb{bottom:571.613333pt;}
.y225{bottom:582.333333pt;}
.y1d{bottom:587.133333pt;}
.yba{bottom:592.733333pt;}
.y20c{bottom:599.453333pt;}
.y224{bottom:603.453333pt;}
.y1c{bottom:608.253333pt;}
.yb3{bottom:610.346594pt;}
.y20b{bottom:620.733333pt;}
.yb2{bottom:621.053333pt;}
.y223{bottom:624.573333pt;}
.y1b{bottom:629.533333pt;}
.ya7{bottom:641.213261pt;}
.y20a{bottom:641.853333pt;}
.y222{bottom:645.693333pt;}
.y1a{bottom:650.653333pt;}
.y209{bottom:662.973333pt;}
.y16d{bottom:663.133333pt;}
.yb1{bottom:665.213333pt;}
.y221{bottom:666.973333pt;}
.y19{bottom:671.773333pt;}
.y208{bottom:684.093333pt;}
.y220{bottom:688.093333pt;}
.ya6{bottom:692.573333pt;}
.y18{bottom:692.893333pt;}
.y207{bottom:705.373333pt;}
.y21f{bottom:709.213333pt;}
.ya5{bottom:713.693333pt;}
.y17{bottom:714.013333pt;}
.y206{bottom:726.493333pt;}
.ya4{bottom:734.813333pt;}
.y16{bottom:735.293333pt;}
.y21e{bottom:746.333333pt;}
.y205{bottom:747.613333pt;}
.ya3{bottom:756.093333pt;}
.y15{bottom:756.413333pt;}
.y21d{bottom:767.613333pt;}
.y204{bottom:768.733333pt;}
.ya2{bottom:777.253333pt;}
.y14{bottom:777.573333pt;}
.y21c{bottom:785.253333pt;}
.y23b{bottom:786.560000pt;}
.y203{bottom:789.893333pt;}
.y12c{bottom:794.373333pt;}
.y5b{bottom:794.813261pt;}
.y13{bottom:798.693333pt;}
.y202{bottom:811.173333pt;}
.y12b{bottom:815.653333pt;}
.y12{bottom:819.973333pt;}
.y201{bottom:832.293333pt;}
.y12a{bottom:836.773333pt;}
.y11{bottom:841.093333pt;}
.y200{bottom:853.413333pt;}
.yfe{bottom:854.346594pt;}
.y249{bottom:862.213333pt;}
.y10{bottom:868.293333pt;}
.y1ff{bottom:874.533333pt;}
.y248{bottom:883.333333pt;}
.yf{bottom:889.413333pt;}
.ya1{bottom:894.853333pt;}
.y1fe{bottom:895.813333pt;}
.ye{bottom:904.613333pt;}
.y1fd{bottom:916.933333pt;}
.yd{bottom:925.733333pt;}
.y1fa{bottom:934.479928pt;}
.y129{bottom:935.653333pt;}
.y1fc{bottom:945.253333pt;}
.y247{bottom:946.853333pt;}
.yc{bottom:948.933333pt;}
.y1f9{bottom:965.213261pt;}
.y246{bottom:967.973333pt;}
.y1f8{bottom:975.973333pt;}
.yb{bottom:977.253333pt;}
.y5a{bottom:989.253333pt;}
.y1ef{bottom:996.079928pt;}
.ya{bottom:1005.413333pt;}
.y1f4{bottom:1006.853333pt;}
.y59{bottom:1010.373333pt;}
.y4{bottom:1028.640000pt;}
.y3{bottom:1045.920000pt;}
.y2{bottom:1059.840000pt;}
.y1{bottom:1073.600000pt;}
.h2a{height:15.999830pt;}
.h13{height:17.133228pt;}
.h1c{height:18.866690pt;}
.h28{height:18.932930pt;}
.h75{height:21.120000pt;}
.h78{height:21.152000pt;}
.h77{height:21.280000pt;}
.h5{height:21.472000pt;}
.h4b{height:21.824496pt;}
.h69{height:22.934045pt;}
.h2d{height:23.232918pt;}
.h1f{height:23.752523pt;}
.h4d{height:23.823803pt;}
.he{height:23.878273pt;}
.h25{height:24.000167pt;}
.h6e{height:25.132648pt;}
.h2f{height:25.361248pt;}
.h26{height:25.558059pt;}
.h53{height:25.725355pt;}
.h62{height:25.799454pt;}
.h20{height:25.928453pt;}
.h5c{height:26.731004pt;}
.h47{height:28.000416pt;}
.h41{height:28.000452pt;}
.h3b{height:28.000488pt;}
.h55{height:28.082014pt;}
.h64{height:28.162900pt;}
.h19{height:28.189656pt;}
.h6b{height:29.133220pt;}
.h72{height:29.133292pt;}
.h6f{height:29.655256pt;}
.hb{height:29.940625pt;}
.h43{height:30.867867pt;}
.h6c{height:31.101468pt;}
.h3d{height:32.630501pt;}
.h36{height:32.773864pt;}
.h45{height:32.940595pt;}
.h7c{height:33.023438pt;}
.h7b{height:33.111500pt;}
.h2{height:33.867188pt;}
.h74{height:33.950623pt;}
.h3{height:37.479688pt;}
.h4c{height:37.785703pt;}
.h17{height:40.000083pt;}
.hd{height:40.000229pt;}
.h2e{height:40.209528pt;}
.h4e{height:41.247190pt;}
.hf{height:41.263212pt;}
.h5b{height:42.322282pt;}
.h15{height:43.182525pt;}
.h30{height:43.893058pt;}
.h1e{height:43.998787pt;}
.h54{height:44.523223pt;}
.h63{height:44.589354pt;}
.h18{height:44.660513pt;}
.h7{height:44.687500pt;}
.h21{height:44.775897pt;}
.h10{height:45.043269pt;}
.h34{height:45.133027pt;}
.h9{height:45.156250pt;}
.h5d{height:46.199358pt;}
.h79{height:46.593750pt;}
.h4{height:48.000000pt;}
.h76{height:48.218750pt;}
.h7e{height:48.315187pt;}
.h56{height:48.601924pt;}
.h65{height:48.674113pt;}
.hc{height:48.781250pt;}
.h50{height:50.125509pt;}
.ha{height:51.374688pt;}
.h3c{height:51.736381pt;}
.h35{height:51.947373pt;}
.h44{height:52.162851pt;}
.h6{height:52.284375pt;}
.h7d{height:52.307917pt;}
.h32{height:53.340891pt;}
.h73{height:53.829463pt;}
.h23{height:54.413758pt;}
.h4f{height:54.705107pt;}
.h12{height:54.738681pt;}
.h5f{height:56.143615pt;}
.h31{height:56.459377pt;}
.h48{height:56.475867pt;}
.h37{height:56.706189pt;}
.h46{height:56.941406pt;}
.h14{height:57.284790pt;}
.h22{height:57.481911pt;}
.h2b{height:57.839840pt;}
.h11{height:58.455128pt;}
.h27{height:58.541087pt;}
.h1d{height:58.816800pt;}
.h29{height:59.023301pt;}
.h58{height:59.063325pt;}
.h67{height:59.151052pt;}
.h5e{height:59.176552pt;}
.h1a{height:59.245449pt;}
.h8{height:60.057813pt;}
.h16{height:60.469745pt;}
.h57{height:62.253253pt;}
.h66{height:62.345069pt;}
.h70{height:67.972743pt;}
.h60{height:68.050809pt;}
.h68{height:68.539518pt;}
.h3f{height:68.632108pt;}
.h39{height:68.912005pt;}
.h6d{height:71.408735pt;}
.h3e{height:72.397049pt;}
.h42{height:72.413480pt;}
.h40{height:72.429432pt;}
.h71{height:72.457441pt;}
.h38{height:72.801901pt;}
.h51{height:75.186477pt;}
.h6a{height:78.024891pt;}
.h33{height:80.067035pt;}
.h24{height:81.622860pt;}
.h59{height:88.656660pt;}
.h1b{height:88.812387pt;}
.h3a{height:103.365593pt;}
.h52{height:170.864082pt;}
.h2c{height:187.995381pt;}
.h4a{height:198.404735pt;}
.h7a{height:238.720000pt;}
.h49{height:248.986667pt;}
.h61{height:258.863377pt;}
.h5a{height:284.936403pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:21.133362pt;}
.wa{width:23.999494pt;}
.wd{width:26.866718pt;}
.w1c{width:29.133422pt;}
.w8{width:44.000285pt;}
.w26{width:51.072000pt;}
.w23{width:51.360000pt;}
.w7{width:54.868246pt;}
.w1b{width:62.934098pt;}
.wc{width:67.997508pt;}
.w11{width:85.068164pt;}
.w15{width:92.000162pt;}
.w12{width:94.861920pt;}
.w13{width:95.999988pt;}
.w14{width:103.997600pt;}
.w1e{width:114.865106pt;}
.w4{width:118.752000pt;}
.w1d{width:125.136520pt;}
.w27{width:125.280000pt;}
.w24{width:130.432000pt;}
.w25{width:130.560000pt;}
.w28{width:130.592000pt;}
.w1f{width:156.001000pt;}
.w20{width:165.130038pt;}
.w21{width:208.007841pt;}
.w9{width:210.934308pt;}
.w22{width:237.127020pt;}
.w3{width:255.226667pt;}
.w5{width:267.706667pt;}
.w10{width:282.865104pt;}
.wb{width:352.464538pt;}
.w18{width:492.008356pt;}
.w6{width:544.135021pt;}
.wf{width:619.193288pt;}
.w1a{width:620.662882pt;}
.w29{width:624.000000pt;}
.w17{width:671.326708pt;}
.w16{width:689.893333pt;}
.w19{width:708.546676pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:1.573751pt;}
.x27{left:2.672032pt;}
.x26{left:4.281666pt;}
.x73{left:7.200000pt;}
.x12{left:8.908756pt;}
.x1e{left:10.514774pt;}
.x21{left:11.936527pt;}
.x7e{left:13.459928pt;}
.x36{left:14.523473pt;}
.xa6{left:15.571103pt;}
.x4f{left:16.862058pt;}
.x1a{left:17.817504pt;}
.x2d{left:19.837634pt;}
.x6b{left:21.465488pt;}
.x8e{left:22.576148pt;}
.x72{left:23.822818pt;}
.x4a{left:26.246278pt;}
.x5f{left:27.911084pt;}
.xae{left:29.097031pt;}
.xdb{left:30.466484pt;}
.x22{left:31.968462pt;}
.x68{left:32.900780pt;}
.xc6{left:33.864258pt;}
.x88{left:35.057034pt;}
.x4b{left:36.599338pt;}
.x61{left:37.658302pt;}
.x13{left:38.698131pt;}
.x5e{left:39.777484pt;}
.xa5{left:41.493061pt;}
.x44{left:43.834339pt;}
.x32{left:45.398853pt;}
.x7{left:47.360000pt;}
.xb3{left:48.850910pt;}
.x43{left:49.767537pt;}
.x5c{left:51.402301pt;}
.x98{left:52.651406pt;}
.xca{left:54.479883pt;}
.x53{left:56.125073pt;}
.x54{left:57.638415pt;}
.x4d{left:59.121717pt;}
.x97{left:60.987057pt;}
.x81{left:61.947797pt;}
.x49{left:63.390114pt;}
.x8c{left:64.975996pt;}
.x5a{left:66.115134pt;}
.xb5{left:68.083562pt;}
.x55{left:69.717611pt;}
.x56{left:70.867952pt;}
.x69{left:72.373882pt;}
.x31{left:73.718870pt;}
.x51{left:76.679729pt;}
.x3f{left:78.042867pt;}
.xd8{left:79.499749pt;}
.x4c{left:82.674268pt;}
.x41{left:83.703191pt;}
.x4{left:85.151988pt;}
.xb0{left:86.613324pt;}
.x78{left:88.225077pt;}
.x3c{left:89.546658pt;}
.x8a{left:92.079264pt;}
.xc2{left:92.974435pt;}
.x30{left:94.060435pt;}
.xbe{left:95.354743pt;}
.x79{left:96.271182pt;}
.x33{left:97.470322pt;}
.x2c{left:101.176917pt;}
.xb1{left:102.494350pt;}
.x9{left:103.551988pt;}
.x2e{left:104.617458pt;}
.xe3{left:106.111988pt;}
.x99{left:107.201757pt;}
.x1{left:108.191988pt;}
.x19{left:109.322033pt;}
.x1b{left:110.839657pt;}
.xd{left:113.471988pt;}
.x48{left:116.034120pt;}
.x15{left:117.191341pt;}
.x17{left:118.713613pt;}
.x2a{left:121.151988pt;}
.x3e{left:122.300283pt;}
.x95{left:124.418656pt;}
.xc7{left:126.003582pt;}
.x5{left:127.674667pt;}
.x59{left:128.565196pt;}
.xb4{left:130.216337pt;}
.xcc{left:131.341334pt;}
.x10{left:132.351988pt;}
.x2{left:133.466655pt;}
.x40{left:134.861396pt;}
.x25{left:136.176822pt;}
.xa3{left:137.733667pt;}
.x45{left:138.854415pt;}
.xe6{left:140.253333pt;}
.xac{left:142.493119pt;}
.xa4{left:143.439957pt;}
.xd7{left:144.494217pt;}
.x96{left:146.339647pt;}
.x82{left:149.803520pt;}
.xa1{left:150.913681pt;}
.x1d{left:151.946649pt;}
.xd6{left:153.789401pt;}
.x11{left:154.876172pt;}
.xa9{left:155.799378pt;}
.x50{left:157.480157pt;}
.x14{left:158.920061pt;}
.x47{left:160.559408pt;}
.x18{left:163.056907pt;}
.xc{left:164.186655pt;}
.xc0{left:165.238826pt;}
.x90{left:167.297252pt;}
.x3d{left:168.219996pt;}
.x2b{left:170.013315pt;}
.x42{left:172.225532pt;}
.x85{left:173.507969pt;}
.x29{left:175.546655pt;}
.xa0{left:176.440485pt;}
.xb9{left:177.552616pt;}
.x80{left:182.109370pt;}
.x4e{left:185.844354pt;}
.x7b{left:189.028439pt;}
.xcb{left:193.629695pt;}
.xb6{left:200.451476pt;}
.xb7{left:201.834452pt;}
.x6f{left:205.013315pt;}
.x1f{left:206.746655pt;}
.xc8{left:212.964733pt;}
.x66{left:218.013315pt;}
.xbd{left:220.717367pt;}
.xd1{left:224.414169pt;}
.xd3{left:225.637571pt;}
.x83{left:230.353111pt;}
.x84{left:232.010146pt;}
.xad{left:237.227618pt;}
.x7d{left:238.941863pt;}
.x7f{left:240.598898pt;}
.xa2{left:247.769098pt;}
.xce{left:248.789090pt;}
.xcf{left:249.879513pt;}
.x9e{left:255.242822pt;}
.x2f{left:256.237519pt;}
.xa{left:257.826655pt;}
.x9f{left:261.075357pt;}
.xf{left:262.946655pt;}
.xc9{left:263.842231pt;}
.xb2{left:267.352857pt;}
.xa8{left:269.230811pt;}
.x20{left:270.346649pt;}
.xc5{left:271.594865pt;}
.xc3{left:273.523050pt;}
.x67{left:275.070282pt;}
.xe5{left:277.666667pt;}
.x7c{left:279.204010pt;}
.xaa{left:286.539047pt;}
.xba{left:288.855447pt;}
.x24{left:291.413315pt;}
.x7a{left:296.343566pt;}
.xd0{left:300.916580pt;}
.xde{left:302.013315pt;}
.x70{left:309.026655pt;}
.xe4{left:311.426655pt;}
.x23{left:314.306655pt;}
.x35{left:316.879964pt;}
.xdf{left:322.306655pt;}
.x6a{left:326.346630pt;}
.xbf{left:330.224990pt;}
.x9c{left:331.709421pt;}
.xc1{left:333.602640pt;}
.x6{left:340.706667pt;}
.x9a{left:342.262058pt;}
.xbb{left:347.591958pt;}
.x77{left:348.989201pt;}
.x9b{left:351.084753pt;}
.x52{left:353.676315pt;}
.x3{left:357.826655pt;}
.xd2{left:364.759457pt;}
.xe{left:366.306655pt;}
.xab{left:371.022425pt;}
.x63{left:375.681733pt;}
.x37{left:384.866655pt;}
.x92{left:389.339891pt;}
.x46{left:393.331122pt;}
.xb{left:396.866655pt;}
.xe1{left:400.066667pt;}
.x91{left:404.354396pt;}
.x93{left:412.272745pt;}
.x86{left:414.170113pt;}
.x6c{left:421.213322pt;}
.x76{left:425.427829pt;}
.xd4{left:427.179467pt;}
.x87{left:429.589389pt;}
.xd5{left:430.557117pt;}
.xbc{left:433.748592pt;}
.x74{left:437.786018pt;}
.x75{left:441.251877pt;}
.x38{left:451.946667pt;}
.x8{left:460.093333pt;}
.x5d{left:465.768739pt;}
.x58{left:473.153946pt;}
.x57{left:474.280502pt;}
.x39{left:478.813322pt;}
.x8d{left:481.261041pt;}
.xa7{left:486.334913pt;}
.xc4{left:495.583498pt;}
.x8b{left:498.855966pt;}
.x62{left:500.404108pt;}
.x28{left:502.333322pt;}
.x89{left:507.444718pt;}
.x6d{left:508.879964pt;}
.x60{left:511.694713pt;}
.x8f{left:512.706752pt;}
.x3a{left:519.279964pt;}
.x34{left:522.493322pt;}
.x71{left:537.013297pt;}
.x3b{left:540.413322pt;}
.xb8{left:559.426375pt;}
.xda{left:574.146630pt;}
.xe2{left:577.693333pt;}
.x5b{left:581.779075pt;}
.xcd{left:599.173586pt;}
.x6e{left:604.933322pt;}
.x1c{left:629.413322pt;}
.xe0{left:652.293322pt;}
.x9d{left:660.933322pt;}
.x94{left:680.768000pt;}
.xdd{left:687.333322pt;}
.x65{left:690.053322pt;}
.xdc{left:699.333322pt;}
.xd9{left:707.333322pt;}
.x64{left:708.773322pt;}
.xaf{left:794.399988pt;}
}




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