
    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_f1c1211f0eef04d41425b918.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_546d9e6b035f881579c65d78.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_48ba2890e17f0156d761f3fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6a8bf572ae2c7bb103f289d5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914000;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_925e131ec7d63159298d351c.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_05fcc4d5b43686c8f143c0ef.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7d9af6147b616af8f371b510.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_429ceb0cf5e443629419a2ca.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_40b6d929b94b69006eca94c8.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_8ac94236775f04076f1aa4a4.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_6b6ab9f87eb2005e91a8fabb.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_3684d20146be501a78defd01.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_429ceb0cf5e443629419a2ca.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_e4a71432b0e9cf17cbb348a0.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_7a4bcf2e9c383e12c02feb0c.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_6b6ab9f87eb2005e91a8fabb.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_e9491262da364d787b073b8e.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.021484;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_630c2ef34055907516e9692c.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.488000;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_79b5e460fd0ed259a8c849f0.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_fba254cf8e2f3453ec83153a.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m4{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);}
.m24{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);}
.m20{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);}
.mf{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);}
.m22{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);}
.m29{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m18{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);}
.m16{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);}
.m7{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.me{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);}
.m23{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);}
.m11{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.m6{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);}
.m19{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);}
.mb{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);}
.m14{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);}
.ma{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);}
.m1e{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.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);}
.m8{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);}
.m21{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);}
.m9{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);}
.m25{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);}
.m27{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);}
.m1d{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);}
.m28{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);}
.m1b{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);}
.m5{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;}
.v3{vertical-align:-11.184000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls64{letter-spacing:-0.343710px;}
.ls66{letter-spacing:-0.323190px;}
.ls65{letter-spacing:-0.287280px;}
.ls39{letter-spacing:-0.235670px;}
.ls37{letter-spacing:-0.141402px;}
.ls73{letter-spacing:-0.137074px;}
.ls34{letter-spacing:-0.135510px;}
.ls74{letter-spacing:-0.131362px;}
.ls35{letter-spacing:-0.123727px;}
.ls6b{letter-spacing:-0.114228px;}
.ls27{letter-spacing:-0.089153px;}
.ls38{letter-spacing:-0.088376px;}
.ls62{letter-spacing:-0.086423px;}
.ls6d{letter-spacing:-0.085671px;}
.ls32{letter-spacing:-0.082485px;}
.ls33{letter-spacing:-0.076593px;}
.ls36{letter-spacing:-0.070701px;}
.ls71{letter-spacing:-0.068537px;}
.ls2f{letter-spacing:-0.064809px;}
.ls70{letter-spacing:-0.062825px;}
.ls3a{letter-spacing:-0.058918px;}
.ls2a{letter-spacing:-0.047134px;}
.ls68{letter-spacing:-0.046170px;}
.ls2e{letter-spacing:-0.041242px;}
.ls31{letter-spacing:-0.035351px;}
.ls6a{letter-spacing:-0.030780px;}
.ls2b{letter-spacing:-0.029459px;}
.ls6e{letter-spacing:-0.022846px;}
.ls69{letter-spacing:-0.020520px;}
.ls75{letter-spacing:-0.017134px;}
.ls2c{letter-spacing:-0.011784px;}
.ls28{letter-spacing:-0.010584px;}
.ls63{letter-spacing:-0.010260px;}
.ls30{letter-spacing:-0.005892px;}
.ls6c{letter-spacing:-0.005711px;}
.ls29{letter-spacing:-0.005292px;}
.ls67{letter-spacing:-0.005130px;}
.lsd{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000002px;}
.ls8{letter-spacing:0.000091px;}
.ls5d{letter-spacing:0.000198px;}
.ls61{letter-spacing:0.000273px;}
.ls60{letter-spacing:0.000366px;}
.ls7e{letter-spacing:0.000421px;}
.ls5e{letter-spacing:0.000552px;}
.ls95{letter-spacing:0.000663px;}
.ls5a{letter-spacing:0.000676px;}
.ls90{letter-spacing:0.000800px;}
.ls3d{letter-spacing:0.000860px;}
.ls7d{letter-spacing:0.000933px;}
.ls5b{letter-spacing:0.001036px;}
.ls7c{letter-spacing:0.001127px;}
.ls5f{letter-spacing:0.001193px;}
.lsf{letter-spacing:0.001200px;}
.ls7{letter-spacing:0.001226px;}
.ls7f{letter-spacing:0.001518px;}
.ls3f{letter-spacing:0.001574px;}
.ls11{letter-spacing:0.001673px;}
.lsa{letter-spacing:0.001773px;}
.ls41{letter-spacing:0.001890px;}
.ls26{letter-spacing:0.001979px;}
.ls84{letter-spacing:0.002338px;}
.ls59{letter-spacing:0.002362px;}
.ls58{letter-spacing:0.002382px;}
.ls79{letter-spacing:0.002506px;}
.ls86{letter-spacing:0.002832px;}
.ls4{letter-spacing:0.002870px;}
.ls25{letter-spacing:0.002958px;}
.ls6{letter-spacing:0.003226px;}
.ls24{letter-spacing:0.003337px;}
.lsc{letter-spacing:0.003488px;}
.ls9{letter-spacing:0.003494px;}
.ls7b{letter-spacing:0.003677px;}
.ls5c{letter-spacing:0.003859px;}
.ls40{letter-spacing:0.004350px;}
.ls85{letter-spacing:0.004800px;}
.ls76{letter-spacing:0.004860px;}
.ls50{letter-spacing:0.005130px;}
.ls78{letter-spacing:0.005242px;}
.ls3c{letter-spacing:0.005415px;}
.ls23{letter-spacing:0.005627px;}
.ls20{letter-spacing:0.005892px;}
.ls4b{letter-spacing:0.010260px;}
.ls53{letter-spacing:0.015390px;}
.ls18{letter-spacing:0.015876px;}
.ls55{letter-spacing:0.017134px;}
.ls45{letter-spacing:0.018194px;}
.ls14{letter-spacing:0.018769px;}
.ls4a{letter-spacing:0.020520px;}
.ls47{letter-spacing:0.025650px;}
.ls16{letter-spacing:0.026460px;}
.ls57{letter-spacing:0.028557px;}
.ls1c{letter-spacing:0.029459px;}
.ls19{letter-spacing:0.031752px;}
.ls1b{letter-spacing:0.035351px;}
.ls51{letter-spacing:0.035910px;}
.ls4e{letter-spacing:0.040903px;}
.ls49{letter-spacing:0.041040px;}
.ls1f{letter-spacing:0.041242px;}
.ls17{letter-spacing:0.042336px;}
.ls56{letter-spacing:0.045691px;}
.ls4c{letter-spacing:0.046170px;}
.ls1d{letter-spacing:0.047134px;}
.ls1a{letter-spacing:0.047628px;}
.ls52{letter-spacing:0.051300px;}
.ls54{letter-spacing:0.051403px;}
.ls4d{letter-spacing:0.056430px;}
.ls1e{letter-spacing:0.058918px;}
.ls43{letter-spacing:0.059132px;}
.ls12{letter-spacing:0.060999px;}
.ls4f{letter-spacing:0.061560px;}
.ls72{letter-spacing:0.062825px;}
.ls21{letter-spacing:0.076593px;}
.ls6f{letter-spacing:0.085671px;}
.ls48{letter-spacing:0.102600px;}
.ls46{letter-spacing:0.163750px;}
.ls15{letter-spacing:0.168921px;}
.ls44{letter-spacing:0.172847px;}
.ls13{letter-spacing:0.178305px;}
.ls22{letter-spacing:0.535979px;}
.ls8a{letter-spacing:0.537859px;}
.lse{letter-spacing:1.275394px;}
.ls5{letter-spacing:1.861130px;}
.ls1{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.998354px;}
.lsb{letter-spacing:11.954850px;}
.ls7a{letter-spacing:12.167266px;}
.ls8d{letter-spacing:12.197339px;}
.ls83{letter-spacing:13.226871px;}
.ls91{letter-spacing:13.365141px;}
.ls8c{letter-spacing:13.367947px;}
.ls8e{letter-spacing:13.412123px;}
.ls93{letter-spacing:13.430400px;}
.ls92{letter-spacing:13.430640px;}
.ls81{letter-spacing:13.448400px;}
.ls82{letter-spacing:13.454400px;}
.ls94{letter-spacing:13.481331px;}
.ls96{letter-spacing:13.499040px;}
.ls88{letter-spacing:13.592654px;}
.ls8b{letter-spacing:13.739424px;}
.ls98{letter-spacing:13.743061px;}
.ls42{letter-spacing:14.645022px;}
.ls77{letter-spacing:14.943900px;}
.ls3e{letter-spacing:14.944200px;}
.ls8f{letter-spacing:15.691576px;}
.ls99{letter-spacing:15.768047px;}
.ls89{letter-spacing:16.156282px;}
.ls87{letter-spacing:16.579459px;}
.ls80{letter-spacing:17.491576px;}
.ls97{letter-spacing:17.873929px;}
.ls3b{letter-spacing:18.314924px;}
.ls2d{letter-spacing:20.550459px;}
.ls2{letter-spacing:70.236600px;}
.ls3{letter-spacing:72.353510px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-26.899200px;}
.ws10{word-spacing:-17.394700px;}
.ws43{word-spacing:-15.655334px;}
.ws11{word-spacing:-14.943900px;}
.ws4{word-spacing:-14.355754px;}
.ws2a{word-spacing:-13.915795px;}
.ws45{word-spacing:-13.449600px;}
.wse0{word-spacing:-13.220014px;}
.ws9e{word-spacing:-12.825000px;}
.wsa7{word-spacing:-12.176255px;}
.ws27{word-spacing:-11.955150px;}
.ws3f{word-spacing:-11.908905px;}
.ws9d{word-spacing:-11.544347px;}
.ws7{word-spacing:-11.357400px;}
.wsa6{word-spacing:-10.460700px;}
.ws9f{word-spacing:-7.866000px;}
.ws39{word-spacing:-5.200477px;}
.ws135{word-spacing:-4.949453px;}
.ws48{word-spacing:-4.363619px;}
.ws49{word-spacing:-4.303843px;}
.wsb{word-spacing:-4.184292px;}
.wsef{word-spacing:-4.088678px;}
.wsf0{word-spacing:-3.873485px;}
.ws4b{word-spacing:-3.765863px;}
.ws94{word-spacing:-3.646312px;}
.wsa8{word-spacing:-3.281702px;}
.ws42{word-spacing:-3.227904px;}
.ws13b{word-spacing:-3.174106px;}
.wse5{word-spacing:-2.869229px;}
.ws4c{word-spacing:-2.809453px;}
.wse2{word-spacing:-2.749678px;}
.wsa9{word-spacing:-2.743718px;}
.wsaa{word-spacing:-2.689920px;}
.ws3d{word-spacing:-2.689902px;}
.ws46{word-spacing:-2.510575px;}
.wsdf{word-spacing:-2.450800px;}
.ws75{word-spacing:-2.421513px;}
.wscf{word-spacing:-2.307406px;}
.ws76{word-spacing:-2.291895px;}
.wsd8{word-spacing:-2.290271px;}
.wsd0{word-spacing:-2.221735px;}
.ws30{word-spacing:-2.092146px;}
.wse4{word-spacing:-2.032370px;}
.ws65{word-spacing:-1.991415px;}
.ws66{word-spacing:-1.944281px;}
.wsa{word-spacing:-1.908367px;}
.ws13c{word-spacing:-1.775347px;}
.ws61{word-spacing:-1.702719px;}
.ws60{word-spacing:-1.661476px;}
.ws12a{word-spacing:-1.613952px;}
.ws15{word-spacing:-1.554166px;}
.wsdc{word-spacing:-1.434614px;}
.ws9{word-spacing:-1.322630px;}
.wsd7{word-spacing:-1.307911px;}
.wsac{word-spacing:-1.291162px;}
.ws3b{word-spacing:-1.255288px;}
.ws10e{word-spacing:-1.237363px;}
.ws3c{word-spacing:-1.195512px;}
.ws101{word-spacing:-1.075968px;}
.wse6{word-spacing:-1.075961px;}
.ws87{word-spacing:-1.016185px;}
.wse1{word-spacing:-0.956410px;}
.ws93{word-spacing:-0.896634px;}
.ws117{word-spacing:-0.860774px;}
.ws25{word-spacing:-0.836858px;}
.wsd6{word-spacing:-0.811019px;}
.ws2f{word-spacing:-0.777083px;}
.ws113{word-spacing:-0.753178px;}
.ws9c{word-spacing:-0.717307px;}
.wsdd{word-spacing:-0.657532px;}
.ws2d{word-spacing:-0.597756px;}
.ws155{word-spacing:-0.591782px;}
.ws133{word-spacing:-0.484186px;}
.ws92{word-spacing:-0.478205px;}
.ws132{word-spacing:-0.430387px;}
.ws147{word-spacing:-0.376589px;}
.ws13{word-spacing:-0.358654px;}
.wsf5{word-spacing:-0.322790px;}
.wsc8{word-spacing:-0.308416px;}
.ws17{word-spacing:-0.298878px;}
.ws10b{word-spacing:-0.268992px;}
.ws50{word-spacing:-0.258073px;}
.wsb3{word-spacing:-0.250173px;}
.ws21{word-spacing:-0.239102px;}
.wsfc{word-spacing:-0.215194px;}
.ws38{word-spacing:-0.179327px;}
.wsfa{word-spacing:-0.161395px;}
.ws16{word-spacing:-0.119551px;}
.ws4f{word-spacing:-0.107922px;}
.ws2{word-spacing:-0.107597px;}
.wsb2{word-spacing:-0.104618px;}
.ws1f{word-spacing:-0.059776px;}
.ws44{word-spacing:-0.053798px;}
.ws28{word-spacing:-0.047821px;}
.wsad{word-spacing:-0.041843px;}
.ws8{word-spacing:-0.014899px;}
.ws14b{word-spacing:-0.003226px;}
.ws95{word-spacing:-0.001991px;}
.ws6{word-spacing:-0.000241px;}
.ws0{word-spacing:0.000000px;}
.ws7d{word-spacing:0.011784px;}
.wsd4{word-spacing:0.022846px;}
.ws6e{word-spacing:0.029459px;}
.ws40{word-spacing:0.053798px;}
.wsf{word-spacing:0.059776px;}
.wsca{word-spacing:0.068537px;}
.wscb{word-spacing:0.091382px;}
.ws41{word-spacing:0.107597px;}
.wsc1{word-spacing:0.107730px;}
.ws1c{word-spacing:0.119551px;}
.ws5b{word-spacing:0.132300px;}
.ws10d{word-spacing:0.161395px;}
.wsc2{word-spacing:0.164160px;}
.ws7c{word-spacing:0.164969px;}
.wscc{word-spacing:0.171342px;}
.ws4a{word-spacing:0.179327px;}
.wsc0{word-spacing:0.179550px;}
.wsc6{word-spacing:0.189810px;}
.wsc9{word-spacing:0.199899px;}
.wsc7{word-spacing:0.200070px;}
.wsa5{word-spacing:0.215194px;}
.wsd5{word-spacing:0.222745px;}
.ws12{word-spacing:0.239102px;}
.ws11c{word-spacing:0.268992px;}
.ws4e{word-spacing:0.298878px;}
.ws13a{word-spacing:0.322790px;}
.wsc{word-spacing:0.358654px;}
.ws156{word-spacing:0.376589px;}
.ws8a{word-spacing:0.418429px;}
.wsa2{word-spacing:0.430387px;}
.ws86{word-spacing:0.478205px;}
.ws52{word-spacing:0.486864px;}
.ws51{word-spacing:0.502740px;}
.ws53{word-spacing:0.513324px;}
.ws89{word-spacing:0.537980px;}
.ws5{word-spacing:0.556186px;}
.ws3a{word-spacing:0.597756px;}
.ws2b{word-spacing:0.657532px;}
.wse8{word-spacing:0.717307px;}
.ws108{word-spacing:0.753178px;}
.ws5c{word-spacing:0.760037px;}
.ws5d{word-spacing:0.842522px;}
.ws146{word-spacing:0.860774px;}
.wsea{word-spacing:0.956410px;}
.ws10c{word-spacing:0.968371px;}
.ws143{word-spacing:1.022170px;}
.ws9a{word-spacing:1.075961px;}
.wsfd{word-spacing:1.075968px;}
.ws81{word-spacing:1.119434px;}
.ws151{word-spacing:1.129766px;}
.ws80{word-spacing:1.196027px;}
.ws47{word-spacing:1.255288px;}
.ws83{word-spacing:1.315063px;}
.ws85{word-spacing:1.374839px;}
.ws79{word-spacing:1.508291px;}
.ws32{word-spacing:1.613941px;}
.ws8f{word-spacing:1.673717px;}
.ws137{word-spacing:1.721549px;}
.wsae{word-spacing:1.733492px;}
.wse3{word-spacing:1.793268px;}
.ws157{word-spacing:1.829146px;}
.wsbb{word-spacing:1.836540px;}
.wsb8{word-spacing:1.841670px;}
.wsb9{word-spacing:1.862190px;}
.wsba{word-spacing:1.872450px;}
.ws20{word-spacing:1.972595px;}
.ws91{word-spacing:2.032370px;}
.ws110{word-spacing:2.098138px;}
.ws7b{word-spacing:2.197626px;}
.wsd2{word-spacing:2.198889px;}
.wsd3{word-spacing:2.204600px;}
.wsde{word-spacing:2.211697px;}
.ws139{word-spacing:2.259533px;}
.ws55{word-spacing:2.259684px;}
.ws54{word-spacing:2.302020px;}
.ws118{word-spacing:2.313331px;}
.wsed{word-spacing:2.331248px;}
.wsd1{word-spacing:2.393077px;}
.ws7a{word-spacing:2.439189px;}
.ws2c{word-spacing:2.510575px;}
.ws125{word-spacing:2.582323px;}
.ws8c{word-spacing:2.630126px;}
.ws8d{word-spacing:2.661952px;}
.ws112{word-spacing:2.689920px;}
.wsa3{word-spacing:2.743718px;}
.wsb0{word-spacing:2.749678px;}
.ws14d{word-spacing:2.851315px;}
.ws35{word-spacing:2.869229px;}
.wse{word-spacing:2.929004px;}
.wsab{word-spacing:2.958912px;}
.ws130{word-spacing:3.066509px;}
.wseb{word-spacing:3.108331px;}
.ws10f{word-spacing:3.120307px;}
.wsdb{word-spacing:3.135559px;}
.wsec{word-spacing:3.168107px;}
.wsf1{word-spacing:3.174106px;}
.ws8e{word-spacing:3.227882px;}
.ws12e{word-spacing:3.281702px;}
.ws1d{word-spacing:3.407209px;}
.ws14c{word-spacing:3.496896px;}
.ws11e{word-spacing:3.550694px;}
.ws90{word-spacing:3.586536px;}
.ws3e{word-spacing:3.646312px;}
.ws131{word-spacing:3.658291px;}
.ws71{word-spacing:3.658783px;}
.ws58{word-spacing:3.662064px;}
.ws120{word-spacing:3.712090px;}
.ws136{word-spacing:3.765888px;}
.ws124{word-spacing:3.819686px;}
.ws72{word-spacing:3.929804px;}
.ws19{word-spacing:4.004965px;}
.wsf3{word-spacing:4.034880px;}
.ws36{word-spacing:4.124516px;}
.ws37{word-spacing:4.184292px;}
.wsb4{word-spacing:4.247640px;}
.ws67{word-spacing:4.277418px;}
.wsb5{word-spacing:4.283550px;}
.ws23{word-spacing:4.483170px;}
.wsb7{word-spacing:4.560570px;}
.ws11b{word-spacing:4.572864px;}
.wsc3{word-spacing:4.581090px;}
.wsb6{word-spacing:4.617000px;}
.ws74{word-spacing:4.630923px;}
.ws14{word-spacing:4.662497px;}
.ws73{word-spacing:4.813568px;}
.wsce{word-spacing:4.826133px;}
.ws9b{word-spacing:4.841824px;}
.wscd{word-spacing:4.894670px;}
.ws8b{word-spacing:4.961375px;}
.ws11a{word-spacing:5.057050px;}
.ws6d{word-spacing:5.096372px;}
.ws82{word-spacing:5.200477px;}
.ws88{word-spacing:5.320028px;}
.ws154{word-spacing:5.376403px;}
.ws144{word-spacing:5.378093px;}
.ws119{word-spacing:5.378246px;}
.wsf8{word-spacing:5.379840px;}
.ws109{word-spacing:5.381731px;}
.wsf9{word-spacing:5.383200px;}
.ws104{word-spacing:5.433638px;}
.wse9{word-spacing:5.499355px;}
.ws6c{word-spacing:5.502904px;}
.ws24{word-spacing:5.559131px;}
.wsc4{word-spacing:5.591700px;}
.wsc5{word-spacing:5.627610px;}
.ws22{word-spacing:5.678682px;}
.ws69{word-spacing:5.685548px;}
.wsa4{word-spacing:5.702630px;}
.wsee{word-spacing:5.798233px;}
.ws68{word-spacing:5.809275px;}
.ws97{word-spacing:5.858009px;}
.ws105{word-spacing:5.917824px;}
.ws1a{word-spacing:5.977560px;}
.ws152{word-spacing:6.079219px;}
.ws31{word-spacing:6.097111px;}
.ws18{word-spacing:6.216662px;}
.ws34{word-spacing:6.395989px;}
.ws84{word-spacing:6.455765px;}
.wsd9{word-spacing:6.556687px;}
.wsda{word-spacing:6.585244px;}
.wsbf{word-spacing:6.627960px;}
.ws5f{word-spacing:6.757849px;}
.ws12d{word-spacing:6.778598px;}
.ws5e{word-spacing:6.822658px;}
.ws33{word-spacing:6.933970px;}
.wsff{word-spacing:6.939994px;}
.ws4d{word-spacing:7.053521px;}
.ws1b{word-spacing:7.173072px;}
.ws129{word-spacing:7.424179px;}
.ws98{word-spacing:7.471950px;}
.ws127{word-spacing:7.477978px;}
.ws140{word-spacing:7.531776px;}
.ws99{word-spacing:7.651277px;}
.ws7f{word-spacing:7.818366px;}
.wse7{word-spacing:7.890379px;}
.ws7e{word-spacing:7.906742px;}
.ws1e{word-spacing:7.950155px;}
.ws142{word-spacing:7.962163px;}
.wsd{word-spacing:8.547911px;}
.ws122{word-spacing:8.607744px;}
.ws77{word-spacing:8.920125px;}
.ws150{word-spacing:8.930534px;}
.ws78{word-spacing:9.043852px;}
.ws153{word-spacing:9.145728px;}
.wsa1{word-spacing:9.253325px;}
.wsaf{word-spacing:9.564096px;}
.ws121{word-spacing:9.576115px;}
.wsa0{word-spacing:9.683712px;}
.wsbc{word-spacing:9.690570px;}
.wsbd{word-spacing:9.752130px;}
.wsbe{word-spacing:9.793170px;}
.ws59{word-spacing:10.007172px;}
.ws5a{word-spacing:10.012464px;}
.ws14a{word-spacing:10.921075px;}
.ws103{word-spacing:11.512858px;}
.ws12b{word-spacing:11.781850px;}
.ws2e{word-spacing:11.895344px;}
.ws26{word-spacing:11.909159px;}
.ws102{word-spacing:12.373632px;}
.wsf6{word-spacing:13.073011px;}
.ws123{word-spacing:13.288205px;}
.ws13f{word-spacing:13.342003px;}
.ws126{word-spacing:13.388304px;}
.ws14e{word-spacing:13.388544px;}
.ws10a{word-spacing:13.389245px;}
.ws100{word-spacing:13.390752px;}
.ws106{word-spacing:13.390915px;}
.ws116{word-spacing:13.391136px;}
.ws149{word-spacing:13.391587px;}
.ws114{word-spacing:13.392490px;}
.ws148{word-spacing:13.393181px;}
.wsfb{word-spacing:13.393546px;}
.wsfe{word-spacing:13.395802px;}
.ws13d{word-spacing:13.449600px;}
.ws12f{word-spacing:13.503398px;}
.ws107{word-spacing:13.610995px;}
.ws11d{word-spacing:13.664794px;}
.ws14f{word-spacing:13.718592px;}
.ws13e{word-spacing:14.417971px;}
.ws6f{word-spacing:14.558539px;}
.ws70{word-spacing:14.564431px;}
.ws11f{word-spacing:14.740762px;}
.wsb1{word-spacing:14.764573px;}
.ws96{word-spacing:14.885024px;}
.ws158{word-spacing:15.171149px;}
.ws64{word-spacing:18.441209px;}
.ws6a{word-spacing:18.470668px;}
.ws63{word-spacing:18.500126px;}
.ws6b{word-spacing:18.570828px;}
.ws115{word-spacing:18.768576px;}
.ws141{word-spacing:18.770880px;}
.wsf7{word-spacing:18.771379px;}
.ws128{word-spacing:18.772896px;}
.ws145{word-spacing:18.774326px;}
.wsf4{word-spacing:18.775642px;}
.ws12c{word-spacing:18.829440px;}
.ws134{word-spacing:18.883238px;}
.ws62{word-spacing:20.591701px;}
.ws56{word-spacing:21.654864px;}
.ws57{word-spacing:21.702492px;}
.ws138{word-spacing:24.424474px;}
.ws111{word-spacing:25.554240px;}
.wsf2{word-spacing:28.728346px;}
.ws3{word-spacing:40.042186px;}
.ws29{word-spacing:1149.033377px;}
._1a{margin-left:-21.758270px;}
._19{margin-left:-20.414948px;}
._2{margin-left:-9.901872px;}
._23{margin-left:-8.544090px;}
._6{margin-left:-6.939994px;}
._1{margin-left:-5.917824px;}
._5{margin-left:-4.034880px;}
._3{margin-left:-2.240392px;}
._a{margin-left:-1.195512px;}
._9{width:1.091170px;}
._4{width:2.998595px;}
._28{width:9.516412px;}
._17{width:10.819384px;}
._20{width:12.301686px;}
._11{width:14.166817px;}
._f{width:15.217721px;}
._21{width:16.533950px;}
._7{width:17.861069px;}
._8{width:19.797811px;}
._c{width:21.041011px;}
._14{width:22.505540px;}
._d{width:23.970016px;}
._1c{width:25.583957px;}
._1f{width:27.317449px;}
._25{width:29.051136px;}
._b{width:30.366005px;}
._1e{width:32.099497px;}
._16{width:33.832990px;}
._29{width:35.291750px;}
._1d{width:36.343565px;}
._0{width:37.658880px;}
._13{width:39.631223px;}
._1b{width:40.807873px;}
._15{width:42.321125px;}
._e{width:45.309905px;}
._24{width:50.091953px;}
._12{width:57.085698px;}
._27{width:61.868160px;}
._22{width:2091.864751px;}
._26{width:2146.473300px;}
._18{width:2157.923638px;}
._10{width:2170.383300px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(53,87,176);}
.fsf{font-size:31.464000px;}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fsc{font-size:45.486000px;}
.fs9{font-size:46.922400px;}
.fs6{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fsd{font-size:51.300000px;}
.fsa{font-size:52.920000px;}
.fs5{font-size:53.798400px;}
.fse{font-size:57.114000px;}
.fsb{font-size:58.917600px;}
.fs1{font-size:59.775600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y54{bottom:-631.773219px;}
.y71{bottom:-595.608917px;}
.y70{bottom:-575.763996px;}
.y6f{bottom:-547.010735px;}
.y6e{bottom:-509.614261px;}
.y6d{bottom:-489.769340px;}
.y6c{bottom:-470.012796px;}
.y6b{bottom:-450.167876px;}
.ye7{bottom:-438.645923px;}
.y6a{bottom:-430.322955px;}
.y69{bottom:-410.478034px;}
.yfc{bottom:-404.530448px;}
.y68{bottom:-390.633114px;}
.yfb{bottom:-385.378696px;}
.y67{bottom:-370.788193px;}
.yfa{bottom:-366.141273px;}
.y66{bottom:-350.943272px;}
.yf9{bottom:-346.903850px;}
.y65{bottom:-331.186728px;}
.yf8{bottom:-327.666427px;}
.y64{bottom:-311.341808px;}
.yf7{bottom:-308.429004px;}
.y63{bottom:-291.496887px;}
.yf6{bottom:-289.191580px;}
.y62{bottom:-271.651966px;}
.yf5{bottom:-269.954157px;}
.y61{bottom:-251.807046px;}
.yf4{bottom:-250.802405px;}
.y60{bottom:-231.962125px;}
.yf3{bottom:-231.564982px;}
.y5f{bottom:-212.117204px;}
.yf2{bottom:-203.691923px;}
.y5e{bottom:-192.360660px;}
.y5d{bottom:-172.515740px;}
.yf1{bottom:-167.867423px;}
.y5c{bottom:-152.670819px;}
.yf0{bottom:-149.399850px;}
.yef{bottom:-130.845923px;}
.y5b{bottom:-115.627260px;}
.yee{bottom:-112.291995px;}
.y5a{bottom:-96.576060px;}
.yed{bottom:-93.823995px;}
.y59{bottom:-77.436219px;}
.yec{bottom:-75.184995px;}
.y58{bottom:-58.296378px;}
.yeb{bottom:-56.716995px;}
.y57{bottom:-39.245178px;}
.yea{bottom:-38.248995px;}
.y56{bottom:-20.018019px;}
.ye9{bottom:-19.610423px;}
.y0{bottom:0.000000px;}
.yf{bottom:3.425340px;}
.ye8{bottom:3.560078px;}
.y55{bottom:3.884181px;}
.ye{bottom:14.151273px;}
.y2{bottom:15.759303px;}
.y2f{bottom:63.780000px;}
.y165{bottom:108.957000px;}
.ybc{bottom:114.156000px;}
.y112{bottom:115.003500px;}
.y2e{bottom:117.745500px;}
.y164{bottom:128.325000px;}
.ybb{bottom:134.419500px;}
.y111{bottom:135.268500px;}
.y2d{bottom:138.010500px;}
.y163{bottom:147.691500px;}
.yba{bottom:154.683000px;}
.y110{bottom:155.532000px;}
.y2c{bottom:158.274000px;}
.y122{bottom:163.650000px;}
.y131{bottom:163.695000px;}
.y162{bottom:167.059500px;}
.y8a{bottom:174.882000px;}
.yb9{bottom:174.948000px;}
.y10f{bottom:175.795500px;}
.y2b{bottom:178.539000px;}
.ye4{bottom:180.657000px;}
.y130{bottom:183.063000px;}
.y121{bottom:183.913500px;}
.y161{bottom:186.427500px;}
.y89{bottom:195.147000px;}
.yb8{bottom:195.211500px;}
.y10e{bottom:196.060500px;}
.y2a{bottom:198.802500px;}
.ye3{bottom:200.920500px;}
.y12f{bottom:202.431000px;}
.y120{bottom:204.178500px;}
.y160{bottom:205.794000px;}
.y88{bottom:215.410500px;}
.yb7{bottom:215.476500px;}
.y10d{bottom:216.324000px;}
.y29{bottom:219.066000px;}
.ye2{bottom:221.184000px;}
.y12e{bottom:221.797500px;}
.y11f{bottom:224.442000px;}
.y15f{bottom:225.162000px;}
.y87{bottom:235.675500px;}
.yb6{bottom:235.740000px;}
.y10c{bottom:236.589000px;}
.y28{bottom:239.331000px;}
.y12d{bottom:241.165500px;}
.ye1{bottom:241.449000px;}
.y15e{bottom:244.528500px;}
.y11e{bottom:244.707000px;}
.y86{bottom:255.939000px;}
.yb5{bottom:256.003500px;}
.y10b{bottom:256.852500px;}
.y27{bottom:259.594500px;}
.y12c{bottom:260.532000px;}
.ye0{bottom:261.712500px;}
.y15d{bottom:263.896500px;}
.y11d{bottom:264.970500px;}
.y85{bottom:276.202500px;}
.yb4{bottom:276.268500px;}
.y10a{bottom:277.116000px;}
.y26{bottom:279.859500px;}
.y12b{bottom:279.900000px;}
.ydf{bottom:281.977500px;}
.y15c{bottom:283.264500px;}
.y11c{bottom:285.234000px;}
.y84{bottom:296.467500px;}
.yb3{bottom:296.532000px;}
.y109{bottom:297.381000px;}
.y12a{bottom:299.268000px;}
.y25{bottom:300.123000px;}
.yde{bottom:302.241000px;}
.y15b{bottom:302.631000px;}
.y11b{bottom:305.499000px;}
.y83{bottom:316.731000px;}
.yb2{bottom:316.797000px;}
.y24{bottom:320.386500px;}
.y15a{bottom:321.999000px;}
.ydd{bottom:322.504500px;}
.y11a{bottom:325.762500px;}
.y108{bottom:326.611500px;}
.y129{bottom:327.601500px;}
.y82{bottom:336.996000px;}
.yb1{bottom:337.060500px;}
.y23{bottom:340.651500px;}
.y159{bottom:341.367000px;}
.ydc{bottom:342.769500px;}
.y119{bottom:346.027500px;}
.y81{bottom:357.259500px;}
.yb0{bottom:357.324000px;}
.y107{bottom:358.234500px;}
.y158{bottom:360.733500px;}
.y22{bottom:360.915000px;}
.ydb{bottom:363.033000px;}
.y118{bottom:366.291000px;}
.y128{bottom:367.053000px;}
.y106{bottom:374.779500px;}
.y105{bottom:377.467500px;}
.y80{bottom:377.523000px;}
.yaf{bottom:377.589000px;}
.y157{bottom:380.101500px;}
.y21{bottom:381.180000px;}
.yda{bottom:383.298000px;}
.y117{bottom:386.554500px;}
.y127{bottom:391.218000px;}
.y104{bottom:396.700500px;}
.y7f{bottom:397.788000px;}
.yae{bottom:397.852500px;}
.y156{bottom:399.468000px;}
.y20{bottom:401.443500px;}
.yd9{bottom:403.561500px;}
.y126{bottom:406.416000px;}
.y168{bottom:406.657500px;}
.y116{bottom:406.819500px;}
.y103{bottom:415.932000px;}
.y7e{bottom:418.051500px;}
.yad{bottom:418.117500px;}
.y155{bottom:418.836000px;}
.y125{bottom:421.614000px;}
.y1f{bottom:421.707000px;}
.yd8{bottom:423.825000px;}
.y167{bottom:426.025500px;}
.y115{bottom:427.083000px;}
.y102{bottom:435.165000px;}
.y154{bottom:438.204000px;}
.y7d{bottom:438.316500px;}
.yac{bottom:438.381000px;}
.yd7{bottom:444.090000px;}
.y166{bottom:445.393500px;}
.y124{bottom:445.777500px;}
.y123{bottom:445.779000px;}
.y114{bottom:447.348000px;}
.y1e{bottom:450.937500px;}
.y101{bottom:451.711500px;}
.y53{bottom:452.910381px;}
.y100{bottom:454.398000px;}
.y153{bottom:457.570500px;}
.y7c{bottom:458.580000px;}
.yab{bottom:458.644500px;}
.yd6{bottom:464.353500px;}
.y113{bottom:467.611500px;}
.yff{bottom:473.631000px;}
.y152{bottom:476.938500px;}
.y7b{bottom:478.843500px;}
.ya9{bottom:478.909500px;}
.yaa{bottom:484.333500px;}
.yd5{bottom:484.618500px;}
.y51{bottom:487.875000px;}
.yfe{bottom:492.864000px;}
.y151{bottom:496.305000px;}
.y7a{bottom:499.108500px;}
.ya8{bottom:499.173000px;}
.yd4{bottom:504.882000px;}
.y50{bottom:508.140000px;}
.yfd{bottom:512.097000px;}
.y150{bottom:515.673000px;}
.y79{bottom:519.372000px;}
.ya7{bottom:519.438000px;}
.yd3{bottom:525.145500px;}
.y1d{bottom:525.642000px;}
.y4f{bottom:528.403500px;}
.ye5{bottom:534.526500px;}
.y14f{bottom:535.041000px;}
.y78{bottom:539.637000px;}
.ya6{bottom:539.701500px;}
.yd2{bottom:545.410500px;}
.y1c{bottom:545.907000px;}
.y4e{bottom:548.667000px;}
.y14e{bottom:554.407500px;}
.ya5{bottom:559.965000px;}
.yd1{bottom:565.674000px;}
.y4d{bottom:568.932000px;}
.y14d{bottom:573.775500px;}
.y77{bottom:574.636500px;}
.ya4{bottom:580.230000px;}
.y1b{bottom:584.103000px;}
.yd0{bottom:585.939000px;}
.y4c{bottom:589.195500px;}
.y14c{bottom:593.142000px;}
.y76{bottom:593.869500px;}
.ya3{bottom:600.493500px;}
.y1a{bottom:604.368000px;}
.ycf{bottom:606.202500px;}
.y4b{bottom:609.460500px;}
.y14b{bottom:612.510000px;}
.ye6{bottom:612.833077px;}
.y75{bottom:613.102500px;}
.ya2{bottom:620.758500px;}
.y19{bottom:624.631500px;}
.yce{bottom:626.466000px;}
.y4a{bottom:629.724000px;}
.y14a{bottom:631.878000px;}
.y74{bottom:632.335500px;}
.ya1{bottom:641.022000px;}
.y18{bottom:644.896500px;}
.ycd{bottom:646.731000px;}
.y49{bottom:649.987500px;}
.y149{bottom:651.244500px;}
.y73{bottom:651.568500px;}
.ya0{bottom:661.285500px;}
.y17{bottom:665.160000px;}
.ycc{bottom:666.994500px;}
.y48{bottom:670.252500px;}
.y148{bottom:670.612500px;}
.y72{bottom:670.801500px;}
.y9f{bottom:681.550500px;}
.y16{bottom:685.423500px;}
.ycb{bottom:687.258000px;}
.y147{bottom:689.979000px;}
.y47{bottom:690.516000px;}
.y52{bottom:693.229500px;}
.y9e{bottom:701.814000px;}
.y15{bottom:705.688500px;}
.yca{bottom:707.523000px;}
.y146{bottom:709.347000px;}
.y46{bottom:710.781000px;}
.y9d{bottom:722.077500px;}
.y14{bottom:725.952000px;}
.yc9{bottom:727.786500px;}
.y145{bottom:728.715000px;}
.y45{bottom:731.044500px;}
.y9c{bottom:742.342500px;}
.y13{bottom:746.217000px;}
.yc8{bottom:748.051500px;}
.y144{bottom:748.081500px;}
.y44{bottom:751.308000px;}
.y9b{bottom:762.606000px;}
.y12{bottom:766.480500px;}
.y143{bottom:767.449500px;}
.yc7{bottom:768.315000px;}
.y43{bottom:771.573000px;}
.y9a{bottom:782.871000px;}
.y11{bottom:786.744000px;}
.y142{bottom:786.816000px;}
.yc6{bottom:788.578500px;}
.y42{bottom:791.836500px;}
.y99{bottom:803.134500px;}
.y141{bottom:806.184000px;}
.y10{bottom:807.009000px;}
.yc5{bottom:808.843500px;}
.y41{bottom:812.101500px;}
.y98{bottom:823.398000px;}
.y140{bottom:825.552000px;}
.yc4{bottom:829.107000px;}
.y40{bottom:832.365000px;}
.yd{bottom:842.440555px;}
.yc{bottom:843.207000px;}
.y97{bottom:843.663000px;}
.y13f{bottom:844.918500px;}
.yc3{bottom:849.372000px;}
.y3f{bottom:852.628500px;}
.y96{bottom:863.926500px;}
.y13e{bottom:864.286500px;}
.yc2{bottom:869.635500px;}
.y3e{bottom:872.893500px;}
.yb{bottom:882.213000px;}
.y13d{bottom:883.653000px;}
.y95{bottom:884.191500px;}
.yc1{bottom:889.899000px;}
.y3d{bottom:893.157000px;}
.y13c{bottom:903.021000px;}
.y94{bottom:904.455000px;}
.ya{bottom:905.253000px;}
.yc0{bottom:910.164000px;}
.y3c{bottom:913.422000px;}
.y13b{bottom:922.389000px;}
.y9{bottom:923.409000px;}
.y93{bottom:924.718500px;}
.ybf{bottom:930.427500px;}
.y3b{bottom:933.685500px;}
.y13a{bottom:941.755500px;}
.y92{bottom:944.983500px;}
.y8{bottom:945.651000px;}
.ybe{bottom:950.692500px;}
.y3a{bottom:953.949000px;}
.y139{bottom:961.123500px;}
.y91{bottom:965.247000px;}
.y7{bottom:965.914500px;}
.y39{bottom:974.214000px;}
.ybd{bottom:979.923000px;}
.y138{bottom:980.490000px;}
.y90{bottom:985.512000px;}
.y38{bottom:994.477500px;}
.y137{bottom:999.858000px;}
.y8f{bottom:1005.775500px;}
.y6{bottom:1010.451000px;}
.y36{bottom:1014.742500px;}
.y136{bottom:1019.226000px;}
.y37{bottom:1020.166500px;}
.y8e{bottom:1026.039000px;}
.y35{bottom:1035.006000px;}
.y135{bottom:1038.592500px;}
.y5{bottom:1040.848500px;}
.y8d{bottom:1046.304000px;}
.y34{bottom:1055.269500px;}
.y134{bottom:1057.960500px;}
.y8c{bottom:1066.567500px;}
.y4{bottom:1071.244500px;}
.y33{bottom:1075.534500px;}
.y133{bottom:1077.327000px;}
.y8b{bottom:1086.832500px;}
.y32{bottom:1095.798000px;}
.y132{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y31{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y30{bottom:1168.366500px;}
.hb{height:25.508090px;}
.h9{height:30.461558px;}
.h12{height:33.072749px;}
.hd{height:33.112997px;}
.h1c{height:33.492621px;}
.h1d{height:34.191650px;}
.hc{height:34.199443px;}
.h14{height:34.550283px;}
.h11{height:35.052500px;}
.h15{height:35.271387px;}
.h20{height:37.447998px;}
.h21{height:37.449708px;}
.h26{height:37.551283px;}
.h1f{height:37.773633px;}
.h27{height:37.927872px;}
.h24{height:38.412058px;}
.h18{height:38.630566px;}
.h1a{height:38.734848px;}
.h17{height:38.966484px;}
.ha{height:39.165235px;}
.h25{height:39.434227px;}
.h22{height:41.692104px;}
.h10{height:41.723369px;}
.h1e{height:42.054645px;}
.h16{height:43.008697px;}
.he{height:43.038432px;}
.h19{height:43.382686px;}
.hf{height:43.516637px;}
.h23{height:43.576412px;}
.h4{height:43.815515px;}
.h2{height:50.930649px;}
.h8{height:54.405312px;}
.h7{height:54.411312px;}
.h5{height:77.469696px;}
.h6{height:78.438067px;}
.h3{height:102.503837px;}
.h13{height:437.779230px;}
.h1b{height:596.483625px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:127.319063px;}
.w5{width:638.528250px;}
.w4{width:659.270598px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3e{left:4.978008px;}
.x6{left:29.274117px;}
.x8c{left:34.532025px;}
.x40{left:36.200808px;}
.x2{left:58.056593px;}
.x1{left:114.802500px;}
.x3d{left:116.823882px;}
.x4{left:122.110500px;}
.x3{left:123.307500px;}
.x8a{left:127.194000px;}
.x9{left:146.692500px;}
.x91{left:150.817500px;}
.x92{left:161.281500px;}
.xb8{left:164.974500px;}
.xa0{left:167.007000px;}
.xb3{left:172.509000px;}
.xb2{left:175.152000px;}
.x33{left:178.717500px;}
.xa1{left:181.950000px;}
.x37{left:184.894500px;}
.x7{left:188.401500px;}
.x34{left:193.662000px;}
.xab{left:197.419500px;}
.x38{left:199.837500px;}
.x35{left:200.985000px;}
.x7c{left:202.399500px;}
.x8{left:204.220500px;}
.x39{left:207.160500px;}
.x3b{left:211.473000px;}
.x8d{left:214.168500px;}
.x36{left:215.928000px;}
.x7d{left:217.342500px;}
.x62{left:218.638500px;}
.x3a{left:222.105000px;}
.x1f{left:223.990500px;}
.x3c{left:226.416000px;}
.x20{left:231.463500px;}
.x63{left:233.583000px;}
.x27{left:245.703000px;}
.x93{left:249.211500px;}
.xb6{left:252.105000px;}
.xc7{left:253.657500px;}
.xb1{left:254.922000px;}
.x94{left:258.183000px;}
.x28{left:260.646000px;}
.xc6{left:267.238500px;}
.x51{left:283.017000px;}
.xa2{left:286.062000px;}
.x6f{left:291.288000px;}
.x86{left:293.421000px;}
.x12{left:297.307500px;}
.xa3{left:301.005000px;}
.x73{left:302.587500px;}
.x5e{left:306.003000px;}
.x87{left:308.364000px;}
.x74{left:317.532000px;}
.x5f{left:320.947500px;}
.xa9{left:327.235500px;}
.xc{left:334.591500px;}
.x64{left:336.267000px;}
.x65{left:340.077000px;}
.xd{left:344.491500px;}
.x13{left:345.544500px;}
.x4d{left:349.143000px;}
.x66{left:355.021500px;}
.x67{left:358.831500px;}
.x70{left:359.914500px;}
.x4e{left:364.086000px;}
.xb7{left:368.874000px;}
.x68{left:373.776000px;}
.x9b{left:375.652500px;}
.x71{left:378.669000px;}
.x43{left:380.311500px;}
.x5c{left:386.763000px;}
.x78{left:387.961500px;}
.x69{left:390.447000px;}
.x44{left:395.256000px;}
.x5d{left:396.663000px;}
.x23{left:400.432500px;}
.x45{left:402.579000px;}
.x6a{left:405.391500px;}
.x24{left:415.377000px;}
.x46{left:417.522000px;}
.x9c{left:420.012000px;}
.x47{left:421.183500px;}
.x29{left:422.794500px;}
.x9d{left:434.956500px;}
.x48{left:436.128000px;}
.x2a{left:437.739000px;}
.x2b{left:441.516000px;}
.x25{left:449.385000px;}
.x6d{left:450.664500px;}
.x2c{left:456.459000px;}
.x2d{left:460.236000px;}
.x26{left:464.328000px;}
.x6e{left:465.609000px;}
.x49{left:468.502500px;}
.x75{left:469.933500px;}
.x2e{left:475.180500px;}
.xba{left:476.181000px;}
.x88{left:477.567000px;}
.xbf{left:478.761000px;}
.x4a{left:483.447000px;}
.x76{left:484.876500px;}
.x4b{left:487.209000px;}
.x77{left:489.216000px;}
.x89{left:492.510000px;}
.xa5{left:493.710000px;}
.x97{left:497.127000px;}
.xa4{left:499.785000px;}
.x4c{left:502.152000px;}
.x99{left:506.197500px;}
.xa6{left:508.653000px;}
.xaa{left:509.673000px;}
.x52{left:520.908000px;}
.x9a{left:524.952000px;}
.x98{left:530.218500px;}
.x53{left:535.852500px;}
.x54{left:539.532000px;}
.x84{left:543.192000px;}
.x55{left:554.476500px;}
.x56{left:558.156000px;}
.xac{left:562.824000px;}
.x2f{left:565.566000px;}
.xb9{left:566.569500px;}
.x1d{left:567.790500px;}
.x8e{left:569.056500px;}
.x57{left:573.100500px;}
.x58{left:576.780000px;}
.x30{left:580.509000px;}
.x1e{left:585.325500px;}
.x31{left:588.064500px;}
.x59{left:591.724500px;}
.xc2{left:594.553500px;}
.xad{left:596.410500px;}
.xbd{left:600.546000px;}
.x32{left:603.007500px;}
.x60{left:610.974000px;}
.x5a{left:616.932000px;}
.xe{left:620.329500px;}
.x18{left:621.759000px;}
.x61{left:625.917000px;}
.xbe{left:627.445500px;}
.xf{left:630.229500px;}
.x5b{left:631.876500px;}
.x19{left:632.949000px;}
.x8b{left:634.827383px;}
.x95{left:636.466500px;}
.x1a{left:640.420500px;}
.x82{left:646.428000px;}
.xb0{left:647.739000px;}
.x3f{left:655.452861px;}
.x10{left:661.137000px;}
.xbc{left:665.209500px;}
.x8f{left:666.513000px;}
.x11{left:668.608500px;}
.x96{left:672.913500px;}
.x90{left:675.484500px;}
.x9e{left:677.130000px;}
.xc5{left:680.358000px;}
.x85{left:681.630000px;}
.x83{left:683.644500px;}
.xa7{left:685.186500px;}
.x1b{left:688.432500px;}
.x14{left:690.000000px;}
.xae{left:692.206500px;}
.x79{left:693.745500px;}
.xc1{left:696.111000px;}
.x15{left:697.471500px;}
.xa8{left:700.129500px;}
.x5{left:701.339982px;}
.xbb{left:702.937500px;}
.x16{left:705.093000px;}
.xaf{left:707.151000px;}
.x7a{left:708.690000px;}
.xc4{left:711.051000px;}
.x17{left:712.564500px;}
.x9f{left:717.405000px;}
.xc3{left:720.897000px;}
.x72{left:724.896000px;}
.xb4{left:728.943000px;}
.x7e{left:733.065000px;}
.x4f{left:734.230500px;}
.xa{left:736.255500px;}
.x41{left:738.477000px;}
.x7b{left:741.895500px;}
.xb{left:743.727000px;}
.x7f{left:748.008000px;}
.x50{left:749.173500px;}
.x80{left:751.819500px;}
.x42{left:753.420000px;}
.xb5{left:755.841000px;}
.x21{left:756.991500px;}
.x6b{left:758.170500px;}
.xc0{left:760.042500px;}
.x81{left:766.762500px;}
.x22{left:771.934500px;}
.x6c{left:773.113500px;}
.x1c{left:776.914500px;}
@media print{
.v2{vertical-align:-17.354667pt;}
.v3{vertical-align:-9.941333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls64{letter-spacing:-0.305520pt;}
.ls66{letter-spacing:-0.287280pt;}
.ls65{letter-spacing:-0.255360pt;}
.ls39{letter-spacing:-0.209485pt;}
.ls37{letter-spacing:-0.125691pt;}
.ls73{letter-spacing:-0.121843pt;}
.ls34{letter-spacing:-0.120454pt;}
.ls74{letter-spacing:-0.116766pt;}
.ls35{letter-spacing:-0.109980pt;}
.ls6b{letter-spacing:-0.101536pt;}
.ls27{letter-spacing:-0.079247pt;}
.ls38{letter-spacing:-0.078557pt;}
.ls62{letter-spacing:-0.076821pt;}
.ls6d{letter-spacing:-0.076152pt;}
.ls32{letter-spacing:-0.073320pt;}
.ls33{letter-spacing:-0.068083pt;}
.ls36{letter-spacing:-0.062845pt;}
.ls71{letter-spacing:-0.060922pt;}
.ls2f{letter-spacing:-0.057608pt;}
.ls70{letter-spacing:-0.055845pt;}
.ls3a{letter-spacing:-0.052371pt;}
.ls2a{letter-spacing:-0.041897pt;}
.ls68{letter-spacing:-0.041040pt;}
.ls2e{letter-spacing:-0.036660pt;}
.ls31{letter-spacing:-0.031423pt;}
.ls6a{letter-spacing:-0.027360pt;}
.ls2b{letter-spacing:-0.026186pt;}
.ls6e{letter-spacing:-0.020307pt;}
.ls69{letter-spacing:-0.018240pt;}
.ls75{letter-spacing:-0.015230pt;}
.ls2c{letter-spacing:-0.010474pt;}
.ls28{letter-spacing:-0.009408pt;}
.ls63{letter-spacing:-0.009120pt;}
.ls30{letter-spacing:-0.005237pt;}
.ls6c{letter-spacing:-0.005077pt;}
.ls29{letter-spacing:-0.004704pt;}
.ls67{letter-spacing:-0.004560pt;}
.lsd{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000002pt;}
.ls8{letter-spacing:0.000081pt;}
.ls5d{letter-spacing:0.000176pt;}
.ls61{letter-spacing:0.000243pt;}
.ls60{letter-spacing:0.000325pt;}
.ls7e{letter-spacing:0.000374pt;}
.ls5e{letter-spacing:0.000491pt;}
.ls95{letter-spacing:0.000589pt;}
.ls5a{letter-spacing:0.000600pt;}
.ls90{letter-spacing:0.000711pt;}
.ls3d{letter-spacing:0.000765pt;}
.ls7d{letter-spacing:0.000830pt;}
.ls5b{letter-spacing:0.000921pt;}
.ls7c{letter-spacing:0.001002pt;}
.ls5f{letter-spacing:0.001061pt;}
.lsf{letter-spacing:0.001067pt;}
.ls7{letter-spacing:0.001089pt;}
.ls7f{letter-spacing:0.001349pt;}
.ls3f{letter-spacing:0.001399pt;}
.ls11{letter-spacing:0.001487pt;}
.lsa{letter-spacing:0.001576pt;}
.ls41{letter-spacing:0.001680pt;}
.ls26{letter-spacing:0.001759pt;}
.ls84{letter-spacing:0.002078pt;}
.ls59{letter-spacing:0.002099pt;}
.ls58{letter-spacing:0.002117pt;}
.ls79{letter-spacing:0.002227pt;}
.ls86{letter-spacing:0.002517pt;}
.ls4{letter-spacing:0.002551pt;}
.ls25{letter-spacing:0.002630pt;}
.ls6{letter-spacing:0.002868pt;}
.ls24{letter-spacing:0.002966pt;}
.lsc{letter-spacing:0.003100pt;}
.ls9{letter-spacing:0.003106pt;}
.ls7b{letter-spacing:0.003268pt;}
.ls5c{letter-spacing:0.003430pt;}
.ls40{letter-spacing:0.003866pt;}
.ls85{letter-spacing:0.004267pt;}
.ls76{letter-spacing:0.004320pt;}
.ls50{letter-spacing:0.004560pt;}
.ls78{letter-spacing:0.004660pt;}
.ls3c{letter-spacing:0.004813pt;}
.ls23{letter-spacing:0.005002pt;}
.ls20{letter-spacing:0.005237pt;}
.ls4b{letter-spacing:0.009120pt;}
.ls53{letter-spacing:0.013680pt;}
.ls18{letter-spacing:0.014112pt;}
.ls55{letter-spacing:0.015230pt;}
.ls45{letter-spacing:0.016173pt;}
.ls14{letter-spacing:0.016684pt;}
.ls4a{letter-spacing:0.018240pt;}
.ls47{letter-spacing:0.022800pt;}
.ls16{letter-spacing:0.023520pt;}
.ls57{letter-spacing:0.025384pt;}
.ls1c{letter-spacing:0.026186pt;}
.ls19{letter-spacing:0.028224pt;}
.ls1b{letter-spacing:0.031423pt;}
.ls51{letter-spacing:0.031920pt;}
.ls4e{letter-spacing:0.036358pt;}
.ls49{letter-spacing:0.036480pt;}
.ls1f{letter-spacing:0.036660pt;}
.ls17{letter-spacing:0.037632pt;}
.ls56{letter-spacing:0.040614pt;}
.ls4c{letter-spacing:0.041040pt;}
.ls1d{letter-spacing:0.041897pt;}
.ls1a{letter-spacing:0.042336pt;}
.ls52{letter-spacing:0.045600pt;}
.ls54{letter-spacing:0.045691pt;}
.ls4d{letter-spacing:0.050160pt;}
.ls1e{letter-spacing:0.052371pt;}
.ls43{letter-spacing:0.052562pt;}
.ls12{letter-spacing:0.054221pt;}
.ls4f{letter-spacing:0.054720pt;}
.ls72{letter-spacing:0.055845pt;}
.ls21{letter-spacing:0.068083pt;}
.ls6f{letter-spacing:0.076152pt;}
.ls48{letter-spacing:0.091200pt;}
.ls46{letter-spacing:0.145555pt;}
.ls15{letter-spacing:0.150152pt;}
.ls44{letter-spacing:0.153642pt;}
.ls13{letter-spacing:0.158493pt;}
.ls22{letter-spacing:0.476425pt;}
.ls8a{letter-spacing:0.478097pt;}
.lse{letter-spacing:1.133683pt;}
.ls5{letter-spacing:1.654338pt;}
.ls1{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.665203pt;}
.lsb{letter-spacing:10.626533pt;}
.ls7a{letter-spacing:10.815348pt;}
.ls8d{letter-spacing:10.842079pt;}
.ls83{letter-spacing:11.757218pt;}
.ls91{letter-spacing:11.880125pt;}
.ls8c{letter-spacing:11.882620pt;}
.ls8e{letter-spacing:11.921888pt;}
.ls93{letter-spacing:11.938133pt;}
.ls92{letter-spacing:11.938346pt;}
.ls81{letter-spacing:11.954133pt;}
.ls82{letter-spacing:11.959467pt;}
.ls94{letter-spacing:11.983405pt;}
.ls96{letter-spacing:11.999147pt;}
.ls88{letter-spacing:12.082359pt;}
.ls8b{letter-spacing:12.212822pt;}
.ls98{letter-spacing:12.216054pt;}
.ls42{letter-spacing:13.017797pt;}
.ls77{letter-spacing:13.283467pt;}
.ls3e{letter-spacing:13.283733pt;}
.ls8f{letter-spacing:13.948068pt;}
.ls99{letter-spacing:14.016042pt;}
.ls89{letter-spacing:14.361140pt;}
.ls87{letter-spacing:14.737297pt;}
.ls80{letter-spacing:15.548068pt;}
.ls97{letter-spacing:15.887937pt;}
.ls3b{letter-spacing:16.279932pt;}
.ls2d{letter-spacing:18.267075pt;}
.ls2{letter-spacing:62.432533pt;}
.ls3{letter-spacing:64.314231pt;}
.ws1{word-spacing:-23.910400pt;}
.ws10{word-spacing:-15.461955pt;}
.ws43{word-spacing:-13.915853pt;}
.ws11{word-spacing:-13.283467pt;}
.ws4{word-spacing:-12.760670pt;}
.ws2a{word-spacing:-12.369595pt;}
.ws45{word-spacing:-11.955200pt;}
.wse0{word-spacing:-11.751123pt;}
.ws9e{word-spacing:-11.400000pt;}
.wsa7{word-spacing:-10.823338pt;}
.ws27{word-spacing:-10.626800pt;}
.ws3f{word-spacing:-10.585693pt;}
.ws9d{word-spacing:-10.261642pt;}
.ws7{word-spacing:-10.095467pt;}
.wsa6{word-spacing:-9.298400pt;}
.ws9f{word-spacing:-6.992000pt;}
.ws39{word-spacing:-4.622646pt;}
.ws135{word-spacing:-4.399514pt;}
.ws48{word-spacing:-3.878772pt;}
.ws49{word-spacing:-3.825638pt;}
.wsb{word-spacing:-3.719371pt;}
.wsef{word-spacing:-3.634381pt;}
.wsf0{word-spacing:-3.443098pt;}
.ws4b{word-spacing:-3.347434pt;}
.ws94{word-spacing:-3.241166pt;}
.wsa8{word-spacing:-2.917069pt;}
.ws42{word-spacing:-2.869248pt;}
.ws13b{word-spacing:-2.821427pt;}
.wse5{word-spacing:-2.550426pt;}
.ws4c{word-spacing:-2.497292pt;}
.wse2{word-spacing:-2.444158pt;}
.wsa9{word-spacing:-2.438861pt;}
.wsaa{word-spacing:-2.391040pt;}
.ws3d{word-spacing:-2.391024pt;}
.ws46{word-spacing:-2.231622pt;}
.wsdf{word-spacing:-2.178489pt;}
.ws75{word-spacing:-2.152456pt;}
.wscf{word-spacing:-2.051027pt;}
.ws76{word-spacing:-2.037240pt;}
.wsd8{word-spacing:-2.035797pt;}
.wsd0{word-spacing:-1.974875pt;}
.ws30{word-spacing:-1.859685pt;}
.wse4{word-spacing:-1.806551pt;}
.ws65{word-spacing:-1.770147pt;}
.ws66{word-spacing:-1.728250pt;}
.wsa{word-spacing:-1.696326pt;}
.ws13c{word-spacing:-1.578086pt;}
.ws61{word-spacing:-1.513528pt;}
.ws60{word-spacing:-1.476868pt;}
.ws12a{word-spacing:-1.434624pt;}
.ws15{word-spacing:-1.381481pt;}
.wsdc{word-spacing:-1.275213pt;}
.ws9{word-spacing:-1.175671pt;}
.wsd7{word-spacing:-1.162587pt;}
.wsac{word-spacing:-1.147699pt;}
.ws3b{word-spacing:-1.115811pt;}
.ws10e{word-spacing:-1.099878pt;}
.ws3c{word-spacing:-1.062677pt;}
.ws101{word-spacing:-0.956416pt;}
.wse6{word-spacing:-0.956410pt;}
.ws87{word-spacing:-0.903276pt;}
.wse1{word-spacing:-0.850142pt;}
.ws93{word-spacing:-0.797008pt;}
.ws117{word-spacing:-0.765133pt;}
.ws25{word-spacing:-0.743874pt;}
.wsd6{word-spacing:-0.720906pt;}
.ws2f{word-spacing:-0.690740pt;}
.ws113{word-spacing:-0.669491pt;}
.ws9c{word-spacing:-0.637606pt;}
.wsdd{word-spacing:-0.584473pt;}
.ws2d{word-spacing:-0.531339pt;}
.ws155{word-spacing:-0.526029pt;}
.ws133{word-spacing:-0.430387pt;}
.ws92{word-spacing:-0.425071pt;}
.ws132{word-spacing:-0.382566pt;}
.ws147{word-spacing:-0.334746pt;}
.ws13{word-spacing:-0.318803pt;}
.wsf5{word-spacing:-0.286925pt;}
.wsc8{word-spacing:-0.274147pt;}
.ws17{word-spacing:-0.265669pt;}
.ws10b{word-spacing:-0.239104pt;}
.ws50{word-spacing:-0.229398pt;}
.wsb3{word-spacing:-0.222376pt;}
.ws21{word-spacing:-0.212535pt;}
.wsfc{word-spacing:-0.191283pt;}
.ws38{word-spacing:-0.159402pt;}
.wsfa{word-spacing:-0.143462pt;}
.ws16{word-spacing:-0.106268pt;}
.ws4f{word-spacing:-0.095930pt;}
.ws2{word-spacing:-0.095642pt;}
.wsb2{word-spacing:-0.092994pt;}
.ws1f{word-spacing:-0.053134pt;}
.ws44{word-spacing:-0.047821pt;}
.ws28{word-spacing:-0.042507pt;}
.wsad{word-spacing:-0.037194pt;}
.ws8{word-spacing:-0.013244pt;}
.ws14b{word-spacing:-0.002867pt;}
.ws95{word-spacing:-0.001770pt;}
.ws6{word-spacing:-0.000214pt;}
.ws0{word-spacing:0.000000pt;}
.ws7d{word-spacing:0.010474pt;}
.wsd4{word-spacing:0.020307pt;}
.ws6e{word-spacing:0.026186pt;}
.ws40{word-spacing:0.047821pt;}
.wsf{word-spacing:0.053134pt;}
.wsca{word-spacing:0.060922pt;}
.wscb{word-spacing:0.081229pt;}
.ws41{word-spacing:0.095642pt;}
.wsc1{word-spacing:0.095760pt;}
.ws1c{word-spacing:0.106268pt;}
.ws5b{word-spacing:0.117600pt;}
.ws10d{word-spacing:0.143462pt;}
.wsc2{word-spacing:0.145920pt;}
.ws7c{word-spacing:0.146639pt;}
.wscc{word-spacing:0.152304pt;}
.ws4a{word-spacing:0.159402pt;}
.wsc0{word-spacing:0.159600pt;}
.wsc6{word-spacing:0.168720pt;}
.wsc9{word-spacing:0.177688pt;}
.wsc7{word-spacing:0.177840pt;}
.wsa5{word-spacing:0.191283pt;}
.wsd5{word-spacing:0.197995pt;}
.ws12{word-spacing:0.212535pt;}
.ws11c{word-spacing:0.239104pt;}
.ws4e{word-spacing:0.265669pt;}
.ws13a{word-spacing:0.286925pt;}
.wsc{word-spacing:0.318803pt;}
.ws156{word-spacing:0.334746pt;}
.ws8a{word-spacing:0.371937pt;}
.wsa2{word-spacing:0.382566pt;}
.ws86{word-spacing:0.425071pt;}
.ws52{word-spacing:0.432768pt;}
.ws51{word-spacing:0.446880pt;}
.ws53{word-spacing:0.456288pt;}
.ws89{word-spacing:0.478205pt;}
.ws5{word-spacing:0.494387pt;}
.ws3a{word-spacing:0.531339pt;}
.ws2b{word-spacing:0.584473pt;}
.wse8{word-spacing:0.637606pt;}
.ws108{word-spacing:0.669491pt;}
.ws5c{word-spacing:0.675588pt;}
.ws5d{word-spacing:0.748908pt;}
.ws146{word-spacing:0.765133pt;}
.wsea{word-spacing:0.850142pt;}
.ws10c{word-spacing:0.860774pt;}
.ws143{word-spacing:0.908595pt;}
.ws9a{word-spacing:0.956410pt;}
.wsfd{word-spacing:0.956416pt;}
.ws81{word-spacing:0.995053pt;}
.ws151{word-spacing:1.004237pt;}
.ws80{word-spacing:1.063135pt;}
.ws47{word-spacing:1.115811pt;}
.ws83{word-spacing:1.168945pt;}
.ws85{word-spacing:1.222079pt;}
.ws79{word-spacing:1.340703pt;}
.ws32{word-spacing:1.434614pt;}
.ws8f{word-spacing:1.487748pt;}
.ws137{word-spacing:1.530266pt;}
.wsae{word-spacing:1.540882pt;}
.wse3{word-spacing:1.594016pt;}
.ws157{word-spacing:1.625907pt;}
.wsbb{word-spacing:1.632480pt;}
.wsb8{word-spacing:1.637040pt;}
.wsb9{word-spacing:1.655280pt;}
.wsba{word-spacing:1.664400pt;}
.ws20{word-spacing:1.753418pt;}
.ws91{word-spacing:1.806551pt;}
.ws110{word-spacing:1.865011pt;}
.ws7b{word-spacing:1.953446pt;}
.wsd2{word-spacing:1.954568pt;}
.wsd3{word-spacing:1.959645pt;}
.wsde{word-spacing:1.965953pt;}
.ws139{word-spacing:2.008474pt;}
.ws55{word-spacing:2.008608pt;}
.ws54{word-spacing:2.046240pt;}
.ws118{word-spacing:2.056294pt;}
.wsed{word-spacing:2.072221pt;}
.wsd1{word-spacing:2.127179pt;}
.ws7a{word-spacing:2.168168pt;}
.ws2c{word-spacing:2.231622pt;}
.ws125{word-spacing:2.295398pt;}
.ws8c{word-spacing:2.337890pt;}
.ws8d{word-spacing:2.366180pt;}
.ws112{word-spacing:2.391040pt;}
.wsa3{word-spacing:2.438861pt;}
.wsb0{word-spacing:2.444158pt;}
.ws14d{word-spacing:2.534502pt;}
.ws35{word-spacing:2.550426pt;}
.wse{word-spacing:2.603559pt;}
.wsab{word-spacing:2.630144pt;}
.ws130{word-spacing:2.725786pt;}
.wseb{word-spacing:2.762961pt;}
.ws10f{word-spacing:2.773606pt;}
.wsdb{word-spacing:2.787163pt;}
.wsec{word-spacing:2.816095pt;}
.wsf1{word-spacing:2.821427pt;}
.ws8e{word-spacing:2.869229pt;}
.ws12e{word-spacing:2.917069pt;}
.ws1d{word-spacing:3.028630pt;}
.ws14c{word-spacing:3.108352pt;}
.ws11e{word-spacing:3.156173pt;}
.ws90{word-spacing:3.188032pt;}
.ws3e{word-spacing:3.241166pt;}
.ws131{word-spacing:3.251814pt;}
.ws71{word-spacing:3.252252pt;}
.ws58{word-spacing:3.255168pt;}
.ws120{word-spacing:3.299635pt;}
.ws136{word-spacing:3.347456pt;}
.ws124{word-spacing:3.395277pt;}
.ws72{word-spacing:3.493159pt;}
.ws19{word-spacing:3.559969pt;}
.wsf3{word-spacing:3.586560pt;}
.ws36{word-spacing:3.666237pt;}
.ws37{word-spacing:3.719371pt;}
.wsb4{word-spacing:3.775680pt;}
.ws67{word-spacing:3.802149pt;}
.wsb5{word-spacing:3.807600pt;}
.ws23{word-spacing:3.985040pt;}
.wsb7{word-spacing:4.053840pt;}
.ws11b{word-spacing:4.064768pt;}
.wsc3{word-spacing:4.072080pt;}
.wsb6{word-spacing:4.104000pt;}
.ws74{word-spacing:4.116376pt;}
.ws14{word-spacing:4.144442pt;}
.ws73{word-spacing:4.278727pt;}
.wsce{word-spacing:4.289896pt;}
.ws9b{word-spacing:4.303843pt;}
.wscd{word-spacing:4.350818pt;}
.ws8b{word-spacing:4.410111pt;}
.ws11a{word-spacing:4.495155pt;}
.ws6d{word-spacing:4.530109pt;}
.ws82{word-spacing:4.622646pt;}
.ws88{word-spacing:4.728914pt;}
.ws154{word-spacing:4.779025pt;}
.ws144{word-spacing:4.780527pt;}
.ws119{word-spacing:4.780663pt;}
.wsf8{word-spacing:4.782080pt;}
.ws109{word-spacing:4.783761pt;}
.wsf9{word-spacing:4.785067pt;}
.ws104{word-spacing:4.829901pt;}
.wse9{word-spacing:4.888316pt;}
.ws6c{word-spacing:4.891470pt;}
.ws24{word-spacing:4.941450pt;}
.wsc4{word-spacing:4.970400pt;}
.wsc5{word-spacing:5.002320pt;}
.ws22{word-spacing:5.047717pt;}
.ws69{word-spacing:5.053821pt;}
.wsa4{word-spacing:5.069005pt;}
.wsee{word-spacing:5.153985pt;}
.ws68{word-spacing:5.163800pt;}
.ws97{word-spacing:5.207119pt;}
.ws105{word-spacing:5.260288pt;}
.ws1a{word-spacing:5.313387pt;}
.ws152{word-spacing:5.403750pt;}
.ws31{word-spacing:5.419654pt;}
.ws18{word-spacing:5.525922pt;}
.ws34{word-spacing:5.685324pt;}
.ws84{word-spacing:5.738458pt;}
.wsd9{word-spacing:5.828166pt;}
.wsda{word-spacing:5.853550pt;}
.wsbf{word-spacing:5.891520pt;}
.ws5f{word-spacing:6.006977pt;}
.ws12d{word-spacing:6.025421pt;}
.ws5e{word-spacing:6.064585pt;}
.ws33{word-spacing:6.163529pt;}
.wsff{word-spacing:6.168883pt;}
.ws4d{word-spacing:6.269796pt;}
.ws1b{word-spacing:6.376064pt;}
.ws129{word-spacing:6.599270pt;}
.ws98{word-spacing:6.641733pt;}
.ws127{word-spacing:6.647091pt;}
.ws140{word-spacing:6.694912pt;}
.ws99{word-spacing:6.801135pt;}
.ws7f{word-spacing:6.949658pt;}
.wse7{word-spacing:7.013670pt;}
.ws7e{word-spacing:7.028215pt;}
.ws1e{word-spacing:7.066804pt;}
.ws142{word-spacing:7.077478pt;}
.wsd{word-spacing:7.598143pt;}
.ws122{word-spacing:7.651328pt;}
.ws77{word-spacing:7.929000pt;}
.ws150{word-spacing:7.938253pt;}
.ws78{word-spacing:8.038979pt;}
.ws153{word-spacing:8.129536pt;}
.wsa1{word-spacing:8.225178pt;}
.wsaf{word-spacing:8.501419pt;}
.ws121{word-spacing:8.512102pt;}
.wsa0{word-spacing:8.607744pt;}
.wsbc{word-spacing:8.613840pt;}
.wsbd{word-spacing:8.668560pt;}
.wsbe{word-spacing:8.705040pt;}
.ws59{word-spacing:8.895264pt;}
.ws5a{word-spacing:8.899968pt;}
.ws14a{word-spacing:9.707622pt;}
.ws103{word-spacing:10.233651pt;}
.ws12b{word-spacing:10.472755pt;}
.ws2e{word-spacing:10.573639pt;}
.ws26{word-spacing:10.585919pt;}
.ws102{word-spacing:10.998784pt;}
.wsf6{word-spacing:11.620454pt;}
.ws123{word-spacing:11.811738pt;}
.ws13f{word-spacing:11.859558pt;}
.ws126{word-spacing:11.900715pt;}
.ws14e{word-spacing:11.900928pt;}
.ws10a{word-spacing:11.901551pt;}
.ws100{word-spacing:11.902891pt;}
.ws106{word-spacing:11.903036pt;}
.ws116{word-spacing:11.903232pt;}
.ws149{word-spacing:11.903633pt;}
.ws114{word-spacing:11.904435pt;}
.ws148{word-spacing:11.905050pt;}
.wsfb{word-spacing:11.905374pt;}
.wsfe{word-spacing:11.907379pt;}
.ws13d{word-spacing:11.955200pt;}
.ws12f{word-spacing:12.003021pt;}
.ws107{word-spacing:12.098662pt;}
.ws11d{word-spacing:12.146483pt;}
.ws14f{word-spacing:12.194304pt;}
.ws13e{word-spacing:12.815974pt;}
.ws6f{word-spacing:12.940924pt;}
.ws70{word-spacing:12.946161pt;}
.ws11f{word-spacing:13.102899pt;}
.wsb1{word-spacing:13.124065pt;}
.ws96{word-spacing:13.231133pt;}
.ws158{word-spacing:13.485466pt;}
.ws64{word-spacing:16.392186pt;}
.ws6a{word-spacing:16.418371pt;}
.ws63{word-spacing:16.444557pt;}
.ws6b{word-spacing:16.507402pt;}
.ws115{word-spacing:16.683179pt;}
.ws141{word-spacing:16.685227pt;}
.wsf7{word-spacing:16.685670pt;}
.ws128{word-spacing:16.687019pt;}
.ws145{word-spacing:16.688290pt;}
.wsf4{word-spacing:16.689459pt;}
.ws12c{word-spacing:16.737280pt;}
.ws134{word-spacing:16.785101pt;}
.ws62{word-spacing:18.303734pt;}
.ws56{word-spacing:19.248768pt;}
.ws57{word-spacing:19.291104pt;}
.ws138{word-spacing:21.710643pt;}
.ws111{word-spacing:22.714880pt;}
.wsf2{word-spacing:25.536307pt;}
.ws3{word-spacing:35.593054pt;}
.ws29{word-spacing:1021.363002pt;}
._1a{margin-left:-19.340684pt;}
._19{margin-left:-18.146621pt;}
._2{margin-left:-8.801664pt;}
._23{margin-left:-7.594747pt;}
._6{margin-left:-6.168883pt;}
._1{margin-left:-5.260288pt;}
._5{margin-left:-3.586560pt;}
._3{margin-left:-1.991459pt;}
._a{margin-left:-1.062677pt;}
._9{width:0.969929pt;}
._4{width:2.665418pt;}
._28{width:8.459033pt;}
._17{width:9.617230pt;}
._20{width:10.934832pt;}
._11{width:12.592726pt;}
._f{width:13.526863pt;}
._21{width:14.696845pt;}
._7{width:15.876506pt;}
._8{width:17.598054pt;}
._c{width:18.703121pt;}
._14{width:20.004925pt;}
._d{width:21.306681pt;}
._1c{width:22.741295pt;}
._1f{width:24.282177pt;}
._25{width:25.823232pt;}
._b{width:26.992004pt;}
._1e{width:28.532886pt;}
._16{width:30.073769pt;}
._29{width:31.370445pt;}
._1d{width:32.305391pt;}
._0{width:33.474560pt;}
._13{width:35.227754pt;}
._1b{width:36.273665pt;}
._15{width:37.618778pt;}
._e{width:40.275471pt;}
._24{width:44.526180pt;}
._12{width:50.742843pt;}
._27{width:54.993920pt;}
._22{width:1859.435334pt;}
._26{width:1907.976267pt;}
._18{width:1918.154345pt;}
._10{width:1929.229600pt;}
.fsf{font-size:27.968000pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fsc{font-size:40.432000pt;}
.fs9{font-size:41.708800pt;}
.fs6{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fsd{font-size:45.600000pt;}
.fsa{font-size:47.040000pt;}
.fs5{font-size:47.820800pt;}
.fse{font-size:50.768000pt;}
.fsb{font-size:52.371200pt;}
.fs1{font-size:53.133867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y54{bottom:-561.576195pt;}
.y71{bottom:-529.430148pt;}
.y70{bottom:-511.790219pt;}
.y6f{bottom:-486.231764pt;}
.y6e{bottom:-452.990454pt;}
.y6d{bottom:-435.350525pt;}
.y6c{bottom:-417.789152pt;}
.y6b{bottom:-400.149223pt;}
.ye7{bottom:-389.907487pt;}
.y6a{bottom:-382.509293pt;}
.y69{bottom:-364.869364pt;}
.yfc{bottom:-359.582620pt;}
.y68{bottom:-347.229434pt;}
.yfb{bottom:-342.558841pt;}
.y67{bottom:-329.589505pt;}
.yfa{bottom:-325.458909pt;}
.y66{bottom:-311.949575pt;}
.yf9{bottom:-308.358977pt;}
.y65{bottom:-294.388203pt;}
.yf8{bottom:-291.259046pt;}
.y64{bottom:-276.748273pt;}
.yf7{bottom:-274.159114pt;}
.y63{bottom:-259.108344pt;}
.yf6{bottom:-257.059183pt;}
.y62{bottom:-241.468415pt;}
.yf5{bottom:-239.959251pt;}
.y61{bottom:-223.828485pt;}
.yf4{bottom:-222.935471pt;}
.y60{bottom:-206.188556pt;}
.yf3{bottom:-205.835540pt;}
.y5f{bottom:-188.548626pt;}
.yf2{bottom:-181.059487pt;}
.y5e{bottom:-170.987254pt;}
.y5d{bottom:-153.347324pt;}
.yf1{bottom:-149.215487pt;}
.y5c{bottom:-135.707395pt;}
.yf0{bottom:-132.799867pt;}
.yef{bottom:-116.307487pt;}
.y5b{bottom:-102.779787pt;}
.yee{bottom:-99.815107pt;}
.y5a{bottom:-85.845387pt;}
.yed{bottom:-83.399107pt;}
.y59{bottom:-68.832195pt;}
.yec{bottom:-66.831107pt;}
.y58{bottom:-51.819003pt;}
.yeb{bottom:-50.415107pt;}
.y57{bottom:-34.884603pt;}
.yea{bottom:-33.999107pt;}
.y56{bottom:-17.793795pt;}
.ye9{bottom:-17.431487pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:3.044747pt;}
.ye8{bottom:3.164513pt;}
.y55{bottom:3.452605pt;}
.ye{bottom:12.578910pt;}
.y2{bottom:14.008270pt;}
.y2f{bottom:56.693333pt;}
.y165{bottom:96.850667pt;}
.ybc{bottom:101.472000pt;}
.y112{bottom:102.225333pt;}
.y2e{bottom:104.662667pt;}
.y164{bottom:114.066667pt;}
.ybb{bottom:119.484000pt;}
.y111{bottom:120.238667pt;}
.y2d{bottom:122.676000pt;}
.y163{bottom:131.281333pt;}
.yba{bottom:137.496000pt;}
.y110{bottom:138.250667pt;}
.y2c{bottom:140.688000pt;}
.y122{bottom:145.466667pt;}
.y131{bottom:145.506667pt;}
.y162{bottom:148.497333pt;}
.y8a{bottom:155.450667pt;}
.yb9{bottom:155.509333pt;}
.y10f{bottom:156.262667pt;}
.y2b{bottom:158.701333pt;}
.ye4{bottom:160.584000pt;}
.y130{bottom:162.722667pt;}
.y121{bottom:163.478667pt;}
.y161{bottom:165.713333pt;}
.y89{bottom:173.464000pt;}
.yb8{bottom:173.521333pt;}
.y10e{bottom:174.276000pt;}
.y2a{bottom:176.713333pt;}
.ye3{bottom:178.596000pt;}
.y12f{bottom:179.938667pt;}
.y120{bottom:181.492000pt;}
.y160{bottom:182.928000pt;}
.y88{bottom:191.476000pt;}
.yb7{bottom:191.534667pt;}
.y10d{bottom:192.288000pt;}
.y29{bottom:194.725333pt;}
.ye2{bottom:196.608000pt;}
.y12e{bottom:197.153333pt;}
.y11f{bottom:199.504000pt;}
.y15f{bottom:200.144000pt;}
.y87{bottom:209.489333pt;}
.yb6{bottom:209.546667pt;}
.y10c{bottom:210.301333pt;}
.y28{bottom:212.738667pt;}
.y12d{bottom:214.369333pt;}
.ye1{bottom:214.621333pt;}
.y15e{bottom:217.358667pt;}
.y11e{bottom:217.517333pt;}
.y86{bottom:227.501333pt;}
.yb5{bottom:227.558667pt;}
.y10b{bottom:228.313333pt;}
.y27{bottom:230.750667pt;}
.y12c{bottom:231.584000pt;}
.ye0{bottom:232.633333pt;}
.y15d{bottom:234.574667pt;}
.y11d{bottom:235.529333pt;}
.y85{bottom:245.513333pt;}
.yb4{bottom:245.572000pt;}
.y10a{bottom:246.325333pt;}
.y26{bottom:248.764000pt;}
.y12b{bottom:248.800000pt;}
.ydf{bottom:250.646667pt;}
.y15c{bottom:251.790667pt;}
.y11c{bottom:253.541333pt;}
.y84{bottom:263.526667pt;}
.yb3{bottom:263.584000pt;}
.y109{bottom:264.338667pt;}
.y12a{bottom:266.016000pt;}
.y25{bottom:266.776000pt;}
.yde{bottom:268.658667pt;}
.y15b{bottom:269.005333pt;}
.y11b{bottom:271.554667pt;}
.y83{bottom:281.538667pt;}
.yb2{bottom:281.597333pt;}
.y24{bottom:284.788000pt;}
.y15a{bottom:286.221333pt;}
.ydd{bottom:286.670667pt;}
.y11a{bottom:289.566667pt;}
.y108{bottom:290.321333pt;}
.y129{bottom:291.201333pt;}
.y82{bottom:299.552000pt;}
.yb1{bottom:299.609333pt;}
.y23{bottom:302.801333pt;}
.y159{bottom:303.437333pt;}
.ydc{bottom:304.684000pt;}
.y119{bottom:307.580000pt;}
.y81{bottom:317.564000pt;}
.yb0{bottom:317.621333pt;}
.y107{bottom:318.430667pt;}
.y158{bottom:320.652000pt;}
.y22{bottom:320.813333pt;}
.ydb{bottom:322.696000pt;}
.y118{bottom:325.592000pt;}
.y128{bottom:326.269333pt;}
.y106{bottom:333.137333pt;}
.y105{bottom:335.526667pt;}
.y80{bottom:335.576000pt;}
.yaf{bottom:335.634667pt;}
.y157{bottom:337.868000pt;}
.y21{bottom:338.826667pt;}
.yda{bottom:340.709333pt;}
.y117{bottom:343.604000pt;}
.y127{bottom:347.749333pt;}
.y104{bottom:352.622667pt;}
.y7f{bottom:353.589333pt;}
.yae{bottom:353.646667pt;}
.y156{bottom:355.082667pt;}
.y20{bottom:356.838667pt;}
.yd9{bottom:358.721333pt;}
.y126{bottom:361.258667pt;}
.y168{bottom:361.473333pt;}
.y116{bottom:361.617333pt;}
.y103{bottom:369.717333pt;}
.y7e{bottom:371.601333pt;}
.yad{bottom:371.660000pt;}
.y155{bottom:372.298667pt;}
.y125{bottom:374.768000pt;}
.y1f{bottom:374.850667pt;}
.yd8{bottom:376.733333pt;}
.y167{bottom:378.689333pt;}
.y115{bottom:379.629333pt;}
.y102{bottom:386.813333pt;}
.y154{bottom:389.514667pt;}
.y7d{bottom:389.614667pt;}
.yac{bottom:389.672000pt;}
.yd7{bottom:394.746667pt;}
.y166{bottom:395.905333pt;}
.y124{bottom:396.246667pt;}
.y123{bottom:396.248000pt;}
.y114{bottom:397.642667pt;}
.y1e{bottom:400.833333pt;}
.y101{bottom:401.521333pt;}
.y53{bottom:402.587005pt;}
.y100{bottom:403.909333pt;}
.y153{bottom:406.729333pt;}
.y7c{bottom:407.626667pt;}
.yab{bottom:407.684000pt;}
.yd6{bottom:412.758667pt;}
.y113{bottom:415.654667pt;}
.yff{bottom:421.005333pt;}
.y152{bottom:423.945333pt;}
.y7b{bottom:425.638667pt;}
.ya9{bottom:425.697333pt;}
.yaa{bottom:430.518667pt;}
.yd5{bottom:430.772000pt;}
.y51{bottom:433.666667pt;}
.yfe{bottom:438.101333pt;}
.y151{bottom:441.160000pt;}
.y7a{bottom:443.652000pt;}
.ya8{bottom:443.709333pt;}
.yd4{bottom:448.784000pt;}
.y50{bottom:451.680000pt;}
.yfd{bottom:455.197333pt;}
.y150{bottom:458.376000pt;}
.y79{bottom:461.664000pt;}
.ya7{bottom:461.722667pt;}
.yd3{bottom:466.796000pt;}
.y1d{bottom:467.237333pt;}
.y4f{bottom:469.692000pt;}
.ye5{bottom:475.134667pt;}
.y14f{bottom:475.592000pt;}
.y78{bottom:479.677333pt;}
.ya6{bottom:479.734667pt;}
.yd2{bottom:484.809333pt;}
.y1c{bottom:485.250667pt;}
.y4e{bottom:487.704000pt;}
.y14e{bottom:492.806667pt;}
.ya5{bottom:497.746667pt;}
.yd1{bottom:502.821333pt;}
.y4d{bottom:505.717333pt;}
.y14d{bottom:510.022667pt;}
.y77{bottom:510.788000pt;}
.ya4{bottom:515.760000pt;}
.y1b{bottom:519.202667pt;}
.yd0{bottom:520.834667pt;}
.y4c{bottom:523.729333pt;}
.y14c{bottom:527.237333pt;}
.y76{bottom:527.884000pt;}
.ya3{bottom:533.772000pt;}
.y1a{bottom:537.216000pt;}
.ycf{bottom:538.846667pt;}
.y4b{bottom:541.742667pt;}
.y14b{bottom:544.453333pt;}
.ye6{bottom:544.740513pt;}
.y75{bottom:544.980000pt;}
.ya2{bottom:551.785333pt;}
.y19{bottom:555.228000pt;}
.yce{bottom:556.858667pt;}
.y4a{bottom:559.754667pt;}
.y14a{bottom:561.669333pt;}
.y74{bottom:562.076000pt;}
.ya1{bottom:569.797333pt;}
.y18{bottom:573.241333pt;}
.ycd{bottom:574.872000pt;}
.y49{bottom:577.766667pt;}
.y149{bottom:578.884000pt;}
.y73{bottom:579.172000pt;}
.ya0{bottom:587.809333pt;}
.y17{bottom:591.253333pt;}
.ycc{bottom:592.884000pt;}
.y48{bottom:595.780000pt;}
.y148{bottom:596.100000pt;}
.y72{bottom:596.268000pt;}
.y9f{bottom:605.822667pt;}
.y16{bottom:609.265333pt;}
.ycb{bottom:610.896000pt;}
.y147{bottom:613.314667pt;}
.y47{bottom:613.792000pt;}
.y52{bottom:616.204000pt;}
.y9e{bottom:623.834667pt;}
.y15{bottom:627.278667pt;}
.yca{bottom:628.909333pt;}
.y146{bottom:630.530667pt;}
.y46{bottom:631.805333pt;}
.y9d{bottom:641.846667pt;}
.y14{bottom:645.290667pt;}
.yc9{bottom:646.921333pt;}
.y145{bottom:647.746667pt;}
.y45{bottom:649.817333pt;}
.y9c{bottom:659.860000pt;}
.y13{bottom:663.304000pt;}
.yc8{bottom:664.934667pt;}
.y144{bottom:664.961333pt;}
.y44{bottom:667.829333pt;}
.y9b{bottom:677.872000pt;}
.y12{bottom:681.316000pt;}
.y143{bottom:682.177333pt;}
.yc7{bottom:682.946667pt;}
.y43{bottom:685.842667pt;}
.y9a{bottom:695.885333pt;}
.y11{bottom:699.328000pt;}
.y142{bottom:699.392000pt;}
.yc6{bottom:700.958667pt;}
.y42{bottom:703.854667pt;}
.y99{bottom:713.897333pt;}
.y141{bottom:716.608000pt;}
.y10{bottom:717.341333pt;}
.yc5{bottom:718.972000pt;}
.y41{bottom:721.868000pt;}
.y98{bottom:731.909333pt;}
.y140{bottom:733.824000pt;}
.yc4{bottom:736.984000pt;}
.y40{bottom:739.880000pt;}
.yd{bottom:748.836048pt;}
.yc{bottom:749.517333pt;}
.y97{bottom:749.922667pt;}
.y13f{bottom:751.038667pt;}
.yc3{bottom:754.997333pt;}
.y3f{bottom:757.892000pt;}
.y96{bottom:767.934667pt;}
.y13e{bottom:768.254667pt;}
.yc2{bottom:773.009333pt;}
.y3e{bottom:775.905333pt;}
.yb{bottom:784.189333pt;}
.y13d{bottom:785.469333pt;}
.y95{bottom:785.948000pt;}
.yc1{bottom:791.021333pt;}
.y3d{bottom:793.917333pt;}
.y13c{bottom:802.685333pt;}
.y94{bottom:803.960000pt;}
.ya{bottom:804.669333pt;}
.yc0{bottom:809.034667pt;}
.y3c{bottom:811.930667pt;}
.y13b{bottom:819.901333pt;}
.y9{bottom:820.808000pt;}
.y93{bottom:821.972000pt;}
.ybf{bottom:827.046667pt;}
.y3b{bottom:829.942667pt;}
.y13a{bottom:837.116000pt;}
.y92{bottom:839.985333pt;}
.y8{bottom:840.578667pt;}
.ybe{bottom:845.060000pt;}
.y3a{bottom:847.954667pt;}
.y139{bottom:854.332000pt;}
.y91{bottom:857.997333pt;}
.y7{bottom:858.590667pt;}
.y39{bottom:865.968000pt;}
.ybd{bottom:871.042667pt;}
.y138{bottom:871.546667pt;}
.y90{bottom:876.010667pt;}
.y38{bottom:883.980000pt;}
.y137{bottom:888.762667pt;}
.y8f{bottom:894.022667pt;}
.y6{bottom:898.178667pt;}
.y36{bottom:901.993333pt;}
.y136{bottom:905.978667pt;}
.y37{bottom:906.814667pt;}
.y8e{bottom:912.034667pt;}
.y35{bottom:920.005333pt;}
.y135{bottom:923.193333pt;}
.y5{bottom:925.198667pt;}
.y8d{bottom:930.048000pt;}
.y34{bottom:938.017333pt;}
.y134{bottom:940.409333pt;}
.y8c{bottom:948.060000pt;}
.y4{bottom:952.217333pt;}
.y33{bottom:956.030667pt;}
.y133{bottom:957.624000pt;}
.y8b{bottom:966.073333pt;}
.y32{bottom:974.042667pt;}
.y132{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y31{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y30{bottom:1038.548000pt;}
.hb{height:22.673858pt;}
.h9{height:27.076941pt;}
.h12{height:29.397999pt;}
.hd{height:29.433775pt;}
.h1c{height:29.771219pt;}
.h1d{height:30.392578pt;}
.hc{height:30.399505pt;}
.h14{height:30.711362pt;}
.h11{height:31.157778pt;}
.h15{height:31.352344pt;}
.h20{height:33.287109pt;}
.h21{height:33.288629pt;}
.h26{height:33.378918pt;}
.h1f{height:33.576563pt;}
.h27{height:33.713664pt;}
.h24{height:34.144051pt;}
.h18{height:34.338281pt;}
.h1a{height:34.430976pt;}
.h17{height:34.636875pt;}
.ha{height:34.813542pt;}
.h25{height:35.052646pt;}
.h22{height:37.059648pt;}
.h10{height:37.087439pt;}
.h1e{height:37.381906pt;}
.h16{height:38.229953pt;}
.he{height:38.256384pt;}
.h19{height:38.562387pt;}
.hf{height:38.681455pt;}
.h23{height:38.734589pt;}
.h4{height:38.947124pt;}
.h2{height:45.271688pt;}
.h8{height:48.360277pt;}
.h7{height:48.365611pt;}
.h5{height:68.861952pt;}
.h6{height:69.722726pt;}
.h3{height:91.114522pt;}
.h13{height:389.137093pt;}
.h1b{height:530.207667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:113.172501pt;}
.w5{width:567.580667pt;}
.w4{width:586.018309pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3e{left:4.424896pt;}
.x6{left:26.021437pt;}
.x8c{left:30.695133pt;}
.x40{left:32.178496pt;}
.x2{left:51.605861pt;}
.x1{left:102.046667pt;}
.x3d{left:103.843451pt;}
.x4{left:108.542667pt;}
.x3{left:109.606667pt;}
.x8a{left:113.061333pt;}
.x9{left:130.393333pt;}
.x91{left:134.060000pt;}
.x92{left:143.361333pt;}
.xb8{left:146.644000pt;}
.xa0{left:148.450667pt;}
.xb3{left:153.341333pt;}
.xb2{left:155.690667pt;}
.x33{left:158.860000pt;}
.xa1{left:161.733333pt;}
.x37{left:164.350667pt;}
.x7{left:167.468000pt;}
.x34{left:172.144000pt;}
.xab{left:175.484000pt;}
.x38{left:177.633333pt;}
.x35{left:178.653333pt;}
.x7c{left:179.910667pt;}
.x8{left:181.529333pt;}
.x39{left:184.142667pt;}
.x3b{left:187.976000pt;}
.x8d{left:190.372000pt;}
.x36{left:191.936000pt;}
.x7d{left:193.193333pt;}
.x62{left:194.345333pt;}
.x3a{left:197.426667pt;}
.x1f{left:199.102667pt;}
.x3c{left:201.258667pt;}
.x20{left:205.745333pt;}
.x63{left:207.629333pt;}
.x27{left:218.402667pt;}
.x93{left:221.521333pt;}
.xb6{left:224.093333pt;}
.xc7{left:225.473333pt;}
.xb1{left:226.597333pt;}
.x94{left:229.496000pt;}
.x28{left:231.685333pt;}
.xc6{left:237.545333pt;}
.x51{left:251.570667pt;}
.xa2{left:254.277333pt;}
.x6f{left:258.922667pt;}
.x86{left:260.818667pt;}
.x12{left:264.273333pt;}
.xa3{left:267.560000pt;}
.x73{left:268.966667pt;}
.x5e{left:272.002667pt;}
.x87{left:274.101333pt;}
.x74{left:282.250667pt;}
.x5f{left:285.286667pt;}
.xa9{left:290.876000pt;}
.xc{left:297.414667pt;}
.x64{left:298.904000pt;}
.x65{left:302.290667pt;}
.xd{left:306.214667pt;}
.x13{left:307.150667pt;}
.x4d{left:310.349333pt;}
.x66{left:315.574667pt;}
.x67{left:318.961333pt;}
.x70{left:319.924000pt;}
.x4e{left:323.632000pt;}
.xb7{left:327.888000pt;}
.x68{left:332.245333pt;}
.x9b{left:333.913333pt;}
.x71{left:336.594667pt;}
.x43{left:338.054667pt;}
.x5c{left:343.789333pt;}
.x78{left:344.854667pt;}
.x69{left:347.064000pt;}
.x44{left:351.338667pt;}
.x5d{left:352.589333pt;}
.x23{left:355.940000pt;}
.x45{left:357.848000pt;}
.x6a{left:360.348000pt;}
.x24{left:369.224000pt;}
.x46{left:371.130667pt;}
.x9c{left:373.344000pt;}
.x47{left:374.385333pt;}
.x29{left:375.817333pt;}
.x9d{left:386.628000pt;}
.x48{left:387.669333pt;}
.x2a{left:389.101333pt;}
.x2b{left:392.458667pt;}
.x25{left:399.453333pt;}
.x6d{left:400.590667pt;}
.x2c{left:405.741333pt;}
.x2d{left:409.098667pt;}
.x26{left:412.736000pt;}
.x6e{left:413.874667pt;}
.x49{left:416.446667pt;}
.x75{left:417.718667pt;}
.x2e{left:422.382667pt;}
.xba{left:423.272000pt;}
.x88{left:424.504000pt;}
.xbf{left:425.565333pt;}
.x4a{left:429.730667pt;}
.x76{left:431.001333pt;}
.x4b{left:433.074667pt;}
.x77{left:434.858667pt;}
.x89{left:437.786667pt;}
.xa5{left:438.853333pt;}
.x97{left:441.890667pt;}
.xa4{left:444.253333pt;}
.x4c{left:446.357333pt;}
.x99{left:449.953333pt;}
.xa6{left:452.136000pt;}
.xaa{left:453.042667pt;}
.x52{left:463.029333pt;}
.x9a{left:466.624000pt;}
.x98{left:471.305333pt;}
.x53{left:476.313333pt;}
.x54{left:479.584000pt;}
.x84{left:482.837333pt;}
.x55{left:492.868000pt;}
.x56{left:496.138667pt;}
.xac{left:500.288000pt;}
.x2f{left:502.725333pt;}
.xb9{left:503.617333pt;}
.x1d{left:504.702667pt;}
.x8e{left:505.828000pt;}
.x57{left:509.422667pt;}
.x58{left:512.693333pt;}
.x30{left:516.008000pt;}
.x1e{left:520.289333pt;}
.x31{left:522.724000pt;}
.x59{left:525.977333pt;}
.xc2{left:528.492000pt;}
.xad{left:530.142667pt;}
.xbd{left:533.818667pt;}
.x32{left:536.006667pt;}
.x60{left:543.088000pt;}
.x5a{left:548.384000pt;}
.xe{left:551.404000pt;}
.x18{left:552.674667pt;}
.x61{left:556.370667pt;}
.xbe{left:557.729333pt;}
.xf{left:560.204000pt;}
.x5b{left:561.668000pt;}
.x19{left:562.621333pt;}
.x8b{left:564.291007pt;}
.x95{left:565.748000pt;}
.x1a{left:569.262667pt;}
.x82{left:574.602667pt;}
.xb0{left:575.768000pt;}
.x3f{left:582.624765pt;}
.x10{left:587.677333pt;}
.xbc{left:591.297333pt;}
.x8f{left:592.456000pt;}
.x11{left:594.318667pt;}
.x96{left:598.145333pt;}
.x90{left:600.430667pt;}
.x9e{left:601.893333pt;}
.xc5{left:604.762667pt;}
.x85{left:605.893333pt;}
.x83{left:607.684000pt;}
.xa7{left:609.054667pt;}
.x1b{left:611.940000pt;}
.x14{left:613.333333pt;}
.xae{left:615.294667pt;}
.x79{left:616.662667pt;}
.xc1{left:618.765333pt;}
.x15{left:619.974667pt;}
.xa8{left:622.337333pt;}
.x5{left:623.413317pt;}
.xbb{left:624.833333pt;}
.x16{left:626.749333pt;}
.xaf{left:628.578667pt;}
.x7a{left:629.946667pt;}
.xc4{left:632.045333pt;}
.x17{left:633.390667pt;}
.x9f{left:637.693333pt;}
.xc3{left:640.797333pt;}
.x72{left:644.352000pt;}
.xb4{left:647.949333pt;}
.x7e{left:651.613333pt;}
.x4f{left:652.649333pt;}
.xa{left:654.449333pt;}
.x41{left:656.424000pt;}
.x7b{left:659.462667pt;}
.xb{left:661.090667pt;}
.x7f{left:664.896000pt;}
.x50{left:665.932000pt;}
.x80{left:668.284000pt;}
.x42{left:669.706667pt;}
.xb5{left:671.858667pt;}
.x21{left:672.881333pt;}
.x6b{left:673.929333pt;}
.xc0{left:675.593333pt;}
.x81{left:681.566667pt;}
.x22{left:686.164000pt;}
.x6c{left:687.212000pt;}
.x1c{left:690.590667pt;}
}




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