
    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_113f5a9396a4be487e7c3883.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.786133;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_55ab9461e83258ca84d5bd3b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.943359;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_44d0ccc61071accab7c9788a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.024902;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_fbe7e68b201723764cf84534.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.903809;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_738813dbd16e359a75244e50.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.024902;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_5833ad6165b1b94f5e8d787b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971191;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_0294b5032857a5bd2bb86390.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.971191;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_d76b7cdbe02b408765a28b2f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.971191;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_eb973e06869ae3988b1a699a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.024902;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_94187f33438ab5a5314e04e1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910645;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_f2049801f1535bd79278a330.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_c901fbe2bb065b4f80a68fc7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.701660;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_766c002edee772359fd41874.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.903809;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_113f5a9396a4be487e7c3883.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.786133;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_55ab9461e83258ca84d5bd3b.woff2')format("woff");}.fff{font-family:fff;line-height:0.943359;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_e26b4e46609dba46bbe31b30.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.971191;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_61f15225fb043f1d4aa44902.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.024902;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_b0598f2dc4846e69d4d0cab6.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910156;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_e783032be0424fa3be748a67.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.893555;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_f19801016144eea39efbc172.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.910156;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_113f5a9396a4be487e7c3883.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.786133;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_55ab9461e83258ca84d5bd3b.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.943359;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_41723548a6a877c4b26d7840.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.971191;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_e56908220f5c2f6a0f378e93.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.024902;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.000000,-0.257500,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.257500,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.257500,0.250000,0.000000,0,0);}
