
    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_e25817a251f7618fc990d084.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.126000;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_dd0ea6ee93d28c8eb2674721.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;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_9f904c46cdc416682b671d21.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.927000;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_d7091a40a61b26ac82afc8ad.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.954000;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_40bcc6d0d1e0b559f77b4d96.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.383000;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_4f52f7ed49acb05a7596d94e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.392000;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_21545ad827e5cf1a85609df7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941000;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_37190f1eb5f7a4148d297074.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.716000;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_131788edc63127ed147d7e31.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.881000;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_1dc2d219e5908ae40dfb2af7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938000;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_dc03a07c90e2b98209820199.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938000;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_3af8776e045e22259546b176.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739000;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_6abcc2dc6a514b8b4b9f0350.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.969000;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_32b281e0a544216dc4b85d77.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.509000;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_117705aad609ee6e330986d2.woff2')format("woff");}.fff{font-family:fff;line-height:0.969000;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_41e4e15e958a65533d6cbae8.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.705000;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_ae42320bc6548843588bd948.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.050000;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_1f8d6cca1e0c8524d7c4ac63.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_43b3c7ba665d0d972d2f8b29.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_c5a9bfce757cf7e0b777b06c.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.485000;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_46e001fdeaf69eaff991e365.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000000;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_a0b37fe98fd63b1bc3a7edff.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_47cbb5659efa460263301203.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.712000;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_1ac11116bd9c4a8ef0261ce9.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.715000;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_c019e3761246420ede0eb5cb.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.728000;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_236acc6e4986e69982082027.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.959000;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:ff1b;src:url('chunks/assets/font_83d2ae1f315142477d654309.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.699000;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:ff1c;src:url('chunks/assets/font_1d419bfbe5ce14d1221c08e3.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.073000;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;}
.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);}
.m3{transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v5{vertical-align:-24.151200px;}
.v4{vertical-align:-14.966180px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:25.864706px;}
.v7{vertical-align:29.253028px;}
.v6{vertical-align:36.396360px;}
.v1{vertical-align:40.831706px;}
.v2{vertical-align:62.601506px;}
.ls8{letter-spacing:0.000000px;}
.ls40{letter-spacing:0.004800px;}
.lsa{letter-spacing:0.012000px;}
.ls17{letter-spacing:0.030000px;}
.ls10{letter-spacing:0.036000px;}
.ls35{letter-spacing:0.038400px;}
.ls9{letter-spacing:0.043194px;}
.ls3{letter-spacing:0.051300px;}
.ls12{letter-spacing:0.057600px;}
.ls11{letter-spacing:0.060001px;}
.ls34{letter-spacing:0.095999px;}
.ls13{letter-spacing:0.099990px;}
.ls2a{letter-spacing:0.114001px;}
.ls33{letter-spacing:0.115199px;}
.ls32{letter-spacing:0.153598px;}
.ls26{letter-spacing:0.168002px;}
.ls1f{letter-spacing:0.174002px;}
.lse{letter-spacing:0.186002px;}
.lsb{letter-spacing:0.216002px;}
.ls27{letter-spacing:0.246002px;}
.ls0{letter-spacing:0.264600px;}
.ls22{letter-spacing:0.271962px;}
.ls28{letter-spacing:0.336003px;}
.lsf{letter-spacing:0.354004px;}
.ls14{letter-spacing:0.378004px;}
.ls6{letter-spacing:0.393300px;}
.ls18{letter-spacing:2.292023px;}
.ls20{letter-spacing:2.628026px;}
.ls1a{letter-spacing:2.629019px;}
.ls21{letter-spacing:4.775762px;}
.ls1b{letter-spacing:5.525512px;}
.ls3e{letter-spacing:9.246555px;}
.ls19{letter-spacing:9.990100px;}
.ls37{letter-spacing:10.209472px;}
.ls2{letter-spacing:10.243072px;}
.ls39{letter-spacing:10.511869px;}
.ls36{letter-spacing:10.545468px;}
.ls7{letter-spacing:10.550268px;}
.ls3f{letter-spacing:10.627067px;}
.ls3a{letter-spacing:10.852664px;}
.ls5{letter-spacing:12.363300px;}
.ls4{letter-spacing:12.705300px;}
.ls3c{letter-spacing:12.990130px;}
.ls24{letter-spacing:13.056131px;}
.ls38{letter-spacing:13.098131px;}
.lsc{letter-spacing:13.110131px;}
.ls31{letter-spacing:13.151836px;}
.ls15{letter-spacing:13.230132px;}
.ls2f{letter-spacing:13.300634px;}
.ls3b{letter-spacing:13.326133px;}
.ls25{letter-spacing:13.356134px;}
.ls16{letter-spacing:13.440134px;}
.lsd{letter-spacing:13.452135px;}
.ls2e{letter-spacing:13.487831px;}
.ls2d{letter-spacing:13.492631px;}
.ls23{letter-spacing:13.512135px;}
.ls3d{letter-spacing:13.572136px;}
.ls1d{letter-spacing:13.668137px;}
.ls2b{letter-spacing:15.933467px;}
.ls29{letter-spacing:16.698167px;}
.ls1c{letter-spacing:17.706177px;}
.ls1{letter-spacing:21.124536px;}
.ls2c{letter-spacing:788.822140px;}
.ls30{letter-spacing:809.572280px;}
.ls1e{letter-spacing:860.534605px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa1{word-spacing:-16.758168px;}
.wse0{word-spacing:-13.632136px;}
.ws9f{word-spacing:-13.512135px;}
.wse1{word-spacing:-13.290133px;}
.ws25{word-spacing:-10.598268px;}
.wsc9{word-spacing:-10.593468px;}
.wsf7{word-spacing:-10.559868px;}
.wsc3{word-spacing:-10.257472px;}
.wsa6{word-spacing:-0.071999px;}
.ws4a{word-spacing:-0.060001px;}
.ws10{word-spacing:-0.047999px;}
.wsd9{word-spacing:-0.039996px;}
.ws43{word-spacing:0.000000px;}
.wsa0{word-spacing:8.772125px;}
.ws38{word-spacing:9.585480px;}
.ws2b{word-spacing:9.657479px;}
.ws3d{word-spacing:9.681479px;}
.ws31{word-spacing:9.715079px;}
.ws112{word-spacing:9.772678px;}
.wsfc{word-spacing:9.782278px;}
.wsef{word-spacing:9.811077px;}
.wsf2{word-spacing:9.815877px;}
.ws3c{word-spacing:9.820677px;}
.ws27{word-spacing:9.825477px;}
.ws34{word-spacing:9.844677px;}
.ws37{word-spacing:9.849477px;}
.wsc8{word-spacing:9.854277px;}
.ws105{word-spacing:9.863877px;}
.ws2e{word-spacing:9.873477px;}
.wsf{word-spacing:9.878277px;}
.ws32{word-spacing:9.883076px;}
.ws30{word-spacing:9.887876px;}
.ws119{word-spacing:9.892676px;}
.wsb{word-spacing:9.897476px;}
.wsbc{word-spacing:9.902276px;}
.ws29{word-spacing:9.907076px;}
.wsf1{word-spacing:9.911876px;}
.ws41{word-spacing:9.916676px;}
.ws2f{word-spacing:9.921476px;}
.ws42{word-spacing:9.926276px;}
.ws2d{word-spacing:9.931076px;}
.ws33{word-spacing:9.940676px;}
.wsfa{word-spacing:9.950276px;}
.wsea{word-spacing:9.964675px;}
.ws108{word-spacing:9.969475px;}
.ws3e{word-spacing:9.974275px;}
.ws3b{word-spacing:9.979075px;}
.wsf6{word-spacing:9.983875px;}
.ws103{word-spacing:9.988675px;}
.ws107{word-spacing:10.003075px;}
.wsd{word-spacing:10.007875px;}
.wsf9{word-spacing:10.012675px;}
.wse{word-spacing:10.017475px;}
.ws10b{word-spacing:10.022275px;}
.ws40{word-spacing:10.036675px;}
.ws3f{word-spacing:10.041474px;}
.ws86{word-spacing:10.046274px;}
.wsc6{word-spacing:10.051074px;}
.wsf0{word-spacing:10.055874px;}
.ws109{word-spacing:10.070274px;}
.ws115{word-spacing:10.075074px;}
.ws3a{word-spacing:10.079874px;}
.wsbe{word-spacing:10.084674px;}
.wsee{word-spacing:10.089474px;}
.wseb{word-spacing:10.094274px;}
.ws6e{word-spacing:10.099074px;}
.wse5{word-spacing:10.103874px;}
.ws111{word-spacing:10.123073px;}
.wsce{word-spacing:10.127873px;}
.ws116{word-spacing:10.132673px;}
.ws104{word-spacing:10.147073px;}
.ws10a{word-spacing:10.151873px;}
.wse7{word-spacing:10.156673px;}
.wscb{word-spacing:10.161473px;}
.ws11d{word-spacing:10.166273px;}
.ws24{word-spacing:10.175873px;}
.ws26{word-spacing:10.180673px;}
.wsc2{word-spacing:10.185473px;}
.wsf4{word-spacing:10.190273px;}
.wsc7{word-spacing:10.195073px;}
.wsb1{word-spacing:10.199873px;}
.wsec{word-spacing:10.204672px;}
.ws2c{word-spacing:10.209472px;}
.ws110{word-spacing:10.214272px;}
.wsed{word-spacing:10.219072px;}
.ws114{word-spacing:10.223872px;}
.wsf8{word-spacing:10.228672px;}
.wsca{word-spacing:10.233472px;}
.ws28{word-spacing:10.238272px;}
.ws87{word-spacing:10.243072px;}
.wsfe{word-spacing:10.247872px;}
.ws117{word-spacing:10.252672px;}
.wsc5{word-spacing:10.267072px;}
.wsd1{word-spacing:10.271872px;}
.wse6{word-spacing:10.276672px;}
.ws0{word-spacing:10.281471px;}
.wsbd{word-spacing:10.286271px;}
.ws6f{word-spacing:10.291071px;}
.ws11c{word-spacing:10.295871px;}
.ws84{word-spacing:10.300671px;}
.wsc0{word-spacing:10.305471px;}
.ws113{word-spacing:10.310271px;}
.ws11b{word-spacing:10.319871px;}
.wse8{word-spacing:10.329471px;}
.ws106{word-spacing:10.339071px;}
.wsb2{word-spacing:10.343871px;}
.wsfd{word-spacing:10.348671px;}
.ws101{word-spacing:10.353471px;}
.ws10d{word-spacing:10.363070px;}
.wsbf{word-spacing:10.372670px;}
.wsbb{word-spacing:10.382270px;}
.wsff{word-spacing:10.391870px;}
.wsfb{word-spacing:10.396670px;}
.wsc1{word-spacing:10.401470px;}
.wsc4{word-spacing:10.406270px;}
.ws36{word-spacing:10.425470px;}
.ws85{word-spacing:10.430270px;}
.ws39{word-spacing:10.444669px;}
.ws10f{word-spacing:10.454269px;}
.wsd0{word-spacing:10.459069px;}
.ws35{word-spacing:10.463869px;}
.wse9{word-spacing:10.468669px;}
.ws2a{word-spacing:10.473469px;}
.ws102{word-spacing:10.492669px;}
.wsa{word-spacing:10.497469px;}
.wse4{word-spacing:10.531068px;}
.wsd2{word-spacing:10.535868px;}
.ws100{word-spacing:10.569468px;}
.ws118{word-spacing:10.588668px;}
.ws10e{word-spacing:10.612667px;}
.ws11a{word-spacing:10.617467px;}
.wsf5{word-spacing:10.646267px;}
.ws10c{word-spacing:10.651067px;}
.wscf{word-spacing:10.655867px;}
.wsc{word-spacing:10.804665px;}
.ws8{word-spacing:11.556000px;}
.ws9{word-spacing:11.599200px;}
.wsb8{word-spacing:11.761362px;}
.ws6{word-spacing:11.815200px;}
.ws7{word-spacing:11.896200px;}
.ws21{word-spacing:12.260700px;}
.ws1a{word-spacing:12.277800px;}
.ws17{word-spacing:12.351900px;}
.ws18{word-spacing:12.357600px;}
.ws1d{word-spacing:12.363300px;}
.ws20{word-spacing:12.420300px;}
.ws1e{word-spacing:12.431700px;}
.ws1c{word-spacing:12.443100px;}
.ws19{word-spacing:12.448800px;}
.ws14{word-spacing:12.517200px;}
.ws13{word-spacing:12.528600px;}
.ws23{word-spacing:12.591300px;}
.ws11{word-spacing:12.602700px;}
.ws16{word-spacing:12.614100px;}
.ws1b{word-spacing:12.631200px;}
.wscc{word-spacing:12.696127px;}
.ws22{word-spacing:12.705300px;}
.wsd3{word-spacing:12.720127px;}
.wsb3{word-spacing:12.758241px;}
.wscd{word-spacing:12.762128px;}
.ws1f{word-spacing:12.779400px;}
.ws15{word-spacing:12.802200px;}
.wsac{word-spacing:12.828128px;}
.ws12{word-spacing:12.859200px;}
.ws94{word-spacing:12.870129px;}
.wsdc{word-spacing:12.882129px;}
.ws76{word-spacing:12.900129px;}
.ws5b{word-spacing:12.906129px;}
.ws5c{word-spacing:12.936129px;}
.ws96{word-spacing:12.942129px;}
.wsba{word-spacing:12.950238px;}
.ws48{word-spacing:12.960130px;}
.wsb9{word-spacing:12.964638px;}
.ws74{word-spacing:12.966130px;}
.ws6d{word-spacing:12.972130px;}
.ws63{word-spacing:12.978130px;}
.ws92{word-spacing:12.984130px;}
.ws9b{word-spacing:12.990130px;}
.wsb7{word-spacing:12.993438px;}
.ws5f{word-spacing:12.996130px;}
.ws78{word-spacing:13.002130px;}
.ws81{word-spacing:13.008130px;}
.wsdb{word-spacing:13.014130px;}
.ws6b{word-spacing:13.020130px;}
.ws4e{word-spacing:13.026130px;}
.wsb6{word-spacing:13.031837px;}
.ws64{word-spacing:13.032130px;}
.ws5e{word-spacing:13.038130px;}
.ws95{word-spacing:13.044130px;}
.ws51{word-spacing:13.050130px;}
.ws9e{word-spacing:13.056131px;}
.ws80{word-spacing:13.062131px;}
.wsde{word-spacing:13.074131px;}
.ws5a{word-spacing:13.080131px;}
.ws83{word-spacing:13.086131px;}
.ws44{word-spacing:13.092131px;}
.ws57{word-spacing:13.098131px;}
.ws58{word-spacing:13.104131px;}
.ws45{word-spacing:13.110131px;}
.ws8c{word-spacing:13.116131px;}
.wsa9{word-spacing:13.122131px;}
.ws49{word-spacing:13.128131px;}
.ws7b{word-spacing:13.134131px;}
.wsdf{word-spacing:13.140131px;}
.ws62{word-spacing:13.146131px;}
.ws93{word-spacing:13.152132px;}
.ws4c{word-spacing:13.158132px;}
.ws54{word-spacing:13.164132px;}
.ws68{word-spacing:13.170132px;}
.ws56{word-spacing:13.176132px;}
.ws6a{word-spacing:13.182132px;}
.ws67{word-spacing:13.188132px;}
.ws73{word-spacing:13.194132px;}
.wsd6{word-spacing:13.200132px;}
.ws7e{word-spacing:13.206132px;}
.ws4f{word-spacing:13.212132px;}
.ws7f{word-spacing:13.218132px;}
.ws61{word-spacing:13.224132px;}
.ws50{word-spacing:13.230132px;}
.ws59{word-spacing:13.242132px;}
.ws9c{word-spacing:13.248132px;}
.wsb4{word-spacing:13.257434px;}
.ws4b{word-spacing:13.260133px;}
.ws99{word-spacing:13.266133px;}
.ws75{word-spacing:13.284133px;}
.wsdd{word-spacing:13.290133px;}
.wsb5{word-spacing:13.291034px;}
.ws98{word-spacing:13.296133px;}
.ws82{word-spacing:13.302133px;}
.ws66{word-spacing:13.308133px;}
.wsa2{word-spacing:13.320133px;}
.ws8e{word-spacing:13.332133px;}
.wsad{word-spacing:13.338133px;}
.wsd5{word-spacing:13.344133px;}
.ws60{word-spacing:13.350134px;}
.ws77{word-spacing:13.356134px;}
.wsa3{word-spacing:13.362134px;}
.ws7c{word-spacing:13.368134px;}
.ws7d{word-spacing:13.380134px;}
.ws47{word-spacing:13.386134px;}
.ws97{word-spacing:13.392134px;}
.ws46{word-spacing:13.398134px;}
.ws72{word-spacing:13.422134px;}
.ws7a{word-spacing:13.428134px;}
.ws53{word-spacing:13.434134px;}
.ws89{word-spacing:13.440134px;}
.ws6c{word-spacing:13.446134px;}
.wsaa{word-spacing:13.452135px;}
.ws5d{word-spacing:13.458135px;}
.ws69{word-spacing:13.464135px;}
.ws55{word-spacing:13.470135px;}
.ws8a{word-spacing:13.476135px;}
.wsd7{word-spacing:13.482135px;}
.ws9d{word-spacing:13.494135px;}
.wsda{word-spacing:13.512135px;}
.ws4d{word-spacing:13.524135px;}
.ws79{word-spacing:13.536135px;}
.wsa4{word-spacing:13.560136px;}
.wsd4{word-spacing:13.578136px;}
.ws9a{word-spacing:13.602136px;}
.wsd8{word-spacing:13.614136px;}
.ws65{word-spacing:13.620136px;}
.ws52{word-spacing:13.632136px;}
.ws8b{word-spacing:13.656137px;}
.wsaf{word-spacing:15.465471px;}
.wse2{word-spacing:15.523071px;}
.wsa5{word-spacing:15.537471px;}
.wsab{word-spacing:15.573470px;}
.ws71{word-spacing:15.595070px;}
.wsb0{word-spacing:15.623870px;}
.wsae{word-spacing:15.631070px;}
.ws88{word-spacing:15.674269px;}
.wsa8{word-spacing:15.703069px;}
.ws70{word-spacing:15.731869px;}
.ws8f{word-spacing:15.739069px;}
.ws91{word-spacing:15.760669px;}
.ws8d{word-spacing:15.854268px;}
.wsa7{word-spacing:15.904667px;}
.ws90{word-spacing:16.027066px;}
.ws3{word-spacing:26.244131px;}
.ws1{word-spacing:26.292131px;}
.ws4{word-spacing:26.304132px;}
.ws2{word-spacing:26.364132px;}
.ws5{word-spacing:26.592133px;}
.wse3{word-spacing:59.821652px;}
.wsf3{word-spacing:59.860052px;}
._d{margin-left:-12.931371px;}
._8{margin-left:-10.550268px;}
._9{margin-left:-5.020737px;}
._0{margin-left:-3.636018px;}
._1{margin-left:-1.118386px;}
._4{width:1.430700px;}
._2{width:9.503881px;}
._3{width:10.982263px;}
._b{width:12.444124px;}
._5{width:13.640100px;}
._a{width:14.649461px;}
._c{width:16.276597px;}
._11{width:19.732553px;}
._e{width:20.932538px;}
._6{width:46.545018px;}
._f{width:266.689466px;}
._10{width:1676.964638px;}
._7{width:1703.498706px;}
.fc1{color:rgb(66,93,177);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:30.000000px;}
.fsb{font-size:31.995000px;}
.fs3{font-size:35.995200px;}
.fs9{font-size:35.998800px;}
.fs8{font-size:39.996000px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs7{font-size:60.000600px;}
.fs6{font-size:71.999400px;}
.fs4{font-size:95.999400px;}
.fs1{font-size:120.000600px;}
.y0{bottom:0.000000px;}
.y24{bottom:54.000000px;}
.y118{bottom:98.560387px;}
.y168{bottom:122.031450px;}
.y12a{bottom:122.370769px;}
.y167{bottom:124.485075px;}
.ybc{bottom:124.494885px;}
.yec{bottom:124.495171px;}
.y192{bottom:124.496955px;}
.y13e{bottom:124.497210px;}
.y169{bottom:124.497600px;}
.y40{bottom:124.503719px;}
.y117{bottom:125.518050px;}
.y1cb{bottom:130.619887px;}
.y116{bottom:130.875505px;}
.y16a{bottom:131.130540px;}
.y206{bottom:131.555794px;}
.y3f{bottom:141.001113px;}
.y166{bottom:143.959769px;}
.ybb{bottom:143.969580px;}
.yeb{bottom:143.969866px;}
.y191{bottom:143.971650px;}
.y13d{bottom:143.971904px;}
.y1ca{bottom:144.906909px;}
.y92{bottom:145.246790px;}
.y129{bottom:145.586879px;}
.y205{bottom:145.842816px;}
.y114{bottom:154.431450px;}
.y6f{bottom:156.116025px;}
.y115{bottom:159.703800px;}
.y126{bottom:159.873778px;}
.y128{bottom:159.873900px;}
.y165{bottom:163.518465px;}
.yba{bottom:163.528275px;}
.yea{bottom:163.528561px;}
.y13c{bottom:163.530600px;}
.y1c9{bottom:164.380265px;}
.y127{bottom:165.146400px;}
.y204{bottom:165.316172px;}
.y3e{bottom:166.512794px;}
.y91{bottom:168.462900px;}
.y190{bottom:169.483500px;}
.y112{bottom:173.140200px;}
.y123{bottom:174.075179px;}
.y125{bottom:174.075600px;}
.y6e{bottom:175.590719px;}
.y113{bottom:178.497600px;}
.y1c8{bottom:178.582088px;}
.y124{bottom:179.433000px;}
.y203{bottom:179.603194px;}
.y164{bottom:182.993160px;}
.yb9{bottom:183.002970px;}
.ye9{bottom:183.003256px;}
.y3d{bottom:183.010188px;}
.y121{bottom:188.362200px;}
.y13b{bottom:188.957400px;}
.y10f{bottom:191.932815px;}
.y111{bottom:191.933850px;}
.y122{bottom:193.719600px;}
.y202{bottom:193.805016px;}
.y6d{bottom:195.065414px;}
.y110{bottom:197.206350px;}
.y1c7{bottom:198.140643px;}
.y23{bottom:198.996750px;}
.y3c{bottom:199.507582px;}
.y163{bottom:202.467855px;}
.yb8{bottom:202.477665px;}
.ye8{bottom:202.477951px;}
.y1c6{bottom:212.342466px;}
.y201{bottom:213.363572px;}
.y10e{bottom:214.383335px;}
.y6c{bottom:214.624110px;}
.y3b{bottom:216.004976px;}
.y22{bottom:220.001250px;}
.y162{bottom:222.026550px;}
.yb7{bottom:222.036361px;}
.y1c5{bottom:226.629487px;}
.y200{bottom:227.565394px;}
.y13a{bottom:230.708340px;}
.y18f{bottom:232.666665px;}
.y6b{bottom:234.098805px;}
.ye6{bottom:237.089495px;}
.y10d{bottom:238.875029px;}
.y21{bottom:241.005750px;}
.y161{bottom:241.501245px;}
.yb6{bottom:241.511055px;}
.y3a{bottom:241.516657px;}
.y1ff{bottom:241.852416px;}
.y1c4{bottom:246.102844px;}
.ye7{bottom:247.379400px;}
.ye5{bottom:247.379681px;}
.y139{bottom:250.183035px;}
.y18e{bottom:252.225361px;}
.y10c{bottom:253.162050px;}
.y6a{bottom:253.573499px;}
.y39{bottom:258.014050px;}
.y1c3{bottom:260.389865px;}
.y160{bottom:260.975940px;}
.yb3{bottom:260.985105px;}
.yb5{bottom:260.985750px;}
.y1fe{bottom:261.325772px;}
.y20{bottom:261.924750px;}
.yb4{bottom:267.703800px;}
.y138{bottom:269.657730px;}
.y18d{bottom:271.700055px;}
.y69{bottom:273.132195px;}
.y38{bottom:274.511444px;}
.y1c2{bottom:274.591688px;}
.y1fd{bottom:275.612794px;}
.y15f{bottom:280.450634px;}
.yb2{bottom:280.459800px;}
.yb0{bottom:280.460054px;}
.y1f{bottom:282.929250px;}
.yb1{bottom:287.177850px;}
.y10b{bottom:288.028604px;}
.y137{bottom:289.216425px;}
.y1fc{bottom:289.814616px;}
.y18c{bottom:291.174750px;}
.y68{bottom:292.606890px;}
.y1c1{bottom:294.150243px;}
.ye4{bottom:294.321150px;}
.y15e{bottom:300.009330px;}
.yad{bottom:300.018105px;}
.yaf{bottom:300.018750px;}
.y37{bottom:300.023125px;}
.y1e{bottom:303.933750px;}
.ye3{bottom:304.607723px;}
.yae{bottom:306.651900px;}
.y10a{bottom:307.587300px;}
.y1c0{bottom:308.352066px;}
.y136{bottom:308.691120px;}
.y1fb{bottom:309.287973px;}
.y67{bottom:312.081584px;}
.y36{bottom:316.520519px;}
.y18b{bottom:316.686600px;}
.y15d{bottom:319.484025px;}
.yaa{bottom:319.487775px;}
.yac{bottom:319.492800px;}
.y1fa{bottom:323.574994px;}
.y1d{bottom:324.938250px;}
.yab{bottom:326.125950px;}
.y1bf{bottom:327.910621px;}
.y135{bottom:328.165815px;}
.y66{bottom:331.640280px;}
.y35{bottom:333.017913px;}
.y109{bottom:333.099150px;}
.y15c{bottom:338.958719px;}
.ya9{bottom:338.962469px;}
.y1be{bottom:342.112444px;}
.ye2{bottom:342.705104px;}
.y1f9{bottom:343.048351px;}
.y1c{bottom:345.942750px;}
.y134{bottom:347.724511px;}
.y34{bottom:349.515307px;}
.y65{bottom:351.114975px;}
.y227{bottom:352.062066px;}
.y1bd{bottom:356.399465px;}
.y1f8{bottom:357.335372px;}
.y15b{bottom:358.517415px;}
.ya8{bottom:358.521165px;}
.ye1{bottom:362.263800px;}
.y33{bottom:366.012700px;}
.y226{bottom:366.349087px;}
.y1b{bottom:366.947250px;}
.y133{bottom:367.199205px;}
.y64{bottom:370.589669px;}
.y108{bottom:374.254500px;}
.y1bc{bottom:375.872822px;}
.y1f7{bottom:376.808729px;}
.y15a{bottom:377.992110px;}
.ya7{bottom:377.995860px;}
.y225{bottom:380.550910px;}
.ye0{bottom:381.738495px;}
.y32{bottom:382.510094px;}
.y132{bottom:386.673900px;}
.y1a{bottom:387.951750px;}
.y18a{bottom:388.882245px;}
.y63{bottom:390.148365px;}
.y1bb{bottom:390.159843px;}
.y1f6{bottom:391.095750px;}
.y107{bottom:393.729195px;}
.y159{bottom:397.466804px;}
.ya6{bottom:397.470554px;}
.y224{bottom:400.109465px;}
.ydf{bottom:401.213190px;}
.y1ba{bottom:404.361666px;}
.y31{bottom:408.021775px;}
.y189{bottom:408.356940px;}
.y19{bottom:408.956250px;}
.y62{bottom:409.623060px;}
.y1f5{bottom:410.569107px;}
.y131{bottom:412.185750px;}
.y106{bottom:413.203890px;}
.y223{bottom:414.311288px;}
.y158{bottom:417.025500px;}
.ya5{bottom:417.029250px;}
.yde{bottom:420.687884px;}
.y1b9{bottom:423.835022px;}
.y1f4{bottom:424.856128px;}
.y61{bottom:429.097755px;}
.y18{bottom:429.960750px;}
.y105{bottom:432.762585px;}
.y30{bottom:433.533456px;}
.y222{bottom:433.869843px;}
.y157{bottom:436.500195px;}
.ya4{bottom:436.503945px;}
.y188{bottom:436.930726px;}
.y1b8{bottom:438.122044px;}
.y1f3{bottom:439.057951px;}
.ydd{bottom:440.246580px;}
.y221{bottom:448.071666px;}
.y60{bottom:448.572449px;}
.y17{bottom:450.965250px;}
.y104{bottom:452.237280px;}
.y1b7{bottom:452.409065px;}
.y1f2{bottom:453.344972px;}
.y130{bottom:453.853575px;}
.y156{bottom:455.974890px;}
.ya3{bottom:455.978640px;}
.y187{bottom:456.405420px;}
.y2f{bottom:459.045137px;}
.ydc{bottom:459.721275px;}
.y90{bottom:460.656811px;}
.y220{bottom:462.358687px;}
.y5f{bottom:468.131145px;}
.y103{bottom:471.711975px;}
.y1b6{bottom:471.883622px;}
.y16{bottom:471.969750px;}
.y1f1{bottom:472.818329px;}
.y12f{bottom:473.412270px;}
.y155{bottom:475.533585px;}
.ya2{bottom:475.537335px;}
.ydb{bottom:479.195969px;}
.y8f{bottom:480.131505px;}
.y21f{bottom:481.832044px;}
.y2e{bottom:484.471620px;}
.y186{bottom:484.893705px;}
.y1b5{bottom:486.085444px;}
.y1f0{bottom:487.105350px;}
.y5e{bottom:487.605840px;}
.y102{bottom:491.270670px;}
.y12e{bottom:492.886965px;}
.y15{bottom:492.974250px;}
.y154{bottom:495.008280px;}
.ya1{bottom:495.012030px;}
.y21e{bottom:496.119065px;}
.yda{bottom:498.754665px;}
.y8c{bottom:499.596780px;}
.y8e{bottom:499.606200px;}
.y2d{bottom:500.969013px;}
.y1ef{bottom:501.303872px;}
.y185{bottom:504.368400px;}
.y1b4{bottom:505.644000px;}
.y8d{bottom:506.324250px;}
.y5d{bottom:507.080534px;}
.y21d{bottom:510.320888px;}
.y101{bottom:510.745365px;}
.y12d{bottom:512.361660px;}
.y14{bottom:513.978750px;}
.y153{bottom:514.482975px;}
.ya0{bottom:514.486725px;}
.yd9{bottom:518.229360px;}
.y8b{bottom:519.071475px;}
.y1b3{bottom:519.845822px;}
.y1ee{bottom:520.862428px;}
.y2c{bottom:526.480695px;}
.y5c{bottom:526.639230px;}
.y21c{bottom:529.794244px;}
.y184{bottom:529.880100px;}
.y100{bottom:530.220060px;}
.y12c{bottom:531.920355px;}
.y152{bottom:533.957669px;}
.y9f{bottom:533.961419px;}
.y13{bottom:534.983250px;}
.y1ed{bottom:535.064250px;}
.yd8{bottom:537.704054px;}
.y8a{bottom:538.630170px;}
.y1b2{bottom:539.404378px;}
.y2b{bottom:542.978088px;}
.y21b{bottom:544.081266px;}
.y5b{bottom:546.113925px;}
.yff{bottom:549.778755px;}
.y12b{bottom:551.395050px;}
.y151{bottom:553.516365px;}
.y9e{bottom:553.520115px;}
.y1b1{bottom:553.606200px;}
.y1ec{bottom:554.537607px;}
.y12{bottom:555.987750px;}
.yd7{bottom:557.262750px;}
.y89{bottom:558.104865px;}
.y2a{bottom:559.475482px;}
.y21a{bottom:563.555822px;}
.y5a{bottom:565.588619px;}
.y1eb{bottom:568.824628px;}
.yfe{bottom:569.253450px;}
.y150{bottom:572.991060px;}
.y9d{bottom:572.994810px;}
.y1b0{bottom:573.079622px;}
.y29{bottom:575.972876px;}
.y11{bottom:576.992250px;}
.y88{bottom:577.579560px;}
.y219{bottom:577.842844px;}
.yd6{bottom:582.689550px;}
.y1ea{bottom:583.111650px;}
.y142{bottom:583.453996px;}
.y59{bottom:585.147315px;}
.y1af{bottom:587.366643px;}
.y218{bottom:592.044666px;}
.y14f{bottom:592.465754px;}
.y9c{bottom:592.469504px;}
.y28{bottom:592.470270px;}
.y183{bottom:593.055915px;}
.yfd{bottom:594.765150px;}
.y87{bottom:597.138255px;}
.y10{bottom:597.996750px;}
.y1e9{bottom:602.586206px;}
.y58{bottom:604.622010px;}
.y141{bottom:606.670106px;}
.y1ae{bottom:606.840000px;}
.y27{bottom:608.967663px;}
.y217{bottom:611.603222px;}
.y14e{bottom:612.024450px;}
.y9b{bottom:612.028200px;}
.y182{bottom:612.614611px;}
.y86{bottom:616.612950px;}
.y1e8{bottom:616.788029px;}
.y140{bottom:620.957128px;}
.y1ad{bottom:621.127021px;}
.y57{bottom:624.096704px;}
.y26{bottom:625.465057px;}
.y216{bottom:625.805044px;}
.yf{bottom:630.991950px;}
.y1e7{bottom:631.075050px;}
.y14d{bottom:631.499145px;}
.y181{bottom:632.089305px;}
.yd3{bottom:632.089560px;}
.yd5{bottom:632.097450px;}
.y13f{bottom:635.158950px;}
.y1ac{bottom:635.328844px;}
.yfc{bottom:635.919465px;}
.y85{bottom:636.087645px;}
.y9a{bottom:637.540224px;}
.yd4{bottom:638.730600px;}
.y56{bottom:643.655400px;}
.y215{bottom:645.363600px;}
.y25{bottom:650.040750px;}
.y1e6{bottom:650.548407px;}
.y14c{bottom:650.973840px;}
.y180{bottom:651.564000px;}
.yd2{bottom:651.564254px;}
.y1ab{bottom:654.887399px;}
.yfb{bottom:655.394160px;}
.y84{bottom:655.646340px;}
.y99{bottom:658.459650px;}
.y214{bottom:659.565422px;}
.y55{bottom:663.130095px;}
.y1e5{bottom:664.835428px;}
.y1aa{bottom:669.089222px;}
.y14b{bottom:670.532535px;}
.y17f{bottom:671.122696px;}
.yd1{bottom:671.122950px;}
.yfa{bottom:674.952855px;}
.y83{bottom:675.121035px;}
.y1e4{bottom:679.037251px;}
.y213{bottom:679.038779px;}
.y54{bottom:682.604790px;}
.y1a9{bottom:683.376243px;}
.y14a{bottom:690.007230px;}
.y17e{bottom:690.597390px;}
.yd0{bottom:690.597645px;}
.y210{bottom:691.369800px;}
.y1e3{bottom:693.324272px;}
.y20f{bottom:693.325472px;}
.y211{bottom:693.325800px;}
.ye{bottom:693.921376px;}
.yf9{bottom:694.427550px;}
.y82{bottom:694.595730px;}
.y212{bottom:698.683057px;}
.y53{bottom:702.079484px;}
.y1a8{bottom:702.849600px;}
.y98{bottom:706.590270px;}
.y149{bottom:709.481925px;}
.y17d{bottom:710.072085px;}
.ycf{bottom:710.072340px;}
.y1e2{bottom:712.797629px;}
.y20e{bottom:712.798829px;}
.yf8{bottom:713.902245px;}
.y81{bottom:714.154425px;}
.y1a7{bottom:717.136621px;}
.y52{bottom:721.638180px;}
.yd{bottom:723.940200px;}
.y97{bottom:726.064965px;}
.y1e1{bottom:727.084650px;}
.y20d{bottom:727.085850px;}
.y148{bottom:728.956619px;}
.y17c{bottom:729.630781px;}
.yce{bottom:729.631035px;}
.y1a6{bottom:731.338444px;}
.yf7{bottom:733.460940px;}
.y80{bottom:733.629120px;}
.yc{bottom:738.991612px;}
.y51{bottom:741.112875px;}
.y1e0{bottom:741.286472px;}
.y20c{bottom:741.287672px;}
.y96{bottom:745.539660px;}
.y147{bottom:748.515315px;}
.y11c{bottom:749.025615px;}
.y17b{bottom:749.105475px;}
.ycd{bottom:749.105730px;}
.y1a5{bottom:750.896999px;}
.yf6{bottom:752.935635px;}
.y7f{bottom:753.103815px;}
.yb{bottom:753.959025px;}
.y1df{bottom:755.573494px;}
.y50{bottom:760.587569px;}
.y20b{bottom:760.846228px;}
.y95{bottom:765.098355px;}
.y1a4{bottom:765.098822px;}
.y146{bottom:767.990010px;}
.y17a{bottom:768.580170px;}
.ycc{bottom:768.580425px;}
.y11b{bottom:768.584311px;}
.ya{bottom:768.926438px;}
.yf5{bottom:772.410330px;}
.y7e{bottom:772.578510px;}
.y1de{bottom:775.048050px;}
.y1a3{bottom:779.385843px;}
.y4f{bottom:780.146265px;}
.y9{bottom:783.977850px;}
.y94{bottom:784.573050px;}
.y145{bottom:787.464704px;}
.y179{bottom:788.054865px;}
.ycb{bottom:788.055119px;}
.y11a{bottom:788.059005px;}
.y1dd{bottom:789.335072px;}
.yf4{bottom:791.885025px;}
.y7d{bottom:792.137205px;}
.y1a2{bottom:793.587666px;}
.y4e{bottom:799.620960px;}
.y144{bottom:807.023400px;}
.y119{bottom:807.533700px;}
.y178{bottom:807.613561px;}
.yca{bottom:807.613815px;}
.y1dc{bottom:808.808428px;}
.y93{bottom:810.084900px;}
.y7{bottom:810.935250px;}
.yf3{bottom:811.443720px;}
.y7c{bottom:811.611900px;}
.y1a1{bottom:813.146221px;}
.y8{bottom:816.973050px;}
.y4d{bottom:819.095654px;}
.y1db{bottom:823.095450px;}
.y177{bottom:827.088255px;}
.yc9{bottom:827.088510px;}
.y1a0{bottom:827.348044px;}
.yf2{bottom:830.918415px;}
.y7b{bottom:831.086595px;}
.y143{bottom:832.535100px;}
.y1da{bottom:837.297272px;}
.y4c{bottom:838.654350px;}
.y120{bottom:839.592197px;}
.y19f{bottom:841.635065px;}
.y20a{bottom:842.568806px;}
.y176{bottom:846.562950px;}
.yc8{bottom:846.563204px;}
.y6{bottom:848.434200px;}
.yf1{bottom:850.393110px;}
.y7a{bottom:850.645290px;}
.y1d9{bottom:856.855828px;}
.y4b{bottom:858.129045px;}
.y19e{bottom:861.108422px;}
.y11f{bottom:862.808307px;}
.y175{bottom:866.121646px;}
.yc7{bottom:866.121900px;}
.yf0{bottom:869.951805px;}
.y79{bottom:870.119985px;}
.y1d8{bottom:871.057650px;}
.y19d{bottom:875.395443px;}
.y11e{bottom:877.095329px;}
.y4a{bottom:877.603740px;}
.y1d7{bottom:885.344672px;}
.y174{bottom:885.596340px;}
.yc6{bottom:885.596595px;}
.y5{bottom:885.937387px;}
.yef{bottom:889.426500px;}
.y78{bottom:889.594680px;}
.y209{bottom:890.616206px;}
.y11d{bottom:891.382350px;}
.y19c{bottom:894.868800px;}
.y49{bottom:897.078434px;}
.y1d6{bottom:904.818028px;}
.y173{bottom:905.071035px;}
.yc5{bottom:905.071290px;}
.y77{bottom:909.153375px;}
.y19b{bottom:909.155821px;}
.yee{bottom:914.937375px;}
.y48{bottom:916.637130px;}
.y1d5{bottom:919.105050px;}
.y19a{bottom:923.357644px;}
.y4{bottom:923.440575px;}
.y172{bottom:924.629731px;}
.yc4{bottom:924.629985px;}
.y76{bottom:928.628070px;}
.y1d4{bottom:933.306872px;}
.y47{bottom:936.111825px;}
.y208{bottom:938.578406px;}
.yed{bottom:941.895750px;}
.y199{bottom:942.831000px;}
.y171{bottom:944.104425px;}
.yc3{bottom:944.104680px;}
.y75{bottom:948.102765px;}
.y1d3{bottom:952.865428px;}
.y46{bottom:955.586519px;}
.y198{bottom:957.118022px;}
.y3{bottom:960.943762px;}
.y170{bottom:963.579120px;}
.yc2{bottom:963.579375px;}
.y1d2{bottom:967.067250px;}
.y74{bottom:967.577460px;}
.y197{bottom:971.405043px;}
.y45{bottom:975.145215px;}
.y1d1{bottom:981.354272px;}
.y16f{bottom:983.137816px;}
.yc1{bottom:983.138070px;}
.y207{bottom:986.540607px;}
.y73{bottom:987.136155px;}
.y196{bottom:990.878400px;}
.y44{bottom:994.619910px;}
.y2{bottom:998.446950px;}
.y1d0{bottom:1000.827628px;}
.y16e{bottom:1002.612511px;}
.yc0{bottom:1002.612765px;}
.y195{bottom:1005.080222px;}
.y72{bottom:1006.610850px;}
.y43{bottom:1014.094604px;}
.y1cf{bottom:1015.114650px;}
.y16d{bottom:1022.087205px;}
.ybf{bottom:1022.087460px;}
.y194{bottom:1024.638778px;}
.y71{bottom:1032.121575px;}
.y42{bottom:1033.653300px;}
.y1ce{bottom:1034.588006px;}
.y1{bottom:1035.949350px;}
.y193{bottom:1038.840600px;}
.y16b{bottom:1039.095750px;}
.y16c{bottom:1041.561900px;}
.ybe{bottom:1041.562154px;}
.y1cd{bottom:1048.789829px;}
.y41{bottom:1059.079950px;}
.ybd{bottom:1061.120850px;}
.y1cc{bottom:1063.076850px;}
.y70{bottom:1118.692500px;}
.h19{height:9.246555px;}
.h16{height:11.158884px;}
.h5{height:26.528462px;}
.hd{height:28.477152px;}
.h14{height:28.827495px;}
.h9{height:34.943563px;}
.h13{height:35.375558px;}
.h4{height:39.798000px;}
.h8{height:41.711479px;}
.hb{height:42.720427px;}
.h11{height:42.721247px;}
.h17{height:42.840428px;}
.h1{height:43.247459px;}
.h12{height:45.000450px;}
.h7{height:51.357000px;}
.ha{height:53.063558px;}
.h18{height:58.080523px;}
.hc{height:64.871459px;}
.h15{height:64.873512px;}
.h6{height:69.215567px;}
.h10{height:85.818528px;}
.hf{height:86.160862px;}
.h3{height:86.520433px;}
.h2{height:86.760434px;}
.he{height:88.232652px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:54.000000px;}
.x36{left:62.589000px;}
.x37{left:67.521150px;}
.xa{left:71.433000px;}
.x2c{left:85.634550px;}
.x2d{left:90.651900px;}
.x38{left:145.162200px;}
.x39{left:152.730600px;}
.x1{left:300.018750px;}
.x20{left:302.655117px;}
.x24{left:307.587300px;}
.xb{left:317.960429px;}
.x17{left:324.255000px;}
.x27{left:329.357400px;}
.x45{left:331.483190px;}
.x18{left:339.392100px;}
.x2{left:343.558950px;}
.x3{left:357.505350px;}
.x19{left:404.021850px;}
.x1a{left:409.464450px;}
.x4{left:430.979400px;}
.x5{left:436.506900px;}
.x2e{left:445.180950px;}
.x2f{left:450.113250px;}
.x46{left:468.651900px;}
.xc{left:483.278550px;}
.x1d{left:498.925312px;}
.x1b{left:512.704377px;}
.x30{left:514.488000px;}
.x31{left:519.505350px;}
.x47{left:524.437650px;}
.x6{left:530.305350px;}
.x13{left:532.346400px;}
.x7{left:535.918050px;}
.x48{left:537.278550px;}
.x14{left:544.166700px;}
.xd{left:565.086450px;}
.x21{left:569.763600px;}
.xe{left:574.440750px;}
.xf{left:579.968400px;}
.x10{left:589.322700px;}
.x1c{left:592.724250px;}
.x32{left:597.061200px;}
.x1e{left:602.162285px;}
.x33{left:604.714800px;}
.x8{left:607.010850px;}
.x15{left:624.103800px;}
.x16{left:635.924250px;}
.x3f{left:650.040750px;}
.x40{left:658.714800px;}
.x28{left:698.938350px;}
.x29{left:703.870650px;}
.x41{left:707.017050px;}
.x42{left:712.459650px;}
.x43{left:734.655000px;}
.x3a{left:740.267550px;}
.x44{left:743.328900px;}
.x11{left:746.135250px;}
.x3b{left:755.404500px;}
.x12{left:757.955700px;}
.x22{left:775.899000px;}
.x2a{left:777.344700px;}
.x25{left:779.470650px;}
.x2b{left:782.362050px;}
.x34{left:799.624950px;}
.x3c{left:803.451750px;}
.x35{left:804.557250px;}
.x3d{left:808.808929px;}
.x3e{left:818.588700px;}
.x1f{left:845.206050px;}
.x26{left:849.373050px;}
.x23{left:852.434400px;}
@media print{
.v5{vertical-align:-21.467733pt;}
.v4{vertical-align:-13.303271pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:22.990850pt;}
.v7{vertical-align:26.002692pt;}
.v6{vertical-align:32.352320pt;}
.v1{vertical-align:36.294850pt;}
.v2{vertical-align:55.645783pt;}
.ls8{letter-spacing:0.000000pt;}
.ls40{letter-spacing:0.004267pt;}
.lsa{letter-spacing:0.010667pt;}
.ls17{letter-spacing:0.026667pt;}
.ls10{letter-spacing:0.032000pt;}
.ls35{letter-spacing:0.034133pt;}
.ls9{letter-spacing:0.038395pt;}
.ls3{letter-spacing:0.045600pt;}
.ls12{letter-spacing:0.051200pt;}
.ls11{letter-spacing:0.053334pt;}
.ls34{letter-spacing:0.085332pt;}
.ls13{letter-spacing:0.088880pt;}
.ls2a{letter-spacing:0.101334pt;}
.ls33{letter-spacing:0.102399pt;}
.ls32{letter-spacing:0.136532pt;}
.ls26{letter-spacing:0.149335pt;}
.ls1f{letter-spacing:0.154668pt;}
.lse{letter-spacing:0.165335pt;}
.lsb{letter-spacing:0.192002pt;}
.ls27{letter-spacing:0.218669pt;}
.ls0{letter-spacing:0.235200pt;}
.ls22{letter-spacing:0.241744pt;}
.ls28{letter-spacing:0.298670pt;}
.lsf{letter-spacing:0.314670pt;}
.ls14{letter-spacing:0.336003pt;}
.ls6{letter-spacing:0.349600pt;}
.ls18{letter-spacing:2.037354pt;}
.ls20{letter-spacing:2.336023pt;}
.ls1a{letter-spacing:2.336906pt;}
.ls21{letter-spacing:4.245122pt;}
.ls1b{letter-spacing:4.911566pt;}
.ls3e{letter-spacing:8.219160pt;}
.ls19{letter-spacing:8.880089pt;}
.ls37{letter-spacing:9.075087pt;}
.ls2{letter-spacing:9.104953pt;}
.ls39{letter-spacing:9.343883pt;}
.ls36{letter-spacing:9.373749pt;}
.ls7{letter-spacing:9.378016pt;}
.ls3f{letter-spacing:9.446282pt;}
.ls3a{letter-spacing:9.646813pt;}
.ls5{letter-spacing:10.989600pt;}
.ls4{letter-spacing:11.293600pt;}
.ls3c{letter-spacing:11.546782pt;}
.ls24{letter-spacing:11.605449pt;}
.ls38{letter-spacing:11.642783pt;}
.lsc{letter-spacing:11.653450pt;}
.ls31{letter-spacing:11.690521pt;}
.ls15{letter-spacing:11.760118pt;}
.ls2f{letter-spacing:11.822786pt;}
.ls3b{letter-spacing:11.845452pt;}
.ls25{letter-spacing:11.872119pt;}
.ls16{letter-spacing:11.946786pt;}
.lsd{letter-spacing:11.957453pt;}
.ls2e{letter-spacing:11.989183pt;}
.ls2d{letter-spacing:11.993450pt;}
.ls23{letter-spacing:12.010787pt;}
.ls3d{letter-spacing:12.064121pt;}
.ls1d{letter-spacing:12.149455pt;}
.ls2b{letter-spacing:14.163082pt;}
.ls29{letter-spacing:14.842815pt;}
.ls1c{letter-spacing:15.738824pt;}
.ls1{letter-spacing:18.777365pt;}
.ls2c{letter-spacing:701.175235pt;}
.ls30{letter-spacing:719.619805pt;}
.ls1e{letter-spacing:764.919649pt;}
.wsa1{word-spacing:-14.896149pt;}
.wse0{word-spacing:-12.117455pt;}
.ws9f{word-spacing:-12.010787pt;}
.wse1{word-spacing:-11.813451pt;}
.ws25{word-spacing:-9.420682pt;}
.wsc9{word-spacing:-9.416416pt;}
.wsf7{word-spacing:-9.386549pt;}
.wsc3{word-spacing:-9.117753pt;}
.wsa6{word-spacing:-0.063999pt;}
.ws4a{word-spacing:-0.053334pt;}
.ws10{word-spacing:-0.042666pt;}
.wsd9{word-spacing:-0.035552pt;}
.ws43{word-spacing:0.000000pt;}
.wsa0{word-spacing:7.797444pt;}
.ws38{word-spacing:8.520427pt;}
.ws2b{word-spacing:8.584426pt;}
.ws3d{word-spacing:8.605759pt;}
.ws31{word-spacing:8.635625pt;}
.ws112{word-spacing:8.686825pt;}
.wsfc{word-spacing:8.695358pt;}
.wsef{word-spacing:8.720958pt;}
.wsf2{word-spacing:8.725224pt;}
.ws3c{word-spacing:8.729491pt;}
.ws27{word-spacing:8.733757pt;}
.ws34{word-spacing:8.750824pt;}
.ws37{word-spacing:8.755091pt;}
.wsc8{word-spacing:8.759357pt;}
.ws105{word-spacing:8.767890pt;}
.ws2e{word-spacing:8.776424pt;}
.wsf{word-spacing:8.780690pt;}
.ws32{word-spacing:8.784957pt;}
.ws30{word-spacing:8.789223pt;}
.ws119{word-spacing:8.793490pt;}
.wsb{word-spacing:8.797757pt;}
.wsbc{word-spacing:8.802023pt;}
.ws29{word-spacing:8.806290pt;}
.wsf1{word-spacing:8.810557pt;}
.ws41{word-spacing:8.814823pt;}
.ws2f{word-spacing:8.819090pt;}
.ws42{word-spacing:8.823356pt;}
.ws2d{word-spacing:8.827623pt;}
.ws33{word-spacing:8.836156pt;}
.wsfa{word-spacing:8.844689pt;}
.wsea{word-spacing:8.857489pt;}
.ws108{word-spacing:8.861756pt;}
.ws3e{word-spacing:8.866023pt;}
.ws3b{word-spacing:8.870289pt;}
.wsf6{word-spacing:8.874556pt;}
.ws103{word-spacing:8.878822pt;}
.ws107{word-spacing:8.891622pt;}
.wsd{word-spacing:8.895889pt;}
.wsf9{word-spacing:8.900155pt;}
.wse{word-spacing:8.904422pt;}
.ws10b{word-spacing:8.908689pt;}
.ws40{word-spacing:8.921488pt;}
.ws3f{word-spacing:8.925755pt;}
.ws86{word-spacing:8.930022pt;}
.wsc6{word-spacing:8.934288pt;}
.wsf0{word-spacing:8.938555pt;}
.ws109{word-spacing:8.951355pt;}
.ws115{word-spacing:8.955621pt;}
.ws3a{word-spacing:8.959888pt;}
.wsbe{word-spacing:8.964155pt;}
.wsee{word-spacing:8.968421pt;}
.wseb{word-spacing:8.972688pt;}
.ws6e{word-spacing:8.976954pt;}
.wse5{word-spacing:8.981221pt;}
.ws111{word-spacing:8.998288pt;}
.wsce{word-spacing:9.002554pt;}
.ws116{word-spacing:9.006821pt;}
.ws104{word-spacing:9.019621pt;}
.ws10a{word-spacing:9.023887pt;}
.wse7{word-spacing:9.028154pt;}
.wscb{word-spacing:9.032420pt;}
.ws11d{word-spacing:9.036687pt;}
.ws24{word-spacing:9.045220pt;}
.ws26{word-spacing:9.049487pt;}
.wsc2{word-spacing:9.053753pt;}
.wsf4{word-spacing:9.058020pt;}
.wsc7{word-spacing:9.062287pt;}
.wsb1{word-spacing:9.066553pt;}
.wsec{word-spacing:9.070820pt;}
.ws2c{word-spacing:9.075087pt;}
.ws110{word-spacing:9.079353pt;}
.wsed{word-spacing:9.083620pt;}
.ws114{word-spacing:9.087886pt;}
.wsf8{word-spacing:9.092153pt;}
.wsca{word-spacing:9.096420pt;}
.ws28{word-spacing:9.100686pt;}
.ws87{word-spacing:9.104953pt;}
.wsfe{word-spacing:9.109219pt;}
.ws117{word-spacing:9.113486pt;}
.wsc5{word-spacing:9.126286pt;}
.wsd1{word-spacing:9.130553pt;}
.wse6{word-spacing:9.134819pt;}
.ws0{word-spacing:9.139086pt;}
.wsbd{word-spacing:9.143352pt;}
.ws6f{word-spacing:9.147619pt;}
.ws11c{word-spacing:9.151886pt;}
.ws84{word-spacing:9.156152pt;}
.wsc0{word-spacing:9.160419pt;}
.ws113{word-spacing:9.164685pt;}
.ws11b{word-spacing:9.173219pt;}
.wse8{word-spacing:9.181752pt;}
.ws106{word-spacing:9.190285pt;}
.wsb2{word-spacing:9.194552pt;}
.wsfd{word-spacing:9.198818pt;}
.ws101{word-spacing:9.203085pt;}
.ws10d{word-spacing:9.211618pt;}
.wsbf{word-spacing:9.220151pt;}
.wsbb{word-spacing:9.228685pt;}
.wsff{word-spacing:9.237218pt;}
.wsfb{word-spacing:9.241484pt;}
.wsc1{word-spacing:9.245751pt;}
.wsc4{word-spacing:9.250018pt;}
.ws36{word-spacing:9.267084pt;}
.ws85{word-spacing:9.271351pt;}
.ws39{word-spacing:9.284151pt;}
.ws10f{word-spacing:9.292684pt;}
.wsd0{word-spacing:9.296950pt;}
.ws35{word-spacing:9.301217pt;}
.wse9{word-spacing:9.305484pt;}
.ws2a{word-spacing:9.309750pt;}
.ws102{word-spacing:9.326817pt;}
.wsa{word-spacing:9.331083pt;}
.wse4{word-spacing:9.360950pt;}
.wsd2{word-spacing:9.365216pt;}
.ws100{word-spacing:9.395083pt;}
.ws118{word-spacing:9.412149pt;}
.ws10e{word-spacing:9.433482pt;}
.ws11a{word-spacing:9.437749pt;}
.wsf5{word-spacing:9.463348pt;}
.ws10c{word-spacing:9.467615pt;}
.wscf{word-spacing:9.471882pt;}
.wsc{word-spacing:9.604147pt;}
.ws8{word-spacing:10.272000pt;}
.ws9{word-spacing:10.310400pt;}
.wsb8{word-spacing:10.454544pt;}
.ws6{word-spacing:10.502400pt;}
.ws7{word-spacing:10.574400pt;}
.ws21{word-spacing:10.898400pt;}
.ws1a{word-spacing:10.913600pt;}
.ws17{word-spacing:10.979467pt;}
.ws18{word-spacing:10.984533pt;}
.ws1d{word-spacing:10.989600pt;}
.ws20{word-spacing:11.040267pt;}
.ws1e{word-spacing:11.050400pt;}
.ws1c{word-spacing:11.060533pt;}
.ws19{word-spacing:11.065600pt;}
.ws14{word-spacing:11.126400pt;}
.ws13{word-spacing:11.136533pt;}
.ws23{word-spacing:11.192267pt;}
.ws11{word-spacing:11.202400pt;}
.ws16{word-spacing:11.212533pt;}
.ws1b{word-spacing:11.227733pt;}
.wscc{word-spacing:11.285446pt;}
.ws22{word-spacing:11.293600pt;}
.wsd3{word-spacing:11.306780pt;}
.wsb3{word-spacing:11.340658pt;}
.wscd{word-spacing:11.344113pt;}
.ws1f{word-spacing:11.359467pt;}
.ws15{word-spacing:11.379733pt;}
.wsac{word-spacing:11.402781pt;}
.ws12{word-spacing:11.430400pt;}
.ws94{word-spacing:11.440114pt;}
.wsdc{word-spacing:11.450781pt;}
.ws76{word-spacing:11.466781pt;}
.ws5b{word-spacing:11.472115pt;}
.ws5c{word-spacing:11.498782pt;}
.ws96{word-spacing:11.504115pt;}
.wsba{word-spacing:11.511323pt;}
.ws48{word-spacing:11.520115pt;}
.wsb9{word-spacing:11.524123pt;}
.ws74{word-spacing:11.525449pt;}
.ws6d{word-spacing:11.530782pt;}
.ws63{word-spacing:11.536115pt;}
.ws92{word-spacing:11.541449pt;}
.ws9b{word-spacing:11.546782pt;}
.wsb7{word-spacing:11.549722pt;}
.ws5f{word-spacing:11.552116pt;}
.ws78{word-spacing:11.557449pt;}
.ws81{word-spacing:11.562782pt;}
.wsdb{word-spacing:11.568116pt;}
.ws6b{word-spacing:11.573449pt;}
.ws4e{word-spacing:11.578782pt;}
.wsb6{word-spacing:11.583855pt;}
.ws64{word-spacing:11.584116pt;}
.ws5e{word-spacing:11.589449pt;}
.ws95{word-spacing:11.594783pt;}
.ws51{word-spacing:11.600116pt;}
.ws9e{word-spacing:11.605449pt;}
.ws80{word-spacing:11.610783pt;}
.wsde{word-spacing:11.621450pt;}
.ws5a{word-spacing:11.626783pt;}
.ws83{word-spacing:11.632116pt;}
.ws44{word-spacing:11.637450pt;}
.ws57{word-spacing:11.642783pt;}
.ws58{word-spacing:11.648116pt;}
.ws45{word-spacing:11.653450pt;}
.ws8c{word-spacing:11.658783pt;}
.wsa9{word-spacing:11.664117pt;}
.ws49{word-spacing:11.669450pt;}
.ws7b{word-spacing:11.674783pt;}
.wsdf{word-spacing:11.680117pt;}
.ws62{word-spacing:11.685450pt;}
.ws93{word-spacing:11.690784pt;}
.ws4c{word-spacing:11.696117pt;}
.ws54{word-spacing:11.701450pt;}
.ws68{word-spacing:11.706784pt;}
.ws56{word-spacing:11.712117pt;}
.ws6a{word-spacing:11.717451pt;}
.ws67{word-spacing:11.722784pt;}
.ws73{word-spacing:11.728117pt;}
.wsd6{word-spacing:11.733451pt;}
.ws7e{word-spacing:11.738784pt;}
.ws4f{word-spacing:11.744117pt;}
.ws7f{word-spacing:11.749451pt;}
.ws61{word-spacing:11.754784pt;}
.ws50{word-spacing:11.760118pt;}
.ws59{word-spacing:11.770784pt;}
.ws9c{word-spacing:11.776118pt;}
.wsb4{word-spacing:11.784386pt;}
.ws4b{word-spacing:11.786785pt;}
.ws99{word-spacing:11.792118pt;}
.ws75{word-spacing:11.808118pt;}
.wsdd{word-spacing:11.813451pt;}
.wsb5{word-spacing:11.814252pt;}
.ws98{word-spacing:11.818785pt;}
.ws82{word-spacing:11.824118pt;}
.ws66{word-spacing:11.829452pt;}
.wsa2{word-spacing:11.840118pt;}
.ws8e{word-spacing:11.850785pt;}
.wsad{word-spacing:11.856119pt;}
.wsd5{word-spacing:11.861452pt;}
.ws60{word-spacing:11.866785pt;}
.ws77{word-spacing:11.872119pt;}
.wsa3{word-spacing:11.877452pt;}
.ws7c{word-spacing:11.882785pt;}
.ws7d{word-spacing:11.893452pt;}
.ws47{word-spacing:11.898786pt;}
.ws97{word-spacing:11.904119pt;}
.ws46{word-spacing:11.909452pt;}
.ws72{word-spacing:11.930786pt;}
.ws7a{word-spacing:11.936119pt;}
.ws53{word-spacing:11.941453pt;}
.ws89{word-spacing:11.946786pt;}
.ws6c{word-spacing:11.952120pt;}
.wsaa{word-spacing:11.957453pt;}
.ws5d{word-spacing:11.962786pt;}
.ws69{word-spacing:11.968120pt;}
.ws55{word-spacing:11.973453pt;}
.ws8a{word-spacing:11.978786pt;}
.wsd7{word-spacing:11.984120pt;}
.ws9d{word-spacing:11.994787pt;}
.wsda{word-spacing:12.010787pt;}
.ws4d{word-spacing:12.021454pt;}
.ws79{word-spacing:12.032120pt;}
.wsa4{word-spacing:12.053454pt;}
.wsd4{word-spacing:12.069454pt;}
.ws9a{word-spacing:12.090788pt;}
.wsd8{word-spacing:12.101454pt;}
.ws65{word-spacing:12.106788pt;}
.ws52{word-spacing:12.117455pt;}
.ws8b{word-spacing:12.138788pt;}
.wsaf{word-spacing:13.747085pt;}
.wse2{word-spacing:13.798285pt;}
.wsa5{word-spacing:13.811085pt;}
.wsab{word-spacing:13.843085pt;}
.ws71{word-spacing:13.862284pt;}
.wsb0{word-spacing:13.887884pt;}
.wsae{word-spacing:13.894284pt;}
.ws88{word-spacing:13.932684pt;}
.wsa8{word-spacing:13.958284pt;}
.ws70{word-spacing:13.983883pt;}
.ws8f{word-spacing:13.990283pt;}
.ws91{word-spacing:14.009483pt;}
.ws8d{word-spacing:14.092683pt;}
.wsa7{word-spacing:14.137482pt;}
.ws90{word-spacing:14.246281pt;}
.ws3{word-spacing:23.328117pt;}
.ws1{word-spacing:23.370784pt;}
.ws4{word-spacing:23.381450pt;}
.ws2{word-spacing:23.434784pt;}
.ws5{word-spacing:23.637452pt;}
.wse3{word-spacing:53.174802pt;}
.wsf3{word-spacing:53.208935pt;}
._d{margin-left:-11.494552pt;}
._8{margin-left:-9.378016pt;}
._9{margin-left:-4.462878pt;}
._0{margin-left:-3.232016pt;}
._1{margin-left:-0.994121pt;}
._4{width:1.271733pt;}
._2{width:8.447894pt;}
._3{width:9.762011pt;}
._b{width:11.061444pt;}
._5{width:12.124533pt;}
._a{width:13.021743pt;}
._c{width:14.468086pt;}
._11{width:17.540047pt;}
._e{width:18.606701pt;}
._6{width:41.373349pt;}
._f{width:237.057303pt;}
._10{width:1490.635233pt;}
._7{width:1514.221072pt;}
.fsa{font-size:26.666667pt;}
.fsb{font-size:28.440000pt;}
.fs3{font-size:31.995733pt;}
.fs9{font-size:31.998933pt;}
.fs8{font-size:35.552000pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs7{font-size:53.333867pt;}
.fs6{font-size:63.999467pt;}
.fs4{font-size:85.332800pt;}
.fs1{font-size:106.667200pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:48.000000pt;}
.y118{bottom:87.609233pt;}
.y168{bottom:108.472400pt;}
.y12a{bottom:108.774017pt;}
.y167{bottom:110.653400pt;}
.ybc{bottom:110.662120pt;}
.yec{bottom:110.662374pt;}
.y192{bottom:110.663960pt;}
.y13e{bottom:110.664186pt;}
.y169{bottom:110.664533pt;}
.y40{bottom:110.669973pt;}
.y117{bottom:111.571600pt;}
.y1cb{bottom:116.106567pt;}
.y116{bottom:116.333782pt;}
.y16a{bottom:116.560480pt;}
.y206{bottom:116.938484pt;}
.y3f{bottom:125.334323pt;}
.y166{bottom:127.964239pt;}
.ybb{bottom:127.972960pt;}
.yeb{bottom:127.973214pt;}
.y191{bottom:127.974800pt;}
.y13d{bottom:127.975026pt;}
.y1ca{bottom:128.806141pt;}
.y92{bottom:129.108258pt;}
.y129{bottom:129.410559pt;}
.y205{bottom:129.638059pt;}
.y114{bottom:137.272400pt;}
.y6f{bottom:138.769800pt;}
.y115{bottom:141.958933pt;}
.y126{bottom:142.110024pt;}
.y128{bottom:142.110133pt;}
.y165{bottom:145.349747pt;}
.yba{bottom:145.358467pt;}
.yea{bottom:145.358721pt;}
.y13c{bottom:145.360533pt;}
.y1c9{bottom:146.115791pt;}
.y127{bottom:146.796800pt;}
.y204{bottom:146.947709pt;}
.y3e{bottom:148.011373pt;}
.y91{bottom:149.744800pt;}
.y190{bottom:150.652000pt;}
.y112{bottom:153.902400pt;}
.y123{bottom:154.733492pt;}
.y125{bottom:154.733867pt;}
.y6e{bottom:156.080640pt;}
.y113{bottom:158.664533pt;}
.y1c8{bottom:158.739634pt;}
.y124{bottom:159.496000pt;}
.y203{bottom:159.647283pt;}
.y164{bottom:162.660586pt;}
.yb9{bottom:162.669307pt;}
.ye9{bottom:162.669561pt;}
.y3d{bottom:162.675723pt;}
.y121{bottom:167.433067pt;}
.y13b{bottom:167.962133pt;}
.y10f{bottom:170.606947pt;}
.y111{bottom:170.607867pt;}
.y122{bottom:172.195200pt;}
.y202{bottom:172.271126pt;}
.y6d{bottom:173.391479pt;}
.y110{bottom:175.294533pt;}
.y1c7{bottom:176.125016pt;}
.y23{bottom:176.886000pt;}
.y3c{bottom:177.340073pt;}
.y163{bottom:179.971426pt;}
.yb8{bottom:179.980147pt;}
.ye8{bottom:179.980401pt;}
.y1c6{bottom:188.748859pt;}
.y201{bottom:189.656508pt;}
.y10e{bottom:190.562964pt;}
.y6c{bottom:190.776986pt;}
.y3b{bottom:192.004423pt;}
.y22{bottom:195.556667pt;}
.y162{bottom:197.356933pt;}
.yb7{bottom:197.365654pt;}
.y1c5{bottom:201.448433pt;}
.y200{bottom:202.280350pt;}
.y13a{bottom:205.074080pt;}
.y18f{bottom:206.814813pt;}
.y6b{bottom:208.087826pt;}
.ye6{bottom:210.746218pt;}
.y10d{bottom:212.333359pt;}
.y21{bottom:214.227333pt;}
.y161{bottom:214.667773pt;}
.yb6{bottom:214.676494pt;}
.y3a{bottom:214.681473pt;}
.y1ff{bottom:214.979925pt;}
.y1c4{bottom:218.758083pt;}
.ye7{bottom:219.892800pt;}
.ye5{bottom:219.893049pt;}
.y139{bottom:222.384920pt;}
.y18e{bottom:224.200320pt;}
.y10c{bottom:225.032933pt;}
.y6a{bottom:225.398666pt;}
.y39{bottom:229.345823pt;}
.y1c3{bottom:231.457658pt;}
.y160{bottom:231.978613pt;}
.yb3{bottom:231.986760pt;}
.yb5{bottom:231.987333pt;}
.y1fe{bottom:232.289575pt;}
.y20{bottom:232.822000pt;}
.yb4{bottom:237.958933pt;}
.y138{bottom:239.695760pt;}
.y18d{bottom:241.511160pt;}
.y69{bottom:242.784173pt;}
.y38{bottom:244.010173pt;}
.y1c2{bottom:244.081500pt;}
.y1fd{bottom:244.989150pt;}
.y15f{bottom:249.289453pt;}
.yb2{bottom:249.297600pt;}
.yb0{bottom:249.297826pt;}
.y1f{bottom:251.492667pt;}
.yb1{bottom:255.269200pt;}
.y10b{bottom:256.025426pt;}
.y137{bottom:257.081267pt;}
.y1fc{bottom:257.612992pt;}
.y18c{bottom:258.822000pt;}
.y68{bottom:260.095013pt;}
.y1c1{bottom:261.466883pt;}
.ye4{bottom:261.618800pt;}
.y15e{bottom:266.674960pt;}
.yad{bottom:266.682760pt;}
.yaf{bottom:266.683333pt;}
.y37{bottom:266.687222pt;}
.y1e{bottom:270.163333pt;}
.ye3{bottom:270.762421pt;}
.yae{bottom:272.579467pt;}
.y10a{bottom:273.410933pt;}
.y1c0{bottom:274.090725pt;}
.y136{bottom:274.392107pt;}
.y1fb{bottom:274.922642pt;}
.y67{bottom:277.405853pt;}
.y36{bottom:281.351572pt;}
.y18b{bottom:281.499200pt;}
.y15d{bottom:283.985800pt;}
.yaa{bottom:283.989133pt;}
.yac{bottom:283.993600pt;}
.y1fa{bottom:287.622217pt;}
.y1d{bottom:288.834000pt;}
.yab{bottom:289.889733pt;}
.y1bf{bottom:291.476108pt;}
.y135{bottom:291.702947pt;}
.y66{bottom:294.791360pt;}
.y35{bottom:296.015923pt;}
.y109{bottom:296.088133pt;}
.y15c{bottom:301.296639pt;}
.ya9{bottom:301.299973pt;}
.y1be{bottom:304.099950pt;}
.ye2{bottom:304.626760pt;}
.y1f9{bottom:304.931867pt;}
.y1c{bottom:307.504667pt;}
.y134{bottom:309.088454pt;}
.y34{bottom:310.680273pt;}
.y65{bottom:312.102200pt;}
.y227{bottom:312.944059pt;}
.y1bd{bottom:316.799525pt;}
.y1f8{bottom:317.631442pt;}
.y15b{bottom:318.682147pt;}
.ya8{bottom:318.685480pt;}
.ye1{bottom:322.012267pt;}
.y33{bottom:325.344623pt;}
.y226{bottom:325.643633pt;}
.y1b{bottom:326.175333pt;}
.y133{bottom:326.399294pt;}
.y64{bottom:329.413039pt;}
.y108{bottom:332.670667pt;}
.y1bc{bottom:334.109175pt;}
.y1f7{bottom:334.941092pt;}
.y15a{bottom:335.992986pt;}
.ya7{bottom:335.996320pt;}
.y225{bottom:338.267475pt;}
.ye0{bottom:339.323106pt;}
.y32{bottom:340.008973pt;}
.y132{bottom:343.710133pt;}
.y1a{bottom:344.846000pt;}
.y18a{bottom:345.673107pt;}
.y63{bottom:346.798547pt;}
.y1bb{bottom:346.808749pt;}
.y1f6{bottom:347.640667pt;}
.y107{bottom:349.981506pt;}
.y159{bottom:353.303826pt;}
.ya6{bottom:353.307160pt;}
.y224{bottom:355.652858pt;}
.ydf{bottom:356.633946pt;}
.y1ba{bottom:359.432592pt;}
.y31{bottom:362.686022pt;}
.y189{bottom:362.983947pt;}
.y19{bottom:363.516667pt;}
.y62{bottom:364.109386pt;}
.y1f5{bottom:364.950317pt;}
.y131{bottom:366.387333pt;}
.y106{bottom:367.292346pt;}
.y223{bottom:368.276700pt;}
.y158{bottom:370.689333pt;}
.ya5{bottom:370.692667pt;}
.yde{bottom:373.944786pt;}
.y1b9{bottom:376.742242pt;}
.y1f4{bottom:377.649892pt;}
.y61{bottom:381.420226pt;}
.y18{bottom:382.187333pt;}
.y105{bottom:384.677853pt;}
.y30{bottom:385.363072pt;}
.y222{bottom:385.662083pt;}
.y157{bottom:388.000173pt;}
.ya4{bottom:388.003506pt;}
.y188{bottom:388.382867pt;}
.y1b8{bottom:389.441817pt;}
.y1f3{bottom:390.273734pt;}
.ydd{bottom:391.330293pt;}
.y221{bottom:398.285925pt;}
.y60{bottom:398.731066pt;}
.y17{bottom:400.858000pt;}
.y104{bottom:401.988693pt;}
.y1b7{bottom:402.141391pt;}
.y1f2{bottom:402.973308pt;}
.y130{bottom:403.425400pt;}
.y156{bottom:405.311013pt;}
.ya3{bottom:405.314346pt;}
.y187{bottom:405.693707pt;}
.y2f{bottom:408.040122pt;}
.ydc{bottom:408.641133pt;}
.y90{bottom:409.472720pt;}
.y220{bottom:410.985500pt;}
.y5f{bottom:416.116573pt;}
.y103{bottom:419.299533pt;}
.y1b6{bottom:419.452108pt;}
.y16{bottom:419.528667pt;}
.y1f1{bottom:420.282959pt;}
.y12f{bottom:420.810907pt;}
.y155{bottom:422.696520pt;}
.ya2{bottom:422.699853pt;}
.ydb{bottom:425.951973pt;}
.y8f{bottom:426.783560pt;}
.y21f{bottom:428.295150pt;}
.y2e{bottom:430.641440pt;}
.y186{bottom:431.016627pt;}
.y1b5{bottom:432.075950pt;}
.y1f0{bottom:432.982533pt;}
.y5e{bottom:433.427413pt;}
.y102{bottom:436.685040pt;}
.y12e{bottom:438.121747pt;}
.y15{bottom:438.199333pt;}
.y154{bottom:440.007360pt;}
.ya1{bottom:440.010693pt;}
.y21e{bottom:440.994725pt;}
.yda{bottom:443.337480pt;}
.y8c{bottom:444.086027pt;}
.y8e{bottom:444.094400pt;}
.y2d{bottom:445.305790pt;}
.y1ef{bottom:445.603442pt;}
.y185{bottom:448.327467pt;}
.y1b4{bottom:449.461333pt;}
.y8d{bottom:450.066000pt;}
.y5d{bottom:450.738253pt;}
.y21d{bottom:453.618567pt;}
.y101{bottom:453.995880pt;}
.y12d{bottom:455.432586pt;}
.y14{bottom:456.870000pt;}
.y153{bottom:457.318200pt;}
.ya0{bottom:457.321533pt;}
.yd9{bottom:460.648320pt;}
.y8b{bottom:461.396866pt;}
.y1b3{bottom:462.085175pt;}
.y1ee{bottom:462.988825pt;}
.y2c{bottom:467.982840pt;}
.y5c{bottom:468.123760pt;}
.y21c{bottom:470.928217pt;}
.y184{bottom:471.004533pt;}
.y100{bottom:471.306720pt;}
.y12c{bottom:472.818094pt;}
.y152{bottom:474.629039pt;}
.y9f{bottom:474.632373pt;}
.y13{bottom:475.540667pt;}
.y1ed{bottom:475.612667pt;}
.yd8{bottom:477.959159pt;}
.y8a{bottom:478.782374pt;}
.y1b2{bottom:479.470558pt;}
.y2b{bottom:482.647190pt;}
.y21b{bottom:483.627792pt;}
.y5b{bottom:485.434600pt;}
.yff{bottom:488.692227pt;}
.y12b{bottom:490.128933pt;}
.y151{bottom:492.014547pt;}
.y9e{bottom:492.017880pt;}
.y1b1{bottom:492.094400pt;}
.y1ec{bottom:492.922317pt;}
.y12{bottom:494.211333pt;}
.yd7{bottom:495.344667pt;}
.y89{bottom:496.093213pt;}
.y2a{bottom:497.311540pt;}
.y21a{bottom:500.938509pt;}
.y5a{bottom:502.745439pt;}
.y1eb{bottom:505.621892pt;}
.yfe{bottom:506.003067pt;}
.y150{bottom:509.325386pt;}
.y9d{bottom:509.328720pt;}
.y1b0{bottom:509.404109pt;}
.y29{bottom:511.975890pt;}
.y11{bottom:512.882000pt;}
.y88{bottom:513.404053pt;}
.y219{bottom:513.638083pt;}
.yd6{bottom:517.946267pt;}
.y1ea{bottom:518.321466pt;}
.y142{bottom:518.625775pt;}
.y59{bottom:520.130947pt;}
.y1af{bottom:522.103683pt;}
.y218{bottom:526.261925pt;}
.y14f{bottom:526.636226pt;}
.y9c{bottom:526.639559pt;}
.y28{bottom:526.640240pt;}
.y183{bottom:527.160813pt;}
.yfd{bottom:528.680133pt;}
.y87{bottom:530.789560pt;}
.y10{bottom:531.552667pt;}
.y1e9{bottom:535.632183pt;}
.y58{bottom:537.441786pt;}
.y141{bottom:539.262317pt;}
.y1ae{bottom:539.413333pt;}
.y27{bottom:541.304590pt;}
.y217{bottom:543.647308pt;}
.y14e{bottom:544.021733pt;}
.y9b{bottom:544.025067pt;}
.y182{bottom:544.546321pt;}
.y86{bottom:548.100400pt;}
.y1e8{bottom:548.256025pt;}
.y140{bottom:551.961891pt;}
.y1ad{bottom:552.112908pt;}
.y57{bottom:554.752626pt;}
.y26{bottom:555.968940pt;}
.y216{bottom:556.271150pt;}
.yf{bottom:560.881733pt;}
.y1e7{bottom:560.955600pt;}
.y14d{bottom:561.332573pt;}
.y181{bottom:561.857160pt;}
.yd3{bottom:561.857386pt;}
.yd5{bottom:561.864400pt;}
.y13f{bottom:564.585733pt;}
.y1ac{bottom:564.736750pt;}
.yfc{bottom:565.261747pt;}
.y85{bottom:565.411240pt;}
.y9a{bottom:566.702422pt;}
.yd4{bottom:567.760533pt;}
.y56{bottom:572.138133pt;}
.y215{bottom:573.656533pt;}
.y25{bottom:577.814000pt;}
.y1e6{bottom:578.265250pt;}
.y14c{bottom:578.643413pt;}
.y180{bottom:579.168000pt;}
.yd2{bottom:579.168226pt;}
.y1ab{bottom:582.122133pt;}
.yfb{bottom:582.572586pt;}
.y84{bottom:582.796747pt;}
.y99{bottom:585.297467pt;}
.y214{bottom:586.280375pt;}
.y55{bottom:589.448973pt;}
.y1e5{bottom:590.964825pt;}
.y1aa{bottom:594.745975pt;}
.y14b{bottom:596.028920pt;}
.y17f{bottom:596.553507pt;}
.yd1{bottom:596.553733pt;}
.yfa{bottom:599.958094pt;}
.y83{bottom:600.107587pt;}
.y1e4{bottom:603.588667pt;}
.y213{bottom:603.590025pt;}
.y54{bottom:606.759813pt;}
.y1a9{bottom:607.445550pt;}
.y14a{bottom:613.339760pt;}
.y17e{bottom:613.864347pt;}
.yd0{bottom:613.864573pt;}
.y210{bottom:614.550933pt;}
.y1e3{bottom:616.288242pt;}
.y20f{bottom:616.289308pt;}
.y211{bottom:616.289600pt;}
.ye{bottom:616.819001pt;}
.yf9{bottom:617.268933pt;}
.y82{bottom:617.418427pt;}
.y212{bottom:621.051606pt;}
.y53{bottom:624.070653pt;}
.y1a8{bottom:624.755200pt;}
.y98{bottom:628.080240pt;}
.y149{bottom:630.650600pt;}
.y17d{bottom:631.175187pt;}
.ycf{bottom:631.175413pt;}
.y1e2{bottom:633.597892pt;}
.y20e{bottom:633.598959pt;}
.yf8{bottom:634.579773pt;}
.y81{bottom:634.803934pt;}
.y1a7{bottom:637.454775pt;}
.y52{bottom:641.456160pt;}
.yd{bottom:643.502400pt;}
.y97{bottom:645.391080pt;}
.y1e1{bottom:646.297467pt;}
.y20d{bottom:646.298533pt;}
.y148{bottom:647.961439pt;}
.y17c{bottom:648.560694pt;}
.yce{bottom:648.560920pt;}
.y1a6{bottom:650.078617pt;}
.yf7{bottom:651.965280pt;}
.y80{bottom:652.114774pt;}
.yc{bottom:656.881433pt;}
.y51{bottom:658.767000pt;}
.y1e0{bottom:658.921309pt;}
.y20c{bottom:658.922375pt;}
.y96{bottom:662.701920pt;}
.y147{bottom:665.346947pt;}
.y11c{bottom:665.800547pt;}
.y17b{bottom:665.871534pt;}
.ycd{bottom:665.871760pt;}
.y1a5{bottom:667.463999pt;}
.yf6{bottom:669.276120pt;}
.y7f{bottom:669.425613pt;}
.yb{bottom:670.185800pt;}
.y1df{bottom:671.620883pt;}
.y50{bottom:676.077839pt;}
.y20b{bottom:676.307758pt;}
.y95{bottom:680.087427pt;}
.y1a4{bottom:680.087842pt;}
.y146{bottom:682.657786pt;}
.y17a{bottom:683.182374pt;}
.ycc{bottom:683.182600pt;}
.y11b{bottom:683.186054pt;}
.ya{bottom:683.490167pt;}
.yf5{bottom:686.586960pt;}
.y7e{bottom:686.736453pt;}
.y1de{bottom:688.931600pt;}
.y1a3{bottom:692.787416pt;}
.y4f{bottom:693.463347pt;}
.y9{bottom:696.869200pt;}
.y94{bottom:697.398267pt;}
.y145{bottom:699.968626pt;}
.y179{bottom:700.493213pt;}
.ycb{bottom:700.493439pt;}
.y11a{bottom:700.496894pt;}
.y1dd{bottom:701.631175pt;}
.yf4{bottom:703.897800pt;}
.y7d{bottom:704.121960pt;}
.y1a2{bottom:705.411258pt;}
.y4e{bottom:710.774186pt;}
.y144{bottom:717.354133pt;}
.y119{bottom:717.807733pt;}
.y178{bottom:717.878720pt;}
.yca{bottom:717.878947pt;}
.y1dc{bottom:718.940825pt;}
.y93{bottom:720.075467pt;}
.y7{bottom:720.831333pt;}
.yf3{bottom:721.283307pt;}
.y7c{bottom:721.432800pt;}
.y1a1{bottom:722.796641pt;}
.y8{bottom:726.198267pt;}
.y4d{bottom:728.085026pt;}
.y1db{bottom:731.640400pt;}
.y177{bottom:735.189560pt;}
.yc9{bottom:735.189786pt;}
.y1a0{bottom:735.420483pt;}
.yf2{bottom:738.594147pt;}
.y7b{bottom:738.743640pt;}
.y143{bottom:740.031200pt;}
.y1da{bottom:744.264242pt;}
.y4c{bottom:745.470533pt;}
.y120{bottom:746.304175pt;}
.y19f{bottom:748.120058pt;}
.y20a{bottom:748.950050pt;}
.y176{bottom:752.500400pt;}
.yc8{bottom:752.500626pt;}
.y6{bottom:754.163733pt;}
.yf1{bottom:755.904986pt;}
.y7a{bottom:756.129147pt;}
.y1d9{bottom:761.649625pt;}
.y4b{bottom:762.781373pt;}
.y19e{bottom:765.429708pt;}
.y11f{bottom:766.940717pt;}
.y175{bottom:769.885907pt;}
.yc7{bottom:769.886133pt;}
.yf0{bottom:773.290494pt;}
.y79{bottom:773.439987pt;}
.y1d8{bottom:774.273467pt;}
.y19d{bottom:778.129283pt;}
.y11e{bottom:779.640292pt;}
.y4a{bottom:780.092213pt;}
.y1d7{bottom:786.973041pt;}
.y174{bottom:787.196747pt;}
.yc6{bottom:787.196973pt;}
.y5{bottom:787.499900pt;}
.yef{bottom:790.601333pt;}
.y78{bottom:790.750827pt;}
.y209{bottom:791.658850pt;}
.y11d{bottom:792.339867pt;}
.y19c{bottom:795.438933pt;}
.y49{bottom:797.403053pt;}
.y1d6{bottom:804.282692pt;}
.y173{bottom:804.507587pt;}
.yc5{bottom:804.507813pt;}
.y77{bottom:808.136334pt;}
.y19b{bottom:808.138508pt;}
.yee{bottom:813.277666pt;}
.y48{bottom:814.788560pt;}
.y1d5{bottom:816.982266pt;}
.y19a{bottom:820.762350pt;}
.y4{bottom:820.836067pt;}
.y172{bottom:821.893094pt;}
.yc4{bottom:821.893320pt;}
.y76{bottom:825.447173pt;}
.y1d4{bottom:829.606109pt;}
.y47{bottom:832.099400pt;}
.y208{bottom:834.291917pt;}
.yed{bottom:837.240667pt;}
.y199{bottom:838.072000pt;}
.y171{bottom:839.203934pt;}
.yc3{bottom:839.204160pt;}
.y75{bottom:842.758013pt;}
.y1d3{bottom:846.991491pt;}
.y46{bottom:849.410239pt;}
.y198{bottom:850.771575pt;}
.y3{bottom:854.172233pt;}
.y170{bottom:856.514773pt;}
.yc2{bottom:856.515000pt;}
.y1d2{bottom:859.615333pt;}
.y74{bottom:860.068853pt;}
.y197{bottom:863.471149pt;}
.y45{bottom:866.795747pt;}
.y1d1{bottom:872.314908pt;}
.y16f{bottom:873.900281pt;}
.yc1{bottom:873.900507pt;}
.y207{bottom:876.924984pt;}
.y73{bottom:877.454360pt;}
.y196{bottom:880.780800pt;}
.y44{bottom:884.106586pt;}
.y2{bottom:887.508400pt;}
.y1d0{bottom:889.624558pt;}
.y16e{bottom:891.211120pt;}
.yc0{bottom:891.211347pt;}
.y195{bottom:893.404642pt;}
.y72{bottom:894.765200pt;}
.y43{bottom:901.417426pt;}
.y1cf{bottom:902.324133pt;}
.y16d{bottom:908.521960pt;}
.ybf{bottom:908.522186pt;}
.y194{bottom:910.790024pt;}
.y71{bottom:917.441400pt;}
.y42{bottom:918.802933pt;}
.y1ce{bottom:919.633783pt;}
.y1{bottom:920.843867pt;}
.y193{bottom:923.413867pt;}
.y16b{bottom:923.640667pt;}
.y16c{bottom:925.832800pt;}
.ybe{bottom:925.833026pt;}
.y1cd{bottom:932.257625pt;}
.y41{bottom:941.404400pt;}
.ybd{bottom:943.218533pt;}
.y1cc{bottom:944.957200pt;}
.y70{bottom:994.393333pt;}
.h19{height:8.219160pt;}
.h16{height:9.919008pt;}
.h5{height:23.580855pt;}
.hd{height:25.313024pt;}
.h14{height:25.624440pt;}
.h9{height:31.060945pt;}
.h13{height:31.444940pt;}
.h4{height:35.376000pt;}
.h8{height:37.076870pt;}
.hb{height:37.973713pt;}
.h11{height:37.974442pt;}
.h17{height:38.080381pt;}
.h1{height:38.442186pt;}
.h12{height:40.000400pt;}
.h7{height:45.650667pt;}
.ha{height:47.167607pt;}
.h18{height:51.627132pt;}
.hc{height:57.663519pt;}
.h15{height:57.665344pt;}
.h6{height:61.524949pt;}
.h10{height:76.283136pt;}
.hf{height:76.587433pt;}
.h3{height:76.907051pt;}
.h2{height:77.120386pt;}
.he{height:78.429024pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:48.000000pt;}
.x36{left:55.634667pt;}
.x37{left:60.018800pt;}
.xa{left:63.496000pt;}
.x2c{left:76.119600pt;}
.x2d{left:80.579467pt;}
.x38{left:129.033067pt;}
.x39{left:135.760533pt;}
.x1{left:266.683333pt;}
.x20{left:269.026771pt;}
.x24{left:273.410933pt;}
.xb{left:282.631493pt;}
.x17{left:288.226667pt;}
.x27{left:292.762133pt;}
.x45{left:294.651724pt;}
.x18{left:301.681867pt;}
.x2{left:305.385733pt;}
.x3{left:317.782533pt;}
.x19{left:359.130533pt;}
.x1a{left:363.968400pt;}
.x4{left:383.092800pt;}
.x5{left:388.006133pt;}
.x2e{left:395.716400pt;}
.x2f{left:400.100667pt;}
.x46{left:416.579467pt;}
.xc{left:429.580933pt;}
.x1d{left:443.489166pt;}
.x1b{left:455.737224pt;}
.x30{left:457.322667pt;}
.x31{left:461.782533pt;}
.x47{left:466.166800pt;}
.x6{left:471.382533pt;}
.x13{left:473.196800pt;}
.x7{left:476.371600pt;}
.x48{left:477.580933pt;}
.x14{left:483.703733pt;}
.xd{left:502.299067pt;}
.x21{left:506.456533pt;}
.xe{left:510.614000pt;}
.xf{left:515.527467pt;}
.x10{left:523.842400pt;}
.x1c{left:526.866000pt;}
.x32{left:530.721067pt;}
.x1e{left:535.255365pt;}
.x33{left:537.524267pt;}
.x8{left:539.565200pt;}
.x15{left:554.758933pt;}
.x16{left:565.266000pt;}
.x3f{left:577.814000pt;}
.x40{left:585.524267pt;}
.x28{left:621.278533pt;}
.x29{left:625.662800pt;}
.x41{left:628.459600pt;}
.x42{left:633.297467pt;}
.x43{left:653.026667pt;}
.x3a{left:658.015600pt;}
.x44{left:660.736800pt;}
.x11{left:663.231333pt;}
.x3b{left:671.470667pt;}
.x12{left:673.738400pt;}
.x22{left:689.688000pt;}
.x2a{left:690.973067pt;}
.x25{left:692.862800pt;}
.x2b{left:695.432933pt;}
.x34{left:710.777733pt;}
.x3c{left:714.179333pt;}
.x35{left:715.162000pt;}
.x3d{left:718.941270pt;}
.x3e{left:727.634400pt;}
.x1f{left:751.294267pt;}
.x26{left:754.998267pt;}
.x23{left:757.719467pt;}
}




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