
    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_7c11eb785254ae580e224a8d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_557d97cb8a7604a682c04f1b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_06b48d5fc0049f6eb42281cf.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_86778ba81e39cfb4bfe326e1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.191000;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_ef881dda53b3ada81671fcdc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.723686;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_664ed1b56881a8683b1637d6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.681641;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_c18ac1d3915ded3292f0cf5e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_9bce71457593f40ab7aafbb0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000977;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_f3563aeef3ea24f8a89c50d5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.211426;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_e057e5b682ba1940e6989d80.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.738770;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_2b64cd384c8488bb4b1623ec.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_7910ef593fddf92b8c46f0e8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.752441;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_e3e576fad2155f0033e9febe.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_664ed1b56881a8683b1637d6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.681641;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_941f0ca4ef7863e037c10cb8.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;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_e5448d9278c827090af45920.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000977;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_95e6c93f0007af2c49ffa667.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.211426;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_b17dd18bf37ac7e2d877e4ea.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.738770;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_576f07f2278714908d5a690c.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_7910ef593fddf92b8c46f0e8.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.752441;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;}
.m17{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m4{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);}
.mc{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);}
.m11{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);}
.m13{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);}
.m19{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);}
.m1a{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);}
.m28{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);}
.m1f{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);}
.m3{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);}
.mf{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);}
.m2b{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);}
.m27{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);}
.md{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);}
.m2a{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);}
.m29{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);}
.m16{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);}
.m9{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);}
.m6{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);}
.m1e{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);}
.m22{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m1d{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);}
.m7{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);}
.m15{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);}
.m1b{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);}
.m26{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);}
.mb{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);}
.m25{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);}
.ma{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);}
.m1c{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2c{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);}
.m10{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);}
.m2d{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);}
.m14{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);}
.m8{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);}
.m5{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);}
.m12{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);}
.m20{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);}
.m21{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);}
.me{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.530000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:14.647500px;}
.v1{vertical-align:21.696000px;}
.v5{vertical-align:22.718400px;}
.v4{vertical-align:56.790000px;}
.ls6d{letter-spacing:-0.523044px;}
.ls65{letter-spacing:-0.505008px;}
.ls68{letter-spacing:-0.486972px;}
.ls41{letter-spacing:-0.438876px;}
.ls6b{letter-spacing:-0.420840px;}
.ls79{letter-spacing:-0.408816px;}
.ls7d{letter-spacing:-0.384768px;}
.ls7f{letter-spacing:-0.348696px;}
.ls6e{letter-spacing:-0.342684px;}
.ls80{letter-spacing:-0.336672px;}
.ls78{letter-spacing:-0.324648px;}
.ls69{letter-spacing:-0.306612px;}
.ls50{letter-spacing:-0.300600px;}
.ls47{letter-spacing:-0.294588px;}
.ls53{letter-spacing:-0.282564px;}
.ls81{letter-spacing:-0.276552px;}
.ls4a{letter-spacing:-0.270540px;}
.ls42{letter-spacing:-0.264528px;}
.ls76{letter-spacing:-0.258516px;}
.ls70{letter-spacing:-0.252504px;}
.ls51{letter-spacing:-0.240480px;}
.ls52{letter-spacing:-0.234468px;}
.ls40{letter-spacing:-0.228456px;}
.ls63{letter-spacing:-0.222444px;}
.ls58{letter-spacing:-0.216432px;}
.ls59{letter-spacing:-0.210420px;}
.ls74{letter-spacing:-0.204408px;}
.ls55{letter-spacing:-0.192384px;}
.ls75{letter-spacing:-0.186372px;}
.ls7a{letter-spacing:-0.180360px;}
.ls66{letter-spacing:-0.174348px;}
.ls46{letter-spacing:-0.168336px;}
.ls6c{letter-spacing:-0.162324px;}
.ls71{letter-spacing:-0.156312px;}
.ls64{letter-spacing:-0.150300px;}
.ls73{letter-spacing:-0.132264px;}
.ls67{letter-spacing:-0.126252px;}
.lsa1{letter-spacing:-0.122645px;}
.ls57{letter-spacing:-0.120240px;}
.ls61{letter-spacing:-0.118800px;}
.ls4c{letter-spacing:-0.114228px;}
.ls56{letter-spacing:-0.108216px;}
.ls72{letter-spacing:-0.102204px;}
.ls43{letter-spacing:-0.096192px;}
.lsa2{letter-spacing:-0.094028px;}
.ls4b{letter-spacing:-0.090180px;}
.ls77{letter-spacing:-0.084168px;}
.ls6a{letter-spacing:-0.078156px;}
.lsa4{letter-spacing:-0.073587px;}
.ls4d{letter-spacing:-0.072144px;}
.ls49{letter-spacing:-0.066132px;}
.ls5c{letter-spacing:-0.060120px;}
.ls45{letter-spacing:-0.054108px;}
.ls44{letter-spacing:-0.048096px;}
.ls9b{letter-spacing:-0.044064px;}
.ls7c{letter-spacing:-0.042084px;}
.ls9a{letter-spacing:-0.036720px;}
.ls54{letter-spacing:-0.036072px;}
.ls99{letter-spacing:-0.033048px;}
.ls4e{letter-spacing:-0.030060px;}
.ls9f{letter-spacing:-0.029376px;}
.lsa3{letter-spacing:-0.028617px;}
.ls48{letter-spacing:-0.024048px;}
.ls9e{letter-spacing:-0.022032px;}
.lsa0{letter-spacing:-0.018360px;}
.ls62{letter-spacing:-0.018036px;}
.ls96{letter-spacing:-0.014688px;}
.ls5b{letter-spacing:-0.012024px;}
.ls5d{letter-spacing:-0.010800px;}
.ls9d{letter-spacing:-0.007344px;}
.ls4f{letter-spacing:-0.006012px;}
.ls6{letter-spacing:0.000000px;}
.ls9c{letter-spacing:0.003672px;}
.ls15{letter-spacing:0.006012px;}
.ls5e{letter-spacing:0.010800px;}
.ls8d{letter-spacing:0.011016px;}
.ls20{letter-spacing:0.012024px;}
.ls89{letter-spacing:0.014688px;}
.ls1f{letter-spacing:0.018036px;}
.ls91{letter-spacing:0.018360px;}
.ls94{letter-spacing:0.022032px;}
.ls12{letter-spacing:0.024048px;}
.ls8b{letter-spacing:0.025704px;}
.ls98{letter-spacing:0.029376px;}
.ls21{letter-spacing:0.030060px;}
.ls97{letter-spacing:0.033048px;}
.ls1d{letter-spacing:0.036072px;}
.ls17{letter-spacing:0.042084px;}
.ls92{letter-spacing:0.047736px;}
.ls27{letter-spacing:0.048096px;}
.ls8e{letter-spacing:0.051408px;}
.ls85{letter-spacing:0.052093px;}
.ls5f{letter-spacing:0.054000px;}
.ls1e{letter-spacing:0.054108px;}
.ls11{letter-spacing:0.060120px;}
.ls90{letter-spacing:0.062424px;}
.ls24{letter-spacing:0.064800px;}
.ls1a{letter-spacing:0.066132px;}
.ls8a{letter-spacing:0.069768px;}
.ls13{letter-spacing:0.072144px;}
.ls25{letter-spacing:0.078156px;}
.lsb{letter-spacing:0.081396px;}
.ls28{letter-spacing:0.084168px;}
.ls2f{letter-spacing:0.090180px;}
.ls14{letter-spacing:0.096192px;}
.ls95{letter-spacing:0.097675px;}
.lse{letter-spacing:0.102204px;}
.ls35{letter-spacing:0.108216px;}
.ls2e{letter-spacing:0.114228px;}
.ls8f{letter-spacing:0.121176px;}
.ls86{letter-spacing:0.123722px;}
.ls60{letter-spacing:0.129600px;}
.ls6f{letter-spacing:0.144288px;}
.ls16{letter-spacing:0.150300px;}
.ls3f{letter-spacing:0.153216px;}
.ls7b{letter-spacing:0.174348px;}
.ls23{letter-spacing:0.183600px;}
.lsc{letter-spacing:0.191520px;}
.ls1c{letter-spacing:0.192384px;}
.ls37{letter-spacing:0.208384px;}
.ls7e{letter-spacing:0.312624px;}
.ls93{letter-spacing:0.367200px;}
.ls26{letter-spacing:0.456912px;}
.ls8c{letter-spacing:0.613224px;}
.ls3a{letter-spacing:0.817632px;}
.ls88{letter-spacing:0.855576px;}
.ls29{letter-spacing:1.178352px;}
.ls32{letter-spacing:1.465046px;}
.ls19{letter-spacing:1.539072px;}
.ls18{letter-spacing:1.893780px;}
.ls1b{letter-spacing:1.899792px;}
.ls2d{letter-spacing:2.254500px;}
.ls36{letter-spacing:2.615220px;}
.ls34{letter-spacing:2.975940px;}
.ls0{letter-spacing:2.989200px;}
.ls1{letter-spacing:2.998354px;}
.ls3b{letter-spacing:3.336660px;}
.ls3c{letter-spacing:3.673005px;}
.ls33{letter-spacing:3.697380px;}
.ls2c{letter-spacing:4.058100px;}
.ls2b{letter-spacing:4.418820px;}
.ls10{letter-spacing:5.855688px;}
.lsf{letter-spacing:6.216408px;}
.ls39{letter-spacing:7.298568px;}
.ls38{letter-spacing:7.659288px;}
.ls31{letter-spacing:8.020008px;}
.ls30{letter-spacing:8.380728px;}
.ls3e{letter-spacing:9.817596px;}
.ls83{letter-spacing:10.083600px;}
.ls3d{letter-spacing:10.178316px;}
.lsa{letter-spacing:10.486390px;}
.ls9{letter-spacing:10.491070px;}
.ls8{letter-spacing:10.605830px;}
.ls5a{letter-spacing:11.621196px;}
.ls5{letter-spacing:11.954850px;}
.lsa8{letter-spacing:13.255705px;}
.lsa5{letter-spacing:13.448400px;}
.lsa6{letter-spacing:13.454400px;}
.lsaa{letter-spacing:13.550400px;}
.lsa9{letter-spacing:13.611129px;}
.ls84{letter-spacing:15.302554px;}
.lsa7{letter-spacing:16.768047px;}
.lsab{letter-spacing:16.915106px;}
.ls2{letter-spacing:17.929200px;}
.lsac{letter-spacing:20.144518px;}
.ls2a{letter-spacing:65.759256px;}
.ls4{letter-spacing:67.247510px;}
.ls3{letter-spacing:70.236600px;}
.ls7{letter-spacing:93.544178px;}
.ls22{letter-spacing:193.490208px;}
.ls82{letter-spacing:656.965584px;}
.lsd{letter-spacing:2075.454360px;}
.ls87{letter-spacing:2398.245232px;}
.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;}
}
.ws51{word-spacing:-60.120000px;}
.ws47{word-spacing:-47.880000px;}
.wsfb{word-spacing:-36.720000px;}
.wse6{word-spacing:-32.558400px;}
.ws1d{word-spacing:-14.943900px;}
.ws3{word-spacing:-14.355754px;}
.wsb7{word-spacing:-13.449600px;}
.ws16{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.wsfe{word-spacing:-10.097755px;}
.wsde{word-spacing:-9.564120px;}
.ws143{word-spacing:-2.851315px;}
.ws22{word-spacing:-2.689902px;}
.wsb6{word-spacing:-2.634508px;}
.wsa8{word-spacing:-2.630126px;}
.ws115{word-spacing:-2.510575px;}
.ws116{word-spacing:-2.331248px;}
.ws0{word-spacing:-2.044339px;}
.ws117{word-spacing:-1.972595px;}
.ws10d{word-spacing:-1.793268px;}
.wsc5{word-spacing:-1.613941px;}
.ws10f{word-spacing:-1.434614px;}
.ws3f{word-spacing:-1.374839px;}
.wsaf{word-spacing:-1.195512px;}
.ws111{word-spacing:-1.135736px;}
.wsc6{word-spacing:-1.075961px;}
.wsa7{word-spacing:-1.016185px;}
.wsa6{word-spacing:-0.956410px;}
.ws128{word-spacing:-0.860774px;}
.wsb9{word-spacing:-0.621668px;}
.ws110{word-spacing:-0.597756px;}
.ws4{word-spacing:-0.537980px;}
.wsb0{word-spacing:-0.418429px;}
.ws9d{word-spacing:-0.372744px;}
.wsa{word-spacing:-0.358654px;}
.ws9{word-spacing:-0.298878px;}
.ws119{word-spacing:-0.268992px;}
.ws4d{word-spacing:-0.252504px;}
.ws45{word-spacing:-0.239400px;}
.ws1b{word-spacing:-0.239102px;}
.ws9a{word-spacing:-0.234468px;}
.ws11c{word-spacing:-0.215194px;}
.ws62{word-spacing:-0.210420px;}
.ws8c{word-spacing:-0.204408px;}
.ws48{word-spacing:-0.201096px;}
.ws79{word-spacing:-0.183600px;}
.wsd{word-spacing:-0.179327px;}
.ws90{word-spacing:-0.174348px;}
.ws6b{word-spacing:-0.168336px;}
.ws49{word-spacing:-0.162324px;}
.ws11f{word-spacing:-0.161395px;}
.ws7e{word-spacing:-0.156312px;}
.wse4{word-spacing:-0.156280px;}
.ws92{word-spacing:-0.150300px;}
.ws82{word-spacing:-0.144288px;}
.ws7c{word-spacing:-0.138276px;}
.ws55{word-spacing:-0.132264px;}
.wse7{word-spacing:-0.130234px;}
.ws44{word-spacing:-0.129276px;}
.ws61{word-spacing:-0.126252px;}
.ws52{word-spacing:-0.120240px;}
.wse{word-spacing:-0.119551px;}
.ws77{word-spacing:-0.118800px;}
.ws66{word-spacing:-0.114228px;}
.ws80{word-spacing:-0.108216px;}
.ws78{word-spacing:-0.108000px;}
.ws122{word-spacing:-0.107597px;}
.wsee{word-spacing:-0.106488px;}
.ws5c{word-spacing:-0.102204px;}
.wsf5{word-spacing:-0.099144px;}
.ws67{word-spacing:-0.096192px;}
.ws73{word-spacing:-0.090180px;}
.wsf3{word-spacing:-0.088128px;}
.wse3{word-spacing:-0.084652px;}
.wsf8{word-spacing:-0.084456px;}
.ws54{word-spacing:-0.084168px;}
.ws6d{word-spacing:-0.078156px;}
.ws72{word-spacing:-0.072144px;}
.wsea{word-spacing:-0.069768px;}
.ws59{word-spacing:-0.066132px;}
.wseb{word-spacing:-0.066096px;}
.ws76{word-spacing:-0.064800px;}
.wsf0{word-spacing:-0.062424px;}
.ws53{word-spacing:-0.060120px;}
.wsb{word-spacing:-0.059776px;}
.wsfc{word-spacing:-0.058752px;}
.wsf7{word-spacing:-0.055080px;}
.ws63{word-spacing:-0.054108px;}
.ws11a{word-spacing:-0.053798px;}
.wsed{word-spacing:-0.051408px;}
.ws74{word-spacing:-0.048096px;}
.ws46{word-spacing:-0.047880px;}
.wsf9{word-spacing:-0.047736px;}
.ws75{word-spacing:-0.043200px;}
.ws7b{word-spacing:-0.042084px;}
.ws35{word-spacing:-0.041963px;}
.wsfd{word-spacing:-0.040882px;}
.wsf1{word-spacing:-0.040392px;}
.wse9{word-spacing:-0.036720px;}
.ws58{word-spacing:-0.036072px;}
.wse5{word-spacing:-0.032558px;}
.ws60{word-spacing:-0.030060px;}
.wsf2{word-spacing:-0.029376px;}
.ws6a{word-spacing:-0.024048px;}
.wse8{word-spacing:-0.022032px;}
.wsfa{word-spacing:-0.018360px;}
.ws9b{word-spacing:-0.018036px;}
.wsf4{word-spacing:-0.014688px;}
.ws4f{word-spacing:-0.012024px;}
.ws13c{word-spacing:-0.009696px;}
.wsf6{word-spacing:-0.007344px;}
.ws137{word-spacing:-0.006998px;}
.ws50{word-spacing:-0.006012px;}
.wsec{word-spacing:-0.003672px;}
.ws34{word-spacing:-0.003452px;}
.wsbc{word-spacing:-0.002434px;}
.wsba{word-spacing:-0.001886px;}
.wsbb{word-spacing:-0.001685px;}
.ws1{word-spacing:0.000000px;}
.ws15{word-spacing:0.000629px;}
.ws5a{word-spacing:0.006012px;}
.wsef{word-spacing:0.007344px;}
.ws5f{word-spacing:0.012024px;}
.ws87{word-spacing:0.018036px;}
.ws96{word-spacing:0.024048px;}
.ws5d{word-spacing:0.030060px;}
.ws4e{word-spacing:0.036072px;}
.ws8f{word-spacing:0.042084px;}
.ws6e{word-spacing:0.048096px;}
.wsff{word-spacing:0.053798px;}
.ws5e{word-spacing:0.054108px;}
.ws19{word-spacing:0.059776px;}
.ws6f{word-spacing:0.060120px;}
.ws7a{word-spacing:0.064800px;}
.ws84{word-spacing:0.066132px;}
.ws91{word-spacing:0.072144px;}
.ws107{word-spacing:0.089940px;}
.ws7f{word-spacing:0.090180px;}
.ws8e{word-spacing:0.096192px;}
.ws89{word-spacing:0.102204px;}
.ws12a{word-spacing:0.107597px;}
.ws56{word-spacing:0.108216px;}
.ws32{word-spacing:0.110701px;}
.ws83{word-spacing:0.114228px;}
.ws7{word-spacing:0.119551px;}
.ws99{word-spacing:0.120240px;}
.ws33{word-spacing:0.125888px;}
.ws94{word-spacing:0.126252px;}
.ws6c{word-spacing:0.132264px;}
.ws108{word-spacing:0.134909px;}
.ws93{word-spacing:0.144288px;}
.ws71{word-spacing:0.150300px;}
.ws106{word-spacing:0.155350px;}
.ws70{word-spacing:0.156312px;}
.ws123{word-spacing:0.161395px;}
.ws7d{word-spacing:0.162324px;}
.ws4a{word-spacing:0.168336px;}
.ws68{word-spacing:0.174348px;}
.ws14{word-spacing:0.179327px;}
.ws65{word-spacing:0.180360px;}
.ws8d{word-spacing:0.192384px;}
.ws95{word-spacing:0.198396px;}
.ws4c{word-spacing:0.204408px;}
.ws5b{word-spacing:0.210420px;}
.ws118{word-spacing:0.215194px;}
.wsa0{word-spacing:0.216432px;}
.ws69{word-spacing:0.222444px;}
.ws57{word-spacing:0.234468px;}
.ws8{word-spacing:0.239102px;}
.ws64{word-spacing:0.240480px;}
.ws86{word-spacing:0.246492px;}
.ws97{word-spacing:0.264528px;}
.ws124{word-spacing:0.268992px;}
.ws9f{word-spacing:0.276552px;}
.ws8b{word-spacing:0.282564px;}
.ws9e{word-spacing:0.288576px;}
.ws13{word-spacing:0.298878px;}
.ws121{word-spacing:0.322790px;}
.ws9c{word-spacing:0.324648px;}
.ws98{word-spacing:0.348696px;}
.wsac{word-spacing:0.358654px;}
.ws88{word-spacing:0.360720px;}
.ws136{word-spacing:0.376589px;}
.ws4b{word-spacing:0.378756px;}
.ws85{word-spacing:0.426852px;}
.ws81{word-spacing:0.444888px;}
.ws8a{word-spacing:0.462924px;}
.ws1f{word-spacing:0.478205px;}
.ws135{word-spacing:0.484186px;}
.ws10e{word-spacing:0.537980px;}
.ws134{word-spacing:0.537984px;}
.wsa5{word-spacing:0.597756px;}
.wsc{word-spacing:0.657532px;}
.wsb1{word-spacing:0.717307px;}
.ws101{word-spacing:0.777083px;}
.ws11d{word-spacing:0.806976px;}
.ws39{word-spacing:0.836858px;}
.ws120{word-spacing:0.860774px;}
.ws113{word-spacing:0.956410px;}
.wsa2{word-spacing:1.075961px;}
.ws13a{word-spacing:1.129766px;}
.ws18{word-spacing:1.195512px;}
.ws11e{word-spacing:1.291162px;}
.wsa9{word-spacing:1.315063px;}
.ws20{word-spacing:1.374839px;}
.wsb3{word-spacing:1.494390px;}
.wsb2{word-spacing:1.613941px;}
.ws144{word-spacing:1.667750px;}
.ws36{word-spacing:1.673717px;}
.ws100{word-spacing:1.721549px;}
.wsae{word-spacing:1.733492px;}
.ws129{word-spacing:1.882944px;}
.ws37{word-spacing:1.912819px;}
.wsb4{word-spacing:1.972595px;}
.ws2a{word-spacing:2.092146px;}
.ws41{word-spacing:2.151922px;}
.ws13b{word-spacing:2.151936px;}
.ws42{word-spacing:2.211697px;}
.wse1{word-spacing:2.295389px;}
.wsab{word-spacing:2.331248px;}
.ws114{word-spacing:2.391024px;}
.ws138{word-spacing:2.420928px;}
.ws1e{word-spacing:2.450800px;}
.ws3e{word-spacing:2.570351px;}
.ws12c{word-spacing:2.582323px;}
.ws139{word-spacing:2.743718px;}
.ws3b{word-spacing:2.809453px;}
.ws12f{word-spacing:2.851315px;}
.ws109{word-spacing:2.869229px;}
.ws24{word-spacing:3.048556px;}
.ws12d{word-spacing:3.066509px;}
.wsb5{word-spacing:3.108331px;}
.ws132{word-spacing:3.120307px;}
.ws142{word-spacing:3.221328px;}
.ws12b{word-spacing:3.224102px;}
.ws12e{word-spacing:3.227760px;}
.ws11b{word-spacing:3.227904px;}
.ws141{word-spacing:3.229853px;}
.ws3c{word-spacing:3.347434px;}
.ws133{word-spacing:3.389299px;}
.ws6{word-spacing:3.407209px;}
.wsad{word-spacing:3.485249px;}
.ws2d{word-spacing:3.526760px;}
.wsf{word-spacing:3.583475px;}
.ws11{word-spacing:3.586536px;}
.ws112{word-spacing:3.646312px;}
.ws2e{word-spacing:3.765863px;}
.wsd7{word-spacing:3.825638px;}
.ws17{word-spacing:3.945190px;}
.wsc3{word-spacing:4.004965px;}
.ws131{word-spacing:4.088678px;}
.ws10b{word-spacing:4.184292px;}
.wsa4{word-spacing:4.244068px;}
.wsd3{word-spacing:4.303843px;}
.wsa3{word-spacing:4.483170px;}
.ws104{word-spacing:4.722272px;}
.ws29{word-spacing:4.782048px;}
.wsaa{word-spacing:4.841824px;}
.ws102{word-spacing:4.901599px;}
.ws13d{word-spacing:4.949453px;}
.ws12{word-spacing:5.021150px;}
.ws1c{word-spacing:5.260253px;}
.ws13e{word-spacing:5.326042px;}
.ws21{word-spacing:5.439580px;}
.wsc4{word-spacing:5.559131px;}
.ws28{word-spacing:5.618906px;}
.ws2f{word-spacing:5.678682px;}
.ws103{word-spacing:5.738458px;}
.ws30{word-spacing:5.798233px;}
.wsd4{word-spacing:5.858009px;}
.ws10c{word-spacing:6.216662px;}
.wsda{word-spacing:6.294413px;}
.ws3d{word-spacing:6.455765px;}
.wsa1{word-spacing:6.515540px;}
.ws27{word-spacing:6.575316px;}
.ws13f{word-spacing:6.671002px;}
.wsd9{word-spacing:6.724800px;}
.wsd6{word-spacing:6.814418px;}
.ws105{word-spacing:6.874194px;}
.ws140{word-spacing:6.993792px;}
.ws25{word-spacing:7.113296px;}
.wsd8{word-spacing:7.173072px;}
.wsd1{word-spacing:7.352399px;}
.ws1a{word-spacing:7.412174px;}
.ws10a{word-spacing:7.591501px;}
.ws5{word-spacing:7.711052px;}
.ws2c{word-spacing:7.890379px;}
.ws130{word-spacing:7.908365px;}
.ws23{word-spacing:7.950155px;}
.ws127{word-spacing:7.962163px;}
.wsd2{word-spacing:8.547911px;}
.ws126{word-spacing:8.930534px;}
.ws26{word-spacing:9.265218px;}
.ws40{word-spacing:9.324994px;}
.wse0{word-spacing:9.564120px;}
.ws3a{word-spacing:9.922750px;}
.wsd5{word-spacing:10.341179px;}
.ws38{word-spacing:10.520506px;}
.ws43{word-spacing:10.819384px;}
.ws2b{word-spacing:12.074671px;}
.ws125{word-spacing:18.183859px;}
.ws10{word-spacing:22.116972px;}
.ws31{word-spacing:160.759303px;}
.wse2{word-spacing:212.363160px;}
.wsc0{word-spacing:237.533386px;}
.wsc2{word-spacing:239.349082px;}
.wsdf{word-spacing:257.105908px;}
.wsc1{word-spacing:263.356618px;}
.wsdb{word-spacing:266.672308px;}
.wsd0{word-spacing:275.685759px;}
.wsbe{word-spacing:283.409971px;}
.wsdc{word-spacing:285.798028px;}
.wsbd{word-spacing:293.577869px;}
.wsdd{word-spacing:295.364428px;}
.wscf{word-spacing:308.968897px;}
.wsc8{word-spacing:309.016717px;}
.wscb{word-spacing:311.503388px;}
.wsca{word-spacing:311.551209px;}
.wscc{word-spacing:323.458538px;}
.wsc9{word-spacing:323.506359px;}
.wsbf{word-spacing:336.065155px;}
.wsb8{word-spacing:623.476080px;}
.wsc7{word-spacing:736.819805px;}
.wscd{word-spacing:842.066245px;}
.wsce{word-spacing:923.552548px;}
._9d{margin-left:-20.806000px;}
._4{margin-left:-7.047590px;}
._5{margin-left:-5.971622px;}
._3{margin-left:-4.841856px;}
._10{margin-left:-3.718160px;}
._2c{margin-left:-2.667694px;}
._2{margin-left:-1.398758px;}
._2b{width:1.268532px;}
._1{width:2.998729px;}
._29{width:4.423394px;}
._47{width:10.087200px;}
._7d{width:11.859509px;}
._f{width:13.868846px;}
._6{width:15.709133px;}
._7{width:17.645875px;}
._a{width:18.972785px;}
._2d{width:20.325415px;}
._b{width:21.363809px;}
._17{width:22.439770px;}
._e{width:24.711242px;}
._14{width:26.540366px;}
._11{width:28.214083px;}
._8{width:29.511280px;}
._7b{width:30.965504px;}
._7a{width:32.099497px;}
._0{width:33.355008px;}
._19{width:35.375219px;}
._13{width:37.060872px;}
._16{width:38.423774px;}
._9c{width:39.451896px;}
._12{width:40.480064px;}
._9{width:42.584147px;}
._79{width:44.616550px;}
._15{width:47.276569px;}
._2a{width:49.816994px;}
._18{width:54.682738px;}
._85{width:60.821769px;}
._9e{width:61.868160px;}
._88{width:62.909525px;}
._1e{width:68.780402px;}
._1f{width:70.226096px;}
._25{width:77.491051px;}
._21{width:81.618743px;}
._31{width:84.080750px;}
._22{width:89.744174px;}
._23{width:91.256720px;}
._24{width:98.836269px;}
._33{width:107.363158px;}
._9b{width:119.072994px;}
._32{width:120.544489px;}
._7e{width:145.336368px;}
._28{width:201.295321px;}
._27{width:204.652342px;}
._1b{width:206.204963px;}
._48{width:208.845389px;}
._4e{width:212.880269px;}
._1d{width:222.234735px;}
._26{width:230.601462px;}
._1a{width:231.760279px;}
._1c{width:240.026941px;}
._44{width:267.246242px;}
._20{width:268.393762px;}
._8e{width:276.250042px;}
._81{width:285.087289px;}
._97{width:286.527296px;}
._42{width:287.887765px;}
._35{width:289.572578px;}
._82{width:296.038206px;}
._72{width:299.596059px;}
._4d{width:303.665069px;}
._80{width:304.942402px;}
._90{width:308.076455px;}
._78{width:309.447103px;}
._3a{width:311.910268px;}
._4c{width:313.752269px;}
._71{width:318.628658px;}
._5f{width:323.146450px;}
._74{width:330.583808px;}
._73{width:331.912525px;}
._59{width:333.118300px;}
._46{width:334.225250px;}
._4a{width:336.065155px;}
._58{width:342.778061px;}
._5b{width:345.073450px;}
._4b{width:346.192704px;}
._55{width:357.028600px;}
._3c{width:359.677273px;}
._64{width:364.153869px;}
._54{width:366.688361px;}
._49{width:368.505590px;}
._4f{width:378.592790px;}
._40{width:387.585193px;}
._2f{width:438.891113px;}
._41{width:452.108304px;}
._76{width:480.685791px;}
._39{width:484.392186px;}
._43{width:491.045434px;}
._8c{width:523.042595px;}
._63{width:547.679072px;}
._6b{width:549.786738px;}
._94{width:554.412908px;}
._8b{width:557.243888px;}
._83{width:574.153252px;}
._37{width:576.465996px;}
._38{width:586.066320px;}
._6e{width:589.101971px;}
._70{width:592.449413px;}
._3b{width:598.792332px;}
._96{width:607.245107px;}
._69{width:609.562488px;}
._6c{width:612.192621px;}
._7f{width:614.705121px;}
._45{width:621.107313px;}
._60{width:628.308163px;}
._3f{width:631.567393px;}
._3e{width:634.648427px;}
._86{width:639.839628px;}
._95{width:642.670608px;}
._51{width:647.719286px;}
._92{width:651.431341px;}
._36{width:656.974763px;}
._5a{width:658.154918px;}
._91{width:672.548918px;}
._34{width:685.820389px;}
._6f{width:689.525231px;}
._57{width:690.577285px;}
._65{width:693.388440px;}
._6a{width:696.028833px;}
._50{width:712.519459px;}
._98{width:731.066121px;}
._3d{width:740.385954px;}
._8a{width:741.946173px;}
._62{width:744.088536px;}
._5e{width:757.621766px;}
._30{width:767.420188px;}
._8f{width:771.135867px;}
._8d{width:783.339684px;}
._6d{width:805.633648px;}
._67{width:809.488570px;}
._66{width:814.796657px;}
._68{width:817.474610px;}
._5d{width:833.668495px;}
._93{width:841.527791px;}
._77{width:847.249546px;}
._89{width:856.141766px;}
._56{width:862.874906px;}
._53{width:864.979013px;}
._75{width:900.653180px;}
._61{width:908.256656px;}
._5c{width:938.957481px;}
._c{width:954.162932px;}
._99{width:988.776982px;}
._84{width:1024.491817px;}
._87{width:1034.055937px;}
._7c{width:1325.466872px;}
._9a{width:1499.793318px;}
._52{width:2037.303300px;}
._d{width:2061.213300px;}
._2e{width:3540.897300px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(41,66,37);}
.fsd{font-size:31.382100px;}
.fsf{font-size:32.558400px;}
.fs11{font-size:36.720000px;}
.fse{font-size:38.256480px;}
.fsc{font-size:40.348800px;}
.fs10{font-size:40.881600px;}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.962752px;}
.fsb{font-size:44.652672px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.820600px;}
.fs8{font-size:47.880000px;}
.fs5{font-size:53.798400px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:59.775600px;}
.fs9{font-size:60.120000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.ya3{bottom:-758.749086px;}
.ycd{bottom:-715.728888px;}
.ycc{bottom:-695.478969px;}
.ycb{bottom:-675.228546px;}
.yca{bottom:-654.978627px;}
.yc9{bottom:-634.728708px;}
.yc8{bottom:-614.478789px;}
.yc7{bottom:-594.318807px;}
.yc6{bottom:-574.068888px;}
.yc5{bottom:-553.818969px;}
.yc4{bottom:-533.568807px;}
.yc3{bottom:-513.318888px;}
.yc2{bottom:-493.068969px;}
.yc1{bottom:-472.818627px;}
.yc0{bottom:-452.658888px;}
.ybf{bottom:-432.408969px;}
.ybe{bottom:-412.158726px;}
.ybd{bottom:-391.908807px;}
.ybc{bottom:-371.658888px;}
.ybb{bottom:-351.408969px;}
.yba{bottom:-331.158627px;}
.yb9{bottom:-310.998888px;}
.yb8{bottom:-290.748969px;}
.yb7{bottom:-270.498726px;}
.yb6{bottom:-250.248807px;}
.yb5{bottom:-229.998888px;}
.yb4{bottom:-209.748969px;}
.yb3{bottom:-189.498627px;}
.yb2{bottom:-169.338888px;}
.yb1{bottom:-149.088969px;}
.yb0{bottom:-128.838771px;}
.y201{bottom:-120.425194px;}
.yaf{bottom:-99.588888px;}
.yae{bottom:-79.338969px;}
.yad{bottom:-59.089050px;}
.y204{bottom:-36.519774px;}
.y203{bottom:-22.994880px;}
.yac{bottom:-21.289050px;}
.y202{bottom:-6.409680px;}
.y0{bottom:0.000000px;}
.y210{bottom:6.075120px;}
.yab{bottom:7.601922px;}
.y2{bottom:14.814771px;}
.y2e{bottom:63.780000px;}
.y205{bottom:101.975520px;}
.y22a{bottom:108.612000px;}
.y29b{bottom:109.137000px;}
.y1fe{bottom:109.882500px;}
.y269{bottom:113.137500px;}
.y2d{bottom:113.298000px;}
.y237{bottom:119.863500px;}
.y206{bottom:127.067624px;}
.y268{bottom:128.335500px;}
.y29a{bottom:128.503500px;}
.y229{bottom:128.875500px;}
.y1fd{bottom:130.146000px;}
.y2c{bottom:133.561500px;}
.yf1{bottom:136.734000px;}
.y236{bottom:140.128500px;}
.y267{bottom:143.533500px;}
.y299{bottom:147.871500px;}
.y228{bottom:149.139000px;}
.y1fc{bottom:150.411000px;}
.y207{bottom:152.098406px;}
.y2b{bottom:153.825000px;}
.yf0{bottom:156.997500px;}
.y266{bottom:158.733000px;}
.y235{bottom:160.392000px;}
.y118{bottom:162.454500px;}
.y5d{bottom:165.712500px;}
.y298{bottom:167.239500px;}
.y227{bottom:169.404000px;}
.y1fb{bottom:170.674500px;}
.yaa{bottom:171.941445px;}
.y265{bottom:173.931000px;}
.y2a{bottom:174.090000px;}
.y208{bottom:177.129187px;}
.yef{bottom:177.262500px;}
.y234{bottom:180.657000px;}
.y117{bottom:182.719500px;}
.y297{bottom:186.606000px;}
.y184{bottom:187.078500px;}
.y5c{bottom:187.471500px;}
.y1b9{bottom:189.225000px;}
.y226{bottom:189.667500px;}
.y1fa{bottom:190.938000px;}
.ya9{bottom:192.191364px;}
.y89{bottom:195.819000px;}
.yee{bottom:197.526000px;}
.y264{bottom:198.094500px;}
.y233{bottom:200.920500px;}
.y209{bottom:202.221291px;}
.y116{bottom:202.983000px;}
.y29{bottom:203.320500px;}
.y296{bottom:205.974000px;}
.y183{bottom:207.343500px;}
.y5b{bottom:209.229000px;}
.y1b8{bottom:209.488500px;}
.y225{bottom:209.932500px;}
.y1f9{bottom:211.203000px;}
.y263{bottom:213.292500px;}
.y88{bottom:215.664720px;}
.yed{bottom:217.789500px;}
.y232{bottom:221.184000px;}
.y115{bottom:223.246500px;}
.y295{bottom:225.340500px;}
.y20a{bottom:227.252073px;}
.y182{bottom:227.607000px;}
.y262{bottom:228.490500px;}
.y87{bottom:228.545250px;}
.y1b7{bottom:229.752000px;}
.y224{bottom:230.196000px;}
.ya8{bottom:230.351031px;}
.y1f8{bottom:231.466500px;}
.y141{bottom:236.439795px;}
.yec{bottom:238.054500px;}
.y28{bottom:238.140000px;}
.ya0{bottom:238.191000px;}
.y86{bottom:241.424610px;}
.y5a{bottom:241.449000px;}
.y114{bottom:243.511500px;}
.y294{bottom:244.708500px;}
.y261{bottom:246.111000px;}
.y181{bottom:247.872000px;}
.y1b6{bottom:250.017000px;}
.y140{bottom:250.146000px;}
.y223{bottom:250.459500px;}
.ya7{bottom:250.601373px;}
.y1f7{bottom:251.731500px;}
.y20b{bottom:252.282855px;}
.y84{bottom:254.246640px;}
.y9f{bottom:258.454500px;}
.yeb{bottom:259.812000px;}
.y85{bottom:260.658240px;}
.y260{bottom:261.309000px;}
.y59{bottom:261.712500px;}
.y113{bottom:263.775000px;}
.y13f{bottom:263.852205px;}
.y293{bottom:264.076500px;}
.y83{bottom:267.068670px;}
.y180{bottom:268.135500px;}
.y1b5{bottom:270.280500px;}
.y222{bottom:270.724500px;}
.ya6{bottom:270.761112px;}
.y13a{bottom:271.248750px;}
.y1f6{bottom:271.995000px;}
.y25f{bottom:276.507000px;}
.y20c{bottom:277.374959px;}
.y13e{bottom:277.558410px;}
.y9e{bottom:278.719500px;}
.yea{bottom:280.077000px;}
.y58{bottom:281.977500px;}
.y292{bottom:283.443000px;}
.y112{bottom:284.038500px;}
.y82{bottom:285.800370px;}
.y17f{bottom:288.399000px;}
.y1b4{bottom:290.545500px;}
.y221{bottom:290.988000px;}
.ya5{bottom:291.011031px;}
.y13d{bottom:291.263370px;}
.y25e{bottom:291.705000px;}
.y1f5{bottom:292.258500px;}
.y9d{bottom:298.983000px;}
.ye9{bottom:300.340500px;}
.y231{bottom:302.241000px;}
.y20d{bottom:302.405740px;}
.y291{bottom:302.811000px;}
.y111{bottom:304.303500px;}
.y13c{bottom:304.969575px;}
.y25d{bottom:306.903000px;}
.y1b3{bottom:310.809000px;}
.y57{bottom:311.208000px;}
.y220{bottom:311.253000px;}
.ya4{bottom:311.260950px;}
.y1f4{bottom:312.523500px;}
.y27{bottom:314.548500px;}
.y17e{bottom:317.629500px;}
.y13b{bottom:318.675780px;}
.y9c{bottom:319.248000px;}
.y81{bottom:319.683000px;}
.ye8{bottom:320.605500px;}
.y25c{bottom:322.101000px;}
.y290{bottom:322.177500px;}
.y230{bottom:322.504500px;}
.y110{bottom:324.567000px;}
.y20e{bottom:327.436522px;}
.y1b2{bottom:331.072500px;}
.y21f{bottom:331.516500px;}
.y1f3{bottom:332.787000px;}
.y25b{bottom:337.299000px;}
.y139{bottom:338.359230px;}
.y9b{bottom:339.511500px;}
.ye7{bottom:340.869000px;}
.y28f{bottom:341.545500px;}
.y22f{bottom:342.769500px;}
.y10f{bottom:344.832000px;}
.y56{bottom:346.027500px;}
.ya2{bottom:348.700950px;}
.y1b1{bottom:351.337500px;}
.y21e{bottom:351.780000px;}
.y138{bottom:352.065435px;}
.y17d{bottom:352.449000px;}
.y25a{bottom:352.498500px;}
.y20f{bottom:352.528626px;}
.y26{bottom:352.744500px;}
.y80{bottom:356.787000px;}
.y9a{bottom:359.775000px;}
.y28e{bottom:360.913500px;}
.ye6{bottom:361.132500px;}
.y1f2{bottom:362.017500px;}
.y22e{bottom:363.033000px;}
.y10e{bottom:365.095500px;}
.y137{bottom:365.771640px;}
.y55{bottom:366.291000px;}
.y1b0{bottom:371.601000px;}
.y21d{bottom:372.045000px;}
.y17c{bottom:372.714000px;}
.y25{bottom:373.009500px;}
.y259{bottom:376.662000px;}
.y7f{bottom:377.050500px;}
.y136{bottom:379.477845px;}
.y99{bottom:380.040000px;}
.y28d{bottom:380.280000px;}
.ye5{bottom:381.397500px;}
.y200{bottom:381.659520px;}
.y22d{bottom:383.298000px;}
.y10d{bottom:385.359000px;}
.y131{bottom:385.420230px;}
.y54{bottom:386.554500px;}
.y258{bottom:391.860000px;}
.y21c{bottom:392.308500px;}
.y17b{bottom:392.977500px;}
.y135{bottom:393.182805px;}
.y24{bottom:393.273000px;}
.y7e{bottom:397.315500px;}
.y28c{bottom:399.648000px;}
.y98{bottom:400.303500px;}
.y1af{bottom:400.831500px;}
.ye4{bottom:403.155000px;}
.y22c{bottom:403.561500px;}
.y2bf{bottom:405.253500px;}
.y10c{bottom:405.624000px;}
.y53{bottom:406.819500px;}
.y134{bottom:406.889010px;}
.y257{bottom:407.058000px;}
.y21b{bottom:412.573500px;}
.y17a{bottom:413.242500px;}
.y23{bottom:413.536500px;}
.y1f1{bottom:415.293000px;}
.y7d{bottom:417.579000px;}
.y28b{bottom:419.014500px;}
.y97{bottom:420.568500px;}
.y133{bottom:420.595215px;}
.y256{bottom:422.256000px;}
.ye3{bottom:423.420000px;}
.y2be{bottom:424.620000px;}
.y10b{bottom:425.887500px;}
.y52{bottom:427.083000px;}
.y22b{bottom:432.792000px;}
.y21a{bottom:432.837000px;}
.y1f0{bottom:433.268100px;}
.y179{bottom:433.506000px;}
.y22{bottom:433.801500px;}
.y132{bottom:434.301420px;}
.y1ae{bottom:435.651000px;}
.y7c{bottom:437.842500px;}
.y28a{bottom:438.382500px;}
.ye2{bottom:443.683500px;}
.y2bd{bottom:443.988000px;}
.y10a{bottom:446.152500px;}
.y51{bottom:447.348000px;}
.y96{bottom:449.799000px;}
.y1ef{bottom:450.507300px;}
.y219{bottom:453.100500px;}
.y178{bottom:453.769500px;}
.y130{bottom:453.984870px;}
.y21{bottom:454.065000px;}
.y255{bottom:455.388000px;}
.y1ad{bottom:455.914500px;}
.y289{bottom:457.750500px;}
.y7b{bottom:458.107500px;}
.y155{bottom:461.112000px;}
.ye1{bottom:465.442500px;}
.y109{bottom:466.416000px;}
.y50{bottom:467.611500px;}
.y12f{bottom:467.691075px;}
.y1ee{bottom:467.745300px;}
.y218{bottom:473.365500px;}
.y177{bottom:474.034500px;}
.y20{bottom:474.330000px;}
.y254{bottom:475.651500px;}
.y1ac{bottom:476.179500px;}
.y2bc{bottom:476.938500px;}
.y288{bottom:477.117000px;}
.y7a{bottom:478.371000px;}
.y12e{bottom:481.396035px;}
.y154{bottom:481.397160px;}
.y95{bottom:484.618500px;}
.y1ed{bottom:484.864500px;}
.ye0{bottom:485.706000px;}
.y108{bottom:486.679500px;}
.y4f{bottom:487.875000px;}
.y217{bottom:493.629000px;}
.y176{bottom:494.298000px;}
.y1f{bottom:494.593500px;}
.y153{bottom:495.102120px;}
.y12d{bottom:495.102240px;}
.y1ea{bottom:495.459300px;}
.y253{bottom:495.915000px;}
.y1ec{bottom:496.222500px;}
.y2bb{bottom:496.305000px;}
.y1ab{bottom:496.443000px;}
.y287{bottom:496.485000px;}
.y79{bottom:498.636000px;}
.y128{bottom:501.044625px;}
.y94{bottom:504.882000px;}
.y107{bottom:506.944500px;}
.ydf{bottom:507.465000px;}
.y4e{bottom:508.140000px;}
.y152{bottom:508.808325px;}
.y12c{bottom:508.808445px;}
.y1eb{bottom:513.461700px;}
.y216{bottom:513.894000px;}
.y175{bottom:514.563000px;}
.y1e{bottom:514.857000px;}
.y2ba{bottom:515.673000px;}
.y286{bottom:515.851500px;}
.y252{bottom:516.180000px;}
.y1aa{bottom:516.708000px;}
.y78{bottom:518.899500px;}
.y151{bottom:522.514530px;}
.y12b{bottom:522.514650px;}
.y93{bottom:525.145500px;}
.y106{bottom:527.208000px;}
.yde{bottom:527.728500px;}
.y4d{bottom:528.403500px;}
.y14c{bottom:530.081640px;}
.y1e9{bottom:530.699700px;}
.y215{bottom:534.157500px;}
.y174{bottom:534.826500px;}
.y2b9{bottom:535.041000px;}
.y1d{bottom:535.122000px;}
.y285{bottom:535.219500px;}
.y12a{bottom:536.219610px;}
.y150{bottom:536.220735px;}
.y251{bottom:536.443500px;}
.y77{bottom:539.163000px;}
.y92{bottom:545.410500px;}
.y105{bottom:547.473000px;}
.y1e8{bottom:547.938900px;}
.ydd{bottom:547.993500px;}
.y4c{bottom:548.667000px;}
.y14f{bottom:549.925695px;}
.y129{bottom:549.925815px;}
.y1e6{bottom:552.854100px;}
.y2b8{bottom:554.407500px;}
.y284{bottom:554.587500px;}
.y173{bottom:555.090000px;}
.y1c{bottom:555.385500px;}
.y250{bottom:556.708500px;}
.y76{bottom:559.428000px;}
.y1a9{bottom:562.932000px;}
.y214{bottom:563.388000px;}
.y14e{bottom:563.631900px;}
.y1e7{bottom:565.178100px;}
.y91{bottom:565.674000px;}
.y104{bottom:567.736500px;}
.ydc{bottom:568.257000px;}
.y4b{bottom:568.932000px;}
.y127{bottom:569.609265px;}
.y2b7{bottom:573.775500px;}
.y283{bottom:573.954000px;}
.y172{bottom:575.355000px;}
.y1b{bottom:575.650500px;}
.y24f{bottom:576.972000px;}
.y1a8{bottom:577.128000px;}
.y14d{bottom:577.338105px;}
.y1e5{bottom:582.417300px;}
.y126{bottom:583.315470px;}
.y90{bottom:585.939000px;}
.y103{bottom:588.000000px;}
.ydb{bottom:588.522000px;}
.y75{bottom:588.658500px;}
.y4a{bottom:589.195500px;}
.y1a7{bottom:591.325500px;}
.y1e2{bottom:593.093700px;}
.y2b6{bottom:593.142000px;}
.y282{bottom:593.322000px;}
.y171{bottom:595.618500px;}
.y1a{bottom:595.914000px;}
.y14b{bottom:597.021555px;}
.y125{bottom:597.021675px;}
.y24e{bottom:597.235500px;}
.y1e4{bottom:599.655300px;}
.y213{bottom:601.906500px;}
.y1e1{bottom:604.451700px;}
.y1a6{bottom:605.521500px;}
.y8f{bottom:606.202500px;}
.y102{bottom:608.265000px;}
.y49{bottom:609.460500px;}
.yda{bottom:610.279500px;}
.y14a{bottom:610.727760px;}
.y124{bottom:610.727880px;}
.y2b5{bottom:612.510000px;}
.y281{bottom:612.688500px;}
.y1e0{bottom:615.808500px;}
.y170{bottom:615.883500px;}
.y19{bottom:616.177500px;}
.y1e3{bottom:616.894500px;}
.y24d{bottom:617.500500px;}
.y1a5{bottom:619.719000px;}
.y212{bottom:621.139500px;}
.y74{bottom:623.478000px;}
.y11d{bottom:623.553870px;}
.y123{bottom:624.432840px;}
.y149{bottom:624.433965px;}
.y8e{bottom:626.466000px;}
.y101{bottom:628.528500px;}
.y48{bottom:629.724000px;}
.yd9{bottom:630.544500px;}
.y2b4{bottom:631.878000px;}
.y280{bottom:632.056500px;}
.y1a4{bottom:633.915000px;}
.y1df{bottom:634.133700px;}
.y16f{bottom:636.147000px;}
.y18{bottom:636.442500px;}
.y11c{bottom:637.197825px;}
.y24c{bottom:637.764000px;}
.y122{bottom:638.139045px;}
.y148{bottom:638.140170px;}
.y211{bottom:640.372500px;}
.y73{bottom:643.741500px;}
.y143{bottom:644.082555px;}
.y8d{bottom:646.731000px;}
.y1a3{bottom:648.112500px;}
.y100{bottom:648.793500px;}
.y47{bottom:649.987500px;}
.yd8{bottom:650.808000px;}
.y2b3{bottom:651.244500px;}
.y1de{bottom:651.371700px;}
.y27f{bottom:651.424500px;}
.y1dc{bottom:651.735300px;}
.y147{bottom:651.845130px;}
.y121{bottom:651.845250px;}
.y16e{bottom:656.410500px;}
.y17{bottom:656.706000px;}
.y1a2{bottom:662.308500px;}
.y1db{bottom:663.092100px;}
.y72{bottom:664.006500px;}
.y146{bottom:665.551335px;}
.y120{bottom:665.551455px;}
.y8c{bottom:666.994500px;}
.y1dd{bottom:668.610900px;}
.y1ff{bottom:668.779092px;}
.yff{bottom:669.057000px;}
.y46{bottom:670.252500px;}
.y2b2{bottom:670.612500px;}
.y27e{bottom:670.791000px;}
.yd7{bottom:671.071500px;}
.y1a1{bottom:676.506000px;}
.y16{bottom:676.971000px;}
.y11f{bottom:679.256415px;}
.y145{bottom:679.257540px;}
.y71{bottom:684.270000px;}
.y16d{bottom:685.641000px;}
.y1da{bottom:685.850100px;}
.y8b{bottom:687.258000px;}
.yfe{bottom:689.320500px;}
.y2b1{bottom:689.979000px;}
.y27d{bottom:690.159000px;}
.y45{bottom:690.516000px;}
.y1a0{bottom:690.702000px;}
.yd6{bottom:692.830500px;}
.y11e{bottom:692.962620px;}
.y144{bottom:692.963745px;}
.y24b{bottom:701.814000px;}
.y1d9{bottom:703.089300px;}
.y70{bottom:704.533500px;}
.y19f{bottom:704.899500px;}
.y15{bottom:707.994000px;}
.y2b0{bottom:709.347000px;}
.y27c{bottom:709.525500px;}
.yfd{bottom:709.585500px;}
.y44{bottom:710.781000px;}
.y142{bottom:712.894950px;}
.y11b{bottom:712.895070px;}
.yd5{bottom:713.095500px;}
.y8a{bottom:716.488500px;}
.y19e{bottom:719.095500px;}
.y1d8{bottom:720.327300px;}
.y16c{bottom:720.460500px;}
.y24a{bottom:722.077500px;}
.y6f{bottom:724.798500px;}
.y2af{bottom:728.715000px;}
.y27b{bottom:728.893500px;}
.y43{bottom:731.044500px;}
.y19d{bottom:733.293000px;}
.yd4{bottom:733.359000px;}
.y14{bottom:735.118500px;}
.y1d7{bottom:737.566500px;}
.yfc{bottom:738.816000px;}
.y16b{bottom:740.725500px;}
.y249{bottom:742.342500px;}
.y1d3{bottom:744.014100px;}
.y6e{bottom:745.062000px;}
.y19c{bottom:747.489000px;}
.y11a{bottom:747.622500px;}
.y2ae{bottom:748.081500px;}
.y27a{bottom:748.261500px;}
.y42{bottom:751.308000px;}
.yd3{bottom:753.622500px;}
.y1d6{bottom:754.805700px;}
.y1d2{bottom:755.370900px;}
.y13{bottom:758.157000px;}
.y16a{bottom:760.989000px;}
.y19b{bottom:761.686500px;}
.y248{bottom:762.606000px;}
.y6d{bottom:765.327000px;}
.y1d1{bottom:766.728900px;}
.y2ad{bottom:767.449500px;}
.y279{bottom:767.628000px;}
.y12{bottom:771.432000px;}
.y41{bottom:771.573000px;}
.y1d5{bottom:772.044900px;}
.yfb{bottom:773.635500px;}
.yd2{bottom:773.887500px;}
.y19a{bottom:775.882500px;}
.y169{bottom:781.254000px;}
.y247{bottom:782.871000px;}
.y6c{bottom:785.590500px;}
.y2ac{bottom:786.816000px;}
.y278{bottom:786.996000px;}
.y1d4{bottom:789.282900px;}
.y199{bottom:790.080000px;}
.y40{bottom:791.836500px;}
.yfa{bottom:793.899000px;}
.y11{bottom:794.470500px;}
.y119{bottom:798.445500px;}
.y168{bottom:801.517500px;}
.y246{bottom:803.134500px;}
.y198{bottom:804.276000px;}
.y6b{bottom:805.854000px;}
.y2ab{bottom:806.184000px;}
.y277{bottom:806.362500px;}
.y1d0{bottom:806.522100px;}
.y10{bottom:807.745500px;}
.yd1{bottom:809.095500px;}
.y3f{bottom:812.101500px;}
.y197{bottom:818.473500px;}
.y167{bottom:821.781000px;}
.yf9{bottom:823.129500px;}
.y245{bottom:823.398000px;}
.y1cf{bottom:823.761300px;}
.y2aa{bottom:825.552000px;}
.y276{bottom:825.730500px;}
.y6a{bottom:826.119000px;}
.yd0{bottom:829.359000px;}
.y1cb{bottom:830.207700px;}
.yf{bottom:830.785500px;}
.y3e{bottom:832.365000px;}
.y196{bottom:832.669500px;}
.y1ce{bottom:841.000500px;}
.y1ca{bottom:841.565700px;}
.y166{bottom:842.046000px;}
.y244{bottom:843.663000px;}
.ye{bottom:844.060500px;}
.y2a9{bottom:844.918500px;}
.y275{bottom:845.098500px;}
.y69{bottom:846.382500px;}
.y195{bottom:846.867000px;}
.ycf{bottom:849.624000px;}
.y3d{bottom:852.628500px;}
.y1c9{bottom:852.922500px;}
.yf8{bottom:857.949000px;}
.y1cd{bottom:858.238500px;}
.y194{bottom:861.063000px;}
.y165{bottom:862.309500px;}
.y243{bottom:863.926500px;}
.y1c8{bottom:864.280500px;}
.y2a8{bottom:864.286500px;}
.y274{bottom:864.465000px;}
.y68{bottom:866.647500px;}
.yd{bottom:867.099000px;}
.y3c{bottom:872.893500px;}
.y193{bottom:875.260500px;}
.y1cc{bottom:875.477700px;}
.y1c7{bottom:875.637300px;}
.yf7{bottom:878.214000px;}
.y2a7{bottom:883.653000px;}
.y273{bottom:883.833000px;}
.y242{bottom:884.191500px;}
.yc{bottom:885.256500px;}
.y67{bottom:886.911000px;}
.y192{bottom:889.456500px;}
.y164{bottom:891.540000px;}
.y1c6{bottom:892.716900px;}
.y3b{bottom:893.157000px;}
.yce{bottom:893.590500px;}
.yf6{bottom:898.477500px;}
.yb{bottom:898.531500px;}
.y2a6{bottom:903.021000px;}
.y272{bottom:903.199500px;}
.y191{bottom:903.654000px;}
.y241{bottom:904.455000px;}
.y1c5{bottom:904.556100px;}
.y66{bottom:907.174500px;}
.y3a{bottom:913.422000px;}
.y190{bottom:917.850000px;}
.yf5{bottom:918.741000px;}
.ya{bottom:921.570000px;}
.ya1{bottom:921.997500px;}
.y2a5{bottom:922.389000px;}
.y271{bottom:922.567500px;}
.y240{bottom:924.718500px;}
.y1c4{bottom:927.194100px;}
.y65{bottom:927.439500px;}
.y18f{bottom:932.047500px;}
.y39{bottom:933.685500px;}
.y9{bottom:934.845000px;}
.yf4{bottom:939.006000px;}
.y1c3{bottom:939.034500px;}
.y2a4{bottom:941.755500px;}
.y270{bottom:941.935500px;}
.y23f{bottom:944.983500px;}
.y18e{bottom:946.243500px;}
.y163{bottom:947.664000px;}
.y64{bottom:947.703000px;}
.y38{bottom:953.949000px;}
.y8{bottom:957.883500px;}
.yf3{bottom:959.269500px;}
.y18d{bottom:960.441000px;}
.y2a3{bottom:961.123500px;}
.y26f{bottom:961.302000px;}
.y1c2{bottom:961.672500px;}
.y23e{bottom:965.247000px;}
.y162{bottom:967.245750px;}
.y63{bottom:967.968000px;}
.y37{bottom:974.214000px;}
.y18c{bottom:974.637000px;}
.y1c1{bottom:978.910500px;}
.yf2{bottom:979.534500px;}
.y161{bottom:979.630875px;}
.y7{bottom:980.125500px;}
.y2a2{bottom:980.490000px;}
.y26e{bottom:980.670000px;}
.y23d{bottom:985.512000px;}
.y62{bottom:988.231500px;}
.y18b{bottom:988.834500px;}
.y160{bottom:992.016000px;}
.y36{bottom:994.477500px;}
.y1c0{bottom:996.149700px;}
.y6{bottom:997.012500px;}
.y2a1{bottom:999.858000px;}
.y18a{bottom:1003.030500px;}
.y15f{bottom:1004.400000px;}
.y23c{bottom:1005.775500px;}
.y61{bottom:1008.495000px;}
.y26d{bottom:1009.003500px;}
.y1bf{bottom:1013.388900px;}
.y35{bottom:1014.742500px;}
.y15e{bottom:1016.785125px;}
.y189{bottom:1017.228000px;}
.y1bc{bottom:1018.506900px;}
.y2a0{bottom:1019.226000px;}
.y23b{bottom:1026.039000px;}
.y15d{bottom:1029.170250px;}
.y1be{bottom:1030.628100px;}
.y188{bottom:1031.424000px;}
.y34{bottom:1035.006000px;}
.y60{bottom:1037.725500px;}
.y29f{bottom:1038.592500px;}
.y5{bottom:1040.848500px;}
.y15c{bottom:1041.555375px;}
.y187{bottom:1045.621500px;}
.y23a{bottom:1046.304000px;}
.y1bd{bottom:1047.866100px;}
.y33{bottom:1055.269500px;}
.y29e{bottom:1057.960500px;}
.y15b{bottom:1059.509250px;}
.y1bb{bottom:1065.344100px;}
.y158{bottom:1065.674250px;}
.y239{bottom:1066.567500px;}
.y186{bottom:1067.319000px;}
.y26c{bottom:1070.467500px;}
.y4{bottom:1071.244500px;}
.y15a{bottom:1071.838125px;}
.y5f{bottom:1072.545000px;}
.y32{bottom:1075.534500px;}
.y29d{bottom:1077.327000px;}
.y157{bottom:1078.003125px;}
.y185{bottom:1081.515000px;}
.y159{bottom:1084.167000px;}
.y26b{bottom:1085.667000px;}
.y238{bottom:1086.832500px;}
.y5e{bottom:1094.304000px;}
.y31{bottom:1095.798000px;}
.y29c{bottom:1096.695000px;}
.y1ba{bottom:1098.310500px;}
.y3{bottom:1100.145000px;}
.y26a{bottom:1100.865000px;}
.y30{bottom:1116.063000px;}
.y156{bottom:1117.543500px;}
.y1{bottom:1137.954000px;}
.y2f{bottom:1168.366500px;}
.h26{height:23.560327px;}
.h20{height:27.659435px;}
.h2a{height:28.385564px;}
.h1a{height:29.172182px;}
.h27{height:29.583267px;}
.h25{height:30.285035px;}
.hd{height:30.339070px;}
.h18{height:32.283882px;}
.h19{height:32.730409px;}
.h28{height:34.156055px;}
.h1d{height:34.574294px;}
.h11{height:34.647539px;}
.h21{height:34.736884px;}
.h1c{height:36.636710px;}
.h1b{height:37.336758px;}
.h7{height:37.993262px;}
.h29{height:38.025850px;}
.hc{height:38.100967px;}
.he{height:38.102179px;}
.h1f{height:38.896243px;}
.h17{height:40.544626px;}
.h9{height:43.217759px;}
.hb{height:43.421105px;}
.h4{height:43.815515px;}
.h13{height:43.915781px;}
.h10{height:44.536816px;}
.h8{height:48.848947px;}
.h14{height:50.229492px;}
.h2{height:50.931027px;}
.ha{height:54.276245px;}
.h6{height:54.541601px;}
.h12{height:55.922168px;}
.h22{height:56.332084px;}
.h23{height:57.455284px;}
.h5{height:77.792486px;}
.h1e{height:100.211105px;}
.h3{height:102.503837px;}
.hf{height:209.010000px;}
.h24{height:364.924482px;}
.h15{height:892.914000px;}
.h16{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:198.814733px;}
.w3{width:340.021500px;}
.w6{width:660.175008px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w4{width:1262.835000px;}
.w5{width:1263.000000px;}
.x41{left:-155.511000px;}
.x42{left:-123.651000px;}
.x75{left:-20.565342px;}
.x0{left:0.000000px;}
.x76{left:1.099560px;}
.x43{left:5.769638px;}
.x77{left:11.625858px;}
.x2{left:58.056593px;}
.x45{left:60.309000px;}
.x1{left:114.802500px;}
.x74{left:116.372898px;}
.x5{left:122.109000px;}
.x3{left:123.306000px;}
.x78{left:125.396658px;}
.x60{left:131.604000px;}
.x62{left:132.613125px;}
.x51{left:133.874610px;}
.x63{left:139.381125px;}
.x64{left:141.292500px;}
.x66{left:144.273750px;}
.x4{left:146.170500px;}
.x65{left:147.747750px;}
.x47{left:149.397000px;}
.x61{left:152.766375px;}
.x3d{left:157.323000px;}
.x68{left:163.810500px;}
.x8b{left:166.236000px;}
.x79{left:168.861000px;}
.x95{left:171.951000px;}
.x13{left:173.731500px;}
.x14{left:181.204500px;}
.x44{left:183.520085px;}
.x15{left:184.899000px;}
.x6{left:188.251500px;}
.x72{left:189.837000px;}
.x16{left:192.370500px;}
.x1f{left:200.653500px;}
.x56{left:204.762750px;}
.x55{left:207.831750px;}
.x20{left:215.598000px;}
.x7e{left:221.992500px;}
.x84{left:223.680000px;}
.x2e{left:225.609000px;}
.x7f{left:236.937000px;}
.x3a{left:239.188500px;}
.x2f{left:240.552000px;}
.x38{left:244.554000px;}
.xa0{left:250.854000px;}
.xa1{left:252.858000px;}
.x80{left:254.356500px;}
.x8c{left:255.921000px;}
.x71{left:262.965000px;}
.x8a{left:264.139500px;}
.x81{left:269.301000px;}
.x8d{left:270.865500px;}
.x39{left:272.361510px;}
.x17{left:274.080000px;}
.x40{left:276.447000px;}
.x98{left:278.838000px;}
.x92{left:280.861500px;}
.x27{left:282.177000px;}
.x52{left:285.769590px;}
.x18{left:289.023000px;}
.x2c{left:291.072000px;}
.x19{left:296.413500px;}
.x2d{left:306.016500px;}
.x1a{left:311.356500px;}
.x6f{left:317.418000px;}
.x54{left:328.558500px;}
.x46{left:330.388500px;}
.x70{left:332.362500px;}
.x3b{left:337.543380px;}
.x93{left:339.189000px;}
.x67{left:347.755500px;}
.x50{left:351.192000px;}
.x94{left:354.132000px;}
.x2a{left:358.572000px;}
.x69{left:371.068500px;}
.x2b{left:373.516500px;}
.x8e{left:379.792500px;}
.x8f{left:394.737000px;}
.x57{left:412.791000px;}
.x58{left:424.744125px;}
.x59{left:426.709500px;}
.x36{left:428.014500px;}
.x37{left:439.635000px;}
.x21{left:443.677500px;}
.x1b{left:446.469000px;}
.x28{left:452.985000px;}
.x96{left:454.507500px;}
.x22{left:458.620500px;}
.x1c{left:461.413500px;}
.x6b{left:464.692500px;}
.x29{left:467.928000px;}
.x7a{left:470.356500px;}
.x7b{left:485.299500px;}
.x6a{left:488.673000px;}
.x1d{left:492.753000px;}
.x5a{left:496.998375px;}
.x82{left:498.238500px;}
.x83{left:505.711500px;}
.x1e{left:507.696000px;}
.x23{left:528.109500px;}
.x24{left:543.054000px;}
.x87{left:557.595000px;}
.x90{left:567.988500px;}
.x88{left:572.539500px;}
.x91{left:575.460000px;}
.x6d{left:576.991500px;}
.x53{left:590.443500px;}
.x6c{left:592.929000px;}
.x5d{left:600.317250px;}
.x5c{left:603.735000px;}
.x49{left:609.931500px;}
.x9b{left:610.984500px;}
.x5b{left:615.924375px;}
.x4a{left:617.404500px;}
.x85{left:630.283500px;}
.x9c{left:637.884000px;}
.x86{left:645.226500px;}
.x25{left:647.257500px;}
.x7{left:655.825500px;}
.x9f{left:657.549000px;}
.xd{left:659.371500px;}
.x26{left:662.202000px;}
.x8{left:663.297000px;}
.xe{left:666.843000px;}
.x5e{left:671.535375px;}
.x7c{left:674.761500px;}
.x34{left:678.060000px;}
.x5f{left:682.323000px;}
.x6e{left:683.797500px;}
.x4d{left:686.458500px;}
.x7d{left:689.706000px;}
.x35{left:693.004500px;}
.x73{left:694.341000px;}
.x9a{left:701.835000px;}
.x89{left:707.529000px;}
.x9{left:712.300500px;}
.x3c{left:715.730670px;}
.xa{left:719.773500px;}
.xb{left:723.438000px;}
.x3e{left:725.113500px;}
.x4b{left:728.800500px;}
.x30{left:729.891000px;}
.xc{left:730.909500px;}
.x4c{left:736.272000px;}
.x97{left:738.141000px;}
.x3f{left:740.056500px;}
.x31{left:744.835500px;}
.x48{left:746.965500px;}
.x9d{left:750.135000px;}
.xf{left:752.337000px;}
.x99{left:754.938000px;}
.x32{left:757.209000px;}
.x10{left:759.808500px;}
.x4e{left:762.199500px;}
.x11{left:763.620000px;}
.x4f{left:769.672500px;}
.x12{left:771.091500px;}
.x33{left:772.152000px;}
.x9e{left:777.034500px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.020000pt;}
.v1{vertical-align:19.285333pt;}
.v5{vertical-align:20.194133pt;}
.v4{vertical-align:50.480000pt;}
.ls6d{letter-spacing:-0.464928pt;}
.ls65{letter-spacing:-0.448896pt;}
.ls68{letter-spacing:-0.432864pt;}
.ls41{letter-spacing:-0.390112pt;}
.ls6b{letter-spacing:-0.374080pt;}
.ls79{letter-spacing:-0.363392pt;}
.ls7d{letter-spacing:-0.342016pt;}
.ls7f{letter-spacing:-0.309952pt;}
.ls6e{letter-spacing:-0.304608pt;}
.ls80{letter-spacing:-0.299264pt;}
.ls78{letter-spacing:-0.288576pt;}
.ls69{letter-spacing:-0.272544pt;}
.ls50{letter-spacing:-0.267200pt;}
.ls47{letter-spacing:-0.261856pt;}
.ls53{letter-spacing:-0.251168pt;}
.ls81{letter-spacing:-0.245824pt;}
.ls4a{letter-spacing:-0.240480pt;}
.ls42{letter-spacing:-0.235136pt;}
.ls76{letter-spacing:-0.229792pt;}
.ls70{letter-spacing:-0.224448pt;}
.ls51{letter-spacing:-0.213760pt;}
.ls52{letter-spacing:-0.208416pt;}
.ls40{letter-spacing:-0.203072pt;}
.ls63{letter-spacing:-0.197728pt;}
.ls58{letter-spacing:-0.192384pt;}
.ls59{letter-spacing:-0.187040pt;}
.ls74{letter-spacing:-0.181696pt;}
.ls55{letter-spacing:-0.171008pt;}
.ls75{letter-spacing:-0.165664pt;}
.ls7a{letter-spacing:-0.160320pt;}
.ls66{letter-spacing:-0.154976pt;}
.ls46{letter-spacing:-0.149632pt;}
.ls6c{letter-spacing:-0.144288pt;}
.ls71{letter-spacing:-0.138944pt;}
.ls64{letter-spacing:-0.133600pt;}
.ls73{letter-spacing:-0.117568pt;}
.ls67{letter-spacing:-0.112224pt;}
.lsa1{letter-spacing:-0.109018pt;}
.ls57{letter-spacing:-0.106880pt;}
.ls61{letter-spacing:-0.105600pt;}
.ls4c{letter-spacing:-0.101536pt;}
.ls56{letter-spacing:-0.096192pt;}
.ls72{letter-spacing:-0.090848pt;}
.ls43{letter-spacing:-0.085504pt;}
.lsa2{letter-spacing:-0.083580pt;}
.ls4b{letter-spacing:-0.080160pt;}
.ls77{letter-spacing:-0.074816pt;}
.ls6a{letter-spacing:-0.069472pt;}
.lsa4{letter-spacing:-0.065411pt;}
.ls4d{letter-spacing:-0.064128pt;}
.ls49{letter-spacing:-0.058784pt;}
.ls5c{letter-spacing:-0.053440pt;}
.ls45{letter-spacing:-0.048096pt;}
.ls44{letter-spacing:-0.042752pt;}
.ls9b{letter-spacing:-0.039168pt;}
.ls7c{letter-spacing:-0.037408pt;}
.ls9a{letter-spacing:-0.032640pt;}
.ls54{letter-spacing:-0.032064pt;}
.ls99{letter-spacing:-0.029376pt;}
.ls4e{letter-spacing:-0.026720pt;}
.ls9f{letter-spacing:-0.026112pt;}
.lsa3{letter-spacing:-0.025437pt;}
.ls48{letter-spacing:-0.021376pt;}
.ls9e{letter-spacing:-0.019584pt;}
.lsa0{letter-spacing:-0.016320pt;}
.ls62{letter-spacing:-0.016032pt;}
.ls96{letter-spacing:-0.013056pt;}
.ls5b{letter-spacing:-0.010688pt;}
.ls5d{letter-spacing:-0.009600pt;}
.ls9d{letter-spacing:-0.006528pt;}
.ls4f{letter-spacing:-0.005344pt;}
.ls6{letter-spacing:0.000000pt;}
.ls9c{letter-spacing:0.003264pt;}
.ls15{letter-spacing:0.005344pt;}
.ls5e{letter-spacing:0.009600pt;}
.ls8d{letter-spacing:0.009792pt;}
.ls20{letter-spacing:0.010688pt;}
.ls89{letter-spacing:0.013056pt;}
.ls1f{letter-spacing:0.016032pt;}
.ls91{letter-spacing:0.016320pt;}
.ls94{letter-spacing:0.019584pt;}
.ls12{letter-spacing:0.021376pt;}
.ls8b{letter-spacing:0.022848pt;}
.ls98{letter-spacing:0.026112pt;}
.ls21{letter-spacing:0.026720pt;}
.ls97{letter-spacing:0.029376pt;}
.ls1d{letter-spacing:0.032064pt;}
.ls17{letter-spacing:0.037408pt;}
.ls92{letter-spacing:0.042432pt;}
.ls27{letter-spacing:0.042752pt;}
.ls8e{letter-spacing:0.045696pt;}
.ls85{letter-spacing:0.046305pt;}
.ls5f{letter-spacing:0.048000pt;}
.ls1e{letter-spacing:0.048096pt;}
.ls11{letter-spacing:0.053440pt;}
.ls90{letter-spacing:0.055488pt;}
.ls24{letter-spacing:0.057600pt;}
.ls1a{letter-spacing:0.058784pt;}
.ls8a{letter-spacing:0.062016pt;}
.ls13{letter-spacing:0.064128pt;}
.ls25{letter-spacing:0.069472pt;}
.lsb{letter-spacing:0.072352pt;}
.ls28{letter-spacing:0.074816pt;}
.ls2f{letter-spacing:0.080160pt;}
.ls14{letter-spacing:0.085504pt;}
.ls95{letter-spacing:0.086822pt;}
.lse{letter-spacing:0.090848pt;}
.ls35{letter-spacing:0.096192pt;}
.ls2e{letter-spacing:0.101536pt;}
.ls8f{letter-spacing:0.107712pt;}
.ls86{letter-spacing:0.109975pt;}
.ls60{letter-spacing:0.115200pt;}
.ls6f{letter-spacing:0.128256pt;}
.ls16{letter-spacing:0.133600pt;}
.ls3f{letter-spacing:0.136192pt;}
.ls7b{letter-spacing:0.154976pt;}
.ls23{letter-spacing:0.163200pt;}
.lsc{letter-spacing:0.170240pt;}
.ls1c{letter-spacing:0.171008pt;}
.ls37{letter-spacing:0.185230pt;}
.ls7e{letter-spacing:0.277888pt;}
.ls93{letter-spacing:0.326400pt;}
.ls26{letter-spacing:0.406144pt;}
.ls8c{letter-spacing:0.545088pt;}
.ls3a{letter-spacing:0.726784pt;}
.ls88{letter-spacing:0.760512pt;}
.ls29{letter-spacing:1.047424pt;}
.ls32{letter-spacing:1.302263pt;}
.ls19{letter-spacing:1.368064pt;}
.ls18{letter-spacing:1.683360pt;}
.ls1b{letter-spacing:1.688704pt;}
.ls2d{letter-spacing:2.004000pt;}
.ls36{letter-spacing:2.324640pt;}
.ls34{letter-spacing:2.645280pt;}
.ls0{letter-spacing:2.657067pt;}
.ls1{letter-spacing:2.665203pt;}
.ls3b{letter-spacing:2.965920pt;}
.ls3c{letter-spacing:3.264894pt;}
.ls33{letter-spacing:3.286560pt;}
.ls2c{letter-spacing:3.607200pt;}
.ls2b{letter-spacing:3.927840pt;}
.ls10{letter-spacing:5.205056pt;}
.lsf{letter-spacing:5.525696pt;}
.ls39{letter-spacing:6.487616pt;}
.ls38{letter-spacing:6.808256pt;}
.ls31{letter-spacing:7.128896pt;}
.ls30{letter-spacing:7.449536pt;}
.ls3e{letter-spacing:8.726752pt;}
.ls83{letter-spacing:8.963200pt;}
.ls3d{letter-spacing:9.047392pt;}
.lsa{letter-spacing:9.321235pt;}
.ls9{letter-spacing:9.325395pt;}
.ls8{letter-spacing:9.427404pt;}
.ls5a{letter-spacing:10.329952pt;}
.ls5{letter-spacing:10.626533pt;}
.lsa8{letter-spacing:11.782848pt;}
.lsa5{letter-spacing:11.954133pt;}
.lsa6{letter-spacing:11.959467pt;}
.lsaa{letter-spacing:12.044800pt;}
.lsa9{letter-spacing:12.098781pt;}
.ls84{letter-spacing:13.602270pt;}
.lsa7{letter-spacing:14.904931pt;}
.lsab{letter-spacing:15.035650pt;}
.ls2{letter-spacing:15.937067pt;}
.lsac{letter-spacing:17.906238pt;}
.ls2a{letter-spacing:58.452672pt;}
.ls4{letter-spacing:59.775565pt;}
.ls3{letter-spacing:62.432533pt;}
.ls7{letter-spacing:83.150380pt;}
.ls22{letter-spacing:171.991296pt;}
.ls82{letter-spacing:583.969408pt;}
.lsd{letter-spacing:1844.848320pt;}
.ls87{letter-spacing:2131.773540pt;}
.ws51{word-spacing:-53.440000pt;}
.ws47{word-spacing:-42.560000pt;}
.wsfb{word-spacing:-32.640000pt;}
.wse6{word-spacing:-28.940800pt;}
.ws1d{word-spacing:-13.283467pt;}
.ws3{word-spacing:-12.760670pt;}
.wsb7{word-spacing:-11.955200pt;}
.ws16{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.wsfe{word-spacing:-8.975782pt;}
.wsde{word-spacing:-8.501440pt;}
.ws143{word-spacing:-2.534502pt;}
.ws22{word-spacing:-2.391024pt;}
.wsb6{word-spacing:-2.341785pt;}
.wsa8{word-spacing:-2.337890pt;}
.ws115{word-spacing:-2.231622pt;}
.ws116{word-spacing:-2.072221pt;}
.ws0{word-spacing:-1.817190pt;}
.ws117{word-spacing:-1.753418pt;}
.ws10d{word-spacing:-1.594016pt;}
.wsc5{word-spacing:-1.434614pt;}
.ws10f{word-spacing:-1.275213pt;}
.ws3f{word-spacing:-1.222079pt;}
.wsaf{word-spacing:-1.062677pt;}
.ws111{word-spacing:-1.009543pt;}
.wsc6{word-spacing:-0.956410pt;}
.wsa7{word-spacing:-0.903276pt;}
.wsa6{word-spacing:-0.850142pt;}
.ws128{word-spacing:-0.765133pt;}
.wsb9{word-spacing:-0.552594pt;}
.ws110{word-spacing:-0.531339pt;}
.ws4{word-spacing:-0.478205pt;}
.wsb0{word-spacing:-0.371937pt;}
.ws9d{word-spacing:-0.331328pt;}
.wsa{word-spacing:-0.318803pt;}
.ws9{word-spacing:-0.265669pt;}
.ws119{word-spacing:-0.239104pt;}
.ws4d{word-spacing:-0.224448pt;}
.ws45{word-spacing:-0.212800pt;}
.ws1b{word-spacing:-0.212535pt;}
.ws9a{word-spacing:-0.208416pt;}
.ws11c{word-spacing:-0.191283pt;}
.ws62{word-spacing:-0.187040pt;}
.ws8c{word-spacing:-0.181696pt;}
.ws48{word-spacing:-0.178752pt;}
.ws79{word-spacing:-0.163200pt;}
.wsd{word-spacing:-0.159402pt;}
.ws90{word-spacing:-0.154976pt;}
.ws6b{word-spacing:-0.149632pt;}
.ws49{word-spacing:-0.144288pt;}
.ws11f{word-spacing:-0.143462pt;}
.ws7e{word-spacing:-0.138944pt;}
.wse4{word-spacing:-0.138916pt;}
.ws92{word-spacing:-0.133600pt;}
.ws82{word-spacing:-0.128256pt;}
.ws7c{word-spacing:-0.122912pt;}
.ws55{word-spacing:-0.117568pt;}
.wse7{word-spacing:-0.115763pt;}
.ws44{word-spacing:-0.114912pt;}
.ws61{word-spacing:-0.112224pt;}
.ws52{word-spacing:-0.106880pt;}
.wse{word-spacing:-0.106268pt;}
.ws77{word-spacing:-0.105600pt;}
.ws66{word-spacing:-0.101536pt;}
.ws80{word-spacing:-0.096192pt;}
.ws78{word-spacing:-0.096000pt;}
.ws122{word-spacing:-0.095642pt;}
.wsee{word-spacing:-0.094656pt;}
.ws5c{word-spacing:-0.090848pt;}
.wsf5{word-spacing:-0.088128pt;}
.ws67{word-spacing:-0.085504pt;}
.ws73{word-spacing:-0.080160pt;}
.wsf3{word-spacing:-0.078336pt;}
.wse3{word-spacing:-0.075246pt;}
.wsf8{word-spacing:-0.075072pt;}
.ws54{word-spacing:-0.074816pt;}
.ws6d{word-spacing:-0.069472pt;}
.ws72{word-spacing:-0.064128pt;}
.wsea{word-spacing:-0.062016pt;}
.ws59{word-spacing:-0.058784pt;}
.wseb{word-spacing:-0.058752pt;}
.ws76{word-spacing:-0.057600pt;}
.wsf0{word-spacing:-0.055488pt;}
.ws53{word-spacing:-0.053440pt;}
.wsb{word-spacing:-0.053134pt;}
.wsfc{word-spacing:-0.052224pt;}
.wsf7{word-spacing:-0.048960pt;}
.ws63{word-spacing:-0.048096pt;}
.ws11a{word-spacing:-0.047821pt;}
.wsed{word-spacing:-0.045696pt;}
.ws74{word-spacing:-0.042752pt;}
.ws46{word-spacing:-0.042560pt;}
.wsf9{word-spacing:-0.042432pt;}
.ws75{word-spacing:-0.038400pt;}
.ws7b{word-spacing:-0.037408pt;}
.ws35{word-spacing:-0.037300pt;}
.wsfd{word-spacing:-0.036339pt;}
.wsf1{word-spacing:-0.035904pt;}
.wse9{word-spacing:-0.032640pt;}
.ws58{word-spacing:-0.032064pt;}
.wse5{word-spacing:-0.028941pt;}
.ws60{word-spacing:-0.026720pt;}
.wsf2{word-spacing:-0.026112pt;}
.ws6a{word-spacing:-0.021376pt;}
.wse8{word-spacing:-0.019584pt;}
.wsfa{word-spacing:-0.016320pt;}
.ws9b{word-spacing:-0.016032pt;}
.wsf4{word-spacing:-0.013056pt;}
.ws4f{word-spacing:-0.010688pt;}
.ws13c{word-spacing:-0.008619pt;}
.wsf6{word-spacing:-0.006528pt;}
.ws137{word-spacing:-0.006221pt;}
.ws50{word-spacing:-0.005344pt;}
.wsec{word-spacing:-0.003264pt;}
.ws34{word-spacing:-0.003068pt;}
.wsbc{word-spacing:-0.002163pt;}
.wsba{word-spacing:-0.001677pt;}
.wsbb{word-spacing:-0.001498pt;}
.ws1{word-spacing:0.000000pt;}
.ws15{word-spacing:0.000559pt;}
.ws5a{word-spacing:0.005344pt;}
.wsef{word-spacing:0.006528pt;}
.ws5f{word-spacing:0.010688pt;}
.ws87{word-spacing:0.016032pt;}
.ws96{word-spacing:0.021376pt;}
.ws5d{word-spacing:0.026720pt;}
.ws4e{word-spacing:0.032064pt;}
.ws8f{word-spacing:0.037408pt;}
.ws6e{word-spacing:0.042752pt;}
.wsff{word-spacing:0.047821pt;}
.ws5e{word-spacing:0.048096pt;}
.ws19{word-spacing:0.053134pt;}
.ws6f{word-spacing:0.053440pt;}
.ws7a{word-spacing:0.057600pt;}
.ws84{word-spacing:0.058784pt;}
.ws91{word-spacing:0.064128pt;}
.ws107{word-spacing:0.079946pt;}
.ws7f{word-spacing:0.080160pt;}
.ws8e{word-spacing:0.085504pt;}
.ws89{word-spacing:0.090848pt;}
.ws12a{word-spacing:0.095642pt;}
.ws56{word-spacing:0.096192pt;}
.ws32{word-spacing:0.098401pt;}
.ws83{word-spacing:0.101536pt;}
.ws7{word-spacing:0.106268pt;}
.ws99{word-spacing:0.106880pt;}
.ws33{word-spacing:0.111901pt;}
.ws94{word-spacing:0.112224pt;}
.ws6c{word-spacing:0.117568pt;}
.ws108{word-spacing:0.119919pt;}
.ws93{word-spacing:0.128256pt;}
.ws71{word-spacing:0.133600pt;}
.ws106{word-spacing:0.138089pt;}
.ws70{word-spacing:0.138944pt;}
.ws123{word-spacing:0.143462pt;}
.ws7d{word-spacing:0.144288pt;}
.ws4a{word-spacing:0.149632pt;}
.ws68{word-spacing:0.154976pt;}
.ws14{word-spacing:0.159402pt;}
.ws65{word-spacing:0.160320pt;}
.ws8d{word-spacing:0.171008pt;}
.ws95{word-spacing:0.176352pt;}
.ws4c{word-spacing:0.181696pt;}
.ws5b{word-spacing:0.187040pt;}
.ws118{word-spacing:0.191283pt;}
.wsa0{word-spacing:0.192384pt;}
.ws69{word-spacing:0.197728pt;}
.ws57{word-spacing:0.208416pt;}
.ws8{word-spacing:0.212535pt;}
.ws64{word-spacing:0.213760pt;}
.ws86{word-spacing:0.219104pt;}
.ws97{word-spacing:0.235136pt;}
.ws124{word-spacing:0.239104pt;}
.ws9f{word-spacing:0.245824pt;}
.ws8b{word-spacing:0.251168pt;}
.ws9e{word-spacing:0.256512pt;}
.ws13{word-spacing:0.265669pt;}
.ws121{word-spacing:0.286925pt;}
.ws9c{word-spacing:0.288576pt;}
.ws98{word-spacing:0.309952pt;}
.wsac{word-spacing:0.318803pt;}
.ws88{word-spacing:0.320640pt;}
.ws136{word-spacing:0.334746pt;}
.ws4b{word-spacing:0.336672pt;}
.ws85{word-spacing:0.379424pt;}
.ws81{word-spacing:0.395456pt;}
.ws8a{word-spacing:0.411488pt;}
.ws1f{word-spacing:0.425071pt;}
.ws135{word-spacing:0.430387pt;}
.ws10e{word-spacing:0.478205pt;}
.ws134{word-spacing:0.478208pt;}
.wsa5{word-spacing:0.531339pt;}
.wsc{word-spacing:0.584473pt;}
.wsb1{word-spacing:0.637606pt;}
.ws101{word-spacing:0.690740pt;}
.ws11d{word-spacing:0.717312pt;}
.ws39{word-spacing:0.743874pt;}
.ws120{word-spacing:0.765133pt;}
.ws113{word-spacing:0.850142pt;}
.wsa2{word-spacing:0.956410pt;}
.ws13a{word-spacing:1.004237pt;}
.ws18{word-spacing:1.062677pt;}
.ws11e{word-spacing:1.147699pt;}
.wsa9{word-spacing:1.168945pt;}
.ws20{word-spacing:1.222079pt;}
.wsb3{word-spacing:1.328347pt;}
.wsb2{word-spacing:1.434614pt;}
.ws144{word-spacing:1.482445pt;}
.ws36{word-spacing:1.487748pt;}
.ws100{word-spacing:1.530266pt;}
.wsae{word-spacing:1.540882pt;}
.ws129{word-spacing:1.673728pt;}
.ws37{word-spacing:1.700284pt;}
.wsb4{word-spacing:1.753418pt;}
.ws2a{word-spacing:1.859685pt;}
.ws41{word-spacing:1.912819pt;}
.ws13b{word-spacing:1.912832pt;}
.ws42{word-spacing:1.965953pt;}
.wse1{word-spacing:2.040346pt;}
.wsab{word-spacing:2.072221pt;}
.ws114{word-spacing:2.125355pt;}
.ws138{word-spacing:2.151936pt;}
.ws1e{word-spacing:2.178489pt;}
.ws3e{word-spacing:2.284756pt;}
.ws12c{word-spacing:2.295398pt;}
.ws139{word-spacing:2.438861pt;}
.ws3b{word-spacing:2.497292pt;}
.ws12f{word-spacing:2.534502pt;}
.ws109{word-spacing:2.550426pt;}
.ws24{word-spacing:2.709827pt;}
.ws12d{word-spacing:2.725786pt;}
.wsb5{word-spacing:2.762961pt;}
.ws132{word-spacing:2.773606pt;}
.ws142{word-spacing:2.863403pt;}
.ws12b{word-spacing:2.865869pt;}
.ws12e{word-spacing:2.869120pt;}
.ws11b{word-spacing:2.869248pt;}
.ws141{word-spacing:2.870980pt;}
.ws3c{word-spacing:2.975497pt;}
.ws133{word-spacing:3.012710pt;}
.ws6{word-spacing:3.028630pt;}
.wsad{word-spacing:3.097999pt;}
.ws2d{word-spacing:3.134898pt;}
.wsf{word-spacing:3.185311pt;}
.ws11{word-spacing:3.188032pt;}
.ws112{word-spacing:3.241166pt;}
.ws2e{word-spacing:3.347434pt;}
.wsd7{word-spacing:3.400567pt;}
.ws17{word-spacing:3.506835pt;}
.wsc3{word-spacing:3.559969pt;}
.ws131{word-spacing:3.634381pt;}
.ws10b{word-spacing:3.719371pt;}
.wsa4{word-spacing:3.772505pt;}
.wsd3{word-spacing:3.825638pt;}
.wsa3{word-spacing:3.985040pt;}
.ws104{word-spacing:4.197575pt;}
.ws29{word-spacing:4.250709pt;}
.wsaa{word-spacing:4.303843pt;}
.ws102{word-spacing:4.356977pt;}
.ws13d{word-spacing:4.399514pt;}
.ws12{word-spacing:4.463245pt;}
.ws1c{word-spacing:4.675780pt;}
.ws13e{word-spacing:4.734259pt;}
.ws21{word-spacing:4.835182pt;}
.wsc4{word-spacing:4.941450pt;}
.ws28{word-spacing:4.994583pt;}
.ws2f{word-spacing:5.047717pt;}
.ws103{word-spacing:5.100851pt;}
.ws30{word-spacing:5.153985pt;}
.wsd4{word-spacing:5.207119pt;}
.ws10c{word-spacing:5.525922pt;}
.wsda{word-spacing:5.595034pt;}
.ws3d{word-spacing:5.738458pt;}
.wsa1{word-spacing:5.791591pt;}
.ws27{word-spacing:5.844725pt;}
.ws13f{word-spacing:5.929779pt;}
.wsd9{word-spacing:5.977600pt;}
.wsd6{word-spacing:6.057261pt;}
.ws105{word-spacing:6.110395pt;}
.ws140{word-spacing:6.216704pt;}
.ws25{word-spacing:6.322930pt;}
.wsd8{word-spacing:6.376064pt;}
.wsd1{word-spacing:6.535466pt;}
.ws1a{word-spacing:6.588599pt;}
.ws10a{word-spacing:6.748001pt;}
.ws5{word-spacing:6.854269pt;}
.ws2c{word-spacing:7.013670pt;}
.ws130{word-spacing:7.029658pt;}
.ws23{word-spacing:7.066804pt;}
.ws127{word-spacing:7.077478pt;}
.wsd2{word-spacing:7.598143pt;}
.ws126{word-spacing:7.938253pt;}
.ws26{word-spacing:8.235749pt;}
.ws40{word-spacing:8.288883pt;}
.wse0{word-spacing:8.501440pt;}
.ws3a{word-spacing:8.820222pt;}
.wsd5{word-spacing:9.192159pt;}
.ws38{word-spacing:9.351561pt;}
.ws43{word-spacing:9.617230pt;}
.ws2b{word-spacing:10.733041pt;}
.ws125{word-spacing:16.163430pt;}
.ws10{word-spacing:19.659531pt;}
.ws31{word-spacing:142.897158pt;}
.wse2{word-spacing:188.767253pt;}
.wsc0{word-spacing:211.140787pt;}
.wsc2{word-spacing:212.754739pt;}
.wsdf{word-spacing:228.538585pt;}
.wsc1{word-spacing:234.094771pt;}
.wsdb{word-spacing:237.042051pt;}
.wsd0{word-spacing:245.054008pt;}
.wsbe{word-spacing:251.919974pt;}
.wsdc{word-spacing:254.042691pt;}
.wsbd{word-spacing:260.958106pt;}
.wsdd{word-spacing:262.546158pt;}
.wscf{word-spacing:274.639019pt;}
.wsc8{word-spacing:274.681526pt;}
.wscb{word-spacing:276.891901pt;}
.wsca{word-spacing:276.934408pt;}
.wscc{word-spacing:287.518701pt;}
.wsc9{word-spacing:287.561208pt;}
.wsbf{word-spacing:298.724582pt;}
.wsb8{word-spacing:554.200960pt;}
.wsc7{word-spacing:654.950938pt;}
.wscd{word-spacing:748.503329pt;}
.wsce{word-spacing:820.935598pt;}
._9d{margin-left:-18.494222pt;}
._4{margin-left:-6.264525pt;}
._5{margin-left:-5.308109pt;}
._3{margin-left:-4.303872pt;}
._10{margin-left:-3.305031pt;}
._2c{margin-left:-2.371283pt;}
._2{margin-left:-1.243341pt;}
._2b{width:1.127584pt;}
._1{width:2.665537pt;}
._29{width:3.931906pt;}
._47{width:8.966400pt;}
._7d{width:10.541786pt;}
._f{width:12.327863pt;}
._6{width:13.963674pt;}
._7{width:15.685222pt;}
._a{width:16.864698pt;}
._2d{width:18.067036pt;}
._b{width:18.990052pt;}
._17{width:19.946462pt;}
._e{width:21.965549pt;}
._14{width:23.591437pt;}
._11{width:25.079185pt;}
._8{width:26.232249pt;}
._7b{width:27.524893pt;}
._7a{width:28.532886pt;}
._0{width:29.648896pt;}
._19{width:31.444639pt;}
._13{width:32.942997pt;}
._16{width:34.154466pt;}
._9c{width:35.068352pt;}
._12{width:35.982279pt;}
._9{width:37.852575pt;}
._79{width:39.659155pt;}
._15{width:42.023617pt;}
._2a{width:44.281773pt;}
._18{width:48.606878pt;}
._85{width:54.063795pt;}
._9e{width:54.993920pt;}
._88{width:55.919578pt;}
._1e{width:61.138136pt;}
._1f{width:62.423196pt;}
._25{width:68.880934pt;}
._21{width:72.549994pt;}
._31{width:74.738445pt;}
._22{width:79.772599pt;}
._23{width:81.117085pt;}
._24{width:87.854461pt;}
._33{width:95.433919pt;}
._9b{width:105.842661pt;}
._32{width:107.150657pt;}
._7e{width:129.187882pt;}
._28{width:178.929175pt;}
._27{width:181.913192pt;}
._1b{width:183.293301pt;}
._48{width:185.640346pt;}
._4e{width:189.226906pt;}
._1d{width:197.541986pt;}
._26{width:204.979077pt;}
._1a{width:206.009137pt;}
._1c{width:213.357281pt;}
._44{width:237.552215pt;}
._20{width:238.572233pt;}
._8e{width:245.555593pt;}
._81{width:253.410924pt;}
._97{width:254.690930pt;}
._42{width:255.900236pt;}
._35{width:257.397847pt;}
._82{width:263.145072pt;}
._72{width:266.307608pt;}
._4d{width:269.924506pt;}
._80{width:271.059913pt;}
._90{width:273.845738pt;}
._78{width:275.064091pt;}
._3a{width:277.253572pt;}
._4c{width:278.890906pt;}
._71{width:283.225474pt;}
._5f{width:287.241289pt;}
._74{width:293.852274pt;}
._73{width:295.033355pt;}
._59{width:296.105155pt;}
._46{width:297.089111pt;}
._4a{width:298.724582pt;}
._58{width:304.691610pt;}
._5b{width:306.731955pt;}
._4b{width:307.726848pt;}
._55{width:317.358755pt;}
._3c{width:319.713132pt;}
._64{width:323.692328pt;}
._54{width:325.945210pt;}
._49{width:327.560525pt;}
._4f{width:336.526925pt;}
._40{width:344.520172pt;}
._2f{width:390.125434pt;}
._41{width:401.874048pt;}
._76{width:427.276259pt;}
._39{width:430.570832pt;}
._43{width:436.484830pt;}
._8c{width:464.926751pt;}
._63{width:486.825842pt;}
._6b{width:488.699323pt;}
._94{width:492.811474pt;}
._8b{width:495.327900pt;}
._83{width:510.358446pt;}
._37{width:512.414218pt;}
._38{width:520.947840pt;}
._6e{width:523.646197pt;}
._70{width:526.621701pt;}
._3b{width:532.259850pt;}
._96{width:539.773428pt;}
._69{width:541.833323pt;}
._6c{width:544.171219pt;}
._7f{width:546.404552pt;}
._45{width:552.095389pt;}
._60{width:558.496145pt;}
._3f{width:561.393238pt;}
._3e{width:564.131935pt;}
._86{width:568.746336pt;}
._95{width:571.262762pt;}
._51{width:575.750477pt;}
._92{width:579.050081pt;}
._36{width:583.977567pt;}
._5a{width:585.026594pt;}
._91{width:597.821261pt;}
._34{width:609.618124pt;}
._6f{width:612.911317pt;}
._57{width:613.846475pt;}
._65{width:616.345280pt;}
._6a{width:618.692296pt;}
._50{width:633.350630pt;}
._98{width:649.836552pt;}
._3d{width:658.120848pt;}
._8a{width:659.507709pt;}
._62{width:661.412032pt;}
._5e{width:673.441570pt;}
._30{width:682.151279pt;}
._8f{width:685.454104pt;}
._8d{width:696.301942pt;}
._6d{width:716.118798pt;}
._67{width:719.545396pt;}
._66{width:724.263695pt;}
._68{width:726.644098pt;}
._5d{width:741.038662pt;}
._93{width:748.024703pt;}
._77{width:753.110707pt;}
._89{width:761.014903pt;}
._56{width:766.999917pt;}
._53{width:768.870234pt;}
._75{width:800.580605pt;}
._61{width:807.339250pt;}
._5c{width:834.628872pt;}
._c{width:848.144828pt;}
._99{width:878.912873pt;}
._84{width:910.659393pt;}
._87{width:919.160833pt;}
._7c{width:1178.192775pt;}
._9a{width:1333.149616pt;}
._52{width:1810.936267pt;}
._d{width:1832.189600pt;}
._2e{width:3147.464267pt;}
.fsd{font-size:27.895200pt;}
.fsf{font-size:28.940800pt;}
.fs11{font-size:32.640000pt;}
.fse{font-size:34.005760pt;}
.fsc{font-size:35.865600pt;}
.fs10{font-size:36.339200pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.300224pt;}
.fsb{font-size:39.691264pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:42.507200pt;}
.fs8{font-size:42.560000pt;}
.fs5{font-size:47.820800pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:53.133867pt;}
.fs9{font-size:53.440000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.ya3{bottom:-674.443632pt;}
.ycd{bottom:-636.203456pt;}
.ycc{bottom:-618.203528pt;}
.ycb{bottom:-600.203152pt;}
.yca{bottom:-582.203224pt;}
.yc9{bottom:-564.203296pt;}
.yc8{bottom:-546.203368pt;}
.yc7{bottom:-528.283384pt;}
.yc6{bottom:-510.283456pt;}
.yc5{bottom:-492.283528pt;}
.yc4{bottom:-474.283384pt;}
.yc3{bottom:-456.283456pt;}
.yc2{bottom:-438.283528pt;}
.yc1{bottom:-420.283224pt;}
.yc0{bottom:-402.363456pt;}
.ybf{bottom:-384.363528pt;}
.ybe{bottom:-366.363312pt;}
.ybd{bottom:-348.363384pt;}
.ybc{bottom:-330.363456pt;}
.ybb{bottom:-312.363528pt;}
.yba{bottom:-294.363224pt;}
.yb9{bottom:-276.443456pt;}
.yb8{bottom:-258.443528pt;}
.yb7{bottom:-240.443312pt;}
.yb6{bottom:-222.443384pt;}
.yb5{bottom:-204.443456pt;}
.yb4{bottom:-186.443528pt;}
.yb3{bottom:-168.443224pt;}
.yb2{bottom:-150.523456pt;}
.yb1{bottom:-132.523528pt;}
.yb0{bottom:-114.523352pt;}
.y201{bottom:-107.044617pt;}
.yaf{bottom:-88.523456pt;}
.yae{bottom:-70.523528pt;}
.yad{bottom:-52.523600pt;}
.y204{bottom:-32.462021pt;}
.y203{bottom:-20.439893pt;}
.yac{bottom:-18.923600pt;}
.y202{bottom:-5.697493pt;}
.y0{bottom:0.000000pt;}
.y210{bottom:5.400107pt;}
.yab{bottom:6.757264pt;}
.y2{bottom:13.168686pt;}
.y2e{bottom:56.693333pt;}
.y205{bottom:90.644907pt;}
.y22a{bottom:96.544000pt;}
.y29b{bottom:97.010667pt;}
.y1fe{bottom:97.673333pt;}
.y269{bottom:100.566667pt;}
.y2d{bottom:100.709333pt;}
.y237{bottom:106.545333pt;}
.y206{bottom:112.948999pt;}
.y268{bottom:114.076000pt;}
.y29a{bottom:114.225333pt;}
.y229{bottom:114.556000pt;}
.y1fd{bottom:115.685333pt;}
.y2c{bottom:118.721333pt;}
.yf1{bottom:121.541333pt;}
.y236{bottom:124.558667pt;}
.y267{bottom:127.585333pt;}
.y299{bottom:131.441333pt;}
.y228{bottom:132.568000pt;}
.y1fc{bottom:133.698667pt;}
.y207{bottom:135.198583pt;}
.y2b{bottom:136.733333pt;}
.yf0{bottom:139.553333pt;}
.y266{bottom:141.096000pt;}
.y235{bottom:142.570667pt;}
.y118{bottom:144.404000pt;}
.y5d{bottom:147.300000pt;}
.y298{bottom:148.657333pt;}
.y227{bottom:150.581333pt;}
.y1fb{bottom:151.710667pt;}
.yaa{bottom:152.836840pt;}
.y265{bottom:154.605333pt;}
.y2a{bottom:154.746667pt;}
.y208{bottom:157.448167pt;}
.yef{bottom:157.566667pt;}
.y234{bottom:160.584000pt;}
.y117{bottom:162.417333pt;}
.y297{bottom:165.872000pt;}
.y184{bottom:166.292000pt;}
.y5c{bottom:166.641333pt;}
.y1b9{bottom:168.200000pt;}
.y226{bottom:168.593333pt;}
.y1fa{bottom:169.722667pt;}
.ya9{bottom:170.836768pt;}
.y89{bottom:174.061333pt;}
.yee{bottom:175.578667pt;}
.y264{bottom:176.084000pt;}
.y233{bottom:178.596000pt;}
.y209{bottom:179.752259pt;}
.y116{bottom:180.429333pt;}
.y29{bottom:180.729333pt;}
.y296{bottom:183.088000pt;}
.y183{bottom:184.305333pt;}
.y5b{bottom:185.981333pt;}
.y1b8{bottom:186.212000pt;}
.y225{bottom:186.606667pt;}
.y1f9{bottom:187.736000pt;}
.y263{bottom:189.593333pt;}
.y88{bottom:191.701973pt;}
.yed{bottom:193.590667pt;}
.y232{bottom:196.608000pt;}
.y115{bottom:198.441333pt;}
.y295{bottom:200.302667pt;}
.y20a{bottom:202.001843pt;}
.y182{bottom:202.317333pt;}
.y262{bottom:203.102667pt;}
.y87{bottom:203.151333pt;}
.y1b7{bottom:204.224000pt;}
.y224{bottom:204.618667pt;}
.ya8{bottom:204.756472pt;}
.y1f8{bottom:205.748000pt;}
.y141{bottom:210.168707pt;}
.yec{bottom:211.604000pt;}
.y28{bottom:211.680000pt;}
.ya0{bottom:211.725333pt;}
.y86{bottom:214.599653pt;}
.y5a{bottom:214.621333pt;}
.y114{bottom:216.454667pt;}
.y294{bottom:217.518667pt;}
.y261{bottom:218.765333pt;}
.y181{bottom:220.330667pt;}
.y1b6{bottom:222.237333pt;}
.y140{bottom:222.352000pt;}
.y223{bottom:222.630667pt;}
.ya7{bottom:222.756776pt;}
.y1f7{bottom:223.761333pt;}
.y20b{bottom:224.251426pt;}
.y84{bottom:225.997013pt;}
.y9f{bottom:229.737333pt;}
.yeb{bottom:230.944000pt;}
.y85{bottom:231.696213pt;}
.y260{bottom:232.274667pt;}
.y59{bottom:232.633333pt;}
.y113{bottom:234.466667pt;}
.y13f{bottom:234.535293pt;}
.y293{bottom:234.734667pt;}
.y83{bottom:237.394373pt;}
.y180{bottom:238.342667pt;}
.y1b5{bottom:240.249333pt;}
.y222{bottom:240.644000pt;}
.ya6{bottom:240.676544pt;}
.y13a{bottom:241.110000pt;}
.y1f6{bottom:241.773333pt;}
.y25f{bottom:245.784000pt;}
.y20c{bottom:246.555519pt;}
.y13e{bottom:246.718587pt;}
.y9e{bottom:247.750667pt;}
.yea{bottom:248.957333pt;}
.y58{bottom:250.646667pt;}
.y292{bottom:251.949333pt;}
.y112{bottom:252.478667pt;}
.y82{bottom:254.044773pt;}
.y17f{bottom:256.354667pt;}
.y1b4{bottom:258.262667pt;}
.y221{bottom:258.656000pt;}
.ya5{bottom:258.676472pt;}
.y13d{bottom:258.900773pt;}
.y25e{bottom:259.293333pt;}
.y1f5{bottom:259.785333pt;}
.y9d{bottom:265.762667pt;}
.ye9{bottom:266.969333pt;}
.y231{bottom:268.658667pt;}
.y20d{bottom:268.805103pt;}
.y291{bottom:269.165333pt;}
.y111{bottom:270.492000pt;}
.y13c{bottom:271.084067pt;}
.y25d{bottom:272.802667pt;}
.y1b3{bottom:276.274667pt;}
.y57{bottom:276.629333pt;}
.y220{bottom:276.669333pt;}
.ya4{bottom:276.676400pt;}
.y1f4{bottom:277.798667pt;}
.y27{bottom:279.598667pt;}
.y17e{bottom:282.337333pt;}
.y13b{bottom:283.267360pt;}
.y9c{bottom:283.776000pt;}
.y81{bottom:284.162667pt;}
.ye8{bottom:284.982667pt;}
.y25c{bottom:286.312000pt;}
.y290{bottom:286.380000pt;}
.y230{bottom:286.670667pt;}
.y110{bottom:288.504000pt;}
.y20e{bottom:291.054686pt;}
.y1b2{bottom:294.286667pt;}
.y21f{bottom:294.681333pt;}
.y1f3{bottom:295.810667pt;}
.y25b{bottom:299.821333pt;}
.y139{bottom:300.763760pt;}
.y9b{bottom:301.788000pt;}
.ye7{bottom:302.994667pt;}
.y28f{bottom:303.596000pt;}
.y22f{bottom:304.684000pt;}
.y10f{bottom:306.517333pt;}
.y56{bottom:307.580000pt;}
.ya2{bottom:309.956400pt;}
.y1b1{bottom:312.300000pt;}
.y21e{bottom:312.693333pt;}
.y138{bottom:312.947053pt;}
.y17d{bottom:313.288000pt;}
.y25a{bottom:313.332000pt;}
.y20f{bottom:313.358779pt;}
.y26{bottom:313.550667pt;}
.y80{bottom:317.144000pt;}
.y9a{bottom:319.800000pt;}
.y28e{bottom:320.812000pt;}
.ye6{bottom:321.006667pt;}
.y1f2{bottom:321.793333pt;}
.y22e{bottom:322.696000pt;}
.y10e{bottom:324.529333pt;}
.y137{bottom:325.130347pt;}
.y55{bottom:325.592000pt;}
.y1b0{bottom:330.312000pt;}
.y21d{bottom:330.706667pt;}
.y17c{bottom:331.301333pt;}
.y25{bottom:331.564000pt;}
.y259{bottom:334.810667pt;}
.y7f{bottom:335.156000pt;}
.y136{bottom:337.313640pt;}
.y99{bottom:337.813333pt;}
.y28d{bottom:338.026667pt;}
.ye5{bottom:339.020000pt;}
.y200{bottom:339.252907pt;}
.y22d{bottom:340.709333pt;}
.y10d{bottom:342.541333pt;}
.y131{bottom:342.595760pt;}
.y54{bottom:343.604000pt;}
.y258{bottom:348.320000pt;}
.y21c{bottom:348.718667pt;}
.y17b{bottom:349.313333pt;}
.y135{bottom:349.495827pt;}
.y24{bottom:349.576000pt;}
.y7e{bottom:353.169333pt;}
.y28c{bottom:355.242667pt;}
.y98{bottom:355.825333pt;}
.y1af{bottom:356.294667pt;}
.ye4{bottom:358.360000pt;}
.y22c{bottom:358.721333pt;}
.y2bf{bottom:360.225333pt;}
.y10c{bottom:360.554667pt;}
.y53{bottom:361.617333pt;}
.y134{bottom:361.679120pt;}
.y257{bottom:361.829333pt;}
.y21b{bottom:366.732000pt;}
.y17a{bottom:367.326667pt;}
.y23{bottom:367.588000pt;}
.y1f1{bottom:369.149333pt;}
.y7d{bottom:371.181333pt;}
.y28b{bottom:372.457333pt;}
.y97{bottom:373.838667pt;}
.y133{bottom:373.862413pt;}
.y256{bottom:375.338667pt;}
.ye3{bottom:376.373333pt;}
.y2be{bottom:377.440000pt;}
.y10b{bottom:378.566667pt;}
.y52{bottom:379.629333pt;}
.y22b{bottom:384.704000pt;}
.y21a{bottom:384.744000pt;}
.y1f0{bottom:385.127200pt;}
.y179{bottom:385.338667pt;}
.y22{bottom:385.601333pt;}
.y132{bottom:386.045707pt;}
.y1ae{bottom:387.245333pt;}
.y7c{bottom:389.193333pt;}
.y28a{bottom:389.673333pt;}
.ye2{bottom:394.385333pt;}
.y2bd{bottom:394.656000pt;}
.y10a{bottom:396.580000pt;}
.y51{bottom:397.642667pt;}
.y96{bottom:399.821333pt;}
.y1ef{bottom:400.450933pt;}
.y219{bottom:402.756000pt;}
.y178{bottom:403.350667pt;}
.y130{bottom:403.542107pt;}
.y21{bottom:403.613333pt;}
.y255{bottom:404.789333pt;}
.y1ad{bottom:405.257333pt;}
.y289{bottom:406.889333pt;}
.y7b{bottom:407.206667pt;}
.y155{bottom:409.877333pt;}
.ye1{bottom:413.726667pt;}
.y109{bottom:414.592000pt;}
.y50{bottom:415.654667pt;}
.y12f{bottom:415.725400pt;}
.y1ee{bottom:415.773600pt;}
.y218{bottom:420.769333pt;}
.y177{bottom:421.364000pt;}
.y20{bottom:421.626667pt;}
.y254{bottom:422.801333pt;}
.y1ac{bottom:423.270667pt;}
.y2bc{bottom:423.945333pt;}
.y288{bottom:424.104000pt;}
.y7a{bottom:425.218667pt;}
.y12e{bottom:427.907587pt;}
.y154{bottom:427.908587pt;}
.y95{bottom:430.772000pt;}
.y1ed{bottom:430.990667pt;}
.ye0{bottom:431.738667pt;}
.y108{bottom:432.604000pt;}
.y4f{bottom:433.666667pt;}
.y217{bottom:438.781333pt;}
.y176{bottom:439.376000pt;}
.y1f{bottom:439.638667pt;}
.y153{bottom:440.090773pt;}
.y12d{bottom:440.090880pt;}
.y1ea{bottom:440.408267pt;}
.y253{bottom:440.813333pt;}
.y1ec{bottom:441.086667pt;}
.y2bb{bottom:441.160000pt;}
.y1ab{bottom:441.282667pt;}
.y287{bottom:441.320000pt;}
.y79{bottom:443.232000pt;}
.y128{bottom:445.373000pt;}
.y94{bottom:448.784000pt;}
.y107{bottom:450.617333pt;}
.ydf{bottom:451.080000pt;}
.y4e{bottom:451.680000pt;}
.y152{bottom:452.274067pt;}
.y12c{bottom:452.274173pt;}
.y1eb{bottom:456.410400pt;}
.y216{bottom:456.794667pt;}
.y175{bottom:457.389333pt;}
.y1e{bottom:457.650667pt;}
.y2ba{bottom:458.376000pt;}
.y286{bottom:458.534667pt;}
.y252{bottom:458.826667pt;}
.y1aa{bottom:459.296000pt;}
.y78{bottom:461.244000pt;}
.y151{bottom:464.457360pt;}
.y12b{bottom:464.457467pt;}
.y93{bottom:466.796000pt;}
.y106{bottom:468.629333pt;}
.yde{bottom:469.092000pt;}
.y4d{bottom:469.692000pt;}
.y14c{bottom:471.183680pt;}
.y1e9{bottom:471.733067pt;}
.y215{bottom:474.806667pt;}
.y174{bottom:475.401333pt;}
.y2b9{bottom:475.592000pt;}
.y1d{bottom:475.664000pt;}
.y285{bottom:475.750667pt;}
.y12a{bottom:476.639653pt;}
.y150{bottom:476.640653pt;}
.y251{bottom:476.838667pt;}
.y77{bottom:479.256000pt;}
.y92{bottom:484.809333pt;}
.y105{bottom:486.642667pt;}
.y1e8{bottom:487.056800pt;}
.ydd{bottom:487.105333pt;}
.y4c{bottom:487.704000pt;}
.y14f{bottom:488.822840pt;}
.y129{bottom:488.822947pt;}
.y1e6{bottom:491.425867pt;}
.y2b8{bottom:492.806667pt;}
.y284{bottom:492.966667pt;}
.y173{bottom:493.413333pt;}
.y1c{bottom:493.676000pt;}
.y250{bottom:494.852000pt;}
.y76{bottom:497.269333pt;}
.y1a9{bottom:500.384000pt;}
.y214{bottom:500.789333pt;}
.y14e{bottom:501.006133pt;}
.y1e7{bottom:502.380533pt;}
.y91{bottom:502.821333pt;}
.y104{bottom:504.654667pt;}
.ydc{bottom:505.117333pt;}
.y4b{bottom:505.717333pt;}
.y127{bottom:506.319347pt;}
.y2b7{bottom:510.022667pt;}
.y283{bottom:510.181333pt;}
.y172{bottom:511.426667pt;}
.y1b{bottom:511.689333pt;}
.y24f{bottom:512.864000pt;}
.y1a8{bottom:513.002667pt;}
.y14d{bottom:513.189427pt;}
.y1e5{bottom:517.704267pt;}
.y126{bottom:518.502640pt;}
.y90{bottom:520.834667pt;}
.y103{bottom:522.666667pt;}
.ydb{bottom:523.130667pt;}
.y75{bottom:523.252000pt;}
.y4a{bottom:523.729333pt;}
.y1a7{bottom:525.622667pt;}
.y1e2{bottom:527.194400pt;}
.y2b6{bottom:527.237333pt;}
.y282{bottom:527.397333pt;}
.y171{bottom:529.438667pt;}
.y1a{bottom:529.701333pt;}
.y14b{bottom:530.685827pt;}
.y125{bottom:530.685933pt;}
.y24e{bottom:530.876000pt;}
.y1e4{bottom:533.026933pt;}
.y213{bottom:535.028000pt;}
.y1e1{bottom:537.290400pt;}
.y1a6{bottom:538.241333pt;}
.y8f{bottom:538.846667pt;}
.y102{bottom:540.680000pt;}
.y49{bottom:541.742667pt;}
.yda{bottom:542.470667pt;}
.y14a{bottom:542.869120pt;}
.y124{bottom:542.869227pt;}
.y2b5{bottom:544.453333pt;}
.y281{bottom:544.612000pt;}
.y1e0{bottom:547.385333pt;}
.y170{bottom:547.452000pt;}
.y19{bottom:547.713333pt;}
.y1e3{bottom:548.350667pt;}
.y24d{bottom:548.889333pt;}
.y1a5{bottom:550.861333pt;}
.y212{bottom:552.124000pt;}
.y74{bottom:554.202667pt;}
.y11d{bottom:554.270107pt;}
.y123{bottom:555.051413pt;}
.y149{bottom:555.052413pt;}
.y8e{bottom:556.858667pt;}
.y101{bottom:558.692000pt;}
.y48{bottom:559.754667pt;}
.yd9{bottom:560.484000pt;}
.y2b4{bottom:561.669333pt;}
.y280{bottom:561.828000pt;}
.y1a4{bottom:563.480000pt;}
.y1df{bottom:563.674400pt;}
.y16f{bottom:565.464000pt;}
.y18{bottom:565.726667pt;}
.y11c{bottom:566.398067pt;}
.y24c{bottom:566.901333pt;}
.y122{bottom:567.234707pt;}
.y148{bottom:567.235707pt;}
.y211{bottom:569.220000pt;}
.y73{bottom:572.214667pt;}
.y143{bottom:572.517827pt;}
.y8d{bottom:574.872000pt;}
.y1a3{bottom:576.100000pt;}
.y100{bottom:576.705333pt;}
.y47{bottom:577.766667pt;}
.yd8{bottom:578.496000pt;}
.y2b3{bottom:578.884000pt;}
.y1de{bottom:578.997067pt;}
.y27f{bottom:579.044000pt;}
.y1dc{bottom:579.320267pt;}
.y147{bottom:579.417893pt;}
.y121{bottom:579.418000pt;}
.y16e{bottom:583.476000pt;}
.y17{bottom:583.738667pt;}
.y1a2{bottom:588.718667pt;}
.y1db{bottom:589.415200pt;}
.y72{bottom:590.228000pt;}
.y146{bottom:591.601187pt;}
.y120{bottom:591.601293pt;}
.y8c{bottom:592.884000pt;}
.y1dd{bottom:594.320800pt;}
.y1ff{bottom:594.470304pt;}
.yff{bottom:594.717333pt;}
.y46{bottom:595.780000pt;}
.y2b2{bottom:596.100000pt;}
.y27e{bottom:596.258667pt;}
.yd7{bottom:596.508000pt;}
.y1a1{bottom:601.338667pt;}
.y16{bottom:601.752000pt;}
.y11f{bottom:603.783480pt;}
.y145{bottom:603.784480pt;}
.y71{bottom:608.240000pt;}
.y16d{bottom:609.458667pt;}
.y1da{bottom:609.644533pt;}
.y8b{bottom:610.896000pt;}
.yfe{bottom:612.729333pt;}
.y2b1{bottom:613.314667pt;}
.y27d{bottom:613.474667pt;}
.y45{bottom:613.792000pt;}
.y1a0{bottom:613.957333pt;}
.yd6{bottom:615.849333pt;}
.y11e{bottom:615.966773pt;}
.y144{bottom:615.967773pt;}
.y24b{bottom:623.834667pt;}
.y1d9{bottom:624.968267pt;}
.y70{bottom:626.252000pt;}
.y19f{bottom:626.577333pt;}
.y15{bottom:629.328000pt;}
.y2b0{bottom:630.530667pt;}
.y27c{bottom:630.689333pt;}
.yfd{bottom:630.742667pt;}
.y44{bottom:631.805333pt;}
.y142{bottom:633.684400pt;}
.y11b{bottom:633.684507pt;}
.yd5{bottom:633.862667pt;}
.y8a{bottom:636.878667pt;}
.y19e{bottom:639.196000pt;}
.y1d8{bottom:640.290933pt;}
.y16c{bottom:640.409333pt;}
.y24a{bottom:641.846667pt;}
.y6f{bottom:644.265333pt;}
.y2af{bottom:647.746667pt;}
.y27b{bottom:647.905333pt;}
.y43{bottom:649.817333pt;}
.y19d{bottom:651.816000pt;}
.yd4{bottom:651.874667pt;}
.y14{bottom:653.438667pt;}
.y1d7{bottom:655.614667pt;}
.yfc{bottom:656.725333pt;}
.y16b{bottom:658.422667pt;}
.y249{bottom:659.860000pt;}
.y1d3{bottom:661.345867pt;}
.y6e{bottom:662.277333pt;}
.y19c{bottom:664.434667pt;}
.y11a{bottom:664.553333pt;}
.y2ae{bottom:664.961333pt;}
.y27a{bottom:665.121333pt;}
.y42{bottom:667.829333pt;}
.yd3{bottom:669.886667pt;}
.y1d6{bottom:670.938400pt;}
.y1d2{bottom:671.440800pt;}
.y13{bottom:673.917333pt;}
.y16a{bottom:676.434667pt;}
.y19b{bottom:677.054667pt;}
.y248{bottom:677.872000pt;}
.y6d{bottom:680.290667pt;}
.y1d1{bottom:681.536800pt;}
.y2ad{bottom:682.177333pt;}
.y279{bottom:682.336000pt;}
.y12{bottom:685.717333pt;}
.y41{bottom:685.842667pt;}
.y1d5{bottom:686.262133pt;}
.yfb{bottom:687.676000pt;}
.yd2{bottom:687.900000pt;}
.y19a{bottom:689.673333pt;}
.y169{bottom:694.448000pt;}
.y247{bottom:695.885333pt;}
.y6c{bottom:698.302667pt;}
.y2ac{bottom:699.392000pt;}
.y278{bottom:699.552000pt;}
.y1d4{bottom:701.584800pt;}
.y199{bottom:702.293333pt;}
.y40{bottom:703.854667pt;}
.yfa{bottom:705.688000pt;}
.y11{bottom:706.196000pt;}
.y119{bottom:709.729333pt;}
.y168{bottom:712.460000pt;}
.y246{bottom:713.897333pt;}
.y198{bottom:714.912000pt;}
.y6b{bottom:716.314667pt;}
.y2ab{bottom:716.608000pt;}
.y277{bottom:716.766667pt;}
.y1d0{bottom:716.908533pt;}
.y10{bottom:717.996000pt;}
.yd1{bottom:719.196000pt;}
.y3f{bottom:721.868000pt;}
.y197{bottom:727.532000pt;}
.y167{bottom:730.472000pt;}
.yf9{bottom:731.670667pt;}
.y245{bottom:731.909333pt;}
.y1cf{bottom:732.232267pt;}
.y2aa{bottom:733.824000pt;}
.y276{bottom:733.982667pt;}
.y6a{bottom:734.328000pt;}
.yd0{bottom:737.208000pt;}
.y1cb{bottom:737.962400pt;}
.yf{bottom:738.476000pt;}
.y3e{bottom:739.880000pt;}
.y196{bottom:740.150667pt;}
.y1ce{bottom:747.556000pt;}
.y1ca{bottom:748.058400pt;}
.y166{bottom:748.485333pt;}
.y244{bottom:749.922667pt;}
.ye{bottom:750.276000pt;}
.y2a9{bottom:751.038667pt;}
.y275{bottom:751.198667pt;}
.y69{bottom:752.340000pt;}
.y195{bottom:752.770667pt;}
.ycf{bottom:755.221333pt;}
.y3d{bottom:757.892000pt;}
.y1c9{bottom:758.153333pt;}
.yf8{bottom:762.621333pt;}
.y1cd{bottom:762.878667pt;}
.y194{bottom:765.389333pt;}
.y165{bottom:766.497333pt;}
.y243{bottom:767.934667pt;}
.y1c8{bottom:768.249333pt;}
.y2a8{bottom:768.254667pt;}
.y274{bottom:768.413333pt;}
.y68{bottom:770.353333pt;}
.yd{bottom:770.754667pt;}
.y3c{bottom:775.905333pt;}
.y193{bottom:778.009333pt;}
.y1cc{bottom:778.202400pt;}
.y1c7{bottom:778.344267pt;}
.yf7{bottom:780.634667pt;}
.y2a7{bottom:785.469333pt;}
.y273{bottom:785.629333pt;}
.y242{bottom:785.948000pt;}
.yc{bottom:786.894667pt;}
.y67{bottom:788.365333pt;}
.y192{bottom:790.628000pt;}
.y164{bottom:792.480000pt;}
.y1c6{bottom:793.526133pt;}
.y3b{bottom:793.917333pt;}
.yce{bottom:794.302667pt;}
.yf6{bottom:798.646667pt;}
.yb{bottom:798.694667pt;}
.y2a6{bottom:802.685333pt;}
.y272{bottom:802.844000pt;}
.y191{bottom:803.248000pt;}
.y241{bottom:803.960000pt;}
.y1c5{bottom:804.049867pt;}
.y66{bottom:806.377333pt;}
.y3a{bottom:811.930667pt;}
.y190{bottom:815.866667pt;}
.yf5{bottom:816.658667pt;}
.ya{bottom:819.173333pt;}
.ya1{bottom:819.553333pt;}
.y2a5{bottom:819.901333pt;}
.y271{bottom:820.060000pt;}
.y240{bottom:821.972000pt;}
.y1c4{bottom:824.172533pt;}
.y65{bottom:824.390667pt;}
.y18f{bottom:828.486667pt;}
.y39{bottom:829.942667pt;}
.y9{bottom:830.973333pt;}
.yf4{bottom:834.672000pt;}
.y1c3{bottom:834.697333pt;}
.y2a4{bottom:837.116000pt;}
.y270{bottom:837.276000pt;}
.y23f{bottom:839.985333pt;}
.y18e{bottom:841.105333pt;}
.y163{bottom:842.368000pt;}
.y64{bottom:842.402667pt;}
.y38{bottom:847.954667pt;}
.y8{bottom:851.452000pt;}
.yf3{bottom:852.684000pt;}
.y18d{bottom:853.725333pt;}
.y2a3{bottom:854.332000pt;}
.y26f{bottom:854.490667pt;}
.y1c2{bottom:854.820000pt;}
.y23e{bottom:857.997333pt;}
.y162{bottom:859.774000pt;}
.y63{bottom:860.416000pt;}
.y37{bottom:865.968000pt;}
.y18c{bottom:866.344000pt;}
.y1c1{bottom:870.142667pt;}
.yf2{bottom:870.697333pt;}
.y161{bottom:870.783000pt;}
.y7{bottom:871.222667pt;}
.y2a2{bottom:871.546667pt;}
.y26e{bottom:871.706667pt;}
.y23d{bottom:876.010667pt;}
.y62{bottom:878.428000pt;}
.y18b{bottom:878.964000pt;}
.y160{bottom:881.792000pt;}
.y36{bottom:883.980000pt;}
.y1c0{bottom:885.466400pt;}
.y6{bottom:886.233333pt;}
.y2a1{bottom:888.762667pt;}
.y18a{bottom:891.582667pt;}
.y15f{bottom:892.800000pt;}
.y23c{bottom:894.022667pt;}
.y61{bottom:896.440000pt;}
.y26d{bottom:896.892000pt;}
.y1bf{bottom:900.790133pt;}
.y35{bottom:901.993333pt;}
.y15e{bottom:903.809000pt;}
.y189{bottom:904.202667pt;}
.y1bc{bottom:905.339467pt;}
.y2a0{bottom:905.978667pt;}
.y23b{bottom:912.034667pt;}
.y15d{bottom:914.818000pt;}
.y1be{bottom:916.113867pt;}
.y188{bottom:916.821333pt;}
.y34{bottom:920.005333pt;}
.y60{bottom:922.422667pt;}
.y29f{bottom:923.193333pt;}
.y5{bottom:925.198667pt;}
.y15c{bottom:925.827000pt;}
.y187{bottom:929.441333pt;}
.y23a{bottom:930.048000pt;}
.y1bd{bottom:931.436533pt;}
.y33{bottom:938.017333pt;}
.y29e{bottom:940.409333pt;}
.y15b{bottom:941.786000pt;}
.y1bb{bottom:946.972533pt;}
.y158{bottom:947.266000pt;}
.y239{bottom:948.060000pt;}
.y186{bottom:948.728000pt;}
.y26c{bottom:951.526667pt;}
.y4{bottom:952.217333pt;}
.y15a{bottom:952.745000pt;}
.y5f{bottom:953.373333pt;}
.y32{bottom:956.030667pt;}
.y29d{bottom:957.624000pt;}
.y157{bottom:958.225000pt;}
.y185{bottom:961.346667pt;}
.y159{bottom:963.704000pt;}
.y26b{bottom:965.037333pt;}
.y238{bottom:966.073333pt;}
.y5e{bottom:972.714667pt;}
.y31{bottom:974.042667pt;}
.y29c{bottom:974.840000pt;}
.y1ba{bottom:976.276000pt;}
.y3{bottom:977.906667pt;}
.y26a{bottom:978.546667pt;}
.y30{bottom:992.056000pt;}
.y156{bottom:993.372000pt;}
.y1{bottom:1011.514667pt;}
.y2f{bottom:1038.548000pt;}
.h26{height:20.942513pt;}
.h20{height:24.586164pt;}
.h2a{height:25.231613pt;}
.h1a{height:25.930829pt;}
.h27{height:26.296238pt;}
.h25{height:26.920031pt;}
.hd{height:26.968062pt;}
.h18{height:28.696784pt;}
.h19{height:29.093697pt;}
.h28{height:30.360938pt;}
.h1d{height:30.732706pt;}
.h11{height:30.797812pt;}
.h21{height:30.877230pt;}
.h1c{height:32.565965pt;}
.h1b{height:33.188230pt;}
.h7{height:33.771789pt;}
.h29{height:33.800756pt;}
.hc{height:33.867527pt;}
.he{height:33.868603pt;}
.h1f{height:34.574438pt;}
.h17{height:36.039668pt;}
.h9{height:38.415786pt;}
.hb{height:38.596538pt;}
.h4{height:38.947124pt;}
.h13{height:39.036250pt;}
.h10{height:39.588281pt;}
.h8{height:43.421286pt;}
.h14{height:44.648438pt;}
.h2{height:45.272024pt;}
.ha{height:48.245551pt;}
.h6{height:48.481423pt;}
.h12{height:49.708594pt;}
.h22{height:50.072963pt;}
.h23{height:51.071363pt;}
.h5{height:69.148877pt;}
.h1e{height:89.076538pt;}
.h3{height:91.114522pt;}
.hf{height:185.786667pt;}
.h24{height:324.377317pt;}
.h15{height:793.701333pt;}
.h16{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:176.724208pt;}
.w3{width:302.241333pt;}
.w6{width:586.822229pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w4{width:1122.520000pt;}
.w5{width:1122.666667pt;}
.x41{left:-138.232000pt;}
.x42{left:-109.912000pt;}
.x75{left:-18.280304pt;}
.x0{left:0.000000pt;}
.x76{left:0.977387pt;}
.x43{left:5.128567pt;}
.x77{left:10.334096pt;}
.x2{left:51.605861pt;}
.x45{left:53.608000pt;}
.x1{left:102.046667pt;}
.x74{left:103.442576pt;}
.x5{left:108.541333pt;}
.x3{left:109.605333pt;}
.x78{left:111.463696pt;}
.x60{left:116.981333pt;}
.x62{left:117.878333pt;}
.x51{left:118.999653pt;}
.x63{left:123.894333pt;}
.x64{left:125.593333pt;}
.x66{left:128.243333pt;}
.x4{left:129.929333pt;}
.x65{left:131.331333pt;}
.x47{left:132.797333pt;}
.x61{left:135.792333pt;}
.x3d{left:139.842667pt;}
.x68{left:145.609333pt;}
.x8b{left:147.765333pt;}
.x79{left:150.098667pt;}
.x95{left:152.845333pt;}
.x13{left:154.428000pt;}
.x14{left:161.070667pt;}
.x44{left:163.128964pt;}
.x15{left:164.354667pt;}
.x6{left:167.334667pt;}
.x72{left:168.744000pt;}
.x16{left:170.996000pt;}
.x1f{left:178.358667pt;}
.x56{left:182.011333pt;}
.x55{left:184.739333pt;}
.x20{left:191.642667pt;}
.x7e{left:197.326667pt;}
.x84{left:198.826667pt;}
.x2e{left:200.541333pt;}
.x7f{left:210.610667pt;}
.x3a{left:212.612000pt;}
.x2f{left:213.824000pt;}
.x38{left:217.381333pt;}
.xa0{left:222.981333pt;}
.xa1{left:224.762667pt;}
.x80{left:226.094667pt;}
.x8c{left:227.485333pt;}
.x71{left:233.746667pt;}
.x8a{left:234.790667pt;}
.x81{left:239.378667pt;}
.x8d{left:240.769333pt;}
.x39{left:242.099120pt;}
.x17{left:243.626667pt;}
.x40{left:245.730667pt;}
.x98{left:247.856000pt;}
.x92{left:249.654667pt;}
.x27{left:250.824000pt;}
.x52{left:254.017413pt;}
.x18{left:256.909333pt;}
.x2c{left:258.730667pt;}
.x19{left:263.478667pt;}
.x2d{left:272.014667pt;}
.x1a{left:276.761333pt;}
.x6f{left:282.149333pt;}
.x54{left:292.052000pt;}
.x46{left:293.678667pt;}
.x70{left:295.433333pt;}
.x3b{left:300.038560pt;}
.x93{left:301.501333pt;}
.x67{left:309.116000pt;}
.x50{left:312.170667pt;}
.x94{left:314.784000pt;}
.x2a{left:318.730667pt;}
.x69{left:329.838667pt;}
.x2b{left:332.014667pt;}
.x8e{left:337.593333pt;}
.x8f{left:350.877333pt;}
.x57{left:366.925333pt;}
.x58{left:377.550333pt;}
.x59{left:379.297333pt;}
.x36{left:380.457333pt;}
.x37{left:390.786667pt;}
.x21{left:394.380000pt;}
.x1b{left:396.861333pt;}
.x28{left:402.653333pt;}
.x96{left:404.006667pt;}
.x22{left:407.662667pt;}
.x1c{left:410.145333pt;}
.x6b{left:413.060000pt;}
.x29{left:415.936000pt;}
.x7a{left:418.094667pt;}
.x7b{left:431.377333pt;}
.x6a{left:434.376000pt;}
.x1d{left:438.002667pt;}
.x5a{left:441.776333pt;}
.x82{left:442.878667pt;}
.x83{left:449.521333pt;}
.x1e{left:451.285333pt;}
.x23{left:469.430667pt;}
.x24{left:482.714667pt;}
.x87{left:495.640000pt;}
.x90{left:504.878667pt;}
.x88{left:508.924000pt;}
.x91{left:511.520000pt;}
.x6d{left:512.881333pt;}
.x53{left:524.838667pt;}
.x6c{left:527.048000pt;}
.x5d{left:533.615333pt;}
.x5c{left:536.653333pt;}
.x49{left:542.161333pt;}
.x9b{left:543.097333pt;}
.x5b{left:547.488333pt;}
.x4a{left:548.804000pt;}
.x85{left:560.252000pt;}
.x9c{left:567.008000pt;}
.x86{left:573.534667pt;}
.x25{left:575.340000pt;}
.x7{left:582.956000pt;}
.x9f{left:584.488000pt;}
.xd{left:586.108000pt;}
.x26{left:588.624000pt;}
.x8{left:589.597333pt;}
.xe{left:592.749333pt;}
.x5e{left:596.920333pt;}
.x7c{left:599.788000pt;}
.x34{left:602.720000pt;}
.x5f{left:606.509333pt;}
.x6e{left:607.820000pt;}
.x4d{left:610.185333pt;}
.x7d{left:613.072000pt;}
.x35{left:616.004000pt;}
.x73{left:617.192000pt;}
.x9a{left:623.853333pt;}
.x89{left:628.914667pt;}
.x9{left:633.156000pt;}
.x3c{left:636.205040pt;}
.xa{left:639.798667pt;}
.xb{left:643.056000pt;}
.x3e{left:644.545333pt;}
.x4b{left:647.822667pt;}
.x30{left:648.792000pt;}
.xc{left:649.697333pt;}
.x4c{left:654.464000pt;}
.x97{left:656.125333pt;}
.x3f{left:657.828000pt;}
.x31{left:662.076000pt;}
.x48{left:663.969333pt;}
.x9d{left:666.786667pt;}
.xf{left:668.744000pt;}
.x99{left:671.056000pt;}
.x32{left:673.074667pt;}
.x10{left:675.385333pt;}
.x4e{left:677.510667pt;}
.x11{left:678.773333pt;}
.x4f{left:684.153333pt;}
.x12{left:685.414667pt;}
.x33{left:686.357333pt;}
.x9e{left:690.697333pt;}
}




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