
    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_70df41f93ab7dfca88066c60.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.056641;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_65fb7f761bfe6303a8c33ed1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.850586;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_edfe90f348c118d126fcf89e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_6cf36755159bbef18dfb86df.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_7d80d6ce28d9b6e699216512.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_c5beb456d23984055fedb881.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.793457;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_ac9d6c5bf6f0d2ef2fb801e0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.943848;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_db536a78beb5da08e8adc6ca.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.951172;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_c59ae65044c18ef4fc4775dd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.947754;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_127b1d8ae197e195c6b6247c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.962402;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_926173d8d7f4a1dd333bb8d5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.205566;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_1fa1f3b763f34cb71cd7966e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.973145;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_185b806df91599439807b8cb.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.128906;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_51126a92b3b24fc14b4a76a5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.760254;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_338bc9046dc61f5835018d33.woff2')format("woff");}.fff{font-family:fff;line-height:0.976074;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_23ec1cd63aa8dcba2197e9e2.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.761230;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_23b70ec9d7aa9996a5ebf07e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.927734;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_eeeb7339605893b43cbcd950.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.954102;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_07ec0f2faea2c52d63d02ea2.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.758789;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_f984239085abba39a193da00.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.922363;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_974b9339bc3f56e47e3499ad.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.401855;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_fccb1323059d5a9b903ce1a4.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.128906;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_5784b78260a5b98ee8a455af.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.770996;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_451200dc4e633ad6eb9c2624.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.901855;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_127b5229ac597a40d014537c.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.205566;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_f594af859c9a2ce58b914bf0.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.690918;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.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);}
