
    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_f2571d815fb5ac7e08bd4af2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3cc2c72c2c63bd1d1e4bc453.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.151000;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_67d26db415d5c6571bbcb5a9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_889f38c3c265efe3e2aa9ad8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_570cb53194b4abc50f0622e9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761000;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_a6dc4de9ce88ae3d3b160bc1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933000;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_9214f8a4109b66e18e7a1d55.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_48cd314e7b42456b3b100856.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006836;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_05fa790406eaf7c604873392.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.206055;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_e458ed42e7b4efe74a636f10.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.021484;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_4783b1d49c9898c53f8658dd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8665cdb10580d15081edee66.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.040000;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_579ce1141758bba935fe014f.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_8bb7382ce53fa6574a3a77e0.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_58a9f0d1d26e380ea3bc9026.woff2')format("woff");}.fff{font-family:fff;line-height:1.006836;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_9e9fda4f8891a6b1c2f82af3.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.206055;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_4783b1d49c9898c53f8658dd.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_c97ed2bc59b9aa8590627dff.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.021484;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_3fbdc4a2180a68bd40b7fce9.woff2')format("woff");}.ff13{font-family:ff13;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;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m1c{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m2{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);}
.m1d{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);}
.m19{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);}
.m24{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);}
.m5{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);}
.m16{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);}
.m4{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);}
.m17{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);}
.m26{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);}
.m13{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);}
.m22{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);}
.m28{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);}
.m12{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);}
.mc{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);}
.m1e{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);}
.m20{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);}
.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);}
.m2d{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);}
.m2b{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);}
.m11{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m9{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);}
.m29{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);}
.m14{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m7{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);}
.m27{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);}
.m1a{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);}
.ma{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);}
.m6{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);}
.me{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);}
.m2c{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);}
.m2a{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);}
.m3{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);}
.m10{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);}
.v1{vertical-align:-17.358000px;}
.v2{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.ls29{letter-spacing:-0.170440px;}
.ls4f{letter-spacing:-0.168336px;}
.ls56{letter-spacing:-0.150300px;}
.ls24{letter-spacing:-0.138877px;}
.ls1e{letter-spacing:-0.126252px;}
.ls55{letter-spacing:-0.120240px;}
.ls51{letter-spacing:-0.114228px;}
.ls2a{letter-spacing:-0.107314px;}
.ls22{letter-spacing:-0.101002px;}
.ls54{letter-spacing:-0.090180px;}
.ls2b{letter-spacing:-0.088376px;}
.ls4a{letter-spacing:-0.084168px;}
.ls20{letter-spacing:-0.082064px;}
.ls25{letter-spacing:-0.075751px;}
.ls4d{letter-spacing:-0.072144px;}
.ls57{letter-spacing:-0.054108px;}
.ls50{letter-spacing:-0.048096px;}
.ls28{letter-spacing:-0.044188px;}
.ls45{letter-spacing:-0.042084px;}
.ls26{letter-spacing:-0.037876px;}
.ls49{letter-spacing:-0.036072px;}
.ls48{letter-spacing:-0.030060px;}
.ls23{letter-spacing:-0.025250px;}
.ls4e{letter-spacing:-0.024048px;}
.ls21{letter-spacing:-0.018938px;}
.ls4b{letter-spacing:-0.018036px;}
.ls1f{letter-spacing:-0.012625px;}
.ls46{letter-spacing:-0.012024px;}
.ls53{letter-spacing:-0.010800px;}
.ls27{letter-spacing:-0.006313px;}
.ls4c{letter-spacing:-0.006012px;}
.ls52{letter-spacing:-0.005400px;}
.ls8{letter-spacing:0.000000px;}
.ls65{letter-spacing:0.000676px;}
.ls5e{letter-spacing:0.000800px;}
.ls71{letter-spacing:0.000823px;}
.ls63{letter-spacing:0.001036px;}
.ls5a{letter-spacing:0.001584px;}
.ls5{letter-spacing:0.001933px;}
.ls4{letter-spacing:0.001952px;}
.ls62{letter-spacing:0.002544px;}
.ls64{letter-spacing:0.002841px;}
.ls73{letter-spacing:0.002925px;}
.ls67{letter-spacing:0.003179px;}
.ls66{letter-spacing:0.003634px;}
.ls42{letter-spacing:0.006012px;}
.ls41{letter-spacing:0.010800px;}
.ls37{letter-spacing:0.012024px;}
.ls14{letter-spacing:0.012625px;}
.ls3c{letter-spacing:0.016200px;}
.ls10{letter-spacing:0.017010px;}
.ls3a{letter-spacing:0.018036px;}
.ls19{letter-spacing:0.018938px;}
.ls3e{letter-spacing:0.021600px;}
.ls1b{letter-spacing:0.025250px;}
.ls40{letter-spacing:0.027000px;}
.ls38{letter-spacing:0.030060px;}
.lse{letter-spacing:0.031563px;}
.ls11{letter-spacing:0.034020px;}
.ls36{letter-spacing:0.036072px;}
.ls1d{letter-spacing:0.037876px;}
.ls3b{letter-spacing:0.042084px;}
.ls30{letter-spacing:0.043092px;}
.ls3d{letter-spacing:0.043200px;}
.ls15{letter-spacing:0.044188px;}
.ls9{letter-spacing:0.045247px;}
.ls39{letter-spacing:0.048096px;}
.lsd{letter-spacing:0.050501px;}
.ls13{letter-spacing:0.051030px;}
.ls32{letter-spacing:0.052668px;}
.ls44{letter-spacing:0.054108px;}
.lsb{letter-spacing:0.055301px;}
.ls3f{letter-spacing:0.059400px;}
.ls12{letter-spacing:0.062370px;}
.lsf{letter-spacing:0.063126px;}
.ls43{letter-spacing:0.066132px;}
.ls17{letter-spacing:0.069439px;}
.ls1a{letter-spacing:0.075751px;}
.ls18{letter-spacing:0.107314px;}
.ls47{letter-spacing:0.114228px;}
.ls35{letter-spacing:0.120240px;}
.ls16{letter-spacing:0.126252px;}
.ls33{letter-spacing:0.177156px;}
.ls34{letter-spacing:0.180360px;}
.lsc{letter-spacing:0.186014px;}
.ls1c{letter-spacing:0.189378px;}
.ls31{letter-spacing:0.191520px;}
.lsa{letter-spacing:0.201096px;}
.ls2e{letter-spacing:0.542815px;}
.ls2c{letter-spacing:0.548815px;}
.ls2d{letter-spacing:0.567662px;}
.ls1{letter-spacing:2.316910px;}
.ls0{letter-spacing:10.461300px;}
.ls7{letter-spacing:11.954850px;}
.ls77{letter-spacing:12.387135px;}
.ls6b{letter-spacing:12.411624px;}
.ls6e{letter-spacing:13.097459px;}
.ls75{letter-spacing:13.203341px;}
.ls79{letter-spacing:13.215750px;}
.ls7a{letter-spacing:13.219039px;}
.ls60{letter-spacing:13.299380px;}
.ls6d{letter-spacing:13.338635px;}
.ls76{letter-spacing:13.344518px;}
.ls68{letter-spacing:13.363086px;}
.ls69{letter-spacing:13.385894px;}
.ls72{letter-spacing:13.430160px;}
.ls5c{letter-spacing:13.448400px;}
.ls61{letter-spacing:13.454400px;}
.ls5d{letter-spacing:13.525910px;}
.ls70{letter-spacing:13.598983px;}
.ls6c{letter-spacing:13.599380px;}
.ls5b{letter-spacing:13.614230px;}
.ls6f{letter-spacing:13.879812px;}
.ls2{letter-spacing:13.952765px;}
.ls58{letter-spacing:14.871759px;}
.ls2f{letter-spacing:14.906250px;}
.ls59{letter-spacing:14.944665px;}
.ls78{letter-spacing:14.997459px;}
.ls74{letter-spacing:16.562165px;}
.ls6a{letter-spacing:17.068047px;}
.ls5f{letter-spacing:20.144518px;}
.ls3{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.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;}
}
.wscd{word-spacing:-60.120000px;}
.wsce{word-spacing:-54.000000px;}
.ws197{word-spacing:-40.580133px;}
.ws4a{word-spacing:-15.611060px;}
.wscb{word-spacing:-15.066072px;}
.wsc9{word-spacing:-15.042024px;}
.wscc{word-spacing:-14.993928px;}
.wsf{word-spacing:-14.943900px;}
.ws13{word-spacing:-13.674310px;}
.ws129{word-spacing:-13.449600px;}
.ws47{word-spacing:-12.769596px;}
.ws48{word-spacing:-12.568500px;}
.wsc7{word-spacing:-12.161520px;}
.wsc8{word-spacing:-11.970000px;}
.ws2e{word-spacing:-11.955150px;}
.ws14{word-spacing:-11.357400px;}
.ws7{word-spacing:-10.460700px;}
.ws77{word-spacing:-3.755997px;}
.ws76{word-spacing:-3.673933px;}
.ws8d{word-spacing:-3.108331px;}
.ws93{word-spacing:-3.048556px;}
.ws125{word-spacing:-3.012710px;}
.ws69{word-spacing:-2.935359px;}
.ws67{word-spacing:-2.897483px;}
.wsf1{word-spacing:-2.825640px;}
.ws68{word-spacing:-2.783857px;}
.ws94{word-spacing:-2.630126px;}
.ws70{word-spacing:-2.556603px;}
.wsb7{word-spacing:-2.510575px;}
.ws111{word-spacing:-2.450800px;}
.ws6e{word-spacing:-2.228348px;}
.ws7b{word-spacing:-2.190472px;}
.ws6f{word-spacing:-2.165222px;}
.ws7a{word-spacing:-2.152597px;}
.ws186{word-spacing:-2.151936px;}
.ws1a{word-spacing:-1.990541px;}
.ws18a{word-spacing:-1.936742px;}
.wsb4{word-spacing:-1.912819px;}
.ws60{word-spacing:-1.843279px;}
.ws7d{word-spacing:-1.830654px;}
.ws2{word-spacing:-1.799240px;}
.ws53{word-spacing:-1.793268px;}
.ws21{word-spacing:-1.775347px;}
.ws7c{word-spacing:-1.748590px;}
.ws63{word-spacing:-1.729350px;}
.ws1b{word-spacing:-1.721549px;}
.ws62{word-spacing:-1.712340px;}
.wsaa{word-spacing:-1.673717px;}
.ws11c{word-spacing:-1.613941px;}
.wsc5{word-spacing:-1.494390px;}
.ws183{word-spacing:-1.398758px;}
.ws43{word-spacing:-1.374839px;}
.ws24{word-spacing:-1.344960px;}
.ws3{word-spacing:-1.338970px;}
.wsba{word-spacing:-1.255288px;}
.ws167{word-spacing:-1.237363px;}
.wsa5{word-spacing:-1.195512px;}
.ws4{word-spacing:-1.171598px;}
.ws8e{word-spacing:-1.135736px;}
.wscf{word-spacing:-1.129766px;}
.wsdc{word-spacing:-1.100196px;}
.ws17a{word-spacing:-1.075968px;}
.ws127{word-spacing:-1.022170px;}
.ws11{word-spacing:-1.016185px;}
.wsdb{word-spacing:-0.973944px;}
.ws12{word-spacing:-0.956410px;}
.wsdd{word-spacing:-0.943884px;}
.ws16e{word-spacing:-0.914573px;}
.wsa9{word-spacing:-0.896634px;}
.ws9b{word-spacing:-0.836858px;}
.ws16b{word-spacing:-0.806976px;}
.ws1{word-spacing:-0.795013px;}
.ws32{word-spacing:-0.777083px;}
.ws4c{word-spacing:-0.753178px;}
.ws119{word-spacing:-0.717307px;}
.wsab{word-spacing:-0.657532px;}
.wseb{word-spacing:-0.613224px;}
.wsac{word-spacing:-0.597756px;}
.ws0{word-spacing:-0.572459px;}
.wsea{word-spacing:-0.553104px;}
.ws3e{word-spacing:-0.537980px;}
.ws59{word-spacing:-0.530258px;}
.wsec{word-spacing:-0.498996px;}
.ws19c{word-spacing:-0.484186px;}
.ws3d{word-spacing:-0.478205px;}
.wsd5{word-spacing:-0.418429px;}
.ws16d{word-spacing:-0.376589px;}
.ws10e{word-spacing:-0.366535px;}
.ws10d{word-spacing:-0.364468px;}
.ws110{word-spacing:-0.362025px;}
.ws10f{word-spacing:-0.360526px;}
.ws2f{word-spacing:-0.358654px;}
.ws9c{word-spacing:-0.353758px;}
.ws78{word-spacing:-0.309317px;}
.wsdf{word-spacing:-0.306612px;}
.wsf3{word-spacing:-0.300600px;}
.ws97{word-spacing:-0.298878px;}
.ws56{word-spacing:-0.291589px;}
.ws139{word-spacing:-0.284398px;}
.wsd6{word-spacing:-0.277704px;}
.wsfd{word-spacing:-0.270540px;}
.ws1d{word-spacing:-0.268992px;}
.ws2c{word-spacing:-0.239102px;}
.wsde{word-spacing:-0.234468px;}
.ws79{word-spacing:-0.233566px;}
.ws1f{word-spacing:-0.215194px;}
.ws36{word-spacing:-0.179327px;}
.ws20{word-spacing:-0.161395px;}
.ws57{word-spacing:-0.145795px;}
.wsb2{word-spacing:-0.140220px;}
.wsd7{word-spacing:-0.138852px;}
.wsb3{word-spacing:-0.138003px;}
.ws29{word-spacing:-0.119551px;}
.ws12f{word-spacing:-0.107597px;}
.ws117{word-spacing:-0.086981px;}
.ws49{word-spacing:-0.063126px;}
.wsca{word-spacing:-0.060120px;}
.ws10{word-spacing:-0.059776px;}
.wsbd{word-spacing:-0.054626px;}
.ws26{word-spacing:-0.053798px;}
.ws15{word-spacing:-0.047821px;}
.ws189{word-spacing:-0.009725px;}
.ws19a{word-spacing:-0.008429px;}
.ws166{word-spacing:-0.008016px;}
.ws148{word-spacing:-0.007459px;}
.ws145{word-spacing:-0.006998px;}
.ws73{word-spacing:-0.006313px;}
.ws136{word-spacing:-0.005933px;}
.ws144{word-spacing:-0.005866px;}
.ws162{word-spacing:-0.004733px;}
.ws135{word-spacing:-0.003955px;}
.ws140{word-spacing:-0.003725px;}
.ws16a{word-spacing:-0.003014px;}
.ws17f{word-spacing:-0.002822px;}
.ws130{word-spacing:-0.002755px;}
.ws16c{word-spacing:-0.002621px;}
.ws13c{word-spacing:-0.002429px;}
.ws12e{word-spacing:-0.002304px;}
.ws165{word-spacing:-0.002198px;}
.ws175{word-spacing:-0.001622px;}
.ws142{word-spacing:-0.001267px;}
.ws152{word-spacing:-0.001200px;}
.ws19b{word-spacing:-0.001037px;}
.ws1a0{word-spacing:-0.000998px;}
.ws2d{word-spacing:-0.000868px;}
.ws14f{word-spacing:-0.000806px;}
.ws14d{word-spacing:-0.000557px;}
.ws18f{word-spacing:-0.000384px;}
.ws19f{word-spacing:-0.000288px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:0.001988px;}
.ws121{word-spacing:0.053798px;}
.wsf2{word-spacing:0.054108px;}
.ws113{word-spacing:0.058617px;}
.ws3f{word-spacing:0.059776px;}
.ws4b{word-spacing:0.107597px;}
.ws3b{word-spacing:0.119551px;}
.ws80{word-spacing:0.119939px;}
.ws81{word-spacing:0.126252px;}
.ws116{word-spacing:0.131110px;}
.ws71{word-spacing:0.138877px;}
.ws66{word-spacing:0.141750px;}
.ws115{word-spacing:0.145145px;}
.ws114{word-spacing:0.152979px;}
.ws1c{word-spacing:0.161395px;}
.ws39{word-spacing:0.179327px;}
.wsfb{word-spacing:0.183600px;}
.ws61{word-spacing:0.202003px;}
.ws128{word-spacing:0.215194px;}
.ws3c{word-spacing:0.239102px;}
.ws72{word-spacing:0.239879px;}
.ws22{word-spacing:0.268992px;}
.ws3a{word-spacing:0.298878px;}
.ws149{word-spacing:0.301842px;}
.wsd0{word-spacing:0.322790px;}
.ws112{word-spacing:0.354930px;}
.ws41{word-spacing:0.358654px;}
.ws120{word-spacing:0.376589px;}
.ws6d{word-spacing:0.410319px;}
.ws9f{word-spacing:0.418429px;}
.ws16f{word-spacing:0.430387px;}
.ws6a{word-spacing:0.435569px;}
.wsc4{word-spacing:0.532024px;}
.wsc2{word-spacing:0.535341px;}
.wsc1{word-spacing:0.537980px;}
.ws158{word-spacing:0.537984px;}
.wsc3{word-spacing:0.538362px;}
.ws6b{word-spacing:0.555509px;}
.ws180{word-spacing:0.591782px;}
.ws9a{word-spacing:0.597756px;}
.ws118{word-spacing:0.657532px;}
.ws98{word-spacing:0.717307px;}
.ws4e{word-spacing:0.777083px;}
.ws82{word-spacing:0.820638px;}
.ws4d{word-spacing:0.836858px;}
.ws14e{word-spacing:0.860774px;}
.ws8b{word-spacing:0.896634px;}
.ws13b{word-spacing:0.914573px;}
.ws33{word-spacing:0.956410px;}
.ws19{word-spacing:0.968371px;}
.ws51{word-spacing:1.016185px;}
.ws174{word-spacing:1.022170px;}
.ws11d{word-spacing:1.135736px;}
.wsfc{word-spacing:1.142280px;}
.ws100{word-spacing:1.172340px;}
.ws193{word-spacing:1.182395px;}
.ws191{word-spacing:1.183565px;}
.ws83{word-spacing:1.237270px;}
.ws92{word-spacing:1.255288px;}
.ws159{word-spacing:1.291162px;}
.ws40{word-spacing:1.315063px;}
.wse{word-spacing:1.380812px;}
.wsb5{word-spacing:1.434614px;}
.wsff{word-spacing:1.521036px;}
.ws52{word-spacing:1.554166px;}
.wsfe{word-spacing:1.557108px;}
.ws194{word-spacing:1.560154px;}
.wsf5{word-spacing:1.582200px;}
.wsf4{word-spacing:1.609200px;}
.ws4f{word-spacing:1.613941px;}
.ws190{word-spacing:1.613952px;}
.wsb9{word-spacing:1.673717px;}
.ws90{word-spacing:1.733492px;}
.ws14a{word-spacing:1.775347px;}
.wsbb{word-spacing:1.793268px;}
.ws18{word-spacing:1.829146px;}
.ws30{word-spacing:1.853044px;}
.wsa8{word-spacing:1.912819px;}
.ws9e{word-spacing:1.972595px;}
.wsc0{word-spacing:2.032370px;}
.ws181{word-spacing:2.044339px;}
.ws2a{word-spacing:2.092146px;}
.ws91{word-spacing:2.151922px;}
.ws163{word-spacing:2.151936px;}
.ws164{word-spacing:2.163826px;}
.ws19e{word-spacing:2.205734px;}
.wsd4{word-spacing:2.211697px;}
.wse8{word-spacing:2.236464px;}
.ws46{word-spacing:2.271473px;}
.wse9{word-spacing:2.296584px;}
.ws12a{word-spacing:2.313331px;}
.ws12b{word-spacing:2.319343px;}
.ws42{word-spacing:2.331248px;}
.ws5a{word-spacing:2.379850px;}
.ws178{word-spacing:2.420928px;}
.ws5b{word-spacing:2.449289px;}
.ws99{word-spacing:2.450800px;}
.ws5{word-spacing:2.528078px;}
.ws25{word-spacing:2.528525px;}
.ws96{word-spacing:2.570351px;}
.wsda{word-spacing:2.615220px;}
.wsc6{word-spacing:2.630126px;}
.ws124{word-spacing:2.636122px;}
.wsf7{word-spacing:2.646000px;}
.wsf8{word-spacing:2.678400px;}
.wsb1{word-spacing:2.689902px;}
.ws11f{word-spacing:2.749678px;}
.ws23{word-spacing:2.797517px;}
.ws8a{word-spacing:2.809453px;}
.ws15b{word-spacing:2.851315px;}
.wsa3{word-spacing:2.869229px;}
.ws16{word-spacing:2.869236px;}
.ws108{word-spacing:2.927844px;}
.ws35{word-spacing:2.929004px;}
.wsd2{word-spacing:2.958912px;}
.ws198{word-spacing:2.960496px;}
.ws31{word-spacing:2.988780px;}
.ws15d{word-spacing:2.996124px;}
.ws184{word-spacing:3.009857px;}
.ws185{word-spacing:3.012710px;}
.wsd9{word-spacing:3.018024px;}
.ws137{word-spacing:3.066509px;}
.ws75{word-spacing:3.105799px;}
.ws179{word-spacing:3.120307px;}
.ws109{word-spacing:3.126240px;}
.ws74{word-spacing:3.149987px;}
.ws2b{word-spacing:3.168107px;}
.ws170{word-spacing:3.174106px;}
.ws176{word-spacing:3.219053px;}
.ws195{word-spacing:3.219168px;}
.ws13f{word-spacing:3.219408px;}
.ws27{word-spacing:3.219667px;}
.ws182{word-spacing:3.219869px;}
.ws153{word-spacing:3.220061px;}
.ws160{word-spacing:3.220186px;}
.ws17d{word-spacing:3.220656px;}
.ws19d{word-spacing:3.221030px;}
.ws173{word-spacing:3.221088px;}
.ws151{word-spacing:3.221184px;}
.ws156{word-spacing:3.221357px;}
.ws15e{word-spacing:3.221578px;}
.ws157{word-spacing:3.221626px;}
.ws18b{word-spacing:3.221741px;}
.ws154{word-spacing:3.222326px;}
.ws15a{word-spacing:3.222394px;}
.ws17c{word-spacing:3.222845px;}
.ws12c{word-spacing:3.222883px;}
.ws187{word-spacing:3.222922px;}
.ws17e{word-spacing:3.224717px;}
.ws150{word-spacing:3.224880px;}
.ws14b{word-spacing:3.225571px;}
.ws161{word-spacing:3.225869px;}
.ws188{word-spacing:3.226637px;}
.ws13a{word-spacing:3.227904px;}
.ws169{word-spacing:3.252376px;}
.ws134{word-spacing:3.281702px;}
.wse3{word-spacing:3.306600px;}
.wsb8{word-spacing:3.347434px;}
.ws122{word-spacing:3.389299px;}
.ws171{word-spacing:3.401678px;}
.ws199{word-spacing:3.443098px;}
.wsbc{word-spacing:3.466985px;}
.ws5e{word-spacing:3.471930px;}
.ws18c{word-spacing:3.496896px;}
.ws5f{word-spacing:3.516118px;}
.ws168{word-spacing:3.517549px;}
.ws89{word-spacing:3.526760px;}
.ws18d{word-spacing:3.572748px;}
.ws28{word-spacing:3.586536px;}
.ws15c{word-spacing:3.604493px;}
.ws11a{word-spacing:3.646312px;}
.wsb0{word-spacing:3.765863px;}
.ws13d{word-spacing:3.819686px;}
.wsa4{word-spacing:3.825638px;}
.ws7f{word-spacing:3.838061px;}
.wsa0{word-spacing:3.885414px;}
.ws17b{word-spacing:3.981082px;}
.ws7e{word-spacing:3.989563px;}
.ws38{word-spacing:4.004965px;}
.wsbf{word-spacing:4.064741px;}
.ws1e{word-spacing:4.088678px;}
.ws37{word-spacing:4.124516px;}
.wsf6{word-spacing:4.125600px;}
.ws126{word-spacing:4.142477px;}
.wsf0{word-spacing:4.172328px;}
.ws196{word-spacing:4.196275px;}
.ws143{word-spacing:4.250074px;}
.ws177{word-spacing:4.357670px;}
.ws11b{word-spacing:4.363619px;}
.wsed{word-spacing:4.376736px;}
.ws8c{word-spacing:4.423394px;}
.ws15f{word-spacing:4.465267px;}
.wsef{word-spacing:4.466916px;}
.wsee{word-spacing:4.587156px;}
.ws55{word-spacing:4.602721px;}
.ws6c{word-spacing:4.608198px;}
.ws88{word-spacing:4.728137px;}
.ws105{word-spacing:4.731444px;}
.ws45{word-spacing:4.782048px;}
.ws106{word-spacing:4.785552px;}
.ws107{word-spacing:4.791564px;}
.ws44{word-spacing:4.841824px;}
.ws13e{word-spacing:4.841856px;}
.wsa2{word-spacing:4.961375px;}
.wsa1{word-spacing:5.021150px;}
.wsbe{word-spacing:5.080926px;}
.ws10a{word-spacing:5.110200px;}
.ws146{word-spacing:5.110848px;}
.ws147{word-spacing:5.164646px;}
.wsae{word-spacing:5.200477px;}
.ws132{word-spacing:5.272243px;}
.ws133{word-spacing:5.297119px;}
.wsa7{word-spacing:5.379804px;}
.ws104{word-spacing:5.428836px;}
.ws10b{word-spacing:5.440860px;}
.wsc{word-spacing:5.481407px;}
.wsad{word-spacing:5.499355px;}
.ws10c{word-spacing:5.549076px;}
.wsfa{word-spacing:5.578200px;}
.wsf9{word-spacing:5.594400px;}
.ws95{word-spacing:5.618906px;}
.wsaf{word-spacing:5.798233px;}
.wse0{word-spacing:5.819616px;}
.ws54{word-spacing:5.917784px;}
.ws103{word-spacing:5.975928px;}
.ws18e{word-spacing:6.025421px;}
.ws9d{word-spacing:6.037336px;}
.ws34{word-spacing:6.097111px;}
.ws141{word-spacing:6.133018px;}
.ws8f{word-spacing:6.156887px;}
.wsa6{word-spacing:6.336214px;}
.ws138{word-spacing:6.402010px;}
.ws155{word-spacing:6.509606px;}
.ws65{word-spacing:6.560190px;}
.ws64{word-spacing:6.588540px;}
.ws131{word-spacing:6.671002px;}
.ws14c{word-spacing:6.832397px;}
.wsd1{word-spacing:6.886195px;}
.wse4{word-spacing:6.943860px;}
.wse5{word-spacing:6.949872px;}
.ws17{word-spacing:7.074743px;}
.ws192{word-spacing:7.281631px;}
.wse7{word-spacing:7.611192px;}
.wse6{word-spacing:7.677324px;}
.ws12d{word-spacing:7.693171px;}
.ws11e{word-spacing:7.711052px;}
.ws101{word-spacing:7.731432px;}
.ws102{word-spacing:7.749468px;}
.wsd3{word-spacing:8.249033px;}
.ws50{word-spacing:8.308808px;}
.ws84{word-spacing:8.351570px;}
.wsb6{word-spacing:8.428360px;}
.ws85{word-spacing:8.433634px;}
.ws123{word-spacing:8.643528px;}
.ws87{word-spacing:9.506776px;}
.wsa{word-spacing:9.833058px;}
.ws5d{word-spacing:9.879219px;}
.ws5c{word-spacing:10.327414px;}
.wsd8{word-spacing:11.620476px;}
.wsb{word-spacing:11.841512px;}
.ws58{word-spacing:12.201500px;}
.wse2{word-spacing:12.360672px;}
.wse1{word-spacing:12.426804px;}
.ws172{word-spacing:17.645875px;}
.ws86{word-spacing:18.963050px;}
.ws9{word-spacing:22.339429px;}
.wsd{word-spacing:22.720640px;}
._22{margin-left:-21.196570px;}
._24{margin-left:-20.076320px;}
._4{margin-left:-7.716516px;}
._a{margin-left:-6.133018px;}
._1{margin-left:-4.477180px;}
._20{margin-left:-3.395926px;}
._5{margin-left:-2.316910px;}
._0{margin-left:-1.255284px;}
._13{width:1.193081px;}
._6{width:2.316910px;}
._21{width:3.524788px;}
._9{width:10.705882px;}
._2{width:12.971268px;}
._17{width:14.166814px;}
._8{width:15.278746px;}
._b{width:16.516109px;}
._d{width:18.464670px;}
._7{width:20.013005px;}
._10{width:21.937645px;}
._11{width:23.013606px;}
._19{width:24.268894px;}
._3{width:25.314894px;}
._16{width:27.437000px;}
._c{width:28.459354px;}
._1a{width:30.246454px;}
._15{width:32.936356px;}
._1b{width:34.311194px;}
._25{width:35.316120px;}
._14{width:36.761994px;}
._18{width:38.375932px;}
._1d{width:42.141798px;}
._23{width:61.868160px;}
._1f{width:88.767360px;}
._e{width:563.083312px;}
._1c{width:2042.388432px;}
._12{width:2144.507854px;}
._1e{width:2452.983000px;}
._f{width:2476.893000px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(45,70,152);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs4{font-size:45.429600px;}
.fsb{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fsd{font-size:47.880000px;}
.fs8{font-size:50.274000px;}
.fs7{font-size:53.798400px;}
.fsf{font-size:54.000000px;}
.fs10{font-size:56.058000px;}
.fsa{font-size:56.700000px;}
.fs2{font-size:59.775600px;}
.fse{font-size:60.120000px;}
.fsc{font-size:62.286600px;}
.fs9{font-size:63.126000px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:136.067040px;}
.y9e{bottom:-530.824798px;}
.y9d{bottom:-510.695495px;}
.y9c{bottom:-490.473081px;}
.y9b{bottom:-470.250667px;}
.y9a{bottom:-450.122942px;}
.y99{bottom:-429.900528px;}
.y98{bottom:-409.772803px;}
.y97{bottom:-389.550389px;}
.y96{bottom:-369.327974px;}
.y95{bottom:-349.198671px;}
.y94{bottom:-328.976257px;}
.y93{bottom:-308.753843px;}
.y104{bottom:-289.102896px;}
.y92{bottom:-283.899559px;}
.y103{bottom:-269.933634px;}
.y102{bottom:-250.674192px;}
.y91{bottom:-244.777220px;}
.y101{bottom:-231.414750px;}
.y90{bottom:-224.649495px;}
.y100{bottom:-212.245488px;}
.y8f{bottom:-204.427081px;}
.yff{bottom:-192.986046px;}
.y8e{bottom:-184.204667px;}
.yfe{bottom:-173.816784px;}
.y8d{bottom:-164.076942px;}
.yfd{bottom:-154.557342px;}
.y8c{bottom:-143.854528px;}
.yfc{bottom:-135.297900px;}
.y8b{bottom:-123.726803px;}
.yfb{bottom:-98.488950px;}
.y8a{bottom:-85.075830px;}
.yfa{bottom:-81.118500px;}
.y89{bottom:-66.743303px;}
.yf9{bottom:-63.838500px;}
.y88{bottom:-48.599303px;}
.yf8{bottom:-46.558500px;}
.yf7{bottom:-29.188050px;}
.y87{bottom:-25.067423px;}
.yf6{bottom:-6.771444px;}
.y0{bottom:0.000000px;}
.y17{bottom:13.870617px;}
.y46{bottom:31.890000px;}
.y45{bottom:103.621500px;}
.y15{bottom:104.646000px;}
.yb8{bottom:105.576000px;}
.y175{bottom:116.458500px;}
.ye5{bottom:119.148000px;}
.y7d{bottom:119.596500px;}
.y44{bottom:122.449500px;}
.y14{bottom:122.535000px;}
.yb7{bottom:124.405500px;}
.y174{bottom:133.719000px;}
.yc3{bottom:137.977500px;}
.y7c{bottom:138.426000px;}
.y13{bottom:140.422500px;}
.y43{bottom:141.279000px;}
.yb6{bottom:143.235000px;}
.y173{bottom:150.978000px;}
.y13f{bottom:154.207500px;}
.yc2{bottom:156.807000px;}
.y7b{bottom:157.255500px;}
.y12{bottom:158.310000px;}
.y42{bottom:160.108500px;}
.yb5{bottom:162.064500px;}
.y172{bottom:168.238500px;}
.y13e{bottom:171.468000px;}
.yc1{bottom:175.636500px;}
.y7a{bottom:176.085000px;}
.y11{bottom:176.199000px;}
.y41{bottom:178.938000px;}
.yb4{bottom:180.892500px;}
.y171{bottom:185.499000px;}
.y13d{bottom:188.727000px;}
.y10{bottom:194.086500px;}
.yc0{bottom:194.466000px;}
.y79{bottom:194.914500px;}
.y40{bottom:197.767500px;}
.yb3{bottom:199.722000px;}
.y170{bottom:202.759500px;}
.y13c{bottom:205.987500px;}
.yf{bottom:211.974000px;}
.ybf{bottom:213.295500px;}
.y78{bottom:213.744000px;}
.y10f{bottom:216.597000px;}
.yb2{bottom:218.551500px;}
.y16f{bottom:220.020000px;}
.y3f{bottom:221.080500px;}
.y13b{bottom:223.248000px;}
.ye{bottom:229.863000px;}
.ybe{bottom:232.125000px;}
.y77{bottom:232.573500px;}
.y10e{bottom:235.426500px;}
.y16e{bottom:237.280500px;}
.yb1{bottom:237.381000px;}
.y13a{bottom:240.508500px;}
.ye4{bottom:250.954500px;}
.y76{bottom:251.403000px;}
.y10d{bottom:254.256000px;}
.y16d{bottom:254.541000px;}
.ybd{bottom:255.438000px;}
.yb0{bottom:256.210500px;}
.y139{bottom:262.252500px;}
.ye3{bottom:269.784000px;}
.y75{bottom:270.232500px;}
.y16c{bottom:271.801500px;}
.y10c{bottom:273.085500px;}
.yaf{bottom:275.040000px;}
.ye2{bottom:288.613500px;}
.y74{bottom:289.062000px;}
.y10b{bottom:291.915000px;}
.yae{bottom:293.869500px;}
.y138{bottom:295.876500px;}
.y3e{bottom:296.230500px;}
.yd{bottom:299.892000px;}
.y16b{bottom:306.321000px;}
.ye1{bottom:307.443000px;}
.y73{bottom:307.891500px;}
.y10a{bottom:310.744500px;}
.yad{bottom:312.699000px;}
.yc{bottom:317.779500px;}
.y137{bottom:322.416000px;}
.y16a{bottom:323.581500px;}
.ye0{bottom:326.272500px;}
.y72{bottom:326.719500px;}
.yac{bottom:331.528500px;}
.y3d{bottom:333.621000px;}
.yb{bottom:335.667000px;}
.y169{bottom:340.842000px;}
.y109{bottom:342.427500px;}
.ydf{bottom:345.102000px;}
.y71{bottom:345.549000px;}
.y136{bottom:348.957000px;}
.yab{bottom:350.358000px;}
.y3c{bottom:353.077500px;}
.ya{bottom:353.556000px;}
.y168{bottom:358.102500px;}
.y108{bottom:361.660500px;}
.yde{bottom:363.931500px;}
.y70{bottom:364.378500px;}
.yaa{bottom:369.187500px;}
.y3b{bottom:372.534000px;}
.y167{bottom:375.363000px;}
.y135{bottom:375.498000px;}
.y107{bottom:380.893500px;}
.y9{bottom:381.904500px;}
.ydd{bottom:382.761000px;}
.y6f{bottom:383.208000px;}
.y3a{bottom:391.992000px;}
.ya9{bottom:392.500500px;}
.y166{bottom:392.623500px;}
.y106{bottom:400.126500px;}
.ydc{bottom:401.589000px;}
.y6e{bottom:402.037500px;}
.y8{bottom:408.759000px;}
.y165{bottom:409.884000px;}
.y39{bottom:411.448500px;}
.y105{bottom:419.359500px;}
.y134{bottom:419.613000px;}
.ydb{bottom:420.418500px;}
.y6d{bottom:420.867000px;}
.ya8{bottom:426.124500px;}
.y7{bottom:426.646500px;}
.y164{bottom:427.144500px;}
.y38{bottom:430.906500px;}
.y133{bottom:437.187000px;}
.yda{bottom:439.248000px;}
.y6c{bottom:439.696500px;}
.y86{bottom:439.872927px;}
.y163{bottom:444.403500px;}
.y6{bottom:444.534000px;}
.ye6{bottom:444.777000px;}
.ya7{bottom:444.954000px;}
.y37{bottom:450.363000px;}
.y132{bottom:454.761000px;}
.yd9{bottom:458.077500px;}
.y6b{bottom:458.526000px;}
.y85{bottom:460.095341px;}
.y162{bottom:461.664000px;}
.y5{bottom:462.423000px;}
.ya6{bottom:463.783500px;}
.y36{bottom:469.819500px;}
.y131{bottom:472.335000px;}
.yd8{bottom:476.907000px;}
.y6a{bottom:477.355500px;}
.y161{bottom:478.924500px;}
.y84{bottom:480.223066px;}
.y4{bottom:480.310500px;}
.ya5{bottom:482.613000px;}
.y35{bottom:489.277500px;}
.y130{bottom:489.909000px;}
.yd7{bottom:495.736500px;}
.y69{bottom:496.185000px;}
.yf5{bottom:497.228043px;}
.y3{bottom:498.198000px;}
.y83{bottom:500.445480px;}
.ya4{bottom:501.442500px;}
.y34{bottom:508.734000px;}
.y160{bottom:513.445500px;}
.yd6{bottom:514.566000px;}
.y68{bottom:515.014500px;}
.y2{bottom:516.087000px;}
.yf4{bottom:516.397305px;}
.y12f{bottom:516.450000px;}
.ya3{bottom:520.272000px;}
.y82{bottom:520.667894px;}
.y178{bottom:526.147500px;}
.y33{bottom:528.190500px;}
.y15f{bottom:530.706000px;}
.yd5{bottom:533.395500px;}
.y67{bottom:533.844000px;}
.y1{bottom:533.974500px;}
.y12e{bottom:534.024000px;}
.yf3{bottom:535.656747px;}
.ya2{bottom:539.101500px;}
.y81{bottom:540.797198px;}
.y177{bottom:543.408000px;}
.y32{bottom:547.648500px;}
.y15e{bottom:547.966500px;}
.y12d{bottom:551.598000px;}
.yd4{bottom:552.225000px;}
.y66{bottom:552.673500px;}
.yf2{bottom:554.916189px;}
.y176{bottom:560.668500px;}
.y15d{bottom:565.227000px;}
.y31{bottom:567.105000px;}
.y12c{bottom:569.172000px;}
.yd3{bottom:571.054500px;}
.y65{bottom:571.503000px;}
.ya1{bottom:572.667000px;}
.yf1{bottom:574.085451px;}
.y15c{bottom:582.487500px;}
.y30{bottom:586.563000px;}
.yd2{bottom:589.884000px;}
.y64{bottom:590.332500px;}
.ya0{bottom:591.900000px;}
.yf0{bottom:593.344893px;}
.y80{bottom:598.253339px;}
.y15b{bottom:599.746500px;}
.y12b{bottom:604.678500px;}
.y2f{bottom:606.019500px;}
.y7f{bottom:608.364697px;}
.yd1{bottom:608.713500px;}
.y63{bottom:609.162000px;}
.y9f{bottom:611.133000px;}
.yef{bottom:612.604335px;}
.y15a{bottom:617.007000px;}
.y12a{bottom:623.508000px;}
.y2e{bottom:625.476000px;}
.yd0{bottom:627.543000px;}
.y62{bottom:627.991500px;}
.yee{bottom:631.773597px;}
.y159{bottom:634.267500px;}
.y7e{bottom:636.550500px;}
.y129{bottom:642.337500px;}
.y2d{bottom:644.934000px;}
.ycf{bottom:646.372500px;}
.y61{bottom:646.821000px;}
.yed{bottom:651.033039px;}
.y158{bottom:651.528000px;}
.y128{bottom:661.167000px;}
.y2c{bottom:664.390500px;}
.yce{bottom:665.202000px;}
.y60{bottom:665.650500px;}
.y157{bottom:668.788500px;}
.yec{bottom:670.202301px;}
.ybc{bottom:671.074500px;}
.y127{bottom:679.996500px;}
.y2b{bottom:683.847000px;}
.ycd{bottom:684.031500px;}
.y5f{bottom:684.480000px;}
.y156{bottom:686.049000px;}
.yeb{bottom:689.461743px;}
.ybb{bottom:689.904000px;}
.y126{bottom:698.826000px;}
.ycc{bottom:702.861000px;}
.y2a{bottom:703.305000px;}
.y5e{bottom:703.309500px;}
.yea{bottom:708.721185px;}
.yba{bottom:708.733500px;}
.y125{bottom:717.655500px;}
.y155{bottom:720.570000px;}
.ycb{bottom:721.690500px;}
.y5d{bottom:722.139000px;}
.y29{bottom:722.761500px;}
.yb9{bottom:727.563000px;}
.ye9{bottom:727.891950px;}
.y124{bottom:736.485000px;}
.y154{bottom:737.829000px;}
.yca{bottom:740.520000px;}
.y5c{bottom:740.968500px;}
.y153{bottom:755.089500px;}
.y123{bottom:755.314500px;}
.yc9{bottom:759.349500px;}
.y5b{bottom:759.798000px;}
.y28{bottom:761.220000px;}
.y152{bottom:772.350000px;}
.y122{bottom:774.144000px;}
.y27{bottom:777.358500px;}
.yc8{bottom:778.179000px;}
.y5a{bottom:778.627500px;}
.ye8{bottom:782.612085px;}
.y151{bottom:789.610500px;}
.ye7{bottom:792.241950px;}
.y121{bottom:792.973500px;}
.yc7{bottom:797.008500px;}
.y59{bottom:797.457000px;}
.y26{bottom:797.838000px;}
.y150{bottom:806.871000px;}
.y25{bottom:809.638500px;}
.y120{bottom:811.803000px;}
.yc6{bottom:815.838000px;}
.y58{bottom:816.286500px;}
.y14f{bottom:824.131500px;}
.y24{bottom:830.118000px;}
.y11f{bottom:830.632500px;}
.yc5{bottom:834.667500px;}
.y57{bottom:835.114500px;}
.y14e{bottom:841.392000px;}
.y23{bottom:841.917000px;}
.y11e{bottom:849.462000px;}
.y56{bottom:853.944000px;}
.yc4{bottom:857.979000px;}
.y14d{bottom:858.652500px;}
.y22{bottom:862.396500px;}
.y11d{bottom:868.291500px;}
.y55{bottom:872.773500px;}
.y21{bottom:874.197000px;}
.y14c{bottom:875.913000px;}
.y11c{bottom:887.121000px;}
.y54{bottom:891.603000px;}
.y14b{bottom:893.172000px;}
.y20{bottom:894.675000px;}
.y11b{bottom:905.950500px;}
.y1f{bottom:906.475500px;}
.y53{bottom:910.432500px;}
.y11a{bottom:924.778500px;}
.y1e{bottom:926.955000px;}
.y14a{bottom:927.693000px;}
.y52{bottom:929.262000px;}
.y119{bottom:943.608000px;}
.y149{bottom:944.953500px;}
.y51{bottom:948.091500px;}
.y148{bottom:962.214000px;}
.y118{bottom:962.437500px;}
.y50{bottom:966.921000px;}
.y1c{bottom:971.503500px;}
.y1d{bottom:976.927500px;}
.y147{bottom:979.474500px;}
.y117{bottom:981.267000px;}
.y4f{bottom:985.750500px;}
.y146{bottom:996.735000px;}
.y116{bottom:1000.096500px;}
.y4e{bottom:1004.580000px;}
.y1b{bottom:1008.265500px;}
.y110{bottom:1010.005500px;}
.y145{bottom:1013.995500px;}
.y115{bottom:1018.926000px;}
.y4d{bottom:1023.409500px;}
.y144{bottom:1031.254500px;}
.y1a{bottom:1036.510500px;}
.y114{bottom:1037.755500px;}
.y4c{bottom:1042.239000px;}
.y143{bottom:1048.515000px;}
.y113{bottom:1056.585000px;}
.y4b{bottom:1061.068500px;}
.y19{bottom:1064.754000px;}
.y142{bottom:1065.775500px;}
.y112{bottom:1075.414500px;}
.y4a{bottom:1079.898000px;}
.y141{bottom:1083.036000px;}
.y18{bottom:1092.997500px;}
.y111{bottom:1094.244000px;}
.y49{bottom:1098.727500px;}
.y140{bottom:1100.296500px;}
.y48{bottom:1117.557000px;}
.y16{bottom:1136.485500px;}
.y47{bottom:1177.662000px;}
.h1d{height:15.135660px;}
.h16{height:16.817382px;}
.ha{height:31.131341px;}
.h8{height:32.845601px;}
.h2{height:36.319550px;}
.h1b{height:37.551283px;}
.h14{height:39.432893px;}
.hb{height:41.508281px;}
.h15{height:41.723369px;}
.h9{height:43.217759px;}
.hc{height:43.660208px;}
.h5{height:43.815515px;}
.h18{height:44.279648px;}
.h7{height:44.473046px;}
.h13{height:46.481449px;}
.h10{height:46.493631px;}
.hd{height:46.697011px;}
.h1c{height:49.117939px;}
.h1a{height:49.939453px;}
.h3{height:50.930649px;}
.he{height:51.885221px;}
.h12{height:52.436426px;}
.h19{height:55.599258px;}
.h11{height:58.379221px;}
.h6{height:77.792486px;}
.h4{height:92.253453px;}
.hf{height:408.348675px;}
.h17{height:467.211000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:241.345133px;}
.w4{width:627.502800px;}
.w3{width:667.154565px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x30{left:-76.289535px;}
.x9a{left:-72.656700px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x2{left:58.056971px;}
.xbf{left:83.830500px;}
.xbe{left:85.848000px;}
.xc3{left:110.109000px;}
.x2f{left:112.666185px;}
.xc4{left:120.255000px;}
.x9b{left:122.913300px;}
.x31{left:129.058965px;}
.x99{left:132.493200px;}
.x9c{left:154.773300px;}
.x33{left:162.511965px;}
.x3{left:166.018500px;}
.x4{left:172.248000px;}
.xf{left:248.526000px;}
.xd{left:249.591000px;}
.x8e{left:259.491000px;}
.x5{left:268.246500px;}
.xe{left:269.914500px;}
.x3b{left:271.464000px;}
.x10{left:281.479500px;}
.x6{left:288.081000px;}
.xb2{left:303.448500px;}
.x19{left:314.895000px;}
.x76{left:317.131500px;}
.xb3{left:318.393000px;}
.x29{left:320.119500px;}
.x1a{left:322.366500px;}
.x1c{left:326.154000px;}
.x77{left:332.074500px;}
.x1d{left:333.627000px;}
.x2a{left:335.064000px;}
.x87{left:336.192000px;}
.x45{left:338.287500px;}
.x5c{left:348.682500px;}
.x60{left:350.226000px;}
.x4d{left:352.548000px;}
.x6b{left:357.234000px;}
.x3c{left:365.529000px;}
.x46{left:367.770000px;}
.x61{left:368.980500px;}
.x3d{left:370.605000px;}
.x48{left:372.927000px;}
.xa8{left:376.002000px;}
.xc5{left:381.354000px;}
.x47{left:382.713000px;}
.x62{left:383.925000px;}
.x3e{left:385.549500px;}
.x49{left:387.870000px;}
.x78{left:398.025000px;}
.xad{left:399.792000px;}
.x5d{left:401.295000px;}
.x51{left:409.762500px;}
.x53{left:413.217000px;}
.x5e{left:416.239500px;}
.x6f{left:419.131500px;}
.x54{left:420.847500px;}
.xc6{left:429.750000px;}
.x52{left:431.133000px;}
.x5f{left:434.994000px;}
.x69{left:440.709000px;}
.x11{left:441.831000px;}
.x7{left:445.234500px;}
.x12{left:449.302500px;}
.x1e{left:452.889000px;}
.x6a{left:455.652000px;}
.x1b{left:456.945000px;}
.x1f{left:460.362000px;}
.x8{left:465.069000px;}
.xbb{left:469.150500px;}
.x88{left:470.362500px;}
.xb8{left:472.728000px;}
.xb6{left:473.775000px;}
.x97{left:476.188500px;}
.x6e{left:478.083000px;}
.xa3{left:482.520000px;}
.x22{left:484.264500px;}
.xb7{left:488.718000px;}
.x9d{left:492.076500px;}
.x13{left:493.567500px;}
.xa4{left:497.464500px;}
.x23{left:499.209000px;}
.x14{left:501.039000px;}
.x24{left:502.870500px;}
.x7f{left:503.961000px;}
.x93{left:506.410500px;}
.x55{left:511.464000px;}
.x8a{left:512.997000px;}
.x25{left:517.815000px;}
.x80{left:518.905500px;}
.x94{left:521.353500px;}
.x81{left:522.660000px;}
.x34{left:524.889000px;}
.x35{left:528.700500px;}
.x3f{left:531.169500px;}
.x2d{left:533.523000px;}
.x72{left:535.678500px;}
.x82{left:537.604500px;}
.x70{left:541.645500px;}
.x36{left:543.643500px;}
.x40{left:546.114000px;}
.x37{left:547.455000px;}
.x2e{left:548.467500px;}
.x73{left:550.623000px;}
.xc0{left:551.649000px;}
.x17{left:553.192500px;}
.x71{left:555.036000px;}
.x18{left:560.664000px;}
.x38{left:562.398000px;}
.x67{left:563.553000px;}
.x39{left:565.570500px;}
.x9{left:566.622000px;}
.x41{left:568.395000px;}
.x68{left:572.647500px;}
.x79{left:574.417500px;}
.xa7{left:576.208500px;}
.x4a{left:578.325000px;}
.x3a{left:580.515000px;}
.x96{left:581.938500px;}
.x89{left:584.217000px;}
.xb1{left:586.966500px;}
.x7a{left:589.362000px;}
.x4b{left:593.269500px;}
.x4c{left:596.929500px;}
.xa{left:599.808000px;}
.x8d{left:603.249000px;}
.x15{left:604.668000px;}
.x16{left:612.139500px;}
.xbc{left:616.146000px;}
.x27{left:618.028500px;}
.xc1{left:619.894500px;}
.x74{left:621.141000px;}
.x42{left:630.447000px;}
.xc2{left:631.810500px;}
.x28{left:632.973000px;}
.xb4{left:634.650000px;}
.x75{left:636.085500px;}
.xbd{left:638.419500px;}
.x43{left:645.391500px;}
.x20{left:648.816000px;}
.x8f{left:652.773000px;}
.x21{left:656.289000px;}
.xae{left:660.624000px;}
.x44{left:664.146000px;}
.xa9{left:666.424500px;}
.x90{left:667.717500px;}
.x7b{left:669.204000px;}
.xaf{left:674.382000px;}
.xaa{left:679.261500px;}
.x32{left:680.463728px;}
.x7c{left:684.148500px;}
.xa0{left:698.934000px;}
.x2b{left:706.081500px;}
.xa1{left:713.877000px;}
.x91{left:715.162500px;}
.x9e{left:718.260000px;}
.x2c{left:721.024500px;}
.x92{left:725.002500px;}
.x56{left:726.724500px;}
.xac{left:729.972000px;}
.x9f{left:733.203000px;}
.x57{left:734.353500px;}
.x4e{left:736.837500px;}
.xa5{left:739.411500px;}
.x98{left:740.941500px;}
.x5a{left:745.824000px;}
.xa2{left:748.020000px;}
.xb0{left:749.361000px;}
.x4f{left:751.782000px;}
.xa6{left:754.354500px;}
.x85{left:757.692000px;}
.x5b{left:760.767000px;}
.xb9{left:762.070500px;}
.xab{left:763.432500px;}
.x83{left:765.493500px;}
.x8b{left:771.262500px;}
.x86{left:772.636500px;}
.x95{left:774.738000px;}
.x84{left:777.784500px;}
.x58{left:779.823000px;}
.x63{left:781.099500px;}
.xba{left:784.636500px;}
.x6c{left:785.991000px;}
.x59{left:787.453500px;}
.xb5{left:792.664500px;}
.x64{left:795.594000px;}
.x7d{left:799.711500px;}
.x6d{left:800.935500px;}
.x65{left:802.726500px;}
.xb{left:809.068500px;}
.x50{left:812.458500px;}
.x7e{left:814.654500px;}
.x66{left:817.222500px;}
.xc{left:818.713500px;}
.x26{left:832.686000px;}
.x8c{left:833.941500px;}
@media print{
.v1{vertical-align:-15.429333pt;}
.v2{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.ls29{letter-spacing:-0.151502pt;}
.ls4f{letter-spacing:-0.149632pt;}
.ls56{letter-spacing:-0.133600pt;}
.ls24{letter-spacing:-0.123446pt;}
.ls1e{letter-spacing:-0.112224pt;}
.ls55{letter-spacing:-0.106880pt;}
.ls51{letter-spacing:-0.101536pt;}
.ls2a{letter-spacing:-0.095390pt;}
.ls22{letter-spacing:-0.089779pt;}
.ls54{letter-spacing:-0.080160pt;}
.ls2b{letter-spacing:-0.078557pt;}
.ls4a{letter-spacing:-0.074816pt;}
.ls20{letter-spacing:-0.072946pt;}
.ls25{letter-spacing:-0.067334pt;}
.ls4d{letter-spacing:-0.064128pt;}
.ls57{letter-spacing:-0.048096pt;}
.ls50{letter-spacing:-0.042752pt;}
.ls28{letter-spacing:-0.039278pt;}
.ls45{letter-spacing:-0.037408pt;}
.ls26{letter-spacing:-0.033667pt;}
.ls49{letter-spacing:-0.032064pt;}
.ls48{letter-spacing:-0.026720pt;}
.ls23{letter-spacing:-0.022445pt;}
.ls4e{letter-spacing:-0.021376pt;}
.ls21{letter-spacing:-0.016834pt;}
.ls4b{letter-spacing:-0.016032pt;}
.ls1f{letter-spacing:-0.011222pt;}
.ls46{letter-spacing:-0.010688pt;}
.ls53{letter-spacing:-0.009600pt;}
.ls27{letter-spacing:-0.005611pt;}
.ls4c{letter-spacing:-0.005344pt;}
.ls52{letter-spacing:-0.004800pt;}
.ls8{letter-spacing:0.000000pt;}
.ls65{letter-spacing:0.000600pt;}
.ls5e{letter-spacing:0.000711pt;}
.ls71{letter-spacing:0.000732pt;}
.ls63{letter-spacing:0.000921pt;}
.ls5a{letter-spacing:0.001408pt;}
.ls5{letter-spacing:0.001718pt;}
.ls4{letter-spacing:0.001735pt;}
.ls62{letter-spacing:0.002262pt;}
.ls64{letter-spacing:0.002525pt;}
.ls73{letter-spacing:0.002600pt;}
.ls67{letter-spacing:0.002826pt;}
.ls66{letter-spacing:0.003230pt;}
.ls42{letter-spacing:0.005344pt;}
.ls41{letter-spacing:0.009600pt;}
.ls37{letter-spacing:0.010688pt;}
.ls14{letter-spacing:0.011222pt;}
.ls3c{letter-spacing:0.014400pt;}
.ls10{letter-spacing:0.015120pt;}
.ls3a{letter-spacing:0.016032pt;}
.ls19{letter-spacing:0.016834pt;}
.ls3e{letter-spacing:0.019200pt;}
.ls1b{letter-spacing:0.022445pt;}
.ls40{letter-spacing:0.024000pt;}
.ls38{letter-spacing:0.026720pt;}
.lse{letter-spacing:0.028056pt;}
.ls11{letter-spacing:0.030240pt;}
.ls36{letter-spacing:0.032064pt;}
.ls1d{letter-spacing:0.033667pt;}
.ls3b{letter-spacing:0.037408pt;}
.ls30{letter-spacing:0.038304pt;}
.ls3d{letter-spacing:0.038400pt;}
.ls15{letter-spacing:0.039278pt;}
.ls9{letter-spacing:0.040219pt;}
.ls39{letter-spacing:0.042752pt;}
.lsd{letter-spacing:0.044890pt;}
.ls13{letter-spacing:0.045360pt;}
.ls32{letter-spacing:0.046816pt;}
.ls44{letter-spacing:0.048096pt;}
.lsb{letter-spacing:0.049157pt;}
.ls3f{letter-spacing:0.052800pt;}
.ls12{letter-spacing:0.055440pt;}
.lsf{letter-spacing:0.056112pt;}
.ls43{letter-spacing:0.058784pt;}
.ls17{letter-spacing:0.061723pt;}
.ls1a{letter-spacing:0.067334pt;}
.ls18{letter-spacing:0.095390pt;}
.ls47{letter-spacing:0.101536pt;}
.ls35{letter-spacing:0.106880pt;}
.ls16{letter-spacing:0.112224pt;}
.ls33{letter-spacing:0.157472pt;}
.ls34{letter-spacing:0.160320pt;}
.lsc{letter-spacing:0.165346pt;}
.ls1c{letter-spacing:0.168336pt;}
.ls31{letter-spacing:0.170240pt;}
.lsa{letter-spacing:0.178752pt;}
.ls2e{letter-spacing:0.482502pt;}
.ls2c{letter-spacing:0.487835pt;}
.ls2d{letter-spacing:0.504589pt;}
.ls1{letter-spacing:2.059475pt;}
.ls0{letter-spacing:9.298933pt;}
.ls7{letter-spacing:10.626533pt;}
.ls77{letter-spacing:11.010786pt;}
.ls6b{letter-spacing:11.032555pt;}
.ls6e{letter-spacing:11.642186pt;}
.ls75{letter-spacing:11.736303pt;}
.ls79{letter-spacing:11.747334pt;}
.ls7a{letter-spacing:11.750257pt;}
.ls60{letter-spacing:11.821671pt;}
.ls6d{letter-spacing:11.856565pt;}
.ls76{letter-spacing:11.861793pt;}
.ls68{letter-spacing:11.878299pt;}
.ls69{letter-spacing:11.898572pt;}
.ls72{letter-spacing:11.937920pt;}
.ls5c{letter-spacing:11.954133pt;}
.ls61{letter-spacing:11.959467pt;}
.ls5d{letter-spacing:12.023031pt;}
.ls70{letter-spacing:12.087985pt;}
.ls6c{letter-spacing:12.088337pt;}
.ls5b{letter-spacing:12.101538pt;}
.ls6f{letter-spacing:12.337610pt;}
.ls2{letter-spacing:12.402458pt;}
.ls58{letter-spacing:13.219341pt;}
.ls2f{letter-spacing:13.250000pt;}
.ls59{letter-spacing:13.284147pt;}
.ls78{letter-spacing:13.331075pt;}
.ls74{letter-spacing:14.721924pt;}
.ls6a{letter-spacing:15.171597pt;}
.ls5f{letter-spacing:17.906238pt;}
.ls3{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.wscd{word-spacing:-53.440000pt;}
.wsce{word-spacing:-48.000000pt;}
.ws197{word-spacing:-36.071229pt;}
.ws4a{word-spacing:-13.876498pt;}
.wscb{word-spacing:-13.392064pt;}
.wsc9{word-spacing:-13.370688pt;}
.wscc{word-spacing:-13.327936pt;}
.wsf{word-spacing:-13.283467pt;}
.ws13{word-spacing:-12.154942pt;}
.ws129{word-spacing:-11.955200pt;}
.ws47{word-spacing:-11.350752pt;}
.ws48{word-spacing:-11.172000pt;}
.wsc7{word-spacing:-10.810240pt;}
.wsc8{word-spacing:-10.640000pt;}
.ws2e{word-spacing:-10.626800pt;}
.ws14{word-spacing:-10.095467pt;}
.ws7{word-spacing:-9.298400pt;}
.ws77{word-spacing:-3.338664pt;}
.ws76{word-spacing:-3.265718pt;}
.ws8d{word-spacing:-2.762961pt;}
.ws93{word-spacing:-2.709827pt;}
.ws125{word-spacing:-2.677965pt;}
.ws69{word-spacing:-2.609208pt;}
.ws67{word-spacing:-2.575541pt;}
.wsf1{word-spacing:-2.511680pt;}
.ws68{word-spacing:-2.474539pt;}
.ws94{word-spacing:-2.337890pt;}
.ws70{word-spacing:-2.272536pt;}
.wsb7{word-spacing:-2.231622pt;}
.ws111{word-spacing:-2.178489pt;}
.ws6e{word-spacing:-1.980754pt;}
.ws7b{word-spacing:-1.947086pt;}
.ws6f{word-spacing:-1.924642pt;}
.ws7a{word-spacing:-1.913419pt;}
.ws186{word-spacing:-1.912832pt;}
.ws1a{word-spacing:-1.769370pt;}
.ws18a{word-spacing:-1.721549pt;}
.wsb4{word-spacing:-1.700284pt;}
.ws60{word-spacing:-1.638470pt;}
.ws7d{word-spacing:-1.627248pt;}
.ws2{word-spacing:-1.599325pt;}
.ws53{word-spacing:-1.594016pt;}
.ws21{word-spacing:-1.578086pt;}
.ws7c{word-spacing:-1.554302pt;}
.ws63{word-spacing:-1.537200pt;}
.ws1b{word-spacing:-1.530266pt;}
.ws62{word-spacing:-1.522080pt;}
.wsaa{word-spacing:-1.487748pt;}
.ws11c{word-spacing:-1.434614pt;}
.wsc5{word-spacing:-1.328347pt;}
.ws183{word-spacing:-1.243341pt;}
.ws43{word-spacing:-1.222079pt;}
.ws24{word-spacing:-1.195520pt;}
.ws3{word-spacing:-1.190195pt;}
.wsba{word-spacing:-1.115811pt;}
.ws167{word-spacing:-1.099878pt;}
.wsa5{word-spacing:-1.062677pt;}
.ws4{word-spacing:-1.041421pt;}
.ws8e{word-spacing:-1.009543pt;}
.wscf{word-spacing:-1.004237pt;}
.wsdc{word-spacing:-0.977952pt;}
.ws17a{word-spacing:-0.956416pt;}
.ws127{word-spacing:-0.908595pt;}
.ws11{word-spacing:-0.903276pt;}
.wsdb{word-spacing:-0.865728pt;}
.ws12{word-spacing:-0.850142pt;}
.wsdd{word-spacing:-0.839008pt;}
.ws16e{word-spacing:-0.812954pt;}
.wsa9{word-spacing:-0.797008pt;}
.ws9b{word-spacing:-0.743874pt;}
.ws16b{word-spacing:-0.717312pt;}
.ws1{word-spacing:-0.706678pt;}
.ws32{word-spacing:-0.690740pt;}
.ws4c{word-spacing:-0.669491pt;}
.ws119{word-spacing:-0.637606pt;}
.wsab{word-spacing:-0.584473pt;}
.wseb{word-spacing:-0.545088pt;}
.wsac{word-spacing:-0.531339pt;}
.ws0{word-spacing:-0.508852pt;}
.wsea{word-spacing:-0.491648pt;}
.ws3e{word-spacing:-0.478205pt;}
.ws59{word-spacing:-0.471341pt;}
.wsec{word-spacing:-0.443552pt;}
.ws19c{word-spacing:-0.430387pt;}
.ws3d{word-spacing:-0.425071pt;}
.wsd5{word-spacing:-0.371937pt;}
.ws16d{word-spacing:-0.334746pt;}
.ws10e{word-spacing:-0.325809pt;}
.ws10d{word-spacing:-0.323972pt;}
.ws110{word-spacing:-0.321800pt;}
.ws10f{word-spacing:-0.320468pt;}
.ws2f{word-spacing:-0.318803pt;}
.ws9c{word-spacing:-0.314451pt;}
.ws78{word-spacing:-0.274949pt;}
.wsdf{word-spacing:-0.272544pt;}
.wsf3{word-spacing:-0.267200pt;}
.ws97{word-spacing:-0.265669pt;}
.ws56{word-spacing:-0.259190pt;}
.ws139{word-spacing:-0.252798pt;}
.wsd6{word-spacing:-0.246848pt;}
.wsfd{word-spacing:-0.240480pt;}
.ws1d{word-spacing:-0.239104pt;}
.ws2c{word-spacing:-0.212535pt;}
.wsde{word-spacing:-0.208416pt;}
.ws79{word-spacing:-0.207614pt;}
.ws1f{word-spacing:-0.191283pt;}
.ws36{word-spacing:-0.159402pt;}
.ws20{word-spacing:-0.143462pt;}
.ws57{word-spacing:-0.129595pt;}
.wsb2{word-spacing:-0.124640pt;}
.wsd7{word-spacing:-0.123424pt;}
.wsb3{word-spacing:-0.122669pt;}
.ws29{word-spacing:-0.106268pt;}
.ws12f{word-spacing:-0.095642pt;}
.ws117{word-spacing:-0.077316pt;}
.ws49{word-spacing:-0.056112pt;}
.wsca{word-spacing:-0.053440pt;}
.ws10{word-spacing:-0.053134pt;}
.wsbd{word-spacing:-0.048557pt;}
.ws26{word-spacing:-0.047821pt;}
.ws15{word-spacing:-0.042507pt;}
.ws189{word-spacing:-0.008644pt;}
.ws19a{word-spacing:-0.007492pt;}
.ws166{word-spacing:-0.007125pt;}
.ws148{word-spacing:-0.006630pt;}
.ws145{word-spacing:-0.006221pt;}
.ws73{word-spacing:-0.005611pt;}
.ws136{word-spacing:-0.005274pt;}
.ws144{word-spacing:-0.005214pt;}
.ws162{word-spacing:-0.004207pt;}
.ws135{word-spacing:-0.003516pt;}
.ws140{word-spacing:-0.003311pt;}
.ws16a{word-spacing:-0.002679pt;}
.ws17f{word-spacing:-0.002509pt;}
.ws130{word-spacing:-0.002449pt;}
.ws16c{word-spacing:-0.002330pt;}
.ws13c{word-spacing:-0.002159pt;}
.ws12e{word-spacing:-0.002048pt;}
.ws165{word-spacing:-0.001954pt;}
.ws175{word-spacing:-0.001442pt;}
.ws142{word-spacing:-0.001126pt;}
.ws152{word-spacing:-0.001067pt;}
.ws19b{word-spacing:-0.000922pt;}
.ws1a0{word-spacing:-0.000887pt;}
.ws2d{word-spacing:-0.000772pt;}
.ws14f{word-spacing:-0.000717pt;}
.ws14d{word-spacing:-0.000495pt;}
.ws18f{word-spacing:-0.000341pt;}
.ws19f{word-spacing:-0.000256pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:0.001767pt;}
.ws121{word-spacing:0.047821pt;}
.wsf2{word-spacing:0.048096pt;}
.ws113{word-spacing:0.052104pt;}
.ws3f{word-spacing:0.053134pt;}
.ws4b{word-spacing:0.095642pt;}
.ws3b{word-spacing:0.106268pt;}
.ws80{word-spacing:0.106613pt;}
.ws81{word-spacing:0.112224pt;}
.ws116{word-spacing:0.116542pt;}
.ws71{word-spacing:0.123446pt;}
.ws66{word-spacing:0.126000pt;}
.ws115{word-spacing:0.129017pt;}
.ws114{word-spacing:0.135981pt;}
.ws1c{word-spacing:0.143462pt;}
.ws39{word-spacing:0.159402pt;}
.wsfb{word-spacing:0.163200pt;}
.ws61{word-spacing:0.179558pt;}
.ws128{word-spacing:0.191283pt;}
.ws3c{word-spacing:0.212535pt;}
.ws72{word-spacing:0.213226pt;}
.ws22{word-spacing:0.239104pt;}
.ws3a{word-spacing:0.265669pt;}
.ws149{word-spacing:0.268304pt;}
.wsd0{word-spacing:0.286925pt;}
.ws112{word-spacing:0.315494pt;}
.ws41{word-spacing:0.318803pt;}
.ws120{word-spacing:0.334746pt;}
.ws6d{word-spacing:0.364728pt;}
.ws9f{word-spacing:0.371937pt;}
.ws16f{word-spacing:0.382566pt;}
.ws6a{word-spacing:0.387173pt;}
.wsc4{word-spacing:0.472910pt;}
.wsc2{word-spacing:0.475858pt;}
.wsc1{word-spacing:0.478205pt;}
.ws158{word-spacing:0.478208pt;}
.wsc3{word-spacing:0.478544pt;}
.ws6b{word-spacing:0.493786pt;}
.ws180{word-spacing:0.526029pt;}
.ws9a{word-spacing:0.531339pt;}
.ws118{word-spacing:0.584473pt;}
.ws98{word-spacing:0.637606pt;}
.ws4e{word-spacing:0.690740pt;}
.ws82{word-spacing:0.729456pt;}
.ws4d{word-spacing:0.743874pt;}
.ws14e{word-spacing:0.765133pt;}
.ws8b{word-spacing:0.797008pt;}
.ws13b{word-spacing:0.812954pt;}
.ws33{word-spacing:0.850142pt;}
.ws19{word-spacing:0.860774pt;}
.ws51{word-spacing:0.903276pt;}
.ws174{word-spacing:0.908595pt;}
.ws11d{word-spacing:1.009543pt;}
.wsfc{word-spacing:1.015360pt;}
.ws100{word-spacing:1.042080pt;}
.ws193{word-spacing:1.051018pt;}
.ws191{word-spacing:1.052058pt;}
.ws83{word-spacing:1.099795pt;}
.ws92{word-spacing:1.115811pt;}
.ws159{word-spacing:1.147699pt;}
.ws40{word-spacing:1.168945pt;}
.wse{word-spacing:1.227389pt;}
.wsb5{word-spacing:1.275213pt;}
.wsff{word-spacing:1.352032pt;}
.ws52{word-spacing:1.381481pt;}
.wsfe{word-spacing:1.384096pt;}
.ws194{word-spacing:1.386803pt;}
.wsf5{word-spacing:1.406400pt;}
.wsf4{word-spacing:1.430400pt;}
.ws4f{word-spacing:1.434614pt;}
.ws190{word-spacing:1.434624pt;}
.wsb9{word-spacing:1.487748pt;}
.ws90{word-spacing:1.540882pt;}
.ws14a{word-spacing:1.578086pt;}
.wsbb{word-spacing:1.594016pt;}
.ws18{word-spacing:1.625907pt;}
.ws30{word-spacing:1.647150pt;}
.wsa8{word-spacing:1.700284pt;}
.ws9e{word-spacing:1.753418pt;}
.wsc0{word-spacing:1.806551pt;}
.ws181{word-spacing:1.817190pt;}
.ws2a{word-spacing:1.859685pt;}
.ws91{word-spacing:1.912819pt;}
.ws163{word-spacing:1.912832pt;}
.ws164{word-spacing:1.923401pt;}
.ws19e{word-spacing:1.960653pt;}
.wsd4{word-spacing:1.965953pt;}
.wse8{word-spacing:1.987968pt;}
.ws46{word-spacing:2.019087pt;}
.wse9{word-spacing:2.041408pt;}
.ws12a{word-spacing:2.056294pt;}
.ws12b{word-spacing:2.061638pt;}
.ws42{word-spacing:2.072221pt;}
.ws5a{word-spacing:2.115422pt;}
.ws178{word-spacing:2.151936pt;}
.ws5b{word-spacing:2.177146pt;}
.ws99{word-spacing:2.178489pt;}
.ws5{word-spacing:2.247181pt;}
.ws25{word-spacing:2.247578pt;}
.ws96{word-spacing:2.284756pt;}
.wsda{word-spacing:2.324640pt;}
.wsc6{word-spacing:2.337890pt;}
.ws124{word-spacing:2.343219pt;}
.wsf7{word-spacing:2.352000pt;}
.wsf8{word-spacing:2.380800pt;}
.wsb1{word-spacing:2.391024pt;}
.ws11f{word-spacing:2.444158pt;}
.ws23{word-spacing:2.486682pt;}
.ws8a{word-spacing:2.497292pt;}
.ws15b{word-spacing:2.534502pt;}
.wsa3{word-spacing:2.550426pt;}
.ws16{word-spacing:2.550432pt;}
.ws108{word-spacing:2.602528pt;}
.ws35{word-spacing:2.603559pt;}
.wsd2{word-spacing:2.630144pt;}
.ws198{word-spacing:2.631552pt;}
.ws31{word-spacing:2.656693pt;}
.ws15d{word-spacing:2.663221pt;}
.ws184{word-spacing:2.675428pt;}
.ws185{word-spacing:2.677965pt;}
.wsd9{word-spacing:2.682688pt;}
.ws137{word-spacing:2.725786pt;}
.ws75{word-spacing:2.760710pt;}
.ws179{word-spacing:2.773606pt;}
.ws109{word-spacing:2.778880pt;}
.ws74{word-spacing:2.799989pt;}
.ws2b{word-spacing:2.816095pt;}
.ws170{word-spacing:2.821427pt;}
.ws176{word-spacing:2.861380pt;}
.ws195{word-spacing:2.861483pt;}
.ws13f{word-spacing:2.861696pt;}
.ws27{word-spacing:2.861926pt;}
.ws182{word-spacing:2.862106pt;}
.ws153{word-spacing:2.862276pt;}
.ws160{word-spacing:2.862387pt;}
.ws17d{word-spacing:2.862805pt;}
.ws19d{word-spacing:2.863138pt;}
.ws173{word-spacing:2.863189pt;}
.ws151{word-spacing:2.863275pt;}
.ws156{word-spacing:2.863428pt;}
.ws15e{word-spacing:2.863625pt;}
.ws157{word-spacing:2.863667pt;}
.ws18b{word-spacing:2.863770pt;}
.ws154{word-spacing:2.864290pt;}
.ws15a{word-spacing:2.864350pt;}
.ws17c{word-spacing:2.864751pt;}
.ws12c{word-spacing:2.864785pt;}
.ws187{word-spacing:2.864819pt;}
.ws17e{word-spacing:2.866415pt;}
.ws150{word-spacing:2.866560pt;}
.ws14b{word-spacing:2.867174pt;}
.ws161{word-spacing:2.867439pt;}
.ws188{word-spacing:2.868122pt;}
.ws13a{word-spacing:2.869248pt;}
.ws169{word-spacing:2.891001pt;}
.ws134{word-spacing:2.917069pt;}
.wse3{word-spacing:2.939200pt;}
.wsb8{word-spacing:2.975497pt;}
.ws122{word-spacing:3.012710pt;}
.ws171{word-spacing:3.023714pt;}
.ws199{word-spacing:3.060531pt;}
.wsbc{word-spacing:3.081764pt;}
.ws5e{word-spacing:3.086160pt;}
.ws18c{word-spacing:3.108352pt;}
.ws5f{word-spacing:3.125438pt;}
.ws168{word-spacing:3.126711pt;}
.ws89{word-spacing:3.134898pt;}
.ws18d{word-spacing:3.175776pt;}
.ws28{word-spacing:3.188032pt;}
.ws15c{word-spacing:3.203994pt;}
.ws11a{word-spacing:3.241166pt;}
.wsb0{word-spacing:3.347434pt;}
.ws13d{word-spacing:3.395277pt;}
.wsa4{word-spacing:3.400567pt;}
.ws7f{word-spacing:3.411610pt;}
.wsa0{word-spacing:3.453701pt;}
.ws17b{word-spacing:3.538739pt;}
.ws7e{word-spacing:3.546278pt;}
.ws38{word-spacing:3.559969pt;}
.wsbf{word-spacing:3.613103pt;}
.ws1e{word-spacing:3.634381pt;}
.ws37{word-spacing:3.666237pt;}
.wsf6{word-spacing:3.667200pt;}
.ws126{word-spacing:3.682202pt;}
.wsf0{word-spacing:3.708736pt;}
.ws196{word-spacing:3.730022pt;}
.ws143{word-spacing:3.777843pt;}
.ws177{word-spacing:3.873485pt;}
.ws11b{word-spacing:3.878772pt;}
.wsed{word-spacing:3.890432pt;}
.ws8c{word-spacing:3.931906pt;}
.ws15f{word-spacing:3.969126pt;}
.wsef{word-spacing:3.970592pt;}
.wsee{word-spacing:4.077472pt;}
.ws55{word-spacing:4.091308pt;}
.ws6c{word-spacing:4.096176pt;}
.ws88{word-spacing:4.202789pt;}
.ws105{word-spacing:4.205728pt;}
.ws45{word-spacing:4.250709pt;}
.ws106{word-spacing:4.253824pt;}
.ws107{word-spacing:4.259168pt;}
.ws44{word-spacing:4.303843pt;}
.ws13e{word-spacing:4.303872pt;}
.wsa2{word-spacing:4.410111pt;}
.wsa1{word-spacing:4.463245pt;}
.wsbe{word-spacing:4.516379pt;}
.ws10a{word-spacing:4.542400pt;}
.ws146{word-spacing:4.542976pt;}
.ws147{word-spacing:4.590797pt;}
.wsae{word-spacing:4.622646pt;}
.ws132{word-spacing:4.686438pt;}
.ws133{word-spacing:4.708550pt;}
.wsa7{word-spacing:4.782048pt;}
.ws104{word-spacing:4.825632pt;}
.ws10b{word-spacing:4.836320pt;}
.wsc{word-spacing:4.872362pt;}
.wsad{word-spacing:4.888316pt;}
.ws10c{word-spacing:4.932512pt;}
.wsfa{word-spacing:4.958400pt;}
.wsf9{word-spacing:4.972800pt;}
.ws95{word-spacing:4.994583pt;}
.wsaf{word-spacing:5.153985pt;}
.wse0{word-spacing:5.172992pt;}
.ws54{word-spacing:5.260253pt;}
.ws103{word-spacing:5.311936pt;}
.ws18e{word-spacing:5.355930pt;}
.ws9d{word-spacing:5.366521pt;}
.ws34{word-spacing:5.419654pt;}
.ws141{word-spacing:5.451571pt;}
.ws8f{word-spacing:5.472788pt;}
.wsa6{word-spacing:5.632190pt;}
.ws138{word-spacing:5.690675pt;}
.ws155{word-spacing:5.786317pt;}
.ws65{word-spacing:5.831280pt;}
.ws64{word-spacing:5.856480pt;}
.ws131{word-spacing:5.929779pt;}
.ws14c{word-spacing:6.073242pt;}
.wsd1{word-spacing:6.121062pt;}
.wse4{word-spacing:6.172320pt;}
.wse5{word-spacing:6.177664pt;}
.ws17{word-spacing:6.288660pt;}
.ws192{word-spacing:6.472561pt;}
.wse7{word-spacing:6.765504pt;}
.wse6{word-spacing:6.824288pt;}
.ws12d{word-spacing:6.838374pt;}
.ws11e{word-spacing:6.854269pt;}
.ws101{word-spacing:6.872384pt;}
.ws102{word-spacing:6.888416pt;}
.wsd3{word-spacing:7.332474pt;}
.ws50{word-spacing:7.385607pt;}
.ws84{word-spacing:7.423618pt;}
.wsb6{word-spacing:7.491875pt;}
.ws85{word-spacing:7.496563pt;}
.ws123{word-spacing:7.683136pt;}
.ws87{word-spacing:8.450467pt;}
.wsa{word-spacing:8.740496pt;}
.ws5d{word-spacing:8.781528pt;}
.ws5c{word-spacing:9.179923pt;}
.wsd8{word-spacing:10.329312pt;}
.wsb{word-spacing:10.525789pt;}
.ws58{word-spacing:10.845778pt;}
.wse2{word-spacing:10.987264pt;}
.wse1{word-spacing:11.046048pt;}
.ws172{word-spacing:15.685222pt;}
.ws86{word-spacing:16.856045pt;}
.ws9{word-spacing:19.857270pt;}
.wsd{word-spacing:20.196125pt;}
._22{margin-left:-18.841395pt;}
._24{margin-left:-17.845618pt;}
._4{margin-left:-6.859126pt;}
._a{margin-left:-5.451571pt;}
._1{margin-left:-3.979715pt;}
._20{margin-left:-3.018601pt;}
._5{margin-left:-2.059475pt;}
._0{margin-left:-1.115808pt;}
._13{width:1.060517pt;}
._6{width:2.059475pt;}
._21{width:3.133145pt;}
._9{width:9.516339pt;}
._2{width:11.530016pt;}
._17{width:12.592723pt;}
._8{width:13.581107pt;}
._b{width:14.680986pt;}
._d{width:16.413040pt;}
._7{width:17.789338pt;}
._10{width:19.500129pt;}
._11{width:20.456539pt;}
._19{width:21.572350pt;}
._3{width:22.502128pt;}
._16{width:24.388445pt;}
._c{width:25.297203pt;}
._1a{width:26.885737pt;}
._15{width:29.276761pt;}
._1b{width:30.498839pt;}
._25{width:31.392107pt;}
._14{width:32.677328pt;}
._18{width:34.111939pt;}
._1d{width:37.459376pt;}
._23{width:54.993920pt;}
._1f{width:78.904320pt;}
._e{width:500.518499pt;}
._1c{width:1815.456384pt;}
._12{width:1906.229203pt;}
._1e{width:2180.429333pt;}
._f{width:2201.682667pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs4{font-size:40.381867pt;}
.fsb{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fsd{font-size:42.560000pt;}
.fs8{font-size:44.688000pt;}
.fs7{font-size:47.820800pt;}
.fsf{font-size:48.000000pt;}
.fs10{font-size:49.829333pt;}
.fsa{font-size:50.400000pt;}
.fs2{font-size:53.133867pt;}
.fse{font-size:53.440000pt;}
.fsc{font-size:55.365867pt;}
.fs9{font-size:56.112000pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:120.948480pt;}
.y9e{bottom:-471.844265pt;}
.y9d{bottom:-453.951551pt;}
.y9c{bottom:-435.976072pt;}
.y9b{bottom:-418.000593pt;}
.y9a{bottom:-400.109282pt;}
.y99{bottom:-382.133802pt;}
.y98{bottom:-364.242491pt;}
.y97{bottom:-346.267012pt;}
.y96{bottom:-328.291533pt;}
.y95{bottom:-310.398819pt;}
.y94{bottom:-292.423340pt;}
.y93{bottom:-274.447860pt;}
.y104{bottom:-256.980352pt;}
.y92{bottom:-252.355163pt;}
.y103{bottom:-239.941008pt;}
.y102{bottom:-222.821504pt;}
.y91{bottom:-217.579751pt;}
.y101{bottom:-205.702000pt;}
.y90{bottom:-199.688440pt;}
.y100{bottom:-188.662656pt;}
.y8f{bottom:-181.712961pt;}
.yff{bottom:-171.543152pt;}
.y8e{bottom:-163.737482pt;}
.yfe{bottom:-154.503808pt;}
.y8d{bottom:-145.846170pt;}
.yfd{bottom:-137.384304pt;}
.y8c{bottom:-127.870691pt;}
.yfc{bottom:-120.264800pt;}
.y8b{bottom:-109.979380pt;}
.yfb{bottom:-87.545733pt;}
.y8a{bottom:-75.622960pt;}
.yfa{bottom:-72.105333pt;}
.y89{bottom:-59.327380pt;}
.yf9{bottom:-56.745333pt;}
.y88{bottom:-43.199380pt;}
.yf8{bottom:-41.385333pt;}
.yf7{bottom:-25.944933pt;}
.y87{bottom:-22.282154pt;}
.yf6{bottom:-6.019061pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:12.329438pt;}
.y46{bottom:28.346667pt;}
.y45{bottom:92.108000pt;}
.y15{bottom:93.018667pt;}
.yb8{bottom:93.845333pt;}
.y175{bottom:103.518667pt;}
.ye5{bottom:105.909333pt;}
.y7d{bottom:106.308000pt;}
.y44{bottom:108.844000pt;}
.y14{bottom:108.920000pt;}
.yb7{bottom:110.582667pt;}
.y174{bottom:118.861333pt;}
.yc3{bottom:122.646667pt;}
.y7c{bottom:123.045333pt;}
.y13{bottom:124.820000pt;}
.y43{bottom:125.581333pt;}
.yb6{bottom:127.320000pt;}
.y173{bottom:134.202667pt;}
.y13f{bottom:137.073333pt;}
.yc2{bottom:139.384000pt;}
.y7b{bottom:139.782667pt;}
.y12{bottom:140.720000pt;}
.y42{bottom:142.318667pt;}
.yb5{bottom:144.057333pt;}
.y172{bottom:149.545333pt;}
.y13e{bottom:152.416000pt;}
.yc1{bottom:156.121333pt;}
.y7a{bottom:156.520000pt;}
.y11{bottom:156.621333pt;}
.y41{bottom:159.056000pt;}
.yb4{bottom:160.793333pt;}
.y171{bottom:164.888000pt;}
.y13d{bottom:167.757333pt;}
.y10{bottom:172.521333pt;}
.yc0{bottom:172.858667pt;}
.y79{bottom:173.257333pt;}
.y40{bottom:175.793333pt;}
.yb3{bottom:177.530667pt;}
.y170{bottom:180.230667pt;}
.y13c{bottom:183.100000pt;}
.yf{bottom:188.421333pt;}
.ybf{bottom:189.596000pt;}
.y78{bottom:189.994667pt;}
.y10f{bottom:192.530667pt;}
.yb2{bottom:194.268000pt;}
.y16f{bottom:195.573333pt;}
.y3f{bottom:196.516000pt;}
.y13b{bottom:198.442667pt;}
.ye{bottom:204.322667pt;}
.ybe{bottom:206.333333pt;}
.y77{bottom:206.732000pt;}
.y10e{bottom:209.268000pt;}
.y16e{bottom:210.916000pt;}
.yb1{bottom:211.005333pt;}
.y13a{bottom:213.785333pt;}
.ye4{bottom:223.070667pt;}
.y76{bottom:223.469333pt;}
.y10d{bottom:226.005333pt;}
.y16d{bottom:226.258667pt;}
.ybd{bottom:227.056000pt;}
.yb0{bottom:227.742667pt;}
.y139{bottom:233.113333pt;}
.ye3{bottom:239.808000pt;}
.y75{bottom:240.206667pt;}
.y16c{bottom:241.601333pt;}
.y10c{bottom:242.742667pt;}
.yaf{bottom:244.480000pt;}
.ye2{bottom:256.545333pt;}
.y74{bottom:256.944000pt;}
.y10b{bottom:259.480000pt;}
.yae{bottom:261.217333pt;}
.y138{bottom:263.001333pt;}
.y3e{bottom:263.316000pt;}
.yd{bottom:266.570667pt;}
.y16b{bottom:272.285333pt;}
.ye1{bottom:273.282667pt;}
.y73{bottom:273.681333pt;}
.y10a{bottom:276.217333pt;}
.yad{bottom:277.954667pt;}
.yc{bottom:282.470667pt;}
.y137{bottom:286.592000pt;}
.y16a{bottom:287.628000pt;}
.ye0{bottom:290.020000pt;}
.y72{bottom:290.417333pt;}
.yac{bottom:294.692000pt;}
.y3d{bottom:296.552000pt;}
.yb{bottom:298.370667pt;}
.y169{bottom:302.970667pt;}
.y109{bottom:304.380000pt;}
.ydf{bottom:306.757333pt;}
.y71{bottom:307.154667pt;}
.y136{bottom:310.184000pt;}
.yab{bottom:311.429333pt;}
.y3c{bottom:313.846667pt;}
.ya{bottom:314.272000pt;}
.y168{bottom:318.313333pt;}
.y108{bottom:321.476000pt;}
.yde{bottom:323.494667pt;}
.y70{bottom:323.892000pt;}
.yaa{bottom:328.166667pt;}
.y3b{bottom:331.141333pt;}
.y167{bottom:333.656000pt;}
.y135{bottom:333.776000pt;}
.y107{bottom:338.572000pt;}
.y9{bottom:339.470667pt;}
.ydd{bottom:340.232000pt;}
.y6f{bottom:340.629333pt;}
.y3a{bottom:348.437333pt;}
.ya9{bottom:348.889333pt;}
.y166{bottom:348.998667pt;}
.y106{bottom:355.668000pt;}
.ydc{bottom:356.968000pt;}
.y6e{bottom:357.366667pt;}
.y8{bottom:363.341333pt;}
.y165{bottom:364.341333pt;}
.y39{bottom:365.732000pt;}
.y105{bottom:372.764000pt;}
.y134{bottom:372.989333pt;}
.ydb{bottom:373.705333pt;}
.y6d{bottom:374.104000pt;}
.ya8{bottom:378.777333pt;}
.y7{bottom:379.241333pt;}
.y164{bottom:379.684000pt;}
.y38{bottom:383.028000pt;}
.y133{bottom:388.610667pt;}
.yda{bottom:390.442667pt;}
.y6c{bottom:390.841333pt;}
.y86{bottom:390.998157pt;}
.y163{bottom:395.025333pt;}
.y6{bottom:395.141333pt;}
.ye6{bottom:395.357333pt;}
.ya7{bottom:395.514667pt;}
.y37{bottom:400.322667pt;}
.y132{bottom:404.232000pt;}
.yd9{bottom:407.180000pt;}
.y6b{bottom:407.578667pt;}
.y85{bottom:408.973636pt;}
.y162{bottom:410.368000pt;}
.y5{bottom:411.042667pt;}
.ya6{bottom:412.252000pt;}
.y36{bottom:417.617333pt;}
.y131{bottom:419.853333pt;}
.yd8{bottom:423.917333pt;}
.y6a{bottom:424.316000pt;}
.y161{bottom:425.710667pt;}
.y84{bottom:426.864948pt;}
.y4{bottom:426.942667pt;}
.ya5{bottom:428.989333pt;}
.y35{bottom:434.913333pt;}
.y130{bottom:435.474667pt;}
.yd7{bottom:440.654667pt;}
.y69{bottom:441.053333pt;}
.yf5{bottom:441.980483pt;}
.y3{bottom:442.842667pt;}
.y83{bottom:444.840427pt;}
.ya4{bottom:445.726667pt;}
.y34{bottom:452.208000pt;}
.y160{bottom:456.396000pt;}
.yd6{bottom:457.392000pt;}
.y68{bottom:457.790667pt;}
.y2{bottom:458.744000pt;}
.yf4{bottom:459.019827pt;}
.y12f{bottom:459.066667pt;}
.ya3{bottom:462.464000pt;}
.y82{bottom:462.815906pt;}
.y178{bottom:467.686667pt;}
.y33{bottom:469.502667pt;}
.y15f{bottom:471.738667pt;}
.yd5{bottom:474.129333pt;}
.y67{bottom:474.528000pt;}
.y1{bottom:474.644000pt;}
.y12e{bottom:474.688000pt;}
.yf3{bottom:476.139331pt;}
.ya2{bottom:479.201333pt;}
.y81{bottom:480.708620pt;}
.y177{bottom:483.029333pt;}
.y32{bottom:486.798667pt;}
.y15e{bottom:487.081333pt;}
.y12d{bottom:490.309333pt;}
.yd4{bottom:490.866667pt;}
.y66{bottom:491.265333pt;}
.yf2{bottom:493.258835pt;}
.y176{bottom:498.372000pt;}
.y15d{bottom:502.424000pt;}
.y31{bottom:504.093333pt;}
.y12c{bottom:505.930667pt;}
.yd3{bottom:507.604000pt;}
.y65{bottom:508.002667pt;}
.ya1{bottom:509.037333pt;}
.yf1{bottom:510.298179pt;}
.y15c{bottom:517.766667pt;}
.y30{bottom:521.389333pt;}
.yd2{bottom:524.341333pt;}
.y64{bottom:524.740000pt;}
.ya0{bottom:526.133333pt;}
.yf0{bottom:527.417683pt;}
.y80{bottom:531.780746pt;}
.y15b{bottom:533.108000pt;}
.y12b{bottom:537.492000pt;}
.y2f{bottom:538.684000pt;}
.y7f{bottom:540.768620pt;}
.yd1{bottom:541.078667pt;}
.y63{bottom:541.477333pt;}
.y9f{bottom:543.229333pt;}
.yef{bottom:544.537187pt;}
.y15a{bottom:548.450667pt;}
.y12a{bottom:554.229333pt;}
.y2e{bottom:555.978667pt;}
.yd0{bottom:557.816000pt;}
.y62{bottom:558.214667pt;}
.yee{bottom:561.576531pt;}
.y159{bottom:563.793333pt;}
.y7e{bottom:565.822667pt;}
.y129{bottom:570.966667pt;}
.y2d{bottom:573.274667pt;}
.ycf{bottom:574.553333pt;}
.y61{bottom:574.952000pt;}
.yed{bottom:578.696035pt;}
.y158{bottom:579.136000pt;}
.y128{bottom:587.704000pt;}
.y2c{bottom:590.569333pt;}
.yce{bottom:591.290667pt;}
.y60{bottom:591.689333pt;}
.y157{bottom:594.478667pt;}
.yec{bottom:595.735379pt;}
.ybc{bottom:596.510667pt;}
.y127{bottom:604.441333pt;}
.y2b{bottom:607.864000pt;}
.ycd{bottom:608.028000pt;}
.y5f{bottom:608.426667pt;}
.y156{bottom:609.821333pt;}
.yeb{bottom:612.854883pt;}
.ybb{bottom:613.248000pt;}
.y126{bottom:621.178667pt;}
.ycc{bottom:624.765333pt;}
.y2a{bottom:625.160000pt;}
.y5e{bottom:625.164000pt;}
.yea{bottom:629.974387pt;}
.yba{bottom:629.985333pt;}
.y125{bottom:637.916000pt;}
.y155{bottom:640.506667pt;}
.ycb{bottom:641.502667pt;}
.y5d{bottom:641.901333pt;}
.y29{bottom:642.454667pt;}
.yb9{bottom:646.722667pt;}
.ye9{bottom:647.015067pt;}
.y124{bottom:654.653333pt;}
.y154{bottom:655.848000pt;}
.yca{bottom:658.240000pt;}
.y5c{bottom:658.638667pt;}
.y153{bottom:671.190667pt;}
.y123{bottom:671.390667pt;}
.yc9{bottom:674.977333pt;}
.y5b{bottom:675.376000pt;}
.y28{bottom:676.640000pt;}
.y152{bottom:686.533333pt;}
.y122{bottom:688.128000pt;}
.y27{bottom:690.985333pt;}
.yc8{bottom:691.714667pt;}
.y5a{bottom:692.113333pt;}
.ye8{bottom:695.655187pt;}
.y151{bottom:701.876000pt;}
.ye7{bottom:704.215067pt;}
.y121{bottom:704.865333pt;}
.yc7{bottom:708.452000pt;}
.y59{bottom:708.850667pt;}
.y26{bottom:709.189333pt;}
.y150{bottom:717.218667pt;}
.y25{bottom:719.678667pt;}
.y120{bottom:721.602667pt;}
.yc6{bottom:725.189333pt;}
.y58{bottom:725.588000pt;}
.y14f{bottom:732.561333pt;}
.y24{bottom:737.882667pt;}
.y11f{bottom:738.340000pt;}
.yc5{bottom:741.926667pt;}
.y57{bottom:742.324000pt;}
.y14e{bottom:747.904000pt;}
.y23{bottom:748.370667pt;}
.y11e{bottom:755.077333pt;}
.y56{bottom:759.061333pt;}
.yc4{bottom:762.648000pt;}
.y14d{bottom:763.246667pt;}
.y22{bottom:766.574667pt;}
.y11d{bottom:771.814667pt;}
.y55{bottom:775.798667pt;}
.y21{bottom:777.064000pt;}
.y14c{bottom:778.589333pt;}
.y11c{bottom:788.552000pt;}
.y54{bottom:792.536000pt;}
.y14b{bottom:793.930667pt;}
.y20{bottom:795.266667pt;}
.y11b{bottom:805.289333pt;}
.y1f{bottom:805.756000pt;}
.y53{bottom:809.273333pt;}
.y11a{bottom:822.025333pt;}
.y1e{bottom:823.960000pt;}
.y14a{bottom:824.616000pt;}
.y52{bottom:826.010667pt;}
.y119{bottom:838.762667pt;}
.y149{bottom:839.958667pt;}
.y51{bottom:842.748000pt;}
.y148{bottom:855.301333pt;}
.y118{bottom:855.500000pt;}
.y50{bottom:859.485333pt;}
.y1c{bottom:863.558667pt;}
.y1d{bottom:868.380000pt;}
.y147{bottom:870.644000pt;}
.y117{bottom:872.237333pt;}
.y4f{bottom:876.222667pt;}
.y146{bottom:885.986667pt;}
.y116{bottom:888.974667pt;}
.y4e{bottom:892.960000pt;}
.y1b{bottom:896.236000pt;}
.y110{bottom:897.782667pt;}
.y145{bottom:901.329333pt;}
.y115{bottom:905.712000pt;}
.y4d{bottom:909.697333pt;}
.y144{bottom:916.670667pt;}
.y1a{bottom:921.342667pt;}
.y114{bottom:922.449333pt;}
.y4c{bottom:926.434667pt;}
.y143{bottom:932.013333pt;}
.y113{bottom:939.186667pt;}
.y4b{bottom:943.172000pt;}
.y19{bottom:946.448000pt;}
.y142{bottom:947.356000pt;}
.y112{bottom:955.924000pt;}
.y4a{bottom:959.909333pt;}
.y141{bottom:962.698667pt;}
.y18{bottom:971.553333pt;}
.y111{bottom:972.661333pt;}
.y49{bottom:976.646667pt;}
.y140{bottom:978.041333pt;}
.y48{bottom:993.384000pt;}
.y16{bottom:1010.209333pt;}
.y47{bottom:1046.810667pt;}
.h1d{height:13.453920pt;}
.h16{height:14.948784pt;}
.ha{height:27.672303pt;}
.h8{height:29.196090pt;}
.h2{height:32.284045pt;}
.h1b{height:33.378918pt;}
.h14{height:35.051460pt;}
.hb{height:36.896250pt;}
.h15{height:37.087439pt;}
.h9{height:38.415786pt;}
.hc{height:38.809074pt;}
.h5{height:38.947124pt;}
.h18{height:39.359687pt;}
.h7{height:39.531597pt;}
.h13{height:41.316844pt;}
.h10{height:41.327672pt;}
.hd{height:41.508454pt;}
.h1c{height:43.660390pt;}
.h1a{height:44.390625pt;}
.h3{height:45.271688pt;}
.he{height:46.120196pt;}
.h12{height:46.610156pt;}
.h19{height:49.421563pt;}
.h11{height:51.892641pt;}
.h6{height:69.148877pt;}
.h4{height:82.003069pt;}
.hf{height:362.976600pt;}
.h17{height:415.298667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:214.529007pt;}
.w4{width:557.780267pt;}
.w3{width:593.026280pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x30{left:-67.812920pt;}
.x9a{left:-64.583733pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x2{left:51.606197pt;}
.xbf{left:74.516000pt;}
.xbe{left:76.309333pt;}
.xc3{left:97.874667pt;}
.x2f{left:100.147720pt;}
.xc4{left:106.893333pt;}
.x9b{left:109.256267pt;}
.x31{left:114.719080pt;}
.x99{left:117.771733pt;}
.x9c{left:137.576267pt;}
.x33{left:144.455080pt;}
.x3{left:147.572000pt;}
.x4{left:153.109333pt;}
.xf{left:220.912000pt;}
.xd{left:221.858667pt;}
.x8e{left:230.658667pt;}
.x5{left:238.441333pt;}
.xe{left:239.924000pt;}
.x3b{left:241.301333pt;}
.x10{left:250.204000pt;}
.x6{left:256.072000pt;}
.xb2{left:269.732000pt;}
.x19{left:279.906667pt;}
.x76{left:281.894667pt;}
.xb3{left:283.016000pt;}
.x29{left:284.550667pt;}
.x1a{left:286.548000pt;}
.x1c{left:289.914667pt;}
.x77{left:295.177333pt;}
.x1d{left:296.557333pt;}
.x2a{left:297.834667pt;}
.x87{left:298.837333pt;}
.x45{left:300.700000pt;}
.x5c{left:309.940000pt;}
.x60{left:311.312000pt;}
.x4d{left:313.376000pt;}
.x6b{left:317.541333pt;}
.x3c{left:324.914667pt;}
.x46{left:326.906667pt;}
.x61{left:327.982667pt;}
.x3d{left:329.426667pt;}
.x48{left:331.490667pt;}
.xa8{left:334.224000pt;}
.xc5{left:338.981333pt;}
.x47{left:340.189333pt;}
.x62{left:341.266667pt;}
.x3e{left:342.710667pt;}
.x49{left:344.773333pt;}
.x78{left:353.800000pt;}
.xad{left:355.370667pt;}
.x5d{left:356.706667pt;}
.x51{left:364.233333pt;}
.x53{left:367.304000pt;}
.x5e{left:369.990667pt;}
.x6f{left:372.561333pt;}
.x54{left:374.086667pt;}
.xc6{left:382.000000pt;}
.x52{left:383.229333pt;}
.x5f{left:386.661333pt;}
.x69{left:391.741333pt;}
.x11{left:392.738667pt;}
.x7{left:395.764000pt;}
.x12{left:399.380000pt;}
.x1e{left:402.568000pt;}
.x6a{left:405.024000pt;}
.x1b{left:406.173333pt;}
.x1f{left:409.210667pt;}
.x8{left:413.394667pt;}
.xbb{left:417.022667pt;}
.x88{left:418.100000pt;}
.xb8{left:420.202667pt;}
.xb6{left:421.133333pt;}
.x97{left:423.278667pt;}
.x6e{left:424.962667pt;}
.xa3{left:428.906667pt;}
.x22{left:430.457333pt;}
.xb7{left:434.416000pt;}
.x9d{left:437.401333pt;}
.x13{left:438.726667pt;}
.xa4{left:442.190667pt;}
.x23{left:443.741333pt;}
.x14{left:445.368000pt;}
.x24{left:446.996000pt;}
.x7f{left:447.965333pt;}
.x93{left:450.142667pt;}
.x55{left:454.634667pt;}
.x8a{left:455.997333pt;}
.x25{left:460.280000pt;}
.x80{left:461.249333pt;}
.x94{left:463.425333pt;}
.x81{left:464.586667pt;}
.x34{left:466.568000pt;}
.x35{left:469.956000pt;}
.x3f{left:472.150667pt;}
.x2d{left:474.242667pt;}
.x72{left:476.158667pt;}
.x82{left:477.870667pt;}
.x70{left:481.462667pt;}
.x36{left:483.238667pt;}
.x40{left:485.434667pt;}
.x37{left:486.626667pt;}
.x2e{left:487.526667pt;}
.x73{left:489.442667pt;}
.xc0{left:490.354667pt;}
.x17{left:491.726667pt;}
.x71{left:493.365333pt;}
.x18{left:498.368000pt;}
.x38{left:499.909333pt;}
.x67{left:500.936000pt;}
.x39{left:502.729333pt;}
.x9{left:503.664000pt;}
.x41{left:505.240000pt;}
.x68{left:509.020000pt;}
.x79{left:510.593333pt;}
.xa7{left:512.185333pt;}
.x4a{left:514.066667pt;}
.x3a{left:516.013333pt;}
.x96{left:517.278667pt;}
.x89{left:519.304000pt;}
.xb1{left:521.748000pt;}
.x7a{left:523.877333pt;}
.x4b{left:527.350667pt;}
.x4c{left:530.604000pt;}
.xa{left:533.162667pt;}
.x8d{left:536.221333pt;}
.x15{left:537.482667pt;}
.x16{left:544.124000pt;}
.xbc{left:547.685333pt;}
.x27{left:549.358667pt;}
.xc1{left:551.017333pt;}
.x74{left:552.125333pt;}
.x42{left:560.397333pt;}
.xc2{left:561.609333pt;}
.x28{left:562.642667pt;}
.xb4{left:564.133333pt;}
.x75{left:565.409333pt;}
.xbd{left:567.484000pt;}
.x43{left:573.681333pt;}
.x20{left:576.725333pt;}
.x8f{left:580.242667pt;}
.x21{left:583.368000pt;}
.xae{left:587.221333pt;}
.x44{left:590.352000pt;}
.xa9{left:592.377333pt;}
.x90{left:593.526667pt;}
.x7b{left:594.848000pt;}
.xaf{left:599.450667pt;}
.xaa{left:603.788000pt;}
.x32{left:604.856647pt;}
.x7c{left:608.132000pt;}
.xa0{left:621.274667pt;}
.x2b{left:627.628000pt;}
.xa1{left:634.557333pt;}
.x91{left:635.700000pt;}
.x9e{left:638.453333pt;}
.x2c{left:640.910667pt;}
.x92{left:644.446667pt;}
.x56{left:645.977333pt;}
.xac{left:648.864000pt;}
.x9f{left:651.736000pt;}
.x57{left:652.758667pt;}
.x4e{left:654.966667pt;}
.xa5{left:657.254667pt;}
.x98{left:658.614667pt;}
.x5a{left:662.954667pt;}
.xa2{left:664.906667pt;}
.xb0{left:666.098667pt;}
.x4f{left:668.250667pt;}
.xa6{left:670.537333pt;}
.x85{left:673.504000pt;}
.x5b{left:676.237333pt;}
.xb9{left:677.396000pt;}
.xab{left:678.606667pt;}
.x83{left:680.438667pt;}
.x8b{left:685.566667pt;}
.x86{left:686.788000pt;}
.x95{left:688.656000pt;}
.x84{left:691.364000pt;}
.x58{left:693.176000pt;}
.x63{left:694.310667pt;}
.xba{left:697.454667pt;}
.x6c{left:698.658667pt;}
.x59{left:699.958667pt;}
.xb5{left:704.590667pt;}
.x64{left:707.194667pt;}
.x7d{left:710.854667pt;}
.x6d{left:711.942667pt;}
.x65{left:713.534667pt;}
.xb{left:719.172000pt;}
.x50{left:722.185333pt;}
.x7e{left:724.137333pt;}
.x66{left:726.420000pt;}
.xc{left:727.745333pt;}
.x26{left:740.165333pt;}
.x8c{left:741.281333pt;}
}




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