
    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_522ba7ef71e4bd477d3b3d44.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_417bea17f1e980973fabf673.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_853765d4716121b12c1943f5.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_b06e3d676cbc339383e39f19.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;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_e619c135a4247b7a11c0c3c1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691000;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_0b0dbe8f9c09db2022cc4838.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000488;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_7b929b6fadde322005dc18b1.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_824cdb85b7efea518600090e.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ec7303ef1b287afdcc44c82a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.734863;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_5edb7acabb976aed9bd2ba14.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_2dc04ba8bb5d884cb95575ac.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.895996;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_0b0dbe8f9c09db2022cc4838.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000488;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_8f40305539c53051e7b6fabd.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_42b28de9fb25b4aabad8e9f5.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_5edb7acabb976aed9bd2ba14.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_6712028f69182102ae72974e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.734863;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_451f6fda335ae600a2d7512d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.895996;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_2b054e06f39bb2fff137f7bc.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.773000;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_7bdcff3f2b5e1b2e94c3985f.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_a99279b1a08fd9b3f5e78f6b.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.988000;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_030403167d044e5f3b127182.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.997000;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_40ba135955536a41f0a28eba.woff2')format("woff");}.ff18{font-family:ff18;line-height:2.399000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_33f9f05d2b7c0bb3ed2904d4.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.580000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_e3076f570e41fe8588e26255.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.712000;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;}
