
    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_554e05140286f5d4c6852fcc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ba5feb13168d54d269255533.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;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_b0d579171c58e0fa0e12967c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;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_496c196880aac568c243fd7f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.010000;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_03e0ef64f915372ff474e108.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.006348;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_a72dcbbdffd479356bb737a6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006348;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_6f2cc9a2c04326a7e85c9d49.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.008301;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_1bced16aafc0e00b4c63889e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c12e1a8c9e4857dbd2622597.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.015137;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_aa140f7b8b84d6cb0797c0cf.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.900000;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_bf29c450d018f13883ed1ced.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.870000;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_357cdf60de53503c6c65817e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.952000;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_b36525e326c6ac784654ac13.woff2')format("woff");}.fff{font-family:fff;line-height:0.522000;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_9d819e3857ee70b9fac3ad07.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_68461a06462fa9588d2f14e8.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_7e4bc8472e50a01e97e639bb.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.006348;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:ff13;src:url('chunks/assets/font_90310779c63cbe24eee7c5d5.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.008301;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:ff14;src:url('chunks/assets/font_4d3f9f5763fb692f04143f03.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.015137;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:ff15;src:url('chunks/assets/font_1bced16aafc0e00b4c63889e.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_25ac866272e1c73f99bd0453.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.989258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_832040c890884da9e38a9b85.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.054688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_283dea88e627524ffc20488e.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_e4819458cbf229e8c45546d6.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.765625;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;}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m19{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.797588px;}
