
    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_5b2c6dd1683cbc59e9fcc320.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_95ad5e4aca5d2326e0a7e1ff.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b692eae198d478fb9bfd6423.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_041430fc5d6c9c7f603a0b9d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.943000;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_9174ee908c3d84ce572f703d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_56a5fd1a5677301ecfa97aac.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_952552a3e30f90d2cd40a34b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666000;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_dd544b9004ee2a4b77c4e333.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666000;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_61ca3cf9294ac5c63e155b5e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.486000;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_cb965455b25ea7e1ad794562.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_92979354541a6b4d2fdb378f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.675781;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_ca421fafa8ff29f026745ef9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.200684;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_7ec421aebb8b766777785cff.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_c7115ddfa2a044a621bbe9f2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_147cd56dbe72c82e23dc98b5.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_2cc19746d99a4d25f0af40f9.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.752441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_cb965455b25ea7e1ad794562.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_92979354541a6b4d2fdb378f.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.675781;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_ca421fafa8ff29f026745ef9.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.200684;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_02c16a2295fdad09f9021619.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_c7115ddfa2a044a621bbe9f2.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_147cd56dbe72c82e23dc98b5.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_2cc19746d99a4d25f0af40f9.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.752441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_4336ad3e4c7b87b35432bcfd.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m29{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);}
