
    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_4b82030989b656f5d10d7baa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.736000;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_d0c6562702f94ed1f3977945.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.660000;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_ae3d30b173e585783f2d5020.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.885000;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_c506ad8dfca54e1c491a7ca3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;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_16407f49255276bb5df9d60f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;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_4bd060cb70c318777e4b00a8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;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_ec9f27000da594407d58e990.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.710000;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_1cbee685e31e8da2dbaef0c6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.894000;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_81a10f8d498710402e3b711d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b063933b3e0669e454708541.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.923000;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_e8955365957600e8cd0aae36.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.193359;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_714ad9299058da8dca4c8c12.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_3dbc0b70bfdbb70d94220a2c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.011230;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_0332c517ce43dee68e8914d0.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.193359;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_fd789d1cacabecf66454fb73.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_904fa42dc726901a1c72b39d.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.011230;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_06ce8781c681ffc6b5425358.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.193359;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_15907a7403ca985eee9abc43.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_5babfc4fe9d63a05d0f4733c.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.011230;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_d88eeb4d551623ea19cd6df4.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_a63a088f89b74d2585895e79.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.193359;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_88540033003f6ecfadecd71f.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_580bafc265c46ca1d9ad382f.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.011230;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_cb60a6da4d0c4c9c30627ef8.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.193359;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_d8962e652fd00bd9424625ee.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_a645e9a86774b5c3ddd881d5.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.011230;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_e8955365957600e8cd0aae36.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.193359;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_35094460936ff1c1eb4ad010.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_8048fda5575776a5075effec.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.011230;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;}
