
    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_80c8899789b4fa79dc540237.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.894000;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_8bbc23fa548667f3ceed4013.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_62def506dd3584a0994334ff.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;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_0f0ec737a260fabf6ce35c3d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.723000;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_509f36ffb38f4e59578153f4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7fb4dd960f25d03fc60f9108.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.734000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.736000;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_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.660000;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_37e018c9111f89f364364fc6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.885000;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_4423dde8d75a9ddd208f5751.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.897000;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_552f7cb62e596c0e2ca70100.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.552000;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_41e0b60cdc31554fee1a927a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_0f2b66c24b83a522063de452.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f97c8d3e2216357113228c86.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b7162fba91b1d94901c06361.woff2')format("woff");}.fff{font-family:fff;line-height:1.011230;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_d8000dcf3a90eecd0aba5e36.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_98f4168adc4429c671a534ba.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.988281;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_8d958eb33a8b54af6c53d7e9.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.869000;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_412b482416b8b455e502f837.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_2cff97794057dc6815c60c0f.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_b7fb61a8c1d9ec9f415abc96.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_8dbf893115ecb3dd1ac3ab43.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_d8000dcf3a90eecd0aba5e36.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_93a4ce18e648dc56737b3f31.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.988281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_dcf0ac1d5bf578194c5a3e6a.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_dbb244106a6db5eddfe61736.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_239952215e0cd18be6401109.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_d8000dcf3a90eecd0aba5e36.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_dcf0ac1d5bf578194c5a3e6a.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_7c81702027f30fbff0bc863f.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_4a757d94cfd48e40fd942a33.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_d8000dcf3a90eecd0aba5e36.woff2')format("woff");}.ff20{font-family:ff20;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;}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m24{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);}
