
    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_c9a662e1240bcffb1363de0e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986000;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_77d3f1e8a5d79d12002ecb21.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_41f141d1fb14190ae0f3f269.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_acc28a29be960508fe980238.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_33aa40d007a71084bd3ce7fd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.691000;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_a4895a30b8f89c2811d327bc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.040000;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_f0c95d56dd868b9ba05f44c8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.997000;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_9cc07856574b92c2dd130f92.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.002441;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_ed779cd46be0d34ad8fa49f1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.675781;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_e6ae457b43213b42e8e2fb0d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.003418;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_f6f81c0cc0bd7a3a91c9f53f.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_61181b88d2c783d91979c85d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.951660;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_437ef36e7dfe47a735427bb8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.752441;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_6f881e142867de1c5697cffa.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.054688;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_091e74b1780bb7d9550ee8de.woff2')format("woff");}.fff{font-family:fff;line-height:0.909180;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_0ab252fa5a5b23d801c4c73c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_9cc07856574b92c2dd130f92.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.002441;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_ed779cd46be0d34ad8fa49f1.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.675781;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_a774fbf9d1fbdc962d5e9884.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.003418;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_2a0f00320db43839586b3e31.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_2323c70a49c0894956857626.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.951660;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_437ef36e7dfe47a735427bb8.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.752441;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_a614a3e4b64a60151fbde561.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.054688;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_091e74b1780bb7d9550ee8de.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.909180;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_d00292686eb9db02d8517578.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_5e4bcb8e4ce296eb36b8a813.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_59a8fe64ab9ea5ee645b745b.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.186000;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_bce1f81a7722591465214adf.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.726000;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_9c47e392ace80677eabb0048.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.726000;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;}
