
    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_7fd02e422d0b37d57957eac3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_dc970594fda0583d59e9d7ee.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.222000;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_11edfae8e1f56a853b908394.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.197000;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_7fa5a432d5704b489cc76f01.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_135eba6435a1430a778a4d4b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5d97cad189ad7a9cbdcd003f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.049805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_38df47b8a9bb338bf9fc70aa.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e727448d6d9b627930ed52fd.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.213000;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_db72277e26056f49eb857015.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.722656;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_451fce770689b048b07c34b2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.256000;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_451fce770689b048b07c34b2.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.256000;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_065c9e8dbf3a3e320661749a.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.230000;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_7327b919f08033d744f77152.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_204121730e55fdc277212653.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.303000;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_ee4d6e2eb4f2ec4d3b216052.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.920000;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_3f582e69fbc4e348e80e58c2.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.725000;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_0c68e7fde14c7e6f69f84ecf.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.431000;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_e2ea73341368828f0bbf6639.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.665000;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_852f6ca87eba6bb135c908ab.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.909000;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_da78a3b06b102b29352b9484.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.888000;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_0c68e7fde14c7e6f69f84ecf.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.431000;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_852f6ca87eba6bb135c908ab.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.909000;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_852f6ca87eba6bb135c908ab.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.909000;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_160398da124b1ee7ffac9618.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.705000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_3311d4695c6d205846b40f94.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.705000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_da78a3b06b102b29352b9484.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.888000;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:ff1d;src:url('chunks/assets/font_0ed6b2d9002e34cc6280bcbd.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.036000;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:ff1e;src:url('chunks/assets/font_0c68e7fde14c7e6f69f84ecf.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.431000;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:ff1f;src:url('chunks/assets/font_3ba96d241aac7bfc78ec10fe.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.661000;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:ff20;src:url('chunks/assets/font_852f6ca87eba6bb135c908ab.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.909000;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:ff21;src:url('chunks/assets/font_da78a3b06b102b29352b9484.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.888000;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:ff22;src:url('chunks/assets/font_da78a3b06b102b29352b9484.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.888000;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:ff23;src:url('chunks/assets/font_da78a3b06b102b29352b9484.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.888000;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:ff24;src:url('chunks/assets/font_852f6ca87eba6bb135c908ab.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.909000;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:ff25;src:url('chunks/assets/font_852f6ca87eba6bb135c908ab.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.909000;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:ff26;src:url('chunks/assets/font_3f582e69fbc4e348e80e58c2.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.725000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{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:-19.200003px;}
.v4{vertical-align:-13.247314px;}
.v7{vertical-align:-9.107300px;}
.v3{vertical-align:-2.525940px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:4.140015px;}
.v8{vertical-align:9.107300px;}
.v5{vertical-align:13.247314px;}
.v9{vertical-align:19.200073px;}
.v1{vertical-align:24.000000px;}
.ls9{letter-spacing:-1.680000px;}
.ls25{letter-spacing:-1.008000px;}
.ls20{letter-spacing:-0.336000px;}
.ls34{letter-spacing:-0.296967px;}
.ls22{letter-spacing:-0.240000px;}
.ls33{letter-spacing:-0.178180px;}
.ls19{letter-spacing:-0.059393px;}
.ls0{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.000009px;}
.ls4{letter-spacing:0.000033px;}
.ls30{letter-spacing:0.000558px;}
.ls3{letter-spacing:0.000583px;}
.ls18{letter-spacing:0.000606px;}
.ls14{letter-spacing:0.033379px;}
.ls17{letter-spacing:0.034352px;}
.lsd{letter-spacing:0.059393px;}
.lse{letter-spacing:0.118787px;}
.ls1e{letter-spacing:0.144000px;}
.ls35{letter-spacing:0.237574px;}
.lsf{letter-spacing:0.247471px;}
.ls23{letter-spacing:0.288000px;}
.ls1b{letter-spacing:0.288716px;}
.ls1f{letter-spacing:0.384000px;}
.ls36{letter-spacing:0.415754px;}
.ls8{letter-spacing:0.420000px;}
.ls16{letter-spacing:0.440715px;}
.ls2b{letter-spacing:0.475147px;}
.ls29{letter-spacing:0.480000px;}
.ls1d{letter-spacing:0.768000px;}
.ls6{letter-spacing:0.840637px;}
.ls26{letter-spacing:0.912000px;}
.ls28{letter-spacing:0.960000px;}
.ls7{letter-spacing:1.199986px;}
.ls5{letter-spacing:1.200000px;}
.ls2f{letter-spacing:1.781802px;}
.ls37{letter-spacing:1.959982px;}
.ls32{letter-spacing:2.553916px;}
.ls1a{letter-spacing:2.850883px;}
.ls1{letter-spacing:3.360000px;}
.ls31{letter-spacing:13.007155px;}
.ls2d{letter-spacing:13.066541px;}
.ls12{letter-spacing:13.066548px;}
.lsc{letter-spacing:13.363515px;}
.ls11{letter-spacing:13.601089px;}
.ls10{letter-spacing:13.760794px;}
.ls2e{letter-spacing:14.195023px;}
.ls15{letter-spacing:14.420547px;}
.ls2c{letter-spacing:15.026530px;}
.ls13{letter-spacing:15.204206px;}
.lsa{letter-spacing:16.095611px;}
.lsb{letter-spacing:16.808332px;}
.ls2{letter-spacing:30.703787px;}
.ls21{letter-spacing:210.415210px;}
.ls1c{letter-spacing:315.165591px;}
.ls24{letter-spacing:660.291019px;}
.ls27{letter-spacing:769.984836px;}
.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;}
}
.ws51{word-spacing:-16.200000px;}
.ws5b{word-spacing:-15.420000px;}
.wsf{word-spacing:-15.000000px;}
.wse3{word-spacing:-13.422908px;}
.wsb1{word-spacing:-13.332000px;}
.wsd2{word-spacing:-12.960000px;}
.wsbe{word-spacing:-12.912000px;}
.wsac{word-spacing:-12.768000px;}
.wsd3{word-spacing:-12.480000px;}
.ws3{word-spacing:-12.420000px;}
.ws89{word-spacing:-12.384000px;}
.wsae{word-spacing:-12.288000px;}
.ws88{word-spacing:-12.144000px;}
.ws2{word-spacing:-12.120000px;}
.ws4{word-spacing:-12.000000px;}
.wsad{word-spacing:-11.760000px;}
.ws8a{word-spacing:-11.664000px;}
.ws38{word-spacing:-11.520000px;}
.wsee{word-spacing:-11.340000px;}
.ws39{word-spacing:-10.500000px;}
.ws1{word-spacing:-9.408000px;}
.wsd6{word-spacing:-9.216000px;}
.ws5{word-spacing:-8.400000px;}
.ws67{word-spacing:-6.000000px;}
.ws22{word-spacing:-3.720000px;}
.ws98{word-spacing:-3.240000px;}
.ws68{word-spacing:-2.910277px;}
.ws99{word-spacing:-2.820000px;}
.ws54{word-spacing:-2.760000px;}
.ws3e{word-spacing:-2.640000px;}
.wse5{word-spacing:-2.613310px;}
.ws45{word-spacing:-2.448000px;}
.ws5a{word-spacing:-2.400000px;}
.ws106{word-spacing:-2.352000px;}
.ws16{word-spacing:-2.220000px;}
.ws59{word-spacing:-2.160000px;}
.ws36{word-spacing:-2.100000px;}
.ws107{word-spacing:-2.064000px;}
.wsea{word-spacing:-2.019376px;}
.ws56{word-spacing:-1.980000px;}
.ws3b{word-spacing:-1.920000px;}
.wse7{word-spacing:-1.841195px;}
.ws3d{word-spacing:-1.740000px;}
.ws8f{word-spacing:-1.728000px;}
.ws27{word-spacing:-1.560000px;}
.ws2e{word-spacing:-1.500000px;}
.ws57{word-spacing:-1.200000px;}
.ws10b{word-spacing:-1.152000px;}
.ws4d{word-spacing:-1.140000px;}
.ws32{word-spacing:-1.080000px;}
.ws103{word-spacing:-1.056000px;}
.ws50{word-spacing:-1.020000px;}
.ws44{word-spacing:-0.960000px;}
.ws10f{word-spacing:-0.912000px;}
.ws34{word-spacing:-0.900000px;}
.wsf8{word-spacing:-0.864000px;}
.ws30{word-spacing:-0.780000px;}
.wsf5{word-spacing:-0.624000px;}
.ws2a{word-spacing:-0.600000px;}
.ws8e{word-spacing:-0.576000px;}
.ws6{word-spacing:-0.480000px;}
.wse9{word-spacing:-0.475147px;}
.ws64{word-spacing:-0.420000px;}
.wsff{word-spacing:-0.384000px;}
.ws6d{word-spacing:-0.329962px;}
.ws3c{word-spacing:-0.300000px;}
.ws6f{word-spacing:-0.288716px;}
.ws1c{word-spacing:-0.240000px;}
.ws49{word-spacing:-0.180000px;}
.ws6b{word-spacing:-0.178180px;}
.wsc1{word-spacing:-0.144000px;}
.ws96{word-spacing:-0.120000px;}
.ws6a{word-spacing:-0.118787px;}
.ws41{word-spacing:-0.060000px;}
.ws6c{word-spacing:-0.059393px;}
.wsf6{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws4f{word-spacing:0.060000px;}
.wse4{word-spacing:0.118787px;}
.ws4e{word-spacing:0.120000px;}
.wsed{word-spacing:0.178180px;}
.ws17{word-spacing:0.180000px;}
.wse2{word-spacing:0.237574px;}
.wsb0{word-spacing:0.240000px;}
.ws91{word-spacing:0.300000px;}
.ws37{word-spacing:0.336000px;}
.ws31{word-spacing:0.360000px;}
.ws1f{word-spacing:0.420000px;}
.wsfb{word-spacing:0.432000px;}
.ws46{word-spacing:0.480000px;}
.wsf3{word-spacing:0.576000px;}
.ws3a{word-spacing:0.600000px;}
.ws10d{word-spacing:0.624000px;}
.ws76{word-spacing:0.720000px;}
.ws58{word-spacing:0.780000px;}
.ws110{word-spacing:0.912000px;}
.ws102{word-spacing:0.960000px;}
.wsc0{word-spacing:1.008000px;}
.ws21{word-spacing:1.020000px;}
.wsaf{word-spacing:1.080000px;}
.wsfe{word-spacing:1.104000px;}
.ws92{word-spacing:1.200000px;}
.ws4a{word-spacing:1.260000px;}
.ws4b{word-spacing:1.320000px;}
.ws63{word-spacing:1.500000px;}
.ws52{word-spacing:1.560000px;}
.ws26{word-spacing:1.680000px;}
.ws97{word-spacing:1.740000px;}
.wsef{word-spacing:1.776000px;}
.ws104{word-spacing:1.824000px;}
.ws70{word-spacing:1.860000px;}
.ws8d{word-spacing:1.968000px;}
.ws35{word-spacing:1.980000px;}
.ws13{word-spacing:2.040000px;}
.ws10c{word-spacing:2.064000px;}
.ws75{word-spacing:2.220000px;}
.ws24{word-spacing:2.280000px;}
.ws1b{word-spacing:2.352000px;}
.ws28{word-spacing:2.400000px;}
.ws101{word-spacing:2.496000px;}
.wsfa{word-spacing:2.544000px;}
.wsd4{word-spacing:2.736000px;}
.ws10{word-spacing:2.832000px;}
.ws18{word-spacing:2.880000px;}
.ws4c{word-spacing:3.060000px;}
.wsfd{word-spacing:3.072000px;}
.ws19{word-spacing:3.240000px;}
.ws94{word-spacing:3.300000px;}
.ws66{word-spacing:3.420000px;}
.wsf0{word-spacing:3.456000px;}
.wse{word-spacing:3.480000px;}
.ws74{word-spacing:3.600000px;}
.ws95{word-spacing:3.660000px;}
.ws72{word-spacing:3.720000px;}
.wsc2{word-spacing:3.744000px;}
.ws33{word-spacing:3.780000px;}
.ws90{word-spacing:3.840000px;}
.ws100{word-spacing:3.888000px;}
.ws25{word-spacing:4.020000px;}
.wsbf{word-spacing:4.080000px;}
.ws8b{word-spacing:4.140000px;}
.ws9{word-spacing:4.320000px;}
.ws1a{word-spacing:4.380000px;}
.wsf1{word-spacing:4.416000px;}
.wsd{word-spacing:4.500000px;}
.ws29{word-spacing:4.620000px;}
.wsd5{word-spacing:4.896000px;}
.ws2b{word-spacing:4.920000px;}
.wsf4{word-spacing:4.944000px;}
.ws3f{word-spacing:4.980000px;}
.ws55{word-spacing:5.100000px;}
.ws10a{word-spacing:5.184000px;}
.wsa{word-spacing:5.220000px;}
.wsb{word-spacing:5.280000px;}
.ws93{word-spacing:5.460000px;}
.ws105{word-spacing:5.712000px;}
.ws73{word-spacing:5.820000px;}
.ws40{word-spacing:5.940000px;}
.ws71{word-spacing:6.120000px;}
.ws109{word-spacing:6.144000px;}
.ws7{word-spacing:6.420000px;}
.ws47{word-spacing:6.480000px;}
.ws77{word-spacing:6.600000px;}
.ws20{word-spacing:6.660000px;}
.ws1d{word-spacing:6.720000px;}
.ws14{word-spacing:6.780000px;}
.wsf2{word-spacing:6.864000px;}
.ws23{word-spacing:7.020000px;}
.ws65{word-spacing:7.080000px;}
.ws2d{word-spacing:7.140000px;}
.ws15{word-spacing:7.200000px;}
.ws12{word-spacing:7.260000px;}
.ws8c{word-spacing:7.680000px;}
.ws42{word-spacing:7.740000px;}
.ws1e{word-spacing:7.860000px;}
.ws2c{word-spacing:8.760000px;}
.ws43{word-spacing:9.000000px;}
.wsfc{word-spacing:10.272000px;}
.ws10e{word-spacing:10.560000px;}
.ws8{word-spacing:10.620000px;}
.ws108{word-spacing:10.800000px;}
.wseb{word-spacing:11.047166px;}
.wse6{word-spacing:11.344139px;}
.wse8{word-spacing:12.532007px;}
.ws6e{word-spacing:13.813123px;}
.wsf7{word-spacing:14.688000px;}
.wsc{word-spacing:15.660000px;}
.ws2f{word-spacing:17.094000px;}
.ws69{word-spacing:17.953137px;}
.ws48{word-spacing:18.480000px;}
.ws53{word-spacing:18.660000px;}
.ws11{word-spacing:19.668000px;}
.wsf9{word-spacing:21.696000px;}
.wsa5{word-spacing:22.015778px;}
.ws60{word-spacing:25.319361px;}
.ws5e{word-spacing:25.701050px;}
.ws5c{word-spacing:44.373050px;}
.wsa0{word-spacing:46.015686px;}
.wsa7{word-spacing:46.015778px;}
.ws5d{word-spacing:57.479361px;}
.wsa2{word-spacing:57.815431px;}
.wse1{word-spacing:61.876800px;}
.wsa1{word-spacing:62.047686px;}
.wsa4{word-spacing:62.047778px;}
.ws7f{word-spacing:64.966095px;}
.ws7d{word-spacing:64.966187px;}
.wsa6{word-spacing:70.015778px;}
.wsa3{word-spacing:78.031778px;}
.ws81{word-spacing:88.966095px;}
.ws5f{word-spacing:93.759521px;}
.wsa9{word-spacing:94.015778px;}
.wsa8{word-spacing:100.535431px;}
.ws7e{word-spacing:104.998187px;}
.wsaa{word-spacing:106.015778px;}
.ws80{word-spacing:112.966095px;}
.ws83{word-spacing:120.982187px;}
.wsab{word-spacing:130.015778px;}
.ws84{word-spacing:136.966187px;}
.ws86{word-spacing:148.966187px;}
.wsdc{word-spacing:163.204800px;}
.ws87{word-spacing:172.966187px;}
.ws78{word-spacing:177.365997px;}
.wsde{word-spacing:179.140800px;}
.wse0{word-spacing:192.484800px;}
.wsd7{word-spacing:211.190400px;}
.wsd9{word-spacing:216.484800px;}
.wsb2{word-spacing:224.742554px;}
.wsdd{word-spacing:229.828800px;}
.ws85{word-spacing:230.645997px;}
.wsda{word-spacing:243.172800px;}
.wsb5{word-spacing:244.927734px;}
.wsdb{word-spacing:248.452800px;}
.wsb7{word-spacing:248.742554px;}
.wsb3{word-spacing:264.774554px;}
.wscb{word-spacing:266.968140px;}
.wsb6{word-spacing:272.742554px;}
.ws9f{word-spacing:276.063555px;}
.wsdf{word-spacing:280.468800px;}
.wsec{word-spacing:283.108800px;}
.wsc3{word-spacing:290.968140px;}
.wsbd{word-spacing:296.742554px;}
.wsb9{word-spacing:298.523354px;}
.ws61{word-spacing:298.870851px;}
.ws7c{word-spacing:299.909997px;}
.wsc4{word-spacing:307.000140px;}
.ws9e{word-spacing:308.031555px;}
.wsbb{word-spacing:308.742554px;}
.wscc{word-spacing:314.968140px;}
.ws7a{word-spacing:321.932373px;}
.wsca{word-spacing:322.984140px;}
.wsbc{word-spacing:332.742554px;}
.wsce{word-spacing:338.968140px;}
.ws62{word-spacing:341.590851px;}
.ws82{word-spacing:342.629997px;}
.wsd0{word-spacing:350.968140px;}
.ws79{word-spacing:361.964281px;}
.ws7b{word-spacing:361.964373px;}
.wsd1{word-spacing:374.968140px;}
.ws9d{word-spacing:490.079333px;}
.ws9c{word-spacing:522.047333px;}
.wscf{word-spacing:548.121034px;}
.wsba{word-spacing:575.771425px;}
.wsc9{word-spacing:617.385034px;}
.wsb4{word-spacing:645.035425px;}
.wscd{word-spacing:660.105034px;}
.wsb8{word-spacing:687.755425px;}
.ws9b{word-spacing:704.095110px;}
.ws9a{word-spacing:712.063110px;}
.wsc6{word-spacing:836.449174px;}
.wsd8{word-spacing:1047.849045px;}
.wsc5{word-spacing:1169.713174px;}
.wsc8{word-spacing:1303.433313px;}
.wsc7{word-spacing:1636.697313px;}
._b{margin-left:-66.351585px;}
._59{margin-left:-13.885054px;}
._5a{margin-left:-12.575484px;}
._2c{margin-left:-11.085000px;}
._15{margin-left:-8.440800px;}
._f{margin-left:-7.437289px;}
._10{margin-left:-6.088800px;}
._e{margin-left:-4.909835px;}
._0{margin-left:-3.892800px;}
._11{margin-left:-2.866800px;}
._1{margin-left:-1.828800px;}
._2{width:1.768800px;}
._6{width:3.082800px;}
._4{width:4.809588px;}
._5{width:6.094824px;}
._9{width:7.160352px;}
._14{width:8.169766px;}
._d{width:9.210000px;}
._8{width:10.374000px;}
._3{width:11.502000px;}
._7{width:13.002000px;}
._40{width:15.367200px;}
._a{width:17.518203px;}
._13{width:18.660000px;}
._12{width:19.668000px;}
._5b{width:21.652800px;}
._17{width:37.652321px;}
._26{width:41.495361px;}
._c{width:56.255991px;}
._45{width:67.223431px;}
._16{width:68.755758px;}
._19{width:70.051758px;}
._23{width:71.880558px;}
._1f{width:74.998851px;}
._28{width:77.686851px;}
._2a{width:88.294851px;}
._32{width:89.410185px;}
._29{width:90.982851px;}
._5c{width:100.037973px;}
._41{width:104.567431px;}
._1a{width:105.759521px;}
._44{width:107.844578px;}
._36{width:114.196838px;}
._1b{width:125.495361px;}
._34{width:130.228838px;}
._33{width:132.982095px;}
._42{width:139.223431px;}
._43{width:141.911431px;}
._3a{width:146.212838px;}
._3b{width:150.794254px;}
._38{width:162.196838px;}
._3d{width:174.196838px;}
._3e{width:179.909997px;}
._1e{width:188.326851px;}
._3f{width:198.196838px;}
._2b{width:217.800000px;}
._49{width:280.927734px;}
._18{width:292.342851px;}
._47{width:296.959734px;}
._24{width:308.278851px;}
._3c{width:309.317997px;}
._4c{width:312.943734px;}
._46{width:329.549962px;}
._4e{width:340.927734px;}
._20{width:345.622851px;}
._35{width:346.661997px;}
._52{width:350.968140px;}
._56{width:352.796940px;}
._2e{width:357.932281px;}
._1c{width:359.014851px;}
._50{width:364.927734px;}
._1d{width:369.622851px;}
._22{width:380.278851px;}
._37{width:381.317997px;}
._21{width:382.966851px;}
._39{width:384.005997px;}
._31{width:387.194292px;}
._2f{width:400.425036px;}
._25{width:404.230851px;}
._27{width:412.246851px;}
._30{width:419.774277px;}
._2d{width:432.393036px;}
._58{width:497.385034px;}
._51{width:506.841034px;}
._4f{width:525.035425px;}
._57{width:626.793034px;}
._4d{width:654.443425px;}
._53{width:664.137034px;}
._48{width:691.787425px;}
._54{width:698.793034px;}
._55{width:701.481034px;}
._4a{width:726.443425px;}
._4b{width:729.131425px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:33.600000px;}
.fsb{font-size:41.245199px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fsa{font-size:59.393400px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs9{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs8{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y16a{bottom:1.795508px;}
.ya2{bottom:2.691925px;}
.y9e{bottom:2.899109px;}
.ya0{bottom:3.519745px;}
.y153{bottom:3.552750px;}
.y15e{bottom:3.553963px;}
.y14d{bottom:3.554260px;}
.y147{bottom:3.554535px;}
.y165{bottom:4.380592px;}
.y9a{bottom:4.415588px;}
.y9c{bottom:5.278656px;}
.y97{bottom:5.279114px;}
.y40{bottom:46.736100px;}
.y6c{bottom:46.771650px;}
.y5{bottom:66.525004px;}
.y6b{bottom:89.291399px;}
.y73{bottom:90.425102px;}
.y3f{bottom:94.801500px;}
.y4{bottom:97.125005px;}
.y1d9{bottom:97.854904px;}
.y6a{bottom:103.541405px;}
.y19f{bottom:106.175102px;}
.y7e{bottom:108.341400px;}
.y72{bottom:108.425102px;}
.y123{bottom:110.106903px;}
.y1d8{bottom:112.104904px;}
.yc2{bottom:112.324196px;}
.y69{bottom:117.791405px;}
.y3e{bottom:119.133305px;}
.y19e{bottom:120.425102px;}
.y78{bottom:122.591400px;}
.y122{bottom:124.356903px;}
.y1d7{bottom:126.354904px;}
.y71{bottom:126.425102px;}
.yc1{bottom:126.574196px;}
.y68{bottom:132.041405px;}
.y3d{bottom:133.383305px;}
.y19d{bottom:134.675102px;}
.y7d{bottom:136.841400px;}
.y121{bottom:138.606903px;}
.y21{bottom:139.264499px;}
.y1d6{bottom:140.604904px;}
.yc0{bottom:140.824196px;}
.y7f{bottom:141.093600px;}
.y70{bottom:144.425102px;}
.y77{bottom:146.291405px;}
.y19c{bottom:148.925102px;}
.y7c{bottom:150.543594px;}
.y67{bottom:151.091400px;}
.y1d5{bottom:154.854904px;}
.ybf{bottom:155.074196px;}
.y76{bottom:160.541405px;}
.y6f{bottom:162.425102px;}
.y19b{bottom:163.175102px;}
.y1d4{bottom:169.104904px;}
.ybe{bottom:169.324196px;}
.y7b{bottom:169.593600px;}
.y120{bottom:170.856903px;}
.y92{bottom:174.424347px;}
.y19a{bottom:177.425102px;}
.y75{bottom:179.591400px;}
.y6e{bottom:180.425102px;}
.y7a{bottom:183.295647px;}
.y1d3{bottom:183.354904px;}
.y11f{bottom:185.106903px;}
.y199{bottom:191.675102px;}
.y91{bottom:191.880146px;}
.y18{bottom:196.933500px;}
.y1d2{bottom:197.604904px;}
.y6d{bottom:198.425102px;}
.y79{bottom:202.345642px;}
.y198{bottom:205.925102px;}
.y90{bottom:209.335945px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y1d1{bottom:211.854904px;}
.y66{bottom:216.425102px;}
.y16f{bottom:216.784058px;}
.y172{bottom:216.795753px;}
.y197{bottom:220.175102px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1d0{bottom:226.104904px;}
.y8f{bottom:226.791595px;}
.y16e{bottom:231.034058px;}
.y171{bottom:231.045753px;}
.y65{bottom:234.425102px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y1cf{bottom:240.354904px;}
.y8e{bottom:243.615898px;}
.y16d{bottom:245.284058px;}
.y170{bottom:245.295753px;}
.y196{bottom:248.675102px;}
.y64{bottom:252.425102px;}
.y1ce{bottom:254.604904px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y8d{bottom:260.440200px;}
.y10e{bottom:260.727745px;}
.y16c{bottom:262.120056px;}
.y195{bottom:262.925102px;}
.y1cd{bottom:268.854904px;}
.y63{bottom:270.425102px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y169{bottom:274.285492px;}
.y10d{bottom:274.977745px;}
.y167{bottom:276.358360px;}
.y16b{bottom:276.370056px;}
.y194{bottom:277.175102px;}
.y8c{bottom:277.264343px;}
.y1cc{bottom:283.104904px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y62{bottom:288.425102px;}
.y10c{bottom:289.227745px;}
.y166{bottom:290.608360px;}
.y168{bottom:290.620056px;}
.y193{bottom:291.425102px;}
.y8b{bottom:294.088646px;}
.y1cb{bottom:297.354904px;}
.y10b{bottom:303.477745px;}
.y164{bottom:304.080002px;}
.y192{bottom:305.675102px;}
.y61{bottom:306.425102px;}
.y161{bottom:307.444199px;}
.y163{bottom:307.455894px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y8a{bottom:310.912949px;}
.y1ca{bottom:311.604904px;}
.y37{bottom:315.578705px;}
.y191{bottom:319.925102px;}
.y10a{bottom:320.302048px;}
.y160{bottom:321.694199px;}
.y162{bottom:321.705894px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y60{bottom:324.425102px;}
.y1c9{bottom:325.854904px;}
.y89{bottom:327.737250px;}
.yc3{bottom:329.644043px;}
.y190{bottom:334.175102px;}
.y15d{bottom:335.164490px;}
.y109{bottom:337.138046px;}
.y15b{bottom:338.530197px;}
.y15f{bottom:338.541893px;}
.y1c8{bottom:340.104904px;}
.y5f{bottom:342.425102px;}
.y88{bottom:344.561394px;}
.yf{bottom:348.133500px;}
.y18f{bottom:348.425102px;}
.y36{bottom:351.578705px;}
.y15a{bottom:352.780197px;}
.y15c{bottom:352.791893px;}
.y108{bottom:353.974045px;}
.y1c7{bottom:354.354904px;}
.yf5{bottom:357.114006px;}
.y5e{bottom:360.425102px;}
.ye8{bottom:361.365898px;}
.y87{bottom:361.385696px;}
.y18e{bottom:362.675102px;}
.y159{bottom:366.238495px;}
.y1c6{bottom:368.604904px;}
.y35{bottom:369.578705px;}
.y107{bottom:370.809906px;}
.yf4{bottom:371.364006px;}
.y18d{bottom:376.925102px;}
.ye6{bottom:378.201897px;}
.y5d{bottom:378.425102px;}
.y86{bottom:378.841507px;}
.y11d{bottom:378.889206px;}
.y1c5{bottom:382.854904px;}
.y156{bottom:383.854500px;}
.y158{bottom:383.866196px;}
.yf3{bottom:385.613983px;}
.ye{bottom:386.785499px;}
.y106{bottom:387.634186px;}
.y18c{bottom:391.175079px;}
.ye5{bottom:392.451920px;}
.ye7{bottom:392.463593px;}
.y11c{bottom:393.139206px;}
.y85{bottom:396.297318px;}
.y5c{bottom:396.425079px;}
.y1c4{bottom:397.104904px;}
.y155{bottom:398.104523px;}
.y157{bottom:398.116196px;}
.yf2{bottom:399.863983px;}
.y105{bottom:404.458511px;}
.y18b{bottom:405.425079px;}
.y34{bottom:405.578705px;}
.y11b{bottom:407.389206px;}
.yd{bottom:408.044999px;}
.ye3{bottom:409.287918px;}
.y1c3{bottom:411.354904px;}
.y152{bottom:411.576004px;}
.y84{bottom:413.752945px;}
.yf1{bottom:414.113983px;}
.y5b{bottom:414.425079px;}
.y150{bottom:414.940521px;}
.y154{bottom:414.952194px;}
.y18a{bottom:419.675079px;}
.y104{bottom:421.282791px;}
.y11a{bottom:421.639206px;}
.ye2{bottom:423.537918px;}
.ye4{bottom:423.549591px;}
.y33{bottom:423.578705px;}
.y1c2{bottom:425.604904px;}
.yf0{bottom:428.363983px;}
.y14f{bottom:429.190521px;}
.y151{bottom:429.202194px;}
.y83{bottom:430.577271px;}
.y5a{bottom:432.425079px;}
.y189{bottom:433.925079px;}
.y119{bottom:435.889206px;}
.y103{bottom:438.106934px;}
.y1c1{bottom:439.854904px;}
.ye1{bottom:440.373734px;}
.y32{bottom:441.578705px;}
.yef{bottom:442.613983px;}
.y14c{bottom:442.660492px;}
.y14a{bottom:446.026337px;}
.y14e{bottom:446.038055px;}
.y82{bottom:447.401550px;}
.y188{bottom:448.175079px;}
.y59{bottom:450.425079px;}
.y118{bottom:452.713486px;}
.y1c0{bottom:454.104904px;}
.y102{bottom:454.931259px;}
.yee{bottom:456.863983px;}
.ye0{bottom:457.198059px;}
.y31{bottom:459.578705px;}
.y149{bottom:460.276337px;}
.y14b{bottom:460.288055px;}
.y187{bottom:462.425079px;}
.y81{bottom:464.225693px;}
.y1bf{bottom:468.354904px;}
.y58{bottom:468.425079px;}
.y1db{bottom:468.729904px;}
.y117{bottom:469.549484px;}
.yed{bottom:471.113983px;}
.y101{bottom:471.755402px;}
.y146{bottom:473.734497px;}
.ydf{bottom:474.022339px;}
.y186{bottom:476.675079px;}
.y145{bottom:477.112335px;}
.y30{bottom:477.578705px;}
.y80{bottom:481.794159px;}
.y1be{bottom:482.604904px;}
.y1da{bottom:482.979904px;}
.yec{bottom:485.363983px;}
.y93{bottom:485.366409px;}
.y116{bottom:486.385345px;}
.y57{bottom:486.425079px;}
.y100{bottom:488.579681px;}
.y94{bottom:490.631378px;}
.yde{bottom:490.846481px;}
.y185{bottom:490.925079px;}
.y144{bottom:491.350662px;}
.y148{bottom:491.362335px;}
.ybd{bottom:494.084702px;}
.y2f{bottom:495.578705px;}
.y1bd{bottom:496.854904px;}
.yc{bottom:502.864502px;}
.y115{bottom:503.221344px;}
.y56{bottom:504.425079px;}
.y184{bottom:505.175079px;}
.yff{bottom:505.404007px;}
.ydd{bottom:507.670807px;}
.y142{bottom:508.186661px;}
.ybc{bottom:508.334702px;}
.y1bc{bottom:511.104904px;}
.y2e{bottom:513.578705px;}
.y183{bottom:519.425079px;}
.y114{bottom:520.045670px;}
.yb{bottom:520.864502px;}
.yfe{bottom:522.228149px;}
.y141{bottom:522.424942px;}
.y55{bottom:522.425079px;}
.y143{bottom:522.436661px;}
.ybb{bottom:522.584702px;}
.ydc{bottom:524.495087px;}
.y1bb{bottom:525.354904px;}
.y2d{bottom:531.578705px;}
.y182{bottom:533.675079px;}
.yba{bottom:536.834702px;}
.y113{bottom:536.869812px;}
.ya{bottom:538.864499px;}
.yfd{bottom:539.052429px;}
.y13f{bottom:539.260941px;}
.y1ba{bottom:539.604904px;}
.y54{bottom:540.425079px;}
.ydb{bottom:541.319229px;}
.y181{bottom:547.925079px;}
.y2c{bottom:549.578705px;}
.y13e{bottom:553.499268px;}
.y140{bottom:553.510941px;}
.yb9{bottom:553.658981px;}
.y112{bottom:553.694092px;}
.y1b9{bottom:553.854904px;}
.yfc{bottom:555.876755px;}
.y9{bottom:556.864499px;}
.yda{bottom:558.143555px;}
.y53{bottom:558.425079px;}
.y180{bottom:562.175079px;}
.y2b{bottom:567.578705px;}
.y1b8{bottom:568.104904px;}
.y13d{bottom:570.335083px;}
.yb8{bottom:570.494980px;}
.y111{bottom:570.518417px;}
.yfb{bottom:572.700897px;}
.yd9{bottom:574.967697px;}
.y52{bottom:576.425079px;}
.y1b7{bottom:582.354904px;}
.y13b{bottom:584.585083px;}
.y2a{bottom:585.578705px;}
.yb7{bottom:587.330841px;}
.y110{bottom:587.342560px;}
.yfa{bottom:589.525223px;}
.yd8{bottom:591.792023px;}
.y51{bottom:594.425079px;}
.y1b6{bottom:596.604904px;}
.y13a{bottom:598.823410px;}
.y13c{bottom:598.835083px;}
.y29{bottom:603.578705px;}
.yb6{bottom:604.166840px;}
.yf9{bottom:607.093506px;}
.yd7{bottom:608.616302px;}
.y1b5{bottom:610.854904px;}
.y50{bottom:612.425079px;}
.y139{bottom:615.659409px;}
.yb5{bottom:620.991165px;}
.yf8{bottom:621.343506px;}
.y28{bottom:621.578705px;}
.y1b4{bottom:625.104904px;}
.yd6{bottom:625.440445px;}
.y138{bottom:629.909409px;}
.y4f{bottom:630.425079px;}
.yb4{bottom:637.815445px;}
.yf7{bottom:638.167786px;}
.y10f{bottom:638.939255px;}
.y1b3{bottom:639.354904px;}
.y27{bottom:639.578705px;}
.yd5{bottom:642.264771px;}
.y136{bottom:644.159409px;}
.y8{bottom:645.510000px;}
.y4e{bottom:648.425079px;}
.y17f{bottom:649.177963px;}
.y1b2{bottom:653.604904px;}
.yb3{bottom:654.639587px;}
.y26{bottom:657.578705px;}
.y135{bottom:658.409409px;}
.yd4{bottom:659.089050px;}
.y17e{bottom:663.427963px;}
.y4d{bottom:666.425079px;}
.y7{bottom:666.771000px;}
.y1b1{bottom:667.854904px;}
.yb2{bottom:671.463913px;}
.y134{bottom:672.647690px;}
.y137{bottom:672.659409px;}
.yd3{bottom:673.339050px;}
.y25{bottom:675.578705px;}
.y17d{bottom:677.677963px;}
.y1b0{bottom:682.104904px;}
.y4c{bottom:684.425079px;}
.yd2{bottom:687.589050px;}
.yb1{bottom:688.288193px;}
.y132{bottom:689.483550px;}
.y17c{bottom:691.927963px;}
.y1af{bottom:696.354904px;}
.y4b{bottom:702.425079px;}
.y131{bottom:703.733550px;}
.yd1{bottom:704.413193px;}
.yb0{bottom:705.112335px;}
.y17b{bottom:706.177963px;}
.y1ae{bottom:710.604904px;}
.y130{bottom:717.983550px;}
.y4a{bottom:720.425079px;}
.y17a{bottom:720.427963px;}
.yd0{bottom:721.237518px;}
.yaf{bottom:721.936661px;}
.y1ad{bottom:724.854904px;}
.y39{bottom:725.096420px;}
.y6{bottom:726.298500px;}
.y12f{bottom:732.233550px;}
.y179{bottom:734.677963px;}
.ycf{bottom:735.487518px;}
.y49{bottom:738.425079px;}
.yae{bottom:738.760803px;}
.y1ac{bottom:739.104904px;}
.y38{bottom:739.346420px;}
.y12e{bottom:746.471832px;}
.y133{bottom:746.483550px;}
.y178{bottom:748.927963px;}
.yce{bottom:749.737518px;}
.y3{bottom:752.599495px;}
.y1ab{bottom:753.354904px;}
.yad{bottom:755.585083px;}
.y48{bottom:756.425079px;}
.y177{bottom:763.177963px;}
.y12c{bottom:763.307831px;}
.ycd{bottom:766.561798px;}
.y1aa{bottom:767.604904px;}
.ya3{bottom:771.424530px;}
.ya1{bottom:771.478455px;}
.yac{bottom:772.409363px;}
.y47{bottom:774.425079px;}
.y12b{bottom:777.546112px;}
.y12d{bottom:777.557831px;}
.y3c{bottom:781.237244px;}
.y1a9{bottom:781.854858px;}
.ycc{bottom:783.385986px;}
.yab{bottom:789.233734px;}
.y9f{bottom:789.424530px;}
.y46{bottom:792.425079px;}
.y129{bottom:794.382111px;}
.y176{bottom:795.426636px;}
.y1a8{bottom:796.104858px;}
.ycb{bottom:797.635986px;}
.yaa{bottom:806.057831px;}
.y128{bottom:808.620483px;}
.y12a{bottom:808.632111px;}
.y1a7{bottom:810.354858px;}
.y45{bottom:810.425079px;}
.yca{bottom:811.885986px;}
.ya9{bottom:822.882111px;}
.y3b{bottom:823.686035px;}
.y9b{bottom:824.185455px;}
.y1a6{bottom:824.604858px;}
.y127{bottom:825.456482px;}
.y9d{bottom:825.478455px;}
.y175{bottom:827.675079px;}
.y44{bottom:828.425079px;}
.yc9{bottom:828.710266px;}
.y1a5{bottom:838.854858px;}
.y126{bottom:839.694580px;}
.ya8{bottom:839.706482px;}
.yc8{bottom:845.534546px;}
.y3a{bottom:846.186035px;}
.y43{bottom:846.425079px;}
.y1a4{bottom:853.104858px;}
.ya7{bottom:856.530579px;}
.yc7{bottom:859.784546px;}
.y99{bottom:860.617493px;}
.y174{bottom:862.925079px;}
.y42{bottom:864.425079px;}
.y1a3{bottom:867.354858px;}
.y124{bottom:870.768860px;}
.y125{bottom:870.780579px;}
.yc6{bottom:874.034546px;}
.ya6{bottom:874.099091px;}
.y173{bottom:877.175079px;}
.y2{bottom:879.369000px;}
.yeb{bottom:880.925079px;}
.y1a2{bottom:881.604858px;}
.y74{bottom:882.425079px;}
.ya5{bottom:888.349091px;}
.yc5{bottom:891.602875px;}
.yea{bottom:895.175079px;}
.y1a1{bottom:895.854858px;}
.y22{bottom:899.681122px;}
.y41{bottom:900.425079px;}
.y96{bottom:902.036957px;}
.y95{bottom:902.037781px;}
.ya4{bottom:905.173187px;}
.y98{bottom:905.731842px;}
.yc4{bottom:905.852875px;}
.y11e{bottom:905.944611px;}
.ye9{bottom:909.425079px;}
.y1a0{bottom:910.104858px;}
.yf6{bottom:914.690277px;}
.y24{bottom:924.938965px;}
.y23{bottom:939.188965px;}
.y1{bottom:966.726000px;}
.h28{height:10.350000px;}
.h34{height:12.075000px;}
.h27{height:13.800000px;}
.h33{height:14.662499px;}
.h25{height:15.525000px;}
.h23{height:16.387500px;}
.h14{height:23.346094px;}
.h7{height:32.130000px;}
.h2b{height:33.328125px;}
.h13{height:33.351562px;}
.h2d{height:33.398346px;}
.h29{height:33.398437px;}
.h12{height:34.687500px;}
.h18{height:40.031250px;}
.h30{height:40.077759px;}
.h32{height:40.077942px;}
.h31{height:40.078121px;}
.h2e{height:40.078125px;}
.h2f{height:40.078857px;}
.h26{height:41.219020px;}
.hd{height:41.689453px;}
.h24{height:41.872347px;}
.h2c{height:42.529669px;}
.h2a{height:42.529761px;}
.hb{height:45.456000px;}
.h6{height:45.900000px;}
.h1c{height:45.953328px;}
.h1e{height:45.953419px;}
.h1d{height:45.953969px;}
.h20{height:45.954012px;}
.h1f{height:45.954014px;}
.h1b{height:45.954060px;}
.h21{height:46.224000px;}
.ha{height:46.656000px;}
.h35{height:47.472000px;}
.h3{height:48.195000px;}
.h36{height:48.480000px;}
.h22{height:50.027344px;}
.he{height:50.039062px;}
.h17{height:53.182617px;}
.h2{height:55.080000px;}
.hf{height:57.780000px;}
.h19{height:58.800000px;}
.hc{height:59.340000px;}
.h1a{height:60.600000px;}
.h11{height:64.824000px;}
.h16{height:65.274000px;}
.h15{height:72.000000px;}
.h10{height:75.114000px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h9{height:999.000000px;}
.h8{height:999.213000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.wa{width:15.525000px;}
.w9{width:16.387500px;}
.w8{width:22.425000px;}
.w6{width:55.199999px;}
.wd{width:85.387499px;}
.wf{width:86.250000px;}
.wb{width:87.111002px;}
.wc{width:88.837498px;}
.w10{width:106.087498px;}
.we{width:110.399998px;}
.w7{width:118.162502px;}
.w5{width:363.112495px;}
.w2{width:637.794021px;}
.w3{width:659.055000px;}
.w4{width:659.250000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:1.449600px;}
.x6{left:76.535402px;}
.x5{left:80.907303px;}
.x7{left:90.123299px;}
.x9{left:93.543303px;}
.x8{left:97.795349px;}
.x1{left:102.045000px;}
.x18{left:103.186500px;}
.x2{left:106.297500px;}
.x19{left:118.711349px;}
.xf{left:143.719505px;}
.x2b{left:172.320602px;}
.x13{left:201.331490px;}
.x4{left:203.484001px;}
.x2d{left:227.299507px;}
.xe{left:250.866142px;}
.x1c{left:268.742111px;}
.x28{left:280.561661px;}
.x25{left:287.474258px;}
.x21{left:315.000000px;}
.x14{left:319.494759px;}
.x1d{left:336.291161px;}
.x1a{left:347.898010px;}
.x1b{left:364.285194px;}
.x22{left:368.503944px;}
.xd{left:375.263855px;}
.x29{left:395.303696px;}
.x26{left:396.706192px;}
.x1e{left:400.532684px;}
.x23{left:422.007889px;}
.x11{left:440.806503px;}
.x3{left:454.959000px;}
.x1f{left:464.774231px;}
.x2c{left:472.622864px;}
.x24{left:475.511856px;}
.x12{left:496.005890px;}
.x27{left:500.891830px;}
.x10{left:506.831863px;}
.x2a{left:510.045731px;}
.xa{left:521.665787px;}
.x20{left:529.015778px;}
.xc{left:533.371216px;}
.x15{left:560.093994px;}
.xb{left:565.923019px;}
.x16{left:582.519608px;}
@media print{
.v2{vertical-align:-17.066670pt;}
.v4{vertical-align:-11.775391pt;}
.v7{vertical-align:-8.095378pt;}
.v3{vertical-align:-2.245280pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:3.680013pt;}
.v8{vertical-align:8.095378pt;}
.v5{vertical-align:11.775391pt;}
.v9{vertical-align:17.066732pt;}
.v1{vertical-align:21.333333pt;}
.ls9{letter-spacing:-1.493333pt;}
.ls25{letter-spacing:-0.896000pt;}
.ls20{letter-spacing:-0.298667pt;}
.ls34{letter-spacing:-0.263971pt;}
.ls22{letter-spacing:-0.213333pt;}
.ls33{letter-spacing:-0.158382pt;}
.ls19{letter-spacing:-0.052794pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.000008pt;}
.ls4{letter-spacing:0.000029pt;}
.ls30{letter-spacing:0.000496pt;}
.ls3{letter-spacing:0.000518pt;}
.ls18{letter-spacing:0.000539pt;}
.ls14{letter-spacing:0.029670pt;}
.ls17{letter-spacing:0.030535pt;}
.lsd{letter-spacing:0.052794pt;}
.lse{letter-spacing:0.105588pt;}
.ls1e{letter-spacing:0.128000pt;}
.ls35{letter-spacing:0.211177pt;}
.lsf{letter-spacing:0.219974pt;}
.ls23{letter-spacing:0.256000pt;}
.ls1b{letter-spacing:0.256637pt;}
.ls1f{letter-spacing:0.341333pt;}
.ls36{letter-spacing:0.369559pt;}
.ls8{letter-spacing:0.373333pt;}
.ls16{letter-spacing:0.391746pt;}
.ls2b{letter-spacing:0.422353pt;}
.ls29{letter-spacing:0.426667pt;}
.ls1d{letter-spacing:0.682667pt;}
.ls6{letter-spacing:0.747233pt;}
.ls26{letter-spacing:0.810667pt;}
.ls28{letter-spacing:0.853333pt;}
.ls7{letter-spacing:1.066654pt;}
.ls5{letter-spacing:1.066667pt;}
.ls2f{letter-spacing:1.583824pt;}
.ls37{letter-spacing:1.742206pt;}
.ls32{letter-spacing:2.270148pt;}
.ls1a{letter-spacing:2.534118pt;}
.ls1{letter-spacing:2.986667pt;}
.ls31{letter-spacing:11.561915pt;}
.ls2d{letter-spacing:11.614703pt;}
.ls12{letter-spacing:11.614709pt;}
.lsc{letter-spacing:11.878680pt;}
.ls11{letter-spacing:12.089857pt;}
.ls10{letter-spacing:12.231817pt;}
.ls2e{letter-spacing:12.617798pt;}
.ls15{letter-spacing:12.818264pt;}
.ls2c{letter-spacing:13.356916pt;}
.ls13{letter-spacing:13.514850pt;}
.lsa{letter-spacing:14.307210pt;}
.lsb{letter-spacing:14.940740pt;}
.ls2{letter-spacing:27.292255pt;}
.ls21{letter-spacing:187.035742pt;}
.ls1c{letter-spacing:280.147192pt;}
.ls24{letter-spacing:586.925350pt;}
.ls27{letter-spacing:684.430965pt;}
.ws51{word-spacing:-14.400000pt;}
.ws5b{word-spacing:-13.706667pt;}
.wsf{word-spacing:-13.333333pt;}
.wse3{word-spacing:-11.931474pt;}
.wsb1{word-spacing:-11.850667pt;}
.wsd2{word-spacing:-11.520000pt;}
.wsbe{word-spacing:-11.477333pt;}
.wsac{word-spacing:-11.349333pt;}
.wsd3{word-spacing:-11.093333pt;}
.ws3{word-spacing:-11.040000pt;}
.ws89{word-spacing:-11.008000pt;}
.wsae{word-spacing:-10.922667pt;}
.ws88{word-spacing:-10.794667pt;}
.ws2{word-spacing:-10.773333pt;}
.ws4{word-spacing:-10.666667pt;}
.wsad{word-spacing:-10.453333pt;}
.ws8a{word-spacing:-10.368000pt;}
.ws38{word-spacing:-10.240000pt;}
.wsee{word-spacing:-10.080000pt;}
.ws39{word-spacing:-9.333333pt;}
.ws1{word-spacing:-8.362667pt;}
.wsd6{word-spacing:-8.192000pt;}
.ws5{word-spacing:-7.466667pt;}
.ws67{word-spacing:-5.333333pt;}
.ws22{word-spacing:-3.306667pt;}
.ws98{word-spacing:-2.880000pt;}
.ws68{word-spacing:-2.586913pt;}
.ws99{word-spacing:-2.506667pt;}
.ws54{word-spacing:-2.453333pt;}
.ws3e{word-spacing:-2.346667pt;}
.wse5{word-spacing:-2.322942pt;}
.ws45{word-spacing:-2.176000pt;}
.ws5a{word-spacing:-2.133333pt;}
.ws106{word-spacing:-2.090667pt;}
.ws16{word-spacing:-1.973333pt;}
.ws59{word-spacing:-1.920000pt;}
.ws36{word-spacing:-1.866667pt;}
.ws107{word-spacing:-1.834667pt;}
.wsea{word-spacing:-1.795001pt;}
.ws56{word-spacing:-1.760000pt;}
.ws3b{word-spacing:-1.706667pt;}
.wse7{word-spacing:-1.636618pt;}
.ws3d{word-spacing:-1.546667pt;}
.ws8f{word-spacing:-1.536000pt;}
.ws27{word-spacing:-1.386667pt;}
.ws2e{word-spacing:-1.333333pt;}
.ws57{word-spacing:-1.066667pt;}
.ws10b{word-spacing:-1.024000pt;}
.ws4d{word-spacing:-1.013333pt;}
.ws32{word-spacing:-0.960000pt;}
.ws103{word-spacing:-0.938667pt;}
.ws50{word-spacing:-0.906667pt;}
.ws44{word-spacing:-0.853333pt;}
.ws10f{word-spacing:-0.810667pt;}
.ws34{word-spacing:-0.800000pt;}
.wsf8{word-spacing:-0.768000pt;}
.ws30{word-spacing:-0.693333pt;}
.wsf5{word-spacing:-0.554667pt;}
.ws2a{word-spacing:-0.533333pt;}
.ws8e{word-spacing:-0.512000pt;}
.ws6{word-spacing:-0.426667pt;}
.wse9{word-spacing:-0.422353pt;}
.ws64{word-spacing:-0.373333pt;}
.wsff{word-spacing:-0.341333pt;}
.ws6d{word-spacing:-0.293299pt;}
.ws3c{word-spacing:-0.266667pt;}
.ws6f{word-spacing:-0.256637pt;}
.ws1c{word-spacing:-0.213333pt;}
.ws49{word-spacing:-0.160000pt;}
.ws6b{word-spacing:-0.158382pt;}
.wsc1{word-spacing:-0.128000pt;}
.ws96{word-spacing:-0.106667pt;}
.ws6a{word-spacing:-0.105588pt;}
.ws41{word-spacing:-0.053333pt;}
.ws6c{word-spacing:-0.052794pt;}
.wsf6{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws4f{word-spacing:0.053333pt;}
.wse4{word-spacing:0.105588pt;}
.ws4e{word-spacing:0.106667pt;}
.wsed{word-spacing:0.158382pt;}
.ws17{word-spacing:0.160000pt;}
.wse2{word-spacing:0.211177pt;}
.wsb0{word-spacing:0.213333pt;}
.ws91{word-spacing:0.266667pt;}
.ws37{word-spacing:0.298667pt;}
.ws31{word-spacing:0.320000pt;}
.ws1f{word-spacing:0.373333pt;}
.wsfb{word-spacing:0.384000pt;}
.ws46{word-spacing:0.426667pt;}
.wsf3{word-spacing:0.512000pt;}
.ws3a{word-spacing:0.533333pt;}
.ws10d{word-spacing:0.554667pt;}
.ws76{word-spacing:0.640000pt;}
.ws58{word-spacing:0.693333pt;}
.ws110{word-spacing:0.810667pt;}
.ws102{word-spacing:0.853333pt;}
.wsc0{word-spacing:0.896000pt;}
.ws21{word-spacing:0.906667pt;}
.wsaf{word-spacing:0.960000pt;}
.wsfe{word-spacing:0.981333pt;}
.ws92{word-spacing:1.066667pt;}
.ws4a{word-spacing:1.120000pt;}
.ws4b{word-spacing:1.173333pt;}
.ws63{word-spacing:1.333333pt;}
.ws52{word-spacing:1.386667pt;}
.ws26{word-spacing:1.493333pt;}
.ws97{word-spacing:1.546667pt;}
.wsef{word-spacing:1.578667pt;}
.ws104{word-spacing:1.621333pt;}
.ws70{word-spacing:1.653333pt;}
.ws8d{word-spacing:1.749333pt;}
.ws35{word-spacing:1.760000pt;}
.ws13{word-spacing:1.813333pt;}
.ws10c{word-spacing:1.834667pt;}
.ws75{word-spacing:1.973333pt;}
.ws24{word-spacing:2.026667pt;}
.ws1b{word-spacing:2.090667pt;}
.ws28{word-spacing:2.133333pt;}
.ws101{word-spacing:2.218667pt;}
.wsfa{word-spacing:2.261333pt;}
.wsd4{word-spacing:2.432000pt;}
.ws10{word-spacing:2.517333pt;}
.ws18{word-spacing:2.560000pt;}
.ws4c{word-spacing:2.720000pt;}
.wsfd{word-spacing:2.730667pt;}
.ws19{word-spacing:2.880000pt;}
.ws94{word-spacing:2.933333pt;}
.ws66{word-spacing:3.040000pt;}
.wsf0{word-spacing:3.072000pt;}
.wse{word-spacing:3.093333pt;}
.ws74{word-spacing:3.200000pt;}
.ws95{word-spacing:3.253333pt;}
.ws72{word-spacing:3.306667pt;}
.wsc2{word-spacing:3.328000pt;}
.ws33{word-spacing:3.360000pt;}
.ws90{word-spacing:3.413333pt;}
.ws100{word-spacing:3.456000pt;}
.ws25{word-spacing:3.573333pt;}
.wsbf{word-spacing:3.626667pt;}
.ws8b{word-spacing:3.680000pt;}
.ws9{word-spacing:3.840000pt;}
.ws1a{word-spacing:3.893333pt;}
.wsf1{word-spacing:3.925333pt;}
.wsd{word-spacing:4.000000pt;}
.ws29{word-spacing:4.106667pt;}
.wsd5{word-spacing:4.352000pt;}
.ws2b{word-spacing:4.373333pt;}
.wsf4{word-spacing:4.394667pt;}
.ws3f{word-spacing:4.426667pt;}
.ws55{word-spacing:4.533333pt;}
.ws10a{word-spacing:4.608000pt;}
.wsa{word-spacing:4.640000pt;}
.wsb{word-spacing:4.693333pt;}
.ws93{word-spacing:4.853333pt;}
.ws105{word-spacing:5.077333pt;}
.ws73{word-spacing:5.173333pt;}
.ws40{word-spacing:5.280000pt;}
.ws71{word-spacing:5.440000pt;}
.ws109{word-spacing:5.461333pt;}
.ws7{word-spacing:5.706667pt;}
.ws47{word-spacing:5.760000pt;}
.ws77{word-spacing:5.866667pt;}
.ws20{word-spacing:5.920000pt;}
.ws1d{word-spacing:5.973333pt;}
.ws14{word-spacing:6.026667pt;}
.wsf2{word-spacing:6.101333pt;}
.ws23{word-spacing:6.240000pt;}
.ws65{word-spacing:6.293333pt;}
.ws2d{word-spacing:6.346667pt;}
.ws15{word-spacing:6.400000pt;}
.ws12{word-spacing:6.453333pt;}
.ws8c{word-spacing:6.826667pt;}
.ws42{word-spacing:6.880000pt;}
.ws1e{word-spacing:6.986667pt;}
.ws2c{word-spacing:7.786667pt;}
.ws43{word-spacing:8.000000pt;}
.wsfc{word-spacing:9.130667pt;}
.ws10e{word-spacing:9.386667pt;}
.ws8{word-spacing:9.440000pt;}
.ws108{word-spacing:9.600000pt;}
.wseb{word-spacing:9.819703pt;}
.wse6{word-spacing:10.083679pt;}
.wse8{word-spacing:11.139562pt;}
.ws6e{word-spacing:12.278332pt;}
.wsf7{word-spacing:13.056000pt;}
.wsc{word-spacing:13.920000pt;}
.ws2f{word-spacing:15.194667pt;}
.ws69{word-spacing:15.958344pt;}
.ws48{word-spacing:16.426667pt;}
.ws53{word-spacing:16.586667pt;}
.ws11{word-spacing:17.482667pt;}
.wsf9{word-spacing:19.285333pt;}
.wsa5{word-spacing:19.569580pt;}
.ws60{word-spacing:22.506099pt;}
.ws5e{word-spacing:22.845378pt;}
.ws5c{word-spacing:39.442711pt;}
.wsa0{word-spacing:40.902832pt;}
.wsa7{word-spacing:40.902913pt;}
.ws5d{word-spacing:51.092766pt;}
.wsa2{word-spacing:51.391494pt;}
.wse1{word-spacing:55.001600pt;}
.wsa1{word-spacing:55.153499pt;}
.wsa4{word-spacing:55.153580pt;}
.ws7f{word-spacing:57.747640pt;}
.ws7d{word-spacing:57.747721pt;}
.wsa6{word-spacing:62.236247pt;}
.wsa3{word-spacing:69.361580pt;}
.ws81{word-spacing:79.080973pt;}
.ws5f{word-spacing:83.341797pt;}
.wsa9{word-spacing:83.569580pt;}
.wsa8{word-spacing:89.364827pt;}
.ws7e{word-spacing:93.331721pt;}
.wsaa{word-spacing:94.236247pt;}
.ws80{word-spacing:100.414307pt;}
.ws83{word-spacing:107.539721pt;}
.wsab{word-spacing:115.569580pt;}
.ws84{word-spacing:121.747721pt;}
.ws86{word-spacing:132.414388pt;}
.wsdc{word-spacing:145.070934pt;}
.ws87{word-spacing:153.747721pt;}
.ws78{word-spacing:157.658664pt;}
.wsde{word-spacing:159.236267pt;}
.wse0{word-spacing:171.097600pt;}
.wsd7{word-spacing:187.724800pt;}
.wsd9{word-spacing:192.430934pt;}
.wsb2{word-spacing:199.771159pt;}
.wsdd{word-spacing:204.292267pt;}
.ws85{word-spacing:205.018664pt;}
.wsda{word-spacing:216.153600pt;}
.wsb5{word-spacing:217.713542pt;}
.wsdb{word-spacing:220.846934pt;}
.wsb7{word-spacing:221.104492pt;}
.wsb3{word-spacing:235.355159pt;}
.wscb{word-spacing:237.305013pt;}
.wsb6{word-spacing:242.437826pt;}
.ws9f{word-spacing:245.389827pt;}
.wsdf{word-spacing:249.305600pt;}
.wsec{word-spacing:251.652267pt;}
.wsc3{word-spacing:258.638346pt;}
.wsbd{word-spacing:263.771159pt;}
.wsb9{word-spacing:265.354092pt;}
.ws61{word-spacing:265.662979pt;}
.ws7c{word-spacing:266.586664pt;}
.wsc4{word-spacing:272.889013pt;}
.ws9e{word-spacing:273.805827pt;}
.wsbb{word-spacing:274.437826pt;}
.wscc{word-spacing:279.971680pt;}
.ws7a{word-spacing:286.162109pt;}
.wsca{word-spacing:287.097013pt;}
.wsbc{word-spacing:295.771159pt;}
.wsce{word-spacing:301.305013pt;}
.ws62{word-spacing:303.636312pt;}
.ws82{word-spacing:304.559998pt;}
.wsd0{word-spacing:311.971680pt;}
.ws79{word-spacing:321.746028pt;}
.ws7b{word-spacing:321.746109pt;}
.wsd1{word-spacing:333.305013pt;}
.ws9d{word-spacing:435.626074pt;}
.ws9c{word-spacing:464.042074pt;}
.wscf{word-spacing:487.218697pt;}
.wsba{word-spacing:511.796822pt;}
.wsc9{word-spacing:548.786697pt;}
.wsb4{word-spacing:573.364822pt;}
.wscd{word-spacing:586.760030pt;}
.wsb8{word-spacing:611.338155pt;}
.ws9b{word-spacing:625.862320pt;}
.ws9a{word-spacing:632.944987pt;}
.wsc6{word-spacing:743.510376pt;}
.wsd8{word-spacing:931.421374pt;}
.wsc5{word-spacing:1039.745043pt;}
.wsc8{word-spacing:1158.607389pt;}
.wsc7{word-spacing:1454.842056pt;}
._b{margin-left:-58.979187pt;}
._59{margin-left:-12.342270pt;}
._5a{margin-left:-11.178208pt;}
._2c{margin-left:-9.853333pt;}
._15{margin-left:-7.502933pt;}
._f{margin-left:-6.610923pt;}
._10{margin-left:-5.412267pt;}
._e{margin-left:-4.364298pt;}
._0{margin-left:-3.460267pt;}
._11{margin-left:-2.548267pt;}
._1{margin-left:-1.625600pt;}
._2{width:1.572267pt;}
._6{width:2.740267pt;}
._4{width:4.275189pt;}
._5{width:5.417621pt;}
._9{width:6.364758pt;}
._14{width:7.262015pt;}
._d{width:8.186667pt;}
._8{width:9.221333pt;}
._3{width:10.224000pt;}
._7{width:11.557333pt;}
._40{width:13.659733pt;}
._a{width:15.571736pt;}
._13{width:16.586667pt;}
._12{width:17.482667pt;}
._5b{width:19.246934pt;}
._17{width:33.468730pt;}
._26{width:36.884766pt;}
._c{width:50.005325pt;}
._45{width:59.754161pt;}
._16{width:61.116229pt;}
._19{width:62.268229pt;}
._23{width:63.893829pt;}
._1f{width:66.665645pt;}
._28{width:69.054979pt;}
._2a{width:78.484312pt;}
._32{width:79.475720pt;}
._29{width:80.873645pt;}
._5c{width:88.922643pt;}
._41{width:92.948827pt;}
._1a{width:94.008464pt;}
._44{width:95.861847pt;}
._36{width:101.508301pt;}
._1b{width:111.551432pt;}
._34{width:115.758967pt;}
._33{width:118.206307pt;}
._42{width:123.754161pt;}
._43{width:126.143494pt;}
._3a{width:129.966967pt;}
._3b{width:134.039337pt;}
._38{width:144.174967pt;}
._3d{width:154.841634pt;}
._3e{width:159.919998pt;}
._1e{width:167.401645pt;}
._3f{width:176.174967pt;}
._2b{width:193.600000pt;}
._49{width:249.713542pt;}
._18{width:259.860312pt;}
._47{width:263.964208pt;}
._24{width:274.025645pt;}
._3c{width:274.949331pt;}
._4c{width:278.172208pt;}
._46{width:292.933299pt;}
._4e{width:303.046875pt;}
._20{width:307.220312pt;}
._35{width:308.143998pt;}
._52{width:311.971680pt;}
._56{width:313.597280pt;}
._2e{width:318.162028pt;}
._1c{width:319.124312pt;}
._50{width:324.380208pt;}
._1d{width:328.553645pt;}
._22{width:338.025645pt;}
._37{width:338.949331pt;}
._21{width:340.414979pt;}
._39{width:341.338664pt;}
._31{width:344.172704pt;}
._2f{width:355.933365pt;}
._25{width:359.316312pt;}
._27{width:366.441645pt;}
._30{width:373.132691pt;}
._2d{width:384.349365pt;}
._58{width:442.120030pt;}
._51{width:450.525363pt;}
._4f{width:466.698155pt;}
._57{width:557.149363pt;}
._4d{width:581.727488pt;}
._53{width:590.344030pt;}
._48{width:614.922155pt;}
._54{width:621.149363pt;}
._55{width:623.538697pt;}
._4a{width:645.727488pt;}
._4b{width:648.116822pt;}
.fs7{font-size:29.866667pt;}
.fsb{font-size:36.662399pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fsa{font-size:52.794133pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs9{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs8{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y16a{bottom:1.596007pt;}
.ya2{bottom:2.392822pt;}
.y9e{bottom:2.576986pt;}
.ya0{bottom:3.128662pt;}
.y153{bottom:3.158000pt;}
.y15e{bottom:3.159078pt;}
.y14d{bottom:3.159342pt;}
.y147{bottom:3.159587pt;}
.y165{bottom:3.893860pt;}
.y9a{bottom:3.924967pt;}
.y9c{bottom:4.692139pt;}
.y97{bottom:4.692546pt;}
.y40{bottom:41.543200pt;}
.y6c{bottom:41.574800pt;}
.y5{bottom:59.133337pt;}
.y6b{bottom:79.370132pt;}
.y73{bottom:80.377869pt;}
.y3f{bottom:84.268000pt;}
.y4{bottom:86.333337pt;}
.y1d9{bottom:86.982137pt;}
.y6a{bottom:92.036804pt;}
.y19f{bottom:94.377869pt;}
.y7e{bottom:96.303467pt;}
.y72{bottom:96.377869pt;}
.y123{bottom:97.872803pt;}
.y1d8{bottom:99.648804pt;}
.yc2{bottom:99.843730pt;}
.y69{bottom:104.703471pt;}
.y3e{bottom:105.896271pt;}
.y19e{bottom:107.044535pt;}
.y78{bottom:108.970133pt;}
.y122{bottom:110.539469pt;}
.y1d7{bottom:112.315470pt;}
.y71{bottom:112.377869pt;}
.yc1{bottom:112.510396pt;}
.y68{bottom:117.370138pt;}
.y3d{bottom:118.562937pt;}
.y19d{bottom:119.711202pt;}
.y7d{bottom:121.636800pt;}
.y121{bottom:123.206136pt;}
.y21{bottom:123.790666pt;}
.y1d6{bottom:124.982137pt;}
.yc0{bottom:125.177063pt;}
.y7f{bottom:125.416533pt;}
.y70{bottom:128.377869pt;}
.y77{bottom:130.036804pt;}
.y19c{bottom:132.377869pt;}
.y7c{bottom:133.816528pt;}
.y67{bottom:134.303467pt;}
.y1d5{bottom:137.648804pt;}
.ybf{bottom:137.843730pt;}
.y76{bottom:142.703471pt;}
.y6f{bottom:144.377869pt;}
.y19b{bottom:145.044535pt;}
.y1d4{bottom:150.315470pt;}
.ybe{bottom:150.510396pt;}
.y7b{bottom:150.749867pt;}
.y120{bottom:151.872803pt;}
.y92{bottom:155.043864pt;}
.y19a{bottom:157.711202pt;}
.y75{bottom:159.636800pt;}
.y6e{bottom:160.377869pt;}
.y7a{bottom:162.929464pt;}
.y1d3{bottom:162.982137pt;}
.y11f{bottom:164.539469pt;}
.y199{bottom:170.377869pt;}
.y91{bottom:170.560130pt;}
.y18{bottom:175.052000pt;}
.y1d2{bottom:175.648804pt;}
.y6d{bottom:176.377869pt;}
.y79{bottom:179.862793pt;}
.y198{bottom:183.044535pt;}
.y90{bottom:186.076396pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y1d1{bottom:188.315470pt;}
.y66{bottom:192.377869pt;}
.y16f{bottom:192.696940pt;}
.y172{bottom:192.707336pt;}
.y197{bottom:195.711202pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1d0{bottom:200.982137pt;}
.y8f{bottom:201.592529pt;}
.y16e{bottom:205.363607pt;}
.y171{bottom:205.374003pt;}
.y65{bottom:208.377869pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y1cf{bottom:213.648804pt;}
.y8e{bottom:216.547465pt;}
.y16d{bottom:218.030273pt;}
.y170{bottom:218.040670pt;}
.y196{bottom:221.044535pt;}
.y64{bottom:224.377869pt;}
.y1ce{bottom:226.315470pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y8d{bottom:231.502400pt;}
.y10e{bottom:231.757996pt;}
.y16c{bottom:232.995605pt;}
.y195{bottom:233.711202pt;}
.y1cd{bottom:238.982137pt;}
.y63{bottom:240.377869pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y169{bottom:243.809326pt;}
.y10d{bottom:244.424662pt;}
.y167{bottom:245.651876pt;}
.y16b{bottom:245.662272pt;}
.y194{bottom:246.377869pt;}
.y8c{bottom:246.457194pt;}
.y1cc{bottom:251.648804pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y62{bottom:256.377869pt;}
.y10c{bottom:257.091329pt;}
.y166{bottom:258.318542pt;}
.y168{bottom:258.328939pt;}
.y193{bottom:259.044535pt;}
.y8b{bottom:261.412130pt;}
.y1cb{bottom:264.315470pt;}
.y10b{bottom:269.757996pt;}
.y164{bottom:270.293335pt;}
.y192{bottom:271.711202pt;}
.y61{bottom:272.377869pt;}
.y161{bottom:273.283732pt;}
.y163{bottom:273.294128pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y8a{bottom:276.367065pt;}
.y1ca{bottom:276.982137pt;}
.y37{bottom:280.514404pt;}
.y191{bottom:284.377869pt;}
.y10a{bottom:284.712931pt;}
.y160{bottom:285.950399pt;}
.y162{bottom:285.960795pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y60{bottom:288.377869pt;}
.y1c9{bottom:289.648804pt;}
.y89{bottom:291.322000pt;}
.yc3{bottom:293.016927pt;}
.y190{bottom:297.044535pt;}
.y15d{bottom:297.923991pt;}
.y109{bottom:299.678263pt;}
.y15b{bottom:300.915731pt;}
.y15f{bottom:300.926127pt;}
.y1c8{bottom:302.315470pt;}
.y5f{bottom:304.377869pt;}
.y88{bottom:306.276794pt;}
.yf{bottom:309.452000pt;}
.y18f{bottom:309.711202pt;}
.y36{bottom:312.514404pt;}
.y15a{bottom:313.582397pt;}
.y15c{bottom:313.592794pt;}
.y108{bottom:314.643595pt;}
.y1c7{bottom:314.982137pt;}
.yf5{bottom:317.434672pt;}
.y5e{bottom:320.377869pt;}
.ye8{bottom:321.214132pt;}
.y87{bottom:321.231730pt;}
.y18e{bottom:322.377869pt;}
.y159{bottom:325.545329pt;}
.y1c6{bottom:327.648804pt;}
.y35{bottom:328.514404pt;}
.y107{bottom:329.608805pt;}
.yf4{bottom:330.101339pt;}
.y18d{bottom:335.044535pt;}
.ye6{bottom:336.179464pt;}
.y5d{bottom:336.377869pt;}
.y86{bottom:336.748006pt;}
.y11d{bottom:336.790405pt;}
.y1c5{bottom:340.315470pt;}
.y156{bottom:341.204000pt;}
.y158{bottom:341.214396pt;}
.yf3{bottom:342.767985pt;}
.ye{bottom:343.809333pt;}
.y106{bottom:344.563721pt;}
.y18c{bottom:347.711182pt;}
.ye5{bottom:348.846151pt;}
.ye7{bottom:348.856527pt;}
.y11c{bottom:349.457072pt;}
.y85{bottom:352.264282pt;}
.y5c{bottom:352.377848pt;}
.y1c4{bottom:352.982137pt;}
.y155{bottom:353.870687pt;}
.y157{bottom:353.881063pt;}
.yf2{bottom:355.434652pt;}
.y105{bottom:359.518677pt;}
.y18b{bottom:360.377848pt;}
.y34{bottom:360.514404pt;}
.y11b{bottom:362.123739pt;}
.yd{bottom:362.706666pt;}
.ye3{bottom:363.811483pt;}
.y1c3{bottom:365.648804pt;}
.y152{bottom:365.845337pt;}
.y84{bottom:367.780396pt;}
.yf1{bottom:368.101318pt;}
.y5b{bottom:368.377848pt;}
.y150{bottom:368.836019pt;}
.y154{bottom:368.846395pt;}
.y18a{bottom:373.044515pt;}
.y104{bottom:374.473592pt;}
.y11a{bottom:374.790405pt;}
.ye2{bottom:376.478149pt;}
.ye4{bottom:376.488525pt;}
.y33{bottom:376.514404pt;}
.y1c2{bottom:378.315470pt;}
.yf0{bottom:380.767985pt;}
.y14f{bottom:381.502686pt;}
.y151{bottom:381.513062pt;}
.y83{bottom:382.735352pt;}
.y5a{bottom:384.377848pt;}
.y189{bottom:385.711182pt;}
.y119{bottom:387.457072pt;}
.y103{bottom:389.428385pt;}
.y1c1{bottom:390.982137pt;}
.ye1{bottom:391.443319pt;}
.y32{bottom:392.514404pt;}
.yef{bottom:393.434652pt;}
.y14c{bottom:393.475993pt;}
.y14a{bottom:396.467855pt;}
.y14e{bottom:396.478271pt;}
.y82{bottom:397.690267pt;}
.y188{bottom:398.377848pt;}
.y59{bottom:400.377848pt;}
.y118{bottom:402.411987pt;}
.y1c0{bottom:403.648804pt;}
.y102{bottom:404.383341pt;}
.yee{bottom:406.101318pt;}
.ye0{bottom:406.398275pt;}
.y31{bottom:408.514404pt;}
.y149{bottom:409.134521pt;}
.y14b{bottom:409.144938pt;}
.y187{bottom:411.044515pt;}
.y81{bottom:412.645060pt;}
.y1bf{bottom:416.315470pt;}
.y58{bottom:416.377848pt;}
.y1db{bottom:416.648804pt;}
.y117{bottom:417.377319pt;}
.yed{bottom:418.767985pt;}
.y101{bottom:419.338135pt;}
.y146{bottom:421.097331pt;}
.ydf{bottom:421.353190pt;}
.y186{bottom:423.711182pt;}
.y145{bottom:424.099854pt;}
.y30{bottom:424.514404pt;}
.y80{bottom:428.261475pt;}
.y1be{bottom:428.982137pt;}
.y1da{bottom:429.315470pt;}
.yec{bottom:431.434652pt;}
.y93{bottom:431.436808pt;}
.y116{bottom:432.342529pt;}
.y57{bottom:432.377848pt;}
.y100{bottom:434.293050pt;}
.y94{bottom:436.116781pt;}
.yde{bottom:436.307983pt;}
.y185{bottom:436.377848pt;}
.y144{bottom:436.756144pt;}
.y148{bottom:436.766520pt;}
.ybd{bottom:439.186401pt;}
.y2f{bottom:440.514404pt;}
.y1bd{bottom:441.648804pt;}
.yc{bottom:446.990669pt;}
.y115{bottom:447.307861pt;}
.y56{bottom:448.377848pt;}
.y184{bottom:449.044515pt;}
.yff{bottom:449.248006pt;}
.ydd{bottom:451.262939pt;}
.y142{bottom:451.721476pt;}
.ybc{bottom:451.853068pt;}
.y1bc{bottom:454.315470pt;}
.y2e{bottom:456.514404pt;}
.y183{bottom:461.711182pt;}
.y114{bottom:462.262817pt;}
.yb{bottom:462.990669pt;}
.yfe{bottom:464.202799pt;}
.y141{bottom:464.377726pt;}
.y55{bottom:464.377848pt;}
.y143{bottom:464.388143pt;}
.ybb{bottom:464.519735pt;}
.ydc{bottom:466.217855pt;}
.y1bb{bottom:466.982137pt;}
.y2d{bottom:472.514404pt;}
.y182{bottom:474.377848pt;}
.yba{bottom:477.186401pt;}
.y113{bottom:477.217611pt;}
.ya{bottom:478.990666pt;}
.yfd{bottom:479.157715pt;}
.y13f{bottom:479.343058pt;}
.y1ba{bottom:479.648804pt;}
.y54{bottom:480.377848pt;}
.ydb{bottom:481.172648pt;}
.y181{bottom:487.044515pt;}
.y2c{bottom:488.514404pt;}
.y13e{bottom:491.999349pt;}
.y140{bottom:492.009725pt;}
.yb9{bottom:492.141317pt;}
.y112{bottom:492.172526pt;}
.y1b9{bottom:492.315470pt;}
.yfc{bottom:494.112671pt;}
.y9{bottom:494.990666pt;}
.yda{bottom:496.127604pt;}
.y53{bottom:496.377848pt;}
.y180{bottom:499.711182pt;}
.y2b{bottom:504.514404pt;}
.y1b8{bottom:504.982137pt;}
.y13d{bottom:506.964518pt;}
.yb8{bottom:507.106649pt;}
.y111{bottom:507.127482pt;}
.yfb{bottom:509.067464pt;}
.yd9{bottom:511.082397pt;}
.y52{bottom:512.377848pt;}
.y1b7{bottom:517.648804pt;}
.y13b{bottom:519.631185pt;}
.y2a{bottom:520.514404pt;}
.yb7{bottom:522.071859pt;}
.y110{bottom:522.082275pt;}
.yfa{bottom:524.022420pt;}
.yd8{bottom:526.037354pt;}
.y51{bottom:528.377848pt;}
.y1b6{bottom:530.315470pt;}
.y13a{bottom:532.287476pt;}
.y13c{bottom:532.297852pt;}
.y29{bottom:536.514404pt;}
.yb6{bottom:537.037191pt;}
.yf9{bottom:539.638672pt;}
.yd7{bottom:540.992269pt;}
.y1b5{bottom:542.982137pt;}
.y50{bottom:544.377848pt;}
.y139{bottom:547.252808pt;}
.yb5{bottom:551.992147pt;}
.yf8{bottom:552.305339pt;}
.y28{bottom:552.514404pt;}
.y1b4{bottom:555.648804pt;}
.yd6{bottom:555.947062pt;}
.y138{bottom:559.919474pt;}
.y4f{bottom:560.377848pt;}
.yb4{bottom:566.947062pt;}
.yf7{bottom:567.260254pt;}
.y10f{bottom:567.946004pt;}
.y1b3{bottom:568.315470pt;}
.y27{bottom:568.514404pt;}
.yd5{bottom:570.902018pt;}
.y136{bottom:572.586141pt;}
.y8{bottom:573.786667pt;}
.y4e{bottom:576.377848pt;}
.y17f{bottom:577.047078pt;}
.y1b2{bottom:580.982137pt;}
.yb3{bottom:581.901855pt;}
.y26{bottom:584.514404pt;}
.y135{bottom:585.252808pt;}
.yd4{bottom:585.856933pt;}
.y17e{bottom:589.713745pt;}
.y4d{bottom:592.377848pt;}
.y7{bottom:592.685334pt;}
.y1b1{bottom:593.648804pt;}
.yb2{bottom:596.856812pt;}
.y134{bottom:597.909058pt;}
.y137{bottom:597.919474pt;}
.yd3{bottom:598.523600pt;}
.y25{bottom:600.514404pt;}
.y17d{bottom:602.380412pt;}
.y1b0{bottom:606.315470pt;}
.y4c{bottom:608.377848pt;}
.yd2{bottom:611.190267pt;}
.yb1{bottom:611.811727pt;}
.y132{bottom:612.874267pt;}
.y17c{bottom:615.047078pt;}
.y1af{bottom:618.982137pt;}
.y4b{bottom:624.377848pt;}
.y131{bottom:625.540933pt;}
.yd1{bottom:626.145060pt;}
.yb0{bottom:626.766520pt;}
.y17b{bottom:627.713745pt;}
.y1ae{bottom:631.648804pt;}
.y130{bottom:638.207600pt;}
.y4a{bottom:640.377848pt;}
.y17a{bottom:640.380412pt;}
.yd0{bottom:641.100016pt;}
.yaf{bottom:641.721476pt;}
.y1ad{bottom:644.315470pt;}
.y39{bottom:644.530151pt;}
.y6{bottom:645.598667pt;}
.y12f{bottom:650.874267pt;}
.y179{bottom:653.047078pt;}
.ycf{bottom:653.766683pt;}
.y49{bottom:656.377848pt;}
.yae{bottom:656.676270pt;}
.y1ac{bottom:656.982137pt;}
.y38{bottom:657.196818pt;}
.y12e{bottom:663.530518pt;}
.y133{bottom:663.540933pt;}
.y178{bottom:665.713745pt;}
.yce{bottom:666.433350pt;}
.y3{bottom:668.977329pt;}
.y1ab{bottom:669.648804pt;}
.yad{bottom:671.631185pt;}
.y48{bottom:672.377848pt;}
.y177{bottom:678.380412pt;}
.y12c{bottom:678.495850pt;}
.ycd{bottom:681.388265pt;}
.y1aa{bottom:682.315470pt;}
.ya3{bottom:685.710693pt;}
.ya1{bottom:685.758626pt;}
.yac{bottom:686.586100pt;}
.y47{bottom:688.377848pt;}
.y12b{bottom:691.152100pt;}
.y12d{bottom:691.162516pt;}
.y3c{bottom:694.433105pt;}
.y1a9{bottom:694.982096pt;}
.ycc{bottom:696.343099pt;}
.yab{bottom:701.541097pt;}
.y9f{bottom:701.710693pt;}
.y46{bottom:704.377848pt;}
.y129{bottom:706.117432pt;}
.y176{bottom:707.045898pt;}
.y1a8{bottom:707.648763pt;}
.ycb{bottom:709.009766pt;}
.yaa{bottom:716.495850pt;}
.y128{bottom:718.773763pt;}
.y12a{bottom:718.784098pt;}
.y1a7{bottom:720.315430pt;}
.y45{bottom:720.377848pt;}
.yca{bottom:721.676432pt;}
.ya9{bottom:731.450765pt;}
.y3b{bottom:732.165365pt;}
.y9b{bottom:732.609294pt;}
.y1a6{bottom:732.982096pt;}
.y127{bottom:733.739095pt;}
.y9d{bottom:733.758626pt;}
.y175{bottom:735.711182pt;}
.y44{bottom:736.377848pt;}
.yc9{bottom:736.631348pt;}
.y1a5{bottom:745.648763pt;}
.y126{bottom:746.395182pt;}
.ya8{bottom:746.405762pt;}
.yc8{bottom:751.586263pt;}
.y3a{bottom:752.165365pt;}
.y43{bottom:752.377848pt;}
.y1a4{bottom:758.315430pt;}
.ya7{bottom:761.360514pt;}
.yc7{bottom:764.252930pt;}
.y99{bottom:764.993327pt;}
.y174{bottom:767.044515pt;}
.y42{bottom:768.377848pt;}
.y1a3{bottom:770.982096pt;}
.y124{bottom:774.016764pt;}
.y125{bottom:774.027181pt;}
.yc6{bottom:776.919596pt;}
.ya6{bottom:776.976969pt;}
.y173{bottom:779.711182pt;}
.y2{bottom:781.661334pt;}
.yeb{bottom:783.044515pt;}
.y1a2{bottom:783.648763pt;}
.y74{bottom:784.377848pt;}
.ya5{bottom:789.643636pt;}
.yc5{bottom:792.535889pt;}
.yea{bottom:795.711182pt;}
.y1a1{bottom:796.315430pt;}
.y22{bottom:799.716553pt;}
.y41{bottom:800.377848pt;}
.y96{bottom:801.810628pt;}
.y95{bottom:801.811361pt;}
.ya4{bottom:804.598389pt;}
.y98{bottom:805.094971pt;}
.yc4{bottom:805.202555pt;}
.y11e{bottom:805.284098pt;}
.ye9{bottom:808.377848pt;}
.y1a0{bottom:808.982096pt;}
.yf6{bottom:813.058024pt;}
.y24{bottom:822.167969pt;}
.y23{bottom:834.834635pt;}
.y1{bottom:859.312000pt;}
.h28{height:9.200000pt;}
.h34{height:10.733333pt;}
.h27{height:12.266666pt;}
.h33{height:13.033333pt;}
.h25{height:13.800000pt;}
.h23{height:14.566667pt;}
.h14{height:20.752083pt;}
.h7{height:28.560000pt;}
.h2b{height:29.625000pt;}
.h13{height:29.645833pt;}
.h2d{height:29.687419pt;}
.h29{height:29.687500pt;}
.h12{height:30.833333pt;}
.h18{height:35.583333pt;}
.h30{height:35.624674pt;}
.h32{height:35.624837pt;}
.h31{height:35.624996pt;}
.h2e{height:35.625000pt;}
.h2f{height:35.625651pt;}
.h26{height:36.639129pt;}
.hd{height:37.057292pt;}
.h24{height:37.219864pt;}
.h2c{height:37.804150pt;}
.h2a{height:37.804232pt;}
.hb{height:40.405333pt;}
.h6{height:40.800000pt;}
.h1c{height:40.847402pt;}
.h1e{height:40.847484pt;}
.h1d{height:40.847972pt;}
.h20{height:40.848011pt;}
.h1f{height:40.848013pt;}
.h1b{height:40.848053pt;}
.h21{height:41.088000pt;}
.ha{height:41.472000pt;}
.h35{height:42.197333pt;}
.h3{height:42.840000pt;}
.h36{height:43.093333pt;}
.h22{height:44.468750pt;}
.he{height:44.479167pt;}
.h17{height:47.273438pt;}
.h2{height:48.960000pt;}
.hf{height:51.360000pt;}
.h19{height:52.266667pt;}
.hc{height:52.746667pt;}
.h1a{height:53.866667pt;}
.h11{height:57.621333pt;}
.h16{height:58.021333pt;}
.h15{height:64.000000pt;}
.h10{height:66.768000pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h9{height:888.000000pt;}
.h8{height:888.189333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.wa{width:13.800000pt;}
.w9{width:14.566667pt;}
.w8{width:19.933333pt;}
.w6{width:49.066666pt;}
.wd{width:75.899999pt;}
.wf{width:76.666667pt;}
.wb{width:77.432002pt;}
.wc{width:78.966665pt;}
.w10{width:94.299998pt;}
.we{width:98.133331pt;}
.w7{width:105.033335pt;}
.w5{width:322.766663pt;}
.w2{width:566.928019pt;}
.w3{width:585.826667pt;}
.w4{width:586.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:1.288534pt;}
.x6{left:68.031469pt;}
.x5{left:71.917603pt;}
.x7{left:80.109599pt;}
.x9{left:83.149602pt;}
.x8{left:86.929199pt;}
.x1{left:90.706667pt;}
.x18{left:91.721333pt;}
.x2{left:94.486667pt;}
.x19{left:105.521200pt;}
.xf{left:127.750671pt;}
.x2b{left:153.173869pt;}
.x13{left:178.961324pt;}
.x4{left:180.874667pt;}
.x2d{left:202.044006pt;}
.xe{left:222.992126pt;}
.x1c{left:238.881877pt;}
.x28{left:249.388143pt;}
.x25{left:255.532674pt;}
.x21{left:280.000000pt;}
.x14{left:283.995341pt;}
.x1d{left:298.925476pt;}
.x1a{left:309.242676pt;}
.x1b{left:323.809062pt;}
.x22{left:327.559062pt;}
.xd{left:333.567871pt;}
.x29{left:351.381063pt;}
.x26{left:352.627726pt;}
.x1e{left:356.029053pt;}
.x23{left:375.118123pt;}
.x11{left:391.828003pt;}
.x3{left:404.408000pt;}
.x1f{left:413.132650pt;}
.x2c{left:420.109212pt;}
.x24{left:422.677205pt;}
.x12{left:440.894124pt;}
.x27{left:445.237183pt;}
.x10{left:450.517212pt;}
.x2a{left:453.373983pt;}
.xa{left:463.702922pt;}
.x20{left:470.236247pt;}
.xc{left:474.107747pt;}
.x15{left:497.861328pt;}
.xb{left:503.042684pt;}
.x16{left:517.795207pt;}
}




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