.m1{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(0.257498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257498,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.257501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257501,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v6{vertical-align:-15.984000px;}
.v8{vertical-align:-11.988000px;}
.v2{vertical-align:-2.418600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.560000px;}
.v7{vertical-align:11.988000px;}
.v4{vertical-align:15.984000px;}
.v5{vertical-align:18.035400px;}
.v3{vertical-align:72.000000px;}
.ls8{letter-spacing:-1.344000px;}
.lsa{letter-spacing:-0.960000px;}
.ls39{letter-spacing:-0.741600px;}
.ls24{letter-spacing:-0.679800px;}
.ls2e{letter-spacing:-0.648000px;}
.lsf{letter-spacing:-0.618000px;}
.ls35{letter-spacing:-0.556200px;}
.lsd{letter-spacing:-0.494400px;}
.ls33{letter-spacing:-0.486000px;}
.ls9{letter-spacing:-0.480000px;}
.ls34{letter-spacing:-0.432600px;}
.ls29{letter-spacing:-0.432000px;}
.ls4a{letter-spacing:-0.414000px;}
.ls14{letter-spacing:-0.384000px;}
.ls28{letter-spacing:-0.378000px;}
.ls4d{letter-spacing:-0.372600px;}
.ls13{letter-spacing:-0.370800px;}
.ls2f{letter-spacing:-0.360000px;}
.ls2b{letter-spacing:-0.324000px;}
.ls11{letter-spacing:-0.309000px;}
.ls26{letter-spacing:-0.270000px;}
.ls4b{letter-spacing:-0.248400px;}
.ls36{letter-spacing:-0.247200px;}
.lsb{letter-spacing:-0.234000px;}
.ls25{letter-spacing:-0.216000px;}
.ls3b{letter-spacing:-0.195000px;}
.ls10{letter-spacing:-0.185400px;}
.ls40{letter-spacing:-0.165600px;}
.ls27{letter-spacing:-0.162000px;}
.lse{letter-spacing:-0.123600px;}
.ls2c{letter-spacing:-0.108000px;}
.lsc{letter-spacing:-0.061800px;}
.ls2a{letter-spacing:-0.054000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.020388px;}
.ls1{letter-spacing:0.020971px;}
.ls2{letter-spacing:0.027394px;}
.ls1c{letter-spacing:0.054000px;}
.ls3a{letter-spacing:0.061800px;}
.ls43{letter-spacing:0.082800px;}
.ls17{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.123600px;}
.ls41{letter-spacing:0.124200px;}
.ls16{letter-spacing:0.162000px;}
.ls44{letter-spacing:0.165600px;}
.ls6{letter-spacing:0.185400px;}
.ls1e{letter-spacing:0.198967px;}
.ls3f{letter-spacing:0.207000px;}
.ls3c{letter-spacing:0.247200px;}
.ls4c{letter-spacing:0.248400px;}
.ls18{letter-spacing:0.270000px;}
.ls4e{letter-spacing:0.289800px;}
.ls49{letter-spacing:0.372600px;}
.ls2d{letter-spacing:0.378000px;}
.ls3e{letter-spacing:0.414000px;}
.ls5{letter-spacing:0.494400px;}
.ls1b{letter-spacing:0.594000px;}
.ls3{letter-spacing:0.618000px;}
.ls48{letter-spacing:0.621000px;}
.ls30{letter-spacing:0.648000px;}
.ls38{letter-spacing:0.679800px;}
.ls1d{letter-spacing:0.702000px;}
.ls42{letter-spacing:0.745200px;}
.ls3d{letter-spacing:0.803400px;}
.ls45{letter-spacing:0.910800px;}
.ls47{letter-spacing:0.952200px;}
.ls31{letter-spacing:0.988800px;}
.ls19{letter-spacing:1.188000px;}
.ls46{letter-spacing:1.200600px;}
.ls12{letter-spacing:1.236000px;}
.ls1a{letter-spacing:1.242000px;}
.ls37{letter-spacing:1.297800px;}
.ls15{letter-spacing:4.320000px;}
.ls32{letter-spacing:5.747400px;}
.ls23{letter-spacing:171.354936px;}
.ls21{letter-spacing:254.615136px;}
.ls22{letter-spacing:277.142136px;}
.ls20{letter-spacing:310.316016px;}
.ls1f{letter-spacing:360.416016px;}
.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;}
}
.ws4{word-spacing:-32.640000px;}
.ws5{word-spacing:-21.420000px;}
.ws78{word-spacing:-20.916000px;}
.ws6{word-spacing:-15.771600px;}
.ws7{word-spacing:-15.264600px;}
.ws92{word-spacing:-15.202800px;}
.ws49{word-spacing:-14.784000px;}
.ws93{word-spacing:-13.728000px;}
.ws4b{word-spacing:-13.500000px;}
.ws4c{word-spacing:-12.672000px;}
.ws4d{word-spacing:-12.312000px;}
.ws8{word-spacing:-9.850368px;}
.ws75{word-spacing:-8.853000px;}
.ws45{word-spacing:-7.968000px;}
.ws4a{word-spacing:-7.870500px;}
.ws4e{word-spacing:-7.387776px;}
.wsc3{word-spacing:-4.602000px;}
.wsc7{word-spacing:-4.407000px;}
.ws82{word-spacing:-4.140600px;}
.ws25{word-spacing:-3.893400px;}
.ws26{word-spacing:-3.831600px;}
.wsa2{word-spacing:-3.769800px;}
.ws4f{word-spacing:-3.708000px;}
.wsa1{word-spacing:-3.646200px;}
.wse2{word-spacing:-3.643200px;}
.wsef{word-spacing:-3.601800px;}
.ws47{word-spacing:-3.600000px;}
.ws88{word-spacing:-3.584400px;}
.ws111{word-spacing:-3.477600px;}
.wsdc{word-spacing:-3.460800px;}
.ws107{word-spacing:-3.436200px;}
.ws57{word-spacing:-3.402000px;}
.ws28{word-spacing:-3.399000px;}
.wsfd{word-spacing:-3.353400px;}
.ws5d{word-spacing:-3.348000px;}
.ws60{word-spacing:-3.294000px;}
.wsd7{word-spacing:-3.275400px;}
.ws99{word-spacing:-3.213600px;}
.ws48{word-spacing:-3.187800px;}
.ws80{word-spacing:-3.028200px;}
.wsde{word-spacing:-3.024000px;}
.wsab{word-spacing:-2.966400px;}
.wsbb{word-spacing:-2.904600px;}
.ws38{word-spacing:-2.842800px;}
.ws73{word-spacing:-2.754000px;}
.wsec{word-spacing:-2.691000px;}
.ws3a{word-spacing:-2.657400px;}
.ws27{word-spacing:-2.595600px;}
.ws114{word-spacing:-2.566800px;}
.ws94{word-spacing:-2.533800px;}
.ws113{word-spacing:-2.525400px;}
.ws3b{word-spacing:-2.472000px;}
.ws41{word-spacing:-2.410200px;}
.ws103{word-spacing:-2.401200px;}
.wsf9{word-spacing:-2.359800px;}
.wsac{word-spacing:-2.348400px;}
.ws3d{word-spacing:-2.286600px;}
.ws72{word-spacing:-2.268000px;}
.ws74{word-spacing:-2.214000px;}
.wse7{word-spacing:-2.111400px;}
.ws1f{word-spacing:-2.106000px;}
.ws108{word-spacing:-2.070000px;}
.wsb1{word-spacing:-2.067000px;}
.ws3e{word-spacing:-2.039400px;}
.ws11b{word-spacing:-2.028600px;}
.ws62{word-spacing:-1.998000px;}
.wsb0{word-spacing:-1.950000px;}
.ws31{word-spacing:-1.915800px;}
.ws70{word-spacing:-1.890000px;}
.ws35{word-spacing:-1.854000px;}
.wsdb{word-spacing:-1.792200px;}
.wsf7{word-spacing:-1.738800px;}
.wsd9{word-spacing:-1.730400px;}
.ws55{word-spacing:-1.674000px;}
.ws43{word-spacing:-1.668600px;}
.ws1b{word-spacing:-1.638000px;}
.ws106{word-spacing:-1.614600px;}
.wse6{word-spacing:-1.573200px;}
.wsd1{word-spacing:-1.545000px;}
.ws69{word-spacing:-1.512000px;}
.wsb9{word-spacing:-1.483200px;}
.ws109{word-spacing:-1.449000px;}
.wsa9{word-spacing:-1.359600px;}
.ws11d{word-spacing:-1.324800px;}
.ws1a{word-spacing:-1.310400px;}
.ws7e{word-spacing:-1.297800px;}
.wsbc{word-spacing:-1.236000px;}
.ws10e{word-spacing:-1.200600px;}
.ws68{word-spacing:-1.188000px;}
.wsf8{word-spacing:-1.159200px;}
.ws6d{word-spacing:-1.134000px;}
.ws98{word-spacing:-1.112400px;}
.wsb8{word-spacing:-1.050600px;}
.ws71{word-spacing:-0.972000px;}
.ws21{word-spacing:-0.936000px;}
.ws84{word-spacing:-0.927000px;}
.ws61{word-spacing:-0.918000px;}
.ws9f{word-spacing:-0.865200px;}
.ws101{word-spacing:-0.745200px;}
.ws96{word-spacing:-0.741600px;}
.ws64{word-spacing:-0.702000px;}
.ws9b{word-spacing:-0.679800px;}
.ws100{word-spacing:-0.662400px;}
.ws13{word-spacing:-0.655200px;}
.ws5c{word-spacing:-0.648000px;}
.wsc8{word-spacing:-0.624000px;}
.ws119{word-spacing:-0.621000px;}
.ws44{word-spacing:-0.618000px;}
.ws95{word-spacing:-0.556200px;}
.ws58{word-spacing:-0.486000px;}
.wsba{word-spacing:-0.432600px;}
.wse1{word-spacing:-0.414000px;}
.wsfe{word-spacing:-0.372600px;}
.ws39{word-spacing:-0.370800px;}
.wsc0{word-spacing:-0.309000px;}
.wsfa{word-spacing:-0.289800px;}
.ws5a{word-spacing:-0.270000px;}
.ws36{word-spacing:-0.247200px;}
.ws11c{word-spacing:-0.207000px;}
.ws2c{word-spacing:-0.185400px;}
.ws11e{word-spacing:-0.165600px;}
.ws0{word-spacing:-0.120000px;}
.wsa{word-spacing:-0.084000px;}
.wsad{word-spacing:-0.078000px;}
.wscd{word-spacing:-0.061800px;}
.ws77{word-spacing:-0.042000px;}
.ws9{word-spacing:0.000000px;}
.ws6e{word-spacing:0.054000px;}
.ws1c{word-spacing:0.093600px;}
.ws6f{word-spacing:0.108000px;}
.ws50{word-spacing:0.123600px;}
.ws105{word-spacing:0.124200px;}
.ws5b{word-spacing:0.162000px;}
.wse3{word-spacing:0.165600px;}
.wsa5{word-spacing:0.185400px;}
.wsc6{word-spacing:0.195000px;}
.ws20{word-spacing:0.225000px;}
.ws1e{word-spacing:0.234000px;}
.ws89{word-spacing:0.247200px;}
.wseb{word-spacing:0.289800px;}
.ws81{word-spacing:0.309000px;}
.ws76{word-spacing:0.360000px;}
.ws11f{word-spacing:0.372600px;}
.ws16{word-spacing:0.374400px;}
.wsed{word-spacing:0.414000px;}
.ws7d{word-spacing:0.432000px;}
.ws2b{word-spacing:0.432600px;}
.wsc4{word-spacing:0.468000px;}
.ws7a{word-spacing:0.486000px;}
.wsc2{word-spacing:0.494400px;}
.wsc5{word-spacing:0.507000px;}
.wse8{word-spacing:0.538200px;}
.wsce{word-spacing:0.556200px;}
.ws40{word-spacing:0.618000px;}
.ws51{word-spacing:0.648000px;}
.ws83{word-spacing:0.679800px;}
.ws120{word-spacing:0.703800px;}
.wsb4{word-spacing:0.741600px;}
.ws11a{word-spacing:0.745200px;}
.wsbd{word-spacing:0.803400px;}
.ws90{word-spacing:0.819000px;}
.ws116{word-spacing:0.828000px;}
.ws3{word-spacing:0.864000px;}
.ws8a{word-spacing:0.865200px;}
.wsf4{word-spacing:0.952200px;}
.ws3c{word-spacing:0.988800px;}
.ws10f{word-spacing:0.993600px;}
.ws97{word-spacing:1.050600px;}
.ws66{word-spacing:1.080000px;}
.ws115{word-spacing:1.117800px;}
.wsd2{word-spacing:1.236000px;}
.ws1{word-spacing:1.248000px;}
.ws3f{word-spacing:1.297800px;}
.wse0{word-spacing:1.350000px;}
.wsf0{word-spacing:1.366200px;}
.wsf3{word-spacing:1.407600px;}
.wsc1{word-spacing:1.421400px;}
.wsc9{word-spacing:1.483200px;}
.ws12{word-spacing:1.497600px;}
.wse4{word-spacing:1.531800px;}
.wsa7{word-spacing:1.545000px;}
.ws22{word-spacing:1.560000px;}
.ws8f{word-spacing:1.606800px;}
.wsf2{word-spacing:1.656000px;}
.wsa0{word-spacing:1.668600px;}
.wsfb{word-spacing:1.780200px;}
.ws67{word-spacing:1.836000px;}
.wsd3{word-spacing:1.854000px;}
.ws33{word-spacing:1.915800px;}
.ws65{word-spacing:1.944000px;}
.ws118{word-spacing:1.945800px;}
.wsa8{word-spacing:2.039400px;}
.ws5f{word-spacing:2.052000px;}
.ws34{word-spacing:2.101200px;}
.ws8c{word-spacing:2.163000px;}
.ws7b{word-spacing:2.268000px;}
.wsbe{word-spacing:2.286600px;}
.ws2d{word-spacing:2.472000px;}
.wsdf{word-spacing:2.484000px;}
.wsee{word-spacing:2.525400px;}
.wsd0{word-spacing:2.533800px;}
.ws91{word-spacing:2.652000px;}
.wsb3{word-spacing:2.657400px;}
.ws6b{word-spacing:2.700000px;}
.wsd4{word-spacing:2.719200px;}
.wse{word-spacing:2.808000px;}
.ws9e{word-spacing:2.842800px;}
.wsae{word-spacing:2.847000px;}
.wscc{word-spacing:2.904600px;}
.wsaf{word-spacing:2.925000px;}
.wscb{word-spacing:2.966400px;}
.ws1d{word-spacing:2.995200px;}
.ws30{word-spacing:3.028200px;}
.ws7c{word-spacing:3.078000px;}
.ws42{word-spacing:3.213600px;}
.wsf6{word-spacing:3.229200px;}
.wsa6{word-spacing:3.275400px;}
.ws17{word-spacing:3.276000px;}
.ws10d{word-spacing:3.353400px;}
.wsf5{word-spacing:3.394800px;}
.ws37{word-spacing:3.399000px;}
.wsca{word-spacing:3.460800px;}
.ws110{word-spacing:3.560400px;}
.ws54{word-spacing:3.618000px;}
.wsfc{word-spacing:3.643200px;}
.wsbf{word-spacing:3.646200px;}
.ws10b{word-spacing:3.684600px;}
.wsd5{word-spacing:3.708000px;}
.wsa3{word-spacing:3.769800px;}
.ws53{word-spacing:3.780000px;}
.wsb{word-spacing:3.884400px;}
.ws86{word-spacing:3.893400px;}
.ws32{word-spacing:3.955200px;}
.ws56{word-spacing:4.158000px;}
.wsea{word-spacing:4.181400px;}
.wsb2{word-spacing:4.264200px;}
.wsa4{word-spacing:4.449600px;}
.ws9d{word-spacing:4.573200px;}
.ws8e{word-spacing:4.820400px;}
.ws63{word-spacing:4.860000px;}
.wsb6{word-spacing:4.882200px;}
.wse9{word-spacing:5.092200px;}
.wsdd{word-spacing:5.129400px;}
.ws2e{word-spacing:5.191200px;}
.ws117{word-spacing:5.216400px;}
.ws5e{word-spacing:5.238000px;}
.wsb5{word-spacing:5.253000px;}
.ws87{word-spacing:5.314800px;}
.ws6a{word-spacing:5.346000px;}
.ws29{word-spacing:5.376600px;}
.wsd6{word-spacing:5.500200px;}
.ws112{word-spacing:5.547600px;}
.wsda{word-spacing:5.562000px;}
.ws10c{word-spacing:5.589000px;}
.wsd{word-spacing:5.616000px;}
.ws85{word-spacing:5.685600px;}
.wsaa{word-spacing:5.747400px;}
.ws8d{word-spacing:5.932800px;}
.ws79{word-spacing:5.940000px;}
.ws2f{word-spacing:5.994600px;}
.ws104{word-spacing:6.003000px;}
.ws10a{word-spacing:6.085800px;}
.ws9a{word-spacing:6.118200px;}
.ws59{word-spacing:6.156000px;}
.wse5{word-spacing:6.168600px;}
.wsb7{word-spacing:6.365400px;}
.wsd8{word-spacing:6.427200px;}
.ws8b{word-spacing:6.489000px;}
.ws11{word-spacing:6.552000px;}
.ws10{word-spacing:6.645600px;}
.ws9c{word-spacing:6.674400px;}
.ws6c{word-spacing:6.696000px;}
.ws52{word-spacing:6.750000px;}
.ws24{word-spacing:6.798000px;}
.ws7f{word-spacing:7.107000px;}
.wsff{word-spacing:7.162200px;}
.ws23{word-spacing:7.168800px;}
.ws102{word-spacing:7.245000px;}
.wsf1{word-spacing:7.286400px;}
.wscf{word-spacing:7.416000px;}
.wsc{word-spacing:7.441200px;}
.ws2a{word-spacing:7.725000px;}
.ws14{word-spacing:10.810800px;}
.ws18{word-spacing:11.091600px;}
.ws15{word-spacing:11.793600px;}
.wsf{word-spacing:12.636000px;}
.ws46{word-spacing:15.936000px;}
.ws19{word-spacing:19.375200px;}
.ws2{word-spacing:1421.880000px;}
._8{margin-left:-1223.614800px;}
._1f{margin-left:-542.604000px;}
._21{margin-left:-14.214000px;}
._b{margin-left:-9.243000px;}
._a{margin-left:-7.327200px;}
._5{margin-left:-6.172800px;}
._4{margin-left:-4.288500px;}
._2{margin-left:-3.204600px;}
._1{margin-left:-1.289400px;}
._3{width:1.521000px;}
._6{width:3.399000px;}
._9{width:4.919400px;}
._7{width:6.631140px;}
._20{width:8.186460px;}
._22{width:9.307020px;}
._c{width:160.017000px;}
._d{width:163.527000px;}
._19{width:167.687688px;}
._1b{width:198.374688px;}
._1c{width:199.941888px;}
._18{width:230.904000px;}
._e{width:234.704400px;}
._1e{width:259.416000px;}
._14{width:269.136000px;}
._17{width:304.128000px;}
._16{width:329.976000px;}
._1d{width:331.932600px;}
._13{width:356.040000px;}
._10{width:359.280000px;}
._1a{width:365.176200px;}
._15{width:415.368000px;}
._12{width:455.400000px;}
._11{width:505.512000px;}
._f{width:586.721400px;}
._0{width:819.731068px;}
.fc4{color:rgb(57,73,153);}
.fc3{color:rgb(35,31,32);}
.fc2{color:rgb(255,255,255);}
.fc5{color:rgb(48,79,170);}
.fc1{color:rgb(42,62,146);}
.fc0{color:rgb(75,82,163);}
.fs11{font-size:20.988000px;}
.fsc{font-size:24.136200px;}
.fsb{font-size:27.984000px;}
.fsf{font-size:31.482000px;}
.fs10{font-size:36.000000px;}
.fs12{font-size:36.029400px;}
.fs7{font-size:39.000000px;}
.fsd{font-size:41.400000px;}
.fs3{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs5{font-size:46.800000px;}
.fsa{font-size:48.000000px;}
.fse{font-size:54.000000px;}
.fs9{font-size:61.800000px;}
.fs2{font-size:63.000000px;}
.fs4{font-size:69.000000px;}
.fs1{font-size:96.000000px;}
.fs0{font-size:120.000000px;}
.fs8{font-size:170.543400px;}
.y0{bottom:0.000000px;}
.y7{bottom:54.273000px;}
.y4{bottom:54.981450px;}
.y6{bottom:70.033500px;}
.y3{bottom:70.405950px;}
.y16f{bottom:101.697600px;}
.y118{bottom:101.985000px;}
.yd9{bottom:102.000000px;}
.y61{bottom:102.006300px;}
.y34{bottom:102.009600px;}
.y1a6{bottom:102.087000px;}
.y2{bottom:102.168900px;}
.y1db{bottom:102.542400px;}
.y226{bottom:103.793550px;}
.y270{bottom:104.005050px;}
.yd8{bottom:112.800000px;}
.y16e{bottom:115.201350px;}
.y117{bottom:115.488750px;}
.y1da{bottom:116.038800px;}
.y225{bottom:117.217500px;}
.y26f{bottom:117.501450px;}
.y33{bottom:119.931600px;}
.y60{bottom:120.129150px;}
.y1a5{bottom:120.178950px;}
.yd7{bottom:127.596000px;}
.y16d{bottom:128.705100px;}
.y116{bottom:128.992500px;}
.y224{bottom:130.641450px;}
.y26e{bottom:130.997850px;}
.y32{bottom:137.992650px;}
.y5f{bottom:138.252000px;}
.y1a4{bottom:138.270900px;}
.y1d9{bottom:138.538800px;}
.y16c{bottom:142.208850px;}
.y115{bottom:142.496250px;}
.y223{bottom:144.065400px;}
.y26d{bottom:144.494250px;}
.yd6{bottom:144.771600px;}
.y114{bottom:156.000000px;}
.y31{bottom:156.053700px;}
.y5e{bottom:156.220350px;}
.y1a3{bottom:156.362850px;}
.y222{bottom:157.489350px;}
.y26c{bottom:157.990650px;}
.yd5{bottom:158.447400px;}
.y221{bottom:170.913300px;}
.y26b{bottom:171.487050px;}
.yd4{bottom:172.127400px;}
.y30{bottom:174.114750px;}
.y5d{bottom:174.188700px;}
.y1a2{bottom:174.454800px;}
.y220{bottom:184.337250px;}
.y26a{bottom:184.994250px;}
.yd3{bottom:185.801700px;}
.y1d8{bottom:187.443300px;}
.y5c{bottom:192.157050px;}
.y2f{bottom:192.177450px;}
.y1a1{bottom:192.546750px;}
.y21f{bottom:197.761200px;}
.y269{bottom:198.490650px;}
.yd2{bottom:199.481700px;}
.y5b{bottom:210.125400px;}
.y2e{bottom:210.238500px;}
.y1a0{bottom:210.638700px;}
.y21e{bottom:211.185150px;}
.y1d7{bottom:211.446300px;}
.y268{bottom:211.987050px;}
.yd1{bottom:212.360700px;}
.y21d{bottom:224.609100px;}
.y267{bottom:225.519450px;}
.y1d6{bottom:226.444800px;}
.y5a{bottom:228.087900px;}
.y2d{bottom:228.315000px;}
.y19f{bottom:228.730650px;}
.yd0{bottom:231.242550px;}
.y21c{bottom:238.033050px;}
.y266{bottom:239.015850px;}
.y1d5{bottom:241.443300px;}
.y59{bottom:246.056250px;}
.y2c{bottom:246.376050px;}
.y19e{bottom:246.822600px;}
.y21b{bottom:251.457000px;}
.y265{bottom:252.512250px;}
.ycf{bottom:254.072850px;}
.y1d4{bottom:256.441800px;}
.y58{bottom:264.055500px;}
.y2b{bottom:264.437100px;}
.y21a{bottom:264.880950px;}
.y19d{bottom:264.914550px;}
.y264{bottom:266.008650px;}
.y1d3{bottom:271.440300px;}
.y219{bottom:278.304900px;}
.y263{bottom:279.505050px;}
.y57{bottom:282.023850px;}
.y2a{bottom:282.505800px;}
.y19c{bottom:283.006500px;}
.y9b{bottom:284.175750px;}
.yce{bottom:284.188200px;}
.y1d2{bottom:286.438800px;}
.y218{bottom:291.728850px;}
.y262{bottom:293.001450px;}
.ycd{bottom:299.186700px;}
.y9a{bottom:299.413500px;}
.y56{bottom:299.992200px;}
.y29{bottom:300.566850px;}
.y19b{bottom:301.098450px;}
.y217{bottom:305.152800px;}
.y261{bottom:306.497850px;}
.y1d1{bottom:310.438800px;}
.ycc{bottom:314.185200px;}
.y99{bottom:314.655000px;}
.y55{bottom:317.960550px;}
.y216{bottom:318.576750px;}
.y28{bottom:318.627900px;}
.y19a{bottom:319.190400px;}
.y260{bottom:319.994250px;}
.ycb{bottom:329.183700px;}
.y98{bottom:329.894550px;}
.y215{bottom:332.000700px;}
.y25f{bottom:333.490650px;}
.y54{bottom:335.928900px;}
.y26{bottom:336.688200px;}
.y27{bottom:336.688950px;}
.y199{bottom:337.282350px;}
.yca{bottom:344.182200px;}
.y97{bottom:345.122700px;}
.y214{bottom:345.424650px;}
.y25e{bottom:346.987050px;}
.y53{bottom:353.897250px;}
.y198{bottom:355.374300px;}
.y213{bottom:358.848600px;}
.yc9{bottom:359.180700px;}
.y1d0{bottom:359.344800px;}
.y96{bottom:360.364200px;}
.y25d{bottom:360.505050px;}
.y52{bottom:371.865600px;}
.y212{bottom:372.272550px;}
.y197{bottom:373.466250px;}
.y25c{bottom:374.001450px;}
.yc8{bottom:374.179200px;}
.y95{bottom:375.605700px;}
.y1cf{bottom:377.344050px;}
.y211{bottom:385.696500px;}
.y25b{bottom:387.497850px;}
.yc7{bottom:389.177700px;}
.y51{bottom:389.833950px;}
.y94{bottom:390.847200px;}
.y196{bottom:391.558200px;}
.y1ce{bottom:395.343300px;}
.y210{bottom:399.120450px;}
.y25a{bottom:400.994250px;}
.y25{bottom:401.245050px;}
.yc6{bottom:404.182200px;}
.y93{bottom:406.088700px;}
.y50{bottom:407.802300px;}
.y195{bottom:409.650150px;}
.y20f{bottom:412.544400px;}
.y24{bottom:413.013300px;}
.y1cd{bottom:413.342550px;}
.y259{bottom:414.490650px;}
.yc5{bottom:419.180700px;}
.y92{bottom:421.330200px;}
.y23{bottom:424.781550px;}
.y4f{bottom:425.770650px;}
.y20e{bottom:425.968350px;}
.y194{bottom:427.757550px;}
.y258{bottom:427.987050px;}
.y1cc{bottom:431.341800px;}
.yc4{bottom:434.179200px;}
.y91{bottom:436.571700px;}
.y20d{bottom:439.392300px;}
.y257{bottom:441.501450px;}
.y4e{bottom:443.739000px;}
.y193{bottom:445.849500px;}
.y22{bottom:447.044550px;}
.yc3{bottom:449.177700px;}
.y1cb{bottom:449.341050px;}
.y90{bottom:451.813200px;}
.y20c{bottom:452.816250px;}
.y256{bottom:454.997850px;}
.y4d{bottom:461.713050px;}
.y192{bottom:463.941450px;}
.yc2{bottom:464.183700px;}
.y20b{bottom:466.240200px;}
.y1ca{bottom:467.340300px;}
.y255{bottom:468.494250px;}
.y21{bottom:471.108300px;}
.y8f{bottom:474.552900px;}
.yc1{bottom:479.182200px;}
.y20a{bottom:479.664150px;}
.y4c{bottom:479.681400px;}
.y254{bottom:481.990650px;}
.y191{bottom:482.089650px;}
.y1c9{bottom:485.339550px;}
.y209{bottom:493.088100px;}
.yc0{bottom:494.180700px;}
.y20{bottom:495.172050px;}
.y253{bottom:495.487050px;}
.y4b{bottom:497.649750px;}
.y190{bottom:500.181600px;}
.y1c8{bottom:503.338800px;}
.y208{bottom:506.512050px;}
.y1f{bottom:508.739550px;}
.y252{bottom:509.009700px;}
.ybf{bottom:509.179200px;}
.y8e{bottom:512.290500px;}
.y4a{bottom:515.612250px;}
.y18f{bottom:518.273550px;}
.y207{bottom:519.952050px;}
.y1c7{bottom:521.340300px;}
.y251{bottom:522.506100px;}
.ybe{bottom:524.177700px;}
.y1{bottom:524.202600px;}
.y8d{bottom:527.532000px;}
.y206{bottom:533.376000px;}
.y49{bottom:533.580600px;}
.y1e{bottom:534.305700px;}
.y250{bottom:536.002500px;}
.y18e{bottom:536.365500px;}
.ybd{bottom:539.179200px;}
.y1c6{bottom:539.339550px;}
.y8c{bottom:542.762100px;}
.y205{bottom:546.799950px;}
.y24f{bottom:549.498900px;}
.y1d{bottom:551.469600px;}
.y48{bottom:551.579850px;}
.ybc{bottom:554.177700px;}
.y18d{bottom:554.457450px;}
.y1c5{bottom:557.338800px;}
.y8b{bottom:558.003600px;}
.y204{bottom:560.223900px;}
.y24e{bottom:562.995300px;}
.y1c{bottom:568.634550px;}
.y47{bottom:569.548200px;}
.y18c{bottom:572.549400px;}
.y8a{bottom:573.245100px;}
.y203{bottom:573.647850px;}
.y1c4{bottom:575.352300px;}
.y24d{bottom:576.491700px;}
.ybb{bottom:576.677700px;}
.y1b{bottom:585.798450px;}
.y202{bottom:587.144250px;}
.y46{bottom:587.516550px;}
.y89{bottom:588.486600px;}
.y24c{bottom:589.988100px;}
.y18b{bottom:590.641350px;}
.yf4{bottom:593.338800px;}
.y1c3{bottom:593.351550px;}
.y113{bottom:593.352300px;}
.y201{bottom:600.640650px;}
.y1a{bottom:602.964750px;}
.y24b{bottom:603.412050px;}
.y88{bottom:603.728100px;}
.y45{bottom:605.484900px;}
.y18a{bottom:608.733300px;}
.y1c2{bottom:611.350800px;}
.y112{bottom:611.351550px;}
.yf3{bottom:611.518200px;}
.yba{bottom:612.679200px;}
.y200{bottom:614.137050px;}
.y24a{bottom:616.842300px;}
.y87{bottom:618.969600px;}
.y19{bottom:620.128650px;}
.y44{bottom:623.453250px;}
.y189{bottom:626.825250px;}
.y1ff{bottom:627.655050px;}
.yb9{bottom:627.677700px;}
.y1c1{bottom:629.350050px;}
.y111{bottom:629.350800px;}
.yf2{bottom:629.702850px;}
.y249{bottom:630.266250px;}
.y86{bottom:634.173150px;}
.y18{bottom:637.292550px;}
.y1fe{bottom:641.151450px;}
.y43{bottom:641.421600px;}
.yb8{bottom:642.683700px;}
.y248{bottom:643.690200px;}
.y188{bottom:644.917200px;}
.y1c0{bottom:647.349300px;}
.y110{bottom:647.350050px;}
.yf1{bottom:647.887500px;}
.y85{bottom:649.414650px;}
.y17{bottom:654.456450px;}
.y1fd{bottom:654.647850px;}
.y247{bottom:657.114150px;}
.yb7{bottom:657.682200px;}
.y42{bottom:659.389950px;}
.y187{bottom:663.009150px;}
.y84{bottom:664.656150px;}
.y1bf{bottom:665.348550px;}
.y10f{bottom:665.349300px;}
.y1fc{bottom:668.144250px;}
.y246{bottom:670.538100px;}
.y16{bottom:671.622000px;}
.yb6{bottom:672.680700px;}
.yf0{bottom:675.070500px;}
.y41{bottom:677.358300px;}
.y83{bottom:679.897650px;}
.y186{bottom:681.116550px;}
.y1fb{bottom:681.640650px;}
.y1be{bottom:683.347800px;}
.y10e{bottom:683.348550px;}
.y245{bottom:683.962050px;}
.y16b{bottom:686.187600px;}
.y153{bottom:686.191800px;}
.y144{bottom:686.788800px;}
.y12f{bottom:686.846550px;}
.yb5{bottom:687.679200px;}
.y15{bottom:688.785900px;}
.y1fa{bottom:695.137050px;}
.y82{bottom:695.139150px;}
.y40{bottom:695.326650px;}
.y244{bottom:697.391250px;}
.y185{bottom:699.208500px;}
.y1bd{bottom:701.347050px;}
.y10d{bottom:701.347800px;}
.yb4{bottom:702.677700px;}
.y152{bottom:704.191050px;}
.y16a{bottom:704.202300px;}
.y143{bottom:704.675550px;}
.y12e{bottom:704.691300px;}
.y14{bottom:705.949800px;}
.y1f9{bottom:708.687450px;}
.y81{bottom:710.380650px;}
.y243{bottom:710.815200px;}
.y3f{bottom:713.295000px;}
.y184{bottom:717.300450px;}
.yb3{bottom:717.688200px;}
.y1bc{bottom:719.346300px;}
.y10c{bottom:719.347050px;}
.y169{bottom:722.077950px;}
.y1f8{bottom:722.183850px;}
.y151{bottom:722.190300px;}
.y142{bottom:722.520300px;}
.y12d{bottom:722.536050px;}
.y13{bottom:723.117750px;}
.y242{bottom:724.239150px;}
.y80{bottom:725.622150px;}
.yef{bottom:725.644200px;}
.y3e{bottom:731.263350px;}
.yb2{bottom:732.686700px;}
.y183{bottom:735.453750px;}
.y1f7{bottom:735.680250px;}
.y1bb{bottom:737.345550px;}
.y10b{bottom:737.346300px;}
.y241{bottom:737.663100px;}
.y168{bottom:739.923150px;}
.y150{bottom:740.189550px;}
.y12{bottom:740.281650px;}
.y141{bottom:740.365050px;}
.y12c{bottom:740.380800px;}
.yee{bottom:740.831700px;}
.y7f{bottom:740.863650px;}
.yb1{bottom:747.685200px;}
.y1f6{bottom:749.176650px;}
.y3d{bottom:749.237400px;}
.y240{bottom:751.087050px;}
.y182{bottom:753.545700px;}
.y1ba{bottom:755.344800px;}
.y10a{bottom:755.345550px;}
.yed{bottom:756.019200px;}
.y7e{bottom:756.105150px;}
.y11{bottom:757.445550px;}
.y167{bottom:757.798800px;}
.y14f{bottom:758.188800px;}
.y140{bottom:758.209800px;}
.y12b{bottom:758.225550px;}
.y1f5{bottom:762.673050px;}
.yb0{bottom:762.683700px;}
.y23f{bottom:764.526750px;}
.y3c{bottom:767.205750px;}
.yec{bottom:771.202200px;}
.y7d{bottom:771.346650px;}
.y181{bottom:771.637650px;}
.y1b9{bottom:773.344050px;}
.y109{bottom:773.344800px;}
.y10{bottom:774.609450px;}
.y166{bottom:775.674450px;}
.y13f{bottom:776.054550px;}
.y12a{bottom:776.070300px;}
.y1f4{bottom:776.169450px;}
.yaf{bottom:777.682200px;}
.y23e{bottom:777.950700px;}
.y3b{bottom:785.174100px;}
.y14e{bottom:785.188800px;}
.y7c{bottom:786.588150px;}
.y1f3{bottom:789.665850px;}
.y180{bottom:789.729600px;}
.y1b8{bottom:791.343300px;}
.y108{bottom:791.344050px;}
.y23d{bottom:791.374650px;}
.yf{bottom:791.773350px;}
.yae{bottom:792.680700px;}
.y165{bottom:793.550100px;}
.yeb{bottom:793.885050px;}
.y13e{bottom:793.899300px;}
.y129{bottom:793.915050px;}
.y7b{bottom:801.829650px;}
.y3a{bottom:803.146050px;}
.y1f2{bottom:803.162250px;}
.y23c{bottom:804.798600px;}
.yad{bottom:807.679200px;}
.y17f{bottom:807.821550px;}
.ye{bottom:808.937250px;}
.y1b7{bottom:809.342550px;}
.y107{bottom:809.343300px;}
.y164{bottom:811.425750px;}
.y13d{bottom:811.744050px;}
.y128{bottom:811.759800px;}
.y1f1{bottom:816.658650px;}
.y7a{bottom:817.071150px;}
.y23b{bottom:818.222550px;}
.y39{bottom:821.114400px;}
.yac{bottom:822.677700px;}
.y17e{bottom:825.913500px;}
.yd{bottom:826.101150px;}
.y1b6{bottom:827.341800px;}
.y106{bottom:827.342550px;}
.y163{bottom:829.212450px;}
.y13c{bottom:829.588800px;}
.y127{bottom:829.604550px;}
.y14d{bottom:829.667550px;}
.y1f0{bottom:830.155050px;}
.yea{bottom:831.540600px;}
.y23a{bottom:831.646500px;}
.y79{bottom:832.312650px;}
.yab{bottom:837.677700px;}
.y38{bottom:839.098200px;}
.yc{bottom:843.266250px;}
.y1ef{bottom:843.651450px;}
.y17d{bottom:844.005450px;}
.y239{bottom:845.070450px;}
.y1b5{bottom:845.341050px;}
.y105{bottom:845.341800px;}
.ye9{bottom:846.728100px;}
.y162{bottom:847.088100px;}
.y126{bottom:847.449300px;}
.y14c{bottom:847.512300px;}
.y78{bottom:847.554150px;}
.y37{bottom:857.066550px;}
.y1ee{bottom:857.147850px;}
.y238{bottom:858.494400px;}
.yaa{bottom:860.180700px;}
.yb{bottom:860.430150px;}
.ye8{bottom:861.915600px;}
.y17c{bottom:862.097400px;}
.y77{bottom:862.795650px;}
.y1b4{bottom:863.340300px;}
.y104{bottom:863.341050px;}
.y161{bottom:864.963750px;}
.y125{bottom:865.294050px;}
.y14b{bottom:865.357050px;}
.y1ed{bottom:870.644250px;}
.y237{bottom:871.918350px;}
.y36{bottom:875.034900px;}
.ya9{bottom:876.677700px;}
.ye7{bottom:877.103100px;}
.ya{bottom:877.594050px;}
.y76{bottom:878.037150px;}
.y17b{bottom:880.189350px;}
.y1b3{bottom:881.339550px;}
.y103{bottom:881.340300px;}
.y160{bottom:882.839400px;}
.y124{bottom:883.138800px;}
.y14a{bottom:883.201800px;}
.y1ec{bottom:884.140650px;}
.y236{bottom:885.342300px;}
.ye6{bottom:892.290600px;}
.y35{bottom:893.003250px;}
.y75{bottom:893.278650px;}
.y9{bottom:894.757950px;}
.y1eb{bottom:897.637050px;}
.y17a{bottom:898.281300px;}
.y235{bottom:898.766250px;}
.y1b2{bottom:899.338800px;}
.y102{bottom:899.339550px;}
.y15f{bottom:900.715050px;}
.y123{bottom:901.009800px;}
.y149{bottom:901.046550px;}
.y13b{bottom:901.107150px;}
.ye5{bottom:907.478100px;}
.y74{bottom:908.520150px;}
.y1ea{bottom:911.176650px;}
.ya8{bottom:911.194200px;}
.y234{bottom:912.190200px;}
.y179{bottom:916.373250px;}
.y101{bottom:917.338800px;}
.y1b1{bottom:917.342550px;}
.y15e{bottom:918.590700px;}
.y122{bottom:918.854550px;}
.y148{bottom:918.891300px;}
.y13a{bottom:918.951900px;}
.ye4{bottom:922.665600px;}
.y73{bottom:923.761650px;}
.y1e9{bottom:924.673050px;}
.y233{bottom:925.614150px;}
.ya7{bottom:926.192700px;}
.y178{bottom:934.465200px;}
.y1b0{bottom:935.341800px;}
.y100{bottom:935.343300px;}
.y15d{bottom:936.466350px;}
.y121{bottom:936.699300px;}
.y147{bottom:936.736050px;}
.y139{bottom:936.796650px;}
.ye3{bottom:937.811850px;}
.y1e8{bottom:938.169450px;}
.y232{bottom:939.038100px;}
.ya6{bottom:941.191200px;}
.y72{bottom:946.501200px;}
.y69{bottom:948.703050px;}
.y6b{bottom:948.704250px;}
.y1e7{bottom:951.665850px;}
.y6a{bottom:952.150950px;}
.y231{bottom:952.462050px;}
.y177{bottom:952.567350px;}
.ye2{bottom:952.999350px;}
.y1af{bottom:953.341050px;}
.yff{bottom:953.342550px;}
.y15c{bottom:954.342000px;}
.y120{bottom:954.544050px;}
.y146{bottom:954.580800px;}
.y138{bottom:954.641400px;}
.ya5{bottom:956.189700px;}
.y68{bottom:961.454250px;}
.y67{bottom:964.900950px;}
.y1e6{bottom:965.162250px;}
.y230{bottom:965.897550px;}
.ye1{bottom:968.186850px;}
.y176{bottom:970.659300px;}
.ya4{bottom:971.188200px;}
.y1ae{bottom:971.340300px;}
.yfe{bottom:971.341800px;}
.y15b{bottom:972.217650px;}
.y71{bottom:972.247950px;}
.y11f{bottom:972.388800px;}
.y145{bottom:972.425550px;}
.y137{bottom:972.486150px;}
.y66{bottom:974.204400px;}
.y1e5{bottom:978.658650px;}
.y22f{bottom:979.321500px;}
.ye0{bottom:983.374350px;}
.ya3{bottom:986.186700px;}
.y65{bottom:988.604400px;}
.y175{bottom:988.787100px;}
.y1ad{bottom:989.339550px;}
.yfd{bottom:989.341050px;}
.y15a{bottom:990.093300px;}
.y11e{bottom:990.270300px;}
.y136{bottom:990.330900px;}
.y1e4{bottom:992.155050px;}
.y22e{bottom:992.745450px;}
.ydf{bottom:998.561850px;}
.ya2{bottom:1001.185200px;}
.y1e3{bottom:1005.651450px;}
.y22d{bottom:1006.169400px;}
.y174{bottom:1006.879050px;}
.y1ac{bottom:1007.338800px;}
.yfc{bottom:1007.340300px;}
.y159{bottom:1007.968950px;}
.y11d{bottom:1008.115050px;}
.y135{bottom:1008.175650px;}
.yde{bottom:1013.749350px;}
.ya1{bottom:1016.183700px;}
.y1e2{bottom:1019.147850px;}
.y22c{bottom:1019.593350px;}
.y64{bottom:1021.028400px;}
.y70{bottom:1024.353000px;}
.y173{bottom:1024.971000px;}
.yfb{bottom:1025.339550px;}
.y1ab{bottom:1025.425350px;}
.y158{bottom:1025.844600px;}
.y11c{bottom:1025.959800px;}
.y134{bottom:1026.020400px;}
.ydd{bottom:1028.936850px;}
.ya0{bottom:1031.182200px;}
.y1e1{bottom:1032.644250px;}
.y22b{bottom:1033.017300px;}
.y6f{bottom:1042.599450px;}
.y172{bottom:1043.062950px;}
.yf8{bottom:1043.335500px;}
.yfa{bottom:1043.338800px;}
.y1aa{bottom:1043.424600px;}
.y157{bottom:1043.720250px;}
.y11b{bottom:1043.804550px;}
.y133{bottom:1043.865150px;}
.ydc{bottom:1044.124350px;}
.y1e0{bottom:1046.140650px;}
.y9f{bottom:1046.180700px;}
.y22a{bottom:1046.441250px;}
.y63{bottom:1046.516400px;}
.yf9{bottom:1048.483650px;}
.ydb{bottom:1059.311850px;}
.y1df{bottom:1059.637050px;}
.y229{bottom:1059.865200px;}
.y6e{bottom:1060.845900px;}
.y171{bottom:1061.154900px;}
.y9e{bottom:1061.179200px;}
.yf7{bottom:1061.334750px;}
.y1a9{bottom:1061.423850px;}
.y156{bottom:1061.595900px;}
.y11a{bottom:1061.649300px;}
.y132{bottom:1061.709900px;}
.y62{bottom:1072.004400px;}
.y1de{bottom:1073.144250px;}
.y228{bottom:1073.289150px;}
.y9d{bottom:1076.177700px;}
.y6d{bottom:1079.092350px;}
.y170{bottom:1079.246850px;}
.yf6{bottom:1079.334000px;}
.y1a8{bottom:1079.423100px;}
.y155{bottom:1079.471550px;}
.y119{bottom:1079.494050px;}
.y131{bottom:1079.554650px;}
.yda{bottom:1081.991700px;}
.y1dd{bottom:1086.640650px;}
.y227{bottom:1086.713100px;}
.yf5{bottom:1097.333250px;}
.y6c{bottom:1097.338800px;}
.y154{bottom:1097.347200px;}
.y130{bottom:1097.399400px;}
.y1a7{bottom:1097.422350px;}
.y9c{bottom:1098.677700px;}
.y1dc{bottom:1100.137050px;}
.y5{bottom:1123.890450px;}
.y8{bottom:1135.783500px;}
.hf{height:18.455708px;}
.h20{height:22.900969px;}
.h23{height:25.034100px;}
.h1c{height:29.460938px;}
.h1b{height:29.821289px;}
.h10{height:31.656445px;}
.h8{height:31.916016px;}
.h26{height:33.880078px;}
.h4{height:34.371094px;}
.h6{height:35.785547px;}
.h7{height:36.826172px;}
.h13{height:37.494141px;}
.h14{height:37.520508px;}
.h16{height:37.558908px;}
.h15{height:37.665108px;}
.h21{height:37.666908px;}
.h1e{height:38.884969px;}
.h1d{height:38.890969px;}
.h1f{height:38.901769px;}
.he{height:39.281250px;}
.h1a{height:39.856456px;}
.h18{height:39.864256px;}
.h19{height:39.871456px;}
.h17{height:39.909856px;}
.hb{height:42.909961px;}
.ha{height:42.940137px;}
.h22{height:42.954537px;}
.hc{height:42.963537px;}
.h25{height:43.037337px;}
.h24{height:43.271337px;}
.h11{height:43.883726px;}
.h12{height:44.204590px;}
.h5{height:48.414551px;}
.hd{height:67.359375px;}
.h3{height:68.812500px;}
.h2{height:97.342706px;}
.h9{height:118.497685px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:42.187800px;}
.x1{left:48.191700px;}
.x3{left:75.000000px;}
.x17{left:76.500000px;}
.xa{left:78.951150px;}
.x23{left:84.002850px;}
.x14{left:87.000015px;}
.xd{left:88.965750px;}
.x1f{left:90.006431px;}
.xe{left:92.917050px;}
.x22{left:99.000000px;}
.x7{left:114.047400px;}
.x18{left:120.750000px;}
.xf{left:169.372500px;}
.x10{left:173.323800px;}
.x16{left:288.375000px;}
.x5{left:341.610000px;}
.x6{left:352.558500px;}
.x8{left:459.963479px;}
.x11{left:463.384800px;}
.x20{left:468.956700px;}
.x15{left:471.956715px;}
.x9{left:474.969909px;}
.xb{left:478.737750px;}
.xc{left:482.688900px;}
.x21{left:483.953850px;}
.x4{left:511.002000px;}
.x13{left:682.193100px;}
.x19{left:691.537650px;}
.x1a{left:696.723450px;}
.x1b{left:720.022350px;}
.x1c{left:725.208150px;}
.x1d{left:768.567600px;}
.x1e{left:773.753550px;}
.x12{left:798.046800px;}
@media print{
.v6{vertical-align:-14.208000pt;}
.v8{vertical-align:-10.656000pt;}
.v2{vertical-align:-2.149867pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.053333pt;}
.v7{vertical-align:10.656000pt;}
.v4{vertical-align:14.208000pt;}
.v5{vertical-align:16.031467pt;}
.v3{vertical-align:64.000000pt;}
.ls8{letter-spacing:-1.194667pt;}
.lsa{letter-spacing:-0.853333pt;}
.ls39{letter-spacing:-0.659200pt;}
.ls24{letter-spacing:-0.604267pt;}
.ls2e{letter-spacing:-0.576000pt;}
.lsf{letter-spacing:-0.549333pt;}
.ls35{letter-spacing:-0.494400pt;}
.lsd{letter-spacing:-0.439467pt;}
.ls33{letter-spacing:-0.432000pt;}
.ls9{letter-spacing:-0.426667pt;}
.ls34{letter-spacing:-0.384533pt;}
.ls29{letter-spacing:-0.384000pt;}
.ls4a{letter-spacing:-0.368000pt;}
.ls14{letter-spacing:-0.341333pt;}
.ls28{letter-spacing:-0.336000pt;}
.ls4d{letter-spacing:-0.331200pt;}
.ls13{letter-spacing:-0.329600pt;}
.ls2f{letter-spacing:-0.320000pt;}
.ls2b{letter-spacing:-0.288000pt;}
.ls11{letter-spacing:-0.274667pt;}
.ls26{letter-spacing:-0.240000pt;}
.ls4b{letter-spacing:-0.220800pt;}
.ls36{letter-spacing:-0.219733pt;}
.lsb{letter-spacing:-0.208000pt;}
.ls25{letter-spacing:-0.192000pt;}
.ls3b{letter-spacing:-0.173333pt;}
.ls10{letter-spacing:-0.164800pt;}
.ls40{letter-spacing:-0.147200pt;}
.ls27{letter-spacing:-0.144000pt;}
.lse{letter-spacing:-0.109867pt;}
.ls2c{letter-spacing:-0.096000pt;}
.lsc{letter-spacing:-0.054933pt;}
.ls2a{letter-spacing:-0.048000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.018123pt;}
.ls1{letter-spacing:0.018641pt;}
.ls2{letter-spacing:0.024350pt;}
.ls1c{letter-spacing:0.048000pt;}
.ls3a{letter-spacing:0.054933pt;}
.ls43{letter-spacing:0.073600pt;}
.ls17{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.109867pt;}
.ls41{letter-spacing:0.110400pt;}
.ls16{letter-spacing:0.144000pt;}
.ls44{letter-spacing:0.147200pt;}
.ls6{letter-spacing:0.164800pt;}
.ls1e{letter-spacing:0.176860pt;}
.ls3f{letter-spacing:0.184000pt;}
.ls3c{letter-spacing:0.219733pt;}
.ls4c{letter-spacing:0.220800pt;}
.ls18{letter-spacing:0.240000pt;}
.ls4e{letter-spacing:0.257600pt;}
.ls49{letter-spacing:0.331200pt;}
.ls2d{letter-spacing:0.336000pt;}
.ls3e{letter-spacing:0.368000pt;}
.ls5{letter-spacing:0.439467pt;}
.ls1b{letter-spacing:0.528000pt;}
.ls3{letter-spacing:0.549333pt;}
.ls48{letter-spacing:0.552000pt;}
.ls30{letter-spacing:0.576000pt;}
.ls38{letter-spacing:0.604267pt;}
.ls1d{letter-spacing:0.624000pt;}
.ls42{letter-spacing:0.662400pt;}
.ls3d{letter-spacing:0.714133pt;}
.ls45{letter-spacing:0.809600pt;}
.ls47{letter-spacing:0.846400pt;}
.ls31{letter-spacing:0.878933pt;}
.ls19{letter-spacing:1.056000pt;}
.ls46{letter-spacing:1.067200pt;}
.ls12{letter-spacing:1.098667pt;}
.ls1a{letter-spacing:1.104000pt;}
.ls37{letter-spacing:1.153600pt;}
.ls15{letter-spacing:3.840000pt;}
.ls32{letter-spacing:5.108800pt;}
.ls23{letter-spacing:152.315499pt;}
.ls21{letter-spacing:226.324565pt;}
.ls22{letter-spacing:246.348565pt;}
.ls20{letter-spacing:275.836459pt;}
.ls1f{letter-spacing:320.369792pt;}
.ws4{word-spacing:-29.013333pt;}
.ws5{word-spacing:-19.040000pt;}
.ws78{word-spacing:-18.592000pt;}
.ws6{word-spacing:-14.019200pt;}
.ws7{word-spacing:-13.568533pt;}
.ws92{word-spacing:-13.513600pt;}
.ws49{word-spacing:-13.141333pt;}
.ws93{word-spacing:-12.202667pt;}
.ws4b{word-spacing:-12.000000pt;}
.ws4c{word-spacing:-11.264000pt;}
.ws4d{word-spacing:-10.944000pt;}
.ws8{word-spacing:-8.755883pt;}
.ws75{word-spacing:-7.869333pt;}
.ws45{word-spacing:-7.082667pt;}
.ws4a{word-spacing:-6.996000pt;}
.ws4e{word-spacing:-6.566912pt;}
.wsc3{word-spacing:-4.090667pt;}
.wsc7{word-spacing:-3.917333pt;}
.ws82{word-spacing:-3.680533pt;}
.ws25{word-spacing:-3.460800pt;}
.ws26{word-spacing:-3.405867pt;}
.wsa2{word-spacing:-3.350933pt;}
.ws4f{word-spacing:-3.296000pt;}
.wsa1{word-spacing:-3.241067pt;}
.wse2{word-spacing:-3.238400pt;}
.wsef{word-spacing:-3.201600pt;}
.ws47{word-spacing:-3.200000pt;}
.ws88{word-spacing:-3.186133pt;}
.ws111{word-spacing:-3.091200pt;}
.wsdc{word-spacing:-3.076267pt;}
.ws107{word-spacing:-3.054400pt;}
.ws57{word-spacing:-3.024000pt;}
.ws28{word-spacing:-3.021333pt;}
.wsfd{word-spacing:-2.980800pt;}
.ws5d{word-spacing:-2.976000pt;}
.ws60{word-spacing:-2.928000pt;}
.wsd7{word-spacing:-2.911467pt;}
.ws99{word-spacing:-2.856533pt;}
.ws48{word-spacing:-2.833600pt;}
.ws80{word-spacing:-2.691733pt;}
.wsde{word-spacing:-2.688000pt;}
.wsab{word-spacing:-2.636800pt;}
.wsbb{word-spacing:-2.581867pt;}
.ws38{word-spacing:-2.526933pt;}
.ws73{word-spacing:-2.448000pt;}
.wsec{word-spacing:-2.392000pt;}
.ws3a{word-spacing:-2.362133pt;}
.ws27{word-spacing:-2.307200pt;}
.ws114{word-spacing:-2.281600pt;}
.ws94{word-spacing:-2.252267pt;}
.ws113{word-spacing:-2.244800pt;}
.ws3b{word-spacing:-2.197333pt;}
.ws41{word-spacing:-2.142400pt;}
.ws103{word-spacing:-2.134400pt;}
.wsf9{word-spacing:-2.097600pt;}
.wsac{word-spacing:-2.087467pt;}
.ws3d{word-spacing:-2.032533pt;}
.ws72{word-spacing:-2.016000pt;}
.ws74{word-spacing:-1.968000pt;}
.wse7{word-spacing:-1.876800pt;}
.ws1f{word-spacing:-1.872000pt;}
.ws108{word-spacing:-1.840000pt;}
.wsb1{word-spacing:-1.837333pt;}
.ws3e{word-spacing:-1.812800pt;}
.ws11b{word-spacing:-1.803200pt;}
.ws62{word-spacing:-1.776000pt;}
.wsb0{word-spacing:-1.733333pt;}
.ws31{word-spacing:-1.702933pt;}
.ws70{word-spacing:-1.680000pt;}
.ws35{word-spacing:-1.648000pt;}
.wsdb{word-spacing:-1.593067pt;}
.wsf7{word-spacing:-1.545600pt;}
.wsd9{word-spacing:-1.538133pt;}
.ws55{word-spacing:-1.488000pt;}
.ws43{word-spacing:-1.483200pt;}
.ws1b{word-spacing:-1.456000pt;}
.ws106{word-spacing:-1.435200pt;}
.wse6{word-spacing:-1.398400pt;}
.wsd1{word-spacing:-1.373333pt;}
.ws69{word-spacing:-1.344000pt;}
.wsb9{word-spacing:-1.318400pt;}
.ws109{word-spacing:-1.288000pt;}
.wsa9{word-spacing:-1.208533pt;}
.ws11d{word-spacing:-1.177600pt;}
.ws1a{word-spacing:-1.164800pt;}
.ws7e{word-spacing:-1.153600pt;}
.wsbc{word-spacing:-1.098667pt;}
.ws10e{word-spacing:-1.067200pt;}
.ws68{word-spacing:-1.056000pt;}
.wsf8{word-spacing:-1.030400pt;}
.ws6d{word-spacing:-1.008000pt;}
.ws98{word-spacing:-0.988800pt;}
.wsb8{word-spacing:-0.933867pt;}
.ws71{word-spacing:-0.864000pt;}
.ws21{word-spacing:-0.832000pt;}
.ws84{word-spacing:-0.824000pt;}
.ws61{word-spacing:-0.816000pt;}
.ws9f{word-spacing:-0.769067pt;}
.ws101{word-spacing:-0.662400pt;}
.ws96{word-spacing:-0.659200pt;}
.ws64{word-spacing:-0.624000pt;}
.ws9b{word-spacing:-0.604267pt;}
.ws100{word-spacing:-0.588800pt;}
.ws13{word-spacing:-0.582400pt;}
.ws5c{word-spacing:-0.576000pt;}
.wsc8{word-spacing:-0.554667pt;}
.ws119{word-spacing:-0.552000pt;}
.ws44{word-spacing:-0.549333pt;}
.ws95{word-spacing:-0.494400pt;}
.ws58{word-spacing:-0.432000pt;}
.wsba{word-spacing:-0.384533pt;}
.wse1{word-spacing:-0.368000pt;}
.wsfe{word-spacing:-0.331200pt;}
.ws39{word-spacing:-0.329600pt;}
.wsc0{word-spacing:-0.274667pt;}
.wsfa{word-spacing:-0.257600pt;}
.ws5a{word-spacing:-0.240000pt;}
.ws36{word-spacing:-0.219733pt;}
.ws11c{word-spacing:-0.184000pt;}
.ws2c{word-spacing:-0.164800pt;}
.ws11e{word-spacing:-0.147200pt;}
.ws0{word-spacing:-0.106667pt;}
.wsa{word-spacing:-0.074667pt;}
.wsad{word-spacing:-0.069333pt;}
.wscd{word-spacing:-0.054933pt;}
.ws77{word-spacing:-0.037333pt;}
.ws9{word-spacing:0.000000pt;}
.ws6e{word-spacing:0.048000pt;}
.ws1c{word-spacing:0.083200pt;}
.ws6f{word-spacing:0.096000pt;}
.ws50{word-spacing:0.109867pt;}
.ws105{word-spacing:0.110400pt;}
.ws5b{word-spacing:0.144000pt;}
.wse3{word-spacing:0.147200pt;}
.wsa5{word-spacing:0.164800pt;}
.wsc6{word-spacing:0.173333pt;}
.ws20{word-spacing:0.200000pt;}
.ws1e{word-spacing:0.208000pt;}
.ws89{word-spacing:0.219733pt;}
.wseb{word-spacing:0.257600pt;}
.ws81{word-spacing:0.274667pt;}
.ws76{word-spacing:0.320000pt;}
.ws11f{word-spacing:0.331200pt;}
.ws16{word-spacing:0.332800pt;}
.wsed{word-spacing:0.368000pt;}
.ws7d{word-spacing:0.384000pt;}
.ws2b{word-spacing:0.384533pt;}
.wsc4{word-spacing:0.416000pt;}
.ws7a{word-spacing:0.432000pt;}
.wsc2{word-spacing:0.439467pt;}
.wsc5{word-spacing:0.450667pt;}
.wse8{word-spacing:0.478400pt;}
.wsce{word-spacing:0.494400pt;}
.ws40{word-spacing:0.549333pt;}
.ws51{word-spacing:0.576000pt;}
.ws83{word-spacing:0.604267pt;}
.ws120{word-spacing:0.625600pt;}
.wsb4{word-spacing:0.659200pt;}
.ws11a{word-spacing:0.662400pt;}
.wsbd{word-spacing:0.714133pt;}
.ws90{word-spacing:0.728000pt;}
.ws116{word-spacing:0.736000pt;}
.ws3{word-spacing:0.768000pt;}
.ws8a{word-spacing:0.769067pt;}
.wsf4{word-spacing:0.846400pt;}
.ws3c{word-spacing:0.878933pt;}
.ws10f{word-spacing:0.883200pt;}
.ws97{word-spacing:0.933867pt;}
.ws66{word-spacing:0.960000pt;}
.ws115{word-spacing:0.993600pt;}
.wsd2{word-spacing:1.098667pt;}
.ws1{word-spacing:1.109333pt;}
.ws3f{word-spacing:1.153600pt;}
.wse0{word-spacing:1.200000pt;}
.wsf0{word-spacing:1.214400pt;}
.wsf3{word-spacing:1.251200pt;}
.wsc1{word-spacing:1.263467pt;}
.wsc9{word-spacing:1.318400pt;}
.ws12{word-spacing:1.331200pt;}
.wse4{word-spacing:1.361600pt;}
.wsa7{word-spacing:1.373333pt;}
.ws22{word-spacing:1.386667pt;}
.ws8f{word-spacing:1.428267pt;}
.wsf2{word-spacing:1.472000pt;}
.wsa0{word-spacing:1.483200pt;}
.wsfb{word-spacing:1.582400pt;}
.ws67{word-spacing:1.632000pt;}
.wsd3{word-spacing:1.648000pt;}
.ws33{word-spacing:1.702933pt;}
.ws65{word-spacing:1.728000pt;}
.ws118{word-spacing:1.729600pt;}
.wsa8{word-spacing:1.812800pt;}
.ws5f{word-spacing:1.824000pt;}
.ws34{word-spacing:1.867733pt;}
.ws8c{word-spacing:1.922667pt;}
.ws7b{word-spacing:2.016000pt;}
.wsbe{word-spacing:2.032533pt;}
.ws2d{word-spacing:2.197333pt;}
.wsdf{word-spacing:2.208000pt;}
.wsee{word-spacing:2.244800pt;}
.wsd0{word-spacing:2.252267pt;}
.ws91{word-spacing:2.357333pt;}
.wsb3{word-spacing:2.362133pt;}
.ws6b{word-spacing:2.400000pt;}
.wsd4{word-spacing:2.417067pt;}
.wse{word-spacing:2.496000pt;}
.ws9e{word-spacing:2.526933pt;}
.wsae{word-spacing:2.530667pt;}
.wscc{word-spacing:2.581867pt;}
.wsaf{word-spacing:2.600000pt;}
.wscb{word-spacing:2.636800pt;}
.ws1d{word-spacing:2.662400pt;}
.ws30{word-spacing:2.691733pt;}
.ws7c{word-spacing:2.736000pt;}
.ws42{word-spacing:2.856533pt;}
.wsf6{word-spacing:2.870400pt;}
.wsa6{word-spacing:2.911467pt;}
.ws17{word-spacing:2.912000pt;}
.ws10d{word-spacing:2.980800pt;}
.wsf5{word-spacing:3.017600pt;}
.ws37{word-spacing:3.021333pt;}
.wsca{word-spacing:3.076267pt;}
.ws110{word-spacing:3.164800pt;}
.ws54{word-spacing:3.216000pt;}
.wsfc{word-spacing:3.238400pt;}
.wsbf{word-spacing:3.241067pt;}
.ws10b{word-spacing:3.275200pt;}
.wsd5{word-spacing:3.296000pt;}
.wsa3{word-spacing:3.350933pt;}
.ws53{word-spacing:3.360000pt;}
.wsb{word-spacing:3.452800pt;}
.ws86{word-spacing:3.460800pt;}
.ws32{word-spacing:3.515733pt;}
.ws56{word-spacing:3.696000pt;}
.wsea{word-spacing:3.716800pt;}
.wsb2{word-spacing:3.790400pt;}
.wsa4{word-spacing:3.955200pt;}
.ws9d{word-spacing:4.065067pt;}
.ws8e{word-spacing:4.284800pt;}
.ws63{word-spacing:4.320000pt;}
.wsb6{word-spacing:4.339733pt;}
.wse9{word-spacing:4.526400pt;}
.wsdd{word-spacing:4.559467pt;}
.ws2e{word-spacing:4.614400pt;}
.ws117{word-spacing:4.636800pt;}
.ws5e{word-spacing:4.656000pt;}
.wsb5{word-spacing:4.669333pt;}
.ws87{word-spacing:4.724267pt;}
.ws6a{word-spacing:4.752000pt;}
.ws29{word-spacing:4.779200pt;}
.wsd6{word-spacing:4.889067pt;}
.ws112{word-spacing:4.931200pt;}
.wsda{word-spacing:4.944000pt;}
.ws10c{word-spacing:4.968000pt;}
.wsd{word-spacing:4.992000pt;}
.ws85{word-spacing:5.053867pt;}
.wsaa{word-spacing:5.108800pt;}
.ws8d{word-spacing:5.273600pt;}
.ws79{word-spacing:5.280000pt;}
.ws2f{word-spacing:5.328533pt;}
.ws104{word-spacing:5.336000pt;}
.ws10a{word-spacing:5.409600pt;}
.ws9a{word-spacing:5.438400pt;}
.ws59{word-spacing:5.472000pt;}
.wse5{word-spacing:5.483200pt;}
.wsb7{word-spacing:5.658133pt;}
.wsd8{word-spacing:5.713067pt;}
.ws8b{word-spacing:5.768000pt;}
.ws11{word-spacing:5.824000pt;}
.ws10{word-spacing:5.907200pt;}
.ws9c{word-spacing:5.932800pt;}
.ws6c{word-spacing:5.952000pt;}
.ws52{word-spacing:6.000000pt;}
.ws24{word-spacing:6.042667pt;}
.ws7f{word-spacing:6.317333pt;}
.wsff{word-spacing:6.366400pt;}
.ws23{word-spacing:6.372267pt;}
.ws102{word-spacing:6.440000pt;}
.wsf1{word-spacing:6.476800pt;}
.wscf{word-spacing:6.592000pt;}
.wsc{word-spacing:6.614400pt;}
.ws2a{word-spacing:6.866667pt;}
.ws14{word-spacing:9.609600pt;}
.ws18{word-spacing:9.859200pt;}
.ws15{word-spacing:10.483200pt;}
.wsf{word-spacing:11.232000pt;}
.ws46{word-spacing:14.165333pt;}
.ws19{word-spacing:17.222400pt;}
.ws2{word-spacing:1263.893333pt;}
._8{margin-left:-1087.657600pt;}
._1f{margin-left:-482.314667pt;}
._21{margin-left:-12.634667pt;}
._b{margin-left:-8.216000pt;}
._a{margin-left:-6.513067pt;}
._5{margin-left:-5.486933pt;}
._4{margin-left:-3.812000pt;}
._2{margin-left:-2.848533pt;}
._1{margin-left:-1.146133pt;}
._3{width:1.352000pt;}
._6{width:3.021333pt;}
._9{width:4.372800pt;}
._7{width:5.894347pt;}
._20{width:7.276853pt;}
._22{width:8.272907pt;}
._c{width:142.237333pt;}
._d{width:145.357333pt;}
._19{width:149.055723pt;}
._1b{width:176.333056pt;}
._1c{width:177.726123pt;}
._18{width:205.248000pt;}
._e{width:208.626133pt;}
._1e{width:230.592000pt;}
._14{width:239.232000pt;}
._17{width:270.336000pt;}
._16{width:293.312000pt;}
._1d{width:295.051200pt;}
._13{width:316.480000pt;}
._10{width:319.360000pt;}
._1a{width:324.601067pt;}
._15{width:369.216000pt;}
._12{width:404.800000pt;}
._11{width:449.344000pt;}
._f{width:521.530133pt;}
._0{width:728.649838pt;}
.fs11{font-size:18.656000pt;}
.fsc{font-size:21.454400pt;}
.fsb{font-size:24.874667pt;}
.fsf{font-size:27.984000pt;}
.fs10{font-size:32.000000pt;}
.fs12{font-size:32.026133pt;}
.fs7{font-size:34.666667pt;}
.fsd{font-size:36.800000pt;}
.fs3{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs5{font-size:41.600000pt;}
.fsa{font-size:42.666667pt;}
.fse{font-size:48.000000pt;}
.fs9{font-size:54.933333pt;}
.fs2{font-size:56.000000pt;}
.fs4{font-size:61.333333pt;}
.fs1{font-size:85.333333pt;}
.fs0{font-size:106.666667pt;}
.fs8{font-size:151.594133pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:48.242667pt;}
.y4{bottom:48.872400pt;}
.y6{bottom:62.252000pt;}
.y3{bottom:62.583067pt;}
.y16f{bottom:90.397867pt;}
.y118{bottom:90.653333pt;}
.yd9{bottom:90.666667pt;}
.y61{bottom:90.672267pt;}
.y34{bottom:90.675200pt;}
.y1a6{bottom:90.744000pt;}
.y2{bottom:90.816800pt;}
.y1db{bottom:91.148800pt;}
.y226{bottom:92.260933pt;}
.y270{bottom:92.448933pt;}
.yd8{bottom:100.266667pt;}
.y16e{bottom:102.401200pt;}
.y117{bottom:102.656667pt;}
.y1da{bottom:103.145600pt;}
.y225{bottom:104.193333pt;}
.y26f{bottom:104.445733pt;}
.y33{bottom:106.605867pt;}
.y60{bottom:106.781467pt;}
.y1a5{bottom:106.825733pt;}
.yd7{bottom:113.418667pt;}
.y16d{bottom:114.404533pt;}
.y116{bottom:114.660000pt;}
.y224{bottom:116.125733pt;}
.y26e{bottom:116.442533pt;}
.y32{bottom:122.660133pt;}
.y5f{bottom:122.890667pt;}
.y1a4{bottom:122.907467pt;}
.y1d9{bottom:123.145600pt;}
.y16c{bottom:126.407867pt;}
.y115{bottom:126.663333pt;}
.y223{bottom:128.058133pt;}
.y26d{bottom:128.439333pt;}
.yd6{bottom:128.685867pt;}
.y114{bottom:138.666667pt;}
.y31{bottom:138.714400pt;}
.y5e{bottom:138.862533pt;}
.y1a3{bottom:138.989200pt;}
.y222{bottom:139.990533pt;}
.y26c{bottom:140.436133pt;}
.yd5{bottom:140.842133pt;}
.y221{bottom:151.922933pt;}
.y26b{bottom:152.432933pt;}
.yd4{bottom:153.002133pt;}
.y30{bottom:154.768667pt;}
.y5d{bottom:154.834400pt;}
.y1a2{bottom:155.070933pt;}
.y220{bottom:163.855333pt;}
.y26a{bottom:164.439333pt;}
.yd3{bottom:165.157067pt;}
.y1d8{bottom:166.616267pt;}
.y5c{bottom:170.806267pt;}
.y2f{bottom:170.824400pt;}
.y1a1{bottom:171.152667pt;}
.y21f{bottom:175.787733pt;}
.y269{bottom:176.436133pt;}
.yd2{bottom:177.317067pt;}
.y5b{bottom:186.778133pt;}
.y2e{bottom:186.878667pt;}
.y1a0{bottom:187.234400pt;}
.y21e{bottom:187.720133pt;}
.y1d7{bottom:187.952267pt;}
.y268{bottom:188.432933pt;}
.yd1{bottom:188.765067pt;}
.y21d{bottom:199.652533pt;}
.y267{bottom:200.461733pt;}
.y1d6{bottom:201.284267pt;}
.y5a{bottom:202.744800pt;}
.y2d{bottom:202.946667pt;}
.y19f{bottom:203.316133pt;}
.yd0{bottom:205.548933pt;}
.y21c{bottom:211.584933pt;}
.y266{bottom:212.458533pt;}
.y1d5{bottom:214.616267pt;}
.y59{bottom:218.716667pt;}
.y2c{bottom:219.000933pt;}
.y19e{bottom:219.397867pt;}
.y21b{bottom:223.517333pt;}
.y265{bottom:224.455333pt;}
.ycf{bottom:225.842533pt;}
.y1d4{bottom:227.948267pt;}
.y58{bottom:234.716000pt;}
.y2b{bottom:235.055200pt;}
.y21a{bottom:235.449733pt;}
.y19d{bottom:235.479600pt;}
.y264{bottom:236.452133pt;}
.y1d3{bottom:241.280267pt;}
.y219{bottom:247.382133pt;}
.y263{bottom:248.448933pt;}
.y57{bottom:250.687867pt;}
.y2a{bottom:251.116267pt;}
.y19c{bottom:251.561333pt;}
.y9b{bottom:252.600667pt;}
.yce{bottom:252.611733pt;}
.y1d2{bottom:254.612267pt;}
.y218{bottom:259.314533pt;}
.y262{bottom:260.445733pt;}
.ycd{bottom:265.943733pt;}
.y9a{bottom:266.145333pt;}
.y56{bottom:266.659733pt;}
.y29{bottom:267.170533pt;}
.y19b{bottom:267.643067pt;}
.y217{bottom:271.246933pt;}
.y261{bottom:272.442533pt;}
.y1d1{bottom:275.945600pt;}
.ycc{bottom:279.275733pt;}
.y99{bottom:279.693333pt;}
.y55{bottom:282.631600pt;}
.y216{bottom:283.179333pt;}
.y28{bottom:283.224800pt;}
.y19a{bottom:283.724800pt;}
.y260{bottom:284.439333pt;}
.ycb{bottom:292.607733pt;}
.y98{bottom:293.239600pt;}
.y215{bottom:295.111733pt;}
.y25f{bottom:296.436133pt;}
.y54{bottom:298.603467pt;}
.y26{bottom:299.278400pt;}
.y27{bottom:299.279067pt;}
.y199{bottom:299.806533pt;}
.yca{bottom:305.939733pt;}
.y97{bottom:306.775733pt;}
.y214{bottom:307.044133pt;}
.y25e{bottom:308.432933pt;}
.y53{bottom:314.575333pt;}
.y198{bottom:315.888267pt;}
.y213{bottom:318.976533pt;}
.yc9{bottom:319.271733pt;}
.y1d0{bottom:319.417600pt;}
.y96{bottom:320.323733pt;}
.y25d{bottom:320.448933pt;}
.y52{bottom:330.547200pt;}
.y212{bottom:330.908933pt;}
.y197{bottom:331.970000pt;}
.y25c{bottom:332.445733pt;}
.yc8{bottom:332.603733pt;}
.y95{bottom:333.871733pt;}
.y1cf{bottom:335.416933pt;}
.y211{bottom:342.841333pt;}
.y25b{bottom:344.442533pt;}
.yc7{bottom:345.935733pt;}
.y51{bottom:346.519067pt;}
.y94{bottom:347.419733pt;}
.y196{bottom:348.051733pt;}
.y1ce{bottom:351.416267pt;}
.y210{bottom:354.773733pt;}
.y25a{bottom:356.439333pt;}
.y25{bottom:356.662267pt;}
.yc6{bottom:359.273067pt;}
.y93{bottom:360.967733pt;}
.y50{bottom:362.490933pt;}
.y195{bottom:364.133467pt;}
.y20f{bottom:366.706133pt;}
.y24{bottom:367.122933pt;}
.y1cd{bottom:367.415600pt;}
.y259{bottom:368.436133pt;}
.yc5{bottom:372.605067pt;}
.y92{bottom:374.515733pt;}
.y23{bottom:377.583600pt;}
.y4f{bottom:378.462800pt;}
.y20e{bottom:378.638533pt;}
.y194{bottom:380.228933pt;}
.y258{bottom:380.432933pt;}
.y1cc{bottom:383.414933pt;}
.yc4{bottom:385.937067pt;}
.y91{bottom:388.063733pt;}
.y20d{bottom:390.570933pt;}
.y257{bottom:392.445733pt;}
.y4e{bottom:394.434667pt;}
.y193{bottom:396.310667pt;}
.y22{bottom:397.372933pt;}
.yc3{bottom:399.269067pt;}
.y1cb{bottom:399.414267pt;}
.y90{bottom:401.611733pt;}
.y20c{bottom:402.503333pt;}
.y256{bottom:404.442533pt;}
.y4d{bottom:410.411600pt;}
.y192{bottom:412.392400pt;}
.yc2{bottom:412.607733pt;}
.y20b{bottom:414.435733pt;}
.y1ca{bottom:415.413600pt;}
.y255{bottom:416.439333pt;}
.y21{bottom:418.762933pt;}
.y8f{bottom:421.824800pt;}
.yc1{bottom:425.939733pt;}
.y20a{bottom:426.368133pt;}
.y4c{bottom:426.383467pt;}
.y254{bottom:428.436133pt;}
.y191{bottom:428.524133pt;}
.y1c9{bottom:431.412933pt;}
.y209{bottom:438.300533pt;}
.yc0{bottom:439.271733pt;}
.y20{bottom:440.152933pt;}
.y253{bottom:440.432933pt;}
.y4b{bottom:442.355333pt;}
.y190{bottom:444.605867pt;}
.y1c8{bottom:447.412267pt;}
.y208{bottom:450.232933pt;}
.y1f{bottom:452.212933pt;}
.y252{bottom:452.453067pt;}
.ybf{bottom:452.603733pt;}
.y8e{bottom:455.369333pt;}
.y4a{bottom:458.322000pt;}
.y18f{bottom:460.687600pt;}
.y207{bottom:462.179600pt;}
.y1c7{bottom:463.413600pt;}
.y251{bottom:464.449867pt;}
.ybe{bottom:465.935733pt;}
.y1{bottom:465.957867pt;}
.y8d{bottom:468.917333pt;}
.y206{bottom:474.112000pt;}
.y49{bottom:474.293867pt;}
.y1e{bottom:474.938400pt;}
.y250{bottom:476.446667pt;}
.y18e{bottom:476.769333pt;}
.ybd{bottom:479.270400pt;}
.y1c6{bottom:479.412933pt;}
.y8c{bottom:482.455200pt;}
.y205{bottom:486.044400pt;}
.y24f{bottom:488.443467pt;}
.y1d{bottom:490.195200pt;}
.y48{bottom:490.293200pt;}
.ybc{bottom:492.602400pt;}
.y18d{bottom:492.851067pt;}
.y1c5{bottom:495.412267pt;}
.y8b{bottom:496.003200pt;}
.y204{bottom:497.976800pt;}
.y24e{bottom:500.440267pt;}
.y1c{bottom:505.452933pt;}
.y47{bottom:506.265067pt;}
.y18c{bottom:508.932800pt;}
.y8a{bottom:509.551200pt;}
.y203{bottom:509.909200pt;}
.y1c4{bottom:511.424267pt;}
.y24d{bottom:512.437067pt;}
.ybb{bottom:512.602400pt;}
.y1b{bottom:520.709733pt;}
.y202{bottom:521.906000pt;}
.y46{bottom:522.236933pt;}
.y89{bottom:523.099200pt;}
.y24c{bottom:524.433867pt;}
.y18b{bottom:525.014533pt;}
.yf4{bottom:527.412267pt;}
.y1c3{bottom:527.423600pt;}
.y113{bottom:527.424267pt;}
.y201{bottom:533.902800pt;}
.y1a{bottom:535.968667pt;}
.y24b{bottom:536.366267pt;}
.y88{bottom:536.647200pt;}
.y45{bottom:538.208800pt;}
.y18a{bottom:541.096267pt;}
.y1c2{bottom:543.422933pt;}
.y112{bottom:543.423600pt;}
.yf3{bottom:543.571733pt;}
.yba{bottom:544.603733pt;}
.y200{bottom:545.899600pt;}
.y24a{bottom:548.304267pt;}
.y87{bottom:550.195200pt;}
.y19{bottom:551.225467pt;}
.y44{bottom:554.180667pt;}
.y189{bottom:557.178000pt;}
.y1ff{bottom:557.915600pt;}
.yb9{bottom:557.935733pt;}
.y1c1{bottom:559.422267pt;}
.y111{bottom:559.422933pt;}
.yf2{bottom:559.735867pt;}
.y249{bottom:560.236667pt;}
.y86{bottom:563.709467pt;}
.y18{bottom:566.482267pt;}
.y1fe{bottom:569.912400pt;}
.y43{bottom:570.152533pt;}
.yb8{bottom:571.274400pt;}
.y248{bottom:572.169067pt;}
.y188{bottom:573.259733pt;}
.y1c0{bottom:575.421600pt;}
.y110{bottom:575.422267pt;}
.yf1{bottom:575.900000pt;}
.y85{bottom:577.257467pt;}
.y17{bottom:581.739067pt;}
.y1fd{bottom:581.909200pt;}
.y247{bottom:584.101467pt;}
.yb7{bottom:584.606400pt;}
.y42{bottom:586.124400pt;}
.y187{bottom:589.341467pt;}
.y84{bottom:590.805467pt;}
.y1bf{bottom:591.420933pt;}
.y10f{bottom:591.421600pt;}
.y1fc{bottom:593.906000pt;}
.y246{bottom:596.033867pt;}
.y16{bottom:596.997333pt;}
.yb6{bottom:597.938400pt;}
.yf0{bottom:600.062667pt;}
.y41{bottom:602.096267pt;}
.y83{bottom:604.353467pt;}
.y186{bottom:605.436933pt;}
.y1fb{bottom:605.902800pt;}
.y1be{bottom:607.420267pt;}
.y10e{bottom:607.420933pt;}
.y245{bottom:607.966267pt;}
.y16b{bottom:609.944533pt;}
.y153{bottom:609.948267pt;}
.y144{bottom:610.478933pt;}
.y12f{bottom:610.530267pt;}
.yb5{bottom:611.270400pt;}
.y15{bottom:612.254133pt;}
.y1fa{bottom:617.899600pt;}
.y82{bottom:617.901467pt;}
.y40{bottom:618.068133pt;}
.y244{bottom:619.903333pt;}
.y185{bottom:621.518667pt;}
.y1bd{bottom:623.419600pt;}
.y10d{bottom:623.420267pt;}
.yb4{bottom:624.602400pt;}
.y152{bottom:625.947600pt;}
.y16a{bottom:625.957600pt;}
.y143{bottom:626.378267pt;}
.y12e{bottom:626.392267pt;}
.y14{bottom:627.510933pt;}
.y1f9{bottom:629.944400pt;}
.y81{bottom:631.449467pt;}
.y243{bottom:631.835733pt;}
.y3f{bottom:634.040000pt;}
.y184{bottom:637.600400pt;}
.yb3{bottom:637.945067pt;}
.y1bc{bottom:639.418933pt;}
.y10c{bottom:639.419600pt;}
.y169{bottom:641.847067pt;}
.y1f8{bottom:641.941200pt;}
.y151{bottom:641.946933pt;}
.y142{bottom:642.240267pt;}
.y12d{bottom:642.254267pt;}
.y13{bottom:642.771333pt;}
.y242{bottom:643.768133pt;}
.y80{bottom:644.997467pt;}
.yef{bottom:645.017067pt;}
.y3e{bottom:650.011867pt;}
.yb2{bottom:651.277067pt;}
.y183{bottom:653.736667pt;}
.y1f7{bottom:653.938000pt;}
.y1bb{bottom:655.418267pt;}
.y10b{bottom:655.418933pt;}
.y241{bottom:655.700533pt;}
.y168{bottom:657.709467pt;}
.y150{bottom:657.946267pt;}
.y12{bottom:658.028133pt;}
.y141{bottom:658.102267pt;}
.y12c{bottom:658.116267pt;}
.yee{bottom:658.517067pt;}
.y7f{bottom:658.545467pt;}
.yb1{bottom:664.609067pt;}
.y1f6{bottom:665.934800pt;}
.y3d{bottom:665.988800pt;}
.y240{bottom:667.632933pt;}
.y182{bottom:669.818400pt;}
.y1ba{bottom:671.417600pt;}
.y10a{bottom:671.418267pt;}
.yed{bottom:672.017067pt;}
.y7e{bottom:672.093467pt;}
.y11{bottom:673.284933pt;}
.y167{bottom:673.598933pt;}
.y14f{bottom:673.945600pt;}
.y140{bottom:673.964267pt;}
.y12b{bottom:673.978267pt;}
.y1f5{bottom:677.931600pt;}
.yb0{bottom:677.941067pt;}
.y23f{bottom:679.579333pt;}
.y3c{bottom:681.960667pt;}
.yec{bottom:685.513067pt;}
.y7d{bottom:685.641467pt;}
.y181{bottom:685.900133pt;}
.y1b9{bottom:687.416933pt;}
.y109{bottom:687.417600pt;}
.y10{bottom:688.541733pt;}
.y166{bottom:689.488400pt;}
.y13f{bottom:689.826267pt;}
.y12a{bottom:689.840267pt;}
.y1f4{bottom:689.928400pt;}
.yaf{bottom:691.273067pt;}
.y23e{bottom:691.511733pt;}
.y3b{bottom:697.932533pt;}
.y14e{bottom:697.945600pt;}
.y7c{bottom:699.189467pt;}
.y1f3{bottom:701.925200pt;}
.y180{bottom:701.981867pt;}
.y1b8{bottom:703.416267pt;}
.y108{bottom:703.416933pt;}
.y23d{bottom:703.444133pt;}
.yf{bottom:703.798533pt;}
.yae{bottom:704.605067pt;}
.y165{bottom:705.377867pt;}
.yeb{bottom:705.675600pt;}
.y13e{bottom:705.688267pt;}
.y129{bottom:705.702267pt;}
.y7b{bottom:712.737467pt;}
.y3a{bottom:713.907600pt;}
.y1f2{bottom:713.922000pt;}
.y23c{bottom:715.376533pt;}
.yad{bottom:717.937067pt;}
.y17f{bottom:718.063600pt;}
.ye{bottom:719.055333pt;}
.y1b7{bottom:719.415600pt;}
.y107{bottom:719.416267pt;}
.y164{bottom:721.267333pt;}
.y13d{bottom:721.550267pt;}
.y128{bottom:721.564267pt;}
.y1f1{bottom:725.918800pt;}
.y7a{bottom:726.285467pt;}
.y23b{bottom:727.308933pt;}
.y39{bottom:729.879467pt;}
.yac{bottom:731.269067pt;}
.y17e{bottom:734.145333pt;}
.yd{bottom:734.312133pt;}
.y1b6{bottom:735.414933pt;}
.y106{bottom:735.415600pt;}
.y163{bottom:737.077733pt;}
.y13c{bottom:737.412267pt;}
.y127{bottom:737.426267pt;}
.y14d{bottom:737.482267pt;}
.y1f0{bottom:737.915600pt;}
.yea{bottom:739.147200pt;}
.y23a{bottom:739.241333pt;}
.y79{bottom:739.833467pt;}
.yab{bottom:744.602400pt;}
.y38{bottom:745.865067pt;}
.yc{bottom:749.570000pt;}
.y1ef{bottom:749.912400pt;}
.y17d{bottom:750.227067pt;}
.y239{bottom:751.173733pt;}
.y1b5{bottom:751.414267pt;}
.y105{bottom:751.414933pt;}
.ye9{bottom:752.647200pt;}
.y162{bottom:752.967200pt;}
.y126{bottom:753.288267pt;}
.y14c{bottom:753.344267pt;}
.y78{bottom:753.381467pt;}
.y37{bottom:761.836933pt;}
.y1ee{bottom:761.909200pt;}
.y238{bottom:763.106133pt;}
.yaa{bottom:764.605067pt;}
.yb{bottom:764.826800pt;}
.ye8{bottom:766.147200pt;}
.y17c{bottom:766.308800pt;}
.y77{bottom:766.929467pt;}
.y1b4{bottom:767.413600pt;}
.y104{bottom:767.414267pt;}
.y161{bottom:768.856667pt;}
.y125{bottom:769.150267pt;}
.y14b{bottom:769.206267pt;}
.y1ed{bottom:773.906000pt;}
.y237{bottom:775.038533pt;}
.y36{bottom:777.808800pt;}
.ya9{bottom:779.269067pt;}
.ye7{bottom:779.647200pt;}
.ya{bottom:780.083600pt;}
.y76{bottom:780.477467pt;}
.y17b{bottom:782.390533pt;}
.y1b3{bottom:783.412933pt;}
.y103{bottom:783.413600pt;}
.y160{bottom:784.746133pt;}
.y124{bottom:785.012267pt;}
.y14a{bottom:785.068267pt;}
.y1ec{bottom:785.902800pt;}
.y236{bottom:786.970933pt;}
.ye6{bottom:793.147200pt;}
.y35{bottom:793.780667pt;}
.y75{bottom:794.025467pt;}
.y9{bottom:795.340400pt;}
.y1eb{bottom:797.899600pt;}
.y17a{bottom:798.472267pt;}
.y235{bottom:798.903333pt;}
.y1b2{bottom:799.412267pt;}
.y102{bottom:799.412933pt;}
.y15f{bottom:800.635600pt;}
.y123{bottom:800.897600pt;}
.y149{bottom:800.930267pt;}
.y13b{bottom:800.984133pt;}
.ye5{bottom:806.647200pt;}
.y74{bottom:807.573467pt;}
.y1ea{bottom:809.934800pt;}
.ya8{bottom:809.950400pt;}
.y234{bottom:810.835733pt;}
.y179{bottom:814.554000pt;}
.y101{bottom:815.412267pt;}
.y1b1{bottom:815.415600pt;}
.y15e{bottom:816.525067pt;}
.y122{bottom:816.759600pt;}
.y148{bottom:816.792267pt;}
.y13a{bottom:816.846133pt;}
.ye4{bottom:820.147200pt;}
.y73{bottom:821.121467pt;}
.y1e9{bottom:821.931600pt;}
.y233{bottom:822.768133pt;}
.ya7{bottom:823.282400pt;}
.y178{bottom:830.635733pt;}
.y1b0{bottom:831.414933pt;}
.y100{bottom:831.416267pt;}
.y15d{bottom:832.414533pt;}
.y121{bottom:832.621600pt;}
.y147{bottom:832.654267pt;}
.y139{bottom:832.708133pt;}
.ye3{bottom:833.610533pt;}
.y1e8{bottom:833.928400pt;}
.y232{bottom:834.700533pt;}
.ya6{bottom:836.614400pt;}
.y72{bottom:841.334400pt;}
.y69{bottom:843.291600pt;}
.y6b{bottom:843.292667pt;}
.y1e7{bottom:845.925200pt;}
.y6a{bottom:846.356400pt;}
.y231{bottom:846.632933pt;}
.y177{bottom:846.726533pt;}
.ye2{bottom:847.110533pt;}
.y1af{bottom:847.414267pt;}
.yff{bottom:847.415600pt;}
.y15c{bottom:848.304000pt;}
.y120{bottom:848.483600pt;}
.y146{bottom:848.516267pt;}
.y138{bottom:848.570133pt;}
.ya5{bottom:849.946400pt;}
.y68{bottom:854.626000pt;}
.y67{bottom:857.689733pt;}
.y1e6{bottom:857.922000pt;}
.y230{bottom:858.575600pt;}
.ye1{bottom:860.610533pt;}
.y176{bottom:862.808267pt;}
.ya4{bottom:863.278400pt;}
.y1ae{bottom:863.413600pt;}
.yfe{bottom:863.414933pt;}
.y15b{bottom:864.193467pt;}
.y71{bottom:864.220400pt;}
.y11f{bottom:864.345600pt;}
.y145{bottom:864.378267pt;}
.y137{bottom:864.432133pt;}
.y66{bottom:865.959467pt;}
.y1e5{bottom:869.918800pt;}
.y22f{bottom:870.508000pt;}
.ye0{bottom:874.110533pt;}
.ya3{bottom:876.610400pt;}
.y65{bottom:878.759467pt;}
.y175{bottom:878.921867pt;}
.y1ad{bottom:879.412933pt;}
.yfd{bottom:879.414267pt;}
.y15a{bottom:880.082933pt;}
.y11e{bottom:880.240267pt;}
.y136{bottom:880.294133pt;}
.y1e4{bottom:881.915600pt;}
.y22e{bottom:882.440400pt;}
.ydf{bottom:887.610533pt;}
.ya2{bottom:889.942400pt;}
.y1e3{bottom:893.912400pt;}
.y22d{bottom:894.372800pt;}
.y174{bottom:895.003600pt;}
.y1ac{bottom:895.412267pt;}
.yfc{bottom:895.413600pt;}
.y159{bottom:895.972400pt;}
.y11d{bottom:896.102267pt;}
.y135{bottom:896.156133pt;}
.yde{bottom:901.110533pt;}
.ya1{bottom:903.274400pt;}
.y1e2{bottom:905.909200pt;}
.y22c{bottom:906.305200pt;}
.y64{bottom:907.580800pt;}
.y70{bottom:910.536000pt;}
.y173{bottom:911.085333pt;}
.yfb{bottom:911.412933pt;}
.y1ab{bottom:911.489200pt;}
.y158{bottom:911.861867pt;}
.y11c{bottom:911.964267pt;}
.y134{bottom:912.018133pt;}
.ydd{bottom:914.610533pt;}
.ya0{bottom:916.606400pt;}
.y1e1{bottom:917.906000pt;}
.y22b{bottom:918.237600pt;}
.y6f{bottom:926.755067pt;}
.y172{bottom:927.167067pt;}
.yf8{bottom:927.409333pt;}
.yfa{bottom:927.412267pt;}
.y1aa{bottom:927.488533pt;}
.y157{bottom:927.751333pt;}
.y11b{bottom:927.826267pt;}
.y133{bottom:927.880133pt;}
.ydc{bottom:928.110533pt;}
.y1e0{bottom:929.902800pt;}
.y9f{bottom:929.938400pt;}
.y22a{bottom:930.170000pt;}
.y63{bottom:930.236800pt;}
.yf9{bottom:931.985467pt;}
.ydb{bottom:941.610533pt;}
.y1df{bottom:941.899600pt;}
.y229{bottom:942.102400pt;}
.y6e{bottom:942.974133pt;}
.y171{bottom:943.248800pt;}
.y9e{bottom:943.270400pt;}
.yf7{bottom:943.408667pt;}
.y1a9{bottom:943.487867pt;}
.y156{bottom:943.640800pt;}
.y11a{bottom:943.688267pt;}
.y132{bottom:943.742133pt;}
.y62{bottom:952.892800pt;}
.y1de{bottom:953.906000pt;}
.y228{bottom:954.034800pt;}
.y9d{bottom:956.602400pt;}
.y6d{bottom:959.193200pt;}
.y170{bottom:959.330533pt;}
.yf6{bottom:959.408000pt;}
.y1a8{bottom:959.487200pt;}
.y155{bottom:959.530267pt;}
.y119{bottom:959.550267pt;}
.y131{bottom:959.604133pt;}
.yda{bottom:961.770400pt;}
.y1dd{bottom:965.902800pt;}
.y227{bottom:965.967200pt;}
.yf5{bottom:975.407333pt;}
.y6c{bottom:975.412267pt;}
.y154{bottom:975.419733pt;}
.y130{bottom:975.466133pt;}
.y1a7{bottom:975.486533pt;}
.y9c{bottom:976.602400pt;}
.y1dc{bottom:977.899600pt;}
.y5{bottom:999.013733pt;}
.y8{bottom:1009.585333pt;}
.hf{height:16.405073pt;}
.h20{height:20.356417pt;}
.h23{height:22.252533pt;}
.h1c{height:26.187500pt;}
.h1b{height:26.507812pt;}
.h10{height:28.139063pt;}
.h8{height:28.369792pt;}
.h26{height:30.115625pt;}
.h4{height:30.552083pt;}
.h6{height:31.809375pt;}
.h7{height:32.734375pt;}
.h13{height:33.328125pt;}
.h14{height:33.351562pt;}
.h16{height:33.385696pt;}
.h15{height:33.480096pt;}
.h21{height:33.481696pt;}
.h1e{height:34.564417pt;}
.h1d{height:34.569750pt;}
.h1f{height:34.579350pt;}
.he{height:34.916667pt;}
.h1a{height:35.427961pt;}
.h18{height:35.434894pt;}
.h19{height:35.441294pt;}
.h17{height:35.475428pt;}
.hb{height:38.142187pt;}
.ha{height:38.169010pt;}
.h22{height:38.181810pt;}
.hc{height:38.189810pt;}
.h25{height:38.255410pt;}
.h24{height:38.463410pt;}
.h11{height:39.007756pt;}
.h12{height:39.292969pt;}
.h5{height:43.035156pt;}
.hd{height:59.875000pt;}
.h3{height:61.166667pt;}
.h2{height:86.526850pt;}
.h9{height:105.331275pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:37.500267pt;}
.x1{left:42.837067pt;}
.x3{left:66.666667pt;}
.x17{left:68.000000pt;}
.xa{left:70.178800pt;}
.x23{left:74.669200pt;}
.x14{left:77.333347pt;}
.xd{left:79.080667pt;}
.x1f{left:80.005716pt;}
.xe{left:82.592933pt;}
.x22{left:88.000000pt;}
.x7{left:101.375467pt;}
.x18{left:107.333333pt;}
.xf{left:150.553333pt;}
.x10{left:154.065600pt;}
.x16{left:256.333333pt;}
.x5{left:303.653333pt;}
.x6{left:313.385333pt;}
.x8{left:408.856425pt;}
.x11{left:411.897600pt;}
.x20{left:416.850400pt;}
.x15{left:419.517080pt;}
.x9{left:422.195475pt;}
.xb{left:425.544667pt;}
.xc{left:429.056800pt;}
.x21{left:430.181200pt;}
.x4{left:454.224000pt;}
.x13{left:606.393867pt;}
.x19{left:614.700133pt;}
.x1a{left:619.309733pt;}
.x1b{left:640.019867pt;}
.x1c{left:644.629467pt;}
.x1d{left:683.171200pt;}
.x1e{left:687.780933pt;}
.x12{left:709.374933pt;}
}




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