
    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_4353a4c458c7e4d3a04f184c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_51cf89cb245e9877dc538a9c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.711000;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_dbdd10e97d895d8b3a2b9d73.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893000;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_6cd9f9803a182fb2c0af5ef7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919000;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_39aca6dbb9017a5d03393d2f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.810000;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_bd630520eb5d2627ed6a68d4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.904000;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_09de19f4e7671565ff214468.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910000;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_fcc87dcce26285fa0c5ef912.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.773000;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_03fab3826179531ec933e7de.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_10674faf29fc63dce94c8649.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.898000;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_831dd323e2d2604df06e83da.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.694000;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_6829b65aa7cbd3f00c295f60.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.884000;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_cdaa7b405957b22e64a48978.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.675000;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_849fd962ca99899a871ca236.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.897450;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_dc3c6099c727ad64bfa7eac1.woff2')format("woff");}.fff{font-family:fff;line-height:0.049000;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_c077684cb532a414ab2f06cd.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910000;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_5719c1c7bc032940f4272bd0.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.694000;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_cfd79d5a67582784f9acb5e3.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_f4a308dd06bf11d01f7639cc.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.773000;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_c4224b56941f3f91f1f10eec.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_3d8ab041f57801cd922a6a4f.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.108000;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_cfd79d5a67582784f9acb5e3.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_c077684cb532a414ab2f06cd.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.910000;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_f4a308dd06bf11d01f7639cc.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.773000;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_ccc3e4a63a99a7c7e5aee0dc.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.033000;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_5719c1c7bc032940f4272bd0.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.694000;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_174faa43039f0f2a1c8b0e48.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.898000;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_4cb61ad8c7b0b88d5c0e820b.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.049000;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_86baf2fbbef0e1152900b3fe.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.999000;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_cfd79d5a67582784f9acb5e3.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_c077684cb532a414ab2f06cd.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.910000;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_f4a308dd06bf11d01f7639cc.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.773000;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_ccc3e4a63a99a7c7e5aee0dc.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.033000;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_5719c1c7bc032940f4272bd0.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.694000;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_174faa43039f0f2a1c8b0e48.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.898000;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_4cb61ad8c7b0b88d5c0e820b.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.049000;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.249988,-0.002447,0.002447,0.249988,0,0);-ms-transform:matrix(0.249988,-0.002447,0.002447,0.249988,0,0);-webkit-transform:matrix(0.249988,-0.002447,0.002447,0.249988,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);}
