
    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_5919dd3fce4187a41bda48ab.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_b317f97ab72823910588a97d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6413b2440a96337365df7a48.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.191000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d0144cc28da53161eadd8145.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1ebda8ae2fd1225a7157067a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c936ba60190886c6ed81a9f4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9aaccf8bcaa13b0f45430313.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d36de6e155413b78bb23b74c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d8f2f4095b18b43d52ea4337.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.211426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_0d1a0530d6dbd920d33078a2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.738770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_487a57501fedf6e639eb2264.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.752441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_06dddccc985d5df770db9eb4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.740000;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_84ce06a2a9428453e33b9c81.woff2')format("woff");}.fff{font-family:fff;line-height:0.040000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_7b102f8408fcb5a804b1b14a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.m9{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);}
.m5{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);}
.m16{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);}
.m25{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);}
.m18{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);}
.m20{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);}
.m10{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);}
.m13{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.m8{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);}
.ma{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);}
.m3{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);}
.mb{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);}
.m2c{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);}
.m7{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);}
.m26{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m14{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);}
.m19{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);}
.m1e{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.m2b{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);}
.m22{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);}
.m12{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);}
.m15{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);}
.md{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);}
.m1d{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);}
.m1f{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);}
.m24{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);}
.me{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);}
.m1c{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);}
.mc{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);}
.m1a{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:28.392000px;}
.v2{vertical-align:56.784000px;}
.ls57{letter-spacing:-1.641276px;}
.ls77{letter-spacing:-1.539000px;}
.ls55{letter-spacing:-1.280556px;}
.ls5b{letter-spacing:-0.468936px;}
.ls65{letter-spacing:-0.444888px;}
.ls4f{letter-spacing:-0.408816px;}
.ls76{letter-spacing:-0.351000px;}
.ls68{letter-spacing:-0.348696px;}
.ls63{letter-spacing:-0.318636px;}
.ls7f{letter-spacing:-0.252504px;}
.ls6f{letter-spacing:-0.226800px;}
.ls66{letter-spacing:-0.222444px;}
.ls78{letter-spacing:-0.210600px;}
.ls52{letter-spacing:-0.210420px;}
.ls5d{letter-spacing:-0.204408px;}
.ls75{letter-spacing:-0.199800px;}
.ls7c{letter-spacing:-0.192384px;}
.ls56{letter-spacing:-0.180360px;}
.ls53{letter-spacing:-0.168336px;}
.ls4e{letter-spacing:-0.138276px;}
.ls58{letter-spacing:-0.132264px;}
.ls51{letter-spacing:-0.126252px;}
.ls7a{letter-spacing:-0.114228px;}
.ls60{letter-spacing:-0.108216px;}
.ls5e{letter-spacing:-0.102204px;}
.ls4a{letter-spacing:-0.096192px;}
.ls61{letter-spacing:-0.078156px;}
.ls47{letter-spacing:-0.076608px;}
.ls59{letter-spacing:-0.072144px;}
.ls64{letter-spacing:-0.066132px;}
.ls69{letter-spacing:-0.060120px;}
.ls7e{letter-spacing:-0.054108px;}
.ls73{letter-spacing:-0.048600px;}
.ls54{letter-spacing:-0.048096px;}
.ls72{letter-spacing:-0.043200px;}
.ls67{letter-spacing:-0.042084px;}
.ls6c{letter-spacing:-0.037800px;}
.ls6a{letter-spacing:-0.036072px;}
.ls6d{letter-spacing:-0.032400px;}
.ls50{letter-spacing:-0.030060px;}
.ls45{letter-spacing:-0.028728px;}
.ls5f{letter-spacing:-0.024048px;}
.ls4c{letter-spacing:-0.018036px;}
.ls62{letter-spacing:-0.012024px;}
.ls6b{letter-spacing:-0.010800px;}
.ls4b{letter-spacing:-0.006012px;}
.ls0{letter-spacing:0.000000px;}
.ls89{letter-spacing:0.000121px;}
.ls88{letter-spacing:0.000800px;}
.ls8a{letter-spacing:0.001303px;}
.ls15{letter-spacing:0.006012px;}
.ls3a{letter-spacing:0.010800px;}
.ls42{letter-spacing:0.012024px;}
.ls18{letter-spacing:0.018036px;}
.ls1b{letter-spacing:0.024048px;}
.ls36{letter-spacing:0.027000px;}
.ls27{letter-spacing:0.030060px;}
.ls71{letter-spacing:0.032400px;}
.ls13{letter-spacing:0.036072px;}
.ls3b{letter-spacing:0.037800px;}
.ls40{letter-spacing:0.042084px;}
.ls33{letter-spacing:0.043200px;}
.ls74{letter-spacing:0.054000px;}
.ls2f{letter-spacing:0.054108px;}
.ls35{letter-spacing:0.059400px;}
.ls29{letter-spacing:0.060120px;}
.ls70{letter-spacing:0.064800px;}
.ls16{letter-spacing:0.066132px;}
.ls38{letter-spacing:0.070200px;}
.ls19{letter-spacing:0.072144px;}
.ls79{letter-spacing:0.075600px;}
.ls1d{letter-spacing:0.078156px;}
.ls3e{letter-spacing:0.081000px;}
.ls2e{letter-spacing:0.084168px;}
.ls6e{letter-spacing:0.086400px;}
.ls7b{letter-spacing:0.090180px;}
.ls3d{letter-spacing:0.091800px;}
.ls1c{letter-spacing:0.096192px;}
.ls11{letter-spacing:0.100548px;}
.ls5a{letter-spacing:0.102204px;}
.ls37{letter-spacing:0.102600px;}
.ls4d{letter-spacing:0.120240px;}
.ls24{letter-spacing:0.126252px;}
.ls7d{letter-spacing:0.132264px;}
.ls3c{letter-spacing:0.135000px;}
.ls10{letter-spacing:0.143640px;}
.ls25{letter-spacing:0.150300px;}
.ls49{letter-spacing:0.153216px;}
.ls3f{letter-spacing:0.183600px;}
.lsf{letter-spacing:0.191520px;}
.ls20{letter-spacing:0.192384px;}
.ls5c{letter-spacing:0.198396px;}
.ls46{letter-spacing:0.406980px;}
.ls48{letter-spacing:0.430920px;}
.ls21{letter-spacing:0.456912px;}
.ls82{letter-spacing:0.572693px;}
.ls83{letter-spacing:0.578693px;}
.ls85{letter-spacing:0.717483px;}
.ls23{letter-spacing:0.817632px;}
.ls22{letter-spacing:1.178352px;}
.ls2d{letter-spacing:1.492109px;}
.ls2c{letter-spacing:1.539072px;}
.ls34{letter-spacing:2.349000px;}
.ls32{letter-spacing:2.705400px;}
.ls31{letter-spacing:3.067200px;}
.ls30{letter-spacing:3.429000px;}
.ls2b{letter-spacing:3.697380px;}
.ls39{letter-spacing:3.785400px;}
.ls2a{letter-spacing:4.058100px;}
.ls28{letter-spacing:5.494968px;}
.ls26{letter-spacing:5.500980px;}
.ls1e{letter-spacing:5.855688px;}
.ls1f{letter-spacing:6.216408px;}
.ls14{letter-spacing:10.178316px;}
.ls17{letter-spacing:10.539036px;}
.ls1a{letter-spacing:10.899756px;}
.ls41{letter-spacing:11.260476px;}
.ls84{letter-spacing:11.711375px;}
.ls5{letter-spacing:11.954850px;}
.ls44{letter-spacing:13.449600px;}
.ls43{letter-spacing:13.503398px;}
.lsb{letter-spacing:14.166817px;}
.lsc{letter-spacing:14.645022px;}
.lsa{letter-spacing:14.704798px;}
.ls9{letter-spacing:14.764573px;}
.ls80{letter-spacing:14.824349px;}
.ls6{letter-spacing:14.943900px;}
.ls3{letter-spacing:15.003676px;}
.ls4{letter-spacing:15.242778px;}
.ls86{letter-spacing:15.780758px;}
.ls87{letter-spacing:17.753353px;}
.lse{letter-spacing:17.932680px;}
.lsd{letter-spacing:18.171782px;}
.ls2{letter-spacing:18.709763px;}
.ls7{letter-spacing:18.948865px;}
.ls8{letter-spacing:19.008641px;}
.ls81{letter-spacing:20.323704px;}
.ls1{letter-spacing:28.453654px;}
.ls12{letter-spacing:2128.754376px;}
.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;}
}
.ws8e{word-spacing:-60.120000px;}
.wsbe{word-spacing:-54.000000px;}
.wsbf{word-spacing:-53.800200px;}
.ws72{word-spacing:-47.880000px;}
.wsb{word-spacing:-22.718660px;}
.ws21{word-spacing:-14.943900px;}
.ws11d{word-spacing:-13.449600px;}
.ws29{word-spacing:-11.955150px;}
.wsa{word-spacing:-10.460700px;}
.ws60{word-spacing:-2.929004px;}
.wsd2{word-spacing:-2.869229px;}
.ws25{word-spacing:-2.331248px;}
.ws16{word-spacing:-2.313331px;}
.ws133{word-spacing:-2.259533px;}
.wsdb{word-spacing:-2.151922px;}
.ws107{word-spacing:-2.092146px;}
.wsce{word-spacing:-2.032370px;}
.ws55{word-spacing:-1.912819px;}
.ws2e{word-spacing:-1.853044px;}
.ws67{word-spacing:-1.733492px;}
.ws64{word-spacing:-1.673717px;}
.ws105{word-spacing:-1.613941px;}
.wsfa{word-spacing:-1.554166px;}
.ws146{word-spacing:-1.506355px;}
.ws10c{word-spacing:-1.434614px;}
.ws5c{word-spacing:-1.374839px;}
.ws127{word-spacing:-1.344960px;}
.wse6{word-spacing:-1.315063px;}
.ws126{word-spacing:-1.291162px;}
.ws48{word-spacing:-1.255288px;}
.ws18{word-spacing:-1.237363px;}
.wse0{word-spacing:-1.195512px;}
.ws6c{word-spacing:-1.075961px;}
.ws56{word-spacing:-0.956410px;}
.ws54{word-spacing:-0.896634px;}
.ws57{word-spacing:-0.777083px;}
.ws58{word-spacing:-0.717307px;}
.ws14c{word-spacing:-0.699379px;}
.ws33{word-spacing:-0.657532px;}
.ws34{word-spacing:-0.597756px;}
.ws12d{word-spacing:-0.537984px;}
.ws66{word-spacing:-0.537980px;}
.ws12c{word-spacing:-0.484186px;}
.ws78{word-spacing:-0.478800px;}
.ws24{word-spacing:-0.478205px;}
.ws73{word-spacing:-0.454860px;}
.ws13{word-spacing:-0.430387px;}
.ws52{word-spacing:-0.418429px;}
.ws3b{word-spacing:-0.358654px;}
.ws131{word-spacing:-0.322790px;}
.ws2f{word-spacing:-0.298878px;}
.ws135{word-spacing:-0.268992px;}
.ws97{word-spacing:-0.258516px;}
.ws7d{word-spacing:-0.252504px;}
.ws74{word-spacing:-0.239400px;}
.ws1e{word-spacing:-0.239102px;}
.ws132{word-spacing:-0.215194px;}
.wsa0{word-spacing:-0.210420px;}
.ws79{word-spacing:-0.201096px;}
.wsca{word-spacing:-0.192384px;}
.wsf6{word-spacing:-0.191282px;}
.wsa3{word-spacing:-0.186372px;}
.ws82{word-spacing:-0.180360px;}
.ws1f{word-spacing:-0.179327px;}
.ws95{word-spacing:-0.162324px;}
.ws123{word-spacing:-0.161395px;}
.wsb6{word-spacing:-0.156600px;}
.wsa7{word-spacing:-0.156312px;}
.wsc8{word-spacing:-0.150300px;}
.ws76{word-spacing:-0.148428px;}
.wsc1{word-spacing:-0.145800px;}
.ws8b{word-spacing:-0.144288px;}
.wsb2{word-spacing:-0.140400px;}
.ws8f{word-spacing:-0.138276px;}
.wsc2{word-spacing:-0.135000px;}
.ws84{word-spacing:-0.132264px;}
.wsc5{word-spacing:-0.129600px;}
.ws7c{word-spacing:-0.126252px;}
.wsb8{word-spacing:-0.124200px;}
.ws98{word-spacing:-0.120240px;}
.ws35{word-spacing:-0.119551px;}
.wsb7{word-spacing:-0.118800px;}
.wsaa{word-spacing:-0.114228px;}
.wsb3{word-spacing:-0.113400px;}
.wsbd{word-spacing:-0.108000px;}
.ws12e{word-spacing:-0.107597px;}
.wsc6{word-spacing:-0.102204px;}
.wsb0{word-spacing:-0.097200px;}
.ws7a{word-spacing:-0.096192px;}
.wsbc{word-spacing:-0.091800px;}
.wsa4{word-spacing:-0.090180px;}
.wsb9{word-spacing:-0.086400px;}
.ws88{word-spacing:-0.084168px;}
.wsb4{word-spacing:-0.081000px;}
.ws83{word-spacing:-0.078156px;}
.wsa9{word-spacing:-0.072144px;}
.ws7b{word-spacing:-0.066132px;}
.wsad{word-spacing:-0.064800px;}
.ws7f{word-spacing:-0.060120px;}
.ws1d{word-spacing:-0.059776px;}
.ws80{word-spacing:-0.054108px;}
.wsae{word-spacing:-0.054000px;}
.ws17{word-spacing:-0.053798px;}
.ws15f{word-spacing:-0.052273px;}
.ws9e{word-spacing:-0.048096px;}
.ws75{word-spacing:-0.047880px;}
.wsee{word-spacing:-0.047821px;}
.wsac{word-spacing:-0.043200px;}
.ws81{word-spacing:-0.042084px;}
.ws9b{word-spacing:-0.036072px;}
.ws87{word-spacing:-0.030060px;}
.wsab{word-spacing:-0.024048px;}
.wsb1{word-spacing:-0.021600px;}
.ws71{word-spacing:-0.019152px;}
.wsa6{word-spacing:-0.018036px;}
.wsaf{word-spacing:-0.016200px;}
.ws156{word-spacing:-0.015178px;}
.ws15c{word-spacing:-0.013267px;}
.ws14b{word-spacing:-0.012806px;}
.ws8d{word-spacing:-0.012024px;}
.ws13b{word-spacing:-0.011510px;}
.wsba{word-spacing:-0.010800px;}
.ws161{word-spacing:-0.010733px;}
.ws139{word-spacing:-0.010339px;}
.ws152{word-spacing:-0.007910px;}
.ws144{word-spacing:-0.006806px;}
.wscb{word-spacing:-0.006012px;}
.wsbb{word-spacing:-0.005400px;}
.ws15e{word-spacing:-0.005194px;}
.ws14d{word-spacing:-0.003610px;}
.ws15d{word-spacing:-0.003437px;}
.ws2{word-spacing:-0.000779px;}
.ws0{word-spacing:0.000000px;}
.ws28{word-spacing:0.003599px;}
.wsa1{word-spacing:0.006012px;}
.ws94{word-spacing:0.012024px;}
.ws9d{word-spacing:0.018036px;}
.ws77{word-spacing:0.028728px;}
.ws7e{word-spacing:0.036072px;}
.ws9a{word-spacing:0.042084px;}
.ws9c{word-spacing:0.048096px;}
.ws12{word-spacing:0.053798px;}
.wsc7{word-spacing:0.054108px;}
.ws20{word-spacing:0.059776px;}
.ws89{word-spacing:0.066132px;}
.ws93{word-spacing:0.072144px;}
.ws85{word-spacing:0.078156px;}
.ws19{word-spacing:0.107597px;}
.ws8c{word-spacing:0.108216px;}
.ws27{word-spacing:0.119551px;}
.ws91{word-spacing:0.120240px;}
.wsc9{word-spacing:0.132264px;}
.ws99{word-spacing:0.144288px;}
.ws8a{word-spacing:0.150300px;}
.wsc4{word-spacing:0.156600px;}
.ws1b{word-spacing:0.161395px;}
.wsa5{word-spacing:0.162324px;}
.wsb5{word-spacing:0.172800px;}
.ws2d{word-spacing:0.179327px;}
.wsf4{word-spacing:0.191282px;}
.wscc{word-spacing:0.192384px;}
.ws12b{word-spacing:0.215194px;}
.ws26{word-spacing:0.239102px;}
.ws9f{word-spacing:0.258516px;}
.ws125{word-spacing:0.268992px;}
.wsa8{word-spacing:0.288576px;}
.wsc0{word-spacing:0.297000px;}
.ws38{word-spacing:0.298878px;}
.ws14{word-spacing:0.322790px;}
.wsf9{word-spacing:0.334744px;}
.ws86{word-spacing:0.348696px;}
.ws3a{word-spacing:0.358654px;}
.wsa2{word-spacing:0.384768px;}
.ws96{word-spacing:0.408816px;}
.ws40{word-spacing:0.418429px;}
.ws68{word-spacing:0.478205px;}
.ws159{word-spacing:0.484186px;}
.ws2b{word-spacing:0.537980px;}
.ws15b{word-spacing:0.591782px;}
.wsd7{word-spacing:0.597756px;}
.ws2a{word-spacing:0.657532px;}
.ws114{word-spacing:0.717307px;}
.wsd8{word-spacing:0.777083px;}
.ws130{word-spacing:0.806976px;}
.ws110{word-spacing:0.836858px;}
.wsdd{word-spacing:0.896634px;}
.ws162{word-spacing:0.914573px;}
.ws3e{word-spacing:0.956410px;}
.ws3c{word-spacing:1.016185px;}
.ws121{word-spacing:1.022170px;}
.wsfd{word-spacing:1.075961px;}
.ws154{word-spacing:1.129766px;}
.wsfe{word-spacing:1.135736px;}
.wse1{word-spacing:1.195512px;}
.ws137{word-spacing:1.200183px;}
.ws90{word-spacing:1.220436px;}
.ws136{word-spacing:1.237363px;}
.ws53{word-spacing:1.255288px;}
.ws4f{word-spacing:1.315063px;}
.wse8{word-spacing:1.374839px;}
.ws9{word-spacing:1.380812px;}
.ws51{word-spacing:1.434614px;}
.ws15{word-spacing:1.452557px;}
.wsc3{word-spacing:1.485000px;}
.ws36{word-spacing:1.554166px;}
.ws92{word-spacing:1.581156px;}
.wsdf{word-spacing:1.613941px;}
.ws11c{word-spacing:1.613952px;}
.ws6e{word-spacing:1.673717px;}
.ws104{word-spacing:1.733492px;}
.wsd4{word-spacing:1.793268px;}
.ws6f{word-spacing:1.853044px;}
.ws11b{word-spacing:1.877522px;}
.wsda{word-spacing:1.912819px;}
.ws39{word-spacing:1.972595px;}
.ws50{word-spacing:2.032370px;}
.ws3d{word-spacing:2.092146px;}
.wsd6{word-spacing:2.151922px;}
.ws10{word-spacing:2.205734px;}
.ws3f{word-spacing:2.211697px;}
.ws13a{word-spacing:2.259533px;}
.wseb{word-spacing:2.271473px;}
.ws122{word-spacing:2.313331px;}
.ws23{word-spacing:2.391024px;}
.ws22{word-spacing:2.450800px;}
.wscd{word-spacing:2.474726px;}
.ws111{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.ws4d{word-spacing:2.570351px;}
.ws129{word-spacing:2.582323px;}
.ws30{word-spacing:2.630126px;}
.wsfc{word-spacing:2.689902px;}
.ws147{word-spacing:2.689920px;}
.ws157{word-spacing:2.743718px;}
.ws112{word-spacing:2.749678px;}
.wsf{word-spacing:2.797517px;}
.wse2{word-spacing:2.809453px;}
.wsd3{word-spacing:2.869229px;}
.wsc{word-spacing:2.869236px;}
.wsdc{word-spacing:2.929004px;}
.ws145{word-spacing:2.958912px;}
.ws4e{word-spacing:2.988780px;}
.ws65{word-spacing:3.048556px;}
.wsea{word-spacing:3.108331px;}
.ws49{word-spacing:3.168107px;}
.ws142{word-spacing:3.219206px;}
.ws141{word-spacing:3.219734px;}
.ws148{word-spacing:3.220454px;}
.ws143{word-spacing:3.223565px;}
.wse5{word-spacing:3.227882px;}
.ws134{word-spacing:3.227904px;}
.ws140{word-spacing:3.281702px;}
.ws59{word-spacing:3.287658px;}
.ws151{word-spacing:3.335501px;}
.ws70{word-spacing:3.347434px;}
.ws103{word-spacing:3.407209px;}
.ws128{word-spacing:3.443098px;}
.ws31{word-spacing:3.466985px;}
.ws12a{word-spacing:3.472641px;}
.ws1a{word-spacing:3.486444px;}
.ws13e{word-spacing:3.496896px;}
.ws106{word-spacing:3.526760px;}
.ws1c{word-spacing:3.586536px;}
.wse{word-spacing:3.604493px;}
.ws124{word-spacing:3.609983px;}
.ws10b{word-spacing:3.646312px;}
.ws37{word-spacing:3.706087px;}
.ws10a{word-spacing:3.765863px;}
.wse9{word-spacing:3.825638px;}
.ws14f{word-spacing:3.873485px;}
.ws46{word-spacing:3.945190px;}
.ws47{word-spacing:4.004965px;}
.ws11{word-spacing:4.034880px;}
.wsd9{word-spacing:4.064741px;}
.ws41{word-spacing:4.124516px;}
.wse7{word-spacing:4.244068px;}
.ws61{word-spacing:4.303843px;}
.ws11e{word-spacing:4.303872px;}
.ws13f{word-spacing:4.357670px;}
.ws117{word-spacing:4.423394px;}
.ws14a{word-spacing:4.465267px;}
.ws6d{word-spacing:4.483170px;}
.wse3{word-spacing:4.662497px;}
.ws5b{word-spacing:4.722272px;}
.ws160{word-spacing:4.734259px;}
.wsfb{word-spacing:4.782048px;}
.ws12f{word-spacing:4.841856px;}
.ws5f{word-spacing:4.901599px;}
.ws13d{word-spacing:4.949453px;}
.ws5e{word-spacing:4.961375px;}
.ws13c{word-spacing:5.003251px;}
.wsff{word-spacing:5.021150px;}
.ws5a{word-spacing:5.080926px;}
.ws6b{word-spacing:5.140702px;}
.ws6a{word-spacing:5.200477px;}
.ws113{word-spacing:5.260253px;}
.wsec{word-spacing:5.320028px;}
.ws4a{word-spacing:5.379804px;}
.ws11f{word-spacing:5.433638px;}
.ws7{word-spacing:5.481407px;}
.ws4b{word-spacing:5.499355px;}
.ws43{word-spacing:5.559131px;}
.ws100{word-spacing:5.618906px;}
.ws2c{word-spacing:5.678682px;}
.ws10f{word-spacing:5.738458px;}
.ws155{word-spacing:5.756429px;}
.ws108{word-spacing:5.798233px;}
.ws62{word-spacing:5.858009px;}
.ws63{word-spacing:5.917784px;}
.wsd1{word-spacing:5.977560px;}
.ws4c{word-spacing:6.097111px;}
.ws10e{word-spacing:6.156887px;}
.wsde{word-spacing:6.395989px;}
.ws10d{word-spacing:6.455765px;}
.ws115{word-spacing:6.515540px;}
.wse4{word-spacing:6.575316px;}
.ws45{word-spacing:6.635092px;}
.ws116{word-spacing:6.694867px;}
.ws119{word-spacing:6.814418px;}
.ws109{word-spacing:6.874194px;}
.wscf{word-spacing:6.933970px;}
.ws138{word-spacing:6.993792px;}
.ws32{word-spacing:7.053521px;}
.ws153{word-spacing:7.136072px;}
.ws101{word-spacing:7.173072px;}
.ws5d{word-spacing:7.232848px;}
.ws102{word-spacing:7.292623px;}
.ws42{word-spacing:7.412174px;}
.wsd5{word-spacing:7.471950px;}
.ws11a{word-spacing:7.711052px;}
.ws118{word-spacing:8.189257px;}
.ws69{word-spacing:8.249033px;}
.wsd0{word-spacing:8.308808px;}
.ws44{word-spacing:8.488135px;}
.ws15a{word-spacing:8.607744px;}
.ws120{word-spacing:8.715341px;}
.ws5{word-spacing:9.833058px;}
.wsd{word-spacing:10.668861px;}
.ws6{word-spacing:11.841512px;}
.ws158{word-spacing:11.889446px;}
.ws14e{word-spacing:11.997043px;}
.ws150{word-spacing:15.386342px;}
.ws3{word-spacing:15.481836px;}
.ws149{word-spacing:17.054093px;}
.ws4{word-spacing:22.339429px;}
.ws8{word-spacing:22.720640px;}
.wsed{word-spacing:86.845485px;}
.wsf3{word-spacing:199.651005px;}
.wsf8{word-spacing:199.698826px;}
.wsf5{word-spacing:217.583730px;}
.wsf1{word-spacing:217.631551px;}
.wsf7{word-spacing:265.672500px;}
.wsf0{word-spacing:283.606500px;}
.wsef{word-spacing:359.170500px;}
.wsf2{word-spacing:360.364500px;}
._1e{margin-left:-23.192933px;}
._22{margin-left:-20.519561px;}
._5{margin-left:-11.943245px;}
._14{margin-left:-7.268837px;}
._a{margin-left:-5.917824px;}
._8{margin-left:-4.399495px;}
._0{margin-left:-3.096367px;}
._3{margin-left:-1.464498px;}
._20{width:1.082160px;}
._21{width:2.240046px;}
._1d{width:3.287658px;}
._11{width:4.871707px;}
._30{width:10.950917px;}
._1{width:12.971268px;}
._d{width:14.824386px;}
._c{width:16.785101px;}
._b{width:18.506650px;}
._13{width:19.689984px;}
._15{width:21.638759px;}
._1c{width:22.654952px;}
._9{width:23.778893px;}
._2{width:25.314894px;}
._1b{width:26.839244px;}
._19{width:28.273859px;}
._12{width:29.798132px;}
._18{width:30.903977px;}
._38{width:32.021989px;}
._4{width:33.355008px;}
._1a{width:35.446931px;}
._10{width:36.612551px;}
._24{width:37.927614px;}
._17{width:39.272569px;}
._37{width:40.378414px;}
._16{width:41.693477px;}
._1f{width:43.964950px;}
._6{width:54.423426px;}
._23{width:71.611169px;}
._7{width:84.315726px;}
._26{width:123.410785px;}
._27{width:245.092349px;}
._2c{width:276.450889px;}
._29{width:277.646404px;}
._35{width:280.828281px;}
._2b{width:295.579129px;}
._34{width:393.372623px;}
._28{width:417.403005px;}
._2f{width:441.098540px;}
._2e{width:466.359518px;}
._36{width:489.157946px;}
._2d{width:528.159345px;}
._32{width:567.421793px;}
._33{width:570.870119px;}
._31{width:600.198042px;}
._2a{width:665.596612px;}
._e{width:905.194337px;}
._25{width:2536.713300px;}
._f{width:2560.623300px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(81,125,151);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:47.820600px;}
.fsb{font-size:47.880000px;}
.fse{font-size:49.829400px;}
.fsa{font-size:53.798400px;}
.fsd{font-size:54.000000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsc{font-size:60.120000px;}
.fsf{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:90.874640px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.ye3{bottom:-185.893050px;}
.yf4{bottom:-127.301754px;}
.yf3{bottom:-108.042312px;}
.yf2{bottom:-88.873050px;}
.yf1{bottom:-52.063950px;}
.yf0{bottom:-34.693500px;}
.yef{bottom:-17.323050px;}
.y0{bottom:0.000000px;}
.yee{bottom:5.088093px;}
.y39{bottom:9.233944px;}
.y38{bottom:26.903761px;}
.y66{bottom:31.890000px;}
.y6{bottom:35.925007px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y65{bottom:103.621500px;}
.y36{bottom:104.646000px;}
.y103{bottom:113.067000px;}
.y13e{bottom:118.699500px;}
.yc6{bottom:119.148000px;}
.y9d{bottom:119.596500px;}
.ydf{bottom:122.286000px;}
.y64{bottom:122.449500px;}
.y35{bottom:122.535000px;}
.y18c{bottom:131.476500px;}
.y102{bottom:131.896500px;}
.y1c1{bottom:133.719000px;}
.y13d{bottom:137.529000px;}
.yc5{bottom:137.977500px;}
.y9c{bottom:138.426000px;}
.y22{bottom:139.264499px;}
.y34{bottom:140.422500px;}
.yde{bottom:141.115500px;}
.y63{bottom:141.279000px;}
.y156{bottom:145.375500px;}
.y133{bottom:145.762500px;}
.y18b{bottom:148.737000px;}
.y101{bottom:150.726000px;}
.y1c0{bottom:150.978000px;}
.y13c{bottom:156.358500px;}
.yc4{bottom:156.807000px;}
.y9b{bottom:157.255500px;}
.y33{bottom:158.310000px;}
.ydd{bottom:159.945000px;}
.y62{bottom:160.108500px;}
.y155{bottom:162.949500px;}
.y18a{bottom:165.997500px;}
.y1bf{bottom:168.238500px;}
.y100{bottom:169.555500px;}
.y13b{bottom:175.188000px;}
.yc3{bottom:175.636500px;}
.y9a{bottom:176.085000px;}
.y32{bottom:176.199000px;}
.ydc{bottom:178.774500px;}
.y61{bottom:178.938000px;}
.y140{bottom:179.671500px;}
.y132{bottom:180.531000px;}
.y189{bottom:183.258000px;}
.y1be{bottom:185.499000px;}
.yff{bottom:188.385000px;}
.y154{bottom:189.489000px;}
.y13a{bottom:194.017500px;}
.y31{bottom:194.086500px;}
.yc2{bottom:194.466000px;}
.y131{bottom:194.727000px;}
.y99{bottom:194.914500px;}
.y19{bottom:196.933500px;}
.ydb{bottom:197.604000px;}
.y60{bottom:197.767500px;}
.y188{bottom:200.518500px;}
.y1bd{bottom:202.759500px;}
.y153{bottom:207.064500px;}
.yfe{bottom:207.214500px;}
.y130{bottom:208.924500px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y30{bottom:211.974000px;}
.y139{bottom:212.847000px;}
.yc1{bottom:213.295500px;}
.y98{bottom:213.744000px;}
.yda{bottom:216.433500px;}
.y5f{bottom:216.597000px;}
.y187{bottom:217.779000px;}
.y1bc{bottom:220.020000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y12f{bottom:223.120500px;}
.y2f{bottom:229.863000px;}
.y138{bottom:231.676500px;}
.yc0{bottom:232.125000px;}
.y97{bottom:232.573500px;}
.yfd{bottom:233.517000px;}
.y152{bottom:233.604000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y186{bottom:235.039500px;}
.yd9{bottom:235.263000px;}
.y5e{bottom:235.426500px;}
.y1bb{bottom:237.280500px;}
.y12e{bottom:244.281000px;}
.y137{bottom:250.506000px;}
.ybf{bottom:250.954500px;}
.y151{bottom:251.178000px;}
.y96{bottom:251.403000px;}
.y185{bottom:252.300000px;}
.yfc{bottom:252.346500px;}
.yd8{bottom:254.092500px;}
.y5d{bottom:254.256000px;}
.y1ba{bottom:254.541000px;}
.y12d{bottom:258.478500px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y150{bottom:268.752000px;}
.y136{bottom:269.335500px;}
.y184{bottom:269.560500px;}
.ybe{bottom:269.784000px;}
.y95{bottom:270.232500px;}
.yfb{bottom:271.174500px;}
.y1b9{bottom:271.801500px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y12c{bottom:272.674500px;}
.yd7{bottom:272.922000px;}
.y5c{bottom:273.085500px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y14f{bottom:286.326000px;}
.y183{bottom:286.819500px;}
.y12b{bottom:286.872000px;}
.ybd{bottom:288.613500px;}
.y94{bottom:289.062000px;}
.yfa{bottom:290.004000px;}
.yd6{bottom:291.751500px;}
.y5b{bottom:291.915000px;}
.y135{bottom:292.648500px;}
.y2e{bottom:299.892000px;}
.y12a{bottom:301.068000px;}
.y14e{bottom:303.901500px;}
.y182{bottom:304.080000px;}
.y1b8{bottom:306.321000px;}
.ybc{bottom:307.443000px;}
.y93{bottom:307.891500px;}
.yf9{bottom:308.833500px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.yd5{bottom:310.581000px;}
.y5a{bottom:310.744500px;}
.y129{bottom:315.265500px;}
.y2d{bottom:317.779500px;}
.y181{bottom:321.340500px;}
.y14d{bottom:321.475500px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y1b7{bottom:323.581500px;}
.ybb{bottom:326.272500px;}
.y92{bottom:326.719500px;}
.yf8{bottom:327.663000px;}
.yd4{bottom:329.410500px;}
.y128{bottom:329.461500px;}
.y59{bottom:329.574000px;}
.y2c{bottom:335.667000px;}
.y180{bottom:338.601000px;}
.y1b6{bottom:340.842000px;}
.y127{bottom:343.659000px;}
.yba{bottom:345.102000px;}
.y91{bottom:345.549000px;}
.y14c{bottom:348.015000px;}
.y10{bottom:348.133500px;}
.yd3{bottom:348.240000px;}
.y58{bottom:352.887000px;}
.y2b{bottom:353.554500px;}
.y17f{bottom:355.861500px;}
.y126{bottom:357.855000px;}
.y1b5{bottom:358.102500px;}
.yf7{bottom:361.230000px;}
.yb9{bottom:363.931500px;}
.y90{bottom:364.378500px;}
.y14b{bottom:366.060000px;}
.yd2{bottom:367.069500px;}
.y134{bottom:368.413500px;}
.y125{bottom:372.052500px;}
.y17e{bottom:373.122000px;}
.y1b4{bottom:375.363000px;}
.y2a{bottom:380.409000px;}
.yf6{bottom:380.461500px;}
.yb8{bottom:382.761000px;}
.y8f{bottom:383.208000px;}
.yd1{bottom:385.899000px;}
.y124{bottom:386.248500px;}
.yf{bottom:386.785499px;}
.y17d{bottom:390.382500px;}
.y1b3{bottom:392.623500px;}
.y29{bottom:398.298000px;}
.yf5{bottom:399.694500px;}
.y123{bottom:400.446000px;}
.yb7{bottom:401.589000px;}
.y8e{bottom:402.037500px;}
.yd0{bottom:404.728500px;}
.y17c{bottom:407.643000px;}
.ye{bottom:408.044999px;}
.y1b2{bottom:409.884000px;}
.y122{bottom:414.642000px;}
.y28{bottom:416.185500px;}
.yb6{bottom:420.418500px;}
.y8d{bottom:420.867000px;}
.ycf{bottom:423.558000px;}
.y17b{bottom:424.902000px;}
.ye0{bottom:425.113500px;}
.y1b1{bottom:427.144500px;}
.y57{bottom:428.037000px;}
.y121{bottom:428.839500px;}
.y27{bottom:434.073000px;}
.yb5{bottom:439.248000px;}
.y8c{bottom:439.696500px;}
.y17a{bottom:442.162500px;}
.yce{bottom:442.387500px;}
.y120{bottom:443.035500px;}
.y104{bottom:443.731500px;}
.y1b0{bottom:444.403500px;}
.y56{bottom:447.493500px;}
.y26{bottom:451.962000px;}
.y11f{bottom:457.233000px;}
.yb4{bottom:458.077500px;}
.y8b{bottom:458.526000px;}
.y179{bottom:459.423000px;}
.ycd{bottom:461.217000px;}
.y1af{bottom:461.664000px;}
.y25{bottom:469.849500px;}
.y11e{bottom:471.429000px;}
.y178{bottom:476.683500px;}
.yb3{bottom:476.907000px;}
.y8a{bottom:477.355500px;}
.y1ae{bottom:478.924500px;}
.ycc{bottom:480.045000px;}
.y105{bottom:481.390500px;}
.y55{bottom:484.884000px;}
.y11d{bottom:485.626500px;}
.y24{bottom:487.737000px;}
.y177{bottom:493.944000px;}
.yb2{bottom:495.736500px;}
.y89{bottom:496.185000px;}
.ycb{bottom:498.874500px;}
.y11c{bottom:499.822500px;}
.yd{bottom:502.864502px;}
.y54{bottom:504.340500px;}
.y23{bottom:505.626000px;}
.y176{bottom:511.204500px;}
.y1ad{bottom:513.445500px;}
.y11b{bottom:514.020000px;}
.yb1{bottom:514.566000px;}
.y88{bottom:515.014500px;}
.yca{bottom:517.704000px;}
.yc{bottom:520.864502px;}
.y53{bottom:523.798500px;}
.y11a{bottom:528.216000px;}
.y175{bottom:528.465000px;}
.y1ac{bottom:530.706000px;}
.yb0{bottom:533.395500px;}
.y87{bottom:533.844000px;}
.yc9{bottom:536.533500px;}
.yb{bottom:538.864499px;}
.y119{bottom:542.413500px;}
.y52{bottom:543.255000px;}
.y174{bottom:545.725500px;}
.y1ab{bottom:547.966500px;}
.yaf{bottom:552.225000px;}
.y86{bottom:552.673500px;}
.y116{bottom:556.609500px;}
.ya{bottom:556.864499px;}
.yc8{bottom:559.846500px;}
.y51{bottom:562.711500px;}
.y173{bottom:562.986000px;}
.y118{bottom:563.707500px;}
.y1aa{bottom:565.227000px;}
.y115{bottom:570.807000px;}
.yae{bottom:571.054500px;}
.y85{bottom:571.503000px;}
.yc7{bottom:575.538000px;}
.y117{bottom:577.905000px;}
.y172{bottom:580.245000px;}
.y50{bottom:582.169500px;}
.y1a9{bottom:582.487500px;}
.y114{bottom:585.003000px;}
.yad{bottom:589.884000px;}
.y84{bottom:590.332500px;}
.y171{bottom:597.505500px;}
.y113{bottom:599.200500px;}
.y1a8{bottom:599.746500px;}
.y4f{bottom:601.626000px;}
.yac{bottom:608.713500px;}
.y83{bottom:609.162000px;}
.y112{bottom:613.396500px;}
.y170{bottom:614.766000px;}
.y1a7{bottom:617.007000px;}
.y4e{bottom:621.082500px;}
.yab{bottom:627.543000px;}
.y111{bottom:627.594000px;}
.y82{bottom:627.991500px;}
.y16f{bottom:632.026500px;}
.y1a6{bottom:634.267500px;}
.y4d{bottom:640.540500px;}
.y110{bottom:641.790000px;}
.y9{bottom:645.510000px;}
.yaa{bottom:646.372500px;}
.y81{bottom:646.821000px;}
.y16e{bottom:649.287000px;}
.y1a5{bottom:651.528000px;}
.y10d{bottom:655.987500px;}
.y4c{bottom:659.997000px;}
.y10f{bottom:663.085500px;}
.ya9{bottom:665.202000px;}
.y80{bottom:665.650500px;}
.y16d{bottom:666.547500px;}
.y8{bottom:666.771000px;}
.y1a4{bottom:668.788500px;}
.y10c{bottom:670.183500px;}
.y10e{bottom:677.281500px;}
.y4b{bottom:679.455000px;}
.y16c{bottom:683.808000px;}
.ya8{bottom:684.031500px;}
.y10b{bottom:684.381000px;}
.y7f{bottom:684.480000px;}
.y1a3{bottom:686.049000px;}
.y10a{bottom:698.577000px;}
.y4a{bottom:698.911500px;}
.ya7{bottom:702.861000px;}
.y7e{bottom:703.309500px;}
.y16b{bottom:705.550500px;}
.y49{bottom:718.368000px;}
.y109{bottom:719.976000px;}
.y1a2{bottom:720.570000px;}
.ya6{bottom:721.690500px;}
.y7d{bottom:722.139000px;}
.yed{bottom:722.567688px;}
.y7{bottom:726.298500px;}
.y108{bottom:734.173500px;}
.y48{bottom:737.826000px;}
.y1a1{bottom:737.829000px;}
.y16a{bottom:739.174500px;}
.ya5{bottom:740.520000px;}
.y7c{bottom:740.968500px;}
.yec{bottom:741.739362px;}
.y107{bottom:748.369500px;}
.y3{bottom:752.599495px;}
.y1a0{bottom:755.089500px;}
.y169{bottom:756.748500px;}
.y47{bottom:757.282500px;}
.ya4{bottom:759.349500px;}
.y7b{bottom:759.798000px;}
.yeb{bottom:760.998804px;}
.y19f{bottom:772.350000px;}
.y168{bottom:774.324000px;}
.y46{bottom:776.739000px;}
.ya3{bottom:778.179000px;}
.y7a{bottom:778.627500px;}
.yea{bottom:780.258246px;}
.y106{bottom:781.408500px;}
.y13f{bottom:782.662500px;}
.y19e{bottom:789.610500px;}
.y45{bottom:796.197000px;}
.ya2{bottom:797.008500px;}
.y79{bottom:797.457000px;}
.ye9{bottom:799.427508px;}
.y167{bottom:800.863500px;}
.y19d{bottom:806.871000px;}
.y44{bottom:815.653500px;}
.ya1{bottom:815.838000px;}
.y78{bottom:816.286500px;}
.y166{bottom:818.437500px;}
.ye8{bottom:818.688039px;}
.y19c{bottom:824.131500px;}
.ya0{bottom:834.667500px;}
.y43{bottom:835.111500px;}
.y77{bottom:835.114500px;}
.y165{bottom:836.011500px;}
.ye7{bottom:837.857301px;}
.y19b{bottom:841.392000px;}
.y9f{bottom:853.497000px;}
.y164{bottom:853.585500px;}
.y76{bottom:853.944000px;}
.y42{bottom:854.568000px;}
.ye6{bottom:857.116743px;}
.y19a{bottom:858.652500px;}
.y163{bottom:871.161000px;}
.y14a{bottom:872.326500px;}
.y75{bottom:872.773500px;}
.y199{bottom:875.913000px;}
.ye5{bottom:876.376185px;}
.y9e{bottom:876.808500px;}
.y2{bottom:879.369000px;}
.y162{bottom:888.735000px;}
.y149{bottom:891.156000px;}
.y74{bottom:891.603000px;}
.y41{bottom:891.802500px;}
.y198{bottom:893.172000px;}
.ye4{bottom:895.546950px;}
.y161{bottom:906.309000px;}
.y40{bottom:907.942500px;}
.y148{bottom:909.984000px;}
.y73{bottom:910.432500px;}
.y160{bottom:923.883000px;}
.y3f{bottom:924.082500px;}
.y197{bottom:927.693000px;}
.y147{bottom:928.813500px;}
.y72{bottom:929.262000px;}
.y15f{bottom:941.457000px;}
.y196{bottom:944.953500px;}
.y146{bottom:947.643000px;}
.y71{bottom:948.091500px;}
.ye2{bottom:950.267085px;}
.y15e{bottom:959.031000px;}
.ye1{bottom:959.896950px;}
.y195{bottom:962.214000px;}
.y145{bottom:966.472500px;}
.y1{bottom:966.726000px;}
.y70{bottom:966.921000px;}
.y3e{bottom:971.748000px;}
.y1c4{bottom:974.916000px;}
.y15d{bottom:976.605000px;}
.y194{bottom:979.474500px;}
.y144{bottom:985.302000px;}
.y6f{bottom:985.750500px;}
.y1c3{bottom:992.176500px;}
.y15c{bottom:994.179000px;}
.y193{bottom:996.735000px;}
.y143{bottom:1004.131500px;}
.y6e{bottom:1004.580000px;}
.y3d{bottom:1008.510000px;}
.y1c2{bottom:1009.437000px;}
.y15b{bottom:1011.753000px;}
.y192{bottom:1013.995500px;}
.y142{bottom:1022.961000px;}
.y6d{bottom:1023.409500px;}
.y15a{bottom:1029.327000px;}
.y191{bottom:1031.254500px;}
.y3c{bottom:1036.755000px;}
.y6c{bottom:1042.239000px;}
.y141{bottom:1046.274000px;}
.y190{bottom:1048.515000px;}
.y159{bottom:1055.868000px;}
.y6b{bottom:1061.068500px;}
.y3b{bottom:1064.998500px;}
.y18f{bottom:1065.775500px;}
.y158{bottom:1073.442000px;}
.y6a{bottom:1079.898000px;}
.y18e{bottom:1083.036000px;}
.y3a{bottom:1093.242000px;}
.y69{bottom:1098.727500px;}
.y157{bottom:1099.983000px;}
.y18d{bottom:1100.296500px;}
.y68{bottom:1117.557000px;}
.y37{bottom:1136.730000px;}
.y67{bottom:1177.662000px;}
.h1e{height:16.817382px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h1a{height:34.574294px;}
.h16{height:34.647539px;}
.hb{height:37.993262px;}
.h10{height:43.217759px;}
.h11{height:43.421105px;}
.h18{height:43.504805px;}
.he{height:43.815515px;}
.h15{height:44.536816px;}
.h7{height:45.960000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h12{height:48.848947px;}
.h1f{height:49.117939px;}
.h19{height:50.229492px;}
.hc{height:50.930649px;}
.h13{height:54.276245px;}
.h2{height:55.152000px;}
.h17{height:55.922168px;}
.hd{height:61.613006px;}
.h1c{height:71.813105px;}
.hf{height:77.792486px;}
.h5{height:78.132000px;}
.h1b{height:100.205105px;}
.h1d{height:100.211105px;}
.h4{height:119.055004px;}
.h14{height:707.389500px;}
.h0{height:1262.833500px;}
.ha{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:197.527766px;}
.w2{width:637.794021px;}
.w5{width:709.490700px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.xc{left:-39.547800px;}
.x0{left:0.000000px;}
.x7{left:52.525500px;}
.x5{left:53.574000px;}
.x6{left:58.054042px;}
.x21{left:62.578500px;}
.x1a{left:65.259000px;}
.x27{left:67.459500px;}
.x19{left:70.161000px;}
.x24{left:71.368500px;}
.x23{left:72.678000px;}
.x30{left:74.004000px;}
.x1f{left:75.009000px;}
.x2e{left:80.143500px;}
.x56{left:85.174500px;}
.xb{left:91.498800px;}
.x2f{left:100.515000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x20{left:110.790000px;}
.x2a{left:112.446000px;}
.x29{left:118.459500px;}
.x32{left:124.461000px;}
.x28{left:134.209500px;}
.x2c{left:143.689500px;}
.x2b{left:152.005500px;}
.xd{left:156.022200px;}
.x18{left:160.893000px;}
.x25{left:164.988000px;}
.x22{left:168.138000px;}
.x2d{left:169.860000px;}
.x1b{left:173.931000px;}
.x31{left:182.143500px;}
.xe{left:187.876085px;}
.x4{left:203.484001px;}
.x55{left:247.348500px;}
.x9{left:248.526000px;}
.x8{left:249.591000px;}
.x41{left:253.974000px;}
.xa{left:281.479500px;}
.x10{left:284.184000px;}
.x53{left:293.056500px;}
.x48{left:298.218000px;}
.x54{left:305.349000px;}
.x4b{left:307.587000px;}
.x4c{left:319.878000px;}
.x42{left:322.506000px;}
.x33{left:330.628500px;}
.x34{left:342.919500px;}
.x49{left:366.750000px;}
.x12{left:378.765000px;}
.x13{left:380.092500px;}
.x11{left:383.094000px;}
.x4a{left:392.185500px;}
.x52{left:395.878500px;}
.x1d{left:398.353500px;}
.x26{left:404.331000px;}
.x1c{left:408.814500px;}
.x37{left:451.627500px;}
.x3{left:454.959000px;}
.x38{left:463.918500px;}
.x14{left:480.363000px;}
.x15{left:487.984500px;}
.x16{left:489.312000px;}
.x1e{left:507.274500px;}
.x50{left:515.035500px;}
.x45{left:518.782500px;}
.x3d{left:526.084500px;}
.x51{left:527.328000px;}
.x46{left:531.073500px;}
.x3e{left:538.375500px;}
.x39{left:551.736000px;}
.x4d{left:556.651500px;}
.x3a{left:564.027000px;}
.x4e{left:568.942500px;}
.x17{left:585.499500px;}
.x3b{left:656.935500px;}
.x3c{left:669.226500px;}
.x3f{left:682.471500px;}
.x40{left:694.762500px;}
.xf{left:700.533139px;}
.x4f{left:713.296500px;}
.x43{left:731.005500px;}
.x57{left:741.177000px;}
.x44{left:743.296500px;}
.x47{left:755.277000px;}
.x35{left:757.782000px;}
.x36{left:770.073000px;}
@media print{
.v1{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:25.237333pt;}
.v2{vertical-align:50.474667pt;}
.ls57{letter-spacing:-1.458912pt;}
.ls77{letter-spacing:-1.368000pt;}
.ls55{letter-spacing:-1.138272pt;}
.ls5b{letter-spacing:-0.416832pt;}
.ls65{letter-spacing:-0.395456pt;}
.ls4f{letter-spacing:-0.363392pt;}
.ls76{letter-spacing:-0.312000pt;}
.ls68{letter-spacing:-0.309952pt;}
.ls63{letter-spacing:-0.283232pt;}
.ls7f{letter-spacing:-0.224448pt;}
.ls6f{letter-spacing:-0.201600pt;}
.ls66{letter-spacing:-0.197728pt;}
.ls78{letter-spacing:-0.187200pt;}
.ls52{letter-spacing:-0.187040pt;}
.ls5d{letter-spacing:-0.181696pt;}
.ls75{letter-spacing:-0.177600pt;}
.ls7c{letter-spacing:-0.171008pt;}
.ls56{letter-spacing:-0.160320pt;}
.ls53{letter-spacing:-0.149632pt;}
.ls4e{letter-spacing:-0.122912pt;}
.ls58{letter-spacing:-0.117568pt;}
.ls51{letter-spacing:-0.112224pt;}
.ls7a{letter-spacing:-0.101536pt;}
.ls60{letter-spacing:-0.096192pt;}
.ls5e{letter-spacing:-0.090848pt;}
.ls4a{letter-spacing:-0.085504pt;}
.ls61{letter-spacing:-0.069472pt;}
.ls47{letter-spacing:-0.068096pt;}
.ls59{letter-spacing:-0.064128pt;}
.ls64{letter-spacing:-0.058784pt;}
.ls69{letter-spacing:-0.053440pt;}
.ls7e{letter-spacing:-0.048096pt;}
.ls73{letter-spacing:-0.043200pt;}
.ls54{letter-spacing:-0.042752pt;}
.ls72{letter-spacing:-0.038400pt;}
.ls67{letter-spacing:-0.037408pt;}
.ls6c{letter-spacing:-0.033600pt;}
.ls6a{letter-spacing:-0.032064pt;}
.ls6d{letter-spacing:-0.028800pt;}
.ls50{letter-spacing:-0.026720pt;}
.ls45{letter-spacing:-0.025536pt;}
.ls5f{letter-spacing:-0.021376pt;}
.ls4c{letter-spacing:-0.016032pt;}
.ls62{letter-spacing:-0.010688pt;}
.ls6b{letter-spacing:-0.009600pt;}
.ls4b{letter-spacing:-0.005344pt;}
.ls0{letter-spacing:0.000000pt;}
.ls89{letter-spacing:0.000108pt;}
.ls88{letter-spacing:0.000711pt;}
.ls8a{letter-spacing:0.001158pt;}
.ls15{letter-spacing:0.005344pt;}
.ls3a{letter-spacing:0.009600pt;}
.ls42{letter-spacing:0.010688pt;}
.ls18{letter-spacing:0.016032pt;}
.ls1b{letter-spacing:0.021376pt;}
.ls36{letter-spacing:0.024000pt;}
.ls27{letter-spacing:0.026720pt;}
.ls71{letter-spacing:0.028800pt;}
.ls13{letter-spacing:0.032064pt;}
.ls3b{letter-spacing:0.033600pt;}
.ls40{letter-spacing:0.037408pt;}
.ls33{letter-spacing:0.038400pt;}
.ls74{letter-spacing:0.048000pt;}
.ls2f{letter-spacing:0.048096pt;}
.ls35{letter-spacing:0.052800pt;}
.ls29{letter-spacing:0.053440pt;}
.ls70{letter-spacing:0.057600pt;}
.ls16{letter-spacing:0.058784pt;}
.ls38{letter-spacing:0.062400pt;}
.ls19{letter-spacing:0.064128pt;}
.ls79{letter-spacing:0.067200pt;}
.ls1d{letter-spacing:0.069472pt;}
.ls3e{letter-spacing:0.072000pt;}
.ls2e{letter-spacing:0.074816pt;}
.ls6e{letter-spacing:0.076800pt;}
.ls7b{letter-spacing:0.080160pt;}
.ls3d{letter-spacing:0.081600pt;}
.ls1c{letter-spacing:0.085504pt;}
.ls11{letter-spacing:0.089376pt;}
.ls5a{letter-spacing:0.090848pt;}
.ls37{letter-spacing:0.091200pt;}
.ls4d{letter-spacing:0.106880pt;}
.ls24{letter-spacing:0.112224pt;}
.ls7d{letter-spacing:0.117568pt;}
.ls3c{letter-spacing:0.120000pt;}
.ls10{letter-spacing:0.127680pt;}
.ls25{letter-spacing:0.133600pt;}
.ls49{letter-spacing:0.136192pt;}
.ls3f{letter-spacing:0.163200pt;}
.lsf{letter-spacing:0.170240pt;}
.ls20{letter-spacing:0.171008pt;}
.ls5c{letter-spacing:0.176352pt;}
.ls46{letter-spacing:0.361760pt;}
.ls48{letter-spacing:0.383040pt;}
.ls21{letter-spacing:0.406144pt;}
.ls82{letter-spacing:0.509060pt;}
.ls83{letter-spacing:0.514393pt;}
.ls85{letter-spacing:0.637762pt;}
.ls23{letter-spacing:0.726784pt;}
.ls22{letter-spacing:1.047424pt;}
.ls2d{letter-spacing:1.326319pt;}
.ls2c{letter-spacing:1.368064pt;}
.ls34{letter-spacing:2.088000pt;}
.ls32{letter-spacing:2.404800pt;}
.ls31{letter-spacing:2.726400pt;}
.ls30{letter-spacing:3.048000pt;}
.ls2b{letter-spacing:3.286560pt;}
.ls39{letter-spacing:3.364800pt;}
.ls2a{letter-spacing:3.607200pt;}
.ls28{letter-spacing:4.884416pt;}
.ls26{letter-spacing:4.889760pt;}
.ls1e{letter-spacing:5.205056pt;}
.ls1f{letter-spacing:5.525696pt;}
.ls14{letter-spacing:9.047392pt;}
.ls17{letter-spacing:9.368032pt;}
.ls1a{letter-spacing:9.688672pt;}
.ls41{letter-spacing:10.009312pt;}
.ls84{letter-spacing:10.410111pt;}
.ls5{letter-spacing:10.626533pt;}
.ls44{letter-spacing:11.955200pt;}
.ls43{letter-spacing:12.003021pt;}
.lsb{letter-spacing:12.592726pt;}
.lsc{letter-spacing:13.017797pt;}
.lsa{letter-spacing:13.070931pt;}
.ls9{letter-spacing:13.124065pt;}
.ls80{letter-spacing:13.177199pt;}
.ls6{letter-spacing:13.283467pt;}
.ls3{letter-spacing:13.336601pt;}
.ls4{letter-spacing:13.549136pt;}
.ls86{letter-spacing:14.027341pt;}
.ls87{letter-spacing:15.780758pt;}
.lse{letter-spacing:15.940160pt;}
.lsd{letter-spacing:16.152695pt;}
.ls2{letter-spacing:16.630900pt;}
.ls7{letter-spacing:16.843436pt;}
.ls8{letter-spacing:16.896570pt;}
.ls81{letter-spacing:18.065515pt;}
.ls1{letter-spacing:25.292137pt;}
.ls12{letter-spacing:1892.226112pt;}
.ws8e{word-spacing:-53.440000pt;}
.wsbe{word-spacing:-48.000000pt;}
.wsbf{word-spacing:-47.822400pt;}
.ws72{word-spacing:-42.560000pt;}
.wsb{word-spacing:-20.194365pt;}
.ws21{word-spacing:-13.283467pt;}
.ws11d{word-spacing:-11.955200pt;}
.ws29{word-spacing:-10.626800pt;}
.wsa{word-spacing:-9.298400pt;}
.ws60{word-spacing:-2.603559pt;}
.wsd2{word-spacing:-2.550426pt;}
.ws25{word-spacing:-2.072221pt;}
.ws16{word-spacing:-2.056294pt;}
.ws133{word-spacing:-2.008474pt;}
.wsdb{word-spacing:-1.912819pt;}
.ws107{word-spacing:-1.859685pt;}
.wsce{word-spacing:-1.806551pt;}
.ws55{word-spacing:-1.700284pt;}
.ws2e{word-spacing:-1.647150pt;}
.ws67{word-spacing:-1.540882pt;}
.ws64{word-spacing:-1.487748pt;}
.ws105{word-spacing:-1.434614pt;}
.wsfa{word-spacing:-1.381481pt;}
.ws146{word-spacing:-1.338982pt;}
.ws10c{word-spacing:-1.275213pt;}
.ws5c{word-spacing:-1.222079pt;}
.ws127{word-spacing:-1.195520pt;}
.wse6{word-spacing:-1.168945pt;}
.ws126{word-spacing:-1.147699pt;}
.ws48{word-spacing:-1.115811pt;}
.ws18{word-spacing:-1.099878pt;}
.wse0{word-spacing:-1.062677pt;}
.ws6c{word-spacing:-0.956410pt;}
.ws56{word-spacing:-0.850142pt;}
.ws54{word-spacing:-0.797008pt;}
.ws57{word-spacing:-0.690740pt;}
.ws58{word-spacing:-0.637606pt;}
.ws14c{word-spacing:-0.621670pt;}
.ws33{word-spacing:-0.584473pt;}
.ws34{word-spacing:-0.531339pt;}
.ws12d{word-spacing:-0.478208pt;}
.ws66{word-spacing:-0.478205pt;}
.ws12c{word-spacing:-0.430387pt;}
.ws78{word-spacing:-0.425600pt;}
.ws24{word-spacing:-0.425071pt;}
.ws73{word-spacing:-0.404320pt;}
.ws13{word-spacing:-0.382566pt;}
.ws52{word-spacing:-0.371937pt;}
.ws3b{word-spacing:-0.318803pt;}
.ws131{word-spacing:-0.286925pt;}
.ws2f{word-spacing:-0.265669pt;}
.ws135{word-spacing:-0.239104pt;}
.ws97{word-spacing:-0.229792pt;}
.ws7d{word-spacing:-0.224448pt;}
.ws74{word-spacing:-0.212800pt;}
.ws1e{word-spacing:-0.212535pt;}
.ws132{word-spacing:-0.191283pt;}
.wsa0{word-spacing:-0.187040pt;}
.ws79{word-spacing:-0.178752pt;}
.wsca{word-spacing:-0.171008pt;}
.wsf6{word-spacing:-0.170029pt;}
.wsa3{word-spacing:-0.165664pt;}
.ws82{word-spacing:-0.160320pt;}
.ws1f{word-spacing:-0.159402pt;}
.ws95{word-spacing:-0.144288pt;}
.ws123{word-spacing:-0.143462pt;}
.wsb6{word-spacing:-0.139200pt;}
.wsa7{word-spacing:-0.138944pt;}
.wsc8{word-spacing:-0.133600pt;}
.ws76{word-spacing:-0.131936pt;}
.wsc1{word-spacing:-0.129600pt;}
.ws8b{word-spacing:-0.128256pt;}
.wsb2{word-spacing:-0.124800pt;}
.ws8f{word-spacing:-0.122912pt;}
.wsc2{word-spacing:-0.120000pt;}
.ws84{word-spacing:-0.117568pt;}
.wsc5{word-spacing:-0.115200pt;}
.ws7c{word-spacing:-0.112224pt;}
.wsb8{word-spacing:-0.110400pt;}
.ws98{word-spacing:-0.106880pt;}
.ws35{word-spacing:-0.106268pt;}
.wsb7{word-spacing:-0.105600pt;}
.wsaa{word-spacing:-0.101536pt;}
.wsb3{word-spacing:-0.100800pt;}
.wsbd{word-spacing:-0.096000pt;}
.ws12e{word-spacing:-0.095642pt;}
.wsc6{word-spacing:-0.090848pt;}
.wsb0{word-spacing:-0.086400pt;}
.ws7a{word-spacing:-0.085504pt;}
.wsbc{word-spacing:-0.081600pt;}
.wsa4{word-spacing:-0.080160pt;}
.wsb9{word-spacing:-0.076800pt;}
.ws88{word-spacing:-0.074816pt;}
.wsb4{word-spacing:-0.072000pt;}
.ws83{word-spacing:-0.069472pt;}
.wsa9{word-spacing:-0.064128pt;}
.ws7b{word-spacing:-0.058784pt;}
.wsad{word-spacing:-0.057600pt;}
.ws7f{word-spacing:-0.053440pt;}
.ws1d{word-spacing:-0.053134pt;}
.ws80{word-spacing:-0.048096pt;}
.wsae{word-spacing:-0.048000pt;}
.ws17{word-spacing:-0.047821pt;}
.ws15f{word-spacing:-0.046464pt;}
.ws9e{word-spacing:-0.042752pt;}
.ws75{word-spacing:-0.042560pt;}
.wsee{word-spacing:-0.042507pt;}
.wsac{word-spacing:-0.038400pt;}
.ws81{word-spacing:-0.037408pt;}
.ws9b{word-spacing:-0.032064pt;}
.ws87{word-spacing:-0.026720pt;}
.wsab{word-spacing:-0.021376pt;}
.wsb1{word-spacing:-0.019200pt;}
.ws71{word-spacing:-0.017024pt;}
.wsa6{word-spacing:-0.016032pt;}
.wsaf{word-spacing:-0.014400pt;}
.ws156{word-spacing:-0.013491pt;}
.ws15c{word-spacing:-0.011793pt;}
.ws14b{word-spacing:-0.011383pt;}
.ws8d{word-spacing:-0.010688pt;}
.ws13b{word-spacing:-0.010231pt;}
.wsba{word-spacing:-0.009600pt;}
.ws161{word-spacing:-0.009540pt;}
.ws139{word-spacing:-0.009190pt;}
.ws152{word-spacing:-0.007031pt;}
.ws144{word-spacing:-0.006050pt;}
.wscb{word-spacing:-0.005344pt;}
.wsbb{word-spacing:-0.004800pt;}
.ws15e{word-spacing:-0.004617pt;}
.ws14d{word-spacing:-0.003209pt;}
.ws15d{word-spacing:-0.003055pt;}
.ws2{word-spacing:-0.000692pt;}
.ws0{word-spacing:0.000000pt;}
.ws28{word-spacing:0.003199pt;}
.wsa1{word-spacing:0.005344pt;}
.ws94{word-spacing:0.010688pt;}
.ws9d{word-spacing:0.016032pt;}
.ws77{word-spacing:0.025536pt;}
.ws7e{word-spacing:0.032064pt;}
.ws9a{word-spacing:0.037408pt;}
.ws9c{word-spacing:0.042752pt;}
.ws12{word-spacing:0.047821pt;}
.wsc7{word-spacing:0.048096pt;}
.ws20{word-spacing:0.053134pt;}
.ws89{word-spacing:0.058784pt;}
.ws93{word-spacing:0.064128pt;}
.ws85{word-spacing:0.069472pt;}
.ws19{word-spacing:0.095642pt;}
.ws8c{word-spacing:0.096192pt;}
.ws27{word-spacing:0.106268pt;}
.ws91{word-spacing:0.106880pt;}
.wsc9{word-spacing:0.117568pt;}
.ws99{word-spacing:0.128256pt;}
.ws8a{word-spacing:0.133600pt;}
.wsc4{word-spacing:0.139200pt;}
.ws1b{word-spacing:0.143462pt;}
.wsa5{word-spacing:0.144288pt;}
.wsb5{word-spacing:0.153600pt;}
.ws2d{word-spacing:0.159402pt;}
.wsf4{word-spacing:0.170029pt;}
.wscc{word-spacing:0.171008pt;}
.ws12b{word-spacing:0.191283pt;}
.ws26{word-spacing:0.212535pt;}
.ws9f{word-spacing:0.229792pt;}
.ws125{word-spacing:0.239104pt;}
.wsa8{word-spacing:0.256512pt;}
.wsc0{word-spacing:0.264000pt;}
.ws38{word-spacing:0.265669pt;}
.ws14{word-spacing:0.286925pt;}
.wsf9{word-spacing:0.297550pt;}
.ws86{word-spacing:0.309952pt;}
.ws3a{word-spacing:0.318803pt;}
.wsa2{word-spacing:0.342016pt;}
.ws96{word-spacing:0.363392pt;}
.ws40{word-spacing:0.371937pt;}
.ws68{word-spacing:0.425071pt;}
.ws159{word-spacing:0.430387pt;}
.ws2b{word-spacing:0.478205pt;}
.ws15b{word-spacing:0.526029pt;}
.wsd7{word-spacing:0.531339pt;}
.ws2a{word-spacing:0.584473pt;}
.ws114{word-spacing:0.637606pt;}
.wsd8{word-spacing:0.690740pt;}
.ws130{word-spacing:0.717312pt;}
.ws110{word-spacing:0.743874pt;}
.wsdd{word-spacing:0.797008pt;}
.ws162{word-spacing:0.812954pt;}
.ws3e{word-spacing:0.850142pt;}
.ws3c{word-spacing:0.903276pt;}
.ws121{word-spacing:0.908595pt;}
.wsfd{word-spacing:0.956410pt;}
.ws154{word-spacing:1.004237pt;}
.wsfe{word-spacing:1.009543pt;}
.wse1{word-spacing:1.062677pt;}
.ws137{word-spacing:1.066830pt;}
.ws90{word-spacing:1.084832pt;}
.ws136{word-spacing:1.099878pt;}
.ws53{word-spacing:1.115811pt;}
.ws4f{word-spacing:1.168945pt;}
.wse8{word-spacing:1.222079pt;}
.ws9{word-spacing:1.227389pt;}
.ws51{word-spacing:1.275213pt;}
.ws15{word-spacing:1.291162pt;}
.wsc3{word-spacing:1.320000pt;}
.ws36{word-spacing:1.381481pt;}
.ws92{word-spacing:1.405472pt;}
.wsdf{word-spacing:1.434614pt;}
.ws11c{word-spacing:1.434624pt;}
.ws6e{word-spacing:1.487748pt;}
.ws104{word-spacing:1.540882pt;}
.wsd4{word-spacing:1.594016pt;}
.ws6f{word-spacing:1.647150pt;}
.ws11b{word-spacing:1.668908pt;}
.wsda{word-spacing:1.700284pt;}
.ws39{word-spacing:1.753418pt;}
.ws50{word-spacing:1.806551pt;}
.ws3d{word-spacing:1.859685pt;}
.wsd6{word-spacing:1.912819pt;}
.ws10{word-spacing:1.960653pt;}
.ws3f{word-spacing:1.965953pt;}
.ws13a{word-spacing:2.008474pt;}
.wseb{word-spacing:2.019087pt;}
.ws122{word-spacing:2.056294pt;}
.ws23{word-spacing:2.125355pt;}
.ws22{word-spacing:2.178489pt;}
.wscd{word-spacing:2.199757pt;}
.ws111{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.ws4d{word-spacing:2.284756pt;}
.ws129{word-spacing:2.295398pt;}
.ws30{word-spacing:2.337890pt;}
.wsfc{word-spacing:2.391024pt;}
.ws147{word-spacing:2.391040pt;}
.ws157{word-spacing:2.438861pt;}
.ws112{word-spacing:2.444158pt;}
.wsf{word-spacing:2.486682pt;}
.wse2{word-spacing:2.497292pt;}
.wsd3{word-spacing:2.550426pt;}
.wsc{word-spacing:2.550432pt;}
.wsdc{word-spacing:2.603559pt;}
.ws145{word-spacing:2.630144pt;}
.ws4e{word-spacing:2.656693pt;}
.ws65{word-spacing:2.709827pt;}
.wsea{word-spacing:2.762961pt;}
.ws49{word-spacing:2.816095pt;}
.ws142{word-spacing:2.861517pt;}
.ws141{word-spacing:2.861986pt;}
.ws148{word-spacing:2.862626pt;}
.ws143{word-spacing:2.865391pt;}
.wse5{word-spacing:2.869229pt;}
.ws134{word-spacing:2.869248pt;}
.ws140{word-spacing:2.917069pt;}
.ws59{word-spacing:2.922363pt;}
.ws151{word-spacing:2.964890pt;}
.ws70{word-spacing:2.975497pt;}
.ws103{word-spacing:3.028630pt;}
.ws128{word-spacing:3.060531pt;}
.ws31{word-spacing:3.081764pt;}
.ws12a{word-spacing:3.086792pt;}
.ws1a{word-spacing:3.099061pt;}
.ws13e{word-spacing:3.108352pt;}
.ws106{word-spacing:3.134898pt;}
.ws1c{word-spacing:3.188032pt;}
.wse{word-spacing:3.203994pt;}
.ws124{word-spacing:3.208874pt;}
.ws10b{word-spacing:3.241166pt;}
.ws37{word-spacing:3.294300pt;}
.ws10a{word-spacing:3.347434pt;}
.wse9{word-spacing:3.400567pt;}
.ws14f{word-spacing:3.443098pt;}
.ws46{word-spacing:3.506835pt;}
.ws47{word-spacing:3.559969pt;}
.ws11{word-spacing:3.586560pt;}
.wsd9{word-spacing:3.613103pt;}
.ws41{word-spacing:3.666237pt;}
.wse7{word-spacing:3.772505pt;}
.ws61{word-spacing:3.825638pt;}
.ws11e{word-spacing:3.825664pt;}
.ws13f{word-spacing:3.873485pt;}
.ws117{word-spacing:3.931906pt;}
.ws14a{word-spacing:3.969126pt;}
.ws6d{word-spacing:3.985040pt;}
.wse3{word-spacing:4.144442pt;}
.ws5b{word-spacing:4.197575pt;}
.ws160{word-spacing:4.208230pt;}
.wsfb{word-spacing:4.250709pt;}
.ws12f{word-spacing:4.303872pt;}
.ws5f{word-spacing:4.356977pt;}
.ws13d{word-spacing:4.399514pt;}
.ws5e{word-spacing:4.410111pt;}
.ws13c{word-spacing:4.447334pt;}
.wsff{word-spacing:4.463245pt;}
.ws5a{word-spacing:4.516379pt;}
.ws6b{word-spacing:4.569513pt;}
.ws6a{word-spacing:4.622646pt;}
.ws113{word-spacing:4.675780pt;}
.wsec{word-spacing:4.728914pt;}
.ws4a{word-spacing:4.782048pt;}
.ws11f{word-spacing:4.829901pt;}
.ws7{word-spacing:4.872362pt;}
.ws4b{word-spacing:4.888316pt;}
.ws43{word-spacing:4.941450pt;}
.ws100{word-spacing:4.994583pt;}
.ws2c{word-spacing:5.047717pt;}
.ws10f{word-spacing:5.100851pt;}
.ws155{word-spacing:5.116826pt;}
.ws108{word-spacing:5.153985pt;}
.ws62{word-spacing:5.207119pt;}
.ws63{word-spacing:5.260253pt;}
.wsd1{word-spacing:5.313387pt;}
.ws4c{word-spacing:5.419654pt;}
.ws10e{word-spacing:5.472788pt;}
.wsde{word-spacing:5.685324pt;}
.ws10d{word-spacing:5.738458pt;}
.ws115{word-spacing:5.791591pt;}
.wse4{word-spacing:5.844725pt;}
.ws45{word-spacing:5.897859pt;}
.ws116{word-spacing:5.950993pt;}
.ws119{word-spacing:6.057261pt;}
.ws109{word-spacing:6.110395pt;}
.wscf{word-spacing:6.163529pt;}
.ws138{word-spacing:6.216704pt;}
.ws32{word-spacing:6.269796pt;}
.ws153{word-spacing:6.343175pt;}
.ws101{word-spacing:6.376064pt;}
.ws5d{word-spacing:6.429198pt;}
.ws102{word-spacing:6.482332pt;}
.ws42{word-spacing:6.588599pt;}
.wsd5{word-spacing:6.641733pt;}
.ws11a{word-spacing:6.854269pt;}
.ws118{word-spacing:7.279340pt;}
.ws69{word-spacing:7.332474pt;}
.wsd0{word-spacing:7.385607pt;}
.ws44{word-spacing:7.545009pt;}
.ws15a{word-spacing:7.651328pt;}
.ws120{word-spacing:7.746970pt;}
.ws5{word-spacing:8.740496pt;}
.wsd{word-spacing:9.483432pt;}
.ws6{word-spacing:10.525789pt;}
.ws158{word-spacing:10.568397pt;}
.ws14e{word-spacing:10.664038pt;}
.ws150{word-spacing:13.676749pt;}
.ws3{word-spacing:13.761632pt;}
.ws149{word-spacing:15.159194pt;}
.ws4{word-spacing:19.857270pt;}
.ws8{word-spacing:20.196125pt;}
.wsed{word-spacing:77.195987pt;}
.wsf3{word-spacing:177.467560pt;}
.wsf8{word-spacing:177.510067pt;}
.wsf5{word-spacing:193.407760pt;}
.wsf1{word-spacing:193.450267pt;}
.wsf7{word-spacing:236.153333pt;}
.wsf0{word-spacing:252.094667pt;}
.wsef{word-spacing:319.262667pt;}
.wsf2{word-spacing:320.324000pt;}
._1e{margin-left:-20.615940pt;}
._22{margin-left:-18.239610pt;}
._5{margin-left:-10.616218pt;}
._14{margin-left:-6.461188pt;}
._a{margin-left:-5.260288pt;}
._8{margin-left:-3.910662pt;}
._0{margin-left:-2.752326pt;}
._3{margin-left:-1.301776pt;}
._20{width:0.961920pt;}
._21{width:1.991152pt;}
._1d{width:2.922363pt;}
._11{width:4.330406pt;}
._30{width:9.734149pt;}
._1{width:11.530016pt;}
._d{width:13.177232pt;}
._c{width:14.920090pt;}
._b{width:16.450355pt;}
._13{width:17.502208pt;}
._15{width:19.234452pt;}
._1c{width:20.137735pt;}
._9{width:21.136794pt;}
._2{width:22.502128pt;}
._1b{width:23.857106pt;}
._19{width:25.132319pt;}
._12{width:26.487229pt;}
._18{width:27.470202pt;}
._38{width:28.463990pt;}
._4{width:29.648896pt;}
._1a{width:31.508383pt;}
._10{width:32.544490pt;}
._24{width:33.713435pt;}
._17{width:34.908950pt;}
._37{width:35.891923pt;}
._16{width:37.060868pt;}
._1f{width:39.079955pt;}
._6{width:48.376379pt;}
._23{width:63.654372pt;}
._7{width:74.947312pt;}
._26{width:109.698475pt;}
._27{width:217.859866pt;}
._2c{width:245.734123pt;}
._29{width:246.796803pt;}
._35{width:249.625139pt;}
._2b{width:262.737003pt;}
._34{width:349.664554pt;}
._28{width:371.024893pt;}
._2f{width:392.087591pt;}
._2e{width:414.541794pt;}
._36{width:434.807063pt;}
._2d{width:469.474973pt;}
._32{width:504.374927pt;}
._33{width:507.440106pt;}
._31{width:533.509371pt;}
._2a{width:591.641433pt;}
._e{width:804.617189pt;}
._25{width:2254.856267pt;}
._f{width:2276.109600pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:42.507200pt;}
.fsb{font-size:42.560000pt;}
.fse{font-size:44.292800pt;}
.fsa{font-size:47.820800pt;}
.fsd{font-size:48.000000pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsc{font-size:53.440000pt;}
.fsf{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:80.777458pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.ye3{bottom:-165.238267pt;}
.yf4{bottom:-113.157115pt;}
.yf3{bottom:-96.037611pt;}
.yf2{bottom:-78.998267pt;}
.yf1{bottom:-46.279067pt;}
.yf0{bottom:-30.838667pt;}
.yef{bottom:-15.398267pt;}
.y0{bottom:0.000000pt;}
.yee{bottom:4.522749pt;}
.y39{bottom:8.207950pt;}
.y38{bottom:23.914454pt;}
.y66{bottom:28.346667pt;}
.y6{bottom:31.933340pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y65{bottom:92.108000pt;}
.y36{bottom:93.018667pt;}
.y103{bottom:100.504000pt;}
.y13e{bottom:105.510667pt;}
.yc6{bottom:105.909333pt;}
.y9d{bottom:106.308000pt;}
.ydf{bottom:108.698667pt;}
.y64{bottom:108.844000pt;}
.y35{bottom:108.920000pt;}
.y18c{bottom:116.868000pt;}
.y102{bottom:117.241333pt;}
.y1c1{bottom:118.861333pt;}
.y13d{bottom:122.248000pt;}
.yc5{bottom:122.646667pt;}
.y9c{bottom:123.045333pt;}
.y22{bottom:123.790666pt;}
.y34{bottom:124.820000pt;}
.yde{bottom:125.436000pt;}
.y63{bottom:125.581333pt;}
.y156{bottom:129.222667pt;}
.y133{bottom:129.566667pt;}
.y18b{bottom:132.210667pt;}
.y101{bottom:133.978667pt;}
.y1c0{bottom:134.202667pt;}
.y13c{bottom:138.985333pt;}
.yc4{bottom:139.384000pt;}
.y9b{bottom:139.782667pt;}
.y33{bottom:140.720000pt;}
.ydd{bottom:142.173333pt;}
.y62{bottom:142.318667pt;}
.y155{bottom:144.844000pt;}
.y18a{bottom:147.553333pt;}
.y1bf{bottom:149.545333pt;}
.y100{bottom:150.716000pt;}
.y13b{bottom:155.722667pt;}
.yc3{bottom:156.121333pt;}
.y9a{bottom:156.520000pt;}
.y32{bottom:156.621333pt;}
.ydc{bottom:158.910667pt;}
.y61{bottom:159.056000pt;}
.y140{bottom:159.708000pt;}
.y132{bottom:160.472000pt;}
.y189{bottom:162.896000pt;}
.y1be{bottom:164.888000pt;}
.yff{bottom:167.453333pt;}
.y154{bottom:168.434667pt;}
.y13a{bottom:172.460000pt;}
.y31{bottom:172.521333pt;}
.yc2{bottom:172.858667pt;}
.y131{bottom:173.090667pt;}
.y99{bottom:173.257333pt;}
.y19{bottom:175.052000pt;}
.ydb{bottom:175.648000pt;}
.y60{bottom:175.793333pt;}
.y188{bottom:178.238667pt;}
.y1bd{bottom:180.230667pt;}
.y153{bottom:184.057333pt;}
.yfe{bottom:184.190667pt;}
.y130{bottom:185.710667pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y30{bottom:188.421333pt;}
.y139{bottom:189.197333pt;}
.yc1{bottom:189.596000pt;}
.y98{bottom:189.994667pt;}
.yda{bottom:192.385333pt;}
.y5f{bottom:192.530667pt;}
.y187{bottom:193.581333pt;}
.y1bc{bottom:195.573333pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y12f{bottom:198.329333pt;}
.y2f{bottom:204.322667pt;}
.y138{bottom:205.934667pt;}
.yc0{bottom:206.333333pt;}
.y97{bottom:206.732000pt;}
.yfd{bottom:207.570667pt;}
.y152{bottom:207.648000pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y186{bottom:208.924000pt;}
.yd9{bottom:209.122667pt;}
.y5e{bottom:209.268000pt;}
.y1bb{bottom:210.916000pt;}
.y12e{bottom:217.138667pt;}
.y137{bottom:222.672000pt;}
.ybf{bottom:223.070667pt;}
.y151{bottom:223.269333pt;}
.y96{bottom:223.469333pt;}
.y185{bottom:224.266667pt;}
.yfc{bottom:224.308000pt;}
.yd8{bottom:225.860000pt;}
.y5d{bottom:226.005333pt;}
.y1ba{bottom:226.258667pt;}
.y12d{bottom:229.758667pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y150{bottom:238.890667pt;}
.y136{bottom:239.409333pt;}
.y184{bottom:239.609333pt;}
.ybe{bottom:239.808000pt;}
.y95{bottom:240.206667pt;}
.yfb{bottom:241.044000pt;}
.y1b9{bottom:241.601333pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y12c{bottom:242.377333pt;}
.yd7{bottom:242.597333pt;}
.y5c{bottom:242.742667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y14f{bottom:254.512000pt;}
.y183{bottom:254.950667pt;}
.y12b{bottom:254.997333pt;}
.ybd{bottom:256.545333pt;}
.y94{bottom:256.944000pt;}
.yfa{bottom:257.781333pt;}
.yd6{bottom:259.334667pt;}
.y5b{bottom:259.480000pt;}
.y135{bottom:260.132000pt;}
.y2e{bottom:266.570667pt;}
.y12a{bottom:267.616000pt;}
.y14e{bottom:270.134667pt;}
.y182{bottom:270.293333pt;}
.y1b8{bottom:272.285333pt;}
.ybc{bottom:273.282667pt;}
.y93{bottom:273.681333pt;}
.yf9{bottom:274.518667pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.yd5{bottom:276.072000pt;}
.y5a{bottom:276.217333pt;}
.y129{bottom:280.236000pt;}
.y2d{bottom:282.470667pt;}
.y181{bottom:285.636000pt;}
.y14d{bottom:285.756000pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y1b7{bottom:287.628000pt;}
.ybb{bottom:290.020000pt;}
.y92{bottom:290.417333pt;}
.yf8{bottom:291.256000pt;}
.yd4{bottom:292.809333pt;}
.y128{bottom:292.854667pt;}
.y59{bottom:292.954667pt;}
.y2c{bottom:298.370667pt;}
.y180{bottom:300.978667pt;}
.y1b6{bottom:302.970667pt;}
.y127{bottom:305.474667pt;}
.yba{bottom:306.757333pt;}
.y91{bottom:307.154667pt;}
.y14c{bottom:309.346667pt;}
.y10{bottom:309.452000pt;}
.yd3{bottom:309.546667pt;}
.y58{bottom:313.677333pt;}
.y2b{bottom:314.270667pt;}
.y17f{bottom:316.321333pt;}
.y126{bottom:318.093333pt;}
.y1b5{bottom:318.313333pt;}
.yf7{bottom:321.093333pt;}
.yb9{bottom:323.494667pt;}
.y90{bottom:323.892000pt;}
.y14b{bottom:325.386667pt;}
.yd2{bottom:326.284000pt;}
.y134{bottom:327.478667pt;}
.y125{bottom:330.713333pt;}
.y17e{bottom:331.664000pt;}
.y1b4{bottom:333.656000pt;}
.y2a{bottom:338.141333pt;}
.yf6{bottom:338.188000pt;}
.yb8{bottom:340.232000pt;}
.y8f{bottom:340.629333pt;}
.yd1{bottom:343.021333pt;}
.y124{bottom:343.332000pt;}
.yf{bottom:343.809333pt;}
.y17d{bottom:347.006667pt;}
.y1b3{bottom:348.998667pt;}
.y29{bottom:354.042667pt;}
.yf5{bottom:355.284000pt;}
.y123{bottom:355.952000pt;}
.yb7{bottom:356.968000pt;}
.y8e{bottom:357.366667pt;}
.yd0{bottom:359.758667pt;}
.y17c{bottom:362.349333pt;}
.ye{bottom:362.706666pt;}
.y1b2{bottom:364.341333pt;}
.y122{bottom:368.570667pt;}
.y28{bottom:369.942667pt;}
.yb6{bottom:373.705333pt;}
.y8d{bottom:374.104000pt;}
.ycf{bottom:376.496000pt;}
.y17b{bottom:377.690667pt;}
.ye0{bottom:377.878667pt;}
.y1b1{bottom:379.684000pt;}
.y57{bottom:380.477333pt;}
.y121{bottom:381.190667pt;}
.y27{bottom:385.842667pt;}
.yb5{bottom:390.442667pt;}
.y8c{bottom:390.841333pt;}
.y17a{bottom:393.033333pt;}
.yce{bottom:393.233333pt;}
.y120{bottom:393.809333pt;}
.y104{bottom:394.428000pt;}
.y1b0{bottom:395.025333pt;}
.y56{bottom:397.772000pt;}
.y26{bottom:401.744000pt;}
.y11f{bottom:406.429333pt;}
.yb4{bottom:407.180000pt;}
.y8b{bottom:407.578667pt;}
.y179{bottom:408.376000pt;}
.ycd{bottom:409.970667pt;}
.y1af{bottom:410.368000pt;}
.y25{bottom:417.644000pt;}
.y11e{bottom:419.048000pt;}
.y178{bottom:423.718667pt;}
.yb3{bottom:423.917333pt;}
.y8a{bottom:424.316000pt;}
.y1ae{bottom:425.710667pt;}
.ycc{bottom:426.706667pt;}
.y105{bottom:427.902667pt;}
.y55{bottom:431.008000pt;}
.y11d{bottom:431.668000pt;}
.y24{bottom:433.544000pt;}
.y177{bottom:439.061333pt;}
.yb2{bottom:440.654667pt;}
.y89{bottom:441.053333pt;}
.ycb{bottom:443.444000pt;}
.y11c{bottom:444.286667pt;}
.yd{bottom:446.990669pt;}
.y54{bottom:448.302667pt;}
.y23{bottom:449.445333pt;}
.y176{bottom:454.404000pt;}
.y1ad{bottom:456.396000pt;}
.y11b{bottom:456.906667pt;}
.yb1{bottom:457.392000pt;}
.y88{bottom:457.790667pt;}
.yca{bottom:460.181333pt;}
.yc{bottom:462.990669pt;}
.y53{bottom:465.598667pt;}
.y11a{bottom:469.525333pt;}
.y175{bottom:469.746667pt;}
.y1ac{bottom:471.738667pt;}
.yb0{bottom:474.129333pt;}
.y87{bottom:474.528000pt;}
.yc9{bottom:476.918667pt;}
.yb{bottom:478.990666pt;}
.y119{bottom:482.145333pt;}
.y52{bottom:482.893333pt;}
.y174{bottom:485.089333pt;}
.y1ab{bottom:487.081333pt;}
.yaf{bottom:490.866667pt;}
.y86{bottom:491.265333pt;}
.y116{bottom:494.764000pt;}
.ya{bottom:494.990666pt;}
.yc8{bottom:497.641333pt;}
.y51{bottom:500.188000pt;}
.y173{bottom:500.432000pt;}
.y118{bottom:501.073333pt;}
.y1aa{bottom:502.424000pt;}
.y115{bottom:507.384000pt;}
.yae{bottom:507.604000pt;}
.y85{bottom:508.002667pt;}
.yc7{bottom:511.589333pt;}
.y117{bottom:513.693333pt;}
.y172{bottom:515.773333pt;}
.y50{bottom:517.484000pt;}
.y1a9{bottom:517.766667pt;}
.y114{bottom:520.002667pt;}
.yad{bottom:524.341333pt;}
.y84{bottom:524.740000pt;}
.y171{bottom:531.116000pt;}
.y113{bottom:532.622667pt;}
.y1a8{bottom:533.108000pt;}
.y4f{bottom:534.778667pt;}
.yac{bottom:541.078667pt;}
.y83{bottom:541.477333pt;}
.y112{bottom:545.241333pt;}
.y170{bottom:546.458667pt;}
.y1a7{bottom:548.450667pt;}
.y4e{bottom:552.073333pt;}
.yab{bottom:557.816000pt;}
.y111{bottom:557.861333pt;}
.y82{bottom:558.214667pt;}
.y16f{bottom:561.801333pt;}
.y1a6{bottom:563.793333pt;}
.y4d{bottom:569.369333pt;}
.y110{bottom:570.480000pt;}
.y9{bottom:573.786667pt;}
.yaa{bottom:574.553333pt;}
.y81{bottom:574.952000pt;}
.y16e{bottom:577.144000pt;}
.y1a5{bottom:579.136000pt;}
.y10d{bottom:583.100000pt;}
.y4c{bottom:586.664000pt;}
.y10f{bottom:589.409333pt;}
.ya9{bottom:591.290667pt;}
.y80{bottom:591.689333pt;}
.y16d{bottom:592.486667pt;}
.y8{bottom:592.685334pt;}
.y1a4{bottom:594.478667pt;}
.y10c{bottom:595.718667pt;}
.y10e{bottom:602.028000pt;}
.y4b{bottom:603.960000pt;}
.y16c{bottom:607.829333pt;}
.ya8{bottom:608.028000pt;}
.y10b{bottom:608.338667pt;}
.y7f{bottom:608.426667pt;}
.y1a3{bottom:609.821333pt;}
.y10a{bottom:620.957333pt;}
.y4a{bottom:621.254667pt;}
.ya7{bottom:624.765333pt;}
.y7e{bottom:625.164000pt;}
.y16b{bottom:627.156000pt;}
.y49{bottom:638.549333pt;}
.y109{bottom:639.978667pt;}
.y1a2{bottom:640.506667pt;}
.ya6{bottom:641.502667pt;}
.y7d{bottom:641.901333pt;}
.yed{bottom:642.282389pt;}
.y7{bottom:645.598667pt;}
.y108{bottom:652.598667pt;}
.y48{bottom:655.845333pt;}
.y1a1{bottom:655.848000pt;}
.y16a{bottom:657.044000pt;}
.ya5{bottom:658.240000pt;}
.y7c{bottom:658.638667pt;}
.yec{bottom:659.323877pt;}
.y107{bottom:665.217333pt;}
.y3{bottom:668.977329pt;}
.y1a0{bottom:671.190667pt;}
.y169{bottom:672.665333pt;}
.y47{bottom:673.140000pt;}
.ya4{bottom:674.977333pt;}
.y7b{bottom:675.376000pt;}
.yeb{bottom:676.443381pt;}
.y19f{bottom:686.533333pt;}
.y168{bottom:688.288000pt;}
.y46{bottom:690.434667pt;}
.ya3{bottom:691.714667pt;}
.y7a{bottom:692.113333pt;}
.yea{bottom:693.562885pt;}
.y106{bottom:694.585333pt;}
.y13f{bottom:695.700000pt;}
.y19e{bottom:701.876000pt;}
.y45{bottom:707.730667pt;}
.ya2{bottom:708.452000pt;}
.y79{bottom:708.850667pt;}
.ye9{bottom:710.602229pt;}
.y167{bottom:711.878667pt;}
.y19d{bottom:717.218667pt;}
.y44{bottom:725.025333pt;}
.ya1{bottom:725.189333pt;}
.y78{bottom:725.588000pt;}
.y166{bottom:727.500000pt;}
.ye8{bottom:727.722701pt;}
.y19c{bottom:732.561333pt;}
.ya0{bottom:741.926667pt;}
.y43{bottom:742.321333pt;}
.y77{bottom:742.324000pt;}
.y165{bottom:743.121333pt;}
.ye7{bottom:744.762045pt;}
.y19b{bottom:747.904000pt;}
.y9f{bottom:758.664000pt;}
.y164{bottom:758.742667pt;}
.y76{bottom:759.061333pt;}
.y42{bottom:759.616000pt;}
.ye6{bottom:761.881549pt;}
.y19a{bottom:763.246667pt;}
.y163{bottom:774.365333pt;}
.y14a{bottom:775.401333pt;}
.y75{bottom:775.798667pt;}
.y199{bottom:778.589333pt;}
.ye5{bottom:779.001053pt;}
.y9e{bottom:779.385333pt;}
.y2{bottom:781.661334pt;}
.y162{bottom:789.986667pt;}
.y149{bottom:792.138667pt;}
.y74{bottom:792.536000pt;}
.y41{bottom:792.713333pt;}
.y198{bottom:793.930667pt;}
.ye4{bottom:796.041733pt;}
.y161{bottom:805.608000pt;}
.y40{bottom:807.060000pt;}
.y148{bottom:808.874667pt;}
.y73{bottom:809.273333pt;}
.y160{bottom:821.229333pt;}
.y3f{bottom:821.406667pt;}
.y197{bottom:824.616000pt;}
.y147{bottom:825.612000pt;}
.y72{bottom:826.010667pt;}
.y15f{bottom:836.850667pt;}
.y196{bottom:839.958667pt;}
.y146{bottom:842.349333pt;}
.y71{bottom:842.748000pt;}
.ye2{bottom:844.681853pt;}
.y15e{bottom:852.472000pt;}
.ye1{bottom:853.241733pt;}
.y195{bottom:855.301333pt;}
.y145{bottom:859.086667pt;}
.y1{bottom:859.312000pt;}
.y70{bottom:859.485333pt;}
.y3e{bottom:863.776000pt;}
.y1c4{bottom:866.592000pt;}
.y15d{bottom:868.093333pt;}
.y194{bottom:870.644000pt;}
.y144{bottom:875.824000pt;}
.y6f{bottom:876.222667pt;}
.y1c3{bottom:881.934667pt;}
.y15c{bottom:883.714667pt;}
.y193{bottom:885.986667pt;}
.y143{bottom:892.561333pt;}
.y6e{bottom:892.960000pt;}
.y3d{bottom:896.453333pt;}
.y1c2{bottom:897.277333pt;}
.y15b{bottom:899.336000pt;}
.y192{bottom:901.329333pt;}
.y142{bottom:909.298667pt;}
.y6d{bottom:909.697333pt;}
.y15a{bottom:914.957333pt;}
.y191{bottom:916.670667pt;}
.y3c{bottom:921.560000pt;}
.y6c{bottom:926.434667pt;}
.y141{bottom:930.021333pt;}
.y190{bottom:932.013333pt;}
.y159{bottom:938.549333pt;}
.y6b{bottom:943.172000pt;}
.y3b{bottom:946.665333pt;}
.y18f{bottom:947.356000pt;}
.y158{bottom:954.170667pt;}
.y6a{bottom:959.909333pt;}
.y18e{bottom:962.698667pt;}
.y3a{bottom:971.770667pt;}
.y69{bottom:976.646667pt;}
.y157{bottom:977.762667pt;}
.y18d{bottom:978.041333pt;}
.y68{bottom:993.384000pt;}
.y37{bottom:1010.426667pt;}
.y67{bottom:1046.810667pt;}
.h1e{height:14.948784pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h1a{height:30.732706pt;}
.h16{height:30.797812pt;}
.hb{height:33.771789pt;}
.h10{height:38.415786pt;}
.h11{height:38.596538pt;}
.h18{height:38.670937pt;}
.he{height:38.947124pt;}
.h15{height:39.588281pt;}
.h7{height:40.853333pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h12{height:43.421286pt;}
.h1f{height:43.660390pt;}
.h19{height:44.648438pt;}
.hc{height:45.271688pt;}
.h13{height:48.245551pt;}
.h2{height:49.024000pt;}
.h17{height:49.708594pt;}
.hd{height:54.767117pt;}
.h1c{height:63.833871pt;}
.hf{height:69.148877pt;}
.h5{height:69.450667pt;}
.h1b{height:89.071204pt;}
.h1d{height:89.076538pt;}
.h4{height:105.826671pt;}
.h14{height:628.790667pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:175.580236pt;}
.w2{width:566.928019pt;}
.w5{width:630.658400pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.xc{left:-35.153600pt;}
.x0{left:0.000000pt;}
.x7{left:46.689333pt;}
.x5{left:47.621333pt;}
.x6{left:51.603593pt;}
.x21{left:55.625333pt;}
.x1a{left:58.008000pt;}
.x27{left:59.964000pt;}
.x19{left:62.365333pt;}
.x24{left:63.438667pt;}
.x23{left:64.602667pt;}
.x30{left:65.781333pt;}
.x1f{left:66.674667pt;}
.x2e{left:71.238667pt;}
.x56{left:75.710667pt;}
.xb{left:81.332267pt;}
.x2f{left:89.346667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x20{left:98.480000pt;}
.x2a{left:99.952000pt;}
.x29{left:105.297333pt;}
.x32{left:110.632000pt;}
.x28{left:119.297333pt;}
.x2c{left:127.724000pt;}
.x2b{left:135.116000pt;}
.xd{left:138.686400pt;}
.x18{left:143.016000pt;}
.x25{left:146.656000pt;}
.x22{left:149.456000pt;}
.x2d{left:150.986667pt;}
.x1b{left:154.605333pt;}
.x31{left:161.905333pt;}
.xe{left:167.000964pt;}
.x4{left:180.874667pt;}
.x55{left:219.865333pt;}
.x9{left:220.912000pt;}
.x8{left:221.858667pt;}
.x41{left:225.754667pt;}
.xa{left:250.204000pt;}
.x10{left:252.608000pt;}
.x53{left:260.494667pt;}
.x48{left:265.082667pt;}
.x54{left:271.421333pt;}
.x4b{left:273.410667pt;}
.x4c{left:284.336000pt;}
.x42{left:286.672000pt;}
.x33{left:293.892000pt;}
.x34{left:304.817333pt;}
.x49{left:326.000000pt;}
.x12{left:336.680000pt;}
.x13{left:337.860000pt;}
.x11{left:340.528000pt;}
.x4a{left:348.609333pt;}
.x52{left:351.892000pt;}
.x1d{left:354.092000pt;}
.x26{left:359.405333pt;}
.x1c{left:363.390667pt;}
.x37{left:401.446667pt;}
.x3{left:404.408000pt;}
.x38{left:412.372000pt;}
.x14{left:426.989333pt;}
.x15{left:433.764000pt;}
.x16{left:434.944000pt;}
.x1e{left:450.910667pt;}
.x50{left:457.809333pt;}
.x45{left:461.140000pt;}
.x3d{left:467.630667pt;}
.x51{left:468.736000pt;}
.x46{left:472.065333pt;}
.x3e{left:478.556000pt;}
.x39{left:490.432000pt;}
.x4d{left:494.801333pt;}
.x3a{left:501.357333pt;}
.x4e{left:505.726667pt;}
.x17{left:520.444000pt;}
.x3b{left:583.942667pt;}
.x3c{left:594.868000pt;}
.x3f{left:606.641333pt;}
.x40{left:617.566667pt;}
.xf{left:622.696124pt;}
.x4f{left:634.041333pt;}
.x43{left:649.782667pt;}
.x57{left:658.824000pt;}
.x44{left:660.708000pt;}
.x47{left:671.357333pt;}
.x35{left:673.584000pt;}
.x36{left:684.509333pt;}
}




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