.m28{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);}
.m2{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);}
.m4{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);}
.m8{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);}
.m1{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);}
.m6{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);}
.m1f{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);}
.m1e{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);}
.m18{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);}
.m10{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);}
.m23{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);}
.m25{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);}
.m20{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);}
.m9{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);}
.m17{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);}
.m11{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);}
.m1a{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);}
.ma{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);}
.m14{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);}
.m22{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);}
.m1c{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);}
.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);}
.m5{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);}
.mf{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);}
.m1d{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);}
.m26{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);}
.m21{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);}
.m19{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);}
.md{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);}
.m3{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);}
.m13{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);}
.m29{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);}
.mb{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);}
.m1b{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);}
.mc{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);}
.m15{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);}
.me{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);}
.m16{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);}
.m27{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);}
.m2a{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);}
.m7{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);}
.m12{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;}
.v3{vertical-align:32.874000px;}
.v4{vertical-align:40.683204px;}
.v5{vertical-align:41.758200px;}
.lsaa{letter-spacing:-0.517032px;}
.lsdf{letter-spacing:-0.498996px;}
.lse0{letter-spacing:-0.480960px;}
.lsa3{letter-spacing:-0.456912px;}
.lsed{letter-spacing:-0.450900px;}
.lsae{letter-spacing:-0.432864px;}
.ls8f{letter-spacing:-0.420840px;}
.lsb6{letter-spacing:-0.378756px;}
.lsea{letter-spacing:-0.366732px;}
.lsbb{letter-spacing:-0.361800px;}
.ls84{letter-spacing:-0.360720px;}
.lse9{letter-spacing:-0.354708px;}
.ls86{letter-spacing:-0.342684px;}
.lsee{letter-spacing:-0.336672px;}
.ls9e{letter-spacing:-0.300600px;}
.lse4{letter-spacing:-0.294588px;}
.lse6{letter-spacing:-0.282564px;}
.ls91{letter-spacing:-0.276552px;}
.ls8b{letter-spacing:-0.270540px;}
.lseb{letter-spacing:-0.252504px;}
.lse7{letter-spacing:-0.246492px;}
.ls87{letter-spacing:-0.234468px;}
.lse5{letter-spacing:-0.228456px;}
.lsaf{letter-spacing:-0.222444px;}
.lsa0{letter-spacing:-0.216432px;}
.lse3{letter-spacing:-0.210420px;}
.ls98{letter-spacing:-0.204408px;}
.lsb7{letter-spacing:-0.192384px;}
.lsb8{letter-spacing:-0.186372px;}
.lsbd{letter-spacing:-0.180360px;}
.ls96{letter-spacing:-0.174348px;}
.lse8{letter-spacing:-0.162324px;}
.lsb0{letter-spacing:-0.145800px;}
.lsa5{letter-spacing:-0.144288px;}
.lsa1{letter-spacing:-0.138276px;}
.lsa8{letter-spacing:-0.132264px;}
.ls8a{letter-spacing:-0.126252px;}
.ls9d{letter-spacing:-0.120240px;}
.lsb4{letter-spacing:-0.118800px;}
.lsec{letter-spacing:-0.114228px;}
.lse1{letter-spacing:-0.108216px;}
.ls75{letter-spacing:-0.105336px;}
.lsb5{letter-spacing:-0.102600px;}
.ls9b{letter-spacing:-0.102204px;}
.ls93{letter-spacing:-0.096192px;}
.ls77{letter-spacing:-0.090972px;}
.ls8c{letter-spacing:-0.090180px;}
.ls78{letter-spacing:-0.086184px;}
.ls99{letter-spacing:-0.084168px;}
.ls92{letter-spacing:-0.078156px;}
.ls74{letter-spacing:-0.076608px;}
.ls9a{letter-spacing:-0.072144px;}
.lsb1{letter-spacing:-0.070200px;}
.ls95{letter-spacing:-0.066132px;}
.ls8e{letter-spacing:-0.064800px;}
.ls83{letter-spacing:-0.060120px;}
.lsa7{letter-spacing:-0.054108px;}
.ls7c{letter-spacing:-0.054000px;}
.lsa6{letter-spacing:-0.048096px;}
.lsba{letter-spacing:-0.043200px;}
.lsab{letter-spacing:-0.042084px;}
.ls7e{letter-spacing:-0.037800px;}
.ls85{letter-spacing:-0.036072px;}
.ls7b{letter-spacing:-0.032400px;}
.ls80{letter-spacing:-0.030060px;}
.ls97{letter-spacing:-0.024048px;}
.lsb9{letter-spacing:-0.021600px;}
.lsac{letter-spacing:-0.018036px;}
.lsa4{letter-spacing:-0.012024px;}
.ls81{letter-spacing:-0.006012px;}
.ls7{letter-spacing:0.000000px;}
.ls106{letter-spacing:0.000800px;}
.ls104{letter-spacing:0.001036px;}
.ls107{letter-spacing:0.001746px;}
.lsfa{letter-spacing:0.004800px;}
.ls5f{letter-spacing:0.005400px;}
.lsef{letter-spacing:0.005686px;}
.ls50{letter-spacing:0.006012px;}
.ls4b{letter-spacing:0.010800px;}
.ls4f{letter-spacing:0.012024px;}
.ls2f{letter-spacing:0.016200px;}
.ls56{letter-spacing:0.018036px;}
.ls27{letter-spacing:0.023940px;}
.ls53{letter-spacing:0.024048px;}
.ls5e{letter-spacing:0.027000px;}
.ls6f{letter-spacing:0.030060px;}
.ls2d{letter-spacing:0.032400px;}
.ls52{letter-spacing:0.036072px;}
.lsc0{letter-spacing:0.037800px;}
.ls57{letter-spacing:0.042084px;}
.ls7f{letter-spacing:0.043200px;}
.ls64{letter-spacing:0.048096px;}
.ls30{letter-spacing:0.048600px;}
.ls3d{letter-spacing:0.054108px;}
.ls4c{letter-spacing:0.059400px;}
.ls36{letter-spacing:0.060120px;}
.lsbf{letter-spacing:0.066132px;}
.lsb2{letter-spacing:0.070200px;}
.ls5d{letter-spacing:0.072144px;}
.lsbe{letter-spacing:0.078156px;}
.ls2a{letter-spacing:0.086184px;}
.ls3f{letter-spacing:0.090180px;}
.ls76{letter-spacing:0.095760px;}
.ls8d{letter-spacing:0.097200px;}
.ls58{letter-spacing:0.102204px;}
.ls60{letter-spacing:0.113400px;}
.ls59{letter-spacing:0.114228px;}
.ls72{letter-spacing:0.120240px;}
.ls7d{letter-spacing:0.124200px;}
.lsa9{letter-spacing:0.126252px;}
.lsbc{letter-spacing:0.129600px;}
.ls9f{letter-spacing:0.132264px;}
.ls29{letter-spacing:0.134064px;}
.ls88{letter-spacing:0.138276px;}
.ls7a{letter-spacing:0.143640px;}
.ls94{letter-spacing:0.144288px;}
.lscc{letter-spacing:0.145800px;}
.lsb3{letter-spacing:0.151200px;}
.lse2{letter-spacing:0.162324px;}
.ls9c{letter-spacing:0.168336px;}
.ls2e{letter-spacing:0.178200px;}
.ls5b{letter-spacing:0.180360px;}
.ls28{letter-spacing:0.181944px;}
.lsad{letter-spacing:0.186372px;}
.lsd4{letter-spacing:0.189864px;}
.ls90{letter-spacing:0.192384px;}
.lsd3{letter-spacing:0.240480px;}
.ls79{letter-spacing:0.344736px;}
.lsa2{letter-spacing:0.505008px;}
.ls23{letter-spacing:0.642088px;}
.ls26{letter-spacing:0.648088px;}
.lsf5{letter-spacing:0.717483px;}
.lsf3{letter-spacing:0.723483px;}
.lsce{letter-spacing:0.811620px;}
.lscd{letter-spacing:1.172340px;}
.lscf{letter-spacing:1.527048px;}
.lsd0{letter-spacing:1.533060px;}
.ls5a{letter-spacing:1.887768px;}
.ls5c{letter-spacing:2.235960px;}
.ls51{letter-spacing:2.248488px;}
.ls4e{letter-spacing:2.609208px;}
.ls4d{letter-spacing:2.969928px;}
.ls2{letter-spacing:2.983200px;}
.ls1{letter-spacing:2.989200px;}
.lsdb{letter-spacing:3.691368px;}
.lsda{letter-spacing:4.052088px;}
.lsd1{letter-spacing:4.412808px;}
.lsd2{letter-spacing:4.767516px;}
.lsd6{letter-spacing:5.128236px;}
.lsd5{letter-spacing:5.488956px;}
.ls70{letter-spacing:6.571116px;}
.ls54{letter-spacing:6.931836px;}
.ls55{letter-spacing:7.292556px;}
.lsdc{letter-spacing:8.368704px;}
.lsdd{letter-spacing:8.729424px;}
.ls0{letter-spacing:10.461300px;}
.lsd9{letter-spacing:11.609172px;}
.ls2c{letter-spacing:11.788056px;}
.ls6{letter-spacing:11.954850px;}
.lsd7{letter-spacing:11.969892px;}
.lsd8{letter-spacing:12.330612px;}
.lsf1{letter-spacing:12.773424px;}
.lsfc{letter-spacing:13.193468px;}
.lsf9{letter-spacing:13.244518px;}
.ls103{letter-spacing:13.315979px;}
.lsfe{letter-spacing:13.418926px;}
.lsf6{letter-spacing:13.448400px;}
.lsf8{letter-spacing:13.454400px;}
.lsfd{letter-spacing:13.469481px;}
.ls101{letter-spacing:13.483053px;}
.ls105{letter-spacing:13.503341px;}
.lsfb{letter-spacing:13.529337px;}
.lsf7{letter-spacing:13.580642px;}
.ls15{letter-spacing:14.656918px;}
.ls13{letter-spacing:14.658062px;}
.ls12{letter-spacing:14.658278px;}
.ls14{letter-spacing:14.658369px;}
.ls19{letter-spacing:14.788958px;}
.ls16{letter-spacing:14.792072px;}
.ls17{letter-spacing:14.792967px;}
.ls18{letter-spacing:14.796724px;}
.ls11{letter-spacing:14.813010px;}
.ls1f{letter-spacing:14.941834px;}
.ls22{letter-spacing:14.943292px;}
.ls24{letter-spacing:14.943900px;}
.ls21{letter-spacing:14.944200px;}
.ls1e{letter-spacing:14.947834px;}
.ls20{letter-spacing:14.949634px;}
.ls1a{letter-spacing:15.058755px;}
.ls1d{letter-spacing:15.059163px;}
.ls1b{letter-spacing:15.061243px;}
.ls1c{letter-spacing:15.063910px;}
.lsf{letter-spacing:15.066791px;}
.lse{letter-spacing:15.072146px;}
.ls10{letter-spacing:15.072216px;}
.lsd{letter-spacing:15.075365px;}
.lsb{letter-spacing:15.136690px;}
.lsc{letter-spacing:15.141169px;}
.ls8{letter-spacing:15.144570px;}
.lsa{letter-spacing:15.148342px;}
.ls9{letter-spacing:15.150674px;}
.lsf2{letter-spacing:15.687986px;}
.lsf4{letter-spacing:15.693986px;}
.ls102{letter-spacing:15.920988px;}
.ls100{letter-spacing:16.068047px;}
.lsff{letter-spacing:16.603341px;}
.lsf0{letter-spacing:17.929200px;}
.ls3{letter-spacing:17.935200px;}
.ls63{letter-spacing:61.292340px;}
.lscb{letter-spacing:62.368488px;}
.lsc9{letter-spacing:62.729208px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.lsca{letter-spacing:69.210144px;}
.ls68{letter-spacing:76.412520px;}
.lsc2{letter-spacing:77.488668px;}
.ls6d{letter-spacing:79.652988px;}
.lsc8{letter-spacing:83.969604px;}
.ls62{letter-spacing:101.969532px;}
.lsc7{letter-spacing:105.931440px;}
.ls48{letter-spacing:108.089748px;}
.ls6a{letter-spacing:109.526616px;}
.ls66{letter-spacing:114.931404px;}
.ls41{letter-spacing:117.450432px;}
.ls3e{letter-spacing:127.532556px;}
.lsc5{letter-spacing:132.209892px;}
.ls35{letter-spacing:134.728920px;}
.ls45{letter-spacing:141.931296px;}
.ls39{letter-spacing:142.652736px;}
.ls43{letter-spacing:144.089604px;}
.ls89{letter-spacing:146.969352px;}
.ls3a{letter-spacing:150.570540px;}
.ls44{letter-spacing:152.007408px;}
.ls42{letter-spacing:154.887156px;}
.lsc6{letter-spacing:155.969316px;}
.ls49{letter-spacing:159.209784px;}
.ls47{letter-spacing:161.728812px;}
.ls40{letter-spacing:162.810972px;}
.ls4a{letter-spacing:166.772880px;}
.lsc4{letter-spacing:170.728776px;}
.lsc3{letter-spacing:174.329964px;}
.ls38{letter-spacing:175.772844px;}
.ls73{letter-spacing:175.984090px;}
.ls46{letter-spacing:177.570432px;}
.ls25{letter-spacing:178.690090px;}
.ls3b{letter-spacing:179.007300px;}
.ls65{letter-spacing:181.171620px;}
.ls37{letter-spacing:196.652520px;}
.lsc1{letter-spacing:213.209568px;}
.ls6c{letter-spacing:224.013132px;}
.ls3c{letter-spacing:249.209424px;}
.ls61{letter-spacing:252.810612px;}
.ls69{letter-spacing:269.006940px;}
.ls34{letter-spacing:285.570000px;}
.ls6e{letter-spacing:295.291404px;}
.lsde{letter-spacing:296.281800px;}
.ls71{letter-spacing:297.718200px;}
.ls6b{letter-spacing:325.171044px;}
.ls67{letter-spacing:355.050684px;}
.ls82{letter-spacing:411.208776px;}
.ls31{letter-spacing:573.568848px;}
.ls33{letter-spacing:647.726868px;}
.ls32{letter-spacing:657.448272px;}
.ls2b{letter-spacing:1627.829028px;}
.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;}
}
.wse8{word-spacing:-311.218200px;}
.wsff{word-spacing:-309.781800px;}
.ws9d{word-spacing:-207.089352px;}
.wsa0{word-spacing:-60.120000px;}
.ws8e{word-spacing:-54.000000px;}
.ws7f{word-spacing:-47.880000px;}
.wse9{word-spacing:-14.951844px;}
.ws66{word-spacing:-14.943900px;}
.ws64{word-spacing:-13.449600px;}
.ws29{word-spacing:-11.955150px;}
.ws11{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws108{word-spacing:-4.602721px;}
.ws111{word-spacing:-3.108331px;}
.ws50{word-spacing:-2.749678px;}
.ws121{word-spacing:-2.510575px;}
.ws176{word-spacing:-2.259533px;}
.ws17f{word-spacing:-2.205734px;}
.ws110{word-spacing:-2.151922px;}
.ws127{word-spacing:-2.044339px;}
.ws60{word-spacing:-1.972595px;}
.ws122{word-spacing:-1.853044px;}
.ws128{word-spacing:-1.829146px;}
.ws177{word-spacing:-1.775347px;}
.ws10d{word-spacing:-1.733492px;}
.ws3e{word-spacing:-1.673717px;}
.ws132{word-spacing:-1.613952px;}
.ws10b{word-spacing:-1.613941px;}
.ws54{word-spacing:-1.554166px;}
.ws55{word-spacing:-1.494390px;}
.ws102{word-spacing:-1.374839px;}
.ws10c{word-spacing:-1.315063px;}
.ws48{word-spacing:-1.195512px;}
.ws6{word-spacing:-1.171598px;}
.ws171{word-spacing:-1.129766px;}
.ws8{word-spacing:-1.046070px;}
.ws14{word-spacing:-1.022170px;}
.ws153{word-spacing:-0.968371px;}
.ws34{word-spacing:-0.956410px;}
.ws76{word-spacing:-0.896634px;}
.ws35{word-spacing:-0.717307px;}
.wsc0{word-spacing:-0.565128px;}
.ws78{word-spacing:-0.537980px;}
.ws44{word-spacing:-0.478205px;}
.ws165{word-spacing:-0.430387px;}
.ws88{word-spacing:-0.392616px;}
.ws36{word-spacing:-0.358654px;}
.ws2{word-spacing:-0.334742px;}
.ws13f{word-spacing:-0.322790px;}
.wsf8{word-spacing:-0.300600px;}
.ws42{word-spacing:-0.298878px;}
.ws6a{word-spacing:-0.278774px;}
.ws18{word-spacing:-0.268992px;}
.wsa8{word-spacing:-0.252504px;}
.wsd0{word-spacing:-0.246492px;}
.ws9b{word-spacing:-0.240480px;}
.ws2f{word-spacing:-0.239102px;}
.ws85{word-spacing:-0.229824px;}
.wsb9{word-spacing:-0.228456px;}
.wsef{word-spacing:-0.222444px;}
.ws15{word-spacing:-0.215194px;}
.wsdb{word-spacing:-0.205200px;}
.wsad{word-spacing:-0.204408px;}
.wsf2{word-spacing:-0.199800px;}
.ws9c{word-spacing:-0.198396px;}
.wsbc{word-spacing:-0.192384px;}
.ws89{word-spacing:-0.191520px;}
.wscc{word-spacing:-0.186372px;}
.wse4{word-spacing:-0.183600px;}
.wsd4{word-spacing:-0.180360px;}
.ws1f{word-spacing:-0.179327px;}
.ws8d{word-spacing:-0.178200px;}
.ws6b{word-spacing:-0.174415px;}
.wsc4{word-spacing:-0.174348px;}
.wsda{word-spacing:-0.167400px;}
.wsc3{word-spacing:-0.162324px;}
.ws15a{word-spacing:-0.161395px;}
.wsa2{word-spacing:-0.151200px;}
.wsc7{word-spacing:-0.150300px;}
.ws82{word-spacing:-0.143640px;}
.wse6{word-spacing:-0.138276px;}
.ws86{word-spacing:-0.134064px;}
.wsd1{word-spacing:-0.132264px;}
.wse7{word-spacing:-0.126252px;}
.wsd8{word-spacing:-0.124200px;}
.ws96{word-spacing:-0.120240px;}
.ws25{word-spacing:-0.119551px;}
.wsc2{word-spacing:-0.114228px;}
.wsa6{word-spacing:-0.113400px;}
.wsb3{word-spacing:-0.108216px;}
.ws12c{word-spacing:-0.107597px;}
.ws90{word-spacing:-0.102600px;}
.wsc1{word-spacing:-0.102204px;}
.ws92{word-spacing:-0.097200px;}
.wsb4{word-spacing:-0.096192px;}
.wsd5{word-spacing:-0.090180px;}
.ws8a{word-spacing:-0.086400px;}
.wsb8{word-spacing:-0.084168px;}
.wsa5{word-spacing:-0.081000px;}
.wsbe{word-spacing:-0.078156px;}
.wsa9{word-spacing:-0.072144px;}
.ws83{word-spacing:-0.071820px;}
.ws8f{word-spacing:-0.070200px;}
.wsae{word-spacing:-0.066132px;}
.wsa4{word-spacing:-0.064800px;}
.ws95{word-spacing:-0.060120px;}
.ws43{word-spacing:-0.059776px;}
.wsd9{word-spacing:-0.059400px;}
.ws150{word-spacing:-0.057626px;}
.ws94{word-spacing:-0.054108px;}
.ws8b{word-spacing:-0.054000px;}
.ws125{word-spacing:-0.053798px;}
.wsc6{word-spacing:-0.048096px;}
.ws81{word-spacing:-0.047880px;}
.wscf{word-spacing:-0.042084px;}
.wsb1{word-spacing:-0.036072px;}
.wse1{word-spacing:-0.032400px;}
.ws93{word-spacing:-0.030060px;}
.ws98{word-spacing:-0.024048px;}
.ws8c{word-spacing:-0.021600px;}
.wsce{word-spacing:-0.018036px;}
.ws91{word-spacing:-0.016200px;}
.wsc9{word-spacing:-0.012024px;}
.wse2{word-spacing:-0.010800px;}
.ws15e{word-spacing:-0.008237px;}
.ws13e{word-spacing:-0.007306px;}
.ws180{word-spacing:-0.007229px;}
.ws16d{word-spacing:-0.006499px;}
.wsca{word-spacing:-0.006012px;}
.ws10{word-spacing:-0.005058px;}
.ws6e{word-spacing:-0.005014px;}
.ws15b{word-spacing:-0.004819px;}
.ws152{word-spacing:-0.003926px;}
.ws168{word-spacing:-0.003466px;}
.ws17c{word-spacing:-0.003053px;}
.ws7c{word-spacing:-0.002333px;}
.ws154{word-spacing:-0.001306px;}
.ws6d{word-spacing:-0.000188px;}
.ws1{word-spacing:0.000000px;}
.ws16e{word-spacing:0.000710px;}
.wsaf{word-spacing:0.006012px;}
.wsa3{word-spacing:0.010800px;}
.wsb6{word-spacing:0.012024px;}
.wsd7{word-spacing:0.016200px;}
.wsab{word-spacing:0.018036px;}
.wsb5{word-spacing:0.024048px;}
.ws7e{word-spacing:0.028728px;}
.wsa1{word-spacing:0.030060px;}
.wsac{word-spacing:0.036072px;}
.ws87{word-spacing:0.038304px;}
.wsb7{word-spacing:0.042084px;}
.ws84{word-spacing:0.043092px;}
.wsee{word-spacing:0.048096px;}
.wsdd{word-spacing:0.048600px;}
.ws143{word-spacing:0.053798px;}
.wsfb{word-spacing:0.054108px;}
.ws80{word-spacing:0.057456px;}
.ws1e{word-spacing:0.059776px;}
.wsba{word-spacing:0.060120px;}
.wsdc{word-spacing:0.064800px;}
.ws9e{word-spacing:0.066132px;}
.wscb{word-spacing:0.072144px;}
.wsbf{word-spacing:0.078156px;}
.wsc8{word-spacing:0.084168px;}
.wsd6{word-spacing:0.091800px;}
.wsf6{word-spacing:0.102204px;}
.ws1b{word-spacing:0.107597px;}
.ws6c{word-spacing:0.112727px;}
.wsb0{word-spacing:0.114228px;}
.ws26{word-spacing:0.119551px;}
.wse5{word-spacing:0.120240px;}
.wse0{word-spacing:0.126252px;}
.ws68{word-spacing:0.127652px;}
.wsdf{word-spacing:0.132264px;}
.ws69{word-spacing:0.132549px;}
.ws13c{word-spacing:0.142970px;}
.wsb2{word-spacing:0.144288px;}
.wsf0{word-spacing:0.150300px;}
.wsbd{word-spacing:0.156312px;}
.ws137{word-spacing:0.161395px;}
.wsd3{word-spacing:0.162324px;}
.ws14b{word-spacing:0.165309px;}
.wsf3{word-spacing:0.168336px;}
.ws9a{word-spacing:0.174348px;}
.ws23{word-spacing:0.179327px;}
.wsf5{word-spacing:0.186372px;}
.ws12{word-spacing:0.191282px;}
.wsfa{word-spacing:0.192384px;}
.ws9f{word-spacing:0.210420px;}
.ws16{word-spacing:0.215194px;}
.wsaa{word-spacing:0.216432px;}
.wsf4{word-spacing:0.222444px;}
.wsf1{word-spacing:0.234468px;}
.ws1d{word-spacing:0.239102px;}
.wsbb{word-spacing:0.240480px;}
.ws17{word-spacing:0.268992px;}
.wsfd{word-spacing:0.276552px;}
.ws5b{word-spacing:0.280375px;}
.ws99{word-spacing:0.282564px;}
.wsf7{word-spacing:0.294588px;}
.ws22{word-spacing:0.298878px;}
.ws97{word-spacing:0.300600px;}
.wsf9{word-spacing:0.306612px;}
.wse3{word-spacing:0.307800px;}
.wsde{word-spacing:0.318636px;}
.ws1a{word-spacing:0.322790px;}
.ws2e{word-spacing:0.358654px;}
.wsa7{word-spacing:0.360720px;}
.wsd2{word-spacing:0.372744px;}
.wsfc{word-spacing:0.390780px;}
.wsc5{word-spacing:0.396792px;}
.ws10a{word-spacing:0.418429px;}
.wsed{word-spacing:0.420840px;}
.ws157{word-spacing:0.430387px;}
.wsec{word-spacing:0.438876px;}
.wscd{word-spacing:0.456912px;}
.ws103{word-spacing:0.478205px;}
.ws12e{word-spacing:0.484186px;}
.ws117{word-spacing:0.537980px;}
.ws31{word-spacing:0.597756px;}
.ws14a{word-spacing:0.645581px;}
.ws59{word-spacing:0.657532px;}
.ws77{word-spacing:0.777083px;}
.ws134{word-spacing:0.860774px;}
.ws27{word-spacing:0.896634px;}
.ws17a{word-spacing:0.914573px;}
.ws14d{word-spacing:0.968371px;}
.ws7{word-spacing:1.004227px;}
.ws28{word-spacing:1.016185px;}
.ws45{word-spacing:1.075961px;}
.ws133{word-spacing:1.129766px;}
.ws32{word-spacing:1.135736px;}
.ws5f{word-spacing:1.195512px;}
.ws41{word-spacing:1.255288px;}
.ws20{word-spacing:1.315063px;}
.ws135{word-spacing:1.452557px;}
.ws79{word-spacing:1.554166px;}
.ws112{word-spacing:1.613941px;}
.ws4c{word-spacing:1.733492px;}
.ws4e{word-spacing:1.793268px;}
.ws167{word-spacing:1.829146px;}
.ws4b{word-spacing:1.912819px;}
.ws174{word-spacing:1.936742px;}
.ws61{word-spacing:1.972595px;}
.ws14f{word-spacing:1.990541px;}
.ws161{word-spacing:2.044339px;}
.ws38{word-spacing:2.151922px;}
.ws75{word-spacing:2.211697px;}
.ws11f{word-spacing:2.331248px;}
.ws116{word-spacing:2.391024px;}
.ws3f{word-spacing:2.450800px;}
.ws158{word-spacing:2.474726px;}
.ws3{word-spacing:2.510568px;}
.ws11e{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws104{word-spacing:2.570351px;}
.ws57{word-spacing:2.630126px;}
.ws163{word-spacing:2.636122px;}
.ws138{word-spacing:2.689920px;}
.ws11c{word-spacing:2.809453px;}
.ws3c{word-spacing:2.869229px;}
.ws13{word-spacing:2.869236px;}
.ws164{word-spacing:2.905114px;}
.ws101{word-spacing:2.929004px;}
.ws146{word-spacing:2.958912px;}
.ws10f{word-spacing:2.988780px;}
.ws67{word-spacing:3.048556px;}
.ws175{word-spacing:3.066509px;}
.ws3a{word-spacing:3.108331px;}
.ws115{word-spacing:3.168107px;}
.ws14e{word-spacing:3.174106px;}
.ws130{word-spacing:3.217498px;}
.ws15c{word-spacing:3.218342px;}
.ws149{word-spacing:3.219398px;}
.ws141{word-spacing:3.219600px;}
.ws16c{word-spacing:3.220051px;}
.ws159{word-spacing:3.220118px;}
.ws17b{word-spacing:3.220378px;}
.ws12d{word-spacing:3.220454px;}
.ws172{word-spacing:3.220502px;}
.ws178{word-spacing:3.220934px;}
.ws16b{word-spacing:3.221088px;}
.ws13a{word-spacing:3.221280px;}
.ws14c{word-spacing:3.221606px;}
.ws140{word-spacing:3.221798px;}
.ws17e{word-spacing:3.222758px;}
.ws16a{word-spacing:3.222768px;}
.ws160{word-spacing:3.223651px;}
.ws169{word-spacing:3.223910px;}
.ws15d{word-spacing:3.224035px;}
.ws145{word-spacing:3.224093px;}
.ws139{word-spacing:3.224275px;}
.ws126{word-spacing:3.224822px;}
.ws17d{word-spacing:3.224861px;}
.ws181{word-spacing:3.225859px;}
.ws147{word-spacing:3.226118px;}
.ws12b{word-spacing:3.227904px;}
.ws156{word-spacing:3.281702px;}
.ws2a{word-spacing:3.287658px;}
.ws144{word-spacing:3.335501px;}
.ws19{word-spacing:3.389299px;}
.ws21{word-spacing:3.407209px;}
.ws170{word-spacing:3.443098px;}
.ws24{word-spacing:3.466985px;}
.ws166{word-spacing:3.496896px;}
.ws120{word-spacing:3.526760px;}
.ws1c{word-spacing:3.586536px;}
.ws173{word-spacing:3.604493px;}
.ws131{word-spacing:3.658291px;}
.ws52{word-spacing:3.765863px;}
.ws13d{word-spacing:3.819686px;}
.ws2c{word-spacing:3.885414px;}
.ws2d{word-spacing:3.945190px;}
.ws5a{word-spacing:3.975453px;}
.ws184{word-spacing:4.034880px;}
.ws183{word-spacing:4.041861px;}
.ws109{word-spacing:4.064741px;}
.ws5c{word-spacing:4.124516px;}
.ws58{word-spacing:4.244068px;}
.ws124{word-spacing:4.303843px;}
.ws11d{word-spacing:4.363619px;}
.ws30{word-spacing:4.423394px;}
.ws12a{word-spacing:4.465267px;}
.ws15f{word-spacing:4.519066px;}
.ws4f{word-spacing:4.602721px;}
.ws11b{word-spacing:4.662497px;}
.ws12f{word-spacing:4.734259px;}
.wse{word-spacing:4.770079px;}
.ws129{word-spacing:4.841856px;}
.wsf{word-spacing:4.853765px;}
.ws5d{word-spacing:4.961375px;}
.ws5e{word-spacing:5.021150px;}
.ws148{word-spacing:5.110848px;}
.ws33{word-spacing:5.140702px;}
.ws3b{word-spacing:5.200477px;}
.ws3d{word-spacing:5.320028px;}
.ws13b{word-spacing:5.433638px;}
.ws10e{word-spacing:5.439580px;}
.ws123{word-spacing:5.678682px;}
.ws155{word-spacing:5.702630px;}
.ws6f{word-spacing:5.858009px;}
.ws56{word-spacing:6.037336px;}
.wsea{word-spacing:6.156887px;}
.ws185{word-spacing:6.186816px;}
.ws37{word-spacing:6.216662px;}
.ws151{word-spacing:6.294413px;}
.ws114{word-spacing:6.336214px;}
.ws47{word-spacing:6.395989px;}
.ws182{word-spacing:6.402010px;}
.ws105{word-spacing:6.635092px;}
.ws136{word-spacing:6.671002px;}
.ws106{word-spacing:6.694867px;}
.ws46{word-spacing:6.754643px;}
.ws119{word-spacing:6.874194px;}
.ws142{word-spacing:7.101389px;}
.ws16f{word-spacing:7.155187px;}
.ws39{word-spacing:7.232848px;}
.ws51{word-spacing:7.292623px;}
.ws49{word-spacing:7.412174px;}
.ws179{word-spacing:7.477978px;}
.ws107{word-spacing:7.651277px;}
.ws53{word-spacing:7.711052px;}
.wsc{word-spacing:7.782761px;}
.ws11a{word-spacing:7.950155px;}
.ws100{word-spacing:8.069706px;}
.ws2b{word-spacing:8.129482px;}
.ws4d{word-spacing:8.249033px;}
.ws113{word-spacing:8.308808px;}
.ws118{word-spacing:8.488135px;}
.ws4a{word-spacing:9.324994px;}
.ws162{word-spacing:9.791309px;}
.ws40{word-spacing:11.476915px;}
.ws186{word-spacing:11.512858px;}
.wsa{word-spacing:12.176255px;}
.ws5{word-spacing:15.481836px;}
.wsb{word-spacing:16.109478px;}
.wsd{word-spacing:26.109907px;}
.ws9{word-spacing:26.840252px;}
.wseb{word-spacing:114.267802px;}
.ws72{word-spacing:147.185645px;}
.ws7b{word-spacing:156.391949px;}
.ws7d{word-spacing:156.445747px;}
.ws73{word-spacing:160.157837px;}
.wsfe{word-spacing:188.055000px;}
.ws74{word-spacing:193.781837px;}
.ws70{word-spacing:204.702912px;}
.ws63{word-spacing:258.155184px;}
.ws71{word-spacing:307.888243px;}
.ws65{word-spacing:314.993203px;}
.ws62{word-spacing:471.650573px;}
.ws7a{word-spacing:696.097498px;}
._4b{margin-left:-146.806812px;}
._7{margin-left:-11.943245px;}
._19{margin-left:-8.069719px;}
._9{margin-left:-6.168857px;}
._f{margin-left:-4.949453px;}
._0{margin-left:-3.849538px;}
._4{margin-left:-2.301354px;}
._a{margin-left:-1.046124px;}
._26{width:1.046372px;}
._3{width:2.301354px;}
._8{width:3.681504px;}
._2{width:9.707530px;}
._1{width:12.217513px;}
._1e{width:13.808156px;}
._e{width:14.812441px;}
._b{width:15.919050px;}
._c{width:17.054093px;}
._d{width:18.141953px;}
._17{width:19.181972px;}
._15{width:20.503031px;}
._10{width:22.027462px;}
._4c{width:23.097325px;}
._13{width:24.239057px;}
._1d{width:26.361040px;}
._1b{width:27.556654px;}
._54{width:28.967561px;}
._5{width:30.587087px;}
._16{width:32.219048px;}
._6{width:33.355008px;}
._18{width:34.669848px;}
._1c{width:37.640558px;}
._51{width:38.973691px;}
._1a{width:40.761022px;}
._52{width:42.082124px;}
._14{width:43.636188px;}
._55{width:61.868160px;}
._28{width:87.667445px;}
._41{width:128.524378px;}
._32{width:135.033984px;}
._3e{width:136.713853px;}
._4f{width:142.780954px;}
._4d{width:146.851751px;}
._2f{width:148.483584px;}
._42{width:159.135667px;}
._2d{width:162.793958px;}
._50{width:166.990234px;}
._39{width:171.360023px;}
._2c{width:172.405913px;}
._31{width:173.661235px;}
._3f{width:178.461412px;}
._3d{width:184.575677px;}
._30{width:185.658278px;}
._35{width:188.509594px;}
._36{width:191.468506px;}
._3a{width:192.921062px;}
._25{width:194.212224px;}
._2e{width:195.234394px;}
._45{width:199.592064px;}
._3b{width:206.370662px;}
._48{width:212.342285px;}
._43{width:214.279027px;}
._40{width:216.161971px;}
._3c{width:219.820262px;}
._27{width:221.882483px;}
._29{width:223.747546px;}
._4e{width:226.406765px;}
._2a{width:228.912192px;}
._4a{width:230.956531px;}
._49{width:235.852186px;}
._37{width:239.187686px;}
._46{width:248.817600px;}
._47{width:258.339917px;}
._2b{width:262.452912px;}
._24{width:267.808435px;}
._44{width:276.592800px;}
._22{width:281.078851px;}
._38{width:284.057645px;}
._23{width:289.435392px;}
._34{width:296.536781px;}
._1f{width:357.544166px;}
._11{width:433.290071px;}
._21{width:463.527014px;}
._20{width:506.727130px;}
._33{width:716.947330px;}
._53{width:2007.888357px;}
._12{width:2031.798357px;}
.fc6{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(40,82,46);}
.fc1{color:rgb(14,15,14);}
.fc5{color:rgb(89,89,89);}
.fc4{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs5{font-size:45.429600px;}
.fs7{font-size:47.820600px;}
.fsb{font-size:47.880000px;}
.fs8{font-size:53.798400px;}
.fsd{font-size:54.000000px;}
.fsa{font-size:56.058000px;}
.fs1{font-size:56.694600px;}
.fs3{font-size:59.775600px;}
.fsc{font-size:60.120000px;}
.fs2{font-size:60.474240px;}
.fs9{font-size:62.286600px;}
.fs4{font-size:107.596800px;}
.y165{bottom:-500.491050px;}
.y186{bottom:-411.839934px;}
.y185{bottom:-392.580492px;}
.y184{bottom:-373.318308px;}
.y183{bottom:-354.149046px;}
.y182{bottom:-334.889604px;}
.y181{bottom:-315.720342px;}
.y180{bottom:-296.458458px;}
.y17f{bottom:-277.199016px;}
.y17e{bottom:-258.029754px;}
.y17d{bottom:-238.770312px;}
.y17c{bottom:-219.598488px;}
.y17b{bottom:-200.339046px;}
.y17a{bottom:-181.079604px;}
.y122{bottom:-177.559050px;}
.y179{bottom:-161.910342px;}
.y178{bottom:-142.649943px;}
.y177{bottom:-123.480681px;}
.y176{bottom:-104.221239px;}
.y142{bottom:-100.697754px;}
.y175{bottom:-84.961797px;}
.y141{bottom:-81.528492px;}
.y140{bottom:-62.269050px;}
.y174{bottom:-61.291050px;}
.y13f{bottom:-25.459050px;}
.y173{bottom:-24.480900px;}
.y13e{bottom:-2.958942px;}
.y172{bottom:-1.981548px;}
.y0{bottom:0.000000px;}
.y154{bottom:2.440950px;}
.y194{bottom:3.508950px;}
.y1d{bottom:6.350457px;}
.y1c{bottom:20.308195px;}
.y152{bottom:22.148250px;}
.y192{bottom:23.217150px;}
.y4b{bottom:31.890000px;}
.y1b{bottom:37.114269px;}
.y148{bottom:37.990500px;}
.y18b{bottom:39.148500px;}
.y149{bottom:62.470050px;}
.y18c{bottom:75.958950px;}
.y14a{bottom:86.949600px;}
.yeb{bottom:91.729500px;}
.y1b8{bottom:97.188000px;}
.y1ea{bottom:98.406000px;}
.y161{bottom:100.365000px;}
.y220{bottom:100.917000px;}
.y257{bottom:104.503500px;}
.y19{bottom:104.646000px;}
.y91{bottom:105.847500px;}
.y1cb{bottom:107.193000px;}
.y82{bottom:107.641500px;}
.yea{bottom:110.559000px;}
.y14b{bottom:111.519600px;}
.y143{bottom:111.790950px;}
.y18d{bottom:112.858500px;}
.y1e9{bottom:115.980000px;}
.y1b7{bottom:116.017500px;}
.y160{bottom:116.803500px;}
.y21f{bottom:118.176000px;}
.y153{bottom:119.710950px;}
.y193{bottom:121.138950px;}
.y256{bottom:121.762500px;}
.y10c{bottom:122.028000px;}
.y18{bottom:122.535000px;}
.y4a{bottom:124.129500px;}
.y90{bottom:124.677000px;}
.y1ca{bottom:126.022500px;}
.y81{bottom:126.471000px;}
.ye9{bottom:129.388500px;}
.y15f{bottom:133.242000px;}
.y1b6{bottom:134.847000px;}
.y21e{bottom:135.436500px;}
.y14c{bottom:135.999150px;}
.y255{bottom:139.023000px;}
.y17{bottom:140.422500px;}
.y10b{bottom:140.856000px;}
.y1e8{bottom:142.521000px;}
.y49{bottom:142.959000px;}
.y8f{bottom:143.506500px;}
.y1c9{bottom:144.852000px;}
.y80{bottom:145.300500px;}
.ye8{bottom:148.216500px;}
.y15e{bottom:149.680500px;}
.y18e{bottom:149.758050px;}
.y187{bottom:152.638950px;}
.y21d{bottom:152.697000px;}
.y1b5{bottom:153.676500px;}
.y254{bottom:156.283500px;}
.y16{bottom:158.310000px;}
.y10a{bottom:159.685500px;}
.y14d{bottom:160.478700px;}
.y48{bottom:161.788500px;}
.y8e{bottom:162.336000px;}
.y1c8{bottom:163.681500px;}
.y7f{bottom:164.130000px;}
.y15d{bottom:166.119000px;}
.ye7{bottom:167.046000px;}
.y1e7{bottom:169.062000px;}
.y21c{bottom:169.957500px;}
.y1b4{bottom:172.506000px;}
.y253{bottom:173.544000px;}
.y15{bottom:176.199000px;}
.y109{bottom:178.515000px;}
.y47{bottom:180.618000px;}
.y8d{bottom:181.165500px;}
.yb8{bottom:182.062500px;}
.y1c7{bottom:182.511000px;}
.y7e{bottom:182.959500px;}
.y14e{bottom:185.048700px;}
.ye6{bottom:185.875500px;}
.y1e6{bottom:186.636000px;}
.y18f{bottom:186.657600px;}
.y21b{bottom:187.218000px;}
.y144{bottom:188.380500px;}
.y15c{bottom:189.759000px;}
.y252{bottom:190.804500px;}
.y189{bottom:191.158500px;}
.y1b3{bottom:191.335500px;}
.y14{bottom:194.086500px;}
.y108{bottom:197.344500px;}
.y46{bottom:199.447500px;}
.y8c{bottom:199.995000px;}
.yb7{bottom:200.892000px;}
.y1c6{bottom:201.340500px;}
.y7d{bottom:201.789000px;}
.y21a{bottom:204.478500px;}
.ye5{bottom:204.705000px;}
.y251{bottom:208.065000px;}
.y14f{bottom:209.528250px;}
.y1b2{bottom:210.165000px;}
.y13{bottom:211.974000px;}
.y1e5{bottom:213.175500px;}
.y145{bottom:213.310950px;}
.y188{bottom:214.108500px;}
.y107{bottom:216.174000px;}
.y45{bottom:218.277000px;}
.y8b{bottom:218.824500px;}
.yb6{bottom:219.721500px;}
.y1c5{bottom:220.170000px;}
.y7c{bottom:220.618500px;}
.y15b{bottom:221.379000px;}
.y219{bottom:221.739000px;}
.y190{bottom:223.468050px;}
.ye4{bottom:223.534500px;}
.y250{bottom:225.325500px;}
.y1b1{bottom:228.994500px;}
.y18a{bottom:229.858950px;}
.y12{bottom:229.863000px;}
.y1e4{bottom:230.749500px;}
.y146{bottom:233.470500px;}
.y150{bottom:234.007800px;}
.y106{bottom:235.003500px;}
.y44{bottom:237.106500px;}
.y8a{bottom:237.654000px;}
.yb5{bottom:238.551000px;}
.y1c4{bottom:238.999500px;}
.y7b{bottom:239.446500px;}
.ye3{bottom:242.364000px;}
.y24f{bottom:242.586000px;}
.y1b0{bottom:247.824000px;}
.y1e3{bottom:248.323500px;}
.y147{bottom:251.830500px;}
.y105{bottom:253.833000px;}
.y43{bottom:255.936000px;}
.y218{bottom:256.260000px;}
.y89{bottom:256.483500px;}
.yb4{bottom:257.380500px;}
.y1c3{bottom:257.829000px;}
.y15a{bottom:257.862000px;}
.y7a{bottom:258.276000px;}
.y151{bottom:258.577800px;}
.y24e{bottom:259.846500px;}
.y191{bottom:260.367600px;}
.ye2{bottom:261.193500px;}
.y1af{bottom:266.653500px;}
.y104{bottom:272.662500px;}
.y217{bottom:273.519000px;}
.y42{bottom:274.765500px;}
.y1e2{bottom:274.864500px;}
.y88{bottom:275.313000px;}
.yb3{bottom:276.210000px;}
.y1c2{bottom:276.658500px;}
.y159{bottom:276.691500px;}
.y79{bottom:277.105500px;}
.ye1{bottom:280.023000px;}
.y1ae{bottom:285.483000px;}
.y216{bottom:290.779500px;}
.y103{bottom:291.492000px;}
.y41{bottom:293.595000px;}
.y87{bottom:294.142500px;}
.y24d{bottom:294.366000px;}
.yb2{bottom:295.039500px;}
.y1c1{bottom:295.488000px;}
.y158{bottom:295.521000px;}
.y78{bottom:295.935000px;}
.ye0{bottom:298.852500px;}
.y11{bottom:300.154500px;}
.y1e1{bottom:301.405500px;}
.y1ad{bottom:304.312500px;}
.y215{bottom:308.040000px;}
.y13d{bottom:309.610950px;}
.y102{bottom:310.321500px;}
.y24c{bottom:311.626500px;}
.y171{bottom:311.759181px;}
.y40{bottom:312.424500px;}
.y86{bottom:312.972000px;}
.yb1{bottom:313.869000px;}
.y1c0{bottom:314.317500px;}
.y157{bottom:314.350500px;}
.y77{bottom:314.764500px;}
.ydf{bottom:317.682000px;}
.y10{bottom:318.043500px;}
.y1e0{bottom:318.979500px;}
.y1ac{bottom:323.142000px;}
.y214{bottom:325.300500px;}
.y24b{bottom:328.887000px;}
.y101{bottom:329.151000px;}
.y3f{bottom:331.254000px;}
.y85{bottom:331.801500px;}
.y170{bottom:332.009100px;}
.yb0{bottom:332.698500px;}
.y1bf{bottom:333.145500px;}
.y156{bottom:333.180000px;}
.y76{bottom:333.594000px;}
.yf{bottom:335.931000px;}
.y1df{bottom:336.553500px;}
.yde{bottom:340.995000px;}
.y1ab{bottom:341.971500px;}
.y213{bottom:342.561000px;}
.y24a{bottom:346.147500px;}
.y100{bottom:347.980500px;}
.y13c{bottom:348.581373px;}
.y3e{bottom:350.083500px;}
.yaf{bottom:351.528000px;}
.y1be{bottom:351.975000px;}
.y75{bottom:352.423500px;}
.ye{bottom:353.818500px;}
.y1de{bottom:354.127500px;}
.y84{bottom:355.114500px;}
.y212{bottom:359.821500px;}
.y1aa{bottom:360.801000px;}
.y249{bottom:363.408000px;}
.y155{bottom:366.124500px;}
.y13b{bottom:368.831292px;}
.y3d{bottom:368.913000px;}
.yae{bottom:370.357500px;}
.y1bd{bottom:370.804500px;}
.y74{bottom:371.253000px;}
.y16f{bottom:371.699193px;}
.ydd{bottom:374.619000px;}
.y83{bottom:375.288000px;}
.y211{bottom:377.082000px;}
.y1a9{bottom:379.630500px;}
.y248{bottom:380.668500px;}
.yd{bottom:380.673000px;}
.y3c{bottom:387.742500px;}
.y11f{bottom:388.554000px;}
.y13a{bottom:389.081211px;}
.yad{bottom:389.187000px;}
.y1bc{bottom:389.634000px;}
.y73{bottom:390.082500px;}
.y16e{bottom:391.949112px;}
.yff{bottom:393.442500px;}
.ydc{bottom:393.448500px;}
.y210{bottom:394.342500px;}
.y247{bottom:397.929000px;}
.y1a8{bottom:398.460000px;}
.yc{bottom:398.562000px;}
.y3b{bottom:406.572000px;}
.yac{bottom:408.015000px;}
.y1bb{bottom:408.463500px;}
.y72{bottom:408.912000px;}
.y139{bottom:409.240950px;}
.y20f{bottom:411.601500px;}
.y16d{bottom:412.199031px;}
.ydb{bottom:412.278000px;}
.y246{bottom:415.188000px;}
.yb{bottom:416.449500px;}
.yfe{bottom:417.084000px;}
.y1a7{bottom:417.289500px;}
.y3a{bottom:425.400000px;}
.yab{bottom:426.844500px;}
.y1ba{bottom:427.293000px;}
.y71{bottom:427.741500px;}
.y20e{bottom:428.862000px;}
.y138{bottom:429.490950px;}
.yda{bottom:431.107500px;}
.y245{bottom:432.448500px;}
.y16c{bottom:432.448950px;}
.y1a6{bottom:436.119000px;}
.yfd{bottom:440.724000px;}
.y39{bottom:444.229500px;}
.ya{bottom:444.798000px;}
.yaa{bottom:445.674000px;}
.y1dd{bottom:446.122500px;}
.y70{bottom:446.571000px;}
.y244{bottom:449.709000px;}
.yd9{bottom:449.937000px;}
.y137{bottom:450.550950px;}
.y1b9{bottom:450.606000px;}
.y16b{bottom:452.698950px;}
.y1a5{bottom:454.948500px;}
.y38{bottom:463.059000px;}
.y20d{bottom:463.383000px;}
.yfc{bottom:464.365500px;}
.ya9{bottom:464.503500px;}
.y1dc{bottom:464.952000px;}
.y6f{bottom:465.400500px;}
.y243{bottom:466.969500px;}
.yd8{bottom:468.766500px;}
.y9{bottom:471.652500px;}
.y16a{bottom:473.669832px;}
.y1a4{bottom:473.778000px;}
.y136{bottom:480.520950px;}
.y20c{bottom:480.643500px;}
.y37{bottom:481.888500px;}
.ya8{bottom:483.333000px;}
.y169{bottom:483.748950px;}
.y1db{bottom:483.781500px;}
.y6e{bottom:484.230000px;}
.yd7{bottom:487.596000px;}
.yfb{bottom:488.005500px;}
.y8{bottom:489.540000px;}
.y1a3{bottom:492.607500px;}
.y20b{bottom:497.904000px;}
.y242{bottom:501.490500px;}
.ya7{bottom:502.162500px;}
.y1da{bottom:502.611000px;}
.y6d{bottom:503.059500px;}
.y36{bottom:505.201500px;}
.yd6{bottom:506.425500px;}
.y7{bottom:507.429000px;}
.y1a2{bottom:511.435500px;}
.yfa{bottom:511.645500px;}
.y20a{bottom:515.164500px;}
.y135{bottom:516.251508px;}
.y241{bottom:518.751000px;}
.ya6{bottom:520.992000px;}
.y1d9{bottom:521.440500px;}
.y6c{bottom:521.889000px;}
.y168{bottom:523.978950px;}
.y6{bottom:525.316500px;}
.yd5{bottom:529.737000px;}
.y1a1{bottom:530.265000px;}
.y209{bottom:532.425000px;}
.y134{bottom:535.512804px;}
.y240{bottom:536.011500px;}
.ya5{bottom:539.821500px;}
.y1d8{bottom:540.270000px;}
.y6b{bottom:540.718500px;}
.y5{bottom:543.204000px;}
.yf9{bottom:543.265500px;}
.y1a0{bottom:549.094500px;}
.y208{bottom:549.685500px;}
.y23f{bottom:553.272000px;}
.y133{bottom:554.772246px;}
.ya4{bottom:558.651000px;}
.y1d7{bottom:559.099500px;}
.y6a{bottom:559.548000px;}
.y167{bottom:559.708617px;}
.y4{bottom:561.093000px;}
.y207{bottom:566.944500px;}
.y19f{bottom:567.924000px;}
.y23e{bottom:570.531000px;}
.y132{bottom:573.941508px;}
.yd4{bottom:575.050500px;}
.y35{bottom:576.847500px;}
.ya3{bottom:577.480500px;}
.y1d6{bottom:577.929000px;}
.y69{bottom:578.377500px;}
.y166{bottom:578.879382px;}
.y3{bottom:578.980500px;}
.yf8{bottom:580.369500px;}
.yd3{bottom:583.269000px;}
.y206{bottom:584.205000px;}
.y19e{bottom:586.753500px;}
.y23d{bottom:587.791500px;}
.y131{bottom:593.202039px;}
.y34{bottom:596.305500px;}
.ya2{bottom:596.310000px;}
.y1d5{bottom:596.758500px;}
.y2{bottom:596.868000px;}
.y68{bottom:597.207000px;}
.yf7{bottom:599.199000px;}
.y205{bottom:601.465500px;}
.y23c{bottom:605.052000px;}
.y19d{bottom:605.583000px;}
.y130{bottom:612.372804px;}
.y1{bottom:614.757000px;}
.yd1{bottom:615.129000px;}
.ya1{bottom:615.139500px;}
.y1d4{bottom:615.588000px;}
.y67{bottom:616.036500px;}
.yf6{bottom:618.028500px;}
.y204{bottom:618.726000px;}
.y23b{bottom:622.312500px;}
.ycf{bottom:623.349000px;}
.y19c{bottom:624.412500px;}
.yce{bottom:631.567500px;}
.y12f{bottom:631.632246px;}
.y164{bottom:633.599085px;}
.y33{bottom:633.694500px;}
.ya0{bottom:633.969000px;}
.y1d3{bottom:634.417500px;}
.y66{bottom:634.866000px;}
.y203{bottom:635.986500px;}
.yf5{bottom:636.858000px;}
.y23a{bottom:639.573000px;}
.yd2{bottom:639.786000px;}
.y163{bottom:643.228950px;}
.y19b{bottom:643.242000px;}
.yd0{bottom:648.006000px;}
.y12e{bottom:650.891688px;}
.y9f{bottom:652.798500px;}
.y32{bottom:653.152500px;}
.y1d2{bottom:653.247000px;}
.y65{bottom:653.695500px;}
.yf4{bottom:655.687500px;}
.y239{bottom:656.833500px;}
.y19a{bottom:662.071500px;}
.y12d{bottom:670.060950px;}
.y202{bottom:670.507500px;}
.y9e{bottom:671.628000px;}
.ycd{bottom:671.646000px;}
.y1d1{bottom:672.076500px;}
.y64{bottom:672.525000px;}
.y31{bottom:672.609000px;}
.y238{bottom:674.094000px;}
.y199{bottom:680.901000px;}
.y11e{bottom:682.914000px;}
.y201{bottom:687.768000px;}
.y9d{bottom:690.457500px;}
.y1d0{bottom:690.906000px;}
.y63{bottom:691.354500px;}
.y30{bottom:692.067000px;}
.yf3{bottom:692.707500px;}
.y198{bottom:699.730500px;}
.y200{bottom:705.027000px;}
.ycc{bottom:706.255500px;}
.y12c{bottom:706.870950px;}
.y237{bottom:708.613500px;}
.y9c{bottom:709.287000px;}
.y1cf{bottom:709.735500px;}
.y62{bottom:710.184000px;}
.y2f{bottom:711.523500px;}
.yf2{bottom:711.550500px;}
.y197{bottom:718.560000px;}
.y1ff{bottom:722.287500px;}
.y236{bottom:725.874000px;}
.y12b{bottom:726.400950px;}
.y11d{bottom:727.755000px;}
.y1ce{bottom:728.565000px;}
.y61{bottom:729.013500px;}
.y2e{bottom:730.980000px;}
.y9b{bottom:732.600000px;}
.yf1{bottom:735.192000px;}
.y1fe{bottom:739.548000px;}
.y196{bottom:741.873000px;}
.y235{bottom:743.134500px;}
.ycb{bottom:743.359500px;}
.y11c{bottom:744.193500px;}
.y12a{bottom:747.370950px;}
.y1cd{bottom:747.394500px;}
.y60{bottom:747.843000px;}
.y2d{bottom:750.438000px;}
.y1fd{bottom:756.808500px;}
.yf0{bottom:758.832000px;}
.y234{bottom:760.395000px;}
.y11b{bottom:760.632000px;}
.yca{bottom:762.189000px;}
.y9a{bottom:766.224000px;}
.y5f{bottom:766.671000px;}
.y129{bottom:768.340950px;}
.y2c{bottom:769.894500px;}
.y195{bottom:772.300500px;}
.y1fc{bottom:774.069000px;}
.y11a{bottom:777.070500px;}
.y233{bottom:777.655500px;}
.yc9{bottom:781.018500px;}
.yef{bottom:782.472000px;}
.y99{bottom:785.053500px;}
.y5e{bottom:785.500500px;}
.y128{bottom:789.310950px;}
.y2b{bottom:789.351000px;}
.y1fb{bottom:791.329500px;}
.y119{bottom:793.507500px;}
.y162{bottom:794.730000px;}
.y232{bottom:794.916000px;}
.yc8{bottom:799.848000px;}
.y98{bottom:803.883000px;}
.y5d{bottom:804.330000px;}
.yee{bottom:806.113500px;}
.y1fa{bottom:808.590000px;}
.y2a{bottom:808.809000px;}
.y127{bottom:810.280950px;}
.y231{bottom:812.176500px;}
.y118{bottom:817.149000px;}
.yc7{bottom:818.677500px;}
.y97{bottom:822.712500px;}
.y5c{bottom:823.159500px;}
.y1f9{bottom:825.850500px;}
.y29{bottom:828.265500px;}
.y230{bottom:829.437000px;}
.yed{bottom:829.753500px;}
.y126{bottom:831.340950px;}
.yc6{bottom:837.507000px;}
.y96{bottom:841.540500px;}
.y5b{bottom:841.989000px;}
.y1f8{bottom:843.111000px;}
.y22f{bottom:846.697500px;}
.y117{bottom:848.769000px;}
.y125{bottom:852.310950px;}
.yc5{bottom:856.335000px;}
.y95{bottom:860.370000px;}
.y5a{bottom:860.818500px;}
.yec{bottom:861.373500px;}
.y22e{bottom:863.956500px;}
.y28{bottom:866.851500px;}
.y124{bottom:873.280950px;}
.yc4{bottom:875.164500px;}
.y1f7{bottom:877.630500px;}
.y94{bottom:879.199500px;}
.y59{bottom:879.648000px;}
.y22d{bottom:881.217000px;}
.y27{bottom:882.990000px;}
.y1cc{bottom:883.683000px;}
.y116{bottom:885.157500px;}
.yc3{bottom:893.994000px;}
.y1f6{bottom:894.891000px;}
.y93{bottom:898.029000px;}
.y58{bottom:898.477500px;}
.y123{bottom:903.340950px;}
.y26{bottom:903.469500px;}
.y115{bottom:906.990000px;}
.y1f5{bottom:912.151500px;}
.yc2{bottom:912.823500px;}
.y25{bottom:915.270000px;}
.y22c{bottom:915.738000px;}
.y57{bottom:917.307000px;}
.y92{bottom:921.342000px;}
.y1f4{bottom:929.412000px;}
.y114{bottom:930.630000px;}
.y24{bottom:931.410000px;}
.yc1{bottom:931.653000px;}
.y22b{bottom:932.998500px;}
.y56{bottom:936.136500px;}
.y1f3{bottom:946.672500px;}
.y23{bottom:947.548500px;}
.y22a{bottom:950.259000px;}
.yc0{bottom:950.482500px;}
.y22{bottom:951.888000px;}
.y113{bottom:954.271500px;}
.y55{bottom:954.966000px;}
.y121{bottom:956.531085px;}
.y1f2{bottom:963.933000px;}
.y120{bottom:966.160950px;}
.y229{bottom:967.519500px;}
.ybf{bottom:969.312000px;}
.y54{bottom:973.795500px;}
.y112{bottom:977.911500px;}
.y1f1{bottom:981.193500px;}
.y228{bottom:984.780000px;}
.ybe{bottom:988.141500px;}
.y53{bottom:992.625000px;}
.y21{bottom:996.565500px;}
.y1ef{bottom:998.452500px;}
.y1f0{bottom:998.454000px;}
.y111{bottom:1001.553000px;}
.y226{bottom:1002.039000px;}
.y227{bottom:1002.040500px;}
.ybd{bottom:1006.971000px;}
.y52{bottom:1011.454500px;}
.y1ee{bottom:1015.713000px;}
.y225{bottom:1019.299500px;}
.y110{bottom:1025.193000px;}
.ybc{bottom:1025.800500px;}
.y51{bottom:1030.284000px;}
.y1ed{bottom:1032.973500px;}
.y20{bottom:1036.485000px;}
.y224{bottom:1036.560000px;}
.ybb{bottom:1044.630000px;}
.y10f{bottom:1048.833000px;}
.y50{bottom:1049.113500px;}
.y1ec{bottom:1050.234000px;}
.y223{bottom:1053.820500px;}
.yba{bottom:1063.459500px;}
.y1f{bottom:1064.728500px;}
.y4f{bottom:1067.943000px;}
.y222{bottom:1071.081000px;}
.y1eb{bottom:1071.978000px;}
.y10e{bottom:1072.474500px;}
.yb9{bottom:1082.289000px;}
.y4e{bottom:1086.772500px;}
.y221{bottom:1088.341500px;}
.y1e{bottom:1092.972000px;}
.y4d{bottom:1105.602000px;}
.y10d{bottom:1107.082500px;}
.y1a{bottom:1136.460000px;}
.y4c{bottom:1168.366500px;}
.h13{height:16.817382px;}
.ha{height:26.110157px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h17{height:31.912207px;}
.hb{height:34.813397px;}
.h10{height:35.052500px;}
.h16{height:35.115117px;}
.h1e{height:37.494141px;}
.hc{height:38.734848px;}
.h14{height:39.057638px;}
.hd{height:39.165235px;}
.h5{height:39.402747px;}
.h1d{height:39.418945px;}
.h25{height:39.434227px;}
.h19{height:39.603516px;}
.h18{height:40.070215px;}
.h6{height:41.001535px;}
.h1f{height:41.743477px;}
.h24{height:41.783144px;}
.he{height:43.038432px;}
.hf{height:43.516637px;}
.h7{height:43.815515px;}
.h1c{height:43.886426px;}
.h1a{height:44.091914px;}
.h1b{height:46.645840px;}
.h4{height:50.931027px;}
.h9{height:54.405312px;}
.h23{height:54.768749px;}
.h11{height:72.039235px;}
.h12{height:72.045235px;}
.h8{height:77.469696px;}
.h22{height:79.252341px;}
.h21{height:84.775118px;}
.h15{height:271.339500px;}
.h20{height:272.295000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:215.864690px;}
.w4{width:536.467500px;}
.w3{width:538.855500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x81{left:-217.339500px;}
.x86{left:-199.609500px;}
.x87{left:-187.999500px;}
.x85{left:-185.929500px;}
.x84{left:-160.369500px;}
.x83{left:-142.909500px;}
.x82{left:-21.769500px;}
.x0{left:0.000000px;}
.x97{left:1.119000px;}
.x88{left:10.090500px;}
.x92{left:13.420500px;}
.x90{left:21.158250px;}
.x8f{left:27.908250px;}
.x96{left:35.499000px;}
.x91{left:42.758250px;}
.x89{left:45.100500px;}
.x1{left:53.574000px;}
.x2{left:59.014071px;}
.x7d{left:63.951000px;}
.x65{left:71.265000px;}
.x7e{left:74.388000px;}
.x7c{left:76.203000px;}
.x64{left:85.024500px;}
.x7b{left:99.228000px;}
.x8a{left:112.060500px;}
.x8b{left:193.240050px;}
.x6b{left:196.885500px;}
.x66{left:201.930000px;}
.xc0{left:247.348500px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x7a{left:251.859000px;}
.x79{left:259.308000px;}
.x80{left:261.432000px;}
.x78{left:265.704000px;}
.x4{left:269.761500px;}
.x99{left:272.919000px;}
.x8c{left:274.419600px;}
.x36{left:279.198000px;}
.x8{left:281.479500px;}
.x93{left:290.670000px;}
.x7f{left:292.285500px;}
.x37{left:294.141000px;}
.x38{left:297.952500px;}
.x67{left:306.132000px;}
.x6{left:307.980000px;}
.x39{left:312.897000px;}
.x7{left:319.884000px;}
.xba{left:321.313500px;}
.x9e{left:327.006000px;}
.x6e{left:328.389000px;}
.x68{left:331.921500px;}
.x6f{left:340.680000px;}
.xa2{left:346.647000px;}
.x1f{left:349.528500px;}
.x98{left:354.189900px;}
.x8d{left:355.599150px;}
.xa7{left:357.978000px;}
.xa3{left:361.591500px;}
.x20{left:364.473000px;}
.x3e{left:366.990000px;}
.x21{left:368.283000px;}
.xa8{left:372.921000px;}
.xa9{left:376.732500px;}
.x26{left:379.878000px;}
.x3f{left:381.933000px;}
.x22{left:383.227500px;}
.x40{left:385.744500px;}
.xaa{left:391.675500px;}
.x77{left:392.899500px;}
.x2b{left:394.419000px;}
.x27{left:398.509500px;}
.x41{left:400.689000px;}
.x42{left:404.499000px;}
.x2c{left:409.363500px;}
.x9f{left:416.221500px;}
.x43{left:419.443500px;}
.xb8{left:424.665000px;}
.x1d{left:426.291000px;}
.x31{left:427.987500px;}
.xa0{left:431.164500px;}
.x8e{left:436.778700px;}
.xc3{left:439.785000px;}
.x1e{left:441.234000px;}
.x32{left:442.932000px;}
.xa1{left:444.075000px;}
.x9{left:447.535500px;}
.xb9{left:450.376500px;}
.xa6{left:451.461000px;}
.xa{left:455.007000px;}
.x4b{left:456.820500px;}
.xb{left:458.796000px;}
.x33{left:461.667000px;}
.xc{left:466.267500px;}
.x2d{left:469.396500px;}
.x4c{left:471.763500px;}
.x5e{left:474.465000px;}
.xa4{left:476.419500px;}
.x5f{left:478.171500px;}
.x2e{left:484.339500px;}
.xc2{left:487.300500px;}
.x44{left:489.394500px;}
.x60{left:493.114500px;}
.x61{left:496.821000px;}
.x2f{left:500.934000px;}
.x74{left:502.185000px;}
.x45{left:504.339000px;}
.x46{left:511.960500px;}
.x75{left:514.476000px;}
.x19{left:516.628500px;}
.x30{left:519.538500px;}
.x47{left:526.903500px;}
.x1a{left:531.571500px;}
.x1b{left:535.233000px;}
.xa5{left:539.049000px;}
.x9a{left:541.626000px;}
.x94{left:543.523500px;}
.x53{left:545.641500px;}
.x1c{left:550.177500px;}
.x9d{left:554.338500px;}
.x5b{left:560.730000px;}
.x9b{left:564.192000px;}
.x9c{left:579.135000px;}
.xb1{left:586.137000px;}
.xc1{left:588.109500px;}
.x6a{left:590.427000px;}
.x62{left:593.671500px;}
.xb2{left:601.081500px;}
.x69{left:603.304500px;}
.x34{left:604.495500px;}
.x95{left:605.872500px;}
.x63{left:608.616000px;}
.x35{left:619.440000px;}
.xbe{left:622.279500px;}
.x70{left:625.275000px;}
.xbf{left:629.749500px;}
.x71{left:637.566000px;}
.x76{left:649.759500px;}
.xb5{left:672.231000px;}
.x28{left:680.998500px;}
.x3a{left:682.359000px;}
.xb6{left:687.175500px;}
.xca{left:690.868500px;}
.x4f{left:692.821500px;}
.xb7{left:694.498500px;}
.x29{left:695.941500px;}
.x3b{left:697.303500px;}
.x15{left:699.814500px;}
.x3c{left:701.113500px;}
.x2a{left:703.563000px;}
.x50{left:707.766000px;}
.xb0{left:709.246500px;}
.xbc{left:712.083000px;}
.x16{left:714.759000px;}
.x3d{left:716.058000px;}
.x11{left:717.438000px;}
.x17{left:718.473000px;}
.x23{left:721.749000px;}
.x12{left:724.909500px;}
.xbd{left:727.027500px;}
.x13{left:728.601000px;}
.x18{left:733.416000px;}
.x14{left:736.072500px;}
.xc6{left:737.584500px;}
.x24{left:740.503500px;}
.xd{left:742.161000px;}
.x72{left:746.775000px;}
.xe{left:749.632500px;}
.x51{left:754.336500px;}
.x25{left:755.446500px;}
.x73{left:759.067500px;}
.x52{left:761.809500px;}
.xc7{left:764.484000px;}
.x48{left:767.074500px;}
.xbb{left:769.794000px;}
.x5c{left:773.349000px;}
.xb3{left:774.816000px;}
.x54{left:776.955000px;}
.xf{left:777.961500px;}
.xab{left:779.442000px;}
.x55{left:780.658500px;}
.x49{left:782.017500px;}
.x10{left:785.434500px;}
.x5d{left:788.292000px;}
.xb4{left:789.759000px;}
.x6c{left:791.764500px;}
.xac{left:794.385000px;}
.x56{left:795.601500px;}
.xad{left:798.196500px;}
.x57{left:799.305000px;}
.x4a{left:800.772000px;}
.x6d{left:804.057000px;}
.xc9{left:808.923000px;}
.xc4{left:810.387000px;}
.xae{left:813.139500px;}
.x58{left:814.248000px;}
.xc8{left:816.723000px;}
.x59{left:817.950000px;}
.x4d{left:819.078000px;}
.xcb{left:823.432500px;}
.xaf{left:831.894000px;}
.x5a{left:832.894500px;}
.x4e{left:834.021000px;}
.xc5{left:837.286500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v3{vertical-align:29.221333pt;}
.v4{vertical-align:36.162848pt;}
.v5{vertical-align:37.118400pt;}
.lsaa{letter-spacing:-0.459584pt;}
.lsdf{letter-spacing:-0.443552pt;}
.lse0{letter-spacing:-0.427520pt;}
.lsa3{letter-spacing:-0.406144pt;}
.lsed{letter-spacing:-0.400800pt;}
.lsae{letter-spacing:-0.384768pt;}
.ls8f{letter-spacing:-0.374080pt;}
.lsb6{letter-spacing:-0.336672pt;}
.lsea{letter-spacing:-0.325984pt;}
.lsbb{letter-spacing:-0.321600pt;}
.ls84{letter-spacing:-0.320640pt;}
.lse9{letter-spacing:-0.315296pt;}
.ls86{letter-spacing:-0.304608pt;}
.lsee{letter-spacing:-0.299264pt;}
.ls9e{letter-spacing:-0.267200pt;}
.lse4{letter-spacing:-0.261856pt;}
.lse6{letter-spacing:-0.251168pt;}
.ls91{letter-spacing:-0.245824pt;}
.ls8b{letter-spacing:-0.240480pt;}
.lseb{letter-spacing:-0.224448pt;}
.lse7{letter-spacing:-0.219104pt;}
.ls87{letter-spacing:-0.208416pt;}
.lse5{letter-spacing:-0.203072pt;}
.lsaf{letter-spacing:-0.197728pt;}
.lsa0{letter-spacing:-0.192384pt;}
.lse3{letter-spacing:-0.187040pt;}
.ls98{letter-spacing:-0.181696pt;}
.lsb7{letter-spacing:-0.171008pt;}
.lsb8{letter-spacing:-0.165664pt;}
.lsbd{letter-spacing:-0.160320pt;}
.ls96{letter-spacing:-0.154976pt;}
.lse8{letter-spacing:-0.144288pt;}
.lsb0{letter-spacing:-0.129600pt;}
.lsa5{letter-spacing:-0.128256pt;}
.lsa1{letter-spacing:-0.122912pt;}
.lsa8{letter-spacing:-0.117568pt;}
.ls8a{letter-spacing:-0.112224pt;}
.ls9d{letter-spacing:-0.106880pt;}
.lsb4{letter-spacing:-0.105600pt;}
.lsec{letter-spacing:-0.101536pt;}
.lse1{letter-spacing:-0.096192pt;}
.ls75{letter-spacing:-0.093632pt;}
.lsb5{letter-spacing:-0.091200pt;}
.ls9b{letter-spacing:-0.090848pt;}
.ls93{letter-spacing:-0.085504pt;}
.ls77{letter-spacing:-0.080864pt;}
.ls8c{letter-spacing:-0.080160pt;}
.ls78{letter-spacing:-0.076608pt;}
.ls99{letter-spacing:-0.074816pt;}
.ls92{letter-spacing:-0.069472pt;}
.ls74{letter-spacing:-0.068096pt;}
.ls9a{letter-spacing:-0.064128pt;}
.lsb1{letter-spacing:-0.062400pt;}
.ls95{letter-spacing:-0.058784pt;}
.ls8e{letter-spacing:-0.057600pt;}
.ls83{letter-spacing:-0.053440pt;}
.lsa7{letter-spacing:-0.048096pt;}
.ls7c{letter-spacing:-0.048000pt;}
.lsa6{letter-spacing:-0.042752pt;}
.lsba{letter-spacing:-0.038400pt;}
.lsab{letter-spacing:-0.037408pt;}
.ls7e{letter-spacing:-0.033600pt;}
.ls85{letter-spacing:-0.032064pt;}
.ls7b{letter-spacing:-0.028800pt;}
.ls80{letter-spacing:-0.026720pt;}
.ls97{letter-spacing:-0.021376pt;}
.lsb9{letter-spacing:-0.019200pt;}
.lsac{letter-spacing:-0.016032pt;}
.lsa4{letter-spacing:-0.010688pt;}
.ls81{letter-spacing:-0.005344pt;}
.ls7{letter-spacing:0.000000pt;}
.ls106{letter-spacing:0.000711pt;}
.ls104{letter-spacing:0.000921pt;}
.ls107{letter-spacing:0.001552pt;}
.lsfa{letter-spacing:0.004267pt;}
.ls5f{letter-spacing:0.004800pt;}
.lsef{letter-spacing:0.005055pt;}
.ls50{letter-spacing:0.005344pt;}
.ls4b{letter-spacing:0.009600pt;}
.ls4f{letter-spacing:0.010688pt;}
.ls2f{letter-spacing:0.014400pt;}
.ls56{letter-spacing:0.016032pt;}
.ls27{letter-spacing:0.021280pt;}
.ls53{letter-spacing:0.021376pt;}
.ls5e{letter-spacing:0.024000pt;}
.ls6f{letter-spacing:0.026720pt;}
.ls2d{letter-spacing:0.028800pt;}
.ls52{letter-spacing:0.032064pt;}
.lsc0{letter-spacing:0.033600pt;}
.ls57{letter-spacing:0.037408pt;}
.ls7f{letter-spacing:0.038400pt;}
.ls64{letter-spacing:0.042752pt;}
.ls30{letter-spacing:0.043200pt;}
.ls3d{letter-spacing:0.048096pt;}
.ls4c{letter-spacing:0.052800pt;}
.ls36{letter-spacing:0.053440pt;}
.lsbf{letter-spacing:0.058784pt;}
.lsb2{letter-spacing:0.062400pt;}
.ls5d{letter-spacing:0.064128pt;}
.lsbe{letter-spacing:0.069472pt;}
.ls2a{letter-spacing:0.076608pt;}
.ls3f{letter-spacing:0.080160pt;}
.ls76{letter-spacing:0.085120pt;}
.ls8d{letter-spacing:0.086400pt;}
.ls58{letter-spacing:0.090848pt;}
.ls60{letter-spacing:0.100800pt;}
.ls59{letter-spacing:0.101536pt;}
.ls72{letter-spacing:0.106880pt;}
.ls7d{letter-spacing:0.110400pt;}
.lsa9{letter-spacing:0.112224pt;}
.lsbc{letter-spacing:0.115200pt;}
.ls9f{letter-spacing:0.117568pt;}
.ls29{letter-spacing:0.119168pt;}
.ls88{letter-spacing:0.122912pt;}
.ls7a{letter-spacing:0.127680pt;}
.ls94{letter-spacing:0.128256pt;}
.lscc{letter-spacing:0.129600pt;}
.lsb3{letter-spacing:0.134400pt;}
.lse2{letter-spacing:0.144288pt;}
.ls9c{letter-spacing:0.149632pt;}
.ls2e{letter-spacing:0.158400pt;}
.ls5b{letter-spacing:0.160320pt;}
.ls28{letter-spacing:0.161728pt;}
.lsad{letter-spacing:0.165664pt;}
.lsd4{letter-spacing:0.168768pt;}
.ls90{letter-spacing:0.171008pt;}
.lsd3{letter-spacing:0.213760pt;}
.ls79{letter-spacing:0.306432pt;}
.lsa2{letter-spacing:0.448896pt;}
.ls23{letter-spacing:0.570745pt;}
.ls26{letter-spacing:0.576078pt;}
.lsf5{letter-spacing:0.637762pt;}
.lsf3{letter-spacing:0.643096pt;}
.lsce{letter-spacing:0.721440pt;}
.lscd{letter-spacing:1.042080pt;}
.lscf{letter-spacing:1.357376pt;}
.lsd0{letter-spacing:1.362720pt;}
.ls5a{letter-spacing:1.678016pt;}
.ls5c{letter-spacing:1.987520pt;}
.ls51{letter-spacing:1.998656pt;}
.ls4e{letter-spacing:2.319296pt;}
.ls4d{letter-spacing:2.639936pt;}
.ls2{letter-spacing:2.651733pt;}
.ls1{letter-spacing:2.657067pt;}
.lsdb{letter-spacing:3.281216pt;}
.lsda{letter-spacing:3.601856pt;}
.lsd1{letter-spacing:3.922496pt;}
.lsd2{letter-spacing:4.237792pt;}
.lsd6{letter-spacing:4.558432pt;}
.lsd5{letter-spacing:4.879072pt;}
.ls70{letter-spacing:5.840992pt;}
.ls54{letter-spacing:6.161632pt;}
.ls55{letter-spacing:6.482272pt;}
.lsdc{letter-spacing:7.438848pt;}
.lsdd{letter-spacing:7.759488pt;}
.ls0{letter-spacing:9.298933pt;}
.lsd9{letter-spacing:10.319264pt;}
.ls2c{letter-spacing:10.478272pt;}
.ls6{letter-spacing:10.626533pt;}
.lsd7{letter-spacing:10.639904pt;}
.lsd8{letter-spacing:10.960544pt;}
.lsf1{letter-spacing:11.354155pt;}
.lsfc{letter-spacing:11.727527pt;}
.lsf9{letter-spacing:11.772905pt;}
.ls103{letter-spacing:11.836425pt;}
.lsfe{letter-spacing:11.927934pt;}
.lsf6{letter-spacing:11.954133pt;}
.lsf8{letter-spacing:11.959467pt;}
.lsfd{letter-spacing:11.972872pt;}
.ls101{letter-spacing:11.984936pt;}
.ls105{letter-spacing:12.002970pt;}
.lsfb{letter-spacing:12.026077pt;}
.lsf7{letter-spacing:12.071682pt;}
.ls15{letter-spacing:13.028372pt;}
.ls13{letter-spacing:13.029388pt;}
.ls12{letter-spacing:13.029580pt;}
.ls14{letter-spacing:13.029661pt;}
.ls19{letter-spacing:13.145741pt;}
.ls16{letter-spacing:13.148508pt;}
.ls17{letter-spacing:13.149304pt;}
.ls18{letter-spacing:13.152643pt;}
.ls11{letter-spacing:13.167120pt;}
.ls1f{letter-spacing:13.281630pt;}
.ls22{letter-spacing:13.282926pt;}
.ls24{letter-spacing:13.283467pt;}
.ls21{letter-spacing:13.283733pt;}
.ls1e{letter-spacing:13.286963pt;}
.ls20{letter-spacing:13.288563pt;}
.ls1a{letter-spacing:13.385560pt;}
.ls1d{letter-spacing:13.385923pt;}
.ls1b{letter-spacing:13.387772pt;}
.ls1c{letter-spacing:13.390142pt;}
.lsf{letter-spacing:13.392703pt;}
.lse{letter-spacing:13.397463pt;}
.ls10{letter-spacing:13.397525pt;}
.lsd{letter-spacing:13.400325pt;}
.lsb{letter-spacing:13.454835pt;}
.lsc{letter-spacing:13.458817pt;}
.ls8{letter-spacing:13.461840pt;}
.lsa{letter-spacing:13.465193pt;}
.ls9{letter-spacing:13.467266pt;}
.lsf2{letter-spacing:13.944877pt;}
.lsf4{letter-spacing:13.950210pt;}
.ls102{letter-spacing:14.151990pt;}
.ls100{letter-spacing:14.282708pt;}
.lsff{letter-spacing:14.758525pt;}
.lsf0{letter-spacing:15.937067pt;}
.ls3{letter-spacing:15.942400pt;}
.ls63{letter-spacing:54.482080pt;}
.lscb{letter-spacing:55.438656pt;}
.lsc9{letter-spacing:55.759296pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.lsca{letter-spacing:61.520128pt;}
.ls68{letter-spacing:67.922240pt;}
.lsc2{letter-spacing:68.878816pt;}
.ls6d{letter-spacing:70.802656pt;}
.lsc8{letter-spacing:74.639648pt;}
.ls62{letter-spacing:90.639584pt;}
.lsc7{letter-spacing:94.161280pt;}
.ls48{letter-spacing:96.079776pt;}
.ls6a{letter-spacing:97.356992pt;}
.ls66{letter-spacing:102.161248pt;}
.ls41{letter-spacing:104.400384pt;}
.ls3e{letter-spacing:113.362272pt;}
.lsc5{letter-spacing:117.519904pt;}
.ls35{letter-spacing:119.759040pt;}
.ls45{letter-spacing:126.161152pt;}
.ls39{letter-spacing:126.802432pt;}
.ls43{letter-spacing:128.079648pt;}
.ls89{letter-spacing:130.639424pt;}
.ls3a{letter-spacing:133.840480pt;}
.ls44{letter-spacing:135.117696pt;}
.ls42{letter-spacing:137.677472pt;}
.lsc6{letter-spacing:138.639392pt;}
.ls49{letter-spacing:141.519808pt;}
.ls47{letter-spacing:143.758944pt;}
.ls40{letter-spacing:144.720864pt;}
.ls4a{letter-spacing:148.242560pt;}
.lsc4{letter-spacing:151.758912pt;}
.lsc3{letter-spacing:154.959968pt;}
.ls38{letter-spacing:156.242528pt;}
.ls73{letter-spacing:156.430302pt;}
.ls46{letter-spacing:157.840384pt;}
.ls25{letter-spacing:158.835635pt;}
.ls3b{letter-spacing:159.117600pt;}
.ls65{letter-spacing:161.041440pt;}
.ls37{letter-spacing:174.802240pt;}
.lsc1{letter-spacing:189.519616pt;}
.ls6c{letter-spacing:199.122784pt;}
.ls3c{letter-spacing:221.519488pt;}
.ls61{letter-spacing:224.720544pt;}
.ls69{letter-spacing:239.117280pt;}
.ls34{letter-spacing:253.840000pt;}
.ls6e{letter-spacing:262.481248pt;}
.lsde{letter-spacing:263.361600pt;}
.ls71{letter-spacing:264.638400pt;}
.ls6b{letter-spacing:289.040928pt;}
.ls67{letter-spacing:315.600608pt;}
.ls82{letter-spacing:365.518912pt;}
.ls31{letter-spacing:509.838976pt;}
.ls33{letter-spacing:575.757216pt;}
.ls32{letter-spacing:584.398464pt;}
.ls2b{letter-spacing:1446.959136pt;}
.wse8{word-spacing:-276.638400pt;}
.wsff{word-spacing:-275.361600pt;}
.ws9d{word-spacing:-184.079424pt;}
.wsa0{word-spacing:-53.440000pt;}
.ws8e{word-spacing:-48.000000pt;}
.ws7f{word-spacing:-42.560000pt;}
.wse9{word-spacing:-13.290528pt;}
.ws66{word-spacing:-13.283467pt;}
.ws64{word-spacing:-11.955200pt;}
.ws29{word-spacing:-10.626800pt;}
.ws11{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws108{word-spacing:-4.091308pt;}
.ws111{word-spacing:-2.762961pt;}
.ws50{word-spacing:-2.444158pt;}
.ws121{word-spacing:-2.231622pt;}
.ws176{word-spacing:-2.008474pt;}
.ws17f{word-spacing:-1.960653pt;}
.ws110{word-spacing:-1.912819pt;}
.ws127{word-spacing:-1.817190pt;}
.ws60{word-spacing:-1.753418pt;}
.ws122{word-spacing:-1.647150pt;}
.ws128{word-spacing:-1.625907pt;}
.ws177{word-spacing:-1.578086pt;}
.ws10d{word-spacing:-1.540882pt;}
.ws3e{word-spacing:-1.487748pt;}
.ws132{word-spacing:-1.434624pt;}
.ws10b{word-spacing:-1.434614pt;}
.ws54{word-spacing:-1.381481pt;}
.ws55{word-spacing:-1.328347pt;}
.ws102{word-spacing:-1.222079pt;}
.ws10c{word-spacing:-1.168945pt;}
.ws48{word-spacing:-1.062677pt;}
.ws6{word-spacing:-1.041421pt;}
.ws171{word-spacing:-1.004237pt;}
.ws8{word-spacing:-0.929840pt;}
.ws14{word-spacing:-0.908595pt;}
.ws153{word-spacing:-0.860774pt;}
.ws34{word-spacing:-0.850142pt;}
.ws76{word-spacing:-0.797008pt;}
.ws35{word-spacing:-0.637606pt;}
.wsc0{word-spacing:-0.502336pt;}
.ws78{word-spacing:-0.478205pt;}
.ws44{word-spacing:-0.425071pt;}
.ws165{word-spacing:-0.382566pt;}
.ws88{word-spacing:-0.348992pt;}
.ws36{word-spacing:-0.318803pt;}
.ws2{word-spacing:-0.297549pt;}
.ws13f{word-spacing:-0.286925pt;}
.wsf8{word-spacing:-0.267200pt;}
.ws42{word-spacing:-0.265669pt;}
.ws6a{word-spacing:-0.247799pt;}
.ws18{word-spacing:-0.239104pt;}
.wsa8{word-spacing:-0.224448pt;}
.wsd0{word-spacing:-0.219104pt;}
.ws9b{word-spacing:-0.213760pt;}
.ws2f{word-spacing:-0.212535pt;}
.ws85{word-spacing:-0.204288pt;}
.wsb9{word-spacing:-0.203072pt;}
.wsef{word-spacing:-0.197728pt;}
.ws15{word-spacing:-0.191283pt;}
.wsdb{word-spacing:-0.182400pt;}
.wsad{word-spacing:-0.181696pt;}
.wsf2{word-spacing:-0.177600pt;}
.ws9c{word-spacing:-0.176352pt;}
.wsbc{word-spacing:-0.171008pt;}
.ws89{word-spacing:-0.170240pt;}
.wscc{word-spacing:-0.165664pt;}
.wse4{word-spacing:-0.163200pt;}
.wsd4{word-spacing:-0.160320pt;}
.ws1f{word-spacing:-0.159402pt;}
.ws8d{word-spacing:-0.158400pt;}
.ws6b{word-spacing:-0.155035pt;}
.wsc4{word-spacing:-0.154976pt;}
.wsda{word-spacing:-0.148800pt;}
.wsc3{word-spacing:-0.144288pt;}
.ws15a{word-spacing:-0.143462pt;}
.wsa2{word-spacing:-0.134400pt;}
.wsc7{word-spacing:-0.133600pt;}
.ws82{word-spacing:-0.127680pt;}
.wse6{word-spacing:-0.122912pt;}
.ws86{word-spacing:-0.119168pt;}
.wsd1{word-spacing:-0.117568pt;}
.wse7{word-spacing:-0.112224pt;}
.wsd8{word-spacing:-0.110400pt;}
.ws96{word-spacing:-0.106880pt;}
.ws25{word-spacing:-0.106268pt;}
.wsc2{word-spacing:-0.101536pt;}
.wsa6{word-spacing:-0.100800pt;}
.wsb3{word-spacing:-0.096192pt;}
.ws12c{word-spacing:-0.095642pt;}
.ws90{word-spacing:-0.091200pt;}
.wsc1{word-spacing:-0.090848pt;}
.ws92{word-spacing:-0.086400pt;}
.wsb4{word-spacing:-0.085504pt;}
.wsd5{word-spacing:-0.080160pt;}
.ws8a{word-spacing:-0.076800pt;}
.wsb8{word-spacing:-0.074816pt;}
.wsa5{word-spacing:-0.072000pt;}
.wsbe{word-spacing:-0.069472pt;}
.wsa9{word-spacing:-0.064128pt;}
.ws83{word-spacing:-0.063840pt;}
.ws8f{word-spacing:-0.062400pt;}
.wsae{word-spacing:-0.058784pt;}
.wsa4{word-spacing:-0.057600pt;}
.ws95{word-spacing:-0.053440pt;}
.ws43{word-spacing:-0.053134pt;}
.wsd9{word-spacing:-0.052800pt;}
.ws150{word-spacing:-0.051223pt;}
.ws94{word-spacing:-0.048096pt;}
.ws8b{word-spacing:-0.048000pt;}
.ws125{word-spacing:-0.047821pt;}
.wsc6{word-spacing:-0.042752pt;}
.ws81{word-spacing:-0.042560pt;}
.wscf{word-spacing:-0.037408pt;}
.wsb1{word-spacing:-0.032064pt;}
.wse1{word-spacing:-0.028800pt;}
.ws93{word-spacing:-0.026720pt;}
.ws98{word-spacing:-0.021376pt;}
.ws8c{word-spacing:-0.019200pt;}
.wsce{word-spacing:-0.016032pt;}
.ws91{word-spacing:-0.014400pt;}
.wsc9{word-spacing:-0.010688pt;}
.wse2{word-spacing:-0.009600pt;}
.ws15e{word-spacing:-0.007322pt;}
.ws13e{word-spacing:-0.006494pt;}
.ws180{word-spacing:-0.006426pt;}
.ws16d{word-spacing:-0.005777pt;}
.wsca{word-spacing:-0.005344pt;}
.ws10{word-spacing:-0.004496pt;}
.ws6e{word-spacing:-0.004457pt;}
.ws15b{word-spacing:-0.004284pt;}
.ws152{word-spacing:-0.003490pt;}
.ws168{word-spacing:-0.003081pt;}
.ws17c{word-spacing:-0.002714pt;}
.ws7c{word-spacing:-0.002074pt;}
.ws154{word-spacing:-0.001161pt;}
.ws6d{word-spacing:-0.000167pt;}
.ws1{word-spacing:0.000000pt;}
.ws16e{word-spacing:0.000631pt;}
.wsaf{word-spacing:0.005344pt;}
.wsa3{word-spacing:0.009600pt;}
.wsb6{word-spacing:0.010688pt;}
.wsd7{word-spacing:0.014400pt;}
.wsab{word-spacing:0.016032pt;}
.wsb5{word-spacing:0.021376pt;}
.ws7e{word-spacing:0.025536pt;}
.wsa1{word-spacing:0.026720pt;}
.wsac{word-spacing:0.032064pt;}
.ws87{word-spacing:0.034048pt;}
.wsb7{word-spacing:0.037408pt;}
.ws84{word-spacing:0.038304pt;}
.wsee{word-spacing:0.042752pt;}
.wsdd{word-spacing:0.043200pt;}
.ws143{word-spacing:0.047821pt;}
.wsfb{word-spacing:0.048096pt;}
.ws80{word-spacing:0.051072pt;}
.ws1e{word-spacing:0.053134pt;}
.wsba{word-spacing:0.053440pt;}
.wsdc{word-spacing:0.057600pt;}
.ws9e{word-spacing:0.058784pt;}
.wscb{word-spacing:0.064128pt;}
.wsbf{word-spacing:0.069472pt;}
.wsc8{word-spacing:0.074816pt;}
.wsd6{word-spacing:0.081600pt;}
.wsf6{word-spacing:0.090848pt;}
.ws1b{word-spacing:0.095642pt;}
.ws6c{word-spacing:0.100202pt;}
.wsb0{word-spacing:0.101536pt;}
.ws26{word-spacing:0.106268pt;}
.wse5{word-spacing:0.106880pt;}
.wse0{word-spacing:0.112224pt;}
.ws68{word-spacing:0.113468pt;}
.wsdf{word-spacing:0.117568pt;}
.ws69{word-spacing:0.117821pt;}
.ws13c{word-spacing:0.127085pt;}
.wsb2{word-spacing:0.128256pt;}
.wsf0{word-spacing:0.133600pt;}
.wsbd{word-spacing:0.138944pt;}
.ws137{word-spacing:0.143462pt;}
.wsd3{word-spacing:0.144288pt;}
.ws14b{word-spacing:0.146941pt;}
.wsf3{word-spacing:0.149632pt;}
.ws9a{word-spacing:0.154976pt;}
.ws23{word-spacing:0.159402pt;}
.wsf5{word-spacing:0.165664pt;}
.ws12{word-spacing:0.170029pt;}
.wsfa{word-spacing:0.171008pt;}
.ws9f{word-spacing:0.187040pt;}
.ws16{word-spacing:0.191283pt;}
.wsaa{word-spacing:0.192384pt;}
.wsf4{word-spacing:0.197728pt;}
.wsf1{word-spacing:0.208416pt;}
.ws1d{word-spacing:0.212535pt;}
.wsbb{word-spacing:0.213760pt;}
.ws17{word-spacing:0.239104pt;}
.wsfd{word-spacing:0.245824pt;}
.ws5b{word-spacing:0.249222pt;}
.ws99{word-spacing:0.251168pt;}
.wsf7{word-spacing:0.261856pt;}
.ws22{word-spacing:0.265669pt;}
.ws97{word-spacing:0.267200pt;}
.wsf9{word-spacing:0.272544pt;}
.wse3{word-spacing:0.273600pt;}
.wsde{word-spacing:0.283232pt;}
.ws1a{word-spacing:0.286925pt;}
.ws2e{word-spacing:0.318803pt;}
.wsa7{word-spacing:0.320640pt;}
.wsd2{word-spacing:0.331328pt;}
.wsfc{word-spacing:0.347360pt;}
.wsc5{word-spacing:0.352704pt;}
.ws10a{word-spacing:0.371937pt;}
.wsed{word-spacing:0.374080pt;}
.ws157{word-spacing:0.382566pt;}
.wsec{word-spacing:0.390112pt;}
.wscd{word-spacing:0.406144pt;}
.ws103{word-spacing:0.425071pt;}
.ws12e{word-spacing:0.430387pt;}
.ws117{word-spacing:0.478205pt;}
.ws31{word-spacing:0.531339pt;}
.ws14a{word-spacing:0.573850pt;}
.ws59{word-spacing:0.584473pt;}
.ws77{word-spacing:0.690740pt;}
.ws134{word-spacing:0.765133pt;}
.ws27{word-spacing:0.797008pt;}
.ws17a{word-spacing:0.812954pt;}
.ws14d{word-spacing:0.860774pt;}
.ws7{word-spacing:0.892646pt;}
.ws28{word-spacing:0.903276pt;}
.ws45{word-spacing:0.956410pt;}
.ws133{word-spacing:1.004237pt;}
.ws32{word-spacing:1.009543pt;}
.ws5f{word-spacing:1.062677pt;}
.ws41{word-spacing:1.115811pt;}
.ws20{word-spacing:1.168945pt;}
.ws135{word-spacing:1.291162pt;}
.ws79{word-spacing:1.381481pt;}
.ws112{word-spacing:1.434614pt;}
.ws4c{word-spacing:1.540882pt;}
.ws4e{word-spacing:1.594016pt;}
.ws167{word-spacing:1.625907pt;}
.ws4b{word-spacing:1.700284pt;}
.ws174{word-spacing:1.721549pt;}
.ws61{word-spacing:1.753418pt;}
.ws14f{word-spacing:1.769370pt;}
.ws161{word-spacing:1.817190pt;}
.ws38{word-spacing:1.912819pt;}
.ws75{word-spacing:1.965953pt;}
.ws11f{word-spacing:2.072221pt;}
.ws116{word-spacing:2.125355pt;}
.ws3f{word-spacing:2.178489pt;}
.ws158{word-spacing:2.199757pt;}
.ws3{word-spacing:2.231616pt;}
.ws11e{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws104{word-spacing:2.284756pt;}
.ws57{word-spacing:2.337890pt;}
.ws163{word-spacing:2.343219pt;}
.ws138{word-spacing:2.391040pt;}
.ws11c{word-spacing:2.497292pt;}
.ws3c{word-spacing:2.550426pt;}
.ws13{word-spacing:2.550432pt;}
.ws164{word-spacing:2.582323pt;}
.ws101{word-spacing:2.603559pt;}
.ws146{word-spacing:2.630144pt;}
.ws10f{word-spacing:2.656693pt;}
.ws67{word-spacing:2.709827pt;}
.ws175{word-spacing:2.725786pt;}
.ws3a{word-spacing:2.762961pt;}
.ws115{word-spacing:2.816095pt;}
.ws14e{word-spacing:2.821427pt;}
.ws130{word-spacing:2.859998pt;}
.ws15c{word-spacing:2.860749pt;}
.ws149{word-spacing:2.861687pt;}
.ws141{word-spacing:2.861867pt;}
.ws16c{word-spacing:2.862268pt;}
.ws159{word-spacing:2.862327pt;}
.ws17b{word-spacing:2.862558pt;}
.ws12d{word-spacing:2.862626pt;}
.ws172{word-spacing:2.862669pt;}
.ws178{word-spacing:2.863053pt;}
.ws16b{word-spacing:2.863189pt;}
.ws13a{word-spacing:2.863360pt;}
.ws14c{word-spacing:2.863650pt;}
.ws140{word-spacing:2.863821pt;}
.ws17e{word-spacing:2.864674pt;}
.ws16a{word-spacing:2.864683pt;}
.ws160{word-spacing:2.865468pt;}
.ws169{word-spacing:2.865698pt;}
.ws15d{word-spacing:2.865809pt;}
.ws145{word-spacing:2.865860pt;}
.ws139{word-spacing:2.866022pt;}
.ws126{word-spacing:2.866509pt;}
.ws17d{word-spacing:2.866543pt;}
.ws181{word-spacing:2.867430pt;}
.ws147{word-spacing:2.867661pt;}
.ws12b{word-spacing:2.869248pt;}
.ws156{word-spacing:2.917069pt;}
.ws2a{word-spacing:2.922363pt;}
.ws144{word-spacing:2.964890pt;}
.ws19{word-spacing:3.012710pt;}
.ws21{word-spacing:3.028630pt;}
.ws170{word-spacing:3.060531pt;}
.ws24{word-spacing:3.081764pt;}
.ws166{word-spacing:3.108352pt;}
.ws120{word-spacing:3.134898pt;}
.ws1c{word-spacing:3.188032pt;}
.ws173{word-spacing:3.203994pt;}
.ws131{word-spacing:3.251814pt;}
.ws52{word-spacing:3.347434pt;}
.ws13d{word-spacing:3.395277pt;}
.ws2c{word-spacing:3.453701pt;}
.ws2d{word-spacing:3.506835pt;}
.ws5a{word-spacing:3.533736pt;}
.ws184{word-spacing:3.586560pt;}
.ws183{word-spacing:3.592765pt;}
.ws109{word-spacing:3.613103pt;}
.ws5c{word-spacing:3.666237pt;}
.ws58{word-spacing:3.772505pt;}
.ws124{word-spacing:3.825638pt;}
.ws11d{word-spacing:3.878772pt;}
.ws30{word-spacing:3.931906pt;}
.ws12a{word-spacing:3.969126pt;}
.ws15f{word-spacing:4.016947pt;}
.ws4f{word-spacing:4.091308pt;}
.ws11b{word-spacing:4.144442pt;}
.ws12f{word-spacing:4.208230pt;}
.wse{word-spacing:4.240070pt;}
.ws129{word-spacing:4.303872pt;}
.wsf{word-spacing:4.314458pt;}
.ws5d{word-spacing:4.410111pt;}
.ws5e{word-spacing:4.463245pt;}
.ws148{word-spacing:4.542976pt;}
.ws33{word-spacing:4.569513pt;}
.ws3b{word-spacing:4.622646pt;}
.ws3d{word-spacing:4.728914pt;}
.ws13b{word-spacing:4.829901pt;}
.ws10e{word-spacing:4.835182pt;}
.ws123{word-spacing:5.047717pt;}
.ws155{word-spacing:5.069005pt;}
.ws6f{word-spacing:5.207119pt;}
.ws56{word-spacing:5.366521pt;}
.wsea{word-spacing:5.472788pt;}
.ws185{word-spacing:5.499392pt;}
.ws37{word-spacing:5.525922pt;}
.ws151{word-spacing:5.595034pt;}
.ws114{word-spacing:5.632190pt;}
.ws47{word-spacing:5.685324pt;}
.ws182{word-spacing:5.690675pt;}
.ws105{word-spacing:5.897859pt;}
.ws136{word-spacing:5.929779pt;}
.ws106{word-spacing:5.950993pt;}
.ws46{word-spacing:6.004127pt;}
.ws119{word-spacing:6.110395pt;}
.ws142{word-spacing:6.312346pt;}
.ws16f{word-spacing:6.360166pt;}
.ws39{word-spacing:6.429198pt;}
.ws51{word-spacing:6.482332pt;}
.ws49{word-spacing:6.588599pt;}
.ws179{word-spacing:6.647091pt;}
.ws107{word-spacing:6.801135pt;}
.ws53{word-spacing:6.854269pt;}
.wsc{word-spacing:6.918010pt;}
.ws11a{word-spacing:7.066804pt;}
.ws100{word-spacing:7.173072pt;}
.ws2b{word-spacing:7.226206pt;}
.ws4d{word-spacing:7.332474pt;}
.ws113{word-spacing:7.385607pt;}
.ws118{word-spacing:7.545009pt;}
.ws4a{word-spacing:8.288883pt;}
.ws162{word-spacing:8.703386pt;}
.ws40{word-spacing:10.201702pt;}
.ws186{word-spacing:10.233651pt;}
.wsa{word-spacing:10.823338pt;}
.ws5{word-spacing:13.761632pt;}
.wsb{word-spacing:14.319536pt;}
.wsd{word-spacing:23.208806pt;}
.ws9{word-spacing:23.858002pt;}
.wseb{word-spacing:101.571379pt;}
.ws72{word-spacing:130.831684pt;}
.ws7b{word-spacing:139.015066pt;}
.ws7d{word-spacing:139.062886pt;}
.ws73{word-spacing:142.362522pt;}
.wsfe{word-spacing:167.160000pt;}
.ws74{word-spacing:172.250522pt;}
.ws70{word-spacing:181.958144pt;}
.ws63{word-spacing:229.471275pt;}
.ws71{word-spacing:273.678438pt;}
.ws65{word-spacing:279.993958pt;}
.ws62{word-spacing:419.244954pt;}
.ws7a{word-spacing:618.753331pt;}
._4b{margin-left:-130.494944pt;}
._7{margin-left:-10.616218pt;}
._19{margin-left:-7.173084pt;}
._9{margin-left:-5.483429pt;}
._f{margin-left:-4.399514pt;}
._0{margin-left:-3.421811pt;}
._4{margin-left:-2.045648pt;}
._a{margin-left:-0.929888pt;}
._26{width:0.930109pt;}
._3{width:2.045648pt;}
._8{width:3.272448pt;}
._2{width:8.628915pt;}
._1{width:10.860012pt;}
._1e{width:12.273916pt;}
._e{width:13.166614pt;}
._b{width:14.150267pt;}
._c{width:15.159194pt;}
._d{width:16.126181pt;}
._17{width:17.050642pt;}
._15{width:18.224916pt;}
._10{width:19.579966pt;}
._4c{width:20.530956pt;}
._13{width:21.545828pt;}
._1d{width:23.432035pt;}
._1b{width:24.494803pt;}
._54{width:25.748943pt;}
._5{width:27.188522pt;}
._16{width:28.639154pt;}
._6{width:29.648896pt;}
._18{width:30.817643pt;}
._1c{width:33.458274pt;}
._51{width:34.643281pt;}
._1a{width:36.232019pt;}
._52{width:37.406333pt;}
._14{width:38.787723pt;}
._55{width:54.993920pt;}
._28{width:77.926618pt;}
._41{width:114.243891pt;}
._32{width:120.030208pt;}
._3e{width:121.523425pt;}
._4f{width:126.916403pt;}
._4d{width:130.534890pt;}
._2f{width:131.985408pt;}
._42{width:141.453926pt;}
._2d{width:144.705741pt;}
._50{width:148.435763pt;}
._39{width:152.320020pt;}
._2c{width:153.249701pt;}
._31{width:154.365542pt;}
._3f{width:158.632366pt;}
._3d{width:164.067268pt;}
._30{width:165.029581pt;}
._35{width:167.564083pt;}
._36{width:170.194227pt;}
._3a{width:171.485389pt;}
._25{width:172.633088pt;}
._2e{width:173.541683pt;}
._45{width:177.415168pt;}
._3b{width:183.440589pt;}
._48{width:188.748698pt;}
._43{width:190.470246pt;}
._40{width:192.143974pt;}
._3c{width:195.395789pt;}
._27{width:197.228874pt;}
._29{width:198.886707pt;}
._4e{width:201.250458pt;}
._2a{width:203.477504pt;}
._4a{width:205.294694pt;}
._49{width:209.646387pt;}
._37{width:212.611277pt;}
._46{width:221.171200pt;}
._47{width:229.635482pt;}
._2b{width:233.291477pt;}
._24{width:238.051942pt;}
._44{width:245.860267pt;}
._22{width:249.847868pt;}
._38{width:252.495684pt;}
._23{width:257.275904pt;}
._34{width:263.588250pt;}
._1f{width:317.817037pt;}
._11{width:385.146730pt;}
._21{width:412.024013pt;}
._20{width:450.424115pt;}
._33{width:637.286515pt;}
._53{width:1784.789651pt;}
._12{width:1806.042984pt;}
.fs6{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs5{font-size:40.381867pt;}
.fs7{font-size:42.507200pt;}
.fsb{font-size:42.560000pt;}
.fs8{font-size:47.820800pt;}
.fsd{font-size:48.000000pt;}
.fsa{font-size:49.829333pt;}
.fs1{font-size:50.395200pt;}
.fs3{font-size:53.133867pt;}
.fsc{font-size:53.440000pt;}
.fs2{font-size:53.754880pt;}
.fs9{font-size:55.365867pt;}
.fs4{font-size:95.641600pt;}
.y165{bottom:-444.880933pt;}
.y186{bottom:-366.079941pt;}
.y185{bottom:-348.960437pt;}
.y184{bottom:-331.838496pt;}
.y183{bottom:-314.799152pt;}
.y182{bottom:-297.679648pt;}
.y181{bottom:-280.640304pt;}
.y180{bottom:-263.518629pt;}
.y17f{bottom:-246.399125pt;}
.y17e{bottom:-229.359781pt;}
.y17d{bottom:-212.240277pt;}
.y17c{bottom:-195.198656pt;}
.y17b{bottom:-178.079152pt;}
.y17a{bottom:-160.959648pt;}
.y122{bottom:-157.830267pt;}
.y179{bottom:-143.920304pt;}
.y178{bottom:-126.799949pt;}
.y177{bottom:-109.760605pt;}
.y176{bottom:-92.641101pt;}
.y142{bottom:-89.509115pt;}
.y175{bottom:-75.521597pt;}
.y141{bottom:-72.469771pt;}
.y140{bottom:-55.350267pt;}
.y174{bottom:-54.480933pt;}
.y13f{bottom:-22.630267pt;}
.y173{bottom:-21.760800pt;}
.y13e{bottom:-2.630171pt;}
.y172{bottom:-1.761376pt;}
.y0{bottom:0.000000pt;}
.y154{bottom:2.169733pt;}
.y194{bottom:3.119067pt;}
.y1d{bottom:5.644850pt;}
.y1c{bottom:18.051729pt;}
.y152{bottom:19.687333pt;}
.y192{bottom:20.637467pt;}
.y4b{bottom:28.346667pt;}
.y1b{bottom:32.990462pt;}
.y148{bottom:33.769333pt;}
.y18b{bottom:34.798667pt;}
.y149{bottom:55.528933pt;}
.y18c{bottom:67.519067pt;}
.y14a{bottom:77.288533pt;}
.yeb{bottom:81.537333pt;}
.y1b8{bottom:86.389333pt;}
.y1ea{bottom:87.472000pt;}
.y161{bottom:89.213333pt;}
.y220{bottom:89.704000pt;}
.y257{bottom:92.892000pt;}
.y19{bottom:93.018667pt;}
.y91{bottom:94.086667pt;}
.y1cb{bottom:95.282667pt;}
.y82{bottom:95.681333pt;}
.yea{bottom:98.274667pt;}
.y14b{bottom:99.128533pt;}
.y143{bottom:99.369733pt;}
.y18d{bottom:100.318667pt;}
.y1e9{bottom:103.093333pt;}
.y1b7{bottom:103.126667pt;}
.y160{bottom:103.825333pt;}
.y21f{bottom:105.045333pt;}
.y153{bottom:106.409733pt;}
.y193{bottom:107.679067pt;}
.y256{bottom:108.233333pt;}
.y10c{bottom:108.469333pt;}
.y18{bottom:108.920000pt;}
.y4a{bottom:110.337333pt;}
.y90{bottom:110.824000pt;}
.y1ca{bottom:112.020000pt;}
.y81{bottom:112.418667pt;}
.ye9{bottom:115.012000pt;}
.y15f{bottom:118.437333pt;}
.y1b6{bottom:119.864000pt;}
.y21e{bottom:120.388000pt;}
.y14c{bottom:120.888133pt;}
.y255{bottom:123.576000pt;}
.y17{bottom:124.820000pt;}
.y10b{bottom:125.205333pt;}
.y1e8{bottom:126.685333pt;}
.y49{bottom:127.074667pt;}
.y8f{bottom:127.561333pt;}
.y1c9{bottom:128.757333pt;}
.y80{bottom:129.156000pt;}
.ye8{bottom:131.748000pt;}
.y15e{bottom:133.049333pt;}
.y18e{bottom:133.118267pt;}
.y187{bottom:135.679067pt;}
.y21d{bottom:135.730667pt;}
.y1b5{bottom:136.601333pt;}
.y254{bottom:138.918667pt;}
.y16{bottom:140.720000pt;}
.y10a{bottom:141.942667pt;}
.y14d{bottom:142.647733pt;}
.y48{bottom:143.812000pt;}
.y8e{bottom:144.298667pt;}
.y1c8{bottom:145.494667pt;}
.y7f{bottom:145.893333pt;}
.y15d{bottom:147.661333pt;}
.ye7{bottom:148.485333pt;}
.y1e7{bottom:150.277333pt;}
.y21c{bottom:151.073333pt;}
.y1b4{bottom:153.338667pt;}
.y253{bottom:154.261333pt;}
.y15{bottom:156.621333pt;}
.y109{bottom:158.680000pt;}
.y47{bottom:160.549333pt;}
.y8d{bottom:161.036000pt;}
.yb8{bottom:161.833333pt;}
.y1c7{bottom:162.232000pt;}
.y7e{bottom:162.630667pt;}
.y14e{bottom:164.487733pt;}
.ye6{bottom:165.222667pt;}
.y1e6{bottom:165.898667pt;}
.y18f{bottom:165.917867pt;}
.y21b{bottom:166.416000pt;}
.y144{bottom:167.449333pt;}
.y15c{bottom:168.674667pt;}
.y252{bottom:169.604000pt;}
.y189{bottom:169.918667pt;}
.y1b3{bottom:170.076000pt;}
.y14{bottom:172.521333pt;}
.y108{bottom:175.417333pt;}
.y46{bottom:177.286667pt;}
.y8c{bottom:177.773333pt;}
.yb7{bottom:178.570667pt;}
.y1c6{bottom:178.969333pt;}
.y7d{bottom:179.368000pt;}
.y21a{bottom:181.758667pt;}
.ye5{bottom:181.960000pt;}
.y251{bottom:184.946667pt;}
.y14f{bottom:186.247333pt;}
.y1b2{bottom:186.813333pt;}
.y13{bottom:188.421333pt;}
.y1e5{bottom:189.489333pt;}
.y145{bottom:189.609733pt;}
.y188{bottom:190.318667pt;}
.y107{bottom:192.154667pt;}
.y45{bottom:194.024000pt;}
.y8b{bottom:194.510667pt;}
.yb6{bottom:195.308000pt;}
.y1c5{bottom:195.706667pt;}
.y7c{bottom:196.105333pt;}
.y15b{bottom:196.781333pt;}
.y219{bottom:197.101333pt;}
.y190{bottom:198.638267pt;}
.ye4{bottom:198.697333pt;}
.y250{bottom:200.289333pt;}
.y1b1{bottom:203.550667pt;}
.y18a{bottom:204.319067pt;}
.y12{bottom:204.322667pt;}
.y1e4{bottom:205.110667pt;}
.y146{bottom:207.529333pt;}
.y150{bottom:208.006933pt;}
.y106{bottom:208.892000pt;}
.y44{bottom:210.761333pt;}
.y8a{bottom:211.248000pt;}
.yb5{bottom:212.045333pt;}
.y1c4{bottom:212.444000pt;}
.y7b{bottom:212.841333pt;}
.ye3{bottom:215.434667pt;}
.y24f{bottom:215.632000pt;}
.y1b0{bottom:220.288000pt;}
.y1e3{bottom:220.732000pt;}
.y147{bottom:223.849333pt;}
.y105{bottom:225.629333pt;}
.y43{bottom:227.498667pt;}
.y218{bottom:227.786667pt;}
.y89{bottom:227.985333pt;}
.yb4{bottom:228.782667pt;}
.y1c3{bottom:229.181333pt;}
.y15a{bottom:229.210667pt;}
.y7a{bottom:229.578667pt;}
.y151{bottom:229.846933pt;}
.y24e{bottom:230.974667pt;}
.y191{bottom:231.437867pt;}
.ye2{bottom:232.172000pt;}
.y1af{bottom:237.025333pt;}
.y104{bottom:242.366667pt;}
.y217{bottom:243.128000pt;}
.y42{bottom:244.236000pt;}
.y1e2{bottom:244.324000pt;}
.y88{bottom:244.722667pt;}
.yb3{bottom:245.520000pt;}
.y1c2{bottom:245.918667pt;}
.y159{bottom:245.948000pt;}
.y79{bottom:246.316000pt;}
.ye1{bottom:248.909333pt;}
.y1ae{bottom:253.762667pt;}
.y216{bottom:258.470667pt;}
.y103{bottom:259.104000pt;}
.y41{bottom:260.973333pt;}
.y87{bottom:261.460000pt;}
.y24d{bottom:261.658667pt;}
.yb2{bottom:262.257333pt;}
.y1c1{bottom:262.656000pt;}
.y158{bottom:262.685333pt;}
.y78{bottom:263.053333pt;}
.ye0{bottom:265.646667pt;}
.y11{bottom:266.804000pt;}
.y1e1{bottom:267.916000pt;}
.y1ad{bottom:270.500000pt;}
.y215{bottom:273.813333pt;}
.y13d{bottom:275.209733pt;}
.y102{bottom:275.841333pt;}
.y24c{bottom:277.001333pt;}
.y171{bottom:277.119272pt;}
.y40{bottom:277.710667pt;}
.y86{bottom:278.197333pt;}
.yb1{bottom:278.994667pt;}
.y1c0{bottom:279.393333pt;}
.y157{bottom:279.422667pt;}
.y77{bottom:279.790667pt;}
.ydf{bottom:282.384000pt;}
.y10{bottom:282.705333pt;}
.y1e0{bottom:283.537333pt;}
.y1ac{bottom:287.237333pt;}
.y214{bottom:289.156000pt;}
.y24b{bottom:292.344000pt;}
.y101{bottom:292.578667pt;}
.y3f{bottom:294.448000pt;}
.y85{bottom:294.934667pt;}
.y170{bottom:295.119200pt;}
.yb0{bottom:295.732000pt;}
.y1bf{bottom:296.129333pt;}
.y156{bottom:296.160000pt;}
.y76{bottom:296.528000pt;}
.yf{bottom:298.605333pt;}
.y1df{bottom:299.158667pt;}
.yde{bottom:303.106667pt;}
.y1ab{bottom:303.974667pt;}
.y213{bottom:304.498667pt;}
.y24a{bottom:307.686667pt;}
.y100{bottom:309.316000pt;}
.y13c{bottom:309.850109pt;}
.y3e{bottom:311.185333pt;}
.yaf{bottom:312.469333pt;}
.y1be{bottom:312.866667pt;}
.y75{bottom:313.265333pt;}
.ye{bottom:314.505333pt;}
.y1de{bottom:314.780000pt;}
.y84{bottom:315.657333pt;}
.y212{bottom:319.841333pt;}
.y1aa{bottom:320.712000pt;}
.y249{bottom:323.029333pt;}
.y155{bottom:325.444000pt;}
.y13b{bottom:327.850037pt;}
.y3d{bottom:327.922667pt;}
.yae{bottom:329.206667pt;}
.y1bd{bottom:329.604000pt;}
.y74{bottom:330.002667pt;}
.y16f{bottom:330.399283pt;}
.ydd{bottom:332.994667pt;}
.y83{bottom:333.589333pt;}
.y211{bottom:335.184000pt;}
.y1a9{bottom:337.449333pt;}
.y248{bottom:338.372000pt;}
.yd{bottom:338.376000pt;}
.y3c{bottom:344.660000pt;}
.y11f{bottom:345.381333pt;}
.y13a{bottom:345.849965pt;}
.yad{bottom:345.944000pt;}
.y1bc{bottom:346.341333pt;}
.y73{bottom:346.740000pt;}
.y16e{bottom:348.399211pt;}
.yff{bottom:349.726667pt;}
.ydc{bottom:349.732000pt;}
.y210{bottom:350.526667pt;}
.y247{bottom:353.714667pt;}
.y1a8{bottom:354.186667pt;}
.yc{bottom:354.277333pt;}
.y3b{bottom:361.397333pt;}
.yac{bottom:362.680000pt;}
.y1bb{bottom:363.078667pt;}
.y72{bottom:363.477333pt;}
.y139{bottom:363.769733pt;}
.y20f{bottom:365.868000pt;}
.y16d{bottom:366.399139pt;}
.ydb{bottom:366.469333pt;}
.y246{bottom:369.056000pt;}
.yb{bottom:370.177333pt;}
.yfe{bottom:370.741333pt;}
.y1a7{bottom:370.924000pt;}
.y3a{bottom:378.133333pt;}
.yab{bottom:379.417333pt;}
.y1ba{bottom:379.816000pt;}
.y71{bottom:380.214667pt;}
.y20e{bottom:381.210667pt;}
.y138{bottom:381.769733pt;}
.yda{bottom:383.206667pt;}
.y245{bottom:384.398667pt;}
.y16c{bottom:384.399067pt;}
.y1a6{bottom:387.661333pt;}
.yfd{bottom:391.754667pt;}
.y39{bottom:394.870667pt;}
.ya{bottom:395.376000pt;}
.yaa{bottom:396.154667pt;}
.y1dd{bottom:396.553333pt;}
.y70{bottom:396.952000pt;}
.y244{bottom:399.741333pt;}
.yd9{bottom:399.944000pt;}
.y137{bottom:400.489733pt;}
.y1b9{bottom:400.538667pt;}
.y16b{bottom:402.399067pt;}
.y1a5{bottom:404.398667pt;}
.y38{bottom:411.608000pt;}
.y20d{bottom:411.896000pt;}
.yfc{bottom:412.769333pt;}
.ya9{bottom:412.892000pt;}
.y1dc{bottom:413.290667pt;}
.y6f{bottom:413.689333pt;}
.y243{bottom:415.084000pt;}
.yd8{bottom:416.681333pt;}
.y9{bottom:419.246667pt;}
.y16a{bottom:421.039851pt;}
.y1a4{bottom:421.136000pt;}
.y136{bottom:427.129733pt;}
.y20c{bottom:427.238667pt;}
.y37{bottom:428.345333pt;}
.ya8{bottom:429.629333pt;}
.y169{bottom:429.999067pt;}
.y1db{bottom:430.028000pt;}
.y6e{bottom:430.426667pt;}
.yd7{bottom:433.418667pt;}
.yfb{bottom:433.782667pt;}
.y8{bottom:435.146667pt;}
.y1a3{bottom:437.873333pt;}
.y20b{bottom:442.581333pt;}
.y242{bottom:445.769333pt;}
.ya7{bottom:446.366667pt;}
.y1da{bottom:446.765333pt;}
.y6d{bottom:447.164000pt;}
.y36{bottom:449.068000pt;}
.yd6{bottom:450.156000pt;}
.y7{bottom:451.048000pt;}
.y1a2{bottom:454.609333pt;}
.yfa{bottom:454.796000pt;}
.y20a{bottom:457.924000pt;}
.y135{bottom:458.890229pt;}
.y241{bottom:461.112000pt;}
.ya6{bottom:463.104000pt;}
.y1d9{bottom:463.502667pt;}
.y6c{bottom:463.901333pt;}
.y168{bottom:465.759067pt;}
.y6{bottom:466.948000pt;}
.yd5{bottom:470.877333pt;}
.y1a1{bottom:471.346667pt;}
.y209{bottom:473.266667pt;}
.y134{bottom:476.011381pt;}
.y240{bottom:476.454667pt;}
.ya5{bottom:479.841333pt;}
.y1d8{bottom:480.240000pt;}
.y6b{bottom:480.638667pt;}
.y5{bottom:482.848000pt;}
.yf9{bottom:482.902667pt;}
.y1a0{bottom:488.084000pt;}
.y208{bottom:488.609333pt;}
.y23f{bottom:491.797333pt;}
.y133{bottom:493.130885pt;}
.ya4{bottom:496.578667pt;}
.y1d7{bottom:496.977333pt;}
.y6a{bottom:497.376000pt;}
.y167{bottom:497.518771pt;}
.y4{bottom:498.749333pt;}
.y207{bottom:503.950667pt;}
.y19f{bottom:504.821333pt;}
.y23e{bottom:507.138667pt;}
.y132{bottom:510.170229pt;}
.yd4{bottom:511.156000pt;}
.y35{bottom:512.753333pt;}
.ya3{bottom:513.316000pt;}
.y1d6{bottom:513.714667pt;}
.y69{bottom:514.113333pt;}
.y166{bottom:514.559451pt;}
.y3{bottom:514.649333pt;}
.yf8{bottom:515.884000pt;}
.yd3{bottom:518.461333pt;}
.y206{bottom:519.293333pt;}
.y19e{bottom:521.558667pt;}
.y23d{bottom:522.481333pt;}
.y131{bottom:527.290701pt;}
.y34{bottom:530.049333pt;}
.ya2{bottom:530.053333pt;}
.y1d5{bottom:530.452000pt;}
.y2{bottom:530.549333pt;}
.y68{bottom:530.850667pt;}
.yf7{bottom:532.621333pt;}
.y205{bottom:534.636000pt;}
.y23c{bottom:537.824000pt;}
.y19d{bottom:538.296000pt;}
.y130{bottom:544.331381pt;}
.y1{bottom:546.450667pt;}
.yd1{bottom:546.781333pt;}
.ya1{bottom:546.790667pt;}
.y1d4{bottom:547.189333pt;}
.y67{bottom:547.588000pt;}
.yf6{bottom:549.358667pt;}
.y204{bottom:549.978667pt;}
.y23b{bottom:553.166667pt;}
.ycf{bottom:554.088000pt;}
.y19c{bottom:555.033333pt;}
.yce{bottom:561.393333pt;}
.y12f{bottom:561.450885pt;}
.y164{bottom:563.199187pt;}
.y33{bottom:563.284000pt;}
.ya0{bottom:563.528000pt;}
.y1d3{bottom:563.926667pt;}
.y66{bottom:564.325333pt;}
.y203{bottom:565.321333pt;}
.yf5{bottom:566.096000pt;}
.y23a{bottom:568.509333pt;}
.yd2{bottom:568.698667pt;}
.y163{bottom:571.759067pt;}
.y19b{bottom:571.770667pt;}
.yd0{bottom:576.005333pt;}
.y12e{bottom:578.570389pt;}
.y9f{bottom:580.265333pt;}
.y32{bottom:580.580000pt;}
.y1d2{bottom:580.664000pt;}
.y65{bottom:581.062667pt;}
.yf4{bottom:582.833333pt;}
.y239{bottom:583.852000pt;}
.y19a{bottom:588.508000pt;}
.y12d{bottom:595.609733pt;}
.y202{bottom:596.006667pt;}
.y9e{bottom:597.002667pt;}
.ycd{bottom:597.018667pt;}
.y1d1{bottom:597.401333pt;}
.y64{bottom:597.800000pt;}
.y31{bottom:597.874667pt;}
.y238{bottom:599.194667pt;}
.y199{bottom:605.245333pt;}
.y11e{bottom:607.034667pt;}
.y201{bottom:611.349333pt;}
.y9d{bottom:613.740000pt;}
.y1d0{bottom:614.138667pt;}
.y63{bottom:614.537333pt;}
.y30{bottom:615.170667pt;}
.yf3{bottom:615.740000pt;}
.y198{bottom:621.982667pt;}
.y200{bottom:626.690667pt;}
.ycc{bottom:627.782667pt;}
.y12c{bottom:628.329733pt;}
.y237{bottom:629.878667pt;}
.y9c{bottom:630.477333pt;}
.y1cf{bottom:630.876000pt;}
.y62{bottom:631.274667pt;}
.y2f{bottom:632.465333pt;}
.yf2{bottom:632.489333pt;}
.y197{bottom:638.720000pt;}
.y1ff{bottom:642.033333pt;}
.y236{bottom:645.221333pt;}
.y12b{bottom:645.689733pt;}
.y11d{bottom:646.893333pt;}
.y1ce{bottom:647.613333pt;}
.y61{bottom:648.012000pt;}
.y2e{bottom:649.760000pt;}
.y9b{bottom:651.200000pt;}
.yf1{bottom:653.504000pt;}
.y1fe{bottom:657.376000pt;}
.y196{bottom:659.442667pt;}
.y235{bottom:660.564000pt;}
.ycb{bottom:660.764000pt;}
.y11c{bottom:661.505333pt;}
.y12a{bottom:664.329733pt;}
.y1cd{bottom:664.350667pt;}
.y60{bottom:664.749333pt;}
.y2d{bottom:667.056000pt;}
.y1fd{bottom:672.718667pt;}
.yf0{bottom:674.517333pt;}
.y234{bottom:675.906667pt;}
.y11b{bottom:676.117333pt;}
.yca{bottom:677.501333pt;}
.y9a{bottom:681.088000pt;}
.y5f{bottom:681.485333pt;}
.y129{bottom:682.969733pt;}
.y2c{bottom:684.350667pt;}
.y195{bottom:686.489333pt;}
.y1fc{bottom:688.061333pt;}
.y11a{bottom:690.729333pt;}
.y233{bottom:691.249333pt;}
.yc9{bottom:694.238667pt;}
.yef{bottom:695.530667pt;}
.y99{bottom:697.825333pt;}
.y5e{bottom:698.222667pt;}
.y128{bottom:701.609733pt;}
.y2b{bottom:701.645333pt;}
.y1fb{bottom:703.404000pt;}
.y119{bottom:705.340000pt;}
.y162{bottom:706.426667pt;}
.y232{bottom:706.592000pt;}
.yc8{bottom:710.976000pt;}
.y98{bottom:714.562667pt;}
.y5d{bottom:714.960000pt;}
.yee{bottom:716.545333pt;}
.y1fa{bottom:718.746667pt;}
.y2a{bottom:718.941333pt;}
.y127{bottom:720.249733pt;}
.y231{bottom:721.934667pt;}
.y118{bottom:726.354667pt;}
.yc7{bottom:727.713333pt;}
.y97{bottom:731.300000pt;}
.y5c{bottom:731.697333pt;}
.y1f9{bottom:734.089333pt;}
.y29{bottom:736.236000pt;}
.y230{bottom:737.277333pt;}
.yed{bottom:737.558667pt;}
.y126{bottom:738.969733pt;}
.yc6{bottom:744.450667pt;}
.y96{bottom:748.036000pt;}
.y5b{bottom:748.434667pt;}
.y1f8{bottom:749.432000pt;}
.y22f{bottom:752.620000pt;}
.y117{bottom:754.461333pt;}
.y125{bottom:757.609733pt;}
.yc5{bottom:761.186667pt;}
.y95{bottom:764.773333pt;}
.y5a{bottom:765.172000pt;}
.yec{bottom:765.665333pt;}
.y22e{bottom:767.961333pt;}
.y28{bottom:770.534667pt;}
.y124{bottom:776.249733pt;}
.yc4{bottom:777.924000pt;}
.y1f7{bottom:780.116000pt;}
.y94{bottom:781.510667pt;}
.y59{bottom:781.909333pt;}
.y22d{bottom:783.304000pt;}
.y27{bottom:784.880000pt;}
.y1cc{bottom:785.496000pt;}
.y116{bottom:786.806667pt;}
.yc3{bottom:794.661333pt;}
.y1f6{bottom:795.458667pt;}
.y93{bottom:798.248000pt;}
.y58{bottom:798.646667pt;}
.y123{bottom:802.969733pt;}
.y26{bottom:803.084000pt;}
.y115{bottom:806.213333pt;}
.y1f5{bottom:810.801333pt;}
.yc2{bottom:811.398667pt;}
.y25{bottom:813.573333pt;}
.y22c{bottom:813.989333pt;}
.y57{bottom:815.384000pt;}
.y92{bottom:818.970667pt;}
.y1f4{bottom:826.144000pt;}
.y114{bottom:827.226667pt;}
.y24{bottom:827.920000pt;}
.yc1{bottom:828.136000pt;}
.y22b{bottom:829.332000pt;}
.y56{bottom:832.121333pt;}
.y1f3{bottom:841.486667pt;}
.y23{bottom:842.265333pt;}
.y22a{bottom:844.674667pt;}
.yc0{bottom:844.873333pt;}
.y22{bottom:846.122667pt;}
.y113{bottom:848.241333pt;}
.y55{bottom:848.858667pt;}
.y121{bottom:850.249853pt;}
.y1f2{bottom:856.829333pt;}
.y120{bottom:858.809733pt;}
.y229{bottom:860.017333pt;}
.ybf{bottom:861.610667pt;}
.y54{bottom:865.596000pt;}
.y112{bottom:869.254667pt;}
.y1f1{bottom:872.172000pt;}
.y228{bottom:875.360000pt;}
.ybe{bottom:878.348000pt;}
.y53{bottom:882.333333pt;}
.y21{bottom:885.836000pt;}
.y1ef{bottom:887.513333pt;}
.y1f0{bottom:887.514667pt;}
.y111{bottom:890.269333pt;}
.y226{bottom:890.701333pt;}
.y227{bottom:890.702667pt;}
.ybd{bottom:895.085333pt;}
.y52{bottom:899.070667pt;}
.y1ee{bottom:902.856000pt;}
.y225{bottom:906.044000pt;}
.y110{bottom:911.282667pt;}
.ybc{bottom:911.822667pt;}
.y51{bottom:915.808000pt;}
.y1ed{bottom:918.198667pt;}
.y20{bottom:921.320000pt;}
.y224{bottom:921.386667pt;}
.ybb{bottom:928.560000pt;}
.y10f{bottom:932.296000pt;}
.y50{bottom:932.545333pt;}
.y1ec{bottom:933.541333pt;}
.y223{bottom:936.729333pt;}
.yba{bottom:945.297333pt;}
.y1f{bottom:946.425333pt;}
.y4f{bottom:949.282667pt;}
.y222{bottom:952.072000pt;}
.y1eb{bottom:952.869333pt;}
.y10e{bottom:953.310667pt;}
.yb9{bottom:962.034667pt;}
.y4e{bottom:966.020000pt;}
.y221{bottom:967.414667pt;}
.y1e{bottom:971.530667pt;}
.y4d{bottom:982.757333pt;}
.y10d{bottom:984.073333pt;}
.y1a{bottom:1010.186667pt;}
.y4c{bottom:1038.548000pt;}
.h13{height:14.948784pt;}
.ha{height:23.209028pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h17{height:28.366406pt;}
.hb{height:30.945242pt;}
.h10{height:31.157778pt;}
.h16{height:31.213438pt;}
.h1e{height:33.328125pt;}
.hc{height:34.430976pt;}
.h14{height:34.717901pt;}
.hd{height:34.813542pt;}
.h5{height:35.024664pt;}
.h1d{height:35.039062pt;}
.h25{height:35.052646pt;}
.h19{height:35.203125pt;}
.h18{height:35.617969pt;}
.h6{height:36.445809pt;}
.h1f{height:37.105312pt;}
.h24{height:37.140573pt;}
.he{height:38.256384pt;}
.hf{height:38.681455pt;}
.h7{height:38.947124pt;}
.h1c{height:39.010156pt;}
.h1a{height:39.192812pt;}
.h1b{height:41.462969pt;}
.h4{height:45.272024pt;}
.h9{height:48.360277pt;}
.h23{height:48.683332pt;}
.h11{height:64.034876pt;}
.h12{height:64.040209pt;}
.h8{height:68.861952pt;}
.h22{height:70.446525pt;}
.h21{height:75.355660pt;}
.h15{height:241.190667pt;}
.h20{height:242.040000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:191.879724pt;}
.w4{width:476.860000pt;}
.w3{width:478.982667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x81{left:-193.190667pt;}
.x86{left:-177.430667pt;}
.x87{left:-167.110667pt;}
.x85{left:-165.270667pt;}
.x84{left:-142.550667pt;}
.x83{left:-127.030667pt;}
.x82{left:-19.350667pt;}
.x0{left:0.000000pt;}
.x97{left:0.994667pt;}
.x88{left:8.969333pt;}
.x92{left:11.929333pt;}
.x90{left:18.807333pt;}
.x8f{left:24.807333pt;}
.x96{left:31.554667pt;}
.x91{left:38.007333pt;}
.x89{left:40.089333pt;}
.x1{left:47.621333pt;}
.x2{left:52.456952pt;}
.x7d{left:56.845333pt;}
.x65{left:63.346667pt;}
.x7e{left:66.122667pt;}
.x7c{left:67.736000pt;}
.x64{left:75.577333pt;}
.x7b{left:88.202667pt;}
.x8a{left:99.609333pt;}
.x8b{left:171.768933pt;}
.x6b{left:175.009333pt;}
.x66{left:179.493333pt;}
.xc0{left:219.865333pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x7a{left:223.874667pt;}
.x79{left:230.496000pt;}
.x80{left:232.384000pt;}
.x78{left:236.181333pt;}
.x4{left:239.788000pt;}
.x99{left:242.594667pt;}
.x8c{left:243.928533pt;}
.x36{left:248.176000pt;}
.x8{left:250.204000pt;}
.x93{left:258.373333pt;}
.x7f{left:259.809333pt;}
.x37{left:261.458667pt;}
.x38{left:264.846667pt;}
.x67{left:272.117333pt;}
.x6{left:273.760000pt;}
.x39{left:278.130667pt;}
.x7{left:284.341333pt;}
.xba{left:285.612000pt;}
.x9e{left:290.672000pt;}
.x6e{left:291.901333pt;}
.x68{left:295.041333pt;}
.x6f{left:302.826667pt;}
.xa2{left:308.130667pt;}
.x1f{left:310.692000pt;}
.x98{left:314.835467pt;}
.x8d{left:316.088133pt;}
.xa7{left:318.202667pt;}
.xa3{left:321.414667pt;}
.x20{left:323.976000pt;}
.x3e{left:326.213333pt;}
.x21{left:327.362667pt;}
.xa8{left:331.485333pt;}
.xa9{left:334.873333pt;}
.x26{left:337.669333pt;}
.x3f{left:339.496000pt;}
.x22{left:340.646667pt;}
.x40{left:342.884000pt;}
.xaa{left:348.156000pt;}
.x77{left:349.244000pt;}
.x2b{left:350.594667pt;}
.x27{left:354.230667pt;}
.x41{left:356.168000pt;}
.x42{left:359.554667pt;}
.x2c{left:363.878667pt;}
.x9f{left:369.974667pt;}
.x43{left:372.838667pt;}
.xb8{left:377.480000pt;}
.x1d{left:378.925333pt;}
.x31{left:380.433333pt;}
.xa0{left:383.257333pt;}
.x8e{left:388.247733pt;}
.xc3{left:390.920000pt;}
.x1e{left:392.208000pt;}
.x32{left:393.717333pt;}
.xa1{left:394.733333pt;}
.x9{left:397.809333pt;}
.xb9{left:400.334667pt;}
.xa6{left:401.298667pt;}
.xa{left:404.450667pt;}
.x4b{left:406.062667pt;}
.xb{left:407.818667pt;}
.x33{left:410.370667pt;}
.xc{left:414.460000pt;}
.x2d{left:417.241333pt;}
.x4c{left:419.345333pt;}
.x5e{left:421.746667pt;}
.xa4{left:423.484000pt;}
.x5f{left:425.041333pt;}
.x2e{left:430.524000pt;}
.xc2{left:433.156000pt;}
.x44{left:435.017333pt;}
.x60{left:438.324000pt;}
.x61{left:441.618667pt;}
.x2f{left:445.274667pt;}
.x74{left:446.386667pt;}
.x45{left:448.301333pt;}
.x46{left:455.076000pt;}
.x75{left:457.312000pt;}
.x19{left:459.225333pt;}
.x30{left:461.812000pt;}
.x47{left:468.358667pt;}
.x1a{left:472.508000pt;}
.x1b{left:475.762667pt;}
.xa5{left:479.154667pt;}
.x9a{left:481.445333pt;}
.x94{left:483.132000pt;}
.x53{left:485.014667pt;}
.x1c{left:489.046667pt;}
.x9d{left:492.745333pt;}
.x5b{left:498.426667pt;}
.x9b{left:501.504000pt;}
.x9c{left:514.786667pt;}
.xb1{left:521.010667pt;}
.xc1{left:522.764000pt;}
.x6a{left:524.824000pt;}
.x62{left:527.708000pt;}
.xb2{left:534.294667pt;}
.x69{left:536.270667pt;}
.x34{left:537.329333pt;}
.x95{left:538.553333pt;}
.x63{left:540.992000pt;}
.x35{left:550.613333pt;}
.xbe{left:553.137333pt;}
.x70{left:555.800000pt;}
.xbf{left:559.777333pt;}
.x71{left:566.725333pt;}
.x76{left:577.564000pt;}
.xb5{left:597.538667pt;}
.x28{left:605.332000pt;}
.x3a{left:606.541333pt;}
.xb6{left:610.822667pt;}
.xca{left:614.105333pt;}
.x4f{left:615.841333pt;}
.xb7{left:617.332000pt;}
.x29{left:618.614667pt;}
.x3b{left:619.825333pt;}
.x15{left:622.057333pt;}
.x3c{left:623.212000pt;}
.x2a{left:625.389333pt;}
.x50{left:629.125333pt;}
.xb0{left:630.441333pt;}
.xbc{left:632.962667pt;}
.x16{left:635.341333pt;}
.x3d{left:636.496000pt;}
.x11{left:637.722667pt;}
.x17{left:638.642667pt;}
.x23{left:641.554667pt;}
.x12{left:644.364000pt;}
.xbd{left:646.246667pt;}
.x13{left:647.645333pt;}
.x18{left:651.925333pt;}
.x14{left:654.286667pt;}
.xc6{left:655.630667pt;}
.x24{left:658.225333pt;}
.xd{left:659.698667pt;}
.x72{left:663.800000pt;}
.xe{left:666.340000pt;}
.x51{left:670.521333pt;}
.x25{left:671.508000pt;}
.x73{left:674.726667pt;}
.x52{left:677.164000pt;}
.xc7{left:679.541333pt;}
.x48{left:681.844000pt;}
.xbb{left:684.261333pt;}
.x5c{left:687.421333pt;}
.xb3{left:688.725333pt;}
.x54{left:690.626667pt;}
.xf{left:691.521333pt;}
.xab{left:692.837333pt;}
.x55{left:693.918667pt;}
.x49{left:695.126667pt;}
.x10{left:698.164000pt;}
.x5d{left:700.704000pt;}
.xb4{left:702.008000pt;}
.x6c{left:703.790667pt;}
.xac{left:706.120000pt;}
.x56{left:707.201333pt;}
.xad{left:709.508000pt;}
.x57{left:710.493333pt;}
.x4a{left:711.797333pt;}
.x6d{left:714.717333pt;}
.xc9{left:719.042667pt;}
.xc4{left:720.344000pt;}
.xae{left:722.790667pt;}
.x58{left:723.776000pt;}
.xc8{left:725.976000pt;}
.x59{left:727.066667pt;}
.x4d{left:728.069333pt;}
.xcb{left:731.940000pt;}
.xaf{left:739.461333pt;}
.x5a{left:740.350667pt;}
.x4e{left:741.352000pt;}
.xc5{left:744.254667pt;}
}




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