.v2{vertical-align:-23.754000px;}
.v4{vertical-align:-16.878000px;}
.v5{vertical-align:-8.964000px;}
.v6{vertical-align:-5.976000px;}
.v8{vertical-align:-1.102500px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:2.041200px;}
.v7{vertical-align:4.082328px;}
.va{vertical-align:6.122808px;}
.vb{vertical-align:8.164685px;}
.v3{vertical-align:21.690000px;}
.v1{vertical-align:26.028000px;}
.ls5{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.000564px;}
.ls23{letter-spacing:0.000621px;}
.ls71{letter-spacing:0.000780px;}
.ls70{letter-spacing:0.001626px;}
.ls32{letter-spacing:0.001866px;}
.ls18{letter-spacing:0.002023px;}
.ls6d{letter-spacing:0.003254px;}
.ls3b{letter-spacing:0.003269px;}
.ls10{letter-spacing:0.003652px;}
.ls35{letter-spacing:0.005823px;}
.ls5c{letter-spacing:0.056052px;}
.ls5d{letter-spacing:0.068997px;}
.ls59{letter-spacing:0.137615px;}
.ls66{letter-spacing:0.139019px;}
.ls48{letter-spacing:0.172077px;}
.ls3f{letter-spacing:0.173481px;}
.ls58{letter-spacing:0.221508px;}
.ls73{letter-spacing:0.376589px;}
.ls63{letter-spacing:1.266478px;}
.ls5a{letter-spacing:1.267882px;}
.ls5e{letter-spacing:1.352592px;}
.ls5b{letter-spacing:1.374114px;}
.ls69{letter-spacing:1.520657px;}
.ls40{letter-spacing:1.698190px;}
.ls43{letter-spacing:1.699594px;}
.ls6c{letter-spacing:1.736785px;}
.ls6a{letter-spacing:1.784340px;}
.ls45{letter-spacing:2.129938px;}
.ls49{letter-spacing:2.131342px;}
.ls67{letter-spacing:2.214648px;}
.ls64{letter-spacing:2.216052px;}
.ls55{letter-spacing:2.983140px;}
.ls2{letter-spacing:2.984400px;}
.ls28{letter-spacing:2.984525px;}
.ls3a{letter-spacing:2.985954px;}
.ls33{letter-spacing:2.987535px;}
.ls0{letter-spacing:2.987923px;}
.ls6e{letter-spacing:2.988334px;}
.ls4a{letter-spacing:2.988532px;}
.ls4{letter-spacing:2.989200px;}
.ls6f{letter-spacing:2.990289px;}
.ls4c{letter-spacing:2.990375px;}
.ls3{letter-spacing:2.990400px;}
.ls38{letter-spacing:2.990525px;}
.ls1{letter-spacing:2.991113px;}
.ls39{letter-spacing:2.991954px;}
.ls2a{letter-spacing:3.230196px;}
.ls21{letter-spacing:4.490282px;}
.ls44{letter-spacing:6.047390px;}
.ls41{letter-spacing:6.047462px;}
.ls46{letter-spacing:6.048679px;}
.ls27{letter-spacing:6.433866px;}
.ls56{letter-spacing:7.821727px;}
.ls57{letter-spacing:7.989079px;}
.ls4b{letter-spacing:9.216557px;}
.ls50{letter-spacing:9.957269px;}
.ls29{letter-spacing:9.962338px;}
.ls4f{letter-spacing:9.963269px;}
.ls3e{letter-spacing:10.149223px;}
.ls24{letter-spacing:11.289056px;}
.ls3d{letter-spacing:11.634766px;}
.ls9{letter-spacing:13.276287px;}
.ls6{letter-spacing:13.282287px;}
.lsd{letter-spacing:13.284538px;}
.lsc{letter-spacing:15.428023px;}
.ls22{letter-spacing:15.475200px;}
.ls25{letter-spacing:16.233489px;}
.lsb{letter-spacing:16.602538px;}
.ls2b{letter-spacing:16.605269px;}
.ls20{letter-spacing:17.084023px;}
.ls11{letter-spacing:17.108282px;}
.ls47{letter-spacing:17.646368px;}
.ls13{letter-spacing:17.660100px;}
.ls31{letter-spacing:19.595535px;}
.ls12{letter-spacing:19.826282px;}
.ls15{letter-spacing:20.108282px;}
.lse{letter-spacing:21.092282px;}
.ls8{letter-spacing:21.330538px;}
.ls14{letter-spacing:21.608282px;}
.ls2f{letter-spacing:21.615269px;}
.ls16{letter-spacing:21.632282px;}
.ls54{letter-spacing:21.979140px;}
.ls53{letter-spacing:23.228282px;}
.ls7{letter-spacing:23.474023px;}
.ls2e{letter-spacing:23.814600px;}
.ls19{letter-spacing:24.026023px;}
.ls2d{letter-spacing:24.680196px;}
.ls1e{letter-spacing:25.658282px;}
.ls37{letter-spacing:25.886525px;}
.ls3c{letter-spacing:26.918525px;}
.ls1b{letter-spacing:28.176538px;}
.ls17{letter-spacing:29.410287px;}
.ls52{letter-spacing:29.844600px;}
.lsa{letter-spacing:29.884287px;}
.ls1a{letter-spacing:30.314023px;}
.ls26{letter-spacing:30.758282px;}
.ls1d{letter-spacing:31.102287px;}
.ls4e{letter-spacing:33.204538px;}
.ls4d{letter-spacing:33.207269px;}
.ls1c{letter-spacing:34.468287px;}
.ls65{letter-spacing:39.601784px;}
.ls1f{letter-spacing:40.194600px;}
.ls51{letter-spacing:46.178338px;}
.ls30{letter-spacing:47.547299px;}
.ls6b{letter-spacing:72.492464px;}
.ls68{letter-spacing:108.993224px;}
.ls5f{letter-spacing:137.179368px;}
.ls61{letter-spacing:171.345067px;}
.ls62{letter-spacing:171.360000px;}
.ls60{letter-spacing:184.120848px;}
.ls2c{letter-spacing:324.608338px;}
.ls34{letter-spacing:457.226338px;}
.lsf{letter-spacing:466.994338px;}
.ls42{letter-spacing:542.647784px;}
.ls72{letter-spacing:824.565600px;}
.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;}
}
.ws3{word-spacing:-50.809387px;}
.ws8c{word-spacing:-16.605662px;}
.ws1c{word-spacing:-14.943900px;}
.wsfe{word-spacing:-13.826189px;}
.wsf6{word-spacing:-13.449600px;}
.ws2{word-spacing:-11.955150px;}
.ws4c{word-spacing:-10.460700px;}
.ws9e{word-spacing:-6.083327px;}
.ws9f{word-spacing:-6.083256px;}
.ws54{word-spacing:-3.586536px;}
.ws29{word-spacing:-3.466985px;}
.wsad{word-spacing:-3.301466px;}
.ws21{word-spacing:-3.287658px;}
.wsbe{word-spacing:-3.227882px;}
.ws35{word-spacing:-3.168107px;}
.ws84{word-spacing:-2.929004px;}
.ws34{word-spacing:-2.689902px;}
.ws47{word-spacing:-2.630126px;}
.ws5f{word-spacing:-2.570351px;}
.wsc9{word-spacing:-2.450800px;}
.wse3{word-spacing:-2.391024px;}
.ws63{word-spacing:-2.331248px;}
.ws62{word-spacing:-2.323691px;}
.wsca{word-spacing:-2.211697px;}
.wsd7{word-spacing:-2.151922px;}
.ws42{word-spacing:-1.673717px;}
.ws53{word-spacing:-1.625900px;}
.ws39{word-spacing:-1.613941px;}
.wsd3{word-spacing:-1.560154px;}
.wsf5{word-spacing:-1.452557px;}
.ws20{word-spacing:-1.374839px;}
.wsb7{word-spacing:-1.315063px;}
.ws78{word-spacing:-1.195512px;}
.wsc0{word-spacing:-1.135736px;}
.ws86{word-spacing:-1.075961px;}
.wsd2{word-spacing:-1.022170px;}
.ws8a{word-spacing:-1.016185px;}
.wsb3{word-spacing:-0.956410px;}
.wsec{word-spacing:-0.806976px;}
.ws66{word-spacing:-0.777083px;}
.wsd8{word-spacing:-0.597756px;}
.wsf1{word-spacing:-0.591782px;}
.wse9{word-spacing:-0.537984px;}
.wse8{word-spacing:-0.484186px;}
.ws45{word-spacing:-0.478205px;}
.ws3c{word-spacing:-0.418429px;}
.wsb1{word-spacing:-0.298878px;}
.ws23{word-spacing:-0.239102px;}
.wsb8{word-spacing:-0.179327px;}
.ws61{word-spacing:-0.059776px;}
.ws6{word-spacing:-0.053798px;}
.ws7f{word-spacing:-0.047821px;}
.ws6c{word-spacing:-0.041843px;}
.ws9d{word-spacing:-0.035866px;}
.wsd4{word-spacing:-0.005136px;}
.ws5{word-spacing:-0.002623px;}
.wsa3{word-spacing:-0.000288px;}
.ws0{word-spacing:0.000000px;}
.ws79{word-spacing:0.002134px;}
.wsba{word-spacing:0.059776px;}
.ws3b{word-spacing:0.239102px;}
.ws65{word-spacing:0.418429px;}
.ws5a{word-spacing:0.478205px;}
.ws7c{word-spacing:0.526027px;}
.ws2a{word-spacing:0.537980px;}
.ws67{word-spacing:0.657532px;}
.wse2{word-spacing:0.717307px;}
.ws9c{word-spacing:0.765130px;}
.ws13{word-spacing:0.777083px;}
.wsbf{word-spacing:0.836858px;}
.ws40{word-spacing:0.896634px;}
.wsd5{word-spacing:0.914573px;}
.ws22{word-spacing:0.956410px;}
.wscc{word-spacing:0.956412px;}
.ws4f{word-spacing:1.016185px;}
.wsb4{word-spacing:1.052053px;}
.wscb{word-spacing:1.075961px;}
.ws2e{word-spacing:1.135736px;}
.wsd1{word-spacing:1.183565px;}
.ws69{word-spacing:1.185025px;}
.ws6a{word-spacing:1.195512px;}
.wsd0{word-spacing:1.203888px;}
.wscf{word-spacing:1.237363px;}
.ws2f{word-spacing:1.255288px;}
.ws36{word-spacing:1.315063px;}
.wscd{word-spacing:1.338977px;}
.ws41{word-spacing:1.374839px;}
.wse7{word-spacing:1.398758px;}
.ws24{word-spacing:1.434614px;}
.ws81{word-spacing:1.494390px;}
.wsc2{word-spacing:1.554166px;}
.ws89{word-spacing:1.613941px;}
.wsdd{word-spacing:1.673717px;}
.ws3a{word-spacing:1.733492px;}
.ws46{word-spacing:1.853044px;}
.wsa6{word-spacing:1.912819px;}
.ws64{word-spacing:1.972595px;}
.wsc5{word-spacing:2.092146px;}
.ws3e{word-spacing:2.151922px;}
.ws68{word-spacing:2.211697px;}
.ws48{word-spacing:2.331248px;}
.ws10{word-spacing:2.391024px;}
.wsf{word-spacing:2.424317px;}
.wsc{word-spacing:2.450800px;}
.ws4e{word-spacing:2.510575px;}
.ws60{word-spacing:2.570351px;}
.wsb2{word-spacing:2.749678px;}
.wsef{word-spacing:2.797517px;}
.ws52{word-spacing:2.809453px;}
.ws75{word-spacing:2.869229px;}
.ws74{word-spacing:2.876150px;}
.ws71{word-spacing:2.883985px;}
.ws25{word-spacing:2.929004px;}
.ws5b{word-spacing:3.108331px;}
.wsce{word-spacing:3.281702px;}
.ws50{word-spacing:3.287658px;}
.ws7b{word-spacing:3.299621px;}
.ws5c{word-spacing:3.407209px;}
.ws27{word-spacing:3.466985px;}
.wse5{word-spacing:3.550694px;}
.ws57{word-spacing:3.586536px;}
.ws56{word-spacing:3.646312px;}
.wsb9{word-spacing:3.765863px;}
.wse6{word-spacing:3.819686px;}
.ws8b{word-spacing:3.825638px;}
.ws1a{word-spacing:3.945190px;}
.wsf4{word-spacing:3.981082px;}
.wsf3{word-spacing:3.997123px;}
.ws2b{word-spacing:4.004965px;}
.wsbc{word-spacing:4.040134px;}
.ws37{word-spacing:4.064741px;}
.wsbd{word-spacing:4.124516px;}
.wsee{word-spacing:4.142477px;}
.ws59{word-spacing:4.184292px;}
.wsa7{word-spacing:4.288534px;}
.ws55{word-spacing:4.303843px;}
.wsd6{word-spacing:4.357670px;}
.wsb0{word-spacing:4.363619px;}
.wsea{word-spacing:4.411469px;}
.ws5d{word-spacing:4.473025px;}
.ws5e{word-spacing:4.483170px;}
.ws1b{word-spacing:4.542946px;}
.wsed{word-spacing:4.572864px;}
.wsc4{word-spacing:4.602721px;}
.wsaa{word-spacing:4.662497px;}
.wsdb{word-spacing:4.782048px;}
.wsf8{word-spacing:4.788058px;}
.wsdc{word-spacing:4.794350px;}
.wse4{word-spacing:4.895654px;}
.wsa{word-spacing:4.961375px;}
.ws19{word-spacing:5.001984px;}
.wsd9{word-spacing:5.080926px;}
.ws43{word-spacing:5.260253px;}
.wsc1{word-spacing:5.320028px;}
.ws1f{word-spacing:5.379804px;}
.ws87{word-spacing:5.439580px;}
.ws97{word-spacing:5.559131px;}
.ws38{word-spacing:5.738458px;}
.ws58{word-spacing:5.798233px;}
.ws1e{word-spacing:5.858009px;}
.ws31{word-spacing:5.917784px;}
.ws51{word-spacing:5.977560px;}
.wsa0{word-spacing:6.011596px;}
.ws49{word-spacing:6.037336px;}
.ws98{word-spacing:6.097111px;}
.wsa8{word-spacing:6.156887px;}
.wsd{word-spacing:6.216662px;}
.ws6f{word-spacing:6.248150px;}
.ws70{word-spacing:6.276438px;}
.ws3d{word-spacing:6.395989px;}
.ws85{word-spacing:6.455765px;}
.ws8f{word-spacing:6.515540px;}
.ws7a{word-spacing:6.551422px;}
.wseb{word-spacing:6.563405px;}
.ws4b{word-spacing:6.575316px;}
.ws28{word-spacing:6.635092px;}
.wsa1{word-spacing:6.671002px;}
.ws91{word-spacing:6.694867px;}
.ws30{word-spacing:6.754643px;}
.ws9b{word-spacing:6.814418px;}
.ws6d{word-spacing:6.933970px;}
.ws6b{word-spacing:6.936883px;}
.wsaf{word-spacing:6.993745px;}
.ws77{word-spacing:7.053521px;}
.ws2c{word-spacing:7.113296px;}
.wsc7{word-spacing:7.173072px;}
.ws1d{word-spacing:7.232848px;}
.ws26{word-spacing:7.352399px;}
.wsc6{word-spacing:7.412174px;}
.wsac{word-spacing:7.651277px;}
.ws4a{word-spacing:7.830604px;}
.ws96{word-spacing:7.950155px;}
.ws3f{word-spacing:8.009930px;}
.ws4d{word-spacing:8.129482px;}
.ws12{word-spacing:8.189257px;}
.wsc8{word-spacing:8.249033px;}
.ws8{word-spacing:8.308808px;}
.wsae{word-spacing:8.368584px;}
.wsb5{word-spacing:8.428360px;}
.ws90{word-spacing:8.547911px;}
.ws11{word-spacing:8.607686px;}
.ws2d{word-spacing:8.787013px;}
.wse{word-spacing:8.846789px;}
.wsc3{word-spacing:8.906564px;}
.ws99{word-spacing:8.966340px;}
.ws4{word-spacing:8.969400px;}
.ws9a{word-spacing:8.984134px;}
.wsa2{word-spacing:9.038131px;}
.wsa4{word-spacing:9.137021px;}
.wsa5{word-spacing:9.145728px;}
.wsda{word-spacing:9.205442px;}
.wsde{word-spacing:9.324994px;}
.ws80{word-spacing:9.504320px;}
.wsa9{word-spacing:9.743423px;}
.wsab{word-spacing:9.803198px;}
.ws8e{word-spacing:9.862974px;}
.ws8d{word-spacing:9.922750px;}
.ws17{word-spacing:9.982525px;}
.ws88{word-spacing:10.042301px;}
.wsf0{word-spacing:10.544486px;}
.wsb{word-spacing:10.759608px;}
.ws14{word-spacing:10.879159px;}
.ws18{word-spacing:11.058486px;}
.ws83{word-spacing:11.297588px;}
.wsbb{word-spacing:11.417140px;}
.ws82{word-spacing:11.536691px;}
.wsb6{word-spacing:11.716018px;}
.wsdf{word-spacing:12.074671px;}
.ws76{word-spacing:12.194222px;}
.wsfd{word-spacing:12.212237px;}
.wsf9{word-spacing:12.465245px;}
.wse0{word-spacing:12.480740px;}
.wsfa{word-spacing:12.481229px;}
.wse1{word-spacing:12.493100px;}
.ws93{word-spacing:13.090856px;}
.ws94{word-spacing:13.107896px;}
.ws95{word-spacing:13.150632px;}
.ws32{word-spacing:13.403602px;}
.ws33{word-spacing:13.688612px;}
.ws7e{word-spacing:14.243553px;}
.ws44{word-spacing:14.884124px;}
.wsfc{word-spacing:15.117350px;}
.wsf2{word-spacing:15.440141px;}
.ws92{word-spacing:16.677392px;}
.ws7d{word-spacing:16.832851px;}
.ws9{word-spacing:18.112007px;}
.ws73{word-spacing:20.765166px;}
.ws1{word-spacing:20.837864px;}
.ws72{word-spacing:21.877870px;}
.ws7{word-spacing:23.405282px;}
.ws6e{word-spacing:24.137166px;}
.wsf7{word-spacing:25.392845px;}
.wsfb{word-spacing:25.769434px;}
.ws15{word-spacing:30.927574px;}
.ws16{word-spacing:59.715824px;}
._2{margin-left:-7.531758px;}
._1{margin-left:-5.499375px;}
._5{margin-left:-3.616437px;}
._0{margin-left:-1.613952px;}
._4{width:3.012710px;}
._1d{width:7.173180px;}
._1c{width:8.966340px;}
._1f{width:10.460730px;}
._3{width:11.950253px;}
._15{width:15.302554px;}
._14{width:16.677392px;}
._11{width:17.843030px;}
._19{width:18.918964px;}
._6{width:20.383554px;}
._10{width:21.578992px;}
._c{width:23.551617px;}
._13{width:25.464438px;}
._d{width:27.168023px;}
._12{width:28.931401px;}
._f{width:30.306229px;}
._8{width:32.039722px;}
._16{width:34.610072px;}
._18{width:36.403340px;}
._9{width:37.539077px;}
._1a{width:38.913916px;}
._e{width:40.684998px;}
._b{width:42.620003px;}
._1b{width:44.742061px;}
._7{width:46.565192px;}
._1e{width:47.700950px;}
._21{width:50.225875px;}
._a{width:51.287476px;}
._20{width:56.052574px;}
._17{width:59.775600px;}
._22{width:67.153703px;}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:20.409118px;}
.fsb{font-size:20.409120px;}
.fsa{font-size:25.105860px;}
.fs9{font-size:35.865504px;}
.fs8{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs4{font-size:46.027200px;}
.fs3{font-size:47.820600px;}
.fs0{font-size:53.798400px;}
.fs6{font-size:59.775600px;}
.fs5{font-size:65.753400px;}
.fs2{font-size:71.731200px;}
.fs1{font-size:83.686200px;}
.y0{bottom:0.000000px;}
.y127{bottom:6.299280px;}
.y133{bottom:7.642971px;}
.y138{bottom:8.890713px;}
.y13c{bottom:9.675000px;}
.y13e{bottom:10.665000px;}
.ybc{bottom:25.211412px;}
.y137{bottom:31.851243px;}
.y132{bottom:33.911010px;}
.y140{bottom:35.865000px;}
.y117{bottom:38.216970px;}
.y11a{bottom:39.195000px;}
.y121{bottom:39.464721px;}
.y125{bottom:40.275000px;}
.y120{bottom:62.425251px;}
.y119{bottom:63.765000px;}
.y116{bottom:64.484730px;}
.y124{bottom:65.295000px;}
.y131{bottom:68.871420px;}
.y136{bottom:70.119153px;}
.y13b{bottom:73.485000px;}
.y13f{bottom:73.575000px;}
.y115{bottom:99.445500px;}
.y11f{bottom:100.692810px;}
.y11c{bottom:102.015000px;}
.y123{bottom:102.465000px;}
.y126{bottom:103.995000px;}
.y130{bottom:107.138700px;}
.y135{bottom:108.386703px;}
.y13a{bottom:109.665000px;}
.ybb{bottom:110.420982px;}
.y13d{bottom:111.735000px;}
.y59{bottom:130.903500px;}
.y12f{bottom:132.651000px;}
.ye2{bottom:135.123000px;}
.y134{bottom:135.225000px;}
.y114{bottom:137.713500px;}
.y11e{bottom:138.960720px;}
.y33{bottom:139.225500px;}
.y158{bottom:139.465500px;}
.y11b{bottom:140.265000px;}
.y111{bottom:145.099500px;}
.y58{bottom:149.319000px;}
.y139{bottom:150.508800px;}
.ye1{bottom:156.858000px;}
.y32{bottom:157.158000px;}
.y157{bottom:157.398000px;}
.y110{bottom:159.297000px;}
.y8b{bottom:159.657000px;}
.y113{bottom:163.224900px;}
.y11d{bottom:164.472570px;}
.y118{bottom:165.735000px;}
.y57{bottom:172.102500px;}
.yb8{bottom:173.589000px;}
.y8a{bottom:173.854500px;}
.ye0{bottom:174.790500px;}
.y31{bottom:175.090500px;}
.y156{bottom:175.330500px;}
.y122{bottom:181.083600px;}
.y56{bottom:190.035000px;}
.yb7{bottom:191.521500px;}
.y89{bottom:192.270000px;}
.ydf{bottom:192.724500px;}
.y30{bottom:193.024500px;}
.y17b{bottom:193.263000px;}
.y155{bottom:196.252500px;}
.y10f{bottom:200.536500px;}
.yba{bottom:205.324200px;}
.y55{bottom:207.967500px;}
.yb6{bottom:209.455500px;}
.yde{bottom:210.657000px;}
.y2f{bottom:210.957000px;}
.y17a{bottom:211.195500px;}
.y154{bottom:214.185000px;}
.y10e{bottom:218.469000px;}
.y54{bottom:225.900000px;}
.yb5{bottom:227.388000px;}
.ydd{bottom:228.589500px;}
.y2e{bottom:228.889500px;}
.y179{bottom:229.128000px;}
.y153{bottom:232.117500px;}
.y88{bottom:232.248000px;}
.y10d{bottom:236.403000px;}
.y53{bottom:243.832500px;}
.ydc{bottom:246.522000px;}
.y2d{bottom:246.822000px;}
.y178{bottom:247.062000px;}
.yb4{bottom:248.310000px;}
.y152{bottom:250.050000px;}
.y87{bottom:250.180500px;}
.y10c{bottom:254.335500px;}
.y52{bottom:261.766500px;}
.ydb{bottom:264.454500px;}
.y2c{bottom:264.754500px;}
.y177{bottom:264.994500px;}
.yb3{bottom:266.242500px;}
.y151{bottom:267.984000px;}
.y86{bottom:268.113000px;}
.y10b{bottom:272.268000px;}
.y51{bottom:279.699000px;}
.yda{bottom:282.387000px;}
.y2b{bottom:282.687000px;}
.yb2{bottom:284.175000px;}
.y176{bottom:284.626500px;}
.y150{bottom:285.916500px;}
.y85{bottom:286.045500px;}
.y10a{bottom:290.200500px;}
.y50{bottom:297.631500px;}
.yd9{bottom:300.321000px;}
.y2a{bottom:300.621000px;}
.yb1{bottom:302.107500px;}
.y175{bottom:302.559000px;}
.y14f{bottom:303.849000px;}
.y84{bottom:303.979500px;}
.y109{bottom:308.133000px;}
.y4f{bottom:315.564000px;}
.yd8{bottom:318.253500px;}
.y29{bottom:318.553500px;}
.y174{bottom:320.491500px;}
.y14e{bottom:321.781500px;}
.y83{bottom:321.912000px;}
.y108{bottom:326.065500px;}
.y4e{bottom:333.496500px;}
.yb0{bottom:335.737500px;}
.yd7{bottom:336.186000px;}
.y28{bottom:336.486000px;}
.y173{bottom:338.425500px;}
.y14d{bottom:339.714000px;}
.y82{bottom:339.844500px;}
.y107{bottom:343.999500px;}
.y4d{bottom:351.429000px;}
.yd6{bottom:354.118500px;}
.y27{bottom:354.418500px;}
.y14c{bottom:357.646500px;}
.y81{bottom:357.777000px;}
.y172{bottom:358.057500px;}
.y106{bottom:364.920000px;}
.y4c{bottom:369.363000px;}
.yaf{bottom:369.367500px;}
.yd5{bottom:372.051000px;}
.y26{bottom:375.340500px;}
.y14b{bottom:375.580500px;}
.y80{bottom:375.709500px;}
.y171{bottom:375.990000px;}
.y105{bottom:382.852500px;}
.yae{bottom:387.300000px;}
.yd4{bottom:389.985000px;}
.y4b{bottom:390.283500px;}
.y25{bottom:393.273000px;}
.y14a{bottom:393.513000px;}
.y7f{bottom:393.643500px;}
.y170{bottom:393.922500px;}
.y104{bottom:400.786500px;}
.yad{bottom:405.232500px;}
.yd3{bottom:407.917500px;}
.y4a{bottom:408.216000px;}
.y24{bottom:411.205500px;}
.y7e{bottom:411.576000px;}
.y16f{bottom:411.855000px;}
.y149{bottom:414.498000px;}
.y103{bottom:418.719000px;}
.yac{bottom:423.165000px;}
.y49{bottom:426.150000px;}
.yd2{bottom:428.838000px;}
.y23{bottom:429.138000px;}
.y7d{bottom:429.508500px;}
.y16e{bottom:429.789000px;}
.y102{bottom:436.651500px;}
.yab{bottom:441.099000px;}
.y48{bottom:444.082500px;}
.yd1{bottom:446.772000px;}
.y22{bottom:447.072000px;}
.y7c{bottom:447.441000px;}
.y16d{bottom:449.421000px;}
.y148{bottom:453.352500px;}
.y101{bottom:454.584000px;}
.yaa{bottom:459.031500px;}
.yd0{bottom:464.704500px;}
.y21{bottom:465.004500px;}
.y47{bottom:465.067500px;}
.y7b{bottom:465.373500px;}
.y16c{bottom:467.353500px;}
.y147{bottom:471.285000px;}
.y100{bottom:472.516500px;}
.ya9{bottom:476.964000px;}
.ycf{bottom:482.637000px;}
.y20{bottom:482.937000px;}
.y16b{bottom:485.286000px;}
.y7a{bottom:486.295500px;}
.y146{bottom:489.219000px;}
.yff{bottom:490.450500px;}
.yce{bottom:500.569500px;}
.y1f{bottom:500.869500px;}
.y46{bottom:503.922000px;}
.y79{bottom:504.228000px;}
.y16a{bottom:504.918000px;}
.y145{bottom:507.151500px;}
.ya8{bottom:510.594000px;}
.yfe{bottom:511.371000px;}
.ycd{bottom:518.502000px;}
.y1e{bottom:518.802000px;}
.y45{bottom:521.854500px;}
.y78{bottom:522.160500px;}
.y169{bottom:522.852000px;}
.y144{bottom:525.084000px;}
.yfd{bottom:529.303500px;}
.ycc{bottom:536.434500px;}
.y1d{bottom:536.734500px;}
.y44{bottom:539.788500px;}
.y77{bottom:540.093000px;}
.y168{bottom:540.784500px;}
.ya7{bottom:544.224000px;}
.yfc{bottom:547.237500px;}
.ycb{bottom:554.368500px;}
.y1c{bottom:554.668500px;}
.y43{bottom:557.721000px;}
.y76{bottom:558.027000px;}
.y167{bottom:558.717000px;}
.ya6{bottom:562.156500px;}
.yfb{bottom:565.170000px;}
.y143{bottom:570.489000px;}
.yca{bottom:572.301000px;}
.y1b{bottom:572.601000px;}
.y42{bottom:575.653500px;}
.y75{bottom:575.959500px;}
.y166{bottom:578.349000px;}
.ya5{bottom:580.089000px;}
.yfa{bottom:583.102500px;}
.y142{bottom:588.423000px;}
.yc9{bottom:590.233500px;}
.y1a{bottom:593.586000px;}
.y74{bottom:593.892000px;}
.y165{bottom:596.281500px;}
.ya4{bottom:601.011000px;}
.yf9{bottom:601.035000px;}
.y141{bottom:606.355500px;}
.yc8{bottom:611.155500px;}
.y41{bottom:611.518500px;}
.y73{bottom:611.824500px;}
.y164{bottom:614.215500px;}
.ya3{bottom:618.943500px;}
.yf8{bottom:618.967500px;}
.yc7{bottom:629.088000px;}
.y40{bottom:629.451000px;}
.y163{bottom:632.148000px;}
.y19{bottom:632.440500px;}
.y12e{bottom:633.852000px;}
.ya2{bottom:636.876000px;}
.yf7{bottom:636.900000px;}
.yc6{bottom:647.020500px;}
.y3f{bottom:647.385000px;}
.y162{bottom:650.080500px;}
.y18{bottom:650.373000px;}
.y72{bottom:652.788000px;}
.ya1{bottom:654.808500px;}
.yf6{bottom:654.834000px;}
.yc5{bottom:664.953000px;}
.y3e{bottom:668.305500px;}
.y161{bottom:669.712500px;}
.ya0{bottom:672.742500px;}
.yf5{bottom:672.766500px;}
.yc4{bottom:685.875000px;}
.y3d{bottom:686.239500px;}
.y160{bottom:687.645000px;}
.y17{bottom:689.227500px;}
.y9f{bottom:690.675000px;}
.yf4{bottom:690.699000px;}
.y71{bottom:693.751500px;}
.yc3{bottom:703.807500px;}
.y3c{bottom:704.172000px;}
.y16{bottom:707.160000px;}
.y9e{bottom:708.607500px;}
.yf3{bottom:708.631500px;}
.y70{bottom:711.685500px;}
.y3b{bottom:722.104500px;}
.y15{bottom:725.094000px;}
.yf2{bottom:729.553500px;}
.y6f{bottom:729.618000px;}
.yc2{bottom:734.115000px;}
.y3a{bottom:740.037000px;}
.y9d{bottom:742.237500px;}
.y14{bottom:743.026500px;}
.yf1{bottom:747.486000px;}
.y6e{bottom:750.538500px;}
.y39{bottom:757.969500px;}
.y9c{bottom:760.170000px;}
.y13{bottom:760.959000px;}
.yc1{bottom:764.422500px;}
.yf0{bottom:765.418500px;}
.y6d{bottom:768.472500px;}
.y38{bottom:775.902000px;}
.y9b{bottom:778.102500px;}
.y12{bottom:778.891500px;}
.yc0{bottom:782.355000px;}
.yef{bottom:783.351000px;}
.y6c{bottom:786.405000px;}
.y37{bottom:793.836000px;}
.y9a{bottom:796.036500px;}
.y11{bottom:796.824000px;}
.yee{bottom:801.285000px;}
.y6b{bottom:804.337500px;}
.y36{bottom:811.768500px;}
.y10{bottom:814.758000px;}
.y12d{bottom:818.544000px;}
.yed{bottom:819.217500px;}
.y6a{bottom:822.270000px;}
.y99{bottom:829.665000px;}
.y35{bottom:829.701000px;}
.ybf{bottom:830.511000px;}
.yf{bottom:832.690500px;}
.y12c{bottom:836.478000px;}
.yec{bottom:837.150000px;}
.y69{bottom:840.202500px;}
.y15f{bottom:843.192000px;}
.y98{bottom:847.599000px;}
.y34{bottom:847.633500px;}
.ybe{bottom:848.443500px;}
.ye{bottom:850.623000px;}
.y12b{bottom:854.410500px;}
.yeb{bottom:855.082500px;}
.y68{bottom:858.135000px;}
.y15e{bottom:861.124500px;}
.y97{bottom:865.531500px;}
.ybd{bottom:866.376000px;}
.yd{bottom:868.555500px;}
.y12a{bottom:872.343000px;}
.yea{bottom:876.004500px;}
.y67{bottom:876.069000px;}
.y15d{bottom:879.057000px;}
.y96{bottom:883.464000px;}
.yc{bottom:886.488000px;}
.y129{bottom:890.275500px;}
.yb9{bottom:893.872500px;}
.ye9{bottom:893.937000px;}
.y66{bottom:896.989500px;}
.y95{bottom:901.396500px;}
.yb{bottom:904.420500px;}
.y128{bottom:908.208000px;}
.ye8{bottom:911.869500px;}
.y15c{bottom:914.922000px;}
.y65{bottom:914.923500px;}
.y94{bottom:919.329000px;}
.ye7{bottom:929.802000px;}
.y64{bottom:932.856000px;}
.y112{bottom:935.706000px;}
.ya{bottom:943.806000px;}
.ye6{bottom:947.734500px;}
.y63{bottom:950.788500px;}
.y93{bottom:952.959000px;}
.y9{bottom:963.232500px;}
.ye5{bottom:965.668500px;}
.y62{bottom:968.721000px;}
.y92{bottom:970.893000px;}
.y8{bottom:982.660500px;}
.ye4{bottom:983.601000px;}
.y61{bottom:986.653500px;}
.y91{bottom:988.825500px;}
.ye3{bottom:1001.533500px;}
.y7{bottom:1002.087000px;}
.y60{bottom:1004.586000px;}
.y90{bottom:1006.758000px;}
.y15b{bottom:1007.575500px;}
.y6{bottom:1021.515000px;}
.y5f{bottom:1022.520000px;}
.y8f{bottom:1024.690500px;}
.y15a{bottom:1025.508000px;}
.y5e{bottom:1043.440500px;}
.y5{bottom:1049.947500px;}
.y8e{bottom:1058.320500px;}
.y5d{bottom:1061.373000px;}
.y8d{bottom:1076.253000px;}
.y159{bottom:1079.305500px;}
.y5c{bottom:1079.307000px;}
.y4{bottom:1082.824500px;}
.y8c{bottom:1094.185500px;}
.y5b{bottom:1097.239500px;}
.y3{bottom:1100.757000px;}
.y5a{bottom:1115.172000px;}
.y2{bottom:1187.766000px;}
.y1{bottom:1202.709000px;}
.h15{height:10.878061px;}
.h18{height:15.198061px;}
.h1c{height:21.593340px;}
.hb{height:24.675533px;}
.h14{height:25.285180px;}
.h12{height:26.899128px;}
.h16{height:26.900532px;}
.h17{height:28.940328px;}
.h11{height:30.981456px;}
.h5{height:31.666714px;}
.hc{height:32.900573px;}
.h6{height:33.665702px;}
.h19{height:35.063813px;}
.h1d{height:36.905702px;}
.h2{height:37.013299px;}
.h1a{height:40.348800px;}
.h8{height:41.125613px;}
.h9{height:41.364715px;}
.h7{height:41.783144px;}
.he{height:42.141798px;}
.hf{height:44.831700px;}
.ha{height:50.477846px;}
.hd{height:50.483846px;}
.h3{height:57.910850px;}
.h4{height:59.693702px;}
.h1b{height:163.782000px;}
.h13{height:194.409000px;}
.h10{height:236.241000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:295.938000px;}
.w3{width:303.894000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:5.575410px;}
.x1f{left:13.228560px;}
.x1d{left:15.779880px;}
.x18{left:33.638220px;}
.x25{left:46.394100px;}
.x22{left:59.150070px;}
.x20{left:61.695000px;}
.xa{left:68.031000px;}
.x1b{left:79.575000px;}
.xc{left:82.975500px;}
.x12{left:89.700000px;}
.x1c{left:92.539500px;}
.x17{left:96.517500px;}
.x23{left:99.495000px;}
.x3{left:115.863000px;}
.x19{left:117.827037px;}
.x1a{left:125.991000px;}
.x24{left:151.515000px;}
.x2b{left:168.259500px;}
.xb{left:171.861000px;}
.x26{left:194.895000px;}
.x11{left:202.204500px;}
.x9{left:208.876500px;}
.x1{left:215.994000px;}
.x29{left:225.675000px;}
.x27{left:227.025000px;}
.x2a{left:228.915000px;}
.x28{left:230.085000px;}
.x6{left:258.196500px;}
.x21{left:267.836400px;}
.x2{left:285.690000px;}
.x5{left:292.158000px;}
.x8{left:313.123500px;}
.x7{left:322.812000px;}
.x4{left:383.002500px;}
.xd{left:446.457000px;}
.x2e{left:448.198500px;}
.xf{left:449.811000px;}
.xe{left:461.400000px;}
.x10{left:468.126000px;}
.x2f{left:471.352500px;}
.x14{left:476.344500px;}
.x13{left:479.781000px;}
.x2c{left:535.686000px;}
.x15{left:545.034000px;}
.x2d{left:572.679000px;}
.x16{left:578.188500px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v4{vertical-align:-15.002667pt;}
.v5{vertical-align:-7.968000pt;}
.v6{vertical-align:-5.312000pt;}
.v8{vertical-align:-0.980000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.814400pt;}
.v7{vertical-align:3.628736pt;}
.va{vertical-align:5.442496pt;}
.vb{vertical-align:7.257498pt;}
.v3{vertical-align:19.280000pt;}
.v1{vertical-align:23.136000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.000501pt;}
.ls23{letter-spacing:0.000552pt;}
.ls71{letter-spacing:0.000693pt;}
.ls70{letter-spacing:0.001446pt;}
.ls32{letter-spacing:0.001659pt;}
.ls18{letter-spacing:0.001799pt;}
.ls6d{letter-spacing:0.002893pt;}
.ls3b{letter-spacing:0.002906pt;}
.ls10{letter-spacing:0.003246pt;}
.ls35{letter-spacing:0.005176pt;}
.ls5c{letter-spacing:0.049824pt;}
.ls5d{letter-spacing:0.061331pt;}
.ls59{letter-spacing:0.122324pt;}
.ls66{letter-spacing:0.123572pt;}
.ls48{letter-spacing:0.152957pt;}
.ls3f{letter-spacing:0.154205pt;}
.ls58{letter-spacing:0.196896pt;}
.ls73{letter-spacing:0.334746pt;}
.ls63{letter-spacing:1.125758pt;}
.ls5a{letter-spacing:1.127006pt;}
.ls5e{letter-spacing:1.202304pt;}
.ls5b{letter-spacing:1.221434pt;}
.ls69{letter-spacing:1.351695pt;}
.ls40{letter-spacing:1.509502pt;}
.ls43{letter-spacing:1.510750pt;}
.ls6c{letter-spacing:1.543808pt;}
.ls6a{letter-spacing:1.586080pt;}
.ls45{letter-spacing:1.893278pt;}
.ls49{letter-spacing:1.894526pt;}
.ls67{letter-spacing:1.968576pt;}
.ls64{letter-spacing:1.969824pt;}
.ls55{letter-spacing:2.651680pt;}
.ls2{letter-spacing:2.652800pt;}
.ls28{letter-spacing:2.652911pt;}
.ls3a{letter-spacing:2.654181pt;}
.ls33{letter-spacing:2.655587pt;}
.ls0{letter-spacing:2.655932pt;}
.ls6e{letter-spacing:2.656297pt;}
.ls4a{letter-spacing:2.656473pt;}
.ls4{letter-spacing:2.657067pt;}
.ls6f{letter-spacing:2.658034pt;}
.ls4c{letter-spacing:2.658111pt;}
.ls3{letter-spacing:2.658133pt;}
.ls38{letter-spacing:2.658245pt;}
.ls1{letter-spacing:2.658767pt;}
.ls39{letter-spacing:2.659514pt;}
.ls2a{letter-spacing:2.871286pt;}
.ls21{letter-spacing:3.991361pt;}
.ls44{letter-spacing:5.375458pt;}
.ls41{letter-spacing:5.375522pt;}
.ls46{letter-spacing:5.376604pt;}
.ls27{letter-spacing:5.718992pt;}
.ls56{letter-spacing:6.952647pt;}
.ls57{letter-spacing:7.101404pt;}
.ls4b{letter-spacing:8.192495pt;}
.ls50{letter-spacing:8.850906pt;}
.ls29{letter-spacing:8.855412pt;}
.ls4f{letter-spacing:8.856239pt;}
.ls3e{letter-spacing:9.021532pt;}
.ls24{letter-spacing:10.034717pt;}
.ls3d{letter-spacing:10.342014pt;}
.ls9{letter-spacing:11.801144pt;}
.ls6{letter-spacing:11.806477pt;}
.lsd{letter-spacing:11.808479pt;}
.lsc{letter-spacing:13.713799pt;}
.ls22{letter-spacing:13.755733pt;}
.ls25{letter-spacing:14.429768pt;}
.lsb{letter-spacing:14.757812pt;}
.ls2b{letter-spacing:14.760239pt;}
.ls20{letter-spacing:15.185799pt;}
.ls11{letter-spacing:15.207361pt;}
.ls47{letter-spacing:15.685660pt;}
.ls13{letter-spacing:15.697867pt;}
.ls31{letter-spacing:17.418254pt;}
.ls12{letter-spacing:17.623361pt;}
.ls15{letter-spacing:17.874028pt;}
.lse{letter-spacing:18.748695pt;}
.ls8{letter-spacing:18.960479pt;}
.ls14{letter-spacing:19.207361pt;}
.ls2f{letter-spacing:19.213573pt;}
.ls16{letter-spacing:19.228695pt;}
.ls54{letter-spacing:19.537014pt;}
.ls53{letter-spacing:20.647361pt;}
.ls7{letter-spacing:20.865799pt;}
.ls2e{letter-spacing:21.168533pt;}
.ls19{letter-spacing:21.356465pt;}
.ls2d{letter-spacing:21.937952pt;}
.ls1e{letter-spacing:22.807361pt;}
.ls37{letter-spacing:23.010245pt;}
.ls3c{letter-spacing:23.927578pt;}
.ls1b{letter-spacing:25.045812pt;}
.ls17{letter-spacing:26.142477pt;}
.ls52{letter-spacing:26.528533pt;}
.lsa{letter-spacing:26.563810pt;}
.ls1a{letter-spacing:26.945799pt;}
.ls26{letter-spacing:27.340695pt;}
.ls1d{letter-spacing:27.646477pt;}
.ls4e{letter-spacing:29.515145pt;}
.ls4d{letter-spacing:29.517573pt;}
.ls1c{letter-spacing:30.638477pt;}
.ls65{letter-spacing:35.201586pt;}
.ls1f{letter-spacing:35.728533pt;}
.ls51{letter-spacing:41.047412pt;}
.ls30{letter-spacing:42.264266pt;}
.ls6b{letter-spacing:64.437746pt;}
.ls68{letter-spacing:96.882866pt;}
.ls5f{letter-spacing:121.937216pt;}
.ls61{letter-spacing:152.306726pt;}
.ls62{letter-spacing:152.320000pt;}
.ls60{letter-spacing:163.662976pt;}
.ls2c{letter-spacing:288.540745pt;}
.ls34{letter-spacing:406.423412pt;}
.lsf{letter-spacing:415.106079pt;}
.ls42{letter-spacing:482.353586pt;}
.ls72{letter-spacing:732.947200pt;}
.ws3{word-spacing:-45.163900pt;}
.ws8c{word-spacing:-14.760588pt;}
.ws1c{word-spacing:-13.283467pt;}
.wsfe{word-spacing:-12.289946pt;}
.wsf6{word-spacing:-11.955200pt;}
.ws2{word-spacing:-10.626800pt;}
.ws4c{word-spacing:-9.298400pt;}
.ws9e{word-spacing:-5.407402pt;}
.ws9f{word-spacing:-5.407338pt;}
.ws54{word-spacing:-3.188032pt;}
.ws29{word-spacing:-3.081764pt;}
.wsad{word-spacing:-2.934637pt;}
.ws21{word-spacing:-2.922363pt;}
.wsbe{word-spacing:-2.869229pt;}
.ws35{word-spacing:-2.816095pt;}
.ws84{word-spacing:-2.603559pt;}
.ws34{word-spacing:-2.391024pt;}
.ws47{word-spacing:-2.337890pt;}
.ws5f{word-spacing:-2.284756pt;}
.wsc9{word-spacing:-2.178489pt;}
.wse3{word-spacing:-2.125355pt;}
.ws63{word-spacing:-2.072221pt;}
.ws62{word-spacing:-2.065503pt;}
.wsca{word-spacing:-1.965953pt;}
.wsd7{word-spacing:-1.912819pt;}
.ws42{word-spacing:-1.487748pt;}
.ws53{word-spacing:-1.445245pt;}
.ws39{word-spacing:-1.434614pt;}
.wsd3{word-spacing:-1.386803pt;}
.wsf5{word-spacing:-1.291162pt;}
.ws20{word-spacing:-1.222079pt;}
.wsb7{word-spacing:-1.168945pt;}
.ws78{word-spacing:-1.062677pt;}
.wsc0{word-spacing:-1.009543pt;}
.ws86{word-spacing:-0.956410pt;}
.wsd2{word-spacing:-0.908595pt;}
.ws8a{word-spacing:-0.903276pt;}
.wsb3{word-spacing:-0.850142pt;}
.wsec{word-spacing:-0.717312pt;}
.ws66{word-spacing:-0.690740pt;}
.wsd8{word-spacing:-0.531339pt;}
.wsf1{word-spacing:-0.526029pt;}
.wse9{word-spacing:-0.478208pt;}
.wse8{word-spacing:-0.430387pt;}
.ws45{word-spacing:-0.425071pt;}
.ws3c{word-spacing:-0.371937pt;}
.wsb1{word-spacing:-0.265669pt;}
.ws23{word-spacing:-0.212535pt;}
.wsb8{word-spacing:-0.159402pt;}
.ws61{word-spacing:-0.053134pt;}
.ws6{word-spacing:-0.047821pt;}
.ws7f{word-spacing:-0.042507pt;}
.ws6c{word-spacing:-0.037194pt;}
.ws9d{word-spacing:-0.031880pt;}
.wsd4{word-spacing:-0.004565pt;}
.ws5{word-spacing:-0.002331pt;}
.wsa3{word-spacing:-0.000256pt;}
.ws0{word-spacing:0.000000pt;}
.ws79{word-spacing:0.001897pt;}
.wsba{word-spacing:0.053134pt;}
.ws3b{word-spacing:0.212535pt;}
.ws65{word-spacing:0.371937pt;}
.ws5a{word-spacing:0.425071pt;}
.ws7c{word-spacing:0.467579pt;}
.ws2a{word-spacing:0.478205pt;}
.ws67{word-spacing:0.584473pt;}
.wse2{word-spacing:0.637606pt;}
.ws9c{word-spacing:0.680115pt;}
.ws13{word-spacing:0.690740pt;}
.wsbf{word-spacing:0.743874pt;}
.ws40{word-spacing:0.797008pt;}
.wsd5{word-spacing:0.812954pt;}
.ws22{word-spacing:0.850142pt;}
.wscc{word-spacing:0.850144pt;}
.ws4f{word-spacing:0.903276pt;}
.wsb4{word-spacing:0.935158pt;}
.wscb{word-spacing:0.956410pt;}
.ws2e{word-spacing:1.009543pt;}
.wsd1{word-spacing:1.052058pt;}
.ws69{word-spacing:1.053356pt;}
.ws6a{word-spacing:1.062677pt;}
.wsd0{word-spacing:1.070123pt;}
.wscf{word-spacing:1.099878pt;}
.ws2f{word-spacing:1.115811pt;}
.ws36{word-spacing:1.168945pt;}
.wscd{word-spacing:1.190202pt;}
.ws41{word-spacing:1.222079pt;}
.wse7{word-spacing:1.243341pt;}
.ws24{word-spacing:1.275213pt;}
.ws81{word-spacing:1.328347pt;}
.wsc2{word-spacing:1.381481pt;}
.ws89{word-spacing:1.434614pt;}
.wsdd{word-spacing:1.487748pt;}
.ws3a{word-spacing:1.540882pt;}
.ws46{word-spacing:1.647150pt;}
.wsa6{word-spacing:1.700284pt;}
.ws64{word-spacing:1.753418pt;}
.wsc5{word-spacing:1.859685pt;}
.ws3e{word-spacing:1.912819pt;}
.ws68{word-spacing:1.965953pt;}
.ws48{word-spacing:2.072221pt;}
.ws10{word-spacing:2.125355pt;}
.wsf{word-spacing:2.154948pt;}
.wsc{word-spacing:2.178489pt;}
.ws4e{word-spacing:2.231622pt;}
.ws60{word-spacing:2.284756pt;}
.wsb2{word-spacing:2.444158pt;}
.wsef{word-spacing:2.486682pt;}
.ws52{word-spacing:2.497292pt;}
.ws75{word-spacing:2.550426pt;}
.ws74{word-spacing:2.556578pt;}
.ws71{word-spacing:2.563542pt;}
.ws25{word-spacing:2.603559pt;}
.ws5b{word-spacing:2.762961pt;}
.wsce{word-spacing:2.917069pt;}
.ws50{word-spacing:2.922363pt;}
.ws7b{word-spacing:2.932997pt;}
.ws5c{word-spacing:3.028630pt;}
.ws27{word-spacing:3.081764pt;}
.wse5{word-spacing:3.156173pt;}
.ws57{word-spacing:3.188032pt;}
.ws56{word-spacing:3.241166pt;}
.wsb9{word-spacing:3.347434pt;}
.wse6{word-spacing:3.395277pt;}
.ws8b{word-spacing:3.400567pt;}
.ws1a{word-spacing:3.506835pt;}
.wsf4{word-spacing:3.538739pt;}
.wsf3{word-spacing:3.552998pt;}
.ws2b{word-spacing:3.559969pt;}
.wsbc{word-spacing:3.591230pt;}
.ws37{word-spacing:3.613103pt;}
.wsbd{word-spacing:3.666237pt;}
.wsee{word-spacing:3.682202pt;}
.ws59{word-spacing:3.719371pt;}
.wsa7{word-spacing:3.812030pt;}
.ws55{word-spacing:3.825638pt;}
.wsd6{word-spacing:3.873485pt;}
.wsb0{word-spacing:3.878772pt;}
.wsea{word-spacing:3.921306pt;}
.ws5d{word-spacing:3.976022pt;}
.ws5e{word-spacing:3.985040pt;}
.ws1b{word-spacing:4.038174pt;}
.wsed{word-spacing:4.064768pt;}
.wsc4{word-spacing:4.091308pt;}
.wsaa{word-spacing:4.144442pt;}
.wsdb{word-spacing:4.250709pt;}
.wsf8{word-spacing:4.256051pt;}
.wsdc{word-spacing:4.261645pt;}
.wse4{word-spacing:4.351693pt;}
.wsa{word-spacing:4.410111pt;}
.ws19{word-spacing:4.446208pt;}
.wsd9{word-spacing:4.516379pt;}
.ws43{word-spacing:4.675780pt;}
.wsc1{word-spacing:4.728914pt;}
.ws1f{word-spacing:4.782048pt;}
.ws87{word-spacing:4.835182pt;}
.ws97{word-spacing:4.941450pt;}
.ws38{word-spacing:5.100851pt;}
.ws58{word-spacing:5.153985pt;}
.ws1e{word-spacing:5.207119pt;}
.ws31{word-spacing:5.260253pt;}
.ws51{word-spacing:5.313387pt;}
.wsa0{word-spacing:5.343641pt;}
.ws49{word-spacing:5.366521pt;}
.ws98{word-spacing:5.419654pt;}
.wsa8{word-spacing:5.472788pt;}
.wsd{word-spacing:5.525922pt;}
.ws6f{word-spacing:5.553911pt;}
.ws70{word-spacing:5.579056pt;}
.ws3d{word-spacing:5.685324pt;}
.ws85{word-spacing:5.738458pt;}
.ws8f{word-spacing:5.791591pt;}
.ws7a{word-spacing:5.823486pt;}
.wseb{word-spacing:5.834138pt;}
.ws4b{word-spacing:5.844725pt;}
.ws28{word-spacing:5.897859pt;}
.wsa1{word-spacing:5.929779pt;}
.ws91{word-spacing:5.950993pt;}
.ws30{word-spacing:6.004127pt;}
.ws9b{word-spacing:6.057261pt;}
.ws6d{word-spacing:6.163529pt;}
.ws6b{word-spacing:6.166118pt;}
.wsaf{word-spacing:6.216662pt;}
.ws77{word-spacing:6.269796pt;}
.ws2c{word-spacing:6.322930pt;}
.wsc7{word-spacing:6.376064pt;}
.ws1d{word-spacing:6.429198pt;}
.ws26{word-spacing:6.535466pt;}
.wsc6{word-spacing:6.588599pt;}
.wsac{word-spacing:6.801135pt;}
.ws4a{word-spacing:6.960537pt;}
.ws96{word-spacing:7.066804pt;}
.ws3f{word-spacing:7.119938pt;}
.ws4d{word-spacing:7.226206pt;}
.ws12{word-spacing:7.279340pt;}
.wsc8{word-spacing:7.332474pt;}
.ws8{word-spacing:7.385607pt;}
.wsae{word-spacing:7.438741pt;}
.wsb5{word-spacing:7.491875pt;}
.ws90{word-spacing:7.598143pt;}
.ws11{word-spacing:7.651277pt;}
.ws2d{word-spacing:7.810678pt;}
.wse{word-spacing:7.863812pt;}
.wsc3{word-spacing:7.916946pt;}
.ws99{word-spacing:7.970080pt;}
.ws4{word-spacing:7.972800pt;}
.ws9a{word-spacing:7.985897pt;}
.wsa2{word-spacing:8.033894pt;}
.wsa4{word-spacing:8.121796pt;}
.wsa5{word-spacing:8.129536pt;}
.wsda{word-spacing:8.182615pt;}
.wsde{word-spacing:8.288883pt;}
.ws80{word-spacing:8.448285pt;}
.wsa9{word-spacing:8.660820pt;}
.wsab{word-spacing:8.713954pt;}
.ws8e{word-spacing:8.767088pt;}
.ws8d{word-spacing:8.820222pt;}
.ws17{word-spacing:8.873356pt;}
.ws88{word-spacing:8.926490pt;}
.wsf0{word-spacing:9.372877pt;}
.wsb{word-spacing:9.564096pt;}
.ws14{word-spacing:9.670364pt;}
.ws18{word-spacing:9.829765pt;}
.ws83{word-spacing:10.042301pt;}
.wsbb{word-spacing:10.148569pt;}
.ws82{word-spacing:10.254836pt;}
.wsb6{word-spacing:10.414238pt;}
.wsdf{word-spacing:10.733041pt;}
.ws76{word-spacing:10.839309pt;}
.wsfd{word-spacing:10.855322pt;}
.wsf9{word-spacing:11.080218pt;}
.wse0{word-spacing:11.093991pt;}
.wsfa{word-spacing:11.094426pt;}
.wse1{word-spacing:11.104978pt;}
.ws93{word-spacing:11.636317pt;}
.ws94{word-spacing:11.651463pt;}
.ws95{word-spacing:11.689451pt;}
.ws32{word-spacing:11.914313pt;}
.ws33{word-spacing:12.167655pt;}
.ws7e{word-spacing:12.660936pt;}
.ws44{word-spacing:13.230333pt;}
.wsfc{word-spacing:13.437645pt;}
.wsf2{word-spacing:13.724570pt;}
.ws92{word-spacing:14.824349pt;}
.ws7d{word-spacing:14.962534pt;}
.ws9{word-spacing:16.099562pt;}
.ws73{word-spacing:18.457926pt;}
.ws1{word-spacing:18.522546pt;}
.ws72{word-spacing:19.446995pt;}
.ws7{word-spacing:20.804695pt;}
.ws6e{word-spacing:21.455259pt;}
.wsf7{word-spacing:22.571418pt;}
.wsfb{word-spacing:22.906163pt;}
.ws15{word-spacing:27.491177pt;}
.ws16{word-spacing:53.080733pt;}
._2{margin-left:-6.694896pt;}
._1{margin-left:-4.888333pt;}
._5{margin-left:-3.214611pt;}
._0{margin-left:-1.434624pt;}
._4{width:2.677965pt;}
._1d{width:6.376160pt;}
._1c{width:7.970080pt;}
._1f{width:9.298427pt;}
._3{width:10.622447pt;}
._15{width:13.602270pt;}
._14{width:14.824349pt;}
._11{width:15.860471pt;}
._19{width:16.816857pt;}
._6{width:18.118715pt;}
._10{width:19.181326pt;}
._c{width:20.934771pt;}
._13{width:22.635056pt;}
._d{width:24.149354pt;}
._12{width:25.716801pt;}
._f{width:26.938870pt;}
._8{width:28.479753pt;}
._16{width:30.764509pt;}
._18{width:32.358525pt;}
._9{width:33.368068pt;}
._1a{width:34.590147pt;}
._e{width:36.164443pt;}
._b{width:37.884447pt;}
._1b{width:39.770721pt;}
._7{width:41.391282pt;}
._1e{width:42.400845pt;}
._21{width:44.645222pt;}
._a{width:45.588867pt;}
._20{width:49.824510pt;}
._17{width:53.133867pt;}
._22{width:59.692180pt;}
.fsc{font-size:18.141438pt;}
.fsb{font-size:18.141440pt;}
.fsa{font-size:22.316320pt;}
.fs9{font-size:31.880448pt;}
.fs8{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs4{font-size:40.913067pt;}
.fs3{font-size:42.507200pt;}
.fs0{font-size:47.820800pt;}
.fs6{font-size:53.133867pt;}
.fs5{font-size:58.447467pt;}
.fs2{font-size:63.761067pt;}
.fs1{font-size:74.387733pt;}
.y0{bottom:0.000000pt;}
.y127{bottom:5.599360pt;}
.y133{bottom:6.793752pt;}
.y138{bottom:7.902856pt;}
.y13c{bottom:8.600000pt;}
.y13e{bottom:9.480000pt;}
.ybc{bottom:22.410144pt;}
.y137{bottom:28.312216pt;}
.y132{bottom:30.143120pt;}
.y140{bottom:31.880000pt;}
.y117{bottom:33.970640pt;}
.y11a{bottom:34.840000pt;}
.y121{bottom:35.079752pt;}
.y125{bottom:35.800000pt;}
.y120{bottom:55.489112pt;}
.y119{bottom:56.680000pt;}
.y116{bottom:57.319760pt;}
.y124{bottom:58.040000pt;}
.y131{bottom:61.219040pt;}
.y136{bottom:62.328136pt;}
.y13b{bottom:65.320000pt;}
.y13f{bottom:65.400000pt;}
.y115{bottom:88.396000pt;}
.y11f{bottom:89.504720pt;}
.y11c{bottom:90.680000pt;}
.y123{bottom:91.080000pt;}
.y126{bottom:92.440000pt;}
.y130{bottom:95.234400pt;}
.y135{bottom:96.343736pt;}
.y13a{bottom:97.480000pt;}
.ybb{bottom:98.151984pt;}
.y13d{bottom:99.320000pt;}
.y59{bottom:116.358667pt;}
.y12f{bottom:117.912000pt;}
.ye2{bottom:120.109333pt;}
.y134{bottom:120.200000pt;}
.y114{bottom:122.412000pt;}
.y11e{bottom:123.520640pt;}
.y33{bottom:123.756000pt;}
.y158{bottom:123.969333pt;}
.y11b{bottom:124.680000pt;}
.y111{bottom:128.977333pt;}
.y58{bottom:132.728000pt;}
.y139{bottom:133.785600pt;}
.ye1{bottom:139.429333pt;}
.y32{bottom:139.696000pt;}
.y157{bottom:139.909333pt;}
.y110{bottom:141.597333pt;}
.y8b{bottom:141.917333pt;}
.y113{bottom:145.088800pt;}
.y11d{bottom:146.197840pt;}
.y118{bottom:147.320000pt;}
.y57{bottom:152.980000pt;}
.yb8{bottom:154.301333pt;}
.y8a{bottom:154.537333pt;}
.ye0{bottom:155.369333pt;}
.y31{bottom:155.636000pt;}
.y156{bottom:155.849333pt;}
.y122{bottom:160.963200pt;}
.y56{bottom:168.920000pt;}
.yb7{bottom:170.241333pt;}
.y89{bottom:170.906667pt;}
.ydf{bottom:171.310667pt;}
.y30{bottom:171.577333pt;}
.y17b{bottom:171.789333pt;}
.y155{bottom:174.446667pt;}
.y10f{bottom:178.254667pt;}
.yba{bottom:182.510400pt;}
.y55{bottom:184.860000pt;}
.yb6{bottom:186.182667pt;}
.yde{bottom:187.250667pt;}
.y2f{bottom:187.517333pt;}
.y17a{bottom:187.729333pt;}
.y154{bottom:190.386667pt;}
.y10e{bottom:194.194667pt;}
.y54{bottom:200.800000pt;}
.yb5{bottom:202.122667pt;}
.ydd{bottom:203.190667pt;}
.y2e{bottom:203.457333pt;}
.y179{bottom:203.669333pt;}
.y153{bottom:206.326667pt;}
.y88{bottom:206.442667pt;}
.y10d{bottom:210.136000pt;}
.y53{bottom:216.740000pt;}
.ydc{bottom:219.130667pt;}
.y2d{bottom:219.397333pt;}
.y178{bottom:219.610667pt;}
.yb4{bottom:220.720000pt;}
.y152{bottom:222.266667pt;}
.y87{bottom:222.382667pt;}
.y10c{bottom:226.076000pt;}
.y52{bottom:232.681333pt;}
.ydb{bottom:235.070667pt;}
.y2c{bottom:235.337333pt;}
.y177{bottom:235.550667pt;}
.yb3{bottom:236.660000pt;}
.y151{bottom:238.208000pt;}
.y86{bottom:238.322667pt;}
.y10b{bottom:242.016000pt;}
.y51{bottom:248.621333pt;}
.yda{bottom:251.010667pt;}
.y2b{bottom:251.277333pt;}
.yb2{bottom:252.600000pt;}
.y176{bottom:253.001333pt;}
.y150{bottom:254.148000pt;}
.y85{bottom:254.262667pt;}
.y10a{bottom:257.956000pt;}
.y50{bottom:264.561333pt;}
.yd9{bottom:266.952000pt;}
.y2a{bottom:267.218667pt;}
.yb1{bottom:268.540000pt;}
.y175{bottom:268.941333pt;}
.y14f{bottom:270.088000pt;}
.y84{bottom:270.204000pt;}
.y109{bottom:273.896000pt;}
.y4f{bottom:280.501333pt;}
.yd8{bottom:282.892000pt;}
.y29{bottom:283.158667pt;}
.y174{bottom:284.881333pt;}
.y14e{bottom:286.028000pt;}
.y83{bottom:286.144000pt;}
.y108{bottom:289.836000pt;}
.y4e{bottom:296.441333pt;}
.yb0{bottom:298.433333pt;}
.yd7{bottom:298.832000pt;}
.y28{bottom:299.098667pt;}
.y173{bottom:300.822667pt;}
.y14d{bottom:301.968000pt;}
.y82{bottom:302.084000pt;}
.y107{bottom:305.777333pt;}
.y4d{bottom:312.381333pt;}
.yd6{bottom:314.772000pt;}
.y27{bottom:315.038667pt;}
.y14c{bottom:317.908000pt;}
.y81{bottom:318.024000pt;}
.y172{bottom:318.273333pt;}
.y106{bottom:324.373333pt;}
.y4c{bottom:328.322667pt;}
.yaf{bottom:328.326667pt;}
.yd5{bottom:330.712000pt;}
.y26{bottom:333.636000pt;}
.y14b{bottom:333.849333pt;}
.y80{bottom:333.964000pt;}
.y171{bottom:334.213333pt;}
.y105{bottom:340.313333pt;}
.yae{bottom:344.266667pt;}
.yd4{bottom:346.653333pt;}
.y4b{bottom:346.918667pt;}
.y25{bottom:349.576000pt;}
.y14a{bottom:349.789333pt;}
.y7f{bottom:349.905333pt;}
.y170{bottom:350.153333pt;}
.y104{bottom:356.254667pt;}
.yad{bottom:360.206667pt;}
.yd3{bottom:362.593333pt;}
.y4a{bottom:362.858667pt;}
.y24{bottom:365.516000pt;}
.y7e{bottom:365.845333pt;}
.y16f{bottom:366.093333pt;}
.y149{bottom:368.442667pt;}
.y103{bottom:372.194667pt;}
.yac{bottom:376.146667pt;}
.y49{bottom:378.800000pt;}
.yd2{bottom:381.189333pt;}
.y23{bottom:381.456000pt;}
.y7d{bottom:381.785333pt;}
.y16e{bottom:382.034667pt;}
.y102{bottom:388.134667pt;}
.yab{bottom:392.088000pt;}
.y48{bottom:394.740000pt;}
.yd1{bottom:397.130667pt;}
.y22{bottom:397.397333pt;}
.y7c{bottom:397.725333pt;}
.y16d{bottom:399.485333pt;}
.y148{bottom:402.980000pt;}
.y101{bottom:404.074667pt;}
.yaa{bottom:408.028000pt;}
.yd0{bottom:413.070667pt;}
.y21{bottom:413.337333pt;}
.y47{bottom:413.393333pt;}
.y7b{bottom:413.665333pt;}
.y16c{bottom:415.425333pt;}
.y147{bottom:418.920000pt;}
.y100{bottom:420.014667pt;}
.ya9{bottom:423.968000pt;}
.ycf{bottom:429.010667pt;}
.y20{bottom:429.277333pt;}
.y16b{bottom:431.365333pt;}
.y7a{bottom:432.262667pt;}
.y146{bottom:434.861333pt;}
.yff{bottom:435.956000pt;}
.yce{bottom:444.950667pt;}
.y1f{bottom:445.217333pt;}
.y46{bottom:447.930667pt;}
.y79{bottom:448.202667pt;}
.y16a{bottom:448.816000pt;}
.y145{bottom:450.801333pt;}
.ya8{bottom:453.861333pt;}
.yfe{bottom:454.552000pt;}
.ycd{bottom:460.890667pt;}
.y1e{bottom:461.157333pt;}
.y45{bottom:463.870667pt;}
.y78{bottom:464.142667pt;}
.y169{bottom:464.757333pt;}
.y144{bottom:466.741333pt;}
.yfd{bottom:470.492000pt;}
.ycc{bottom:476.830667pt;}
.y1d{bottom:477.097333pt;}
.y44{bottom:479.812000pt;}
.y77{bottom:480.082667pt;}
.y168{bottom:480.697333pt;}
.ya7{bottom:483.754667pt;}
.yfc{bottom:486.433333pt;}
.ycb{bottom:492.772000pt;}
.y1c{bottom:493.038667pt;}
.y43{bottom:495.752000pt;}
.y76{bottom:496.024000pt;}
.y167{bottom:496.637333pt;}
.ya6{bottom:499.694667pt;}
.yfb{bottom:502.373333pt;}
.y143{bottom:507.101333pt;}
.yca{bottom:508.712000pt;}
.y1b{bottom:508.978667pt;}
.y42{bottom:511.692000pt;}
.y75{bottom:511.964000pt;}
.y166{bottom:514.088000pt;}
.ya5{bottom:515.634667pt;}
.yfa{bottom:518.313333pt;}
.y142{bottom:523.042667pt;}
.yc9{bottom:524.652000pt;}
.y1a{bottom:527.632000pt;}
.y74{bottom:527.904000pt;}
.y165{bottom:530.028000pt;}
.ya4{bottom:534.232000pt;}
.yf9{bottom:534.253333pt;}
.y141{bottom:538.982667pt;}
.yc8{bottom:543.249333pt;}
.y41{bottom:543.572000pt;}
.y73{bottom:543.844000pt;}
.y164{bottom:545.969333pt;}
.ya3{bottom:550.172000pt;}
.yf8{bottom:550.193333pt;}
.yc7{bottom:559.189333pt;}
.y40{bottom:559.512000pt;}
.y163{bottom:561.909333pt;}
.y19{bottom:562.169333pt;}
.y12e{bottom:563.424000pt;}
.ya2{bottom:566.112000pt;}
.yf7{bottom:566.133333pt;}
.yc6{bottom:575.129333pt;}
.y3f{bottom:575.453333pt;}
.y162{bottom:577.849333pt;}
.y18{bottom:578.109333pt;}
.y72{bottom:580.256000pt;}
.ya1{bottom:582.052000pt;}
.yf6{bottom:582.074667pt;}
.yc5{bottom:591.069333pt;}
.y3e{bottom:594.049333pt;}
.y161{bottom:595.300000pt;}
.ya0{bottom:597.993333pt;}
.yf5{bottom:598.014667pt;}
.yc4{bottom:609.666667pt;}
.y3d{bottom:609.990667pt;}
.y160{bottom:611.240000pt;}
.y17{bottom:612.646667pt;}
.y9f{bottom:613.933333pt;}
.yf4{bottom:613.954667pt;}
.y71{bottom:616.668000pt;}
.yc3{bottom:625.606667pt;}
.y3c{bottom:625.930667pt;}
.y16{bottom:628.586667pt;}
.y9e{bottom:629.873333pt;}
.yf3{bottom:629.894667pt;}
.y70{bottom:632.609333pt;}
.y3b{bottom:641.870667pt;}
.y15{bottom:644.528000pt;}
.yf2{bottom:648.492000pt;}
.y6f{bottom:648.549333pt;}
.yc2{bottom:652.546667pt;}
.y3a{bottom:657.810667pt;}
.y9d{bottom:659.766667pt;}
.y14{bottom:660.468000pt;}
.yf1{bottom:664.432000pt;}
.y6e{bottom:667.145333pt;}
.y39{bottom:673.750667pt;}
.y9c{bottom:675.706667pt;}
.y13{bottom:676.408000pt;}
.yc1{bottom:679.486667pt;}
.yf0{bottom:680.372000pt;}
.y6d{bottom:683.086667pt;}
.y38{bottom:689.690667pt;}
.y9b{bottom:691.646667pt;}
.y12{bottom:692.348000pt;}
.yc0{bottom:695.426667pt;}
.yef{bottom:696.312000pt;}
.y6c{bottom:699.026667pt;}
.y37{bottom:705.632000pt;}
.y9a{bottom:707.588000pt;}
.y11{bottom:708.288000pt;}
.yee{bottom:712.253333pt;}
.y6b{bottom:714.966667pt;}
.y36{bottom:721.572000pt;}
.y10{bottom:724.229333pt;}
.y12d{bottom:727.594667pt;}
.yed{bottom:728.193333pt;}
.y6a{bottom:730.906667pt;}
.y99{bottom:737.480000pt;}
.y35{bottom:737.512000pt;}
.ybf{bottom:738.232000pt;}
.yf{bottom:740.169333pt;}
.y12c{bottom:743.536000pt;}
.yec{bottom:744.133333pt;}
.y69{bottom:746.846667pt;}
.y15f{bottom:749.504000pt;}
.y98{bottom:753.421333pt;}
.y34{bottom:753.452000pt;}
.ybe{bottom:754.172000pt;}
.ye{bottom:756.109333pt;}
.y12b{bottom:759.476000pt;}
.yeb{bottom:760.073333pt;}
.y68{bottom:762.786667pt;}
.y15e{bottom:765.444000pt;}
.y97{bottom:769.361333pt;}
.ybd{bottom:770.112000pt;}
.yd{bottom:772.049333pt;}
.y12a{bottom:775.416000pt;}
.yea{bottom:778.670667pt;}
.y67{bottom:778.728000pt;}
.y15d{bottom:781.384000pt;}
.y96{bottom:785.301333pt;}
.yc{bottom:787.989333pt;}
.y129{bottom:791.356000pt;}
.yb9{bottom:794.553333pt;}
.ye9{bottom:794.610667pt;}
.y66{bottom:797.324000pt;}
.y95{bottom:801.241333pt;}
.yb{bottom:803.929333pt;}
.y128{bottom:807.296000pt;}
.ye8{bottom:810.550667pt;}
.y15c{bottom:813.264000pt;}
.y65{bottom:813.265333pt;}
.y94{bottom:817.181333pt;}
.ye7{bottom:826.490667pt;}
.y64{bottom:829.205333pt;}
.y112{bottom:831.738667pt;}
.ya{bottom:838.938667pt;}
.ye6{bottom:842.430667pt;}
.y63{bottom:845.145333pt;}
.y93{bottom:847.074667pt;}
.y9{bottom:856.206667pt;}
.ye5{bottom:858.372000pt;}
.y62{bottom:861.085333pt;}
.y92{bottom:863.016000pt;}
.y8{bottom:873.476000pt;}
.ye4{bottom:874.312000pt;}
.y61{bottom:877.025333pt;}
.y91{bottom:878.956000pt;}
.ye3{bottom:890.252000pt;}
.y7{bottom:890.744000pt;}
.y60{bottom:892.965333pt;}
.y90{bottom:894.896000pt;}
.y15b{bottom:895.622667pt;}
.y6{bottom:908.013333pt;}
.y5f{bottom:908.906667pt;}
.y8f{bottom:910.836000pt;}
.y15a{bottom:911.562667pt;}
.y5e{bottom:927.502667pt;}
.y5{bottom:933.286667pt;}
.y8e{bottom:940.729333pt;}
.y5d{bottom:943.442667pt;}
.y8d{bottom:956.669333pt;}
.y159{bottom:959.382667pt;}
.y5c{bottom:959.384000pt;}
.y4{bottom:962.510667pt;}
.y8c{bottom:972.609333pt;}
.y5b{bottom:975.324000pt;}
.y3{bottom:978.450667pt;}
.y5a{bottom:991.264000pt;}
.y2{bottom:1055.792000pt;}
.y1{bottom:1069.074667pt;}
.h15{height:9.669388pt;}
.h18{height:13.509388pt;}
.h1c{height:19.194080pt;}
.hb{height:21.933807pt;}
.h14{height:22.475716pt;}
.h12{height:23.910336pt;}
.h16{height:23.911584pt;}
.h17{height:25.724736pt;}
.h11{height:27.539072pt;}
.h5{height:28.148190pt;}
.hc{height:29.244954pt;}
.h6{height:29.925069pt;}
.h19{height:31.167834pt;}
.h1d{height:32.805069pt;}
.h2{height:32.900710pt;}
.h1a{height:35.865600pt;}
.h8{height:36.556100pt;}
.h9{height:36.768636pt;}
.h7{height:37.140573pt;}
.he{height:37.459376pt;}
.hf{height:39.850400pt;}
.ha{height:44.869197pt;}
.hd{height:44.874530pt;}
.h3{height:51.476311pt;}
.h4{height:53.061069pt;}
.h1b{height:145.584000pt;}
.h13{height:172.808000pt;}
.h10{height:209.992000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:263.056000pt;}
.w3{width:270.128000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:4.955920pt;}
.x1f{left:11.758720pt;}
.x1d{left:14.026560pt;}
.x18{left:29.900640pt;}
.x25{left:41.239200pt;}
.x22{left:52.577840pt;}
.x20{left:54.840000pt;}
.xa{left:60.472000pt;}
.x1b{left:70.733333pt;}
.xc{left:73.756000pt;}
.x12{left:79.733333pt;}
.x1c{left:82.257333pt;}
.x17{left:85.793333pt;}
.x23{left:88.440000pt;}
.x3{left:102.989333pt;}
.x19{left:104.735144pt;}
.x1a{left:111.992000pt;}
.x24{left:134.680000pt;}
.x2b{left:149.564000pt;}
.xb{left:152.765333pt;}
.x26{left:173.240000pt;}
.x11{left:179.737333pt;}
.x9{left:185.668000pt;}
.x1{left:191.994667pt;}
.x29{left:200.600000pt;}
.x27{left:201.800000pt;}
.x2a{left:203.480000pt;}
.x28{left:204.520000pt;}
.x6{left:229.508000pt;}
.x21{left:238.076800pt;}
.x2{left:253.946667pt;}
.x5{left:259.696000pt;}
.x8{left:278.332000pt;}
.x7{left:286.944000pt;}
.x4{left:340.446667pt;}
.xd{left:396.850667pt;}
.x2e{left:398.398667pt;}
.xf{left:399.832000pt;}
.xe{left:410.133333pt;}
.x10{left:416.112000pt;}
.x2f{left:418.980000pt;}
.x14{left:423.417333pt;}
.x13{left:426.472000pt;}
.x2c{left:476.165333pt;}
.x15{left:484.474667pt;}
.x2d{left:509.048000pt;}
.x16{left:513.945333pt;}
}




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