.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);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.120000px;}
.v1{vertical-align:18.180000px;}
.ls57{letter-spacing:-1.782000px;}
.ls3b{letter-spacing:-1.746000px;}
.ls39{letter-spacing:-1.620000px;}
.ls38{letter-spacing:-1.476000px;}
.ls52{letter-spacing:-1.404000px;}
.ls1a{letter-spacing:-1.386000px;}
.ls3a{letter-spacing:-1.296000px;}
.ls54{letter-spacing:-1.260000px;}
.ls53{letter-spacing:-0.954000px;}
.ls37{letter-spacing:-0.900000px;}
.lsc{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.342000px;}
.lsf{letter-spacing:-0.334200px;}
.ls31{letter-spacing:-0.324000px;}
.ls26{letter-spacing:-0.306000px;}
.ls20{letter-spacing:-0.288000px;}
.ls56{letter-spacing:-0.270000px;}
.ls14{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.180000px;}
.ls3d{letter-spacing:-0.162000px;}
.lse{letter-spacing:-0.137400px;}
.ls19{letter-spacing:-0.108000px;}
.ls13{letter-spacing:-0.097800px;}
.ls25{letter-spacing:-0.090000px;}
.ls2e{letter-spacing:-0.054000px;}
.ls4b{letter-spacing:-0.036000px;}
.lsb{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.015120px;}
.ls32{letter-spacing:0.018000px;}
.ls11{letter-spacing:0.020880px;}
.ls4{letter-spacing:0.031680px;}
.ls3e{letter-spacing:0.036000px;}
.ls6{letter-spacing:0.052560px;}
.ls3c{letter-spacing:0.054000px;}
.ls43{letter-spacing:0.090000px;}
.ls1b{letter-spacing:0.126000px;}
.ls16{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.180000px;}
.ls55{letter-spacing:0.198000px;}
.ls1d{letter-spacing:0.216000px;}
.ls49{letter-spacing:0.234000px;}
.ls51{letter-spacing:0.270000px;}
.ls1c{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.302400px;}
.ls5{letter-spacing:0.311040px;}
.ls0{letter-spacing:0.324000px;}
.ls21{letter-spacing:0.342000px;}
.ls2f{letter-spacing:0.378000px;}
.ls10{letter-spacing:0.385800px;}
.lsd{letter-spacing:0.540000px;}
.ls44{letter-spacing:0.558000px;}
.ls12{letter-spacing:0.624000px;}
.ls2{letter-spacing:0.670320px;}
.ls1e{letter-spacing:0.684000px;}
.ls9{letter-spacing:0.735120px;}
.ls3f{letter-spacing:0.756000px;}
.ls40{letter-spacing:0.810000px;}
.ls33{letter-spacing:0.864000px;}
.lsa{letter-spacing:0.900000px;}
.ls4c{letter-spacing:0.936000px;}
.ls4f{letter-spacing:1.008000px;}
.ls42{letter-spacing:1.044000px;}
.ls50{letter-spacing:1.116000px;}
.ls35{letter-spacing:1.134000px;}
.ls59{letter-spacing:1.152000px;}
.ls4a{letter-spacing:1.206000px;}
.ls3{letter-spacing:1.260000px;}
.ls47{letter-spacing:1.278000px;}
.ls17{letter-spacing:1.332000px;}
.ls34{letter-spacing:1.350000px;}
.ls2b{letter-spacing:1.386000px;}
.ls58{letter-spacing:1.494000px;}
.ls4e{letter-spacing:1.548000px;}
.ls41{letter-spacing:1.566000px;}
.ls4d{letter-spacing:1.620000px;}
.ls28{letter-spacing:2.106000px;}
.ls48{letter-spacing:3.546000px;}
.ls23{letter-spacing:4.266000px;}
.ls27{letter-spacing:4.986000px;}
.ls29{letter-spacing:7.860000px;}
.ls2d{letter-spacing:7.866000px;}
.ls2c{letter-spacing:12.186000px;}
.ls2a{letter-spacing:12.900000px;}
.ls18{letter-spacing:14.346000px;}
.ls22{letter-spacing:20.106000px;}
.ls30{letter-spacing:21.546000px;}
.ls46{letter-spacing:24.426000px;}
.ls36{letter-spacing:25.866000px;}
.ls24{letter-spacing:28.740000px;}
.ls45{letter-spacing:51.066000px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(0,128,0),0 0.015em rgb(0,128,0),0.015em 0 rgb(0,128,0),0 -0.015em  rgb(0,128,0);}
.sc3{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,128,128),0 0.015em rgb(0,128,128),0.015em 0 rgb(0,128,128),0 -0.015em  rgb(0,128,128);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(0,128,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,128,128);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3f{word-spacing:-54.000000px;}
.ws5{word-spacing:-20.437920px;}
.ws3{word-spacing:-16.560000px;}
.ws12{word-spacing:-15.966720px;}
.ws4{word-spacing:-15.840000px;}
.ws3c{word-spacing:-15.336000px;}
.ws45{word-spacing:-15.210000px;}
.wsa{word-spacing:-14.992560px;}
.wse{word-spacing:-14.958600px;}
.ws9{word-spacing:-14.940000px;}
.ws3b{word-spacing:-14.832000px;}
.wsb{word-spacing:-14.802600px;}
.ws2f{word-spacing:-14.760000px;}
.ws38{word-spacing:-14.724000px;}
.ws2d{word-spacing:-14.616000px;}
.ws2e{word-spacing:-14.580000px;}
.wsd{word-spacing:-14.572800px;}
.ws37{word-spacing:-14.562000px;}
.ws2c{word-spacing:-14.526000px;}
.ws2b{word-spacing:-14.472000px;}
.ws22{word-spacing:-14.364000px;}
.ws14{word-spacing:-14.346000px;}
.ws39{word-spacing:-14.292000px;}
.wsc{word-spacing:-14.238600px;}
.ws35{word-spacing:-14.220000px;}
.ws46{word-spacing:-14.166000px;}
.ws3a{word-spacing:-14.130000px;}
.ws40{word-spacing:-14.040000px;}
.ws32{word-spacing:-14.004000px;}
.ws3e{word-spacing:-13.986000px;}
.ws34{word-spacing:-13.950000px;}
.ws3d{word-spacing:-13.932000px;}
.ws43{word-spacing:-13.914000px;}
.ws27{word-spacing:-13.896000px;}
.ws23{word-spacing:-13.878000px;}
.ws31{word-spacing:-13.806000px;}
.ws10{word-spacing:-13.771200px;}
.ws28{word-spacing:-13.770000px;}
.ws2a{word-spacing:-13.752000px;}
.ws6{word-spacing:-13.716000px;}
.ws33{word-spacing:-13.662000px;}
.ws44{word-spacing:-13.500000px;}
.ws1b{word-spacing:-13.356000px;}
.ws1e{word-spacing:-13.158000px;}
.ws0{word-spacing:-13.147200px;}
.ws17{word-spacing:-13.140000px;}
.ws30{word-spacing:-13.068000px;}
.ws11{word-spacing:-13.049400px;}
.ws21{word-spacing:-13.032000px;}
.ws7{word-spacing:-13.014000px;}
.ws36{word-spacing:-12.978000px;}
.ws1c{word-spacing:-12.924000px;}
.ws15{word-spacing:-12.906000px;}
.ws29{word-spacing:-12.852000px;}
.ws1d{word-spacing:-12.834000px;}
.ws13{word-spacing:-12.798000px;}
.ws18{word-spacing:-12.726000px;}
.ws20{word-spacing:-12.708000px;}
.ws1f{word-spacing:-12.690000px;}
.ws42{word-spacing:-12.456000px;}
.ws41{word-spacing:-12.312000px;}
.ws25{word-spacing:-11.718000px;}
.ws16{word-spacing:-11.628000px;}
.ws24{word-spacing:-11.538000px;}
.ws26{word-spacing:-11.268000px;}
.ws8{word-spacing:-9.720000px;}
.ws1{word-spacing:-9.576000px;}
.ws1a{word-spacing:-8.820000px;}
.ws19{word-spacing:-8.676000px;}
.ws2{word-spacing:-7.408800px;}
.wsf{word-spacing:0.000000px;}
._3{margin-left:-2.946240px;}
._1{margin-left:-1.296000px;}
._0{width:1.169040px;}
._6{width:2.405760px;}
._8{width:3.487680px;}
._7{width:4.646880px;}
._10{width:6.559440px;}
._a{width:8.038800px;}
._5{width:9.567360px;}
._4{width:10.569600px;}
._11{width:11.938320px;}
._27{width:14.040000px;}
._9{width:15.158640px;}
._1d{width:16.632000px;}
._d{width:17.664000px;}
._c{width:19.399200px;}
._b{width:20.760720px;}
._12{width:21.864480px;}
._2{width:23.587200px;}
._13{width:24.688800px;}
._24{width:25.866000px;}
._1b{width:26.946000px;}
._17{width:28.566000px;}
._14{width:30.240000px;}
._15{width:31.368960px;}
._20{width:33.193920px;}
._29{width:34.356000px;}
._1c{width:35.370000px;}
._19{width:36.642000px;}
._1a{width:37.692000px;}
._e{width:39.466560px;}
._f{width:40.860240px;}
._21{width:42.344640px;}
._16{width:43.686000px;}
._23{width:44.866080px;}
._22{width:46.229760px;}
._2d{width:48.154800px;}
._2b{width:49.879920px;}
._2c{width:51.260880px;}
._1e{width:52.591920px;}
._1f{width:54.128880px;}
._18{width:55.620000px;}
._3b{width:57.162000px;}
._3c{width:58.296960px;}
._34{width:61.300560px;}
._25{width:62.478000px;}
._26{width:63.882000px;}
._45{width:65.016000px;}
._2a{width:66.288480px;}
._35{width:67.905600px;}
._36{width:68.966640px;}
._41{width:70.273680px;}
._3e{width:71.423280px;}
._3d{width:72.637680px;}
._28{width:77.006880px;}
._39{width:78.328080px;}
._46{width:80.004240px;}
._47{width:81.738000px;}
._49{width:85.871520px;}
._30{width:88.045680px;}
._37{width:89.802000px;}
._33{width:90.936000px;}
._38{width:91.980000px;}
._42{width:93.204000px;}
._40{width:95.028000px;}
._3f{width:96.087840px;}
._32{width:115.116480px;}
._31{width:116.289600px;}
._48{width:122.202000px;}
._3a{width:166.968720px;}
._43{width:171.846000px;}
._44{width:173.286000px;}
._2f{width:209.250000px;}
._2e{width:210.276000px;}
.fc8{color:transparent;}
.fc6{color:rgb(79,129,189);}
.fc7{color:rgb(0,112,192);}
.fc5{color:rgb(31,73,125);}
.fc2{color:rgb(0,128,0);}
.fca{color:rgb(127,127,127);}
.fc9{color:rgb(38,38,38);}
.fc4{color:rgb(0,176,80);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,128,128);}
.fsc{font-size:2.880000px;}
.fs4{font-size:18.000000px;}
.fsa{font-size:23.760000px;}
.fs7{font-size:30.240000px;}
.fs6{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fse{font-size:41.760000px;}
.fsf{font-size:45.360000px;}
.fs9{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fsd{font-size:74.880000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:88.795869px;}
.y4c{bottom:-18.390000px;}
.y41{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.yf{bottom:1.440000px;}
.y36{bottom:1.605000px;}
.y13{bottom:1.620000px;}
.y1a{bottom:1.980000px;}
.y25{bottom:2.340000px;}
.y4b{bottom:2.850000px;}
.y1c{bottom:3.060000px;}
.yb5{bottom:3.240000px;}
.y4e{bottom:3.420000px;}
.y22{bottom:3.600000px;}
.yec{bottom:3.780000px;}
.yf2{bottom:3.960000px;}
.y20{bottom:4.320000px;}
.y1e{bottom:4.680000px;}
.y3c{bottom:6.465000px;}
.y3a{bottom:6.645000px;}
.y146{bottom:7.740000px;}
.y101{bottom:7.905000px;}
.y13d{bottom:7.920000px;}
.y107{bottom:9.180000px;}
.y2{bottom:9.720000px;}
.y38{bottom:10.425000px;}
.y34{bottom:10.965000px;}
.y143{bottom:10.980000px;}
.y51{bottom:11.700000px;}
.y52{bottom:13.680000px;}
.y11{bottom:13.860000px;}
.y18{bottom:14.040000px;}
.y9{bottom:14.400000px;}
.y53{bottom:16.560000px;}
.yd{bottom:17.640000px;}
.yc3{bottom:18.360000px;}
.yb4{bottom:18.540000px;}
.yee{bottom:19.980000px;}
.y4a{bottom:27.330000px;}
.y106{bottom:30.780000px;}
.y132{bottom:33.825000px;}
.y33{bottom:34.005000px;}
.y142{bottom:34.020000px;}
.yfa{bottom:36.000000px;}
.yfd{bottom:36.180000px;}
.y8{bottom:45.540000px;}
.y17{bottom:47.340000px;}
.y54{bottom:47.520000px;}
.y49{bottom:50.550000px;}
.y105{bottom:52.230000px;}
.yc{bottom:53.280000px;}
.y131{bottom:56.865000px;}
.y149{bottom:56.880000px;}
.y32{bottom:57.045000px;}
.y141{bottom:57.060000px;}
.y3{bottom:58.320000px;}
.y50{bottom:63.720000px;}
.yba{bottom:64.440000px;}
.y16{bottom:70.200000px;}
.y104{bottom:70.590000px;}
.y48{bottom:73.590000px;}
.y1{bottom:74.520000px;}
.y7{bottom:76.680000px;}
.y130{bottom:79.905000px;}
.y140{bottom:79.920000px;}
.y31{bottom:80.085000px;}
.y103{bottom:88.950000px;}
.y47{bottom:97.350000px;}
.y12f{bottom:102.945000px;}
.y13f{bottom:102.960000px;}
.y30{bottom:102.990000px;}
.y15{bottom:103.500000px;}
.y5{bottom:107.640000px;}
.y6{bottom:107.820000px;}
.y147{bottom:109.980000px;}
.y233{bottom:111.420000px;}
.y1f0{bottom:111.600000px;}
.y1f1{bottom:111.780000px;}
.y21c{bottom:112.860000px;}
.y13b{bottom:114.120000px;}
.y83{bottom:118.620000px;}
.y11e{bottom:119.160000px;}
.yb2{bottom:119.340000px;}
.y1ca{bottom:120.060000px;}
.y10a{bottom:120.780000px;}
.y25d{bottom:123.660000px;}
.y45{bottom:125.280000px;}
.y2f{bottom:126.030000px;}
.ye8{bottom:126.360000px;}
.ye7{bottom:126.540000px;}
.y1a2{bottom:129.960000px;}
.y180{bottom:130.320000px;}
.y167{bottom:132.660000px;}
.yf0{bottom:132.840000px;}
.y145{bottom:133.020000px;}
.y21b{bottom:135.720000px;}
.y232{bottom:135.900000px;}
.y1ef{bottom:136.260000px;}
.y13a{bottom:137.160000px;}
.y82{bottom:140.760000px;}
.yb7{bottom:141.120000px;}
.yb1{bottom:141.660000px;}
.y11d{bottom:142.200000px;}
.y109{bottom:143.820000px;}
.y25c{bottom:145.080000px;}
.y44{bottom:148.320000px;}
.y2e{bottom:149.070000px;}
.ye6{bottom:149.580000px;}
.y1a1{bottom:153.000000px;}
.y17f{bottom:153.180000px;}
.y166{bottom:155.700000px;}
.y21a{bottom:158.580000px;}
.y139{bottom:160.200000px;}
.y231{bottom:160.380000px;}
.y1ee{bottom:160.740000px;}
.y81{bottom:163.080000px;}
.yb0{bottom:163.800000px;}
.y108{bottom:164.160000px;}
.y11c{bottom:165.060000px;}
.y25b{bottom:166.500000px;}
.y1c9{bottom:167.580000px;}
.y43{bottom:171.360000px;}
.y2d{bottom:172.110000px;}
.ye5{bottom:172.620000px;}
.y102{bottom:173.700000px;}
.y1a0{bottom:176.040000px;}
.y17e{bottom:176.220000px;}
.y165{bottom:178.740000px;}
.y219{bottom:181.440000px;}
.y138{bottom:183.240000px;}
.y230{bottom:185.040000px;}
.y80{bottom:185.220000px;}
.yaf{bottom:186.120000px;}
.y11b{bottom:188.100000px;}
.y1c8{bottom:191.520000px;}
.y42{bottom:194.220000px;}
.y2c{bottom:195.150000px;}
.ye4{bottom:195.480000px;}
.y19f{bottom:198.900000px;}
.y17d{bottom:199.260000px;}
.y164{bottom:201.780000px;}
.y218{bottom:204.300000px;}
.y137{bottom:206.130000px;}
.y40{bottom:206.325000px;}
.y7f{bottom:207.570000px;}
.yae{bottom:208.290000px;}
.y22f{bottom:209.550000px;}
.y1ed{bottom:209.910000px;}
.y11a{bottom:211.170000px;}
.y1c7{bottom:215.310000px;}
.y2b{bottom:218.190000px;}
.ye3{bottom:218.550000px;}
.y2b4{bottom:221.610000px;}
.y19e{bottom:221.970000px;}
.y17c{bottom:222.330000px;}
.y163{bottom:224.670000px;}
.y3f{bottom:225.765000px;}
.y27c{bottom:226.290000px;}
.y217{bottom:227.190000px;}
.y136{bottom:229.170000px;}
.y7e{bottom:229.890000px;}
.yad{bottom:230.610000px;}
.y25a{bottom:230.970000px;}
.y22e{bottom:234.030000px;}
.y119{bottom:234.210000px;}
.y1ec{bottom:234.390000px;}
.y1c6{bottom:239.070000px;}
.y2a{bottom:241.050000px;}
.ye2{bottom:241.590000px;}
.y28e{bottom:243.030000px;}
.y19d{bottom:245.010000px;}
.y3e{bottom:245.205000px;}
.y17b{bottom:245.370000px;}
.y162{bottom:247.710000px;}
.y2b3{bottom:247.890000px;}
.y216{bottom:250.050000px;}
.y7d{bottom:252.030000px;}
.y135{bottom:252.210000px;}
.y259{bottom:252.570000px;}
.yac{bottom:252.750000px;}
.y118{bottom:257.250000px;}
.y22d{bottom:258.690000px;}
.y1eb{bottom:258.870000px;}
.y1c5{bottom:262.830000px;}
.y29{bottom:264.090000px;}
.y28d{bottom:264.450000px;}
.ye1{bottom:264.630000px;}
.y3d{bottom:264.645000px;}
.y19c{bottom:268.050000px;}
.y17a{bottom:268.410000px;}
.y27b{bottom:269.130000px;}
.y161{bottom:270.750000px;}
.y2b2{bottom:270.930000px;}
.y215{bottom:273.090000px;}
.y258{bottom:273.990000px;}
.y7c{bottom:274.350000px;}
.y100{bottom:274.905000px;}
.yab{bottom:275.070000px;}
.y134{bottom:275.250000px;}
.y117{bottom:280.290000px;}
.y22c{bottom:283.170000px;}
.y1ea{bottom:283.530000px;}
.y3b{bottom:284.085000px;}
.y28c{bottom:285.870000px;}
.y1c4{bottom:286.590000px;}
.y28{bottom:287.130000px;}
.ye0{bottom:287.670000px;}
.y27a{bottom:290.730000px;}
.y19b{bottom:291.090000px;}
.y179{bottom:291.270000px;}
.y160{bottom:293.790000px;}
.y2b1{bottom:294.150000px;}
.y257{bottom:295.410000px;}
.y214{bottom:295.950000px;}
.y7b{bottom:296.490000px;}
.yaa{bottom:297.390000px;}
.y133{bottom:298.290000px;}
.y116{bottom:303.150000px;}
.y39{bottom:303.345000px;}
.y28b{bottom:307.290000px;}
.y22b{bottom:307.650000px;}
.y1e9{bottom:308.010000px;}
.y27{bottom:310.170000px;}
.y1c3{bottom:310.350000px;}
.y12e{bottom:310.365000px;}
.ydf{bottom:310.710000px;}
.y279{bottom:312.150000px;}
.y19a{bottom:314.130000px;}
.y178{bottom:314.310000px;}
.y15f{bottom:316.830000px;}
.y2b0{bottom:317.370000px;}
.y7a{bottom:318.810000px;}
.ya9{bottom:319.530000px;}
.y37{bottom:322.785000px;}
.y115{bottom:326.190000px;}
.y28a{bottom:328.890000px;}
.y22a{bottom:332.310000px;}
.y1e8{bottom:332.670000px;}
.yde{bottom:333.570000px;}
.y1c2{bottom:334.110000px;}
.y199{bottom:336.990000px;}
.y177{bottom:337.350000px;}
.y256{bottom:338.430000px;}
.y15e{bottom:339.870000px;}
.y2af{bottom:340.410000px;}
.y79{bottom:340.950000px;}
.y213{bottom:341.670000px;}
.ya8{bottom:341.850000px;}
.y35{bottom:342.765000px;}
.y114{bottom:349.230000px;}
.y26{bottom:349.425000px;}
.y289{bottom:350.310000px;}
.y278{bottom:353.190000px;}
.ydd{bottom:356.610000px;}
.y229{bottom:356.790000px;}
.y1e7{bottom:357.150000px;}
.y1c1{bottom:357.870000px;}
.y255{bottom:359.850000px;}
.y198{bottom:360.030000px;}
.y176{bottom:360.390000px;}
.y15d{bottom:362.730000px;}
.y78{bottom:363.270000px;}
.y2ae{bottom:363.630000px;}
.ya7{bottom:363.990000px;}
.y212{bottom:364.530000px;}
.y277{bottom:371.730000px;}
.y113{bottom:372.270000px;}
.y254{bottom:379.470000px;}
.ydc{bottom:379.650000px;}
.y228{bottom:381.270000px;}
.y1c0{bottom:381.630000px;}
.y197{bottom:383.070000px;}
.y175{bottom:383.430000px;}
.y77{bottom:385.590000px;}
.y15c{bottom:385.770000px;}
.ya6{bottom:386.310000px;}
.y2ad{bottom:386.670000px;}
.y211{bottom:387.390000px;}
.y276{bottom:393.330000px;}
.y112{bottom:395.310000px;}
.y253{bottom:398.010000px;}
.ydb{bottom:402.690000px;}
.y1bf{bottom:405.390000px;}
.y227{bottom:405.930000px;}
.y196{bottom:406.110000px;}
.y1e6{bottom:406.290000px;}
.y174{bottom:406.470000px;}
.y76{bottom:407.730000px;}
.ya5{bottom:408.450000px;}
.y15b{bottom:408.810000px;}
.y2ac{bottom:409.890000px;}
.y210{bottom:410.250000px;}
.y275{bottom:414.750000px;}
.y111{bottom:418.350000px;}
.y252{bottom:419.430000px;}
.y12d{bottom:425.385000px;}
.yda{bottom:425.730000px;}
.y195{bottom:429.150000px;}
.y173{bottom:429.330000px;}
.y75{bottom:430.050000px;}
.y226{bottom:430.410000px;}
.ya4{bottom:430.770000px;}
.y15a{bottom:431.850000px;}
.y20f{bottom:433.110000px;}
.y274{bottom:436.170000px;}
.y251{bottom:441.075000px;}
.y110{bottom:441.255000px;}
.yd9{bottom:448.815000px;}
.y2ab{bottom:450.975000px;}
.y194{bottom:452.055000px;}
.y74{bottom:452.235000px;}
.y172{bottom:452.415000px;}
.ya3{bottom:452.955000px;}
.y1be{bottom:453.135000px;}
.y159{bottom:454.935000px;}
.y1e5{bottom:455.295000px;}
.y20e{bottom:456.195000px;}
.y273{bottom:457.815000px;}
.y250{bottom:462.495000px;}
.y10f{bottom:464.295000px;}
.yd8{bottom:471.675000px;}
.y2aa{bottom:474.195000px;}
.y73{bottom:474.555000px;}
.y193{bottom:475.095000px;}
.ya2{bottom:475.275000px;}
.y171{bottom:475.455000px;}
.y1bd{bottom:476.895000px;}
.y272{bottom:477.255000px;}
.y158{bottom:477.795000px;}
.y20d{bottom:479.055000px;}
.y288{bottom:479.235000px;}
.y225{bottom:479.595000px;}
.y1e4{bottom:479.955000px;}
.y24f{bottom:482.115000px;}
.y10e{bottom:487.335000px;}
.yd7{bottom:494.715000px;}
.y271{bottom:495.975000px;}
.y72{bottom:496.695000px;}
.y2a9{bottom:497.235000px;}
.ya1{bottom:497.595000px;}
.y192{bottom:498.135000px;}
.y170{bottom:498.495000px;}
.y1bc{bottom:500.655000px;}
.y157{bottom:500.835000px;}
.y20c{bottom:501.915000px;}
.y224{bottom:504.075000px;}
.y1e3{bottom:504.435000px;}
.y10d{bottom:510.375000px;}
.y270{bottom:517.395000px;}
.yd6{bottom:517.755000px;}
.y71{bottom:519.015000px;}
.ya0{bottom:519.735000px;}
.y287{bottom:520.275000px;}
.y2a8{bottom:520.455000px;}
.y191{bottom:521.175000px;}
.y16f{bottom:521.535000px;}
.y24e{bottom:522.075000px;}
.y156{bottom:523.875000px;}
.y1bb{bottom:524.415000px;}
.y20b{bottom:524.775000px;}
.y223{bottom:528.555000px;}
.y1e2{bottom:528.915000px;}
.y144{bottom:532.875000px;}
.y10c{bottom:533.415000px;}
.y26f{bottom:538.815000px;}
.yd5{bottom:540.795000px;}
.y70{bottom:541.155000px;}
.y2a7{bottom:541.335000px;}
.y9f{bottom:542.055000px;}
.y24d{bottom:543.675000px;}
.y190{bottom:544.215000px;}
.y16e{bottom:544.575000px;}
.y13e{bottom:544.935000px;}
.y155{bottom:546.915000px;}
.y20a{bottom:547.635000px;}
.y1ba{bottom:548.175000px;}
.y222{bottom:553.215000px;}
.y1e1{bottom:553.575000px;}
.y10b{bottom:556.455000px;}
.y26e{bottom:560.415000px;}
.y2a6{bottom:561.495000px;}
.y6f{bottom:563.475000px;}
.yd4{bottom:563.835000px;}
.y9e{bottom:564.195000px;}
.y24c{bottom:565.095000px;}
.y18f{bottom:567.255000px;}
.y16d{bottom:567.435000px;}
.y154{bottom:569.955000px;}
.y209{bottom:570.495000px;}
.y1b9{bottom:571.935000px;}
.yff{bottom:576.795000px;}
.y221{bottom:577.695000px;}
.y1e0{bottom:578.055000px;}
.y26d{bottom:579.855000px;}
.y286{bottom:581.835000px;}
.y2a5{bottom:584.715000px;}
.y6e{bottom:585.795000px;}
.y9d{bottom:586.515000px;}
.yd3{bottom:586.875000px;}
.yfc{bottom:588.495000px;}
.y18e{bottom:590.115000px;}
.y16c{bottom:590.475000px;}
.y153{bottom:592.995000px;}
.y208{bottom:593.355000px;}
.y1b8{bottom:595.695000px;}
.y26c{bottom:598.575000px;}
.y220{bottom:602.175000px;}
.y1df{bottom:602.535000px;}
.y285{bottom:603.255000px;}
.y24b{bottom:606.135000px;}
.y2a4{bottom:607.755000px;}
.y6d{bottom:607.935000px;}
.y9c{bottom:608.655000px;}
.yd2{bottom:609.735000px;}
.y18d{bottom:613.155000px;}
.y16b{bottom:613.515000px;}
.y152{bottom:615.855000px;}
.y207{bottom:616.215000px;}
.y1b7{bottom:619.455000px;}
.y26b{bottom:619.995000px;}
.yfe{bottom:620.715000px;}
.y24a{bottom:624.675000px;}
.y21f{bottom:626.835000px;}
.y1de{bottom:627.195000px;}
.y6c{bottom:630.255000px;}
.y9b{bottom:630.975000px;}
.yd1{bottom:632.775000px;}
.y18c{bottom:636.195000px;}
.y16a{bottom:636.555000px;}
.yf9{bottom:636.915000px;}
.y206{bottom:639.075000px;}
.y26a{bottom:641.415000px;}
.y1b6{bottom:643.215000px;}
.y284{bottom:644.295000px;}
.y151{bottom:645.555000px;}
.y249{bottom:646.275000px;}
.y21e{bottom:651.315000px;}
.y1dd{bottom:651.675000px;}
.y2a3{bottom:651.855000px;}
.y6b{bottom:652.395000px;}
.yfb{bottom:652.935000px;}
.y9a{bottom:653.295000px;}
.yd0{bottom:655.815000px;}
.y18b{bottom:659.235000px;}
.y169{bottom:659.595000px;}
.y13c{bottom:659.955000px;}
.y150{bottom:660.855000px;}
.y205{bottom:662.115000px;}
.y269{bottom:663.015000px;}
.y1b5{bottom:666.975000px;}
.y248{bottom:667.695000px;}
.y24{bottom:671.655000px;}
.y2a2{bottom:672.015000px;}
.y6a{bottom:674.715000px;}
.y99{bottom:675.435000px;}
.y21d{bottom:676.005000px;}
.y1dc{bottom:676.185000px;}
.y14f{bottom:677.085000px;}
.ycf{bottom:678.885000px;}
.y23{bottom:681.945000px;}
.y18a{bottom:682.305000px;}
.y168{bottom:682.485000px;}
.y268{bottom:684.465000px;}
.y204{bottom:685.005000px;}
.yf8{bottom:685.185000px;}
.y247{bottom:689.145000px;}
.y1b4{bottom:690.765000px;}
.y2a1{bottom:695.265000px;}
.y69{bottom:696.885000px;}
.y21{bottom:697.245000px;}
.y98{bottom:697.785000px;}
.y1db{bottom:700.845000px;}
.yce{bottom:701.925000px;}
.y189{bottom:705.345000px;}
.y14e{bottom:705.525000px;}
.y267{bottom:705.885000px;}
.y203{bottom:707.865000px;}
.y246{bottom:708.765000px;}
.y1f{bottom:714.345000px;}
.y1b3{bottom:714.525000px;}
.yef{bottom:717.405000px;}
.y2a0{bottom:718.485000px;}
.y68{bottom:719.205000px;}
.y97{bottom:719.925000px;}
.ycd{bottom:724.785000px;}
.y1da{bottom:725.325000px;}
.y266{bottom:725.505000px;}
.y245{bottom:727.305000px;}
.y188{bottom:728.205000px;}
.y14d{bottom:728.565000px;}
.y202{bottom:730.725000px;}
.y1d{bottom:732.525000px;}
.yf7{bottom:733.605000px;}
.y1b2{bottom:738.465000px;}
.y67{bottom:741.525000px;}
.y96{bottom:742.245000px;}
.y265{bottom:744.045000px;}
.ycc{bottom:747.825000px;}
.y244{bottom:748.905000px;}
.y1b{bottom:749.625000px;}
.y1d9{bottom:749.805000px;}
.y187{bottom:751.245000px;}
.y14c{bottom:751.605000px;}
.y201{bottom:753.585000px;}
.y1b1{bottom:762.225000px;}
.y66{bottom:763.665000px;}
.y95{bottom:764.385000px;}
.y29f{bottom:764.745000px;}
.y19{bottom:764.925000px;}
.y264{bottom:765.645000px;}
.yf6{bottom:765.825000px;}
.y243{bottom:770.325000px;}
.ycb{bottom:770.865000px;}
.y14{bottom:773.205000px;}
.y186{bottom:774.285000px;}
.y1d8{bottom:774.465000px;}
.y14b{bottom:774.645000px;}
.y200{bottom:776.445000px;}
.yf5{bottom:781.845000px;}
.y29e{bottom:785.625000px;}
.y65{bottom:785.985000px;}
.y94{bottom:786.705000px;}
.y263{bottom:787.065000px;}
.y242{bottom:789.945000px;}
.yca{bottom:793.905000px;}
.y185{bottom:797.325000px;}
.y14a{bottom:797.685000px;}
.yf4{bottom:798.045000px;}
.y1d7{bottom:798.945000px;}
.y1ff{bottom:799.305000px;}
.y29d{bottom:805.785000px;}
.y64{bottom:808.125000px;}
.y241{bottom:808.485000px;}
.y93{bottom:809.025000px;}
.y1b0{bottom:809.745000px;}
.yf3{bottom:814.065000px;}
.yc9{bottom:816.945000px;}
.y184{bottom:820.365000px;}
.y12c{bottom:820.545000px;}
.y1fe{bottom:822.165000px;}
.y1d6{bottom:823.425000px;}
.y29c{bottom:829.005000px;}
.y240{bottom:829.905000px;}
.y63{bottom:830.445000px;}
.y92{bottom:831.165000px;}
.y1af{bottom:833.505000px;}
.yc8{bottom:839.985000px;}
.y183{bottom:843.405000px;}
.y12b{bottom:843.585000px;}
.y1fd{bottom:845.025000px;}
.yf1{bottom:846.285000px;}
.y1d5{bottom:848.085000px;}
.y23f{bottom:851.505000px;}
.y29b{bottom:852.045000px;}
.y62{bottom:852.585000px;}
.y91{bottom:853.485000px;}
.y1ae{bottom:857.265000px;}
.yed{bottom:862.485000px;}
.yc7{bottom:862.845000px;}
.y182{bottom:866.265000px;}
.y12a{bottom:866.625000px;}
.y1fc{bottom:868.065000px;}
.y23e{bottom:871.125000px;}
.y1d4{bottom:872.565000px;}
.y262{bottom:872.925000px;}
.y61{bottom:874.905000px;}
.y29a{bottom:875.265000px;}
.y90{bottom:875.625000px;}
.y1ad{bottom:881.025000px;}
.yc6{bottom:884.985000px;}
.y12{bottom:885.525000px;}
.y181{bottom:889.485000px;}
.y129{bottom:889.665000px;}
.y1fb{bottom:890.925000px;}
.y261{bottom:894.345000px;}
.y10{bottom:894.705000px;}
.yeb{bottom:895.425000px;}
.y60{bottom:897.225000px;}
.y8f{bottom:897.945000px;}
.y299{bottom:898.305000px;}
.yc5{bottom:899.565000px;}
.y1ac{bottom:904.785000px;}
.y23d{bottom:911.130000px;}
.y128{bottom:912.750000px;}
.y1fa{bottom:913.830000px;}
.y260{bottom:914.010000px;}
.yc2{bottom:914.910000px;}
.y283{bottom:915.990000px;}
.y298{bottom:919.230000px;}
.y5f{bottom:919.410000px;}
.y8e{bottom:920.130000px;}
.y1d3{bottom:921.750000px;}
.ye{bottom:922.650000px;}
.yea{bottom:924.630000px;}
.yb{bottom:927.870000px;}
.y1ab{bottom:928.590000px;}
.yc4{bottom:930.210000px;}
.y23c{bottom:932.550000px;}
.y127{bottom:935.790000px;}
.y1f9{bottom:936.690000px;}
.y282{bottom:937.410000px;}
.y297{bottom:939.570000px;}
.y5e{bottom:941.730000px;}
.y8d{bottom:942.450000px;}
.ye9{bottom:945.150000px;}
.yb6{bottom:945.510000px;}
.y1d2{bottom:946.230000px;}
.y1aa{bottom:952.350000px;}
.y23b{bottom:954.150000px;}
.y126{bottom:958.650000px;}
.y281{bottom:958.830000px;}
.y1f8{bottom:959.550000px;}
.yc0{bottom:960.810000px;}
.y296{bottom:962.610000px;}
.y5d{bottom:963.870000px;}
.y8c{bottom:964.590000px;}
.y1d1{bottom:970.890000px;}
.y23a{bottom:975.570000px;}
.y1a9{bottom:976.110000px;}
.yc1{bottom:976.290000px;}
.y280{bottom:978.450000px;}
.y125{bottom:981.690000px;}
.y1f7{bottom:982.410000px;}
.y295{bottom:985.830000px;}
.y5c{bottom:986.190000px;}
.y8b{bottom:986.910000px;}
.ybf{bottom:991.590000px;}
.y1d0{bottom:995.370000px;}
.y239{bottom:996.990000px;}
.y1a8{bottom:999.870000px;}
.y124{bottom:1004.730000px;}
.y1f6{bottom:1005.270000px;}
.yb9{bottom:1006.890000px;}
.y5b{bottom:1008.330000px;}
.y294{bottom:1008.870000px;}
.y8a{bottom:1009.230000px;}
.ya{bottom:1013.550000px;}
.y238{bottom:1016.610000px;}
.y25f{bottom:1018.590000px;}
.y1cf{bottom:1019.850000px;}
.ybe{bottom:1022.190000px;}
.y1a7{bottom:1023.810000px;}
.y123{bottom:1027.770000px;}
.y1f5{bottom:1028.130000px;}
.y293{bottom:1029.750000px;}
.y4{bottom:1030.290000px;}
.y5a{bottom:1030.650000px;}
.y89{bottom:1031.370000px;}
.y237{bottom:1035.150000px;}
.ybd{bottom:1037.490000px;}
.y25e{bottom:1038.030000px;}
.y148{bottom:1039.830000px;}
.y27f{bottom:1040.010000px;}
.y46{bottom:1043.280000px;}
.y1ce{bottom:1044.510000px;}
.y1a6{bottom:1047.570000px;}
.y292{bottom:1050.090000px;}
.y122{bottom:1050.810000px;}
.y1f4{bottom:1051.170000px;}
.y59{bottom:1052.790000px;}
.ybc{bottom:1052.970000px;}
.y88{bottom:1053.690000px;}
.y236{bottom:1056.750000px;}
.y27e{bottom:1061.430000px;}
.ybb{bottom:1068.270000px;}
.y1cd{bottom:1068.990000px;}
.y1a5{bottom:1071.330000px;}
.y291{bottom:1073.130000px;}
.y121{bottom:1073.850000px;}
.y1f3{bottom:1074.030000px;}
.y58{bottom:1075.110000px;}
.y87{bottom:1075.830000px;}
.y235{bottom:1078.170000px;}
.y27d{bottom:1081.050000px;}
.yb8{bottom:1083.570000px;}
.y1cc{bottom:1093.470000px;}
.y1a4{bottom:1095.090000px;}
.y290{bottom:1096.350000px;}
.y120{bottom:1096.710000px;}
.y1f2{bottom:1096.890000px;}
.y57{bottom:1097.430000px;}
.y86{bottom:1098.150000px;}
.yb3{bottom:1099.590000px;}
.y1cb{bottom:1118.130000px;}
.y1a3{bottom:1118.850000px;}
.y28f{bottom:1119.390000px;}
.y56{bottom:1119.570000px;}
.y11f{bottom:1119.750000px;}
.y85{bottom:1120.290000px;}
.y234{bottom:1121.190000px;}
.y84{bottom:1142.610000px;}
.y55{bottom:1142.790000px;}
.y4f{bottom:1161.000000px;}
.y4d{bottom:1185.840000px;}
.h2b{height:2.005313px;}
.ha{height:5.205000px;}
.h21{height:6.645000px;}
.h13{height:8.280000px;}
.he{height:9.180000px;}
.h1d{height:10.290000px;}
.hb{height:12.190430px;}
.h38{height:15.285000px;}
.h15{height:15.300000px;}
.h3c{height:15.322500px;}
.h3a{height:15.465000px;}
.h51{height:15.510000px;}
.h45{height:16.005000px;}
.h42{height:16.020000px;}
.h3e{height:16.042500px;}
.h47{height:16.185000px;}
.h41{height:16.200000px;}
.h22{height:16.543828px;}
.h17{height:17.100000px;}
.h31{height:17.640000px;}
.h19{height:18.180000px;}
.h28{height:19.245000px;}
.h25{height:19.425000px;}
.h23{height:19.965000px;}
.h14{height:21.055781px;}
.hf{height:22.975313px;}
.h4f{height:23.038500px;}
.h2{height:23.938500px;}
.h11{height:23.980781px;}
.h26{height:27.071719px;}
.h32{height:27.898500px;}
.hc{height:27.922500px;}
.h24{height:29.145586px;}
.h3b{height:30.585000px;}
.h36{height:30.765000px;}
.h48{height:32.205000px;}
.h3f{height:32.220000px;}
.h44{height:32.250000px;}
.h34{height:34.684453px;}
.h1e{height:35.595703px;}
.h3d{height:38.089687px;}
.h29{height:40.472227px;}
.h35{height:40.842773px;}
.h52{height:41.291016px;}
.h27{height:41.610234px;}
.h18{height:44.820000px;}
.h12{height:44.860781px;}
.h1b{height:45.695391px;}
.h43{height:48.270000px;}
.h46{height:48.405000px;}
.hd{height:48.761719px;}
.h20{height:49.253906px;}
.h1a{height:50.100469px;}
.h3{height:50.597578px;}
.h16{height:53.393555px;}
.h2e{height:54.000000px;}
.h6{height:54.457031px;}
.h30{height:56.084062px;}
.h2f{height:56.160000px;}
.h8{height:57.051211px;}
.h1c{height:59.088867px;}
.h9{height:60.136655px;}
.h2d{height:63.180000px;}
.h4{height:70.664062px;}
.h7{height:71.265000px;}
.h33{height:72.562500px;}
.h39{height:76.665000px;}
.h4a{height:101.196000px;}
.h10{height:112.320000px;}
.h2c{height:114.660000px;}
.h4c{height:115.005000px;}
.h50{height:115.050000px;}
.h2a{height:116.445000px;}
.h5{height:124.590000px;}
.h40{height:145.080000px;}
.h37{height:153.345000px;}
.h4d{height:241.770000px;}
.h49{height:293.595000px;}
.h1f{height:322.215000px;}
.h4b{height:384.360000px;}
.h4e{height:388.873500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:52.189500px;}
.w1c{width:88.905000px;}
.w1b{width:97.761000px;}
.w1a{width:97.905000px;}
.w4{width:101.329500px;}
.w17{width:103.309500px;}
.w22{width:114.321000px;}
.w16{width:120.405000px;}
.w1f{width:124.549500px;}
.w19{width:133.236000px;}
.w21{width:134.856000px;}
.w14{width:144.720000px;}
.w23{width:145.245000px;}
.w18{width:153.915000px;}
.w9{width:154.429500px;}
.w20{width:155.895000px;}
.w13{width:168.319500px;}
.w15{width:241.635000px;}
.w3{width:265.155000px;}
.w11{width:280.320000px;}
.w8{width:291.075000px;}
.w1e{width:324.015000px;}
.w1d{width:324.019500px;}
.wc{width:325.815000px;}
.wf{width:333.555000px;}
.we{width:338.284500px;}
.w12{width:339.315000px;}
.wb{width:349.264500px;}
.w7{width:384.004500px;}
.w2{width:414.424500px;}
.wa{width:520.650000px;}
.wd{width:573.660000px;}
.w5{width:575.730000px;}
.w6{width:675.090000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:3.769500px;}
.x19{left:6.465000px;}
.x17{left:17.809500px;}
.x30{left:20.145000px;}
.x2d{left:21.225000px;}
.x31{left:22.485000px;}
.x2b{left:25.740000px;}
.x20{left:28.620000px;}
.xb{left:29.865000px;}
.x1b{left:32.565000px;}
.xf{left:38.370000px;}
.x2f{left:50.760000px;}
.x22{left:53.820000px;}
.x21{left:57.420000px;}
.x1{left:106.786500px;}
.x5{left:108.036000px;}
.x16{left:122.025000px;}
.x1c{left:143.445000px;}
.x18{left:164.385000px;}
.x4{left:188.130000px;}
.x6{left:209.385000px;}
.x23{left:211.365000px;}
.x7{left:213.328500px;}
.x10{left:221.115000px;}
.x29{left:232.605000px;}
.xc{left:263.385000px;}
.x11{left:273.705000px;}
.x1d{left:276.375000px;}
.x12{left:303.405000px;}
.x28{left:324.028500px;}
.x13{left:341.025000px;}
.x24{left:365.295000px;}
.x2a{left:388.515000px;}
.x1e{left:421.095000px;}
.x1a{left:444.720000px;}
.x15{left:450.480000px;}
.xd{left:458.220000px;}
.xe{left:462.705000px;}
.xa{left:492.960000px;}
.x25{left:498.540000px;}
.x3{left:521.220000px;}
.x2c{left:523.380000px;}
.x8{left:560.803500px;}
.x9{left:566.383500px;}
.x14{left:573.990000px;}
.x26{left:596.460000px;}
.x2e{left:637.890000px;}
.x1f{left:662.730000px;}
.x27{left:694.230000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.440000pt;}
.v1{vertical-align:16.160000pt;}
.ls57{letter-spacing:-1.584000pt;}
.ls3b{letter-spacing:-1.552000pt;}
.ls39{letter-spacing:-1.440000pt;}
.ls38{letter-spacing:-1.312000pt;}
.ls52{letter-spacing:-1.248000pt;}
.ls1a{letter-spacing:-1.232000pt;}
.ls3a{letter-spacing:-1.152000pt;}
.ls54{letter-spacing:-1.120000pt;}
.ls53{letter-spacing:-0.848000pt;}
.ls37{letter-spacing:-0.800000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.304000pt;}
.lsf{letter-spacing:-0.297067pt;}
.ls31{letter-spacing:-0.288000pt;}
.ls26{letter-spacing:-0.272000pt;}
.ls20{letter-spacing:-0.256000pt;}
.ls56{letter-spacing:-0.240000pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.160000pt;}
.ls3d{letter-spacing:-0.144000pt;}
.lse{letter-spacing:-0.122133pt;}
.ls19{letter-spacing:-0.096000pt;}
.ls13{letter-spacing:-0.086933pt;}
.ls25{letter-spacing:-0.080000pt;}
.ls2e{letter-spacing:-0.048000pt;}
.ls4b{letter-spacing:-0.032000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.013440pt;}
.ls32{letter-spacing:0.016000pt;}
.ls11{letter-spacing:0.018560pt;}
.ls4{letter-spacing:0.028160pt;}
.ls3e{letter-spacing:0.032000pt;}
.ls6{letter-spacing:0.046720pt;}
.ls3c{letter-spacing:0.048000pt;}
.ls43{letter-spacing:0.080000pt;}
.ls1b{letter-spacing:0.112000pt;}
.ls16{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.160000pt;}
.ls55{letter-spacing:0.176000pt;}
.ls1d{letter-spacing:0.192000pt;}
.ls49{letter-spacing:0.208000pt;}
.ls51{letter-spacing:0.240000pt;}
.ls1c{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.268800pt;}
.ls5{letter-spacing:0.276480pt;}
.ls0{letter-spacing:0.288000pt;}
.ls21{letter-spacing:0.304000pt;}
.ls2f{letter-spacing:0.336000pt;}
.ls10{letter-spacing:0.342933pt;}
.lsd{letter-spacing:0.480000pt;}
.ls44{letter-spacing:0.496000pt;}
.ls12{letter-spacing:0.554667pt;}
.ls2{letter-spacing:0.595840pt;}
.ls1e{letter-spacing:0.608000pt;}
.ls9{letter-spacing:0.653440pt;}
.ls3f{letter-spacing:0.672000pt;}
.ls40{letter-spacing:0.720000pt;}
.ls33{letter-spacing:0.768000pt;}
.lsa{letter-spacing:0.800000pt;}
.ls4c{letter-spacing:0.832000pt;}
.ls4f{letter-spacing:0.896000pt;}
.ls42{letter-spacing:0.928000pt;}
.ls50{letter-spacing:0.992000pt;}
.ls35{letter-spacing:1.008000pt;}
.ls59{letter-spacing:1.024000pt;}
.ls4a{letter-spacing:1.072000pt;}
.ls3{letter-spacing:1.120000pt;}
.ls47{letter-spacing:1.136000pt;}
.ls17{letter-spacing:1.184000pt;}
.ls34{letter-spacing:1.200000pt;}
.ls2b{letter-spacing:1.232000pt;}
.ls58{letter-spacing:1.328000pt;}
.ls4e{letter-spacing:1.376000pt;}
.ls41{letter-spacing:1.392000pt;}
.ls4d{letter-spacing:1.440000pt;}
.ls28{letter-spacing:1.872000pt;}
.ls48{letter-spacing:3.152000pt;}
.ls23{letter-spacing:3.792000pt;}
.ls27{letter-spacing:4.432000pt;}
.ls29{letter-spacing:6.986667pt;}
.ls2d{letter-spacing:6.992000pt;}
.ls2c{letter-spacing:10.832000pt;}
.ls2a{letter-spacing:11.466667pt;}
.ls18{letter-spacing:12.752000pt;}
.ls22{letter-spacing:17.872000pt;}
.ls30{letter-spacing:19.152000pt;}
.ls46{letter-spacing:21.712000pt;}
.ls36{letter-spacing:22.992000pt;}
.ls24{letter-spacing:25.546667pt;}
.ls45{letter-spacing:45.392000pt;}
.ws3f{word-spacing:-48.000000pt;}
.ws5{word-spacing:-18.167040pt;}
.ws3{word-spacing:-14.720000pt;}
.ws12{word-spacing:-14.192640pt;}
.ws4{word-spacing:-14.080000pt;}
.ws3c{word-spacing:-13.632000pt;}
.ws45{word-spacing:-13.520000pt;}
.wsa{word-spacing:-13.326720pt;}
.wse{word-spacing:-13.296533pt;}
.ws9{word-spacing:-13.280000pt;}
.ws3b{word-spacing:-13.184000pt;}
.wsb{word-spacing:-13.157867pt;}
.ws2f{word-spacing:-13.120000pt;}
.ws38{word-spacing:-13.088000pt;}
.ws2d{word-spacing:-12.992000pt;}
.ws2e{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.953600pt;}
.ws37{word-spacing:-12.944000pt;}
.ws2c{word-spacing:-12.912000pt;}
.ws2b{word-spacing:-12.864000pt;}
.ws22{word-spacing:-12.768000pt;}
.ws14{word-spacing:-12.752000pt;}
.ws39{word-spacing:-12.704000pt;}
.wsc{word-spacing:-12.656533pt;}
.ws35{word-spacing:-12.640000pt;}
.ws46{word-spacing:-12.592000pt;}
.ws3a{word-spacing:-12.560000pt;}
.ws40{word-spacing:-12.480000pt;}
.ws32{word-spacing:-12.448000pt;}
.ws3e{word-spacing:-12.432000pt;}
.ws34{word-spacing:-12.400000pt;}
.ws3d{word-spacing:-12.384000pt;}
.ws43{word-spacing:-12.368000pt;}
.ws27{word-spacing:-12.352000pt;}
.ws23{word-spacing:-12.336000pt;}
.ws31{word-spacing:-12.272000pt;}
.ws10{word-spacing:-12.241067pt;}
.ws28{word-spacing:-12.240000pt;}
.ws2a{word-spacing:-12.224000pt;}
.ws6{word-spacing:-12.192000pt;}
.ws33{word-spacing:-12.144000pt;}
.ws44{word-spacing:-12.000000pt;}
.ws1b{word-spacing:-11.872000pt;}
.ws1e{word-spacing:-11.696000pt;}
.ws0{word-spacing:-11.686400pt;}
.ws17{word-spacing:-11.680000pt;}
.ws30{word-spacing:-11.616000pt;}
.ws11{word-spacing:-11.599467pt;}
.ws21{word-spacing:-11.584000pt;}
.ws7{word-spacing:-11.568000pt;}
.ws36{word-spacing:-11.536000pt;}
.ws1c{word-spacing:-11.488000pt;}
.ws15{word-spacing:-11.472000pt;}
.ws29{word-spacing:-11.424000pt;}
.ws1d{word-spacing:-11.408000pt;}
.ws13{word-spacing:-11.376000pt;}
.ws18{word-spacing:-11.312000pt;}
.ws20{word-spacing:-11.296000pt;}
.ws1f{word-spacing:-11.280000pt;}
.ws42{word-spacing:-11.072000pt;}
.ws41{word-spacing:-10.944000pt;}
.ws25{word-spacing:-10.416000pt;}
.ws16{word-spacing:-10.336000pt;}
.ws24{word-spacing:-10.256000pt;}
.ws26{word-spacing:-10.016000pt;}
.ws8{word-spacing:-8.640000pt;}
.ws1{word-spacing:-8.512000pt;}
.ws1a{word-spacing:-7.840000pt;}
.ws19{word-spacing:-7.712000pt;}
.ws2{word-spacing:-6.585600pt;}
.wsf{word-spacing:0.000000pt;}
._3{margin-left:-2.618880pt;}
._1{margin-left:-1.152000pt;}
._0{width:1.039147pt;}
._6{width:2.138453pt;}
._8{width:3.100160pt;}
._7{width:4.130560pt;}
._10{width:5.830613pt;}
._a{width:7.145600pt;}
._5{width:8.504320pt;}
._4{width:9.395200pt;}
._11{width:10.611840pt;}
._27{width:12.480000pt;}
._9{width:13.474347pt;}
._1d{width:14.784000pt;}
._d{width:15.701333pt;}
._c{width:17.243733pt;}
._b{width:18.453973pt;}
._12{width:19.435093pt;}
._2{width:20.966400pt;}
._13{width:21.945600pt;}
._24{width:22.992000pt;}
._1b{width:23.952000pt;}
._17{width:25.392000pt;}
._14{width:26.880000pt;}
._15{width:27.883520pt;}
._20{width:29.505707pt;}
._29{width:30.538667pt;}
._1c{width:31.440000pt;}
._19{width:32.570667pt;}
._1a{width:33.504000pt;}
._e{width:35.081387pt;}
._f{width:36.320213pt;}
._21{width:37.639680pt;}
._16{width:38.832000pt;}
._23{width:39.880960pt;}
._22{width:41.093120pt;}
._2d{width:42.804267pt;}
._2b{width:44.337707pt;}
._2c{width:45.565227pt;}
._1e{width:46.748373pt;}
._1f{width:48.114560pt;}
._18{width:49.440000pt;}
._3b{width:50.810667pt;}
._3c{width:51.819520pt;}
._34{width:54.489387pt;}
._25{width:55.536000pt;}
._26{width:56.784000pt;}
._45{width:57.792000pt;}
._2a{width:58.923093pt;}
._35{width:60.360533pt;}
._36{width:61.303680pt;}
._41{width:62.465493pt;}
._3e{width:63.487360pt;}
._3d{width:64.566827pt;}
._28{width:68.450560pt;}
._39{width:69.624960pt;}
._46{width:71.114880pt;}
._47{width:72.656000pt;}
._49{width:76.330240pt;}
._30{width:78.262827pt;}
._37{width:79.824000pt;}
._33{width:80.832000pt;}
._38{width:81.760000pt;}
._42{width:82.848000pt;}
._40{width:84.469333pt;}
._3f{width:85.411413pt;}
._32{width:102.325760pt;}
._31{width:103.368533pt;}
._48{width:108.624000pt;}
._3a{width:148.416640pt;}
._43{width:152.752000pt;}
._44{width:154.032000pt;}
._2f{width:186.000000pt;}
._2e{width:186.912000pt;}
.fsc{font-size:2.560000pt;}
.fs4{font-size:16.000000pt;}
.fsa{font-size:21.120000pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fse{font-size:37.120000pt;}
.fsf{font-size:40.320000pt;}
.fs9{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fsd{font-size:66.560000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:78.929661pt;}
.y4c{bottom:-16.346667pt;}
.y41{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:1.280000pt;}
.y36{bottom:1.426667pt;}
.y13{bottom:1.440000pt;}
.y1a{bottom:1.760000pt;}
.y25{bottom:2.080000pt;}
.y4b{bottom:2.533333pt;}
.y1c{bottom:2.720000pt;}
.yb5{bottom:2.880000pt;}
.y4e{bottom:3.040000pt;}
.y22{bottom:3.200000pt;}
.yec{bottom:3.360000pt;}
.yf2{bottom:3.520000pt;}
.y20{bottom:3.840000pt;}
.y1e{bottom:4.160000pt;}
.y3c{bottom:5.746667pt;}
.y3a{bottom:5.906667pt;}
.y146{bottom:6.880000pt;}
.y101{bottom:7.026667pt;}
.y13d{bottom:7.040000pt;}
.y107{bottom:8.160000pt;}
.y2{bottom:8.640000pt;}
.y38{bottom:9.266667pt;}
.y34{bottom:9.746667pt;}
.y143{bottom:9.760000pt;}
.y51{bottom:10.400000pt;}
.y52{bottom:12.160000pt;}
.y11{bottom:12.320000pt;}
.y18{bottom:12.480000pt;}
.y9{bottom:12.800000pt;}
.y53{bottom:14.720000pt;}
.yd{bottom:15.680000pt;}
.yc3{bottom:16.320000pt;}
.yb4{bottom:16.480000pt;}
.yee{bottom:17.760000pt;}
.y4a{bottom:24.293333pt;}
.y106{bottom:27.360000pt;}
.y132{bottom:30.066667pt;}
.y33{bottom:30.226667pt;}
.y142{bottom:30.240000pt;}
.yfa{bottom:32.000000pt;}
.yfd{bottom:32.160000pt;}
.y8{bottom:40.480000pt;}
.y17{bottom:42.080000pt;}
.y54{bottom:42.240000pt;}
.y49{bottom:44.933333pt;}
.y105{bottom:46.426667pt;}
.yc{bottom:47.360000pt;}
.y131{bottom:50.546667pt;}
.y149{bottom:50.560000pt;}
.y32{bottom:50.706667pt;}
.y141{bottom:50.720000pt;}
.y3{bottom:51.840000pt;}
.y50{bottom:56.640000pt;}
.yba{bottom:57.280000pt;}
.y16{bottom:62.400000pt;}
.y104{bottom:62.746667pt;}
.y48{bottom:65.413333pt;}
.y1{bottom:66.240000pt;}
.y7{bottom:68.160000pt;}
.y130{bottom:71.026667pt;}
.y140{bottom:71.040000pt;}
.y31{bottom:71.186667pt;}
.y103{bottom:79.066667pt;}
.y47{bottom:86.533333pt;}
.y12f{bottom:91.506667pt;}
.y13f{bottom:91.520000pt;}
.y30{bottom:91.546667pt;}
.y15{bottom:92.000000pt;}
.y5{bottom:95.680000pt;}
.y6{bottom:95.840000pt;}
.y147{bottom:97.760000pt;}
.y233{bottom:99.040000pt;}
.y1f0{bottom:99.200000pt;}
.y1f1{bottom:99.360000pt;}
.y21c{bottom:100.320000pt;}
.y13b{bottom:101.440000pt;}
.y83{bottom:105.440000pt;}
.y11e{bottom:105.920000pt;}
.yb2{bottom:106.080000pt;}
.y1ca{bottom:106.720000pt;}
.y10a{bottom:107.360000pt;}
.y25d{bottom:109.920000pt;}
.y45{bottom:111.360000pt;}
.y2f{bottom:112.026667pt;}
.ye8{bottom:112.320000pt;}
.ye7{bottom:112.480000pt;}
.y1a2{bottom:115.520000pt;}
.y180{bottom:115.840000pt;}
.y167{bottom:117.920000pt;}
.yf0{bottom:118.080000pt;}
.y145{bottom:118.240000pt;}
.y21b{bottom:120.640000pt;}
.y232{bottom:120.800000pt;}
.y1ef{bottom:121.120000pt;}
.y13a{bottom:121.920000pt;}
.y82{bottom:125.120000pt;}
.yb7{bottom:125.440000pt;}
.yb1{bottom:125.920000pt;}
.y11d{bottom:126.400000pt;}
.y109{bottom:127.840000pt;}
.y25c{bottom:128.960000pt;}
.y44{bottom:131.840000pt;}
.y2e{bottom:132.506667pt;}
.ye6{bottom:132.960000pt;}
.y1a1{bottom:136.000000pt;}
.y17f{bottom:136.160000pt;}
.y166{bottom:138.400000pt;}
.y21a{bottom:140.960000pt;}
.y139{bottom:142.400000pt;}
.y231{bottom:142.560000pt;}
.y1ee{bottom:142.880000pt;}
.y81{bottom:144.960000pt;}
.yb0{bottom:145.600000pt;}
.y108{bottom:145.920000pt;}
.y11c{bottom:146.720000pt;}
.y25b{bottom:148.000000pt;}
.y1c9{bottom:148.960000pt;}
.y43{bottom:152.320000pt;}
.y2d{bottom:152.986667pt;}
.ye5{bottom:153.440000pt;}
.y102{bottom:154.400000pt;}
.y1a0{bottom:156.480000pt;}
.y17e{bottom:156.640000pt;}
.y165{bottom:158.880000pt;}
.y219{bottom:161.280000pt;}
.y138{bottom:162.880000pt;}
.y230{bottom:164.480000pt;}
.y80{bottom:164.640000pt;}
.yaf{bottom:165.440000pt;}
.y11b{bottom:167.200000pt;}
.y1c8{bottom:170.240000pt;}
.y42{bottom:172.640000pt;}
.y2c{bottom:173.466667pt;}
.ye4{bottom:173.760000pt;}
.y19f{bottom:176.800000pt;}
.y17d{bottom:177.120000pt;}
.y164{bottom:179.360000pt;}
.y218{bottom:181.600000pt;}
.y137{bottom:183.226667pt;}
.y40{bottom:183.400000pt;}
.y7f{bottom:184.506667pt;}
.yae{bottom:185.146667pt;}
.y22f{bottom:186.266667pt;}
.y1ed{bottom:186.586667pt;}
.y11a{bottom:187.706667pt;}
.y1c7{bottom:191.386667pt;}
.y2b{bottom:193.946667pt;}
.ye3{bottom:194.266667pt;}
.y2b4{bottom:196.986667pt;}
.y19e{bottom:197.306667pt;}
.y17c{bottom:197.626667pt;}
.y163{bottom:199.706667pt;}
.y3f{bottom:200.680000pt;}
.y27c{bottom:201.146667pt;}
.y217{bottom:201.946667pt;}
.y136{bottom:203.706667pt;}
.y7e{bottom:204.346667pt;}
.yad{bottom:204.986667pt;}
.y25a{bottom:205.306667pt;}
.y22e{bottom:208.026667pt;}
.y119{bottom:208.186667pt;}
.y1ec{bottom:208.346667pt;}
.y1c6{bottom:212.506667pt;}
.y2a{bottom:214.266667pt;}
.ye2{bottom:214.746667pt;}
.y28e{bottom:216.026667pt;}
.y19d{bottom:217.786667pt;}
.y3e{bottom:217.960000pt;}
.y17b{bottom:218.106667pt;}
.y162{bottom:220.186667pt;}
.y2b3{bottom:220.346667pt;}
.y216{bottom:222.266667pt;}
.y7d{bottom:224.026667pt;}
.y135{bottom:224.186667pt;}
.y259{bottom:224.506667pt;}
.yac{bottom:224.666667pt;}
.y118{bottom:228.666667pt;}
.y22d{bottom:229.946667pt;}
.y1eb{bottom:230.106667pt;}
.y1c5{bottom:233.626667pt;}
.y29{bottom:234.746667pt;}
.y28d{bottom:235.066667pt;}
.ye1{bottom:235.226667pt;}
.y3d{bottom:235.240000pt;}
.y19c{bottom:238.266667pt;}
.y17a{bottom:238.586667pt;}
.y27b{bottom:239.226667pt;}
.y161{bottom:240.666667pt;}
.y2b2{bottom:240.826667pt;}
.y215{bottom:242.746667pt;}
.y258{bottom:243.546667pt;}
.y7c{bottom:243.866667pt;}
.y100{bottom:244.360000pt;}
.yab{bottom:244.506667pt;}
.y134{bottom:244.666667pt;}
.y117{bottom:249.146667pt;}
.y22c{bottom:251.706667pt;}
.y1ea{bottom:252.026667pt;}
.y3b{bottom:252.520000pt;}
.y28c{bottom:254.106667pt;}
.y1c4{bottom:254.746667pt;}
.y28{bottom:255.226667pt;}
.ye0{bottom:255.706667pt;}
.y27a{bottom:258.426667pt;}
.y19b{bottom:258.746667pt;}
.y179{bottom:258.906667pt;}
.y160{bottom:261.146667pt;}
.y2b1{bottom:261.466667pt;}
.y257{bottom:262.586667pt;}
.y214{bottom:263.066667pt;}
.y7b{bottom:263.546667pt;}
.yaa{bottom:264.346667pt;}
.y133{bottom:265.146667pt;}
.y116{bottom:269.466667pt;}
.y39{bottom:269.640000pt;}
.y28b{bottom:273.146667pt;}
.y22b{bottom:273.466667pt;}
.y1e9{bottom:273.786667pt;}
.y27{bottom:275.706667pt;}
.y1c3{bottom:275.866667pt;}
.y12e{bottom:275.880000pt;}
.ydf{bottom:276.186667pt;}
.y279{bottom:277.466667pt;}
.y19a{bottom:279.226667pt;}
.y178{bottom:279.386667pt;}
.y15f{bottom:281.626667pt;}
.y2b0{bottom:282.106667pt;}
.y7a{bottom:283.386667pt;}
.ya9{bottom:284.026667pt;}
.y37{bottom:286.920000pt;}
.y115{bottom:289.946667pt;}
.y28a{bottom:292.346667pt;}
.y22a{bottom:295.386667pt;}
.y1e8{bottom:295.706667pt;}
.yde{bottom:296.506667pt;}
.y1c2{bottom:296.986667pt;}
.y199{bottom:299.546667pt;}
.y177{bottom:299.866667pt;}
.y256{bottom:300.826667pt;}
.y15e{bottom:302.106667pt;}
.y2af{bottom:302.586667pt;}
.y79{bottom:303.066667pt;}
.y213{bottom:303.706667pt;}
.ya8{bottom:303.866667pt;}
.y35{bottom:304.680000pt;}
.y114{bottom:310.426667pt;}
.y26{bottom:310.600000pt;}
.y289{bottom:311.386667pt;}
.y278{bottom:313.946667pt;}
.ydd{bottom:316.986667pt;}
.y229{bottom:317.146667pt;}
.y1e7{bottom:317.466667pt;}
.y1c1{bottom:318.106667pt;}
.y255{bottom:319.866667pt;}
.y198{bottom:320.026667pt;}
.y176{bottom:320.346667pt;}
.y15d{bottom:322.426667pt;}
.y78{bottom:322.906667pt;}
.y2ae{bottom:323.226667pt;}
.ya7{bottom:323.546667pt;}
.y212{bottom:324.026667pt;}
.y277{bottom:330.426667pt;}
.y113{bottom:330.906667pt;}
.y254{bottom:337.306667pt;}
.ydc{bottom:337.466667pt;}
.y228{bottom:338.906667pt;}
.y1c0{bottom:339.226667pt;}
.y197{bottom:340.506667pt;}
.y175{bottom:340.826667pt;}
.y77{bottom:342.746667pt;}
.y15c{bottom:342.906667pt;}
.ya6{bottom:343.386667pt;}
.y2ad{bottom:343.706667pt;}
.y211{bottom:344.346667pt;}
.y276{bottom:349.626667pt;}
.y112{bottom:351.386667pt;}
.y253{bottom:353.786667pt;}
.ydb{bottom:357.946667pt;}
.y1bf{bottom:360.346667pt;}
.y227{bottom:360.826667pt;}
.y196{bottom:360.986667pt;}
.y1e6{bottom:361.146667pt;}
.y174{bottom:361.306667pt;}
.y76{bottom:362.426667pt;}
.ya5{bottom:363.066667pt;}
.y15b{bottom:363.386667pt;}
.y2ac{bottom:364.346667pt;}
.y210{bottom:364.666667pt;}
.y275{bottom:368.666667pt;}
.y111{bottom:371.866667pt;}
.y252{bottom:372.826667pt;}
.y12d{bottom:378.120000pt;}
.yda{bottom:378.426667pt;}
.y195{bottom:381.466667pt;}
.y173{bottom:381.626667pt;}
.y75{bottom:382.266667pt;}
.y226{bottom:382.586667pt;}
.ya4{bottom:382.906667pt;}
.y15a{bottom:383.866667pt;}
.y20f{bottom:384.986667pt;}
.y274{bottom:387.706667pt;}
.y251{bottom:392.066667pt;}
.y110{bottom:392.226667pt;}
.yd9{bottom:398.946667pt;}
.y2ab{bottom:400.866667pt;}
.y194{bottom:401.826667pt;}
.y74{bottom:401.986667pt;}
.y172{bottom:402.146667pt;}
.ya3{bottom:402.626667pt;}
.y1be{bottom:402.786667pt;}
.y159{bottom:404.386667pt;}
.y1e5{bottom:404.706667pt;}
.y20e{bottom:405.506667pt;}
.y273{bottom:406.946667pt;}
.y250{bottom:411.106667pt;}
.y10f{bottom:412.706667pt;}
.yd8{bottom:419.266667pt;}
.y2aa{bottom:421.506667pt;}
.y73{bottom:421.826667pt;}
.y193{bottom:422.306667pt;}
.ya2{bottom:422.466667pt;}
.y171{bottom:422.626667pt;}
.y1bd{bottom:423.906667pt;}
.y272{bottom:424.226667pt;}
.y158{bottom:424.706667pt;}
.y20d{bottom:425.826667pt;}
.y288{bottom:425.986667pt;}
.y225{bottom:426.306667pt;}
.y1e4{bottom:426.626667pt;}
.y24f{bottom:428.546667pt;}
.y10e{bottom:433.186667pt;}
.yd7{bottom:439.746667pt;}
.y271{bottom:440.866667pt;}
.y72{bottom:441.506667pt;}
.y2a9{bottom:441.986667pt;}
.ya1{bottom:442.306667pt;}
.y192{bottom:442.786667pt;}
.y170{bottom:443.106667pt;}
.y1bc{bottom:445.026667pt;}
.y157{bottom:445.186667pt;}
.y20c{bottom:446.146667pt;}
.y224{bottom:448.066667pt;}
.y1e3{bottom:448.386667pt;}
.y10d{bottom:453.666667pt;}
.y270{bottom:459.906667pt;}
.yd6{bottom:460.226667pt;}
.y71{bottom:461.346667pt;}
.ya0{bottom:461.986667pt;}
.y287{bottom:462.466667pt;}
.y2a8{bottom:462.626667pt;}
.y191{bottom:463.266667pt;}
.y16f{bottom:463.586667pt;}
.y24e{bottom:464.066667pt;}
.y156{bottom:465.666667pt;}
.y1bb{bottom:466.146667pt;}
.y20b{bottom:466.466667pt;}
.y223{bottom:469.826667pt;}
.y1e2{bottom:470.146667pt;}
.y144{bottom:473.666667pt;}
.y10c{bottom:474.146667pt;}
.y26f{bottom:478.946667pt;}
.yd5{bottom:480.706667pt;}
.y70{bottom:481.026667pt;}
.y2a7{bottom:481.186667pt;}
.y9f{bottom:481.826667pt;}
.y24d{bottom:483.266667pt;}
.y190{bottom:483.746667pt;}
.y16e{bottom:484.066667pt;}
.y13e{bottom:484.386667pt;}
.y155{bottom:486.146667pt;}
.y20a{bottom:486.786667pt;}
.y1ba{bottom:487.266667pt;}
.y222{bottom:491.746667pt;}
.y1e1{bottom:492.066667pt;}
.y10b{bottom:494.626667pt;}
.y26e{bottom:498.146667pt;}
.y2a6{bottom:499.106667pt;}
.y6f{bottom:500.866667pt;}
.yd4{bottom:501.186667pt;}
.y9e{bottom:501.506667pt;}
.y24c{bottom:502.306667pt;}
.y18f{bottom:504.226667pt;}
.y16d{bottom:504.386667pt;}
.y154{bottom:506.626667pt;}
.y209{bottom:507.106667pt;}
.y1b9{bottom:508.386667pt;}
.yff{bottom:512.706667pt;}
.y221{bottom:513.506667pt;}
.y1e0{bottom:513.826667pt;}
.y26d{bottom:515.426667pt;}
.y286{bottom:517.186667pt;}
.y2a5{bottom:519.746667pt;}
.y6e{bottom:520.706667pt;}
.y9d{bottom:521.346667pt;}
.yd3{bottom:521.666667pt;}
.yfc{bottom:523.106667pt;}
.y18e{bottom:524.546667pt;}
.y16c{bottom:524.866667pt;}
.y153{bottom:527.106667pt;}
.y208{bottom:527.426667pt;}
.y1b8{bottom:529.506667pt;}
.y26c{bottom:532.066667pt;}
.y220{bottom:535.266667pt;}
.y1df{bottom:535.586667pt;}
.y285{bottom:536.226667pt;}
.y24b{bottom:538.786667pt;}
.y2a4{bottom:540.226667pt;}
.y6d{bottom:540.386667pt;}
.y9c{bottom:541.026667pt;}
.yd2{bottom:541.986667pt;}
.y18d{bottom:545.026667pt;}
.y16b{bottom:545.346667pt;}
.y152{bottom:547.426667pt;}
.y207{bottom:547.746667pt;}
.y1b7{bottom:550.626667pt;}
.y26b{bottom:551.106667pt;}
.yfe{bottom:551.746667pt;}
.y24a{bottom:555.266667pt;}
.y21f{bottom:557.186667pt;}
.y1de{bottom:557.506667pt;}
.y6c{bottom:560.226667pt;}
.y9b{bottom:560.866667pt;}
.yd1{bottom:562.466667pt;}
.y18c{bottom:565.506667pt;}
.y16a{bottom:565.826667pt;}
.yf9{bottom:566.146667pt;}
.y206{bottom:568.066667pt;}
.y26a{bottom:570.146667pt;}
.y1b6{bottom:571.746667pt;}
.y284{bottom:572.706667pt;}
.y151{bottom:573.826667pt;}
.y249{bottom:574.466667pt;}
.y21e{bottom:578.946667pt;}
.y1dd{bottom:579.266667pt;}
.y2a3{bottom:579.426667pt;}
.y6b{bottom:579.906667pt;}
.yfb{bottom:580.386667pt;}
.y9a{bottom:580.706667pt;}
.yd0{bottom:582.946667pt;}
.y18b{bottom:585.986667pt;}
.y169{bottom:586.306667pt;}
.y13c{bottom:586.626667pt;}
.y150{bottom:587.426667pt;}
.y205{bottom:588.546667pt;}
.y269{bottom:589.346667pt;}
.y1b5{bottom:592.866667pt;}
.y248{bottom:593.506667pt;}
.y24{bottom:597.026667pt;}
.y2a2{bottom:597.346667pt;}
.y6a{bottom:599.746667pt;}
.y99{bottom:600.386667pt;}
.y21d{bottom:600.893333pt;}
.y1dc{bottom:601.053333pt;}
.y14f{bottom:601.853333pt;}
.ycf{bottom:603.453333pt;}
.y23{bottom:606.173333pt;}
.y18a{bottom:606.493333pt;}
.y168{bottom:606.653333pt;}
.y268{bottom:608.413333pt;}
.y204{bottom:608.893333pt;}
.yf8{bottom:609.053333pt;}
.y247{bottom:612.573333pt;}
.y1b4{bottom:614.013333pt;}
.y2a1{bottom:618.013333pt;}
.y69{bottom:619.453333pt;}
.y21{bottom:619.773333pt;}
.y98{bottom:620.253333pt;}
.y1db{bottom:622.973333pt;}
.yce{bottom:623.933333pt;}
.y189{bottom:626.973333pt;}
.y14e{bottom:627.133333pt;}
.y267{bottom:627.453333pt;}
.y203{bottom:629.213333pt;}
.y246{bottom:630.013333pt;}
.y1f{bottom:634.973333pt;}
.y1b3{bottom:635.133333pt;}
.yef{bottom:637.693333pt;}
.y2a0{bottom:638.653333pt;}
.y68{bottom:639.293333pt;}
.y97{bottom:639.933333pt;}
.ycd{bottom:644.253333pt;}
.y1da{bottom:644.733333pt;}
.y266{bottom:644.893333pt;}
.y245{bottom:646.493333pt;}
.y188{bottom:647.293333pt;}
.y14d{bottom:647.613333pt;}
.y202{bottom:649.533333pt;}
.y1d{bottom:651.133333pt;}
.yf7{bottom:652.093333pt;}
.y1b2{bottom:656.413333pt;}
.y67{bottom:659.133333pt;}
.y96{bottom:659.773333pt;}
.y265{bottom:661.373333pt;}
.ycc{bottom:664.733333pt;}
.y244{bottom:665.693333pt;}
.y1b{bottom:666.333333pt;}
.y1d9{bottom:666.493333pt;}
.y187{bottom:667.773333pt;}
.y14c{bottom:668.093333pt;}
.y201{bottom:669.853333pt;}
.y1b1{bottom:677.533333pt;}
.y66{bottom:678.813333pt;}
.y95{bottom:679.453333pt;}
.y29f{bottom:679.773333pt;}
.y19{bottom:679.933333pt;}
.y264{bottom:680.573333pt;}
.yf6{bottom:680.733333pt;}
.y243{bottom:684.733333pt;}
.ycb{bottom:685.213333pt;}
.y14{bottom:687.293333pt;}
.y186{bottom:688.253333pt;}
.y1d8{bottom:688.413333pt;}
.y14b{bottom:688.573333pt;}
.y200{bottom:690.173333pt;}
.yf5{bottom:694.973333pt;}
.y29e{bottom:698.333333pt;}
.y65{bottom:698.653333pt;}
.y94{bottom:699.293333pt;}
.y263{bottom:699.613333pt;}
.y242{bottom:702.173333pt;}
.yca{bottom:705.693333pt;}
.y185{bottom:708.733333pt;}
.y14a{bottom:709.053333pt;}
.yf4{bottom:709.373333pt;}
.y1d7{bottom:710.173333pt;}
.y1ff{bottom:710.493333pt;}
.y29d{bottom:716.253333pt;}
.y64{bottom:718.333333pt;}
.y241{bottom:718.653333pt;}
.y93{bottom:719.133333pt;}
.y1b0{bottom:719.773333pt;}
.yf3{bottom:723.613333pt;}
.yc9{bottom:726.173333pt;}
.y184{bottom:729.213333pt;}
.y12c{bottom:729.373333pt;}
.y1fe{bottom:730.813333pt;}
.y1d6{bottom:731.933333pt;}
.y29c{bottom:736.893333pt;}
.y240{bottom:737.693333pt;}
.y63{bottom:738.173333pt;}
.y92{bottom:738.813333pt;}
.y1af{bottom:740.893333pt;}
.yc8{bottom:746.653333pt;}
.y183{bottom:749.693333pt;}
.y12b{bottom:749.853333pt;}
.y1fd{bottom:751.133333pt;}
.yf1{bottom:752.253333pt;}
.y1d5{bottom:753.853333pt;}
.y23f{bottom:756.893333pt;}
.y29b{bottom:757.373333pt;}
.y62{bottom:757.853333pt;}
.y91{bottom:758.653333pt;}
.y1ae{bottom:762.013333pt;}
.yed{bottom:766.653333pt;}
.yc7{bottom:766.973333pt;}
.y182{bottom:770.013333pt;}
.y12a{bottom:770.333333pt;}
.y1fc{bottom:771.613333pt;}
.y23e{bottom:774.333333pt;}
.y1d4{bottom:775.613333pt;}
.y262{bottom:775.933333pt;}
.y61{bottom:777.693333pt;}
.y29a{bottom:778.013333pt;}
.y90{bottom:778.333333pt;}
.y1ad{bottom:783.133333pt;}
.yc6{bottom:786.653333pt;}
.y12{bottom:787.133333pt;}
.y181{bottom:790.653333pt;}
.y129{bottom:790.813333pt;}
.y1fb{bottom:791.933333pt;}
.y261{bottom:794.973333pt;}
.y10{bottom:795.293333pt;}
.yeb{bottom:795.933333pt;}
.y60{bottom:797.533333pt;}
.y8f{bottom:798.173333pt;}
.y299{bottom:798.493333pt;}
.yc5{bottom:799.613333pt;}
.y1ac{bottom:804.253333pt;}
.y23d{bottom:809.893333pt;}
.y128{bottom:811.333333pt;}
.y1fa{bottom:812.293333pt;}
.y260{bottom:812.453333pt;}
.yc2{bottom:813.253333pt;}
.y283{bottom:814.213333pt;}
.y298{bottom:817.093333pt;}
.y5f{bottom:817.253333pt;}
.y8e{bottom:817.893333pt;}
.y1d3{bottom:819.333333pt;}
.ye{bottom:820.133333pt;}
.yea{bottom:821.893333pt;}
.yb{bottom:824.773333pt;}
.y1ab{bottom:825.413333pt;}
.yc4{bottom:826.853333pt;}
.y23c{bottom:828.933333pt;}
.y127{bottom:831.813333pt;}
.y1f9{bottom:832.613333pt;}
.y282{bottom:833.253333pt;}
.y297{bottom:835.173333pt;}
.y5e{bottom:837.093333pt;}
.y8d{bottom:837.733333pt;}
.ye9{bottom:840.133333pt;}
.yb6{bottom:840.453333pt;}
.y1d2{bottom:841.093333pt;}
.y1aa{bottom:846.533333pt;}
.y23b{bottom:848.133333pt;}
.y126{bottom:852.133333pt;}
.y281{bottom:852.293333pt;}
.y1f8{bottom:852.933333pt;}
.yc0{bottom:854.053333pt;}
.y296{bottom:855.653333pt;}
.y5d{bottom:856.773333pt;}
.y8c{bottom:857.413333pt;}
.y1d1{bottom:863.013333pt;}
.y23a{bottom:867.173333pt;}
.y1a9{bottom:867.653333pt;}
.yc1{bottom:867.813333pt;}
.y280{bottom:869.733333pt;}
.y125{bottom:872.613333pt;}
.y1f7{bottom:873.253333pt;}
.y295{bottom:876.293333pt;}
.y5c{bottom:876.613333pt;}
.y8b{bottom:877.253333pt;}
.ybf{bottom:881.413333pt;}
.y1d0{bottom:884.773333pt;}
.y239{bottom:886.213333pt;}
.y1a8{bottom:888.773333pt;}
.y124{bottom:893.093333pt;}
.y1f6{bottom:893.573333pt;}
.yb9{bottom:895.013333pt;}
.y5b{bottom:896.293333pt;}
.y294{bottom:896.773333pt;}
.y8a{bottom:897.093333pt;}
.ya{bottom:900.933333pt;}
.y238{bottom:903.653333pt;}
.y25f{bottom:905.413333pt;}
.y1cf{bottom:906.533333pt;}
.ybe{bottom:908.613333pt;}
.y1a7{bottom:910.053333pt;}
.y123{bottom:913.573333pt;}
.y1f5{bottom:913.893333pt;}
.y293{bottom:915.333333pt;}
.y4{bottom:915.813333pt;}
.y5a{bottom:916.133333pt;}
.y89{bottom:916.773333pt;}
.y237{bottom:920.133333pt;}
.ybd{bottom:922.213333pt;}
.y25e{bottom:922.693333pt;}
.y148{bottom:924.293333pt;}
.y27f{bottom:924.453333pt;}
.y46{bottom:927.360000pt;}
.y1ce{bottom:928.453333pt;}
.y1a6{bottom:931.173333pt;}
.y292{bottom:933.413333pt;}
.y122{bottom:934.053333pt;}
.y1f4{bottom:934.373333pt;}
.y59{bottom:935.813333pt;}
.ybc{bottom:935.973333pt;}
.y88{bottom:936.613333pt;}
.y236{bottom:939.333333pt;}
.y27e{bottom:943.493333pt;}
.ybb{bottom:949.573333pt;}
.y1cd{bottom:950.213333pt;}
.y1a5{bottom:952.293333pt;}
.y291{bottom:953.893333pt;}
.y121{bottom:954.533333pt;}
.y1f3{bottom:954.693333pt;}
.y58{bottom:955.653333pt;}
.y87{bottom:956.293333pt;}
.y235{bottom:958.373333pt;}
.y27d{bottom:960.933333pt;}
.yb8{bottom:963.173333pt;}
.y1cc{bottom:971.973333pt;}
.y1a4{bottom:973.413333pt;}
.y290{bottom:974.533333pt;}
.y120{bottom:974.853333pt;}
.y1f2{bottom:975.013333pt;}
.y57{bottom:975.493333pt;}
.y86{bottom:976.133333pt;}
.yb3{bottom:977.413333pt;}
.y1cb{bottom:993.893333pt;}
.y1a3{bottom:994.533333pt;}
.y28f{bottom:995.013333pt;}
.y56{bottom:995.173333pt;}
.y11f{bottom:995.333333pt;}
.y85{bottom:995.813333pt;}
.y234{bottom:996.613333pt;}
.y84{bottom:1015.653333pt;}
.y55{bottom:1015.813333pt;}
.y4f{bottom:1032.000000pt;}
.y4d{bottom:1054.080000pt;}
.h2b{height:1.782500pt;}
.ha{height:4.626667pt;}
.h21{height:5.906667pt;}
.h13{height:7.360000pt;}
.he{height:8.160000pt;}
.h1d{height:9.146667pt;}
.hb{height:10.835938pt;}
.h38{height:13.586667pt;}
.h15{height:13.600000pt;}
.h3c{height:13.620000pt;}
.h3a{height:13.746667pt;}
.h51{height:13.786667pt;}
.h45{height:14.226667pt;}
.h42{height:14.240000pt;}
.h3e{height:14.260000pt;}
.h47{height:14.386667pt;}
.h41{height:14.400000pt;}
.h22{height:14.705625pt;}
.h17{height:15.200000pt;}
.h31{height:15.680000pt;}
.h19{height:16.160000pt;}
.h28{height:17.106667pt;}
.h25{height:17.266667pt;}
.h23{height:17.746667pt;}
.h14{height:18.716250pt;}
.hf{height:20.422500pt;}
.h4f{height:20.478667pt;}
.h2{height:21.278667pt;}
.h11{height:21.316250pt;}
.h26{height:24.063750pt;}
.h32{height:24.798667pt;}
.hc{height:24.820000pt;}
.h24{height:25.907188pt;}
.h3b{height:27.186667pt;}
.h36{height:27.346667pt;}
.h48{height:28.626667pt;}
.h3f{height:28.640000pt;}
.h44{height:28.666667pt;}
.h34{height:30.830625pt;}
.h1e{height:31.640625pt;}
.h3d{height:33.857500pt;}
.h29{height:35.975313pt;}
.h35{height:36.304688pt;}
.h52{height:36.703125pt;}
.h27{height:36.986875pt;}
.h18{height:39.840000pt;}
.h12{height:39.876250pt;}
.h1b{height:40.618125pt;}
.h43{height:42.906667pt;}
.h46{height:43.026667pt;}
.hd{height:43.343750pt;}
.h20{height:43.781250pt;}
.h1a{height:44.533750pt;}
.h3{height:44.975625pt;}
.h16{height:47.460938pt;}
.h2e{height:48.000000pt;}
.h6{height:48.406250pt;}
.h30{height:49.852500pt;}
.h2f{height:49.920000pt;}
.h8{height:50.712187pt;}
.h1c{height:52.523438pt;}
.h9{height:53.454805pt;}
.h2d{height:56.160000pt;}
.h4{height:62.812500pt;}
.h7{height:63.346667pt;}
.h33{height:64.500000pt;}
.h39{height:68.146667pt;}
.h4a{height:89.952000pt;}
.h10{height:99.840000pt;}
.h2c{height:101.920000pt;}
.h4c{height:102.226667pt;}
.h50{height:102.266667pt;}
.h2a{height:103.506667pt;}
.h5{height:110.746667pt;}
.h40{height:128.960000pt;}
.h37{height:136.306667pt;}
.h4d{height:214.906667pt;}
.h49{height:260.973333pt;}
.h1f{height:286.413333pt;}
.h4b{height:341.653333pt;}
.h4e{height:345.665333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:46.390667pt;}
.w1c{width:79.026667pt;}
.w1b{width:86.898667pt;}
.w1a{width:87.026667pt;}
.w4{width:90.070667pt;}
.w17{width:91.830667pt;}
.w22{width:101.618667pt;}
.w16{width:107.026667pt;}
.w1f{width:110.710667pt;}
.w19{width:118.432000pt;}
.w21{width:119.872000pt;}
.w14{width:128.640000pt;}
.w23{width:129.106667pt;}
.w18{width:136.813333pt;}
.w9{width:137.270667pt;}
.w20{width:138.573333pt;}
.w13{width:149.617333pt;}
.w15{width:214.786667pt;}
.w3{width:235.693333pt;}
.w11{width:249.173333pt;}
.w8{width:258.733333pt;}
.w1e{width:288.013333pt;}
.w1d{width:288.017333pt;}
.wc{width:289.613333pt;}
.wf{width:296.493333pt;}
.we{width:300.697333pt;}
.w12{width:301.613333pt;}
.wb{width:310.457333pt;}
.w7{width:341.337333pt;}
.w2{width:368.377333pt;}
.wa{width:462.800000pt;}
.wd{width:509.920000pt;}
.w5{width:511.760000pt;}
.w6{width:600.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:3.350667pt;}
.x19{left:5.746667pt;}
.x17{left:15.830667pt;}
.x30{left:17.906667pt;}
.x2d{left:18.866667pt;}
.x31{left:19.986667pt;}
.x2b{left:22.880000pt;}
.x20{left:25.440000pt;}
.xb{left:26.546667pt;}
.x1b{left:28.946667pt;}
.xf{left:34.106667pt;}
.x2f{left:45.120000pt;}
.x22{left:47.840000pt;}
.x21{left:51.040000pt;}
.x1{left:94.921333pt;}
.x5{left:96.032000pt;}
.x16{left:108.466667pt;}
.x1c{left:127.506667pt;}
.x18{left:146.120000pt;}
.x4{left:167.226667pt;}
.x6{left:186.120000pt;}
.x23{left:187.880000pt;}
.x7{left:189.625333pt;}
.x10{left:196.546667pt;}
.x29{left:206.760000pt;}
.xc{left:234.120000pt;}
.x11{left:243.293333pt;}
.x1d{left:245.666667pt;}
.x12{left:269.693333pt;}
.x28{left:288.025333pt;}
.x13{left:303.133333pt;}
.x24{left:324.706667pt;}
.x2a{left:345.346667pt;}
.x1e{left:374.306667pt;}
.x1a{left:395.306667pt;}
.x15{left:400.426667pt;}
.xd{left:407.306667pt;}
.xe{left:411.293333pt;}
.xa{left:438.186667pt;}
.x25{left:443.146667pt;}
.x3{left:463.306667pt;}
.x2c{left:465.226667pt;}
.x8{left:498.492000pt;}
.x9{left:503.452000pt;}
.x14{left:510.213333pt;}
.x26{left:530.186667pt;}
.x2e{left:567.013333pt;}
.x1f{left:589.093333pt;}
.x27{left:617.093333pt;}
}




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