.ma{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);}
.m2c{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);}
.m1c{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);}
.m26{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);}
.m11{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m1{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);}
.m8{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);}
.m21{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);}
.m7{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);}
.m14{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);}
.mb{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);}
.m19{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);}
.mc{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);}
.m27{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);}
.m20{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.m1e{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m25{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);}
.m1a{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);}
.m3{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);}
.m28{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);}
.m15{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);}
.m17{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);}
.m29{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);}
.m2d{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);}
.m10{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);}
.m6{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);}
.m2{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);}
.m12{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);}
.me{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);}
.m18{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);}
.m2b{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);}
.md{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m2a{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);}
.m23{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);}
.m5{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);}
.mf{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;}
.v4{vertical-align:-11.190000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.304000px;}
.v6{vertical-align:11.184000px;}
.v3{vertical-align:16.488000px;}
.v1{vertical-align:21.702000px;}
.ls65{letter-spacing:-0.334800px;}
.ls62{letter-spacing:-0.288576px;}
.ls46{letter-spacing:-0.222444px;}
.ls36{letter-spacing:-0.205200px;}
.ls73{letter-spacing:-0.186372px;}
.ls49{letter-spacing:-0.180360px;}
.ls82{letter-spacing:-0.174348px;}
.ls7a{letter-spacing:-0.168336px;}
.ls7c{letter-spacing:-0.162324px;}
.ls41{letter-spacing:-0.150300px;}
.ls64{letter-spacing:-0.144288px;}
.ls43{letter-spacing:-0.138276px;}
.ls61{letter-spacing:-0.132264px;}
.ls3c{letter-spacing:-0.126252px;}
.ls74{letter-spacing:-0.120240px;}
.ls75{letter-spacing:-0.114228px;}
.ls7b{letter-spacing:-0.108216px;}
.ls63{letter-spacing:-0.102204px;}
.ls48{letter-spacing:-0.096192px;}
.ls76{letter-spacing:-0.090180px;}
.ls34{letter-spacing:-0.086184px;}
.ls42{letter-spacing:-0.084168px;}
.ls79{letter-spacing:-0.078156px;}
.ls47{letter-spacing:-0.072144px;}
.ls78{letter-spacing:-0.066132px;}
.ls77{letter-spacing:-0.060120px;}
.ls3f{letter-spacing:-0.054108px;}
.ls5f{letter-spacing:-0.048096px;}
.ls44{letter-spacing:-0.042084px;}
.ls60{letter-spacing:-0.036072px;}
.ls67{letter-spacing:-0.032400px;}
.ls40{letter-spacing:-0.030060px;}
.ls3b{letter-spacing:-0.024048px;}
.ls66{letter-spacing:-0.021600px;}
.ls39{letter-spacing:-0.018036px;}
.ls3a{letter-spacing:-0.012024px;}
.ls80{letter-spacing:-0.010800px;}
.ls3e{letter-spacing:-0.006012px;}
.ls37{letter-spacing:-0.005400px;}
.ls35{letter-spacing:-0.004788px;}
.lsf{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000091px;}
.ls8f{letter-spacing:0.000124px;}
.ls0{letter-spacing:0.000240px;}
.ls1d{letter-spacing:0.000435px;}
.ls6{letter-spacing:0.000566px;}
.ls5d{letter-spacing:0.000676px;}
.ls91{letter-spacing:0.000990px;}
.ls30{letter-spacing:0.001036px;}
.ls2{letter-spacing:0.001080px;}
.ls1e{letter-spacing:0.001200px;}
.ls71{letter-spacing:0.001226px;}
.lsc{letter-spacing:0.001518px;}
.ls92{letter-spacing:0.001673px;}
.lsa{letter-spacing:0.001875px;}
.ls18{letter-spacing:0.002035px;}
.lsb{letter-spacing:0.002083px;}
.ls12{letter-spacing:0.002360px;}
.ls5c{letter-spacing:0.002382px;}
.ls31{letter-spacing:0.002573px;}
.ls68{letter-spacing:0.002940px;}
.ls9f{letter-spacing:0.002973px;}
.ls8e{letter-spacing:0.003219px;}
.ls15{letter-spacing:0.003226px;}
.ls51{letter-spacing:0.003291px;}
.lse{letter-spacing:0.003488px;}
.ls1c{letter-spacing:0.003494px;}
.ls4f{letter-spacing:0.003598px;}
.ls4c{letter-spacing:0.003677px;}
.ls88{letter-spacing:0.003835px;}
.ls9e{letter-spacing:0.003859px;}
.ls9{letter-spacing:0.003909px;}
.ls6b{letter-spacing:0.004435px;}
.ls11{letter-spacing:0.004518px;}
.ls32{letter-spacing:0.004524px;}
.ls4a{letter-spacing:0.004704px;}
.ls9c{letter-spacing:0.004800px;}
.ls55{letter-spacing:0.005400px;}
.ls93{letter-spacing:0.005415px;}
.ls2a{letter-spacing:0.006012px;}
.ls72{letter-spacing:0.006624px;}
.ls45{letter-spacing:0.007200px;}
.ls23{letter-spacing:0.010800px;}
.ls2e{letter-spacing:0.012024px;}
.ls22{letter-spacing:0.016200px;}
.ls5b{letter-spacing:0.018036px;}
.ls7d{letter-spacing:0.021600px;}
.ls54{letter-spacing:0.024048px;}
.ls27{letter-spacing:0.027000px;}
.ls52{letter-spacing:0.030060px;}
.ls28{letter-spacing:0.032400px;}
.ls53{letter-spacing:0.036072px;}
.ls24{letter-spacing:0.037800px;}
.ls29{letter-spacing:0.042084px;}
.ls1f{letter-spacing:0.043092px;}
.ls25{letter-spacing:0.043200px;}
.ls2b{letter-spacing:0.048096px;}
.ls7e{letter-spacing:0.048600px;}
.ls59{letter-spacing:0.054000px;}
.ls2f{letter-spacing:0.054108px;}
.ls6c{letter-spacing:0.059400px;}
.ls2c{letter-spacing:0.060120px;}
.ls6d{letter-spacing:0.064800px;}
.ls2d{letter-spacing:0.066132px;}
.ls57{letter-spacing:0.070200px;}
.ls6e{letter-spacing:0.072144px;}
.ls3d{letter-spacing:0.078156px;}
.ls56{letter-spacing:0.081000px;}
.ls81{letter-spacing:0.084168px;}
.ls7f{letter-spacing:0.090180px;}
.ls5a{letter-spacing:0.091800px;}
.ls26{letter-spacing:0.140400px;}
.ls21{letter-spacing:0.181944px;}
.ls20{letter-spacing:0.191520px;}
.ls58{letter-spacing:0.210600px;}
.ls10{letter-spacing:1.275394px;}
.ls38{letter-spacing:1.785564px;}
.ls8{letter-spacing:1.861130px;}
.ls86{letter-spacing:2.202319px;}
.ls70{letter-spacing:2.988319px;}
.ls3{letter-spacing:2.989200px;}
.ls1a{letter-spacing:2.990693px;}
.ls1{letter-spacing:2.998354px;}
.ls97{letter-spacing:11.768400px;}
.lsd{letter-spacing:11.954850px;}
.ls9d{letter-spacing:12.104400px;}
.lsa1{letter-spacing:12.289176px;}
.lsa0{letter-spacing:12.374890px;}
.ls96{letter-spacing:13.152441px;}
.ls85{letter-spacing:13.232573px;}
.ls9b{letter-spacing:13.309224px;}
.ls94{letter-spacing:13.448400px;}
.ls98{letter-spacing:13.454400px;}
.ls99{letter-spacing:13.550400px;}
.ls87{letter-spacing:13.637343px;}
.ls9a{letter-spacing:13.666254px;}
.ls1b{letter-spacing:14.016246px;}
.ls13{letter-spacing:14.610124px;}
.ls69{letter-spacing:14.617793px;}
.ls8c{letter-spacing:14.659230px;}
.ls8d{letter-spacing:14.666281px;}
.ls33{letter-spacing:14.691942px;}
.ls95{letter-spacing:14.832753px;}
.ls4b{letter-spacing:14.861272px;}
.ls6f{letter-spacing:14.946124px;}
.ls16{letter-spacing:14.956231px;}
.ls4e{letter-spacing:14.974948px;}
.ls50{letter-spacing:15.003676px;}
.ls8a{letter-spacing:15.008107px;}
.ls4d{letter-spacing:15.026253px;}
.ls6a{letter-spacing:15.108202px;}
.ls84{letter-spacing:15.171020px;}
.ls83{letter-spacing:15.177130px;}
.ls19{letter-spacing:15.368947px;}
.ls14{letter-spacing:15.900310px;}
.ls89{letter-spacing:16.086594px;}
.ls8b{letter-spacing:16.657182px;}
.ls4{letter-spacing:17.935200px;}
.ls90{letter-spacing:21.545418px;}
.ls5e{letter-spacing:21.698359px;}
.ls5{letter-spacing:70.236600px;}
.ls7{letter-spacing:72.353510px;}
.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;}
}
.ws42{word-spacing:-60.120000px;}
.ws86{word-spacing:-45.088735px;}
.ws9{word-spacing:-17.394700px;}
.ws9f{word-spacing:-15.655334px;}
.ws13{word-spacing:-14.943900px;}
.ws1{word-spacing:-14.355754px;}
.ws1c{word-spacing:-13.915795px;}
.ws9b{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.449600px;}
.ws41{word-spacing:-12.161520px;}
.ws1a{word-spacing:-11.955150px;}
.ws15b{word-spacing:-11.357400px;}
.ws2a{word-spacing:-4.901599px;}
.ws182{word-spacing:-4.841856px;}
.ws9d{word-spacing:-4.572864px;}
.ws7e{word-spacing:-4.064741px;}
.ws6c{word-spacing:-3.877740px;}
.ws183{word-spacing:-3.873485px;}
.ws99{word-spacing:-3.765863px;}
.ws9a{word-spacing:-3.706087px;}
.ws160{word-spacing:-3.586536px;}
.ws6a{word-spacing:-3.565116px;}
.ws72{word-spacing:-3.498984px;}
.ws6b{word-spacing:-3.486960px;}
.ws71{word-spacing:-3.420828px;}
.ws1a0{word-spacing:-3.389299px;}
.ws159{word-spacing:-3.347434px;}
.ws132{word-spacing:-3.335501px;}
.ws9e{word-spacing:-3.281702px;}
.ws161{word-spacing:-3.168107px;}
.ws52{word-spacing:-3.144276px;}
.ws51{word-spacing:-3.126240px;}
.wse5{word-spacing:-2.988780px;}
.wsed{word-spacing:-2.869229px;}
.ws176{word-spacing:-2.809453px;}
.ws10a{word-spacing:-2.783556px;}
.wsfb{word-spacing:-2.765520px;}
.ws135{word-spacing:-2.759400px;}
.ws175{word-spacing:-2.749678px;}
.wsd6{word-spacing:-2.748600px;}
.wscd{word-spacing:-2.732400px;}
.ws136{word-spacing:-2.716200px;}
.ws134{word-spacing:-2.710800px;}
.wse4{word-spacing:-2.689902px;}
.wsd5{word-spacing:-2.673000px;}
.wse3{word-spacing:-2.630126px;}
.ws1a2{word-spacing:-2.582323px;}
.ws169{word-spacing:-2.570351px;}
.ws16e{word-spacing:-2.510575px;}
.ws10b{word-spacing:-2.482956px;}
.wsa1{word-spacing:-2.474726px;}
.wsf9{word-spacing:-2.470932px;}
.wsc0{word-spacing:-2.446884px;}
.wsbf{word-spacing:-2.422836px;}
.ws85{word-spacing:-2.331248px;}
.ws22{word-spacing:-2.271473px;}
.wsfa{word-spacing:-2.236464px;}
.ws21{word-spacing:-2.211697px;}
.wsb5{word-spacing:-2.098188px;}
.ws20{word-spacing:-2.092146px;}
.wsb4{word-spacing:-2.062116px;}
.ws60{word-spacing:-2.056104px;}
.ws65{word-spacing:-2.038068px;}
.wse6{word-spacing:-2.032370px;}
.ws61{word-spacing:-2.032056px;}
.ws66{word-spacing:-2.020032px;}
.ws1a8{word-spacing:-1.936742px;}
.ws7f{word-spacing:-1.912819px;}
.ws62{word-spacing:-1.911816px;}
.ws5{word-spacing:-1.908367px;}
.wsea{word-spacing:-1.793268px;}
.wsa2{word-spacing:-1.673717px;}
.ws184{word-spacing:-1.667750px;}
.ws185{word-spacing:-1.659178px;}
.wsa3{word-spacing:-1.613941px;}
.ws1b2{word-spacing:-1.560154px;}
.wsa{word-spacing:-1.554166px;}
.ws98{word-spacing:-1.434614px;}
.wsaf{word-spacing:-1.400796px;}
.wsb8{word-spacing:-1.388772px;}
.ws15d{word-spacing:-1.374839px;}
.ws19d{word-spacing:-1.348858px;}
.ws19b{word-spacing:-1.344960px;}
.wsae{word-spacing:-1.328652px;}
.wsd1{word-spacing:-1.323000px;}
.ws4{word-spacing:-1.322630px;}
.ws150{word-spacing:-1.315063px;}
.wsd2{word-spacing:-1.296000px;}
.ws199{word-spacing:-1.291162px;}
.wsd0{word-spacing:-1.279800px;}
.wsf1{word-spacing:-1.195512px;}
.ws1ae{word-spacing:-1.183565px;}
.ws26{word-spacing:-1.135736px;}
.ws19a{word-spacing:-1.129766px;}
.ws1a3{word-spacing:-1.075968px;}
.wsa4{word-spacing:-1.075961px;}
.ws95{word-spacing:-1.016185px;}
.ws15f{word-spacing:-1.014696px;}
.ws128{word-spacing:-0.991980px;}
.wsbb{word-spacing:-0.973944px;}
.ws3c{word-spacing:-0.956410px;}
.ws75{word-spacing:-0.943884px;}
.ws3b{word-spacing:-0.935853px;}
.wsd9{word-spacing:-0.934200px;}
.wsbc{word-spacing:-0.901800px;}
.ws96{word-spacing:-0.896634px;}
.ws16a{word-spacing:-0.836858px;}
.ws166{word-spacing:-0.717307px;}
.ws76{word-spacing:-0.679356px;}
.wsfd{word-spacing:-0.673344px;}
.ws105{word-spacing:-0.655308px;}
.ws172{word-spacing:-0.597756px;}
.ws15c{word-spacing:-0.537980px;}
.ws8b{word-spacing:-0.478205px;}
.ws17f{word-spacing:-0.430387px;}
.ws17a{word-spacing:-0.418429px;}
.ws2f{word-spacing:-0.358654px;}
.wscc{word-spacing:-0.300600px;}
.ws2d{word-spacing:-0.298878px;}
.ws141{word-spacing:-0.276552px;}
.ws48{word-spacing:-0.268128px;}
.wsfe{word-spacing:-0.240480px;}
.ws23{word-spacing:-0.239102px;}
.wsad{word-spacing:-0.228456px;}
.ws17b{word-spacing:-0.215194px;}
.wsc{word-spacing:-0.179327px;}
.wsa0{word-spacing:-0.161395px;}
.ws143{word-spacing:-0.126252px;}
.ws8{word-spacing:-0.119551px;}
.ws17c{word-spacing:-0.107597px;}
.ws142{word-spacing:-0.096192px;}
.ws47{word-spacing:-0.081396px;}
.ws7{word-spacing:-0.059776px;}
.ws3{word-spacing:-0.053798px;}
.ws88{word-spacing:-0.045430px;}
.ws1b4{word-spacing:-0.007114px;}
.ws8e{word-spacing:-0.004531px;}
.ws3a{word-spacing:-0.003598px;}
.ws193{word-spacing:-0.002602px;}
.ws87{word-spacing:-0.002052px;}
.ws89{word-spacing:-0.001829px;}
.wse0{word-spacing:-0.001423px;}
.ws0{word-spacing:0.000000px;}
.ws8a{word-spacing:0.000842px;}
.ws195{word-spacing:0.001046px;}
.ws19{word-spacing:0.002444px;}
.ws156{word-spacing:0.005700px;}
.ws140{word-spacing:0.012024px;}
.ws38{word-spacing:0.012271px;}
.ws59{word-spacing:0.018036px;}
.ws102{word-spacing:0.024048px;}
.ws10c{word-spacing:0.048096px;}
.ws45{word-spacing:0.053798px;}
.ws11{word-spacing:0.059776px;}
.wsda{word-spacing:0.078156px;}
.ws14e{word-spacing:0.084168px;}
.ws58{word-spacing:0.090180px;}
.ws67{word-spacing:0.096192px;}
.wsf7{word-spacing:0.102600px;}
.ws189{word-spacing:0.107597px;}
.ws101{word-spacing:0.108216px;}
.ws68{word-spacing:0.114228px;}
.ws12{word-spacing:0.119551px;}
.wsdb{word-spacing:0.120240px;}
.ws14d{word-spacing:0.126252px;}
.ws12e{word-spacing:0.138276px;}
.wsf6{word-spacing:0.140400px;}
.ws4f{word-spacing:0.151200px;}
.ws9c{word-spacing:0.161395px;}
.wsd{word-spacing:0.179327px;}
.ws133{word-spacing:0.215194px;}
.wsfc{word-spacing:0.216432px;}
.ws152{word-spacing:0.218126px;}
.ws124{word-spacing:0.234468px;}
.ws6{word-spacing:0.239102px;}
.ws131{word-spacing:0.268992px;}
.ws46{word-spacing:0.298878px;}
.ws18c{word-spacing:0.322790px;}
.ws18{word-spacing:0.358654px;}
.ws109{word-spacing:0.396792px;}
.ws27{word-spacing:0.418429px;}
.ws39{word-spacing:0.426572px;}
.ws13c{word-spacing:0.462924px;}
.wsef{word-spacing:0.478205px;}
.ws186{word-spacing:0.484186px;}
.ws11a{word-spacing:0.523044px;}
.wsdf{word-spacing:0.537980px;}
.ws25{word-spacing:0.597756px;}
.ws12d{word-spacing:0.619236px;}
.ws16{word-spacing:0.717307px;}
.ws12c{word-spacing:0.739476px;}
.ws148{word-spacing:0.763524px;}
.ws173{word-spacing:0.777083px;}
.wsb{word-spacing:0.836858px;}
.ws147{word-spacing:0.841680px;}
.ws15e{word-spacing:0.896634px;}
.ws32{word-spacing:0.956410px;}
.ws2b{word-spacing:1.016185px;}
.ws17d{word-spacing:1.022170px;}
.ws151{word-spacing:1.075961px;}
.ws1f{word-spacing:1.135736px;}
.ws164{word-spacing:1.137794px;}
.wsa8{word-spacing:1.195512px;}
.wsff{word-spacing:1.196388px;}
.wsf5{word-spacing:1.198800px;}
.ws107{word-spacing:1.202400px;}
.wsf4{word-spacing:1.204200px;}
.ws7a{word-spacing:1.208412px;}
.wsf3{word-spacing:1.225800px;}
.ws3d{word-spacing:1.255288px;}
.ws108{word-spacing:1.268532px;}
.ws100{word-spacing:1.292580px;}
.ws33{word-spacing:1.315063px;}
.ws64{word-spacing:1.316628px;}
.ws18d{word-spacing:1.344960px;}
.wsf2{word-spacing:1.374839px;}
.ws17e{word-spacing:1.398758px;}
.ws2e{word-spacing:1.434614px;}
.ws145{word-spacing:1.448892px;}
.ws1b5{word-spacing:1.452557px;}
.ws50{word-spacing:1.551096px;}
.wse2{word-spacing:1.554166px;}
.ws157{word-spacing:1.613941px;}
.ws63{word-spacing:1.623240px;}
.ws146{word-spacing:1.629252px;}
.ws2c{word-spacing:1.673717px;}
.ws16c{word-spacing:1.705393px;}
.ws16d{word-spacing:1.733492px;}
.ws44{word-spacing:1.775347px;}
.wsf{word-spacing:1.793268px;}
.wse8{word-spacing:1.853044px;}
.ws14a{word-spacing:1.869732px;}
.ws53{word-spacing:1.905804px;}
.wsa7{word-spacing:1.912819px;}
.ws54{word-spacing:1.917828px;}
.ws1a5{word-spacing:1.936742px;}
.ws81{word-spacing:1.972595px;}
.wseb{word-spacing:2.032370px;}
.ws149{word-spacing:2.068128px;}
.ws8d{word-spacing:2.092146px;}
.ws43{word-spacing:2.098138px;}
.ws40{word-spacing:2.151922px;}
.ws10f{word-spacing:2.188368px;}
.wsc8{word-spacing:2.194380px;}
.ws37{word-spacing:2.211697px;}
.ws90{word-spacing:2.271473px;}
.ws194{word-spacing:2.313331px;}
.ws110{word-spacing:2.314620px;}
.ws28{word-spacing:2.331248px;}
.wsc3{word-spacing:2.380752px;}
.wsc2{word-spacing:2.386764px;}
.ws179{word-spacing:2.391024px;}
.wsc1{word-spacing:2.404800px;}
.ws17{word-spacing:2.450800px;}
.ws3f{word-spacing:2.510575px;}
.ws119{word-spacing:2.567124px;}
.wsec{word-spacing:2.570351px;}
.ws144{word-spacing:2.573136px;}
.ws1af{word-spacing:2.582323px;}
.wsb7{word-spacing:2.591172px;}
.ws13b{word-spacing:2.597184px;}
.ws80{word-spacing:2.630126px;}
.ws1b1{word-spacing:2.636122px;}
.wsb6{word-spacing:2.645280px;}
.ws162{word-spacing:2.689902px;}
.ws3e{word-spacing:2.749678px;}
.wsc9{word-spacing:2.759508px;}
.ws12f{word-spacing:2.809453px;}
.wse7{word-spacing:2.869229px;}
.ws91{word-spacing:2.929004px;}
.ws34{word-spacing:3.048556px;}
.ws1a6{word-spacing:3.066509px;}
.ws35{word-spacing:3.108331px;}
.ws1a7{word-spacing:3.120307px;}
.wse{word-spacing:3.168107px;}
.wsa5{word-spacing:3.287658px;}
.ws82{word-spacing:3.347434px;}
.ws198{word-spacing:3.443098px;}
.wsd4{word-spacing:3.747600px;}
.ws171{word-spacing:3.765863px;}
.wsd3{word-spacing:3.780000px;}
.ws93{word-spacing:3.825638px;}
.ws94{word-spacing:3.885414px;}
.ws36{word-spacing:3.945190px;}
.wsee{word-spacing:4.004965px;}
.ws19c{word-spacing:4.034880px;}
.ws192{word-spacing:4.196275px;}
.ws153{word-spacing:4.244068px;}
.ws130{word-spacing:4.363619px;}
.ws1a4{word-spacing:4.411469px;}
.ws16f{word-spacing:4.423394px;}
.ws116{word-spacing:4.442868px;}
.ws196{word-spacing:4.465267px;}
.ws4c{word-spacing:4.465800px;}
.ws4e{word-spacing:4.482000px;}
.ws163{word-spacing:4.483170px;}
.ws4d{word-spacing:4.514400px;}
.ws1e{word-spacing:4.602721px;}
.ws10{word-spacing:4.662497px;}
.ws155{word-spacing:4.782048px;}
.wsac{word-spacing:4.791564px;}
.wsab{word-spacing:4.809600px;}
.wsaa{word-spacing:4.827636px;}
.ws55{word-spacing:5.152284px;}
.ws56{word-spacing:5.266512px;}
.ws170{word-spacing:5.320028px;}
.ws1aa{word-spacing:5.326042px;}
.ws1a9{word-spacing:5.374272px;}
.ws191{word-spacing:5.374531px;}
.ws1b0{word-spacing:5.376518px;}
.ws18f{word-spacing:5.377066px;}
.ws190{word-spacing:5.377094px;}
.ws187{word-spacing:5.378650px;}
.ws1a1{word-spacing:5.378688px;}
.ws188{word-spacing:5.379235px;}
.ws1ac{word-spacing:5.379754px;}
.ws181{word-spacing:5.379840px;}
.ws1b3{word-spacing:5.382586px;}
.ws168{word-spacing:5.439580px;}
.ws180{word-spacing:5.487437px;}
.ws122{word-spacing:5.500980px;}
.ws123{word-spacing:5.573124px;}
.ws18a{word-spacing:5.595034px;}
.ws15a{word-spacing:5.618906px;}
.ws118{word-spacing:5.627232px;}
.ws1ab{word-spacing:5.648832px;}
.ws117{word-spacing:5.651280px;}
.ws18e{word-spacing:5.702630px;}
.ws92{word-spacing:5.738458px;}
.wsdc{word-spacing:5.798233px;}
.ws4b{word-spacing:5.907600px;}
.ws49{word-spacing:5.929200px;}
.ws14{word-spacing:5.971475px;}
.ws15{word-spacing:5.977560px;}
.wse9{word-spacing:5.977615px;}
.ws84{word-spacing:6.037336px;}
.ws83{word-spacing:6.097111px;}
.ws4a{word-spacing:6.150600px;}
.ws8c{word-spacing:6.156887px;}
.ws154{word-spacing:6.216662px;}
.ws1d{word-spacing:6.395989px;}
.wse1{word-spacing:6.500957px;}
.ws174{word-spacing:6.575316px;}
.ws19f{word-spacing:6.671002px;}
.ws24{word-spacing:6.694867px;}
.wsa9{word-spacing:6.754643px;}
.ws106{word-spacing:6.901776px;}
.ws10d{word-spacing:6.931836px;}
.wscf{word-spacing:6.949800px;}
.wsb1{word-spacing:6.955884px;}
.wsb0{word-spacing:6.961896px;}
.wsc7{word-spacing:6.967908px;}
.wsce{word-spacing:7.025400px;}
.wsc6{word-spacing:7.040052px;}
.ws31{word-spacing:7.053521px;}
.ws10e{word-spacing:7.058088px;}
.wsa6{word-spacing:7.232848px;}
.ws18b{word-spacing:7.424179px;}
.ws137{word-spacing:8.089200px;}
.ws138{word-spacing:8.121600px;}
.ws158{word-spacing:8.368584px;}
.ws12a{word-spacing:8.386740px;}
.ws12b{word-spacing:8.488944px;}
.ws177{word-spacing:8.607686px;}
.ws5c{word-spacing:8.693352px;}
.wsd8{word-spacing:8.812800px;}
.wsd7{word-spacing:8.861400px;}
.ws8f{word-spacing:8.996957px;}
.ws178{word-spacing:9.026116px;}
.ws129{word-spacing:9.048060px;}
.ws111{word-spacing:9.060084px;}
.ws5d{word-spacing:9.132228px;}
.ws13a{word-spacing:9.142200px;}
.ws167{word-spacing:9.145667px;}
.ws139{word-spacing:9.180000px;}
.ws112{word-spacing:9.234432px;}
.wsf0{word-spacing:9.564096px;}
.ws1ad{word-spacing:9.629914px;}
.wsdd{word-spacing:9.683647px;}
.wsde{word-spacing:9.743423px;}
.wsba{word-spacing:9.751464px;}
.wsb9{word-spacing:9.775512px;}
.ws14f{word-spacing:9.803198px;}
.ws29{word-spacing:10.221628px;}
.wsca{word-spacing:10.514988px;}
.wscb{word-spacing:10.539036px;}
.ws13e{word-spacing:10.569096px;}
.ws5b{word-spacing:10.593144px;}
.ws13f{word-spacing:10.605168px;}
.ws13d{word-spacing:10.623204px;}
.ws16b{word-spacing:10.699832px;}
.ws70{word-spacing:10.899756px;}
.ws5a{word-spacing:10.905768px;}
.ws6f{word-spacing:10.923804px;}
.ws97{word-spacing:11.536691px;}
.ws115{word-spacing:11.579112px;}
.ws11d{word-spacing:11.609172px;}
.ws11b{word-spacing:11.633220px;}
.ws11c{word-spacing:11.663280px;}
.ws7c{word-spacing:12.709368px;}
.ws7b{word-spacing:12.799548px;}
.ws7d{word-spacing:12.883716px;}
.ws19e{word-spacing:12.911616px;}
.ws121{word-spacing:13.034016px;}
.ws120{word-spacing:13.082112px;}
.ws77{word-spacing:14.140224px;}
.ws78{word-spacing:14.146236px;}
.ws79{word-spacing:14.212368px;}
.ws197{word-spacing:14.471770px;}
.ws113{word-spacing:14.855652px;}
.ws126{word-spacing:14.885712px;}
.ws114{word-spacing:14.921784px;}
.ws127{word-spacing:15.030000px;}
.ws125{word-spacing:15.180300px;}
.wsb3{word-spacing:15.192324px;}
.ws11f{word-spacing:15.204348px;}
.ws11e{word-spacing:15.216372px;}
.wsb2{word-spacing:15.246432px;}
.ws57{word-spacing:15.541020px;}
.ws165{word-spacing:16.611000px;}
.ws103{word-spacing:17.031996px;}
.ws104{word-spacing:17.050032px;}
.wsf8{word-spacing:17.663256px;}
.wsbd{word-spacing:18.114156px;}
.ws73{word-spacing:18.120168px;}
.wsbe{word-spacing:18.126180px;}
.ws74{word-spacing:18.324576px;}
.ws30{word-spacing:18.410885px;}
.ws5f{word-spacing:21.643200px;}
.ws5e{word-spacing:21.709332px;}
.ws6e{word-spacing:23.885676px;}
.ws6d{word-spacing:23.909724px;}
.wsc4{word-spacing:24.198300px;}
.wsc5{word-spacing:24.516936px;}
.ws14b{word-spacing:26.717328px;}
.ws14c{word-spacing:26.843580px;}
.ws69{word-spacing:30.643164px;}
.ws1b{word-spacing:968.749715px;}
._1b{margin-left:-8.679326px;}
._4{margin-left:-6.939994px;}
._3{margin-left:-4.949453px;}
._1{margin-left:-3.042466px;}
._2{margin-left:-1.936742px;}
._7{width:1.091170px;}
._12{width:11.088155px;}
._17{width:12.720274px;}
._f{width:13.891862px;}
._13{width:15.577415px;}
._9{width:16.785014px;}
._5{width:17.861069px;}
._6{width:19.797811px;}
._8{width:21.662690px;}
._10{width:23.372260px;}
._e{width:25.045976px;}
._19{width:26.746668px;}
._b{width:28.632512px;}
._a{width:30.622967px;}
._1f{width:31.800619px;}
._15{width:32.960279px;}
._1e{width:34.149860px;}
._d{width:35.207828px;}
._22{width:36.368114px;}
._14{width:38.878063px;}
._1d{width:40.097498px;}
._11{width:41.980304px;}
._20{width:47.282500px;}
._1c{width:48.836665px;}
._18{width:50.510382px;}
._0{width:54.368762px;}
._21{width:61.868160px;}
._16{width:1676.485178px;}
._1a{width:2061.543300px;}
._c{width:2085.453300px;}
.fc4{color:transparent;}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(8,117,183);}
.fc0{color:rgb(103,50,33);}
.fsd{font-size:33.120000px;}
.fs9{font-size:34.526400px;}
.fsf{font-size:36.000000px;}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fsa{font-size:47.880000px;}
.fs5{font-size:53.798400px;}
.fsb{font-size:54.000000px;}
.fs1{font-size:59.775600px;}
.fse{font-size:60.120000px;}
.fsc{font-size:72.000000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y118{bottom:-859.214550px;}
.y13f{bottom:-788.380896px;}
.y13e{bottom:-768.130977px;}
.y13d{bottom:-747.881058px;}
.y13c{bottom:-727.631139px;}
.y13b{bottom:-707.381220px;}
.y13a{bottom:-687.221481px;}
.y139{bottom:-666.971562px;}
.y6d{bottom:-647.027550px;}
.y138{bottom:-646.721643px;}
.y137{bottom:-626.471724px;}
.y136{bottom:-606.221805px;}
.y8c{bottom:-595.636542px;}
.y135{bottom:-585.971886px;}
.y8b{bottom:-575.476803px;}
.y134{bottom:-565.721967px;}
.y8a{bottom:-555.226884px;}
.y133{bottom:-545.562228px;}
.y89{bottom:-534.976965px;}
.y132{bottom:-525.312309px;}
.y88{bottom:-514.727046px;}
.y131{bottom:-505.062390px;}
.y87{bottom:-494.477127px;}
.y130{bottom:-484.812471px;}
.y86{bottom:-474.227208px;}
.y12f{bottom:-464.562552px;}
.y85{bottom:-453.977289px;}
.y16e{bottom:-445.345050px;}
.y12e{bottom:-444.312633px;}
.y84{bottom:-433.817550px;}
.y83{bottom:-433.816464px;}
.y12d{bottom:-424.152894px;}
.y82{bottom:-413.566545px;}
.y12c{bottom:-403.902975px;}
.y183{bottom:-396.924555px;}
.y81{bottom:-384.316662px;}
.y12b{bottom:-383.653056px;}
.y12a{bottom:-363.403137px;}
.y182{bottom:-358.764888px;}
.y80{bottom:-346.066815px;}
.y129{bottom:-343.153218px;}
.y181{bottom:-338.514969px;}
.y7f{bottom:-325.816896px;}
.y128{bottom:-322.903299px;}
.y180{bottom:-318.265050px;}
.y17f{bottom:-318.264546px;}
.y7e{bottom:-305.566977px;}
.y127{bottom:-302.653380px;}
.y17e{bottom:-298.014627px;}
.y7d{bottom:-285.407238px;}
.y126{bottom:-282.493641px;}
.y17d{bottom:-277.764708px;}
.y7c{bottom:-265.157319px;}
.y125{bottom:-262.243722px;}
.y17c{bottom:-257.604969px;}
.y7b{bottom:-244.907400px;}
.y7a{bottom:-244.906803px;}
.y124{bottom:-241.993803px;}
.y17b{bottom:-237.355050px;}
.y17a{bottom:-237.354645px;}
.yaf{bottom:-227.767050px;}
.y79{bottom:-224.656884px;}
.y123{bottom:-221.743884px;}
.y179{bottom:-217.104726px;}
.y78{bottom:-204.406965px;}
.ycf{bottom:-203.646900px;}
.y122{bottom:-201.493965px;}
.y178{bottom:-196.854807px;}
.y77{bottom:-184.157046px;}
.y121{bottom:-181.244046px;}
.y177{bottom:-176.604888px;}
.yce{bottom:-165.847950px;}
.y76{bottom:-163.907127px;}
.y120{bottom:-160.994127px;}
.y176{bottom:-156.354969px;}
.ycd{bottom:-146.407950px;}
.y75{bottom:-143.747388px;}
.y11f{bottom:-140.834388px;}
.y175{bottom:-136.105050px;}
.ycc{bottom:-126.877500px;}
.y74{bottom:-123.497469px;}
.y11e{bottom:-120.584469px;}
.yca{bottom:-107.348400px;}
.ycb{bottom:-107.347050px;}
.y73{bottom:-103.247550px;}
.y11d{bottom:-100.334550px;}
.y174{bottom:-98.394150px;}
.yc9{bottom:-87.817950px;}
.y173{bottom:-78.863700px;}
.yc8{bottom:-68.287500px;}
.y72{bottom:-65.447100px;}
.y11b{bottom:-62.535000px;}
.y11c{bottom:-62.534550px;}
.y172{bottom:-59.244150px;}
.yc7{bottom:-48.757050px;}
.y70{bottom:-45.827550px;}
.y11a{bottom:-43.004550px;}
.y71{bottom:-42.047550px;}
.y171{bottom:-39.894600px;}
.yc6{bottom:-29.317050px;}
.y6f{bottom:-26.387550px;}
.y170{bottom:-20.275050px;}
.y119{bottom:-10.154550px;}
.y0{bottom:0.000000px;}
.yc5{bottom:1.642950px;}
.y6e{bottom:2.052450px;}
.y18{bottom:3.425340px;}
.y16f{bottom:7.804950px;}
.y17{bottom:14.151273px;}
.y2{bottom:15.760437px;}
.y31{bottom:63.780000px;}
.ye7{bottom:107.512500px;}
.ye6{bottom:109.753500px;}
.y97{bottom:111.466500px;}
.y30{bottom:112.627500px;}
.y1ab{bottom:113.349000px;}
.y65{bottom:116.607000px;}
.y98{bottom:116.892000px;}
.y1d4{bottom:117.834000px;}
.yac{bottom:119.863500px;}
.y168{bottom:122.793000px;}
.ye5{bottom:127.221000px;}
.ye4{bottom:130.018500px;}
.y96{bottom:131.730000px;}
.y2f{bottom:132.892500px;}
.y1aa{bottom:133.612500px;}
.y18f{bottom:134.073000px;}
.y64{bottom:136.870500px;}
.y1d3{bottom:137.200500px;}
.yab{bottom:140.128500px;}
.y167{bottom:143.058000px;}
.y207{bottom:147.691500px;}
.ye3{bottom:150.282000px;}
.y95{bottom:151.995000px;}
.y2e{bottom:153.156000px;}
.y1a9{bottom:153.877500px;}
.y1d2{bottom:156.568500px;}
.y63{bottom:157.134000px;}
.yaa{bottom:160.392000px;}
.y166{bottom:163.321500px;}
.y18e{bottom:166.101000px;}
.y206{bottom:167.059500px;}
.ye2{bottom:170.547000px;}
.y93{bottom:172.258500px;}
.y2d{bottom:173.419500px;}
.y1d1{bottom:175.935000px;}
.y62{bottom:177.399000px;}
.y94{bottom:177.684000px;}
.y196{bottom:177.859500px;}
.ya9{bottom:180.657000px;}
.y1a8{bottom:183.108000px;}
.y165{bottom:183.586500px;}
.y205{bottom:186.427500px;}
.ye1{bottom:190.810500px;}
.y92{bottom:192.523500px;}
.y187{bottom:192.945000px;}
.y2c{bottom:193.684500px;}
.y1d0{bottom:195.303000px;}
.y115{bottom:197.662500px;}
.ya8{bottom:198.123000px;}
.ya7{bottom:200.920500px;}
.y164{bottom:203.850000px;}
.y204{bottom:205.794000px;}
.y61{bottom:206.629500px;}
.ye0{bottom:211.074000px;}
.y186{bottom:212.178000px;}
.y91{bottom:212.787000px;}
.y1cf{bottom:214.671000px;}
.y114{bottom:217.927500px;}
.ya6{bottom:221.184000px;}
.y2b{bottom:222.915000px;}
.y163{bottom:224.113500px;}
.y203{bottom:225.162000px;}
.ydf{bottom:231.339000px;}
.y185{bottom:231.409500px;}
.y1ce{bottom:234.037500px;}
.y113{bottom:238.191000px;}
.y60{bottom:241.449000px;}
.y162{bottom:244.378500px;}
.y202{bottom:244.528500px;}
.y117{bottom:247.605450px;}
.y90{bottom:247.788000px;}
.ya5{bottom:250.414500px;}
.y184{bottom:250.642500px;}
.yde{bottom:251.602500px;}
.y1cd{bottom:253.405500px;}
.y1a7{bottom:258.454500px;}
.y5f{bottom:261.712500px;}
.y201{bottom:263.896500px;}
.y161{bottom:264.642000px;}
.y8e{bottom:267.021000px;}
.y112{bottom:267.421500px;}
.ydd{bottom:271.867500px;}
.y8f{bottom:271.902000px;}
.y1cc{bottom:272.772000px;}
.y16c{bottom:273.072000px;}
.y1a6{bottom:278.719500px;}
.y5e{bottom:281.977500px;}
.y200{bottom:283.264500px;}
.y160{bottom:284.907000px;}
.ya4{bottom:285.234000px;}
.y8d{bottom:286.252500px;}
.ydc{bottom:292.131000px;}
.y1cb{bottom:292.140000px;}
.y1a5{bottom:298.983000px;}
.y2a{bottom:299.331000px;}
.y111{bottom:302.241000px;}
.y1ff{bottom:302.631000px;}
.y15f{bottom:305.170500px;}
.ya3{bottom:305.499000px;}
.y6b{bottom:308.682000px;}
.y5d{bottom:311.208000px;}
.y1ca{bottom:311.508000px;}
.ydb{bottom:312.394500px;}
.y1a4{bottom:319.248000px;}
.y1fe{bottom:321.999000px;}
.y110{bottom:322.504500px;}
.y15e{bottom:325.434000px;}
.ya2{bottom:325.762500px;}
.y1c9{bottom:330.874500px;}
.yda{bottom:332.659500px;}
.y29{bottom:337.527000px;}
.y1a3{bottom:339.511500px;}
.y1fd{bottom:341.367000px;}
.y10f{bottom:342.769500px;}
.y15c{bottom:345.699000px;}
.y5c{bottom:346.027500px;}
.y1c8{bottom:350.242500px;}
.y15d{bottom:351.123000px;}
.yd9{bottom:352.923000px;}
.y28{bottom:357.792000px;}
.y1a2{bottom:359.775000px;}
.y1fc{bottom:360.733500px;}
.y10e{bottom:363.033000px;}
.y15b{bottom:365.962500px;}
.y5b{bottom:366.291000px;}
.y1c7{bottom:369.609000px;}
.y27{bottom:378.055500px;}
.y1a1{bottom:380.040000px;}
.y1fb{bottom:380.101500px;}
.y10d{bottom:383.298000px;}
.ya1{bottom:383.758500px;}
.y15a{bottom:386.227500px;}
.y59{bottom:386.554500px;}
.yd8{bottom:387.924000px;}
.y1c6{bottom:388.977000px;}
.y5a{bottom:391.980000px;}
.y26{bottom:398.319000px;}
.y1fa{bottom:399.468000px;}
.y1a0{bottom:400.303500px;}
.y10c{bottom:403.561500px;}
.y58{bottom:404.022000px;}
.y159{bottom:406.491000px;}
.y57{bottom:406.819500px;}
.yd7{bottom:407.157000px;}
.y1c5{bottom:408.345000px;}
.y19f{bottom:417.771000px;}
.y24{bottom:418.584000px;}
.y1f9{bottom:418.836000px;}
.y19e{bottom:420.568500px;}
.yd6{bottom:423.702000px;}
.y10b{bottom:423.825000px;}
.y25{bottom:424.008000px;}
.y56{bottom:424.285500px;}
.yd5{bottom:426.390000px;}
.y158{bottom:426.754500px;}
.y55{bottom:427.083000px;}
.y1c4{bottom:427.711500px;}
.y1f8{bottom:438.204000px;}
.y23{bottom:438.847500px;}
.y19d{bottom:440.832000px;}
.y10a{bottom:444.090000px;}
.yd4{bottom:445.621500px;}
.y157{bottom:447.019500px;}
.y1c3{bottom:447.079500px;}
.y54{bottom:447.348000px;}
.y18d{bottom:449.514000px;}
.y1f7{bottom:457.570500px;}
.y22{bottom:459.112500px;}
.y6c{bottom:459.792450px;}
.y195{bottom:461.556000px;}
.y109{bottom:464.353500px;}
.yd3{bottom:464.854500px;}
.y1c2{bottom:466.446000px;}
.y156{bottom:467.283000px;}
.y53{bottom:467.611500px;}
.y19c{bottom:470.062500px;}
.y1f6{bottom:476.938500px;}
.y21{bottom:479.376000px;}
.yd2{bottom:481.401000px;}
.yd1{bottom:484.087500px;}
.y108{bottom:484.618500px;}
.y1c1{bottom:485.814000px;}
.y155{bottom:487.548000px;}
.y52{bottom:487.875000px;}
.y1f5{bottom:496.305000px;}
.yc4{bottom:497.633292px;}
.y20{bottom:499.639500px;}
.yd0{bottom:503.320500px;}
.y107{bottom:504.882000px;}
.y1c0{bottom:505.182000px;}
.y154{bottom:507.811500px;}
.y51{bottom:508.140000px;}
.y1f4{bottom:515.673000px;}
.yc3{bottom:517.793031px;}
.y1f{bottom:519.904500px;}
.y1bf{bottom:524.548500px;}
.y106{bottom:525.145500px;}
.yad{bottom:525.750000px;}
.y153{bottom:528.075000px;}
.y50{bottom:528.403500px;}
.y1f3{bottom:535.041000px;}
.yc2{bottom:538.042950px;}
.yc1{bottom:538.043031px;}
.y1e{bottom:540.168000px;}
.y1be{bottom:543.916500px;}
.y104{bottom:545.410500px;}
.y151{bottom:548.340000px;}
.y4f{bottom:548.667000px;}
.y105{bottom:550.834500px;}
.y152{bottom:553.764000px;}
.y1f2{bottom:554.407500px;}
.yc0{bottom:558.292950px;}
.ybf{bottom:558.293031px;}
.y1d{bottom:560.433000px;}
.y194{bottom:562.876500px;}
.y1bd{bottom:563.283000px;}
.y103{bottom:565.674000px;}
.y150{bottom:568.603500px;}
.y4e{bottom:568.932000px;}
.y1f1{bottom:573.775500px;}
.ybe{bottom:578.542950px;}
.ybd{bottom:578.544363px;}
.y1c{bottom:580.696500px;}
.y1bc{bottom:582.651000px;}
.y193{bottom:583.141500px;}
.y102{bottom:585.939000px;}
.y9f{bottom:586.399500px;}
.y14f{bottom:588.868500px;}
.y4d{bottom:589.195500px;}
.y19b{bottom:591.363000px;}
.y1f0{bottom:593.142000px;}
.ya0{bottom:594.621000px;}
.ybc{bottom:598.794282px;}
.y1b{bottom:600.960000px;}
.y1bb{bottom:602.019000px;}
.y19a{bottom:603.405000px;}
.y101{bottom:606.202500px;}
.y14e{bottom:609.132000px;}
.y4c{bottom:609.460500px;}
.y1ef{bottom:612.510000px;}
.y9e{bottom:614.884500px;}
.ybb{bottom:619.044201px;}
.y1a{bottom:621.225000px;}
.y1ba{bottom:621.385500px;}
.y100{bottom:626.466000px;}
.y14d{bottom:629.395500px;}
.y4b{bottom:629.724000px;}
.y1ee{bottom:631.878000px;}
.y192{bottom:635.433000px;}
.yba{bottom:639.294120px;}
.y1b9{bottom:640.753500px;}
.y19{bottom:641.488500px;}
.yff{bottom:646.731000px;}
.y14c{bottom:649.660500px;}
.y4a{bottom:649.987500px;}
.y1ed{bottom:651.244500px;}
.yb9{bottom:659.453859px;}
.y1b8{bottom:660.120000px;}
.y1b7{bottom:660.121500px;}
.y16d{bottom:661.474950px;}
.yfe{bottom:666.994500px;}
.y14b{bottom:669.924000px;}
.y49{bottom:670.252500px;}
.y1ec{bottom:670.612500px;}
.y16{bottom:676.921464px;}
.y15{bottom:677.688000px;}
.yb8{bottom:679.703778px;}
.yfd{bottom:687.258000px;}
.y1b6{bottom:688.455000px;}
.y1eb{bottom:689.979000px;}
.y14a{bottom:690.189000px;}
.y48{bottom:690.516000px;}
.y191{bottom:695.941500px;}
.yb7{bottom:699.953697px;}
.yfc{bottom:707.523000px;}
.y1ea{bottom:709.347000px;}
.y149{bottom:710.452500px;}
.y47{bottom:710.781000px;}
.y14{bottom:716.694000px;}
.yb6{bottom:720.203616px;}
.y199{bottom:724.990500px;}
.yfb{bottom:727.786500px;}
.y1b5{bottom:727.906500px;}
.y1e9{bottom:728.715000px;}
.y148{bottom:730.716000px;}
.y46{bottom:731.044500px;}
.y13{bottom:739.732500px;}
.yb5{bottom:740.453535px;}
.yfa{bottom:748.051500px;}
.y1e8{bottom:748.081500px;}
.y147{bottom:750.981000px;}
.y45{bottom:751.308000px;}
.y1b4{bottom:752.071500px;}
.y12{bottom:753.007500px;}
.yb4{bottom:760.703454px;}
.y198{bottom:765.517500px;}
.y1b3{bottom:767.269500px;}
.y1e7{bottom:767.449500px;}
.yf8{bottom:768.315000px;}
.y69{bottom:768.775500px;}
.y11{bottom:771.165000px;}
.y146{bottom:771.244500px;}
.y44{bottom:771.573000px;}
.yf9{bottom:773.740500px;}
.y6a{bottom:776.997000px;}
.yb3{bottom:780.953373px;}
.y1b2{bottom:782.467500px;}
.y1e6{bottom:786.816000px;}
.yf7{bottom:788.578500px;}
.y145{bottom:791.509500px;}
.y43{bottom:791.836500px;}
.y18c{bottom:794.004000px;}
.y10{bottom:794.203500px;}
.y9d{bottom:797.262000px;}
.yb2{bottom:801.113112px;}
.y1e5{bottom:806.184000px;}
.y1b1{bottom:806.631000px;}
.yf6{bottom:808.843500px;}
.y9c{bottom:809.859000px;}
.y144{bottom:811.773000px;}
.y42{bottom:812.101500px;}
.yf{bottom:812.361000px;}
.yb1{bottom:821.363031px;}
.y1b0{bottom:821.829000px;}
.y1e4{bottom:822.864000px;}
.y1e3{bottom:825.552000px;}
.ye{bottom:825.636000px;}
.yf5{bottom:829.107000px;}
.y143{bottom:832.036500px;}
.y41{bottom:832.365000px;}
.yb0{bottom:841.612950px;}
.y1e2{bottom:844.918500px;}
.y1af{bottom:845.994000px;}
.yd{bottom:848.674500px;}
.yf4{bottom:849.372000px;}
.y20a{bottom:850.797000px;}
.y40{bottom:852.628500px;}
.y197{bottom:854.796000px;}
.y9b{bottom:858.054000px;}
.y1ae{bottom:861.192000px;}
.yc{bottom:861.949500px;}
.y1e1{bottom:864.286500px;}
.y142{bottom:867.037500px;}
.yf3{bottom:869.635500px;}
.y209{bottom:870.165000px;}
.y3f{bottom:872.893500px;}
.y1ad{bottom:876.390000px;}
.yae{bottom:879.052950px;}
.yb{bottom:880.105500px;}
.y141{bottom:883.582500px;}
.y1e0{bottom:883.653000px;}
.y140{bottom:886.270500px;}
.y208{bottom:889.531500px;}
.yf2{bottom:889.899000px;}
.y1ac{bottom:891.588000px;}
.y3e{bottom:893.157000px;}
.y68{bottom:898.582500px;}
.y1df{bottom:903.021000px;}
.ya{bottom:903.145500px;}
.y116{bottom:908.700000px;}
.yf0{bottom:910.164000px;}
.y9a{bottom:910.624500px;}
.y3d{bottom:913.422000px;}
.yf1{bottom:915.588000px;}
.y190{bottom:918.846000px;}
.y1de{bottom:922.389000px;}
.y9{bottom:925.386000px;}
.yef{bottom:930.427500px;}
.y3c{bottom:933.685500px;}
.y1dd{bottom:941.755500px;}
.y8{bottom:945.651000px;}
.yee{bottom:950.692500px;}
.y67{bottom:951.153000px;}
.y3b{bottom:953.949000px;}
.y1dc{bottom:961.123500px;}
.y7{bottom:965.914500px;}
.yed{bottom:970.956000px;}
.y16b{bottom:971.416500px;}
.y3a{bottom:974.214000px;}
.y66{bottom:979.638000px;}
.y1db{bottom:980.490000px;}
.yec{bottom:991.219500px;}
.y39{bottom:994.477500px;}
.y1da{bottom:999.858000px;}
.y6{bottom:1010.451000px;}
.yeb{bottom:1011.484500px;}
.y38{bottom:1014.742500px;}
.y1d9{bottom:1019.226000px;}
.y18b{bottom:1028.950500px;}
.y18a{bottom:1031.748000px;}
.y99{bottom:1032.208500px;}
.y37{bottom:1035.006000px;}
.y1d8{bottom:1038.592500px;}
.yea{bottom:1040.715000px;}
.y5{bottom:1040.848500px;}
.y189{bottom:1052.013000px;}
.y16a{bottom:1052.473500px;}
.y36{bottom:1055.269500px;}
.y1d7{bottom:1057.960500px;}
.y4{bottom:1071.244500px;}
.y35{bottom:1075.534500px;}
.y1d6{bottom:1077.327000px;}
.y169{bottom:1080.958500px;}
.y188{bottom:1081.243500px;}
.y34{bottom:1095.798000px;}
.y1d5{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.ye8{bottom:1113.265500px;}
.y33{bottom:1116.063000px;}
.ye9{bottom:1121.487000px;}
.y1{bottom:1137.954000px;}
.y32{bottom:1168.366500px;}
.h1a{height:24.176953px;}
.hf{height:24.849991px;}
.ha{height:25.508090px;}
.h1c{height:26.279297px;}
.h1f{height:29.499174px;}
.h8{height:30.461558px;}
.h29{height:32.027868px;}
.h11{height:32.697253px;}
.h12{height:33.072749px;}
.hc{height:33.112997px;}
.hb{height:34.199443px;}
.h16{height:34.951465px;}
.h10{height:35.052500px;}
.h14{height:35.373941px;}
.h17{height:35.991211px;}
.h20{height:37.551283px;}
.h2c{height:37.927872px;}
.h2a{height:38.412058px;}
.h1e{height:38.734848px;}
.h9{height:39.165235px;}
.h19{height:39.418945px;}
.h2b{height:39.434227px;}
.h13{height:41.723369px;}
.h26{height:42.679778px;}
.hd{height:43.038432px;}
.h1d{height:43.269961px;}
.he{height:43.516637px;}
.h4{height:43.815515px;}
.h21{height:43.881253px;}
.h1b{height:43.886426px;}
.h27{height:43.887253px;}
.h28{height:46.545991px;}
.h24{height:46.551991px;}
.h2{height:50.930649px;}
.h18{height:52.558594px;}
.h7{height:54.405312px;}
.h6{height:54.411312px;}
.h5{height:77.469696px;}
.h3{height:102.503837px;}
.h23{height:222.307500px;}
.h15{height:418.978500px;}
.h22{height:485.608500px;}
.h25{height:636.966000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:190.325662px;}
.w6{width:639.330150px;}
.w5{width:640.119150px;}
.w4{width:650.301150px;}
.w7{width:659.039550px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xb1{left:-11.291850px;}
.x49{left:-5.542350px;}
.x8e{left:-4.196850px;}
.xbe{left:-1.831950px;}
.x0{left:0.000000px;}
.xb3{left:20.568150px;}
.x4b{left:26.317650px;}
.x8f{left:27.664547px;}
.x7{left:29.274117px;}
.x2{left:58.056971px;}
.xbf{left:104.458050px;}
.xc0{left:111.928050px;}
.x1{left:114.802500px;}
.xbd{left:116.937450px;}
.xcb{left:119.370000px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.xf4{left:124.704000px;}
.x8d{left:126.397350px;}
.x2a{left:132.997500px;}
.x4f{left:143.587650px;}
.x4{left:146.170500px;}
.x50{left:148.087650px;}
.x2b{left:150.961500px;}
.x92{left:152.673150px;}
.xa2{left:155.602500px;}
.x93{left:164.463150px;}
.x94{left:169.413150px;}
.xde{left:171.678000px;}
.xd1{left:174.097500px;}
.xa7{left:175.819500px;}
.xc8{left:178.639500px;}
.xd2{left:180.784500px;}
.x89{left:183.939000px;}
.x8{left:188.992500px;}
.xdf{left:191.128500px;}
.x68{left:192.673500px;}
.xca{left:195.597000px;}
.x8a{left:197.112000px;}
.xf5{left:198.952500px;}
.x22{left:204.139500px;}
.x52{left:206.542500px;}
.x69{left:207.618000px;}
.x9c{left:208.843500px;}
.xe5{left:214.078500px;}
.x6a{left:215.239500px;}
.x2e{left:217.239000px;}
.xc2{left:221.340000px;}
.x87{left:222.418500px;}
.x2f{left:224.508000px;}
.x9a{left:227.103150px;}
.x6b{left:230.182500px;}
.x9b{left:231.243150px;}
.xa8{left:238.246500px;}
.x34{left:241.363500px;}
.xc3{left:242.862000px;}
.xbb{left:244.669500px;}
.xa5{left:246.810000px;}
.x3a{left:252.619500px;}
.xfe{left:253.657500px;}
.xbc{left:254.854500px;}
.x35{left:256.306500px;}
.x3b{left:259.888500px;}
.x40{left:262.902000px;}
.x3c{left:264.126000px;}
.xfd{left:267.238500px;}
.x95{left:269.313150px;}
.x96{left:273.813150px;}
.x41{left:277.845000px;}
.x42{left:281.656500px;}
.x19{left:282.747000px;}
.xaa{left:285.982500px;}
.x43{left:296.599500px;}
.x1a{left:297.691500px;}
.x9d{left:298.807500px;}
.x1b{left:301.465500px;}
.xab{left:304.737000px;}
.x9e{left:307.024500px;}
.x2d{left:308.883000px;}
.x61{left:313.116000px;}
.x63{left:314.983500px;}
.x1c{left:316.408500px;}
.xe9{left:319.033500px;}
.x1d{left:320.182500px;}
.x55{left:321.865500px;}
.x62{left:324.018000px;}
.xe2{left:327.600000px;}
.xe0{left:328.638000px;}
.x56{left:330.082500px;}
.x1e{left:335.125500px;}
.x30{left:336.211500px;}
.x64{left:337.548000px;}
.xea{left:340.557000px;}
.x77{left:342.456000px;}
.x31{left:346.051500px;}
.x65{left:352.492500px;}
.x3e{left:355.194000px;}
.x53{left:359.922000px;}
.x3f{left:361.881000px;}
.x5c{left:363.004500px;}
.x54{left:366.646500px;}
.x5d{left:369.691500px;}
.x36{left:373.659000px;}
.x37{left:380.346000px;}
.xc1{left:382.494000px;}
.x32{left:384.190500px;}
.x13{left:386.190000px;}
.xb0{left:387.627000px;}
.xf6{left:391.903500px;}
.xeb{left:392.943000px;}
.x33{left:394.090500px;}
.x4c{left:396.217650px;}
.xda{left:399.484500px;}
.x14{left:401.134500px;}
.x4d{left:402.337650px;}
.xf7{left:405.625500px;}
.xe6{left:407.511000px;}
.x15{left:408.756000px;}
.xe1{left:409.990500px;}
.xdb{left:411.262500px;}
.xe8{left:413.535000px;}
.xe7{left:414.780000px;}
.x1f{left:415.854000px;}
.xdc{left:417.492000px;}
.xac{left:419.037000px;}
.xe3{left:421.068000px;}
.x7a{left:422.380500px;}
.x16{left:423.699000px;}
.x7b{left:426.190500px;}
.x25{left:429.243000px;}
.xad{left:434.235000px;}
.x7c{left:441.135000px;}
.x26{left:442.966500px;}
.xae{left:448.258500px;}
.xb{left:451.647000px;}
.xd6{left:455.439000px;}
.x98{left:456.693150px;}
.xed{left:457.941000px;}
.xc{left:459.118500px;}
.x99{left:460.833150px;}
.xd7{left:461.863500px;}
.xdd{left:462.925500px;}
.xee{left:464.367000px;}
.xd{left:466.740000px;}
.x7f{left:468.985500px;}
.xc9{left:470.421000px;}
.xb6{left:471.474000px;}
.xe{left:474.211500px;}
.x80{left:476.254500px;}
.xb7{left:478.161000px;}
.x81{left:483.876000px;}
.xef{left:485.035500px;}
.x2c{left:488.116500px;}
.xf0{left:491.461500px;}
.x23{left:493.875000px;}
.x3d{left:495.354000px;}
.x5b{left:498.414000px;}
.x24{left:501.346500px;}
.xc6{left:502.470000px;}
.x58{left:503.473500px;}
.x27{left:504.691500px;}
.x59{left:507.183000px;}
.x20{left:512.475000px;}
.xd8{left:514.515000px;}
.x51{left:515.557650px;}
.x4e{left:517.627650px;}
.xcd{left:520.075500px;}
.x5a{left:522.127500px;}
.xc4{left:525.939000px;}
.x21{left:527.419500px;}
.x88{left:528.580500px;}
.xa6{left:530.506500px;}
.xc5{left:532.626000px;}
.x85{left:536.358000px;}
.xc7{left:539.794500px;}
.xd3{left:541.785000px;}
.x9f{left:543.174000px;}
.x86{left:546.225000px;}
.xd4{left:548.211000px;}
.xa0{left:551.325000px;}
.xce{left:553.375500px;}
.x90{left:563.703150px;}
.x91{left:568.203150px;}
.xd9{left:569.575500px;}
.xd5{left:574.738500px;}
.x6c{left:577.351500px;}
.x6d{left:583.959000px;}
.x6f{left:586.224000px;}
.x17{left:587.734500px;}
.x82{left:589.359000px;}
.x70{left:592.911000px;}
.x6e{left:595.470000px;}
.xa9{left:596.535000px;}
.xb8{left:600.277500px;}
.x18{left:602.679000px;}
.x83{left:604.602000px;}
.x8b{left:608.676000px;}
.x7d{left:609.765000px;}
.xa1{left:612.615000px;}
.xf{left:618.906000px;}
.x71{left:621.474000px;}
.xfc{left:622.951500px;}
.x44{left:624.529500px;}
.x10{left:626.379000px;}
.xb9{left:628.833000px;}
.x45{left:630.955500px;}
.x7e{left:632.226000px;}
.x11{left:633.948000px;}
.x67{left:635.184000px;}
.xa3{left:637.803000px;}
.x46{left:642.526500px;}
.xa4{left:646.021500px;}
.xb2{left:647.508000px;}
.x12{left:648.891000px;}
.x60{left:650.361000px;}
.x4a{left:652.357650px;}
.x47{left:653.853000px;}
.x5e{left:656.613000px;}
.xf8{left:661.747500px;}
.x76{left:664.533000px;}
.xf1{left:666.289500px;}
.x48{left:667.878000px;}
.x97{left:669.903150px;}
.x5f{left:671.557500px;}
.xf9{left:675.469500px;}
.xcf{left:679.510500px;}
.xf2{left:681.064500px;}
.xfa{left:694.018500px;}
.x78{left:695.235000px;}
.x72{left:697.798500px;}
.x6{left:701.339982px;}
.x38{left:702.919500px;}
.x84{left:715.878000px;}
.x39{left:717.862500px;}
.xcc{left:721.536000px;}
.x57{left:723.034500px;}
.xfb{left:724.110000px;}
.xba{left:725.332500px;}
.x28{left:731.149500px;}
.xe4{left:732.174000px;}
.x73{left:733.699500px;}
.xb4{left:734.847000px;}
.xd0{left:737.172000px;}
.x9{left:740.296500px;}
.xb5{left:743.064000px;}
.xf3{left:744.622500px;}
.xa{left:746.983500px;}
.x29{left:752.658000px;}
.x8c{left:757.243500px;}
.xec{left:760.327500px;}
.x74{left:762.249000px;}
.xaf{left:763.768500px;}
.x79{left:767.992500px;}
.x66{left:771.684000px;}
.x75{left:776.272500px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v4{vertical-align:-9.946667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:4.714667pt;}
.v6{vertical-align:9.941333pt;}
.v3{vertical-align:14.656000pt;}
.v1{vertical-align:19.290667pt;}
.ls65{letter-spacing:-0.297600pt;}
.ls62{letter-spacing:-0.256512pt;}
.ls46{letter-spacing:-0.197728pt;}
.ls36{letter-spacing:-0.182400pt;}
.ls73{letter-spacing:-0.165664pt;}
.ls49{letter-spacing:-0.160320pt;}
.ls82{letter-spacing:-0.154976pt;}
.ls7a{letter-spacing:-0.149632pt;}
.ls7c{letter-spacing:-0.144288pt;}
.ls41{letter-spacing:-0.133600pt;}
.ls64{letter-spacing:-0.128256pt;}
.ls43{letter-spacing:-0.122912pt;}
.ls61{letter-spacing:-0.117568pt;}
.ls3c{letter-spacing:-0.112224pt;}
.ls74{letter-spacing:-0.106880pt;}
.ls75{letter-spacing:-0.101536pt;}
.ls7b{letter-spacing:-0.096192pt;}
.ls63{letter-spacing:-0.090848pt;}
.ls48{letter-spacing:-0.085504pt;}
.ls76{letter-spacing:-0.080160pt;}
.ls34{letter-spacing:-0.076608pt;}
.ls42{letter-spacing:-0.074816pt;}
.ls79{letter-spacing:-0.069472pt;}
.ls47{letter-spacing:-0.064128pt;}
.ls78{letter-spacing:-0.058784pt;}
.ls77{letter-spacing:-0.053440pt;}
.ls3f{letter-spacing:-0.048096pt;}
.ls5f{letter-spacing:-0.042752pt;}
.ls44{letter-spacing:-0.037408pt;}
.ls60{letter-spacing:-0.032064pt;}
.ls67{letter-spacing:-0.028800pt;}
.ls40{letter-spacing:-0.026720pt;}
.ls3b{letter-spacing:-0.021376pt;}
.ls66{letter-spacing:-0.019200pt;}
.ls39{letter-spacing:-0.016032pt;}
.ls3a{letter-spacing:-0.010688pt;}
.ls80{letter-spacing:-0.009600pt;}
.ls3e{letter-spacing:-0.005344pt;}
.ls37{letter-spacing:-0.004800pt;}
.ls35{letter-spacing:-0.004256pt;}
.lsf{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000081pt;}
.ls8f{letter-spacing:0.000110pt;}
.ls0{letter-spacing:0.000213pt;}
.ls1d{letter-spacing:0.000387pt;}
.ls6{letter-spacing:0.000503pt;}
.ls5d{letter-spacing:0.000600pt;}
.ls91{letter-spacing:0.000880pt;}
.ls30{letter-spacing:0.000921pt;}
.ls2{letter-spacing:0.000960pt;}
.ls1e{letter-spacing:0.001067pt;}
.ls71{letter-spacing:0.001089pt;}
.lsc{letter-spacing:0.001349pt;}
.ls92{letter-spacing:0.001487pt;}
.lsa{letter-spacing:0.001667pt;}
.ls18{letter-spacing:0.001809pt;}
.lsb{letter-spacing:0.001852pt;}
.ls12{letter-spacing:0.002097pt;}
.ls5c{letter-spacing:0.002117pt;}
.ls31{letter-spacing:0.002287pt;}
.ls68{letter-spacing:0.002613pt;}
.ls9f{letter-spacing:0.002643pt;}
.ls8e{letter-spacing:0.002861pt;}
.ls15{letter-spacing:0.002868pt;}
.ls51{letter-spacing:0.002925pt;}
.lse{letter-spacing:0.003100pt;}
.ls1c{letter-spacing:0.003106pt;}
.ls4f{letter-spacing:0.003198pt;}
.ls4c{letter-spacing:0.003268pt;}
.ls88{letter-spacing:0.003409pt;}
.ls9e{letter-spacing:0.003430pt;}
.ls9{letter-spacing:0.003475pt;}
.ls6b{letter-spacing:0.003942pt;}
.ls11{letter-spacing:0.004016pt;}
.ls32{letter-spacing:0.004021pt;}
.ls4a{letter-spacing:0.004181pt;}
.ls9c{letter-spacing:0.004267pt;}
.ls55{letter-spacing:0.004800pt;}
.ls93{letter-spacing:0.004813pt;}
.ls2a{letter-spacing:0.005344pt;}
.ls72{letter-spacing:0.005888pt;}
.ls45{letter-spacing:0.006400pt;}
.ls23{letter-spacing:0.009600pt;}
.ls2e{letter-spacing:0.010688pt;}
.ls22{letter-spacing:0.014400pt;}
.ls5b{letter-spacing:0.016032pt;}
.ls7d{letter-spacing:0.019200pt;}
.ls54{letter-spacing:0.021376pt;}
.ls27{letter-spacing:0.024000pt;}
.ls52{letter-spacing:0.026720pt;}
.ls28{letter-spacing:0.028800pt;}
.ls53{letter-spacing:0.032064pt;}
.ls24{letter-spacing:0.033600pt;}
.ls29{letter-spacing:0.037408pt;}
.ls1f{letter-spacing:0.038304pt;}
.ls25{letter-spacing:0.038400pt;}
.ls2b{letter-spacing:0.042752pt;}
.ls7e{letter-spacing:0.043200pt;}
.ls59{letter-spacing:0.048000pt;}
.ls2f{letter-spacing:0.048096pt;}
.ls6c{letter-spacing:0.052800pt;}
.ls2c{letter-spacing:0.053440pt;}
.ls6d{letter-spacing:0.057600pt;}
.ls2d{letter-spacing:0.058784pt;}
.ls57{letter-spacing:0.062400pt;}
.ls6e{letter-spacing:0.064128pt;}
.ls3d{letter-spacing:0.069472pt;}
.ls56{letter-spacing:0.072000pt;}
.ls81{letter-spacing:0.074816pt;}
.ls7f{letter-spacing:0.080160pt;}
.ls5a{letter-spacing:0.081600pt;}
.ls26{letter-spacing:0.124800pt;}
.ls21{letter-spacing:0.161728pt;}
.ls20{letter-spacing:0.170240pt;}
.ls58{letter-spacing:0.187200pt;}
.ls10{letter-spacing:1.133683pt;}
.ls38{letter-spacing:1.587168pt;}
.ls8{letter-spacing:1.654338pt;}
.ls86{letter-spacing:1.957617pt;}
.ls70{letter-spacing:2.656284pt;}
.ls3{letter-spacing:2.657067pt;}
.ls1a{letter-spacing:2.658394pt;}
.ls1{letter-spacing:2.665203pt;}
.ls97{letter-spacing:10.460800pt;}
.lsd{letter-spacing:10.626533pt;}
.ls9d{letter-spacing:10.759467pt;}
.lsa1{letter-spacing:10.923712pt;}
.lsa0{letter-spacing:10.999902pt;}
.ls96{letter-spacing:11.691059pt;}
.ls85{letter-spacing:11.762287pt;}
.ls9b{letter-spacing:11.830421pt;}
.ls94{letter-spacing:11.954133pt;}
.ls98{letter-spacing:11.959467pt;}
.ls99{letter-spacing:12.044800pt;}
.ls87{letter-spacing:12.122082pt;}
.ls9a{letter-spacing:12.147781pt;}
.ls1b{letter-spacing:12.458885pt;}
.ls13{letter-spacing:12.986777pt;}
.ls69{letter-spacing:12.993594pt;}
.ls8c{letter-spacing:13.030427pt;}
.ls8d{letter-spacing:13.036694pt;}
.ls33{letter-spacing:13.059504pt;}
.ls95{letter-spacing:13.184669pt;}
.ls4b{letter-spacing:13.210020pt;}
.ls6f{letter-spacing:13.285443pt;}
.ls16{letter-spacing:13.294428pt;}
.ls4e{letter-spacing:13.311065pt;}
.ls50{letter-spacing:13.336601pt;}
.ls8a{letter-spacing:13.340540pt;}
.ls4d{letter-spacing:13.356669pt;}
.ls6a{letter-spacing:13.429513pt;}
.ls84{letter-spacing:13.485351pt;}
.ls83{letter-spacing:13.490782pt;}
.ls19{letter-spacing:13.661286pt;}
.ls14{letter-spacing:14.133609pt;}
.ls89{letter-spacing:14.299195pt;}
.ls8b{letter-spacing:14.806384pt;}
.ls4{letter-spacing:15.942400pt;}
.ls90{letter-spacing:19.151482pt;}
.ls5e{letter-spacing:19.287430pt;}
.ls5{letter-spacing:62.432533pt;}
.ls7{letter-spacing:64.314231pt;}
.ws42{word-spacing:-53.440000pt;}
.ws86{word-spacing:-40.078876pt;}
.ws9{word-spacing:-15.461955pt;}
.ws9f{word-spacing:-13.915853pt;}
.ws13{word-spacing:-13.283467pt;}
.ws1{word-spacing:-12.760670pt;}
.ws1c{word-spacing:-12.369595pt;}
.ws9b{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.955200pt;}
.ws41{word-spacing:-10.810240pt;}
.ws1a{word-spacing:-10.626800pt;}
.ws15b{word-spacing:-10.095467pt;}
.ws2a{word-spacing:-4.356977pt;}
.ws182{word-spacing:-4.303872pt;}
.ws9d{word-spacing:-4.064768pt;}
.ws7e{word-spacing:-3.613103pt;}
.ws6c{word-spacing:-3.446880pt;}
.ws183{word-spacing:-3.443098pt;}
.ws99{word-spacing:-3.347434pt;}
.ws9a{word-spacing:-3.294300pt;}
.ws160{word-spacing:-3.188032pt;}
.ws6a{word-spacing:-3.168992pt;}
.ws72{word-spacing:-3.110208pt;}
.ws6b{word-spacing:-3.099520pt;}
.ws71{word-spacing:-3.040736pt;}
.ws1a0{word-spacing:-3.012710pt;}
.ws159{word-spacing:-2.975497pt;}
.ws132{word-spacing:-2.964890pt;}
.ws9e{word-spacing:-2.917069pt;}
.ws161{word-spacing:-2.816095pt;}
.ws52{word-spacing:-2.794912pt;}
.ws51{word-spacing:-2.778880pt;}
.wse5{word-spacing:-2.656693pt;}
.wsed{word-spacing:-2.550426pt;}
.ws176{word-spacing:-2.497292pt;}
.ws10a{word-spacing:-2.474272pt;}
.wsfb{word-spacing:-2.458240pt;}
.ws135{word-spacing:-2.452800pt;}
.ws175{word-spacing:-2.444158pt;}
.wsd6{word-spacing:-2.443200pt;}
.wscd{word-spacing:-2.428800pt;}
.ws136{word-spacing:-2.414400pt;}
.ws134{word-spacing:-2.409600pt;}
.wse4{word-spacing:-2.391024pt;}
.wsd5{word-spacing:-2.376000pt;}
.wse3{word-spacing:-2.337890pt;}
.ws1a2{word-spacing:-2.295398pt;}
.ws169{word-spacing:-2.284756pt;}
.ws16e{word-spacing:-2.231622pt;}
.ws10b{word-spacing:-2.207072pt;}
.wsa1{word-spacing:-2.199757pt;}
.wsf9{word-spacing:-2.196384pt;}
.wsc0{word-spacing:-2.175008pt;}
.wsbf{word-spacing:-2.153632pt;}
.ws85{word-spacing:-2.072221pt;}
.ws22{word-spacing:-2.019087pt;}
.wsfa{word-spacing:-1.987968pt;}
.ws21{word-spacing:-1.965953pt;}
.wsb5{word-spacing:-1.865056pt;}
.ws20{word-spacing:-1.859685pt;}
.wsb4{word-spacing:-1.832992pt;}
.ws60{word-spacing:-1.827648pt;}
.ws65{word-spacing:-1.811616pt;}
.wse6{word-spacing:-1.806551pt;}
.ws61{word-spacing:-1.806272pt;}
.ws66{word-spacing:-1.795584pt;}
.ws1a8{word-spacing:-1.721549pt;}
.ws7f{word-spacing:-1.700284pt;}
.ws62{word-spacing:-1.699392pt;}
.ws5{word-spacing:-1.696326pt;}
.wsea{word-spacing:-1.594016pt;}
.wsa2{word-spacing:-1.487748pt;}
.ws184{word-spacing:-1.482445pt;}
.ws185{word-spacing:-1.474825pt;}
.wsa3{word-spacing:-1.434614pt;}
.ws1b2{word-spacing:-1.386803pt;}
.wsa{word-spacing:-1.381481pt;}
.ws98{word-spacing:-1.275213pt;}
.wsaf{word-spacing:-1.245152pt;}
.wsb8{word-spacing:-1.234464pt;}
.ws15d{word-spacing:-1.222079pt;}
.ws19d{word-spacing:-1.198985pt;}
.ws19b{word-spacing:-1.195520pt;}
.wsae{word-spacing:-1.181024pt;}
.wsd1{word-spacing:-1.176000pt;}
.ws4{word-spacing:-1.175671pt;}
.ws150{word-spacing:-1.168945pt;}
.wsd2{word-spacing:-1.152000pt;}
.ws199{word-spacing:-1.147699pt;}
.wsd0{word-spacing:-1.137600pt;}
.wsf1{word-spacing:-1.062677pt;}
.ws1ae{word-spacing:-1.052058pt;}
.ws26{word-spacing:-1.009543pt;}
.ws19a{word-spacing:-1.004237pt;}
.ws1a3{word-spacing:-0.956416pt;}
.wsa4{word-spacing:-0.956410pt;}
.ws95{word-spacing:-0.903276pt;}
.ws15f{word-spacing:-0.901952pt;}
.ws128{word-spacing:-0.881760pt;}
.wsbb{word-spacing:-0.865728pt;}
.ws3c{word-spacing:-0.850142pt;}
.ws75{word-spacing:-0.839008pt;}
.ws3b{word-spacing:-0.831869pt;}
.wsd9{word-spacing:-0.830400pt;}
.wsbc{word-spacing:-0.801600pt;}
.ws96{word-spacing:-0.797008pt;}
.ws16a{word-spacing:-0.743874pt;}
.ws166{word-spacing:-0.637606pt;}
.ws76{word-spacing:-0.603872pt;}
.wsfd{word-spacing:-0.598528pt;}
.ws105{word-spacing:-0.582496pt;}
.ws172{word-spacing:-0.531339pt;}
.ws15c{word-spacing:-0.478205pt;}
.ws8b{word-spacing:-0.425071pt;}
.ws17f{word-spacing:-0.382566pt;}
.ws17a{word-spacing:-0.371937pt;}
.ws2f{word-spacing:-0.318803pt;}
.wscc{word-spacing:-0.267200pt;}
.ws2d{word-spacing:-0.265669pt;}
.ws141{word-spacing:-0.245824pt;}
.ws48{word-spacing:-0.238336pt;}
.wsfe{word-spacing:-0.213760pt;}
.ws23{word-spacing:-0.212535pt;}
.wsad{word-spacing:-0.203072pt;}
.ws17b{word-spacing:-0.191283pt;}
.wsc{word-spacing:-0.159402pt;}
.wsa0{word-spacing:-0.143462pt;}
.ws143{word-spacing:-0.112224pt;}
.ws8{word-spacing:-0.106268pt;}
.ws17c{word-spacing:-0.095642pt;}
.ws142{word-spacing:-0.085504pt;}
.ws47{word-spacing:-0.072352pt;}
.ws7{word-spacing:-0.053134pt;}
.ws3{word-spacing:-0.047821pt;}
.ws88{word-spacing:-0.040382pt;}
.ws1b4{word-spacing:-0.006323pt;}
.ws8e{word-spacing:-0.004028pt;}
.ws3a{word-spacing:-0.003198pt;}
.ws193{word-spacing:-0.002313pt;}
.ws87{word-spacing:-0.001824pt;}
.ws89{word-spacing:-0.001626pt;}
.wse0{word-spacing:-0.001265pt;}
.ws0{word-spacing:0.000000pt;}
.ws8a{word-spacing:0.000749pt;}
.ws195{word-spacing:0.000930pt;}
.ws19{word-spacing:0.002172pt;}
.ws156{word-spacing:0.005067pt;}
.ws140{word-spacing:0.010688pt;}
.ws38{word-spacing:0.010908pt;}
.ws59{word-spacing:0.016032pt;}
.ws102{word-spacing:0.021376pt;}
.ws10c{word-spacing:0.042752pt;}
.ws45{word-spacing:0.047821pt;}
.ws11{word-spacing:0.053134pt;}
.wsda{word-spacing:0.069472pt;}
.ws14e{word-spacing:0.074816pt;}
.ws58{word-spacing:0.080160pt;}
.ws67{word-spacing:0.085504pt;}
.wsf7{word-spacing:0.091200pt;}
.ws189{word-spacing:0.095642pt;}
.ws101{word-spacing:0.096192pt;}
.ws68{word-spacing:0.101536pt;}
.ws12{word-spacing:0.106268pt;}
.wsdb{word-spacing:0.106880pt;}
.ws14d{word-spacing:0.112224pt;}
.ws12e{word-spacing:0.122912pt;}
.wsf6{word-spacing:0.124800pt;}
.ws4f{word-spacing:0.134400pt;}
.ws9c{word-spacing:0.143462pt;}
.wsd{word-spacing:0.159402pt;}
.ws133{word-spacing:0.191283pt;}
.wsfc{word-spacing:0.192384pt;}
.ws152{word-spacing:0.193890pt;}
.ws124{word-spacing:0.208416pt;}
.ws6{word-spacing:0.212535pt;}
.ws131{word-spacing:0.239104pt;}
.ws46{word-spacing:0.265669pt;}
.ws18c{word-spacing:0.286925pt;}
.ws18{word-spacing:0.318803pt;}
.ws109{word-spacing:0.352704pt;}
.ws27{word-spacing:0.371937pt;}
.ws39{word-spacing:0.379175pt;}
.ws13c{word-spacing:0.411488pt;}
.wsef{word-spacing:0.425071pt;}
.ws186{word-spacing:0.430387pt;}
.ws11a{word-spacing:0.464928pt;}
.wsdf{word-spacing:0.478205pt;}
.ws25{word-spacing:0.531339pt;}
.ws12d{word-spacing:0.550432pt;}
.ws16{word-spacing:0.637606pt;}
.ws12c{word-spacing:0.657312pt;}
.ws148{word-spacing:0.678688pt;}
.ws173{word-spacing:0.690740pt;}
.wsb{word-spacing:0.743874pt;}
.ws147{word-spacing:0.748160pt;}
.ws15e{word-spacing:0.797008pt;}
.ws32{word-spacing:0.850142pt;}
.ws2b{word-spacing:0.903276pt;}
.ws17d{word-spacing:0.908595pt;}
.ws151{word-spacing:0.956410pt;}
.ws1f{word-spacing:1.009543pt;}
.ws164{word-spacing:1.011373pt;}
.wsa8{word-spacing:1.062677pt;}
.wsff{word-spacing:1.063456pt;}
.wsf5{word-spacing:1.065600pt;}
.ws107{word-spacing:1.068800pt;}
.wsf4{word-spacing:1.070400pt;}
.ws7a{word-spacing:1.074144pt;}
.wsf3{word-spacing:1.089600pt;}
.ws3d{word-spacing:1.115811pt;}
.ws108{word-spacing:1.127584pt;}
.ws100{word-spacing:1.148960pt;}
.ws33{word-spacing:1.168945pt;}
.ws64{word-spacing:1.170336pt;}
.ws18d{word-spacing:1.195520pt;}
.wsf2{word-spacing:1.222079pt;}
.ws17e{word-spacing:1.243341pt;}
.ws2e{word-spacing:1.275213pt;}
.ws145{word-spacing:1.287904pt;}
.ws1b5{word-spacing:1.291162pt;}
.ws50{word-spacing:1.378752pt;}
.wse2{word-spacing:1.381481pt;}
.ws157{word-spacing:1.434614pt;}
.ws63{word-spacing:1.442880pt;}
.ws146{word-spacing:1.448224pt;}
.ws2c{word-spacing:1.487748pt;}
.ws16c{word-spacing:1.515905pt;}
.ws16d{word-spacing:1.540882pt;}
.ws44{word-spacing:1.578086pt;}
.wsf{word-spacing:1.594016pt;}
.wse8{word-spacing:1.647150pt;}
.ws14a{word-spacing:1.661984pt;}
.ws53{word-spacing:1.694048pt;}
.wsa7{word-spacing:1.700284pt;}
.ws54{word-spacing:1.704736pt;}
.ws1a5{word-spacing:1.721549pt;}
.ws81{word-spacing:1.753418pt;}
.wseb{word-spacing:1.806551pt;}
.ws149{word-spacing:1.838336pt;}
.ws8d{word-spacing:1.859685pt;}
.ws43{word-spacing:1.865011pt;}
.ws40{word-spacing:1.912819pt;}
.ws10f{word-spacing:1.945216pt;}
.wsc8{word-spacing:1.950560pt;}
.ws37{word-spacing:1.965953pt;}
.ws90{word-spacing:2.019087pt;}
.ws194{word-spacing:2.056294pt;}
.ws110{word-spacing:2.057440pt;}
.ws28{word-spacing:2.072221pt;}
.wsc3{word-spacing:2.116224pt;}
.wsc2{word-spacing:2.121568pt;}
.ws179{word-spacing:2.125355pt;}
.wsc1{word-spacing:2.137600pt;}
.ws17{word-spacing:2.178489pt;}
.ws3f{word-spacing:2.231622pt;}
.ws119{word-spacing:2.281888pt;}
.wsec{word-spacing:2.284756pt;}
.ws144{word-spacing:2.287232pt;}
.ws1af{word-spacing:2.295398pt;}
.wsb7{word-spacing:2.303264pt;}
.ws13b{word-spacing:2.308608pt;}
.ws80{word-spacing:2.337890pt;}
.ws1b1{word-spacing:2.343219pt;}
.wsb6{word-spacing:2.351360pt;}
.ws162{word-spacing:2.391024pt;}
.ws3e{word-spacing:2.444158pt;}
.wsc9{word-spacing:2.452896pt;}
.ws12f{word-spacing:2.497292pt;}
.wse7{word-spacing:2.550426pt;}
.ws91{word-spacing:2.603559pt;}
.ws34{word-spacing:2.709827pt;}
.ws1a6{word-spacing:2.725786pt;}
.ws35{word-spacing:2.762961pt;}
.ws1a7{word-spacing:2.773606pt;}
.wse{word-spacing:2.816095pt;}
.wsa5{word-spacing:2.922363pt;}
.ws82{word-spacing:2.975497pt;}
.ws198{word-spacing:3.060531pt;}
.wsd4{word-spacing:3.331200pt;}
.ws171{word-spacing:3.347434pt;}
.wsd3{word-spacing:3.360000pt;}
.ws93{word-spacing:3.400567pt;}
.ws94{word-spacing:3.453701pt;}
.ws36{word-spacing:3.506835pt;}
.wsee{word-spacing:3.559969pt;}
.ws19c{word-spacing:3.586560pt;}
.ws192{word-spacing:3.730022pt;}
.ws153{word-spacing:3.772505pt;}
.ws130{word-spacing:3.878772pt;}
.ws1a4{word-spacing:3.921306pt;}
.ws16f{word-spacing:3.931906pt;}
.ws116{word-spacing:3.949216pt;}
.ws196{word-spacing:3.969126pt;}
.ws4c{word-spacing:3.969600pt;}
.ws4e{word-spacing:3.984000pt;}
.ws163{word-spacing:3.985040pt;}
.ws4d{word-spacing:4.012800pt;}
.ws1e{word-spacing:4.091308pt;}
.ws10{word-spacing:4.144442pt;}
.ws155{word-spacing:4.250709pt;}
.wsac{word-spacing:4.259168pt;}
.wsab{word-spacing:4.275200pt;}
.wsaa{word-spacing:4.291232pt;}
.ws55{word-spacing:4.579808pt;}
.ws56{word-spacing:4.681344pt;}
.ws170{word-spacing:4.728914pt;}
.ws1aa{word-spacing:4.734259pt;}
.ws1a9{word-spacing:4.777131pt;}
.ws191{word-spacing:4.777361pt;}
.ws1b0{word-spacing:4.779127pt;}
.ws18f{word-spacing:4.779614pt;}
.ws190{word-spacing:4.779639pt;}
.ws187{word-spacing:4.781022pt;}
.ws1a1{word-spacing:4.781056pt;}
.ws188{word-spacing:4.781542pt;}
.ws1ac{word-spacing:4.782003pt;}
.ws181{word-spacing:4.782080pt;}
.ws1b3{word-spacing:4.784521pt;}
.ws168{word-spacing:4.835182pt;}
.ws180{word-spacing:4.877722pt;}
.ws122{word-spacing:4.889760pt;}
.ws123{word-spacing:4.953888pt;}
.ws18a{word-spacing:4.973363pt;}
.ws15a{word-spacing:4.994583pt;}
.ws118{word-spacing:5.001984pt;}
.ws1ab{word-spacing:5.021184pt;}
.ws117{word-spacing:5.023360pt;}
.ws18e{word-spacing:5.069005pt;}
.ws92{word-spacing:5.100851pt;}
.wsdc{word-spacing:5.153985pt;}
.ws4b{word-spacing:5.251200pt;}
.ws49{word-spacing:5.270400pt;}
.ws14{word-spacing:5.307978pt;}
.ws15{word-spacing:5.313387pt;}
.wse9{word-spacing:5.313436pt;}
.ws84{word-spacing:5.366521pt;}
.ws83{word-spacing:5.419654pt;}
.ws4a{word-spacing:5.467200pt;}
.ws8c{word-spacing:5.472788pt;}
.ws154{word-spacing:5.525922pt;}
.ws1d{word-spacing:5.685324pt;}
.wse1{word-spacing:5.778628pt;}
.ws174{word-spacing:5.844725pt;}
.ws19f{word-spacing:5.929779pt;}
.ws24{word-spacing:5.950993pt;}
.wsa9{word-spacing:6.004127pt;}
.ws106{word-spacing:6.134912pt;}
.ws10d{word-spacing:6.161632pt;}
.wscf{word-spacing:6.177600pt;}
.wsb1{word-spacing:6.183008pt;}
.wsb0{word-spacing:6.188352pt;}
.wsc7{word-spacing:6.193696pt;}
.wsce{word-spacing:6.244800pt;}
.wsc6{word-spacing:6.257824pt;}
.ws31{word-spacing:6.269796pt;}
.ws10e{word-spacing:6.273856pt;}
.wsa6{word-spacing:6.429198pt;}
.ws18b{word-spacing:6.599270pt;}
.ws137{word-spacing:7.190400pt;}
.ws138{word-spacing:7.219200pt;}
.ws158{word-spacing:7.438741pt;}
.ws12a{word-spacing:7.454880pt;}
.ws12b{word-spacing:7.545728pt;}
.ws177{word-spacing:7.651277pt;}
.ws5c{word-spacing:7.727424pt;}
.wsd8{word-spacing:7.833600pt;}
.wsd7{word-spacing:7.876800pt;}
.ws8f{word-spacing:7.997295pt;}
.ws178{word-spacing:8.023214pt;}
.ws129{word-spacing:8.042720pt;}
.ws111{word-spacing:8.053408pt;}
.ws5d{word-spacing:8.117536pt;}
.ws13a{word-spacing:8.126400pt;}
.ws167{word-spacing:8.129482pt;}
.ws139{word-spacing:8.160000pt;}
.ws112{word-spacing:8.208384pt;}
.wsf0{word-spacing:8.501419pt;}
.ws1ad{word-spacing:8.559923pt;}
.wsdd{word-spacing:8.607686pt;}
.wsde{word-spacing:8.660820pt;}
.wsba{word-spacing:8.667968pt;}
.wsb9{word-spacing:8.689344pt;}
.ws14f{word-spacing:8.713954pt;}
.ws29{word-spacing:9.085891pt;}
.wsca{word-spacing:9.346656pt;}
.wscb{word-spacing:9.368032pt;}
.ws13e{word-spacing:9.394752pt;}
.ws5b{word-spacing:9.416128pt;}
.ws13f{word-spacing:9.426816pt;}
.ws13d{word-spacing:9.442848pt;}
.ws16b{word-spacing:9.510962pt;}
.ws70{word-spacing:9.688672pt;}
.ws5a{word-spacing:9.694016pt;}
.ws6f{word-spacing:9.710048pt;}
.ws97{word-spacing:10.254836pt;}
.ws115{word-spacing:10.292544pt;}
.ws11d{word-spacing:10.319264pt;}
.ws11b{word-spacing:10.340640pt;}
.ws11c{word-spacing:10.367360pt;}
.ws7c{word-spacing:11.297216pt;}
.ws7b{word-spacing:11.377376pt;}
.ws7d{word-spacing:11.452192pt;}
.ws19e{word-spacing:11.476992pt;}
.ws121{word-spacing:11.585792pt;}
.ws120{word-spacing:11.628544pt;}
.ws77{word-spacing:12.569088pt;}
.ws78{word-spacing:12.574432pt;}
.ws79{word-spacing:12.633216pt;}
.ws197{word-spacing:12.863795pt;}
.ws113{word-spacing:13.205024pt;}
.ws126{word-spacing:13.231744pt;}
.ws114{word-spacing:13.263808pt;}
.ws127{word-spacing:13.360000pt;}
.ws125{word-spacing:13.493600pt;}
.wsb3{word-spacing:13.504288pt;}
.ws11f{word-spacing:13.514976pt;}
.ws11e{word-spacing:13.525664pt;}
.wsb2{word-spacing:13.552384pt;}
.ws57{word-spacing:13.814240pt;}
.ws165{word-spacing:14.765333pt;}
.ws103{word-spacing:15.139552pt;}
.ws104{word-spacing:15.155584pt;}
.wsf8{word-spacing:15.700672pt;}
.wsbd{word-spacing:16.101472pt;}
.ws73{word-spacing:16.106816pt;}
.wsbe{word-spacing:16.112160pt;}
.ws74{word-spacing:16.288512pt;}
.ws30{word-spacing:16.365231pt;}
.ws5f{word-spacing:19.238400pt;}
.ws5e{word-spacing:19.297184pt;}
.ws6e{word-spacing:21.231712pt;}
.ws6d{word-spacing:21.253088pt;}
.wsc4{word-spacing:21.509600pt;}
.wsc5{word-spacing:21.792832pt;}
.ws14b{word-spacing:23.748736pt;}
.ws14c{word-spacing:23.860960pt;}
.ws69{word-spacing:27.238368pt;}
.ws1b{word-spacing:861.110858pt;}
._1b{margin-left:-7.714957pt;}
._4{margin-left:-6.168883pt;}
._3{margin-left:-4.399514pt;}
._1{margin-left:-2.704414pt;}
._2{margin-left:-1.721549pt;}
._7{width:0.969929pt;}
._12{width:9.856138pt;}
._17{width:11.306910pt;}
._f{width:12.348322pt;}
._13{width:13.846591pt;}
._9{width:14.920013pt;}
._5{width:15.876506pt;}
._6{width:17.598054pt;}
._8{width:19.255725pt;}
._10{width:20.775342pt;}
._e{width:22.263090pt;}
._19{width:23.774816pt;}
._b{width:25.451122pt;}
._a{width:27.220415pt;}
._1f{width:28.267217pt;}
._15{width:29.298026pt;}
._1e{width:30.355431pt;}
._d{width:31.295847pt;}
._22{width:32.327213pt;}
._14{width:34.558278pt;}
._1d{width:35.642221pt;}
._11{width:37.315826pt;}
._20{width:42.028889pt;}
._1c{width:43.410369pt;}
._18{width:44.898117pt;}
._0{width:48.327789pt;}
._21{width:54.993920pt;}
._16{width:1490.209047pt;}
._1a{width:1832.482933pt;}
._c{width:1853.736267pt;}
.fsd{font-size:29.440000pt;}
.fs9{font-size:30.690133pt;}
.fsf{font-size:32.000000pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fsa{font-size:42.560000pt;}
.fs5{font-size:47.820800pt;}
.fsb{font-size:48.000000pt;}
.fs1{font-size:53.133867pt;}
.fse{font-size:53.440000pt;}
.fsc{font-size:64.000000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y118{bottom:-763.746267pt;}
.y13f{bottom:-700.783019pt;}
.y13e{bottom:-682.783091pt;}
.y13d{bottom:-664.783163pt;}
.y13c{bottom:-646.783235pt;}
.y13b{bottom:-628.783307pt;}
.y13a{bottom:-610.863539pt;}
.y139{bottom:-592.863611pt;}
.y6d{bottom:-575.135600pt;}
.y138{bottom:-574.863683pt;}
.y137{bottom:-556.863755pt;}
.y136{bottom:-538.863827pt;}
.y8c{bottom:-529.454704pt;}
.y135{bottom:-520.863899pt;}
.y8b{bottom:-511.534936pt;}
.y134{bottom:-502.863971pt;}
.y8a{bottom:-493.535008pt;}
.y133{bottom:-484.944203pt;}
.y89{bottom:-475.535080pt;}
.y132{bottom:-466.944275pt;}
.y88{bottom:-457.535152pt;}
.y131{bottom:-448.944347pt;}
.y87{bottom:-439.535224pt;}
.y130{bottom:-430.944419pt;}
.y86{bottom:-421.535296pt;}
.y12f{bottom:-412.944491pt;}
.y85{bottom:-403.535368pt;}
.y16e{bottom:-395.862267pt;}
.y12e{bottom:-394.944563pt;}
.y84{bottom:-385.615600pt;}
.y83{bottom:-385.614635pt;}
.y12d{bottom:-377.024795pt;}
.y82{bottom:-367.614707pt;}
.y12c{bottom:-359.024867pt;}
.y183{bottom:-352.821827pt;}
.y81{bottom:-341.614811pt;}
.y12b{bottom:-341.024939pt;}
.y12a{bottom:-323.025011pt;}
.y182{bottom:-318.902123pt;}
.y80{bottom:-307.614947pt;}
.y129{bottom:-305.025083pt;}
.y181{bottom:-300.902195pt;}
.y7f{bottom:-289.615019pt;}
.y128{bottom:-287.025155pt;}
.y180{bottom:-282.902267pt;}
.y17f{bottom:-282.901819pt;}
.y7e{bottom:-271.615091pt;}
.y127{bottom:-269.025227pt;}
.y17e{bottom:-264.901891pt;}
.y7d{bottom:-253.695323pt;}
.y126{bottom:-251.105459pt;}
.y17d{bottom:-246.901963pt;}
.y7c{bottom:-235.695395pt;}
.y125{bottom:-233.105531pt;}
.y17c{bottom:-228.982195pt;}
.y7b{bottom:-217.695467pt;}
.y7a{bottom:-217.694936pt;}
.y124{bottom:-215.105603pt;}
.y17b{bottom:-210.982267pt;}
.y17a{bottom:-210.981907pt;}
.yaf{bottom:-202.459600pt;}
.y79{bottom:-199.695008pt;}
.y123{bottom:-197.105675pt;}
.y179{bottom:-192.981979pt;}
.y78{bottom:-181.695080pt;}
.ycf{bottom:-181.019467pt;}
.y122{bottom:-179.105747pt;}
.y178{bottom:-174.982051pt;}
.y77{bottom:-163.695152pt;}
.y121{bottom:-161.105819pt;}
.y177{bottom:-156.982123pt;}
.yce{bottom:-147.420400pt;}
.y76{bottom:-145.695224pt;}
.y120{bottom:-143.105891pt;}
.y176{bottom:-138.982195pt;}
.ycd{bottom:-130.140400pt;}
.y75{bottom:-127.775456pt;}
.y11f{bottom:-125.186123pt;}
.y175{bottom:-120.982267pt;}
.ycc{bottom:-112.780000pt;}
.y74{bottom:-109.775528pt;}
.y11e{bottom:-107.186195pt;}
.yca{bottom:-95.420800pt;}
.ycb{bottom:-95.419600pt;}
.y73{bottom:-91.775600pt;}
.y11d{bottom:-89.186267pt;}
.y174{bottom:-87.461467pt;}
.yc9{bottom:-78.060400pt;}
.y173{bottom:-70.101067pt;}
.yc8{bottom:-60.700000pt;}
.y72{bottom:-58.175200pt;}
.y11b{bottom:-55.586667pt;}
.y11c{bottom:-55.586267pt;}
.y172{bottom:-52.661467pt;}
.yc7{bottom:-43.339600pt;}
.y70{bottom:-40.735600pt;}
.y11a{bottom:-38.226267pt;}
.y71{bottom:-37.375600pt;}
.y171{bottom:-35.461867pt;}
.yc6{bottom:-26.059600pt;}
.y6f{bottom:-23.455600pt;}
.y170{bottom:-18.022267pt;}
.y119{bottom:-9.026267pt;}
.y0{bottom:0.000000pt;}
.yc5{bottom:1.460400pt;}
.y6e{bottom:1.824400pt;}
.y18{bottom:3.044747pt;}
.y16f{bottom:6.937733pt;}
.y17{bottom:12.578910pt;}
.y2{bottom:14.009278pt;}
.y31{bottom:56.693333pt;}
.ye7{bottom:95.566667pt;}
.ye6{bottom:97.558667pt;}
.y97{bottom:99.081333pt;}
.y30{bottom:100.113333pt;}
.y1ab{bottom:100.754667pt;}
.y65{bottom:103.650667pt;}
.y98{bottom:103.904000pt;}
.y1d4{bottom:104.741333pt;}
.yac{bottom:106.545333pt;}
.y168{bottom:109.149333pt;}
.ye5{bottom:113.085333pt;}
.ye4{bottom:115.572000pt;}
.y96{bottom:117.093333pt;}
.y2f{bottom:118.126667pt;}
.y1aa{bottom:118.766667pt;}
.y18f{bottom:119.176000pt;}
.y64{bottom:121.662667pt;}
.y1d3{bottom:121.956000pt;}
.yab{bottom:124.558667pt;}
.y167{bottom:127.162667pt;}
.y207{bottom:131.281333pt;}
.ye3{bottom:133.584000pt;}
.y95{bottom:135.106667pt;}
.y2e{bottom:136.138667pt;}
.y1a9{bottom:136.780000pt;}
.y1d2{bottom:139.172000pt;}
.y63{bottom:139.674667pt;}
.yaa{bottom:142.570667pt;}
.y166{bottom:145.174667pt;}
.y18e{bottom:147.645333pt;}
.y206{bottom:148.497333pt;}
.ye2{bottom:151.597333pt;}
.y93{bottom:153.118667pt;}
.y2d{bottom:154.150667pt;}
.y1d1{bottom:156.386667pt;}
.y62{bottom:157.688000pt;}
.y94{bottom:157.941333pt;}
.y196{bottom:158.097333pt;}
.ya9{bottom:160.584000pt;}
.y1a8{bottom:162.762667pt;}
.y165{bottom:163.188000pt;}
.y205{bottom:165.713333pt;}
.ye1{bottom:169.609333pt;}
.y92{bottom:171.132000pt;}
.y187{bottom:171.506667pt;}
.y2c{bottom:172.164000pt;}
.y1d0{bottom:173.602667pt;}
.y115{bottom:175.700000pt;}
.ya8{bottom:176.109333pt;}
.ya7{bottom:178.596000pt;}
.y164{bottom:181.200000pt;}
.y204{bottom:182.928000pt;}
.y61{bottom:183.670667pt;}
.ye0{bottom:187.621333pt;}
.y186{bottom:188.602667pt;}
.y91{bottom:189.144000pt;}
.y1cf{bottom:190.818667pt;}
.y114{bottom:193.713333pt;}
.ya6{bottom:196.608000pt;}
.y2b{bottom:198.146667pt;}
.y163{bottom:199.212000pt;}
.y203{bottom:200.144000pt;}
.ydf{bottom:205.634667pt;}
.y185{bottom:205.697333pt;}
.y1ce{bottom:208.033333pt;}
.y113{bottom:211.725333pt;}
.y60{bottom:214.621333pt;}
.y162{bottom:217.225333pt;}
.y202{bottom:217.358667pt;}
.y117{bottom:220.093733pt;}
.y90{bottom:220.256000pt;}
.ya5{bottom:222.590667pt;}
.y184{bottom:222.793333pt;}
.yde{bottom:223.646667pt;}
.y1cd{bottom:225.249333pt;}
.y1a7{bottom:229.737333pt;}
.y5f{bottom:232.633333pt;}
.y201{bottom:234.574667pt;}
.y161{bottom:235.237333pt;}
.y8e{bottom:237.352000pt;}
.y112{bottom:237.708000pt;}
.ydd{bottom:241.660000pt;}
.y8f{bottom:241.690667pt;}
.y1cc{bottom:242.464000pt;}
.y16c{bottom:242.730667pt;}
.y1a6{bottom:247.750667pt;}
.y5e{bottom:250.646667pt;}
.y200{bottom:251.790667pt;}
.y160{bottom:253.250667pt;}
.ya4{bottom:253.541333pt;}
.y8d{bottom:254.446667pt;}
.ydc{bottom:259.672000pt;}
.y1cb{bottom:259.680000pt;}
.y1a5{bottom:265.762667pt;}
.y2a{bottom:266.072000pt;}
.y111{bottom:268.658667pt;}
.y1ff{bottom:269.005333pt;}
.y15f{bottom:271.262667pt;}
.ya3{bottom:271.554667pt;}
.y6b{bottom:274.384000pt;}
.y5d{bottom:276.629333pt;}
.y1ca{bottom:276.896000pt;}
.ydb{bottom:277.684000pt;}
.y1a4{bottom:283.776000pt;}
.y1fe{bottom:286.221333pt;}
.y110{bottom:286.670667pt;}
.y15e{bottom:289.274667pt;}
.ya2{bottom:289.566667pt;}
.y1c9{bottom:294.110667pt;}
.yda{bottom:295.697333pt;}
.y29{bottom:300.024000pt;}
.y1a3{bottom:301.788000pt;}
.y1fd{bottom:303.437333pt;}
.y10f{bottom:304.684000pt;}
.y15c{bottom:307.288000pt;}
.y5c{bottom:307.580000pt;}
.y1c8{bottom:311.326667pt;}
.y15d{bottom:312.109333pt;}
.yd9{bottom:313.709333pt;}
.y28{bottom:318.037333pt;}
.y1a2{bottom:319.800000pt;}
.y1fc{bottom:320.652000pt;}
.y10e{bottom:322.696000pt;}
.y15b{bottom:325.300000pt;}
.y5b{bottom:325.592000pt;}
.y1c7{bottom:328.541333pt;}
.y27{bottom:336.049333pt;}
.y1a1{bottom:337.813333pt;}
.y1fb{bottom:337.868000pt;}
.y10d{bottom:340.709333pt;}
.ya1{bottom:341.118667pt;}
.y15a{bottom:343.313333pt;}
.y59{bottom:343.604000pt;}
.yd8{bottom:344.821333pt;}
.y1c6{bottom:345.757333pt;}
.y5a{bottom:348.426667pt;}
.y26{bottom:354.061333pt;}
.y1fa{bottom:355.082667pt;}
.y1a0{bottom:355.825333pt;}
.y10c{bottom:358.721333pt;}
.y58{bottom:359.130667pt;}
.y159{bottom:361.325333pt;}
.y57{bottom:361.617333pt;}
.yd7{bottom:361.917333pt;}
.y1c5{bottom:362.973333pt;}
.y19f{bottom:371.352000pt;}
.y24{bottom:372.074667pt;}
.y1f9{bottom:372.298667pt;}
.y19e{bottom:373.838667pt;}
.yd6{bottom:376.624000pt;}
.y10b{bottom:376.733333pt;}
.y25{bottom:376.896000pt;}
.y56{bottom:377.142667pt;}
.yd5{bottom:379.013333pt;}
.y158{bottom:379.337333pt;}
.y55{bottom:379.629333pt;}
.y1c4{bottom:380.188000pt;}
.y1f8{bottom:389.514667pt;}
.y23{bottom:390.086667pt;}
.y19d{bottom:391.850667pt;}
.y10a{bottom:394.746667pt;}
.yd4{bottom:396.108000pt;}
.y157{bottom:397.350667pt;}
.y1c3{bottom:397.404000pt;}
.y54{bottom:397.642667pt;}
.y18d{bottom:399.568000pt;}
.y1f7{bottom:406.729333pt;}
.y22{bottom:408.100000pt;}
.y6c{bottom:408.704400pt;}
.y195{bottom:410.272000pt;}
.y109{bottom:412.758667pt;}
.yd3{bottom:413.204000pt;}
.y1c2{bottom:414.618667pt;}
.y156{bottom:415.362667pt;}
.y53{bottom:415.654667pt;}
.y19c{bottom:417.833333pt;}
.y1f6{bottom:423.945333pt;}
.y21{bottom:426.112000pt;}
.yd2{bottom:427.912000pt;}
.yd1{bottom:430.300000pt;}
.y108{bottom:430.772000pt;}
.y1c1{bottom:431.834667pt;}
.y155{bottom:433.376000pt;}
.y52{bottom:433.666667pt;}
.y1f5{bottom:441.160000pt;}
.yc4{bottom:442.340704pt;}
.y20{bottom:444.124000pt;}
.yd0{bottom:447.396000pt;}
.y107{bottom:448.784000pt;}
.y1c0{bottom:449.050667pt;}
.y154{bottom:451.388000pt;}
.y51{bottom:451.680000pt;}
.y1f4{bottom:458.376000pt;}
.yc3{bottom:460.260472pt;}
.y1f{bottom:462.137333pt;}
.y1bf{bottom:466.265333pt;}
.y106{bottom:466.796000pt;}
.yad{bottom:467.333333pt;}
.y153{bottom:469.400000pt;}
.y50{bottom:469.692000pt;}
.y1f3{bottom:475.592000pt;}
.yc2{bottom:478.260400pt;}
.yc1{bottom:478.260472pt;}
.y1e{bottom:480.149333pt;}
.y1be{bottom:483.481333pt;}
.y104{bottom:484.809333pt;}
.y151{bottom:487.413333pt;}
.y4f{bottom:487.704000pt;}
.y105{bottom:489.630667pt;}
.y152{bottom:492.234667pt;}
.y1f2{bottom:492.806667pt;}
.yc0{bottom:496.260400pt;}
.ybf{bottom:496.260472pt;}
.y1d{bottom:498.162667pt;}
.y194{bottom:500.334667pt;}
.y1bd{bottom:500.696000pt;}
.y103{bottom:502.821333pt;}
.y150{bottom:505.425333pt;}
.y4e{bottom:505.717333pt;}
.y1f1{bottom:510.022667pt;}
.ybe{bottom:514.260400pt;}
.ybd{bottom:514.261656pt;}
.y1c{bottom:516.174667pt;}
.y1bc{bottom:517.912000pt;}
.y193{bottom:518.348000pt;}
.y102{bottom:520.834667pt;}
.y9f{bottom:521.244000pt;}
.y14f{bottom:523.438667pt;}
.y4d{bottom:523.729333pt;}
.y19b{bottom:525.656000pt;}
.y1f0{bottom:527.237333pt;}
.ya0{bottom:528.552000pt;}
.ybc{bottom:532.261584pt;}
.y1b{bottom:534.186667pt;}
.y1bb{bottom:535.128000pt;}
.y19a{bottom:536.360000pt;}
.y101{bottom:538.846667pt;}
.y14e{bottom:541.450667pt;}
.y4c{bottom:541.742667pt;}
.y1ef{bottom:544.453333pt;}
.y9e{bottom:546.564000pt;}
.ybb{bottom:550.261512pt;}
.y1a{bottom:552.200000pt;}
.y1ba{bottom:552.342667pt;}
.y100{bottom:556.858667pt;}
.y14d{bottom:559.462667pt;}
.y4b{bottom:559.754667pt;}
.y1ee{bottom:561.669333pt;}
.y192{bottom:564.829333pt;}
.yba{bottom:568.261440pt;}
.y1b9{bottom:569.558667pt;}
.y19{bottom:570.212000pt;}
.yff{bottom:574.872000pt;}
.y14c{bottom:577.476000pt;}
.y4a{bottom:577.766667pt;}
.y1ed{bottom:578.884000pt;}
.yb9{bottom:586.181208pt;}
.y1b8{bottom:586.773333pt;}
.y1b7{bottom:586.774667pt;}
.y16d{bottom:587.977733pt;}
.yfe{bottom:592.884000pt;}
.y14b{bottom:595.488000pt;}
.y49{bottom:595.780000pt;}
.y1ec{bottom:596.100000pt;}
.y16{bottom:601.707968pt;}
.y15{bottom:602.389333pt;}
.yb8{bottom:604.181136pt;}
.yfd{bottom:610.896000pt;}
.y1b6{bottom:611.960000pt;}
.y1eb{bottom:613.314667pt;}
.y14a{bottom:613.501333pt;}
.y48{bottom:613.792000pt;}
.y191{bottom:618.614667pt;}
.yb7{bottom:622.181064pt;}
.yfc{bottom:628.909333pt;}
.y1ea{bottom:630.530667pt;}
.y149{bottom:631.513333pt;}
.y47{bottom:631.805333pt;}
.y14{bottom:637.061333pt;}
.yb6{bottom:640.180992pt;}
.y199{bottom:644.436000pt;}
.yfb{bottom:646.921333pt;}
.y1b5{bottom:647.028000pt;}
.y1e9{bottom:647.746667pt;}
.y148{bottom:649.525333pt;}
.y46{bottom:649.817333pt;}
.y13{bottom:657.540000pt;}
.yb5{bottom:658.180920pt;}
.yfa{bottom:664.934667pt;}
.y1e8{bottom:664.961333pt;}
.y147{bottom:667.538667pt;}
.y45{bottom:667.829333pt;}
.y1b4{bottom:668.508000pt;}
.y12{bottom:669.340000pt;}
.yb4{bottom:676.180848pt;}
.y198{bottom:680.460000pt;}
.y1b3{bottom:682.017333pt;}
.y1e7{bottom:682.177333pt;}
.yf8{bottom:682.946667pt;}
.y69{bottom:683.356000pt;}
.y11{bottom:685.480000pt;}
.y146{bottom:685.550667pt;}
.y44{bottom:685.842667pt;}
.yf9{bottom:687.769333pt;}
.y6a{bottom:690.664000pt;}
.yb3{bottom:694.180776pt;}
.y1b2{bottom:695.526667pt;}
.y1e6{bottom:699.392000pt;}
.yf7{bottom:700.958667pt;}
.y145{bottom:703.564000pt;}
.y43{bottom:703.854667pt;}
.y18c{bottom:705.781333pt;}
.y10{bottom:705.958667pt;}
.y9d{bottom:708.677333pt;}
.yb2{bottom:712.100544pt;}
.y1e5{bottom:716.608000pt;}
.y1b1{bottom:717.005333pt;}
.yf6{bottom:718.972000pt;}
.y9c{bottom:719.874667pt;}
.y144{bottom:721.576000pt;}
.y42{bottom:721.868000pt;}
.yf{bottom:722.098667pt;}
.yb1{bottom:730.100472pt;}
.y1b0{bottom:730.514667pt;}
.y1e4{bottom:731.434667pt;}
.y1e3{bottom:733.824000pt;}
.ye{bottom:733.898667pt;}
.yf5{bottom:736.984000pt;}
.y143{bottom:739.588000pt;}
.y41{bottom:739.880000pt;}
.yb0{bottom:748.100400pt;}
.y1e2{bottom:751.038667pt;}
.y1af{bottom:751.994667pt;}
.yd{bottom:754.377333pt;}
.yf4{bottom:754.997333pt;}
.y20a{bottom:756.264000pt;}
.y40{bottom:757.892000pt;}
.y197{bottom:759.818667pt;}
.y9b{bottom:762.714667pt;}
.y1ae{bottom:765.504000pt;}
.yc{bottom:766.177333pt;}
.y1e1{bottom:768.254667pt;}
.y142{bottom:770.700000pt;}
.yf3{bottom:773.009333pt;}
.y209{bottom:773.480000pt;}
.y3f{bottom:775.905333pt;}
.y1ad{bottom:779.013333pt;}
.yae{bottom:781.380400pt;}
.yb{bottom:782.316000pt;}
.y141{bottom:785.406667pt;}
.y1e0{bottom:785.469333pt;}
.y140{bottom:787.796000pt;}
.y208{bottom:790.694667pt;}
.yf2{bottom:791.021333pt;}
.y1ac{bottom:792.522667pt;}
.y3e{bottom:793.917333pt;}
.y68{bottom:798.740000pt;}
.y1df{bottom:802.685333pt;}
.ya{bottom:802.796000pt;}
.y116{bottom:807.733333pt;}
.yf0{bottom:809.034667pt;}
.y9a{bottom:809.444000pt;}
.y3d{bottom:811.930667pt;}
.yf1{bottom:813.856000pt;}
.y190{bottom:816.752000pt;}
.y1de{bottom:819.901333pt;}
.y9{bottom:822.565333pt;}
.yef{bottom:827.046667pt;}
.y3c{bottom:829.942667pt;}
.y1dd{bottom:837.116000pt;}
.y8{bottom:840.578667pt;}
.yee{bottom:845.060000pt;}
.y67{bottom:845.469333pt;}
.y3b{bottom:847.954667pt;}
.y1dc{bottom:854.332000pt;}
.y7{bottom:858.590667pt;}
.yed{bottom:863.072000pt;}
.y16b{bottom:863.481333pt;}
.y3a{bottom:865.968000pt;}
.y66{bottom:870.789333pt;}
.y1db{bottom:871.546667pt;}
.yec{bottom:881.084000pt;}
.y39{bottom:883.980000pt;}
.y1da{bottom:888.762667pt;}
.y6{bottom:898.178667pt;}
.yeb{bottom:899.097333pt;}
.y38{bottom:901.993333pt;}
.y1d9{bottom:905.978667pt;}
.y18b{bottom:914.622667pt;}
.y18a{bottom:917.109333pt;}
.y99{bottom:917.518667pt;}
.y37{bottom:920.005333pt;}
.y1d8{bottom:923.193333pt;}
.yea{bottom:925.080000pt;}
.y5{bottom:925.198667pt;}
.y189{bottom:935.122667pt;}
.y16a{bottom:935.532000pt;}
.y36{bottom:938.017333pt;}
.y1d7{bottom:940.409333pt;}
.y4{bottom:952.217333pt;}
.y35{bottom:956.030667pt;}
.y1d6{bottom:957.624000pt;}
.y169{bottom:960.852000pt;}
.y188{bottom:961.105333pt;}
.y34{bottom:974.042667pt;}
.y1d5{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.ye8{bottom:989.569333pt;}
.y33{bottom:992.056000pt;}
.ye9{bottom:996.877333pt;}
.y1{bottom:1011.514667pt;}
.y32{bottom:1038.548000pt;}
.h1a{height:21.490625pt;}
.hf{height:22.088881pt;}
.ha{height:22.673858pt;}
.h1c{height:23.359375pt;}
.h1f{height:26.221488pt;}
.h8{height:27.076941pt;}
.h29{height:28.469216pt;}
.h11{height:29.064225pt;}
.h12{height:29.397999pt;}
.hc{height:29.433775pt;}
.hb{height:30.399505pt;}
.h16{height:31.067969pt;}
.h10{height:31.157778pt;}
.h14{height:31.443503pt;}
.h17{height:31.992188pt;}
.h20{height:33.378918pt;}
.h2c{height:33.713664pt;}
.h2a{height:34.144051pt;}
.h1e{height:34.430976pt;}
.h9{height:34.813542pt;}
.h19{height:35.039062pt;}
.h2b{height:35.052646pt;}
.h13{height:37.087439pt;}
.h26{height:37.937581pt;}
.hd{height:38.256384pt;}
.h1d{height:38.462187pt;}
.he{height:38.681455pt;}
.h4{height:38.947124pt;}
.h21{height:39.005558pt;}
.h1b{height:39.010156pt;}
.h27{height:39.010892pt;}
.h28{height:41.374214pt;}
.h24{height:41.379548pt;}
.h2{height:45.271688pt;}
.h18{height:46.718750pt;}
.h7{height:48.360277pt;}
.h6{height:48.365611pt;}
.h5{height:68.861952pt;}
.h3{height:91.114522pt;}
.h23{height:197.606667pt;}
.h15{height:372.425333pt;}
.h22{height:431.652000pt;}
.h25{height:566.192000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:169.178366pt;}
.w6{width:568.293467pt;}
.w5{width:568.994800pt;}
.w4{width:578.045467pt;}
.w7{width:585.812933pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xb1{left:-10.037200pt;}
.x49{left:-4.926533pt;}
.x8e{left:-3.730533pt;}
.xbe{left:-1.628400pt;}
.x0{left:0.000000pt;}
.xb3{left:18.282800pt;}
.x4b{left:23.393467pt;}
.x8f{left:24.590708pt;}
.x7{left:26.021437pt;}
.x2{left:51.606197pt;}
.xbf{left:92.851600pt;}
.xc0{left:99.491600pt;}
.x1{left:102.046667pt;}
.xbd{left:103.944400pt;}
.xcb{left:106.106667pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.xf4{left:110.848000pt;}
.x8d{left:112.353200pt;}
.x2a{left:118.220000pt;}
.x4f{left:127.633467pt;}
.x4{left:129.929333pt;}
.x50{left:131.633467pt;}
.x2b{left:134.188000pt;}
.x92{left:135.709467pt;}
.xa2{left:138.313333pt;}
.x93{left:146.189467pt;}
.x94{left:150.589467pt;}
.xde{left:152.602667pt;}
.xd1{left:154.753333pt;}
.xa7{left:156.284000pt;}
.xc8{left:158.790667pt;}
.xd2{left:160.697333pt;}
.x89{left:163.501333pt;}
.x8{left:167.993333pt;}
.xdf{left:169.892000pt;}
.x68{left:171.265333pt;}
.xca{left:173.864000pt;}
.x8a{left:175.210667pt;}
.xf5{left:176.846667pt;}
.x22{left:181.457333pt;}
.x52{left:183.593333pt;}
.x69{left:184.549333pt;}
.x9c{left:185.638667pt;}
.xe5{left:190.292000pt;}
.x6a{left:191.324000pt;}
.x2e{left:193.101333pt;}
.xc2{left:196.746667pt;}
.x87{left:197.705333pt;}
.x2f{left:199.562667pt;}
.x9a{left:201.869467pt;}
.x6b{left:204.606667pt;}
.x9b{left:205.549467pt;}
.xa8{left:211.774667pt;}
.x34{left:214.545333pt;}
.xc3{left:215.877333pt;}
.xbb{left:217.484000pt;}
.xa5{left:219.386667pt;}
.x3a{left:224.550667pt;}
.xfe{left:225.473333pt;}
.xbc{left:226.537333pt;}
.x35{left:227.828000pt;}
.x3b{left:231.012000pt;}
.x40{left:233.690667pt;}
.x3c{left:234.778667pt;}
.xfd{left:237.545333pt;}
.x95{left:239.389467pt;}
.x96{left:243.389467pt;}
.x41{left:246.973333pt;}
.x42{left:250.361333pt;}
.x19{left:251.330667pt;}
.xaa{left:254.206667pt;}
.x43{left:263.644000pt;}
.x1a{left:264.614667pt;}
.x9d{left:265.606667pt;}
.x1b{left:267.969333pt;}
.xab{left:270.877333pt;}
.x9e{left:272.910667pt;}
.x2d{left:274.562667pt;}
.x61{left:278.325333pt;}
.x63{left:279.985333pt;}
.x1c{left:281.252000pt;}
.xe9{left:283.585333pt;}
.x1d{left:284.606667pt;}
.x55{left:286.102667pt;}
.x62{left:288.016000pt;}
.xe2{left:291.200000pt;}
.xe0{left:292.122667pt;}
.x56{left:293.406667pt;}
.x1e{left:297.889333pt;}
.x30{left:298.854667pt;}
.x64{left:300.042667pt;}
.xea{left:302.717333pt;}
.x77{left:304.405333pt;}
.x31{left:307.601333pt;}
.x65{left:313.326667pt;}
.x3e{left:315.728000pt;}
.x53{left:319.930667pt;}
.x3f{left:321.672000pt;}
.x5c{left:322.670667pt;}
.x54{left:325.908000pt;}
.x5d{left:328.614667pt;}
.x36{left:332.141333pt;}
.x37{left:338.085333pt;}
.xc1{left:339.994667pt;}
.x32{left:341.502667pt;}
.x13{left:343.280000pt;}
.xb0{left:344.557333pt;}
.xf6{left:348.358667pt;}
.xeb{left:349.282667pt;}
.x33{left:350.302667pt;}
.x4c{left:352.193467pt;}
.xda{left:355.097333pt;}
.x14{left:356.564000pt;}
.x4d{left:357.633467pt;}
.xf7{left:360.556000pt;}
.xe6{left:362.232000pt;}
.x15{left:363.338667pt;}
.xe1{left:364.436000pt;}
.xdb{left:365.566667pt;}
.xe8{left:367.586667pt;}
.xe7{left:368.693333pt;}
.x1f{left:369.648000pt;}
.xdc{left:371.104000pt;}
.xac{left:372.477333pt;}
.xe3{left:374.282667pt;}
.x7a{left:375.449333pt;}
.x16{left:376.621333pt;}
.x7b{left:378.836000pt;}
.x25{left:381.549333pt;}
.xad{left:385.986667pt;}
.x7c{left:392.120000pt;}
.x26{left:393.748000pt;}
.xae{left:398.452000pt;}
.xb{left:401.464000pt;}
.xd6{left:404.834667pt;}
.x98{left:405.949467pt;}
.xed{left:407.058667pt;}
.xc{left:408.105333pt;}
.x99{left:409.629467pt;}
.xd7{left:410.545333pt;}
.xdd{left:411.489333pt;}
.xee{left:412.770667pt;}
.xd{left:414.880000pt;}
.x7f{left:416.876000pt;}
.xc9{left:418.152000pt;}
.xb6{left:419.088000pt;}
.xe{left:421.521333pt;}
.x80{left:423.337333pt;}
.xb7{left:425.032000pt;}
.x81{left:430.112000pt;}
.xef{left:431.142667pt;}
.x2c{left:433.881333pt;}
.xf0{left:436.854667pt;}
.x23{left:439.000000pt;}
.x3d{left:440.314667pt;}
.x5b{left:443.034667pt;}
.x24{left:445.641333pt;}
.xc6{left:446.640000pt;}
.x58{left:447.532000pt;}
.x27{left:448.614667pt;}
.x59{left:450.829333pt;}
.x20{left:455.533333pt;}
.xd8{left:457.346667pt;}
.x51{left:458.273467pt;}
.x4e{left:460.113467pt;}
.xcd{left:462.289333pt;}
.x5a{left:464.113333pt;}
.xc4{left:467.501333pt;}
.x21{left:468.817333pt;}
.x88{left:469.849333pt;}
.xa6{left:471.561333pt;}
.xc5{left:473.445333pt;}
.x85{left:476.762667pt;}
.xc7{left:479.817333pt;}
.xd3{left:481.586667pt;}
.x9f{left:482.821333pt;}
.x86{left:485.533333pt;}
.xd4{left:487.298667pt;}
.xa0{left:490.066667pt;}
.xce{left:491.889333pt;}
.x90{left:501.069467pt;}
.x91{left:505.069467pt;}
.xd9{left:506.289333pt;}
.xd5{left:510.878667pt;}
.x6c{left:513.201333pt;}
.x6d{left:519.074667pt;}
.x6f{left:521.088000pt;}
.x17{left:522.430667pt;}
.x82{left:523.874667pt;}
.x70{left:527.032000pt;}
.x6e{left:529.306667pt;}
.xa9{left:530.253333pt;}
.xb8{left:533.580000pt;}
.x18{left:535.714667pt;}
.x83{left:537.424000pt;}
.x8b{left:541.045333pt;}
.x7d{left:542.013333pt;}
.xa1{left:544.546667pt;}
.xf{left:550.138667pt;}
.x71{left:552.421333pt;}
.xfc{left:553.734667pt;}
.x44{left:555.137333pt;}
.x10{left:556.781333pt;}
.xb9{left:558.962667pt;}
.x45{left:560.849333pt;}
.x7e{left:561.978667pt;}
.x11{left:563.509333pt;}
.x67{left:564.608000pt;}
.xa3{left:566.936000pt;}
.x46{left:571.134667pt;}
.xa4{left:574.241333pt;}
.xb2{left:575.562667pt;}
.x12{left:576.792000pt;}
.x60{left:578.098667pt;}
.x4a{left:579.873467pt;}
.x47{left:581.202667pt;}
.x5e{left:583.656000pt;}
.xf8{left:588.220000pt;}
.x76{left:590.696000pt;}
.xf1{left:592.257333pt;}
.x48{left:593.669333pt;}
.x97{left:595.469467pt;}
.x5f{left:596.940000pt;}
.xf9{left:600.417333pt;}
.xcf{left:604.009333pt;}
.xf2{left:605.390667pt;}
.xfa{left:616.905333pt;}
.x78{left:617.986667pt;}
.x72{left:620.265333pt;}
.x6{left:623.413317pt;}
.x38{left:624.817333pt;}
.x84{left:636.336000pt;}
.x39{left:638.100000pt;}
.xcc{left:641.365333pt;}
.x57{left:642.697333pt;}
.xfb{left:643.653333pt;}
.xba{left:644.740000pt;}
.x28{left:649.910667pt;}
.xe4{left:650.821333pt;}
.x73{left:652.177333pt;}
.xb4{left:653.197333pt;}
.xd0{left:655.264000pt;}
.x9{left:658.041333pt;}
.xb5{left:660.501333pt;}
.xf3{left:661.886667pt;}
.xa{left:663.985333pt;}
.x29{left:669.029333pt;}
.x8c{left:673.105333pt;}
.xec{left:675.846667pt;}
.x74{left:677.554667pt;}
.xaf{left:678.905333pt;}
.x79{left:682.660000pt;}
.x66{left:685.941333pt;}
.x75{left:690.020000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  