.m19{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m6{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);}
.m27{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);}
.m1e{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);}
.me{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);}
.m3{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);}
.md{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);}
.m25{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);}
.m26{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);}
.m1a{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);}
.m1f{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);}
.m9{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);}
.m20{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);}
.ma{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);}
.m14{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);}
.m24{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);}
.m18{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);}
.m5{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);}
.m8{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);}
.m17{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);}
.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);}
.m29{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);}
.m12{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);}
.m16{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);}
.m21{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);}
.m23{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);}
.m22{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);}
.m1c{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);}
.m4{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);}
.m1d{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);}
.m28{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);}
.m11{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);}
.m10{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);}
.mc{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);}
.mb{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);}
.m1b{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);}
.m13{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);}
.mf{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);}
.m15{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);}
.v5{vertical-align:-18.798000px;}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v6{vertical-align:-10.464000px;}
.v4{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:2.178000px;}
.v9{vertical-align:9.840000px;}
.v7{vertical-align:11.142000px;}
.va{vertical-align:16.962000px;}
.vb{vertical-align:19.524000px;}
.v1{vertical-align:21.696000px;}
.vd{vertical-align:37.542000px;}
.vc{vertical-align:84.318000px;}
.ls25{letter-spacing:-1.202400px;}
.ls39{letter-spacing:-0.168336px;}
.ls1f{letter-spacing:-0.162324px;}
.ls1e{letter-spacing:-0.156312px;}
.ls32{letter-spacing:-0.150300px;}
.ls34{letter-spacing:-0.138276px;}
.ls1c{letter-spacing:-0.132264px;}
.ls26{letter-spacing:-0.126252px;}
.ls20{letter-spacing:-0.120240px;}
.ls37{letter-spacing:-0.114228px;}
.ls15{letter-spacing:-0.108216px;}
.ls17{letter-spacing:-0.102204px;}
.ls31{letter-spacing:-0.096192px;}
.ls33{letter-spacing:-0.090180px;}
.ls1a{letter-spacing:-0.084168px;}
.ls14{letter-spacing:-0.078156px;}
.ls13{letter-spacing:-0.072144px;}
.ls2f{letter-spacing:-0.066132px;}
.ls19{letter-spacing:-0.060120px;}
.ls22{letter-spacing:-0.054108px;}
.ls24{letter-spacing:-0.048096px;}
.ls21{letter-spacing:-0.042084px;}
.ls38{letter-spacing:-0.036072px;}
.ls18{letter-spacing:-0.030060px;}
.ls30{letter-spacing:-0.024048px;}
.ls1d{letter-spacing:-0.021600px;}
.ls12{letter-spacing:-0.018036px;}
.ls35{letter-spacing:-0.016200px;}
.ls11{letter-spacing:-0.014364px;}
.ls23{letter-spacing:-0.012024px;}
.ls27{letter-spacing:-0.010800px;}
.ls16{letter-spacing:-0.006012px;}
.ls0{letter-spacing:0.000000px;}
.ls72{letter-spacing:0.000608px;}
.ls2a{letter-spacing:0.005400px;}
.ls2c{letter-spacing:0.006012px;}
.ls29{letter-spacing:0.012024px;}
.ls28{letter-spacing:0.018036px;}
.ls6{letter-spacing:0.019152px;}
.lsd{letter-spacing:0.024048px;}
.lse{letter-spacing:0.030060px;}
.ls2b{letter-spacing:0.032400px;}
.ls9{letter-spacing:0.036072px;}
.lsf{letter-spacing:0.042084px;}
.lsb{letter-spacing:0.048096px;}
.lsc{letter-spacing:0.060120px;}
.ls2e{letter-spacing:0.078156px;}
.ls2d{letter-spacing:0.090180px;}
.lsa{letter-spacing:0.102204px;}
.ls8{letter-spacing:0.167580px;}
.ls7{letter-spacing:0.181944px;}
.ls5b{letter-spacing:0.419108px;}
.ls9b{letter-spacing:0.420583px;}
.ls59{letter-spacing:0.447292px;}
.ls48{letter-spacing:0.453292px;}
.ls7f{letter-spacing:0.503764px;}
.ls4f{letter-spacing:0.542815px;}
.ls46{letter-spacing:0.548815px;}
.ls6c{letter-spacing:0.565200px;}
.ls71{letter-spacing:0.571200px;}
.ls7c{letter-spacing:0.642088px;}
.ls78{letter-spacing:0.648088px;}
.ls75{letter-spacing:0.670741px;}
.ls3d{letter-spacing:0.742483px;}
.ls9c{letter-spacing:0.744300px;}
.ls57{letter-spacing:0.746143px;}
.ls51{letter-spacing:0.747634px;}
.ls5d{letter-spacing:0.748200px;}
.ls55{letter-spacing:0.748483px;}
.ls56{letter-spacing:0.752143px;}
.ls7e{letter-spacing:1.042348px;}
.ls84{letter-spacing:1.048348px;}
.ls45{letter-spacing:1.131943px;}
.ls4e{letter-spacing:1.137943px;}
.ls82{letter-spacing:1.344960px;}
.ls63{letter-spacing:1.420741px;}
.ls3a{letter-spacing:1.494390px;}
.ls43{letter-spacing:1.939625px;}
.ls40{letter-spacing:1.945625px;}
.ls4b{letter-spacing:3.133200px;}
.ls4d{letter-spacing:3.139200px;}
.ls73{letter-spacing:3.555943px;}
.ls36{letter-spacing:3.691368px;}
.ls64{letter-spacing:3.733200px;}
.ls52{letter-spacing:3.739200px;}
.ls74{letter-spacing:4.305943px;}
.ls8c{letter-spacing:4.572600px;}
.ls8b{letter-spacing:4.578600px;}
.ls93{letter-spacing:4.708741px;}
.ls41{letter-spacing:5.047200px;}
.ls44{letter-spacing:5.053200px;}
.ls8a{letter-spacing:5.098348px;}
.ls1b{letter-spacing:5.849676px;}
.ls53{letter-spacing:7.021200px;}
.lsa2{letter-spacing:11.283483px;}
.ls50{letter-spacing:11.509200px;}
.ls3{letter-spacing:11.954850px;}
.lsa4{letter-spacing:12.477483px;}
.ls47{letter-spacing:13.083483px;}
.ls4a{letter-spacing:13.089483px;}
.ls62{letter-spacing:13.779483px;}
.ls4{letter-spacing:14.047266px;}
.lsa3{letter-spacing:14.121943px;}
.ls3f{letter-spacing:14.583483px;}
.ls76{letter-spacing:14.764573px;}
.ls7b{letter-spacing:14.880845px;}
.ls10{letter-spacing:14.884124px;}
.ls7a{letter-spacing:14.943900px;}
.lsa5{letter-spacing:14.944200px;}
.ls77{letter-spacing:15.007956px;}
.ls68{letter-spacing:15.273483px;}
.ls9d{letter-spacing:15.274200px;}
.ls5{letter-spacing:15.302554px;}
.ls6e{letter-spacing:15.315483px;}
.ls70{letter-spacing:15.321483px;}
.ls58{letter-spacing:15.355200px;}
.ls3e{letter-spacing:15.361200px;}
.ls4c{letter-spacing:15.921943px;}
.ls42{letter-spacing:15.927943px;}
.ls61{letter-spacing:16.045200px;}
.ls5c{letter-spacing:16.381258px;}
.lsa0{letter-spacing:17.319483px;}
.ls9e{letter-spacing:17.325483px;}
.lsa1{letter-spacing:17.553943px;}
.ls6f{letter-spacing:17.587200px;}
.ls79{letter-spacing:17.818113px;}
.ls3c{letter-spacing:18.069483px;}
.ls6d{letter-spacing:18.159943px;}
.ls97{letter-spacing:19.563483px;}
.ls96{letter-spacing:20.341200px;}
.ls8f{letter-spacing:20.617258px;}
.ls3b{letter-spacing:20.907943px;}
.ls91{letter-spacing:21.361258px;}
.ls60{letter-spacing:21.519483px;}
.ls66{letter-spacing:23.007483px;}
.ls67{letter-spacing:23.785200px;}
.ls65{letter-spacing:23.791200px;}
.ls5f{letter-spacing:24.805258px;}
.ls6b{letter-spacing:29.223483px;}
.ls6a{letter-spacing:30.717483px;}
.ls69{letter-spacing:31.495200px;}
.ls95{letter-spacing:32.265483px;}
.ls90{letter-spacing:32.294100px;}
.ls94{letter-spacing:33.040200px;}
.ls1{letter-spacing:62.761200px;}
.ls92{letter-spacing:62.767200px;}
.ls2{letter-spacing:64.321654px;}
.ls99{letter-spacing:170.233200px;}
.ls8d{letter-spacing:243.288600px;}
.ls54{letter-spacing:259.237200px;}
.ls80{letter-spacing:275.406600px;}
.ls5e{letter-spacing:299.065200px;}
.ls7d{letter-spacing:308.458348px;}
.ls9f{letter-spacing:329.512200px;}
.ls98{letter-spacing:358.159200px;}
.ls8e{letter-spacing:375.504845px;}
.ls9a{letter-spacing:551.527200px;}
.ls88{letter-spacing:585.784348px;}
.ls49{letter-spacing:592.543200px;}
.ls85{letter-spacing:606.282600px;}
.ls83{letter-spacing:630.142348px;}
.ls87{letter-spacing:635.032348px;}
.ls5a{letter-spacing:646.435200px;}
.ls89{letter-spacing:648.724348px;}
.ls86{letter-spacing:688.132348px;}
.ls81{letter-spacing:1393.848600px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws54{word-spacing:-60.120000px;}
.ws93{word-spacing:-53.989200px;}
.ws25{word-spacing:-14.943900px;}
.ws12a{word-spacing:-13.449600px;}
.ws51{word-spacing:-12.151944px;}
.ws52{word-spacing:-11.970000px;}
.ws2d{word-spacing:-11.955150px;}
.wsc{word-spacing:-11.357400px;}
.wsb{word-spacing:-10.460700px;}
.ws55{word-spacing:-4.271400px;}
.wsda{word-spacing:-3.048556px;}
.wsc9{word-spacing:-2.753496px;}
.ws1e{word-spacing:-2.630126px;}
.ws1f{word-spacing:-2.510575px;}
.ws7f{word-spacing:-2.464920px;}
.ws14c{word-spacing:-2.313331px;}
.ws80{word-spacing:-2.308608px;}
.wse0{word-spacing:-2.271473px;}
.ws14e{word-spacing:-2.259533px;}
.ws5c{word-spacing:-2.211697px;}
.ws9b{word-spacing:-2.151922px;}
.ws7d{word-spacing:-2.062116px;}
.ws120{word-spacing:-2.032370px;}
.ws110{word-spacing:-1.853044px;}
.wsea{word-spacing:-1.793268px;}
.ws65{word-spacing:-1.755504px;}
.ws27{word-spacing:-1.733492px;}
.ws7e{word-spacing:-1.731456px;}
.ws11e{word-spacing:-1.673717px;}
.ws64{word-spacing:-1.635264px;}
.wsdd{word-spacing:-1.554166px;}
.ws4d{word-spacing:-1.494390px;}
.ws90{word-spacing:-1.434614px;}
.wsad{word-spacing:-1.400796px;}
.ws16{word-spacing:-1.398758px;}
.ws74{word-spacing:-1.370736px;}
.ws4c{word-spacing:-1.315063px;}
.wsac{word-spacing:-1.298592px;}
.ws44{word-spacing:-1.255288px;}
.ws68{word-spacing:-1.238472px;}
.ws13e{word-spacing:-1.237363px;}
.ws42{word-spacing:-1.195512px;}
.wse1{word-spacing:-1.075961px;}
.ws33{word-spacing:-1.016185px;}
.wseb{word-spacing:-0.956410px;}
.wsa5{word-spacing:-0.901800px;}
.ws95{word-spacing:-0.896634px;}
.wsb4{word-spacing:-0.859716px;}
.wse2{word-spacing:-0.777083px;}
.wscf{word-spacing:-0.717307px;}
.ws14a{word-spacing:-0.699379px;}
.wsa8{word-spacing:-0.679356px;}
.wsaf{word-spacing:-0.649296px;}
.ws69{word-spacing:-0.625248px;}
.ws18{word-spacing:-0.537984px;}
.wsd5{word-spacing:-0.537980px;}
.ws14f{word-spacing:-0.484186px;}
.ws37{word-spacing:-0.478205px;}
.ws43{word-spacing:-0.418429px;}
.ws11{word-spacing:-0.376589px;}
.ws67{word-spacing:-0.330660px;}
.ws23{word-spacing:-0.298878px;}
.wsbd{word-spacing:-0.276552px;}
.ws5e{word-spacing:-0.272916px;}
.ws136{word-spacing:-0.268992px;}
.ws24{word-spacing:-0.239102px;}
.ws142{word-spacing:-0.215194px;}
.wsae{word-spacing:-0.198396px;}
.wsd8{word-spacing:-0.193693px;}
.ws9f{word-spacing:-0.186372px;}
.wsbc{word-spacing:-0.180360px;}
.ws28{word-spacing:-0.179327px;}
.ws19{word-spacing:-0.161395px;}
.wsbb{word-spacing:-0.138276px;}
.ws34{word-spacing:-0.119551px;}
.ws127{word-spacing:-0.107597px;}
.ws5f{word-spacing:-0.076608px;}
.ws53{word-spacing:-0.060120px;}
.ws4f{word-spacing:-0.059776px;}
.ws12{word-spacing:-0.053798px;}
.ws2e{word-spacing:-0.047821px;}
.ws11d{word-spacing:-0.045430px;}
.wsec{word-spacing:-0.001991px;}
.ws0{word-spacing:0.000000px;}
.ws13{word-spacing:0.053798px;}
.ws78{word-spacing:0.054108px;}
.ws3e{word-spacing:0.059776px;}
.ws79{word-spacing:0.066132px;}
.ws56{word-spacing:0.107597px;}
.wsa0{word-spacing:0.114228px;}
.ws21{word-spacing:0.119551px;}
.wsd{word-spacing:0.143462px;}
.wsb3{word-spacing:0.145800px;}
.ws1a{word-spacing:0.161395px;}
.wsb0{word-spacing:0.162324px;}
.ws66{word-spacing:0.168336px;}
.ws7a{word-spacing:0.178200px;}
.ws2a{word-spacing:0.179327px;}
.wsba{word-spacing:0.186372px;}
.ws7b{word-spacing:0.199800px;}
.ws15{word-spacing:0.215194px;}
.ws77{word-spacing:0.222444px;}
.ws35{word-spacing:0.239102px;}
.ws94{word-spacing:0.268992px;}
.ws26{word-spacing:0.298878px;}
.ws36{word-spacing:0.358654px;}
.wsbf{word-spacing:0.360720px;}
.ws3c{word-spacing:0.418429px;}
.ws81{word-spacing:0.426852px;}
.wsc6{word-spacing:0.438876px;}
.wsbe{word-spacing:0.450900px;}
.wsc5{word-spacing:0.474948px;}
.wsf5{word-spacing:0.478205px;}
.wsb9{word-spacing:0.480960px;}
.wsce{word-spacing:0.537980px;}
.ws143{word-spacing:0.537984px;}
.ws3f{word-spacing:0.597756px;}
.ws13b{word-spacing:0.645581px;}
.ws5d{word-spacing:0.657532px;}
.ws10{word-spacing:0.699379px;}
.ws97{word-spacing:0.717307px;}
.ws10f{word-spacing:0.777083px;}
.wsb7{word-spacing:0.829656px;}
.ws9e{word-spacing:0.835668px;}
.ws40{word-spacing:0.836858px;}
.wsb8{word-spacing:0.859716px;}
.ws9d{word-spacing:0.877752px;}
.wse8{word-spacing:0.896634px;}
.wsb5{word-spacing:0.901800px;}
.ws111{word-spacing:1.016185px;}
.ws49{word-spacing:1.075961px;}
.wsc0{word-spacing:1.124244px;}
.ws131{word-spacing:1.129766px;}
.ws91{word-spacing:1.135736px;}
.ws8b{word-spacing:1.220436px;}
.ws8f{word-spacing:1.226448px;}
.ws8a{word-spacing:1.250496px;}
.ws125{word-spacing:1.255288px;}
.ws76{word-spacing:1.274544px;}
.ws8e{word-spacing:1.298592px;}
.wsfe{word-spacing:1.315063px;}
.wsfd{word-spacing:1.374839px;}
.wsa{word-spacing:1.380812px;}
.ws5a{word-spacing:1.434614px;}
.wscc{word-spacing:1.484964px;}
.ws22{word-spacing:1.494390px;}
.ws8d{word-spacing:1.503000px;}
.wsa3{word-spacing:1.533060px;}
.ws30{word-spacing:1.554166px;}
.wscb{word-spacing:1.563120px;}
.ws75{word-spacing:1.605204px;}
.ws31{word-spacing:1.613941px;}
.wscd{word-spacing:1.629252px;}
.ws115{word-spacing:1.673717px;}
.wsa4{word-spacing:1.677348px;}
.wsca{word-spacing:1.695384px;}
.ws112{word-spacing:1.733492px;}
.ws46{word-spacing:1.793268px;}
.wsd6{word-spacing:1.853044px;}
.ws84{word-spacing:1.887768px;}
.ws48{word-spacing:1.912819px;}
.ws83{word-spacing:1.929852px;}
.ws85{word-spacing:1.971936px;}
.ws58{word-spacing:1.972595px;}
.ws17{word-spacing:1.990541px;}
.wsf9{word-spacing:2.032370px;}
.ws140{word-spacing:2.044339px;}
.ws92{word-spacing:2.151922px;}
.ws138{word-spacing:2.151936px;}
.wsf6{word-spacing:2.211697px;}
.ws6e{word-spacing:2.224440px;}
.ws6f{word-spacing:2.254500px;}
.ws4e{word-spacing:2.271473px;}
.ws2f{word-spacing:2.331248px;}
.ws3b{word-spacing:2.391024px;}
.ws20{word-spacing:2.450800px;}
.ws2{word-spacing:2.510568px;}
.ws98{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.ws47{word-spacing:2.570351px;}
.ws71{word-spacing:2.579148px;}
.wsa7{word-spacing:2.585160px;}
.wsd9{word-spacing:2.630126px;}
.ws6b{word-spacing:2.639268px;}
.ws6c{word-spacing:2.669328px;}
.ws6d{word-spacing:2.693376px;}
.ws6a{word-spacing:2.711412px;}
.wsa6{word-spacing:2.747484px;}
.ws9a{word-spacing:2.749678px;}
.wsd0{word-spacing:2.809453px;}
.wsd4{word-spacing:2.869229px;}
.wse{word-spacing:2.869236px;}
.ws3d{word-spacing:2.929004px;}
.ws147{word-spacing:2.958912px;}
.ws123{word-spacing:3.048556px;}
.ws145{word-spacing:3.120307px;}
.ws130{word-spacing:3.219139px;}
.ws1b{word-spacing:3.219667px;}
.ws146{word-spacing:3.221040px;}
.ws134{word-spacing:3.224371px;}
.ws126{word-spacing:3.224822px;}
.ws57{word-spacing:3.227882px;}
.ws129{word-spacing:3.227904px;}
.ws12d{word-spacing:3.281702px;}
.ws62{word-spacing:3.288564px;}
.ws144{word-spacing:3.335501px;}
.wsd2{word-spacing:3.347434px;}
.ws63{word-spacing:3.348684px;}
.ws114{word-spacing:3.407209px;}
.wsab{word-spacing:3.456900px;}
.ws41{word-spacing:3.466985px;}
.wsaa{word-spacing:3.486960px;}
.ws133{word-spacing:3.496896px;}
.ws4b{word-spacing:3.526760px;}
.ws1c{word-spacing:3.586536px;}
.wsd1{word-spacing:3.646312px;}
.wsb6{word-spacing:3.679344px;}
.wsfa{word-spacing:3.706087px;}
.wsc4{word-spacing:3.739464px;}
.ws9c{word-spacing:3.765863px;}
.wsdc{word-spacing:3.825638px;}
.ws10d{word-spacing:3.945190px;}
.ws12c{word-spacing:3.981082px;}
.wse9{word-spacing:4.030009px;}
.ws148{word-spacing:4.034880px;}
.ws11b{word-spacing:4.064741px;}
.wsf8{word-spacing:4.124516px;}
.ws14{word-spacing:4.142477px;}
.wsc3{word-spacing:4.154292px;}
.wsc2{word-spacing:4.166316px;}
.wse4{word-spacing:4.303843px;}
.ws11f{word-spacing:4.363619px;}
.ws82{word-spacing:4.370724px;}
.ws8c{word-spacing:4.418820px;}
.wsdf{word-spacing:4.423394px;}
.ws5b{word-spacing:4.602721px;}
.ws96{word-spacing:4.722272px;}
.wsa9{word-spacing:4.743468px;}
.wse7{word-spacing:4.782048px;}
.wsf{word-spacing:4.786508px;}
.wsb1{word-spacing:4.854600px;}
.wsb2{word-spacing:4.876200px;}
.wsef{word-spacing:4.895654px;}
.wsee{word-spacing:4.949453px;}
.ws39{word-spacing:4.961375px;}
.ws38{word-spacing:5.021150px;}
.ws59{word-spacing:5.140702px;}
.wsd3{word-spacing:5.320028px;}
.ws113{word-spacing:5.379804px;}
.ws10e{word-spacing:5.439580px;}
.ws8{word-spacing:5.481407px;}
.ws11a{word-spacing:5.499355px;}
.ws50{word-spacing:5.559131px;}
.ws13d{word-spacing:5.595034px;}
.wse3{word-spacing:5.618906px;}
.ws7c{word-spacing:5.645268px;}
.ws1d{word-spacing:5.738458px;}
.ws122{word-spacing:5.798233px;}
.ws70{word-spacing:5.879736px;}
.ws29{word-spacing:5.917784px;}
.wsa1{word-spacing:5.945868px;}
.wsa2{word-spacing:5.969916px;}
.wsfc{word-spacing:5.977560px;}
.wsfb{word-spacing:6.037336px;}
.wsc8{word-spacing:6.132240px;}
.ws99{word-spacing:6.156887px;}
.ws88{word-spacing:6.168312px;}
.wsc7{word-spacing:6.180336px;}
.wse6{word-spacing:6.216662px;}
.ws89{word-spacing:6.222420px;}
.ws12e{word-spacing:6.240614px;}
.wsf7{word-spacing:6.455765px;}
.ws32{word-spacing:6.515540px;}
.wsdb{word-spacing:6.575316px;}
.ws61{word-spacing:6.895764px;}
.ws72{word-spacing:6.949872px;}
.ws2b{word-spacing:6.993745px;}
.ws4a{word-spacing:7.113296px;}
.ws121{word-spacing:7.173072px;}
.wse5{word-spacing:7.352399px;}
.ws3a{word-spacing:7.531726px;}
.ws87{word-spacing:8.050068px;}
.ws86{word-spacing:8.062092px;}
.ws101{word-spacing:8.553946px;}
.wsde{word-spacing:9.504320px;}
.ws45{word-spacing:9.564096px;}
.ws117{word-spacing:9.623872px;}
.ws6{word-spacing:9.833058px;}
.ws3{word-spacing:10.419488px;}
.ws14d{word-spacing:11.082470px;}
.ws60{word-spacing:11.620476px;}
.ws73{word-spacing:11.639232px;}
.wsc1{word-spacing:11.741436px;}
.ws7{word-spacing:11.841512px;}
.ws2c{word-spacing:11.906882px;}
.ws14b{word-spacing:12.696422px;}
.ws137{word-spacing:13.126810px;}
.ws128{word-spacing:13.288205px;}
.ws13f{word-spacing:13.389830px;}
.ws135{word-spacing:13.393498px;}
.ws10a{word-spacing:13.395802px;}
.ws13a{word-spacing:13.449600px;}
.ws132{word-spacing:13.503398px;}
.ws12b{word-spacing:13.664794px;}
.ws13c{word-spacing:14.041382px;}
.ws11c{word-spacing:14.072659px;}
.wsd7{word-spacing:14.691499px;}
.wsed{word-spacing:14.882624px;}
.ws141{word-spacing:15.440141px;}
.ws4{word-spacing:15.481836px;}
.ws139{word-spacing:15.547738px;}
.ws149{word-spacing:17.430682px;}
.ws124{word-spacing:17.901599px;}
.ws12f{word-spacing:19.636416px;}
.ws119{word-spacing:20.860363px;}
.ws116{word-spacing:20.864659px;}
.ws5{word-spacing:22.339429px;}
.ws9{word-spacing:22.720640px;}
.ws103{word-spacing:192.540000px;}
.ws100{word-spacing:214.998000px;}
.ws10b{word-spacing:236.766758px;}
.wsf3{word-spacing:249.510000px;}
.wsf1{word-spacing:254.765846px;}
.wsf2{word-spacing:271.305331px;}
.wsf0{word-spacing:273.780058px;}
.wsff{word-spacing:275.382557px;}
.ws10c{word-spacing:277.115558px;}
.wsf4{word-spacing:293.739264px;}
.ws102{word-spacing:563.820000px;}
.ws118{word-spacing:710.234596px;}
.ws106{word-spacing:1659.651586px;}
.ws105{word-spacing:1672.523158px;}
.ws107{word-spacing:1683.569158px;}
.ws104{word-spacing:1711.497586px;}
.ws108{word-spacing:1747.701586px;}
.ws109{word-spacing:1747.703158px;}
._17{margin-left:-7.501842px;}
._6{margin-left:-5.917824px;}
._2{margin-left:-4.602708px;}
._1b{margin-left:-2.998836px;}
._4{margin-left:-1.464498px;}
._18{width:1.129968px;}
._7{width:3.001146px;}
._15{width:4.752156px;}
._1e{width:5.761800px;}
._1c{width:6.836400px;}
._0{width:10.460700px;}
._1a{width:11.951856px;}
._1{width:12.971268px;}
._f{width:14.822586px;}
._9{width:16.408512px;}
._c{width:17.872904px;}
._d{width:19.008641px;}
._14{width:20.084602px;}
._1f{width:21.220338px;}
._e{width:22.266446px;}
._b{width:23.318590px;}
._3{width:25.314894px;}
._12{width:26.390923px;}
._34{width:27.533365px;}
._a{width:29.923852px;}
._22{width:31.949408px;}
._5{width:33.355008px;}
._1d{width:34.400845px;}
._21{width:35.865360px;}
._13{width:38.136872px;}
._20{width:39.362228px;}
._16{width:40.468081px;}
._8{width:69.347934px;}
._2b{width:72.036058px;}
._2c{width:210.566938px;}
._32{width:215.839181px;}
._28{width:224.313186px;}
._2e{width:228.458016px;}
._2d{width:233.054669px;}
._29{width:246.085823px;}
._27{width:267.539443px;}
._2a{width:285.436963px;}
._23{width:293.255078px;}
._26{width:307.242662px;}
._24{width:353.509286px;}
._25{width:368.465242px;}
._2f{width:566.310698px;}
._31{width:587.137356px;}
._30{width:600.005460px;}
._10{width:747.770722px;}
._19{width:2089.406592px;}
._33{width:2527.149300px;}
._11{width:2551.059300px;}
.fc2{color:rgb(8,117,183);}
.fc4{color:transparent;}
.fc1{color:rgb(77,128,114);}
.fc3{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs13{font-size:43.600200px;}
.fs9{font-size:45.429600px;}
.fs11{font-size:47.337600px;}
.fsb{font-size:47.820600px;}
.fsd{font-size:47.880000px;}
.fsc{font-size:53.798400px;}
.fsf{font-size:54.000000px;}
.fs12{font-size:56.058000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fse{font-size:60.120000px;}
.fs10{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.fs6{font-size:128.507760px;}
.y113{bottom:-383.727045px;}
.y112{bottom:-364.557783px;}
.y111{bottom:-345.298341px;}
.y110{bottom:-326.038899px;}
.y10f{bottom:-306.869637px;}
.y10e{bottom:-287.610195px;}
.yce{bottom:-286.963695px;}
.y10d{bottom:-268.440933px;}
.ycd{bottom:-267.704253px;}
.y10c{bottom:-249.181491px;}
.ycc{bottom:-248.533488px;}
.y10b{bottom:-229.922049px;}
.ycb{bottom:-229.274046px;}
.y10a{bottom:-210.752787px;}
.yca{bottom:-210.104784px;}
.y109{bottom:-191.493345px;}
.yc9{bottom:-190.845342px;}
.y108{bottom:-172.322580px;}
.yc8{bottom:-171.585900px;}
.y107{bottom:-153.063138px;}
.yc7{bottom:-152.416638px;}
.y106{bottom:-133.803696px;}
.yc6{bottom:-133.157196px;}
.y105{bottom:-114.634434px;}
.yc5{bottom:-113.987934px;}
.y104{bottom:-95.374992px;}
.yc4{bottom:-94.728492px;}
.y103{bottom:-76.115550px;}
.yc3{bottom:-75.469050px;}
.y102{bottom:-39.395100px;}
.yc2{bottom:-38.659500px;}
.y101{bottom:-21.935550px;}
.yc1{bottom:-21.289050px;}
.y0{bottom:0.000000px;}
.y100{bottom:0.480795px;}
.yc0{bottom:1.127736px;}
.y11f{bottom:15.590400px;}
.yd7{bottom:16.152450px;}
.y39{bottom:16.704213px;}
.y67{bottom:31.890000px;}
.y114{bottom:33.144450px;}
.ycf{bottom:33.701100px;}
.y6{bottom:35.925007px;}
.y115{bottom:61.134000px;}
.y5{bottom:66.525004px;}
.yd0{bottom:73.751550px;}
.y116{bottom:89.123550px;}
.y4{bottom:97.125005px;}
.y1bf{bottom:100.293000px;}
.y13a{bottom:103.621500px;}
.y37{bottom:104.646000px;}
.y15e{bottom:105.549000px;}
.y66{bottom:107.106000px;}
.y1ff{bottom:107.716500px;}
.yd8{bottom:109.660950px;}
.yed{bottom:112.558500px;}
.yd1{bottom:113.711550px;}
.y117{bottom:117.113100px;}
.y1be{bottom:119.122500px;}
.y9e{bottom:119.596500px;}
.y139{bottom:122.449500px;}
.y36{bottom:122.535000px;}
.y15d{bottom:124.378500px;}
.y1fe{bottom:124.977000px;}
.y65{bottom:125.935500px;}
.yec{bottom:131.388000px;}
.y1e1{bottom:134.160000px;}
.y1bd{bottom:137.952000px;}
.y9d{bottom:138.426000px;}
.y22{bottom:139.264499px;}
.y35{bottom:140.422500px;}
.y138{bottom:141.279000px;}
.y1fd{bottom:142.237500px;}
.y15c{bottom:143.208000px;}
.y64{bottom:144.765000px;}
.y118{bottom:145.102650px;}
.yeb{bottom:150.217500px;}
.y1e0{bottom:152.989500px;}
.yd2{bottom:153.762000px;}
.y1bc{bottom:156.781500px;}
.y9c{bottom:157.255500px;}
.y34{bottom:158.310000px;}
.y1fc{bottom:159.496500px;}
.y137{bottom:160.108500px;}
.y15b{bottom:162.037500px;}
.y63{bottom:163.594500px;}
.yea{bottom:169.047000px;}
.y1df{bottom:171.819000px;}
.y119{bottom:173.092200px;}
.y9b{bottom:176.085000px;}
.y33{bottom:176.199000px;}
.y1fb{bottom:176.757000px;}
.y136{bottom:178.938000px;}
.y15a{bottom:180.867000px;}
.y62{bottom:182.424000px;}
.ye9{bottom:187.876500px;}
.y189{bottom:189.855000px;}
.y1de{bottom:190.648500px;}
.y1bb{bottom:191.362500px;}
.yd3{bottom:193.722000px;}
.y1fa{bottom:194.017500px;}
.y32{bottom:194.086500px;}
.y9a{bottom:194.914500px;}
.y19{bottom:196.933500px;}
.y135{bottom:197.767500px;}
.y11a{bottom:201.081750px;}
.y61{bottom:201.253500px;}
.ye8{bottom:206.706000px;}
.y188{bottom:208.684500px;}
.y1dd{bottom:209.478000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y1ba{bottom:210.192000px;}
.y1f9{bottom:211.278000px;}
.y31{bottom:211.974000px;}
.y99{bottom:213.744000px;}
.y159{bottom:215.386500px;}
.y134{bottom:216.597000px;}
.y60{bottom:220.083000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.ye7{bottom:225.535500px;}
.y187{bottom:227.514000px;}
.y1dc{bottom:228.307500px;}
.y1f8{bottom:228.538500px;}
.y1b9{bottom:229.021500px;}
.y11b{bottom:229.071300px;}
.y30{bottom:229.863000px;}
.y98{bottom:232.573500px;}
.yd4{bottom:233.682000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y133{bottom:235.426500px;}
.y5f{bottom:238.911000px;}
.ye6{bottom:244.365000px;}
.y1f7{bottom:245.799000px;}
.y186{bottom:246.343500px;}
.y1db{bottom:247.137000px;}
.y1b8{bottom:247.851000px;}
.y158{bottom:249.759000px;}
.y22e{bottom:249.982500px;}
.y97{bottom:251.403000px;}
.y132{bottom:254.256000px;}
.y11c{bottom:257.060850px;}
.y5e{bottom:257.740500px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y1f6{bottom:263.059500px;}
.ye5{bottom:263.194500px;}
.y185{bottom:265.173000px;}
.y1da{bottom:265.966500px;}
.y1b7{bottom:266.679000px;}
.y22d{bottom:267.243000px;}
.y96{bottom:270.232500px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y131{bottom:273.085500px;}
.yd5{bottom:273.732450px;}
.y5d{bottom:276.570000px;}
.y1f5{bottom:280.320000px;}
.ye4{bottom:282.024000px;}
.y184{bottom:284.002500px;}
.y157{bottom:284.278500px;}
.y22c{bottom:284.503500px;}
.y11d{bottom:285.050400px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y1b6{bottom:285.508500px;}
.y95{bottom:289.062000px;}
.y1d9{bottom:289.278000px;}
.y130{bottom:291.915000px;}
.y5c{bottom:295.399500px;}
.y1f4{bottom:297.579000px;}
.y2f{bottom:299.892000px;}
.ye3{bottom:300.853500px;}
.y183{bottom:302.832000px;}
.y1b5{bottom:304.338000px;}
.y94{bottom:307.891500px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y12f{bottom:310.744500px;}
.y11e{bottom:313.039950px;}
.yd6{bottom:313.692450px;}
.y5b{bottom:314.229000px;}
.y1f3{bottom:314.839500px;}
.y2e{bottom:317.779500px;}
.ye2{bottom:319.683000px;}
.y182{bottom:321.661500px;}
.y1d8{bottom:322.902000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y1b4{bottom:323.167500px;}
.y22b{bottom:323.581500px;}
.y156{bottom:324.927000px;}
.y93{bottom:326.719500px;}
.y12e{bottom:329.574000px;}
.y1f2{bottom:332.100000px;}
.y5a{bottom:333.058500px;}
.y2d{bottom:335.667000px;}
.ye1{bottom:338.512500px;}
.y181{bottom:340.491000px;}
.y22a{bottom:340.842000px;}
.y1d7{bottom:341.731500px;}
.y1b3{bottom:341.997000px;}
.y92{bottom:345.549000px;}
.y10{bottom:348.133500px;}
.y12d{bottom:348.403500px;}
.y1f1{bottom:349.360500px;}
.y59{bottom:351.888000px;}
.y2c{bottom:353.556000px;}
.yff{bottom:355.710336px;}
.ybf{bottom:356.357277px;}
.ye0{bottom:357.342000px;}
.y229{bottom:358.102500px;}
.y180{bottom:359.320500px;}
.y155{bottom:359.448000px;}
.y1d6{bottom:360.561000px;}
.y1b2{bottom:360.826500px;}
.y91{bottom:364.378500px;}
.y1f0{bottom:366.621000px;}
.y12c{bottom:367.233000px;}
.y58{bottom:370.717500px;}
.yfe{bottom:374.881101px;}
.y228{bottom:375.363000px;}
.ybe{bottom:375.526539px;}
.ydf{bottom:376.171500px;}
.y17f{bottom:378.150000px;}
.y154{bottom:378.277500px;}
.y1d5{bottom:379.390500px;}
.y1b1{bottom:379.656000px;}
.y2b{bottom:381.904500px;}
.y90{bottom:383.208000px;}
.y1ef{bottom:383.881500px;}
.y12b{bottom:386.062500px;}
.yf{bottom:386.785499px;}
.y57{bottom:389.547000px;}
.y227{bottom:392.623500px;}
.yfd{bottom:394.140543px;}
.ybd{bottom:394.785981px;}
.yde{bottom:394.999500px;}
.y17e{bottom:396.979500px;}
.y153{bottom:397.107000px;}
.y1d4{bottom:398.220000px;}
.y1b0{bottom:398.485500px;}
.y2a{bottom:399.792000px;}
.y1ee{bottom:401.142000px;}
.y8f{bottom:402.037500px;}
.y12a{bottom:404.892000px;}
.ye{bottom:408.044999px;}
.y56{bottom:408.376500px;}
.y226{bottom:409.884000px;}
.yfc{bottom:413.309805px;}
.ydd{bottom:413.829000px;}
.ybc{bottom:414.045423px;}
.y17d{bottom:415.809000px;}
.y152{bottom:415.936500px;}
.y1d3{bottom:417.049500px;}
.y1af{bottom:417.315000px;}
.y1ed{bottom:418.402500px;}
.y8e{bottom:420.867000px;}
.y129{bottom:423.721500px;}
.y29{bottom:426.646500px;}
.y225{bottom:427.144500px;}
.y55{bottom:427.206000px;}
.yfb{bottom:432.569247px;}
.ydc{bottom:432.658500px;}
.ybb{bottom:433.216188px;}
.y17c{bottom:434.638500px;}
.y151{bottom:434.766000px;}
.y1d2{bottom:435.879000px;}
.y1ae{bottom:436.144500px;}
.y8d{bottom:439.696500px;}
.y1ec{bottom:440.145000px;}
.y128{bottom:442.551000px;}
.y224{bottom:444.403500px;}
.y28{bottom:444.534000px;}
.y54{bottom:450.519000px;}
.ydb{bottom:451.488000px;}
.yfa{bottom:451.828689px;}
.yba{bottom:452.475630px;}
.y17b{bottom:453.468000px;}
.y150{bottom:453.595500px;}
.y1d1{bottom:454.708500px;}
.y1ad{bottom:454.974000px;}
.y8c{bottom:458.526000px;}
.y127{bottom:461.380500px;}
.y223{bottom:461.664000px;}
.y27{bottom:462.423000px;}
.yf9{bottom:470.997951px;}
.yb9{bottom:471.644892px;}
.y17a{bottom:472.297500px;}
.y14f{bottom:472.425000px;}
.y1d0{bottom:473.538000px;}
.y1eb{bottom:473.769000px;}
.y1ac{bottom:473.803500px;}
.y8b{bottom:477.355500px;}
.y222{bottom:478.924500px;}
.y126{bottom:480.210000px;}
.y26{bottom:480.310500px;}
.yda{bottom:485.055000px;}
.yf8{bottom:490.257393px;}
.yb8{bottom:490.904334px;}
.y179{bottom:491.127000px;}
.y14e{bottom:491.254500px;}
.y1cf{bottom:492.367500px;}
.y1ab{bottom:492.633000px;}
.y8a{bottom:496.185000px;}
.y25{bottom:498.198000px;}
.y125{bottom:499.039500px;}
.y1ea{bottom:500.310000px;}
.yd{bottom:502.864502px;}
.yd9{bottom:504.286500px;}
.yf7{bottom:509.516835px;}
.y178{bottom:509.956500px;}
.y14d{bottom:510.082500px;}
.yb7{bottom:510.163776px;}
.y1ce{bottom:511.197000px;}
.y1aa{bottom:511.462500px;}
.y221{bottom:513.445500px;}
.y89{bottom:515.014500px;}
.y24{bottom:516.087000px;}
.y124{bottom:517.869000px;}
.y1e9{bottom:517.884000px;}
.yc{bottom:520.864502px;}
.y53{bottom:525.669000px;}
.yab{bottom:526.716000px;}
.yf6{bottom:528.686097px;}
.y177{bottom:528.786000px;}
.yb6{bottom:529.333038px;}
.y1cd{bottom:530.026500px;}
.y1a9{bottom:530.292000px;}
.y220{bottom:530.706000px;}
.y14c{bottom:533.395500px;}
.y88{bottom:533.844000px;}
.y23{bottom:533.974500px;}
.y123{bottom:536.698500px;}
.yb{bottom:538.864499px;}
.y1e8{bottom:544.425000px;}
.yf5{bottom:547.945539px;}
.y21f{bottom:547.966500px;}
.yb5{bottom:548.592480px;}
.y1cc{bottom:548.856000px;}
.y1a8{bottom:549.121500px;}
.y176{bottom:552.097500px;}
.y87{bottom:552.673500px;}
.y122{bottom:555.528000px;}
.ya{bottom:556.864499px;}
.y52{bottom:563.058000px;}
.y21e{bottom:565.227000px;}
.y14b{bottom:567.019500px;}
.yf4{bottom:567.114801px;}
.y1cb{bottom:567.685500px;}
.yb4{bottom:567.851922px;}
.y1a7{bottom:567.951000px;}
.y1e7{bottom:570.964500px;}
.y86{bottom:571.503000px;}
.y21d{bottom:582.487500px;}
.y51{bottom:582.516000px;}
.y14a{bottom:585.849000px;}
.yf3{bottom:586.374243px;}
.y1ca{bottom:586.515000px;}
.y1a6{bottom:586.780500px;}
.yb3{bottom:587.021184px;}
.y121{bottom:587.125500px;}
.y85{bottom:590.332500px;}
.y175{bottom:594.421500px;}
.y1e6{bottom:597.505500px;}
.y21c{bottom:599.746500px;}
.y50{bottom:601.972500px;}
.y149{bottom:604.678500px;}
.y1c9{bottom:605.344500px;}
.y1a5{bottom:605.610000px;}
.yf2{bottom:605.633685px;}
.y120{bottom:606.358500px;}
.y84{bottom:609.162000px;}
.yb2{bottom:610.691931px;}
.y174{bottom:610.860000px;}
.y1e5{bottom:615.079500px;}
.y21b{bottom:617.007000px;}
.y4f{bottom:621.430500px;}
.y148{bottom:623.508000px;}
.y1c8{bottom:624.174000px;}
.y1a4{bottom:624.439500px;}
.yf1{bottom:624.804450px;}
.y173{bottom:627.298500px;}
.y83{bottom:627.991500px;}
.yee{bottom:628.788000px;}
.y1e4{bottom:632.653500px;}
.y21a{bottom:634.267500px;}
.y4e{bottom:640.887000px;}
.y147{bottom:642.337500px;}
.y1c7{bottom:643.003500px;}
.y1a3{bottom:643.269000px;}
.y9{bottom:645.510000px;}
.y82{bottom:646.821000px;}
.yb1{bottom:647.951301px;}
.y1e3{bottom:650.227500px;}
.y172{bottom:650.940000px;}
.y219{bottom:651.528000px;}
.y4d{bottom:660.343500px;}
.y146{bottom:661.167000px;}
.y1c6{bottom:661.833000px;}
.y1a2{bottom:662.098500px;}
.y81{bottom:665.650500px;}
.y8{bottom:666.771000px;}
.yb0{bottom:667.210743px;}
.y171{bottom:667.378500px;}
.y1e2{bottom:667.801500px;}
.y218{bottom:668.788500px;}
.yf0{bottom:679.524585px;}
.y4c{bottom:679.801500px;}
.y145{bottom:679.996500px;}
.y1c5{bottom:680.662500px;}
.y1a1{bottom:680.928000px;}
.y170{bottom:683.815500px;}
.y80{bottom:684.480000px;}
.y217{bottom:686.049000px;}
.yaf{bottom:686.470185px;}
.yef{bottom:689.154450px;}
.y144{bottom:698.826000px;}
.y4b{bottom:699.258000px;}
.y1c4{bottom:699.490500px;}
.y1a0{bottom:699.757500px;}
.y7f{bottom:703.309500px;}
.yae{bottom:705.640950px;}
.y16f{bottom:707.457000px;}
.y143{bottom:717.655500px;}
.y19f{bottom:718.587000px;}
.y4a{bottom:718.714500px;}
.y216{bottom:720.570000px;}
.y7e{bottom:722.139000px;}
.y7{bottom:726.298500px;}
.y1c3{bottom:726.861000px;}
.y1c2{bottom:736.305000px;}
.y142{bottom:736.485000px;}
.y215{bottom:737.829000px;}
.y49{bottom:738.172500px;}
.y16e{bottom:739.077000px;}
.y7d{bottom:740.968500px;}
.y3{bottom:752.599495px;}
.y214{bottom:755.089500px;}
.y141{bottom:755.314500px;}
.y48{bottom:757.629000px;}
.y16d{bottom:758.308500px;}
.y7c{bottom:759.798000px;}
.yad{bottom:760.361085px;}
.y19e{bottom:764.049000px;}
.yac{bottom:769.990950px;}
.y213{bottom:772.350000px;}
.y140{bottom:774.144000px;}
.y47{bottom:777.087000px;}
.y7b{bottom:778.627500px;}
.y19d{bottom:780.487500px;}
.y1c1{bottom:781.705500px;}
.y212{bottom:789.610500px;}
.y1c0{bottom:791.149500px;}
.y13f{bottom:792.973500px;}
.y16c{bottom:795.414000px;}
.y46{bottom:796.543500px;}
.y7a{bottom:797.457000px;}
.y19c{bottom:797.550000px;}
.y211{bottom:806.871000px;}
.y13e{bottom:811.803000px;}
.y19b{bottom:813.988500px;}
.y16b{bottom:814.243500px;}
.y45{bottom:816.000000px;}
.y79{bottom:816.286500px;}
.y210{bottom:824.131500px;}
.y19a{bottom:830.427000px;}
.y13d{bottom:830.632500px;}
.y16a{bottom:833.073000px;}
.y78{bottom:835.114500px;}
.y44{bottom:835.458000px;}
.y20f{bottom:841.392000px;}
.y199{bottom:846.865500px;}
.y13c{bottom:849.462000px;}
.y169{bottom:851.901000px;}
.y77{bottom:853.944000px;}
.y20e{bottom:858.652500px;}
.y198{bottom:863.302500px;}
.y13b{bottom:868.291500px;}
.y168{bottom:870.730500px;}
.y76{bottom:872.773500px;}
.y43{bottom:874.042500px;}
.y20d{bottom:875.913000px;}
.y2{bottom:879.369000px;}
.y197{bottom:879.741000px;}
.yaa{bottom:887.121000px;}
.y167{bottom:889.560000px;}
.y42{bottom:890.182500px;}
.y75{bottom:891.603000px;}
.y20c{bottom:893.172000px;}
.y196{bottom:896.179500px;}
.ya9{bottom:905.950500px;}
.y166{bottom:908.389500px;}
.y74{bottom:910.432500px;}
.y41{bottom:910.662000px;}
.y195{bottom:912.618000px;}
.y40{bottom:922.461000px;}
.ya8{bottom:924.778500px;}
.y3f{bottom:926.802000px;}
.y165{bottom:927.219000px;}
.y20b{bottom:927.693000px;}
.y194{bottom:929.056500px;}
.y73{bottom:929.262000px;}
.ya7{bottom:943.608000px;}
.y20a{bottom:944.953500px;}
.y193{bottom:945.495000px;}
.y164{bottom:946.048500px;}
.y72{bottom:948.091500px;}
.y192{bottom:961.933500px;}
.y209{bottom:962.214000px;}
.ya6{bottom:962.437500px;}
.y163{bottom:964.878000px;}
.y1{bottom:966.726000px;}
.y71{bottom:966.921000px;}
.y3e{bottom:971.478000px;}
.y191{bottom:978.372000px;}
.y208{bottom:979.474500px;}
.ya5{bottom:981.267000px;}
.y162{bottom:983.707500px;}
.y70{bottom:985.750500px;}
.y190{bottom:995.020500px;}
.y207{bottom:996.735000px;}
.ya4{bottom:1000.096500px;}
.y161{bottom:1002.537000px;}
.y6f{bottom:1004.580000px;}
.y3d{bottom:1008.240000px;}
.y18f{bottom:1011.667500px;}
.y206{bottom:1013.995500px;}
.ya3{bottom:1018.926000px;}
.y160{bottom:1021.366500px;}
.y6e{bottom:1023.409500px;}
.y18e{bottom:1028.106000px;}
.y205{bottom:1031.254500px;}
.y3c{bottom:1036.485000px;}
.ya2{bottom:1037.755500px;}
.y6d{bottom:1042.239000px;}
.y18d{bottom:1044.544500px;}
.y15f{bottom:1044.679500px;}
.y204{bottom:1048.515000px;}
.ya1{bottom:1056.585000px;}
.y6c{bottom:1061.068500px;}
.y3b{bottom:1064.728500px;}
.y202{bottom:1065.775500px;}
.y18c{bottom:1068.186000px;}
.y203{bottom:1070.658000px;}
.ya0{bottom:1075.414500px;}
.y6b{bottom:1079.898000px;}
.y201{bottom:1083.036000px;}
.y3a{bottom:1092.972000px;}
.y9f{bottom:1094.244000px;}
.y6a{bottom:1098.727500px;}
.y18b{bottom:1099.804500px;}
.y200{bottom:1100.296500px;}
.y69{bottom:1117.557000px;}
.y18a{bottom:1119.037500px;}
.y38{bottom:1136.460000px;}
.y68{bottom:1177.662000px;}
.h10{height:26.110157px;}
.h2a{height:27.729727px;}
.h9{height:30.461558px;}
.ha{height:30.670772px;}
.h7{height:32.130000px;}
.h18{height:34.811191px;}
.h11{height:34.813397px;}
.h15{height:35.052500px;}
.h17{height:35.255391px;}
.h1d{height:38.759766px;}
.h26{height:38.896243px;}
.h24{height:39.057638px;}
.h12{height:39.165235px;}
.h1c{height:39.260742px;}
.h25{height:39.434227px;}
.h20{height:39.614278px;}
.h1b{height:39.761719px;}
.h22{height:42.500452px;}
.h1e{height:43.152539px;}
.h13{height:43.217759px;}
.h14{height:43.516637px;}
.h19{height:43.710293px;}
.hd{height:43.815515px;}
.h1a{height:44.268047px;}
.h6{height:45.900000px;}
.h23{height:46.084950px;}
.h21{height:46.714950px;}
.h3{height:48.195000px;}
.h27{height:49.985558px;}
.hb{height:50.930649px;}
.hf{height:54.541601px;}
.h2{height:55.080000px;}
.he{height:77.792486px;}
.h5{height:78.030000px;}
.h29{height:81.292637px;}
.h28{height:86.709024px;}
.hc{height:87.128261px;}
.h4{height:119.055004px;}
.h1f{height:335.290500px;}
.h16{height:336.763500px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:197.247128px;}
.w6{width:526.744500px;}
.w5{width:528.219000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x13{left:-193.746000px;}
.xb{left:-192.681000px;}
.x0{left:0.000000px;}
.x14{left:1.824000px;}
.xc{left:2.889000px;}
.x15{left:33.683091px;}
.xd{left:34.749594px;}
.x12{left:36.009000px;}
.x10{left:44.468550px;}
.xf{left:51.309000px;}
.x5{left:53.574000px;}
.x6{left:58.056593px;}
.x16{left:61.764000px;}
.x54{left:85.174500px;}
.x11{left:88.299000px;}
.x17{left:95.064450px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x1f{left:134.083500px;}
.x21{left:144.039000px;}
.x4{left:203.484001px;}
.x9{left:248.526000px;}
.x7{left:249.591000px;}
.x32{left:254.173500px;}
.x41{left:267.088500px;}
.x8{left:269.754000px;}
.x39{left:272.835000px;}
.x40{left:274.071000px;}
.x3f{left:276.264000px;}
.x43{left:278.385000px;}
.xa{left:281.479500px;}
.x3c{left:287.172000px;}
.x42{left:289.303500px;}
.x3e{left:292.327500px;}
.x3d{left:299.310000px;}
.x38{left:303.553500px;}
.x37{left:304.999500px;}
.x44{left:306.793500px;}
.x3a{left:308.125500px;}
.x2d{left:320.344500px;}
.x49{left:339.517500px;}
.x27{left:352.617000px;}
.x2e{left:361.008000px;}
.x45{left:366.352500px;}
.x4e{left:367.362000px;}
.x46{left:378.643500px;}
.x33{left:382.585500px;}
.x3b{left:383.791500px;}
.x4a{left:387.100500px;}
.x4f{left:401.674500px;}
.x50{left:406.938000px;}
.x1e{left:412.947000px;}
.x4b{left:419.338500px;}
.x4c{left:424.600500px;}
.x20{left:428.512500px;}
.x51{left:435.813000px;}
.x4d{left:436.893000px;}
.x36{left:447.979500px;}
.x3{left:454.959000px;}
.x52{left:495.066000px;}
.x47{left:500.587500px;}
.x48{left:512.878500px;}
.xe{left:527.139909px;}
.x1a{left:536.049000px;}
.x28{left:542.212500px;}
.x1b{left:548.340000px;}
.x29{left:550.527000px;}
.x22{left:566.383500px;}
.x23{left:578.676000px;}
.x2f{left:580.603500px;}
.x55{left:609.741000px;}
.x56{left:613.621500px;}
.x34{left:624.381000px;}
.x35{left:647.089500px;}
.x2a{left:665.928000px;}
.x2b{left:674.242500px;}
.x18{left:695.455500px;}
.x30{left:704.439000px;}
.x19{left:707.746500px;}
.x53{left:750.007500px;}
.x24{left:773.058000px;}
.x1c{left:784.117500px;}
.x25{left:793.495500px;}
.x1d{left:796.408500px;}
.x26{left:822.168000px;}
.x31{left:832.851000px;}
.x2c{left:836.970000px;}
@media print{
.v5{vertical-align:-16.709333pt;}
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v6{vertical-align:-9.301333pt;}
.v4{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.936000pt;}
.v9{vertical-align:8.746667pt;}
.v7{vertical-align:9.904000pt;}
.va{vertical-align:15.077333pt;}
.vb{vertical-align:17.354667pt;}
.v1{vertical-align:19.285333pt;}
.vd{vertical-align:33.370667pt;}
.vc{vertical-align:74.949333pt;}
.ls25{letter-spacing:-1.068800pt;}
.ls39{letter-spacing:-0.149632pt;}
.ls1f{letter-spacing:-0.144288pt;}
.ls1e{letter-spacing:-0.138944pt;}
.ls32{letter-spacing:-0.133600pt;}
.ls34{letter-spacing:-0.122912pt;}
.ls1c{letter-spacing:-0.117568pt;}
.ls26{letter-spacing:-0.112224pt;}
.ls20{letter-spacing:-0.106880pt;}
.ls37{letter-spacing:-0.101536pt;}
.ls15{letter-spacing:-0.096192pt;}
.ls17{letter-spacing:-0.090848pt;}
.ls31{letter-spacing:-0.085504pt;}
.ls33{letter-spacing:-0.080160pt;}
.ls1a{letter-spacing:-0.074816pt;}
.ls14{letter-spacing:-0.069472pt;}
.ls13{letter-spacing:-0.064128pt;}
.ls2f{letter-spacing:-0.058784pt;}
.ls19{letter-spacing:-0.053440pt;}
.ls22{letter-spacing:-0.048096pt;}
.ls24{letter-spacing:-0.042752pt;}
.ls21{letter-spacing:-0.037408pt;}
.ls38{letter-spacing:-0.032064pt;}
.ls18{letter-spacing:-0.026720pt;}
.ls30{letter-spacing:-0.021376pt;}
.ls1d{letter-spacing:-0.019200pt;}
.ls12{letter-spacing:-0.016032pt;}
.ls35{letter-spacing:-0.014400pt;}
.ls11{letter-spacing:-0.012768pt;}
.ls23{letter-spacing:-0.010688pt;}
.ls27{letter-spacing:-0.009600pt;}
.ls16{letter-spacing:-0.005344pt;}
.ls0{letter-spacing:0.000000pt;}
.ls72{letter-spacing:0.000540pt;}
.ls2a{letter-spacing:0.004800pt;}
.ls2c{letter-spacing:0.005344pt;}
.ls29{letter-spacing:0.010688pt;}
.ls28{letter-spacing:0.016032pt;}
.ls6{letter-spacing:0.017024pt;}
.lsd{letter-spacing:0.021376pt;}
.lse{letter-spacing:0.026720pt;}
.ls2b{letter-spacing:0.028800pt;}
.ls9{letter-spacing:0.032064pt;}
.lsf{letter-spacing:0.037408pt;}
.lsb{letter-spacing:0.042752pt;}
.lsc{letter-spacing:0.053440pt;}
.ls2e{letter-spacing:0.069472pt;}
.ls2d{letter-spacing:0.080160pt;}
.lsa{letter-spacing:0.090848pt;}
.ls8{letter-spacing:0.148960pt;}
.ls7{letter-spacing:0.161728pt;}
.ls5b{letter-spacing:0.372541pt;}
.ls9b{letter-spacing:0.373852pt;}
.ls59{letter-spacing:0.397593pt;}
.ls48{letter-spacing:0.402926pt;}
.ls7f{letter-spacing:0.447791pt;}
.ls4f{letter-spacing:0.482502pt;}
.ls46{letter-spacing:0.487835pt;}
.ls6c{letter-spacing:0.502400pt;}
.ls71{letter-spacing:0.507733pt;}
.ls7c{letter-spacing:0.570745pt;}
.ls78{letter-spacing:0.576078pt;}
.ls75{letter-spacing:0.596214pt;}
.ls3d{letter-spacing:0.659985pt;}
.ls9c{letter-spacing:0.661600pt;}
.ls57{letter-spacing:0.663238pt;}
.ls51{letter-spacing:0.664563pt;}
.ls5d{letter-spacing:0.665067pt;}
.ls55{letter-spacing:0.665318pt;}
.ls56{letter-spacing:0.668572pt;}
.ls7e{letter-spacing:0.926531pt;}
.ls84{letter-spacing:0.931865pt;}
.ls45{letter-spacing:1.006172pt;}
.ls4e{letter-spacing:1.011505pt;}
.ls82{letter-spacing:1.195520pt;}
.ls63{letter-spacing:1.262881pt;}
.ls3a{letter-spacing:1.328347pt;}
.ls43{letter-spacing:1.724111pt;}
.ls40{letter-spacing:1.729444pt;}
.ls4b{letter-spacing:2.785067pt;}
.ls4d{letter-spacing:2.790400pt;}
.ls73{letter-spacing:3.160838pt;}
.ls36{letter-spacing:3.281216pt;}
.ls64{letter-spacing:3.318400pt;}
.ls52{letter-spacing:3.323733pt;}
.ls74{letter-spacing:3.827505pt;}
.ls8c{letter-spacing:4.064533pt;}
.ls8b{letter-spacing:4.069867pt;}
.ls93{letter-spacing:4.185548pt;}
.ls41{letter-spacing:4.486400pt;}
.ls44{letter-spacing:4.491733pt;}
.ls8a{letter-spacing:4.531865pt;}
.ls1b{letter-spacing:5.199712pt;}
.ls53{letter-spacing:6.241067pt;}
.lsa2{letter-spacing:10.029762pt;}
.ls50{letter-spacing:10.230400pt;}
.ls3{letter-spacing:10.626533pt;}
.lsa4{letter-spacing:11.091096pt;}
.ls47{letter-spacing:11.629762pt;}
.ls4a{letter-spacing:11.635096pt;}
.ls62{letter-spacing:12.248429pt;}
.ls4{letter-spacing:12.486459pt;}
.lsa3{letter-spacing:12.552838pt;}
.ls3f{letter-spacing:12.963096pt;}
.ls76{letter-spacing:13.124065pt;}
.ls7b{letter-spacing:13.227418pt;}
.ls10{letter-spacing:13.230333pt;}
.ls7a{letter-spacing:13.283467pt;}
.lsa5{letter-spacing:13.283733pt;}
.ls77{letter-spacing:13.340405pt;}
.ls68{letter-spacing:13.576429pt;}
.ls9d{letter-spacing:13.577067pt;}
.ls5{letter-spacing:13.602270pt;}
.ls6e{letter-spacing:13.613762pt;}
.ls70{letter-spacing:13.619096pt;}
.ls58{letter-spacing:13.649067pt;}
.ls3e{letter-spacing:13.654400pt;}
.ls4c{letter-spacing:14.152838pt;}
.ls42{letter-spacing:14.158172pt;}
.ls61{letter-spacing:14.262400pt;}
.ls5c{letter-spacing:14.561118pt;}
.lsa0{letter-spacing:15.395096pt;}
.ls9e{letter-spacing:15.400429pt;}
.lsa1{letter-spacing:15.603505pt;}
.ls6f{letter-spacing:15.633067pt;}
.ls79{letter-spacing:15.838322pt;}
.ls3c{letter-spacing:16.061762pt;}
.ls6d{letter-spacing:16.142172pt;}
.ls97{letter-spacing:17.389762pt;}
.ls96{letter-spacing:18.081067pt;}
.ls8f{letter-spacing:18.326451pt;}
.ls3b{letter-spacing:18.584838pt;}
.ls91{letter-spacing:18.987785pt;}
.ls60{letter-spacing:19.128429pt;}
.ls66{letter-spacing:20.451096pt;}
.ls67{letter-spacing:21.142400pt;}
.ls65{letter-spacing:21.147733pt;}
.ls5f{letter-spacing:22.049118pt;}
.ls6b{letter-spacing:25.976429pt;}
.ls6a{letter-spacing:27.304429pt;}
.ls69{letter-spacing:27.995733pt;}
.ls95{letter-spacing:28.680429pt;}
.ls90{letter-spacing:28.705867pt;}
.ls94{letter-spacing:29.369067pt;}
.ls1{letter-spacing:55.787733pt;}
.ls92{letter-spacing:55.793067pt;}
.ls2{letter-spacing:57.174803pt;}
.ls99{letter-spacing:151.318400pt;}
.ls8d{letter-spacing:216.256533pt;}
.ls54{letter-spacing:230.433067pt;}
.ls80{letter-spacing:244.805867pt;}
.ls5e{letter-spacing:265.835733pt;}
.ls7d{letter-spacing:274.185198pt;}
.ls9f{letter-spacing:292.899733pt;}
.ls98{letter-spacing:318.363733pt;}
.ls8e{letter-spacing:333.782084pt;}
.ls9a{letter-spacing:490.246400pt;}
.ls88{letter-spacing:520.697198pt;}
.ls49{letter-spacing:526.705067pt;}
.ls85{letter-spacing:538.917867pt;}
.ls83{letter-spacing:560.126531pt;}
.ls87{letter-spacing:564.473198pt;}
.ls5a{letter-spacing:574.609067pt;}
.ls89{letter-spacing:576.643865pt;}
.ls86{letter-spacing:611.673198pt;}
.ls81{letter-spacing:1238.976533pt;}
.ws54{word-spacing:-53.440000pt;}
.ws93{word-spacing:-47.990400pt;}
.ws25{word-spacing:-13.283467pt;}
.ws12a{word-spacing:-11.955200pt;}
.ws51{word-spacing:-10.801728pt;}
.ws52{word-spacing:-10.640000pt;}
.ws2d{word-spacing:-10.626800pt;}
.wsc{word-spacing:-10.095467pt;}
.wsb{word-spacing:-9.298400pt;}
.ws55{word-spacing:-3.796800pt;}
.wsda{word-spacing:-2.709827pt;}
.wsc9{word-spacing:-2.447552pt;}
.ws1e{word-spacing:-2.337890pt;}
.ws1f{word-spacing:-2.231622pt;}
.ws7f{word-spacing:-2.191040pt;}
.ws14c{word-spacing:-2.056294pt;}
.ws80{word-spacing:-2.052096pt;}
.wse0{word-spacing:-2.019087pt;}
.ws14e{word-spacing:-2.008474pt;}
.ws5c{word-spacing:-1.965953pt;}
.ws9b{word-spacing:-1.912819pt;}
.ws7d{word-spacing:-1.832992pt;}
.ws120{word-spacing:-1.806551pt;}
.ws110{word-spacing:-1.647150pt;}
.wsea{word-spacing:-1.594016pt;}
.ws65{word-spacing:-1.560448pt;}
.ws27{word-spacing:-1.540882pt;}
.ws7e{word-spacing:-1.539072pt;}
.ws11e{word-spacing:-1.487748pt;}
.ws64{word-spacing:-1.453568pt;}
.wsdd{word-spacing:-1.381481pt;}
.ws4d{word-spacing:-1.328347pt;}
.ws90{word-spacing:-1.275213pt;}
.wsad{word-spacing:-1.245152pt;}
.ws16{word-spacing:-1.243341pt;}
.ws74{word-spacing:-1.218432pt;}
.ws4c{word-spacing:-1.168945pt;}
.wsac{word-spacing:-1.154304pt;}
.ws44{word-spacing:-1.115811pt;}
.ws68{word-spacing:-1.100864pt;}
.ws13e{word-spacing:-1.099878pt;}
.ws42{word-spacing:-1.062677pt;}
.wse1{word-spacing:-0.956410pt;}
.ws33{word-spacing:-0.903276pt;}
.wseb{word-spacing:-0.850142pt;}
.wsa5{word-spacing:-0.801600pt;}
.ws95{word-spacing:-0.797008pt;}
.wsb4{word-spacing:-0.764192pt;}
.wse2{word-spacing:-0.690740pt;}
.wscf{word-spacing:-0.637606pt;}
.ws14a{word-spacing:-0.621670pt;}
.wsa8{word-spacing:-0.603872pt;}
.wsaf{word-spacing:-0.577152pt;}
.ws69{word-spacing:-0.555776pt;}
.ws18{word-spacing:-0.478208pt;}
.wsd5{word-spacing:-0.478205pt;}
.ws14f{word-spacing:-0.430387pt;}
.ws37{word-spacing:-0.425071pt;}
.ws43{word-spacing:-0.371937pt;}
.ws11{word-spacing:-0.334746pt;}
.ws67{word-spacing:-0.293920pt;}
.ws23{word-spacing:-0.265669pt;}
.wsbd{word-spacing:-0.245824pt;}
.ws5e{word-spacing:-0.242592pt;}
.ws136{word-spacing:-0.239104pt;}
.ws24{word-spacing:-0.212535pt;}
.ws142{word-spacing:-0.191283pt;}
.wsae{word-spacing:-0.176352pt;}
.wsd8{word-spacing:-0.172171pt;}
.ws9f{word-spacing:-0.165664pt;}
.wsbc{word-spacing:-0.160320pt;}
.ws28{word-spacing:-0.159402pt;}
.ws19{word-spacing:-0.143462pt;}
.wsbb{word-spacing:-0.122912pt;}
.ws34{word-spacing:-0.106268pt;}
.ws127{word-spacing:-0.095642pt;}
.ws5f{word-spacing:-0.068096pt;}
.ws53{word-spacing:-0.053440pt;}
.ws4f{word-spacing:-0.053134pt;}
.ws12{word-spacing:-0.047821pt;}
.ws2e{word-spacing:-0.042507pt;}
.ws11d{word-spacing:-0.040382pt;}
.wsec{word-spacing:-0.001770pt;}
.ws0{word-spacing:0.000000pt;}
.ws13{word-spacing:0.047821pt;}
.ws78{word-spacing:0.048096pt;}
.ws3e{word-spacing:0.053134pt;}
.ws79{word-spacing:0.058784pt;}
.ws56{word-spacing:0.095642pt;}
.wsa0{word-spacing:0.101536pt;}
.ws21{word-spacing:0.106268pt;}
.wsd{word-spacing:0.127522pt;}
.wsb3{word-spacing:0.129600pt;}
.ws1a{word-spacing:0.143462pt;}
.wsb0{word-spacing:0.144288pt;}
.ws66{word-spacing:0.149632pt;}
.ws7a{word-spacing:0.158400pt;}
.ws2a{word-spacing:0.159402pt;}
.wsba{word-spacing:0.165664pt;}
.ws7b{word-spacing:0.177600pt;}
.ws15{word-spacing:0.191283pt;}
.ws77{word-spacing:0.197728pt;}
.ws35{word-spacing:0.212535pt;}
.ws94{word-spacing:0.239104pt;}
.ws26{word-spacing:0.265669pt;}
.ws36{word-spacing:0.318803pt;}
.wsbf{word-spacing:0.320640pt;}
.ws3c{word-spacing:0.371937pt;}
.ws81{word-spacing:0.379424pt;}
.wsc6{word-spacing:0.390112pt;}
.wsbe{word-spacing:0.400800pt;}
.wsc5{word-spacing:0.422176pt;}
.wsf5{word-spacing:0.425071pt;}
.wsb9{word-spacing:0.427520pt;}
.wsce{word-spacing:0.478205pt;}
.ws143{word-spacing:0.478208pt;}
.ws3f{word-spacing:0.531339pt;}
.ws13b{word-spacing:0.573850pt;}
.ws5d{word-spacing:0.584473pt;}
.ws10{word-spacing:0.621670pt;}
.ws97{word-spacing:0.637606pt;}
.ws10f{word-spacing:0.690740pt;}
.wsb7{word-spacing:0.737472pt;}
.ws9e{word-spacing:0.742816pt;}
.ws40{word-spacing:0.743874pt;}
.wsb8{word-spacing:0.764192pt;}
.ws9d{word-spacing:0.780224pt;}
.wse8{word-spacing:0.797008pt;}
.wsb5{word-spacing:0.801600pt;}
.ws111{word-spacing:0.903276pt;}
.ws49{word-spacing:0.956410pt;}
.wsc0{word-spacing:0.999328pt;}
.ws131{word-spacing:1.004237pt;}
.ws91{word-spacing:1.009543pt;}
.ws8b{word-spacing:1.084832pt;}
.ws8f{word-spacing:1.090176pt;}
.ws8a{word-spacing:1.111552pt;}
.ws125{word-spacing:1.115811pt;}
.ws76{word-spacing:1.132928pt;}
.ws8e{word-spacing:1.154304pt;}
.wsfe{word-spacing:1.168945pt;}
.wsfd{word-spacing:1.222079pt;}
.wsa{word-spacing:1.227389pt;}
.ws5a{word-spacing:1.275213pt;}
.wscc{word-spacing:1.319968pt;}
.ws22{word-spacing:1.328347pt;}
.ws8d{word-spacing:1.336000pt;}
.wsa3{word-spacing:1.362720pt;}
.ws30{word-spacing:1.381481pt;}
.wscb{word-spacing:1.389440pt;}
.ws75{word-spacing:1.426848pt;}
.ws31{word-spacing:1.434614pt;}
.wscd{word-spacing:1.448224pt;}
.ws115{word-spacing:1.487748pt;}
.wsa4{word-spacing:1.490976pt;}
.wsca{word-spacing:1.507008pt;}
.ws112{word-spacing:1.540882pt;}
.ws46{word-spacing:1.594016pt;}
.wsd6{word-spacing:1.647150pt;}
.ws84{word-spacing:1.678016pt;}
.ws48{word-spacing:1.700284pt;}
.ws83{word-spacing:1.715424pt;}
.ws85{word-spacing:1.752832pt;}
.ws58{word-spacing:1.753418pt;}
.ws17{word-spacing:1.769370pt;}
.wsf9{word-spacing:1.806551pt;}
.ws140{word-spacing:1.817190pt;}
.ws92{word-spacing:1.912819pt;}
.ws138{word-spacing:1.912832pt;}
.wsf6{word-spacing:1.965953pt;}
.ws6e{word-spacing:1.977280pt;}
.ws6f{word-spacing:2.004000pt;}
.ws4e{word-spacing:2.019087pt;}
.ws2f{word-spacing:2.072221pt;}
.ws3b{word-spacing:2.125355pt;}
.ws20{word-spacing:2.178489pt;}
.ws2{word-spacing:2.231616pt;}
.ws98{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.ws47{word-spacing:2.284756pt;}
.ws71{word-spacing:2.292576pt;}
.wsa7{word-spacing:2.297920pt;}
.wsd9{word-spacing:2.337890pt;}
.ws6b{word-spacing:2.346016pt;}
.ws6c{word-spacing:2.372736pt;}
.ws6d{word-spacing:2.394112pt;}
.ws6a{word-spacing:2.410144pt;}
.wsa6{word-spacing:2.442208pt;}
.ws9a{word-spacing:2.444158pt;}
.wsd0{word-spacing:2.497292pt;}
.wsd4{word-spacing:2.550426pt;}
.wse{word-spacing:2.550432pt;}
.ws3d{word-spacing:2.603559pt;}
.ws147{word-spacing:2.630144pt;}
.ws123{word-spacing:2.709827pt;}
.ws145{word-spacing:2.773606pt;}
.ws130{word-spacing:2.861457pt;}
.ws1b{word-spacing:2.861926pt;}
.ws146{word-spacing:2.863147pt;}
.ws134{word-spacing:2.866108pt;}
.ws126{word-spacing:2.866509pt;}
.ws57{word-spacing:2.869229pt;}
.ws129{word-spacing:2.869248pt;}
.ws12d{word-spacing:2.917069pt;}
.ws62{word-spacing:2.923168pt;}
.ws144{word-spacing:2.964890pt;}
.wsd2{word-spacing:2.975497pt;}
.ws63{word-spacing:2.976608pt;}
.ws114{word-spacing:3.028630pt;}
.wsab{word-spacing:3.072800pt;}
.ws41{word-spacing:3.081764pt;}
.wsaa{word-spacing:3.099520pt;}
.ws133{word-spacing:3.108352pt;}
.ws4b{word-spacing:3.134898pt;}
.ws1c{word-spacing:3.188032pt;}
.wsd1{word-spacing:3.241166pt;}
.wsb6{word-spacing:3.270528pt;}
.wsfa{word-spacing:3.294300pt;}
.wsc4{word-spacing:3.323968pt;}
.ws9c{word-spacing:3.347434pt;}
.wsdc{word-spacing:3.400567pt;}
.ws10d{word-spacing:3.506835pt;}
.ws12c{word-spacing:3.538739pt;}
.wse9{word-spacing:3.582230pt;}
.ws148{word-spacing:3.586560pt;}
.ws11b{word-spacing:3.613103pt;}
.wsf8{word-spacing:3.666237pt;}
.ws14{word-spacing:3.682202pt;}
.wsc3{word-spacing:3.692704pt;}
.wsc2{word-spacing:3.703392pt;}
.wse4{word-spacing:3.825638pt;}
.ws11f{word-spacing:3.878772pt;}
.ws82{word-spacing:3.885088pt;}
.ws8c{word-spacing:3.927840pt;}
.wsdf{word-spacing:3.931906pt;}
.ws5b{word-spacing:4.091308pt;}
.ws96{word-spacing:4.197575pt;}
.wsa9{word-spacing:4.216416pt;}
.wse7{word-spacing:4.250709pt;}
.wsf{word-spacing:4.254673pt;}
.wsb1{word-spacing:4.315200pt;}
.wsb2{word-spacing:4.334400pt;}
.wsef{word-spacing:4.351693pt;}
.wsee{word-spacing:4.399514pt;}
.ws39{word-spacing:4.410111pt;}
.ws38{word-spacing:4.463245pt;}
.ws59{word-spacing:4.569513pt;}
.wsd3{word-spacing:4.728914pt;}
.ws113{word-spacing:4.782048pt;}
.ws10e{word-spacing:4.835182pt;}
.ws8{word-spacing:4.872362pt;}
.ws11a{word-spacing:4.888316pt;}
.ws50{word-spacing:4.941450pt;}
.ws13d{word-spacing:4.973363pt;}
.wse3{word-spacing:4.994583pt;}
.ws7c{word-spacing:5.018016pt;}
.ws1d{word-spacing:5.100851pt;}
.ws122{word-spacing:5.153985pt;}
.ws70{word-spacing:5.226432pt;}
.ws29{word-spacing:5.260253pt;}
.wsa1{word-spacing:5.285216pt;}
.wsa2{word-spacing:5.306592pt;}
.wsfc{word-spacing:5.313387pt;}
.wsfb{word-spacing:5.366521pt;}
.wsc8{word-spacing:5.450880pt;}
.ws99{word-spacing:5.472788pt;}
.ws88{word-spacing:5.482944pt;}
.wsc7{word-spacing:5.493632pt;}
.wse6{word-spacing:5.525922pt;}
.ws89{word-spacing:5.531040pt;}
.ws12e{word-spacing:5.547213pt;}
.wsf7{word-spacing:5.738458pt;}
.ws32{word-spacing:5.791591pt;}
.wsdb{word-spacing:5.844725pt;}
.ws61{word-spacing:6.129568pt;}
.ws72{word-spacing:6.177664pt;}
.ws2b{word-spacing:6.216662pt;}
.ws4a{word-spacing:6.322930pt;}
.ws121{word-spacing:6.376064pt;}
.wse5{word-spacing:6.535466pt;}
.ws3a{word-spacing:6.694867pt;}
.ws87{word-spacing:7.155616pt;}
.ws86{word-spacing:7.166304pt;}
.ws101{word-spacing:7.603507pt;}
.wsde{word-spacing:8.448285pt;}
.ws45{word-spacing:8.501419pt;}
.ws117{word-spacing:8.554553pt;}
.ws6{word-spacing:8.740496pt;}
.ws3{word-spacing:9.261767pt;}
.ws14d{word-spacing:9.851085pt;}
.ws60{word-spacing:10.329312pt;}
.ws73{word-spacing:10.345984pt;}
.wsc1{word-spacing:10.436832pt;}
.ws7{word-spacing:10.525789pt;}
.ws2c{word-spacing:10.583895pt;}
.ws14b{word-spacing:11.285709pt;}
.ws137{word-spacing:11.668275pt;}
.ws128{word-spacing:11.811738pt;}
.ws13f{word-spacing:11.902071pt;}
.ws135{word-spacing:11.905331pt;}
.ws10a{word-spacing:11.907379pt;}
.ws13a{word-spacing:11.955200pt;}
.ws132{word-spacing:12.003021pt;}
.ws12b{word-spacing:12.146483pt;}
.ws13c{word-spacing:12.481229pt;}
.ws11c{word-spacing:12.509030pt;}
.wsd7{word-spacing:13.059111pt;}
.wsed{word-spacing:13.228999pt;}
.ws141{word-spacing:13.724570pt;}
.ws4{word-spacing:13.761632pt;}
.ws139{word-spacing:13.820211pt;}
.ws149{word-spacing:15.493939pt;}
.ws124{word-spacing:15.912533pt;}
.ws12f{word-spacing:17.454592pt;}
.ws119{word-spacing:18.542545pt;}
.ws116{word-spacing:18.546364pt;}
.ws5{word-spacing:19.857270pt;}
.ws9{word-spacing:20.196125pt;}
.ws103{word-spacing:171.146667pt;}
.ws100{word-spacing:191.109333pt;}
.ws10b{word-spacing:210.459341pt;}
.wsf3{word-spacing:221.786667pt;}
.wsf1{word-spacing:226.458530pt;}
.wsf2{word-spacing:241.160294pt;}
.wsf0{word-spacing:243.360051pt;}
.wsff{word-spacing:244.784495pt;}
.ws10c{word-spacing:246.324941pt;}
.wsf4{word-spacing:261.101568pt;}
.ws102{word-spacing:501.173333pt;}
.ws118{word-spacing:631.319641pt;}
.ws106{word-spacing:1475.245854pt;}
.ws105{word-spacing:1486.687251pt;}
.ws107{word-spacing:1496.505918pt;}
.ws104{word-spacing:1521.331187pt;}
.ws108{word-spacing:1553.512521pt;}
.ws109{word-spacing:1553.513918pt;}
._17{margin-left:-6.668304pt;}
._6{margin-left:-5.260288pt;}
._2{margin-left:-4.091296pt;}
._1b{margin-left:-2.665632pt;}
._4{margin-left:-1.301776pt;}
._18{width:1.004416pt;}
._7{width:2.667685pt;}
._15{width:4.224139pt;}
._1e{width:5.121600pt;}
._1c{width:6.076800pt;}
._0{width:9.298400pt;}
._1a{width:10.623872pt;}
._1{width:11.530016pt;}
._f{width:13.175632pt;}
._9{width:14.585344pt;}
._c{width:15.887026pt;}
._d{width:16.896570pt;}
._14{width:17.852979pt;}
._1f{width:18.862523pt;}
._e{width:19.792397pt;}
._b{width:20.727635pt;}
._3{width:22.502128pt;}
._12{width:23.458598pt;}
._34{width:24.474102pt;}
._a{width:26.598979pt;}
._22{width:28.399473pt;}
._5{width:29.648896pt;}
._1d{width:30.578529pt;}
._21{width:31.880320pt;}
._13{width:33.899442pt;}
._20{width:34.988647pt;}
._16{width:35.971628pt;}
._8{width:61.642608pt;}
._2b{width:64.032051pt;}
._2c{width:187.170611pt;}
._32{width:191.857050pt;}
._28{width:199.389499pt;}
._2e{width:203.073792pt;}
._2d{width:207.159706pt;}
._29{width:218.742954pt;}
._27{width:237.812838pt;}
._2a{width:253.721745pt;}
._23{width:260.671181pt;}
._26{width:273.104589pt;}
._24{width:314.230477pt;}
._25{width:327.524659pt;}
._2f{width:503.387287pt;}
._31{width:521.899872pt;}
._30{width:533.338187pt;}
._10{width:664.685086pt;}
._19{width:1857.250304pt;}
._33{width:2246.354933pt;}
._11{width:2267.608267pt;}
.fsa{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs13{font-size:38.755733pt;}
.fs9{font-size:40.381867pt;}
.fs11{font-size:42.077867pt;}
.fsb{font-size:42.507200pt;}
.fsd{font-size:42.560000pt;}
.fsc{font-size:47.820800pt;}
.fsf{font-size:48.000000pt;}
.fs12{font-size:49.829333pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fse{font-size:53.440000pt;}
.fs10{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.fs6{font-size:114.229120pt;}
.y113{bottom:-341.090707pt;}
.y112{bottom:-324.051363pt;}
.y111{bottom:-306.931859pt;}
.y110{bottom:-289.812355pt;}
.y10f{bottom:-272.773011pt;}
.y10e{bottom:-255.653507pt;}
.yce{bottom:-255.078840pt;}
.y10d{bottom:-238.614163pt;}
.ycd{bottom:-237.959336pt;}
.y10c{bottom:-221.494659pt;}
.ycc{bottom:-220.918656pt;}
.y10b{bottom:-204.375155pt;}
.ycb{bottom:-203.799152pt;}
.y10a{bottom:-187.335811pt;}
.yca{bottom:-186.759808pt;}
.y109{bottom:-170.216307pt;}
.yc9{bottom:-169.640304pt;}
.y108{bottom:-153.175627pt;}
.yc8{bottom:-152.520800pt;}
.y107{bottom:-136.056123pt;}
.yc7{bottom:-135.481456pt;}
.y106{bottom:-118.936619pt;}
.yc6{bottom:-118.361952pt;}
.y105{bottom:-101.897275pt;}
.yc5{bottom:-101.322608pt;}
.y104{bottom:-84.777771pt;}
.yc4{bottom:-84.203104pt;}
.y103{bottom:-67.658267pt;}
.yc3{bottom:-67.083600pt;}
.y102{bottom:-35.017867pt;}
.yc2{bottom:-34.364000pt;}
.y101{bottom:-19.498267pt;}
.yc1{bottom:-18.923600pt;}
.y0{bottom:0.000000pt;}
.y100{bottom:0.427373pt;}
.yc0{bottom:1.002432pt;}
.y11f{bottom:13.858133pt;}
.yd7{bottom:14.357733pt;}
.y39{bottom:14.848190pt;}
.y67{bottom:28.346667pt;}
.y114{bottom:29.461733pt;}
.ycf{bottom:29.956533pt;}
.y6{bottom:31.933340pt;}
.y115{bottom:54.341333pt;}
.y5{bottom:59.133337pt;}
.yd0{bottom:65.556933pt;}
.y116{bottom:79.220933pt;}
.y4{bottom:86.333337pt;}
.y1bf{bottom:89.149333pt;}
.y13a{bottom:92.108000pt;}
.y37{bottom:93.018667pt;}
.y15e{bottom:93.821333pt;}
.y66{bottom:95.205333pt;}
.y1ff{bottom:95.748000pt;}
.yd8{bottom:97.476400pt;}
.yed{bottom:100.052000pt;}
.yd1{bottom:101.076933pt;}
.y117{bottom:104.100533pt;}
.y1be{bottom:105.886667pt;}
.y9e{bottom:106.308000pt;}
.y139{bottom:108.844000pt;}
.y36{bottom:108.920000pt;}
.y15d{bottom:110.558667pt;}
.y1fe{bottom:111.090667pt;}
.y65{bottom:111.942667pt;}
.yec{bottom:116.789333pt;}
.y1e1{bottom:119.253333pt;}
.y1bd{bottom:122.624000pt;}
.y9d{bottom:123.045333pt;}
.y22{bottom:123.790666pt;}
.y35{bottom:124.820000pt;}
.y138{bottom:125.581333pt;}
.y1fd{bottom:126.433333pt;}
.y15c{bottom:127.296000pt;}
.y64{bottom:128.680000pt;}
.y118{bottom:128.980133pt;}
.yeb{bottom:133.526667pt;}
.y1e0{bottom:135.990667pt;}
.yd2{bottom:136.677333pt;}
.y1bc{bottom:139.361333pt;}
.y9c{bottom:139.782667pt;}
.y34{bottom:140.720000pt;}
.y1fc{bottom:141.774667pt;}
.y137{bottom:142.318667pt;}
.y15b{bottom:144.033333pt;}
.y63{bottom:145.417333pt;}
.yea{bottom:150.264000pt;}
.y1df{bottom:152.728000pt;}
.y119{bottom:153.859733pt;}
.y9b{bottom:156.520000pt;}
.y33{bottom:156.621333pt;}
.y1fb{bottom:157.117333pt;}
.y136{bottom:159.056000pt;}
.y15a{bottom:160.770667pt;}
.y62{bottom:162.154667pt;}
.ye9{bottom:167.001333pt;}
.y189{bottom:168.760000pt;}
.y1de{bottom:169.465333pt;}
.y1bb{bottom:170.100000pt;}
.yd3{bottom:172.197333pt;}
.y1fa{bottom:172.460000pt;}
.y32{bottom:172.521333pt;}
.y9a{bottom:173.257333pt;}
.y19{bottom:175.052000pt;}
.y135{bottom:175.793333pt;}
.y11a{bottom:178.739333pt;}
.y61{bottom:178.892000pt;}
.ye8{bottom:183.738667pt;}
.y188{bottom:185.497333pt;}
.y1dd{bottom:186.202667pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y1ba{bottom:186.837333pt;}
.y1f9{bottom:187.802667pt;}
.y31{bottom:188.421333pt;}
.y99{bottom:189.994667pt;}
.y159{bottom:191.454667pt;}
.y134{bottom:192.530667pt;}
.y60{bottom:195.629333pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.ye7{bottom:200.476000pt;}
.y187{bottom:202.234667pt;}
.y1dc{bottom:202.940000pt;}
.y1f8{bottom:203.145333pt;}
.y1b9{bottom:203.574667pt;}
.y11b{bottom:203.618933pt;}
.y30{bottom:204.322667pt;}
.y98{bottom:206.732000pt;}
.yd4{bottom:207.717333pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y133{bottom:209.268000pt;}
.y5f{bottom:212.365333pt;}
.ye6{bottom:217.213333pt;}
.y1f7{bottom:218.488000pt;}
.y186{bottom:218.972000pt;}
.y1db{bottom:219.677333pt;}
.y1b8{bottom:220.312000pt;}
.y158{bottom:222.008000pt;}
.y22e{bottom:222.206667pt;}
.y97{bottom:223.469333pt;}
.y132{bottom:226.005333pt;}
.y11c{bottom:228.498533pt;}
.y5e{bottom:229.102667pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y1f6{bottom:233.830667pt;}
.ye5{bottom:233.950667pt;}
.y185{bottom:235.709333pt;}
.y1da{bottom:236.414667pt;}
.y1b7{bottom:237.048000pt;}
.y22d{bottom:237.549333pt;}
.y96{bottom:240.206667pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y131{bottom:242.742667pt;}
.yd5{bottom:243.317733pt;}
.y5d{bottom:245.840000pt;}
.y1f5{bottom:249.173333pt;}
.ye4{bottom:250.688000pt;}
.y184{bottom:252.446667pt;}
.y157{bottom:252.692000pt;}
.y22c{bottom:252.892000pt;}
.y11d{bottom:253.378133pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y1b6{bottom:253.785333pt;}
.y95{bottom:256.944000pt;}
.y1d9{bottom:257.136000pt;}
.y130{bottom:259.480000pt;}
.y5c{bottom:262.577333pt;}
.y1f4{bottom:264.514667pt;}
.y2f{bottom:266.570667pt;}
.ye3{bottom:267.425333pt;}
.y183{bottom:269.184000pt;}
.y1b5{bottom:270.522667pt;}
.y94{bottom:273.681333pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y12f{bottom:276.217333pt;}
.y11e{bottom:278.257733pt;}
.yd6{bottom:278.837733pt;}
.y5b{bottom:279.314667pt;}
.y1f3{bottom:279.857333pt;}
.y2e{bottom:282.470667pt;}
.ye2{bottom:284.162667pt;}
.y182{bottom:285.921333pt;}
.y1d8{bottom:287.024000pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y1b4{bottom:287.260000pt;}
.y22b{bottom:287.628000pt;}
.y156{bottom:288.824000pt;}
.y93{bottom:290.417333pt;}
.y12e{bottom:292.954667pt;}
.y1f2{bottom:295.200000pt;}
.y5a{bottom:296.052000pt;}
.y2d{bottom:298.370667pt;}
.ye1{bottom:300.900000pt;}
.y181{bottom:302.658667pt;}
.y22a{bottom:302.970667pt;}
.y1d7{bottom:303.761333pt;}
.y1b3{bottom:303.997333pt;}
.y92{bottom:307.154667pt;}
.y10{bottom:309.452000pt;}
.y12d{bottom:309.692000pt;}
.y1f1{bottom:310.542667pt;}
.y59{bottom:312.789333pt;}
.y2c{bottom:314.272000pt;}
.yff{bottom:316.186965pt;}
.ybf{bottom:316.762024pt;}
.ye0{bottom:317.637333pt;}
.y229{bottom:318.313333pt;}
.y180{bottom:319.396000pt;}
.y155{bottom:319.509333pt;}
.y1d6{bottom:320.498667pt;}
.y1b2{bottom:320.734667pt;}
.y91{bottom:323.892000pt;}
.y1f0{bottom:325.885333pt;}
.y12c{bottom:326.429333pt;}
.y58{bottom:329.526667pt;}
.yfe{bottom:333.227645pt;}
.y228{bottom:333.656000pt;}
.ybe{bottom:333.801368pt;}
.ydf{bottom:334.374667pt;}
.y17f{bottom:336.133333pt;}
.y154{bottom:336.246667pt;}
.y1d5{bottom:337.236000pt;}
.y1b1{bottom:337.472000pt;}
.y2b{bottom:339.470667pt;}
.y90{bottom:340.629333pt;}
.y1ef{bottom:341.228000pt;}
.y12b{bottom:343.166667pt;}
.yf{bottom:343.809333pt;}
.y57{bottom:346.264000pt;}
.y227{bottom:348.998667pt;}
.yfd{bottom:350.347149pt;}
.ybd{bottom:350.920872pt;}
.yde{bottom:351.110667pt;}
.y17e{bottom:352.870667pt;}
.y153{bottom:352.984000pt;}
.y1d4{bottom:353.973333pt;}
.y1b0{bottom:354.209333pt;}
.y2a{bottom:355.370667pt;}
.y1ee{bottom:356.570667pt;}
.y8f{bottom:357.366667pt;}
.y12a{bottom:359.904000pt;}
.ye{bottom:362.706666pt;}
.y56{bottom:363.001333pt;}
.y226{bottom:364.341333pt;}
.yfc{bottom:367.386493pt;}
.ydd{bottom:367.848000pt;}
.ybc{bottom:368.040376pt;}
.y17d{bottom:369.608000pt;}
.y152{bottom:369.721333pt;}
.y1d3{bottom:370.710667pt;}
.y1af{bottom:370.946667pt;}
.y1ed{bottom:371.913333pt;}
.y8e{bottom:374.104000pt;}
.y129{bottom:376.641333pt;}
.y29{bottom:379.241333pt;}
.y225{bottom:379.684000pt;}
.y55{bottom:379.738667pt;}
.yfb{bottom:384.505997pt;}
.ydc{bottom:384.585333pt;}
.ybb{bottom:385.081056pt;}
.y17c{bottom:386.345333pt;}
.y151{bottom:386.458667pt;}
.y1d2{bottom:387.448000pt;}
.y1ae{bottom:387.684000pt;}
.y8d{bottom:390.841333pt;}
.y1ec{bottom:391.240000pt;}
.y128{bottom:393.378667pt;}
.y224{bottom:395.025333pt;}
.y28{bottom:395.141333pt;}
.y54{bottom:400.461333pt;}
.ydb{bottom:401.322667pt;}
.yfa{bottom:401.625501pt;}
.yba{bottom:402.200560pt;}
.y17b{bottom:403.082667pt;}
.y150{bottom:403.196000pt;}
.y1d1{bottom:404.185333pt;}
.y1ad{bottom:404.421333pt;}
.y8c{bottom:407.578667pt;}
.y127{bottom:410.116000pt;}
.y223{bottom:410.368000pt;}
.y27{bottom:411.042667pt;}
.yf9{bottom:418.664845pt;}
.yb9{bottom:419.239904pt;}
.y17a{bottom:419.820000pt;}
.y14f{bottom:419.933333pt;}
.y1d0{bottom:420.922667pt;}
.y1eb{bottom:421.128000pt;}
.y1ac{bottom:421.158667pt;}
.y8b{bottom:424.316000pt;}
.y222{bottom:425.710667pt;}
.y126{bottom:426.853333pt;}
.y26{bottom:426.942667pt;}
.yda{bottom:431.160000pt;}
.yf8{bottom:435.784349pt;}
.yb8{bottom:436.359408pt;}
.y179{bottom:436.557333pt;}
.y14e{bottom:436.670667pt;}
.y1cf{bottom:437.660000pt;}
.y1ab{bottom:437.896000pt;}
.y8a{bottom:441.053333pt;}
.y25{bottom:442.842667pt;}
.y125{bottom:443.590667pt;}
.y1ea{bottom:444.720000pt;}
.yd{bottom:446.990669pt;}
.yd9{bottom:448.254667pt;}
.yf7{bottom:452.903853pt;}
.y178{bottom:453.294667pt;}
.y14d{bottom:453.406667pt;}
.yb7{bottom:453.478912pt;}
.y1ce{bottom:454.397333pt;}
.y1aa{bottom:454.633333pt;}
.y221{bottom:456.396000pt;}
.y89{bottom:457.790667pt;}
.y24{bottom:458.744000pt;}
.y124{bottom:460.328000pt;}
.y1e9{bottom:460.341333pt;}
.yc{bottom:462.990669pt;}
.y53{bottom:467.261333pt;}
.yab{bottom:468.192000pt;}
.yf6{bottom:469.943197pt;}
.y177{bottom:470.032000pt;}
.yb6{bottom:470.518256pt;}
.y1cd{bottom:471.134667pt;}
.y1a9{bottom:471.370667pt;}
.y220{bottom:471.738667pt;}
.y14c{bottom:474.129333pt;}
.y88{bottom:474.528000pt;}
.y23{bottom:474.644000pt;}
.y123{bottom:477.065333pt;}
.yb{bottom:478.990666pt;}
.y1e8{bottom:483.933333pt;}
.yf5{bottom:487.062701pt;}
.y21f{bottom:487.081333pt;}
.yb5{bottom:487.637760pt;}
.y1cc{bottom:487.872000pt;}
.y1a8{bottom:488.108000pt;}
.y176{bottom:490.753333pt;}
.y87{bottom:491.265333pt;}
.y122{bottom:493.802667pt;}
.ya{bottom:494.990666pt;}
.y52{bottom:500.496000pt;}
.y21e{bottom:502.424000pt;}
.y14b{bottom:504.017333pt;}
.yf4{bottom:504.102045pt;}
.y1cb{bottom:504.609333pt;}
.yb4{bottom:504.757264pt;}
.y1a7{bottom:504.845333pt;}
.y1e7{bottom:507.524000pt;}
.y86{bottom:508.002667pt;}
.y21d{bottom:517.766667pt;}
.y51{bottom:517.792000pt;}
.y14a{bottom:520.754667pt;}
.yf3{bottom:521.221549pt;}
.y1ca{bottom:521.346667pt;}
.y1a6{bottom:521.582667pt;}
.yb3{bottom:521.796608pt;}
.y121{bottom:521.889333pt;}
.y85{bottom:524.740000pt;}
.y175{bottom:528.374667pt;}
.y1e6{bottom:531.116000pt;}
.y21c{bottom:533.108000pt;}
.y50{bottom:535.086667pt;}
.y149{bottom:537.492000pt;}
.y1c9{bottom:538.084000pt;}
.y1a5{bottom:538.320000pt;}
.yf2{bottom:538.341053pt;}
.y120{bottom:538.985333pt;}
.y84{bottom:541.477333pt;}
.yb2{bottom:542.837272pt;}
.y174{bottom:542.986667pt;}
.y1e5{bottom:546.737333pt;}
.y21b{bottom:548.450667pt;}
.y4f{bottom:552.382667pt;}
.y148{bottom:554.229333pt;}
.y1c8{bottom:554.821333pt;}
.y1a4{bottom:555.057333pt;}
.yf1{bottom:555.381733pt;}
.y173{bottom:557.598667pt;}
.y83{bottom:558.214667pt;}
.yee{bottom:558.922667pt;}
.y1e4{bottom:562.358667pt;}
.y21a{bottom:563.793333pt;}
.y4e{bottom:569.677333pt;}
.y147{bottom:570.966667pt;}
.y1c7{bottom:571.558667pt;}
.y1a3{bottom:571.794667pt;}
.y9{bottom:573.786667pt;}
.y82{bottom:574.952000pt;}
.yb1{bottom:575.956712pt;}
.y1e3{bottom:577.980000pt;}
.y172{bottom:578.613333pt;}
.y219{bottom:579.136000pt;}
.y4d{bottom:586.972000pt;}
.y146{bottom:587.704000pt;}
.y1c6{bottom:588.296000pt;}
.y1a2{bottom:588.532000pt;}
.y81{bottom:591.689333pt;}
.y8{bottom:592.685334pt;}
.yb0{bottom:593.076216pt;}
.y171{bottom:593.225333pt;}
.y1e2{bottom:593.601333pt;}
.y218{bottom:594.478667pt;}
.yf0{bottom:604.021853pt;}
.y4c{bottom:604.268000pt;}
.y145{bottom:604.441333pt;}
.y1c5{bottom:605.033333pt;}
.y1a1{bottom:605.269333pt;}
.y170{bottom:607.836000pt;}
.y80{bottom:608.426667pt;}
.y217{bottom:609.821333pt;}
.yaf{bottom:610.195720pt;}
.yef{bottom:612.581733pt;}
.y144{bottom:621.178667pt;}
.y4b{bottom:621.562667pt;}
.y1c4{bottom:621.769333pt;}
.y1a0{bottom:622.006667pt;}
.y7f{bottom:625.164000pt;}
.yae{bottom:627.236400pt;}
.y16f{bottom:628.850667pt;}
.y143{bottom:637.916000pt;}
.y19f{bottom:638.744000pt;}
.y4a{bottom:638.857333pt;}
.y216{bottom:640.506667pt;}
.y7e{bottom:641.901333pt;}
.y7{bottom:645.598667pt;}
.y1c3{bottom:646.098667pt;}
.y1c2{bottom:654.493333pt;}
.y142{bottom:654.653333pt;}
.y215{bottom:655.848000pt;}
.y49{bottom:656.153333pt;}
.y16e{bottom:656.957333pt;}
.y7d{bottom:658.638667pt;}
.y3{bottom:668.977329pt;}
.y214{bottom:671.190667pt;}
.y141{bottom:671.390667pt;}
.y48{bottom:673.448000pt;}
.y16d{bottom:674.052000pt;}
.y7c{bottom:675.376000pt;}
.yad{bottom:675.876520pt;}
.y19e{bottom:679.154667pt;}
.yac{bottom:684.436400pt;}
.y213{bottom:686.533333pt;}
.y140{bottom:688.128000pt;}
.y47{bottom:690.744000pt;}
.y7b{bottom:692.113333pt;}
.y19d{bottom:693.766667pt;}
.y1c1{bottom:694.849333pt;}
.y212{bottom:701.876000pt;}
.y1c0{bottom:703.244000pt;}
.y13f{bottom:704.865333pt;}
.y16c{bottom:707.034667pt;}
.y46{bottom:708.038667pt;}
.y7a{bottom:708.850667pt;}
.y19c{bottom:708.933333pt;}
.y211{bottom:717.218667pt;}
.y13e{bottom:721.602667pt;}
.y19b{bottom:723.545333pt;}
.y16b{bottom:723.772000pt;}
.y45{bottom:725.333333pt;}
.y79{bottom:725.588000pt;}
.y210{bottom:732.561333pt;}
.y19a{bottom:738.157333pt;}
.y13d{bottom:738.340000pt;}
.y16a{bottom:740.509333pt;}
.y78{bottom:742.324000pt;}
.y44{bottom:742.629333pt;}
.y20f{bottom:747.904000pt;}
.y199{bottom:752.769333pt;}
.y13c{bottom:755.077333pt;}
.y169{bottom:757.245333pt;}
.y77{bottom:759.061333pt;}
.y20e{bottom:763.246667pt;}
.y198{bottom:767.380000pt;}
.y13b{bottom:771.814667pt;}
.y168{bottom:773.982667pt;}
.y76{bottom:775.798667pt;}
.y43{bottom:776.926667pt;}
.y20d{bottom:778.589333pt;}
.y2{bottom:781.661334pt;}
.y197{bottom:781.992000pt;}
.yaa{bottom:788.552000pt;}
.y167{bottom:790.720000pt;}
.y42{bottom:791.273333pt;}
.y75{bottom:792.536000pt;}
.y20c{bottom:793.930667pt;}
.y196{bottom:796.604000pt;}
.ya9{bottom:805.289333pt;}
.y166{bottom:807.457333pt;}
.y74{bottom:809.273333pt;}
.y41{bottom:809.477333pt;}
.y195{bottom:811.216000pt;}
.y40{bottom:819.965333pt;}
.ya8{bottom:822.025333pt;}
.y3f{bottom:823.824000pt;}
.y165{bottom:824.194667pt;}
.y20b{bottom:824.616000pt;}
.y194{bottom:825.828000pt;}
.y73{bottom:826.010667pt;}
.ya7{bottom:838.762667pt;}
.y20a{bottom:839.958667pt;}
.y193{bottom:840.440000pt;}
.y164{bottom:840.932000pt;}
.y72{bottom:842.748000pt;}
.y192{bottom:855.052000pt;}
.y209{bottom:855.301333pt;}
.ya6{bottom:855.500000pt;}
.y163{bottom:857.669333pt;}
.y1{bottom:859.312000pt;}
.y71{bottom:859.485333pt;}
.y3e{bottom:863.536000pt;}
.y191{bottom:869.664000pt;}
.y208{bottom:870.644000pt;}
.ya5{bottom:872.237333pt;}
.y162{bottom:874.406667pt;}
.y70{bottom:876.222667pt;}
.y190{bottom:884.462667pt;}
.y207{bottom:885.986667pt;}
.ya4{bottom:888.974667pt;}
.y161{bottom:891.144000pt;}
.y6f{bottom:892.960000pt;}
.y3d{bottom:896.213333pt;}
.y18f{bottom:899.260000pt;}
.y206{bottom:901.329333pt;}
.ya3{bottom:905.712000pt;}
.y160{bottom:907.881333pt;}
.y6e{bottom:909.697333pt;}
.y18e{bottom:913.872000pt;}
.y205{bottom:916.670667pt;}
.y3c{bottom:921.320000pt;}
.ya2{bottom:922.449333pt;}
.y6d{bottom:926.434667pt;}
.y18d{bottom:928.484000pt;}
.y15f{bottom:928.604000pt;}
.y204{bottom:932.013333pt;}
.ya1{bottom:939.186667pt;}
.y6c{bottom:943.172000pt;}
.y3b{bottom:946.425333pt;}
.y202{bottom:947.356000pt;}
.y18c{bottom:949.498667pt;}
.y203{bottom:951.696000pt;}
.ya0{bottom:955.924000pt;}
.y6b{bottom:959.909333pt;}
.y201{bottom:962.698667pt;}
.y3a{bottom:971.530667pt;}
.y9f{bottom:972.661333pt;}
.y6a{bottom:976.646667pt;}
.y18b{bottom:977.604000pt;}
.y200{bottom:978.041333pt;}
.y69{bottom:993.384000pt;}
.y18a{bottom:994.700000pt;}
.y38{bottom:1010.186667pt;}
.y68{bottom:1046.810667pt;}
.h10{height:23.209028pt;}
.h2a{height:24.648646pt;}
.h9{height:27.076941pt;}
.ha{height:27.262909pt;}
.h7{height:28.560000pt;}
.h18{height:30.943281pt;}
.h11{height:30.945242pt;}
.h15{height:31.157778pt;}
.h17{height:31.338125pt;}
.h1d{height:34.453125pt;}
.h26{height:34.574438pt;}
.h24{height:34.717901pt;}
.h12{height:34.813542pt;}
.h1c{height:34.898438pt;}
.h25{height:35.052646pt;}
.h20{height:35.212691pt;}
.h1b{height:35.343750pt;}
.h22{height:37.778179pt;}
.h1e{height:38.357812pt;}
.h13{height:38.415786pt;}
.h14{height:38.681455pt;}
.h19{height:38.853594pt;}
.hd{height:38.947124pt;}
.h1a{height:39.349375pt;}
.h6{height:40.800000pt;}
.h23{height:40.964400pt;}
.h21{height:41.524400pt;}
.h3{height:42.840000pt;}
.h27{height:44.431607pt;}
.hb{height:45.271688pt;}
.hf{height:48.481423pt;}
.h2{height:48.960000pt;}
.he{height:69.148877pt;}
.h5{height:69.360000pt;}
.h29{height:72.260122pt;}
.h28{height:77.074688pt;}
.hc{height:77.447343pt;}
.h4{height:105.826671pt;}
.h1f{height:298.036000pt;}
.h16{height:299.345333pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:175.330780pt;}
.w6{width:468.217333pt;}
.w5{width:469.528000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x13{left:-172.218667pt;}
.xb{left:-171.272000pt;}
.x0{left:0.000000pt;}
.x14{left:1.621333pt;}
.xc{left:2.568000pt;}
.x15{left:29.940525pt;}
.xd{left:30.888528pt;}
.x12{left:32.008000pt;}
.x10{left:39.527600pt;}
.xf{left:45.608000pt;}
.x5{left:47.621333pt;}
.x6{left:51.605861pt;}
.x16{left:54.901333pt;}
.x54{left:75.710667pt;}
.x11{left:78.488000pt;}
.x17{left:84.501733pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x1f{left:119.185333pt;}
.x21{left:128.034667pt;}
.x4{left:180.874667pt;}
.x9{left:220.912000pt;}
.x7{left:221.858667pt;}
.x32{left:225.932000pt;}
.x41{left:237.412000pt;}
.x8{left:239.781333pt;}
.x39{left:242.520000pt;}
.x40{left:243.618667pt;}
.x3f{left:245.568000pt;}
.x43{left:247.453333pt;}
.xa{left:250.204000pt;}
.x3c{left:255.264000pt;}
.x42{left:257.158667pt;}
.x3e{left:259.846667pt;}
.x3d{left:266.053333pt;}
.x38{left:269.825333pt;}
.x37{left:271.110667pt;}
.x44{left:272.705333pt;}
.x3a{left:273.889333pt;}
.x2d{left:284.750667pt;}
.x49{left:301.793333pt;}
.x27{left:313.437333pt;}
.x2e{left:320.896000pt;}
.x45{left:325.646667pt;}
.x4e{left:326.544000pt;}
.x46{left:336.572000pt;}
.x33{left:340.076000pt;}
.x3b{left:341.148000pt;}
.x4a{left:344.089333pt;}
.x4f{left:357.044000pt;}
.x50{left:361.722667pt;}
.x1e{left:367.064000pt;}
.x4b{left:372.745333pt;}
.x4c{left:377.422667pt;}
.x20{left:380.900000pt;}
.x51{left:387.389333pt;}
.x4d{left:388.349333pt;}
.x36{left:398.204000pt;}
.x3{left:404.408000pt;}
.x52{left:440.058667pt;}
.x47{left:444.966667pt;}
.x48{left:455.892000pt;}
.xe{left:468.568808pt;}
.x1a{left:476.488000pt;}
.x28{left:481.966667pt;}
.x1b{left:487.413333pt;}
.x29{left:489.357333pt;}
.x22{left:503.452000pt;}
.x23{left:514.378667pt;}
.x2f{left:516.092000pt;}
.x55{left:541.992000pt;}
.x56{left:545.441333pt;}
.x34{left:555.005333pt;}
.x35{left:575.190667pt;}
.x2a{left:591.936000pt;}
.x2b{left:599.326667pt;}
.x18{left:618.182667pt;}
.x30{left:626.168000pt;}
.x19{left:629.108000pt;}
.x53{left:666.673333pt;}
.x24{left:687.162667pt;}
.x1c{left:696.993333pt;}
.x25{left:705.329333pt;}
.x1d{left:707.918667pt;}
.x26{left:730.816000pt;}
.x31{left:740.312000pt;}
.x2c{left:743.973333pt;}
}




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