.m26{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,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);}
.m21{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md{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:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls89{letter-spacing:-0.378756px;}
.ls51{letter-spacing:-0.216432px;}
.ls43{letter-spacing:-0.198396px;}
.ls90{letter-spacing:-0.195691px;}
.ls81{letter-spacing:-0.183065px;}
.ls85{letter-spacing:-0.176753px;}
.ls73{letter-spacing:-0.170440px;}
.ls2a{letter-spacing:-0.168336px;}
.ls7d{letter-spacing:-0.164128px;}
.ls65{letter-spacing:-0.157815px;}
.ls2b{letter-spacing:-0.156312px;}
.ls8f{letter-spacing:-0.151502px;}
.ls2d{letter-spacing:-0.150300px;}
.ls8e{letter-spacing:-0.145190px;}
.ls88{letter-spacing:-0.138877px;}
.ls45{letter-spacing:-0.134064px;}
.ls6d{letter-spacing:-0.132565px;}
.ls6a{letter-spacing:-0.126252px;}
.ls22{letter-spacing:-0.120240px;}
.ls84{letter-spacing:-0.119939px;}
.ls46{letter-spacing:-0.114912px;}
.ls29{letter-spacing:-0.114228px;}
.ls6f{letter-spacing:-0.113627px;}
.ls30{letter-spacing:-0.108216px;}
.ls82{letter-spacing:-0.107314px;}
.ls27{letter-spacing:-0.102204px;}
.ls63{letter-spacing:-0.101002px;}
.ls23{letter-spacing:-0.096192px;}
.ls6e{letter-spacing:-0.094689px;}
.ls2e{letter-spacing:-0.090180px;}
.ls67{letter-spacing:-0.088376px;}
.ls20{letter-spacing:-0.084168px;}
.ls8d{letter-spacing:-0.082064px;}
.ls8a{letter-spacing:-0.075751px;}
.ls2c{letter-spacing:-0.072144px;}
.ls68{letter-spacing:-0.069439px;}
.ls26{letter-spacing:-0.066132px;}
.ls41{letter-spacing:-0.064800px;}
.ls69{letter-spacing:-0.063126px;}
.ls33{letter-spacing:-0.060120px;}
.ls6b{letter-spacing:-0.056813px;}
.ls4e{letter-spacing:-0.054108px;}
.ls83{letter-spacing:-0.050501px;}
.ls2f{letter-spacing:-0.048096px;}
.ls86{letter-spacing:-0.044188px;}
.ls21{letter-spacing:-0.042084px;}
.ls7c{letter-spacing:-0.039690px;}
.ls72{letter-spacing:-0.037876px;}
.ls32{letter-spacing:-0.036072px;}
.ls66{letter-spacing:-0.031563px;}
.ls6c{letter-spacing:-0.025250px;}
.ls60{letter-spacing:-0.025137px;}
.ls1f{letter-spacing:-0.024048px;}
.ls1e{letter-spacing:-0.023940px;}
.ls7a{letter-spacing:-0.022680px;}
.ls36{letter-spacing:-0.021600px;}
.ls4d{letter-spacing:-0.019152px;}
.ls80{letter-spacing:-0.018938px;}
.ls50{letter-spacing:-0.018036px;}
.ls74{letter-spacing:-0.017010px;}
.ls34{letter-spacing:-0.016200px;}
.ls70{letter-spacing:-0.012625px;}
.ls25{letter-spacing:-0.012024px;}
.ls62{letter-spacing:-0.011340px;}
.ls42{letter-spacing:-0.010800px;}
.ls64{letter-spacing:-0.006313px;}
.ls31{letter-spacing:-0.006012px;}
.ls7b{letter-spacing:-0.005670px;}
.ls4f{letter-spacing:-0.005400px;}
.ls9{letter-spacing:0.000000px;}
.ls94{letter-spacing:0.000253px;}
.lsa2{letter-spacing:0.000406px;}
.ls92{letter-spacing:0.000800px;}
.ls99{letter-spacing:0.001036px;}
.ls93{letter-spacing:0.001155px;}
.ls97{letter-spacing:0.002045px;}
.ls9f{letter-spacing:0.002096px;}
.ls52{letter-spacing:0.003027px;}
.ls9a{letter-spacing:0.003090px;}
.ls96{letter-spacing:0.003859px;}
.lsb{letter-spacing:0.004788px;}
.ls9c{letter-spacing:0.004800px;}
.ls53{letter-spacing:0.005027px;}
.ls47{letter-spacing:0.005400px;}
.lsa0{letter-spacing:0.005522px;}
.ls8c{letter-spacing:0.005670px;}
.lsf{letter-spacing:0.006012px;}
.ls5c{letter-spacing:0.006313px;}
.ls18{letter-spacing:0.010800px;}
.ls56{letter-spacing:0.011340px;}
.ls38{letter-spacing:0.012024px;}
.ls78{letter-spacing:0.012625px;}
.ls3f{letter-spacing:0.014364px;}
.ls1c{letter-spacing:0.016200px;}
.ls11{letter-spacing:0.018036px;}
.ls77{letter-spacing:0.018938px;}
.ls1a{letter-spacing:0.021600px;}
.ls76{letter-spacing:0.022680px;}
.lse{letter-spacing:0.024048px;}
.ls5d{letter-spacing:0.025250px;}
.ls17{letter-spacing:0.027000px;}
.ls55{letter-spacing:0.028350px;}
.ls3b{letter-spacing:0.030060px;}
.ls58{letter-spacing:0.031563px;}
.ls4a{letter-spacing:0.032400px;}
.ls12{letter-spacing:0.036072px;}
.ls39{letter-spacing:0.037800px;}
.ls57{letter-spacing:0.037876px;}
.ls5e{letter-spacing:0.039690px;}
.ls10{letter-spacing:0.042084px;}
.ls19{letter-spacing:0.043200px;}
.ls59{letter-spacing:0.044188px;}
.ls75{letter-spacing:0.045360px;}
.ls14{letter-spacing:0.048096px;}
.ls1d{letter-spacing:0.048600px;}
.ls5b{letter-spacing:0.050501px;}
.ls16{letter-spacing:0.054108px;}
.ls13{letter-spacing:0.060120px;}
.ls5f{letter-spacing:0.062370px;}
.ls5a{letter-spacing:0.063126px;}
.ls4b{letter-spacing:0.064800px;}
.ls24{letter-spacing:0.066132px;}
.ls8b{letter-spacing:0.068040px;}
.ls7e{letter-spacing:0.069439px;}
.ls44{letter-spacing:0.071820px;}
.ls28{letter-spacing:0.072144px;}
.ls79{letter-spacing:0.075751px;}
.ls37{letter-spacing:0.078156px;}
.ls3e{letter-spacing:0.081396px;}
.ls4c{letter-spacing:0.084168px;}
.ls71{letter-spacing:0.088376px;}
.ls87{letter-spacing:0.094689px;}
.ls3a{letter-spacing:0.102204px;}
.lsd{letter-spacing:0.108216px;}
.ls3d{letter-spacing:0.114912px;}
.ls15{letter-spacing:0.120240px;}
.ls1b{letter-spacing:0.124200px;}
.lsc{letter-spacing:0.167580px;}
.ls3c{letter-spacing:0.172368px;}
.ls49{letter-spacing:0.177156px;}
.ls54{letter-spacing:0.180986px;}
.lsa{letter-spacing:0.181944px;}
.ls61{letter-spacing:0.191041px;}
.ls48{letter-spacing:0.191520px;}
.ls8{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.ls7f{letter-spacing:1.982156px;}
.ls40{letter-spacing:2.248488px;}
.ls3{letter-spacing:2.998354px;}
.ls1{letter-spacing:10.461300px;}
.lsa5{letter-spacing:11.885094px;}
.ls7{letter-spacing:11.954850px;}
.lsa3{letter-spacing:13.421271px;}
.ls95{letter-spacing:13.448400px;}
.lsa1{letter-spacing:13.454400px;}
.ls9d{letter-spacing:13.508061px;}
.ls9b{letter-spacing:13.569276px;}
.ls98{letter-spacing:13.687735px;}
.ls9e{letter-spacing:13.764686px;}
.ls91{letter-spacing:14.943900px;}
.lsa4{letter-spacing:16.515106px;}
.ls4{letter-spacing:17.935200px;}
.ls2{letter-spacing:57.415200px;}
.ls5{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.ls35{letter-spacing:258.481800px;}
.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;}
}
.ws5a{word-spacing:-257.941800px;}
.ws189{word-spacing:-15.686811px;}
.ws4b{word-spacing:-14.943900px;}
.ws154{word-spacing:-14.237370px;}
.ws153{word-spacing:-14.212800px;}
.ws1cc{word-spacing:-14.203350px;}
.ws5d{word-spacing:-13.624200px;}
.ws5f{word-spacing:-13.548600px;}
.ws5b{word-spacing:-13.543200px;}
.ws5c{word-spacing:-13.521600px;}
.ws5e{word-spacing:-13.516200px;}
.ws25{word-spacing:-13.449600px;}
.ws188{word-spacing:-12.759541px;}
.ws152{word-spacing:-12.568500px;}
.ws11d{word-spacing:-12.161520px;}
.ws58{word-spacing:-12.151944px;}
.wsc3{word-spacing:-11.984364px;}
.ws59{word-spacing:-11.970000px;}
.ws31{word-spacing:-11.955150px;}
.ws16{word-spacing:-11.357400px;}
.ws6{word-spacing:-10.460700px;}
.ws14a{word-spacing:-3.706087px;}
.wse8{word-spacing:-3.511008px;}
.wse9{word-spacing:-3.498984px;}
.wse7{word-spacing:-3.438864px;}
.ws1ec{word-spacing:-3.383554px;}
.wsb0{word-spacing:-3.347434px;}
.ws13{word-spacing:-3.335501px;}
.ws1eb{word-spacing:-3.288865px;}
.ws150{word-spacing:-3.227882px;}
.wsed{word-spacing:-3.180348px;}
.wsd1{word-spacing:-3.168324px;}
.ws97{word-spacing:-3.090168px;}
.ws142{word-spacing:-3.048556px;}
.ws98{word-spacing:-3.036060px;}
.ws1b4{word-spacing:-3.023735px;}
.ws21f{word-spacing:-2.988780px;}
.ws140{word-spacing:-2.987964px;}
.ws16a{word-spacing:-2.973235px;}
.ws1a7{word-spacing:-2.966922px;}
.ws13f{word-spacing:-2.927844px;}
.ws19b{word-spacing:-2.903796px;}
.ws19a{word-spacing:-2.891171px;}
.ws1b3{word-spacing:-2.872233px;}
.wsef{word-spacing:-2.819628px;}
.ws121{word-spacing:-2.809453px;}
.ws129{word-spacing:-2.807604px;}
.ws12a{word-spacing:-2.795580px;}
.ws1b5{word-spacing:-2.790169px;}
.wsee{word-spacing:-2.783556px;}
.ws82{word-spacing:-2.747484px;}
.ws11c{word-spacing:-2.689902px;}
.ws83{word-spacing:-2.621232px;}
.wsaa{word-spacing:-2.510575px;}
.ws86{word-spacing:-2.476944px;}
.wsea{word-spacing:-2.470932px;}
.wseb{word-spacing:-2.452896px;}
.ws146{word-spacing:-2.450800px;}
.wsec{word-spacing:-2.440872px;}
.ws13e{word-spacing:-2.362716px;}
.ws63{word-spacing:-2.271473px;}
.ws110{word-spacing:-2.211697px;}
.ws259{word-spacing:-2.151936px;}
.wscf{word-spacing:-2.151922px;}
.ws1aa{word-spacing:-2.127346px;}
.wsf1{word-spacing:-2.122236px;}
.wsb2{word-spacing:-2.092146px;}
.ws1ee{word-spacing:-2.076845px;}
.wsf2{word-spacing:-2.062116px;}
.ws1ed{word-spacing:-2.057908px;}
.wsd3{word-spacing:-2.056104px;}
.ws1a9{word-spacing:-2.045282px;}
.ws267{word-spacing:-2.044339px;}
.ws51{word-spacing:-2.032370px;}
.ws147{word-spacing:-1.972595px;}
.ws1{word-spacing:-1.908367px;}
.ws1be{word-spacing:-1.868530px;}
.ws148{word-spacing:-1.853044px;}
.ws24{word-spacing:-1.829146px;}
.ws16e{word-spacing:-1.792778px;}
.wsd4{word-spacing:-1.773540px;}
.ws1d0{word-spacing:-1.769040px;}
.ws104{word-spacing:-1.761516px;}
.ws8d{word-spacing:-1.749492px;}
.ws18e{word-spacing:-1.746360px;}
.wsba{word-spacing:-1.733492px;}
.ws131{word-spacing:-1.731456px;}
.ws1cf{word-spacing:-1.729350px;}
.ws265{word-spacing:-1.721549px;}
.ws18d{word-spacing:-1.678320px;}
.ws38{word-spacing:-1.673717px;}
.ws262{word-spacing:-1.667750px;}
.ws16d{word-spacing:-1.666526px;}
.ws12c{word-spacing:-1.652400px;}
.ws12e{word-spacing:-1.647000px;}
.ws8e{word-spacing:-1.617228px;}
.ws245{word-spacing:-1.613952px;}
.ws12d{word-spacing:-1.609200px;}
.ws8f{word-spacing:-1.599192px;}
.ws269{word-spacing:-1.560154px;}
.ws20b{word-spacing:-1.554166px;}
.ws252{word-spacing:-1.517033px;}
.ws26a{word-spacing:-1.506355px;}
.ws49{word-spacing:-1.494390px;}
.wsae{word-spacing:-1.434614px;}
.ws1d3{word-spacing:-1.432960px;}
.ws202{word-spacing:-1.426648px;}
.ws191{word-spacing:-1.420335px;}
.ws201{word-spacing:-1.407710px;}
.ws261{word-spacing:-1.398758px;}
.wsab{word-spacing:-1.374839px;}
.ws1d8{word-spacing:-1.369834px;}
.ws263{word-spacing:-1.344960px;}
.ws1bf{word-spacing:-1.344584px;}
.ws0{word-spacing:-1.322630px;}
.ws1d9{word-spacing:-1.319333px;}
.ws8c{word-spacing:-1.304604px;}
.ws8b{word-spacing:-1.262520px;}
.ws116{word-spacing:-1.255288px;}
.ws62{word-spacing:-1.195512px;}
.ws9{word-spacing:-1.171598px;}
.ws144{word-spacing:-1.135736px;}
.ws17f{word-spacing:-1.085767px;}
.ws22b{word-spacing:-1.075968px;}
.ws10f{word-spacing:-1.075961px;}
.ws167{word-spacing:-1.073142px;}
.wsb{word-spacing:-1.046070px;}
.ws198{word-spacing:-1.041579px;}
.ws2b{word-spacing:-1.016185px;}
.ws200{word-spacing:-1.010016px;}
.ws1dd{word-spacing:-0.978453px;}
.ws1d{word-spacing:-0.968371px;}
.wsb5{word-spacing:-0.956410px;}
.ws94{word-spacing:-0.955908px;}
.ws101{word-spacing:-0.931860px;}
.ws254{word-spacing:-0.914573px;}
.ws199{word-spacing:-0.909014px;}
.ws100{word-spacing:-0.901800px;}
.ws2a{word-spacing:-0.896634px;}
.ws14e{word-spacing:-0.836858px;}
.ws10d{word-spacing:-0.777083px;}
.ws19c{word-spacing:-0.732262px;}
.ws14b{word-spacing:-0.717307px;}
.ws24e{word-spacing:-0.699379px;}
.ws95{word-spacing:-0.685368px;}
.ws1e4{word-spacing:-0.681761px;}
.wsb8{word-spacing:-0.657532px;}
.ws96{word-spacing:-0.619236px;}
.ws11a{word-spacing:-0.597756px;}
.ws6c{word-spacing:-0.589176px;}
.wsfb{word-spacing:-0.583164px;}
.ws1d7{word-spacing:-0.555509px;}
.ws6d{word-spacing:-0.511020px;}
.ws4f{word-spacing:-0.418429px;}
.ws69{word-spacing:-0.378756px;}
.wsc4{word-spacing:-0.376589px;}
.ws44{word-spacing:-0.358654px;}
.ws135{word-spacing:-0.348696px;}
.ws16f{word-spacing:-0.347193px;}
.ws12b{word-spacing:-0.330660px;}
.wsf6{word-spacing:-0.324648px;}
.ws1b7{word-spacing:-0.309317px;}
.ws3b{word-spacing:-0.298878px;}
.ws158{word-spacing:-0.286562px;}
.ws122{word-spacing:-0.277704px;}
.ws66{word-spacing:-0.272916px;}
.ws228{word-spacing:-0.268992px;}
.ws1f9{word-spacing:-0.265129px;}
.ws108{word-spacing:-0.258552px;}
.ws42{word-spacing:-0.239102px;}
.ws137{word-spacing:-0.228456px;}
.ws23{word-spacing:-0.215194px;}
.ws9f{word-spacing:-0.205200px;}
.ws1e3{word-spacing:-0.202003px;}
.ws1c1{word-spacing:-0.198450px;}
.ws1c2{word-spacing:-0.187110px;}
.ws160{word-spacing:-0.183065px;}
.ws136{word-spacing:-0.180360px;}
.ws46{word-spacing:-0.179327px;}
.ws107{word-spacing:-0.172368px;}
.ws1c{word-spacing:-0.161395px;}
.ws1b6{word-spacing:-0.151502px;}
.ws1d6{word-spacing:-0.145190px;}
.ws33{word-spacing:-0.119551px;}
.wsc5{word-spacing:-0.107597px;}
.ws123{word-spacing:-0.100548px;}
.ws67{word-spacing:-0.095760px;}
.wsfc{word-spacing:-0.072144px;}
.ws157{word-spacing:-0.070384px;}
.ws65{word-spacing:-0.067032px;}
.ws15{word-spacing:-0.059776px;}
.ws222{word-spacing:-0.053798px;}
.ws32{word-spacing:-0.047821px;}
.ws7{word-spacing:-0.041843px;}
.ws22e{word-spacing:-0.026909px;}
.ws231{word-spacing:-0.005712px;}
.ws3{word-spacing:0.000000px;}
.ws1f1{word-spacing:0.006313px;}
.ws20c{word-spacing:0.020641px;}
.ws106{word-spacing:0.023940px;}
.ws13b{word-spacing:0.036072px;}
.ws13d{word-spacing:0.042084px;}
.ws1a{word-spacing:0.053798px;}
.ws1a8{word-spacing:0.056813px;}
.ws35{word-spacing:0.059776px;}
.wsf5{word-spacing:0.066132px;}
.ws1b0{word-spacing:0.075751px;}
.wsd9{word-spacing:0.078156px;}
.ws17a{word-spacing:0.088376px;}
.ws1c0{word-spacing:0.101002px;}
.ws184{word-spacing:0.107314px;}
.ws1e{word-spacing:0.107597px;}
.ws12f{word-spacing:0.118800px;}
.ws2d{word-spacing:0.119551px;}
.ws99{word-spacing:0.126252px;}
.ws1a1{word-spacing:0.132565px;}
.ws206{word-spacing:0.138877px;}
.wsdd{word-spacing:0.140400px;}
.ws1a2{word-spacing:0.145190px;}
.ws9e{word-spacing:0.151200px;}
.wsd8{word-spacing:0.156312px;}
.wsc6{word-spacing:0.161395px;}
.ws9d{word-spacing:0.167400px;}
.wsdc{word-spacing:0.178200px;}
.ws2f{word-spacing:0.179327px;}
.ws127{word-spacing:0.180360px;}
.ws1d1{word-spacing:0.181440px;}
.ws1d2{word-spacing:0.187110px;}
.ws175{word-spacing:0.189378px;}
.ws15e{word-spacing:0.195691px;}
.ws13a{word-spacing:0.198396px;}
.ws15d{word-spacing:0.198450px;}
.ws1f8{word-spacing:0.208316px;}
.ws232{word-spacing:0.215194px;}
.ws1f4{word-spacing:0.233566px;}
.ws45{word-spacing:0.239102px;}
.ws138{word-spacing:0.246492px;}
.ws225{word-spacing:0.268992px;}
.ws40{word-spacing:0.298878px;}
.ws156{word-spacing:0.322790px;}
.wse6{word-spacing:0.348696px;}
.ws34{word-spacing:0.358654px;}
.ws23b{word-spacing:0.376589px;}
.ws27{word-spacing:0.418429px;}
.ws13c{word-spacing:0.426852px;}
.ws1ab{word-spacing:0.435569px;}
.ws6a{word-spacing:0.474948px;}
.ws53{word-spacing:0.478205px;}
.ws6b{word-spacing:0.535068px;}
.ws4c{word-spacing:0.537980px;}
.ws248{word-spacing:0.537984px;}
.wse5{word-spacing:0.541080px;}
.ws113{word-spacing:0.597756px;}
.wsce{word-spacing:0.657532px;}
.ws14f{word-spacing:0.717307px;}
.wse0{word-spacing:0.763524px;}
.ws105{word-spacing:0.766080px;}
.ws109{word-spacing:0.777083px;}
.wse2{word-spacing:0.799596px;}
.ws18c{word-spacing:0.806976px;}
.ws1ff{word-spacing:0.826951px;}
.ws209{word-spacing:0.836858px;}
.ws196{word-spacing:0.845888px;}
.wsde{word-spacing:0.864000px;}
.ws17e{word-spacing:0.877451px;}
.wsf9{word-spacing:0.883764px;}
.wsa7{word-spacing:0.896634px;}
.wsdf{word-spacing:0.912600px;}
.wsf8{word-spacing:0.919836px;}
.ws166{word-spacing:0.940577px;}
.ws165{word-spacing:0.953203px;}
.wsa6{word-spacing:0.956410px;}
.ws197{word-spacing:0.978453px;}
.wsa{word-spacing:1.004227px;}
.wsac{word-spacing:1.016185px;}
.ws181{word-spacing:1.022641px;}
.wsca{word-spacing:1.075961px;}
.ws227{word-spacing:1.129766px;}
.ws43{word-spacing:1.135736px;}
.ws24b{word-spacing:1.183565px;}
.ws1de{word-spacing:1.186769px;}
.ws15f{word-spacing:1.193081px;}
.ws2c{word-spacing:1.195512px;}
.ws183{word-spacing:1.224644px;}
.wse1{word-spacing:1.244484px;}
.wsa1{word-spacing:1.255288px;}
.ws180{word-spacing:1.268833px;}
.ws93{word-spacing:1.274544px;}
.ws1a5{word-spacing:1.287770px;}
.wscc{word-spacing:1.315063px;}
.ws178{word-spacing:1.344584px;}
.ws2e{word-spacing:1.374839px;}
.ws226{word-spacing:1.398758px;}
.ws1a6{word-spacing:1.407710px;}
.ws3a{word-spacing:1.434614px;}
.ws10c{word-spacing:1.494390px;}
.ws223{word-spacing:1.506355px;}
.ws75{word-spacing:1.539072px;}
.ws177{word-spacing:1.552900px;}
.ws207{word-spacing:1.554166px;}
.ws195{word-spacing:1.559212px;}
.ws19{word-spacing:1.560154px;}
.ws1f5{word-spacing:1.590775px;}
.wsbd{word-spacing:1.613941px;}
.ws179{word-spacing:1.616026px;}
.ws117{word-spacing:1.673717px;}
.ws190{word-spacing:1.678320px;}
.ws176{word-spacing:1.698089px;}
.ws18f{word-spacing:1.706670px;}
.ws23e{word-spacing:1.712728px;}
.ws52{word-spacing:1.733492px;}
.ws80{word-spacing:1.815624px;}
.ws126{word-spacing:1.833660px;}
.wsa4{word-spacing:1.853044px;}
.wsf4{word-spacing:1.863720px;}
.ws90{word-spacing:1.893780px;}
.ws55{word-spacing:1.912819px;}
.ws1bb{word-spacing:1.919030px;}
.ws91{word-spacing:1.923840px;}
.ws125{word-spacing:1.935864px;}
.ws172{word-spacing:1.937968px;}
.ws103{word-spacing:1.959912px;}
.wsbb{word-spacing:1.972595px;}
.ws102{word-spacing:1.977948px;}
.ws6e{word-spacing:1.983960px;}
.ws1ac{word-spacing:2.007407px;}
.ws41{word-spacing:2.032370px;}
.ws11b{word-spacing:2.092146px;}
.ws1ad{word-spacing:2.095783px;}
.ws242{word-spacing:2.098138px;}
.ws173{word-spacing:2.114721px;}
.ws64{word-spacing:2.151922px;}
.ws87{word-spacing:2.188368px;}
.wsfe{word-spacing:2.194380px;}
.wsd0{word-spacing:2.200392px;}
.wsb7{word-spacing:2.211697px;}
.wsff{word-spacing:2.248488px;}
.wsd7{word-spacing:2.260512px;}
.ws115{word-spacing:2.271473px;}
.wsd2{word-spacing:2.272536px;}
.ws182{word-spacing:2.310412px;}
.ws114{word-spacing:2.331248px;}
.ws1af{word-spacing:2.354600px;}
.ws1bd{word-spacing:2.386163px;}
.ws1bc{word-spacing:2.392475px;}
.ws25d{word-spacing:2.420928px;}
.ws15a{word-spacing:2.426760px;}
.ws15c{word-spacing:2.443770px;}
.wsaf{word-spacing:2.450800px;}
.ws15b{word-spacing:2.455110px;}
.ws208{word-spacing:2.510575px;}
.ws2{word-spacing:2.511541px;}
.ws4{word-spacing:2.511956px;}
.ws6f{word-spacing:2.561112px;}
.ws143{word-spacing:2.570351px;}
.wsfd{word-spacing:2.621232px;}
.ws119{word-spacing:2.630126px;}
.ws1ae{word-spacing:2.663917px;}
.wsda{word-spacing:2.673000px;}
.ws39{word-spacing:2.689902px;}
.ws1ce{word-spacing:2.749678px;}
.ws19d{word-spacing:2.758606px;}
.wsdb{word-spacing:2.764800px;}
.ws1fb{word-spacing:2.777544px;}
.ws4e{word-spacing:2.809453px;}
.ws1fc{word-spacing:2.815420px;}
.ws1e7{word-spacing:2.846983px;}
.ws21c{word-spacing:2.869229px;}
.ws17{word-spacing:2.869236px;}
.ws1e8{word-spacing:2.884858px;}
.ws19e{word-spacing:2.922734px;}
.wsb4{word-spacing:2.929004px;}
.wse3{word-spacing:2.957904px;}
.ws3d{word-spacing:2.988780px;}
.ws18b{word-spacing:3.012710px;}
.ws111{word-spacing:3.048556px;}
.ws1e1{word-spacing:3.074236px;}
.ws163{word-spacing:3.080549px;}
.ws1fa{word-spacing:3.086861px;}
.ws47{word-spacing:3.108331px;}
.ws161{word-spacing:3.124737px;}
.ws1e2{word-spacing:3.131050px;}
.wsc7{word-spacing:3.168107px;}
.ws260{word-spacing:3.218458px;}
.ws1e6{word-spacing:3.219426px;}
.ws246{word-spacing:3.220973px;}
.ws255{word-spacing:3.222307px;}
.ws20f{word-spacing:3.227882px;}
.ws22a{word-spacing:3.227904px;}
.ws162{word-spacing:3.276239px;}
.wsad{word-spacing:3.287658px;}
.ws74{word-spacing:3.288564px;}
.ws72{word-spacing:3.324636px;}
.ws21e{word-spacing:3.347434px;}
.ws18a{word-spacing:3.389299px;}
.wsfa{word-spacing:3.396780px;}
.ws48{word-spacing:3.407209px;}
.ws243{word-spacing:3.443098px;}
.wsb9{word-spacing:3.466985px;}
.ws1d5{word-spacing:3.484555px;}
.ws249{word-spacing:3.496896px;}
.ws1dc{word-spacing:3.509806px;}
.ws10e{word-spacing:3.526760px;}
.ws164{word-spacing:3.528743px;}
.ws26{word-spacing:3.586536px;}
.ws1e5{word-spacing:3.604495px;}
.ws132{word-spacing:3.643272px;}
.wsa9{word-spacing:3.646312px;}
.ws7b{word-spacing:3.655296px;}
.ws120{word-spacing:3.706087px;}
.ws57{word-spacing:3.765863px;}
.ws22{word-spacing:3.765888px;}
.ws7a{word-spacing:3.793572px;}
.ws3e{word-spacing:3.825638px;}
.wsc9{word-spacing:3.885414px;}
.ws1d4{word-spacing:3.901187px;}
.ws1f{word-spacing:3.981082px;}
.ws21d{word-spacing:4.004965px;}
.ws11f{word-spacing:4.064741px;}
.ws130{word-spacing:4.124232px;}
.ws1c3{word-spacing:4.124516px;}
.ws1b{word-spacing:4.142477px;}
.ws134{word-spacing:4.148280px;}
.ws133{word-spacing:4.160304px;}
.wsa8{word-spacing:4.244068px;}
.ws21b{word-spacing:4.303843px;}
.ws20{word-spacing:4.303872px;}
.ws1a3{word-spacing:4.324131px;}
.ws1cd{word-spacing:4.357670px;}
.ws50{word-spacing:4.363619px;}
.ws1a4{word-spacing:4.374632px;}
.wse4{word-spacing:4.406796px;}
.ws128{word-spacing:4.412808px;}
.wsf3{word-spacing:4.460904px;}
.ws224{word-spacing:4.465267px;}
.wsb6{word-spacing:4.483170px;}
.ws219{word-spacing:4.542946px;}
.ws266{word-spacing:4.572864px;}
.wsa2{word-spacing:4.602721px;}
.ws192{word-spacing:4.614511px;}
.ws16c{word-spacing:4.639761px;}
.ws171{word-spacing:4.652386px;}
.ws28{word-spacing:4.662497px;}
.ws170{word-spacing:4.690262px;}
.wsc8{word-spacing:4.722272px;}
.ws11{word-spacing:4.770079px;}
.ws3f{word-spacing:4.782048px;}
.ws21{word-spacing:4.788058px;}
.ws36{word-spacing:4.841824px;}
.ws12{word-spacing:4.853765px;}
.wscb{word-spacing:4.901599px;}
.ws141{word-spacing:4.961375px;}
.ws17c{word-spacing:4.980641px;}
.ws238{word-spacing:5.003251px;}
.ws151{word-spacing:5.021150px;}
.ws7f{word-spacing:5.056092px;}
.ws16b{word-spacing:5.069018px;}
.wsa5{word-spacing:5.080926px;}
.ws25b{word-spacing:5.110848px;}
.ws21a{word-spacing:5.140702px;}
.ws8a{word-spacing:5.152284px;}
.ws20e{word-spacing:5.200477px;}
.ws14d{word-spacing:5.260253px;}
.ws89{word-spacing:5.278536px;}
.ws1df{word-spacing:5.397273px;}
.ws1e0{word-spacing:5.403586px;}
.wsd5{word-spacing:5.410800px;}
.ws204{word-spacing:5.422523px;}
.ws37{word-spacing:5.439580px;}
.ws17b{word-spacing:5.479337px;}
.ws203{word-spacing:5.498275px;}
.wsb3{word-spacing:5.499355px;}
.ws1f0{word-spacing:5.504587px;}
.ws1ef{word-spacing:5.536150px;}
.wsd6{word-spacing:5.609196px;}
.ws112{word-spacing:5.618906px;}
.ws29{word-spacing:5.678682px;}
.ws149{word-spacing:5.738458px;}
.ws230{word-spacing:5.756429px;}
.ws1b1{word-spacing:5.788654px;}
.ws118{word-spacing:5.798233px;}
.ws1b2{word-spacing:5.858093px;}
.ws236{word-spacing:5.917824px;}
.ws234{word-spacing:5.971622px;}
.wsa0{word-spacing:5.977560px;}
.ws4d{word-spacing:6.037336px;}
.wsbe{word-spacing:6.097111px;}
.ws17d{word-spacing:6.110597px;}
.ws193{word-spacing:6.129535px;}
.ws1f7{word-spacing:6.142160px;}
.wsf0{word-spacing:6.168312px;}
.ws1f6{word-spacing:6.180035px;}
.ws18{word-spacing:6.240614px;}
.wscd{word-spacing:6.276438px;}
.ws194{word-spacing:6.306287px;}
.ws54{word-spacing:6.395989px;}
.ws185{word-spacing:6.515540px;}
.ws1db{word-spacing:6.552479px;}
.ws11e{word-spacing:6.575316px;}
.ws139{word-spacing:6.595164px;}
.ws1da{word-spacing:6.634543px;}
.ws187{word-spacing:6.635092px;}
.ws218{word-spacing:6.694867px;}
.wsa3{word-spacing:6.754643px;}
.ws145{word-spacing:6.814418px;}
.ws25a{word-spacing:6.832397px;}
.ws7c{word-spacing:6.871716px;}
.ws169{word-spacing:6.962798px;}
.ws168{word-spacing:6.969110px;}
.ws1a0{word-spacing:7.000673px;}
.ws19f{word-spacing:7.006986px;}
.wsb1{word-spacing:7.113296px;}
.ws235{word-spacing:7.208986px;}
.ws70{word-spacing:7.226424px;}
.ws221{word-spacing:7.292623px;}
.ws88{word-spacing:7.364700px;}
.ws3c{word-spacing:7.412174px;}
.ws1c4{word-spacing:7.531726px;}
.ws1f2{word-spacing:7.695059px;}
.wsf{word-spacing:7.782761px;}
.ws20a{word-spacing:7.830604px;}
.ws1f3{word-spacing:7.852874px;}
.ws1fd{word-spacing:7.991752px;}
.ws205{word-spacing:8.017002px;}
.ws186{word-spacing:8.069706px;}
.ws220{word-spacing:8.368584px;}
.ws124{word-spacing:8.392752px;}
.ws1fe{word-spacing:8.433634px;}
.ws25f{word-spacing:9.253325px;}
.ws56{word-spacing:9.982525px;}
.ws76{word-spacing:10.593144px;}
.ws73{word-spacing:10.623204px;}
.ws79{word-spacing:11.242440px;}
.ws78{word-spacing:11.368692px;}
.ws1b9{word-spacing:11.419493px;}
.ws1b8{word-spacing:11.444744px;}
.ws264{word-spacing:11.620454px;}
.ws68{word-spacing:11.620476px;}
.ws244{word-spacing:11.781850px;}
.ws1ba{word-spacing:11.810875px;}
.ws253{word-spacing:11.889446px;}
.ws174{word-spacing:11.899251px;}
.ws81{word-spacing:12.084120px;}
.wsd{word-spacing:12.176255px;}
.ws159{word-spacing:12.196472px;}
.ws22c{word-spacing:12.286649px;}
.ws24f{word-spacing:12.696422px;}
.ws5{word-spacing:12.929425px;}
.ws23a{word-spacing:13.234406px;}
.ws251{word-spacing:13.288205px;}
.ws229{word-spacing:13.342003px;}
.ws22d{word-spacing:13.389322px;}
.ws257{word-spacing:13.389907px;}
.ws237{word-spacing:13.390512px;}
.ws258{word-spacing:13.391002px;}
.ws24a{word-spacing:13.392403px;}
.ws22f{word-spacing:13.395802px;}
.ws247{word-spacing:13.557197px;}
.ws233{word-spacing:13.610995px;}
.ws239{word-spacing:13.664794px;}
.ws23c{word-spacing:13.718592px;}
.ws14c{word-spacing:13.748388px;}
.ws1e9{word-spacing:13.843532px;}
.ws1ea{word-spacing:13.862470px;}
.ws1c8{word-spacing:14.683067px;}
.wsc0{word-spacing:14.704798px;}
.wsbc{word-spacing:14.764573px;}
.ws30{word-spacing:14.776565px;}
.ws7e{word-spacing:14.843628px;}
.ws7d{word-spacing:14.873688px;}
.ws10b{word-spacing:14.879933px;}
.ws10a{word-spacing:14.884124px;}
.ws9a{word-spacing:14.914800px;}
.ws9b{word-spacing:14.931000px;}
.ws20d{word-spacing:14.943900px;}
.ws9c{word-spacing:14.958000px;}
.ws1c5{word-spacing:15.003676px;}
.ws240{word-spacing:15.063552px;}
.ws1c6{word-spacing:15.099562px;}
.ws23f{word-spacing:15.117350px;}
.ws4a{word-spacing:15.123227px;}
.wsf7{word-spacing:15.174288px;}
.ws1c7{word-spacing:15.183002px;}
.ws8{word-spacing:15.481836px;}
.wse{word-spacing:16.109478px;}
.ws268{word-spacing:16.193318px;}
.ws25c{word-spacing:16.616400px;}
.ws23d{word-spacing:16.621958px;}
.ws256{word-spacing:16.622304px;}
.ws71{word-spacing:16.623180px;}
.ws241{word-spacing:16.946496px;}
.ws250{word-spacing:17.107891px;}
.ws85{word-spacing:18.114156px;}
.ws92{word-spacing:18.541008px;}
.ws84{word-spacing:18.607140px;}
.ws24d{word-spacing:20.550989px;}
.wsbf{word-spacing:20.981236px;}
.ws25e{word-spacing:24.263078px;}
.ws77{word-spacing:24.553008px;}
.ws24c{word-spacing:25.173126px;}
.ws10{word-spacing:26.109907px;}
.wsc{word-spacing:26.840252px;}
.ws14{word-spacing:40.042186px;}
.ws155{word-spacing:79.531200px;}
.ws61{word-spacing:87.184800px;}
.ws60{word-spacing:87.489000px;}
.ws1cb{word-spacing:95.577300px;}
.ws1c9{word-spacing:95.664240px;}
.ws1ca{word-spacing:95.966640px;}
.wsc1{word-spacing:187.498080px;}
.wsc2{word-spacing:228.435480px;}
.ws211{word-spacing:425.599142px;}
.ws210{word-spacing:426.459917px;}
.ws216{word-spacing:432.216346px;}
.ws215{word-spacing:436.036032px;}
.ws217{word-spacing:437.596186px;}
.ws214{word-spacing:439.855718px;}
.ws212{word-spacing:454.811674px;}
.ws213{word-spacing:481.710874px;}
._1e{margin-left:-258.481800px;}
._a{margin-left:-14.633165px;}
._1f{margin-left:-12.965400px;}
._9{margin-left:-7.639409px;}
._17{margin-left:-6.455765px;}
._2{margin-left:-5.397721px;}
._3{margin-left:-3.765852px;}
._8{margin-left:-2.689920px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._6{width:2.301354px;}
._b{width:3.624114px;}
._4{width:10.460700px;}
._c{width:11.955186px;}
._5{width:12.971268px;}
._28{width:13.995058px;}
._14{width:15.050923px;}
._e{width:16.462310px;}
._23{width:17.514251px;}
._f{width:18.663560px;}
._19{width:19.785742px;}
._d{width:20.976892px;}
._13{width:22.057196px;}
._1c{width:23.073382px;}
._1a{width:24.328669px;}
._20{width:25.404630px;}
._11{width:27.414854px;}
._10{width:28.674547px;}
._7{width:30.587087px;}
._22{width:31.681068px;}
._12{width:32.996131px;}
._27{width:34.139435px;}
._18{width:35.267604px;}
._1b{width:37.120648px;}
._21{width:39.332345px;}
._2d{width:40.774526px;}
._35{width:43.942651px;}
._37{width:61.868160px;}
._36{width:88.767360px;}
._26{width:119.145960px;}
._25{width:120.229216px;}
._2c{width:139.147470px;}
._24{width:203.293692px;}
._2f{width:318.325133px;}
._31{width:330.053184px;}
._34{width:468.261274px;}
._32{width:479.289946px;}
._2e{width:481.710874px;}
._30{width:495.214272px;}
._33{width:505.113178px;}
._15{width:855.797458px;}
._1d{width:1970.598148px;}
._2b{width:2044.291213px;}
._2a{width:2056.779275px;}
._29{width:2379.183337px;}
._16{width:2403.093337px;}
.fc4{color:rgb(8,117,183);}
.fc5{color:transparent;}
.fc3{color:rgb(48,49,93);}
.fc2{color:rgb(14,15,14);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fs8{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fs7{font-size:45.429600px;}
.fs0{font-size:47.236800px;}
.fs9{font-size:47.820600px;}
.fsb{font-size:47.880000px;}
.fse{font-size:50.274000px;}
.fsa{font-size:53.798400px;}
.fsd{font-size:54.000000px;}
.fs3{font-size:56.694600px;}
.fsf{font-size:56.700000px;}
.fs5{font-size:59.775600px;}
.fsc{font-size:60.120000px;}
.fs10{font-size:63.126000px;}
.fs4{font-size:68.033520px;}
.fs6{font-size:107.596800px;}
.y1f5{bottom:-836.050477px;}
.y1bf{bottom:-814.058753px;}
.y21b{bottom:-778.100989px;}
.y21a{bottom:-757.973264px;}
.y219{bottom:-737.750850px;}
.y218{bottom:-717.623125px;}
.y1e0{bottom:-700.359830px;}
.y217{bottom:-697.400711px;}
.y1a2{bottom:-692.375701px;}
.y1df{bottom:-680.230527px;}
.y216{bottom:-677.178297px;}
.y1a1{bottom:-672.238507px;}
.y1de{bottom:-660.008113px;}
.y215{bottom:-657.050571px;}
.y1a0{bottom:-652.022406px;}
.y1dd{bottom:-639.785699px;}
.y214{bottom:-636.828157px;}
.y19f{bottom:-631.900993px;}
.y1dc{bottom:-619.657974px;}
.y213{bottom:-616.700432px;}
.y19e{bottom:-611.684892px;}
.ye8{bottom:-610.348050px;}
.y1db{bottom:-599.435559px;}
.y212{bottom:-596.478018px;}
.y19d{bottom:-591.468790px;}
.y1da{bottom:-579.307834px;}
.y211{bottom:-576.255604px;}
.y19c{bottom:-571.347378px;}
.y210{bottom:-556.127879px;}
.y1d9{bottom:-554.360439px;}
.y19b{bottom:-551.131276px;}
.y10c{bottom:-550.846305px;}
.y20f{bottom:-535.905465px;}
.y10b{bottom:-531.677043px;}
.y19a{bottom:-531.009864px;}
.y20e{bottom:-515.683051px;}
.y1d8{bottom:-515.238101px;}
.y10a{bottom:-512.417601px;}
.y199{bottom:-510.793762px;}
.y20d{bottom:-495.555326px;}
.y1d7{bottom:-495.110376px;}
.y109{bottom:-493.158159px;}
.y198{bottom:-490.577661px;}
.y20c{bottom:-475.332912px;}
.y1d6{bottom:-474.887961px;}
.y108{bottom:-473.988897px;}
.y197{bottom:-470.456248px;}
.y20b{bottom:-455.205186px;}
.y107{bottom:-454.729455px;}
.y1d5{bottom:-454.665547px;}
.y196{bottom:-450.240147px;}
.y106{bottom:-435.470013px;}
.y20a{bottom:-434.982772px;}
.y1d4{bottom:-434.537822px;}
.y195{bottom:-430.024045px;}
.y105{bottom:-416.300751px;}
.y209{bottom:-414.760358px;}
.y1d3{bottom:-414.315408px;}
.y194{bottom:-409.902633px;}
.y104{bottom:-397.041309px;}
.y208{bottom:-394.632633px;}
.y1d2{bottom:-394.187683px;}
.y193{bottom:-389.686532px;}
.y207{bottom:-374.410219px;}
.y14c{bottom:-374.057550px;}
.y1d1{bottom:-373.965269px;}
.y103{bottom:-373.370562px;}
.y192{bottom:-364.830669px;}
.y206{bottom:-354.282494px;}
.y1d0{bottom:-353.742855px;}
.y102{bottom:-336.111192px;}
.y205{bottom:-334.060080px;}
.y1cf{bottom:-333.615130px;}
.y191{bottom:-325.708330px;}
.y163{bottom:-317.799954px;}
.y101{bottom:-316.851750px;}
.y204{bottom:-313.837666px;}
.y1ce{bottom:-313.392716px;}
.y190{bottom:-305.492229px;}
.y162{bottom:-298.540512px;}
.y100{bottom:-297.682488px;}
.y203{bottom:-293.709941px;}
.y1cd{bottom:-293.264991px;}
.y18f{bottom:-285.370816px;}
.y161{bottom:-279.371250px;}
.yff{bottom:-278.423046px;}
.y202{bottom:-273.487527px;}
.y1cc{bottom:-273.042576px;}
.y18e{bottom:-265.154715px;}
.y160{bottom:-260.111808px;}
.yfe{bottom:-259.253784px;}
.y201{bottom:-253.359801px;}
.y1cb{bottom:-252.820162px;}
.y18d{bottom:-245.033302px;}
.y15f{bottom:-240.852366px;}
.yfd{bottom:-239.994342px;}
.y200{bottom:-233.137387px;}
.y1ca{bottom:-232.692437px;}
.y18c{bottom:-224.817201px;}
.y15e{bottom:-221.683104px;}
.yfc{bottom:-220.734900px;}
.y1ff{bottom:-212.914973px;}
.y1c9{bottom:-212.470023px;}
.y18b{bottom:-204.601099px;}
.y15d{bottom:-202.423662px;}
.yfb{bottom:-201.565638px;}
.y1fe{bottom:-192.787248px;}
.y1c8{bottom:-192.342298px;}
.y18a{bottom:-184.479687px;}
.y15c{bottom:-183.254400px;}
.yfa{bottom:-182.306196px;}
.y1fd{bottom:-172.564834px;}
.y1c7{bottom:-172.119884px;}
.y189{bottom:-164.263585px;}
.y15b{bottom:-163.994958px;}
.yf9{bottom:-163.136934px;}
.y1fc{bottom:-152.342420px;}
.y1c6{bottom:-151.897470px;}
.y15a{bottom:-144.735516px;}
.y188{bottom:-144.126391px;}
.yf8{bottom:-143.877492px;}
.y1fb{bottom:-132.214695px;}
.y1c5{bottom:-131.768167px;}
.y159{bottom:-125.566254px;}
.yf7{bottom:-124.618050px;}
.y187{bottom:-123.910290px;}
.y1fa{bottom:-111.992281px;}
.y1c4{bottom:-111.545753px;}
.y158{bottom:-106.306812px;}
.y88{bottom:-105.040350px;}
.y186{bottom:-99.054427px;}
.y1f9{bottom:-91.862977px;}
.yf6{bottom:-87.808500px;}
.y157{bottom:-87.137550px;}
.y1c3{bottom:-72.895725px;}
.yf5{bottom:-70.438050px;}
.y185{bottom:-60.314153px;}
.y1c2{bottom:-54.656753px;}
.y1f8{bottom:-53.212792px;}
.yf4{bottom:-53.158050px;}
.y156{bottom:-50.327100px;}
.y184{bottom:-42.070928px;}
.yb1{bottom:-39.970650px;}
.y1c1{bottom:-36.512753px;}
.yf3{bottom:-35.878050px;}
.y1f7{bottom:-34.973820px;}
.y155{bottom:-32.867550px;}
.yb0{bottom:-22.600200px;}
.yf2{bottom:-13.464666px;}
.y1c0{bottom:-12.887233px;}
.y1f6{bottom:-11.348741px;}
.y154{bottom:-10.456299px;}
.yaf{bottom:-0.081351px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.425340px;}
.y118{bottom:4.621950px;}
.y1af{bottom:5.746073px;}
.y1e8{bottom:6.579247px;}
.y21{bottom:6.919670px;}
.yb9{bottom:7.009650px;}
.y227{bottom:8.118023px;}
.y2{bottom:14.151273px;}
.y20{bottom:21.032374px;}
.y4f{bottom:31.890000px;}
.y116{bottom:33.958719px;}
.yb8{bottom:36.349200px;}
.y1f{bottom:37.964688px;}
.y115{bottom:50.158917px;}
.y1a3{bottom:58.193573px;}
.yb2{bottom:58.309650px;}
.y10d{bottom:67.621950px;}
.y1e1{bottom:69.610748px;}
.y21c{bottom:71.244023px;}
.y1a4{bottom:83.330100px;}
.yb3{bottom:91.070100px;}
.y1f0{bottom:91.665000px;}
.y26c{bottom:94.281000px;}
.y1b4{bottom:95.460000px;}
.y21d{bottom:95.719995px;}
.y232{bottom:95.844000px;}
.y10e{bottom:96.961617px;}
.y13b{bottom:101.602500px;}
.y175{bottom:102.430500px;}
.y4e{bottom:103.621500px;}
.y2d9{bottom:104.503500px;}
.y1d{bottom:104.646000px;}
.y84{bottom:106.744500px;}
.y148{bottom:107.193000px;}
.y267{bottom:107.466000px;}
.ye4{bottom:107.641500px;}
.y1a5{bottom:108.372600px;}
.y1ef{bottom:110.494500px;}
.yc8{bottom:111.564000px;}
.y26b{bottom:111.855000px;}
.y2a2{bottom:112.752000px;}
.y1b3{bottom:114.289500px;}
.y231{bottom:114.673500px;}
.yb4{bottom:117.169650px;}
.y11a{bottom:117.842400px;}
.y1e2{bottom:118.372748px;}
.y11b{bottom:119.192400px;}
.y21e{bottom:120.195968px;}
.y13a{bottom:120.432000px;}
.y174{bottom:121.260000px;}
.y2d8{bottom:121.762500px;}
.y4d{bottom:122.449500px;}
.y1c{bottom:122.535000px;}
.y11d{bottom:122.881950px;}
.y83{bottom:125.574000px;}
.y147{bottom:126.022500px;}
.y266{bottom:126.295500px;}
.y10f{bottom:126.301284px;}
.ye3{bottom:126.471000px;}
.y117{bottom:128.012100px;}
.y1ee{bottom:129.324000px;}
.y26a{bottom:129.429000px;}
.y2a1{bottom:130.012500px;}
.yc7{bottom:130.393500px;}
.y1a6{bottom:133.416675px;}
.y230{bottom:133.503000px;}
.y119{bottom:135.301950px;}
.y1b2{bottom:137.602500px;}
.y2d7{bottom:139.023000px;}
.y139{bottom:139.261500px;}
.y173{bottom:140.089500px;}
.y1b{bottom:140.422500px;}
.y4c{bottom:141.279000px;}
.yb5{bottom:143.180100px;}
.y82{bottom:144.403500px;}
.y21f{bottom:144.671940px;}
.y146{bottom:144.852000px;}
.y265{bottom:145.125000px;}
.ye2{bottom:145.300500px;}
.y269{bottom:147.004500px;}
.y2a0{bottom:147.273000px;}
.y1ed{bottom:148.153500px;}
.yc6{bottom:149.223000px;}
.y22f{bottom:152.332500px;}
.y110{bottom:155.640951px;}
.y2d6{bottom:156.283500px;}
.y138{bottom:158.091000px;}
.y1a{bottom:158.310000px;}
.y1a7{bottom:158.552100px;}
.y172{bottom:158.919000px;}
.y4b{bottom:160.108500px;}
.y226{bottom:162.625523px;}
.y81{bottom:163.233000px;}
.y145{bottom:163.681500px;}
.y264{bottom:163.954500px;}
.ye1{bottom:164.130000px;}
.y29f{bottom:164.533500px;}
.y1ae{bottom:166.018073px;}
.y1ec{bottom:166.983000px;}
.y1e3{bottom:167.134748px;}
.y1b1{bottom:168.030000px;}
.yc5{bottom:168.052500px;}
.y220{bottom:169.147913px;}
.yb6{bottom:169.279650px;}
.y22e{bottom:171.162000px;}
.y1e7{bottom:172.993747px;}
.y2d5{bottom:173.544000px;}
.y19{bottom:176.199000px;}
.y137{bottom:176.920500px;}
.y171{bottom:177.747000px;}
.y4a{bottom:178.938000px;}
.y29e{bottom:181.794000px;}
.y80{bottom:182.062500px;}
.y144{bottom:182.511000px;}
.y263{bottom:182.784000px;}
.ye0{bottom:182.959500px;}
.y1a8{bottom:183.596175px;}
.y111{bottom:185.070393px;}
.yc4{bottom:186.882000px;}
.y1b0{bottom:187.261500px;}
.y22d{bottom:189.991500px;}
.y2d4{bottom:190.804500px;}
.y221{bottom:193.623885px;}
.y18{bottom:194.086500px;}
.yb7{bottom:195.379200px;}
.y136{bottom:195.750000px;}
.y170{bottom:196.576500px;}
.y49{bottom:197.767500px;}
.y29d{bottom:199.054500px;}
.y1eb{bottom:200.169000px;}
.y7f{bottom:200.892000px;}
.y143{bottom:201.340500px;}
.y262{bottom:201.613500px;}
.ydf{bottom:201.789000px;}
.yc3{bottom:205.711500px;}
.y2d3{bottom:208.065000px;}
.y1a9{bottom:208.731600px;}
.y22c{bottom:208.821000px;}
.y182{bottom:209.691000px;}
.y17{bottom:211.974000px;}
.y112{bottom:214.410060px;}
.y135{bottom:214.579500px;}
.y16f{bottom:215.406000px;}
.y1e4{bottom:215.896748px;}
.y29c{bottom:216.315000px;}
.y48{bottom:216.597000px;}
.y222{bottom:218.099858px;}
.y1ea{bottom:219.402000px;}
.y7e{bottom:219.721500px;}
.y142{bottom:220.170000px;}
.y261{bottom:220.443000px;}
.yde{bottom:220.618500px;}
.yc2{bottom:224.541000px;}
.y2d2{bottom:225.325500px;}
.y22b{bottom:227.650500px;}
.y16{bottom:229.863000px;}
.y134{bottom:233.409000px;}
.y29b{bottom:233.574000px;}
.y1aa{bottom:233.775675px;}
.y16e{bottom:234.235500px;}
.y47{bottom:235.426500px;}
.y7d{bottom:238.551000px;}
.y1e9{bottom:238.635000px;}
.y141{bottom:238.999500px;}
.y260{bottom:239.272500px;}
.ydd{bottom:239.446500px;}
.y223{bottom:242.575830px;}
.y2d1{bottom:242.586000px;}
.yc1{bottom:243.370500px;}
.y113{bottom:243.749727px;}
.y22a{bottom:246.478500px;}
.y29a{bottom:250.834500px;}
.y133{bottom:252.238500px;}
.y16d{bottom:253.065000px;}
.y46{bottom:254.256000px;}
.y7c{bottom:257.380500px;}
.y140{bottom:257.829000px;}
.y25f{bottom:258.100500px;}
.ydc{bottom:258.276000px;}
.yae{bottom:258.578937px;}
.y1ab{bottom:258.818175px;}
.y2d0{bottom:259.846500px;}
.y1bc{bottom:261.063000px;}
.yc0{bottom:262.200000px;}
.y1e5{bottom:264.658748px;}
.y224{bottom:267.051803px;}
.y299{bottom:268.095000px;}
.y132{bottom:271.068000px;}
.y16c{bottom:271.894500px;}
.y45{bottom:273.085500px;}
.y114{bottom:273.089394px;}
.y7b{bottom:276.210000px;}
.y13f{bottom:276.658500px;}
.y25e{bottom:276.930000px;}
.ydb{bottom:277.105500px;}
.yad{bottom:277.749702px;}
.y229{bottom:280.045500px;}
.ybf{bottom:281.029500px;}
.y11c{bottom:283.892400px;}
.y1ac{bottom:283.955175px;}
.y298{bottom:285.355500px;}
.y131{bottom:289.897500px;}
.y16b{bottom:290.724000px;}
.y225{bottom:291.527775px;}
.y44{bottom:291.915000px;}
.y2cf{bottom:294.366000px;}
.y13e{bottom:295.488000px;}
.y25d{bottom:295.759500px;}
.yda{bottom:295.935000px;}
.yac{bottom:297.009144px;}
.y228{bottom:299.278500px;}
.y7a{bottom:299.523000px;}
.ybe{bottom:299.859000px;}
.y15{bottom:300.154500px;}
.y297{bottom:302.616000px;}
.y130{bottom:308.727000px;}
.y1ad{bottom:308.997518px;}
.y16a{bottom:309.553500px;}
.y43{bottom:310.744500px;}
.y2ce{bottom:311.626500px;}
.y1e6{bottom:313.515720px;}
.y13d{bottom:314.317500px;}
.y25c{bottom:314.589000px;}
.yd9{bottom:314.764500px;}
.yf1{bottom:315.215883px;}
.yab{bottom:316.178406px;}
.y14{bottom:318.043500px;}
.ybd{bottom:318.688500px;}
.y296{bottom:319.876500px;}
.y1f2{bottom:321.706500px;}
.y12f{bottom:327.556500px;}
.y169{bottom:328.383000px;}
.y2cd{bottom:328.887000px;}
.y42{bottom:329.574000px;}
.y79{bottom:333.145500px;}
.y25b{bottom:333.418500px;}
.yd8{bottom:333.594000px;}
.yf0{bottom:334.475325px;}
.yaa{bottom:335.437848px;}
.y13{bottom:335.931000px;}
.y295{bottom:337.137000px;}
.ybc{bottom:337.516500px;}
.y2cc{bottom:346.147500px;}
.y12e{bottom:346.386000px;}
.y168{bottom:347.212500px;}
.y41{bottom:348.403500px;}
.y78{bottom:351.975000px;}
.y25a{bottom:352.248000px;}
.yd7{bottom:352.423500px;}
.yef{bottom:353.734767px;}
.y12{bottom:353.818500px;}
.y294{bottom:354.397500px;}
.ya9{bottom:354.697290px;}
.y1f4{bottom:354.744164px;}
.y13c{bottom:356.458500px;}
.y2cb{bottom:363.408000px;}
.y1f3{bottom:364.855523px;}
.y12d{bottom:365.215500px;}
.y167{bottom:366.042000px;}
.y77{bottom:370.804500px;}
.y259{bottom:371.077500px;}
.ybb{bottom:371.083500px;}
.yd6{bottom:371.253000px;}
.y293{bottom:371.656500px;}
.y40{bottom:371.716500px;}
.yee{bottom:372.904029px;}
.ya8{bottom:373.866552px;}
.y1be{bottom:376.735889px;}
.y2ca{bottom:380.668500px;}
.y11{bottom:380.673000px;}
.y12c{bottom:384.045000px;}
.y166{bottom:384.871500px;}
.y1bd{bottom:386.847247px;}
.y292{bottom:388.917000px;}
.y76{bottom:389.634000px;}
.y258{bottom:389.907000px;}
.yd5{bottom:390.082500px;}
.yba{bottom:390.316500px;}
.yed{bottom:392.163471px;}
.y183{bottom:392.345573px;}
.ya7{bottom:393.125994px;}
.y2c9{bottom:397.929000px;}
.y10{bottom:398.562000px;}
.y12b{bottom:402.874500px;}
.y291{bottom:406.177500px;}
.y75{bottom:408.463500px;}
.y257{bottom:408.736500px;}
.yd4{bottom:408.912000px;}
.yec{bottom:411.332733px;}
.ya6{bottom:412.295256px;}
.y85{bottom:412.744800px;}
.y2c8{bottom:415.188000px;}
.yf{bottom:416.449500px;}
.y165{bottom:418.437000px;}
.y12a{bottom:421.704000px;}
.y290{bottom:423.438000px;}
.y74{bottom:427.293000px;}
.y256{bottom:427.566000px;}
.yd3{bottom:427.741500px;}
.yeb{bottom:430.592175px;}
.ya5{bottom:431.554698px;}
.y2c7{bottom:432.448500px;}
.y164{bottom:437.670000px;}
.y129{bottom:440.533500px;}
.y28f{bottom:440.698500px;}
.ye{bottom:444.798000px;}
.y73{bottom:446.122500px;}
.y255{bottom:446.395500px;}
.yd2{bottom:446.571000px;}
.y3f{bottom:446.866500px;}
.y2c6{bottom:449.709000px;}
.yea{bottom:449.851617px;}
.ya4{bottom:450.814140px;}
.y28e{bottom:457.959000px;}
.y128{bottom:459.363000px;}
.y149{bottom:460.099500px;}
.y72{bottom:464.952000px;}
.y254{bottom:465.225000px;}
.yd1{bottom:465.400500px;}
.y3e{bottom:466.323000px;}
.y2c5{bottom:466.969500px;}
.ye9{bottom:469.022382px;}
.ya3{bottom:469.983402px;}
.yd{bottom:471.652500px;}
.y28d{bottom:475.219500px;}
.y127{bottom:478.191000px;}
.y71{bottom:483.781500px;}
.y253{bottom:484.054500px;}
.yd0{bottom:484.230000px;}
.ya2{bottom:489.242844px;}
.yc{bottom:489.540000px;}
.y28c{bottom:492.480000px;}
.y126{bottom:497.020500px;}
.y2c4{bottom:501.490500px;}
.y70{bottom:502.611000px;}
.y252{bottom:502.884000px;}
.ycf{bottom:503.059500px;}
.y3d{bottom:503.713500px;}
.yb{bottom:507.429000px;}
.ya1{bottom:508.502286px;}
.y28b{bottom:509.740500px;}
.y125{bottom:515.850000px;}
.y2c3{bottom:518.751000px;}
.y6f{bottom:521.440500px;}
.y251{bottom:521.713500px;}
.yce{bottom:521.889000px;}
.y3c{bottom:523.170000px;}
.ye7{bottom:523.742085px;}
.ya{bottom:525.316500px;}
.y28a{bottom:526.999500px;}
.ya0{bottom:527.671548px;}
.ye6{bottom:533.371950px;}
.y124{bottom:534.679500px;}
.y2c2{bottom:536.011500px;}
.y6e{bottom:540.270000px;}
.ycd{bottom:540.718500px;}
.y3b{bottom:542.626500px;}
.y9{bottom:543.204000px;}
.y289{bottom:544.260000px;}
.y250{bottom:545.026500px;}
.y9f{bottom:546.930990px;}
.y2c1{bottom:553.272000px;}
.y123{bottom:553.509000px;}
.y6d{bottom:559.099500px;}
.ycc{bottom:559.548000px;}
.y8{bottom:561.093000px;}
.y288{bottom:561.520500px;}
.y3a{bottom:562.084500px;}
.y9e{bottom:566.100252px;}
.y153{bottom:567.523854px;}
.y2c0{bottom:570.531000px;}
.y122{bottom:576.822000px;}
.y6c{bottom:577.929000px;}
.ycb{bottom:578.377500px;}
.y24f{bottom:578.650500px;}
.y287{bottom:578.781000px;}
.y7{bottom:578.980500px;}
.y39{bottom:581.541000px;}
.y9d{bottom:585.359694px;}
.y152{bottom:586.693116px;}
.y2bf{bottom:587.791500px;}
.y286{bottom:596.041500px;}
.y181{bottom:596.758500px;}
.y6{bottom:596.868000px;}
.yca{bottom:597.207000px;}
.y24e{bottom:597.480000px;}
.y38{bottom:600.999000px;}
.y6b{bottom:601.242000px;}
.y9c{bottom:604.619136px;}
.y2be{bottom:605.052000px;}
.y151{bottom:605.952558px;}
.y121{bottom:607.249500px;}
.y285{bottom:613.302000px;}
.y5{bottom:614.757000px;}
.y180{bottom:615.588000px;}
.yc9{bottom:616.036500px;}
.y24d{bottom:616.309500px;}
.y37{bottom:620.455500px;}
.y2bd{bottom:622.312500px;}
.y9b{bottom:623.788398px;}
.y120{bottom:626.482500px;}
.y150{bottom:629.623305px;}
.y284{bottom:630.562500px;}
.y4{bottom:632.644500px;}
.y17f{bottom:634.417500px;}
.y6a{bottom:634.866000px;}
.y24c{bottom:635.139000px;}
.y2bc{bottom:639.573000px;}
.y36{bottom:639.912000px;}
.y9a{bottom:643.047840px;}
.y11f{bottom:645.715500px;}
.y283{bottom:647.823000px;}
.y1{bottom:650.532055px;}
.y17e{bottom:653.247000px;}
.y69{bottom:653.695500px;}
.y24b{bottom:653.968500px;}
.y2bb{bottom:656.833500px;}
.y35{bottom:659.370000px;}
.y99{bottom:662.217102px;}
.y11e{bottom:664.948500px;}
.y282{bottom:665.082000px;}
.y14f{bottom:666.882675px;}
.y17d{bottom:672.076500px;}
.y68{bottom:672.525000px;}
.y24a{bottom:672.796500px;}
.y2ba{bottom:674.094000px;}
.y34{bottom:678.826500px;}
.y98{bottom:681.476544px;}
.y281{bottom:682.342500px;}
.y14e{bottom:686.142117px;}
.ye5{bottom:687.378000px;}
.y17c{bottom:690.906000px;}
.y67{bottom:691.354500px;}
.y249{bottom:691.626000px;}
.y33{bottom:698.284500px;}
.y280{bottom:699.603000px;}
.y97{bottom:700.735986px;}
.y14d{bottom:705.312882px;}
.y2b9{bottom:708.613500px;}
.y17b{bottom:709.735500px;}
.y66{bottom:710.184000px;}
.y248{bottom:710.455500px;}
.y27f{bottom:716.863500px;}
.y32{bottom:717.741000px;}
.y96{bottom:719.906751px;}
.y2b8{bottom:725.874000px;}
.y17a{bottom:728.565000px;}
.y65{bottom:729.013500px;}
.y247{bottom:729.285000px;}
.y27e{bottom:734.124000px;}
.y31{bottom:737.197500px;}
.y95{bottom:739.166193px;}
.y2b7{bottom:743.134500px;}
.y179{bottom:747.394500px;}
.y64{bottom:747.843000px;}
.y246{bottom:748.114500px;}
.y27d{bottom:751.384500px;}
.y30{bottom:756.655500px;}
.y94{bottom:758.335455px;}
.y14b{bottom:760.032585px;}
.y2b6{bottom:760.395000px;}
.y178{bottom:766.224000px;}
.y63{bottom:766.671000px;}
.y245{bottom:766.944000px;}
.y27c{bottom:768.645000px;}
.y14a{bottom:769.662450px;}
.y2f{bottom:776.112000px;}
.y93{bottom:777.594897px;}
.y2b5{bottom:777.655500px;}
.y177{bottom:785.053500px;}
.y62{bottom:785.500500px;}
.y244{bottom:785.773500px;}
.y27b{bottom:785.905500px;}
.y1f1{bottom:789.535500px;}
.y2b4{bottom:794.916000px;}
.y92{bottom:796.854339px;}
.y1bb{bottom:803.883000px;}
.y61{bottom:804.330000px;}
.y243{bottom:804.603000px;}
.y27a{bottom:807.648000px;}
.y176{bottom:808.365000px;}
.y2e{bottom:810.892500px;}
.y2b3{bottom:812.176500px;}
.y91{bottom:816.023601px;}
.y1ba{bottom:822.712500px;}
.y60{bottom:823.159500px;}
.y242{bottom:827.916000px;}
.y2b2{bottom:829.437000px;}
.y2d{bottom:831.372000px;}
.y90{bottom:835.283043px;}
.y279{bottom:841.272000px;}
.y1b9{bottom:841.540500px;}
.y5f{bottom:841.989000px;}
.y2c{bottom:843.172500px;}
.y2b1{bottom:846.697500px;}
.y8f{bottom:854.542485px;}
.y1b8{bottom:860.370000px;}
.y5e{bottom:860.818500px;}
.y2b{bottom:863.652000px;}
.y2b0{bottom:863.956500px;}
.y278{bottom:867.813000px;}
.y241{bottom:870.240000px;}
.y8e{bottom:873.711747px;}
.y1b7{bottom:879.199500px;}
.y5d{bottom:879.648000px;}
.y2a{bottom:879.790500px;}
.y2af{bottom:881.217000px;}
.y268{bottom:883.683000px;}
.y277{bottom:885.387000px;}
.y240{bottom:886.678500px;}
.y29{bottom:891.591000px;}
.y8d{bottom:892.971189px;}
.y23d{bottom:893.478000px;}
.y1b6{bottom:898.029000px;}
.y5c{bottom:898.477500px;}
.y276{bottom:902.961000px;}
.y23f{bottom:903.117000px;}
.y28{bottom:907.731000px;}
.y8c{bottom:912.140451px;}
.y2ae{bottom:915.738000px;}
.y5b{bottom:917.307000px;}
.y23e{bottom:919.555500px;}
.y275{bottom:920.535000px;}
.y1b5{bottom:921.342000px;}
.y27{bottom:928.209000px;}
.y8b{bottom:931.399893px;}
.y2ad{bottom:932.998500px;}
.y5a{bottom:936.136500px;}
.y274{bottom:938.109000px;}
.y23c{bottom:943.195500px;}
.y2ac{bottom:950.259000px;}
.y8a{bottom:950.659335px;}
.y59{bottom:954.966000px;}
.y23b{bottom:959.634000px;}
.y273{bottom:964.650000px;}
.y2ab{bottom:967.519500px;}
.y26{bottom:969.082500px;}
.y58{bottom:973.795500px;}
.y89{bottom:974.330082px;}
.y237{bottom:974.653500px;}
.y23a{bottom:976.072500px;}
.y2aa{bottom:984.780000px;}
.y272{bottom:991.191000px;}
.y239{bottom:992.511000px;}
.y57{bottom:992.625000px;}
.y2a8{bottom:1002.039000px;}
.y2a9{bottom:1002.040500px;}
.y238{bottom:1008.949500px;}
.y25{bottom:1009.000500px;}
.y56{bottom:1011.454500px;}
.y271{bottom:1017.730500px;}
.y2a7{bottom:1019.299500px;}
.y87{bottom:1029.049785px;}
.y55{bottom:1030.284000px;}
.y236{bottom:1032.589500px;}
.y270{bottom:1035.304500px;}
.y2a6{bottom:1036.560000px;}
.y24{bottom:1037.245500px;}
.y86{bottom:1038.679650px;}
.y54{bottom:1049.113500px;}
.y26f{bottom:1052.880000px;}
.y2a5{bottom:1053.820500px;}
.y235{bottom:1056.231000px;}
.y23{bottom:1065.489000px;}
.y53{bottom:1067.943000px;}
.y26e{bottom:1070.454000px;}
.y2a4{bottom:1071.081000px;}
.y52{bottom:1086.772500px;}
.y234{bottom:1087.849500px;}
.y26d{bottom:1088.028000px;}
.y2a3{bottom:1088.341500px;}
.y22{bottom:1093.734000px;}
.y51{bottom:1105.602000px;}
.y233{bottom:1107.082500px;}
.y1e{bottom:1137.220500px;}
.y50{bottom:1168.366500px;}
.h2{height:25.508090px;}
.hd{height:26.110157px;}
.h5{height:30.461558px;}
.h6{height:30.670772px;}
.h4{height:33.112997px;}
.h3{height:34.199443px;}
.he{height:34.813397px;}
.h17{height:34.951465px;}
.h13{height:35.052500px;}
.h24{height:36.699038px;}
.hf{height:38.896243px;}
.h10{height:39.165235px;}
.h8{height:39.402747px;}
.h19{height:39.418945px;}
.h26{height:39.434227px;}
.h1f{height:41.389893px;}
.h22{height:41.391783px;}
.h11{height:43.217759px;}
.h12{height:43.516637px;}
.h16{height:43.695176px;}
.ha{height:43.815515px;}
.h18{height:43.886426px;}
.h1e{height:45.879935px;}
.h21{height:46.080747px;}
.h9{height:46.126727px;}
.h27{height:49.064141px;}
.h7{height:50.930649px;}
.h14{height:54.515347px;}
.hc{height:54.541601px;}
.h1b{height:54.865371px;}
.h20{height:57.608640px;}
.hb{height:77.792486px;}
.h15{height:217.309200px;}
.h1a{height:300.436500px;}
.h25{height:307.898325px;}
.h1d{height:325.766700px;}
.h23{height:331.263450px;}
.h1c{height:546.544500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w3{width:177.413467px;}
.w6{width:354.108000px;}
.w4{width:477.163500px;}
.w5{width:497.452500px;}
.w7{width:525.761775px;}
.w8{width:546.380100px;}
.w9{width:562.875075px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x27{left:-226.144500px;}
.xa0{left:-220.958325px;}
.x66{left:-212.400000px;}
.x97{left:-207.900000px;}
.x87{left:-203.890500px;}
.x28{left:-30.574140px;}
.x67{left:-16.831143px;}
.xa2{left:-15.609825px;}
.x88{left:-8.321590px;}
.x98{left:-2.551500px;}
.x0{left:0.000000px;}
.x29{left:1.286454px;}
.x2f{left:10.465950px;}
.xa7{left:12.740175px;}
.x2e{left:15.146400px;}
.xa3{left:17.843175px;}
.x2c{left:21.805950px;}
.x89{left:23.538305px;}
.xa6{left:27.954675px;}
.x2{left:29.274117px;}
.x2d{left:31.886400px;}
.xa5{left:35.042175px;}
.x69{left:40.680000px;}
.x6c{left:47.970000px;}
.xa4{left:49.217175px;}
.x4{left:52.539000px;}
.x1{left:53.574073px;}
.x3{left:58.505048px;}
.x2b{left:69.235500px;}
.x6a{left:80.461098px;}
.x6e{left:84.690450px;}
.xc4{left:85.848000px;}
.xa8{left:147.213675px;}
.xaf{left:153.614475px;}
.x31{left:157.615500px;}
.x99{left:174.069000px;}
.x6d{left:175.320000px;}
.x30{left:226.375500px;}
.x7{left:248.526000px;}
.x5{left:249.591000px;}
.x6f{left:264.240450px;}
.x6{left:269.914500px;}
.xa{left:281.479500px;}
.xb8{left:295.246500px;}
.xaa{left:301.086000px;}
.x32{left:306.829500px;}
.xa9{left:310.189500px;}
.x8{left:311.443500px;}
.x9c{left:312.513000px;}
.xad{left:314.767500px;}
.xab{left:316.029000px;}
.x9{left:318.837000px;}
.xba{left:322.881000px;}
.x9d{left:327.457500px;}
.xae{left:329.712000px;}
.x1f{left:334.671000px;}
.xd{left:338.650500px;}
.x20{left:342.144000px;}
.xc1{left:344.731500px;}
.xe{left:346.122000px;}
.xbb{left:349.021500px;}
.x62{left:350.497500px;}
.x15{left:353.238000px;}
.x6b{left:354.241332px;}
.x72{left:356.821500px;}
.xc2{left:359.676000px;}
.x16{left:360.711000px;}
.x9a{left:361.792500px;}
.x55{left:362.881500px;}
.x63{left:365.440500px;}
.x8a{left:367.427148px;}
.x64{left:369.150000px;}
.x56{left:370.353000px;}
.x73{left:371.764500px;}
.x39{left:374.208000px;}
.x74{left:375.576000px;}
.x9b{left:376.885500px;}
.xac{left:380.754000px;}
.x65{left:384.094500px;}
.x3a{left:389.152500px;}
.x75{left:390.520500px;}
.xbc{left:392.211000px;}
.x5d{left:410.385000px;}
.x11{left:414.996000px;}
.x5e{left:417.856500px;}
.x12{left:422.467500px;}
.x13{left:426.129000px;}
.xc3{left:429.424500px;}
.x14{left:433.602000px;}
.x48{left:436.753500px;}
.x21{left:441.535500px;}
.xbe{left:442.975500px;}
.x5f{left:444.232500px;}
.xb6{left:446.680500px;}
.xb9{left:447.789000px;}
.x22{left:449.007000px;}
.x93{left:451.311000px;}
.x23{left:452.818500px;}
.x60{left:459.177000px;}
.x24{left:460.290000px;}
.xb7{left:461.299500px;}
.x94{left:466.255500px;}
.x61{left:467.592000px;}
.x8b{left:468.618000px;}
.x85{left:472.573500px;}
.x8c{left:476.766000px;}
.xb3{left:478.797000px;}
.xf{left:485.325000px;}
.x86{left:487.516500px;}
.x8d{left:491.260500px;}
.x10{left:492.796500px;}
.x8e{left:494.784000px;}
.xbf{left:498.769500px;}
.xb4{left:501.363000px;}
.x68{left:510.119154px;}
.xc0{left:513.712500px;}
.x1b{left:516.625500px;}
.x1c{left:524.098500px;}
.x1d{left:527.908500px;}
.x2a{left:529.675122px;}
.x1e{left:535.381500px;}
.x3b{left:538.344000px;}
.xb1{left:539.992500px;}
.x3c{left:545.815500px;}
.x77{left:550.813500px;}
.x8f{left:553.750500px;}
.xb2{left:554.937000px;}
.xa1{left:556.114844px;}
.x78{left:564.274500px;}
.x90{left:568.246500px;}
.x91{left:575.349000px;}
.x79{left:579.219000px;}
.x7a{left:586.653000px;}
.x45{left:588.142500px;}
.x92{left:589.845000px;}
.xbd{left:597.898500px;}
.x4d{left:601.822500px;}
.x46{left:603.087000px;}
.x84{left:606.366000px;}
.x4e{left:609.295500px;}
.x47{left:610.708500px;}
.x4f{left:612.955500px;}
.x70{left:614.950500px;}
.xb{left:618.382500px;}
.x50{left:620.428500px;}
.x71{left:622.423500px;}
.x51{left:624.090000px;}
.xc{left:625.854000px;}
.x35{left:629.251500px;}
.x36{left:636.723000px;}
.x52{left:639.033000px;}
.x82{left:644.134500px;}
.x53{left:646.356000px;}
.x83{left:659.079000px;}
.x54{left:661.300500px;}
.x7f{left:671.613000px;}
.xb5{left:674.023500px;}
.x80{left:679.084500px;}
.xc5{left:683.638500px;}
.x37{left:686.154000px;}
.x57{left:692.775000px;}
.x81{left:694.179000px;}
.x95{left:695.304000px;}
.x58{left:696.574500px;}
.x38{left:701.098500px;}
.x41{left:702.699000px;}
.xb0{left:708.634500px;}
.x96{left:710.299500px;}
.x59{left:711.517500px;}
.x5a{left:715.317000px;}
.x42{left:717.643500px;}
.x43{left:725.265000px;}
.x5b{left:730.261500px;}
.x44{left:740.209500px;}
.x3d{left:742.482000px;}
.x76{left:745.102500px;}
.x3e{left:749.955000px;}
.x9e{left:751.753500px;}
.x3f{left:753.765000px;}
.x17{left:757.497000px;}
.x40{left:761.236500px;}
.x18{left:764.968500px;}
.x9f{left:766.696500px;}
.x19{left:768.712500px;}
.x33{left:772.224000px;}
.x1a{left:776.184000px;}
.xc9{left:777.460500px;}
.xc8{left:778.504500px;}
.x49{left:781.020000px;}
.x34{left:783.498000px;}
.x5c{left:784.609500px;}
.x4a{left:788.493000px;}
.x25{left:790.686000px;}
.x4b{left:792.303000px;}
.xca{left:795.765000px;}
.x26{left:798.157500px;}
.x4c{left:799.774500px;}
.x7d{left:806.565000px;}
.xc6{left:810.312000px;}
.x7e{left:814.036500px;}
.x7b{left:817.977000px;}
.xcb{left:822.664500px;}
.x7c{left:832.920000px;}
.xc7{left:837.211500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls89{letter-spacing:-0.336672pt;}
.ls51{letter-spacing:-0.192384pt;}
.ls43{letter-spacing:-0.176352pt;}
.ls90{letter-spacing:-0.173947pt;}
.ls81{letter-spacing:-0.162725pt;}
.ls85{letter-spacing:-0.157114pt;}
.ls73{letter-spacing:-0.151502pt;}
.ls2a{letter-spacing:-0.149632pt;}
.ls7d{letter-spacing:-0.145891pt;}
.ls65{letter-spacing:-0.140280pt;}
.ls2b{letter-spacing:-0.138944pt;}
.ls8f{letter-spacing:-0.134669pt;}
.ls2d{letter-spacing:-0.133600pt;}
.ls8e{letter-spacing:-0.129058pt;}
.ls88{letter-spacing:-0.123446pt;}
.ls45{letter-spacing:-0.119168pt;}
.ls6d{letter-spacing:-0.117835pt;}
.ls6a{letter-spacing:-0.112224pt;}
.ls22{letter-spacing:-0.106880pt;}
.ls84{letter-spacing:-0.106613pt;}
.ls46{letter-spacing:-0.102144pt;}
.ls29{letter-spacing:-0.101536pt;}
.ls6f{letter-spacing:-0.101002pt;}
.ls30{letter-spacing:-0.096192pt;}
.ls82{letter-spacing:-0.095390pt;}
.ls27{letter-spacing:-0.090848pt;}
.ls63{letter-spacing:-0.089779pt;}
.ls23{letter-spacing:-0.085504pt;}
.ls6e{letter-spacing:-0.084168pt;}
.ls2e{letter-spacing:-0.080160pt;}
.ls67{letter-spacing:-0.078557pt;}
.ls20{letter-spacing:-0.074816pt;}
.ls8d{letter-spacing:-0.072946pt;}
.ls8a{letter-spacing:-0.067334pt;}
.ls2c{letter-spacing:-0.064128pt;}
.ls68{letter-spacing:-0.061723pt;}
.ls26{letter-spacing:-0.058784pt;}
.ls41{letter-spacing:-0.057600pt;}
.ls69{letter-spacing:-0.056112pt;}
.ls33{letter-spacing:-0.053440pt;}
.ls6b{letter-spacing:-0.050501pt;}
.ls4e{letter-spacing:-0.048096pt;}
.ls83{letter-spacing:-0.044890pt;}
.ls2f{letter-spacing:-0.042752pt;}
.ls86{letter-spacing:-0.039278pt;}
.ls21{letter-spacing:-0.037408pt;}
.ls7c{letter-spacing:-0.035280pt;}
.ls72{letter-spacing:-0.033667pt;}
.ls32{letter-spacing:-0.032064pt;}
.ls66{letter-spacing:-0.028056pt;}
.ls6c{letter-spacing:-0.022445pt;}
.ls60{letter-spacing:-0.022344pt;}
.ls1f{letter-spacing:-0.021376pt;}
.ls1e{letter-spacing:-0.021280pt;}
.ls7a{letter-spacing:-0.020160pt;}
.ls36{letter-spacing:-0.019200pt;}
.ls4d{letter-spacing:-0.017024pt;}
.ls80{letter-spacing:-0.016834pt;}
.ls50{letter-spacing:-0.016032pt;}
.ls74{letter-spacing:-0.015120pt;}
.ls34{letter-spacing:-0.014400pt;}
.ls70{letter-spacing:-0.011222pt;}
.ls25{letter-spacing:-0.010688pt;}
.ls62{letter-spacing:-0.010080pt;}
.ls42{letter-spacing:-0.009600pt;}
.ls64{letter-spacing:-0.005611pt;}
.ls31{letter-spacing:-0.005344pt;}
.ls7b{letter-spacing:-0.005040pt;}
.ls4f{letter-spacing:-0.004800pt;}
.ls9{letter-spacing:0.000000pt;}
.ls94{letter-spacing:0.000225pt;}
.lsa2{letter-spacing:0.000361pt;}
.ls92{letter-spacing:0.000711pt;}
.ls99{letter-spacing:0.000921pt;}
.ls93{letter-spacing:0.001026pt;}
.ls97{letter-spacing:0.001818pt;}
.ls9f{letter-spacing:0.001863pt;}
.ls52{letter-spacing:0.002691pt;}
.ls9a{letter-spacing:0.002746pt;}
.ls96{letter-spacing:0.003430pt;}
.lsb{letter-spacing:0.004256pt;}
.ls9c{letter-spacing:0.004267pt;}
.ls53{letter-spacing:0.004469pt;}
.ls47{letter-spacing:0.004800pt;}
.lsa0{letter-spacing:0.004909pt;}
.ls8c{letter-spacing:0.005040pt;}
.lsf{letter-spacing:0.005344pt;}
.ls5c{letter-spacing:0.005611pt;}
.ls18{letter-spacing:0.009600pt;}
.ls56{letter-spacing:0.010080pt;}
.ls38{letter-spacing:0.010688pt;}
.ls78{letter-spacing:0.011222pt;}
.ls3f{letter-spacing:0.012768pt;}
.ls1c{letter-spacing:0.014400pt;}
.ls11{letter-spacing:0.016032pt;}
.ls77{letter-spacing:0.016834pt;}
.ls1a{letter-spacing:0.019200pt;}
.ls76{letter-spacing:0.020160pt;}
.lse{letter-spacing:0.021376pt;}
.ls5d{letter-spacing:0.022445pt;}
.ls17{letter-spacing:0.024000pt;}
.ls55{letter-spacing:0.025200pt;}
.ls3b{letter-spacing:0.026720pt;}
.ls58{letter-spacing:0.028056pt;}
.ls4a{letter-spacing:0.028800pt;}
.ls12{letter-spacing:0.032064pt;}
.ls39{letter-spacing:0.033600pt;}
.ls57{letter-spacing:0.033667pt;}
.ls5e{letter-spacing:0.035280pt;}
.ls10{letter-spacing:0.037408pt;}
.ls19{letter-spacing:0.038400pt;}
.ls59{letter-spacing:0.039278pt;}
.ls75{letter-spacing:0.040320pt;}
.ls14{letter-spacing:0.042752pt;}
.ls1d{letter-spacing:0.043200pt;}
.ls5b{letter-spacing:0.044890pt;}
.ls16{letter-spacing:0.048096pt;}
.ls13{letter-spacing:0.053440pt;}
.ls5f{letter-spacing:0.055440pt;}
.ls5a{letter-spacing:0.056112pt;}
.ls4b{letter-spacing:0.057600pt;}
.ls24{letter-spacing:0.058784pt;}
.ls8b{letter-spacing:0.060480pt;}
.ls7e{letter-spacing:0.061723pt;}
.ls44{letter-spacing:0.063840pt;}
.ls28{letter-spacing:0.064128pt;}
.ls79{letter-spacing:0.067334pt;}
.ls37{letter-spacing:0.069472pt;}
.ls3e{letter-spacing:0.072352pt;}
.ls4c{letter-spacing:0.074816pt;}
.ls71{letter-spacing:0.078557pt;}
.ls87{letter-spacing:0.084168pt;}
.ls3a{letter-spacing:0.090848pt;}
.lsd{letter-spacing:0.096192pt;}
.ls3d{letter-spacing:0.102144pt;}
.ls15{letter-spacing:0.106880pt;}
.ls1b{letter-spacing:0.110400pt;}
.lsc{letter-spacing:0.148960pt;}
.ls3c{letter-spacing:0.153216pt;}
.ls49{letter-spacing:0.157472pt;}
.ls54{letter-spacing:0.160877pt;}
.lsa{letter-spacing:0.161728pt;}
.ls61{letter-spacing:0.169814pt;}
.ls48{letter-spacing:0.170240pt;}
.ls8{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.ls7f{letter-spacing:1.761917pt;}
.ls40{letter-spacing:1.998656pt;}
.ls3{letter-spacing:2.665203pt;}
.ls1{letter-spacing:9.298933pt;}
.lsa5{letter-spacing:10.564528pt;}
.ls7{letter-spacing:10.626533pt;}
.lsa3{letter-spacing:11.930019pt;}
.ls95{letter-spacing:11.954133pt;}
.lsa1{letter-spacing:11.959467pt;}
.ls9d{letter-spacing:12.007166pt;}
.ls9b{letter-spacing:12.061579pt;}
.ls98{letter-spacing:12.166875pt;}
.ls9e{letter-spacing:12.235276pt;}
.ls91{letter-spacing:13.283467pt;}
.lsa4{letter-spacing:14.680094pt;}
.ls4{letter-spacing:15.942400pt;}
.ls2{letter-spacing:51.035733pt;}
.ls5{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.ls35{letter-spacing:229.761600pt;}
.ws5a{word-spacing:-229.281600pt;}
.ws189{word-spacing:-13.943832pt;}
.ws4b{word-spacing:-13.283467pt;}
.ws154{word-spacing:-12.655440pt;}
.ws153{word-spacing:-12.633600pt;}
.ws1cc{word-spacing:-12.625200pt;}
.ws5d{word-spacing:-12.110400pt;}
.ws5f{word-spacing:-12.043200pt;}
.ws5b{word-spacing:-12.038400pt;}
.ws5c{word-spacing:-12.019200pt;}
.ws5e{word-spacing:-12.014400pt;}
.ws25{word-spacing:-11.955200pt;}
.ws188{word-spacing:-11.341814pt;}
.ws152{word-spacing:-11.172000pt;}
.ws11d{word-spacing:-10.810240pt;}
.ws58{word-spacing:-10.801728pt;}
.wsc3{word-spacing:-10.652768pt;}
.ws59{word-spacing:-10.640000pt;}
.ws31{word-spacing:-10.626800pt;}
.ws16{word-spacing:-10.095467pt;}
.ws6{word-spacing:-9.298400pt;}
.ws14a{word-spacing:-3.294300pt;}
.wse8{word-spacing:-3.120896pt;}
.wse9{word-spacing:-3.110208pt;}
.wse7{word-spacing:-3.056768pt;}
.ws1ec{word-spacing:-3.007603pt;}
.wsb0{word-spacing:-2.975497pt;}
.ws13{word-spacing:-2.964890pt;}
.ws1eb{word-spacing:-2.923435pt;}
.ws150{word-spacing:-2.869229pt;}
.wsed{word-spacing:-2.826976pt;}
.wsd1{word-spacing:-2.816288pt;}
.ws97{word-spacing:-2.746816pt;}
.ws142{word-spacing:-2.709827pt;}
.ws98{word-spacing:-2.698720pt;}
.ws1b4{word-spacing:-2.687765pt;}
.ws21f{word-spacing:-2.656693pt;}
.ws140{word-spacing:-2.655968pt;}
.ws16a{word-spacing:-2.642875pt;}
.ws1a7{word-spacing:-2.637264pt;}
.ws13f{word-spacing:-2.602528pt;}
.ws19b{word-spacing:-2.581152pt;}
.ws19a{word-spacing:-2.569930pt;}
.ws1b3{word-spacing:-2.553096pt;}
.wsef{word-spacing:-2.506336pt;}
.ws121{word-spacing:-2.497292pt;}
.ws129{word-spacing:-2.495648pt;}
.ws12a{word-spacing:-2.484960pt;}
.ws1b5{word-spacing:-2.480150pt;}
.wsee{word-spacing:-2.474272pt;}
.ws82{word-spacing:-2.442208pt;}
.ws11c{word-spacing:-2.391024pt;}
.ws83{word-spacing:-2.329984pt;}
.wsaa{word-spacing:-2.231622pt;}
.ws86{word-spacing:-2.201728pt;}
.wsea{word-spacing:-2.196384pt;}
.wseb{word-spacing:-2.180352pt;}
.ws146{word-spacing:-2.178489pt;}
.wsec{word-spacing:-2.169664pt;}
.ws13e{word-spacing:-2.100192pt;}
.ws63{word-spacing:-2.019087pt;}
.ws110{word-spacing:-1.965953pt;}
.ws259{word-spacing:-1.912832pt;}
.wscf{word-spacing:-1.912819pt;}
.ws1aa{word-spacing:-1.890974pt;}
.wsf1{word-spacing:-1.886432pt;}
.wsb2{word-spacing:-1.859685pt;}
.ws1ee{word-spacing:-1.846085pt;}
.wsf2{word-spacing:-1.832992pt;}
.ws1ed{word-spacing:-1.829251pt;}
.wsd3{word-spacing:-1.827648pt;}
.ws1a9{word-spacing:-1.818029pt;}
.ws267{word-spacing:-1.817190pt;}
.ws51{word-spacing:-1.806551pt;}
.ws147{word-spacing:-1.753418pt;}
.ws1{word-spacing:-1.696326pt;}
.ws1be{word-spacing:-1.660915pt;}
.ws148{word-spacing:-1.647150pt;}
.ws24{word-spacing:-1.625907pt;}
.ws16e{word-spacing:-1.593581pt;}
.wsd4{word-spacing:-1.576480pt;}
.ws1d0{word-spacing:-1.572480pt;}
.ws104{word-spacing:-1.565792pt;}
.ws8d{word-spacing:-1.555104pt;}
.ws18e{word-spacing:-1.552320pt;}
.wsba{word-spacing:-1.540882pt;}
.ws131{word-spacing:-1.539072pt;}
.ws1cf{word-spacing:-1.537200pt;}
.ws265{word-spacing:-1.530266pt;}
.ws18d{word-spacing:-1.491840pt;}
.ws38{word-spacing:-1.487748pt;}
.ws262{word-spacing:-1.482445pt;}
.ws16d{word-spacing:-1.481357pt;}
.ws12c{word-spacing:-1.468800pt;}
.ws12e{word-spacing:-1.464000pt;}
.ws8e{word-spacing:-1.437536pt;}
.ws245{word-spacing:-1.434624pt;}
.ws12d{word-spacing:-1.430400pt;}
.ws8f{word-spacing:-1.421504pt;}
.ws269{word-spacing:-1.386803pt;}
.ws20b{word-spacing:-1.381481pt;}
.ws252{word-spacing:-1.348474pt;}
.ws26a{word-spacing:-1.338982pt;}
.ws49{word-spacing:-1.328347pt;}
.wsae{word-spacing:-1.275213pt;}
.ws1d3{word-spacing:-1.273742pt;}
.ws202{word-spacing:-1.268131pt;}
.ws191{word-spacing:-1.262520pt;}
.ws201{word-spacing:-1.251298pt;}
.ws261{word-spacing:-1.243341pt;}
.wsab{word-spacing:-1.222079pt;}
.ws1d8{word-spacing:-1.217630pt;}
.ws263{word-spacing:-1.195520pt;}
.ws1bf{word-spacing:-1.195186pt;}
.ws0{word-spacing:-1.175671pt;}
.ws1d9{word-spacing:-1.172741pt;}
.ws8c{word-spacing:-1.159648pt;}
.ws8b{word-spacing:-1.122240pt;}
.ws116{word-spacing:-1.115811pt;}
.ws62{word-spacing:-1.062677pt;}
.ws9{word-spacing:-1.041421pt;}
.ws144{word-spacing:-1.009543pt;}
.ws17f{word-spacing:-0.965126pt;}
.ws22b{word-spacing:-0.956416pt;}
.ws10f{word-spacing:-0.956410pt;}
.ws167{word-spacing:-0.953904pt;}
.wsb{word-spacing:-0.929840pt;}
.ws198{word-spacing:-0.925848pt;}
.ws2b{word-spacing:-0.903276pt;}
.ws200{word-spacing:-0.897792pt;}
.ws1dd{word-spacing:-0.869736pt;}
.ws1d{word-spacing:-0.860774pt;}
.wsb5{word-spacing:-0.850142pt;}
.ws94{word-spacing:-0.849696pt;}
.ws101{word-spacing:-0.828320pt;}
.ws254{word-spacing:-0.812954pt;}
.ws199{word-spacing:-0.808013pt;}
.ws100{word-spacing:-0.801600pt;}
.ws2a{word-spacing:-0.797008pt;}
.ws14e{word-spacing:-0.743874pt;}
.ws10d{word-spacing:-0.690740pt;}
.ws19c{word-spacing:-0.650899pt;}
.ws14b{word-spacing:-0.637606pt;}
.ws24e{word-spacing:-0.621670pt;}
.ws95{word-spacing:-0.609216pt;}
.ws1e4{word-spacing:-0.606010pt;}
.wsb8{word-spacing:-0.584473pt;}
.ws96{word-spacing:-0.550432pt;}
.ws11a{word-spacing:-0.531339pt;}
.ws6c{word-spacing:-0.523712pt;}
.wsfb{word-spacing:-0.518368pt;}
.ws1d7{word-spacing:-0.493786pt;}
.ws6d{word-spacing:-0.454240pt;}
.ws4f{word-spacing:-0.371937pt;}
.ws69{word-spacing:-0.336672pt;}
.wsc4{word-spacing:-0.334746pt;}
.ws44{word-spacing:-0.318803pt;}
.ws135{word-spacing:-0.309952pt;}
.ws16f{word-spacing:-0.308616pt;}
.ws12b{word-spacing:-0.293920pt;}
.wsf6{word-spacing:-0.288576pt;}
.ws1b7{word-spacing:-0.274949pt;}
.ws3b{word-spacing:-0.265669pt;}
.ws158{word-spacing:-0.254722pt;}
.ws122{word-spacing:-0.246848pt;}
.ws66{word-spacing:-0.242592pt;}
.ws228{word-spacing:-0.239104pt;}
.ws1f9{word-spacing:-0.235670pt;}
.ws108{word-spacing:-0.229824pt;}
.ws42{word-spacing:-0.212535pt;}
.ws137{word-spacing:-0.203072pt;}
.ws23{word-spacing:-0.191283pt;}
.ws9f{word-spacing:-0.182400pt;}
.ws1e3{word-spacing:-0.179558pt;}
.ws1c1{word-spacing:-0.176400pt;}
.ws1c2{word-spacing:-0.166320pt;}
.ws160{word-spacing:-0.162725pt;}
.ws136{word-spacing:-0.160320pt;}
.ws46{word-spacing:-0.159402pt;}
.ws107{word-spacing:-0.153216pt;}
.ws1c{word-spacing:-0.143462pt;}
.ws1b6{word-spacing:-0.134669pt;}
.ws1d6{word-spacing:-0.129058pt;}
.ws33{word-spacing:-0.106268pt;}
.wsc5{word-spacing:-0.095642pt;}
.ws123{word-spacing:-0.089376pt;}
.ws67{word-spacing:-0.085120pt;}
.wsfc{word-spacing:-0.064128pt;}
.ws157{word-spacing:-0.062563pt;}
.ws65{word-spacing:-0.059584pt;}
.ws15{word-spacing:-0.053134pt;}
.ws222{word-spacing:-0.047821pt;}
.ws32{word-spacing:-0.042507pt;}
.ws7{word-spacing:-0.037194pt;}
.ws22e{word-spacing:-0.023919pt;}
.ws231{word-spacing:-0.005077pt;}
.ws3{word-spacing:0.000000pt;}
.ws1f1{word-spacing:0.005611pt;}
.ws20c{word-spacing:0.018347pt;}
.ws106{word-spacing:0.021280pt;}
.ws13b{word-spacing:0.032064pt;}
.ws13d{word-spacing:0.037408pt;}
.ws1a{word-spacing:0.047821pt;}
.ws1a8{word-spacing:0.050501pt;}
.ws35{word-spacing:0.053134pt;}
.wsf5{word-spacing:0.058784pt;}
.ws1b0{word-spacing:0.067334pt;}
.wsd9{word-spacing:0.069472pt;}
.ws17a{word-spacing:0.078557pt;}
.ws1c0{word-spacing:0.089779pt;}
.ws184{word-spacing:0.095390pt;}
.ws1e{word-spacing:0.095642pt;}
.ws12f{word-spacing:0.105600pt;}
.ws2d{word-spacing:0.106268pt;}
.ws99{word-spacing:0.112224pt;}
.ws1a1{word-spacing:0.117835pt;}
.ws206{word-spacing:0.123446pt;}
.wsdd{word-spacing:0.124800pt;}
.ws1a2{word-spacing:0.129058pt;}
.ws9e{word-spacing:0.134400pt;}
.wsd8{word-spacing:0.138944pt;}
.wsc6{word-spacing:0.143462pt;}
.ws9d{word-spacing:0.148800pt;}
.wsdc{word-spacing:0.158400pt;}
.ws2f{word-spacing:0.159402pt;}
.ws127{word-spacing:0.160320pt;}
.ws1d1{word-spacing:0.161280pt;}
.ws1d2{word-spacing:0.166320pt;}
.ws175{word-spacing:0.168336pt;}
.ws15e{word-spacing:0.173947pt;}
.ws13a{word-spacing:0.176352pt;}
.ws15d{word-spacing:0.176400pt;}
.ws1f8{word-spacing:0.185170pt;}
.ws232{word-spacing:0.191283pt;}
.ws1f4{word-spacing:0.207614pt;}
.ws45{word-spacing:0.212535pt;}
.ws138{word-spacing:0.219104pt;}
.ws225{word-spacing:0.239104pt;}
.ws40{word-spacing:0.265669pt;}
.ws156{word-spacing:0.286925pt;}
.wse6{word-spacing:0.309952pt;}
.ws34{word-spacing:0.318803pt;}
.ws23b{word-spacing:0.334746pt;}
.ws27{word-spacing:0.371937pt;}
.ws13c{word-spacing:0.379424pt;}
.ws1ab{word-spacing:0.387173pt;}
.ws6a{word-spacing:0.422176pt;}
.ws53{word-spacing:0.425071pt;}
.ws6b{word-spacing:0.475616pt;}
.ws4c{word-spacing:0.478205pt;}
.ws248{word-spacing:0.478208pt;}
.wse5{word-spacing:0.480960pt;}
.ws113{word-spacing:0.531339pt;}
.wsce{word-spacing:0.584473pt;}
.ws14f{word-spacing:0.637606pt;}
.wse0{word-spacing:0.678688pt;}
.ws105{word-spacing:0.680960pt;}
.ws109{word-spacing:0.690740pt;}
.wse2{word-spacing:0.710752pt;}
.ws18c{word-spacing:0.717312pt;}
.ws1ff{word-spacing:0.735067pt;}
.ws209{word-spacing:0.743874pt;}
.ws196{word-spacing:0.751901pt;}
.wsde{word-spacing:0.768000pt;}
.ws17e{word-spacing:0.779957pt;}
.wsf9{word-spacing:0.785568pt;}
.wsa7{word-spacing:0.797008pt;}
.wsdf{word-spacing:0.811200pt;}
.wsf8{word-spacing:0.817632pt;}
.ws166{word-spacing:0.836069pt;}
.ws165{word-spacing:0.847291pt;}
.wsa6{word-spacing:0.850142pt;}
.ws197{word-spacing:0.869736pt;}
.wsa{word-spacing:0.892646pt;}
.wsac{word-spacing:0.903276pt;}
.ws181{word-spacing:0.909014pt;}
.wsca{word-spacing:0.956410pt;}
.ws227{word-spacing:1.004237pt;}
.ws43{word-spacing:1.009543pt;}
.ws24b{word-spacing:1.052058pt;}
.ws1de{word-spacing:1.054906pt;}
.ws15f{word-spacing:1.060517pt;}
.ws2c{word-spacing:1.062677pt;}
.ws183{word-spacing:1.088573pt;}
.wse1{word-spacing:1.106208pt;}
.wsa1{word-spacing:1.115811pt;}
.ws180{word-spacing:1.127851pt;}
.ws93{word-spacing:1.132928pt;}
.ws1a5{word-spacing:1.144685pt;}
.wscc{word-spacing:1.168945pt;}
.ws178{word-spacing:1.195186pt;}
.ws2e{word-spacing:1.222079pt;}
.ws226{word-spacing:1.243341pt;}
.ws1a6{word-spacing:1.251298pt;}
.ws3a{word-spacing:1.275213pt;}
.ws10c{word-spacing:1.328347pt;}
.ws223{word-spacing:1.338982pt;}
.ws75{word-spacing:1.368064pt;}
.ws177{word-spacing:1.380355pt;}
.ws207{word-spacing:1.381481pt;}
.ws195{word-spacing:1.385966pt;}
.ws19{word-spacing:1.386803pt;}
.ws1f5{word-spacing:1.414022pt;}
.wsbd{word-spacing:1.434614pt;}
.ws179{word-spacing:1.436467pt;}
.ws117{word-spacing:1.487748pt;}
.ws190{word-spacing:1.491840pt;}
.ws176{word-spacing:1.509413pt;}
.ws18f{word-spacing:1.517040pt;}
.ws23e{word-spacing:1.522425pt;}
.ws52{word-spacing:1.540882pt;}
.ws80{word-spacing:1.613888pt;}
.ws126{word-spacing:1.629920pt;}
.wsa4{word-spacing:1.647150pt;}
.wsf4{word-spacing:1.656640pt;}
.ws90{word-spacing:1.683360pt;}
.ws55{word-spacing:1.700284pt;}
.ws1bb{word-spacing:1.705805pt;}
.ws91{word-spacing:1.710080pt;}
.ws125{word-spacing:1.720768pt;}
.ws172{word-spacing:1.722638pt;}
.ws103{word-spacing:1.742144pt;}
.wsbb{word-spacing:1.753418pt;}
.ws102{word-spacing:1.758176pt;}
.ws6e{word-spacing:1.763520pt;}
.ws1ac{word-spacing:1.784362pt;}
.ws41{word-spacing:1.806551pt;}
.ws11b{word-spacing:1.859685pt;}
.ws1ad{word-spacing:1.862918pt;}
.ws242{word-spacing:1.865011pt;}
.ws173{word-spacing:1.879752pt;}
.ws64{word-spacing:1.912819pt;}
.ws87{word-spacing:1.945216pt;}
.wsfe{word-spacing:1.950560pt;}
.wsd0{word-spacing:1.955904pt;}
.wsb7{word-spacing:1.965953pt;}
.wsff{word-spacing:1.998656pt;}
.wsd7{word-spacing:2.009344pt;}
.ws115{word-spacing:2.019087pt;}
.wsd2{word-spacing:2.020032pt;}
.ws182{word-spacing:2.053699pt;}
.ws114{word-spacing:2.072221pt;}
.ws1af{word-spacing:2.092978pt;}
.ws1bd{word-spacing:2.121034pt;}
.ws1bc{word-spacing:2.126645pt;}
.ws25d{word-spacing:2.151936pt;}
.ws15a{word-spacing:2.157120pt;}
.ws15c{word-spacing:2.172240pt;}
.wsaf{word-spacing:2.178489pt;}
.ws15b{word-spacing:2.182320pt;}
.ws208{word-spacing:2.231622pt;}
.ws2{word-spacing:2.232481pt;}
.ws4{word-spacing:2.232850pt;}
.ws6f{word-spacing:2.276544pt;}
.ws143{word-spacing:2.284756pt;}
.wsfd{word-spacing:2.329984pt;}
.ws119{word-spacing:2.337890pt;}
.ws1ae{word-spacing:2.367926pt;}
.wsda{word-spacing:2.376000pt;}
.ws39{word-spacing:2.391024pt;}
.ws1ce{word-spacing:2.444158pt;}
.ws19d{word-spacing:2.452094pt;}
.wsdb{word-spacing:2.457600pt;}
.ws1fb{word-spacing:2.468928pt;}
.ws4e{word-spacing:2.497292pt;}
.ws1fc{word-spacing:2.502595pt;}
.ws1e7{word-spacing:2.530651pt;}
.ws21c{word-spacing:2.550426pt;}
.ws17{word-spacing:2.550432pt;}
.ws1e8{word-spacing:2.564318pt;}
.ws19e{word-spacing:2.597986pt;}
.wsb4{word-spacing:2.603559pt;}
.wse3{word-spacing:2.629248pt;}
.ws3d{word-spacing:2.656693pt;}
.ws18b{word-spacing:2.677965pt;}
.ws111{word-spacing:2.709827pt;}
.ws1e1{word-spacing:2.732654pt;}
.ws163{word-spacing:2.738266pt;}
.ws1fa{word-spacing:2.743877pt;}
.ws47{word-spacing:2.762961pt;}
.ws161{word-spacing:2.777544pt;}
.ws1e2{word-spacing:2.783155pt;}
.wsc7{word-spacing:2.816095pt;}
.ws260{word-spacing:2.860851pt;}
.ws1e6{word-spacing:2.861712pt;}
.ws246{word-spacing:2.863087pt;}
.ws255{word-spacing:2.864273pt;}
.ws20f{word-spacing:2.869229pt;}
.ws22a{word-spacing:2.869248pt;}
.ws162{word-spacing:2.912213pt;}
.wsad{word-spacing:2.922363pt;}
.ws74{word-spacing:2.923168pt;}
.ws72{word-spacing:2.955232pt;}
.ws21e{word-spacing:2.975497pt;}
.ws18a{word-spacing:3.012710pt;}
.wsfa{word-spacing:3.019360pt;}
.ws48{word-spacing:3.028630pt;}
.ws243{word-spacing:3.060531pt;}
.wsb9{word-spacing:3.081764pt;}
.ws1d5{word-spacing:3.097382pt;}
.ws249{word-spacing:3.108352pt;}
.ws1dc{word-spacing:3.119827pt;}
.ws10e{word-spacing:3.134898pt;}
.ws164{word-spacing:3.136661pt;}
.ws26{word-spacing:3.188032pt;}
.ws1e5{word-spacing:3.203995pt;}
.ws132{word-spacing:3.238464pt;}
.wsa9{word-spacing:3.241166pt;}
.ws7b{word-spacing:3.249152pt;}
.ws120{word-spacing:3.294300pt;}
.ws57{word-spacing:3.347434pt;}
.ws22{word-spacing:3.347456pt;}
.ws7a{word-spacing:3.372064pt;}
.ws3e{word-spacing:3.400567pt;}
.wsc9{word-spacing:3.453701pt;}
.ws1d4{word-spacing:3.467722pt;}
.ws1f{word-spacing:3.538739pt;}
.ws21d{word-spacing:3.559969pt;}
.ws11f{word-spacing:3.613103pt;}
.ws130{word-spacing:3.665984pt;}
.ws1c3{word-spacing:3.666237pt;}
.ws1b{word-spacing:3.682202pt;}
.ws134{word-spacing:3.687360pt;}
.ws133{word-spacing:3.698048pt;}
.wsa8{word-spacing:3.772505pt;}
.ws21b{word-spacing:3.825638pt;}
.ws20{word-spacing:3.825664pt;}
.ws1a3{word-spacing:3.843672pt;}
.ws1cd{word-spacing:3.873485pt;}
.ws50{word-spacing:3.878772pt;}
.ws1a4{word-spacing:3.888562pt;}
.wse4{word-spacing:3.917152pt;}
.ws128{word-spacing:3.922496pt;}
.wsf3{word-spacing:3.965248pt;}
.ws224{word-spacing:3.969126pt;}
.wsb6{word-spacing:3.985040pt;}
.ws219{word-spacing:4.038174pt;}
.ws266{word-spacing:4.064768pt;}
.wsa2{word-spacing:4.091308pt;}
.ws192{word-spacing:4.101787pt;}
.ws16c{word-spacing:4.124232pt;}
.ws171{word-spacing:4.135454pt;}
.ws28{word-spacing:4.144442pt;}
.ws170{word-spacing:4.169122pt;}
.wsc8{word-spacing:4.197575pt;}
.ws11{word-spacing:4.240070pt;}
.ws3f{word-spacing:4.250709pt;}
.ws21{word-spacing:4.256051pt;}
.ws36{word-spacing:4.303843pt;}
.ws12{word-spacing:4.314458pt;}
.wscb{word-spacing:4.356977pt;}
.ws141{word-spacing:4.410111pt;}
.ws17c{word-spacing:4.427237pt;}
.ws238{word-spacing:4.447334pt;}
.ws151{word-spacing:4.463245pt;}
.ws7f{word-spacing:4.494304pt;}
.ws16b{word-spacing:4.505794pt;}
.wsa5{word-spacing:4.516379pt;}
.ws25b{word-spacing:4.542976pt;}
.ws21a{word-spacing:4.569513pt;}
.ws8a{word-spacing:4.579808pt;}
.ws20e{word-spacing:4.622646pt;}
.ws14d{word-spacing:4.675780pt;}
.ws89{word-spacing:4.692032pt;}
.ws1df{word-spacing:4.797576pt;}
.ws1e0{word-spacing:4.803187pt;}
.wsd5{word-spacing:4.809600pt;}
.ws204{word-spacing:4.820021pt;}
.ws37{word-spacing:4.835182pt;}
.ws17b{word-spacing:4.870522pt;}
.ws203{word-spacing:4.887355pt;}
.wsb3{word-spacing:4.888316pt;}
.ws1f0{word-spacing:4.892966pt;}
.ws1ef{word-spacing:4.921022pt;}
.wsd6{word-spacing:4.985952pt;}
.ws112{word-spacing:4.994583pt;}
.ws29{word-spacing:5.047717pt;}
.ws149{word-spacing:5.100851pt;}
.ws230{word-spacing:5.116826pt;}
.ws1b1{word-spacing:5.145470pt;}
.ws118{word-spacing:5.153985pt;}
.ws1b2{word-spacing:5.207194pt;}
.ws236{word-spacing:5.260288pt;}
.ws234{word-spacing:5.308109pt;}
.wsa0{word-spacing:5.313387pt;}
.ws4d{word-spacing:5.366521pt;}
.wsbe{word-spacing:5.419654pt;}
.ws17d{word-spacing:5.431642pt;}
.ws193{word-spacing:5.448475pt;}
.ws1f7{word-spacing:5.459698pt;}
.wsf0{word-spacing:5.482944pt;}
.ws1f6{word-spacing:5.493365pt;}
.ws18{word-spacing:5.547213pt;}
.wscd{word-spacing:5.579056pt;}
.ws194{word-spacing:5.605589pt;}
.ws54{word-spacing:5.685324pt;}
.ws185{word-spacing:5.791591pt;}
.ws1db{word-spacing:5.824426pt;}
.ws11e{word-spacing:5.844725pt;}
.ws139{word-spacing:5.862368pt;}
.ws1da{word-spacing:5.897371pt;}
.ws187{word-spacing:5.897859pt;}
.ws218{word-spacing:5.950993pt;}
.wsa3{word-spacing:6.004127pt;}
.ws145{word-spacing:6.057261pt;}
.ws25a{word-spacing:6.073242pt;}
.ws7c{word-spacing:6.108192pt;}
.ws169{word-spacing:6.189154pt;}
.ws168{word-spacing:6.194765pt;}
.ws1a0{word-spacing:6.222821pt;}
.ws19f{word-spacing:6.228432pt;}
.wsb1{word-spacing:6.322930pt;}
.ws235{word-spacing:6.407987pt;}
.ws70{word-spacing:6.423488pt;}
.ws221{word-spacing:6.482332pt;}
.ws88{word-spacing:6.546400pt;}
.ws3c{word-spacing:6.588599pt;}
.ws1c4{word-spacing:6.694867pt;}
.ws1f2{word-spacing:6.840053pt;}
.wsf{word-spacing:6.918010pt;}
.ws20a{word-spacing:6.960537pt;}
.ws1f3{word-spacing:6.980333pt;}
.ws1fd{word-spacing:7.103779pt;}
.ws205{word-spacing:7.126224pt;}
.ws186{word-spacing:7.173072pt;}
.ws220{word-spacing:7.438741pt;}
.ws124{word-spacing:7.460224pt;}
.ws1fe{word-spacing:7.496563pt;}
.ws25f{word-spacing:8.225178pt;}
.ws56{word-spacing:8.873356pt;}
.ws76{word-spacing:9.416128pt;}
.ws73{word-spacing:9.442848pt;}
.ws79{word-spacing:9.993280pt;}
.ws78{word-spacing:10.105504pt;}
.ws1b9{word-spacing:10.150661pt;}
.ws1b8{word-spacing:10.173106pt;}
.ws264{word-spacing:10.329293pt;}
.ws68{word-spacing:10.329312pt;}
.ws244{word-spacing:10.472755pt;}
.ws1ba{word-spacing:10.498555pt;}
.ws253{word-spacing:10.568397pt;}
.ws174{word-spacing:10.577112pt;}
.ws81{word-spacing:10.741440pt;}
.wsd{word-spacing:10.823338pt;}
.ws159{word-spacing:10.841309pt;}
.ws22c{word-spacing:10.921465pt;}
.ws24f{word-spacing:11.285709pt;}
.ws5{word-spacing:11.492822pt;}
.ws23a{word-spacing:11.763917pt;}
.ws251{word-spacing:11.811738pt;}
.ws229{word-spacing:11.859558pt;}
.ws22d{word-spacing:11.901619pt;}
.ws257{word-spacing:11.902140pt;}
.ws237{word-spacing:11.902677pt;}
.ws258{word-spacing:11.903113pt;}
.ws24a{word-spacing:11.904358pt;}
.ws22f{word-spacing:11.907379pt;}
.ws247{word-spacing:12.050842pt;}
.ws233{word-spacing:12.098662pt;}
.ws239{word-spacing:12.146483pt;}
.ws23c{word-spacing:12.194304pt;}
.ws14c{word-spacing:12.220789pt;}
.ws1e9{word-spacing:12.305362pt;}
.ws1ea{word-spacing:12.322195pt;}
.ws1c8{word-spacing:13.051615pt;}
.wsc0{word-spacing:13.070931pt;}
.wsbc{word-spacing:13.124065pt;}
.ws30{word-spacing:13.134725pt;}
.ws7e{word-spacing:13.194336pt;}
.ws7d{word-spacing:13.221056pt;}
.ws10b{word-spacing:13.226607pt;}
.ws10a{word-spacing:13.230333pt;}
.ws9a{word-spacing:13.257600pt;}
.ws9b{word-spacing:13.272000pt;}
.ws20d{word-spacing:13.283467pt;}
.ws9c{word-spacing:13.296000pt;}
.ws1c5{word-spacing:13.336601pt;}
.ws240{word-spacing:13.389824pt;}
.ws1c6{word-spacing:13.421833pt;}
.ws23f{word-spacing:13.437645pt;}
.ws4a{word-spacing:13.442868pt;}
.wsf7{word-spacing:13.488256pt;}
.ws1c7{word-spacing:13.496002pt;}
.ws8{word-spacing:13.761632pt;}
.wse{word-spacing:14.319536pt;}
.ws268{word-spacing:14.394061pt;}
.ws25c{word-spacing:14.770133pt;}
.ws23d{word-spacing:14.775074pt;}
.ws256{word-spacing:14.775381pt;}
.ws71{word-spacing:14.776160pt;}
.ws241{word-spacing:15.063552pt;}
.ws250{word-spacing:15.207014pt;}
.ws85{word-spacing:16.101472pt;}
.ws92{word-spacing:16.480896pt;}
.ws84{word-spacing:16.539680pt;}
.ws24d{word-spacing:18.267546pt;}
.wsbf{word-spacing:18.649987pt;}
.ws25e{word-spacing:21.567181pt;}
.ws77{word-spacing:21.824896pt;}
.ws24c{word-spacing:22.376112pt;}
.ws10{word-spacing:23.208806pt;}
.wsc{word-spacing:23.858002pt;}
.ws14{word-spacing:35.593054pt;}
.ws155{word-spacing:70.694400pt;}
.ws61{word-spacing:77.497600pt;}
.ws60{word-spacing:77.768000pt;}
.ws1cb{word-spacing:84.957600pt;}
.ws1c9{word-spacing:85.034880pt;}
.ws1ca{word-spacing:85.303680pt;}
.wsc1{word-spacing:166.664960pt;}
.wsc2{word-spacing:203.053760pt;}
.ws211{word-spacing:378.310349pt;}
.ws210{word-spacing:379.075482pt;}
.ws216{word-spacing:384.192307pt;}
.ws215{word-spacing:387.587584pt;}
.ws217{word-spacing:388.974387pt;}
.ws214{word-spacing:390.982861pt;}
.ws212{word-spacing:404.277043pt;}
.ws213{word-spacing:428.187443pt;}
._1e{margin-left:-229.761600pt;}
._a{margin-left:-13.007258pt;}
._1f{margin-left:-11.524800pt;}
._9{margin-left:-6.790586pt;}
._17{margin-left:-5.738458pt;}
._2{margin-left:-4.797974pt;}
._3{margin-left:-3.347424pt;}
._8{margin-left:-2.391040pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._6{width:2.045648pt;}
._b{width:3.221435pt;}
._4{width:9.298400pt;}
._c{width:10.626832pt;}
._5{width:11.530016pt;}
._28{width:12.440051pt;}
._14{width:13.378598pt;}
._e{width:14.633165pt;}
._23{width:15.568223pt;}
._f{width:16.589831pt;}
._19{width:17.587326pt;}
._d{width:18.646126pt;}
._13{width:19.606397pt;}
._1c{width:20.509673pt;}
._1a{width:21.625484pt;}
._20{width:22.581893pt;}
._11{width:24.368759pt;}
._10{width:25.488486pt;}
._7{width:27.188522pt;}
._22{width:28.160949pt;}
._12{width:29.329894pt;}
._27{width:30.346164pt;}
._18{width:31.348981pt;}
._1b{width:32.996131pt;}
._21{width:34.962084pt;}
._2d{width:36.244023pt;}
._35{width:39.060134pt;}
._37{width:54.993920pt;}
._36{width:78.904320pt;}
._26{width:105.907520pt;}
._25{width:106.870414pt;}
._2c{width:123.686640pt;}
._24{width:180.705504pt;}
._2f{width:282.955674pt;}
._31{width:293.380608pt;}
._34{width:416.232243pt;}
._32{width:426.035507pt;}
._2e{width:428.187443pt;}
._30{width:440.190464pt;}
._33{width:448.989491pt;}
._15{width:760.708851pt;}
._1d{width:1751.642798pt;}
._2b{width:1817.147745pt;}
._2a{width:1828.248244pt;}
._29{width:2114.829633pt;}
._16{width:2136.082966pt;}
.fs8{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fs7{font-size:40.381867pt;}
.fs0{font-size:41.988267pt;}
.fs9{font-size:42.507200pt;}
.fsb{font-size:42.560000pt;}
.fse{font-size:44.688000pt;}
.fsa{font-size:47.820800pt;}
.fsd{font-size:48.000000pt;}
.fs3{font-size:50.395200pt;}
.fsf{font-size:50.400000pt;}
.fs5{font-size:53.133867pt;}
.fsc{font-size:53.440000pt;}
.fs10{font-size:56.112000pt;}
.fs4{font-size:60.474240pt;}
.fs6{font-size:95.641600pt;}
.y1f5{bottom:-743.155980pt;}
.y1bf{bottom:-723.607780pt;}
.y21b{bottom:-691.645324pt;}
.y21a{bottom:-673.754012pt;}
.y219{bottom:-655.778533pt;}
.y218{bottom:-637.887222pt;}
.y1e0{bottom:-622.542071pt;}
.y217{bottom:-619.911743pt;}
.y1a2{bottom:-615.445068pt;}
.y1df{bottom:-604.649357pt;}
.y216{bottom:-601.936264pt;}
.y1a1{bottom:-597.545340pt;}
.y1de{bottom:-586.673878pt;}
.y215{bottom:-584.044952pt;}
.y1a0{bottom:-579.575472pt;}
.y1dd{bottom:-568.698399pt;}
.y214{bottom:-566.069473pt;}
.y19f{bottom:-561.689772pt;}
.y1dc{bottom:-550.807088pt;}
.y213{bottom:-548.178162pt;}
.y19e{bottom:-543.719904pt;}
.ye8{bottom:-542.531600pt;}
.y1db{bottom:-532.831608pt;}
.y212{bottom:-530.202683pt;}
.y19d{bottom:-525.750036pt;}
.y1da{bottom:-514.940297pt;}
.y211{bottom:-512.227204pt;}
.y19c{bottom:-507.864336pt;}
.y210{bottom:-494.335892pt;}
.y1d9{bottom:-492.764835pt;}
.y19b{bottom:-489.894468pt;}
.y10c{bottom:-489.641160pt;}
.y20f{bottom:-476.360413pt;}
.y10b{bottom:-472.601816pt;}
.y19a{bottom:-472.008768pt;}
.y20e{bottom:-458.384934pt;}
.y1d8{bottom:-457.989423pt;}
.y10a{bottom:-455.482312pt;}
.y199{bottom:-454.038900pt;}
.y20d{bottom:-440.493623pt;}
.y1d7{bottom:-440.098112pt;}
.y109{bottom:-438.362808pt;}
.y198{bottom:-436.069032pt;}
.y20c{bottom:-422.518144pt;}
.y1d6{bottom:-422.122632pt;}
.y108{bottom:-421.323464pt;}
.y197{bottom:-418.183332pt;}
.y20b{bottom:-404.626832pt;}
.y107{bottom:-404.203960pt;}
.y1d5{bottom:-404.147153pt;}
.y196{bottom:-400.213464pt;}
.y106{bottom:-387.084456pt;}
.y20a{bottom:-386.651353pt;}
.y1d4{bottom:-386.255842pt;}
.y195{bottom:-382.243596pt;}
.y105{bottom:-370.045112pt;}
.y209{bottom:-368.675874pt;}
.y1d3{bottom:-368.280363pt;}
.y194{bottom:-364.357896pt;}
.y104{bottom:-352.925608pt;}
.y208{bottom:-350.784563pt;}
.y1d2{bottom:-350.389052pt;}
.y193{bottom:-346.388028pt;}
.y207{bottom:-332.809084pt;}
.y14c{bottom:-332.495600pt;}
.y1d1{bottom:-332.413572pt;}
.y103{bottom:-331.884944pt;}
.y192{bottom:-324.293928pt;}
.y206{bottom:-314.917772pt;}
.y1d0{bottom:-314.438093pt;}
.y102{bottom:-298.765504pt;}
.y205{bottom:-296.942293pt;}
.y1cf{bottom:-296.546782pt;}
.y191{bottom:-289.518516pt;}
.y163{bottom:-282.488848pt;}
.y101{bottom:-281.646000pt;}
.y204{bottom:-278.966814pt;}
.y1ce{bottom:-278.571303pt;}
.y190{bottom:-271.548648pt;}
.y162{bottom:-265.369344pt;}
.y100{bottom:-264.606656pt;}
.y203{bottom:-261.075503pt;}
.y1cd{bottom:-260.679992pt;}
.y18f{bottom:-253.662948pt;}
.y161{bottom:-248.330000pt;}
.yff{bottom:-247.487152pt;}
.y202{bottom:-243.100024pt;}
.y1cc{bottom:-242.704512pt;}
.y18e{bottom:-235.693080pt;}
.y160{bottom:-231.210496pt;}
.yfe{bottom:-230.447808pt;}
.y201{bottom:-225.208712pt;}
.y1cb{bottom:-224.729033pt;}
.y18d{bottom:-217.807380pt;}
.y15f{bottom:-214.090992pt;}
.yfd{bottom:-213.328304pt;}
.y200{bottom:-207.233233pt;}
.y1ca{bottom:-206.837722pt;}
.y18c{bottom:-199.837512pt;}
.y15e{bottom:-197.051648pt;}
.yfc{bottom:-196.208800pt;}
.y1ff{bottom:-189.257754pt;}
.y1c9{bottom:-188.862243pt;}
.y18b{bottom:-181.867644pt;}
.y15d{bottom:-179.932144pt;}
.yfb{bottom:-179.169456pt;}
.y1fe{bottom:-171.366443pt;}
.y1c8{bottom:-170.970932pt;}
.y18a{bottom:-163.981944pt;}
.y15c{bottom:-162.892800pt;}
.yfa{bottom:-162.049952pt;}
.y1fd{bottom:-153.390964pt;}
.y1c7{bottom:-152.995452pt;}
.y189{bottom:-146.012076pt;}
.y15b{bottom:-145.773296pt;}
.yf9{bottom:-145.010608pt;}
.y1fc{bottom:-135.415484pt;}
.y1c6{bottom:-135.019973pt;}
.y15a{bottom:-128.653792pt;}
.y188{bottom:-128.112348pt;}
.yf8{bottom:-127.891104pt;}
.y1fb{bottom:-117.524173pt;}
.y1c5{bottom:-117.127259pt;}
.y159{bottom:-111.614448pt;}
.yf7{bottom:-110.771600pt;}
.y187{bottom:-110.142480pt;}
.y1fa{bottom:-99.548694pt;}
.y1c4{bottom:-99.151780pt;}
.y158{bottom:-94.494944pt;}
.y88{bottom:-93.369200pt;}
.y186{bottom:-88.048380pt;}
.y1f9{bottom:-81.655980pt;}
.yf6{bottom:-78.052000pt;}
.y157{bottom:-77.455600pt;}
.y1c3{bottom:-64.796200pt;}
.yf5{bottom:-62.611600pt;}
.y185{bottom:-53.612580pt;}
.y1c2{bottom:-48.583780pt;}
.y1f8{bottom:-47.300260pt;}
.yf4{bottom:-47.251600pt;}
.y156{bottom:-44.735200pt;}
.y184{bottom:-37.396380pt;}
.yb1{bottom:-35.529467pt;}
.y1c1{bottom:-32.455780pt;}
.yf3{bottom:-31.891600pt;}
.y1f7{bottom:-31.087840pt;}
.y155{bottom:-29.215600pt;}
.yb0{bottom:-20.089067pt;}
.yf2{bottom:-11.968592pt;}
.y1c0{bottom:-11.455318pt;}
.y1f6{bottom:-10.087770pt;}
.y154{bottom:-9.294488pt;}
.yaf{bottom:-0.072312pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.044747pt;}
.y118{bottom:4.108400pt;}
.y1af{bottom:5.107620pt;}
.y1e8{bottom:5.848220pt;}
.y21{bottom:6.150818pt;}
.yb9{bottom:6.230800pt;}
.y227{bottom:7.216020pt;}
.y2{bottom:12.578910pt;}
.y20{bottom:18.695443pt;}
.y4f{bottom:28.346667pt;}
.y116{bottom:30.185528pt;}
.yb8{bottom:32.310400pt;}
.y1f{bottom:33.746390pt;}
.y115{bottom:44.585704pt;}
.y1a3{bottom:51.727620pt;}
.yb2{bottom:51.830800pt;}
.y10d{bottom:60.108400pt;}
.y1e1{bottom:61.876220pt;}
.y21c{bottom:63.328020pt;}
.y1a4{bottom:74.071200pt;}
.yb3{bottom:80.951200pt;}
.y1f0{bottom:81.480000pt;}
.y26c{bottom:83.805333pt;}
.y1b4{bottom:84.853333pt;}
.y21d{bottom:85.084440pt;}
.y232{bottom:85.194667pt;}
.y10e{bottom:86.188104pt;}
.y13b{bottom:90.313333pt;}
.y175{bottom:91.049333pt;}
.y4e{bottom:92.108000pt;}
.y2d9{bottom:92.892000pt;}
.y1d{bottom:93.018667pt;}
.y84{bottom:94.884000pt;}
.y148{bottom:95.282667pt;}
.y267{bottom:95.525333pt;}
.ye4{bottom:95.681333pt;}
.y1a5{bottom:96.331200pt;}
.y1ef{bottom:98.217333pt;}
.yc8{bottom:99.168000pt;}
.y26b{bottom:99.426667pt;}
.y2a2{bottom:100.224000pt;}
.y1b3{bottom:101.590667pt;}
.y231{bottom:101.932000pt;}
.yb4{bottom:104.150800pt;}
.y11a{bottom:104.748800pt;}
.y1e2{bottom:105.220220pt;}
.y11b{bottom:105.948800pt;}
.y21e{bottom:106.840860pt;}
.y13a{bottom:107.050667pt;}
.y174{bottom:107.786667pt;}
.y2d8{bottom:108.233333pt;}
.y4d{bottom:108.844000pt;}
.y1c{bottom:108.920000pt;}
.y11d{bottom:109.228400pt;}
.y83{bottom:111.621333pt;}
.y147{bottom:112.020000pt;}
.y266{bottom:112.262667pt;}
.y10f{bottom:112.267808pt;}
.ye3{bottom:112.418667pt;}
.y117{bottom:113.788533pt;}
.y1ee{bottom:114.954667pt;}
.y26a{bottom:115.048000pt;}
.y2a1{bottom:115.566667pt;}
.yc7{bottom:115.905333pt;}
.y1a6{bottom:118.592600pt;}
.y230{bottom:118.669333pt;}
.y119{bottom:120.268400pt;}
.y1b2{bottom:122.313333pt;}
.y2d7{bottom:123.576000pt;}
.y139{bottom:123.788000pt;}
.y173{bottom:124.524000pt;}
.y1b{bottom:124.820000pt;}
.y4c{bottom:125.581333pt;}
.yb5{bottom:127.271200pt;}
.y82{bottom:128.358667pt;}
.y21f{bottom:128.597280pt;}
.y146{bottom:128.757333pt;}
.y265{bottom:129.000000pt;}
.ye2{bottom:129.156000pt;}
.y269{bottom:130.670667pt;}
.y2a0{bottom:130.909333pt;}
.y1ed{bottom:131.692000pt;}
.yc6{bottom:132.642667pt;}
.y22f{bottom:135.406667pt;}
.y110{bottom:138.347512pt;}
.y2d6{bottom:138.918667pt;}
.y138{bottom:140.525333pt;}
.y1a{bottom:140.720000pt;}
.y1a7{bottom:140.935200pt;}
.y172{bottom:141.261333pt;}
.y4b{bottom:142.318667pt;}
.y226{bottom:144.556020pt;}
.y81{bottom:145.096000pt;}
.y145{bottom:145.494667pt;}
.y264{bottom:145.737333pt;}
.ye1{bottom:145.893333pt;}
.y29f{bottom:146.252000pt;}
.y1ae{bottom:147.571620pt;}
.y1ec{bottom:148.429333pt;}
.y1e3{bottom:148.564220pt;}
.y1b1{bottom:149.360000pt;}
.yc5{bottom:149.380000pt;}
.y220{bottom:150.353700pt;}
.yb6{bottom:150.470800pt;}
.y22e{bottom:152.144000pt;}
.y1e7{bottom:153.772220pt;}
.y2d5{bottom:154.261333pt;}
.y19{bottom:156.621333pt;}
.y137{bottom:157.262667pt;}
.y171{bottom:157.997333pt;}
.y4a{bottom:159.056000pt;}
.y29e{bottom:161.594667pt;}
.y80{bottom:161.833333pt;}
.y144{bottom:162.232000pt;}
.y263{bottom:162.474667pt;}
.ye0{bottom:162.630667pt;}
.y1a8{bottom:163.196600pt;}
.y111{bottom:164.507016pt;}
.yc4{bottom:166.117333pt;}
.y1b0{bottom:166.454667pt;}
.y22d{bottom:168.881333pt;}
.y2d4{bottom:169.604000pt;}
.y221{bottom:172.110120pt;}
.y18{bottom:172.521333pt;}
.yb7{bottom:173.670400pt;}
.y136{bottom:174.000000pt;}
.y170{bottom:174.734667pt;}
.y49{bottom:175.793333pt;}
.y29d{bottom:176.937333pt;}
.y1eb{bottom:177.928000pt;}
.y7f{bottom:178.570667pt;}
.y143{bottom:178.969333pt;}
.y262{bottom:179.212000pt;}
.ydf{bottom:179.368000pt;}
.yc3{bottom:182.854667pt;}
.y2d3{bottom:184.946667pt;}
.y1a9{bottom:185.539200pt;}
.y22c{bottom:185.618667pt;}
.y182{bottom:186.392000pt;}
.y17{bottom:188.421333pt;}
.y112{bottom:190.586720pt;}
.y135{bottom:190.737333pt;}
.y16f{bottom:191.472000pt;}
.y1e4{bottom:191.908220pt;}
.y29c{bottom:192.280000pt;}
.y48{bottom:192.530667pt;}
.y222{bottom:193.866540pt;}
.y1ea{bottom:195.024000pt;}
.y7e{bottom:195.308000pt;}
.y142{bottom:195.706667pt;}
.y261{bottom:195.949333pt;}
.yde{bottom:196.105333pt;}
.yc2{bottom:199.592000pt;}
.y2d2{bottom:200.289333pt;}
.y22b{bottom:202.356000pt;}
.y16{bottom:204.322667pt;}
.y134{bottom:207.474667pt;}
.y29b{bottom:207.621333pt;}
.y1aa{bottom:207.800600pt;}
.y16e{bottom:208.209333pt;}
.y47{bottom:209.268000pt;}
.y7d{bottom:212.045333pt;}
.y1e9{bottom:212.120000pt;}
.y141{bottom:212.444000pt;}
.y260{bottom:212.686667pt;}
.ydd{bottom:212.841333pt;}
.y223{bottom:215.622960pt;}
.y2d1{bottom:215.632000pt;}
.yc1{bottom:216.329333pt;}
.y113{bottom:216.666424pt;}
.y22a{bottom:219.092000pt;}
.y29a{bottom:222.964000pt;}
.y133{bottom:224.212000pt;}
.y16d{bottom:224.946667pt;}
.y46{bottom:226.005333pt;}
.y7c{bottom:228.782667pt;}
.y140{bottom:229.181333pt;}
.y25f{bottom:229.422667pt;}
.ydc{bottom:229.578667pt;}
.yae{bottom:229.847944pt;}
.y1ab{bottom:230.060600pt;}
.y2d0{bottom:230.974667pt;}
.y1bc{bottom:232.056000pt;}
.yc0{bottom:233.066667pt;}
.y1e5{bottom:235.252220pt;}
.y224{bottom:237.379380pt;}
.y299{bottom:238.306667pt;}
.y132{bottom:240.949333pt;}
.y16c{bottom:241.684000pt;}
.y45{bottom:242.742667pt;}
.y114{bottom:242.746128pt;}
.y7b{bottom:245.520000pt;}
.y13f{bottom:245.918667pt;}
.y25e{bottom:246.160000pt;}
.ydb{bottom:246.316000pt;}
.yad{bottom:246.888624pt;}
.y229{bottom:248.929333pt;}
.ybf{bottom:249.804000pt;}
.y11c{bottom:252.348800pt;}
.y1ac{bottom:252.404600pt;}
.y298{bottom:253.649333pt;}
.y131{bottom:257.686667pt;}
.y16b{bottom:258.421333pt;}
.y225{bottom:259.135800pt;}
.y44{bottom:259.480000pt;}
.y2cf{bottom:261.658667pt;}
.y13e{bottom:262.656000pt;}
.y25d{bottom:262.897333pt;}
.yda{bottom:263.053333pt;}
.yac{bottom:264.008128pt;}
.y228{bottom:266.025333pt;}
.y7a{bottom:266.242667pt;}
.ybe{bottom:266.541333pt;}
.y15{bottom:266.804000pt;}
.y297{bottom:268.992000pt;}
.y130{bottom:274.424000pt;}
.y1ad{bottom:274.664460pt;}
.y16a{bottom:275.158667pt;}
.y43{bottom:276.217333pt;}
.y2ce{bottom:277.001333pt;}
.y1e6{bottom:278.680640pt;}
.y13d{bottom:279.393333pt;}
.y25c{bottom:279.634667pt;}
.yd9{bottom:279.790667pt;}
.yf1{bottom:280.191896pt;}
.yab{bottom:281.047472pt;}
.y14{bottom:282.705333pt;}
.ybd{bottom:283.278667pt;}
.y296{bottom:284.334667pt;}
.y1f2{bottom:285.961333pt;}
.y12f{bottom:291.161333pt;}
.y169{bottom:291.896000pt;}
.y2cd{bottom:292.344000pt;}
.y42{bottom:292.954667pt;}
.y79{bottom:296.129333pt;}
.y25b{bottom:296.372000pt;}
.yd8{bottom:296.528000pt;}
.yf0{bottom:297.311400pt;}
.yaa{bottom:298.166976pt;}
.y13{bottom:298.605333pt;}
.y295{bottom:299.677333pt;}
.ybc{bottom:300.014667pt;}
.y2cc{bottom:307.686667pt;}
.y12e{bottom:307.898667pt;}
.y168{bottom:308.633333pt;}
.y41{bottom:309.692000pt;}
.y78{bottom:312.866667pt;}
.y25a{bottom:313.109333pt;}
.yd7{bottom:313.265333pt;}
.yef{bottom:314.430904pt;}
.y12{bottom:314.505333pt;}
.y294{bottom:315.020000pt;}
.ya9{bottom:315.286480pt;}
.y1f4{bottom:315.328146pt;}
.y13c{bottom:316.852000pt;}
.y2cb{bottom:323.029333pt;}
.y1f3{bottom:324.316020pt;}
.y12d{bottom:324.636000pt;}
.y167{bottom:325.370667pt;}
.y77{bottom:329.604000pt;}
.y259{bottom:329.846667pt;}
.ybb{bottom:329.852000pt;}
.yd6{bottom:330.002667pt;}
.y293{bottom:330.361333pt;}
.y40{bottom:330.414667pt;}
.yee{bottom:331.470248pt;}
.ya8{bottom:332.325824pt;}
.y1be{bottom:334.876346pt;}
.y2ca{bottom:338.372000pt;}
.y11{bottom:338.376000pt;}
.y12c{bottom:341.373333pt;}
.y166{bottom:342.108000pt;}
.y1bd{bottom:343.864220pt;}
.y292{bottom:345.704000pt;}
.y76{bottom:346.341333pt;}
.y258{bottom:346.584000pt;}
.yd5{bottom:346.740000pt;}
.yba{bottom:346.948000pt;}
.yed{bottom:348.589752pt;}
.y183{bottom:348.751620pt;}
.ya7{bottom:349.445328pt;}
.y2c9{bottom:353.714667pt;}
.y10{bottom:354.277333pt;}
.y12b{bottom:358.110667pt;}
.y291{bottom:361.046667pt;}
.y75{bottom:363.078667pt;}
.y257{bottom:363.321333pt;}
.yd4{bottom:363.477333pt;}
.yec{bottom:365.629096pt;}
.ya6{bottom:366.484672pt;}
.y85{bottom:366.884267pt;}
.y2c8{bottom:369.056000pt;}
.yf{bottom:370.177333pt;}
.y165{bottom:371.944000pt;}
.y12a{bottom:374.848000pt;}
.y290{bottom:376.389333pt;}
.y74{bottom:379.816000pt;}
.y256{bottom:380.058667pt;}
.yd3{bottom:380.214667pt;}
.yeb{bottom:382.748600pt;}
.ya5{bottom:383.604176pt;}
.y2c7{bottom:384.398667pt;}
.y164{bottom:389.040000pt;}
.y129{bottom:391.585333pt;}
.y28f{bottom:391.732000pt;}
.ye{bottom:395.376000pt;}
.y73{bottom:396.553333pt;}
.y255{bottom:396.796000pt;}
.yd2{bottom:396.952000pt;}
.y3f{bottom:397.214667pt;}
.y2c6{bottom:399.741333pt;}
.yea{bottom:399.868104pt;}
.ya4{bottom:400.723680pt;}
.y28e{bottom:407.074667pt;}
.y128{bottom:408.322667pt;}
.y149{bottom:408.977333pt;}
.y72{bottom:413.290667pt;}
.y254{bottom:413.533333pt;}
.yd1{bottom:413.689333pt;}
.y3e{bottom:414.509333pt;}
.y2c5{bottom:415.084000pt;}
.ye9{bottom:416.908784pt;}
.ya3{bottom:417.763024pt;}
.yd{bottom:419.246667pt;}
.y28d{bottom:422.417333pt;}
.y127{bottom:425.058667pt;}
.y71{bottom:430.028000pt;}
.y253{bottom:430.270667pt;}
.yd0{bottom:430.426667pt;}
.ya2{bottom:434.882528pt;}
.yc{bottom:435.146667pt;}
.y28c{bottom:437.760000pt;}
.y126{bottom:441.796000pt;}
.y2c4{bottom:445.769333pt;}
.y70{bottom:446.765333pt;}
.y252{bottom:447.008000pt;}
.ycf{bottom:447.164000pt;}
.y3d{bottom:447.745333pt;}
.yb{bottom:451.048000pt;}
.ya1{bottom:452.002032pt;}
.y28b{bottom:453.102667pt;}
.y125{bottom:458.533333pt;}
.y2c3{bottom:461.112000pt;}
.y6f{bottom:463.502667pt;}
.y251{bottom:463.745333pt;}
.yce{bottom:463.901333pt;}
.y3c{bottom:465.040000pt;}
.ye7{bottom:465.548520pt;}
.ya{bottom:466.948000pt;}
.y28a{bottom:468.444000pt;}
.ya0{bottom:469.041376pt;}
.ye6{bottom:474.108400pt;}
.y124{bottom:475.270667pt;}
.y2c2{bottom:476.454667pt;}
.y6e{bottom:480.240000pt;}
.ycd{bottom:480.638667pt;}
.y3b{bottom:482.334667pt;}
.y9{bottom:482.848000pt;}
.y289{bottom:483.786667pt;}
.y250{bottom:484.468000pt;}
.y9f{bottom:486.160880pt;}
.y2c1{bottom:491.797333pt;}
.y123{bottom:492.008000pt;}
.y6d{bottom:496.977333pt;}
.ycc{bottom:497.376000pt;}
.y8{bottom:498.749333pt;}
.y288{bottom:499.129333pt;}
.y3a{bottom:499.630667pt;}
.y9e{bottom:503.200224pt;}
.y153{bottom:504.465648pt;}
.y2c0{bottom:507.138667pt;}
.y122{bottom:512.730667pt;}
.y6c{bottom:513.714667pt;}
.ycb{bottom:514.113333pt;}
.y24f{bottom:514.356000pt;}
.y287{bottom:514.472000pt;}
.y7{bottom:514.649333pt;}
.y39{bottom:516.925333pt;}
.y9d{bottom:520.319728pt;}
.y152{bottom:521.504992pt;}
.y2bf{bottom:522.481333pt;}
.y286{bottom:529.814667pt;}
.y181{bottom:530.452000pt;}
.y6{bottom:530.549333pt;}
.yca{bottom:530.850667pt;}
.y24e{bottom:531.093333pt;}
.y38{bottom:534.221333pt;}
.y6b{bottom:534.437333pt;}
.y9c{bottom:537.439232pt;}
.y2be{bottom:537.824000pt;}
.y151{bottom:538.624496pt;}
.y121{bottom:539.777333pt;}
.y285{bottom:545.157333pt;}
.y5{bottom:546.450667pt;}
.y180{bottom:547.189333pt;}
.yc9{bottom:547.588000pt;}
.y24d{bottom:547.830667pt;}
.y37{bottom:551.516000pt;}
.y2bd{bottom:553.166667pt;}
.y9b{bottom:554.478576pt;}
.y120{bottom:556.873333pt;}
.y150{bottom:559.665160pt;}
.y284{bottom:560.500000pt;}
.y4{bottom:562.350667pt;}
.y17f{bottom:563.926667pt;}
.y6a{bottom:564.325333pt;}
.y24c{bottom:564.568000pt;}
.y2bc{bottom:568.509333pt;}
.y36{bottom:568.810667pt;}
.y9a{bottom:571.598080pt;}
.y11f{bottom:573.969333pt;}
.y283{bottom:575.842667pt;}
.y1{bottom:578.250715pt;}
.y17e{bottom:580.664000pt;}
.y69{bottom:581.062667pt;}
.y24b{bottom:581.305333pt;}
.y2bb{bottom:583.852000pt;}
.y35{bottom:586.106667pt;}
.y99{bottom:588.637424pt;}
.y11e{bottom:591.065333pt;}
.y282{bottom:591.184000pt;}
.y14f{bottom:592.784600pt;}
.y17d{bottom:597.401333pt;}
.y68{bottom:597.800000pt;}
.y24a{bottom:598.041333pt;}
.y2ba{bottom:599.194667pt;}
.y34{bottom:603.401333pt;}
.y98{bottom:605.756928pt;}
.y281{bottom:606.526667pt;}
.y14e{bottom:609.904104pt;}
.ye5{bottom:611.002667pt;}
.y17c{bottom:614.138667pt;}
.y67{bottom:614.537333pt;}
.y249{bottom:614.778667pt;}
.y33{bottom:620.697333pt;}
.y280{bottom:621.869333pt;}
.y97{bottom:622.876432pt;}
.y14d{bottom:626.944784pt;}
.y2b9{bottom:629.878667pt;}
.y17b{bottom:630.876000pt;}
.y66{bottom:631.274667pt;}
.y248{bottom:631.516000pt;}
.y27f{bottom:637.212000pt;}
.y32{bottom:637.992000pt;}
.y96{bottom:639.917112pt;}
.y2b8{bottom:645.221333pt;}
.y17a{bottom:647.613333pt;}
.y65{bottom:648.012000pt;}
.y247{bottom:648.253333pt;}
.y27e{bottom:652.554667pt;}
.y31{bottom:655.286667pt;}
.y95{bottom:657.036616pt;}
.y2b7{bottom:660.564000pt;}
.y179{bottom:664.350667pt;}
.y64{bottom:664.749333pt;}
.y246{bottom:664.990667pt;}
.y27d{bottom:667.897333pt;}
.y30{bottom:672.582667pt;}
.y94{bottom:674.075960pt;}
.y14b{bottom:675.584520pt;}
.y2b6{bottom:675.906667pt;}
.y178{bottom:681.088000pt;}
.y63{bottom:681.485333pt;}
.y245{bottom:681.728000pt;}
.y27c{bottom:683.240000pt;}
.y14a{bottom:684.144400pt;}
.y2f{bottom:689.877333pt;}
.y93{bottom:691.195464pt;}
.y2b5{bottom:691.249333pt;}
.y177{bottom:697.825333pt;}
.y62{bottom:698.222667pt;}
.y244{bottom:698.465333pt;}
.y27b{bottom:698.582667pt;}
.y1f1{bottom:701.809333pt;}
.y2b4{bottom:706.592000pt;}
.y92{bottom:708.314968pt;}
.y1bb{bottom:714.562667pt;}
.y61{bottom:714.960000pt;}
.y243{bottom:715.202667pt;}
.y27a{bottom:717.909333pt;}
.y176{bottom:718.546667pt;}
.y2e{bottom:720.793333pt;}
.y2b3{bottom:721.934667pt;}
.y91{bottom:725.354312pt;}
.y1ba{bottom:731.300000pt;}
.y60{bottom:731.697333pt;}
.y242{bottom:735.925333pt;}
.y2b2{bottom:737.277333pt;}
.y2d{bottom:738.997333pt;}
.y90{bottom:742.473816pt;}
.y279{bottom:747.797333pt;}
.y1b9{bottom:748.036000pt;}
.y5f{bottom:748.434667pt;}
.y2c{bottom:749.486667pt;}
.y2b1{bottom:752.620000pt;}
.y8f{bottom:759.593320pt;}
.y1b8{bottom:764.773333pt;}
.y5e{bottom:765.172000pt;}
.y2b{bottom:767.690667pt;}
.y2b0{bottom:767.961333pt;}
.y278{bottom:771.389333pt;}
.y241{bottom:773.546667pt;}
.y8e{bottom:776.632664pt;}
.y1b7{bottom:781.510667pt;}
.y5d{bottom:781.909333pt;}
.y2a{bottom:782.036000pt;}
.y2af{bottom:783.304000pt;}
.y268{bottom:785.496000pt;}
.y277{bottom:787.010667pt;}
.y240{bottom:788.158667pt;}
.y29{bottom:792.525333pt;}
.y8d{bottom:793.752168pt;}
.y23d{bottom:794.202667pt;}
.y1b6{bottom:798.248000pt;}
.y5c{bottom:798.646667pt;}
.y276{bottom:802.632000pt;}
.y23f{bottom:802.770667pt;}
.y28{bottom:806.872000pt;}
.y8c{bottom:810.791512pt;}
.y2ae{bottom:813.989333pt;}
.y5b{bottom:815.384000pt;}
.y23e{bottom:817.382667pt;}
.y275{bottom:818.253333pt;}
.y1b5{bottom:818.970667pt;}
.y27{bottom:825.074667pt;}
.y8b{bottom:827.911016pt;}
.y2ad{bottom:829.332000pt;}
.y5a{bottom:832.121333pt;}
.y274{bottom:833.874667pt;}
.y23c{bottom:838.396000pt;}
.y2ac{bottom:844.674667pt;}
.y8a{bottom:845.030520pt;}
.y59{bottom:848.858667pt;}
.y23b{bottom:853.008000pt;}
.y273{bottom:857.466667pt;}
.y2ab{bottom:860.017333pt;}
.y26{bottom:861.406667pt;}
.y58{bottom:865.596000pt;}
.y89{bottom:866.071184pt;}
.y237{bottom:866.358667pt;}
.y23a{bottom:867.620000pt;}
.y2aa{bottom:875.360000pt;}
.y272{bottom:881.058667pt;}
.y239{bottom:882.232000pt;}
.y57{bottom:882.333333pt;}
.y2a8{bottom:890.701333pt;}
.y2a9{bottom:890.702667pt;}
.y238{bottom:896.844000pt;}
.y25{bottom:896.889333pt;}
.y56{bottom:899.070667pt;}
.y271{bottom:904.649333pt;}
.y2a7{bottom:906.044000pt;}
.y87{bottom:914.710920pt;}
.y55{bottom:915.808000pt;}
.y236{bottom:917.857333pt;}
.y270{bottom:920.270667pt;}
.y2a6{bottom:921.386667pt;}
.y24{bottom:921.996000pt;}
.y86{bottom:923.270800pt;}
.y54{bottom:932.545333pt;}
.y26f{bottom:935.893333pt;}
.y2a5{bottom:936.729333pt;}
.y235{bottom:938.872000pt;}
.y23{bottom:947.101333pt;}
.y53{bottom:949.282667pt;}
.y26e{bottom:951.514667pt;}
.y2a4{bottom:952.072000pt;}
.y52{bottom:966.020000pt;}
.y234{bottom:966.977333pt;}
.y26d{bottom:967.136000pt;}
.y2a3{bottom:967.414667pt;}
.y22{bottom:972.208000pt;}
.y51{bottom:982.757333pt;}
.y233{bottom:984.073333pt;}
.y1e{bottom:1010.862667pt;}
.y50{bottom:1038.548000pt;}
.h2{height:22.673858pt;}
.hd{height:23.209028pt;}
.h5{height:27.076941pt;}
.h6{height:27.262909pt;}
.h4{height:29.433775pt;}
.h3{height:30.399505pt;}
.he{height:30.945242pt;}
.h17{height:31.067969pt;}
.h13{height:31.157778pt;}
.h24{height:32.621367pt;}
.hf{height:34.574438pt;}
.h10{height:34.813542pt;}
.h8{height:35.024664pt;}
.h19{height:35.039062pt;}
.h26{height:35.052646pt;}
.h1f{height:36.791016pt;}
.h22{height:36.792696pt;}
.h11{height:38.415786pt;}
.h12{height:38.681455pt;}
.h16{height:38.840156pt;}
.ha{height:38.947124pt;}
.h18{height:39.010156pt;}
.h1e{height:40.782164pt;}
.h21{height:40.960664pt;}
.h9{height:41.001535pt;}
.h27{height:43.612570pt;}
.h7{height:45.271688pt;}
.h14{height:48.458086pt;}
.hc{height:48.481423pt;}
.h1b{height:48.769219pt;}
.h20{height:51.207680pt;}
.hb{height:69.148877pt;}
.h15{height:193.163733pt;}
.h1a{height:267.054667pt;}
.h25{height:273.687400pt;}
.h1d{height:289.570400pt;}
.h23{height:294.456400pt;}
.h1c{height:485.817333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w3{width:157.700859pt;}
.w6{width:314.762667pt;}
.w4{width:424.145333pt;}
.w5{width:442.180000pt;}
.w7{width:467.343800pt;}
.w8{width:485.671200pt;}
.w9{width:500.333400pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x27{left:-201.017333pt;}
.xa0{left:-196.407400pt;}
.x66{left:-188.800000pt;}
.x97{left:-184.800000pt;}
.x87{left:-181.236000pt;}
.x28{left:-27.177013pt;}
.x67{left:-14.961016pt;}
.xa2{left:-13.875400pt;}
.x88{left:-7.396969pt;}
.x98{left:-2.268000pt;}
.x0{left:0.000000pt;}
.x29{left:1.143515pt;}
.x2f{left:9.303067pt;}
.xa7{left:11.324600pt;}
.x2e{left:13.463467pt;}
.xa3{left:15.860600pt;}
.x2c{left:19.383067pt;}
.x89{left:20.922938pt;}
.xa6{left:24.848600pt;}
.x2{left:26.021437pt;}
.x2d{left:28.343467pt;}
.xa5{left:31.148600pt;}
.x69{left:36.160000pt;}
.x6c{left:42.640000pt;}
.xa4{left:43.748600pt;}
.x4{left:46.701333pt;}
.x1{left:47.621398pt;}
.x3{left:52.004487pt;}
.x2b{left:61.542667pt;}
.x6a{left:71.520976pt;}
.x6e{left:75.280400pt;}
.xc4{left:76.309333pt;}
.xa8{left:130.856600pt;}
.xaf{left:136.546200pt;}
.x31{left:140.102667pt;}
.x99{left:154.728000pt;}
.x6d{left:155.840000pt;}
.x30{left:201.222667pt;}
.x7{left:220.912000pt;}
.x5{left:221.858667pt;}
.x6f{left:234.880400pt;}
.x6{left:239.924000pt;}
.xa{left:250.204000pt;}
.xb8{left:262.441333pt;}
.xaa{left:267.632000pt;}
.x32{left:272.737333pt;}
.xa9{left:275.724000pt;}
.x8{left:276.838667pt;}
.x9c{left:277.789333pt;}
.xad{left:279.793333pt;}
.xab{left:280.914667pt;}
.x9{left:283.410667pt;}
.xba{left:287.005333pt;}
.x9d{left:291.073333pt;}
.xae{left:293.077333pt;}
.x1f{left:297.485333pt;}
.xd{left:301.022667pt;}
.x20{left:304.128000pt;}
.xc1{left:306.428000pt;}
.xe{left:307.664000pt;}
.xbb{left:310.241333pt;}
.x62{left:311.553333pt;}
.x15{left:313.989333pt;}
.x6b{left:314.881184pt;}
.x72{left:317.174667pt;}
.xc2{left:319.712000pt;}
.x16{left:320.632000pt;}
.x9a{left:321.593333pt;}
.x55{left:322.561333pt;}
.x63{left:324.836000pt;}
.x8a{left:326.601909pt;}
.x64{left:328.133333pt;}
.x56{left:329.202667pt;}
.x73{left:330.457333pt;}
.x39{left:332.629333pt;}
.x74{left:333.845333pt;}
.x9b{left:335.009333pt;}
.xac{left:338.448000pt;}
.x65{left:341.417333pt;}
.x3a{left:345.913333pt;}
.x75{left:347.129333pt;}
.xbc{left:348.632000pt;}
.x5d{left:364.786667pt;}
.x11{left:368.885333pt;}
.x5e{left:371.428000pt;}
.x12{left:375.526667pt;}
.x13{left:378.781333pt;}
.xc3{left:381.710667pt;}
.x14{left:385.424000pt;}
.x48{left:388.225333pt;}
.x21{left:392.476000pt;}
.xbe{left:393.756000pt;}
.x5f{left:394.873333pt;}
.xb6{left:397.049333pt;}
.xb9{left:398.034667pt;}
.x22{left:399.117333pt;}
.x93{left:401.165333pt;}
.x23{left:402.505333pt;}
.x60{left:408.157333pt;}
.x24{left:409.146667pt;}
.xb7{left:410.044000pt;}
.x94{left:414.449333pt;}
.x61{left:415.637333pt;}
.x8b{left:416.549333pt;}
.x85{left:420.065333pt;}
.x8c{left:423.792000pt;}
.xb3{left:425.597333pt;}
.xf{left:431.400000pt;}
.x86{left:433.348000pt;}
.x8d{left:436.676000pt;}
.x10{left:438.041333pt;}
.x8e{left:439.808000pt;}
.xbf{left:443.350667pt;}
.xb4{left:445.656000pt;}
.x68{left:453.439248pt;}
.xc0{left:456.633333pt;}
.x1b{left:459.222667pt;}
.x1c{left:465.865333pt;}
.x1d{left:469.252000pt;}
.x2a{left:470.822331pt;}
.x1e{left:475.894667pt;}
.x3b{left:478.528000pt;}
.xb1{left:479.993333pt;}
.x3c{left:485.169333pt;}
.x77{left:489.612000pt;}
.x8f{left:492.222667pt;}
.xb2{left:493.277333pt;}
.xa1{left:494.324306pt;}
.x78{left:501.577333pt;}
.x90{left:505.108000pt;}
.x91{left:511.421333pt;}
.x79{left:514.861333pt;}
.x7a{left:521.469333pt;}
.x45{left:522.793333pt;}
.x92{left:524.306667pt;}
.xbd{left:531.465333pt;}
.x4d{left:534.953333pt;}
.x46{left:536.077333pt;}
.x84{left:538.992000pt;}
.x4e{left:541.596000pt;}
.x47{left:542.852000pt;}
.x4f{left:544.849333pt;}
.x70{left:546.622667pt;}
.xb{left:549.673333pt;}
.x50{left:551.492000pt;}
.x71{left:553.265333pt;}
.x51{left:554.746667pt;}
.xc{left:556.314667pt;}
.x35{left:559.334667pt;}
.x36{left:565.976000pt;}
.x52{left:568.029333pt;}
.x82{left:572.564000pt;}
.x53{left:574.538667pt;}
.x83{left:585.848000pt;}
.x54{left:587.822667pt;}
.x7f{left:596.989333pt;}
.xb5{left:599.132000pt;}
.x80{left:603.630667pt;}
.xc5{left:607.678667pt;}
.x37{left:609.914667pt;}
.x57{left:615.800000pt;}
.x81{left:617.048000pt;}
.x95{left:618.048000pt;}
.x58{left:619.177333pt;}
.x38{left:623.198667pt;}
.x41{left:624.621333pt;}
.xb0{left:629.897333pt;}
.x96{left:631.377333pt;}
.x59{left:632.460000pt;}
.x5a{left:635.837333pt;}
.x42{left:637.905333pt;}
.x43{left:644.680000pt;}
.x5b{left:649.121333pt;}
.x44{left:657.964000pt;}
.x3d{left:659.984000pt;}
.x76{left:662.313333pt;}
.x3e{left:666.626667pt;}
.x9e{left:668.225333pt;}
.x3f{left:670.013333pt;}
.x17{left:673.330667pt;}
.x40{left:676.654667pt;}
.x18{left:679.972000pt;}
.x9f{left:681.508000pt;}
.x19{left:683.300000pt;}
.x33{left:686.421333pt;}
.x1a{left:689.941333pt;}
.xc9{left:691.076000pt;}
.xc8{left:692.004000pt;}
.x49{left:694.240000pt;}
.x34{left:696.442667pt;}
.x5c{left:697.430667pt;}
.x4a{left:700.882667pt;}
.x25{left:702.832000pt;}
.x4b{left:704.269333pt;}
.xca{left:707.346667pt;}
.x26{left:709.473333pt;}
.x4c{left:710.910667pt;}
.x7d{left:716.946667pt;}
.xc6{left:720.277333pt;}
.x7e{left:723.588000pt;}
.x7b{left:727.090667pt;}
.xcb{left:731.257333pt;}
.x7c{left:740.373333pt;}
.xc7{left:744.188000pt;}
}




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