.v1{vertical-align:21.702000px;}
.v5{vertical-align:40.322484px;}
.ls30{letter-spacing:-0.986269px;}
.ls31{letter-spacing:-0.316832px;}
.ls74{letter-spacing:-0.204408px;}
.ls33{letter-spacing:-0.178857px;}
.ls6d{letter-spacing:-0.156312px;}
.ls71{letter-spacing:-0.138276px;}
.ls2e{letter-spacing:-0.132865px;}
.ls72{letter-spacing:-0.132264px;}
.ls5b{letter-spacing:-0.120240px;}
.ls61{letter-spacing:-0.114228px;}
.ls36{letter-spacing:-0.112424px;}
.ls6c{letter-spacing:-0.108216px;}
.ls5c{letter-spacing:-0.102204px;}
.ls32{letter-spacing:-0.097094px;}
.ls34{letter-spacing:-0.091984px;}
.ls6b{letter-spacing:-0.090180px;}
.ls65{letter-spacing:-0.084168px;}
.ls5f{letter-spacing:-0.078156px;}
.ls2c{letter-spacing:-0.076653px;}
.ls6e{letter-spacing:-0.072144px;}
.ls2a{letter-spacing:-0.071543px;}
.ls2d{letter-spacing:-0.061322px;}
.ls35{letter-spacing:-0.051102px;}
.ls6a{letter-spacing:-0.048096px;}
.ls73{letter-spacing:-0.042084px;}
.ls59{letter-spacing:-0.038304px;}
.ls68{letter-spacing:-0.037800px;}
.ls70{letter-spacing:-0.036072px;}
.ls2f{letter-spacing:-0.030661px;}
.ls5d{letter-spacing:-0.030060px;}
.ls25{letter-spacing:-0.024419px;}
.ls66{letter-spacing:-0.024048px;}
.ls29{letter-spacing:-0.020441px;}
.ls5e{letter-spacing:-0.018036px;}
.ls28{letter-spacing:-0.015331px;}
.ls5a{letter-spacing:-0.014364px;}
.ls6f{letter-spacing:-0.012024px;}
.ls27{letter-spacing:-0.010220px;}
.ls63{letter-spacing:-0.006012px;}
.ls62{letter-spacing:-0.005400px;}
.ls2b{letter-spacing:-0.005110px;}
.ls26{letter-spacing:-0.004070px;}
.ls0{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.000435px;}
.ls1b{letter-spacing:0.005110px;}
.ls50{letter-spacing:0.006012px;}
.ls17{letter-spacing:0.010220px;}
.ls58{letter-spacing:0.012024px;}
.ls19{letter-spacing:0.015331px;}
.ls56{letter-spacing:0.016200px;}
.ls46{letter-spacing:0.018036px;}
.ls1e{letter-spacing:0.020441px;}
.ls49{letter-spacing:0.024048px;}
.ls18{letter-spacing:0.025551px;}
.ls4f{letter-spacing:0.026352px;}
.ls14{letter-spacing:0.027540px;}
.ls51{letter-spacing:0.030060px;}
.ls21{letter-spacing:0.030661px;}
.ls4b{letter-spacing:0.032400px;}
.ls16{letter-spacing:0.035771px;}
.ls55{letter-spacing:0.037800px;}
.ls23{letter-spacing:0.040882px;}
.ls57{letter-spacing:0.042084px;}
.ls1a{letter-spacing:0.045992px;}
.ls20{letter-spacing:0.051102px;}
.ls69{letter-spacing:0.054108px;}
.ls24{letter-spacing:0.056212px;}
.ls53{letter-spacing:0.059292px;}
.ls15{letter-spacing:0.059670px;}
.ls22{letter-spacing:0.061322px;}
.ls54{letter-spacing:0.064800px;}
.ls1c{letter-spacing:0.066433px;}
.ls1d{letter-spacing:0.091984px;}
.ls52{letter-spacing:0.096192px;}
.ls1f{letter-spacing:0.102204px;}
.ls64{letter-spacing:0.108216px;}
.ls67{letter-spacing:0.120240px;}
.ls4a{letter-spacing:0.132264px;}
.ls48{letter-spacing:0.138276px;}
.ls13{letter-spacing:0.150583px;}
.ls60{letter-spacing:0.156312px;}
.ls12{letter-spacing:0.162792px;}
.ls45{letter-spacing:0.172368px;}
.ls47{letter-spacing:0.180360px;}
.ls44{letter-spacing:0.181944px;}
.ls2{letter-spacing:2.989200px;}
.ls7{letter-spacing:11.954850px;}
.ls43{letter-spacing:11.961161px;}
.ls39{letter-spacing:13.389734px;}
.ls76{letter-spacing:13.448400px;}
.ls37{letter-spacing:13.628837px;}
.ls42{letter-spacing:14.124000px;}
.ls3c{letter-spacing:14.340771px;}
.ls3f{letter-spacing:14.623965px;}
.lsd{letter-spacing:14.824349px;}
.lse{letter-spacing:14.884124px;}
.ls9{letter-spacing:14.943900px;}
.ls40{letter-spacing:14.944200px;}
.ls3e{letter-spacing:14.944665px;}
.lsa{letter-spacing:15.003676px;}
.ls3b{letter-spacing:15.123227px;}
.lsb{letter-spacing:15.362329px;}
.ls8{letter-spacing:16.318739px;}
.ls3d{letter-spacing:16.376906px;}
.ls11{letter-spacing:17.394700px;}
.ls75{letter-spacing:17.813129px;}
.ls3{letter-spacing:17.935200px;}
.ls10{letter-spacing:20.682358px;}
.lsc{letter-spacing:21.041011px;}
.lsf{letter-spacing:21.459440px;}
.ls6{letter-spacing:24.268894px;}
.ls1{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls41{letter-spacing:139.923740px;}
.ls4e{letter-spacing:144.811044px;}
.ls38{letter-spacing:213.364284px;}
.ls4c{letter-spacing:745.289604px;}
.ls4d{letter-spacing:755.732448px;}
.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;}
}
.wsed{word-spacing:-65.880000px;}
.wsea{word-spacing:-60.120000px;}
.ws8e{word-spacing:-51.102000px;}
.wsee{word-spacing:-16.496352px;}
.wseb{word-spacing:-15.030000px;}
.ws3f{word-spacing:-14.943900px;}
.wse5{word-spacing:-13.449600px;}
.wse8{word-spacing:-12.151944px;}
.wse9{word-spacing:-11.970000px;}
.ws29{word-spacing:-11.955150px;}
.wsc{word-spacing:-11.357400px;}
.wsb{word-spacing:-10.460700px;}
.ws8b{word-spacing:-10.337292px;}
.ws8c{word-spacing:-10.174500px;}
.ws1f{word-spacing:-3.981082px;}
.ws43{word-spacing:-3.945190px;}
.ws47{word-spacing:-3.765863px;}
.wse0{word-spacing:-3.706087px;}
.ws1e{word-spacing:-3.445721px;}
.ws112{word-spacing:-3.432852px;}
.ws111{word-spacing:-3.420828px;}
.wsf6{word-spacing:-3.048084px;}
.wsc0{word-spacing:-3.035459px;}
.ws85{word-spacing:-2.809453px;}
.wsf4{word-spacing:-2.807604px;}
.wsba{word-spacing:-2.713516px;}
.wsbc{word-spacing:-2.698186px;}
.wsf5{word-spacing:-2.669328px;}
.wsbf{word-spacing:-2.667524px;}
.ws66{word-spacing:-2.630126px;}
.ws164{word-spacing:-2.528525px;}
.wsbb{word-spacing:-2.355802px;}
.ws48{word-spacing:-2.331248px;}
.wsd1{word-spacing:-2.271473px;}
.ws132{word-spacing:-2.211697px;}
.ws3a{word-spacing:-1.853044px;}
.ws16f{word-spacing:-1.829146px;}
.ws130{word-spacing:-1.733492px;}
.ws131{word-spacing:-1.673717px;}
.ws88{word-spacing:-1.554166px;}
.ws136{word-spacing:-1.434614px;}
.wsc3{word-spacing:-1.400195px;}
.ws20{word-spacing:-1.344960px;}
.wsc4{word-spacing:-1.338872px;}
.ws64{word-spacing:-1.315063px;}
.wsd2{word-spacing:-1.255288px;}
.wsef{word-spacing:-1.135736px;}
.ws141{word-spacing:-1.129766px;}
.ws142{word-spacing:-1.075968px;}
.ws54{word-spacing:-1.075961px;}
.ws2a{word-spacing:-1.016185px;}
.ws51{word-spacing:-0.956410px;}
.ws96{word-spacing:-0.848293px;}
.ws87{word-spacing:-0.836858px;}
.ws140{word-spacing:-0.753178px;}
.ws40{word-spacing:-0.597756px;}
.wsb0{word-spacing:-0.572342px;}
.wsa2{word-spacing:-0.551902px;}
.wsd3{word-spacing:-0.537980px;}
.wsb9{word-spacing:-0.516130px;}
.wsaa{word-spacing:-0.511020px;}
.wsf{word-spacing:-0.484186px;}
.ws69{word-spacing:-0.478205px;}
.wsa3{word-spacing:-0.459918px;}
.ws37{word-spacing:-0.418429px;}
.wsff{word-spacing:-0.402804px;}
.ws153{word-spacing:-0.376589px;}
.ws3c{word-spacing:-0.358654px;}
.ws158{word-spacing:-0.322790px;}
.ws45{word-spacing:-0.298878px;}
.ws9f{word-spacing:-0.291281px;}
.ws101{word-spacing:-0.276552px;}
.wsf1{word-spacing:-0.272916px;}
.ws116{word-spacing:-0.270540px;}
.ws13d{word-spacing:-0.268992px;}
.ws10a{word-spacing:-0.246492px;}
.ws38{word-spacing:-0.239102px;}
.ws90{word-spacing:-0.236048px;}
.ws14{word-spacing:-0.215194px;}
.ws103{word-spacing:-0.210600px;}
.ws11d{word-spacing:-0.198396px;}
.ws31{word-spacing:-0.179327px;}
.ws156{word-spacing:-0.168696px;}
.ws117{word-spacing:-0.162324px;}
.ws16{word-spacing:-0.161395px;}
.wsab{word-spacing:-0.148196px;}
.ws22{word-spacing:-0.119551px;}
.ws10{word-spacing:-0.107597px;}
.wsf2{word-spacing:-0.076608px;}
.ws91{word-spacing:-0.069187px;}
.wsfe{word-spacing:-0.066132px;}
.wsec{word-spacing:-0.060120px;}
.ws46{word-spacing:-0.059776px;}
.ws1b{word-spacing:-0.053798px;}
.wsf0{word-spacing:-0.052668px;}
.ws8d{word-spacing:-0.051102px;}
.ws8f{word-spacing:-0.048838px;}
.wsbe{word-spacing:-0.045992px;}
.ws107{word-spacing:-0.018036px;}
.ws15d{word-spacing:-0.010637px;}
.ws157{word-spacing:-0.010176px;}
.ws171{word-spacing:-0.009600px;}
.ws149{word-spacing:-0.009254px;}
.ws165{word-spacing:-0.008755px;}
.ws161{word-spacing:-0.006912px;}
.ws14c{word-spacing:-0.006710px;}
.ws169{word-spacing:-0.006682px;}
.ws3{word-spacing:-0.006026px;}
.ws16e{word-spacing:-0.003302px;}
.ws14f{word-spacing:-0.002755px;}
.ws162{word-spacing:-0.001690px;}
.ws0{word-spacing:0.000000px;}
.ws28{word-spacing:0.003599px;}
.wsa9{word-spacing:0.020441px;}
.ws10c{word-spacing:0.032940px;}
.ws9a{word-spacing:0.035771px;}
.ws110{word-spacing:0.036072px;}
.ws95{word-spacing:0.045992px;}
.ws11f{word-spacing:0.048096px;}
.wsa8{word-spacing:0.051102px;}
.ws1c{word-spacing:0.053798px;}
.ws3b{word-spacing:0.059776px;}
.ws108{word-spacing:0.060120px;}
.ws105{word-spacing:0.065880px;}
.wsfd{word-spacing:0.066132px;}
.ws99{word-spacing:0.066433px;}
.ws10b{word-spacing:0.090180px;}
.wsa6{word-spacing:0.091984px;}
.ws94{word-spacing:0.096390px;}
.ws11e{word-spacing:0.102204px;}
.ws11{word-spacing:0.107597px;}
.ws34{word-spacing:0.119551px;}
.ws120{word-spacing:0.126252px;}
.ws93{word-spacing:0.128520px;}
.wsd6{word-spacing:0.161395px;}
.ws10d{word-spacing:0.162000px;}
.ws10e{word-spacing:0.178200px;}
.wsbd{word-spacing:0.178857px;}
.ws2d{word-spacing:0.179327px;}
.ws102{word-spacing:0.183600px;}
.ws100{word-spacing:0.204408px;}
.ws14d{word-spacing:0.215194px;}
.ws10f{word-spacing:0.216000px;}
.ws23{word-spacing:0.239102px;}
.ws144{word-spacing:0.268992px;}
.ws2f{word-spacing:0.298878px;}
.ws13e{word-spacing:0.322790px;}
.ws35{word-spacing:0.358654px;}
.ws5f{word-spacing:0.418429px;}
.ws1d{word-spacing:0.430387px;}
.wsb8{word-spacing:0.454808px;}
.wscd{word-spacing:0.478205px;}
.ws11a{word-spacing:0.498996px;}
.ws2e{word-spacing:0.537980px;}
.ws155{word-spacing:0.537984px;}
.ws63{word-spacing:0.597756px;}
.ws119{word-spacing:0.607212px;}
.ws135{word-spacing:0.657532px;}
.ws97{word-spacing:0.669436px;}
.wse6{word-spacing:0.670022px;}
.wsa4{word-spacing:0.705208px;}
.ws72{word-spacing:0.717307px;}
.ws44{word-spacing:0.777083px;}
.ws33{word-spacing:0.836858px;}
.ws65{word-spacing:0.896634px;}
.ws8a{word-spacing:0.956410px;}
.wsc5{word-spacing:0.965828px;}
.wsa5{word-spacing:1.006709px;}
.ws89{word-spacing:1.016185px;}
.ws14a{word-spacing:1.022170px;}
.ws6d{word-spacing:1.075961px;}
.ws118{word-spacing:1.142280px;}
.ws11b{word-spacing:1.172340px;}
.ws81{word-spacing:1.195512px;}
.ws11c{word-spacing:1.196388px;}
.wsb5{word-spacing:1.251999px;}
.ws9e{word-spacing:1.303101px;}
.ws9d{word-spacing:1.328652px;}
.ws160{word-spacing:1.344960px;}
.wsa{word-spacing:1.380812px;}
.ws84{word-spacing:1.434614px;}
.ws170{word-spacing:1.452557px;}
.ws68{word-spacing:1.494390px;}
.ws4b{word-spacing:1.554166px;}
.ws14b{word-spacing:1.560154px;}
.ws9c{word-spacing:1.604603px;}
.ws71{word-spacing:1.613941px;}
.wsaf{word-spacing:1.625044px;}
.ws52{word-spacing:1.673717px;}
.ws1a{word-spacing:1.721549px;}
.ws148{word-spacing:1.775347px;}
.ws53{word-spacing:1.793268px;}
.ws121{word-spacing:1.857708px;}
.ws86{word-spacing:1.912819px;}
.ws9b{word-spacing:1.926545px;}
.ws122{word-spacing:1.965924px;}
.ws2c{word-spacing:1.972595px;}
.ws49{word-spacing:2.032370px;}
.ws7d{word-spacing:2.092146px;}
.ws12{word-spacing:2.098138px;}
.ws4f{word-spacing:2.151922px;}
.ws15{word-spacing:2.205734px;}
.ws4a{word-spacing:2.211697px;}
.ws15a{word-spacing:2.259533px;}
.ws59{word-spacing:2.271473px;}
.ws18{word-spacing:2.313331px;}
.ws7f{word-spacing:2.331248px;}
.ws74{word-spacing:2.391024px;}
.ws143{word-spacing:2.420928px;}
.ws73{word-spacing:2.450800px;}
.wsfb{word-spacing:2.470932px;}
.ws13{word-spacing:2.474726px;}
.ws6e{word-spacing:2.510575px;}
.ws2{word-spacing:2.511305px;}
.ws1{word-spacing:2.511541px;}
.wse{word-spacing:2.528525px;}
.ws7a{word-spacing:2.570351px;}
.ws13c{word-spacing:2.582323px;}
.ws32{word-spacing:2.630126px;}
.ws13b{word-spacing:2.636122px;}
.wsfc{word-spacing:2.687364px;}
.ws7b{word-spacing:2.689902px;}
.ws39{word-spacing:2.809453px;}
.ws146{word-spacing:2.851315px;}
.wse7{word-spacing:2.863151px;}
.ws6b{word-spacing:2.869229px;}
.ws5a{word-spacing:2.929004px;}
.ws7e{word-spacing:2.988780px;}
.ws13f{word-spacing:3.052292px;}
.wsb4{word-spacing:3.086561px;}
.ws58{word-spacing:3.108331px;}
.ws151{word-spacing:3.116171px;}
.wsac{word-spacing:3.117222px;}
.ws147{word-spacing:3.120307px;}
.ws75{word-spacing:3.168107px;}
.wsb3{word-spacing:3.214316px;}
.ws15c{word-spacing:3.219571px;}
.ws163{word-spacing:3.219648px;}
.ws16d{word-spacing:3.221357px;}
.ws14e{word-spacing:3.221405px;}
.ws166{word-spacing:3.223642px;}
.ws159{word-spacing:3.224083px;}
.ws5b{word-spacing:3.227882px;}
.ws145{word-spacing:3.227904px;}
.ws128{word-spacing:3.287658px;}
.ws80{word-spacing:3.347434px;}
.ws154{word-spacing:3.443098px;}
.wsb1{word-spacing:3.464716px;}
.ws139{word-spacing:3.466985px;}
.ws16b{word-spacing:3.496896px;}
.ws55{word-spacing:3.526760px;}
.wsb2{word-spacing:3.582250px;}
.ws21{word-spacing:3.586536px;}
.ws24{word-spacing:3.646312px;}
.wscf{word-spacing:3.765863px;}
.ws19{word-spacing:3.765888px;}
.ws16c{word-spacing:3.819686px;}
.ws50{word-spacing:3.825638px;}
.ws4d{word-spacing:3.885414px;}
.ws76{word-spacing:3.945190px;}
.ws7c{word-spacing:4.004965px;}
.wsa7{word-spacing:4.011507px;}
.ws15b{word-spacing:4.034880px;}
.wsa0{word-spacing:4.062609px;}
.wsfa{word-spacing:4.070124px;}
.wsf9{word-spacing:4.082148px;}
.ws17{word-spacing:4.088678px;}
.wsae{word-spacing:4.123931px;}
.ws167{word-spacing:4.142477px;}
.ws137{word-spacing:4.184292px;}
.ws30{word-spacing:4.303843px;}
.wsce{word-spacing:4.363619px;}
.wsf8{word-spacing:4.412808px;}
.ws61{word-spacing:4.423394px;}
.ws138{word-spacing:4.483170px;}
.ws12e{word-spacing:4.602721px;}
.wscc{word-spacing:4.662497px;}
.ws6c{word-spacing:4.782048px;}
.wsf7{word-spacing:4.869720px;}
.ws15f{word-spacing:4.949453px;}
.ws62{word-spacing:4.961375px;}
.ws6a{word-spacing:5.021150px;}
.ws127{word-spacing:5.116212px;}
.ws13a{word-spacing:5.140702px;}
.ws36{word-spacing:5.200477px;}
.ws16a{word-spacing:5.272243px;}
.wsc8{word-spacing:5.439580px;}
.ws8{word-spacing:5.481407px;}
.ws6f{word-spacing:5.499355px;}
.ws70{word-spacing:5.559131px;}
.wsa1{word-spacing:5.585449px;}
.ws4e{word-spacing:5.618906px;}
.ws124{word-spacing:5.621220px;}
.ws123{word-spacing:5.627232px;}
.ws4c{word-spacing:5.678682px;}
.ws2b{word-spacing:5.738458px;}
.ws15e{word-spacing:5.810227px;}
.ws5e{word-spacing:5.917784px;}
.ws150{word-spacing:5.917824px;}
.ws57{word-spacing:5.977560px;}
.ws26{word-spacing:6.097111px;}
.wsb6{word-spacing:6.152681px;}
.ws27{word-spacing:6.156887px;}
.ws98{word-spacing:6.214003px;}
.wsd0{word-spacing:6.216662px;}
.wsb7{word-spacing:6.234444px;}
.wscb{word-spacing:6.336214px;}
.ws134{word-spacing:6.395989px;}
.ws56{word-spacing:6.515540px;}
.ws77{word-spacing:6.575316px;}
.ws3e{word-spacing:6.635092px;}
.ws67{word-spacing:6.814418px;}
.wsc6{word-spacing:6.933970px;}
.wsc1{word-spacing:7.057186px;}
.ws83{word-spacing:7.113296px;}
.ws129{word-spacing:7.173072px;}
.wsc2{word-spacing:7.215602px;}
.wsc7{word-spacing:7.352399px;}
.ws79{word-spacing:7.412174px;}
.wsca{word-spacing:7.531726px;}
.wsc9{word-spacing:7.591501px;}
.ws115{word-spacing:7.677324px;}
.ws82{word-spacing:7.711052px;}
.ws114{word-spacing:7.755480px;}
.ws5d{word-spacing:7.770828px;}
.ws60{word-spacing:7.890379px;}
.ws5c{word-spacing:7.950155px;}
.ws133{word-spacing:8.009930px;}
.wsad{word-spacing:8.114998px;}
.ws12f{word-spacing:8.189257px;}
.ws25{word-spacing:8.249033px;}
.ws78{word-spacing:8.308808px;}
.ws113{word-spacing:8.326620px;}
.ws3d{word-spacing:8.368584px;}
.ws125{word-spacing:8.410788px;}
.ws12b{word-spacing:8.428360px;}
.wsd{word-spacing:8.468861px;}
.ws12a{word-spacing:8.488135px;}
.ws126{word-spacing:8.573112px;}
.ws42{word-spacing:9.504320px;}
.ws41{word-spacing:9.683647px;}
.ws152{word-spacing:9.683712px;}
.ws6{word-spacing:9.833058px;}
.ws92{word-spacing:9.877405px;}
.ws12d{word-spacing:10.640057px;}
.ws12c{word-spacing:10.699832px;}
.wsf3{word-spacing:11.615688px;}
.ws168{word-spacing:11.728051px;}
.ws7{word-spacing:11.841512px;}
.ws106{word-spacing:12.691332px;}
.ws4{word-spacing:15.481836px;}
.ws9{word-spacing:16.067635px;}
.ws5{word-spacing:22.339429px;}
.ws109{word-spacing:45.631080px;}
.wse4{word-spacing:45.997632px;}
.wsd7{word-spacing:128.793370px;}
.wsd5{word-spacing:142.727155px;}
.wse3{word-spacing:147.138624px;}
.ws104{word-spacing:150.552504px;}
.wsd4{word-spacing:188.294400px;}
.wsd8{word-spacing:215.193600px;}
.wse2{word-spacing:368.424000px;}
.wse1{word-spacing:378.902131px;}
.wsdd{word-spacing:435.713242px;}
.wsda{word-spacing:436.159910px;}
.wsdf{word-spacing:445.127962px;}
.wsdc{word-spacing:454.811674px;}
.wsde{word-spacing:454.824000px;}
.wsdb{word-spacing:454.830000px;}
.wsd9{word-spacing:465.302362px;}
._38{margin-left:-61.328412px;}
._39{margin-left:-13.957898px;}
._6{margin-left:-11.943245px;}
._8{margin-left:-7.962163px;}
._b{margin-left:-6.638366px;}
._1{margin-left:-5.397721px;}
._c{margin-left:-4.309861px;}
._0{margin-left:-3.096367px;}
._5{margin-left:-1.464498px;}
._21{width:1.066288px;}
._9{width:2.999554px;}
._20{width:4.423394px;}
._41{width:9.568800px;}
._2{width:12.971268px;}
._e{width:14.955955px;}
._10{width:16.247117px;}
._d{width:17.451845px;}
._12{width:18.745726px;}
._18{width:19.965050px;}
._14{width:21.519360px;}
._f{width:23.402304px;}
._3{width:25.314894px;}
._1a{width:27.090458px;}
._13{width:28.297958px;}
._11{width:29.373926px;}
._4{width:31.256572px;}
._7{width:33.355008px;}
._1d{width:34.400854px;}
._1b{width:36.164238px;}
._15{width:37.479301px;}
._1c{width:38.973530px;}
._1f{width:41.263081px;}
._1e{width:44.303157px;}
._19{width:48.776890px;}
._3b{width:49.904883px;}
._a{width:54.403526px;}
._3e{width:70.182092px;}
._3a{width:104.910552px;}
._3c{width:115.244028px;}
._28{width:142.242970px;}
._25{width:163.816128px;}
._24{width:240.897331px;}
._2e{width:312.284002px;}
._23{width:371.262758px;}
._33{width:376.815935px;}
._2f{width:380.264972px;}
._30{width:381.861043px;}
._2d{width:402.788621px;}
._31{width:415.108454px;}
._2c{width:467.366170px;}
._26{width:469.175846px;}
._2b{width:489.188851px;}
._29{width:491.555981px;}
._40{width:492.834852px;}
._35{width:533.482816px;}
._2a{width:539.071909px;}
._34{width:578.279002px;}
._32{width:594.795110px;}
._16{width:882.485397px;}
._27{width:901.625267px;}
._3d{width:1103.728626px;}
._3f{width:1260.776520px;}
._22{width:1789.666061px;}
._37{width:2080.990724px;}
._36{width:2512.671431px;}
._17{width:2536.581431px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.865600px;}
.fsc{font-size:40.698000px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:45.429600px;}
.fse{font-size:45.900000px;}
.fsa{font-size:47.820600px;}
.fs11{font-size:47.880000px;}
.fs10{font-size:49.829400px;}
.fsd{font-size:51.102000px;}
.fsb{font-size:53.798400px;}
.fs13{font-size:54.000000px;}
.fsf{font-size:56.058000px;}
.fs6{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs12{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fs14{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:107.596800px;}
.yf1{bottom:-743.911118px;}
.y117{bottom:-691.492185px;}
.y116{bottom:-675.198313px;}
.y115{bottom:-658.827787px;}
.y114{bottom:-642.533914px;}
.y113{bottom:-622.338404px;}
.y112{bottom:-590.667939px;}
.y111{bottom:-574.374067px;}
.y110{bottom:-558.003541px;}
.y10f{bottom:-541.633015px;}
.y10e{bottom:-525.339143px;}
.y10d{bottom:-508.968617px;}
.y10c{bottom:-492.673467px;}
.y10b{bottom:-476.302941px;}
.y10a{bottom:-459.932415px;}
.y109{bottom:-443.638542px;}
.y108{bottom:-427.268017px;}
.y107{bottom:-410.974144px;}
.y1a2{bottom:-406.676550px;}
.y106{bottom:-394.603618px;}
.y105{bottom:-378.233093px;}
.y104{bottom:-358.114235px;}
.y103{bottom:-326.443771px;}
.y1c4{bottom:-312.529881px;}
.y102{bottom:-310.149898px;}
.y101{bottom:-293.779372px;}
.y1c3{bottom:-293.270439px;}
.y100{bottom:-277.408847px;}
.y1c2{bottom:-274.010997px;}
.yff{bottom:-261.113696px;}
.y1c1{bottom:-254.841735px;}
.yfe{bottom:-244.743171px;}
.y1c0{bottom:-235.582293px;}
.yfd{bottom:-228.372645px;}
.y1bf{bottom:-216.322851px;}
.yfc{bottom:-208.253788px;}
.y1be{bottom:-197.153589px;}
.y1bd{bottom:-177.894147px;}
.yfb{bottom:-176.583323px;}
.yfa{bottom:-160.289450px;}
.y1bc{bottom:-158.724885px;}
.yf9{bottom:-143.918925px;}
.y1bb{bottom:-139.465443px;}
.yf8{bottom:-127.548399px;}
.y1ba{bottom:-120.206001px;}
.yf7{bottom:-111.254526px;}
.y1b9{bottom:-101.036739px;}
.yf6{bottom:-94.884001px;}
.y1b8{bottom:-81.777297px;}
.yf5{bottom:-78.590128px;}
.yf4{bottom:-58.394618px;}
.y1b7{bottom:-58.106550px;}
.yf3{bottom:-27.106118px;}
.y1b6{bottom:-21.296550px;}
.yf2{bottom:-7.981118px;}
.y0{bottom:0.000000px;}
.y1b5{bottom:1.293450px;}
.y66{bottom:31.890000px;}
.y6{bottom:35.925007px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y118{bottom:100.425000px;}
.y191{bottom:103.621500px;}
.y39{bottom:104.646000px;}
.y65{bottom:109.687500px;}
.y245{bottom:111.258000px;}
.y20d{bottom:112.962000px;}
.y27b{bottom:116.458500px;}
.ya7{bottom:117.802500px;}
.y1e2{bottom:119.148000px;}
.y9d{bottom:119.596500px;}
.yd4{bottom:120.493500px;}
.y190{bottom:122.449500px;}
.y38{bottom:122.535000px;}
.yee{bottom:122.853000px;}
.y64{bottom:128.517000px;}
.y244{bottom:128.518500px;}
.y20c{bottom:130.536000px;}
.y27a{bottom:133.719000px;}
.y170{bottom:136.600500px;}
.ya6{bottom:136.632000px;}
.y1e1{bottom:137.977500px;}
.y9c{bottom:138.426000px;}
.y22{bottom:139.264499px;}
.yd3{bottom:139.323000px;}
.y37{bottom:140.422500px;}
.y18f{bottom:141.279000px;}
.y243{bottom:145.779000px;}
.y63{bottom:147.346500px;}
.y20b{bottom:148.110000px;}
.y279{bottom:150.978000px;}
.y147{bottom:150.979500px;}
.ya5{bottom:155.461500px;}
.y1e0{bottom:156.807000px;}
.y9b{bottom:157.255500px;}
.yd2{bottom:158.152500px;}
.y36{bottom:158.310000px;}
.y18e{bottom:160.108500px;}
.y16f{bottom:160.242000px;}
.y242{bottom:163.038000px;}
.y62{bottom:166.176000px;}
.y278{bottom:168.238500px;}
.y146{bottom:169.809000px;}
.ya4{bottom:174.291000px;}
.y20a{bottom:174.651000px;}
.y1df{bottom:175.636500px;}
.y9a{bottom:176.085000px;}
.y35{bottom:176.199000px;}
.yd1{bottom:176.982000px;}
.y18d{bottom:178.938000px;}
.y241{bottom:180.298500px;}
.y16e{bottom:183.882000px;}
.y61{bottom:185.005500px;}
.y277{bottom:185.499000px;}
.y145{bottom:188.638500px;}
.y209{bottom:192.225000px;}
.ya3{bottom:193.120500px;}
.y34{bottom:194.086500px;}
.y1de{bottom:194.466000px;}
.y99{bottom:194.914500px;}
.y19{bottom:196.933500px;}
.y240{bottom:197.559000px;}
.y1d2{bottom:197.767500px;}
.yd0{bottom:200.293500px;}
.y276{bottom:202.759500px;}
.y144{bottom:207.468000px;}
.y16d{bottom:207.523500px;}
.y60{bottom:208.317000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.ya2{bottom:211.950000px;}
.y33{bottom:211.974000px;}
.y1dd{bottom:213.295500px;}
.y98{bottom:213.744000px;}
.y23f{bottom:214.819500px;}
.y1d1{bottom:216.597000px;}
.y208{bottom:218.764500px;}
.y275{bottom:220.020000px;}
.yf0{bottom:221.824997px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y18c{bottom:224.128500px;}
.y143{bottom:226.297500px;}
.y32{bottom:229.863000px;}
.yef{bottom:230.010382px;}
.ya1{bottom:230.779500px;}
.y16c{bottom:231.163500px;}
.y23e{bottom:232.080000px;}
.y1dc{bottom:232.125000px;}
.y97{bottom:232.573500px;}
.ycf{bottom:233.917500px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y1d0{bottom:235.426500px;}
.y207{bottom:236.338500px;}
.y274{bottom:237.280500px;}
.y142{bottom:245.125500px;}
.y18b{bottom:247.768500px;}
.y23d{bottom:249.340500px;}
.ya0{bottom:249.609000px;}
.y1db{bottom:250.954500px;}
.y96{bottom:251.403000px;}
.y206{bottom:253.912500px;}
.y1cf{bottom:254.256000px;}
.y273{bottom:254.541000px;}
.y16b{bottom:254.805000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y23c{bottom:266.601000px;}
.y141{bottom:268.438500px;}
.y1da{bottom:269.784000px;}
.y95{bottom:270.232500px;}
.yce{bottom:270.681000px;}
.y18a{bottom:271.410000px;}
.y205{bottom:271.488000px;}
.y272{bottom:271.801500px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y9f{bottom:272.922000px;}
.y1ce{bottom:273.085500px;}
.y16a{bottom:278.445000px;}
.y5f{bottom:283.468500px;}
.y23b{bottom:283.861500px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y1d9{bottom:288.613500px;}
.y94{bottom:289.062000px;}
.ycd{bottom:289.509000px;}
.y1cd{bottom:291.915000px;}
.y9e{bottom:293.095500px;}
.y31{bottom:297.166500px;}
.y23a{bottom:301.122000px;}
.y140{bottom:302.062500px;}
.y169{bottom:302.085000px;}
.y1b4{bottom:302.793450px;}
.y189{bottom:303.030000px;}
.y271{bottom:306.321000px;}
.y204{bottom:306.994500px;}
.y1d8{bottom:307.443000px;}
.y93{bottom:307.891500px;}
.ycc{bottom:308.338500px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y1cc{bottom:310.744500px;}
.y30{bottom:315.054000px;}
.y239{bottom:318.381000px;}
.y5e{bottom:320.857500px;}
.y13f{bottom:320.892000px;}
.y1b3{bottom:322.232829px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y270{bottom:323.581500px;}
.y168{bottom:325.726500px;}
.y203{bottom:325.824000px;}
.y1d7{bottom:326.272500px;}
.y92{bottom:326.719500px;}
.ycb{bottom:327.168000px;}
.y1cb{bottom:329.574000px;}
.yed{bottom:332.100000px;}
.y1b2{bottom:332.313450px;}
.y2f{bottom:332.941500px;}
.y238{bottom:335.641500px;}
.y27e{bottom:336.285000px;}
.y13e{bottom:339.721500px;}
.y188{bottom:339.861000px;}
.y5d{bottom:340.314000px;}
.y26f{bottom:340.842000px;}
.y202{bottom:344.653500px;}
.y1d6{bottom:345.102000px;}
.y91{bottom:345.549000px;}
.yca{bottom:345.997500px;}
.y10{bottom:348.133500px;}
.y1ca{bottom:348.403500px;}
.y167{bottom:349.366500px;}
.y2e{bottom:350.830500px;}
.yec{bottom:350.929500px;}
.y237{bottom:352.902000px;}
.y27d{bottom:353.544000px;}
.y26e{bottom:358.102500px;}
.y13d{bottom:358.551000px;}
.y187{bottom:358.690500px;}
.y5c{bottom:359.772000px;}
.y201{bottom:363.483000px;}
.y1b1{bottom:363.903450px;}
.y1d5{bottom:363.931500px;}
.y90{bottom:364.378500px;}
.yc9{bottom:364.827000px;}
.y1c9{bottom:367.233000px;}
.yeb{bottom:369.759000px;}
.y236{bottom:370.162500px;}
.y27c{bottom:370.804500px;}
.y166{bottom:373.008000px;}
.y26d{bottom:375.363000px;}
.y13c{bottom:377.380500px;}
.y186{bottom:377.520000px;}
.y2d{bottom:377.685000px;}
.y5b{bottom:379.228500px;}
.y200{bottom:382.312500px;}
.y1d4{bottom:382.761000px;}
.y8f{bottom:383.208000px;}
.yc8{bottom:383.656500px;}
.y1c8{bottom:386.062500px;}
.y1b0{bottom:386.404302px;}
.yf{bottom:386.785499px;}
.y235{bottom:387.423000px;}
.y26c{bottom:392.623500px;}
.y2c{bottom:395.572500px;}
.y13b{bottom:396.210000px;}
.y185{bottom:396.349500px;}
.y1af{bottom:396.573600px;}
.y165{bottom:396.648000px;}
.y5a{bottom:398.686500px;}
.y1ff{bottom:401.142000px;}
.y8e{bottom:402.037500px;}
.yc7{bottom:402.486000px;}
.y234{bottom:404.683500px;}
.y1c7{bottom:404.892000px;}
.y1d3{bottom:406.072500px;}
.yea{bottom:406.521000px;}
.ye{bottom:408.044999px;}
.y26b{bottom:409.884000px;}
.y2b{bottom:413.460000px;}
.y13a{bottom:415.039500px;}
.y184{bottom:415.179000px;}
.y59{bottom:418.143000px;}
.y1fe{bottom:419.971500px;}
.y164{bottom:420.289500px;}
.y8d{bottom:420.867000px;}
.yc6{bottom:421.315500px;}
.y233{bottom:421.944000px;}
.ye9{bottom:425.350500px;}
.y26a{bottom:427.144500px;}
.y1ae{bottom:427.624152px;}
.y1c6{bottom:428.205000px;}
.y2a{bottom:431.349000px;}
.y139{bottom:433.869000px;}
.y183{bottom:434.008500px;}
.y58{bottom:437.599500px;}
.y1ad{bottom:437.793450px;}
.y1fd{bottom:438.801000px;}
.y232{bottom:439.204500px;}
.y8c{bottom:439.696500px;}
.yc5{bottom:440.145000px;}
.y269{bottom:444.403500px;}
.y29{bottom:449.236500px;}
.y163{bottom:451.909500px;}
.y138{bottom:452.698500px;}
.y182{bottom:452.838000px;}
.y231{bottom:456.463500px;}
.y1c5{bottom:456.820500px;}
.y57{bottom:457.057500px;}
.y1fc{bottom:457.630500px;}
.y8b{bottom:458.526000px;}
.yc4{bottom:458.974500px;}
.y268{bottom:461.664000px;}
.ye8{bottom:462.112500px;}
.y28{bottom:467.124000px;}
.y1ac{bottom:468.843450px;}
.y181{bottom:471.667500px;}
.y230{bottom:473.724000px;}
.y137{bottom:476.011500px;}
.y1fb{bottom:476.458500px;}
.y56{bottom:476.514000px;}
.y8a{bottom:477.355500px;}
.yc3{bottom:477.804000px;}
.y267{bottom:478.924500px;}
.y19f{bottom:479.250000px;}
.ye7{bottom:480.942000px;}
.y27{bottom:485.013000px;}
.y162{bottom:489.013500px;}
.y1ab{bottom:490.353450px;}
.y22f{bottom:490.984500px;}
.y180{bottom:494.980500px;}
.y1fa{bottom:495.288000px;}
.y55{bottom:495.970500px;}
.y89{bottom:496.185000px;}
.yc2{bottom:496.633500px;}
.ye6{bottom:499.771500px;}
.yd{bottom:502.864502px;}
.y26{bottom:502.900500px;}
.y161{bottom:507.843000px;}
.y22e{bottom:508.245000px;}
.y136{bottom:509.635500px;}
.y1aa{bottom:512.853450px;}
.y266{bottom:513.445500px;}
.y1f9{bottom:514.117500px;}
.y88{bottom:515.014500px;}
.y54{bottom:515.428500px;}
.yc1{bottom:515.463000px;}
.ye5{bottom:518.601000px;}
.y25{bottom:520.788000px;}
.yc{bottom:520.864502px;}
.y22d{bottom:525.505500px;}
.y160{bottom:526.672500px;}
.y135{bottom:528.465000px;}
.y265{bottom:530.706000px;}
.y1f8{bottom:532.947000px;}
.y87{bottom:533.844000px;}
.yc0{bottom:534.292500px;}
.y53{bottom:534.885000px;}
.y17f{bottom:537.031500px;}
.ye4{bottom:537.430500px;}
.y24{bottom:538.677000px;}
.yb{bottom:538.864499px;}
.y22c{bottom:542.766000px;}
.y1a9{bottom:542.913450px;}
.y15f{bottom:545.502000px;}
.y134{bottom:547.294500px;}
.y264{bottom:547.966500px;}
.y1f7{bottom:551.776500px;}
.y86{bottom:552.673500px;}
.ybf{bottom:553.122000px;}
.y52{bottom:554.343000px;}
.ye3{bottom:556.260000px;}
.y23{bottom:556.564500px;}
.ya{bottom:556.864499px;}
.y22b{bottom:560.026500px;}
.y17e{bottom:560.673000px;}
.y263{bottom:565.227000px;}
.y133{bottom:566.124000px;}
.y1f6{bottom:570.606000px;}
.y85{bottom:571.503000px;}
.ybe{bottom:571.951500px;}
.y51{bottom:573.799500px;}
.ye2{bottom:575.089500px;}
.y22a{bottom:577.287000px;}
.y1a8{bottom:578.645097px;}
.y262{bottom:582.487500px;}
.y17d{bottom:584.313000px;}
.y132{bottom:584.952000px;}
.y1f5{bottom:589.435500px;}
.y84{bottom:590.332500px;}
.ybd{bottom:590.781000px;}
.y15e{bottom:590.964000px;}
.y50{bottom:593.256000px;}
.ye1{bottom:593.919000px;}
.y229{bottom:594.547500px;}
.y1a7{bottom:597.904539px;}
.y261{bottom:599.746500px;}
.y131{bottom:603.781500px;}
.y17c{bottom:607.954500px;}
.y1f4{bottom:608.265000px;}
.y83{bottom:609.162000px;}
.ybc{bottom:609.610500px;}
.y228{bottom:611.806500px;}
.y4f{bottom:612.714000px;}
.ye0{bottom:612.748500px;}
.y15d{bottom:614.604000px;}
.y260{bottom:617.007000px;}
.y1a6{bottom:617.073801px;}
.y130{bottom:622.611000px;}
.y1f3{bottom:627.094500px;}
.y82{bottom:627.991500px;}
.ybb{bottom:628.440000px;}
.y227{bottom:629.067000px;}
.ydf{bottom:631.578000px;}
.y4e{bottom:632.170500px;}
.y25f{bottom:634.267500px;}
.y1a5{bottom:636.333243px;}
.y15c{bottom:638.245500px;}
.y17b{bottom:639.573000px;}
.y12f{bottom:641.440500px;}
.y9{bottom:645.510000px;}
.y1f2{bottom:645.924000px;}
.y226{bottom:646.327500px;}
.y81{bottom:646.821000px;}
.yba{bottom:647.269500px;}
.yde{bottom:650.407500px;}
.y25e{bottom:651.528000px;}
.y4d{bottom:651.627000px;}
.y1a4{bottom:655.592685px;}
.y12e{bottom:660.270000px;}
.y15b{bottom:661.885500px;}
.y225{bottom:663.588000px;}
.y1f1{bottom:664.753500px;}
.y80{bottom:665.650500px;}
.yb9{bottom:666.099000px;}
.y8{bottom:666.771000px;}
.y25d{bottom:668.788500px;}
.ydd{bottom:669.237000px;}
.y4c{bottom:671.085000px;}
.y1a3{bottom:674.763450px;}
.y12d{bottom:679.099500px;}
.y224{bottom:680.848500px;}
.y1f0{bottom:683.583000px;}
.y7f{bottom:684.480000px;}
.yb8{bottom:684.928500px;}
.y15a{bottom:685.525500px;}
.y25c{bottom:686.049000px;}
.ydc{bottom:688.066500px;}
.y17a{bottom:689.586000px;}
.y4b{bottom:690.541500px;}
.y12c{bottom:697.929000px;}
.y223{bottom:698.109000px;}
.y7e{bottom:703.309500px;}
.yb7{bottom:703.758000px;}
.ydb{bottom:706.896000px;}
.y159{bottom:709.167000px;}
.y4a{bottom:709.999500px;}
.y179{bottom:713.226000px;}
.y222{bottom:715.369500px;}
.y12b{bottom:716.758500px;}
.y25b{bottom:720.570000px;}
.y7d{bottom:722.139000px;}
.yb6{bottom:722.587500px;}
.yda{bottom:725.725500px;}
.y7{bottom:726.298500px;}
.y49{bottom:729.456000px;}
.y1a1{bottom:729.483585px;}
.y221{bottom:732.630000px;}
.y158{bottom:732.807000px;}
.y12a{bottom:735.588000px;}
.y178{bottom:736.867500px;}
.y25a{bottom:737.829000px;}
.y1a0{bottom:739.113450px;}
.y1ef{bottom:740.520000px;}
.y7c{bottom:740.968500px;}
.yb5{bottom:741.417000px;}
.yd9{bottom:744.555000px;}
.y48{bottom:748.912500px;}
.y220{bottom:749.889000px;}
.y3{bottom:752.599495px;}
.y129{bottom:754.417500px;}
.y259{bottom:755.089500px;}
.y157{bottom:756.448500px;}
.y1ee{bottom:759.349500px;}
.y7b{bottom:759.798000px;}
.yb4{bottom:760.246500px;}
.y177{bottom:760.507500px;}
.yd8{bottom:763.384500px;}
.y21f{bottom:767.149500px;}
.y258{bottom:772.350000px;}
.y128{bottom:777.730500px;}
.y1ed{bottom:778.179000px;}
.y7a{bottom:778.627500px;}
.yb3{bottom:779.076000px;}
.y156{bottom:780.088500px;}
.y19e{bottom:781.762500px;}
.y21e{bottom:784.410000px;}
.yd7{bottom:786.696000px;}
.y47{bottom:787.498500px;}
.y257{bottom:789.610500px;}
.y176{bottom:792.127500px;}
.y1ec{bottom:797.008500px;}
.y79{bottom:797.457000px;}
.yb2{bottom:797.904000px;}
.y19d{bottom:800.605500px;}
.y21d{bottom:801.670500px;}
.yd6{bottom:802.387500px;}
.y46{bottom:803.638500px;}
.y155{bottom:803.730000px;}
.y256{bottom:806.871000px;}
.y19b{bottom:808.825500px;}
.y127{bottom:811.354500px;}
.y1eb{bottom:815.838000px;}
.y78{bottom:816.286500px;}
.yb1{bottom:816.733500px;}
.y19c{bottom:817.044000px;}
.y21c{bottom:818.931000px;}
.y45{bottom:824.116500px;}
.y255{bottom:824.131500px;}
.y175{bottom:825.066000px;}
.y154{bottom:827.370000px;}
.y126{bottom:830.184000px;}
.y1ea{bottom:834.667500px;}
.y77{bottom:835.114500px;}
.yb0{bottom:835.563000px;}
.y44{bottom:835.917000px;}
.yd5{bottom:836.011500px;}
.y21b{bottom:836.191500px;}
.y19a{bottom:840.685500px;}
.y254{bottom:841.392000px;}
.y174{bottom:843.895500px;}
.y125{bottom:849.013500px;}
.y153{bottom:851.011500px;}
.y21a{bottom:853.452000px;}
.y1e9{bottom:853.497000px;}
.y76{bottom:853.944000px;}
.yaf{bottom:854.392500px;}
.y43{bottom:856.396500px;}
.y253{bottom:858.652500px;}
.y173{bottom:862.725000px;}
.y199{bottom:864.325500px;}
.y124{bottom:867.843000px;}
.y42{bottom:868.195500px;}
.y219{bottom:870.712500px;}
.y1e8{bottom:872.326500px;}
.y75{bottom:872.773500px;}
.yae{bottom:873.222000px;}
.y152{bottom:874.651500px;}
.y252{bottom:875.913000px;}
.y2{bottom:879.369000px;}
.y172{bottom:881.554500px;}
.y123{bottom:886.672500px;}
.y198{bottom:887.967000px;}
.y218{bottom:887.973000px;}
.y41{bottom:888.675000px;}
.y1e7{bottom:891.156000px;}
.y74{bottom:891.603000px;}
.yad{bottom:892.051500px;}
.y251{bottom:893.172000px;}
.y196{bottom:896.185500px;}
.y151{bottom:898.293000px;}
.y171{bottom:900.384000px;}
.y197{bottom:904.404000px;}
.y40{bottom:904.815000px;}
.y217{bottom:905.232000px;}
.y122{bottom:905.502000px;}
.y1e6{bottom:909.984000px;}
.y73{bottom:910.432500px;}
.yac{bottom:910.881000px;}
.y150{bottom:921.933000px;}
.y216{bottom:922.492500px;}
.y121{bottom:924.331500px;}
.y250{bottom:927.693000px;}
.y195{bottom:928.045500px;}
.y1e5{bottom:928.813500px;}
.y72{bottom:929.262000px;}
.yab{bottom:929.710500px;}
.y215{bottom:939.753000px;}
.y24f{bottom:944.953500px;}
.y14f{bottom:945.574500px;}
.y120{bottom:947.643000px;}
.y71{bottom:948.091500px;}
.yaa{bottom:948.540000px;}
.y3f{bottom:949.491000px;}
.y194{bottom:951.685500px;}
.y214{bottom:957.013500px;}
.y24e{bottom:962.214000px;}
.y1e4{bottom:966.472500px;}
.y1{bottom:966.726000px;}
.y70{bottom:966.921000px;}
.y3e{bottom:968.320500px;}
.y14e{bottom:969.214500px;}
.ya9{bottom:971.853000px;}
.y213{bottom:974.274000px;}
.y193{bottom:975.327000px;}
.y24d{bottom:979.474500px;}
.y11f{bottom:981.267000px;}
.y6f{bottom:985.750500px;}
.y1e3{bottom:989.785500px;}
.y212{bottom:991.534500px;}
.y14d{bottom:992.856000px;}
.y24c{bottom:996.735000px;}
.y11e{bottom:1000.096500px;}
.y6e{bottom:1004.580000px;}
.ya8{bottom:1005.477000px;}
.y192{bottom:1006.947000px;}
.y3d{bottom:1008.240000px;}
.y211{bottom:1013.277000px;}
.y24b{bottom:1013.995500px;}
.y14c{bottom:1016.496000px;}
.y11d{bottom:1018.926000px;}
.y6d{bottom:1023.409500px;}
.y24a{bottom:1031.254500px;}
.y3c{bottom:1036.485000px;}
.y11c{bottom:1037.755500px;}
.y14b{bottom:1040.137500px;}
.y6c{bottom:1042.239000px;}
.y210{bottom:1046.901000px;}
.y249{bottom:1048.515000px;}
.y11b{bottom:1056.585000px;}
.y6b{bottom:1061.068500px;}
.y14a{bottom:1063.777500px;}
.y3b{bottom:1064.728500px;}
.y248{bottom:1065.775500px;}
.y20f{bottom:1073.442000px;}
.y11a{bottom:1075.414500px;}
.y6a{bottom:1079.898000px;}
.y247{bottom:1083.036000px;}
.y149{bottom:1087.419000px;}
.y20e{bottom:1091.016000px;}
.y3a{bottom:1092.972000px;}
.y119{bottom:1094.244000px;}
.y69{bottom:1098.727500px;}
.y246{bottom:1100.296500px;}
.y68{bottom:1117.557000px;}
.y148{bottom:1119.037500px;}
.y67{bottom:1177.662000px;}
.he{height:26.110157px;}
.h16{height:29.589513px;}
.h15{height:29.967082px;}
.h9{height:30.461558px;}
.ha{height:30.712615px;}
.h7{height:32.130000px;}
.h18{height:33.797461px;}
.h23{height:34.811191px;}
.hf{height:34.813397px;}
.h20{height:34.830751px;}
.h13{height:35.100320px;}
.h22{height:35.255391px;}
.h1e{height:36.636710px;}
.h1a{height:37.078893px;}
.h17{height:37.153749px;}
.h19{height:37.627840px;}
.h1c{height:38.896243px;}
.h10{height:39.165235px;}
.h1f{height:39.184542px;}
.h1d{height:39.488026px;}
.h25{height:39.761719px;}
.h2e{height:41.343750px;}
.h1b{height:41.723369px;}
.h11{height:43.217759px;}
.h12{height:43.516637px;}
.h24{height:43.710293px;}
.hb{height:43.875290px;}
.h2f{height:44.268047px;}
.h6{height:45.900000px;}
.h28{height:47.826963px;}
.h27{height:47.898105px;}
.h3{height:48.195000px;}
.hd{height:54.547601px;}
.h2{height:55.080000px;}
.h26{height:66.945311px;}
.hc{height:77.792486px;}
.h5{height:78.030000px;}
.h29{height:84.032777px;}
.h2c{height:84.387485px;}
.h2d{height:88.149447px;}
.h2b{height:88.504155px;}
.h2a{height:88.510167px;}
.h4{height:119.055004px;}
.h14{height:191.847975px;}
.h21{height:280.348500px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:483.457050px;}
.w5{width:578.751000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x48{left:-199.263000px;}
.x24{left:-162.910575px;}
.x49{left:-3.693000px;}
.x0{left:0.000000px;}
.x26{left:3.323925px;}
.x4a{left:13.227000px;}
.x4e{left:28.167594px;}
.x27{left:30.404835px;}
.x6{left:52.525500px;}
.x5{left:53.574000px;}
.x51{left:85.848000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x4c{left:230.397000px;}
.x4b{left:245.787000px;}
.x9{left:248.526000px;}
.x7{left:249.591000px;}
.xc{left:254.173500px;}
.x2b{left:258.571500px;}
.x3b{left:264.073500px;}
.x1a{left:266.163000px;}
.x3e{left:268.249500px;}
.x8{left:269.448000px;}
.x39{left:271.620000px;}
.x2e{left:276.859500px;}
.x38{left:278.640000px;}
.x20{left:280.008000px;}
.xb{left:281.479500px;}
.x30{left:284.680500px;}
.x44{left:291.976500px;}
.x37{left:296.808000px;}
.x32{left:303.457500px;}
.x33{left:305.697000px;}
.x3a{left:310.563000px;}
.x1e{left:313.426500px;}
.x2a{left:318.706500px;}
.xd{left:329.370000px;}
.x2d{left:332.902500px;}
.x22{left:336.234000px;}
.x2f{left:338.505000px;}
.x23{left:364.374000px;}
.xe{left:366.226500px;}
.x1c{left:368.872500px;}
.xf{left:371.652000px;}
.x19{left:373.324500px;}
.x3c{left:383.428500px;}
.x4f{left:386.301000px;}
.x1d{left:387.919500px;}
.x3d{left:396.841500px;}
.x16{left:401.485500px;}
.x1b{left:412.389000px;}
.x21{left:433.864500px;}
.x3{left:454.959000px;}
.x31{left:456.760500px;}
.x1f{left:462.334500px;}
.x25{left:480.301425px;}
.x47{left:494.892000px;}
.x43{left:507.609000px;}
.x36{left:509.457000px;}
.x35{left:510.760500px;}
.x28{left:563.431500px;}
.x29{left:573.271500px;}
.x4d{left:579.056850px;}
.x2c{left:653.832000px;}
.x45{left:660.196500px;}
.x41{left:668.632500px;}
.x10{left:673.315500px;}
.x14{left:693.622500px;}
.x34{left:701.478000px;}
.x17{left:703.830000px;}
.xa{left:727.311000px;}
.x12{left:752.349000px;}
.x3f{left:776.185500px;}
.x18{left:781.180500px;}
.x50{left:783.489000px;}
.x40{left:789.808500px;}
.x42{left:792.858000px;}
.x46{left:805.563000px;}
.x13{left:833.104500px;}
.x11{left:835.815000px;}
.x15{left:837.022500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.597856pt;}
.v1{vertical-align:19.290667pt;}
.v5{vertical-align:35.842208pt;}
.ls30{letter-spacing:-0.876683pt;}
.ls31{letter-spacing:-0.281629pt;}
.ls74{letter-spacing:-0.181696pt;}
.ls33{letter-spacing:-0.158984pt;}
.ls6d{letter-spacing:-0.138944pt;}
.ls71{letter-spacing:-0.122912pt;}
.ls2e{letter-spacing:-0.118102pt;}
.ls72{letter-spacing:-0.117568pt;}
.ls5b{letter-spacing:-0.106880pt;}
.ls61{letter-spacing:-0.101536pt;}
.ls36{letter-spacing:-0.099933pt;}
.ls6c{letter-spacing:-0.096192pt;}
.ls5c{letter-spacing:-0.090848pt;}
.ls32{letter-spacing:-0.086306pt;}
.ls34{letter-spacing:-0.081763pt;}
.ls6b{letter-spacing:-0.080160pt;}
.ls65{letter-spacing:-0.074816pt;}
.ls5f{letter-spacing:-0.069472pt;}
.ls2c{letter-spacing:-0.068136pt;}
.ls6e{letter-spacing:-0.064128pt;}
.ls2a{letter-spacing:-0.063594pt;}
.ls2d{letter-spacing:-0.054509pt;}
.ls35{letter-spacing:-0.045424pt;}
.ls6a{letter-spacing:-0.042752pt;}
.ls73{letter-spacing:-0.037408pt;}
.ls59{letter-spacing:-0.034048pt;}
.ls68{letter-spacing:-0.033600pt;}
.ls70{letter-spacing:-0.032064pt;}
.ls2f{letter-spacing:-0.027254pt;}
.ls5d{letter-spacing:-0.026720pt;}
.ls25{letter-spacing:-0.021706pt;}
.ls66{letter-spacing:-0.021376pt;}
.ls29{letter-spacing:-0.018170pt;}
.ls5e{letter-spacing:-0.016032pt;}
.ls28{letter-spacing:-0.013627pt;}
.ls5a{letter-spacing:-0.012768pt;}
.ls6f{letter-spacing:-0.010688pt;}
.ls27{letter-spacing:-0.009085pt;}
.ls63{letter-spacing:-0.005344pt;}
.ls62{letter-spacing:-0.004800pt;}
.ls2b{letter-spacing:-0.004542pt;}
.ls26{letter-spacing:-0.003618pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.000387pt;}
.ls1b{letter-spacing:0.004542pt;}
.ls50{letter-spacing:0.005344pt;}
.ls17{letter-spacing:0.009085pt;}
.ls58{letter-spacing:0.010688pt;}
.ls19{letter-spacing:0.013627pt;}
.ls56{letter-spacing:0.014400pt;}
.ls46{letter-spacing:0.016032pt;}
.ls1e{letter-spacing:0.018170pt;}
.ls49{letter-spacing:0.021376pt;}
.ls18{letter-spacing:0.022712pt;}
.ls4f{letter-spacing:0.023424pt;}
.ls14{letter-spacing:0.024480pt;}
.ls51{letter-spacing:0.026720pt;}
.ls21{letter-spacing:0.027254pt;}
.ls4b{letter-spacing:0.028800pt;}
.ls16{letter-spacing:0.031797pt;}
.ls55{letter-spacing:0.033600pt;}
.ls23{letter-spacing:0.036339pt;}
.ls57{letter-spacing:0.037408pt;}
.ls1a{letter-spacing:0.040882pt;}
.ls20{letter-spacing:0.045424pt;}
.ls69{letter-spacing:0.048096pt;}
.ls24{letter-spacing:0.049966pt;}
.ls53{letter-spacing:0.052704pt;}
.ls15{letter-spacing:0.053040pt;}
.ls22{letter-spacing:0.054509pt;}
.ls54{letter-spacing:0.057600pt;}
.ls1c{letter-spacing:0.059051pt;}
.ls1d{letter-spacing:0.081763pt;}
.ls52{letter-spacing:0.085504pt;}
.ls1f{letter-spacing:0.090848pt;}
.ls64{letter-spacing:0.096192pt;}
.ls67{letter-spacing:0.106880pt;}
.ls4a{letter-spacing:0.117568pt;}
.ls48{letter-spacing:0.122912pt;}
.ls13{letter-spacing:0.133851pt;}
.ls60{letter-spacing:0.138944pt;}
.ls12{letter-spacing:0.144704pt;}
.ls45{letter-spacing:0.153216pt;}
.ls47{letter-spacing:0.160320pt;}
.ls44{letter-spacing:0.161728pt;}
.ls2{letter-spacing:2.657067pt;}
.ls7{letter-spacing:10.626533pt;}
.ls43{letter-spacing:10.632143pt;}
.ls39{letter-spacing:11.901986pt;}
.ls76{letter-spacing:11.954133pt;}
.ls37{letter-spacing:12.114522pt;}
.ls42{letter-spacing:12.554667pt;}
.ls3c{letter-spacing:12.747352pt;}
.ls3f{letter-spacing:12.999080pt;}
.lsd{letter-spacing:13.177199pt;}
.lse{letter-spacing:13.230333pt;}
.ls9{letter-spacing:13.283467pt;}
.ls40{letter-spacing:13.283733pt;}
.ls3e{letter-spacing:13.284147pt;}
.lsa{letter-spacing:13.336601pt;}
.ls3b{letter-spacing:13.442868pt;}
.lsb{letter-spacing:13.655404pt;}
.ls8{letter-spacing:14.505546pt;}
.ls3d{letter-spacing:14.557250pt;}
.ls11{letter-spacing:15.461955pt;}
.ls75{letter-spacing:15.833892pt;}
.ls3{letter-spacing:15.942400pt;}
.ls10{letter-spacing:18.384318pt;}
.lsc{letter-spacing:18.703121pt;}
.lsf{letter-spacing:19.075058pt;}
.ls6{letter-spacing:21.572350pt;}
.ls1{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls41{letter-spacing:124.376658pt;}
.ls4e{letter-spacing:128.720928pt;}
.ls38{letter-spacing:189.657141pt;}
.ls4c{letter-spacing:662.479648pt;}
.ls4d{letter-spacing:671.762176pt;}
.wsed{word-spacing:-58.560000pt;}
.wsea{word-spacing:-53.440000pt;}
.ws8e{word-spacing:-45.424000pt;}
.wsee{word-spacing:-14.663424pt;}
.wseb{word-spacing:-13.360000pt;}
.ws3f{word-spacing:-13.283467pt;}
.wse5{word-spacing:-11.955200pt;}
.wse8{word-spacing:-10.801728pt;}
.wse9{word-spacing:-10.640000pt;}
.ws29{word-spacing:-10.626800pt;}
.wsc{word-spacing:-10.095467pt;}
.wsb{word-spacing:-9.298400pt;}
.ws8b{word-spacing:-9.188704pt;}
.ws8c{word-spacing:-9.044000pt;}
.ws1f{word-spacing:-3.538739pt;}
.ws43{word-spacing:-3.506835pt;}
.ws47{word-spacing:-3.347434pt;}
.wse0{word-spacing:-3.294300pt;}
.ws1e{word-spacing:-3.062863pt;}
.ws112{word-spacing:-3.051424pt;}
.ws111{word-spacing:-3.040736pt;}
.wsf6{word-spacing:-2.709408pt;}
.wsc0{word-spacing:-2.698186pt;}
.ws85{word-spacing:-2.497292pt;}
.wsf4{word-spacing:-2.495648pt;}
.wsba{word-spacing:-2.412014pt;}
.wsbc{word-spacing:-2.398387pt;}
.wsf5{word-spacing:-2.372736pt;}
.wsbf{word-spacing:-2.371133pt;}
.ws66{word-spacing:-2.337890pt;}
.ws164{word-spacing:-2.247578pt;}
.wsbb{word-spacing:-2.094046pt;}
.ws48{word-spacing:-2.072221pt;}
.wsd1{word-spacing:-2.019087pt;}
.ws132{word-spacing:-1.965953pt;}
.ws3a{word-spacing:-1.647150pt;}
.ws16f{word-spacing:-1.625907pt;}
.ws130{word-spacing:-1.540882pt;}
.ws131{word-spacing:-1.487748pt;}
.ws88{word-spacing:-1.381481pt;}
.ws136{word-spacing:-1.275213pt;}
.wsc3{word-spacing:-1.244618pt;}
.ws20{word-spacing:-1.195520pt;}
.wsc4{word-spacing:-1.190109pt;}
.ws64{word-spacing:-1.168945pt;}
.wsd2{word-spacing:-1.115811pt;}
.wsef{word-spacing:-1.009543pt;}
.ws141{word-spacing:-1.004237pt;}
.ws142{word-spacing:-0.956416pt;}
.ws54{word-spacing:-0.956410pt;}
.ws2a{word-spacing:-0.903276pt;}
.ws51{word-spacing:-0.850142pt;}
.ws96{word-spacing:-0.754038pt;}
.ws87{word-spacing:-0.743874pt;}
.ws140{word-spacing:-0.669491pt;}
.ws40{word-spacing:-0.531339pt;}
.wsb0{word-spacing:-0.508749pt;}
.wsa2{word-spacing:-0.490579pt;}
.wsd3{word-spacing:-0.478205pt;}
.wsb9{word-spacing:-0.458782pt;}
.wsaa{word-spacing:-0.454240pt;}
.wsf{word-spacing:-0.430387pt;}
.ws69{word-spacing:-0.425071pt;}
.wsa3{word-spacing:-0.408816pt;}
.ws37{word-spacing:-0.371937pt;}
.wsff{word-spacing:-0.358048pt;}
.ws153{word-spacing:-0.334746pt;}
.ws3c{word-spacing:-0.318803pt;}
.ws158{word-spacing:-0.286925pt;}
.ws45{word-spacing:-0.265669pt;}
.ws9f{word-spacing:-0.258917pt;}
.ws101{word-spacing:-0.245824pt;}
.wsf1{word-spacing:-0.242592pt;}
.ws116{word-spacing:-0.240480pt;}
.ws13d{word-spacing:-0.239104pt;}
.ws10a{word-spacing:-0.219104pt;}
.ws38{word-spacing:-0.212535pt;}
.ws90{word-spacing:-0.209821pt;}
.ws14{word-spacing:-0.191283pt;}
.ws103{word-spacing:-0.187200pt;}
.ws11d{word-spacing:-0.176352pt;}
.ws31{word-spacing:-0.159402pt;}
.ws156{word-spacing:-0.149952pt;}
.ws117{word-spacing:-0.144288pt;}
.ws16{word-spacing:-0.143462pt;}
.wsab{word-spacing:-0.131730pt;}
.ws22{word-spacing:-0.106268pt;}
.ws10{word-spacing:-0.095642pt;}
.wsf2{word-spacing:-0.068096pt;}
.ws91{word-spacing:-0.061499pt;}
.wsfe{word-spacing:-0.058784pt;}
.wsec{word-spacing:-0.053440pt;}
.ws46{word-spacing:-0.053134pt;}
.ws1b{word-spacing:-0.047821pt;}
.wsf0{word-spacing:-0.046816pt;}
.ws8d{word-spacing:-0.045424pt;}
.ws8f{word-spacing:-0.043411pt;}
.wsbe{word-spacing:-0.040882pt;}
.ws107{word-spacing:-0.016032pt;}
.ws15d{word-spacing:-0.009455pt;}
.ws157{word-spacing:-0.009045pt;}
.ws171{word-spacing:-0.008533pt;}
.ws149{word-spacing:-0.008226pt;}
.ws165{word-spacing:-0.007782pt;}
.ws161{word-spacing:-0.006144pt;}
.ws14c{word-spacing:-0.005965pt;}
.ws169{word-spacing:-0.005939pt;}
.ws3{word-spacing:-0.005357pt;}
.ws16e{word-spacing:-0.002935pt;}
.ws14f{word-spacing:-0.002449pt;}
.ws162{word-spacing:-0.001502pt;}
.ws0{word-spacing:0.000000pt;}
.ws28{word-spacing:0.003199pt;}
.wsa9{word-spacing:0.018170pt;}
.ws10c{word-spacing:0.029280pt;}
.ws9a{word-spacing:0.031797pt;}
.ws110{word-spacing:0.032064pt;}
.ws95{word-spacing:0.040882pt;}
.ws11f{word-spacing:0.042752pt;}
.wsa8{word-spacing:0.045424pt;}
.ws1c{word-spacing:0.047821pt;}
.ws3b{word-spacing:0.053134pt;}
.ws108{word-spacing:0.053440pt;}
.ws105{word-spacing:0.058560pt;}
.wsfd{word-spacing:0.058784pt;}
.ws99{word-spacing:0.059051pt;}
.ws10b{word-spacing:0.080160pt;}
.wsa6{word-spacing:0.081763pt;}
.ws94{word-spacing:0.085680pt;}
.ws11e{word-spacing:0.090848pt;}
.ws11{word-spacing:0.095642pt;}
.ws34{word-spacing:0.106268pt;}
.ws120{word-spacing:0.112224pt;}
.ws93{word-spacing:0.114240pt;}
.wsd6{word-spacing:0.143462pt;}
.ws10d{word-spacing:0.144000pt;}
.ws10e{word-spacing:0.158400pt;}
.wsbd{word-spacing:0.158984pt;}
.ws2d{word-spacing:0.159402pt;}
.ws102{word-spacing:0.163200pt;}
.ws100{word-spacing:0.181696pt;}
.ws14d{word-spacing:0.191283pt;}
.ws10f{word-spacing:0.192000pt;}
.ws23{word-spacing:0.212535pt;}
.ws144{word-spacing:0.239104pt;}
.ws2f{word-spacing:0.265669pt;}
.ws13e{word-spacing:0.286925pt;}
.ws35{word-spacing:0.318803pt;}
.ws5f{word-spacing:0.371937pt;}
.ws1d{word-spacing:0.382566pt;}
.wsb8{word-spacing:0.404274pt;}
.wscd{word-spacing:0.425071pt;}
.ws11a{word-spacing:0.443552pt;}
.ws2e{word-spacing:0.478205pt;}
.ws155{word-spacing:0.478208pt;}
.ws63{word-spacing:0.531339pt;}
.ws119{word-spacing:0.539744pt;}
.ws135{word-spacing:0.584473pt;}
.ws97{word-spacing:0.595054pt;}
.wse6{word-spacing:0.595575pt;}
.wsa4{word-spacing:0.626851pt;}
.ws72{word-spacing:0.637606pt;}
.ws44{word-spacing:0.690740pt;}
.ws33{word-spacing:0.743874pt;}
.ws65{word-spacing:0.797008pt;}
.ws8a{word-spacing:0.850142pt;}
.wsc5{word-spacing:0.858514pt;}
.wsa5{word-spacing:0.894853pt;}
.ws89{word-spacing:0.903276pt;}
.ws14a{word-spacing:0.908595pt;}
.ws6d{word-spacing:0.956410pt;}
.ws118{word-spacing:1.015360pt;}
.ws11b{word-spacing:1.042080pt;}
.ws81{word-spacing:1.062677pt;}
.ws11c{word-spacing:1.063456pt;}
.wsb5{word-spacing:1.112888pt;}
.ws9e{word-spacing:1.158312pt;}
.ws9d{word-spacing:1.181024pt;}
.ws160{word-spacing:1.195520pt;}
.wsa{word-spacing:1.227389pt;}
.ws84{word-spacing:1.275213pt;}
.ws170{word-spacing:1.291162pt;}
.ws68{word-spacing:1.328347pt;}
.ws4b{word-spacing:1.381481pt;}
.ws14b{word-spacing:1.386803pt;}
.ws9c{word-spacing:1.426314pt;}
.ws71{word-spacing:1.434614pt;}
.wsaf{word-spacing:1.444483pt;}
.ws52{word-spacing:1.487748pt;}
.ws1a{word-spacing:1.530266pt;}
.ws148{word-spacing:1.578086pt;}
.ws53{word-spacing:1.594016pt;}
.ws121{word-spacing:1.651296pt;}
.ws86{word-spacing:1.700284pt;}
.ws9b{word-spacing:1.712485pt;}
.ws122{word-spacing:1.747488pt;}
.ws2c{word-spacing:1.753418pt;}
.ws49{word-spacing:1.806551pt;}
.ws7d{word-spacing:1.859685pt;}
.ws12{word-spacing:1.865011pt;}
.ws4f{word-spacing:1.912819pt;}
.ws15{word-spacing:1.960653pt;}
.ws4a{word-spacing:1.965953pt;}
.ws15a{word-spacing:2.008474pt;}
.ws59{word-spacing:2.019087pt;}
.ws18{word-spacing:2.056294pt;}
.ws7f{word-spacing:2.072221pt;}
.ws74{word-spacing:2.125355pt;}
.ws143{word-spacing:2.151936pt;}
.ws73{word-spacing:2.178489pt;}
.wsfb{word-spacing:2.196384pt;}
.ws13{word-spacing:2.199757pt;}
.ws6e{word-spacing:2.231622pt;}
.ws2{word-spacing:2.232271pt;}
.ws1{word-spacing:2.232481pt;}
.wse{word-spacing:2.247578pt;}
.ws7a{word-spacing:2.284756pt;}
.ws13c{word-spacing:2.295398pt;}
.ws32{word-spacing:2.337890pt;}
.ws13b{word-spacing:2.343219pt;}
.wsfc{word-spacing:2.388768pt;}
.ws7b{word-spacing:2.391024pt;}
.ws39{word-spacing:2.497292pt;}
.ws146{word-spacing:2.534502pt;}
.wse7{word-spacing:2.545023pt;}
.ws6b{word-spacing:2.550426pt;}
.ws5a{word-spacing:2.603559pt;}
.ws7e{word-spacing:2.656693pt;}
.ws13f{word-spacing:2.713148pt;}
.wsb4{word-spacing:2.743610pt;}
.ws58{word-spacing:2.762961pt;}
.ws151{word-spacing:2.769930pt;}
.wsac{word-spacing:2.770864pt;}
.ws147{word-spacing:2.773606pt;}
.ws75{word-spacing:2.816095pt;}
.wsb3{word-spacing:2.857170pt;}
.ws15c{word-spacing:2.861841pt;}
.ws163{word-spacing:2.861909pt;}
.ws16d{word-spacing:2.863428pt;}
.ws14e{word-spacing:2.863471pt;}
.ws166{word-spacing:2.865459pt;}
.ws159{word-spacing:2.865852pt;}
.ws5b{word-spacing:2.869229pt;}
.ws145{word-spacing:2.869248pt;}
.ws128{word-spacing:2.922363pt;}
.ws80{word-spacing:2.975497pt;}
.ws154{word-spacing:3.060531pt;}
.wsb1{word-spacing:3.079747pt;}
.ws139{word-spacing:3.081764pt;}
.ws16b{word-spacing:3.108352pt;}
.ws55{word-spacing:3.134898pt;}
.wsb2{word-spacing:3.184222pt;}
.ws21{word-spacing:3.188032pt;}
.ws24{word-spacing:3.241166pt;}
.wscf{word-spacing:3.347434pt;}
.ws19{word-spacing:3.347456pt;}
.ws16c{word-spacing:3.395277pt;}
.ws50{word-spacing:3.400567pt;}
.ws4d{word-spacing:3.453701pt;}
.ws76{word-spacing:3.506835pt;}
.ws7c{word-spacing:3.559969pt;}
.wsa7{word-spacing:3.565784pt;}
.ws15b{word-spacing:3.586560pt;}
.wsa0{word-spacing:3.611208pt;}
.wsfa{word-spacing:3.617888pt;}
.wsf9{word-spacing:3.628576pt;}
.ws17{word-spacing:3.634381pt;}
.wsae{word-spacing:3.665717pt;}
.ws167{word-spacing:3.682202pt;}
.ws137{word-spacing:3.719371pt;}
.ws30{word-spacing:3.825638pt;}
.wsce{word-spacing:3.878772pt;}
.wsf8{word-spacing:3.922496pt;}
.ws61{word-spacing:3.931906pt;}
.ws138{word-spacing:3.985040pt;}
.ws12e{word-spacing:4.091308pt;}
.wscc{word-spacing:4.144442pt;}
.ws6c{word-spacing:4.250709pt;}
.wsf7{word-spacing:4.328640pt;}
.ws15f{word-spacing:4.399514pt;}
.ws62{word-spacing:4.410111pt;}
.ws6a{word-spacing:4.463245pt;}
.ws127{word-spacing:4.547744pt;}
.ws13a{word-spacing:4.569513pt;}
.ws36{word-spacing:4.622646pt;}
.ws16a{word-spacing:4.686438pt;}
.wsc8{word-spacing:4.835182pt;}
.ws8{word-spacing:4.872362pt;}
.ws6f{word-spacing:4.888316pt;}
.ws70{word-spacing:4.941450pt;}
.wsa1{word-spacing:4.964843pt;}
.ws4e{word-spacing:4.994583pt;}
.ws124{word-spacing:4.996640pt;}
.ws123{word-spacing:5.001984pt;}
.ws4c{word-spacing:5.047717pt;}
.ws2b{word-spacing:5.100851pt;}
.ws15e{word-spacing:5.164646pt;}
.ws5e{word-spacing:5.260253pt;}
.ws150{word-spacing:5.260288pt;}
.ws57{word-spacing:5.313387pt;}
.ws26{word-spacing:5.419654pt;}
.wsb6{word-spacing:5.469050pt;}
.ws27{word-spacing:5.472788pt;}
.ws98{word-spacing:5.523558pt;}
.wsd0{word-spacing:5.525922pt;}
.wsb7{word-spacing:5.541728pt;}
.wscb{word-spacing:5.632190pt;}
.ws134{word-spacing:5.685324pt;}
.ws56{word-spacing:5.791591pt;}
.ws77{word-spacing:5.844725pt;}
.ws3e{word-spacing:5.897859pt;}
.ws67{word-spacing:6.057261pt;}
.wsc6{word-spacing:6.163529pt;}
.wsc1{word-spacing:6.273054pt;}
.ws83{word-spacing:6.322930pt;}
.ws129{word-spacing:6.376064pt;}
.wsc2{word-spacing:6.413869pt;}
.wsc7{word-spacing:6.535466pt;}
.ws79{word-spacing:6.588599pt;}
.wsca{word-spacing:6.694867pt;}
.wsc9{word-spacing:6.748001pt;}
.ws115{word-spacing:6.824288pt;}
.ws82{word-spacing:6.854269pt;}
.ws114{word-spacing:6.893760pt;}
.ws5d{word-spacing:6.907403pt;}
.ws60{word-spacing:7.013670pt;}
.ws5c{word-spacing:7.066804pt;}
.ws133{word-spacing:7.119938pt;}
.wsad{word-spacing:7.213331pt;}
.ws12f{word-spacing:7.279340pt;}
.ws25{word-spacing:7.332474pt;}
.ws78{word-spacing:7.385607pt;}
.ws113{word-spacing:7.401440pt;}
.ws3d{word-spacing:7.438741pt;}
.ws125{word-spacing:7.476256pt;}
.ws12b{word-spacing:7.491875pt;}
.wsd{word-spacing:7.527876pt;}
.ws12a{word-spacing:7.545009pt;}
.ws126{word-spacing:7.620544pt;}
.ws42{word-spacing:8.448285pt;}
.ws41{word-spacing:8.607686pt;}
.ws152{word-spacing:8.607744pt;}
.ws6{word-spacing:8.740496pt;}
.ws92{word-spacing:8.779915pt;}
.ws12d{word-spacing:9.457828pt;}
.ws12c{word-spacing:9.510962pt;}
.wsf3{word-spacing:10.325056pt;}
.ws168{word-spacing:10.424934pt;}
.ws7{word-spacing:10.525789pt;}
.ws106{word-spacing:11.281184pt;}
.ws4{word-spacing:13.761632pt;}
.ws9{word-spacing:14.282342pt;}
.ws5{word-spacing:19.857270pt;}
.ws109{word-spacing:40.560960pt;}
.wse4{word-spacing:40.886784pt;}
.wsd7{word-spacing:114.482995pt;}
.wsd5{word-spacing:126.868582pt;}
.wse3{word-spacing:130.789888pt;}
.ws104{word-spacing:133.824448pt;}
.wsd4{word-spacing:167.372800pt;}
.wsd8{word-spacing:191.283200pt;}
.wse2{word-spacing:327.488000pt;}
.wse1{word-spacing:336.801894pt;}
.wsdd{word-spacing:387.300659pt;}
.wsda{word-spacing:387.697698pt;}
.wsdf{word-spacing:395.669299pt;}
.wsdc{word-spacing:404.277043pt;}
.wsde{word-spacing:404.288000pt;}
.wsdb{word-spacing:404.293333pt;}
.wsd9{word-spacing:413.602099pt;}
._38{margin-left:-54.514144pt;}
._39{margin-left:-12.407021pt;}
._6{margin-left:-10.616218pt;}
._8{margin-left:-7.077478pt;}
._b{margin-left:-5.900770pt;}
._1{margin-left:-4.797974pt;}
._c{margin-left:-3.830987pt;}
._0{margin-left:-2.752326pt;}
._5{margin-left:-1.301776pt;}
._21{width:0.947811pt;}
._9{width:2.666270pt;}
._20{width:3.931906pt;}
._41{width:8.505600pt;}
._2{width:11.530016pt;}
._e{width:13.294182pt;}
._10{width:14.441882pt;}
._d{width:15.512751pt;}
._12{width:16.662867pt;}
._18{width:17.746711pt;}
._14{width:19.128320pt;}
._f{width:20.802048pt;}
._3{width:22.502128pt;}
._1a{width:24.080407pt;}
._13{width:25.153741pt;}
._11{width:26.110157pt;}
._4{width:27.783619pt;}
._7{width:29.648896pt;}
._1d{width:30.578537pt;}
._1b{width:32.145989pt;}
._15{width:33.314934pt;}
._1c{width:34.643138pt;}
._1f{width:36.678294pt;}
._1e{width:39.380584pt;}
._19{width:43.357235pt;}
._3b{width:44.359896pt;}
._a{width:48.358690pt;}
._3e{width:62.384082pt;}
._3a{width:93.253824pt;}
._3c{width:102.439136pt;}
._28{width:126.438195pt;}
._25{width:145.614336pt;}
._24{width:214.130961pt;}
._2e{width:277.585779pt;}
._23{width:330.011341pt;}
._33{width:334.947498pt;}
._2f{width:338.013309pt;}
._30{width:339.432038pt;}
._2d{width:358.034330pt;}
._31{width:368.985293pt;}
._2c{width:415.436595pt;}
._26{width:417.045197pt;}
._2b{width:434.834534pt;}
._29{width:436.938650pt;}
._40{width:438.075424pt;}
._35{width:474.206947pt;}
._2a{width:479.175030pt;}
._34{width:514.025779pt;}
._32{width:528.706765pt;}
._16{width:784.431464pt;}
._27{width:801.444682pt;}
._3d{width:981.092112pt;}
._3f{width:1120.690240pt;}
._22{width:1590.814277pt;}
._37{width:1849.769533pt;}
._36{width:2233.485716pt;}
._17{width:2254.739050pt;}
.fs9{font-size:31.880533pt;}
.fsc{font-size:36.176000pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:40.381867pt;}
.fse{font-size:40.800000pt;}
.fsa{font-size:42.507200pt;}
.fs11{font-size:42.560000pt;}
.fs10{font-size:44.292800pt;}
.fsd{font-size:45.424000pt;}
.fsb{font-size:47.820800pt;}
.fs13{font-size:48.000000pt;}
.fsf{font-size:49.829333pt;}
.fs6{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs12{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fs14{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:95.641600pt;}
.yf1{bottom:-661.254327pt;}
.y117{bottom:-614.659720pt;}
.y116{bottom:-600.176278pt;}
.y115{bottom:-585.624699pt;}
.y114{bottom:-571.141257pt;}
.y113{bottom:-553.189692pt;}
.y112{bottom:-525.038168pt;}
.y111{bottom:-510.554726pt;}
.y110{bottom:-496.003147pt;}
.y10f{bottom:-481.451569pt;}
.y10e{bottom:-466.968127pt;}
.y10d{bottom:-452.416548pt;}
.y10c{bottom:-437.931970pt;}
.y10b{bottom:-423.380392pt;}
.y10a{bottom:-408.828813pt;}
.y109{bottom:-394.345371pt;}
.y108{bottom:-379.793793pt;}
.y107{bottom:-365.310350pt;}
.y1a2{bottom:-361.490267pt;}
.y106{bottom:-350.758772pt;}
.y105{bottom:-336.207193pt;}
.y104{bottom:-318.323765pt;}
.y103{bottom:-290.172241pt;}
.y1c4{bottom:-277.804339pt;}
.y102{bottom:-275.688798pt;}
.y101{bottom:-261.137220pt;}
.y1c3{bottom:-260.684835pt;}
.y100{bottom:-246.585641pt;}
.y1c2{bottom:-243.565331pt;}
.yff{bottom:-232.101063pt;}
.y1c1{bottom:-226.525987pt;}
.yfe{bottom:-217.549485pt;}
.y1c0{bottom:-209.406483pt;}
.yfd{bottom:-202.997907pt;}
.y1bf{bottom:-192.286979pt;}
.yfc{bottom:-185.114478pt;}
.y1be{bottom:-175.247635pt;}
.y1bd{bottom:-158.128131pt;}
.yfb{bottom:-156.962954pt;}
.yfa{bottom:-142.479511pt;}
.y1bc{bottom:-141.088787pt;}
.yf9{bottom:-127.927933pt;}
.y1bb{bottom:-123.969283pt;}
.yf8{bottom:-113.376355pt;}
.y1ba{bottom:-106.849779pt;}
.yf7{bottom:-98.892912pt;}
.y1b9{bottom:-89.810435pt;}
.yf6{bottom:-84.341334pt;}
.y1b8{bottom:-72.690931pt;}
.yf5{bottom:-69.857891pt;}
.yf4{bottom:-51.906327pt;}
.y1b7{bottom:-51.650267pt;}
.yf3{bottom:-24.094327pt;}
.y1b6{bottom:-18.930267pt;}
.yf2{bottom:-7.094327pt;}
.y0{bottom:0.000000pt;}
.y1b5{bottom:1.149733pt;}
.y66{bottom:28.346667pt;}
.y6{bottom:31.933340pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y118{bottom:89.266667pt;}
.y191{bottom:92.108000pt;}
.y39{bottom:93.018667pt;}
.y65{bottom:97.500000pt;}
.y245{bottom:98.896000pt;}
.y20d{bottom:100.410667pt;}
.y27b{bottom:103.518667pt;}
.ya7{bottom:104.713333pt;}
.y1e2{bottom:105.909333pt;}
.y9d{bottom:106.308000pt;}
.yd4{bottom:107.105333pt;}
.y190{bottom:108.844000pt;}
.y38{bottom:108.920000pt;}
.yee{bottom:109.202667pt;}
.y64{bottom:114.237333pt;}
.y244{bottom:114.238667pt;}
.y20c{bottom:116.032000pt;}
.y27a{bottom:118.861333pt;}
.y170{bottom:121.422667pt;}
.ya6{bottom:121.450667pt;}
.y1e1{bottom:122.646667pt;}
.y9c{bottom:123.045333pt;}
.y22{bottom:123.790666pt;}
.yd3{bottom:123.842667pt;}
.y37{bottom:124.820000pt;}
.y18f{bottom:125.581333pt;}
.y243{bottom:129.581333pt;}
.y63{bottom:130.974667pt;}
.y20b{bottom:131.653333pt;}
.y279{bottom:134.202667pt;}
.y147{bottom:134.204000pt;}
.ya5{bottom:138.188000pt;}
.y1e0{bottom:139.384000pt;}
.y9b{bottom:139.782667pt;}
.yd2{bottom:140.580000pt;}
.y36{bottom:140.720000pt;}
.y18e{bottom:142.318667pt;}
.y16f{bottom:142.437333pt;}
.y242{bottom:144.922667pt;}
.y62{bottom:147.712000pt;}
.y278{bottom:149.545333pt;}
.y146{bottom:150.941333pt;}
.ya4{bottom:154.925333pt;}
.y20a{bottom:155.245333pt;}
.y1df{bottom:156.121333pt;}
.y9a{bottom:156.520000pt;}
.y35{bottom:156.621333pt;}
.yd1{bottom:157.317333pt;}
.y18d{bottom:159.056000pt;}
.y241{bottom:160.265333pt;}
.y16e{bottom:163.450667pt;}
.y61{bottom:164.449333pt;}
.y277{bottom:164.888000pt;}
.y145{bottom:167.678667pt;}
.y209{bottom:170.866667pt;}
.ya3{bottom:171.662667pt;}
.y34{bottom:172.521333pt;}
.y1de{bottom:172.858667pt;}
.y99{bottom:173.257333pt;}
.y19{bottom:175.052000pt;}
.y240{bottom:175.608000pt;}
.y1d2{bottom:175.793333pt;}
.yd0{bottom:178.038667pt;}
.y276{bottom:180.230667pt;}
.y144{bottom:184.416000pt;}
.y16d{bottom:184.465333pt;}
.y60{bottom:185.170667pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.ya2{bottom:188.400000pt;}
.y33{bottom:188.421333pt;}
.y1dd{bottom:189.596000pt;}
.y98{bottom:189.994667pt;}
.y23f{bottom:190.950667pt;}
.y1d1{bottom:192.530667pt;}
.y208{bottom:194.457333pt;}
.y275{bottom:195.573333pt;}
.yf0{bottom:197.177775pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y18c{bottom:199.225333pt;}
.y143{bottom:201.153333pt;}
.y32{bottom:204.322667pt;}
.yef{bottom:204.453673pt;}
.ya1{bottom:205.137333pt;}
.y16c{bottom:205.478667pt;}
.y23e{bottom:206.293333pt;}
.y1dc{bottom:206.333333pt;}
.y97{bottom:206.732000pt;}
.ycf{bottom:207.926667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y1d0{bottom:209.268000pt;}
.y207{bottom:210.078667pt;}
.y274{bottom:210.916000pt;}
.y142{bottom:217.889333pt;}
.y18b{bottom:220.238667pt;}
.y23d{bottom:221.636000pt;}
.ya0{bottom:221.874667pt;}
.y1db{bottom:223.070667pt;}
.y96{bottom:223.469333pt;}
.y206{bottom:225.700000pt;}
.y1cf{bottom:226.005333pt;}
.y273{bottom:226.258667pt;}
.y16b{bottom:226.493333pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y23c{bottom:236.978667pt;}
.y141{bottom:238.612000pt;}
.y1da{bottom:239.808000pt;}
.y95{bottom:240.206667pt;}
.yce{bottom:240.605333pt;}
.y18a{bottom:241.253333pt;}
.y205{bottom:241.322667pt;}
.y272{bottom:241.601333pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y9f{bottom:242.597333pt;}
.y1ce{bottom:242.742667pt;}
.y16a{bottom:247.506667pt;}
.y5f{bottom:251.972000pt;}
.y23b{bottom:252.321333pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y1d9{bottom:256.545333pt;}
.y94{bottom:256.944000pt;}
.ycd{bottom:257.341333pt;}
.y1cd{bottom:259.480000pt;}
.y9e{bottom:260.529333pt;}
.y31{bottom:264.148000pt;}
.y23a{bottom:267.664000pt;}
.y140{bottom:268.500000pt;}
.y169{bottom:268.520000pt;}
.y1b4{bottom:269.149733pt;}
.y189{bottom:269.360000pt;}
.y271{bottom:272.285333pt;}
.y204{bottom:272.884000pt;}
.y1d8{bottom:273.282667pt;}
.y93{bottom:273.681333pt;}
.ycc{bottom:274.078667pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y1cc{bottom:276.217333pt;}
.y30{bottom:280.048000pt;}
.y239{bottom:283.005333pt;}
.y5e{bottom:285.206667pt;}
.y13f{bottom:285.237333pt;}
.y1b3{bottom:286.429181pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y270{bottom:287.628000pt;}
.y168{bottom:289.534667pt;}
.y203{bottom:289.621333pt;}
.y1d7{bottom:290.020000pt;}
.y92{bottom:290.417333pt;}
.ycb{bottom:290.816000pt;}
.y1cb{bottom:292.954667pt;}
.yed{bottom:295.200000pt;}
.y1b2{bottom:295.389733pt;}
.y2f{bottom:295.948000pt;}
.y238{bottom:298.348000pt;}
.y27e{bottom:298.920000pt;}
.y13e{bottom:301.974667pt;}
.y188{bottom:302.098667pt;}
.y5d{bottom:302.501333pt;}
.y26f{bottom:302.970667pt;}
.y202{bottom:306.358667pt;}
.y1d6{bottom:306.757333pt;}
.y91{bottom:307.154667pt;}
.yca{bottom:307.553333pt;}
.y10{bottom:309.452000pt;}
.y1ca{bottom:309.692000pt;}
.y167{bottom:310.548000pt;}
.y2e{bottom:311.849333pt;}
.yec{bottom:311.937333pt;}
.y237{bottom:313.690667pt;}
.y27d{bottom:314.261333pt;}
.y26e{bottom:318.313333pt;}
.y13d{bottom:318.712000pt;}
.y187{bottom:318.836000pt;}
.y5c{bottom:319.797333pt;}
.y201{bottom:323.096000pt;}
.y1b1{bottom:323.469733pt;}
.y1d5{bottom:323.494667pt;}
.y90{bottom:323.892000pt;}
.yc9{bottom:324.290667pt;}
.y1c9{bottom:326.429333pt;}
.yeb{bottom:328.674667pt;}
.y236{bottom:329.033333pt;}
.y27c{bottom:329.604000pt;}
.y166{bottom:331.562667pt;}
.y26d{bottom:333.656000pt;}
.y13c{bottom:335.449333pt;}
.y186{bottom:335.573333pt;}
.y2d{bottom:335.720000pt;}
.y5b{bottom:337.092000pt;}
.y200{bottom:339.833333pt;}
.y1d4{bottom:340.232000pt;}
.y8f{bottom:340.629333pt;}
.yc8{bottom:341.028000pt;}
.y1c8{bottom:343.166667pt;}
.y1b0{bottom:343.470491pt;}
.yf{bottom:343.809333pt;}
.y235{bottom:344.376000pt;}
.y26c{bottom:348.998667pt;}
.y2c{bottom:351.620000pt;}
.y13b{bottom:352.186667pt;}
.y185{bottom:352.310667pt;}
.y1af{bottom:352.509867pt;}
.y165{bottom:352.576000pt;}
.y5a{bottom:354.388000pt;}
.y1ff{bottom:356.570667pt;}
.y8e{bottom:357.366667pt;}
.yc7{bottom:357.765333pt;}
.y234{bottom:359.718667pt;}
.y1c7{bottom:359.904000pt;}
.y1d3{bottom:360.953333pt;}
.yea{bottom:361.352000pt;}
.ye{bottom:362.706666pt;}
.y26b{bottom:364.341333pt;}
.y2b{bottom:367.520000pt;}
.y13a{bottom:368.924000pt;}
.y184{bottom:369.048000pt;}
.y59{bottom:371.682667pt;}
.y1fe{bottom:373.308000pt;}
.y164{bottom:373.590667pt;}
.y8d{bottom:374.104000pt;}
.yc6{bottom:374.502667pt;}
.y233{bottom:375.061333pt;}
.ye9{bottom:378.089333pt;}
.y26a{bottom:379.684000pt;}
.y1ae{bottom:380.110357pt;}
.y1c6{bottom:380.626667pt;}
.y2a{bottom:383.421333pt;}
.y139{bottom:385.661333pt;}
.y183{bottom:385.785333pt;}
.y58{bottom:388.977333pt;}
.y1ad{bottom:389.149733pt;}
.y1fd{bottom:390.045333pt;}
.y232{bottom:390.404000pt;}
.y8c{bottom:390.841333pt;}
.yc5{bottom:391.240000pt;}
.y269{bottom:395.025333pt;}
.y29{bottom:399.321333pt;}
.y163{bottom:401.697333pt;}
.y138{bottom:402.398667pt;}
.y182{bottom:402.522667pt;}
.y231{bottom:405.745333pt;}
.y1c5{bottom:406.062667pt;}
.y57{bottom:406.273333pt;}
.y1fc{bottom:406.782667pt;}
.y8b{bottom:407.578667pt;}
.yc4{bottom:407.977333pt;}
.y268{bottom:410.368000pt;}
.ye8{bottom:410.766667pt;}
.y28{bottom:415.221333pt;}
.y1ac{bottom:416.749733pt;}
.y181{bottom:419.260000pt;}
.y230{bottom:421.088000pt;}
.y137{bottom:423.121333pt;}
.y1fb{bottom:423.518667pt;}
.y56{bottom:423.568000pt;}
.y8a{bottom:424.316000pt;}
.yc3{bottom:424.714667pt;}
.y267{bottom:425.710667pt;}
.y19f{bottom:426.000000pt;}
.ye7{bottom:427.504000pt;}
.y27{bottom:431.122667pt;}
.y162{bottom:434.678667pt;}
.y1ab{bottom:435.869733pt;}
.y22f{bottom:436.430667pt;}
.y180{bottom:439.982667pt;}
.y1fa{bottom:440.256000pt;}
.y55{bottom:440.862667pt;}
.y89{bottom:441.053333pt;}
.yc2{bottom:441.452000pt;}
.ye6{bottom:444.241333pt;}
.yd{bottom:446.990669pt;}
.y26{bottom:447.022667pt;}
.y161{bottom:451.416000pt;}
.y22e{bottom:451.773333pt;}
.y136{bottom:453.009333pt;}
.y1aa{bottom:455.869733pt;}
.y266{bottom:456.396000pt;}
.y1f9{bottom:456.993333pt;}
.y88{bottom:457.790667pt;}
.y54{bottom:458.158667pt;}
.yc1{bottom:458.189333pt;}
.ye5{bottom:460.978667pt;}
.y25{bottom:462.922667pt;}
.yc{bottom:462.990669pt;}
.y22d{bottom:467.116000pt;}
.y160{bottom:468.153333pt;}
.y135{bottom:469.746667pt;}
.y265{bottom:471.738667pt;}
.y1f8{bottom:473.730667pt;}
.y87{bottom:474.528000pt;}
.yc0{bottom:474.926667pt;}
.y53{bottom:475.453333pt;}
.y17f{bottom:477.361333pt;}
.ye4{bottom:477.716000pt;}
.y24{bottom:478.824000pt;}
.yb{bottom:478.990666pt;}
.y22c{bottom:482.458667pt;}
.y1a9{bottom:482.589733pt;}
.y15f{bottom:484.890667pt;}
.y134{bottom:486.484000pt;}
.y264{bottom:487.081333pt;}
.y1f7{bottom:490.468000pt;}
.y86{bottom:491.265333pt;}
.ybf{bottom:491.664000pt;}
.y52{bottom:492.749333pt;}
.ye3{bottom:494.453333pt;}
.y23{bottom:494.724000pt;}
.ya{bottom:494.990666pt;}
.y22b{bottom:497.801333pt;}
.y17e{bottom:498.376000pt;}
.y263{bottom:502.424000pt;}
.y133{bottom:503.221333pt;}
.y1f6{bottom:507.205333pt;}
.y85{bottom:508.002667pt;}
.ybe{bottom:508.401333pt;}
.y51{bottom:510.044000pt;}
.ye2{bottom:511.190667pt;}
.y22a{bottom:513.144000pt;}
.y1a8{bottom:514.351197pt;}
.y262{bottom:517.766667pt;}
.y17d{bottom:519.389333pt;}
.y132{bottom:519.957333pt;}
.y1f5{bottom:523.942667pt;}
.y84{bottom:524.740000pt;}
.ybd{bottom:525.138667pt;}
.y15e{bottom:525.301333pt;}
.y50{bottom:527.338667pt;}
.ye1{bottom:527.928000pt;}
.y229{bottom:528.486667pt;}
.y1a7{bottom:531.470701pt;}
.y261{bottom:533.108000pt;}
.y131{bottom:536.694667pt;}
.y17c{bottom:540.404000pt;}
.y1f4{bottom:540.680000pt;}
.y83{bottom:541.477333pt;}
.ybc{bottom:541.876000pt;}
.y228{bottom:543.828000pt;}
.y4f{bottom:544.634667pt;}
.ye0{bottom:544.665333pt;}
.y15d{bottom:546.314667pt;}
.y260{bottom:548.450667pt;}
.y1a6{bottom:548.510045pt;}
.y130{bottom:553.432000pt;}
.y1f3{bottom:557.417333pt;}
.y82{bottom:558.214667pt;}
.ybb{bottom:558.613333pt;}
.y227{bottom:559.170667pt;}
.ydf{bottom:561.402667pt;}
.y4e{bottom:561.929333pt;}
.y25f{bottom:563.793333pt;}
.y1a5{bottom:565.629549pt;}
.y15c{bottom:567.329333pt;}
.y17b{bottom:568.509333pt;}
.y12f{bottom:570.169333pt;}
.y9{bottom:573.786667pt;}
.y1f2{bottom:574.154667pt;}
.y226{bottom:574.513333pt;}
.y81{bottom:574.952000pt;}
.yba{bottom:575.350667pt;}
.yde{bottom:578.140000pt;}
.y25e{bottom:579.136000pt;}
.y4d{bottom:579.224000pt;}
.y1a4{bottom:582.749053pt;}
.y12e{bottom:586.906667pt;}
.y15b{bottom:588.342667pt;}
.y225{bottom:589.856000pt;}
.y1f1{bottom:590.892000pt;}
.y80{bottom:591.689333pt;}
.yb9{bottom:592.088000pt;}
.y8{bottom:592.685334pt;}
.y25d{bottom:594.478667pt;}
.ydd{bottom:594.877333pt;}
.y4c{bottom:596.520000pt;}
.y1a3{bottom:599.789733pt;}
.y12d{bottom:603.644000pt;}
.y224{bottom:605.198667pt;}
.y1f0{bottom:607.629333pt;}
.y7f{bottom:608.426667pt;}
.yb8{bottom:608.825333pt;}
.y15a{bottom:609.356000pt;}
.y25c{bottom:609.821333pt;}
.ydc{bottom:611.614667pt;}
.y17a{bottom:612.965333pt;}
.y4b{bottom:613.814667pt;}
.y12c{bottom:620.381333pt;}
.y223{bottom:620.541333pt;}
.y7e{bottom:625.164000pt;}
.yb7{bottom:625.562667pt;}
.ydb{bottom:628.352000pt;}
.y159{bottom:630.370667pt;}
.y4a{bottom:631.110667pt;}
.y179{bottom:633.978667pt;}
.y222{bottom:635.884000pt;}
.y12b{bottom:637.118667pt;}
.y25b{bottom:640.506667pt;}
.y7d{bottom:641.901333pt;}
.yb6{bottom:642.300000pt;}
.yda{bottom:645.089333pt;}
.y7{bottom:645.598667pt;}
.y49{bottom:648.405333pt;}
.y1a1{bottom:648.429853pt;}
.y221{bottom:651.226667pt;}
.y158{bottom:651.384000pt;}
.y12a{bottom:653.856000pt;}
.y178{bottom:654.993333pt;}
.y25a{bottom:655.848000pt;}
.y1a0{bottom:656.989733pt;}
.y1ef{bottom:658.240000pt;}
.y7c{bottom:658.638667pt;}
.yb5{bottom:659.037333pt;}
.yd9{bottom:661.826667pt;}
.y48{bottom:665.700000pt;}
.y220{bottom:666.568000pt;}
.y3{bottom:668.977329pt;}
.y129{bottom:670.593333pt;}
.y259{bottom:671.190667pt;}
.y157{bottom:672.398667pt;}
.y1ee{bottom:674.977333pt;}
.y7b{bottom:675.376000pt;}
.yb4{bottom:675.774667pt;}
.y177{bottom:676.006667pt;}
.yd8{bottom:678.564000pt;}
.y21f{bottom:681.910667pt;}
.y258{bottom:686.533333pt;}
.y128{bottom:691.316000pt;}
.y1ed{bottom:691.714667pt;}
.y7a{bottom:692.113333pt;}
.yb3{bottom:692.512000pt;}
.y156{bottom:693.412000pt;}
.y19e{bottom:694.900000pt;}
.y21e{bottom:697.253333pt;}
.yd7{bottom:699.285333pt;}
.y47{bottom:699.998667pt;}
.y257{bottom:701.876000pt;}
.y176{bottom:704.113333pt;}
.y1ec{bottom:708.452000pt;}
.y79{bottom:708.850667pt;}
.yb2{bottom:709.248000pt;}
.y19d{bottom:711.649333pt;}
.y21d{bottom:712.596000pt;}
.yd6{bottom:713.233333pt;}
.y46{bottom:714.345333pt;}
.y155{bottom:714.426667pt;}
.y256{bottom:717.218667pt;}
.y19b{bottom:718.956000pt;}
.y127{bottom:721.204000pt;}
.y1eb{bottom:725.189333pt;}
.y78{bottom:725.588000pt;}
.yb1{bottom:725.985333pt;}
.y19c{bottom:726.261333pt;}
.y21c{bottom:727.938667pt;}
.y45{bottom:732.548000pt;}
.y255{bottom:732.561333pt;}
.y175{bottom:733.392000pt;}
.y154{bottom:735.440000pt;}
.y126{bottom:737.941333pt;}
.y1ea{bottom:741.926667pt;}
.y77{bottom:742.324000pt;}
.yb0{bottom:742.722667pt;}
.y44{bottom:743.037333pt;}
.yd5{bottom:743.121333pt;}
.y21b{bottom:743.281333pt;}
.y19a{bottom:747.276000pt;}
.y254{bottom:747.904000pt;}
.y174{bottom:750.129333pt;}
.y125{bottom:754.678667pt;}
.y153{bottom:756.454667pt;}
.y21a{bottom:758.624000pt;}
.y1e9{bottom:758.664000pt;}
.y76{bottom:759.061333pt;}
.yaf{bottom:759.460000pt;}
.y43{bottom:761.241333pt;}
.y253{bottom:763.246667pt;}
.y173{bottom:766.866667pt;}
.y199{bottom:768.289333pt;}
.y124{bottom:771.416000pt;}
.y42{bottom:771.729333pt;}
.y219{bottom:773.966667pt;}
.y1e8{bottom:775.401333pt;}
.y75{bottom:775.798667pt;}
.yae{bottom:776.197333pt;}
.y152{bottom:777.468000pt;}
.y252{bottom:778.589333pt;}
.y2{bottom:781.661334pt;}
.y172{bottom:783.604000pt;}
.y123{bottom:788.153333pt;}
.y198{bottom:789.304000pt;}
.y218{bottom:789.309333pt;}
.y41{bottom:789.933333pt;}
.y1e7{bottom:792.138667pt;}
.y74{bottom:792.536000pt;}
.yad{bottom:792.934667pt;}
.y251{bottom:793.930667pt;}
.y196{bottom:796.609333pt;}
.y151{bottom:798.482667pt;}
.y171{bottom:800.341333pt;}
.y197{bottom:803.914667pt;}
.y40{bottom:804.280000pt;}
.y217{bottom:804.650667pt;}
.y122{bottom:804.890667pt;}
.y1e6{bottom:808.874667pt;}
.y73{bottom:809.273333pt;}
.yac{bottom:809.672000pt;}
.y150{bottom:819.496000pt;}
.y216{bottom:819.993333pt;}
.y121{bottom:821.628000pt;}
.y250{bottom:824.616000pt;}
.y195{bottom:824.929333pt;}
.y1e5{bottom:825.612000pt;}
.y72{bottom:826.010667pt;}
.yab{bottom:826.409333pt;}
.y215{bottom:835.336000pt;}
.y24f{bottom:839.958667pt;}
.y14f{bottom:840.510667pt;}
.y120{bottom:842.349333pt;}
.y71{bottom:842.748000pt;}
.yaa{bottom:843.146667pt;}
.y3f{bottom:843.992000pt;}
.y194{bottom:845.942667pt;}
.y214{bottom:850.678667pt;}
.y24e{bottom:855.301333pt;}
.y1e4{bottom:859.086667pt;}
.y1{bottom:859.312000pt;}
.y70{bottom:859.485333pt;}
.y3e{bottom:860.729333pt;}
.y14e{bottom:861.524000pt;}
.ya9{bottom:863.869333pt;}
.y213{bottom:866.021333pt;}
.y193{bottom:866.957333pt;}
.y24d{bottom:870.644000pt;}
.y11f{bottom:872.237333pt;}
.y6f{bottom:876.222667pt;}
.y1e3{bottom:879.809333pt;}
.y212{bottom:881.364000pt;}
.y14d{bottom:882.538667pt;}
.y24c{bottom:885.986667pt;}
.y11e{bottom:888.974667pt;}
.y6e{bottom:892.960000pt;}
.ya8{bottom:893.757333pt;}
.y192{bottom:895.064000pt;}
.y3d{bottom:896.213333pt;}
.y211{bottom:900.690667pt;}
.y24b{bottom:901.329333pt;}
.y14c{bottom:903.552000pt;}
.y11d{bottom:905.712000pt;}
.y6d{bottom:909.697333pt;}
.y24a{bottom:916.670667pt;}
.y3c{bottom:921.320000pt;}
.y11c{bottom:922.449333pt;}
.y14b{bottom:924.566667pt;}
.y6c{bottom:926.434667pt;}
.y210{bottom:930.578667pt;}
.y249{bottom:932.013333pt;}
.y11b{bottom:939.186667pt;}
.y6b{bottom:943.172000pt;}
.y14a{bottom:945.580000pt;}
.y3b{bottom:946.425333pt;}
.y248{bottom:947.356000pt;}
.y20f{bottom:954.170667pt;}
.y11a{bottom:955.924000pt;}
.y6a{bottom:959.909333pt;}
.y247{bottom:962.698667pt;}
.y149{bottom:966.594667pt;}
.y20e{bottom:969.792000pt;}
.y3a{bottom:971.530667pt;}
.y119{bottom:972.661333pt;}
.y69{bottom:976.646667pt;}
.y246{bottom:978.041333pt;}
.y68{bottom:993.384000pt;}
.y148{bottom:994.700000pt;}
.y67{bottom:1046.810667pt;}
.he{height:23.209028pt;}
.h16{height:26.301789pt;}
.h15{height:26.637406pt;}
.h9{height:27.076941pt;}
.ha{height:27.300102pt;}
.h7{height:28.560000pt;}
.h18{height:30.042188pt;}
.h23{height:30.943281pt;}
.hf{height:30.945242pt;}
.h20{height:30.960667pt;}
.h13{height:31.200285pt;}
.h22{height:31.338125pt;}
.h1e{height:32.565965pt;}
.h1a{height:32.959016pt;}
.h17{height:33.025555pt;}
.h19{height:33.446969pt;}
.h1c{height:34.574438pt;}
.h10{height:34.813542pt;}
.h1f{height:34.830704pt;}
.h1d{height:35.100467pt;}
.h25{height:35.343750pt;}
.h2e{height:36.750000pt;}
.h1b{height:37.087439pt;}
.h11{height:38.415786pt;}
.h12{height:38.681455pt;}
.h24{height:38.853594pt;}
.hb{height:39.000258pt;}
.h2f{height:39.349375pt;}
.h6{height:40.800000pt;}
.h28{height:42.512856pt;}
.h27{height:42.576094pt;}
.h3{height:42.840000pt;}
.hd{height:48.486756pt;}
.h2{height:48.960000pt;}
.h26{height:59.506943pt;}
.hc{height:69.148877pt;}
.h5{height:69.360000pt;}
.h29{height:74.695802pt;}
.h2c{height:75.011098pt;}
.h2d{height:78.355064pt;}
.h2b{height:78.670360pt;}
.h2a{height:78.675704pt;}
.h4{height:105.826671pt;}
.h14{height:170.531533pt;}
.h21{height:249.198667pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:429.739600pt;}
.w5{width:514.445333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x48{left:-177.122667pt;}
.x24{left:-144.809400pt;}
.x49{left:-3.282667pt;}
.x0{left:0.000000pt;}
.x26{left:2.954600pt;}
.x4a{left:11.757333pt;}
.x4e{left:25.037861pt;}
.x27{left:27.026520pt;}
.x6{left:46.689333pt;}
.x5{left:47.621333pt;}
.x51{left:76.309333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x4c{left:204.797333pt;}
.x4b{left:218.477333pt;}
.x9{left:220.912000pt;}
.x7{left:221.858667pt;}
.xc{left:225.932000pt;}
.x2b{left:229.841333pt;}
.x3b{left:234.732000pt;}
.x1a{left:236.589333pt;}
.x3e{left:238.444000pt;}
.x8{left:239.509333pt;}
.x39{left:241.440000pt;}
.x2e{left:246.097333pt;}
.x38{left:247.680000pt;}
.x20{left:248.896000pt;}
.xb{left:250.204000pt;}
.x30{left:253.049333pt;}
.x44{left:259.534667pt;}
.x37{left:263.829333pt;}
.x32{left:269.740000pt;}
.x33{left:271.730667pt;}
.x3a{left:276.056000pt;}
.x1e{left:278.601333pt;}
.x2a{left:283.294667pt;}
.xd{left:292.773333pt;}
.x2d{left:295.913333pt;}
.x22{left:298.874667pt;}
.x2f{left:300.893333pt;}
.x23{left:323.888000pt;}
.xe{left:325.534667pt;}
.x1c{left:327.886667pt;}
.xf{left:330.357333pt;}
.x19{left:331.844000pt;}
.x3c{left:340.825333pt;}
.x4f{left:343.378667pt;}
.x1d{left:344.817333pt;}
.x3d{left:352.748000pt;}
.x16{left:356.876000pt;}
.x1b{left:366.568000pt;}
.x21{left:385.657333pt;}
.x3{left:404.408000pt;}
.x31{left:406.009333pt;}
.x1f{left:410.964000pt;}
.x25{left:426.934600pt;}
.x47{left:439.904000pt;}
.x43{left:451.208000pt;}
.x36{left:452.850667pt;}
.x35{left:454.009333pt;}
.x28{left:500.828000pt;}
.x29{left:509.574667pt;}
.x4d{left:514.717200pt;}
.x2c{left:581.184000pt;}
.x45{left:586.841333pt;}
.x41{left:594.340000pt;}
.x10{left:598.502667pt;}
.x14{left:616.553333pt;}
.x34{left:623.536000pt;}
.x17{left:625.626667pt;}
.xa{left:646.498667pt;}
.x12{left:668.754667pt;}
.x3f{left:689.942667pt;}
.x18{left:694.382667pt;}
.x50{left:696.434667pt;}
.x40{left:702.052000pt;}
.x42{left:704.762667pt;}
.x46{left:716.056000pt;}
.x13{left:740.537333pt;}
.x11{left:742.946667pt;}
.x15{left:744.020000pt;}
}




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