.ma{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);}
.m21{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);}
.m6{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);}
.m10{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);}
.m16{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);}
.m19{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m1b{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);}
.m13{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);}
.m1c{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);}
.m15{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);}
.m2b{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);}
.m1f{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);}
.m1{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m12{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);}
.m7{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);}
.m2{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);}
.me{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);}
.m1d{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);}
.mb{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);}
.m17{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);}
.m20{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);}
.m5{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);}
.mc{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);}
.m27{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);}
.m25{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);}
.m26{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);}
.m28{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);}
.m14{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);}
.m1a{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);}
.m11{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);}
.m9{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);}
.mf{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);}
.md{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.524000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v3{vertical-align:43.926000px;}
.ls67{letter-spacing:-0.438876px;}
.ls70{letter-spacing:-0.408816px;}
.ls3f{letter-spacing:-0.324000px;}
.ls6f{letter-spacing:-0.294588px;}
.ls50{letter-spacing:-0.288576px;}
.ls55{letter-spacing:-0.270540px;}
.ls6a{letter-spacing:-0.264528px;}
.ls6c{letter-spacing:-0.258516px;}
.ls5e{letter-spacing:-0.240480px;}
.ls6d{letter-spacing:-0.228456px;}
.ls49{letter-spacing:-0.226800px;}
.ls64{letter-spacing:-0.204408px;}
.ls60{letter-spacing:-0.168336px;}
.ls63{letter-spacing:-0.162324px;}
.ls48{letter-spacing:-0.145800px;}
.ls54{letter-spacing:-0.132264px;}
.ls5a{letter-spacing:-0.126252px;}
.ls6e{letter-spacing:-0.120240px;}
.ls4f{letter-spacing:-0.114228px;}
.ls56{letter-spacing:-0.108216px;}
.ls44{letter-spacing:-0.097200px;}
.ls42{letter-spacing:-0.091800px;}
.ls4e{letter-spacing:-0.090180px;}
.ls58{letter-spacing:-0.084168px;}
.ls4a{letter-spacing:-0.081000px;}
.ls62{letter-spacing:-0.078156px;}
.ls5f{letter-spacing:-0.072144px;}
.ls41{letter-spacing:-0.070200px;}
.ls66{letter-spacing:-0.066132px;}
.ls43{letter-spacing:-0.064800px;}
.ls68{letter-spacing:-0.060120px;}
.ls5b{letter-spacing:-0.054108px;}
.ls51{letter-spacing:-0.048096px;}
.ls40{letter-spacing:-0.043200px;}
.ls3c{letter-spacing:-0.043092px;}
.ls53{letter-spacing:-0.042084px;}
.ls4d{letter-spacing:-0.036072px;}
.ls46{letter-spacing:-0.032400px;}
.ls61{letter-spacing:-0.030060px;}
.ls4c{letter-spacing:-0.027000px;}
.ls6b{letter-spacing:-0.024048px;}
.ls65{letter-spacing:-0.018036px;}
.ls5c{letter-spacing:-0.012024px;}
.ls3e{letter-spacing:-0.010800px;}
.ls59{letter-spacing:-0.006012px;}
.ls47{letter-spacing:-0.005400px;}
.lsb{letter-spacing:0.000000px;}
.ls78{letter-spacing:0.000179px;}
.ls2{letter-spacing:0.000583px;}
.ls7b{letter-spacing:0.000604px;}
.ls5{letter-spacing:0.000845px;}
.ls79{letter-spacing:0.001036px;}
.ls77{letter-spacing:0.001155px;}
.ls7e{letter-spacing:0.001746px;}
.ls6{letter-spacing:0.002074px;}
.ls7d{letter-spacing:0.002868px;}
.ls73{letter-spacing:0.003040px;}
.ls7a{letter-spacing:0.003668px;}
.ls7{letter-spacing:0.003859px;}
.ls75{letter-spacing:0.004800px;}
.ls38{letter-spacing:0.006012px;}
.ls1a{letter-spacing:0.010800px;}
.ls2f{letter-spacing:0.012024px;}
.ls24{letter-spacing:0.016200px;}
.ls2b{letter-spacing:0.018036px;}
.ls20{letter-spacing:0.021600px;}
.ls28{letter-spacing:0.024048px;}
.ls18{letter-spacing:0.027000px;}
.ls3b{letter-spacing:0.030060px;}
.ls1b{letter-spacing:0.032400px;}
.ls2d{letter-spacing:0.042084px;}
.ls19{letter-spacing:0.043200px;}
.ls29{letter-spacing:0.048096px;}
.ls22{letter-spacing:0.054000px;}
.ls2e{letter-spacing:0.054108px;}
.ls1f{letter-spacing:0.059400px;}
.ls34{letter-spacing:0.060120px;}
.ls27{letter-spacing:0.066132px;}
.ls3a{letter-spacing:0.072144px;}
.ls39{letter-spacing:0.084168px;}
.ls26{letter-spacing:0.096192px;}
.ls69{letter-spacing:0.108216px;}
.ls45{letter-spacing:0.129600px;}
.ls52{letter-spacing:0.132264px;}
.ls1d{letter-spacing:0.140400px;}
.ls57{letter-spacing:0.144288px;}
.ls5d{letter-spacing:0.150300px;}
.ls4b{letter-spacing:0.151200px;}
.ls3d{letter-spacing:0.153216px;}
.ls1e{letter-spacing:0.183600px;}
.ls15{letter-spacing:0.191520px;}
.ls25{letter-spacing:0.192384px;}
.ls36{letter-spacing:0.817632px;}
.ls35{letter-spacing:1.178352px;}
.ls37{letter-spacing:1.189204px;}
.ls23{letter-spacing:1.263600px;}
.ls21{letter-spacing:1.625400px;}
.ls33{letter-spacing:2.254500px;}
.ls32{letter-spacing:2.615220px;}
.ls0{letter-spacing:2.989200px;}
.ls31{letter-spacing:4.418820px;}
.ls30{letter-spacing:4.779540px;}
.ls1c{letter-spacing:7.749000px;}
.ls17{letter-spacing:8.110800px;}
.ls2a{letter-spacing:9.817596px;}
.ls2c{letter-spacing:10.178316px;}
.lsa{letter-spacing:11.954850px;}
.ls12{letter-spacing:12.530693px;}
.ls71{letter-spacing:13.448400px;}
.ls7c{letter-spacing:13.454400px;}
.ls7f{letter-spacing:13.454782px;}
.ls72{letter-spacing:13.635940px;}
.ls80{letter-spacing:14.009224px;}
.ls1{letter-spacing:14.944200px;}
.ls9{letter-spacing:15.211250px;}
.lsd{letter-spacing:15.663483px;}
.ls3{letter-spacing:17.935200px;}
.ls76{letter-spacing:18.115106px;}
.lsf{letter-spacing:19.187968px;}
.ls10{letter-spacing:20.084602px;}
.ls74{letter-spacing:21.444518px;}
.lsc{letter-spacing:24.017708px;}
.ls4{letter-spacing:70.236600px;}
.ls8{letter-spacing:72.353510px;}
.lse{letter-spacing:94.286700px;}
.ls11{letter-spacing:283.885063px;}
.ls13{letter-spacing:594.550090px;}
.ls14{letter-spacing:608.002090px;}
.ls16{letter-spacing:2035.838448px;}
.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;}
}
.ws94{word-spacing:-60.120000px;}
.ws8a{word-spacing:-54.000000px;}
.ws77{word-spacing:-47.880000px;}
.ws52{word-spacing:-14.943900px;}
.ws8{word-spacing:-13.449600px;}
.ws18{word-spacing:-11.955150px;}
.ws7{word-spacing:-11.357400px;}
.ws44{word-spacing:-3.048556px;}
.wscc{word-spacing:-2.749678px;}
.ws2b{word-spacing:-2.689902px;}
.ws2f{word-spacing:-2.151922px;}
.ws10e{word-spacing:-2.044339px;}
.wsda{word-spacing:-2.032370px;}
.ws5a{word-spacing:-1.793268px;}
.wsc5{word-spacing:-1.775347px;}
.ws109{word-spacing:-1.667750px;}
.ws40{word-spacing:-1.613941px;}
.wsc6{word-spacing:-1.560154px;}
.ws27{word-spacing:-1.494390px;}
.ws62{word-spacing:-1.434614px;}
.ws43{word-spacing:-1.315063px;}
.ws42{word-spacing:-1.255288px;}
.ws53{word-spacing:-1.195512px;}
.ws54{word-spacing:-1.135736px;}
.ws51{word-spacing:-1.075961px;}
.ws10a{word-spacing:-1.022170px;}
.ws37{word-spacing:-1.016185px;}
.wscb{word-spacing:-0.956410px;}
.wsca{word-spacing:-0.836858px;}
.ws59{word-spacing:-0.777083px;}
.ws58{word-spacing:-0.717307px;}
.ws30{word-spacing:-0.597756px;}
.ws57{word-spacing:-0.418429px;}
.ws107{word-spacing:-0.376589px;}
.ws13{word-spacing:-0.358654px;}
.wsf2{word-spacing:-0.322790px;}
.ws12{word-spacing:-0.298878px;}
.ws93{word-spacing:-0.252504px;}
.ws78{word-spacing:-0.239400px;}
.ws1f{word-spacing:-0.239102px;}
.ws6f{word-spacing:-0.215194px;}
.wsad{word-spacing:-0.210420px;}
.ws91{word-spacing:-0.205200px;}
.wsa0{word-spacing:-0.204408px;}
.ws7a{word-spacing:-0.201096px;}
.ws89{word-spacing:-0.194400px;}
.ws9a{word-spacing:-0.192384px;}
.ws87{word-spacing:-0.183600px;}
.ws19{word-spacing:-0.179327px;}
.wsb9{word-spacing:-0.168336px;}
.wsfa{word-spacing:-0.161395px;}
.wsab{word-spacing:-0.144288px;}
.wsbf{word-spacing:-0.132264px;}
.ws9f{word-spacing:-0.126252px;}
.wsbb{word-spacing:-0.120240px;}
.wsa{word-spacing:-0.119551px;}
.wsaa{word-spacing:-0.114228px;}
.wsa3{word-spacing:-0.108216px;}
.ws8f{word-spacing:-0.108000px;}
.ws74{word-spacing:-0.107597px;}
.wsac{word-spacing:-0.102204px;}
.ws7e{word-spacing:-0.097200px;}
.wsc1{word-spacing:-0.090180px;}
.ws81{word-spacing:-0.086400px;}
.wsa1{word-spacing:-0.084168px;}
.ws7d{word-spacing:-0.081000px;}
.wsa8{word-spacing:-0.078156px;}
.ws8e{word-spacing:-0.075600px;}
.wsb1{word-spacing:-0.072144px;}
.ws84{word-spacing:-0.070200px;}
.wsbd{word-spacing:-0.066132px;}
.ws7c{word-spacing:-0.064800px;}
.wsa7{word-spacing:-0.060120px;}
.ws4{word-spacing:-0.059776px;}
.wsa4{word-spacing:-0.054108px;}
.ws9{word-spacing:-0.053798px;}
.ws8b{word-spacing:-0.048600px;}
.wsa9{word-spacing:-0.048096px;}
.ws79{word-spacing:-0.047880px;}
.ws7b{word-spacing:-0.043200px;}
.wsb6{word-spacing:-0.042084px;}
.wsbc{word-spacing:-0.036072px;}
.wsb2{word-spacing:-0.030060px;}
.ws92{word-spacing:-0.027000px;}
.ws95{word-spacing:-0.024048px;}
.ws88{word-spacing:-0.021600px;}
.ws9b{word-spacing:-0.018036px;}
.ws99{word-spacing:-0.012024px;}
.ws80{word-spacing:-0.010800px;}
.ws112{word-spacing:-0.006998px;}
.wsa6{word-spacing:-0.006012px;}
.ws76{word-spacing:-0.004788px;}
.wsfb{word-spacing:-0.002755px;}
.ws6{word-spacing:-0.001542px;}
.ws3{word-spacing:-0.001483px;}
.ws1{word-spacing:-0.001458px;}
.wsf4{word-spacing:-0.000998px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:0.000600px;}
.ws17{word-spacing:0.000629px;}
.ws5{word-spacing:0.002201px;}
.wsb7{word-spacing:0.006012px;}
.ws85{word-spacing:0.010800px;}
.wsaf{word-spacing:0.012024px;}
.ws82{word-spacing:0.016200px;}
.wsb3{word-spacing:0.018036px;}
.wsa2{word-spacing:0.024048px;}
.ws90{word-spacing:0.027000px;}
.ws96{word-spacing:0.030060px;}
.ws83{word-spacing:0.037800px;}
.ws86{word-spacing:0.043200px;}
.ws9e{word-spacing:0.048096px;}
.ws97{word-spacing:0.054108px;}
.ws10{word-spacing:0.059776px;}
.wsc2{word-spacing:0.060120px;}
.wsa5{word-spacing:0.066132px;}
.ws9c{word-spacing:0.072144px;}
.ws8c{word-spacing:0.091800px;}
.wsb4{word-spacing:0.102204px;}
.wsed{word-spacing:0.107597px;}
.wsb0{word-spacing:0.108216px;}
.ws21{word-spacing:0.119551px;}
.wsb5{word-spacing:0.144288px;}
.wsee{word-spacing:0.161395px;}
.wsc0{word-spacing:0.168336px;}
.ws8d{word-spacing:0.172800px;}
.ws2a{word-spacing:0.179327px;}
.wsae{word-spacing:0.180360px;}
.wsbe{word-spacing:0.198396px;}
.wsba{word-spacing:0.204408px;}
.ws9d{word-spacing:0.210420px;}
.wsf3{word-spacing:0.215194px;}
.ws98{word-spacing:0.228456px;}
.wsc3{word-spacing:0.234468px;}
.wse{word-spacing:0.239102px;}
.ws7f{word-spacing:0.270000px;}
.wsf{word-spacing:0.298878px;}
.ws10d{word-spacing:0.322790px;}
.wsc4{word-spacing:0.348696px;}
.ws5e{word-spacing:0.358654px;}
.ws114{word-spacing:0.376589px;}
.wsb8{word-spacing:0.378756px;}
.ws20{word-spacing:0.418429px;}
.wsec{word-spacing:0.430387px;}
.ws117{word-spacing:0.484186px;}
.ws4d{word-spacing:0.537980px;}
.ws118{word-spacing:0.537984px;}
.ws73{word-spacing:0.591782px;}
.ws29{word-spacing:0.597756px;}
.wsc9{word-spacing:0.657532px;}
.wse0{word-spacing:0.717307px;}
.ws3c{word-spacing:0.745985px;}
.ws22{word-spacing:0.777083px;}
.ws11{word-spacing:0.836858px;}
.ws26{word-spacing:0.896634px;}
.ws72{word-spacing:0.914573px;}
.ws16{word-spacing:0.956410px;}
.ws31{word-spacing:1.016185px;}
.ws38{word-spacing:1.075961px;}
.ws2d{word-spacing:1.135736px;}
.wse9{word-spacing:1.183565px;}
.ws2c{word-spacing:1.195512px;}
.ws47{word-spacing:1.315063px;}
.wsef{word-spacing:1.343021px;}
.ws33{word-spacing:1.434614px;}
.ws34{word-spacing:1.494390px;}
.ws49{word-spacing:1.554166px;}
.ws35{word-spacing:1.613941px;}
.wse8{word-spacing:1.775347px;}
.ws32{word-spacing:1.793268px;}
.ws56{word-spacing:1.853044px;}
.ws2e{word-spacing:1.912819px;}
.wsea{word-spacing:1.936742px;}
.ws110{word-spacing:2.044339px;}
.ws5c{word-spacing:2.092146px;}
.ws111{word-spacing:2.098138px;}
.ws5b{word-spacing:2.151922px;}
.ws6b{word-spacing:2.151936px;}
.wsd3{word-spacing:2.211697px;}
.ws5d{word-spacing:2.271473px;}
.ws101{word-spacing:2.367130px;}
.wsb{word-spacing:2.450800px;}
.ws6a{word-spacing:2.474726px;}
.wsdf{word-spacing:2.570351px;}
.ws1c{word-spacing:2.749678px;}
.ws36{word-spacing:2.809453px;}
.ws25{word-spacing:3.048556px;}
.wse7{word-spacing:3.120307px;}
.wsd1{word-spacing:3.168107px;}
.ws105{word-spacing:3.222845px;}
.ws102{word-spacing:3.225840px;}
.ws100{word-spacing:3.225869px;}
.wsf5{word-spacing:3.227904px;}
.wsff{word-spacing:3.230093px;}
.ws10f{word-spacing:3.281702px;}
.ws1e{word-spacing:3.407209px;}
.ws4b{word-spacing:3.466985px;}
.wsf9{word-spacing:3.496896px;}
.ws1a{word-spacing:3.586536px;}
.ws4a{word-spacing:3.646312px;}
.wsfc{word-spacing:3.658291px;}
.wsd0{word-spacing:3.706087px;}
.ws104{word-spacing:3.712090px;}
.ws15{word-spacing:3.825638px;}
.wsde{word-spacing:3.885414px;}
.ws113{word-spacing:3.927283px;}
.wsd9{word-spacing:3.945190px;}
.wseb{word-spacing:4.088678px;}
.ws23{word-spacing:4.124516px;}
.ws28{word-spacing:4.244068px;}
.ws5f{word-spacing:4.303843px;}
.wsfe{word-spacing:4.680461px;}
.ws4f{word-spacing:4.722272px;}
.wsc{word-spacing:4.782048px;}
.wsdd{word-spacing:4.841824px;}
.ws3e{word-spacing:4.901599px;}
.wscf{word-spacing:4.961375px;}
.ws50{word-spacing:5.021150px;}
.ws24{word-spacing:5.080926px;}
.ws61{word-spacing:5.140702px;}
.ws10b{word-spacing:5.164646px;}
.ws60{word-spacing:5.200477px;}
.ws10c{word-spacing:5.218445px;}
.wsd2{word-spacing:5.320028px;}
.ws4c{word-spacing:5.379804px;}
.wsce{word-spacing:5.439580px;}
.wsd6{word-spacing:5.499355px;}
.wse4{word-spacing:5.648832px;}
.ws3a{word-spacing:5.917784px;}
.wscd{word-spacing:6.216662px;}
.wsd{word-spacing:6.276438px;}
.wsd5{word-spacing:6.336214px;}
.wsf7{word-spacing:6.348211px;}
.ws4e{word-spacing:6.395989px;}
.ws14{word-spacing:6.455765px;}
.ws108{word-spacing:6.455808px;}
.wse3{word-spacing:6.814418px;}
.ws1d{word-spacing:6.933970px;}
.wse1{word-spacing:7.053521px;}
.wsd4{word-spacing:7.113296px;}
.ws46{word-spacing:7.232848px;}
.ws48{word-spacing:7.531726px;}
.ws3d{word-spacing:7.890379px;}
.ws1b{word-spacing:8.129482px;}
.ws115{word-spacing:8.177357px;}
.ws116{word-spacing:8.231155px;}
.wsdb{word-spacing:8.249033px;}
.ws55{word-spacing:8.547911px;}
.ws103{word-spacing:8.661542px;}
.wsdc{word-spacing:8.906564px;}
.ws3b{word-spacing:9.085891px;}
.wse6{word-spacing:9.522317px;}
.wse5{word-spacing:10.006502px;}
.ws45{word-spacing:10.400954px;}
.wse2{word-spacing:10.520506px;}
.wsc8{word-spacing:10.652083px;}
.ws39{word-spacing:10.998710px;}
.wsc7{word-spacing:11.136269px;}
.wsf6{word-spacing:11.243866px;}
.ws3f{word-spacing:12.014896px;}
.wsf1{word-spacing:13.234406px;}
.wsf0{word-spacing:13.288205px;}
.wsd7{word-spacing:14.585246px;}
.wsfd{word-spacing:14.740762px;}
.ws106{word-spacing:14.848358px;}
.wsd8{word-spacing:18.649987px;}
.wsf8{word-spacing:22.702925px;}
.ws41{word-spacing:30.784434px;}
.ws64{word-spacing:117.495706px;}
.ws68{word-spacing:126.571496px;}
.ws65{word-spacing:130.945306px;}
.ws66{word-spacing:144.394906px;}
.ws63{word-spacing:151.872883px;}
.ws6c{word-spacing:153.809626px;}
.ws67{word-spacing:171.294106px;}
.ws69{word-spacing:175.377404px;}
.ws6d{word-spacing:196.686950px;}
.ws6e{word-spacing:210.082752px;}
.ws71{word-spacing:210.136550px;}
.ws70{word-spacing:223.532352px;}
.ws75{word-spacing:236.981952px;}
._15{margin-left:-7.694909px;}
._0{margin-left:-6.629708px;}
._4{margin-left:-4.949453px;}
._3{margin-left:-3.694256px;}
._2{margin-left:-1.956451px;}
._78{width:1.168051px;}
._1{width:2.994512px;}
._82{width:4.032991px;}
._6{width:12.427430px;}
._b{width:13.563678px;}
._14{width:15.410274px;}
._5{width:16.677504px;}
._7{width:18.394741px;}
._c{width:19.693661px;}
._17{width:20.845541px;}
._11{width:21.877870px;}
._a{width:22.894055px;}
._10{width:24.681940px;}
._8{width:26.480591px;}
._f{width:28.138164px;}
._12{width:29.550089px;}
._79{width:31.262639px;}
._9{width:32.458151px;}
._7e{width:33.534112px;}
._13{width:34.534153px;}
._80{width:36.207870px;}
._7c{width:38.316160px;}
._81{width:39.488026px;}
._7a{width:40.571489px;}
._16{width:42.739554px;}
._7d{width:45.956676px;}
._7f{width:50.803877px;}
._3e{width:56.187049px;}
._7b{width:62.400343px;}
._3f{width:65.877464px;}
._3d{width:70.271470px;}
._40{width:74.314464px;}
._43{width:75.643196px;}
._3c{width:85.156337px;}
._45{width:88.612339px;}
._42{width:89.802935px;}
._49{width:93.845929px;}
._47{width:97.719330px;}
._44{width:103.887356px;}
._48{width:107.930350px;}
._1b{width:112.008269px;}
._1a{width:113.245632px;}
._41{width:115.735621px;}
._4c{width:117.519399px;}
._46{width:121.236111px;}
._4b{width:122.906408px;}
._27{width:130.299725px;}
._20{width:132.451661px;}
._38{width:133.558279px;}
._21{width:141.329641px;}
._22{width:143.534131px;}
._24{width:145.363277px;}
._1f{width:149.720947px;}
._1c{width:153.433037px;}
._26{width:157.037530px;}
._32{width:158.759078px;}
._1d{width:162.309773px;}
._39{width:165.962684px;}
._4a{width:169.913876px;}
._23{width:171.294106px;}
._3a{width:175.415063px;}
._1e{width:178.825882px;}
._2c{width:179.926960px;}
._2f{width:184.044326px;}
._2b{width:185.443085px;}
._66{width:189.424166px;}
._3b{width:194.244503px;}
._4e{width:200.303948px;}
._31{width:206.370662px;}
._29{width:207.965952px;}
._30{width:212.461085px;}
._64{width:221.219021px;}
._4f{width:223.532352px;}
._61{width:232.374998px;}
._69{width:237.143347px;}
._2e{width:242.950796px;}
._55{width:244.406131px;}
._71{width:250.485350px;}
._28{width:251.907664px;}
._2a{width:260.206445px;}
._33{width:264.701578px;}
._5f{width:278.083930px;}
._54{width:281.150438px;}
._63{width:294.169651px;}
._19{width:301.378637px;}
._25{width:311.804976px;}
._2d{width:316.294109px;}
._5d{width:338.230541px;}
._35{width:347.896420px;}
._36{width:357.311140px;}
._57{width:363.677184px;}
._58{width:369.648806px;}
._59{width:385.788326px;}
._37{width:399.150155px;}
._52{width:403.272806px;}
._65{width:405.747533px;}
._5e{width:408.491251px;}
._56{width:412.687526px;}
._5c{width:437.058202px;}
._72{width:439.447085px;}
._6a{width:446.580518px;}
._77{width:447.602688px;}
._6b{width:452.444544px;}
._62{width:460.621901px;}
._60{width:485.853350px;}
._53{width:490.492518px;}
._70{width:491.743085px;}
._6d{width:498.657370px;}
._73{width:505.189085px;}
._34{width:511.612024px;}
._68{width:514.312704px;}
._5b{width:520.015334px;}
._4d{width:541.021085px;}
._74{width:543.983578px;}
._50{width:546.215155px;}
._51{width:548.743680px;}
._76{width:551.435578px;}
._5a{width:552.886157px;}
._6c{width:555.683674px;}
._75{width:557.429578px;}
._67{width:558.481190px;}
._6e{width:593.261578px;}
._d{width:954.162932px;}
._6f{width:2049.255300px;}
._e{width:2073.165300px;}
._18{width:3552.855300px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(41,66,37);}
.fs8{font-size:37.658880px;}
.fs4{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.820600px;}
.fsa{font-size:47.880000px;}
.fs9{font-size:49.829400px;}
.fs5{font-size:53.798400px;}
.fsb{font-size:54.000000px;}
.fs1{font-size:59.775600px;}
.fsd{font-size:60.120000px;}
.fs7{font-size:62.286600px;}
.fsc{font-size:72.000000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y12a{bottom:-705.944550px;}
.y139{bottom:-685.244469px;}
.y138{bottom:-664.994127px;}
.y137{bottom:-644.834388px;}
.y136{bottom:-624.584469px;}
.y135{bottom:-604.334370px;}
.y134{bottom:-584.084451px;}
.y133{bottom:-563.834532px;}
.y132{bottom:-543.584613px;}
.y131{bottom:-514.244550px;}
.y130{bottom:-476.624100px;}
.y12f{bottom:-457.004550px;}
.y12e{bottom:-426.314550px;}
.y13e{bottom:-274.993050px;}
.y14d{bottom:-254.292969px;}
.y14c{bottom:-234.042627px;}
.y14b{bottom:-213.882888px;}
.y14a{bottom:-193.632969px;}
.y149{bottom:-173.382870px;}
.y148{bottom:-153.132951px;}
.y147{bottom:-132.883032px;}
.y146{bottom:-112.633113px;}
.y145{bottom:-83.293050px;}
.y144{bottom:-45.672600px;}
.y12d{bottom:-43.904100px;}
.y143{bottom:-26.053050px;}
.y12c{bottom:-24.284550px;}
.y0{bottom:0.000000px;}
.y12b{bottom:3.525450px;}
.y142{bottom:4.636950px;}
.y2{bottom:14.814771px;}
.y32{bottom:63.780000px;}
.yb4{bottom:108.612000px;}
.y1a9{bottom:111.468000px;}
.y8f{bottom:113.349000px;}
.y62{bottom:118.803000px;}
.yda{bottom:122.314500px;}
.yb3{bottom:128.875500px;}
.y1a8{bottom:130.834500px;}
.y8e{bottom:133.612500px;}
.y61{bottom:139.068000px;}
.y31{bottom:139.636500px;}
.yd9{bottom:142.579500px;}
.y174{bottom:143.386500px;}
.y154{bottom:149.139000px;}
.y1a7{bottom:150.202500px;}
.y8d{bottom:153.877500px;}
.yb2{bottom:158.106000px;}
.y60{bottom:159.331500px;}
.y30{bottom:159.901500px;}
.yd8{bottom:162.843000px;}
.y173{bottom:163.650000px;}
.y153{bottom:169.404000px;}
.y1a6{bottom:169.569000px;}
.y8c{bottom:174.141000px;}
.y5f{bottom:179.595000px;}
.y2f{bottom:180.165000px;}
.yd7{bottom:183.108000px;}
.y172{bottom:183.913500px;}
.y1a5{bottom:188.937000px;}
.y152{bottom:189.667500px;}
.yb1{bottom:192.925500px;}
.y8b{bottom:194.404500px;}
.y5e{bottom:199.860000px;}
.y2e{bottom:200.428500px;}
.yd6{bottom:203.371500px;}
.y171{bottom:204.178500px;}
.y1a4{bottom:208.305000px;}
.y151{bottom:209.932500px;}
.yb0{bottom:213.189000px;}
.y8a{bottom:214.669500px;}
.y5d{bottom:220.123500px;}
.y2d{bottom:220.693500px;}
.yd5{bottom:223.635000px;}
.y170{bottom:224.442000px;}
.y1a3{bottom:227.671500px;}
.yaf{bottom:233.454000px;}
.y89{bottom:234.933000px;}
.y150{bottom:239.163000px;}
.y5c{bottom:240.388500px;}
.y2c{bottom:240.957000px;}
.yd4{bottom:243.900000px;}
.y16f{bottom:244.707000px;}
.y1a2{bottom:247.039500px;}
.yae{bottom:253.717500px;}
.y88{bottom:255.198000px;}
.y5b{bottom:260.652000px;}
.y2b{bottom:261.222000px;}
.yd3{bottom:264.163500px;}
.y16e{bottom:264.970500px;}
.y1a1{bottom:266.406000px;}
.yf3{bottom:266.890500px;}
.yad{bottom:273.982500px;}
.y14f{bottom:278.989500px;}
.y5a{bottom:280.915500px;}
.y2a{bottom:281.485500px;}
.y87{bottom:284.428500px;}
.y16d{bottom:285.234000px;}
.y1a0{bottom:285.774000px;}
.yf2{bottom:286.033350px;}
.yac{bottom:294.246000px;}
.yf1{bottom:297.592800px;}
.y14e{bottom:298.222500px;}
.y59{bottom:301.180500px;}
.y29{bottom:301.749000px;}
.yd2{bottom:304.692000px;}
.y19f{bottom:305.142000px;}
.y16c{bottom:305.499000px;}
.yf0{bottom:309.151200px;}
.y86{bottom:319.248000px;}
.yef{bottom:320.710650px;}
.y58{bottom:321.444000px;}
.y28{bottom:322.014000px;}
.y19e{bottom:324.508500px;}
.yd1{bottom:324.955500px;}
.y16b{bottom:325.762500px;}
.y13c{bottom:326.629500px;}
.yab{bottom:331.576500px;}
.yee{bottom:332.270100px;}
.y85{bottom:339.511500px;}
.y57{bottom:341.709000px;}
.y27{bottom:342.277500px;}
.yed{bottom:343.829550px;}
.y19d{bottom:343.876500px;}
.yd0{bottom:345.220500px;}
.y16a{bottom:346.027500px;}
.yaa{bottom:351.840000px;}
.y84{bottom:359.775000px;}
.yec{bottom:360.430050px;}
.y56{bottom:361.972500px;}
.y26{bottom:362.542500px;}
.y19c{bottom:363.243000px;}
.ycf{bottom:365.484000px;}
.y169{bottom:366.291000px;}
.yeb{bottom:377.030550px;}
.y83{bottom:380.040000px;}
.y55{bottom:382.236000px;}
.y19b{bottom:382.611000px;}
.y25{bottom:382.806000px;}
.yce{bottom:385.749000px;}
.y127{bottom:385.783500px;}
.y168{bottom:386.554500px;}
.y1ce{bottom:386.860500px;}
.y141{bottom:387.047400px;}
.y129{bottom:388.545450px;}
.ya9{bottom:389.170500px;}
.y82{bottom:400.303500px;}
.y19a{bottom:401.979000px;}
.y126{bottom:402.297000px;}
.y54{bottom:402.501000px;}
.y24{bottom:403.069500px;}
.ycd{bottom:406.012500px;}
.y1cd{bottom:406.228500px;}
.y140{bottom:406.666950px;}
.y167{bottom:406.819500px;}
.yea{bottom:409.563000px;}
.y125{bottom:418.810500px;}
.y81{bottom:420.568500px;}
.y199{bottom:421.345500px;}
.ya8{bottom:422.211000px;}
.y53{bottom:422.764500px;}
.y23{bottom:423.334500px;}
.y1cc{bottom:425.595000px;}
.ycc{bottom:426.276000px;}
.y166{bottom:427.083000px;}
.y13f{bottom:434.476950px;}
.y124{bottom:435.322500px;}
.y198{bottom:440.713500px;}
.y80{bottom:440.832000px;}
.ya7{bottom:442.476000px;}
.y52{bottom:443.029500px;}
.y22{bottom:443.598000px;}
.ycb{bottom:446.541000px;}
.y165{bottom:447.348000px;}
.ye9{bottom:451.227000px;}
.y123{bottom:451.836000px;}
.y1cb{bottom:457.570500px;}
.y197{bottom:460.080000px;}
.y7f{bottom:461.095500px;}
.ya6{bottom:462.739500px;}
.y51{bottom:463.293000px;}
.y21{bottom:463.863000px;}
.yca{bottom:466.804500px;}
.y164{bottom:467.611500px;}
.ye8{bottom:467.740500px;}
.y122{bottom:468.349500px;}
.y1ca{bottom:476.938500px;}
.y196{bottom:479.448000px;}
.y7e{bottom:481.360500px;}
.ya5{bottom:483.004500px;}
.y50{bottom:483.556500px;}
.y20{bottom:484.126500px;}
.ye7{bottom:484.254000px;}
.y121{bottom:484.863000px;}
.yc9{bottom:487.069500px;}
.y163{bottom:487.875000px;}
.y1c9{bottom:496.305000px;}
.y195{bottom:498.816000px;}
.ye6{bottom:500.767500px;}
.y120{bottom:501.375000px;}
.y7d{bottom:501.624000px;}
.y4f{bottom:503.821500px;}
.y1f{bottom:504.390000px;}
.yc8{bottom:507.333000px;}
.y162{bottom:508.140000px;}
.y1c8{bottom:515.673000px;}
.ye5{bottom:517.279500px;}
.y11f{bottom:517.888500px;}
.y194{bottom:518.182500px;}
.ya4{bottom:520.333500px;}
.y7c{bottom:521.889000px;}
.y4e{bottom:524.085000px;}
.y1e{bottom:524.655000px;}
.yc7{bottom:527.596500px;}
.y161{bottom:528.403500px;}
.y11e{bottom:534.402000px;}
.y1c7{bottom:535.041000px;}
.y193{bottom:537.550500px;}
.ya3{bottom:540.598500px;}
.ye4{bottom:540.996000px;}
.y7b{bottom:542.152500px;}
.y4d{bottom:544.350000px;}
.y1d{bottom:544.918500px;}
.yc6{bottom:547.861500px;}
.y160{bottom:548.667000px;}
.y11d{bottom:550.915500px;}
.y1c6{bottom:554.407500px;}
.y192{bottom:556.917000px;}
.ya2{bottom:562.357500px;}
.y7a{bottom:562.416000px;}
.y4c{bottom:564.613500px;}
.y11c{bottom:567.427500px;}
.yc5{bottom:568.125000px;}
.y15f{bottom:568.932000px;}
.y1c5{bottom:573.775500px;}
.y191{bottom:576.285000px;}
.ye3{bottom:578.592000px;}
.y1c{bottom:580.351500px;}
.ya1{bottom:582.621000px;}
.y79{bottom:582.681000px;}
.y11b{bottom:583.941000px;}
.y4b{bottom:584.877000px;}
.yc4{bottom:588.390000px;}
.y15e{bottom:589.195500px;}
.y1c4{bottom:593.142000px;}
.y190{bottom:595.653000px;}
.y11a{bottom:600.454500px;}
.y78{bottom:602.944500px;}
.yfc{bottom:604.950000px;}
.y4a{bottom:605.142000px;}
.y1b{bottom:607.474500px;}
.yc3{bottom:608.653500px;}
.y15d{bottom:609.460500px;}
.y1c3{bottom:612.510000px;}
.y18f{bottom:615.019500px;}
.y119{bottom:616.968000px;}
.ya0{bottom:619.951500px;}
.ye2{bottom:620.257500px;}
.y77{bottom:623.209500px;}
.yfb{bottom:624.092850px;}
.y49{bottom:625.405500px;}
.y1a{bottom:625.632000px;}
.yc2{bottom:628.917000px;}
.y15c{bottom:629.724000px;}
.y1c2{bottom:631.878000px;}
.y118{bottom:633.480000px;}
.y18e{bottom:634.387500px;}
.yfa{bottom:635.652300px;}
.ye1{bottom:636.771000px;}
.y76{bottom:643.473000px;}
.y48{bottom:645.670500px;}
.yf9{bottom:647.210700px;}
.y19{bottom:648.670500px;}
.y9f{bottom:649.182000px;}
.y15b{bottom:649.987500px;}
.y117{bottom:649.993500px;}
.y1c1{bottom:651.244500px;}
.ye0{bottom:653.283000px;}
.y18d{bottom:653.755500px;}
.yf8{bottom:658.770150px;}
.y18{bottom:661.945500px;}
.y47{bottom:665.934000px;}
.y116{bottom:666.507000px;}
.yc1{bottom:669.445500px;}
.ydf{bottom:669.796500px;}
.y15a{bottom:670.252500px;}
.yf7{bottom:670.329600px;}
.y1c0{bottom:670.612500px;}
.y75{bottom:672.703500px;}
.y18c{bottom:673.122000px;}
.y17{bottom:680.103000px;}
.yf6{bottom:681.889050px;}
.y115{bottom:683.020500px;}
.y9e{bottom:684.001500px;}
.y46{bottom:686.197500px;}
.yde{bottom:686.310000px;}
.yc0{bottom:689.710500px;}
.y1bf{bottom:689.979000px;}
.y159{bottom:690.516000px;}
.y18b{bottom:692.490000px;}
.yf5{bottom:698.489550px;}
.y114{bottom:699.532500px;}
.y16{bottom:703.141500px;}
.y9d{bottom:704.265000px;}
.y45{bottom:706.462500px;}
.y74{bottom:707.523000px;}
.y1be{bottom:709.347000px;}
.ydd{bottom:710.025000px;}
.y158{bottom:710.781000px;}
.y18a{bottom:711.856500px;}
.y13b{bottom:714.990000px;}
.yf4{bottom:715.090050px;}
.y113{bottom:716.046000px;}
.y15{bottom:716.416500px;}
.ybf{bottom:718.939500px;}
.y9c{bottom:724.530000px;}
.y44{bottom:726.726000px;}
.y73{bottom:727.786500px;}
.y1bd{bottom:728.715000px;}
.y157{bottom:731.044500px;}
.y189{bottom:731.224500px;}
.y112{bottom:732.559500px;}
.y13a{bottom:734.223000px;}
.y14{bottom:739.455000px;}
.y9b{bottom:744.793500px;}
.y43{bottom:746.991000px;}
.ydc{bottom:747.622500px;}
.y1bc{bottom:748.081500px;}
.y111{bottom:749.073000px;}
.y188{bottom:750.592500px;}
.y156{bottom:751.308000px;}
.y13{bottom:752.730000px;}
.ybe{bottom:753.759000px;}
.y72{bottom:757.017000px;}
.y128{bottom:762.630000px;}
.y9a{bottom:765.057000px;}
.y110{bottom:765.585000px;}
.y42{bottom:767.254500px;}
.y1bb{bottom:767.449500px;}
.y187{bottom:769.959000px;}
.y12{bottom:770.887500px;}
.y155{bottom:771.573000px;}
.ybd{bottom:774.024000px;}
.y11{bottom:775.770000px;}
.y10f{bottom:782.098500px;}
.y99{bottom:785.322000px;}
.y1ba{bottom:786.816000px;}
.y41{bottom:787.518000px;}
.y10{bottom:789.045000px;}
.y186{bottom:789.327000px;}
.y71{bottom:791.836500px;}
.ybc{bottom:794.287500px;}
.ydb{bottom:798.445500px;}
.y10e{bottom:798.612000px;}
.y98{bottom:805.585500px;}
.y1b9{bottom:806.184000px;}
.yf{bottom:807.201000px;}
.y40{bottom:807.783000px;}
.y70{bottom:812.101500px;}
.ybb{bottom:814.552500px;}
.y10d{bottom:815.125500px;}
.y185{bottom:817.660500px;}
.y13d{bottom:819.496950px;}
.y1b8{bottom:825.552000px;}
.y97{bottom:825.849000px;}
.y3f{bottom:828.046500px;}
.ye{bottom:830.241000px;}
.y10c{bottom:831.637500px;}
.y6f{bottom:832.365000px;}
.yba{bottom:834.816000px;}
.yd{bottom:843.516000px;}
.y1b7{bottom:844.918500px;}
.y96{bottom:846.114000px;}
.y10b{bottom:848.151000px;}
.y3e{bottom:848.311500px;}
.y6e{bottom:852.628500px;}
.y184{bottom:854.961000px;}
.yb9{bottom:855.079500px;}
.y1b6{bottom:864.286500px;}
.y10a{bottom:864.664500px;}
.y95{bottom:866.377500px;}
.yc{bottom:866.554500px;}
.y3d{bottom:868.575000px;}
.y183{bottom:870.159000px;}
.y6d{bottom:872.893500px;}
.yb8{bottom:875.344500px;}
.yb{bottom:879.829500px;}
.y109{bottom:881.178000px;}
.y1b5{bottom:883.653000px;}
.y182{bottom:885.357000px;}
.y3c{bottom:888.838500px;}
.y6c{bottom:893.157000px;}
.y94{bottom:895.608000px;}
.y108{bottom:897.690000px;}
.y181{bottom:900.555000px;}
.ya{bottom:902.868000px;}
.y1b4{bottom:903.021000px;}
.y3b{bottom:909.103500px;}
.y6b{bottom:913.422000px;}
.y107{bottom:914.203500px;}
.yb7{bottom:915.873000px;}
.y1b3{bottom:922.389000px;}
.y180{bottom:924.718500px;}
.y9{bottom:925.110000px;}
.y3a{bottom:929.367000px;}
.y93{bottom:930.427500px;}
.y106{bottom:930.717000px;}
.y6a{bottom:933.685500px;}
.yb6{bottom:936.136500px;}
.y17f{bottom:939.918000px;}
.y1b2{bottom:941.755500px;}
.y8{bottom:945.373500px;}
.y105{bottom:947.230500px;}
.y39{bottom:949.632000px;}
.y92{bottom:950.692500px;}
.y69{bottom:953.949000px;}
.y17e{bottom:955.116000px;}
.y1b1{bottom:961.123500px;}
.y104{bottom:963.742500px;}
.yb5{bottom:965.367000px;}
.y7{bottom:965.638500px;}
.y38{bottom:969.895500px;}
.y17d{bottom:970.314000px;}
.y91{bottom:970.956000px;}
.y68{bottom:974.214000px;}
.y103{bottom:980.256000px;}
.y1b0{bottom:980.490000px;}
.y17c{bottom:985.512000px;}
.y37{bottom:990.159000px;}
.y67{bottom:994.477500px;}
.y102{bottom:996.769500px;}
.y1af{bottom:999.858000px;}
.y90{bottom:1000.186500px;}
.y17b{bottom:1000.710000px;}
.y6{bottom:1010.451000px;}
.y101{bottom:1013.283000px;}
.y66{bottom:1014.742500px;}
.y17a{bottom:1015.908000px;}
.y1ae{bottom:1019.226000px;}
.y36{bottom:1019.389500px;}
.y179{bottom:1031.106000px;}
.y65{bottom:1035.006000px;}
.y100{bottom:1036.998000px;}
.y1ad{bottom:1038.592500px;}
.y5{bottom:1040.848500px;}
.y178{bottom:1046.304000px;}
.yff{bottom:1049.731500px;}
.y64{bottom:1055.269500px;}
.y1ac{bottom:1057.960500px;}
.y177{bottom:1061.502000px;}
.y4{bottom:1071.244500px;}
.y63{bottom:1075.534500px;}
.y176{bottom:1076.700000px;}
.y1ab{bottom:1077.327000px;}
.y35{bottom:1095.798000px;}
.y1aa{bottom:1096.695000px;}
.yfe{bottom:1098.310500px;}
.y3{bottom:1100.145000px;}
.y175{bottom:1100.865000px;}
.y34{bottom:1116.063000px;}
.yfd{bottom:1117.543500px;}
.y1{bottom:1137.954000px;}
.y33{bottom:1168.366500px;}
.h13{height:27.227370px;}
.h14{height:27.415665px;}
.h8{height:30.461558px;}
.h15{height:34.813397px;}
.hf{height:34.849175px;}
.hd{height:35.052500px;}
.h1a{height:35.991211px;}
.h12{height:38.896243px;}
.ha{height:39.165235px;}
.h17{height:39.434227px;}
.hb{height:43.217759px;}
.hc{height:43.516637px;}
.h4{height:43.815515px;}
.h19{height:44.536816px;}
.h1b{height:47.988281px;}
.h9{height:49.117939px;}
.h1d{height:49.939453px;}
.h1c{height:50.229492px;}
.h2{height:50.931027px;}
.h7{height:54.541601px;}
.he{height:54.575123px;}
.h6{height:55.352206px;}
.h1f{height:55.599258px;}
.h1e{height:55.922168px;}
.h5{height:77.792486px;}
.h16{height:82.822243px;}
.h3{height:102.503837px;}
.h20{height:363.925500px;}
.h18{height:368.377500px;}
.h10{height:892.914000px;}
.h11{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:198.814733px;}
.w6{width:660.434700px;}
.w5{width:671.560800px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:1262.835000px;}
.w4{width:1263.000000px;}
.x67{left:-1.014300px;}
.x0{left:0.000000px;}
.x62{left:4.876800px;}
.x68{left:30.845700px;}
.x64{left:36.736800px;}
.x2{left:58.056593px;}
.x10{left:112.561500px;}
.x1{left:114.802500px;}
.x66{left:116.239800px;}
.x2b{left:119.385000px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.x43{left:136.378500px;}
.x40{left:137.946150px;}
.x3f{left:140.422050px;}
.x37{left:142.165500px;}
.x79{left:143.275500px;}
.x32{left:144.405000px;}
.x4{left:146.170500px;}
.x3a{left:155.629500px;}
.x34{left:157.869000px;}
.x39{left:166.449000px;}
.x33{left:168.688500px;}
.x35{left:170.928000px;}
.x3e{left:176.376150px;}
.x25{left:179.652000px;}
.x2f{left:182.251500px;}
.x38{left:184.948500px;}
.x31{left:187.006500px;}
.x6{left:188.349000px;}
.x26{left:194.596500px;}
.x5f{left:197.506500px;}
.x44{left:199.968000px;}
.x7{left:201.358500px;}
.x2c{left:203.325000px;}
.x61{left:205.110000px;}
.x6a{left:215.058000px;}
.xc{left:216.447000px;}
.x59{left:220.858500px;}
.xd{left:223.918500px;}
.x55{left:225.424500px;}
.x58{left:228.564000px;}
.x56{left:231.591000px;}
.x4b{left:234.367500px;}
.x27{left:237.676500px;}
.x8c{left:240.628500px;}
.x30{left:241.861500px;}
.x4a{left:243.553500px;}
.x7d{left:244.657500px;}
.x57{left:246.802500px;}
.x3d{left:251.273700px;}
.x28{left:252.621000px;}
.x29{left:256.305000px;}
.x52{left:257.809500px;}
.x7e{left:259.602000px;}
.x8{left:261.679500px;}
.x8d{left:263.418000px;}
.x4d{left:264.420000px;}
.x4e{left:265.920000px;}
.x45{left:267.111000px;}
.x9{left:269.151000px;}
.x2a{left:271.248000px;}
.x3b{left:272.257500px;}
.x48{left:274.077000px;}
.x53{left:275.374500px;}
.x4c{left:276.430500px;}
.x60{left:280.170000px;}
.x51{left:282.523500px;}
.x5c{left:285.153000px;}
.x5d{left:286.369500px;}
.x36{left:287.670000px;}
.x42{left:289.123500px;}
.x78{left:291.448500px;}
.x54{left:294.721500px;}
.x49{left:295.725000px;}
.x5e{left:297.930000px;}
.x5b{left:301.830000px;}
.x4f{left:303.270000px;}
.x6e{left:305.967000px;}
.x50{left:308.319000px;}
.x47{left:309.919500px;}
.x3c{left:311.597250px;}
.x5a{left:312.879000px;}
.x6f{left:320.911500px;}
.x46{left:323.578500px;}
.x21{left:344.968500px;}
.x7f{left:356.062500px;}
.x76{left:358.848000px;}
.x22{left:359.911500px;}
.x23{left:363.675000px;}
.x80{left:371.007000px;}
.x77{left:373.792500px;}
.x81{left:374.817000px;}
.x24{left:378.618000px;}
.xe{left:380.547000px;}
.xf{left:388.020000px;}
.x82{left:389.761500px;}
.x11{left:408.106500px;}
.x89{left:411.675000px;}
.x12{left:415.579500px;}
.x8a{left:426.619500px;}
.x41{left:436.633500px;}
.x6b{left:449.002500px;}
.x6c{left:456.474000px;}
.x83{left:472.945500px;}
.x6d{left:475.582500px;}
.x1b{left:477.132000px;}
.x17{left:482.247000px;}
.x1c{left:484.603500px;}
.x1d{left:488.295000px;}
.x18{left:489.718500px;}
.x1e{left:503.239500px;}
.x85{left:504.915000px;}
.x8b{left:512.131500px;}
.x1f{left:518.452500px;}
.x86{left:519.859500px;}
.x20{left:533.397000px;}
.x8e{left:554.247000px;}
.x19{left:566.029500px;}
.x1a{left:573.502500px;}
.x8f{left:581.146500px;}
.x7a{left:597.684000px;}
.x84{left:605.550000px;}
.x7b{left:612.627000px;}
.x93{left:647.404500px;}
.x70{left:648.462000px;}
.x71{left:655.935000px;}
.x69{left:657.335700px;}
.x65{left:663.226800px;}
.x63{left:668.626650px;}
.x91{left:672.303000px;}
.x94{left:674.304000px;}
.x74{left:680.902500px;}
.x75{left:695.847000px;}
.x92{left:699.202500px;}
.x7c{left:710.157000px;}
.x95{left:721.882500px;}
.x87{left:726.204000px;}
.x88{left:741.148500px;}
.x13{left:742.432500px;}
.x96{left:748.782000px;}
.x14{left:749.905500px;}
.x15{left:753.570000px;}
.x2d{left:756.148500px;}
.x72{left:758.289000px;}
.x16{left:761.041500px;}
.xa{left:764.655000px;}
.x2e{left:771.091500px;}
.xb{left:772.126500px;}
.x73{left:773.233500px;}
.x90{left:776.479500px;}
@media print{
.v2{vertical-align:-17.354667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v3{vertical-align:39.045333pt;}
.ls67{letter-spacing:-0.390112pt;}
.ls70{letter-spacing:-0.363392pt;}
.ls3f{letter-spacing:-0.288000pt;}
.ls6f{letter-spacing:-0.261856pt;}
.ls50{letter-spacing:-0.256512pt;}
.ls55{letter-spacing:-0.240480pt;}
.ls6a{letter-spacing:-0.235136pt;}
.ls6c{letter-spacing:-0.229792pt;}
.ls5e{letter-spacing:-0.213760pt;}
.ls6d{letter-spacing:-0.203072pt;}
.ls49{letter-spacing:-0.201600pt;}
.ls64{letter-spacing:-0.181696pt;}
.ls60{letter-spacing:-0.149632pt;}
.ls63{letter-spacing:-0.144288pt;}
.ls48{letter-spacing:-0.129600pt;}
.ls54{letter-spacing:-0.117568pt;}
.ls5a{letter-spacing:-0.112224pt;}
.ls6e{letter-spacing:-0.106880pt;}
.ls4f{letter-spacing:-0.101536pt;}
.ls56{letter-spacing:-0.096192pt;}
.ls44{letter-spacing:-0.086400pt;}
.ls42{letter-spacing:-0.081600pt;}
.ls4e{letter-spacing:-0.080160pt;}
.ls58{letter-spacing:-0.074816pt;}
.ls4a{letter-spacing:-0.072000pt;}
.ls62{letter-spacing:-0.069472pt;}
.ls5f{letter-spacing:-0.064128pt;}
.ls41{letter-spacing:-0.062400pt;}
.ls66{letter-spacing:-0.058784pt;}
.ls43{letter-spacing:-0.057600pt;}
.ls68{letter-spacing:-0.053440pt;}
.ls5b{letter-spacing:-0.048096pt;}
.ls51{letter-spacing:-0.042752pt;}
.ls40{letter-spacing:-0.038400pt;}
.ls3c{letter-spacing:-0.038304pt;}
.ls53{letter-spacing:-0.037408pt;}
.ls4d{letter-spacing:-0.032064pt;}
.ls46{letter-spacing:-0.028800pt;}
.ls61{letter-spacing:-0.026720pt;}
.ls4c{letter-spacing:-0.024000pt;}
.ls6b{letter-spacing:-0.021376pt;}
.ls65{letter-spacing:-0.016032pt;}
.ls5c{letter-spacing:-0.010688pt;}
.ls3e{letter-spacing:-0.009600pt;}
.ls59{letter-spacing:-0.005344pt;}
.ls47{letter-spacing:-0.004800pt;}
.lsb{letter-spacing:0.000000pt;}
.ls78{letter-spacing:0.000159pt;}
.ls2{letter-spacing:0.000518pt;}
.ls7b{letter-spacing:0.000536pt;}
.ls5{letter-spacing:0.000751pt;}
.ls79{letter-spacing:0.000921pt;}
.ls77{letter-spacing:0.001026pt;}
.ls7e{letter-spacing:0.001552pt;}
.ls6{letter-spacing:0.001843pt;}
.ls7d{letter-spacing:0.002550pt;}
.ls73{letter-spacing:0.002703pt;}
.ls7a{letter-spacing:0.003261pt;}
.ls7{letter-spacing:0.003430pt;}
.ls75{letter-spacing:0.004267pt;}
.ls38{letter-spacing:0.005344pt;}
.ls1a{letter-spacing:0.009600pt;}
.ls2f{letter-spacing:0.010688pt;}
.ls24{letter-spacing:0.014400pt;}
.ls2b{letter-spacing:0.016032pt;}
.ls20{letter-spacing:0.019200pt;}
.ls28{letter-spacing:0.021376pt;}
.ls18{letter-spacing:0.024000pt;}
.ls3b{letter-spacing:0.026720pt;}
.ls1b{letter-spacing:0.028800pt;}
.ls2d{letter-spacing:0.037408pt;}
.ls19{letter-spacing:0.038400pt;}
.ls29{letter-spacing:0.042752pt;}
.ls22{letter-spacing:0.048000pt;}
.ls2e{letter-spacing:0.048096pt;}
.ls1f{letter-spacing:0.052800pt;}
.ls34{letter-spacing:0.053440pt;}
.ls27{letter-spacing:0.058784pt;}
.ls3a{letter-spacing:0.064128pt;}
.ls39{letter-spacing:0.074816pt;}
.ls26{letter-spacing:0.085504pt;}
.ls69{letter-spacing:0.096192pt;}
.ls45{letter-spacing:0.115200pt;}
.ls52{letter-spacing:0.117568pt;}
.ls1d{letter-spacing:0.124800pt;}
.ls57{letter-spacing:0.128256pt;}
.ls5d{letter-spacing:0.133600pt;}
.ls4b{letter-spacing:0.134400pt;}
.ls3d{letter-spacing:0.136192pt;}
.ls1e{letter-spacing:0.163200pt;}
.ls15{letter-spacing:0.170240pt;}
.ls25{letter-spacing:0.171008pt;}
.ls36{letter-spacing:0.726784pt;}
.ls35{letter-spacing:1.047424pt;}
.ls37{letter-spacing:1.057071pt;}
.ls23{letter-spacing:1.123200pt;}
.ls21{letter-spacing:1.444800pt;}
.ls33{letter-spacing:2.004000pt;}
.ls32{letter-spacing:2.324640pt;}
.ls0{letter-spacing:2.657067pt;}
.ls31{letter-spacing:3.927840pt;}
.ls30{letter-spacing:4.248480pt;}
.ls1c{letter-spacing:6.888000pt;}
.ls17{letter-spacing:7.209600pt;}
.ls2a{letter-spacing:8.726752pt;}
.ls2c{letter-spacing:9.047392pt;}
.lsa{letter-spacing:10.626533pt;}
.ls12{letter-spacing:11.138393pt;}
.ls71{letter-spacing:11.954133pt;}
.ls7c{letter-spacing:11.959467pt;}
.ls7f{letter-spacing:11.959807pt;}
.ls72{letter-spacing:12.120835pt;}
.ls80{letter-spacing:12.452643pt;}
.ls1{letter-spacing:13.283733pt;}
.ls9{letter-spacing:13.521111pt;}
.lsd{letter-spacing:13.923096pt;}
.ls3{letter-spacing:15.942400pt;}
.ls76{letter-spacing:16.102316pt;}
.lsf{letter-spacing:17.055971pt;}
.ls10{letter-spacing:17.852979pt;}
.ls74{letter-spacing:19.061793pt;}
.lsc{letter-spacing:21.349073pt;}
.ls4{letter-spacing:62.432533pt;}
.ls8{letter-spacing:64.314231pt;}
.lse{letter-spacing:83.810400pt;}
.ls11{letter-spacing:252.342278pt;}
.ls13{letter-spacing:528.488969pt;}
.ls14{letter-spacing:540.446302pt;}
.ls16{letter-spacing:1809.634176pt;}
.ws94{word-spacing:-53.440000pt;}
.ws8a{word-spacing:-48.000000pt;}
.ws77{word-spacing:-42.560000pt;}
.ws52{word-spacing:-13.283467pt;}
.ws8{word-spacing:-11.955200pt;}
.ws18{word-spacing:-10.626800pt;}
.ws7{word-spacing:-10.095467pt;}
.ws44{word-spacing:-2.709827pt;}
.wscc{word-spacing:-2.444158pt;}
.ws2b{word-spacing:-2.391024pt;}
.ws2f{word-spacing:-1.912819pt;}
.ws10e{word-spacing:-1.817190pt;}
.wsda{word-spacing:-1.806551pt;}
.ws5a{word-spacing:-1.594016pt;}
.wsc5{word-spacing:-1.578086pt;}
.ws109{word-spacing:-1.482445pt;}
.ws40{word-spacing:-1.434614pt;}
.wsc6{word-spacing:-1.386803pt;}
.ws27{word-spacing:-1.328347pt;}
.ws62{word-spacing:-1.275213pt;}
.ws43{word-spacing:-1.168945pt;}
.ws42{word-spacing:-1.115811pt;}
.ws53{word-spacing:-1.062677pt;}
.ws54{word-spacing:-1.009543pt;}
.ws51{word-spacing:-0.956410pt;}
.ws10a{word-spacing:-0.908595pt;}
.ws37{word-spacing:-0.903276pt;}
.wscb{word-spacing:-0.850142pt;}
.wsca{word-spacing:-0.743874pt;}
.ws59{word-spacing:-0.690740pt;}
.ws58{word-spacing:-0.637606pt;}
.ws30{word-spacing:-0.531339pt;}
.ws57{word-spacing:-0.371937pt;}
.ws107{word-spacing:-0.334746pt;}
.ws13{word-spacing:-0.318803pt;}
.wsf2{word-spacing:-0.286925pt;}
.ws12{word-spacing:-0.265669pt;}
.ws93{word-spacing:-0.224448pt;}
.ws78{word-spacing:-0.212800pt;}
.ws1f{word-spacing:-0.212535pt;}
.ws6f{word-spacing:-0.191283pt;}
.wsad{word-spacing:-0.187040pt;}
.ws91{word-spacing:-0.182400pt;}
.wsa0{word-spacing:-0.181696pt;}
.ws7a{word-spacing:-0.178752pt;}
.ws89{word-spacing:-0.172800pt;}
.ws9a{word-spacing:-0.171008pt;}
.ws87{word-spacing:-0.163200pt;}
.ws19{word-spacing:-0.159402pt;}
.wsb9{word-spacing:-0.149632pt;}
.wsfa{word-spacing:-0.143462pt;}
.wsab{word-spacing:-0.128256pt;}
.wsbf{word-spacing:-0.117568pt;}
.ws9f{word-spacing:-0.112224pt;}
.wsbb{word-spacing:-0.106880pt;}
.wsa{word-spacing:-0.106268pt;}
.wsaa{word-spacing:-0.101536pt;}
.wsa3{word-spacing:-0.096192pt;}
.ws8f{word-spacing:-0.096000pt;}
.ws74{word-spacing:-0.095642pt;}
.wsac{word-spacing:-0.090848pt;}
.ws7e{word-spacing:-0.086400pt;}
.wsc1{word-spacing:-0.080160pt;}
.ws81{word-spacing:-0.076800pt;}
.wsa1{word-spacing:-0.074816pt;}
.ws7d{word-spacing:-0.072000pt;}
.wsa8{word-spacing:-0.069472pt;}
.ws8e{word-spacing:-0.067200pt;}
.wsb1{word-spacing:-0.064128pt;}
.ws84{word-spacing:-0.062400pt;}
.wsbd{word-spacing:-0.058784pt;}
.ws7c{word-spacing:-0.057600pt;}
.wsa7{word-spacing:-0.053440pt;}
.ws4{word-spacing:-0.053134pt;}
.wsa4{word-spacing:-0.048096pt;}
.ws9{word-spacing:-0.047821pt;}
.ws8b{word-spacing:-0.043200pt;}
.wsa9{word-spacing:-0.042752pt;}
.ws79{word-spacing:-0.042560pt;}
.ws7b{word-spacing:-0.038400pt;}
.wsb6{word-spacing:-0.037408pt;}
.wsbc{word-spacing:-0.032064pt;}
.wsb2{word-spacing:-0.026720pt;}
.ws92{word-spacing:-0.024000pt;}
.ws95{word-spacing:-0.021376pt;}
.ws88{word-spacing:-0.019200pt;}
.ws9b{word-spacing:-0.016032pt;}
.ws99{word-spacing:-0.010688pt;}
.ws80{word-spacing:-0.009600pt;}
.ws112{word-spacing:-0.006221pt;}
.wsa6{word-spacing:-0.005344pt;}
.ws76{word-spacing:-0.004256pt;}
.wsfb{word-spacing:-0.002449pt;}
.ws6{word-spacing:-0.001371pt;}
.ws3{word-spacing:-0.001318pt;}
.ws1{word-spacing:-0.001296pt;}
.wsf4{word-spacing:-0.000887pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:0.000533pt;}
.ws17{word-spacing:0.000559pt;}
.ws5{word-spacing:0.001956pt;}
.wsb7{word-spacing:0.005344pt;}
.ws85{word-spacing:0.009600pt;}
.wsaf{word-spacing:0.010688pt;}
.ws82{word-spacing:0.014400pt;}
.wsb3{word-spacing:0.016032pt;}
.wsa2{word-spacing:0.021376pt;}
.ws90{word-spacing:0.024000pt;}
.ws96{word-spacing:0.026720pt;}
.ws83{word-spacing:0.033600pt;}
.ws86{word-spacing:0.038400pt;}
.ws9e{word-spacing:0.042752pt;}
.ws97{word-spacing:0.048096pt;}
.ws10{word-spacing:0.053134pt;}
.wsc2{word-spacing:0.053440pt;}
.wsa5{word-spacing:0.058784pt;}
.ws9c{word-spacing:0.064128pt;}
.ws8c{word-spacing:0.081600pt;}
.wsb4{word-spacing:0.090848pt;}
.wsed{word-spacing:0.095642pt;}
.wsb0{word-spacing:0.096192pt;}
.ws21{word-spacing:0.106268pt;}
.wsb5{word-spacing:0.128256pt;}
.wsee{word-spacing:0.143462pt;}
.wsc0{word-spacing:0.149632pt;}
.ws8d{word-spacing:0.153600pt;}
.ws2a{word-spacing:0.159402pt;}
.wsae{word-spacing:0.160320pt;}
.wsbe{word-spacing:0.176352pt;}
.wsba{word-spacing:0.181696pt;}
.ws9d{word-spacing:0.187040pt;}
.wsf3{word-spacing:0.191283pt;}
.ws98{word-spacing:0.203072pt;}
.wsc3{word-spacing:0.208416pt;}
.wse{word-spacing:0.212535pt;}
.ws7f{word-spacing:0.240000pt;}
.wsf{word-spacing:0.265669pt;}
.ws10d{word-spacing:0.286925pt;}
.wsc4{word-spacing:0.309952pt;}
.ws5e{word-spacing:0.318803pt;}
.ws114{word-spacing:0.334746pt;}
.wsb8{word-spacing:0.336672pt;}
.ws20{word-spacing:0.371937pt;}
.wsec{word-spacing:0.382566pt;}
.ws117{word-spacing:0.430387pt;}
.ws4d{word-spacing:0.478205pt;}
.ws118{word-spacing:0.478208pt;}
.ws73{word-spacing:0.526029pt;}
.ws29{word-spacing:0.531339pt;}
.wsc9{word-spacing:0.584473pt;}
.wse0{word-spacing:0.637606pt;}
.ws3c{word-spacing:0.663098pt;}
.ws22{word-spacing:0.690740pt;}
.ws11{word-spacing:0.743874pt;}
.ws26{word-spacing:0.797008pt;}
.ws72{word-spacing:0.812954pt;}
.ws16{word-spacing:0.850142pt;}
.ws31{word-spacing:0.903276pt;}
.ws38{word-spacing:0.956410pt;}
.ws2d{word-spacing:1.009543pt;}
.wse9{word-spacing:1.052058pt;}
.ws2c{word-spacing:1.062677pt;}
.ws47{word-spacing:1.168945pt;}
.wsef{word-spacing:1.193796pt;}
.ws33{word-spacing:1.275213pt;}
.ws34{word-spacing:1.328347pt;}
.ws49{word-spacing:1.381481pt;}
.ws35{word-spacing:1.434614pt;}
.wse8{word-spacing:1.578086pt;}
.ws32{word-spacing:1.594016pt;}
.ws56{word-spacing:1.647150pt;}
.ws2e{word-spacing:1.700284pt;}
.wsea{word-spacing:1.721549pt;}
.ws110{word-spacing:1.817190pt;}
.ws5c{word-spacing:1.859685pt;}
.ws111{word-spacing:1.865011pt;}
.ws5b{word-spacing:1.912819pt;}
.ws6b{word-spacing:1.912832pt;}
.wsd3{word-spacing:1.965953pt;}
.ws5d{word-spacing:2.019087pt;}
.ws101{word-spacing:2.104115pt;}
.wsb{word-spacing:2.178489pt;}
.ws6a{word-spacing:2.199757pt;}
.wsdf{word-spacing:2.284756pt;}
.ws1c{word-spacing:2.444158pt;}
.ws36{word-spacing:2.497292pt;}
.ws25{word-spacing:2.709827pt;}
.wse7{word-spacing:2.773606pt;}
.wsd1{word-spacing:2.816095pt;}
.ws105{word-spacing:2.864751pt;}
.ws102{word-spacing:2.867413pt;}
.ws100{word-spacing:2.867439pt;}
.wsf5{word-spacing:2.869248pt;}
.wsff{word-spacing:2.871194pt;}
.ws10f{word-spacing:2.917069pt;}
.ws1e{word-spacing:3.028630pt;}
.ws4b{word-spacing:3.081764pt;}
.wsf9{word-spacing:3.108352pt;}
.ws1a{word-spacing:3.188032pt;}
.ws4a{word-spacing:3.241166pt;}
.wsfc{word-spacing:3.251814pt;}
.wsd0{word-spacing:3.294300pt;}
.ws104{word-spacing:3.299635pt;}
.ws15{word-spacing:3.400567pt;}
.wsde{word-spacing:3.453701pt;}
.ws113{word-spacing:3.490918pt;}
.wsd9{word-spacing:3.506835pt;}
.wseb{word-spacing:3.634381pt;}
.ws23{word-spacing:3.666237pt;}
.ws28{word-spacing:3.772505pt;}
.ws5f{word-spacing:3.825638pt;}
.wsfe{word-spacing:4.160410pt;}
.ws4f{word-spacing:4.197575pt;}
.wsc{word-spacing:4.250709pt;}
.wsdd{word-spacing:4.303843pt;}
.ws3e{word-spacing:4.356977pt;}
.wscf{word-spacing:4.410111pt;}
.ws50{word-spacing:4.463245pt;}
.ws24{word-spacing:4.516379pt;}
.ws61{word-spacing:4.569513pt;}
.ws10b{word-spacing:4.590797pt;}
.ws60{word-spacing:4.622646pt;}
.ws10c{word-spacing:4.638618pt;}
.wsd2{word-spacing:4.728914pt;}
.ws4c{word-spacing:4.782048pt;}
.wsce{word-spacing:4.835182pt;}
.wsd6{word-spacing:4.888316pt;}
.wse4{word-spacing:5.021184pt;}
.ws3a{word-spacing:5.260253pt;}
.wscd{word-spacing:5.525922pt;}
.wsd{word-spacing:5.579056pt;}
.wsd5{word-spacing:5.632190pt;}
.wsf7{word-spacing:5.642854pt;}
.ws4e{word-spacing:5.685324pt;}
.ws14{word-spacing:5.738458pt;}
.ws108{word-spacing:5.738496pt;}
.wse3{word-spacing:6.057261pt;}
.ws1d{word-spacing:6.163529pt;}
.wse1{word-spacing:6.269796pt;}
.wsd4{word-spacing:6.322930pt;}
.ws46{word-spacing:6.429198pt;}
.ws48{word-spacing:6.694867pt;}
.ws3d{word-spacing:7.013670pt;}
.ws1b{word-spacing:7.226206pt;}
.ws115{word-spacing:7.268762pt;}
.ws116{word-spacing:7.316582pt;}
.wsdb{word-spacing:7.332474pt;}
.ws55{word-spacing:7.598143pt;}
.ws103{word-spacing:7.699149pt;}
.wsdc{word-spacing:7.916946pt;}
.ws3b{word-spacing:8.076348pt;}
.wse6{word-spacing:8.464282pt;}
.wse5{word-spacing:8.894669pt;}
.ws45{word-spacing:9.245293pt;}
.wse2{word-spacing:9.351561pt;}
.wsc8{word-spacing:9.468518pt;}
.ws39{word-spacing:9.776631pt;}
.wsc7{word-spacing:9.898906pt;}
.wsf6{word-spacing:9.994547pt;}
.ws3f{word-spacing:10.679907pt;}
.wsf1{word-spacing:11.763917pt;}
.wsf0{word-spacing:11.811738pt;}
.wsd7{word-spacing:12.964663pt;}
.wsfd{word-spacing:13.102899pt;}
.ws106{word-spacing:13.198541pt;}
.wsd8{word-spacing:16.577766pt;}
.wsf8{word-spacing:20.180378pt;}
.ws41{word-spacing:27.363941pt;}
.ws64{word-spacing:104.440627pt;}
.ws68{word-spacing:112.507996pt;}
.ws65{word-spacing:116.395827pt;}
.ws66{word-spacing:128.351027pt;}
.ws63{word-spacing:134.998118pt;}
.ws6c{word-spacing:136.719667pt;}
.ws67{word-spacing:152.261427pt;}
.ws69{word-spacing:155.891026pt;}
.ws6d{word-spacing:174.832845pt;}
.ws6e{word-spacing:186.740224pt;}
.ws71{word-spacing:186.788045pt;}
.ws70{word-spacing:198.695424pt;}
.ws75{word-spacing:210.650624pt;}
._15{margin-left:-6.839919pt;}
._0{margin-left:-5.893074pt;}
._4{margin-left:-4.399514pt;}
._3{margin-left:-3.283783pt;}
._2{margin-left:-1.739068pt;}
._78{width:1.038268pt;}
._1{width:2.661789pt;}
._82{width:3.584881pt;}
._6{width:11.046605pt;}
._b{width:12.056603pt;}
._14{width:13.698021pt;}
._5{width:14.824448pt;}
._7{width:16.350881pt;}
._c{width:17.505476pt;}
._17{width:18.529370pt;}
._11{width:19.446995pt;}
._a{width:20.350271pt;}
._10{width:21.939502pt;}
._8{width:23.538303pt;}
._f{width:25.011701pt;}
._12{width:26.266746pt;}
._79{width:27.789012pt;}
._9{width:28.851690pt;}
._7e{width:29.808099pt;}
._13{width:30.697025pt;}
._80{width:32.184773pt;}
._7c{width:34.058809pt;}
._81{width:35.100467pt;}
._7a{width:36.063546pt;}
._16{width:37.990715pt;}
._7d{width:40.850379pt;}
._7f{width:45.159002pt;}
._3e{width:49.944044pt;}
._7b{width:55.466972pt;}
._3f{width:58.557745pt;}
._3d{width:62.463529pt;}
._40{width:66.057301pt;}
._43{width:67.238397pt;}
._3c{width:75.694522pt;}
._45{width:78.766524pt;}
._42{width:79.824831pt;}
._49{width:83.418604pt;}
._47{width:86.861627pt;}
._44{width:92.344317pt;}
._48{width:95.938089pt;}
._1b{width:99.562906pt;}
._1a{width:100.662784pt;}
._41{width:102.876108pt;}
._4c{width:104.461688pt;}
._46{width:107.765432pt;}
._4b{width:109.250140pt;}
._27{width:115.821978pt;}
._20{width:117.734810pt;}
._38{width:118.718470pt;}
._21{width:125.626348pt;}
._22{width:127.585894pt;}
._24{width:129.211802pt;}
._1f{width:133.085286pt;}
._1c{width:136.384922pt;}
._26{width:139.588915pt;}
._32{width:141.119181pt;}
._1d{width:144.275354pt;}
._39{width:147.522386pt;}
._4a{width:151.034557pt;}
._23{width:152.261427pt;}
._3a{width:155.924500pt;}
._1e{width:158.956339pt;}
._2c{width:159.935075pt;}
._2f{width:163.594957pt;}
._2b{width:164.838298pt;}
._66{width:168.377037pt;}
._3b{width:172.661780pt;}
._4e{width:178.047954pt;}
._31{width:183.440589pt;}
._29{width:184.858624pt;}
._30{width:188.854298pt;}
._64{width:196.639130pt;}
._4f{width:198.695424pt;}
._61{width:206.555554pt;}
._69{width:210.794086pt;}
._2e{width:215.956263pt;}
._55{width:217.249894pt;}
._71{width:222.653645pt;}
._28{width:223.917923pt;}
._2a{width:231.294618pt;}
._33{width:235.290291pt;}
._5f{width:247.185715pt;}
._54{width:249.911501pt;}
._63{width:261.484134pt;}
._19{width:267.892122pt;}
._25{width:277.159979pt;}
._2d{width:281.150319pt;}
._5d{width:300.649370pt;}
._35{width:309.241262pt;}
._36{width:317.609902pt;}
._57{width:323.268608pt;}
._58{width:328.576717pt;}
._59{width:342.922957pt;}
._37{width:354.800138pt;}
._52{width:358.464717pt;}
._65{width:360.664474pt;}
._5e{width:363.103334pt;}
._56{width:366.833357pt;}
._5c{width:388.496179pt;}
._72{width:390.619631pt;}
._6a{width:396.960461pt;}
._77{width:397.869056pt;}
._6b{width:402.172928pt;}
._62{width:409.441690pt;}
._60{width:431.869645pt;}
._53{width:435.993349pt;}
._70{width:437.104964pt;}
._6d{width:443.250995pt;}
._73{width:449.056964pt;}
._34{width:454.766244pt;}
._68{width:457.166848pt;}
._5b{width:462.235853pt;}
._4d{width:480.907631pt;}
._74{width:483.540958pt;}
._50{width:485.524582pt;}
._51{width:487.772160pt;}
._76{width:490.164958pt;}
._5a{width:491.454362pt;}
._6c{width:493.941043pt;}
._75{width:495.492958pt;}
._67{width:496.427725pt;}
._6e{width:527.343625pt;}
._d{width:848.144828pt;}
._6f{width:1821.560267pt;}
._e{width:1842.813600pt;}
._18{width:3158.093600pt;}
.fs8{font-size:33.474560pt;}
.fs4{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:42.507200pt;}
.fsa{font-size:42.560000pt;}
.fs9{font-size:44.292800pt;}
.fs5{font-size:47.820800pt;}
.fsb{font-size:48.000000pt;}
.fs1{font-size:53.133867pt;}
.fsd{font-size:53.440000pt;}
.fs7{font-size:55.365867pt;}
.fsc{font-size:64.000000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y12a{bottom:-627.506267pt;}
.y139{bottom:-609.106195pt;}
.y138{bottom:-591.105891pt;}
.y137{bottom:-573.186123pt;}
.y136{bottom:-555.186195pt;}
.y135{bottom:-537.186107pt;}
.y134{bottom:-519.186179pt;}
.y133{bottom:-501.186251pt;}
.y132{bottom:-483.186323pt;}
.y131{bottom:-457.106267pt;}
.y130{bottom:-423.665867pt;}
.y12f{bottom:-406.226267pt;}
.y12e{bottom:-378.946267pt;}
.y13e{bottom:-244.438267pt;}
.y14d{bottom:-226.038195pt;}
.y14c{bottom:-208.037891pt;}
.y14b{bottom:-190.118123pt;}
.y14a{bottom:-172.118195pt;}
.y149{bottom:-154.118107pt;}
.y148{bottom:-136.118179pt;}
.y147{bottom:-118.118251pt;}
.y146{bottom:-100.118323pt;}
.y145{bottom:-74.038267pt;}
.y144{bottom:-40.597867pt;}
.y12d{bottom:-39.025867pt;}
.y143{bottom:-23.158267pt;}
.y12c{bottom:-21.586267pt;}
.y0{bottom:0.000000pt;}
.y12b{bottom:3.133733pt;}
.y142{bottom:4.121733pt;}
.y2{bottom:13.168686pt;}
.y32{bottom:56.693333pt;}
.yb4{bottom:96.544000pt;}
.y1a9{bottom:99.082667pt;}
.y8f{bottom:100.754667pt;}
.y62{bottom:105.602667pt;}
.yda{bottom:108.724000pt;}
.yb3{bottom:114.556000pt;}
.y1a8{bottom:116.297333pt;}
.y8e{bottom:118.766667pt;}
.y61{bottom:123.616000pt;}
.y31{bottom:124.121333pt;}
.yd9{bottom:126.737333pt;}
.y174{bottom:127.454667pt;}
.y154{bottom:132.568000pt;}
.y1a7{bottom:133.513333pt;}
.y8d{bottom:136.780000pt;}
.yb2{bottom:140.538667pt;}
.y60{bottom:141.628000pt;}
.y30{bottom:142.134667pt;}
.yd8{bottom:144.749333pt;}
.y173{bottom:145.466667pt;}
.y153{bottom:150.581333pt;}
.y1a6{bottom:150.728000pt;}
.y8c{bottom:154.792000pt;}
.y5f{bottom:159.640000pt;}
.y2f{bottom:160.146667pt;}
.yd7{bottom:162.762667pt;}
.y172{bottom:163.478667pt;}
.y1a5{bottom:167.944000pt;}
.y152{bottom:168.593333pt;}
.yb1{bottom:171.489333pt;}
.y8b{bottom:172.804000pt;}
.y5e{bottom:177.653333pt;}
.y2e{bottom:178.158667pt;}
.yd6{bottom:180.774667pt;}
.y171{bottom:181.492000pt;}
.y1a4{bottom:185.160000pt;}
.y151{bottom:186.606667pt;}
.yb0{bottom:189.501333pt;}
.y8a{bottom:190.817333pt;}
.y5d{bottom:195.665333pt;}
.y2d{bottom:196.172000pt;}
.yd5{bottom:198.786667pt;}
.y170{bottom:199.504000pt;}
.y1a3{bottom:202.374667pt;}
.yaf{bottom:207.514667pt;}
.y89{bottom:208.829333pt;}
.y150{bottom:212.589333pt;}
.y5c{bottom:213.678667pt;}
.y2c{bottom:214.184000pt;}
.yd4{bottom:216.800000pt;}
.y16f{bottom:217.517333pt;}
.y1a2{bottom:219.590667pt;}
.yae{bottom:225.526667pt;}
.y88{bottom:226.842667pt;}
.y5b{bottom:231.690667pt;}
.y2b{bottom:232.197333pt;}
.yd3{bottom:234.812000pt;}
.y16e{bottom:235.529333pt;}
.y1a1{bottom:236.805333pt;}
.yf3{bottom:237.236000pt;}
.yad{bottom:243.540000pt;}
.y14f{bottom:247.990667pt;}
.y5a{bottom:249.702667pt;}
.y2a{bottom:250.209333pt;}
.y87{bottom:252.825333pt;}
.y16d{bottom:253.541333pt;}
.y1a0{bottom:254.021333pt;}
.yf2{bottom:254.251867pt;}
.yac{bottom:261.552000pt;}
.yf1{bottom:264.526933pt;}
.y14e{bottom:265.086667pt;}
.y59{bottom:267.716000pt;}
.y29{bottom:268.221333pt;}
.yd2{bottom:270.837333pt;}
.y19f{bottom:271.237333pt;}
.y16c{bottom:271.554667pt;}
.yf0{bottom:274.801067pt;}
.y86{bottom:283.776000pt;}
.yef{bottom:285.076133pt;}
.y58{bottom:285.728000pt;}
.y28{bottom:286.234667pt;}
.y19e{bottom:288.452000pt;}
.yd1{bottom:288.849333pt;}
.y16b{bottom:289.566667pt;}
.y13c{bottom:290.337333pt;}
.yab{bottom:294.734667pt;}
.yee{bottom:295.351200pt;}
.y85{bottom:301.788000pt;}
.y57{bottom:303.741333pt;}
.y27{bottom:304.246667pt;}
.yed{bottom:305.626267pt;}
.y19d{bottom:305.668000pt;}
.yd0{bottom:306.862667pt;}
.y16a{bottom:307.580000pt;}
.yaa{bottom:312.746667pt;}
.y84{bottom:319.800000pt;}
.yec{bottom:320.382267pt;}
.y56{bottom:321.753333pt;}
.y26{bottom:322.260000pt;}
.y19c{bottom:322.882667pt;}
.ycf{bottom:324.874667pt;}
.y169{bottom:325.592000pt;}
.yeb{bottom:335.138267pt;}
.y83{bottom:337.813333pt;}
.y55{bottom:339.765333pt;}
.y19b{bottom:340.098667pt;}
.y25{bottom:340.272000pt;}
.yce{bottom:342.888000pt;}
.y127{bottom:342.918667pt;}
.y168{bottom:343.604000pt;}
.y1ce{bottom:343.876000pt;}
.y141{bottom:344.042133pt;}
.y129{bottom:345.373733pt;}
.ya9{bottom:345.929333pt;}
.y82{bottom:355.825333pt;}
.y19a{bottom:357.314667pt;}
.y126{bottom:357.597333pt;}
.y54{bottom:357.778667pt;}
.y24{bottom:358.284000pt;}
.ycd{bottom:360.900000pt;}
.y1cd{bottom:361.092000pt;}
.y140{bottom:361.481733pt;}
.y167{bottom:361.617333pt;}
.yea{bottom:364.056000pt;}
.y125{bottom:372.276000pt;}
.y81{bottom:373.838667pt;}
.y199{bottom:374.529333pt;}
.ya8{bottom:375.298667pt;}
.y53{bottom:375.790667pt;}
.y23{bottom:376.297333pt;}
.y1cc{bottom:378.306667pt;}
.ycc{bottom:378.912000pt;}
.y166{bottom:379.629333pt;}
.y13f{bottom:386.201733pt;}
.y124{bottom:386.953333pt;}
.y198{bottom:391.745333pt;}
.y80{bottom:391.850667pt;}
.ya7{bottom:393.312000pt;}
.y52{bottom:393.804000pt;}
.y22{bottom:394.309333pt;}
.ycb{bottom:396.925333pt;}
.y165{bottom:397.642667pt;}
.ye9{bottom:401.090667pt;}
.y123{bottom:401.632000pt;}
.y1cb{bottom:406.729333pt;}
.y197{bottom:408.960000pt;}
.y7f{bottom:409.862667pt;}
.ya6{bottom:411.324000pt;}
.y51{bottom:411.816000pt;}
.y21{bottom:412.322667pt;}
.yca{bottom:414.937333pt;}
.y164{bottom:415.654667pt;}
.ye8{bottom:415.769333pt;}
.y122{bottom:416.310667pt;}
.y1ca{bottom:423.945333pt;}
.y196{bottom:426.176000pt;}
.y7e{bottom:427.876000pt;}
.ya5{bottom:429.337333pt;}
.y50{bottom:429.828000pt;}
.y20{bottom:430.334667pt;}
.ye7{bottom:430.448000pt;}
.y121{bottom:430.989333pt;}
.yc9{bottom:432.950667pt;}
.y163{bottom:433.666667pt;}
.y1c9{bottom:441.160000pt;}
.y195{bottom:443.392000pt;}
.ye6{bottom:445.126667pt;}
.y120{bottom:445.666667pt;}
.y7d{bottom:445.888000pt;}
.y4f{bottom:447.841333pt;}
.y1f{bottom:448.346667pt;}
.yc8{bottom:450.962667pt;}
.y162{bottom:451.680000pt;}
.y1c8{bottom:458.376000pt;}
.ye5{bottom:459.804000pt;}
.y11f{bottom:460.345333pt;}
.y194{bottom:460.606667pt;}
.ya4{bottom:462.518667pt;}
.y7c{bottom:463.901333pt;}
.y4e{bottom:465.853333pt;}
.y1e{bottom:466.360000pt;}
.yc7{bottom:468.974667pt;}
.y161{bottom:469.692000pt;}
.y11e{bottom:475.024000pt;}
.y1c7{bottom:475.592000pt;}
.y193{bottom:477.822667pt;}
.ya3{bottom:480.532000pt;}
.ye4{bottom:480.885333pt;}
.y7b{bottom:481.913333pt;}
.y4d{bottom:483.866667pt;}
.y1d{bottom:484.372000pt;}
.yc6{bottom:486.988000pt;}
.y160{bottom:487.704000pt;}
.y11d{bottom:489.702667pt;}
.y1c6{bottom:492.806667pt;}
.y192{bottom:495.037333pt;}
.ya2{bottom:499.873333pt;}
.y7a{bottom:499.925333pt;}
.y4c{bottom:501.878667pt;}
.y11c{bottom:504.380000pt;}
.yc5{bottom:505.000000pt;}
.y15f{bottom:505.717333pt;}
.y1c5{bottom:510.022667pt;}
.y191{bottom:512.253333pt;}
.ye3{bottom:514.304000pt;}
.y1c{bottom:515.868000pt;}
.ya1{bottom:517.885333pt;}
.y79{bottom:517.938667pt;}
.y11b{bottom:519.058667pt;}
.y4b{bottom:519.890667pt;}
.yc4{bottom:523.013333pt;}
.y15e{bottom:523.729333pt;}
.y1c4{bottom:527.237333pt;}
.y190{bottom:529.469333pt;}
.y11a{bottom:533.737333pt;}
.y78{bottom:535.950667pt;}
.yfc{bottom:537.733333pt;}
.y4a{bottom:537.904000pt;}
.y1b{bottom:539.977333pt;}
.yc3{bottom:541.025333pt;}
.y15d{bottom:541.742667pt;}
.y1c3{bottom:544.453333pt;}
.y18f{bottom:546.684000pt;}
.y119{bottom:548.416000pt;}
.ya0{bottom:551.068000pt;}
.ye2{bottom:551.340000pt;}
.y77{bottom:553.964000pt;}
.yfb{bottom:554.749200pt;}
.y49{bottom:555.916000pt;}
.y1a{bottom:556.117333pt;}
.yc2{bottom:559.037333pt;}
.y15c{bottom:559.754667pt;}
.y1c2{bottom:561.669333pt;}
.y118{bottom:563.093333pt;}
.y18e{bottom:563.900000pt;}
.yfa{bottom:565.024267pt;}
.ye1{bottom:566.018667pt;}
.y76{bottom:571.976000pt;}
.y48{bottom:573.929333pt;}
.yf9{bottom:575.298400pt;}
.y19{bottom:576.596000pt;}
.y9f{bottom:577.050667pt;}
.y15b{bottom:577.766667pt;}
.y117{bottom:577.772000pt;}
.y1c1{bottom:578.884000pt;}
.ye0{bottom:580.696000pt;}
.y18d{bottom:581.116000pt;}
.yf8{bottom:585.573467pt;}
.y18{bottom:588.396000pt;}
.y47{bottom:591.941333pt;}
.y116{bottom:592.450667pt;}
.yc1{bottom:595.062667pt;}
.ydf{bottom:595.374667pt;}
.y15a{bottom:595.780000pt;}
.yf7{bottom:595.848533pt;}
.y1c0{bottom:596.100000pt;}
.y75{bottom:597.958667pt;}
.y18c{bottom:598.330667pt;}
.y17{bottom:604.536000pt;}
.yf6{bottom:606.123600pt;}
.y115{bottom:607.129333pt;}
.y9e{bottom:608.001333pt;}
.y46{bottom:609.953333pt;}
.yde{bottom:610.053333pt;}
.yc0{bottom:613.076000pt;}
.y1bf{bottom:613.314667pt;}
.y159{bottom:613.792000pt;}
.y18b{bottom:615.546667pt;}
.yf5{bottom:620.879600pt;}
.y114{bottom:621.806667pt;}
.y16{bottom:625.014667pt;}
.y9d{bottom:626.013333pt;}
.y45{bottom:627.966667pt;}
.y74{bottom:628.909333pt;}
.y1be{bottom:630.530667pt;}
.ydd{bottom:631.133333pt;}
.y158{bottom:631.805333pt;}
.y18a{bottom:632.761333pt;}
.y13b{bottom:635.546667pt;}
.yf4{bottom:635.635600pt;}
.y113{bottom:636.485333pt;}
.y15{bottom:636.814667pt;}
.ybf{bottom:639.057333pt;}
.y9c{bottom:644.026667pt;}
.y44{bottom:645.978667pt;}
.y73{bottom:646.921333pt;}
.y1bd{bottom:647.746667pt;}
.y157{bottom:649.817333pt;}
.y189{bottom:649.977333pt;}
.y112{bottom:651.164000pt;}
.y13a{bottom:652.642667pt;}
.y14{bottom:657.293333pt;}
.y9b{bottom:662.038667pt;}
.y43{bottom:663.992000pt;}
.ydc{bottom:664.553333pt;}
.y1bc{bottom:664.961333pt;}
.y111{bottom:665.842667pt;}
.y188{bottom:667.193333pt;}
.y156{bottom:667.829333pt;}
.y13{bottom:669.093333pt;}
.ybe{bottom:670.008000pt;}
.y72{bottom:672.904000pt;}
.y128{bottom:677.893333pt;}
.y9a{bottom:680.050667pt;}
.y110{bottom:680.520000pt;}
.y42{bottom:682.004000pt;}
.y1bb{bottom:682.177333pt;}
.y187{bottom:684.408000pt;}
.y12{bottom:685.233333pt;}
.y155{bottom:685.842667pt;}
.ybd{bottom:688.021333pt;}
.y11{bottom:689.573333pt;}
.y10f{bottom:695.198667pt;}
.y99{bottom:698.064000pt;}
.y1ba{bottom:699.392000pt;}
.y41{bottom:700.016000pt;}
.y10{bottom:701.373333pt;}
.y186{bottom:701.624000pt;}
.y71{bottom:703.854667pt;}
.ybc{bottom:706.033333pt;}
.ydb{bottom:709.729333pt;}
.y10e{bottom:709.877333pt;}
.y98{bottom:716.076000pt;}
.y1b9{bottom:716.608000pt;}
.yf{bottom:717.512000pt;}
.y40{bottom:718.029333pt;}
.y70{bottom:721.868000pt;}
.ybb{bottom:724.046667pt;}
.y10d{bottom:724.556000pt;}
.y185{bottom:726.809333pt;}
.y13d{bottom:728.441733pt;}
.y1b8{bottom:733.824000pt;}
.y97{bottom:734.088000pt;}
.y3f{bottom:736.041333pt;}
.ye{bottom:737.992000pt;}
.y10c{bottom:739.233333pt;}
.y6f{bottom:739.880000pt;}
.yba{bottom:742.058667pt;}
.yd{bottom:749.792000pt;}
.y1b7{bottom:751.038667pt;}
.y96{bottom:752.101333pt;}
.y10b{bottom:753.912000pt;}
.y3e{bottom:754.054667pt;}
.y6e{bottom:757.892000pt;}
.y184{bottom:759.965333pt;}
.yb9{bottom:760.070667pt;}
.y1b6{bottom:768.254667pt;}
.y10a{bottom:768.590667pt;}
.y95{bottom:770.113333pt;}
.yc{bottom:770.270667pt;}
.y3d{bottom:772.066667pt;}
.y183{bottom:773.474667pt;}
.y6d{bottom:775.905333pt;}
.yb8{bottom:778.084000pt;}
.yb{bottom:782.070667pt;}
.y109{bottom:783.269333pt;}
.y1b5{bottom:785.469333pt;}
.y182{bottom:786.984000pt;}
.y3c{bottom:790.078667pt;}
.y6c{bottom:793.917333pt;}
.y94{bottom:796.096000pt;}
.y108{bottom:797.946667pt;}
.y181{bottom:800.493333pt;}
.ya{bottom:802.549333pt;}
.y1b4{bottom:802.685333pt;}
.y3b{bottom:808.092000pt;}
.y6b{bottom:811.930667pt;}
.y107{bottom:812.625333pt;}
.yb7{bottom:814.109333pt;}
.y1b3{bottom:819.901333pt;}
.y180{bottom:821.972000pt;}
.y9{bottom:822.320000pt;}
.y3a{bottom:826.104000pt;}
.y93{bottom:827.046667pt;}
.y106{bottom:827.304000pt;}
.y6a{bottom:829.942667pt;}
.yb6{bottom:832.121333pt;}
.y17f{bottom:835.482667pt;}
.y1b2{bottom:837.116000pt;}
.y8{bottom:840.332000pt;}
.y105{bottom:841.982667pt;}
.y39{bottom:844.117333pt;}
.y92{bottom:845.060000pt;}
.y69{bottom:847.954667pt;}
.y17e{bottom:848.992000pt;}
.y1b1{bottom:854.332000pt;}
.y104{bottom:856.660000pt;}
.yb5{bottom:858.104000pt;}
.y7{bottom:858.345333pt;}
.y38{bottom:862.129333pt;}
.y17d{bottom:862.501333pt;}
.y91{bottom:863.072000pt;}
.y68{bottom:865.968000pt;}
.y103{bottom:871.338667pt;}
.y1b0{bottom:871.546667pt;}
.y17c{bottom:876.010667pt;}
.y37{bottom:880.141333pt;}
.y67{bottom:883.980000pt;}
.y102{bottom:886.017333pt;}
.y1af{bottom:888.762667pt;}
.y90{bottom:889.054667pt;}
.y17b{bottom:889.520000pt;}
.y6{bottom:898.178667pt;}
.y101{bottom:900.696000pt;}
.y66{bottom:901.993333pt;}
.y17a{bottom:903.029333pt;}
.y1ae{bottom:905.978667pt;}
.y36{bottom:906.124000pt;}
.y179{bottom:916.538667pt;}
.y65{bottom:920.005333pt;}
.y100{bottom:921.776000pt;}
.y1ad{bottom:923.193333pt;}
.y5{bottom:925.198667pt;}
.y178{bottom:930.048000pt;}
.yff{bottom:933.094667pt;}
.y64{bottom:938.017333pt;}
.y1ac{bottom:940.409333pt;}
.y177{bottom:943.557333pt;}
.y4{bottom:952.217333pt;}
.y63{bottom:956.030667pt;}
.y176{bottom:957.066667pt;}
.y1ab{bottom:957.624000pt;}
.y35{bottom:974.042667pt;}
.y1aa{bottom:974.840000pt;}
.yfe{bottom:976.276000pt;}
.y3{bottom:977.906667pt;}
.y175{bottom:978.546667pt;}
.y34{bottom:992.056000pt;}
.yfd{bottom:993.372000pt;}
.y1{bottom:1011.514667pt;}
.y33{bottom:1038.548000pt;}
.h13{height:24.202107pt;}
.h14{height:24.369480pt;}
.h8{height:27.076941pt;}
.h15{height:30.945242pt;}
.hf{height:30.977044pt;}
.hd{height:31.157778pt;}
.h1a{height:31.992188pt;}
.h12{height:34.574438pt;}
.ha{height:34.813542pt;}
.h17{height:35.052646pt;}
.hb{height:38.415786pt;}
.hc{height:38.681455pt;}
.h4{height:38.947124pt;}
.h19{height:39.588281pt;}
.h1b{height:42.656250pt;}
.h9{height:43.660390pt;}
.h1d{height:44.390625pt;}
.h1c{height:44.648438pt;}
.h2{height:45.272024pt;}
.h7{height:48.481423pt;}
.he{height:48.511220pt;}
.h6{height:49.201961pt;}
.h1f{height:49.421563pt;}
.h1e{height:49.708594pt;}
.h5{height:69.148877pt;}
.h16{height:73.619772pt;}
.h3{height:91.114522pt;}
.h20{height:323.489333pt;}
.h18{height:327.446667pt;}
.h10{height:793.701333pt;}
.h11{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:176.724208pt;}
.w6{width:587.053067pt;}
.w5{width:596.942933pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:1122.520000pt;}
.w4{width:1122.666667pt;}
.x67{left:-0.901600pt;}
.x0{left:0.000000pt;}
.x62{left:4.334933pt;}
.x68{left:27.418400pt;}
.x64{left:32.654933pt;}
.x2{left:51.605861pt;}
.x10{left:100.054667pt;}
.x1{left:102.046667pt;}
.x66{left:103.324267pt;}
.x2b{left:106.120000pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.x43{left:121.225333pt;}
.x40{left:122.618800pt;}
.x3f{left:124.819600pt;}
.x37{left:126.369333pt;}
.x79{left:127.356000pt;}
.x32{left:128.360000pt;}
.x4{left:129.929333pt;}
.x3a{left:138.337333pt;}
.x34{left:140.328000pt;}
.x39{left:147.954667pt;}
.x33{left:149.945333pt;}
.x35{left:151.936000pt;}
.x3e{left:156.778800pt;}
.x25{left:159.690667pt;}
.x2f{left:162.001333pt;}
.x38{left:164.398667pt;}
.x31{left:166.228000pt;}
.x6{left:167.421333pt;}
.x26{left:172.974667pt;}
.x5f{left:175.561333pt;}
.x44{left:177.749333pt;}
.x7{left:178.985333pt;}
.x2c{left:180.733333pt;}
.x61{left:182.320000pt;}
.x6a{left:191.162667pt;}
.xc{left:192.397333pt;}
.x59{left:196.318667pt;}
.xd{left:199.038667pt;}
.x55{left:200.377333pt;}
.x58{left:203.168000pt;}
.x56{left:205.858667pt;}
.x4b{left:208.326667pt;}
.x27{left:211.268000pt;}
.x8c{left:213.892000pt;}
.x30{left:214.988000pt;}
.x4a{left:216.492000pt;}
.x7d{left:217.473333pt;}
.x57{left:219.380000pt;}
.x3d{left:223.354400pt;}
.x28{left:224.552000pt;}
.x29{left:227.826667pt;}
.x52{left:229.164000pt;}
.x7e{left:230.757333pt;}
.x8{left:232.604000pt;}
.x8d{left:234.149333pt;}
.x4d{left:235.040000pt;}
.x4e{left:236.373333pt;}
.x45{left:237.432000pt;}
.x9{left:239.245333pt;}
.x2a{left:241.109333pt;}
.x3b{left:242.006667pt;}
.x48{left:243.624000pt;}
.x53{left:244.777333pt;}
.x4c{left:245.716000pt;}
.x60{left:249.040000pt;}
.x51{left:251.132000pt;}
.x5c{left:253.469333pt;}
.x5d{left:254.550667pt;}
.x36{left:255.706667pt;}
.x42{left:256.998667pt;}
.x78{left:259.065333pt;}
.x54{left:261.974667pt;}
.x49{left:262.866667pt;}
.x5e{left:264.826667pt;}
.x5b{left:268.293333pt;}
.x4f{left:269.573333pt;}
.x6e{left:271.970667pt;}
.x50{left:274.061333pt;}
.x47{left:275.484000pt;}
.x3c{left:276.975333pt;}
.x5a{left:278.114667pt;}
.x6f{left:285.254667pt;}
.x46{left:287.625333pt;}
.x21{left:306.638667pt;}
.x7f{left:316.500000pt;}
.x76{left:318.976000pt;}
.x22{left:319.921333pt;}
.x23{left:323.266667pt;}
.x80{left:329.784000pt;}
.x77{left:332.260000pt;}
.x81{left:333.170667pt;}
.x24{left:336.549333pt;}
.xe{left:338.264000pt;}
.xf{left:344.906667pt;}
.x82{left:346.454667pt;}
.x11{left:362.761333pt;}
.x89{left:365.933333pt;}
.x12{left:369.404000pt;}
.x8a{left:379.217333pt;}
.x41{left:388.118667pt;}
.x6b{left:399.113333pt;}
.x6c{left:405.754667pt;}
.x83{left:420.396000pt;}
.x6d{left:422.740000pt;}
.x1b{left:424.117333pt;}
.x17{left:428.664000pt;}
.x1c{left:430.758667pt;}
.x1d{left:434.040000pt;}
.x18{left:435.305333pt;}
.x1e{left:447.324000pt;}
.x85{left:448.813333pt;}
.x8b{left:455.228000pt;}
.x1f{left:460.846667pt;}
.x86{left:462.097333pt;}
.x20{left:474.130667pt;}
.x8e{left:492.664000pt;}
.x19{left:503.137333pt;}
.x1a{left:509.780000pt;}
.x8f{left:516.574667pt;}
.x7a{left:531.274667pt;}
.x84{left:538.266667pt;}
.x7b{left:544.557333pt;}
.x93{left:575.470667pt;}
.x70{left:576.410667pt;}
.x71{left:583.053333pt;}
.x69{left:584.298400pt;}
.x65{left:589.534933pt;}
.x63{left:594.334800pt;}
.x91{left:597.602667pt;}
.x94{left:599.381333pt;}
.x74{left:605.246667pt;}
.x75{left:618.530667pt;}
.x92{left:621.513333pt;}
.x7c{left:631.250667pt;}
.x95{left:641.673333pt;}
.x87{left:645.514667pt;}
.x88{left:658.798667pt;}
.x13{left:659.940000pt;}
.x96{left:665.584000pt;}
.x14{left:666.582667pt;}
.x15{left:669.840000pt;}
.x2d{left:672.132000pt;}
.x72{left:674.034667pt;}
.x16{left:676.481333pt;}
.xa{left:679.693333pt;}
.x2e{left:685.414667pt;}
.xb{left:686.334667pt;}
.x73{left:687.318667pt;}
.x90{left:690.204000pt;}
}




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