
    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_a1c1b5d70256b7d97ce80668.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.681641;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_d9ab3231282ee216d23e02bd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.826660;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_6f29a55cedce36b094d84729.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.839844;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_86c6e332301bf231c44c2a4b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.874512;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_abde3a0f390b74dda8fe7ef6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.842285;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_fcca2d7383d054f5f128addc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.886719;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_19d7cce1fdea04a3350a1483.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.826660;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_aa168aef89bbd4be127c534a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.840820;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_5a65d5a3b5aa28efd16fa4d9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.874512;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_42b1ec8c174d86f4f724f755.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.874512;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_7f4870a74228c0e577bc202d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.002930;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_4f8edaffe5cc3557e0e7cb03.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.840820;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_99a5c1f9876f296056d602c9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.841309;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_19c833645a1696e687cab6b1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_2930c2cf74cd49e0fd2729b1.woff2')format("woff");}.fff{font-family:fff;line-height:1.049805;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_4125dfbb04ad975ad66422e5.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.004395;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_50c0ddad0e10f72b1b69901c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_76f0f11704a1e176b5b5e8bb.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_6924ca392cf0e03f48d607f9.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.908691;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_944c331884c092f4a221bbd6.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.976562;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_0a72743bdceb2a6964232ca1.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.049316;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_bc954975bf5b0a3f30236d03.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.002930;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_8bc3fe24cf58b223902ff964.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.003906;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:ff19;src:url('chunks/assets/font_d7b8443614918eb5312e1dea.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.202000;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:ff1a;src:url('chunks/assets/font_17d7f0a64549db1a92f32933.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.239000;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;}
.m3{transform:matrix(0.000000,-0.241484,0.241484,0.064694,0,0);-ms-transform:matrix(0.000000,-0.241484,0.241484,0.064694,0,0);-webkit-transform:matrix(0.000000,-0.241484,0.241484,0.064694,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m6{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m1{transform:matrix(0.241484,0.000000,-0.064694,0.241484,0,0);-ms-transform:matrix(0.241484,0.000000,-0.064694,0.241484,0,0);-webkit-transform:matrix(0.241484,0.000000,-0.064694,0.241484,0,0);}
.m7{transform:matrix(0.246507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246507,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);}
.m5{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-4.515000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:48.645600px;}
.ls2{letter-spacing:-5.664000px;}
.ls56{letter-spacing:-1.008000px;}
.ls3d{letter-spacing:-0.910736px;}
.ls3f{letter-spacing:-0.864000px;}
.ls30{letter-spacing:-0.792000px;}
.ls38{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.683052px;}
.ls2e{letter-spacing:-0.648000px;}
.ls53{letter-spacing:-0.607157px;}
.ls76{letter-spacing:-0.597000px;}
.ls21{letter-spacing:-0.576000px;}
.ls1f{letter-spacing:-0.379473px;}
.ls1d{letter-spacing:-0.360000px;}
.ls40{letter-spacing:-0.303579px;}
.ls11{letter-spacing:-0.298800px;}
.ls8{letter-spacing:-0.288000px;}
.ls6e{letter-spacing:-0.256200px;}
.ls10{letter-spacing:-0.239040px;}
.ls65{letter-spacing:-0.227684px;}
.ls70{letter-spacing:-0.224519px;}
.ls6{letter-spacing:-0.216000px;}
.ls71{letter-spacing:-0.213000px;}
.ls3e{letter-spacing:-0.151789px;}
.ls7{letter-spacing:-0.144000px;}
.ls73{letter-spacing:-0.141000px;}
.ls1a{letter-spacing:-0.075895px;}
.lsb{letter-spacing:-0.072000px;}
.ls12{letter-spacing:-0.059760px;}
.ls6d{letter-spacing:-0.057600px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.054000px;}
.ls14{letter-spacing:0.059760px;}
.lsa{letter-spacing:0.072000px;}
.ls72{letter-spacing:0.075000px;}
.ls31{letter-spacing:0.075895px;}
.ls6a{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.119520px;}
.ls6c{letter-spacing:0.123120px;}
.ls3{letter-spacing:0.144000px;}
.ls39{letter-spacing:0.151789px;}
.ls69{letter-spacing:0.180000px;}
.ls75{letter-spacing:0.207600px;}
.ls37{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.239040px;}
.lsc{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.298800px;}
.ls74{letter-spacing:0.331200px;}
.ls6f{letter-spacing:0.357000px;}
.ls9{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.379473px;}
.ls68{letter-spacing:0.489600px;}
.ls57{letter-spacing:0.496800px;}
.ls46{letter-spacing:0.504000px;}
.ls47{letter-spacing:0.648000px;}
.ls64{letter-spacing:0.712800px;}
.ls25{letter-spacing:0.720000px;}
.ls4c{letter-spacing:0.864000px;}
.ls54{letter-spacing:1.432800px;}
.ls1b{letter-spacing:1.440000px;}
.ls63{letter-spacing:2.152800px;}
.ls3a{letter-spacing:2.160000px;}
.ls22{letter-spacing:2.276840px;}
.ls2a{letter-spacing:2.880000px;}
.ls23{letter-spacing:3.491155px;}
.ls4d{letter-spacing:3.592800px;}
.ls28{letter-spacing:3.600000px;}
.ls2d{letter-spacing:4.320000px;}
.ls2c{letter-spacing:4.341600px;}
.lse{letter-spacing:4.401891px;}
.ls2f{letter-spacing:4.705469px;}
.ls58{letter-spacing:5.032800px;}
.ls35{letter-spacing:5.040000px;}
.lsf{letter-spacing:5.236732px;}
.ls3c{letter-spacing:5.464416px;}
.ls44{letter-spacing:5.760000px;}
.ls49{letter-spacing:5.767200px;}
.lsd{letter-spacing:6.147468px;}
.ls32{letter-spacing:6.480000px;}
.ls16{letter-spacing:7.200000px;}
.ls4e{letter-spacing:7.920000px;}
.ls4b{letter-spacing:8.640000px;}
.ls36{letter-spacing:9.360000px;}
.ls41{letter-spacing:9.648000px;}
.ls17{letter-spacing:10.080000px;}
.ls6b{letter-spacing:10.229760px;}
.ls33{letter-spacing:10.800000px;}
.ls18{letter-spacing:11.520000px;}
.ls1e{letter-spacing:12.240000px;}
.ls34{letter-spacing:12.960000px;}
.ls50{letter-spacing:12.981600px;}
.ls3b{letter-spacing:13.680000px;}
.ls26{letter-spacing:14.400000px;}
.ls45{letter-spacing:15.120000px;}
.ls15{letter-spacing:15.840000px;}
.ls55{letter-spacing:16.560000px;}
.ls2b{letter-spacing:17.280000px;}
.ls29{letter-spacing:18.000000px;}
.ls48{letter-spacing:20.160000px;}
.ls4f{letter-spacing:20.880000px;}
.ls27{letter-spacing:21.600000px;}
.ls43{letter-spacing:23.760000px;}
.ls42{letter-spacing:24.480000px;}
.ls66{letter-spacing:26.640000px;}
.ls4a{letter-spacing:35.280000px;}
.ls51{letter-spacing:52.560000px;}
.ls24{letter-spacing:54.000000px;}
.ls52{letter-spacing:54.720000px;}
.ls5f{letter-spacing:56.880000px;}
.ls5b{letter-spacing:61.920000px;}
.ls67{letter-spacing:79.200000px;}
.ls62{letter-spacing:93.600000px;}
.ls5d{letter-spacing:114.480000px;}
.ls60{letter-spacing:134.640000px;}
.ls5e{letter-spacing:136.080000px;}
.ls59{letter-spacing:144.720000px;}
.ls5c{letter-spacing:154.080000px;}
.ls5a{letter-spacing:162.720000px;}
.ls61{letter-spacing:167.760000px;}
.ls1c{letter-spacing:194.400000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-41.412000px;}
.ws52{word-spacing:-25.121134px;}
.ws96{word-spacing:-24.438082px;}
.ws4b{word-spacing:-24.210398px;}
.ws51{word-spacing:-23.679135px;}
.ws4f{word-spacing:-23.375556px;}
.ws4c{word-spacing:-22.464820px;}
.ws1e{word-spacing:-19.353139px;}
.ws7b{word-spacing:-19.125455px;}
.ws53{word-spacing:-19.049561px;}
.wsd1{word-spacing:-18.973666px;}
.ws21{word-spacing:-18.897771px;}
.ws98{word-spacing:-18.821877px;}
.wsf6{word-spacing:-18.670087px;}
.ws3a{word-spacing:-18.594193px;}
.ws10c{word-spacing:-18.504000px;}
.ws4a{word-spacing:-18.360000px;}
.ws3b{word-spacing:-18.290614px;}
.ws8{word-spacing:-18.288000px;}
.ws7a{word-spacing:-18.216000px;}
.ws7{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws97{word-spacing:-18.062930px;}
.ws20{word-spacing:-18.000000px;}
.ws1d{word-spacing:-17.928000px;}
.ws22{word-spacing:-17.856000px;}
.ws39{word-spacing:-17.784000px;}
.ws1f{word-spacing:-17.712000px;}
.ws4e{word-spacing:-17.640000px;}
.ws50{word-spacing:-17.424000px;}
.ws158{word-spacing:-17.231079px;}
.ws124{word-spacing:-17.208000px;}
.ws157{word-spacing:-16.917000px;}
.ws15b{word-spacing:-16.891200px;}
.ws15a{word-spacing:-16.635000px;}
.ws15c{word-spacing:-16.560000px;}
.ws95{word-spacing:-16.488000px;}
.ws159{word-spacing:-16.347000px;}
.ws38{word-spacing:-16.344000px;}
.ws155{word-spacing:-16.303800px;}
.ws156{word-spacing:-16.272000px;}
.ws4d{word-spacing:-16.128000px;}
.wsc{word-spacing:-15.238800px;}
.wsb{word-spacing:-15.179040px;}
.ws0{word-spacing:-15.000000px;}
.wsd{word-spacing:-14.999760px;}
.ws154{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.700960px;}
.wsa{word-spacing:-14.641200px;}
.ws17{word-spacing:-6.147468px;}
.ws19{word-spacing:-5.236732px;}
.ws123{word-spacing:-4.680000px;}
.ws101{word-spacing:-4.464000px;}
.ws18{word-spacing:-4.401891px;}
.wscb{word-spacing:-4.392000px;}
.ws10e{word-spacing:-4.320000px;}
.ws122{word-spacing:-4.248000px;}
.ws14{word-spacing:-4.176000px;}
.wscc{word-spacing:-4.032000px;}
.wsf4{word-spacing:-3.960000px;}
.ws40{word-spacing:-3.744000px;}
.ws66{word-spacing:-3.672000px;}
.ws6f{word-spacing:-3.642944px;}
.ws142{word-spacing:-3.600000px;}
.ws67{word-spacing:-3.528000px;}
.ws9a{word-spacing:-3.491155px;}
.ws3f{word-spacing:-3.456000px;}
.wsdb{word-spacing:-3.384000px;}
.wsdc{word-spacing:-3.312000px;}
.ws5c{word-spacing:-3.240000px;}
.ws153{word-spacing:-3.111681px;}
.ws8c{word-spacing:-3.024000px;}
.ws5b{word-spacing:-2.952000px;}
.ws5a{word-spacing:-2.880000px;}
.wsef{word-spacing:-2.808000px;}
.ws27{word-spacing:-2.736000px;}
.ws8e{word-spacing:-2.664000px;}
.ws8d{word-spacing:-2.592000px;}
.ws44{word-spacing:-2.304000px;}
.ws15{word-spacing:-2.232000px;}
.ws147{word-spacing:-2.160000px;}
.ws120{word-spacing:-2.088000px;}
.ws16{word-spacing:-2.016000px;}
.ws10f{word-spacing:-1.944000px;}
.ws84{word-spacing:-1.872000px;}
.ws48{word-spacing:-1.800000px;}
.ws7d{word-spacing:-1.584000px;}
.ws7e{word-spacing:-1.512000px;}
.ws134{word-spacing:-1.440000px;}
.ws47{word-spacing:-1.368000px;}
.ws36{word-spacing:-1.296000px;}
.wsd0{word-spacing:-1.224000px;}
.ws46{word-spacing:-1.152000px;}
.ws37{word-spacing:-1.080000px;}
.wsc5{word-spacing:-0.864000px;}
.wsea{word-spacing:-0.792000px;}
.wse6{word-spacing:-0.720000px;}
.ws29{word-spacing:-0.648000px;}
.ws28{word-spacing:-0.576000px;}
.wse7{word-spacing:-0.504000px;}
.wsbc{word-spacing:-0.432000px;}
.ws11{word-spacing:-0.360000px;}
.ws1a{word-spacing:-0.298800px;}
.wsb3{word-spacing:-0.216000px;}
.wsc8{word-spacing:-0.151789px;}
.ws26{word-spacing:-0.144000px;}
.ws1c{word-spacing:-0.119520px;}
.ws116{word-spacing:-0.075895px;}
.ws23{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
.ws5{word-spacing:0.072000px;}
.ws94{word-spacing:0.075895px;}
.ws12{word-spacing:0.144000px;}
.ws102{word-spacing:0.151789px;}
.wse{word-spacing:0.216000px;}
.ws132{word-spacing:0.227684px;}
.ws1b{word-spacing:0.239040px;}
.ws13{word-spacing:0.288000px;}
.wsad{word-spacing:0.303579px;}
.wse8{word-spacing:0.360000px;}
.ws3d{word-spacing:0.379473px;}
.ws43{word-spacing:0.576000px;}
.ws10d{word-spacing:0.607157px;}
.ws5d{word-spacing:0.648000px;}
.ws85{word-spacing:0.720000px;}
.ws8b{word-spacing:0.792000px;}
.wsbd{word-spacing:0.834841px;}
.ws49{word-spacing:0.864000px;}
.ws14f{word-spacing:0.910736px;}
.wsde{word-spacing:0.936000px;}
.wsf7{word-spacing:1.008000px;}
.ws30{word-spacing:1.080000px;}
.ws118{word-spacing:1.224000px;}
.ws35{word-spacing:1.296000px;}
.ws77{word-spacing:1.368000px;}
.ws13e{word-spacing:1.440000px;}
.ws14b{word-spacing:1.441999px;}
.ws80{word-spacing:1.512000px;}
.ws2f{word-spacing:1.584000px;}
.ws81{word-spacing:1.656000px;}
.wsdd{word-spacing:1.728000px;}
.wsa2{word-spacing:2.016000px;}
.ws99{word-spacing:2.088000px;}
.ws144{word-spacing:2.160000px;}
.ws14d{word-spacing:2.200945px;}
.wsd7{word-spacing:2.232000px;}
.ws7c{word-spacing:2.304000px;}
.wse0{word-spacing:2.376000px;}
.wsd4{word-spacing:2.448000px;}
.ws107{word-spacing:2.520000px;}
.wsbb{word-spacing:2.736000px;}
.wsff{word-spacing:2.808000px;}
.ws125{word-spacing:2.880000px;}
.wsb8{word-spacing:2.952000px;}
.ws69{word-spacing:3.024000px;}
.ws6a{word-spacing:3.096000px;}
.ws6b{word-spacing:3.168000px;}
.wsfb{word-spacing:3.240000px;}
.ws62{word-spacing:3.456000px;}
.wseb{word-spacing:3.528000px;}
.ws113{word-spacing:3.600000px;}
.wsf0{word-spacing:3.672000px;}
.ws61{word-spacing:3.744000px;}
.ws112{word-spacing:3.816000px;}
.wsce{word-spacing:3.960000px;}
.wsa9{word-spacing:4.176000px;}
.ws76{word-spacing:4.248000px;}
.ws11c{word-spacing:4.320000px;}
.wsc0{word-spacing:4.392000px;}
.wsf{word-spacing:4.464000px;}
.wscd{word-spacing:4.536000px;}
.ws10{word-spacing:4.608000px;}
.ws106{word-spacing:4.680000px;}
.wsc6{word-spacing:4.896000px;}
.ws45{word-spacing:4.968000px;}
.ws115{word-spacing:5.040000px;}
.ws8f{word-spacing:5.112000px;}
.ws31{word-spacing:5.184000px;}
.wse9{word-spacing:5.256000px;}
.wse5{word-spacing:5.328000px;}
.wsc9{word-spacing:5.400000px;}
.wsc7{word-spacing:5.464416px;}
.ws9b{word-spacing:5.616000px;}
.wsf2{word-spacing:5.688000px;}
.wsa1{word-spacing:5.760000px;}
.wsf3{word-spacing:5.832000px;}
.ws9c{word-spacing:5.904000px;}
.wsca{word-spacing:5.976000px;}
.ws9d{word-spacing:6.048000px;}
.ws32{word-spacing:6.336000px;}
.wsac{word-spacing:6.408000px;}
.ws7f{word-spacing:6.552000px;}
.ws68{word-spacing:6.624000px;}
.ws11a{word-spacing:6.696000px;}
.wse1{word-spacing:6.768000px;}
.ws4{word-spacing:6.876000px;}
.ws88{word-spacing:7.056000px;}
.ws54{word-spacing:7.128000px;}
.ws13d{word-spacing:7.200000px;}
.ws87{word-spacing:7.272000px;}
.ws55{word-spacing:7.344000px;}
.ws73{word-spacing:7.416000px;}
.ws2e{word-spacing:7.488000px;}
.ws2b{word-spacing:7.776000px;}
.wse4{word-spacing:7.848000px;}
.ws114{word-spacing:7.920000px;}
.ws72{word-spacing:7.992000px;}
.ws2a{word-spacing:8.064000px;}
.ws103{word-spacing:8.136000px;}
.wsf5{word-spacing:8.208000px;}
.wsdf{word-spacing:8.496000px;}
.ws11b{word-spacing:8.568000px;}
.wsc3{word-spacing:8.712000px;}
.ws86{word-spacing:8.784000px;}
.wsec{word-spacing:8.856000px;}
.ws135{word-spacing:9.000000px;}
.ws92{word-spacing:9.216000px;}
.ws91{word-spacing:9.288000px;}
.ws14e{word-spacing:9.360000px;}
.ws93{word-spacing:9.432000px;}
.ws90{word-spacing:9.504000px;}
.wsc1{word-spacing:9.576000px;}
.wsc2{word-spacing:9.648000px;}
.wsaa{word-spacing:9.720000px;}
.wsab{word-spacing:9.936000px;}
.ws2d{word-spacing:10.008000px;}
.ws136{word-spacing:10.018096px;}
.ws2c{word-spacing:10.224000px;}
.wsaf{word-spacing:10.440000px;}
.ws82{word-spacing:10.656000px;}
.wsa8{word-spacing:10.728000px;}
.wsae{word-spacing:10.800000px;}
.ws83{word-spacing:10.872000px;}
.ws3c{word-spacing:10.944000px;}
.ws3e{word-spacing:11.088000px;}
.ws109{word-spacing:11.376000px;}
.ws34{word-spacing:11.664000px;}
.ws33{word-spacing:11.808000px;}
.ws41{word-spacing:12.096000px;}
.ws42{word-spacing:12.384000px;}
.ws100{word-spacing:12.456000px;}
.ws105{word-spacing:12.600000px;}
.ws9f{word-spacing:12.816000px;}
.ws104{word-spacing:12.888000px;}
.wsf1{word-spacing:12.960000px;}
.ws8a{word-spacing:13.032000px;}
.ws89{word-spacing:13.104000px;}
.ws9e{word-spacing:13.248000px;}
.wsa0{word-spacing:13.320000px;}
.wsa4{word-spacing:13.608000px;}
.wsa7{word-spacing:13.752000px;}
.ws128{word-spacing:13.824000px;}
.wsa6{word-spacing:13.896000px;}
.wsa3{word-spacing:13.968000px;}
.wsfe{word-spacing:14.040000px;}
.wsfd{word-spacing:14.184000px;}
.ws56{word-spacing:14.256000px;}
.wsa5{word-spacing:14.268197px;}
.ws60{word-spacing:14.328000px;}
.ws145{word-spacing:14.400000px;}
.ws6e{word-spacing:14.472000px;}
.ws57{word-spacing:14.544000px;}
.ws146{word-spacing:14.616000px;}
.wsfc{word-spacing:14.688000px;}
.wsd6{word-spacing:14.760000px;}
.wscf{word-spacing:14.976000px;}
.wsb1{word-spacing:15.048000px;}
.wsb0{word-spacing:15.264000px;}
.wsb2{word-spacing:15.336000px;}
.ws152{word-spacing:15.480000px;}
.ws24{word-spacing:15.768000px;}
.ws151{word-spacing:15.840000px;}
.ws75{word-spacing:15.912000px;}
.ws74{word-spacing:15.984000px;}
.ws25{word-spacing:16.128000px;}
.wsbe{word-spacing:16.200000px;}
.wsbf{word-spacing:16.416000px;}
.ws111{word-spacing:16.632000px;}
.wsee{word-spacing:16.704000px;}
.ws110{word-spacing:16.776000px;}
.wsed{word-spacing:16.848000px;}
.ws70{word-spacing:16.920000px;}
.ws5f{word-spacing:17.136000px;}
.ws71{word-spacing:17.208000px;}
.ws11d{word-spacing:17.352000px;}
.ws5e{word-spacing:17.424000px;}
.ws63{word-spacing:17.856000px;}
.ws65{word-spacing:17.928000px;}
.ws64{word-spacing:18.144000px;}
.wse2{word-spacing:18.288000px;}
.ws79{word-spacing:18.792000px;}
.ws78{word-spacing:18.864000px;}
.wsd2{word-spacing:20.304000px;}
.wsd3{word-spacing:20.448000px;}
.ws108{word-spacing:20.736000px;}
.wsf8{word-spacing:20.808000px;}
.ws59{word-spacing:21.024000px;}
.wsf9{word-spacing:21.168000px;}
.ws10b{word-spacing:21.528000px;}
.ws58{word-spacing:21.744000px;}
.ws10a{word-spacing:22.464000px;}
.wsc4{word-spacing:23.184000px;}
.wsba{word-spacing:23.616000px;}
.wsb9{word-spacing:23.688000px;}
.ws121{word-spacing:23.832000px;}
.ws6c{word-spacing:23.904000px;}
.ws6d{word-spacing:24.048000px;}
.wse3{word-spacing:24.120000px;}
.wsb4{word-spacing:24.336000px;}
.wsb7{word-spacing:24.624000px;}
.wsb6{word-spacing:24.768000px;}
.wsb5{word-spacing:24.840000px;}
.ws117{word-spacing:25.272000px;}
.ws137{word-spacing:26.280000px;}
.wsda{word-spacing:27.288000px;}
.wsd9{word-spacing:27.504000px;}
.wsd8{word-spacing:27.576000px;}
.wsfa{word-spacing:28.368000px;}
.ws119{word-spacing:33.264000px;}
.wsd5{word-spacing:36.144000px;}
.ws11e{word-spacing:38.304000px;}
.ws11f{word-spacing:38.376000px;}
.ws13b{word-spacing:46.224000px;}
.ws13f{word-spacing:46.944000px;}
.ws12f{word-spacing:47.016000px;}
.ws12e{word-spacing:47.664000px;}
.ws12c{word-spacing:48.456000px;}
.ws13c{word-spacing:48.648480px;}
.ws12a{word-spacing:50.697635px;}
.ws12b{word-spacing:50.773530px;}
.ws138{word-spacing:52.704000px;}
.ws148{word-spacing:79.272000px;}
.ws14c{word-spacing:79.344000px;}
.ws14a{word-spacing:79.416000px;}
.ws13a{word-spacing:80.064000px;}
.ws149{word-spacing:83.635920px;}
.ws140{word-spacing:90.648000px;}
.ws143{word-spacing:108.144000px;}
.ws130{word-spacing:108.864000px;}
.ws133{word-spacing:108.936000px;}
.ws127{word-spacing:111.096000px;}
.ws131{word-spacing:114.752732px;}
.ws129{word-spacing:148.536000px;}
.ws12d{word-spacing:158.616000px;}
.ws139{word-spacing:165.960000px;}
.ws126{word-spacing:188.064000px;}
.ws150{word-spacing:211.104000px;}
.ws1{word-spacing:548.823000px;}
.ws141{word-spacing:873.576000px;}
._1f{margin-left:-194.400000px;}
._46{margin-left:-191.448000px;}
._21{margin-left:-170.431200px;}
._31{margin-left:-155.808000px;}
._30{margin-left:-141.048000px;}
._4e{margin-left:-80.150400px;}
._2e{margin-left:-75.384000px;}
._2f{margin-left:-70.560000px;}
._47{margin-left:-38.592000px;}
._32{margin-left:-35.496000px;}
._11{margin-left:-18.252603px;}
._c{margin-left:-16.300800px;}
._b{margin-left:-14.437810px;}
._f{margin-left:-12.240000px;}
._12{margin-left:-11.030400px;}
._13{margin-left:-9.765613px;}
._10{margin-left:-7.927200px;}
._2{margin-left:-6.875976px;}
._e{margin-left:-5.760000px;}
._7{margin-left:-3.906329px;}
._4{margin-left:-2.295969px;}
._1{margin-left:-1.043397px;}
._3{width:1.519200px;}
._5{width:2.648473px;}
._6{width:4.615673px;}
._a{width:6.071573px;}
._1b{width:7.134098px;}
._16{width:8.568000px;}
._8{width:9.828000px;}
._19{width:11.376000px;}
._17{width:12.491397px;}
._4d{width:14.212800px;}
._1a{width:15.688800px;}
._54{width:17.460350px;}
._1c{width:19.713600px;}
._15{width:21.852000px;}
._1e{width:24.696000px;}
._51{width:25.936545px;}
._1d{width:27.050400px;}
._24{width:30.225600px;}
._2b{width:32.032800px;}
._3e{width:35.690400px;}
._37{width:39.024000px;}
._50{width:46.885797px;}
._52{width:48.647173px;}
._3f{width:49.816800px;}
._d{width:54.000000px;}
._44{width:56.224800px;}
._2a{width:57.376800px;}
._27{width:62.272800px;}
._25{width:69.609600px;}
._39{width:71.496000px;}
._0{width:73.873800px;}
._53{width:79.416000px;}
._4c{width:83.008800px;}
._33{width:84.951969px;}
._2c{width:91.123200px;}
._28{width:93.203169px;}
._2d{width:94.996800px;}
._26{width:97.322400px;}
._3a{width:101.607527px;}
._3b{width:103.969800px;}
._23{width:105.111000px;}
._4f{width:109.202400px;}
._29{width:114.249600px;}
._49{width:118.224000px;}
._22{width:122.400000px;}
._38{width:123.840000px;}
._14{width:128.282400px;}
._45{width:139.824000px;}
._35{width:144.081000px;}
._41{width:155.052000px;}
._42{width:156.448800px;}
._43{width:157.896000px;}
._34{width:158.904000px;}
._4b{width:160.048800px;}
._36{width:161.136000px;}
._4a{width:162.288000px;}
._18{width:169.200000px;}
._20{width:170.920800px;}
._40{width:175.320000px;}
._48{width:176.760000px;}
._3c{width:191.152800px;}
._3d{width:193.176000px;}
._9{width:194.400000px;}
.fc8{color:rgb(31,73,125);}
.fc4{color:rgb(255,0,0);}
.fc7{color:rgb(44,114,183);}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc9{color:rgb(128,128,128);}
.fc6{color:rgb(51,51,51);}
.fc5{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(152,153,155);}
.fsd{font-size:42.840000px;}
.fs8{font-size:45.360000px;}
.fsb{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fsa{font-size:66.240000px;}
.fsc{font-size:69.822393px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:74.538968px;}
.fs7{font-size:75.894664px;}
.fs6{font-size:84.000000px;}
.fs0{font-size:87.732000px;}
.fs1{font-size:102.000000px;}
.fs2{font-size:105.596872px;}
.y0{bottom:0.000000px;}
.y1de{bottom:3.060000px;}
.y1dd{bottom:15.300000px;}
.y1dc{bottom:27.540000px;}
.yb{bottom:55.274400px;}
.ya{bottom:55.275000px;}
.y1c{bottom:58.140000px;}
.y1b9{bottom:62.820000px;}
.y1b{bottom:80.100000px;}
.y1da{bottom:108.216000px;}
.y199{bottom:111.780000px;}
.y38{bottom:113.760000px;}
.y16b{bottom:115.380000px;}
.y1b7{bottom:122.580000px;}
.y122{bottom:123.660000px;}
.yf8{bottom:123.840000px;}
.y94{bottom:126.720000px;}
.y161{bottom:128.340000px;}
.y54{bottom:128.880000px;}
.yb2{bottom:129.780000px;}
.y14e{bottom:130.320000px;}
.ye1{bottom:131.580000px;}
.y70{bottom:133.380000px;}
.y17c{bottom:133.920000px;}
.y1d9{bottom:136.296000px;}
.yda{bottom:138.420000px;}
.y1b6{bottom:144.180000px;}
.y16a{bottom:147.780000px;}
.y198{bottom:154.980000px;}
.y121{bottom:156.060000px;}
.yf7{bottom:156.240000px;}
.y93{bottom:159.120000px;}
.y1db{bottom:160.510270px;}
.y53{bottom:160.740000px;}
.y160{bottom:161.280000px;}
.yb1{bottom:162.180000px;}
.y14d{bottom:162.720000px;}
.ye0{bottom:163.980000px;}
.y37{bottom:165.780000px;}
.y1d8{bottom:165.990000px;}
.y17b{bottom:166.320000px;}
.y12d{bottom:167.580000px;}
.yd9{bottom:170.820000px;}
.y197{bottom:176.580000px;}
.yc8{bottom:179.100000px;}
.y169{bottom:180.180000px;}
.y1b5{bottom:187.380000px;}
.y120{bottom:188.460000px;}
.yf6{bottom:188.640000px;}
.y10b{bottom:190.980000px;}
.y92{bottom:191.520000px;}
.y52{bottom:193.140000px;}
.y15f{bottom:193.680000px;}
.yb0{bottom:194.580000px;}
.y14c{bottom:195.660000px;}
.y1d7{bottom:195.690000px;}
.ydf{bottom:196.380000px;}
.y6f{bottom:198.180000px;}
.y17a{bottom:198.720000px;}
.y12c{bottom:199.980000px;}
.yd8{bottom:203.220000px;}
.y1b4{bottom:208.980000px;}
.yc7{bottom:211.500000px;}
.y168{bottom:212.580000px;}
.y36{bottom:217.800000px;}
.y196{bottom:219.780000px;}
.y11f{bottom:220.860000px;}
.yf5{bottom:221.040000px;}
.y10a{bottom:223.380000px;}
.y91{bottom:223.920000px;}
.y1d6{bottom:225.390000px;}
.y51{bottom:225.540000px;}
.y15e{bottom:226.080000px;}
.yaf{bottom:226.980000px;}
.y14b{bottom:228.060000px;}
.yde{bottom:228.780000px;}
.y6e{bottom:230.580000px;}
.y76{bottom:230.760000px;}
.y179{bottom:231.120000px;}
.y12b{bottom:232.380000px;}
.yd7{bottom:235.620000px;}
.y195{bottom:241.380000px;}
.yc6{bottom:243.900000px;}
.y167{bottom:244.980000px;}
.y1b3{bottom:252.180000px;}
.yf4{bottom:253.440000px;}
.y1d5{bottom:255.090000px;}
.y109{bottom:255.780000px;}
.y90{bottom:256.320000px;}
.y50{bottom:257.940000px;}
.y35{bottom:258.120000px;}
.y15d{bottom:259.020000px;}
.yae{bottom:259.380000px;}
.y14a{bottom:260.460000px;}
.y6d{bottom:262.980000px;}
.y75{bottom:263.160000px;}
.y178{bottom:263.520000px;}
.y12a{bottom:264.780000px;}
.yd6{bottom:268.020000px;}
.y1b2{bottom:273.780000px;}
.y11e{bottom:274.140000px;}
.y128{bottom:274.500000px;}
.ye9{bottom:276.300000px;}
.y166{bottom:277.380000px;}
.ydd{bottom:282.780000px;}
.y194{bottom:284.580000px;}
.y1d4{bottom:284.790000px;}
.y34{bottom:285.480000px;}
.yf3{bottom:285.840000px;}
.y108{bottom:288.180000px;}
.y8f{bottom:288.720000px;}
.y15c{bottom:290.880000px;}
.yad{bottom:291.780000px;}
.y149{bottom:292.860000px;}
.y6c{bottom:295.380000px;}
.y74{bottom:295.560000px;}
.y177{bottom:295.920000px;}
.yc5{bottom:297.180000px;}
.yd5{bottom:300.420000px;}
.y33{bottom:303.480000px;}
.y18{bottom:305.388000px;}
.y193{bottom:306.180000px;}
.y11d{bottom:306.540000px;}
.y127{bottom:306.900000px;}
.y165{bottom:309.780000px;}
.y4f{bottom:311.760000px;}
.y1d3{bottom:314.490000px;}
.y1b1{bottom:316.980000px;}
.yf2{bottom:318.240000px;}
.y32{bottom:318.600000px;}
.y107{bottom:320.580000px;}
.y8e{bottom:321.120000px;}
.y15b{bottom:323.280000px;}
.yac{bottom:324.180000px;}
.y148{bottom:325.260000px;}
.y6b{bottom:327.780000px;}
.y73{bottom:327.960000px;}
.y176{bottom:328.320000px;}
.yc4{bottom:329.580000px;}
.y17{bottom:330.588000px;}
.yd4{bottom:332.820000px;}
.ydc{bottom:336.060000px;}
.y1b0{bottom:338.580000px;}
.y11c{bottom:339.120000px;}
.y126{bottom:339.300000px;}
.y164{bottom:342.180000px;}
.y1d2{bottom:344.235000px;}
.y192{bottom:349.380000px;}
.yf1{bottom:350.640000px;}
.y106{bottom:353.160000px;}
.y8d{bottom:353.520000px;}
.y15a{bottom:355.680000px;}
.y16{bottom:355.788000px;}
.yab{bottom:356.580000px;}
.y147{bottom:358.200000px;}
.y31{bottom:358.380000px;}
.y6a{bottom:360.180000px;}
.y72{bottom:360.360000px;}
.y175{bottom:360.720000px;}
.yc3{bottom:362.160000px;}
.y4e{bottom:363.960000px;}
.yd3{bottom:365.220000px;}
.y191{bottom:370.980000px;}
.y125{bottom:371.700000px;}
.y1d1{bottom:373.935000px;}
.y163{bottom:374.580000px;}
.y30{bottom:378.900000px;}
.y15{bottom:380.988000px;}
.y1af{bottom:381.780000px;}
.yf0{bottom:383.040000px;}
.y105{bottom:385.560000px;}
.y8c{bottom:386.100000px;}
.y159{bottom:388.080000px;}
.yaa{bottom:389.160000px;}
.y146{bottom:390.600000px;}
.y69{bottom:392.580000px;}
.y71{bottom:392.760000px;}
.y11b{bottom:392.940000px;}
.y174{bottom:393.120000px;}
.yc2{bottom:394.560000px;}
.yd2{bottom:397.620000px;}
.y1ae{bottom:403.560000px;}
.y1d0{bottom:403.635000px;}
.y124{bottom:404.100000px;}
.y8b{bottom:407.160000px;}
.y190{bottom:414.360000px;}
.yef{bottom:415.440000px;}
.y4d{bottom:415.980000px;}
.y104{bottom:417.960000px;}
.y158{bottom:420.480000px;}
.ya9{bottom:421.560000px;}
.y145{bottom:423.000000px;}
.y68{bottom:425.160000px;}
.y173{bottom:425.700000px;}
.yc1{bottom:426.960000px;}
.y2f{bottom:428.760000px;}
.y1cf{bottom:433.335000px;}
.y18f{bottom:435.960000px;}
.y123{bottom:436.500000px;}
.y8a{bottom:439.560000px;}
.y11a{bottom:445.860000px;}
.y1ad{bottom:446.760000px;}
.yee{bottom:447.840000px;}
.y129{bottom:448.380000px;}
.y103{bottom:450.360000px;}
.yd1{bottom:451.620000px;}
.y157{bottom:452.880000px;}
.ya8{bottom:453.960000px;}
.y144{bottom:455.400000px;}
.y14{bottom:456.588000px;}
.y67{bottom:457.560000px;}
.y172{bottom:458.100000px;}
.yc0{bottom:459.360000px;}
.y1ce{bottom:463.035000px;}
.y1ac{bottom:468.360000px;}
.y4c{bottom:468.900000px;}
.y2e{bottom:470.160000px;}
.y89{bottom:471.960000px;}
.y134{bottom:472.500000px;}
.y119{bottom:478.260000px;}
.y18e{bottom:479.160000px;}
.yed{bottom:480.240000px;}
.y13{bottom:481.788000px;}
.y102{bottom:482.760000px;}
.ydb{bottom:486.360000px;}
.ya7{bottom:486.900000px;}
.y143{bottom:488.340000px;}
.y66{bottom:489.960000px;}
.y16d{bottom:490.500000px;}
.ybf{bottom:491.760000px;}
.y1cd{bottom:492.735000px;}
.y18d{bottom:500.760000px;}
.y4b{bottom:501.300000px;}
.y156{bottom:503.820000px;}
.y88{bottom:504.360000px;}
.y118{bottom:510.660000px;}
.y2d{bottom:511.560000px;}
.yec{bottom:512.640000px;}
.y101{bottom:515.160000px;}
.ya6{bottom:518.760000px;}
.y142{bottom:520.740000px;}
.y65{bottom:522.360000px;}
.y1cc{bottom:522.435000px;}
.y16c{bottom:522.900000px;}
.ybe{bottom:524.160000px;}
.y1ab{bottom:533.160000px;}
.y4a{bottom:533.700000px;}
.y155{bottom:536.220000px;}
.y87{bottom:536.760000px;}
.y117{bottom:543.060000px;}
.y18c{bottom:543.960000px;}
.ye8{bottom:545.040000px;}
.y100{bottom:547.560000px;}
.ya5{bottom:551.160000px;}
.y1cb{bottom:552.135000px;}
.y2c{bottom:552.960000px;}
.y141{bottom:553.140000px;}
.y64{bottom:554.760000px;}
.y171{bottom:555.300000px;}
.ybd{bottom:556.560000px;}
.ye{bottom:565.542600px;}
.y18b{bottom:565.560000px;}
.y49{bottom:566.100000px;}
.y86{bottom:569.160000px;}
.y1aa{bottom:576.360000px;}
.ye7{bottom:577.440000px;}
.yff{bottom:579.960000px;}
.ya4{bottom:583.560000px;}
.y1ca{bottom:583.635000px;}
.y140{bottom:586.080000px;}
.y63{bottom:587.160000px;}
.y170{bottom:587.700000px;}
.ybc{bottom:588.960000px;}
.y2b{bottom:594.360000px;}
.y116{bottom:597.060000px;}
.y1a9{bottom:597.960000px;}
.y48{bottom:598.500000px;}
.y85{bottom:601.560000px;}
.y18a{bottom:608.760000px;}
.ye6{bottom:609.840000px;}
.yfe{bottom:612.360000px;}
.ya3{bottom:615.960000px;}
.y1c9{bottom:616.065000px;}
.y13f{bottom:618.480000px;}
.y62{bottom:619.560000px;}
.y16f{bottom:620.100000px;}
.y115{bottom:629.460000px;}
.y189{bottom:630.360000px;}
.y47{bottom:630.900000px;}
.y84{bottom:633.960000px;}
.y2a{bottom:635.760000px;}
.y1a8{bottom:641.160000px;}
.ybb{bottom:642.240000px;}
.yfd{bottom:644.760000px;}
.y1c8{bottom:646.845000px;}
.ya2{bottom:648.360000px;}
.y13e{bottom:650.880000px;}
.y61{bottom:651.960000px;}
.y16e{bottom:652.500000px;}
.y114{bottom:661.320000px;}
.y1a7{bottom:662.760000px;}
.y46{bottom:663.300000px;}
.y83{bottom:666.360000px;}
.y133{bottom:666.900000px;}
.y188{bottom:673.560000px;}
.yba{bottom:674.640000px;}
.y1c7{bottom:676.545000px;}
.y29{bottom:677.160000px;}
.ya1{bottom:680.760000px;}
.yc{bottom:681.936600px;}
.y13d{bottom:683.280000px;}
.y60{bottom:684.360000px;}
.y77{bottom:684.900000px;}
.y9{bottom:692.308350px;}
.y12{bottom:692.308500px;}
.y113{bottom:693.720000px;}
.y187{bottom:695.160000px;}
.y45{bottom:695.700000px;}
.y82{bottom:698.760000px;}
.y1a6{bottom:705.960000px;}
.y1c6{bottom:706.245000px;}
.yb9{bottom:707.040000px;}
.yfc{bottom:709.560000px;}
.ya0{bottom:713.160000px;}
.y13c{bottom:715.680000px;}
.y5f{bottom:716.760000px;}
.y131{bottom:717.300000px;}
.yd{bottom:717.962100px;}
.y28{bottom:718.560000px;}
.yd0{bottom:719.820000px;}
.y8{bottom:722.908350px;}
.y11{bottom:722.908500px;}
.y112{bottom:726.660000px;}
.y1a5{bottom:727.560000px;}
.y44{bottom:728.100000px;}
.y81{bottom:731.160000px;}
.y1c5{bottom:735.945000px;}
.y186{bottom:738.360000px;}
.yb8{bottom:739.620000px;}
.yfb{bottom:741.960000px;}
.y9f{bottom:745.560000px;}
.y13b{bottom:748.080000px;}
.y5e{bottom:749.160000px;}
.y162{bottom:749.700000px;}
.ycf{bottom:752.220000px;}
.y7{bottom:753.508350px;}
.y10{bottom:753.508500px;}
.y111{bottom:759.060000px;}
.y27{bottom:759.960000px;}
.y43{bottom:760.500000px;}
.y80{bottom:763.560000px;}
.y1c4{bottom:765.645000px;}
.y1a4{bottom:770.760000px;}
.yb7{bottom:772.020000px;}
.yfa{bottom:774.360000px;}
.y9e{bottom:777.960000px;}
.y13a{bottom:780.479850px;}
.y154{bottom:781.020000px;}
.y5d{bottom:781.560000px;}
.y6{bottom:784.108350px;}
.yf{bottom:784.108500px;}
.yce{bottom:784.620000px;}
.y110{bottom:792.000000px;}
.y1a3{bottom:792.360000px;}
.y42{bottom:792.900000px;}
.y1c3{bottom:795.345000px;}
.y7f{bottom:795.960000px;}
.y26{bottom:801.360000px;}
.y185{bottom:803.160000px;}
.yb6{bottom:804.420000px;}
.y9d{bottom:810.360000px;}
.y139{bottom:812.880000px;}
.y153{bottom:813.420000px;}
.y5c{bottom:813.960000px;}
.y5{bottom:814.708350px;}
.y4{bottom:814.708500px;}
.ycd{bottom:817.560000px;}
.y10f{bottom:824.400000px;}
.y184{bottom:824.760000px;}
.y1c2{bottom:825.045000px;}
.y41{bottom:825.300000px;}
.y7e{bottom:828.360000px;}
.y1a2{bottom:835.560000px;}
.yb5{bottom:836.820000px;}
.y25{bottom:842.760000px;}
.y138{bottom:845.820000px;}
.y5b{bottom:846.360000px;}
.y132{bottom:846.900000px;}
.y1c1{bottom:854.745000px;}
.y10e{bottom:856.800000px;}
.y1a1{bottom:857.160000px;}
.y40{bottom:857.700000px;}
.y7d{bottom:860.760000px;}
.y183{bottom:867.960000px;}
.y95{bottom:868.500000px;}
.ye5{bottom:869.220000px;}
.ycc{bottom:871.020000px;}
.y9c{bottom:875.160000px;}
.y3{bottom:875.908500px;}
.y137{bottom:877.680000px;}
.y152{bottom:878.220000px;}
.y5a{bottom:878.760000px;}
.y130{bottom:879.300000px;}
.y24{bottom:884.160000px;}
.y1c0{bottom:884.490000px;}
.y10d{bottom:889.560000px;}
.y3f{bottom:890.100000px;}
.yb4{bottom:890.640000px;}
.y7c{bottom:893.160000px;}
.y1a0{bottom:900.360000px;}
.ye4{bottom:901.620000px;}
.y9b{bottom:907.560000px;}
.y136{bottom:910.080000px;}
.y151{bottom:910.620000px;}
.y59{bottom:911.160000px;}
.y1bf{bottom:914.190000px;}
.y10c{bottom:921.960000px;}
.y3e{bottom:922.500000px;}
.ycb{bottom:924.300000px;}
.y23{bottom:925.560000px;}
.y182{bottom:932.760000px;}
.ye3{bottom:934.020000px;}
.y1be{bottom:938.130000px;}
.y9a{bottom:939.960000px;}
.y150{bottom:943.020000px;}
.y135{bottom:943.380000px;}
.y58{bottom:943.560000px;}
.y181{bottom:954.360000px;}
.y3d{bottom:954.900000px;}
.y22{bottom:957.960000px;}
.y1bd{bottom:962.970000px;}
.y19f{bottom:965.160000px;}
.yeb{bottom:966.420000px;}
.y99{bottom:972.360000px;}
.y14f{bottom:975.420000px;}
.y57{bottom:975.960000px;}
.yca{bottom:977.760000px;}
.y19e{bottom:986.760000px;}
.y3c{bottom:987.300000px;}
.y1bc{bottom:987.810000px;}
.ye2{bottom:987.840000px;}
.y7b{bottom:990.360000px;}
.y180{bottom:997.560000px;}
.y21{bottom:999.360000px;}
.y98{bottom:1004.760000px;}
.y56{bottom:1008.360000px;}
.y17f{bottom:1019.160000px;}
.y3b{bottom:1019.700000px;}
.yea{bottom:1020.240000px;}
.y7a{bottom:1022.760000px;}
.yf9{bottom:1023.300000px;}
.y1bb{bottom:1025.970000px;}
.y19d{bottom:1029.960000px;}
.yc9{bottom:1031.220000px;}
.y97{bottom:1037.160000px;}
.y20{bottom:1040.760000px;}
.y12f{bottom:1041.300000px;}
.y19c{bottom:1051.560000px;}
.y3a{bottom:1052.100000px;}
.y79{bottom:1055.160000px;}
.y1ba{bottom:1057.470000px;}
.y17e{bottom:1062.360000px;}
.y1f{bottom:1073.160000px;}
.y12e{bottom:1073.700000px;}
.y2{bottom:1080.073500px;}
.y17d{bottom:1083.960000px;}
.y39{bottom:1084.500000px;}
.y78{bottom:1087.560000px;}
.y96{bottom:1088.100000px;}
.y19b{bottom:1094.760000px;}
.y1b8{bottom:1095.300000px;}
.y1{bottom:1105.165500px;}
.y55{bottom:1105.560000px;}
.y1e{bottom:1106.100000px;}
.y19a{bottom:1116.360000px;}
.yb3{bottom:1137.960000px;}
.y1d{bottom:1138.500000px;}
.y1a{bottom:1170.720000px;}
.y19{bottom:1192.680000px;}
.h16{height:30.232617px;}
.h1e{height:38.250000px;}
.h6{height:40.781250px;}
.h20{height:40.783680px;}
.h1f{height:42.368760px;}
.h1b{height:46.142578px;}
.h12{height:47.988281px;}
.h9{height:48.937500px;}
.h18{height:50.305781px;}
.hf{height:50.507812px;}
.h8{height:50.663205px;}
.h17{height:51.064453px;}
.h1a{height:55.760625px;}
.hc{height:57.093750px;}
.he{height:57.134766px;}
.h3{height:58.473721px;}
.h2{height:58.602234px;}
.h19{height:58.710938px;}
.h1c{height:58.776272px;}
.hd{height:59.923828px;}
.h14{height:60.609375px;}
.h13{height:61.523438px;}
.ha{height:62.586158px;}
.h15{height:63.887891px;}
.h1d{height:65.884219px;}
.h4{height:69.328125px;}
.hb{height:70.710938px;}
.h5{height:71.772874px;}
.h7{height:93.068100px;}
.h10{height:1262.880000px;}
.h11{height:1263.000000px;}
.h0{height:1288.347000px;}
.h1{height:1288.500000px;}
.w7{width:262.500000px;}
.w6{width:892.979987px;}
.w4{width:892.980000px;}
.w5{width:893.250000px;}
.w2{width:918.432000px;}
.w3{width:918.750000px;}
.w0{width:1896.375000px;}
.w1{width:1896.750000px;}
.x0{left:0.000000px;}
.xf4{left:84.995987px;}
.xe{left:106.380000px;}
.x59{left:118.260000px;}
.x47{left:124.380000px;}
.x74{left:126.900000px;}
.x10{left:128.340000px;}
.x2c{left:130.680000px;}
.x30{left:136.260000px;}
.xc0{left:142.560000px;}
.x7c{left:144.720000px;}
.x5a{left:148.140000px;}
.x75{left:156.780000px;}
.x6f{left:158.040000px;}
.x15{left:159.480000px;}
.x57{left:160.560000px;}
.x95{left:161.640000px;}
.x2d{left:165.060000px;}
.xe3{left:170.280000px;}
.xc5{left:174.780000px;}
.xb2{left:175.860000px;}
.xef{left:179.100000px;}
.xb3{left:180.180000px;}
.x18{left:188.100000px;}
.xf7{left:189.209987px;}
.x58{left:190.440000px;}
.x39{left:193.680000px;}
.xf8{left:195.329987px;}
.xba{left:199.980000px;}
.x1d{left:203.400000px;}
.x12{left:205.380000px;}
.x9e{left:206.640000px;}
.xab{left:212.040000px;}
.xa2{left:214.200000px;}
.xe2{left:218.700000px;}
.xd2{left:221.580000px;}
.x51{left:222.660000px;}
.x27{left:226.440000px;}
.xa5{left:227.520000px;}
.x3c{left:228.780000px;}
.xbb{left:230.040000px;}
.x73{left:233.820000px;}
.x9d{left:235.080000px;}
.x9f{left:236.520000px;}
.xce{left:238.320000px;}
.x1e{left:240.480000px;}
.x3d{left:242.280000px;}
.x65{left:244.260000px;}
.x19{left:246.960000px;}
.x2e{left:252.180000px;}
.x28{left:256.320000px;}
.xa6{left:257.400000px;}
.x52{left:258.660000px;}
.x55{left:259.740000px;}
.xe1{left:260.820000px;}
.x21{left:262.440000px;}
.xb6{left:267.480000px;}
.x3e{left:272.160000px;}
.x66{left:274.140000px;}
.x1f{left:277.920000px;}
.x2f{left:282.060000px;}
.x56{left:289.620000px;}
.xcb{left:290.880000px;}
.x22{left:292.140000px;}
.x8b{left:294.480000px;}
.xeb{left:296.280000px;}
.xb7{left:297.360000px;}
.xe4{left:298.800000px;}
.x89{left:303.840000px;}
.xaf{left:305.460000px;}
.x20{left:307.800000px;}
.x79{left:315.540000px;}
.xd6{left:319.500000px;}
.x41{left:321.480000px;}
.x8c{left:324.360000px;}
.x1b{left:325.620000px;}
.x7f{left:327.240000px;}
.xd3{left:332.280000px;}
.x16{left:333.360000px;}
.x45{left:334.440000px;}
.x80{left:339.480000px;}
.xa{left:344.091000px;}
.x9{left:347.530500px;}
.xa0{left:349.740000px;}
.x42{left:351.360000px;}
.xfa{left:355.574987px;}
.x76{left:357.120000px;}
.xbc{left:359.100000px;}
.x37{left:360.720000px;}
.x9c{left:362.520000px;}
.x46{left:364.320000px;}
.x7a{left:368.820000px;}
.x53{left:369.900000px;}
.xbd{left:371.160000px;}
.x69{left:372.600000px;}
.x33{left:374.040000px;}
.xe5{left:377.100000px;}
.xa3{left:378.720000px;}
.x49{left:380.160000px;}
.x4e{left:381.240000px;}
.x17{left:383.040000px;}
.x14{left:385.200000px;}
.x85{left:389.520000px;}
.xa8{left:390.780000px;}
.x43{left:392.040000px;}
.x38{left:395.100000px;}
.x6d{left:398.340000px;}
.x54{left:399.780000px;}
.xbe{left:401.040000px;}
.x6a{left:402.480000px;}
.x34{left:403.920000px;}
.x50{left:405.180000px;}
.xae{left:406.440000px;}
.x4f{left:407.880000px;}
.xf9{left:409.934987px;}
.xcc{left:411.840000px;}
.x2b{left:414.720000px;}
.x1c{left:416.520000px;}
.xdc{left:418.140000px;}
.x8d{left:419.220000px;}
.x44{left:421.920000px;}
.x3b{left:423.360000px;}
.xd4{left:428.220000px;}
.xdb{left:431.280000px;}
.xf0{left:433.440000px;}
.x83{left:435.960000px;}
.x4a{left:437.220000px;}
.x48{left:438.300000px;}
.x1a{left:440.280000px;}
.x13{left:442.260000px;}
.xf{left:444.420000px;}
.x11{left:446.400000px;}
.xdd{left:448.020000px;}
.x8e{left:449.100000px;}
.x70{left:453.780000px;}
.xe6{left:455.580000px;}
.x6e{left:457.200000px;}
.x72{left:462.060000px;}
.x84{left:465.840000px;}
.x4b{left:467.100000px;}
.x7b{left:471.060000px;}
.x82{left:477.540000px;}
.xec{left:486.720000px;}
.x91{left:488.520000px;}
.x4c{left:491.760000px;}
.x96{left:495.360000px;}
.x77{left:496.620000px;}
.xbf{left:500.940000px;}
.x3f{left:502.740000px;}
.xc2{left:505.620000px;}
.x3a{left:511.740000px;}
.x71{left:512.820000px;}
.xea{left:516.600000px;}
.x92{left:518.400000px;}
.x4d{left:521.640000px;}
.x86{left:522.720000px;}
.x97{left:525.240000px;}
.xe0{left:526.320000px;}
.xb{left:527.940000px;}
.x81{left:530.640000px;}
.x40{left:532.620000px;}
.xee{left:534.420000px;}
.x93{left:536.220000px;}
.xc1{left:540.000000px;}
.x35{left:546.300000px;}
.x25{left:547.920000px;}
.x9a{left:559.440000px;}
.xcd{left:561.420000px;}
.xb8{left:562.500000px;}
.xf6{left:563.504987px;}
.x8a{left:566.640000px;}
.xe9{left:568.980000px;}
.x26{left:577.800000px;}
.xc{left:578.976000px;}
.x36{left:580.680000px;}
.x87{left:585.000000px;}
.xc8{left:586.980000px;}
.x9b{left:589.320000px;}
.xb9{left:592.380000px;}
.x31{left:594.720000px;}
.xd9{left:602.280000px;}
.x7d{left:609.480000px;}
.xc9{left:616.860000px;}
.x5b{left:620.820000px;}
.x98{left:622.080000px;}
.x32{left:624.600000px;}
.xe7{left:630.540000px;}
.xda{left:632.160000px;}
.x5d{left:636.300000px;}
.x5f{left:638.820000px;}
.xac{left:642.780000px;}
.xd0{left:647.640000px;}
.x94{left:648.900000px;}
.x5c{left:650.700000px;}
.xa1{left:654.120000px;}
.xc7{left:659.340000px;}
.x99{left:660.780000px;}
.x5e{left:666.540000px;}
.xf1{left:667.800000px;}
.x60{left:668.880000px;}
.xa9{left:670.140000px;}
.xc3{left:671.400000px;}
.xad{left:672.660000px;}
.xf2{left:675.900000px;}
.xe8{left:684.180000px;}
.xd7{left:686.340000px;}
.xa4{left:687.600000px;}
.x61{left:689.940000px;}
.x29{left:691.200000px;}
.xf3{left:693.540000px;}
.x6c{left:696.420000px;}
.xd5{left:700.200000px;}
.xed{left:702.720000px;}
.xc6{left:703.980000px;}
.xaa{left:706.860000px;}
.x8f{left:707.940000px;}
.xb0{left:709.380000px;}
.xcf{left:712.980000px;}
.xd8{left:716.220000px;}
.x63{left:718.200000px;}
.x62{left:720.000000px;}
.x2a{left:725.400000px;}
.xc4{left:726.840000px;}
.x6b{left:727.920000px;}
.x23{left:733.140000px;}
.x90{left:737.820000px;}
.xb1{left:739.260000px;}
.x67{left:741.420000px;}
.xb4{left:746.280000px;}
.x64{left:748.080000px;}
.xde{left:752.580000px;}
.xd1{left:754.920000px;}
.x7e{left:756.900000px;}
.x88{left:758.700000px;}
.x24{left:763.020000px;}
.xca{left:769.860000px;}
.x68{left:771.300000px;}
.xb5{left:776.160000px;}
.x78{left:777.780000px;}
.xdf{left:782.460000px;}
.xd{left:786.600000px;}
.xa7{left:790.380000px;}
.xf5{left:808.019987px;}
.x6{left:941.528850px;}
.x5{left:952.561500px;}
.x7{left:963.128850px;}
.x8{left:984.728850px;}
.x4{left:1324.899450px;}
.x1{left:1326.607500px;}
.x2{left:1491.496950px;}
.x3{left:1542.534450px;}
@media print{
.v1{vertical-align:-4.013333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:43.240533pt;}
.ls2{letter-spacing:-5.034667pt;}
.ls56{letter-spacing:-0.896000pt;}
.ls3d{letter-spacing:-0.809543pt;}
.ls3f{letter-spacing:-0.768000pt;}
.ls30{letter-spacing:-0.704000pt;}
.ls38{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.607157pt;}
.ls2e{letter-spacing:-0.576000pt;}
.ls53{letter-spacing:-0.539695pt;}
.ls76{letter-spacing:-0.530667pt;}
.ls21{letter-spacing:-0.512000pt;}
.ls1f{letter-spacing:-0.337310pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls40{letter-spacing:-0.269848pt;}
.ls11{letter-spacing:-0.265600pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls6e{letter-spacing:-0.227733pt;}
.ls10{letter-spacing:-0.212480pt;}
.ls65{letter-spacing:-0.202386pt;}
.ls70{letter-spacing:-0.199573pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls71{letter-spacing:-0.189333pt;}
.ls3e{letter-spacing:-0.134924pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls73{letter-spacing:-0.125333pt;}
.ls1a{letter-spacing:-0.067462pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls12{letter-spacing:-0.053120pt;}
.ls6d{letter-spacing:-0.051200pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.048000pt;}
.ls14{letter-spacing:0.053120pt;}
.lsa{letter-spacing:0.064000pt;}
.ls72{letter-spacing:0.066667pt;}
.ls31{letter-spacing:0.067462pt;}
.ls6a{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.106240pt;}
.ls6c{letter-spacing:0.109440pt;}
.ls3{letter-spacing:0.128000pt;}
.ls39{letter-spacing:0.134924pt;}
.ls69{letter-spacing:0.160000pt;}
.ls75{letter-spacing:0.184533pt;}
.ls37{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.212480pt;}
.lsc{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.265600pt;}
.ls74{letter-spacing:0.294400pt;}
.ls6f{letter-spacing:0.317333pt;}
.ls9{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.337310pt;}
.ls68{letter-spacing:0.435200pt;}
.ls57{letter-spacing:0.441600pt;}
.ls46{letter-spacing:0.448000pt;}
.ls47{letter-spacing:0.576000pt;}
.ls64{letter-spacing:0.633600pt;}
.ls25{letter-spacing:0.640000pt;}
.ls4c{letter-spacing:0.768000pt;}
.ls54{letter-spacing:1.273600pt;}
.ls1b{letter-spacing:1.280000pt;}
.ls63{letter-spacing:1.913600pt;}
.ls3a{letter-spacing:1.920000pt;}
.ls22{letter-spacing:2.023858pt;}
.ls2a{letter-spacing:2.560000pt;}
.ls23{letter-spacing:3.103248pt;}
.ls4d{letter-spacing:3.193600pt;}
.ls28{letter-spacing:3.200000pt;}
.ls2d{letter-spacing:3.840000pt;}
.ls2c{letter-spacing:3.859200pt;}
.lse{letter-spacing:3.912792pt;}
.ls2f{letter-spacing:4.182639pt;}
.ls58{letter-spacing:4.473600pt;}
.ls35{letter-spacing:4.480000pt;}
.lsf{letter-spacing:4.654873pt;}
.ls3c{letter-spacing:4.857258pt;}
.ls44{letter-spacing:5.120000pt;}
.ls49{letter-spacing:5.126400pt;}
.lsd{letter-spacing:5.464416pt;}
.ls32{letter-spacing:5.760000pt;}
.ls16{letter-spacing:6.400000pt;}
.ls4e{letter-spacing:7.040000pt;}
.ls4b{letter-spacing:7.680000pt;}
.ls36{letter-spacing:8.320000pt;}
.ls41{letter-spacing:8.576000pt;}
.ls17{letter-spacing:8.960000pt;}
.ls6b{letter-spacing:9.093120pt;}
.ls33{letter-spacing:9.600000pt;}
.ls18{letter-spacing:10.240000pt;}
.ls1e{letter-spacing:10.880000pt;}
.ls34{letter-spacing:11.520000pt;}
.ls50{letter-spacing:11.539200pt;}
.ls3b{letter-spacing:12.160000pt;}
.ls26{letter-spacing:12.800000pt;}
.ls45{letter-spacing:13.440000pt;}
.ls15{letter-spacing:14.080000pt;}
.ls55{letter-spacing:14.720000pt;}
.ls2b{letter-spacing:15.360000pt;}
.ls29{letter-spacing:16.000000pt;}
.ls48{letter-spacing:17.920000pt;}
.ls4f{letter-spacing:18.560000pt;}
.ls27{letter-spacing:19.200000pt;}
.ls43{letter-spacing:21.120000pt;}
.ls42{letter-spacing:21.760000pt;}
.ls66{letter-spacing:23.680000pt;}
.ls4a{letter-spacing:31.360000pt;}
.ls51{letter-spacing:46.720000pt;}
.ls24{letter-spacing:48.000000pt;}
.ls52{letter-spacing:48.640000pt;}
.ls5f{letter-spacing:50.560000pt;}
.ls5b{letter-spacing:55.040000pt;}
.ls67{letter-spacing:70.400000pt;}
.ls62{letter-spacing:83.200000pt;}
.ls5d{letter-spacing:101.760000pt;}
.ls60{letter-spacing:119.680000pt;}
.ls5e{letter-spacing:120.960000pt;}
.ls59{letter-spacing:128.640000pt;}
.ls5c{letter-spacing:136.960000pt;}
.ls5a{letter-spacing:144.640000pt;}
.ls61{letter-spacing:149.120000pt;}
.ls1c{letter-spacing:172.800000pt;}
.ws3{word-spacing:-36.810667pt;}
.ws52{word-spacing:-22.329897pt;}
.ws96{word-spacing:-21.722739pt;}
.ws4b{word-spacing:-21.520354pt;}
.ws51{word-spacing:-21.048120pt;}
.ws4f{word-spacing:-20.778272pt;}
.ws4c{word-spacing:-19.968729pt;}
.ws1e{word-spacing:-17.202790pt;}
.ws7b{word-spacing:-17.000405pt;}
.ws53{word-spacing:-16.932943pt;}
.wsd1{word-spacing:-16.865481pt;}
.ws21{word-spacing:-16.798019pt;}
.ws98{word-spacing:-16.730557pt;}
.wsf6{word-spacing:-16.595633pt;}
.ws3a{word-spacing:-16.528171pt;}
.ws10c{word-spacing:-16.448000pt;}
.ws4a{word-spacing:-16.320000pt;}
.ws3b{word-spacing:-16.258324pt;}
.ws8{word-spacing:-16.256000pt;}
.ws7a{word-spacing:-16.192000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws97{word-spacing:-16.055938pt;}
.ws20{word-spacing:-16.000000pt;}
.ws1d{word-spacing:-15.936000pt;}
.ws22{word-spacing:-15.872000pt;}
.ws39{word-spacing:-15.808000pt;}
.ws1f{word-spacing:-15.744000pt;}
.ws4e{word-spacing:-15.680000pt;}
.ws50{word-spacing:-15.488000pt;}
.ws158{word-spacing:-15.316514pt;}
.ws124{word-spacing:-15.296000pt;}
.ws157{word-spacing:-15.037333pt;}
.ws15b{word-spacing:-15.014400pt;}
.ws15a{word-spacing:-14.786667pt;}
.ws15c{word-spacing:-14.720000pt;}
.ws95{word-spacing:-14.656000pt;}
.ws159{word-spacing:-14.530667pt;}
.ws38{word-spacing:-14.528000pt;}
.ws155{word-spacing:-14.492267pt;}
.ws156{word-spacing:-14.464000pt;}
.ws4d{word-spacing:-14.336000pt;}
.wsc{word-spacing:-13.545600pt;}
.wsb{word-spacing:-13.492480pt;}
.ws0{word-spacing:-13.333333pt;}
.wsd{word-spacing:-13.333120pt;}
.ws154{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.067520pt;}
.wsa{word-spacing:-13.014400pt;}
.ws17{word-spacing:-5.464416pt;}
.ws19{word-spacing:-4.654873pt;}
.ws123{word-spacing:-4.160000pt;}
.ws101{word-spacing:-3.968000pt;}
.ws18{word-spacing:-3.912792pt;}
.wscb{word-spacing:-3.904000pt;}
.ws10e{word-spacing:-3.840000pt;}
.ws122{word-spacing:-3.776000pt;}
.ws14{word-spacing:-3.712000pt;}
.wscc{word-spacing:-3.584000pt;}
.wsf4{word-spacing:-3.520000pt;}
.ws40{word-spacing:-3.328000pt;}
.ws66{word-spacing:-3.264000pt;}
.ws6f{word-spacing:-3.238172pt;}
.ws142{word-spacing:-3.200000pt;}
.ws67{word-spacing:-3.136000pt;}
.ws9a{word-spacing:-3.103248pt;}
.ws3f{word-spacing:-3.072000pt;}
.wsdb{word-spacing:-3.008000pt;}
.wsdc{word-spacing:-2.944000pt;}
.ws5c{word-spacing:-2.880000pt;}
.ws153{word-spacing:-2.765939pt;}
.ws8c{word-spacing:-2.688000pt;}
.ws5b{word-spacing:-2.624000pt;}
.ws5a{word-spacing:-2.560000pt;}
.wsef{word-spacing:-2.496000pt;}
.ws27{word-spacing:-2.432000pt;}
.ws8e{word-spacing:-2.368000pt;}
.ws8d{word-spacing:-2.304000pt;}
.ws44{word-spacing:-2.048000pt;}
.ws15{word-spacing:-1.984000pt;}
.ws147{word-spacing:-1.920000pt;}
.ws120{word-spacing:-1.856000pt;}
.ws16{word-spacing:-1.792000pt;}
.ws10f{word-spacing:-1.728000pt;}
.ws84{word-spacing:-1.664000pt;}
.ws48{word-spacing:-1.600000pt;}
.ws7d{word-spacing:-1.408000pt;}
.ws7e{word-spacing:-1.344000pt;}
.ws134{word-spacing:-1.280000pt;}
.ws47{word-spacing:-1.216000pt;}
.ws36{word-spacing:-1.152000pt;}
.wsd0{word-spacing:-1.088000pt;}
.ws46{word-spacing:-1.024000pt;}
.ws37{word-spacing:-0.960000pt;}
.wsc5{word-spacing:-0.768000pt;}
.wsea{word-spacing:-0.704000pt;}
.wse6{word-spacing:-0.640000pt;}
.ws29{word-spacing:-0.576000pt;}
.ws28{word-spacing:-0.512000pt;}
.wse7{word-spacing:-0.448000pt;}
.wsbc{word-spacing:-0.384000pt;}
.ws11{word-spacing:-0.320000pt;}
.ws1a{word-spacing:-0.265600pt;}
.wsb3{word-spacing:-0.192000pt;}
.wsc8{word-spacing:-0.134924pt;}
.ws26{word-spacing:-0.128000pt;}
.ws1c{word-spacing:-0.106240pt;}
.ws116{word-spacing:-0.067462pt;}
.ws23{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
.ws5{word-spacing:0.064000pt;}
.ws94{word-spacing:0.067462pt;}
.ws12{word-spacing:0.128000pt;}
.ws102{word-spacing:0.134924pt;}
.wse{word-spacing:0.192000pt;}
.ws132{word-spacing:0.202386pt;}
.ws1b{word-spacing:0.212480pt;}
.ws13{word-spacing:0.256000pt;}
.wsad{word-spacing:0.269848pt;}
.wse8{word-spacing:0.320000pt;}
.ws3d{word-spacing:0.337310pt;}
.ws43{word-spacing:0.512000pt;}
.ws10d{word-spacing:0.539695pt;}
.ws5d{word-spacing:0.576000pt;}
.ws85{word-spacing:0.640000pt;}
.ws8b{word-spacing:0.704000pt;}
.wsbd{word-spacing:0.742081pt;}
.ws49{word-spacing:0.768000pt;}
.ws14f{word-spacing:0.809543pt;}
.wsde{word-spacing:0.832000pt;}
.wsf7{word-spacing:0.896000pt;}
.ws30{word-spacing:0.960000pt;}
.ws118{word-spacing:1.088000pt;}
.ws35{word-spacing:1.152000pt;}
.ws77{word-spacing:1.216000pt;}
.ws13e{word-spacing:1.280000pt;}
.ws14b{word-spacing:1.281777pt;}
.ws80{word-spacing:1.344000pt;}
.ws2f{word-spacing:1.408000pt;}
.ws81{word-spacing:1.472000pt;}
.wsdd{word-spacing:1.536000pt;}
.wsa2{word-spacing:1.792000pt;}
.ws99{word-spacing:1.856000pt;}
.ws144{word-spacing:1.920000pt;}
.ws14d{word-spacing:1.956396pt;}
.wsd7{word-spacing:1.984000pt;}
.ws7c{word-spacing:2.048000pt;}
.wse0{word-spacing:2.112000pt;}
.wsd4{word-spacing:2.176000pt;}
.ws107{word-spacing:2.240000pt;}
.wsbb{word-spacing:2.432000pt;}
.wsff{word-spacing:2.496000pt;}
.ws125{word-spacing:2.560000pt;}
.wsb8{word-spacing:2.624000pt;}
.ws69{word-spacing:2.688000pt;}
.ws6a{word-spacing:2.752000pt;}
.ws6b{word-spacing:2.816000pt;}
.wsfb{word-spacing:2.880000pt;}
.ws62{word-spacing:3.072000pt;}
.wseb{word-spacing:3.136000pt;}
.ws113{word-spacing:3.200000pt;}
.wsf0{word-spacing:3.264000pt;}
.ws61{word-spacing:3.328000pt;}
.ws112{word-spacing:3.392000pt;}
.wsce{word-spacing:3.520000pt;}
.wsa9{word-spacing:3.712000pt;}
.ws76{word-spacing:3.776000pt;}
.ws11c{word-spacing:3.840000pt;}
.wsc0{word-spacing:3.904000pt;}
.wsf{word-spacing:3.968000pt;}
.wscd{word-spacing:4.032000pt;}
.ws10{word-spacing:4.096000pt;}
.ws106{word-spacing:4.160000pt;}
.wsc6{word-spacing:4.352000pt;}
.ws45{word-spacing:4.416000pt;}
.ws115{word-spacing:4.480000pt;}
.ws8f{word-spacing:4.544000pt;}
.ws31{word-spacing:4.608000pt;}
.wse9{word-spacing:4.672000pt;}
.wse5{word-spacing:4.736000pt;}
.wsc9{word-spacing:4.800000pt;}
.wsc7{word-spacing:4.857258pt;}
.ws9b{word-spacing:4.992000pt;}
.wsf2{word-spacing:5.056000pt;}
.wsa1{word-spacing:5.120000pt;}
.wsf3{word-spacing:5.184000pt;}
.ws9c{word-spacing:5.248000pt;}
.wsca{word-spacing:5.312000pt;}
.ws9d{word-spacing:5.376000pt;}
.ws32{word-spacing:5.632000pt;}
.wsac{word-spacing:5.696000pt;}
.ws7f{word-spacing:5.824000pt;}
.ws68{word-spacing:5.888000pt;}
.ws11a{word-spacing:5.952000pt;}
.wse1{word-spacing:6.016000pt;}
.ws4{word-spacing:6.112000pt;}
.ws88{word-spacing:6.272000pt;}
.ws54{word-spacing:6.336000pt;}
.ws13d{word-spacing:6.400000pt;}
.ws87{word-spacing:6.464000pt;}
.ws55{word-spacing:6.528000pt;}
.ws73{word-spacing:6.592000pt;}
.ws2e{word-spacing:6.656000pt;}
.ws2b{word-spacing:6.912000pt;}
.wse4{word-spacing:6.976000pt;}
.ws114{word-spacing:7.040000pt;}
.ws72{word-spacing:7.104000pt;}
.ws2a{word-spacing:7.168000pt;}
.ws103{word-spacing:7.232000pt;}
.wsf5{word-spacing:7.296000pt;}
.wsdf{word-spacing:7.552000pt;}
.ws11b{word-spacing:7.616000pt;}
.wsc3{word-spacing:7.744000pt;}
.ws86{word-spacing:7.808000pt;}
.wsec{word-spacing:7.872000pt;}
.ws135{word-spacing:8.000000pt;}
.ws92{word-spacing:8.192000pt;}
.ws91{word-spacing:8.256000pt;}
.ws14e{word-spacing:8.320000pt;}
.ws93{word-spacing:8.384000pt;}
.ws90{word-spacing:8.448000pt;}
.wsc1{word-spacing:8.512000pt;}
.wsc2{word-spacing:8.576000pt;}
.wsaa{word-spacing:8.640000pt;}
.wsab{word-spacing:8.832000pt;}
.ws2d{word-spacing:8.896000pt;}
.ws136{word-spacing:8.904974pt;}
.ws2c{word-spacing:9.088000pt;}
.wsaf{word-spacing:9.280000pt;}
.ws82{word-spacing:9.472000pt;}
.wsa8{word-spacing:9.536000pt;}
.wsae{word-spacing:9.600000pt;}
.ws83{word-spacing:9.664000pt;}
.ws3c{word-spacing:9.728000pt;}
.ws3e{word-spacing:9.856000pt;}
.ws109{word-spacing:10.112000pt;}
.ws34{word-spacing:10.368000pt;}
.ws33{word-spacing:10.496000pt;}
.ws41{word-spacing:10.752000pt;}
.ws42{word-spacing:11.008000pt;}
.ws100{word-spacing:11.072000pt;}
.ws105{word-spacing:11.200000pt;}
.ws9f{word-spacing:11.392000pt;}
.ws104{word-spacing:11.456000pt;}
.wsf1{word-spacing:11.520000pt;}
.ws8a{word-spacing:11.584000pt;}
.ws89{word-spacing:11.648000pt;}
.ws9e{word-spacing:11.776000pt;}
.wsa0{word-spacing:11.840000pt;}
.wsa4{word-spacing:12.096000pt;}
.wsa7{word-spacing:12.224000pt;}
.ws128{word-spacing:12.288000pt;}
.wsa6{word-spacing:12.352000pt;}
.wsa3{word-spacing:12.416000pt;}
.wsfe{word-spacing:12.480000pt;}
.wsfd{word-spacing:12.608000pt;}
.ws56{word-spacing:12.672000pt;}
.wsa5{word-spacing:12.682842pt;}
.ws60{word-spacing:12.736000pt;}
.ws145{word-spacing:12.800000pt;}
.ws6e{word-spacing:12.864000pt;}
.ws57{word-spacing:12.928000pt;}
.ws146{word-spacing:12.992000pt;}
.wsfc{word-spacing:13.056000pt;}
.wsd6{word-spacing:13.120000pt;}
.wscf{word-spacing:13.312000pt;}
.wsb1{word-spacing:13.376000pt;}
.wsb0{word-spacing:13.568000pt;}
.wsb2{word-spacing:13.632000pt;}
.ws152{word-spacing:13.760000pt;}
.ws24{word-spacing:14.016000pt;}
.ws151{word-spacing:14.080000pt;}
.ws75{word-spacing:14.144000pt;}
.ws74{word-spacing:14.208000pt;}
.ws25{word-spacing:14.336000pt;}
.wsbe{word-spacing:14.400000pt;}
.wsbf{word-spacing:14.592000pt;}
.ws111{word-spacing:14.784000pt;}
.wsee{word-spacing:14.848000pt;}
.ws110{word-spacing:14.912000pt;}
.wsed{word-spacing:14.976000pt;}
.ws70{word-spacing:15.040000pt;}
.ws5f{word-spacing:15.232000pt;}
.ws71{word-spacing:15.296000pt;}
.ws11d{word-spacing:15.424000pt;}
.ws5e{word-spacing:15.488000pt;}
.ws63{word-spacing:15.872000pt;}
.ws65{word-spacing:15.936000pt;}
.ws64{word-spacing:16.128000pt;}
.wse2{word-spacing:16.256000pt;}
.ws79{word-spacing:16.704000pt;}
.ws78{word-spacing:16.768000pt;}
.wsd2{word-spacing:18.048000pt;}
.wsd3{word-spacing:18.176000pt;}
.ws108{word-spacing:18.432000pt;}
.wsf8{word-spacing:18.496000pt;}
.ws59{word-spacing:18.688000pt;}
.wsf9{word-spacing:18.816000pt;}
.ws10b{word-spacing:19.136000pt;}
.ws58{word-spacing:19.328000pt;}
.ws10a{word-spacing:19.968000pt;}
.wsc4{word-spacing:20.608000pt;}
.wsba{word-spacing:20.992000pt;}
.wsb9{word-spacing:21.056000pt;}
.ws121{word-spacing:21.184000pt;}
.ws6c{word-spacing:21.248000pt;}
.ws6d{word-spacing:21.376000pt;}
.wse3{word-spacing:21.440000pt;}
.wsb4{word-spacing:21.632000pt;}
.wsb7{word-spacing:21.888000pt;}
.wsb6{word-spacing:22.016000pt;}
.wsb5{word-spacing:22.080000pt;}
.ws117{word-spacing:22.464000pt;}
.ws137{word-spacing:23.360000pt;}
.wsda{word-spacing:24.256000pt;}
.wsd9{word-spacing:24.448000pt;}
.wsd8{word-spacing:24.512000pt;}
.wsfa{word-spacing:25.216000pt;}
.ws119{word-spacing:29.568000pt;}
.wsd5{word-spacing:32.128000pt;}
.ws11e{word-spacing:34.048000pt;}
.ws11f{word-spacing:34.112000pt;}
.ws13b{word-spacing:41.088000pt;}
.ws13f{word-spacing:41.728000pt;}
.ws12f{word-spacing:41.792000pt;}
.ws12e{word-spacing:42.368000pt;}
.ws12c{word-spacing:43.072000pt;}
.ws13c{word-spacing:43.243093pt;}
.ws12a{word-spacing:45.064565pt;}
.ws12b{word-spacing:45.132027pt;}
.ws138{word-spacing:46.848000pt;}
.ws148{word-spacing:70.464000pt;}
.ws14c{word-spacing:70.528000pt;}
.ws14a{word-spacing:70.592000pt;}
.ws13a{word-spacing:71.168000pt;}
.ws149{word-spacing:74.343040pt;}
.ws140{word-spacing:80.576000pt;}
.ws143{word-spacing:96.128000pt;}
.ws130{word-spacing:96.768000pt;}
.ws133{word-spacing:96.832000pt;}
.ws127{word-spacing:98.752000pt;}
.ws131{word-spacing:102.002428pt;}
.ws129{word-spacing:132.032000pt;}
.ws12d{word-spacing:140.992000pt;}
.ws139{word-spacing:147.520000pt;}
.ws126{word-spacing:167.168000pt;}
.ws150{word-spacing:187.648000pt;}
.ws1{word-spacing:487.842667pt;}
.ws141{word-spacing:776.512000pt;}
._1f{margin-left:-172.800000pt;}
._46{margin-left:-170.176000pt;}
._21{margin-left:-151.494400pt;}
._31{margin-left:-138.496000pt;}
._30{margin-left:-125.376000pt;}
._4e{margin-left:-71.244800pt;}
._2e{margin-left:-67.008000pt;}
._2f{margin-left:-62.720000pt;}
._47{margin-left:-34.304000pt;}
._32{margin-left:-31.552000pt;}
._11{margin-left:-16.224536pt;}
._c{margin-left:-14.489600pt;}
._b{margin-left:-12.833609pt;}
._f{margin-left:-10.880000pt;}
._12{margin-left:-9.804800pt;}
._13{margin-left:-8.680545pt;}
._10{margin-left:-7.046400pt;}
._2{margin-left:-6.111979pt;}
._e{margin-left:-5.120000pt;}
._7{margin-left:-3.472293pt;}
._4{margin-left:-2.040861pt;}
._1{margin-left:-0.927464pt;}
._3{width:1.350400pt;}
._5{width:2.354198pt;}
._6{width:4.102820pt;}
._a{width:5.396954pt;}
._1b{width:6.341421pt;}
._16{width:7.616000pt;}
._8{width:8.736000pt;}
._19{width:10.112000pt;}
._17{width:11.103464pt;}
._4d{width:12.633600pt;}
._1a{width:13.945600pt;}
._54{width:15.520311pt;}
._1c{width:17.523200pt;}
._15{width:19.424000pt;}
._1e{width:21.952000pt;}
._51{width:23.054707pt;}
._1d{width:24.044800pt;}
._24{width:26.867200pt;}
._2b{width:28.473600pt;}
._3e{width:31.724800pt;}
._37{width:34.688000pt;}
._50{width:41.676264pt;}
._52{width:43.241931pt;}
._3f{width:44.281600pt;}
._d{width:48.000000pt;}
._44{width:49.977600pt;}
._2a{width:51.001600pt;}
._27{width:55.353600pt;}
._25{width:61.875200pt;}
._39{width:63.552000pt;}
._0{width:65.665600pt;}
._53{width:70.592000pt;}
._4c{width:73.785600pt;}
._33{width:75.512861pt;}
._2c{width:80.998400pt;}
._28{width:82.847261pt;}
._2d{width:84.441600pt;}
._26{width:86.508800pt;}
._3a{width:90.317802pt;}
._3b{width:92.417600pt;}
._23{width:93.432000pt;}
._4f{width:97.068800pt;}
._29{width:101.555200pt;}
._49{width:105.088000pt;}
._22{width:108.800000pt;}
._38{width:110.080000pt;}
._14{width:114.028800pt;}
._45{width:124.288000pt;}
._35{width:128.072000pt;}
._41{width:137.824000pt;}
._42{width:139.065600pt;}
._43{width:140.352000pt;}
._34{width:141.248000pt;}
._4b{width:142.265600pt;}
._36{width:143.232000pt;}
._4a{width:144.256000pt;}
._18{width:150.400000pt;}
._20{width:151.929600pt;}
._40{width:155.840000pt;}
._48{width:157.120000pt;}
._3c{width:169.913600pt;}
._3d{width:171.712000pt;}
._9{width:172.800000pt;}
.fsd{font-size:38.080000pt;}
.fs8{font-size:40.320000pt;}
.fsb{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fsa{font-size:58.880000pt;}
.fsc{font-size:62.064349pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:66.256861pt;}
.fs7{font-size:67.461923pt;}
.fs6{font-size:74.666667pt;}
.fs0{font-size:77.984000pt;}
.fs1{font-size:90.666667pt;}
.fs2{font-size:93.863886pt;}
.y0{bottom:0.000000pt;}
.y1de{bottom:2.720000pt;}
.y1dd{bottom:13.600000pt;}
.y1dc{bottom:24.480000pt;}
.yb{bottom:49.132800pt;}
.ya{bottom:49.133333pt;}
.y1c{bottom:51.680000pt;}
.y1b9{bottom:55.840000pt;}
.y1b{bottom:71.200000pt;}
.y1da{bottom:96.192000pt;}
.y199{bottom:99.360000pt;}
.y38{bottom:101.120000pt;}
.y16b{bottom:102.560000pt;}
.y1b7{bottom:108.960000pt;}
.y122{bottom:109.920000pt;}
.yf8{bottom:110.080000pt;}
.y94{bottom:112.640000pt;}
.y161{bottom:114.080000pt;}
.y54{bottom:114.560000pt;}
.yb2{bottom:115.360000pt;}
.y14e{bottom:115.840000pt;}
.ye1{bottom:116.960000pt;}
.y70{bottom:118.560000pt;}
.y17c{bottom:119.040000pt;}
.y1d9{bottom:121.152000pt;}
.yda{bottom:123.040000pt;}
.y1b6{bottom:128.160000pt;}
.y16a{bottom:131.360000pt;}
.y198{bottom:137.760000pt;}
.y121{bottom:138.720000pt;}
.yf7{bottom:138.880000pt;}
.y93{bottom:141.440000pt;}
.y1db{bottom:142.675795pt;}
.y53{bottom:142.880000pt;}
.y160{bottom:143.360000pt;}
.yb1{bottom:144.160000pt;}
.y14d{bottom:144.640000pt;}
.ye0{bottom:145.760000pt;}
.y37{bottom:147.360000pt;}
.y1d8{bottom:147.546667pt;}
.y17b{bottom:147.840000pt;}
.y12d{bottom:148.960000pt;}
.yd9{bottom:151.840000pt;}
.y197{bottom:156.960000pt;}
.yc8{bottom:159.200000pt;}
.y169{bottom:160.160000pt;}
.y1b5{bottom:166.560000pt;}
.y120{bottom:167.520000pt;}
.yf6{bottom:167.680000pt;}
.y10b{bottom:169.760000pt;}
.y92{bottom:170.240000pt;}
.y52{bottom:171.680000pt;}
.y15f{bottom:172.160000pt;}
.yb0{bottom:172.960000pt;}
.y14c{bottom:173.920000pt;}
.y1d7{bottom:173.946667pt;}
.ydf{bottom:174.560000pt;}
.y6f{bottom:176.160000pt;}
.y17a{bottom:176.640000pt;}
.y12c{bottom:177.760000pt;}
.yd8{bottom:180.640000pt;}
.y1b4{bottom:185.760000pt;}
.yc7{bottom:188.000000pt;}
.y168{bottom:188.960000pt;}
.y36{bottom:193.600000pt;}
.y196{bottom:195.360000pt;}
.y11f{bottom:196.320000pt;}
.yf5{bottom:196.480000pt;}
.y10a{bottom:198.560000pt;}
.y91{bottom:199.040000pt;}
.y1d6{bottom:200.346667pt;}
.y51{bottom:200.480000pt;}
.y15e{bottom:200.960000pt;}
.yaf{bottom:201.760000pt;}
.y14b{bottom:202.720000pt;}
.yde{bottom:203.360000pt;}
.y6e{bottom:204.960000pt;}
.y76{bottom:205.120000pt;}
.y179{bottom:205.440000pt;}
.y12b{bottom:206.560000pt;}
.yd7{bottom:209.440000pt;}
.y195{bottom:214.560000pt;}
.yc6{bottom:216.800000pt;}
.y167{bottom:217.760000pt;}
.y1b3{bottom:224.160000pt;}
.yf4{bottom:225.280000pt;}
.y1d5{bottom:226.746667pt;}
.y109{bottom:227.360000pt;}
.y90{bottom:227.840000pt;}
.y50{bottom:229.280000pt;}
.y35{bottom:229.440000pt;}
.y15d{bottom:230.240000pt;}
.yae{bottom:230.560000pt;}
.y14a{bottom:231.520000pt;}
.y6d{bottom:233.760000pt;}
.y75{bottom:233.920000pt;}
.y178{bottom:234.240000pt;}
.y12a{bottom:235.360000pt;}
.yd6{bottom:238.240000pt;}
.y1b2{bottom:243.360000pt;}
.y11e{bottom:243.680000pt;}
.y128{bottom:244.000000pt;}
.ye9{bottom:245.600000pt;}
.y166{bottom:246.560000pt;}
.ydd{bottom:251.360000pt;}
.y194{bottom:252.960000pt;}
.y1d4{bottom:253.146667pt;}
.y34{bottom:253.760000pt;}
.yf3{bottom:254.080000pt;}
.y108{bottom:256.160000pt;}
.y8f{bottom:256.640000pt;}
.y15c{bottom:258.560000pt;}
.yad{bottom:259.360000pt;}
.y149{bottom:260.320000pt;}
.y6c{bottom:262.560000pt;}
.y74{bottom:262.720000pt;}
.y177{bottom:263.040000pt;}
.yc5{bottom:264.160000pt;}
.yd5{bottom:267.040000pt;}
.y33{bottom:269.760000pt;}
.y18{bottom:271.456000pt;}
.y193{bottom:272.160000pt;}
.y11d{bottom:272.480000pt;}
.y127{bottom:272.800000pt;}
.y165{bottom:275.360000pt;}
.y4f{bottom:277.120000pt;}
.y1d3{bottom:279.546667pt;}
.y1b1{bottom:281.760000pt;}
.yf2{bottom:282.880000pt;}
.y32{bottom:283.200000pt;}
.y107{bottom:284.960000pt;}
.y8e{bottom:285.440000pt;}
.y15b{bottom:287.360000pt;}
.yac{bottom:288.160000pt;}
.y148{bottom:289.120000pt;}
.y6b{bottom:291.360000pt;}
.y73{bottom:291.520000pt;}
.y176{bottom:291.840000pt;}
.yc4{bottom:292.960000pt;}
.y17{bottom:293.856000pt;}
.yd4{bottom:295.840000pt;}
.ydc{bottom:298.720000pt;}
.y1b0{bottom:300.960000pt;}
.y11c{bottom:301.440000pt;}
.y126{bottom:301.600000pt;}
.y164{bottom:304.160000pt;}
.y1d2{bottom:305.986667pt;}
.y192{bottom:310.560000pt;}
.yf1{bottom:311.680000pt;}
.y106{bottom:313.920000pt;}
.y8d{bottom:314.240000pt;}
.y15a{bottom:316.160000pt;}
.y16{bottom:316.256000pt;}
.yab{bottom:316.960000pt;}
.y147{bottom:318.400000pt;}
.y31{bottom:318.560000pt;}
.y6a{bottom:320.160000pt;}
.y72{bottom:320.320000pt;}
.y175{bottom:320.640000pt;}
.yc3{bottom:321.920000pt;}
.y4e{bottom:323.520000pt;}
.yd3{bottom:324.640000pt;}
.y191{bottom:329.760000pt;}
.y125{bottom:330.400000pt;}
.y1d1{bottom:332.386667pt;}
.y163{bottom:332.960000pt;}
.y30{bottom:336.800000pt;}
.y15{bottom:338.656000pt;}
.y1af{bottom:339.360000pt;}
.yf0{bottom:340.480000pt;}
.y105{bottom:342.720000pt;}
.y8c{bottom:343.200000pt;}
.y159{bottom:344.960000pt;}
.yaa{bottom:345.920000pt;}
.y146{bottom:347.200000pt;}
.y69{bottom:348.960000pt;}
.y71{bottom:349.120000pt;}
.y11b{bottom:349.280000pt;}
.y174{bottom:349.440000pt;}
.yc2{bottom:350.720000pt;}
.yd2{bottom:353.440000pt;}
.y1ae{bottom:358.720000pt;}
.y1d0{bottom:358.786667pt;}
.y124{bottom:359.200000pt;}
.y8b{bottom:361.920000pt;}
.y190{bottom:368.320000pt;}
.yef{bottom:369.280000pt;}
.y4d{bottom:369.760000pt;}
.y104{bottom:371.520000pt;}
.y158{bottom:373.760000pt;}
.ya9{bottom:374.720000pt;}
.y145{bottom:376.000000pt;}
.y68{bottom:377.920000pt;}
.y173{bottom:378.400000pt;}
.yc1{bottom:379.520000pt;}
.y2f{bottom:381.120000pt;}
.y1cf{bottom:385.186667pt;}
.y18f{bottom:387.520000pt;}
.y123{bottom:388.000000pt;}
.y8a{bottom:390.720000pt;}
.y11a{bottom:396.320000pt;}
.y1ad{bottom:397.120000pt;}
.yee{bottom:398.080000pt;}
.y129{bottom:398.560000pt;}
.y103{bottom:400.320000pt;}
.yd1{bottom:401.440000pt;}
.y157{bottom:402.560000pt;}
.ya8{bottom:403.520000pt;}
.y144{bottom:404.800000pt;}
.y14{bottom:405.856000pt;}
.y67{bottom:406.720000pt;}
.y172{bottom:407.200000pt;}
.yc0{bottom:408.320000pt;}
.y1ce{bottom:411.586667pt;}
.y1ac{bottom:416.320000pt;}
.y4c{bottom:416.800000pt;}
.y2e{bottom:417.920000pt;}
.y89{bottom:419.520000pt;}
.y134{bottom:420.000000pt;}
.y119{bottom:425.120000pt;}
.y18e{bottom:425.920000pt;}
.yed{bottom:426.880000pt;}
.y13{bottom:428.256000pt;}
.y102{bottom:429.120000pt;}
.ydb{bottom:432.320000pt;}
.ya7{bottom:432.800000pt;}
.y143{bottom:434.080000pt;}
.y66{bottom:435.520000pt;}
.y16d{bottom:436.000000pt;}
.ybf{bottom:437.120000pt;}
.y1cd{bottom:437.986667pt;}
.y18d{bottom:445.120000pt;}
.y4b{bottom:445.600000pt;}
.y156{bottom:447.840000pt;}
.y88{bottom:448.320000pt;}
.y118{bottom:453.920000pt;}
.y2d{bottom:454.720000pt;}
.yec{bottom:455.680000pt;}
.y101{bottom:457.920000pt;}
.ya6{bottom:461.120000pt;}
.y142{bottom:462.880000pt;}
.y65{bottom:464.320000pt;}
.y1cc{bottom:464.386667pt;}
.y16c{bottom:464.800000pt;}
.ybe{bottom:465.920000pt;}
.y1ab{bottom:473.920000pt;}
.y4a{bottom:474.400000pt;}
.y155{bottom:476.640000pt;}
.y87{bottom:477.120000pt;}
.y117{bottom:482.720000pt;}
.y18c{bottom:483.520000pt;}
.ye8{bottom:484.480000pt;}
.y100{bottom:486.720000pt;}
.ya5{bottom:489.920000pt;}
.y1cb{bottom:490.786667pt;}
.y2c{bottom:491.520000pt;}
.y141{bottom:491.680000pt;}
.y64{bottom:493.120000pt;}
.y171{bottom:493.600000pt;}
.ybd{bottom:494.720000pt;}
.ye{bottom:502.704533pt;}
.y18b{bottom:502.720000pt;}
.y49{bottom:503.200000pt;}
.y86{bottom:505.920000pt;}
.y1aa{bottom:512.320000pt;}
.ye7{bottom:513.280000pt;}
.yff{bottom:515.520000pt;}
.ya4{bottom:518.720000pt;}
.y1ca{bottom:518.786667pt;}
.y140{bottom:520.960000pt;}
.y63{bottom:521.920000pt;}
.y170{bottom:522.400000pt;}
.ybc{bottom:523.520000pt;}
.y2b{bottom:528.320000pt;}
.y116{bottom:530.720000pt;}
.y1a9{bottom:531.520000pt;}
.y48{bottom:532.000000pt;}
.y85{bottom:534.720000pt;}
.y18a{bottom:541.120000pt;}
.ye6{bottom:542.080000pt;}
.yfe{bottom:544.320000pt;}
.ya3{bottom:547.520000pt;}
.y1c9{bottom:547.613333pt;}
.y13f{bottom:549.760000pt;}
.y62{bottom:550.720000pt;}
.y16f{bottom:551.200000pt;}
.y115{bottom:559.520000pt;}
.y189{bottom:560.320000pt;}
.y47{bottom:560.800000pt;}
.y84{bottom:563.520000pt;}
.y2a{bottom:565.120000pt;}
.y1a8{bottom:569.920000pt;}
.ybb{bottom:570.880000pt;}
.yfd{bottom:573.120000pt;}
.y1c8{bottom:574.973333pt;}
.ya2{bottom:576.320000pt;}
.y13e{bottom:578.560000pt;}
.y61{bottom:579.520000pt;}
.y16e{bottom:580.000000pt;}
.y114{bottom:587.840000pt;}
.y1a7{bottom:589.120000pt;}
.y46{bottom:589.600000pt;}
.y83{bottom:592.320000pt;}
.y133{bottom:592.800000pt;}
.y188{bottom:598.720000pt;}
.yba{bottom:599.680000pt;}
.y1c7{bottom:601.373333pt;}
.y29{bottom:601.920000pt;}
.ya1{bottom:605.120000pt;}
.yc{bottom:606.165867pt;}
.y13d{bottom:607.360000pt;}
.y60{bottom:608.320000pt;}
.y77{bottom:608.800000pt;}
.y9{bottom:615.385200pt;}
.y12{bottom:615.385333pt;}
.y113{bottom:616.640000pt;}
.y187{bottom:617.920000pt;}
.y45{bottom:618.400000pt;}
.y82{bottom:621.120000pt;}
.y1a6{bottom:627.520000pt;}
.y1c6{bottom:627.773333pt;}
.yb9{bottom:628.480000pt;}
.yfc{bottom:630.720000pt;}
.ya0{bottom:633.920000pt;}
.y13c{bottom:636.160000pt;}
.y5f{bottom:637.120000pt;}
.y131{bottom:637.600000pt;}
.yd{bottom:638.188533pt;}
.y28{bottom:638.720000pt;}
.yd0{bottom:639.840000pt;}
.y8{bottom:642.585200pt;}
.y11{bottom:642.585333pt;}
.y112{bottom:645.920000pt;}
.y1a5{bottom:646.720000pt;}
.y44{bottom:647.200000pt;}
.y81{bottom:649.920000pt;}
.y1c5{bottom:654.173333pt;}
.y186{bottom:656.320000pt;}
.yb8{bottom:657.440000pt;}
.yfb{bottom:659.520000pt;}
.y9f{bottom:662.720000pt;}
.y13b{bottom:664.960000pt;}
.y5e{bottom:665.920000pt;}
.y162{bottom:666.400000pt;}
.ycf{bottom:668.640000pt;}
.y7{bottom:669.785200pt;}
.y10{bottom:669.785333pt;}
.y111{bottom:674.720000pt;}
.y27{bottom:675.520000pt;}
.y43{bottom:676.000000pt;}
.y80{bottom:678.720000pt;}
.y1c4{bottom:680.573333pt;}
.y1a4{bottom:685.120000pt;}
.yb7{bottom:686.240000pt;}
.yfa{bottom:688.320000pt;}
.y9e{bottom:691.520000pt;}
.y13a{bottom:693.759867pt;}
.y154{bottom:694.240000pt;}
.y5d{bottom:694.720000pt;}
.y6{bottom:696.985200pt;}
.yf{bottom:696.985333pt;}
.yce{bottom:697.440000pt;}
.y110{bottom:704.000000pt;}
.y1a3{bottom:704.320000pt;}
.y42{bottom:704.800000pt;}
.y1c3{bottom:706.973333pt;}
.y7f{bottom:707.520000pt;}
.y26{bottom:712.320000pt;}
.y185{bottom:713.920000pt;}
.yb6{bottom:715.040000pt;}
.y9d{bottom:720.320000pt;}
.y139{bottom:722.560000pt;}
.y153{bottom:723.040000pt;}
.y5c{bottom:723.520000pt;}
.y5{bottom:724.185200pt;}
.y4{bottom:724.185333pt;}
.ycd{bottom:726.720000pt;}
.y10f{bottom:732.800000pt;}
.y184{bottom:733.120000pt;}
.y1c2{bottom:733.373333pt;}
.y41{bottom:733.600000pt;}
.y7e{bottom:736.320000pt;}
.y1a2{bottom:742.720000pt;}
.yb5{bottom:743.840000pt;}
.y25{bottom:749.120000pt;}
.y138{bottom:751.840000pt;}
.y5b{bottom:752.320000pt;}
.y132{bottom:752.800000pt;}
.y1c1{bottom:759.773333pt;}
.y10e{bottom:761.600000pt;}
.y1a1{bottom:761.920000pt;}
.y40{bottom:762.400000pt;}
.y7d{bottom:765.120000pt;}
.y183{bottom:771.520000pt;}
.y95{bottom:772.000000pt;}
.ye5{bottom:772.640000pt;}
.ycc{bottom:774.240000pt;}
.y9c{bottom:777.920000pt;}
.y3{bottom:778.585333pt;}
.y137{bottom:780.160000pt;}
.y152{bottom:780.640000pt;}
.y5a{bottom:781.120000pt;}
.y130{bottom:781.600000pt;}
.y24{bottom:785.920000pt;}
.y1c0{bottom:786.213333pt;}
.y10d{bottom:790.720000pt;}
.y3f{bottom:791.200000pt;}
.yb4{bottom:791.680000pt;}
.y7c{bottom:793.920000pt;}
.y1a0{bottom:800.320000pt;}
.ye4{bottom:801.440000pt;}
.y9b{bottom:806.720000pt;}
.y136{bottom:808.960000pt;}
.y151{bottom:809.440000pt;}
.y59{bottom:809.920000pt;}
.y1bf{bottom:812.613333pt;}
.y10c{bottom:819.520000pt;}
.y3e{bottom:820.000000pt;}
.ycb{bottom:821.600000pt;}
.y23{bottom:822.720000pt;}
.y182{bottom:829.120000pt;}
.ye3{bottom:830.240000pt;}
.y1be{bottom:833.893333pt;}
.y9a{bottom:835.520000pt;}
.y150{bottom:838.240000pt;}
.y135{bottom:838.560000pt;}
.y58{bottom:838.720000pt;}
.y181{bottom:848.320000pt;}
.y3d{bottom:848.800000pt;}
.y22{bottom:851.520000pt;}
.y1bd{bottom:855.973333pt;}
.y19f{bottom:857.920000pt;}
.yeb{bottom:859.040000pt;}
.y99{bottom:864.320000pt;}
.y14f{bottom:867.040000pt;}
.y57{bottom:867.520000pt;}
.yca{bottom:869.120000pt;}
.y19e{bottom:877.120000pt;}
.y3c{bottom:877.600000pt;}
.y1bc{bottom:878.053333pt;}
.ye2{bottom:878.080000pt;}
.y7b{bottom:880.320000pt;}
.y180{bottom:886.720000pt;}
.y21{bottom:888.320000pt;}
.y98{bottom:893.120000pt;}
.y56{bottom:896.320000pt;}
.y17f{bottom:905.920000pt;}
.y3b{bottom:906.400000pt;}
.yea{bottom:906.880000pt;}
.y7a{bottom:909.120000pt;}
.yf9{bottom:909.600000pt;}
.y1bb{bottom:911.973333pt;}
.y19d{bottom:915.520000pt;}
.yc9{bottom:916.640000pt;}
.y97{bottom:921.920000pt;}
.y20{bottom:925.120000pt;}
.y12f{bottom:925.600000pt;}
.y19c{bottom:934.720000pt;}
.y3a{bottom:935.200000pt;}
.y79{bottom:937.920000pt;}
.y1ba{bottom:939.973333pt;}
.y17e{bottom:944.320000pt;}
.y1f{bottom:953.920000pt;}
.y12e{bottom:954.400000pt;}
.y2{bottom:960.065333pt;}
.y17d{bottom:963.520000pt;}
.y39{bottom:964.000000pt;}
.y78{bottom:966.720000pt;}
.y96{bottom:967.200000pt;}
.y19b{bottom:973.120000pt;}
.y1b8{bottom:973.600000pt;}
.y1{bottom:982.369333pt;}
.y55{bottom:982.720000pt;}
.y1e{bottom:983.200000pt;}
.y19a{bottom:992.320000pt;}
.yb3{bottom:1011.520000pt;}
.y1d{bottom:1012.000000pt;}
.y1a{bottom:1040.640000pt;}
.y19{bottom:1060.160000pt;}
.h16{height:26.873437pt;}
.h1e{height:34.000000pt;}
.h6{height:36.250000pt;}
.h20{height:36.252160pt;}
.h1f{height:37.661120pt;}
.h1b{height:41.015625pt;}
.h12{height:42.656250pt;}
.h9{height:43.500000pt;}
.h18{height:44.716250pt;}
.hf{height:44.895833pt;}
.h8{height:45.033960pt;}
.h17{height:45.390625pt;}
.h1a{height:49.565000pt;}
.hc{height:50.750000pt;}
.he{height:50.786458pt;}
.h3{height:51.976641pt;}
.h2{height:52.090875pt;}
.h19{height:52.187500pt;}
.h1c{height:52.245575pt;}
.hd{height:53.265625pt;}
.h14{height:53.875000pt;}
.h13{height:54.687500pt;}
.ha{height:55.632141pt;}
.h15{height:56.789236pt;}
.h1d{height:58.563750pt;}
.h4{height:61.625000pt;}
.hb{height:62.854167pt;}
.h5{height:63.798110pt;}
.h7{height:82.727200pt;}
.h10{height:1122.560000pt;}
.h11{height:1122.666667pt;}
.h0{height:1145.197333pt;}
.h1{height:1145.333333pt;}
.w7{width:233.333333pt;}
.w6{width:793.759988pt;}
.w4{width:793.760000pt;}
.w5{width:794.000000pt;}
.w2{width:816.384000pt;}
.w3{width:816.666667pt;}
.w0{width:1685.666667pt;}
.w1{width:1686.000000pt;}
.x0{left:0.000000pt;}
.xf4{left:75.551988pt;}
.xe{left:94.560000pt;}
.x59{left:105.120000pt;}
.x47{left:110.560000pt;}
.x74{left:112.800000pt;}
.x10{left:114.080000pt;}
.x2c{left:116.160000pt;}
.x30{left:121.120000pt;}
.xc0{left:126.720000pt;}
.x7c{left:128.640000pt;}
.x5a{left:131.680000pt;}
.x75{left:139.360000pt;}
.x6f{left:140.480000pt;}
.x15{left:141.760000pt;}
.x57{left:142.720000pt;}
.x95{left:143.680000pt;}
.x2d{left:146.720000pt;}
.xe3{left:151.360000pt;}
.xc5{left:155.360000pt;}
.xb2{left:156.320000pt;}
.xef{left:159.200000pt;}
.xb3{left:160.160000pt;}
.x18{left:167.200000pt;}
.xf7{left:168.186655pt;}
.x58{left:169.280000pt;}
.x39{left:172.160000pt;}
.xf8{left:173.626655pt;}
.xba{left:177.760000pt;}
.x1d{left:180.800000pt;}
.x12{left:182.560000pt;}
.x9e{left:183.680000pt;}
.xab{left:188.480000pt;}
.xa2{left:190.400000pt;}
.xe2{left:194.400000pt;}
.xd2{left:196.960000pt;}
.x51{left:197.920000pt;}
.x27{left:201.280000pt;}
.xa5{left:202.240000pt;}
.x3c{left:203.360000pt;}
.xbb{left:204.480000pt;}
.x73{left:207.840000pt;}
.x9d{left:208.960000pt;}
.x9f{left:210.240000pt;}
.xce{left:211.840000pt;}
.x1e{left:213.760000pt;}
.x3d{left:215.360000pt;}
.x65{left:217.120000pt;}
.x19{left:219.520000pt;}
.x2e{left:224.160000pt;}
.x28{left:227.840000pt;}
.xa6{left:228.800000pt;}
.x52{left:229.920000pt;}
.x55{left:230.880000pt;}
.xe1{left:231.840000pt;}
.x21{left:233.280000pt;}
.xb6{left:237.760000pt;}
.x3e{left:241.920000pt;}
.x66{left:243.680000pt;}
.x1f{left:247.040000pt;}
.x2f{left:250.720000pt;}
.x56{left:257.440000pt;}
.xcb{left:258.560000pt;}
.x22{left:259.680000pt;}
.x8b{left:261.760000pt;}
.xeb{left:263.360000pt;}
.xb7{left:264.320000pt;}
.xe4{left:265.600000pt;}
.x89{left:270.080000pt;}
.xaf{left:271.520000pt;}
.x20{left:273.600000pt;}
.x79{left:280.480000pt;}
.xd6{left:284.000000pt;}
.x41{left:285.760000pt;}
.x8c{left:288.320000pt;}
.x1b{left:289.440000pt;}
.x7f{left:290.880000pt;}
.xd3{left:295.360000pt;}
.x16{left:296.320000pt;}
.x45{left:297.280000pt;}
.x80{left:301.760000pt;}
.xa{left:305.858667pt;}
.x9{left:308.916000pt;}
.xa0{left:310.880000pt;}
.x42{left:312.320000pt;}
.xfa{left:316.066655pt;}
.x76{left:317.440000pt;}
.xbc{left:319.200000pt;}
.x37{left:320.640000pt;}
.x9c{left:322.240000pt;}
.x46{left:323.840000pt;}
.x7a{left:327.840000pt;}
.x53{left:328.800000pt;}
.xbd{left:329.920000pt;}
.x69{left:331.200000pt;}
.x33{left:332.480000pt;}
.xe5{left:335.200000pt;}
.xa3{left:336.640000pt;}
.x49{left:337.920000pt;}
.x4e{left:338.880000pt;}
.x17{left:340.480000pt;}
.x14{left:342.400000pt;}
.x85{left:346.240000pt;}
.xa8{left:347.360000pt;}
.x43{left:348.480000pt;}
.x38{left:351.200000pt;}
.x6d{left:354.080000pt;}
.x54{left:355.360000pt;}
.xbe{left:356.480000pt;}
.x6a{left:357.760000pt;}
.x34{left:359.040000pt;}
.x50{left:360.160000pt;}
.xae{left:361.280000pt;}
.x4f{left:362.560000pt;}
.xf9{left:364.386655pt;}
.xcc{left:366.080000pt;}
.x2b{left:368.640000pt;}
.x1c{left:370.240000pt;}
.xdc{left:371.680000pt;}
.x8d{left:372.640000pt;}
.x44{left:375.040000pt;}
.x3b{left:376.320000pt;}
.xd4{left:380.640000pt;}
.xdb{left:383.360000pt;}
.xf0{left:385.280000pt;}
.x83{left:387.520000pt;}
.x4a{left:388.640000pt;}
.x48{left:389.600000pt;}
.x1a{left:391.360000pt;}
.x13{left:393.120000pt;}
.xf{left:395.040000pt;}
.x11{left:396.800000pt;}
.xdd{left:398.240000pt;}
.x8e{left:399.200000pt;}
.x70{left:403.360000pt;}
.xe6{left:404.960000pt;}
.x6e{left:406.400000pt;}
.x72{left:410.720000pt;}
.x84{left:414.080000pt;}
.x4b{left:415.200000pt;}
.x7b{left:418.720000pt;}
.x82{left:424.480000pt;}
.xec{left:432.640000pt;}
.x91{left:434.240000pt;}
.x4c{left:437.120000pt;}
.x96{left:440.320000pt;}
.x77{left:441.440000pt;}
.xbf{left:445.280000pt;}
.x3f{left:446.880000pt;}
.xc2{left:449.440000pt;}
.x3a{left:454.880000pt;}
.x71{left:455.840000pt;}
.xea{left:459.200000pt;}
.x92{left:460.800000pt;}
.x4d{left:463.680000pt;}
.x86{left:464.640000pt;}
.x97{left:466.880000pt;}
.xe0{left:467.840000pt;}
.xb{left:469.280000pt;}
.x81{left:471.680000pt;}
.x40{left:473.440000pt;}
.xee{left:475.040000pt;}
.x93{left:476.640000pt;}
.xc1{left:480.000000pt;}
.x35{left:485.600000pt;}
.x25{left:487.040000pt;}
.x9a{left:497.280000pt;}
.xcd{left:499.040000pt;}
.xb8{left:500.000000pt;}
.xf6{left:500.893322pt;}
.x8a{left:503.680000pt;}
.xe9{left:505.760000pt;}
.x26{left:513.600000pt;}
.xc{left:514.645333pt;}
.x36{left:516.160000pt;}
.x87{left:520.000000pt;}
.xc8{left:521.760000pt;}
.x9b{left:523.840000pt;}
.xb9{left:526.560000pt;}
.x31{left:528.640000pt;}
.xd9{left:535.360000pt;}
.x7d{left:541.760000pt;}
.xc9{left:548.320000pt;}
.x5b{left:551.840000pt;}
.x98{left:552.960000pt;}
.x32{left:555.200000pt;}
.xe7{left:560.480000pt;}
.xda{left:561.920000pt;}
.x5d{left:565.600000pt;}
.x5f{left:567.840000pt;}
.xac{left:571.360000pt;}
.xd0{left:575.680000pt;}
.x94{left:576.800000pt;}
.x5c{left:578.400000pt;}
.xa1{left:581.440000pt;}
.xc7{left:586.080000pt;}
.x99{left:587.360000pt;}
.x5e{left:592.480000pt;}
.xf1{left:593.600000pt;}
.x60{left:594.560000pt;}
.xa9{left:595.680000pt;}
.xc3{left:596.800000pt;}
.xad{left:597.920000pt;}
.xf2{left:600.800000pt;}
.xe8{left:608.160000pt;}
.xd7{left:610.080000pt;}
.xa4{left:611.200000pt;}
.x61{left:613.280000pt;}
.x29{left:614.400000pt;}
.xf3{left:616.480000pt;}
.x6c{left:619.040000pt;}
.xd5{left:622.400000pt;}
.xed{left:624.640000pt;}
.xc6{left:625.760000pt;}
.xaa{left:628.320000pt;}
.x8f{left:629.280000pt;}
.xb0{left:630.560000pt;}
.xcf{left:633.760000pt;}
.xd8{left:636.640000pt;}
.x63{left:638.400000pt;}
.x62{left:640.000000pt;}
.x2a{left:644.800000pt;}
.xc4{left:646.080000pt;}
.x6b{left:647.040000pt;}
.x23{left:651.680000pt;}
.x90{left:655.840000pt;}
.xb1{left:657.120000pt;}
.x67{left:659.040000pt;}
.xb4{left:663.360000pt;}
.x64{left:664.960000pt;}
.xde{left:668.960000pt;}
.xd1{left:671.040000pt;}
.x7e{left:672.800000pt;}
.x88{left:674.400000pt;}
.x24{left:678.240000pt;}
.xca{left:684.320000pt;}
.x68{left:685.600000pt;}
.xb5{left:689.920000pt;}
.x78{left:691.360000pt;}
.xdf{left:695.520000pt;}
.xd{left:699.200000pt;}
.xa7{left:702.560000pt;}
.xf5{left:718.239988pt;}
.x6{left:836.914533pt;}
.x5{left:846.721333pt;}
.x7{left:856.114533pt;}
.x8{left:875.314533pt;}
.x4{left:1177.688400pt;}
.x1{left:1179.206667pt;}
.x2{left:1325.775067pt;}
.x3{left:1371.141733pt;}
}




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