
    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_a5dc7fd6d4d8e97d881d54ae.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7a06670d64c9b963fdd31c38.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f2a6b65dbd126f280a3122f9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_33f64c83ac3ac926c22d12d3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b82b15bf8f5d02b1a9e94bab.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2006f7e0d26619d20968ea6d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4aae0d7b5d0457a9e1b6d27f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.482000;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_7b535db6231ceacdb1e94a8c.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_f08f4b2e13916ec48fce410d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003418;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_0cb00d52645331f1e5c6a74e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e001c8d9ff1c5832e6de7c31.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.923828;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_bdc1567d76a3a6c3379df95e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.667000;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_7b535db6231ceacdb1e94a8c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_382083a4516c7dbede56c4ca.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.003418;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_bae27c6016f3fd7c62e4f1ea.woff2')format("woff");}.fff{font-family:fff;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f53df7f4797aaa0a940f3e46.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.923828;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_7b535db6231ceacdb1e94a8c.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_a8afe82540ee582809ab7b98.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.003418;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_7628e098af24132081b30ff5.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_7b535db6231ceacdb1e94a8c.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_f289afc0e7e6c44a7e710a53.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.003418;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_91657f7e601da65782492af8.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_f53df7f4797aaa0a940f3e46.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.923828;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);}
.mc{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m28{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);}
.m20{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m21{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);}
.m22{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);}
.m14{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);}
.mb{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);}
.m1{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);}
.me{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);}
.m16{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);}
.m19{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);}
.m10{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);}
.m15{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);}
.ma{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);}
.m7{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);}
.m9{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);}
.m1f{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);}
.m8{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m5{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);}
.m12{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.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);}
.m18{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m17{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);}
.m3{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);}
.m1e{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);}
.m13{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);}
.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:-17.358000px;}
.v7{vertical-align:-15.120000px;}
.v8{vertical-align:-10.494000px;}
.v6{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:8.970000px;}
.v3{vertical-align:15.120000px;}
.v5{vertical-align:16.488000px;}
.v4{vertical-align:19.524000px;}
.v1{vertical-align:21.702000px;}
.ls2e{letter-spacing:-0.594000px;}
.ls3f{letter-spacing:-0.540000px;}
.ls27{letter-spacing:-0.537840px;}
.ls3e{letter-spacing:-0.486000px;}
.ls40{letter-spacing:-0.478080px;}
.ls2d{letter-spacing:-0.378000px;}
.ls26{letter-spacing:-0.358560px;}
.ls21{letter-spacing:-0.337680px;}
.ls3c{letter-spacing:-0.324000px;}
.ls23{letter-spacing:-0.241200px;}
.ls25{letter-spacing:-0.239040px;}
.ls2a{letter-spacing:-0.179280px;}
.ls52{letter-spacing:-0.162000px;}
.ls24{letter-spacing:-0.119520px;}
.ls28{letter-spacing:-0.059760px;}
.ls20{letter-spacing:-0.048240px;}
.lsc{letter-spacing:0.000000px;}
.ls5e{letter-spacing:0.000253px;}
.ls1{letter-spacing:0.000600px;}
.ls5a{letter-spacing:0.000676px;}
.ls59{letter-spacing:0.000800px;}
.ls57{letter-spacing:0.001254px;}
.ls4{letter-spacing:0.002725px;}
.ls5b{letter-spacing:0.002841px;}
.ls5{letter-spacing:0.004766px;}
.ls22{letter-spacing:0.048240px;}
.ls2b{letter-spacing:0.054000px;}
.ls29{letter-spacing:0.059760px;}
.ls33{letter-spacing:0.083664px;}
.ls19{letter-spacing:0.108000px;}
.ls48{letter-spacing:0.131472px;}
.ls18{letter-spacing:0.162000px;}
.ls1a{letter-spacing:0.179280px;}
.ls14{letter-spacing:0.221112px;}
.ls13{letter-spacing:0.239040px;}
.ls42{letter-spacing:0.262944px;}
.ls2c{letter-spacing:0.270000px;}
.ls36{letter-spacing:0.277920px;}
.ls16{letter-spacing:0.286848px;}
.ls34{letter-spacing:0.292824px;}
.ls3d{letter-spacing:0.298800px;}
.ls44{letter-spacing:0.352584px;}
.lsf{letter-spacing:0.358560px;}
.ls47{letter-spacing:0.376488px;}
.ls17{letter-spacing:0.378000px;}
.ls32{letter-spacing:0.400392px;}
.ls1d{letter-spacing:0.542815px;}
.ls3b{letter-spacing:0.597600px;}
.ls12{letter-spacing:0.896400px;}
.ls38{letter-spacing:1.123488px;}
.lsd{letter-spacing:1.613520px;}
.ls4f{letter-spacing:1.620000px;}
.ls46{letter-spacing:1.631448px;}
.ls35{letter-spacing:2.322000px;}
.ls4e{letter-spacing:2.330640px;}
.ls4d{letter-spacing:2.396376px;}
.ls6{letter-spacing:2.989200px;}
.ls4a{letter-spacing:2.992457px;}
.ls7{letter-spacing:2.998354px;}
.ls41{letter-spacing:3.047760px;}
.ls49{letter-spacing:3.507900px;}
.ls1b{letter-spacing:3.513900px;}
.ls4c{letter-spacing:3.950136px;}
.ls15{letter-spacing:4.482000px;}
.ls43{letter-spacing:5.199120px;}
.ls11{letter-spacing:5.916240px;}
.ls37{letter-spacing:6.633360px;}
.ls45{letter-spacing:6.812640px;}
.lse{letter-spacing:7.350480px;}
.ls10{letter-spacing:7.380360px;}
.ls2{letter-spacing:10.461299px;}
.ls0{letter-spacing:10.461300px;}
.lsb{letter-spacing:11.954850px;}
.ls5c{letter-spacing:12.742237px;}
.ls64{letter-spacing:13.232263px;}
.ls63{letter-spacing:13.273929px;}
.ls60{letter-spacing:13.333783px;}
.ls54{letter-spacing:13.448400px;}
.ls56{letter-spacing:13.454400px;}
.ls5d{letter-spacing:13.493228px;}
.ls5f{letter-spacing:13.681631px;}
.ls1f{letter-spacing:14.824349px;}
.ls8{letter-spacing:14.945108px;}
.ls1e{letter-spacing:14.985767px;}
.ls58{letter-spacing:15.079812px;}
.ls31{letter-spacing:15.663483px;}
.ls1c{letter-spacing:15.699483px;}
.ls61{letter-spacing:15.938635px;}
.ls39{letter-spacing:16.443455px;}
.ls55{letter-spacing:17.238635px;}
.ls65{letter-spacing:17.520988px;}
.ls51{letter-spacing:17.965200px;}
.ls50{letter-spacing:17.971951px;}
.ls62{letter-spacing:18.262165px;}
.ls4b{letter-spacing:18.505200px;}
.ls53{letter-spacing:18.631951px;}
.ls30{letter-spacing:18.679951px;}
.ls2f{letter-spacing:19.008641px;}
.ls3a{letter-spacing:19.785724px;}
.ls3{letter-spacing:57.415200px;}
.ls9{letter-spacing:62.761200px;}
.lsa{letter-spacing:64.321654px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws48{word-spacing:-59.760000px;}
.ws99{word-spacing:-33.952541px;}
.ws9d{word-spacing:-15.537600px;}
.ws9f{word-spacing:-15.298560px;}
.ws50{word-spacing:-15.179040px;}
.ws49{word-spacing:-15.119280px;}
.ws4d{word-spacing:-14.999760px;}
.wse{word-spacing:-14.943900px;}
.ws4b{word-spacing:-14.940000px;}
.ws4c{word-spacing:-14.880240px;}
.ws4a{word-spacing:-14.820480px;}
.ws4e{word-spacing:-14.760720px;}
.ws4f{word-spacing:-14.700960px;}
.ws47{word-spacing:-14.581440px;}
.wse8{word-spacing:-13.608000px;}
.ws51{word-spacing:-13.554000px;}
.ws52{word-spacing:-13.500000px;}
.ws107{word-spacing:-13.449600px;}
.wsa0{word-spacing:-12.960000px;}
.ws45{word-spacing:-12.060000px;}
.ws29{word-spacing:-11.955150px;}
.ws44{word-spacing:-11.722320px;}
.wsd{word-spacing:-11.357400px;}
.ws2{word-spacing:-10.460700px;}
.ws46{word-spacing:-9.000000px;}
.ws9e{word-spacing:-8.676000px;}
.wsab{word-spacing:-3.286800px;}
.wsd7{word-spacing:-3.167280px;}
.wsd2{word-spacing:-3.108331px;}
.wsaa{word-spacing:-2.868480px;}
.ws8a{word-spacing:-2.754000px;}
.ws60{word-spacing:-2.570351px;}
.wsc1{word-spacing:-2.569680px;}
.ws30{word-spacing:-2.331248px;}
.wsb2{word-spacing:-2.330640px;}
.ws2f{word-spacing:-2.271473px;}
.ws123{word-spacing:-2.098138px;}
.ws11d{word-spacing:-1.990541px;}
.wsa4{word-spacing:-1.912819px;}
.ws27{word-spacing:-1.853044px;}
.wsb1{word-spacing:-1.852560px;}
.ws94{word-spacing:-1.793268px;}
.wsb3{word-spacing:-1.733040px;}
.wsfd{word-spacing:-1.673717px;}
.wsc5{word-spacing:-1.613941px;}
.wsae{word-spacing:-1.434240px;}
.wsea{word-spacing:-1.237363px;}
.ws9c{word-spacing:-1.195512px;}
.ws3{word-spacing:-1.171598px;}
.ws7e{word-spacing:-1.135440px;}
.ws5{word-spacing:-1.046070px;}
.wseb{word-spacing:-1.022170px;}
.ws7f{word-spacing:-1.015920px;}
.ws116{word-spacing:-0.968371px;}
.wsd1{word-spacing:-0.956410px;}
.ws89{word-spacing:-0.918000px;}
.ws31{word-spacing:-0.896634px;}
.wsdc{word-spacing:-0.896400px;}
.ws17{word-spacing:-0.860774px;}
.ws85{word-spacing:-0.810000px;}
.ws18{word-spacing:-0.806976px;}
.ws92{word-spacing:-0.777083px;}
.ws5e{word-spacing:-0.717307px;}
.wsd5{word-spacing:-0.717120px;}
.ws83{word-spacing:-0.702000px;}
.ws117{word-spacing:-0.699379px;}
.ws5c{word-spacing:-0.657532px;}
.ws115{word-spacing:-0.645581px;}
.ws2e{word-spacing:-0.597756px;}
.ws8d{word-spacing:-0.594000px;}
.ws62{word-spacing:-0.578880px;}
.ws2d{word-spacing:-0.537980px;}
.ws42{word-spacing:-0.418429px;}
.ws81{word-spacing:-0.418320px;}
.ws36{word-spacing:-0.358654px;}
.ws67{word-spacing:-0.358560px;}
.ws15{word-spacing:-0.322790px;}
.ws39{word-spacing:-0.298878px;}
.ws80{word-spacing:-0.298800px;}
.wse9{word-spacing:-0.268992px;}
.ws5f{word-spacing:-0.239102px;}
.wsaf{word-spacing:-0.239040px;}
.ws84{word-spacing:-0.216000px;}
.ws1c{word-spacing:-0.215194px;}
.ws1f{word-spacing:-0.179327px;}
.ws6e{word-spacing:-0.179280px;}
.ws54{word-spacing:-0.161395px;}
.ws20{word-spacing:-0.119551px;}
.wsb6{word-spacing:-0.119520px;}
.ws100{word-spacing:-0.107597px;}
.ws11{word-spacing:-0.059776px;}
.ws77{word-spacing:-0.059760px;}
.ws53{word-spacing:-0.053798px;}
.ws2a{word-spacing:-0.047821px;}
.wsf{word-spacing:-0.002392px;}
.ws1{word-spacing:0.000000px;}
.ws61{word-spacing:0.048240px;}
.ws13{word-spacing:0.053798px;}
.wsdb{word-spacing:0.054000px;}
.wsf1{word-spacing:0.059760px;}
.ws23{word-spacing:0.059776px;}
.ws19{word-spacing:0.107597px;}
.wsbe{word-spacing:0.108000px;}
.ws8e{word-spacing:0.119520px;}
.ws22{word-spacing:0.119551px;}
.wsec{word-spacing:0.161395px;}
.ws26{word-spacing:0.179327px;}
.ws105{word-spacing:0.215194px;}
.ws8f{word-spacing:0.239040px;}
.ws2c{word-spacing:0.239102px;}
.ws63{word-spacing:0.241200px;}
.ws102{word-spacing:0.268992px;}
.ws76{word-spacing:0.298800px;}
.ws25{word-spacing:0.298878px;}
.ws103{word-spacing:0.322790px;}
.ws6c{word-spacing:0.358560px;}
.ws3f{word-spacing:0.358654px;}
.wsb0{word-spacing:0.418320px;}
.ws9b{word-spacing:0.418429px;}
.wsc3{word-spacing:0.478080px;}
.ws14{word-spacing:0.484186px;}
.ws6f{word-spacing:0.537840px;}
.wse7{word-spacing:0.537980px;}
.ws86{word-spacing:0.540000px;}
.ws11f{word-spacing:0.591782px;}
.ws88{word-spacing:0.594000px;}
.wse6{word-spacing:0.597756px;}
.ws120{word-spacing:0.645581px;}
.ws90{word-spacing:0.657532px;}
.ws71{word-spacing:0.717120px;}
.ws87{word-spacing:0.756000px;}
.wsc9{word-spacing:0.777083px;}
.wsf7{word-spacing:0.810000px;}
.ws34{word-spacing:0.836858px;}
.wsf8{word-spacing:0.864000px;}
.ws3e{word-spacing:0.896634px;}
.wsf2{word-spacing:0.956160px;}
.wsed{word-spacing:0.956410px;}
.ws4{word-spacing:1.004227px;}
.ws72{word-spacing:1.015920px;}
.ws3a{word-spacing:1.016185px;}
.ws93{word-spacing:1.075961px;}
.ws7c{word-spacing:1.135440px;}
.ws24{word-spacing:1.135736px;}
.ws3b{word-spacing:1.195512px;}
.ws111{word-spacing:1.237363px;}
.ws75{word-spacing:1.254960px;}
.ws74{word-spacing:1.434240px;}
.ws35{word-spacing:1.434614px;}
.ws127{word-spacing:1.452557px;}
.wsf5{word-spacing:1.458000px;}
.wscb{word-spacing:1.554166px;}
.wsf9{word-spacing:1.566000px;}
.wsc8{word-spacing:1.613941px;}
.ws113{word-spacing:1.613952px;}
.ws2b{word-spacing:1.673717px;}
.ws66{word-spacing:1.733040px;}
.wsc6{word-spacing:1.733492px;}
.wsfa{word-spacing:1.782000px;}
.ws70{word-spacing:1.852560px;}
.ws91{word-spacing:1.853044px;}
.ws56{word-spacing:1.882944px;}
.ws124{word-spacing:1.936742px;}
.wsb4{word-spacing:1.972080px;}
.ws38{word-spacing:1.972595px;}
.wsf6{word-spacing:1.998000px;}
.ws3c{word-spacing:2.032370px;}
.ws10d{word-spacing:2.044339px;}
.ws57{word-spacing:2.092146px;}
.wsf3{word-spacing:2.151360px;}
.ws3d{word-spacing:2.151922px;}
.ws16{word-spacing:2.205734px;}
.wsa6{word-spacing:2.211697px;}
.wsba{word-spacing:2.214000px;}
.wsbc{word-spacing:2.268000px;}
.ws21{word-spacing:2.391024px;}
.ws79{word-spacing:2.450160px;}
.ws126{word-spacing:2.474726px;}
.ws0{word-spacing:2.511541px;}
.ws133{word-spacing:2.528525px;}
.ws7a{word-spacing:2.569680px;}
.wsff{word-spacing:2.630126px;}
.wsd8{word-spacing:2.689200px;}
.ws41{word-spacing:2.689902px;}
.wsa2{word-spacing:2.743718px;}
.ws43{word-spacing:2.749678px;}
.wsbb{word-spacing:2.808000px;}
.ws40{word-spacing:2.809453px;}
.wsd4{word-spacing:2.868480px;}
.wscd{word-spacing:2.869229px;}
.ws12{word-spacing:2.869236px;}
.ws9a{word-spacing:2.929004px;}
.ws10a{word-spacing:2.958912px;}
.wsd3{word-spacing:2.988780px;}
.wsa1{word-spacing:3.066509px;}
.ws73{word-spacing:3.167280px;}
.ws1d{word-spacing:3.219667px;}
.ws128{word-spacing:3.221808px;}
.ws12d{word-spacing:3.225418px;}
.ws12f{word-spacing:3.227904px;}
.wsd9{word-spacing:3.286800px;}
.wsa7{word-spacing:3.287658px;}
.wsce{word-spacing:3.466985px;}
.ws1a{word-spacing:3.496896px;}
.wsfb{word-spacing:3.510000px;}
.wsc4{word-spacing:3.526760px;}
.wsac{word-spacing:3.585600px;}
.ws1e{word-spacing:3.586536px;}
.wsa3{word-spacing:3.604493px;}
.ws58{word-spacing:3.646312px;}
.ws118{word-spacing:3.658291px;}
.ws10c{word-spacing:3.765888px;}
.ws64{word-spacing:3.884400px;}
.ws37{word-spacing:3.945190px;}
.ws65{word-spacing:4.003920px;}
.wscc{word-spacing:4.004965px;}
.ws98{word-spacing:4.064741px;}
.ws1b{word-spacing:4.088678px;}
.ws32{word-spacing:4.124516px;}
.ws11a{word-spacing:4.142477px;}
.ws8b{word-spacing:4.212000px;}
.wsf4{word-spacing:4.242960px;}
.wsdf{word-spacing:4.302720px;}
.wsb7{word-spacing:4.320000px;}
.ws8c{word-spacing:4.374000px;}
.wsb8{word-spacing:4.428000px;}
.wse0{word-spacing:4.541760px;}
.ws7b{word-spacing:4.601520px;}
.ws5d{word-spacing:4.602721px;}
.ws7d{word-spacing:4.721040px;}
.wsb{word-spacing:4.770079px;}
.wsd0{word-spacing:4.782048px;}
.ws12c{word-spacing:4.788058px;}
.wsa5{word-spacing:4.841824px;}
.wsc{word-spacing:4.853765px;}
.wsb9{word-spacing:4.968000px;}
.wsc7{word-spacing:5.003251px;}
.wsd6{word-spacing:5.019840px;}
.wsa8{word-spacing:5.021150px;}
.ws55{word-spacing:5.057050px;}
.ws59{word-spacing:5.200477px;}
.wsa9{word-spacing:5.258880px;}
.ws5a{word-spacing:5.260253px;}
.ws78{word-spacing:5.318640px;}
.wsca{word-spacing:5.320028px;}
.ws10e{word-spacing:5.379840px;}
.wsc2{word-spacing:5.438160px;}
.ws6a{word-spacing:5.557680px;}
.wsfc{word-spacing:5.559131px;}
.ws96{word-spacing:5.618906px;}
.ws97{word-spacing:5.678682px;}
.ws109{word-spacing:5.810227px;}
.wsbd{word-spacing:5.886000px;}
.wsfe{word-spacing:5.917784px;}
.ws121{word-spacing:5.974500px;}
.ws6b{word-spacing:6.035760px;}
.ws104{word-spacing:6.079219px;}
.ws6d{word-spacing:6.155280px;}
.ws12a{word-spacing:6.348211px;}
.wsc0{word-spacing:6.454080px;}
.ws5b{word-spacing:6.621000px;}
.wsad{word-spacing:6.752880px;}
.wsbf{word-spacing:6.872400px;}
.ws69{word-spacing:7.051680px;}
.wsee{word-spacing:7.113296px;}
.ws101{word-spacing:7.155187px;}
.wscf{word-spacing:7.471950px;}
.wsb5{word-spacing:7.529760px;}
.ws68{word-spacing:7.649280px;}
.ws9{word-spacing:7.782761px;}
.ws95{word-spacing:7.830604px;}
.ws82{word-spacing:8.246880px;}
.wsda{word-spacing:8.366400px;}
.wsf0{word-spacing:9.203040px;}
.wse2{word-spacing:9.382320px;}
.wse1{word-spacing:9.621360px;}
.wsef{word-spacing:9.800640px;}
.wsde{word-spacing:10.099440px;}
.wsdd{word-spacing:10.517760px;}
.wse3{word-spacing:11.115360px;}
.wse4{word-spacing:11.234880px;}
.ws28{word-spacing:11.906776px;}
.wse5{word-spacing:11.952000px;}
.ws7{word-spacing:12.176255px;}
.ws12e{word-spacing:13.180608px;}
.ws11e{word-spacing:13.388669px;}
.ws11b{word-spacing:13.390512px;}
.ws108{word-spacing:13.395802px;}
.ws125{word-spacing:15.332544px;}
.ws8{word-spacing:16.109478px;}
.ws10b{word-spacing:16.354714px;}
.ws33{word-spacing:16.438290px;}
.ws130{word-spacing:16.462310px;}
.ws122{word-spacing:16.516109px;}
.ws132{word-spacing:16.615373px;}
.ws110{word-spacing:16.616832px;}
.ws106{word-spacing:16.618992px;}
.ws131{word-spacing:16.619088px;}
.ws129{word-spacing:16.619155px;}
.ws10f{word-spacing:16.621373px;}
.ws114{word-spacing:16.623706px;}
.ws119{word-spacing:16.677504px;}
.ws11c{word-spacing:16.892698px;}
.ws12b{word-spacing:17.215488px;}
.ws112{word-spacing:20.819981px;}
.wsa{word-spacing:26.109907px;}
.ws6{word-spacing:26.840252px;}
.ws10{word-spacing:55.008708px;}
._21{margin-left:-24.410527px;}
._1c{margin-left:-19.008641px;}
._1a{margin-left:-7.635748px;}
._8{margin-left:-6.168857px;}
._9{margin-left:-4.399495px;}
._0{margin-left:-3.054524px;}
._4{margin-left:-1.506341px;}
._13{width:1.003392px;}
._3{width:2.301354px;}
._6{width:3.695269px;}
._17{width:4.866408px;}
._16{width:6.843096px;}
._15{width:8.269992px;}
._1d{width:9.633888px;}
._1{width:12.971149px;}
._f{width:14.822886px;}
._c{width:16.623706px;}
._a{width:18.076248px;}
._e{width:19.199918px;}
._20{width:20.455206px;}
._1e{width:21.519216px;}
._19{width:22.559303px;}
._b{width:23.617498px;}
._2{width:25.944936px;}
._12{width:27.437000px;}
._d{width:29.373926px;}
._5{width:30.587087px;}
._18{width:32.279040px;}
._1f{width:34.299244px;}
._1b{width:42.321125px;}
._7{width:54.385903px;}
._23{width:61.868160px;}
._22{width:88.767360px;}
._10{width:295.196564px;}
._14{width:1978.632389px;}
._11{width:2438.301600px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(76,43,97);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:33.120000px;}
.fs5{font-size:35.865600px;}
.fsf{font-size:35.976600px;}
.fsb{font-size:36.000000px;}
.fs0{font-size:41.842800px;}
.fsd{font-size:43.600200px;}
.fs4{font-size:45.429600px;}
.fs8{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fs9{font-size:48.240000px;}
.fs7{font-size:53.798400px;}
.fsc{font-size:54.000000px;}
.fsa{font-size:59.760000px;}
.fs2{font-size:59.775600px;}
.fse{font-size:62.286600px;}
.fs1{font-size:75.592800px;}
.fs3{font-size:107.596800px;}
.y112{bottom:-458.596500px;}
.y13b{bottom:-399.881220px;}
.yd0{bottom:-389.128500px;}
.y13a{bottom:-380.623560px;}
.y139{bottom:-361.365900px;}
.y138{bottom:-342.108240px;}
.y137{bottom:-323.029860px;}
.y136{bottom:-303.772200px;}
.yf8{bottom:-302.706540px;}
.y135{bottom:-284.514540px;}
.yf7{bottom:-283.628160px;}
.y134{bottom:-265.256880px;}
.yf6{bottom:-264.370500px;}
.y133{bottom:-245.999220px;}
.yf5{bottom:-245.112840px;}
.y132{bottom:-226.920840px;}
.yf4{bottom:-225.855180px;}
.y80{bottom:-218.262000px;}
.y15e{bottom:-217.141500px;}
.y131{bottom:-207.663180px;}
.yf3{bottom:-206.597520px;}
.y130{bottom:-188.405520px;}
.yf2{bottom:-187.519140px;}
.y12f{bottom:-169.147860px;}
.yf1{bottom:-168.261480px;}
.y12e{bottom:-149.890200px;}
.yf0{bottom:-149.003820px;}
.y9f{bottom:-146.259660px;}
.y12d{bottom:-130.811820px;}
.yef{bottom:-129.746160px;}
.y9e{bottom:-127.002000px;}
.y17b{bottom:-125.697000px;}
.y12c{bottom:-111.554160px;}
.yee{bottom:-110.488500px;}
.y17a{bottom:-108.417000px;}
.y12b{bottom:-92.296500px;}
.y179{bottom:-91.137000px;}
.y9d{bottom:-90.282000px;}
.yed{bottom:-73.768500px;}
.y178{bottom:-73.681500px;}
.y9c{bottom:-73.002000px;}
.yec{bottom:-56.488500px;}
.y177{bottom:-56.401500px;}
.y9b{bottom:-55.722000px;}
.y12a{bottom:-55.576500px;}
.yeb{bottom:-39.208500px;}
.y176{bottom:-39.121500px;}
.y9a{bottom:-38.442000px;}
.y129{bottom:-38.296500px;}
.yea{bottom:-21.928500px;}
.y175{bottom:-21.841500px;}
.y99{bottom:-21.162000px;}
.y128{bottom:-21.016500px;}
.y0{bottom:0.000000px;}
.ye9{bottom:0.576180px;}
.y174{bottom:0.654900px;}
.y98{bottom:1.364100px;}
.y127{bottom:1.514820px;}
.y1b{bottom:20.693907px;}
.y4a{bottom:31.890000px;}
.y104{bottom:91.665000px;}
.y193{bottom:94.621500px;}
.y157{bottom:94.858500px;}
.y192{bottom:97.351500px;}
.y194{bottom:102.775500px;}
.yc4{bottom:103.773000px;}
.y205{bottom:104.503500px;}
.y19{bottom:104.646000px;}
.y102{bottom:110.494500px;}
.y1cc{bottom:111.004500px;}
.y156{bottom:113.688000px;}
.y191{bottom:113.940000px;}
.y103{bottom:115.920000px;}
.y190{bottom:116.181000px;}
.y49{bottom:116.340000px;}
.y204{bottom:121.762500px;}
.y18{bottom:122.535000px;}
.yc3{bottom:122.602500px;}
.y1cb{bottom:125.641500px;}
.y1ca{bottom:128.265000px;}
.y101{bottom:129.324000px;}
.y18e{bottom:132.280500px;}
.y155{bottom:132.517500px;}
.y18d{bottom:135.010500px;}
.y48{bottom:135.169500px;}
.y203{bottom:139.023000px;}
.y17{bottom:140.422500px;}
.y18f{bottom:140.434500px;}
.yc2{bottom:141.432000px;}
.y1c9{bottom:145.524000px;}
.y100{bottom:148.153500px;}
.y154{bottom:151.347000px;}
.y18c{bottom:153.840000px;}
.y47{bottom:153.999000px;}
.y202{bottom:156.283500px;}
.y16{bottom:158.310000px;}
.yc1{bottom:160.260000px;}
.y1c8{bottom:162.784500px;}
.yff{bottom:166.983000px;}
.y153{bottom:170.176500px;}
.y18a{bottom:172.669500px;}
.y46{bottom:172.828500px;}
.y201{bottom:173.544000px;}
.y15{bottom:176.199000px;}
.y18b{bottom:178.093500px;}
.yc0{bottom:179.089500px;}
.y1c7{bottom:180.045000px;}
.yfe{bottom:185.812500px;}
.y152{bottom:189.006000px;}
.y200{bottom:190.804500px;}
.y189{bottom:191.499000px;}
.y45{bottom:191.658000px;}
.y14{bottom:194.086500px;}
.y1c6{bottom:197.305500px;}
.ybf{bottom:197.919000px;}
.yfd{bottom:204.642000px;}
.y151{bottom:207.835500px;}
.y1ff{bottom:208.065000px;}
.y188{bottom:208.086000px;}
.y187{bottom:210.328500px;}
.y44{bottom:210.487500px;}
.y13{bottom:211.974000px;}
.y1c5{bottom:214.566000px;}
.ybe{bottom:221.232000px;}
.y1fe{bottom:225.325500px;}
.y150{bottom:226.665000px;}
.y186{bottom:229.158000px;}
.y43{bottom:229.317000px;}
.y12{bottom:229.863000px;}
.y1c4{bottom:231.826500px;}
.yfc{bottom:235.954500px;}
.y7c{bottom:238.999500px;}
.y1fd{bottom:242.586000px;}
.y14f{bottom:245.494500px;}
.y185{bottom:247.987500px;}
.y42{bottom:248.146500px;}
.ye8{bottom:248.251500px;}
.y1c3{bottom:249.087000px;}
.ybd{bottom:254.856000px;}
.yfb{bottom:255.187500px;}
.y126{bottom:255.674100px;}
.y7b{bottom:257.829000px;}
.y1fc{bottom:259.846500px;}
.y14e{bottom:264.324000px;}
.y1c2{bottom:266.347500px;}
.y184{bottom:266.817000px;}
.y41{bottom:266.976000px;}
.ye7{bottom:267.333840px;}
.ybc{bottom:273.685500px;}
.yfa{bottom:274.420500px;}
.y125{bottom:274.931760px;}
.y7a{bottom:276.658500px;}
.y1fb{bottom:277.105500px;}
.y14d{bottom:283.152000px;}
.y1c1{bottom:283.608000px;}
.y40{bottom:285.805500px;}
.ye6{bottom:286.604820px;}
.yba{bottom:290.274000px;}
.yb9{bottom:292.515000px;}
.yf9{bottom:293.652000px;}
.y124{bottom:294.010140px;}
.y1fa{bottom:294.366000px;}
.y78{bottom:295.488000px;}
.ybb{bottom:297.940500px;}
.y11{bottom:300.154500px;}
.y183{bottom:300.382500px;}
.y1c0{bottom:300.867000px;}
.y79{bottom:300.912000px;}
.y14c{bottom:301.981500px;}
.y3f{bottom:304.635000px;}
.ye5{bottom:305.862480px;}
.yb7{bottom:311.344500px;}
.y1f9{bottom:311.626500px;}
.y123{bottom:313.267800px;}
.y76{bottom:314.317500px;}
.ycd{bottom:316.081500px;}
.yb8{bottom:316.768500px;}
.y10{bottom:318.043500px;}
.y1bf{bottom:318.127500px;}
.y182{bottom:319.615500px;}
.y77{bottom:319.741500px;}
.y14b{bottom:320.811000px;}
.y3e{bottom:323.464500px;}
.ye4{bottom:325.120140px;}
.y1f8{bottom:328.887000px;}
.yb6{bottom:330.174000px;}
.y122{bottom:332.525460px;}
.y75{bottom:333.145500px;}
.yf{bottom:335.931000px;}
.y180{bottom:338.848500px;}
.y14a{bottom:339.640500px;}
.y1be{bottom:339.871500px;}
.y3d{bottom:342.294000px;}
.y181{bottom:343.729500px;}
.ye3{bottom:344.377800px;}
.y1f7{bottom:346.147500px;}
.yb5{bottom:349.003500px;}
.y121{bottom:351.783120px;}
.y74{bottom:351.975000px;}
.ye{bottom:353.818500px;}
.y17f{bottom:358.081500px;}
.y149{bottom:358.470000px;}
.y3c{bottom:361.123500px;}
.y1f6{bottom:363.408000px;}
.ye2{bottom:363.456180px;}
.yb4{bottom:367.833000px;}
.y73{bottom:370.804500px;}
.y120{bottom:371.040780px;}
.y1bd{bottom:373.495500px;}
.y148{bottom:377.299500px;}
.y17e{bottom:377.313000px;}
.y3b{bottom:379.953000px;}
.y1f5{bottom:380.668500px;}
.yd{bottom:380.673000px;}
.ye1{bottom:382.713840px;}
.yb2{bottom:386.662500px;}
.y72{bottom:389.634000px;}
.y11f{bottom:390.119160px;}
.yb3{bottom:392.086500px;}
.y147{bottom:396.129000px;}
.y17d{bottom:396.546000px;}
.y1f4{bottom:397.929000px;}
.yc{bottom:398.562000px;}
.y3a{bottom:398.782500px;}
.y1bc{bottom:400.036500px;}
.ye0{bottom:401.973840px;}
.yb1{bottom:405.492000px;}
.y71{bottom:408.463500px;}
.y11e{bottom:409.376820px;}
.y146{bottom:414.958500px;}
.y1f3{bottom:415.188000px;}
.y97{bottom:415.725000px;}
.y17c{bottom:415.779000px;}
.yb{bottom:416.449500px;}
.y1bb{bottom:417.610500px;}
.y39{bottom:417.612000px;}
.ydf{bottom:421.233840px;}
.yaf{bottom:421.591500px;}
.yae{bottom:424.321500px;}
.y70{bottom:427.293000px;}
.y11d{bottom:428.634480px;}
.yb0{bottom:429.745500px;}
.y1f2{bottom:432.448500px;}
.y145{bottom:433.788000px;}
.y96{bottom:434.982660px;}
.y1ba{bottom:435.184500px;}
.y15b{bottom:438.208500px;}
.yde{bottom:440.519580px;}
.y38{bottom:440.925000px;}
.yad{bottom:443.151000px;}
.ya{bottom:444.798000px;}
.y6f{bottom:446.122500px;}
.y11c{bottom:447.892140px;}
.y1f1{bottom:449.709000px;}
.y144{bottom:452.617500px;}
.y1b9{bottom:452.758500px;}
.y95{bottom:454.240320px;}
.ydd{bottom:459.597960px;}
.yac{bottom:461.980500px;}
.y9{bottom:462.685500px;}
.y6e{bottom:464.952000px;}
.y1f0{bottom:466.969500px;}
.y11b{bottom:467.149800px;}
.y143{bottom:471.447000px;}
.y94{bottom:473.497980px;}
.y173{bottom:477.844800px;}
.ydc{bottom:478.855620px;}
.y1b8{bottom:479.299500px;}
.yab{bottom:480.810000px;}
.y6d{bottom:483.781500px;}
.y1ef{bottom:484.230000px;}
.y11a{bottom:486.228180px;}
.y8{bottom:489.540000px;}
.y142{bottom:490.276500px;}
.y93{bottom:492.755640px;}
.y172{bottom:497.102460px;}
.ydb{bottom:498.113280px;}
.yaa{bottom:499.639500px;}
.y1ee{bottom:501.490500px;}
.y6c{bottom:502.611000px;}
.y119{bottom:505.485840px;}
.y1b7{bottom:505.839000px;}
.y7{bottom:507.429000px;}
.y141{bottom:509.106000px;}
.y92{bottom:511.834020px;}
.y37{bottom:516.075000px;}
.y171{bottom:516.360120px;}
.yda{bottom:517.370940px;}
.ya9{bottom:518.469000px;}
.y1ed{bottom:518.751000px;}
.y6b{bottom:521.440500px;}
.y1b6{bottom:523.413000px;}
.y118{bottom:524.745840px;}
.y6{bottom:525.316500px;}
.y140{bottom:527.935500px;}
.y91{bottom:531.091680px;}
.y170{bottom:535.440840px;}
.y1ec{bottom:536.011500px;}
.yd9{bottom:536.628600px;}
.ya8{bottom:537.298500px;}
.y1b5{bottom:540.987000px;}
.y5{bottom:543.204000px;}
.y117{bottom:544.005840px;}
.y6a{bottom:544.753500px;}
.y13f{bottom:546.765000px;}
.y90{bottom:550.349340px;}
.y1eb{bottom:553.272000px;}
.y36{bottom:553.464000px;}
.y16f{bottom:554.700840px;}
.yd8{bottom:555.706980px;}
.ya7{bottom:556.128000px;}
.y1b4{bottom:558.561000px;}
.ycc{bottom:559.548000px;}
.y4{bottom:561.093000px;}
.y116{bottom:563.269620px;}
.y8f{bottom:569.607000px;}
.y1ea{bottom:570.531000px;}
.y35{bottom:572.922000px;}
.y16e{bottom:573.960840px;}
.ya6{bottom:574.957500px;}
.yd7{bottom:574.964640px;}
.y69{bottom:578.377500px;}
.y3{bottom:578.980500px;}
.y13e{bottom:580.330500px;}
.y115{bottom:582.348000px;}
.y1b3{bottom:585.102000px;}
.y1e9{bottom:587.791500px;}
.y8e{bottom:588.864660px;}
.y34{bottom:592.378500px;}
.y16d{bottom:593.222460px;}
.ya5{bottom:593.785500px;}
.yd6{bottom:594.222300px;}
.yca{bottom:594.964500px;}
.y2{bottom:596.868000px;}
.y68{bottom:597.207000px;}
.y13d{bottom:599.563500px;}
.y114{bottom:601.605660px;}
.ycb{bottom:602.631000px;}
.y1b2{bottom:602.676000px;}
.y1e8{bottom:605.052000px;}
.y33{bottom:611.835000px;}
.y8d{bottom:612.439980px;}
.y16c{bottom:612.480120px;}
.yd5{bottom:613.479960px;}
.y1{bottom:614.757000px;}
.y67{bottom:616.036500px;}
.y13c{bottom:618.796500px;}
.y1b1{bottom:620.250000px;}
.y113{bottom:620.863320px;}
.y1e7{bottom:622.312500px;}
.ya4{bottom:627.352500px;}
.y32{bottom:631.293000px;}
.y16b{bottom:631.571820px;}
.yd4{bottom:632.737620px;}
.y66{bottom:634.866000px;}
.y1b0{bottom:637.824000px;}
.y1e6{bottom:639.573000px;}
.y10f{bottom:641.226000px;}
.ya3{bottom:646.585500px;}
.y8c{bottom:649.700340px;}
.y31{bottom:650.749500px;}
.y16a{bottom:650.829480px;}
.yd3{bottom:651.816000px;}
.y65{bottom:653.695500px;}
.y1af{bottom:655.399500px;}
.y1e5{bottom:656.833500px;}
.ya2{bottom:665.817000px;}
.y8b{bottom:668.971320px;}
.y169{bottom:670.087140px;}
.y2f{bottom:670.206000px;}
.yd2{bottom:671.073660px;}
.y64{bottom:672.525000px;}
.y1e4{bottom:674.094000px;}
.y30{bottom:675.088500px;}
.y111{bottom:675.584040px;}
.ya1{bottom:685.050000px;}
.y110{bottom:685.123500px;}
.y8a{bottom:688.228980px;}
.y1e3{bottom:688.731000px;}
.y168{bottom:689.344800px;}
.y2e{bottom:689.664000px;}
.yd1{bottom:690.331320px;}
.y1ae{bottom:690.906000px;}
.y63{bottom:691.354500px;}
.ya0{bottom:704.283000px;}
.yc9{bottom:707.205000px;}
.y89{bottom:707.486640px;}
.y167{bottom:708.602460px;}
.y1e2{bottom:708.613500px;}
.y2d{bottom:709.120500px;}
.y1ad{bottom:709.735500px;}
.y62{bottom:710.184000px;}
.y1e1{bottom:725.874000px;}
.yc8{bottom:726.283500px;}
.y88{bottom:726.565020px;}
.y7d{bottom:726.712500px;}
.y166{bottom:727.680840px;}
.y1ac{bottom:728.565000px;}
.y2c{bottom:728.578500px;}
.y61{bottom:729.013500px;}
.y1e0{bottom:743.134500px;}
.ycf{bottom:745.052040px;}
.yc7{bottom:745.113000px;}
.y1aa{bottom:745.152000px;}
.y87{bottom:745.822680px;}
.y165{bottom:746.943180px;}
.y1a9{bottom:747.394500px;}
.y60{bottom:747.843000px;}
.y2b{bottom:748.035000px;}
.y1ab{bottom:752.818500px;}
.yce{bottom:754.591500px;}
.y1df{bottom:760.395000px;}
.y5f{bottom:763.942500px;}
.y86{bottom:765.080340px;}
.y164{bottom:766.200840px;}
.y1a8{bottom:766.224000px;}
.y5e{bottom:766.671000px;}
.y1de{bottom:777.655500px;}
.y85{bottom:784.340340px;}
.y1a7{bottom:785.053500px;}
.y163{bottom:785.460840px;}
.y5d{bottom:785.500500px;}
.y2a{bottom:786.621000px;}
.yc6{bottom:790.926000px;}
.y1dd{bottom:794.916000px;}
.y29{bottom:802.759500px;}
.y84{bottom:803.599620px;}
.y1a6{bottom:803.883000px;}
.y5c{bottom:804.330000px;}
.y162{bottom:804.724620px;}
.y1dc{bottom:812.176500px;}
.y83{bottom:822.682500px;}
.y1a5{bottom:822.712500px;}
.y5b{bottom:823.159500px;}
.y28{bottom:823.239000px;}
.y161{bottom:823.803000px;}
.y1db{bottom:829.437000px;}
.y27{bottom:835.039500px;}
.y1a3{bottom:841.540500px;}
.y82{bottom:841.940160px;}
.y5a{bottom:841.989000px;}
.y160{bottom:843.060660px;}
.y1da{bottom:846.697500px;}
.y1a4{bottom:846.966000px;}
.y26{bottom:855.519000px;}
.y1a2{bottom:860.370000px;}
.y59{bottom:860.818500px;}
.y81{bottom:861.197820px;}
.y15f{bottom:862.318320px;}
.y1d9{bottom:863.956500px;}
.yc5{bottom:866.244000px;}
.y25{bottom:871.657500px;}
.y1a1{bottom:879.199500px;}
.y58{bottom:879.648000px;}
.y1d8{bottom:881.217000px;}
.y24{bottom:883.458000px;}
.y19f{bottom:898.029000px;}
.y57{bottom:898.477500px;}
.y23{bottom:899.596500px;}
.y1a0{bottom:903.454500px;}
.y22{bottom:915.736500px;}
.y1d7{bottom:915.738000px;}
.y7f{bottom:915.918540px;}
.y19d{bottom:916.858500px;}
.y15d{bottom:917.039040px;}
.y56{bottom:917.307000px;}
.y19e{bottom:922.284000px;}
.y10e{bottom:922.732500px;}
.y7e{bottom:925.458000px;}
.y15c{bottom:926.578500px;}
.y1d6{bottom:932.998500px;}
.y10c{bottom:933.406500px;}
.y19b{bottom:935.688000px;}
.y55{bottom:936.136500px;}
.y21{bottom:936.216000px;}
.y19c{bottom:941.113500px;}
.y10d{bottom:941.562000px;}
.y1d5{bottom:950.259000px;}
.y10b{bottom:951.987000px;}
.y15a{bottom:952.236000px;}
.y199{bottom:954.517500px;}
.y54{bottom:954.966000px;}
.y19a{bottom:959.943000px;}
.y10a{bottom:960.391500px;}
.y1d4{bottom:967.519500px;}
.y109{bottom:970.816500px;}
.y158{bottom:971.065500px;}
.y198{bottom:973.347000px;}
.y53{bottom:973.795500px;}
.y159{bottom:979.219500px;}
.y20{bottom:980.892000px;}
.y1d3{bottom:984.780000px;}
.y197{bottom:992.176500px;}
.y52{bottom:992.625000px;}
.y1f{bottom:999.721500px;}
.y1d2{bottom:1002.040500px;}
.y196{bottom:1011.006000px;}
.y51{bottom:1011.454500px;}
.y108{bottom:1016.878500px;}
.y1d1{bottom:1019.299500px;}
.y50{bottom:1030.284000px;}
.y195{bottom:1034.319000px;}
.y107{bottom:1035.708000px;}
.y1e{bottom:1036.485000px;}
.y1d0{bottom:1036.560000px;}
.y4f{bottom:1049.113500px;}
.y1cf{bottom:1053.820500px;}
.y1d{bottom:1064.728500px;}
.y4e{bottom:1067.943000px;}
.y206{bottom:1068.459000px;}
.y1ce{bottom:1071.081000px;}
.y106{bottom:1073.367000px;}
.y4d{bottom:1086.772500px;}
.y1cd{bottom:1088.341500px;}
.y105{bottom:1092.196500px;}
.y1c{bottom:1092.972000px;}
.y4c{bottom:1105.602000px;}
.y1a{bottom:1136.460000px;}
.y4b{bottom:1168.366500px;}
.h23{height:21.407698px;}
.h12{height:23.242762px;}
.ha{height:26.110157px;}
.h1b{height:27.974981px;}
.h2{height:30.461558px;}
.h19{height:30.582721px;}
.h3{height:30.670772px;}
.h11{height:33.072749px;}
.h1c{height:34.152511px;}
.h1e{height:34.158511px;}
.hb{height:34.813397px;}
.h10{height:35.052500px;}
.h4{height:38.202476px;}
.hc{height:38.734848px;}
.hd{height:39.165235px;}
.h25{height:39.434227px;}
.h24{height:39.552721px;}
.h18{height:40.931698px;}
.h20{height:40.937698px;}
.he{height:43.038432px;}
.hf{height:43.516637px;}
.h7{height:43.815515px;}
.h16{height:43.827891px;}
.h14{height:44.612578px;}
.h21{height:44.944762px;}
.h26{height:49.117939px;}
.h17{height:49.939453px;}
.h5{height:50.931027px;}
.h6{height:51.251918px;}
.h9{height:54.411312px;}
.h1a{height:54.768749px;}
.h15{height:55.266328px;}
.h8{height:77.469696px;}
.h1d{height:223.528500px;}
.h1f{height:233.611500px;}
.h13{height:393.834000px;}
.h22{height:455.458500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:200.419191px;}
.w4{width:547.896000px;}
.w3{width:552.376500px;}
.w6{width:560.779500px;}
.w5{width:579.828000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x6a{left:-196.417500px;}
.x3b{left:-194.737500px;}
.x81{left:-1.324260px;}
.x0{left:0.000000px;}
.x8d{left:1.476240px;}
.x6b{left:31.073880px;}
.x3c{left:32.785200px;}
.x3{left:52.525500px;}
.x1{left:53.574000px;}
.x2{left:57.639510px;}
.xa3{left:85.848000px;}
.xb3{left:148.669500px;}
.xa4{left:154.809000px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x80{left:264.975000px;}
.x5e{left:266.437500px;}
.x5{left:269.914500px;}
.x5f{left:275.236500px;}
.x7c{left:278.193000px;}
.xa{left:281.479500px;}
.x86{left:286.546500px;}
.x7d{left:290.625000px;}
.x52{left:293.980500px;}
.x87{left:296.997000px;}
.x3d{left:306.804000px;}
.x7{left:308.131500px;}
.x6d{left:309.912000px;}
.x94{left:311.364000px;}
.xa2{left:313.222500px;}
.x90{left:319.297500px;}
.x95{left:322.797000px;}
.x9f{left:324.024000px;}
.x73{left:329.206500px;}
.x65{left:330.712500px;}
.x77{left:333.747000px;}
.x78{left:340.552500px;}
.x74{left:344.149500px;}
.x66{left:345.657000px;}
.x9b{left:356.412000px;}
.xf{left:367.171500px;}
.x32{left:371.817000px;}
.x10{left:374.643000px;}
.x88{left:376.548000px;}
.x11{left:378.382500px;}
.xa0{left:384.018000px;}
.x12{left:385.854000px;}
.x89{left:387.093000px;}
.x39{left:388.915500px;}
.xa1{left:390.681000px;}
.x3a{left:395.341500px;}
.x53{left:398.929500px;}
.x79{left:400.413000px;}
.x2e{left:405.769500px;}
.x96{left:412.254000px;}
.x2f{left:420.712500px;}
.x30{left:424.374000px;}
.x7a{left:426.925500px;}
.x9e{left:431.344500px;}
.x31{left:439.318500px;}
.x97{left:448.398000px;}
.x91{left:450.871500px;}
.x98{left:458.947500px;}
.x67{left:462.045000px;}
.x68{left:471.198000px;}
.x34{left:474.583500px;}
.x61{left:476.727000px;}
.x41{left:479.337000px;}
.x72{left:481.950000px;}
.x19{left:484.606500px;}
.x35{left:486.688500px;}
.x42{left:488.739000px;}
.x63{left:492.066000px;}
.x43{left:496.956000px;}
.x9a{left:498.252000px;}
.x1a{left:499.551000px;}
.x1b{left:503.212500px;}
.x62{left:505.183500px;}
.x64{left:507.009000px;}
.x69{left:509.406000px;}
.x36{left:514.569000px;}
.xb0{left:517.144500px;}
.x1c{left:518.155500px;}
.x4f{left:522.136500px;}
.x1d{left:525.478500px;}
.x70{left:526.632000px;}
.x9c{left:528.543000px;}
.xb1{left:531.342000px;}
.x83{left:533.799000px;}
.x2c{left:535.054500px;}
.x13{left:537.886500px;}
.x9d{left:539.076000px;}
.x1e{left:540.423000px;}
.xb2{left:546.357000px;}
.x84{left:547.426500px;}
.x6c{left:548.607900px;}
.x2d{left:549.999000px;}
.x14{left:552.831000px;}
.x8f{left:557.416500px;}
.x44{left:561.985500px;}
.x50{left:566.827500px;}
.x45{left:570.202500px;}
.x46{left:573.633000px;}
.x82{left:579.994380px;}
.x47{left:581.850000px;}
.x8e{left:583.147500px;}
.x60{left:585.064500px;}
.x37{left:590.380500px;}
.xd{left:593.728500px;}
.x38{left:597.187500px;}
.x99{left:600.060000px;}
.xe{left:601.200000px;}
.x51{left:607.305000px;}
.xa8{left:615.003000px;}
.x6e{left:626.364000px;}
.x1f{left:633.126000px;}
.x20{left:648.069000px;}
.x75{left:649.371000px;}
.x21{left:651.730500px;}
.x25{left:653.653500px;}
.x7b{left:655.546500px;}
.x15{left:657.505500px;}
.xac{left:664.761000px;}
.x22{left:666.675000px;}
.x26{left:668.598000px;}
.x23{left:670.336500px;}
.xa9{left:671.349000px;}
.x16{left:672.450000px;}
.xad{left:675.969000px;}
.xaa{left:677.328000px;}
.x17{left:680.071500px;}
.x76{left:681.099000px;}
.x24{left:685.279500px;}
.x27{left:687.262500px;}
.xae{left:689.749500px;}
.x28{left:690.984000px;}
.x18{left:695.014500px;}
.xaf{left:697.368000px;}
.x4a{left:703.735500px;}
.x29{left:705.927000px;}
.x8b{left:707.523000px;}
.x2a{left:713.370000px;}
.x4b{left:715.588500px;}
.x8c{left:718.053000px;}
.x33{left:722.167500px;}
.x71{left:724.647000px;}
.x2b{left:728.313000px;}
.x8{left:731.055000px;}
.xa5{left:733.554000px;}
.x9{left:737.032500px;}
.x57{left:740.671500px;}
.x48{left:743.632500px;}
.x58{left:747.478500px;}
.x92{left:748.978500px;}
.x6f{left:750.114000px;}
.x54{left:755.164500px;}
.x49{left:758.577000px;}
.xa6{left:760.453500px;}
.x85{left:762.675000px;}
.x55{left:766.515000px;}
.x59{left:770.088000px;}
.xb4{left:773.650500px;}
.x4c{left:775.602000px;}
.x5a{left:776.893500px;}
.x56{left:780.904500px;}
.xab{left:782.133000px;}
.x8a{left:788.383500px;}
.xb5{left:789.733500px;}
.x4d{left:790.845000px;}
.x4e{left:802.416000px;}
.x7e{left:803.680500px;}
.xa7{left:810.265500px;}
.x93{left:811.398000px;}
.x7f{left:814.119000px;}
.xb6{left:815.548500px;}
.x3e{left:817.420500px;}
.xb{left:824.422500px;}
.x3f{left:827.530500px;}
.x5b{left:828.610500px;}
.x5c{left:830.164500px;}
.xc{left:831.894000px;}
.x40{left:835.747500px;}
.x5d{left:836.970000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v7{vertical-align:-13.440000pt;}
.v8{vertical-align:-9.328000pt;}
.v6{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:7.973333pt;}
.v3{vertical-align:13.440000pt;}
.v5{vertical-align:14.656000pt;}
.v4{vertical-align:17.354667pt;}
.v1{vertical-align:19.290667pt;}
.ls2e{letter-spacing:-0.528000pt;}
.ls3f{letter-spacing:-0.480000pt;}
.ls27{letter-spacing:-0.478080pt;}
.ls3e{letter-spacing:-0.432000pt;}
.ls40{letter-spacing:-0.424960pt;}
.ls2d{letter-spacing:-0.336000pt;}
.ls26{letter-spacing:-0.318720pt;}
.ls21{letter-spacing:-0.300160pt;}
.ls3c{letter-spacing:-0.288000pt;}
.ls23{letter-spacing:-0.214400pt;}
.ls25{letter-spacing:-0.212480pt;}
.ls2a{letter-spacing:-0.159360pt;}
.ls52{letter-spacing:-0.144000pt;}
.ls24{letter-spacing:-0.106240pt;}
.ls28{letter-spacing:-0.053120pt;}
.ls20{letter-spacing:-0.042880pt;}
.lsc{letter-spacing:0.000000pt;}
.ls5e{letter-spacing:0.000225pt;}
.ls1{letter-spacing:0.000533pt;}
.ls5a{letter-spacing:0.000600pt;}
.ls59{letter-spacing:0.000711pt;}
.ls57{letter-spacing:0.001115pt;}
.ls4{letter-spacing:0.002422pt;}
.ls5b{letter-spacing:0.002525pt;}
.ls5{letter-spacing:0.004237pt;}
.ls22{letter-spacing:0.042880pt;}
.ls2b{letter-spacing:0.048000pt;}
.ls29{letter-spacing:0.053120pt;}
.ls33{letter-spacing:0.074368pt;}
.ls19{letter-spacing:0.096000pt;}
.ls48{letter-spacing:0.116864pt;}
.ls18{letter-spacing:0.144000pt;}
.ls1a{letter-spacing:0.159360pt;}
.ls14{letter-spacing:0.196544pt;}
.ls13{letter-spacing:0.212480pt;}
.ls42{letter-spacing:0.233728pt;}
.ls2c{letter-spacing:0.240000pt;}
.ls36{letter-spacing:0.247040pt;}
.ls16{letter-spacing:0.254976pt;}
.ls34{letter-spacing:0.260288pt;}
.ls3d{letter-spacing:0.265600pt;}
.ls44{letter-spacing:0.313408pt;}
.lsf{letter-spacing:0.318720pt;}
.ls47{letter-spacing:0.334656pt;}
.ls17{letter-spacing:0.336000pt;}
.ls32{letter-spacing:0.355904pt;}
.ls1d{letter-spacing:0.482502pt;}
.ls3b{letter-spacing:0.531200pt;}
.ls12{letter-spacing:0.796800pt;}
.ls38{letter-spacing:0.998656pt;}
.lsd{letter-spacing:1.434240pt;}
.ls4f{letter-spacing:1.440000pt;}
.ls46{letter-spacing:1.450176pt;}
.ls35{letter-spacing:2.064000pt;}
.ls4e{letter-spacing:2.071680pt;}
.ls4d{letter-spacing:2.130112pt;}
.ls6{letter-spacing:2.657067pt;}
.ls4a{letter-spacing:2.659962pt;}
.ls7{letter-spacing:2.665203pt;}
.ls41{letter-spacing:2.709120pt;}
.ls49{letter-spacing:3.118133pt;}
.ls1b{letter-spacing:3.123467pt;}
.ls4c{letter-spacing:3.511232pt;}
.ls15{letter-spacing:3.984000pt;}
.ls43{letter-spacing:4.621440pt;}
.ls11{letter-spacing:5.258880pt;}
.ls37{letter-spacing:5.896320pt;}
.ls45{letter-spacing:6.055680pt;}
.lse{letter-spacing:6.533760pt;}
.ls10{letter-spacing:6.560320pt;}
.ls2{letter-spacing:9.298932pt;}
.ls0{letter-spacing:9.298933pt;}
.lsb{letter-spacing:10.626533pt;}
.ls5c{letter-spacing:11.326433pt;}
.ls64{letter-spacing:11.762012pt;}
.ls63{letter-spacing:11.799048pt;}
.ls60{letter-spacing:11.852251pt;}
.ls54{letter-spacing:11.954133pt;}
.ls56{letter-spacing:11.959467pt;}
.ls5d{letter-spacing:11.993981pt;}
.ls5f{letter-spacing:12.161450pt;}
.ls1f{letter-spacing:13.177199pt;}
.ls8{letter-spacing:13.284541pt;}
.ls1e{letter-spacing:13.320682pt;}
.ls58{letter-spacing:13.404277pt;}
.ls31{letter-spacing:13.923096pt;}
.ls1c{letter-spacing:13.955096pt;}
.ls61{letter-spacing:14.167676pt;}
.ls39{letter-spacing:14.616404pt;}
.ls55{letter-spacing:15.323231pt;}
.ls65{letter-spacing:15.574212pt;}
.ls51{letter-spacing:15.969067pt;}
.ls50{letter-spacing:15.975068pt;}
.ls62{letter-spacing:16.233035pt;}
.ls4b{letter-spacing:16.449067pt;}
.ls53{letter-spacing:16.561734pt;}
.ls30{letter-spacing:16.604401pt;}
.ls2f{letter-spacing:16.896570pt;}
.ls3a{letter-spacing:17.587310pt;}
.ls3{letter-spacing:51.035733pt;}
.ls9{letter-spacing:55.787733pt;}
.lsa{letter-spacing:57.174803pt;}
.ws48{word-spacing:-53.120000pt;}
.ws99{word-spacing:-30.180036pt;}
.ws9d{word-spacing:-13.811200pt;}
.ws9f{word-spacing:-13.598720pt;}
.ws50{word-spacing:-13.492480pt;}
.ws49{word-spacing:-13.439360pt;}
.ws4d{word-spacing:-13.333120pt;}
.wse{word-spacing:-13.283467pt;}
.ws4b{word-spacing:-13.280000pt;}
.ws4c{word-spacing:-13.226880pt;}
.ws4a{word-spacing:-13.173760pt;}
.ws4e{word-spacing:-13.120640pt;}
.ws4f{word-spacing:-13.067520pt;}
.ws47{word-spacing:-12.961280pt;}
.wse8{word-spacing:-12.096000pt;}
.ws51{word-spacing:-12.048000pt;}
.ws52{word-spacing:-12.000000pt;}
.ws107{word-spacing:-11.955200pt;}
.wsa0{word-spacing:-11.520000pt;}
.ws45{word-spacing:-10.720000pt;}
.ws29{word-spacing:-10.626800pt;}
.ws44{word-spacing:-10.419840pt;}
.wsd{word-spacing:-10.095467pt;}
.ws2{word-spacing:-9.298400pt;}
.ws46{word-spacing:-8.000000pt;}
.ws9e{word-spacing:-7.712000pt;}
.wsab{word-spacing:-2.921600pt;}
.wsd7{word-spacing:-2.815360pt;}
.wsd2{word-spacing:-2.762961pt;}
.wsaa{word-spacing:-2.549760pt;}
.ws8a{word-spacing:-2.448000pt;}
.ws60{word-spacing:-2.284756pt;}
.wsc1{word-spacing:-2.284160pt;}
.ws30{word-spacing:-2.072221pt;}
.wsb2{word-spacing:-2.071680pt;}
.ws2f{word-spacing:-2.019087pt;}
.ws123{word-spacing:-1.865011pt;}
.ws11d{word-spacing:-1.769370pt;}
.wsa4{word-spacing:-1.700284pt;}
.ws27{word-spacing:-1.647150pt;}
.wsb1{word-spacing:-1.646720pt;}
.ws94{word-spacing:-1.594016pt;}
.wsb3{word-spacing:-1.540480pt;}
.wsfd{word-spacing:-1.487748pt;}
.wsc5{word-spacing:-1.434614pt;}
.wsae{word-spacing:-1.274880pt;}
.wsea{word-spacing:-1.099878pt;}
.ws9c{word-spacing:-1.062677pt;}
.ws3{word-spacing:-1.041421pt;}
.ws7e{word-spacing:-1.009280pt;}
.ws5{word-spacing:-0.929840pt;}
.wseb{word-spacing:-0.908595pt;}
.ws7f{word-spacing:-0.903040pt;}
.ws116{word-spacing:-0.860774pt;}
.wsd1{word-spacing:-0.850142pt;}
.ws89{word-spacing:-0.816000pt;}
.ws31{word-spacing:-0.797008pt;}
.wsdc{word-spacing:-0.796800pt;}
.ws17{word-spacing:-0.765133pt;}
.ws85{word-spacing:-0.720000pt;}
.ws18{word-spacing:-0.717312pt;}
.ws92{word-spacing:-0.690740pt;}
.ws5e{word-spacing:-0.637606pt;}
.wsd5{word-spacing:-0.637440pt;}
.ws83{word-spacing:-0.624000pt;}
.ws117{word-spacing:-0.621670pt;}
.ws5c{word-spacing:-0.584473pt;}
.ws115{word-spacing:-0.573850pt;}
.ws2e{word-spacing:-0.531339pt;}
.ws8d{word-spacing:-0.528000pt;}
.ws62{word-spacing:-0.514560pt;}
.ws2d{word-spacing:-0.478205pt;}
.ws42{word-spacing:-0.371937pt;}
.ws81{word-spacing:-0.371840pt;}
.ws36{word-spacing:-0.318803pt;}
.ws67{word-spacing:-0.318720pt;}
.ws15{word-spacing:-0.286925pt;}
.ws39{word-spacing:-0.265669pt;}
.ws80{word-spacing:-0.265600pt;}
.wse9{word-spacing:-0.239104pt;}
.ws5f{word-spacing:-0.212535pt;}
.wsaf{word-spacing:-0.212480pt;}
.ws84{word-spacing:-0.192000pt;}
.ws1c{word-spacing:-0.191283pt;}
.ws1f{word-spacing:-0.159402pt;}
.ws6e{word-spacing:-0.159360pt;}
.ws54{word-spacing:-0.143462pt;}
.ws20{word-spacing:-0.106268pt;}
.wsb6{word-spacing:-0.106240pt;}
.ws100{word-spacing:-0.095642pt;}
.ws11{word-spacing:-0.053134pt;}
.ws77{word-spacing:-0.053120pt;}
.ws53{word-spacing:-0.047821pt;}
.ws2a{word-spacing:-0.042507pt;}
.wsf{word-spacing:-0.002126pt;}
.ws1{word-spacing:0.000000pt;}
.ws61{word-spacing:0.042880pt;}
.ws13{word-spacing:0.047821pt;}
.wsdb{word-spacing:0.048000pt;}
.wsf1{word-spacing:0.053120pt;}
.ws23{word-spacing:0.053134pt;}
.ws19{word-spacing:0.095642pt;}
.wsbe{word-spacing:0.096000pt;}
.ws8e{word-spacing:0.106240pt;}
.ws22{word-spacing:0.106268pt;}
.wsec{word-spacing:0.143462pt;}
.ws26{word-spacing:0.159402pt;}
.ws105{word-spacing:0.191283pt;}
.ws8f{word-spacing:0.212480pt;}
.ws2c{word-spacing:0.212535pt;}
.ws63{word-spacing:0.214400pt;}
.ws102{word-spacing:0.239104pt;}
.ws76{word-spacing:0.265600pt;}
.ws25{word-spacing:0.265669pt;}
.ws103{word-spacing:0.286925pt;}
.ws6c{word-spacing:0.318720pt;}
.ws3f{word-spacing:0.318803pt;}
.wsb0{word-spacing:0.371840pt;}
.ws9b{word-spacing:0.371937pt;}
.wsc3{word-spacing:0.424960pt;}
.ws14{word-spacing:0.430387pt;}
.ws6f{word-spacing:0.478080pt;}
.wse7{word-spacing:0.478205pt;}
.ws86{word-spacing:0.480000pt;}
.ws11f{word-spacing:0.526029pt;}
.ws88{word-spacing:0.528000pt;}
.wse6{word-spacing:0.531339pt;}
.ws120{word-spacing:0.573850pt;}
.ws90{word-spacing:0.584473pt;}
.ws71{word-spacing:0.637440pt;}
.ws87{word-spacing:0.672000pt;}
.wsc9{word-spacing:0.690740pt;}
.wsf7{word-spacing:0.720000pt;}
.ws34{word-spacing:0.743874pt;}
.wsf8{word-spacing:0.768000pt;}
.ws3e{word-spacing:0.797008pt;}
.wsf2{word-spacing:0.849920pt;}
.wsed{word-spacing:0.850142pt;}
.ws4{word-spacing:0.892646pt;}
.ws72{word-spacing:0.903040pt;}
.ws3a{word-spacing:0.903276pt;}
.ws93{word-spacing:0.956410pt;}
.ws7c{word-spacing:1.009280pt;}
.ws24{word-spacing:1.009543pt;}
.ws3b{word-spacing:1.062677pt;}
.ws111{word-spacing:1.099878pt;}
.ws75{word-spacing:1.115520pt;}
.ws74{word-spacing:1.274880pt;}
.ws35{word-spacing:1.275213pt;}
.ws127{word-spacing:1.291162pt;}
.wsf5{word-spacing:1.296000pt;}
.wscb{word-spacing:1.381481pt;}
.wsf9{word-spacing:1.392000pt;}
.wsc8{word-spacing:1.434614pt;}
.ws113{word-spacing:1.434624pt;}
.ws2b{word-spacing:1.487748pt;}
.ws66{word-spacing:1.540480pt;}
.wsc6{word-spacing:1.540882pt;}
.wsfa{word-spacing:1.584000pt;}
.ws70{word-spacing:1.646720pt;}
.ws91{word-spacing:1.647150pt;}
.ws56{word-spacing:1.673728pt;}
.ws124{word-spacing:1.721549pt;}
.wsb4{word-spacing:1.752960pt;}
.ws38{word-spacing:1.753418pt;}
.wsf6{word-spacing:1.776000pt;}
.ws3c{word-spacing:1.806551pt;}
.ws10d{word-spacing:1.817190pt;}
.ws57{word-spacing:1.859685pt;}
.wsf3{word-spacing:1.912320pt;}
.ws3d{word-spacing:1.912819pt;}
.ws16{word-spacing:1.960653pt;}
.wsa6{word-spacing:1.965953pt;}
.wsba{word-spacing:1.968000pt;}
.wsbc{word-spacing:2.016000pt;}
.ws21{word-spacing:2.125355pt;}
.ws79{word-spacing:2.177920pt;}
.ws126{word-spacing:2.199757pt;}
.ws0{word-spacing:2.232481pt;}
.ws133{word-spacing:2.247578pt;}
.ws7a{word-spacing:2.284160pt;}
.wsff{word-spacing:2.337890pt;}
.wsd8{word-spacing:2.390400pt;}
.ws41{word-spacing:2.391024pt;}
.wsa2{word-spacing:2.438861pt;}
.ws43{word-spacing:2.444158pt;}
.wsbb{word-spacing:2.496000pt;}
.ws40{word-spacing:2.497292pt;}
.wsd4{word-spacing:2.549760pt;}
.wscd{word-spacing:2.550426pt;}
.ws12{word-spacing:2.550432pt;}
.ws9a{word-spacing:2.603559pt;}
.ws10a{word-spacing:2.630144pt;}
.wsd3{word-spacing:2.656693pt;}
.wsa1{word-spacing:2.725786pt;}
.ws73{word-spacing:2.815360pt;}
.ws1d{word-spacing:2.861926pt;}
.ws128{word-spacing:2.863829pt;}
.ws12d{word-spacing:2.867038pt;}
.ws12f{word-spacing:2.869248pt;}
.wsd9{word-spacing:2.921600pt;}
.wsa7{word-spacing:2.922363pt;}
.wsce{word-spacing:3.081764pt;}
.ws1a{word-spacing:3.108352pt;}
.wsfb{word-spacing:3.120000pt;}
.wsc4{word-spacing:3.134898pt;}
.wsac{word-spacing:3.187200pt;}
.ws1e{word-spacing:3.188032pt;}
.wsa3{word-spacing:3.203994pt;}
.ws58{word-spacing:3.241166pt;}
.ws118{word-spacing:3.251814pt;}
.ws10c{word-spacing:3.347456pt;}
.ws64{word-spacing:3.452800pt;}
.ws37{word-spacing:3.506835pt;}
.ws65{word-spacing:3.559040pt;}
.wscc{word-spacing:3.559969pt;}
.ws98{word-spacing:3.613103pt;}
.ws1b{word-spacing:3.634381pt;}
.ws32{word-spacing:3.666237pt;}
.ws11a{word-spacing:3.682202pt;}
.ws8b{word-spacing:3.744000pt;}
.wsf4{word-spacing:3.771520pt;}
.wsdf{word-spacing:3.824640pt;}
.wsb7{word-spacing:3.840000pt;}
.ws8c{word-spacing:3.888000pt;}
.wsb8{word-spacing:3.936000pt;}
.wse0{word-spacing:4.037120pt;}
.ws7b{word-spacing:4.090240pt;}
.ws5d{word-spacing:4.091308pt;}
.ws7d{word-spacing:4.196480pt;}
.wsb{word-spacing:4.240070pt;}
.wsd0{word-spacing:4.250709pt;}
.ws12c{word-spacing:4.256051pt;}
.wsa5{word-spacing:4.303843pt;}
.wsc{word-spacing:4.314458pt;}
.wsb9{word-spacing:4.416000pt;}
.wsc7{word-spacing:4.447334pt;}
.wsd6{word-spacing:4.462080pt;}
.wsa8{word-spacing:4.463245pt;}
.ws55{word-spacing:4.495155pt;}
.ws59{word-spacing:4.622646pt;}
.wsa9{word-spacing:4.674560pt;}
.ws5a{word-spacing:4.675780pt;}
.ws78{word-spacing:4.727680pt;}
.wsca{word-spacing:4.728914pt;}
.ws10e{word-spacing:4.782080pt;}
.wsc2{word-spacing:4.833920pt;}
.ws6a{word-spacing:4.940160pt;}
.wsfc{word-spacing:4.941450pt;}
.ws96{word-spacing:4.994583pt;}
.ws97{word-spacing:5.047717pt;}
.ws109{word-spacing:5.164646pt;}
.wsbd{word-spacing:5.232000pt;}
.wsfe{word-spacing:5.260253pt;}
.ws121{word-spacing:5.310667pt;}
.ws6b{word-spacing:5.365120pt;}
.ws104{word-spacing:5.403750pt;}
.ws6d{word-spacing:5.471360pt;}
.ws12a{word-spacing:5.642854pt;}
.wsc0{word-spacing:5.736960pt;}
.ws5b{word-spacing:5.885333pt;}
.wsad{word-spacing:6.002560pt;}
.wsbf{word-spacing:6.108800pt;}
.ws69{word-spacing:6.268160pt;}
.wsee{word-spacing:6.322930pt;}
.ws101{word-spacing:6.360166pt;}
.wscf{word-spacing:6.641733pt;}
.wsb5{word-spacing:6.693120pt;}
.ws68{word-spacing:6.799360pt;}
.ws9{word-spacing:6.918010pt;}
.ws95{word-spacing:6.960537pt;}
.ws82{word-spacing:7.330560pt;}
.wsda{word-spacing:7.436800pt;}
.wsf0{word-spacing:8.180480pt;}
.wse2{word-spacing:8.339840pt;}
.wse1{word-spacing:8.552320pt;}
.wsef{word-spacing:8.711680pt;}
.wsde{word-spacing:8.977280pt;}
.wsdd{word-spacing:9.349120pt;}
.wse3{word-spacing:9.880320pt;}
.wse4{word-spacing:9.986560pt;}
.ws28{word-spacing:10.583801pt;}
.wse5{word-spacing:10.624000pt;}
.ws7{word-spacing:10.823338pt;}
.ws12e{word-spacing:11.716096pt;}
.ws11e{word-spacing:11.901039pt;}
.ws11b{word-spacing:11.902677pt;}
.ws108{word-spacing:11.907379pt;}
.ws125{word-spacing:13.628928pt;}
.ws8{word-spacing:14.319536pt;}
.ws10b{word-spacing:14.537523pt;}
.ws33{word-spacing:14.611813pt;}
.ws130{word-spacing:14.633165pt;}
.ws122{word-spacing:14.680986pt;}
.ws132{word-spacing:14.769220pt;}
.ws110{word-spacing:14.770517pt;}
.ws106{word-spacing:14.772437pt;}
.ws131{word-spacing:14.772523pt;}
.ws129{word-spacing:14.772582pt;}
.ws10f{word-spacing:14.774554pt;}
.ws114{word-spacing:14.776627pt;}
.ws119{word-spacing:14.824448pt;}
.ws11c{word-spacing:15.015731pt;}
.ws12b{word-spacing:15.302656pt;}
.ws112{word-spacing:18.506650pt;}
.wsa{word-spacing:23.208806pt;}
.ws6{word-spacing:23.858002pt;}
.ws10{word-spacing:48.896629pt;}
._21{margin-left:-21.698246pt;}
._1c{margin-left:-16.896570pt;}
._1a{margin-left:-6.787331pt;}
._8{margin-left:-5.483429pt;}
._9{margin-left:-3.910662pt;}
._0{margin-left:-2.715133pt;}
._4{margin-left:-1.338970pt;}
._13{width:0.891904pt;}
._3{width:2.045648pt;}
._6{width:3.284684pt;}
._17{width:4.325696pt;}
._16{width:6.082752pt;}
._15{width:7.351104pt;}
._1d{width:8.563456pt;}
._1{width:11.529910pt;}
._f{width:13.175899pt;}
._c{width:14.776627pt;}
._a{width:16.067776pt;}
._e{width:17.066594pt;}
._20{width:18.182405pt;}
._1e{width:19.128192pt;}
._19{width:20.052714pt;}
._b{width:20.993331pt;}
._2{width:23.062165pt;}
._12{width:24.388445pt;}
._d{width:26.110157pt;}
._5{width:27.188522pt;}
._18{width:28.692480pt;}
._1f{width:30.488217pt;}
._1b{width:37.618778pt;}
._7{width:48.343025pt;}
._23{width:54.993920pt;}
._22{width:78.904320pt;}
._10{width:262.396946pt;}
._14{width:1758.784346pt;}
._11{width:2167.379200pt;}
.fs10{font-size:29.440000pt;}
.fs5{font-size:31.880533pt;}
.fsf{font-size:31.979200pt;}
.fsb{font-size:32.000000pt;}
.fs0{font-size:37.193600pt;}
.fsd{font-size:38.755733pt;}
.fs4{font-size:40.381867pt;}
.fs8{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fs9{font-size:42.880000pt;}
.fs7{font-size:47.820800pt;}
.fsc{font-size:48.000000pt;}
.fsa{font-size:53.120000pt;}
.fs2{font-size:53.133867pt;}
.fse{font-size:55.365867pt;}
.fs1{font-size:67.193600pt;}
.fs3{font-size:95.641600pt;}
.y112{bottom:-407.641333pt;}
.y13b{bottom:-355.449973pt;}
.yd0{bottom:-345.892000pt;}
.y13a{bottom:-338.332053pt;}
.y139{bottom:-321.214133pt;}
.y138{bottom:-304.096213pt;}
.y137{bottom:-287.137653pt;}
.y136{bottom:-270.019733pt;}
.yf8{bottom:-269.072480pt;}
.y135{bottom:-252.901813pt;}
.yf7{bottom:-252.113920pt;}
.y134{bottom:-235.783893pt;}
.yf6{bottom:-234.996000pt;}
.y133{bottom:-218.665973pt;}
.yf5{bottom:-217.878080pt;}
.y132{bottom:-201.707413pt;}
.yf4{bottom:-200.760160pt;}
.y80{bottom:-194.010667pt;}
.y15e{bottom:-193.014667pt;}
.y131{bottom:-184.589493pt;}
.yf3{bottom:-183.642240pt;}
.y130{bottom:-167.471573pt;}
.yf2{bottom:-166.683680pt;}
.y12f{bottom:-150.353653pt;}
.yf1{bottom:-149.565760pt;}
.y12e{bottom:-133.235733pt;}
.yf0{bottom:-132.447840pt;}
.y9f{bottom:-130.008587pt;}
.y12d{bottom:-116.277173pt;}
.yef{bottom:-115.329920pt;}
.y9e{bottom:-112.890667pt;}
.y17b{bottom:-111.730667pt;}
.y12c{bottom:-99.159253pt;}
.yee{bottom:-98.212000pt;}
.y17a{bottom:-96.370667pt;}
.y12b{bottom:-82.041333pt;}
.y179{bottom:-81.010667pt;}
.y9d{bottom:-80.250667pt;}
.yed{bottom:-65.572000pt;}
.y178{bottom:-65.494667pt;}
.y9c{bottom:-64.890667pt;}
.yec{bottom:-50.212000pt;}
.y177{bottom:-50.134667pt;}
.y9b{bottom:-49.530667pt;}
.y12a{bottom:-49.401333pt;}
.yeb{bottom:-34.852000pt;}
.y176{bottom:-34.774667pt;}
.y9a{bottom:-34.170667pt;}
.y129{bottom:-34.041333pt;}
.yea{bottom:-19.492000pt;}
.y175{bottom:-19.414667pt;}
.y99{bottom:-18.810667pt;}
.y128{bottom:-18.681333pt;}
.y0{bottom:0.000000pt;}
.ye9{bottom:0.512160pt;}
.y174{bottom:0.582133pt;}
.y98{bottom:1.212533pt;}
.y127{bottom:1.346507pt;}
.y1b{bottom:18.394584pt;}
.y4a{bottom:28.346667pt;}
.y104{bottom:81.480000pt;}
.y193{bottom:84.108000pt;}
.y157{bottom:84.318667pt;}
.y192{bottom:86.534667pt;}
.y194{bottom:91.356000pt;}
.yc4{bottom:92.242667pt;}
.y205{bottom:92.892000pt;}
.y19{bottom:93.018667pt;}
.y102{bottom:98.217333pt;}
.y1cc{bottom:98.670667pt;}
.y156{bottom:101.056000pt;}
.y191{bottom:101.280000pt;}
.y103{bottom:103.040000pt;}
.y190{bottom:103.272000pt;}
.y49{bottom:103.413333pt;}
.y204{bottom:108.233333pt;}
.y18{bottom:108.920000pt;}
.yc3{bottom:108.980000pt;}
.y1cb{bottom:111.681333pt;}
.y1ca{bottom:114.013333pt;}
.y101{bottom:114.954667pt;}
.y18e{bottom:117.582667pt;}
.y155{bottom:117.793333pt;}
.y18d{bottom:120.009333pt;}
.y48{bottom:120.150667pt;}
.y203{bottom:123.576000pt;}
.y17{bottom:124.820000pt;}
.y18f{bottom:124.830667pt;}
.yc2{bottom:125.717333pt;}
.y1c9{bottom:129.354667pt;}
.y100{bottom:131.692000pt;}
.y154{bottom:134.530667pt;}
.y18c{bottom:136.746667pt;}
.y47{bottom:136.888000pt;}
.y202{bottom:138.918667pt;}
.y16{bottom:140.720000pt;}
.yc1{bottom:142.453333pt;}
.y1c8{bottom:144.697333pt;}
.yff{bottom:148.429333pt;}
.y153{bottom:151.268000pt;}
.y18a{bottom:153.484000pt;}
.y46{bottom:153.625333pt;}
.y201{bottom:154.261333pt;}
.y15{bottom:156.621333pt;}
.y18b{bottom:158.305333pt;}
.yc0{bottom:159.190667pt;}
.y1c7{bottom:160.040000pt;}
.yfe{bottom:165.166667pt;}
.y152{bottom:168.005333pt;}
.y200{bottom:169.604000pt;}
.y189{bottom:170.221333pt;}
.y45{bottom:170.362667pt;}
.y14{bottom:172.521333pt;}
.y1c6{bottom:175.382667pt;}
.ybf{bottom:175.928000pt;}
.yfd{bottom:181.904000pt;}
.y151{bottom:184.742667pt;}
.y1ff{bottom:184.946667pt;}
.y188{bottom:184.965333pt;}
.y187{bottom:186.958667pt;}
.y44{bottom:187.100000pt;}
.y13{bottom:188.421333pt;}
.y1c5{bottom:190.725333pt;}
.ybe{bottom:196.650667pt;}
.y1fe{bottom:200.289333pt;}
.y150{bottom:201.480000pt;}
.y186{bottom:203.696000pt;}
.y43{bottom:203.837333pt;}
.y12{bottom:204.322667pt;}
.y1c4{bottom:206.068000pt;}
.yfc{bottom:209.737333pt;}
.y7c{bottom:212.444000pt;}
.y1fd{bottom:215.632000pt;}
.y14f{bottom:218.217333pt;}
.y185{bottom:220.433333pt;}
.y42{bottom:220.574667pt;}
.ye8{bottom:220.668000pt;}
.y1c3{bottom:221.410667pt;}
.ybd{bottom:226.538667pt;}
.yfb{bottom:226.833333pt;}
.y126{bottom:227.265867pt;}
.y7b{bottom:229.181333pt;}
.y1fc{bottom:230.974667pt;}
.y14e{bottom:234.954667pt;}
.y1c2{bottom:236.753333pt;}
.y184{bottom:237.170667pt;}
.y41{bottom:237.312000pt;}
.ye7{bottom:237.630080pt;}
.ybc{bottom:243.276000pt;}
.yfa{bottom:243.929333pt;}
.y125{bottom:244.383787pt;}
.y7a{bottom:245.918667pt;}
.y1fb{bottom:246.316000pt;}
.y14d{bottom:251.690667pt;}
.y1c1{bottom:252.096000pt;}
.y40{bottom:254.049333pt;}
.ye6{bottom:254.759840pt;}
.yba{bottom:258.021333pt;}
.yb9{bottom:260.013333pt;}
.yf9{bottom:261.024000pt;}
.y124{bottom:261.342347pt;}
.y1fa{bottom:261.658667pt;}
.y78{bottom:262.656000pt;}
.ybb{bottom:264.836000pt;}
.y11{bottom:266.804000pt;}
.y183{bottom:267.006667pt;}
.y1c0{bottom:267.437333pt;}
.y79{bottom:267.477333pt;}
.y14c{bottom:268.428000pt;}
.y3f{bottom:270.786667pt;}
.ye5{bottom:271.877760pt;}
.yb7{bottom:276.750667pt;}
.y1f9{bottom:277.001333pt;}
.y123{bottom:278.460267pt;}
.y76{bottom:279.393333pt;}
.ycd{bottom:280.961333pt;}
.yb8{bottom:281.572000pt;}
.y10{bottom:282.705333pt;}
.y1bf{bottom:282.780000pt;}
.y182{bottom:284.102667pt;}
.y77{bottom:284.214667pt;}
.y14b{bottom:285.165333pt;}
.y3e{bottom:287.524000pt;}
.ye4{bottom:288.995680pt;}
.y1f8{bottom:292.344000pt;}
.yb6{bottom:293.488000pt;}
.y122{bottom:295.578187pt;}
.y75{bottom:296.129333pt;}
.yf{bottom:298.605333pt;}
.y180{bottom:301.198667pt;}
.y14a{bottom:301.902667pt;}
.y1be{bottom:302.108000pt;}
.y3d{bottom:304.261333pt;}
.y181{bottom:305.537333pt;}
.ye3{bottom:306.113600pt;}
.y1f7{bottom:307.686667pt;}
.yb5{bottom:310.225333pt;}
.y121{bottom:312.696107pt;}
.y74{bottom:312.866667pt;}
.ye{bottom:314.505333pt;}
.y17f{bottom:318.294667pt;}
.y149{bottom:318.640000pt;}
.y3c{bottom:320.998667pt;}
.y1f6{bottom:323.029333pt;}
.ye2{bottom:323.072160pt;}
.yb4{bottom:326.962667pt;}
.y73{bottom:329.604000pt;}
.y120{bottom:329.814027pt;}
.y1bd{bottom:331.996000pt;}
.y148{bottom:335.377333pt;}
.y17e{bottom:335.389333pt;}
.y3b{bottom:337.736000pt;}
.y1f5{bottom:338.372000pt;}
.yd{bottom:338.376000pt;}
.ye1{bottom:340.190080pt;}
.yb2{bottom:343.700000pt;}
.y72{bottom:346.341333pt;}
.y11f{bottom:346.772587pt;}
.yb3{bottom:348.521333pt;}
.y147{bottom:352.114667pt;}
.y17d{bottom:352.485333pt;}
.y1f4{bottom:353.714667pt;}
.yc{bottom:354.277333pt;}
.y3a{bottom:354.473333pt;}
.y1bc{bottom:355.588000pt;}
.ye0{bottom:357.310080pt;}
.yb1{bottom:360.437333pt;}
.y71{bottom:363.078667pt;}
.y11e{bottom:363.890507pt;}
.y146{bottom:368.852000pt;}
.y1f3{bottom:369.056000pt;}
.y97{bottom:369.533333pt;}
.y17c{bottom:369.581333pt;}
.yb{bottom:370.177333pt;}
.y1bb{bottom:371.209333pt;}
.y39{bottom:371.210667pt;}
.ydf{bottom:374.430080pt;}
.yaf{bottom:374.748000pt;}
.yae{bottom:377.174667pt;}
.y70{bottom:379.816000pt;}
.y11d{bottom:381.008427pt;}
.yb0{bottom:381.996000pt;}
.y1f2{bottom:384.398667pt;}
.y145{bottom:385.589333pt;}
.y96{bottom:386.651253pt;}
.y1ba{bottom:386.830667pt;}
.y15b{bottom:389.518667pt;}
.yde{bottom:391.572960pt;}
.y38{bottom:391.933333pt;}
.yad{bottom:393.912000pt;}
.ya{bottom:395.376000pt;}
.y6f{bottom:396.553333pt;}
.y11c{bottom:398.126347pt;}
.y1f1{bottom:399.741333pt;}
.y144{bottom:402.326667pt;}
.y1b9{bottom:402.452000pt;}
.y95{bottom:403.769173pt;}
.ydd{bottom:408.531520pt;}
.yac{bottom:410.649333pt;}
.y9{bottom:411.276000pt;}
.y6e{bottom:413.290667pt;}
.y1f0{bottom:415.084000pt;}
.y11b{bottom:415.244267pt;}
.y143{bottom:419.064000pt;}
.y94{bottom:420.887093pt;}
.y173{bottom:424.750933pt;}
.ydc{bottom:425.649440pt;}
.y1b8{bottom:426.044000pt;}
.yab{bottom:427.386667pt;}
.y6d{bottom:430.028000pt;}
.y1ef{bottom:430.426667pt;}
.y11a{bottom:432.202827pt;}
.y8{bottom:435.146667pt;}
.y142{bottom:435.801333pt;}
.y93{bottom:438.005013pt;}
.y172{bottom:441.868853pt;}
.ydb{bottom:442.767360pt;}
.yaa{bottom:444.124000pt;}
.y1ee{bottom:445.769333pt;}
.y6c{bottom:446.765333pt;}
.y119{bottom:449.320747pt;}
.y1b7{bottom:449.634667pt;}
.y7{bottom:451.048000pt;}
.y141{bottom:452.538667pt;}
.y92{bottom:454.963573pt;}
.y37{bottom:458.733333pt;}
.y171{bottom:458.986773pt;}
.yda{bottom:459.885280pt;}
.ya9{bottom:460.861333pt;}
.y1ed{bottom:461.112000pt;}
.y6b{bottom:463.502667pt;}
.y1b6{bottom:465.256000pt;}
.y118{bottom:466.440747pt;}
.y6{bottom:466.948000pt;}
.y140{bottom:469.276000pt;}
.y91{bottom:472.081493pt;}
.y170{bottom:475.947413pt;}
.y1ec{bottom:476.454667pt;}
.yd9{bottom:477.003200pt;}
.ya8{bottom:477.598667pt;}
.y1b5{bottom:480.877333pt;}
.y5{bottom:482.848000pt;}
.y117{bottom:483.560747pt;}
.y6a{bottom:484.225333pt;}
.y13f{bottom:486.013333pt;}
.y90{bottom:489.199413pt;}
.y1eb{bottom:491.797333pt;}
.y36{bottom:491.968000pt;}
.y16f{bottom:493.067413pt;}
.yd8{bottom:493.961760pt;}
.ya7{bottom:494.336000pt;}
.y1b4{bottom:496.498667pt;}
.ycc{bottom:497.376000pt;}
.y4{bottom:498.749333pt;}
.y116{bottom:500.684107pt;}
.y8f{bottom:506.317333pt;}
.y1ea{bottom:507.138667pt;}
.y35{bottom:509.264000pt;}
.y16e{bottom:510.187413pt;}
.ya6{bottom:511.073333pt;}
.yd7{bottom:511.079680pt;}
.y69{bottom:514.113333pt;}
.y3{bottom:514.649333pt;}
.y13e{bottom:515.849333pt;}
.y115{bottom:517.642667pt;}
.y1b3{bottom:520.090667pt;}
.y1e9{bottom:522.481333pt;}
.y8e{bottom:523.435253pt;}
.y34{bottom:526.558667pt;}
.y16d{bottom:527.308853pt;}
.ya5{bottom:527.809333pt;}
.yd6{bottom:528.197600pt;}
.yca{bottom:528.857333pt;}
.y2{bottom:530.549333pt;}
.y68{bottom:530.850667pt;}
.y13d{bottom:532.945333pt;}
.y114{bottom:534.760587pt;}
.ycb{bottom:535.672000pt;}
.y1b2{bottom:535.712000pt;}
.y1e8{bottom:537.824000pt;}
.y33{bottom:543.853333pt;}
.y8d{bottom:544.391093pt;}
.y16c{bottom:544.426773pt;}
.yd5{bottom:545.315520pt;}
.y1{bottom:546.450667pt;}
.y67{bottom:547.588000pt;}
.y13c{bottom:550.041333pt;}
.y1b1{bottom:551.333333pt;}
.y113{bottom:551.878507pt;}
.y1e7{bottom:553.166667pt;}
.ya4{bottom:557.646667pt;}
.y32{bottom:561.149333pt;}
.y16b{bottom:561.397173pt;}
.yd4{bottom:562.433440pt;}
.y66{bottom:564.325333pt;}
.y1b0{bottom:566.954667pt;}
.y1e6{bottom:568.509333pt;}
.y10f{bottom:569.978667pt;}
.ya3{bottom:574.742667pt;}
.y8c{bottom:577.511413pt;}
.y31{bottom:578.444000pt;}
.y16a{bottom:578.515093pt;}
.yd3{bottom:579.392000pt;}
.y65{bottom:581.062667pt;}
.y1af{bottom:582.577333pt;}
.y1e5{bottom:583.852000pt;}
.ya2{bottom:591.837333pt;}
.y8b{bottom:594.641173pt;}
.y169{bottom:595.633013pt;}
.y2f{bottom:595.738667pt;}
.yd2{bottom:596.509920pt;}
.y64{bottom:597.800000pt;}
.y1e4{bottom:599.194667pt;}
.y30{bottom:600.078667pt;}
.y111{bottom:600.519147pt;}
.ya1{bottom:608.933333pt;}
.y110{bottom:608.998667pt;}
.y8a{bottom:611.759093pt;}
.y1e3{bottom:612.205333pt;}
.y168{bottom:612.750933pt;}
.y2e{bottom:613.034667pt;}
.yd1{bottom:613.627840pt;}
.y1ae{bottom:614.138667pt;}
.y63{bottom:614.537333pt;}
.ya0{bottom:626.029333pt;}
.yc9{bottom:628.626667pt;}
.y89{bottom:628.877013pt;}
.y167{bottom:629.868853pt;}
.y1e2{bottom:629.878667pt;}
.y2d{bottom:630.329333pt;}
.y1ad{bottom:630.876000pt;}
.y62{bottom:631.274667pt;}
.y1e1{bottom:645.221333pt;}
.yc8{bottom:645.585333pt;}
.y88{bottom:645.835573pt;}
.y7d{bottom:645.966667pt;}
.y166{bottom:646.827413pt;}
.y1ac{bottom:647.613333pt;}
.y2c{bottom:647.625333pt;}
.y61{bottom:648.012000pt;}
.y1e0{bottom:660.564000pt;}
.ycf{bottom:662.268480pt;}
.yc7{bottom:662.322667pt;}
.y1aa{bottom:662.357333pt;}
.y87{bottom:662.953493pt;}
.y165{bottom:663.949493pt;}
.y1a9{bottom:664.350667pt;}
.y60{bottom:664.749333pt;}
.y2b{bottom:664.920000pt;}
.y1ab{bottom:669.172000pt;}
.yce{bottom:670.748000pt;}
.y1df{bottom:675.906667pt;}
.y5f{bottom:679.060000pt;}
.y86{bottom:680.071413pt;}
.y164{bottom:681.067413pt;}
.y1a8{bottom:681.088000pt;}
.y5e{bottom:681.485333pt;}
.y1de{bottom:691.249333pt;}
.y85{bottom:697.191413pt;}
.y1a7{bottom:697.825333pt;}
.y163{bottom:698.187413pt;}
.y5d{bottom:698.222667pt;}
.y2a{bottom:699.218667pt;}
.yc6{bottom:703.045333pt;}
.y1dd{bottom:706.592000pt;}
.y29{bottom:713.564000pt;}
.y84{bottom:714.310773pt;}
.y1a6{bottom:714.562667pt;}
.y5c{bottom:714.960000pt;}
.y162{bottom:715.310773pt;}
.y1dc{bottom:721.934667pt;}
.y83{bottom:731.273333pt;}
.y1a5{bottom:731.300000pt;}
.y5b{bottom:731.697333pt;}
.y28{bottom:731.768000pt;}
.y161{bottom:732.269333pt;}
.y1db{bottom:737.277333pt;}
.y27{bottom:742.257333pt;}
.y1a3{bottom:748.036000pt;}
.y82{bottom:748.391253pt;}
.y5a{bottom:748.434667pt;}
.y160{bottom:749.387253pt;}
.y1da{bottom:752.620000pt;}
.y1a4{bottom:752.858667pt;}
.y26{bottom:760.461333pt;}
.y1a2{bottom:764.773333pt;}
.y59{bottom:765.172000pt;}
.y81{bottom:765.509173pt;}
.y15f{bottom:766.505173pt;}
.y1d9{bottom:767.961333pt;}
.yc5{bottom:769.994667pt;}
.y25{bottom:774.806667pt;}
.y1a1{bottom:781.510667pt;}
.y58{bottom:781.909333pt;}
.y1d8{bottom:783.304000pt;}
.y24{bottom:785.296000pt;}
.y19f{bottom:798.248000pt;}
.y57{bottom:798.646667pt;}
.y23{bottom:799.641333pt;}
.y1a0{bottom:803.070667pt;}
.y22{bottom:813.988000pt;}
.y1d7{bottom:813.989333pt;}
.y7f{bottom:814.149813pt;}
.y19d{bottom:814.985333pt;}
.y15d{bottom:815.145813pt;}
.y56{bottom:815.384000pt;}
.y19e{bottom:819.808000pt;}
.y10e{bottom:820.206667pt;}
.y7e{bottom:822.629333pt;}
.y15c{bottom:823.625333pt;}
.y1d6{bottom:829.332000pt;}
.y10c{bottom:829.694667pt;}
.y19b{bottom:831.722667pt;}
.y55{bottom:832.121333pt;}
.y21{bottom:832.192000pt;}
.y19c{bottom:836.545333pt;}
.y10d{bottom:836.944000pt;}
.y1d5{bottom:844.674667pt;}
.y10b{bottom:846.210667pt;}
.y15a{bottom:846.432000pt;}
.y199{bottom:848.460000pt;}
.y54{bottom:848.858667pt;}
.y19a{bottom:853.282667pt;}
.y10a{bottom:853.681333pt;}
.y1d4{bottom:860.017333pt;}
.y109{bottom:862.948000pt;}
.y158{bottom:863.169333pt;}
.y198{bottom:865.197333pt;}
.y53{bottom:865.596000pt;}
.y159{bottom:870.417333pt;}
.y20{bottom:871.904000pt;}
.y1d3{bottom:875.360000pt;}
.y197{bottom:881.934667pt;}
.y52{bottom:882.333333pt;}
.y1f{bottom:888.641333pt;}
.y1d2{bottom:890.702667pt;}
.y196{bottom:898.672000pt;}
.y51{bottom:899.070667pt;}
.y108{bottom:903.892000pt;}
.y1d1{bottom:906.044000pt;}
.y50{bottom:915.808000pt;}
.y195{bottom:919.394667pt;}
.y107{bottom:920.629333pt;}
.y1e{bottom:921.320000pt;}
.y1d0{bottom:921.386667pt;}
.y4f{bottom:932.545333pt;}
.y1cf{bottom:936.729333pt;}
.y1d{bottom:946.425333pt;}
.y4e{bottom:949.282667pt;}
.y206{bottom:949.741333pt;}
.y1ce{bottom:952.072000pt;}
.y106{bottom:954.104000pt;}
.y4d{bottom:966.020000pt;}
.y1cd{bottom:967.414667pt;}
.y105{bottom:970.841333pt;}
.y1c{bottom:971.530667pt;}
.y4c{bottom:982.757333pt;}
.y1a{bottom:1010.186667pt;}
.y4b{bottom:1038.548000pt;}
.h23{height:19.029065pt;}
.h12{height:20.660233pt;}
.ha{height:23.209028pt;}
.h1b{height:24.866650pt;}
.h2{height:27.076941pt;}
.h19{height:27.184641pt;}
.h3{height:27.262909pt;}
.h11{height:29.397999pt;}
.h1c{height:30.357787pt;}
.h1e{height:30.363121pt;}
.hb{height:30.945242pt;}
.h10{height:31.157778pt;}
.h4{height:33.957757pt;}
.hc{height:34.430976pt;}
.hd{height:34.813542pt;}
.h25{height:35.052646pt;}
.h24{height:35.157974pt;}
.h18{height:36.383732pt;}
.h20{height:36.389065pt;}
.he{height:38.256384pt;}
.hf{height:38.681455pt;}
.h7{height:38.947124pt;}
.h16{height:38.958125pt;}
.h14{height:39.655625pt;}
.h21{height:39.950899pt;}
.h26{height:43.660390pt;}
.h17{height:44.390625pt;}
.h5{height:45.272024pt;}
.h6{height:45.557261pt;}
.h9{height:48.365611pt;}
.h1a{height:48.683332pt;}
.h15{height:49.125625pt;}
.h8{height:68.861952pt;}
.h1d{height:198.692000pt;}
.h1f{height:207.654667pt;}
.h13{height:350.074667pt;}
.h22{height:404.852000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:178.150392pt;}
.w4{width:487.018667pt;}
.w3{width:491.001333pt;}
.w6{width:498.470667pt;}
.w5{width:515.402667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x6a{left:-174.593333pt;}
.x3b{left:-173.100000pt;}
.x81{left:-1.177120pt;}
.x0{left:0.000000pt;}
.x8d{left:1.312213pt;}
.x6b{left:27.621227pt;}
.x3c{left:29.142400pt;}
.x3{left:46.689333pt;}
.x1{left:47.621333pt;}
.x2{left:51.235120pt;}
.xa3{left:76.309333pt;}
.xb3{left:132.150667pt;}
.xa4{left:137.608000pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x80{left:235.533333pt;}
.x5e{left:236.833333pt;}
.x5{left:239.924000pt;}
.x5f{left:244.654667pt;}
.x7c{left:247.282667pt;}
.xa{left:250.204000pt;}
.x86{left:254.708000pt;}
.x7d{left:258.333333pt;}
.x52{left:261.316000pt;}
.x87{left:263.997333pt;}
.x3d{left:272.714667pt;}
.x7{left:273.894667pt;}
.x6d{left:275.477333pt;}
.x94{left:276.768000pt;}
.xa2{left:278.420000pt;}
.x90{left:283.820000pt;}
.x95{left:286.930667pt;}
.x9f{left:288.021333pt;}
.x73{left:292.628000pt;}
.x65{left:293.966667pt;}
.x77{left:296.664000pt;}
.x78{left:302.713333pt;}
.x74{left:305.910667pt;}
.x66{left:307.250667pt;}
.x9b{left:316.810667pt;}
.xf{left:326.374667pt;}
.x32{left:330.504000pt;}
.x10{left:333.016000pt;}
.x88{left:334.709333pt;}
.x11{left:336.340000pt;}
.xa0{left:341.349333pt;}
.x12{left:342.981333pt;}
.x89{left:344.082667pt;}
.x39{left:345.702667pt;}
.xa1{left:347.272000pt;}
.x3a{left:351.414667pt;}
.x53{left:354.604000pt;}
.x79{left:355.922667pt;}
.x2e{left:360.684000pt;}
.x96{left:366.448000pt;}
.x2f{left:373.966667pt;}
.x30{left:377.221333pt;}
.x7a{left:379.489333pt;}
.x9e{left:383.417333pt;}
.x31{left:390.505333pt;}
.x97{left:398.576000pt;}
.x91{left:400.774667pt;}
.x98{left:407.953333pt;}
.x67{left:410.706667pt;}
.x68{left:418.842667pt;}
.x34{left:421.852000pt;}
.x61{left:423.757333pt;}
.x41{left:426.077333pt;}
.x72{left:428.400000pt;}
.x19{left:430.761333pt;}
.x35{left:432.612000pt;}
.x42{left:434.434667pt;}
.x63{left:437.392000pt;}
.x43{left:441.738667pt;}
.x9a{left:442.890667pt;}
.x1a{left:444.045333pt;}
.x1b{left:447.300000pt;}
.x62{left:449.052000pt;}
.x64{left:450.674667pt;}
.x69{left:452.805333pt;}
.x36{left:457.394667pt;}
.xb0{left:459.684000pt;}
.x1c{left:460.582667pt;}
.x4f{left:464.121333pt;}
.x1d{left:467.092000pt;}
.x70{left:468.117333pt;}
.x9c{left:469.816000pt;}
.xb1{left:472.304000pt;}
.x83{left:474.488000pt;}
.x2c{left:475.604000pt;}
.x13{left:478.121333pt;}
.x9d{left:479.178667pt;}
.x1e{left:480.376000pt;}
.xb2{left:485.650667pt;}
.x84{left:486.601333pt;}
.x6c{left:487.651467pt;}
.x2d{left:488.888000pt;}
.x14{left:491.405333pt;}
.x8f{left:495.481333pt;}
.x44{left:499.542667pt;}
.x50{left:503.846667pt;}
.x45{left:506.846667pt;}
.x46{left:509.896000pt;}
.x82{left:515.550560pt;}
.x47{left:517.200000pt;}
.x8e{left:518.353333pt;}
.x60{left:520.057333pt;}
.x37{left:524.782667pt;}
.xd{left:527.758667pt;}
.x38{left:530.833333pt;}
.x99{left:533.386667pt;}
.xe{left:534.400000pt;}
.x51{left:539.826667pt;}
.xa8{left:546.669333pt;}
.x6e{left:556.768000pt;}
.x1f{left:562.778667pt;}
.x20{left:576.061333pt;}
.x75{left:577.218667pt;}
.x21{left:579.316000pt;}
.x25{left:581.025333pt;}
.x7b{left:582.708000pt;}
.x15{left:584.449333pt;}
.xac{left:590.898667pt;}
.x22{left:592.600000pt;}
.x26{left:594.309333pt;}
.x23{left:595.854667pt;}
.xa9{left:596.754667pt;}
.x16{left:597.733333pt;}
.xad{left:600.861333pt;}
.xaa{left:602.069333pt;}
.x17{left:604.508000pt;}
.x76{left:605.421333pt;}
.x24{left:609.137333pt;}
.x27{left:610.900000pt;}
.xae{left:613.110667pt;}
.x28{left:614.208000pt;}
.x18{left:617.790667pt;}
.xaf{left:619.882667pt;}
.x4a{left:625.542667pt;}
.x29{left:627.490667pt;}
.x8b{left:628.909333pt;}
.x2a{left:634.106667pt;}
.x4b{left:636.078667pt;}
.x8c{left:638.269333pt;}
.x33{left:641.926667pt;}
.x71{left:644.130667pt;}
.x2b{left:647.389333pt;}
.x8{left:649.826667pt;}
.xa5{left:652.048000pt;}
.x9{left:655.140000pt;}
.x57{left:658.374667pt;}
.x48{left:661.006667pt;}
.x58{left:664.425333pt;}
.x92{left:665.758667pt;}
.x6f{left:666.768000pt;}
.x54{left:671.257333pt;}
.x49{left:674.290667pt;}
.xa6{left:675.958667pt;}
.x85{left:677.933333pt;}
.x55{left:681.346667pt;}
.x59{left:684.522667pt;}
.xb4{left:687.689333pt;}
.x4c{left:689.424000pt;}
.x5a{left:690.572000pt;}
.x56{left:694.137333pt;}
.xab{left:695.229333pt;}
.x8a{left:700.785333pt;}
.xb5{left:701.985333pt;}
.x4d{left:702.973333pt;}
.x4e{left:713.258667pt;}
.x7e{left:714.382667pt;}
.xa7{left:720.236000pt;}
.x93{left:721.242667pt;}
.x7f{left:723.661333pt;}
.xb6{left:724.932000pt;}
.x3e{left:726.596000pt;}
.xb{left:732.820000pt;}
.x3f{left:735.582667pt;}
.x5b{left:736.542667pt;}
.x5c{left:737.924000pt;}
.xc{left:739.461333pt;}
.x40{left:742.886667pt;}
.x5d{left:743.973333pt;}
}




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