
    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_1b3b4e52637c48b8c7746158.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.159000;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_efb5b02b83a5bfc266e67661.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.159000;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_7a166602604bc741cb3061df.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d2103df38cdfb076c6e64d6f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_de61698d07cf935534cd562d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2908dc174c2779a785e5b472.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.159000;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_92845e4d116c6fa9196cdbd0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.664000;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_81af592166d1579d3fca057c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_21db3e1e00d889eba40c4bd6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.658000;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_1a2418fbbb252cb988ce5980.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_802fff65ec88db6d0ababb2f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1502385b995e3b57d74a9f91.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_9770a1f0056f802d0aa90c00.woff2')format("woff");}.ffd{font-family:ffd;line-height:2.144000;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_30490026a107897091036931.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b611b06f7089f78cad02f8a1.woff2')format("woff");}.fff{font-family:fff;line-height:1.001000;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_f79ba865af6d42492c2209bf.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.704000;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_0c3948f1cd6461b64052a0c3.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_2be1d1da6487b420c06db397.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.887190;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_9ae526484a37427c8ed4fa61.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.159000;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_a08560da556e6068d9c199dd.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.528000;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_078615f9d4a8e2f2cc9b9dea.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.900000;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_2a42267bef575887c7da084d.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.699000;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;}
.m21{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);}
.m1{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);}
.m7{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);}
.m13{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);}
.m5{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m14{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);}
.m17{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);}
.m1e{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);}
.m9{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);}
.m12{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);}
.m10{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);}
.m20{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);}
.m15{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);}
.m6{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);}
.m11{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);}
.m18{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);}
.m19{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);}
.m8{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);}
.m1b{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.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);}
.m4{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);}
.mc{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);}
.mb{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);}
.m1f{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);}
.md{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);}
.mf{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);}
.m1d{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m2{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);}
.m3{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);}
.v1b{vertical-align:-49.836000px;}
.v8{vertical-align:-27.024000px;}
.va{vertical-align:-23.754000px;}
.vb{vertical-align:-12.912000px;}
.v2{vertical-align:-10.668000px;}
.v1{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:9.822000px;}
.v15{vertical-align:17.838000px;}
.v14{vertical-align:18.912000px;}
.v12{vertical-align:20.226000px;}
.v17{vertical-align:22.572000px;}
.v9{vertical-align:23.754000px;}
.v7{vertical-align:27.024000px;}
.v11{vertical-align:34.500000px;}
.v6{vertical-align:36.846000px;}
.vd{vertical-align:41.010000px;}
.v16{vertical-align:43.608000px;}
.v4{vertical-align:44.898000px;}
.vc{vertical-align:49.836000px;}
.v18{vertical-align:57.072000px;}
.vf{vertical-align:68.034000px;}
.v13{vertical-align:71.928000px;}
.v10{vertical-align:89.178000px;}
.v1a{vertical-align:123.960000px;}
.v3{vertical-align:141.894000px;}
.ve{vertical-align:159.822000px;}
.v19{vertical-align:162.120000px;}
.lsb{letter-spacing:0.000000px;}
.ls3d{letter-spacing:0.000843px;}
.ls70{letter-spacing:0.001050px;}
.ls39{letter-spacing:0.001062px;}
.ls31{letter-spacing:0.001599px;}
.lsa5{letter-spacing:0.001610px;}
.lsa3{letter-spacing:0.002128px;}
.ls9b{letter-spacing:0.002155px;}
.ls18{letter-spacing:0.002696px;}
.ls75{letter-spacing:0.002698px;}
.ls55{letter-spacing:0.002700px;}
.ls72{letter-spacing:0.003239px;}
.ls7b{letter-spacing:0.004609px;}
.ls23{letter-spacing:0.005402px;}
.ls7d{letter-spacing:0.005972px;}
.lsb5{letter-spacing:0.006843px;}
.ls6e{letter-spacing:0.011377px;}
.lscb{letter-spacing:0.014557px;}
.ls45{letter-spacing:0.014559px;}
.ls9f{letter-spacing:0.014646px;}
.ls57{letter-spacing:0.017887px;}
.ls36{letter-spacing:0.023205px;}
.ls84{letter-spacing:0.025060px;}
.lsc9{letter-spacing:0.025435px;}
.lsbe{letter-spacing:0.027168px;}
.ls69{letter-spacing:0.028270px;}
.lsca{letter-spacing:0.030851px;}
.lsbb{letter-spacing:0.033222px;}
.ls28{letter-spacing:0.065455px;}
.ls4d{letter-spacing:1.291156px;}
.ls8e{letter-spacing:1.832729px;}
.ls2{letter-spacing:1.912819px;}
.ls2d{letter-spacing:2.029093px;}
.ls47{letter-spacing:2.094547px;}
.ls3c{letter-spacing:2.984915px;}
.lsa4{letter-spacing:2.987236px;}
.ls1d{letter-spacing:2.987971px;}
.ls20{letter-spacing:2.988960px;}
.ls5{letter-spacing:2.989883px;}
.ls9c{letter-spacing:2.990915px;}
.ls37{letter-spacing:2.991030px;}
.ls71{letter-spacing:2.992345px;}
.ls8c{letter-spacing:3.475548px;}
.lsb8{letter-spacing:3.730912px;}
.ls14{letter-spacing:3.796367px;}
.ls32{letter-spacing:4.259644px;}
.lsba{letter-spacing:4.262559px;}
.ls2a{letter-spacing:4.265644px;}
.ls22{letter-spacing:4.394022px;}
.ls1c{letter-spacing:4.400022px;}
.lsd{letter-spacing:9.032735px;}
.lsb0{letter-spacing:9.072061px;}
.lsad{letter-spacing:9.088332px;}
.lsaf{letter-spacing:9.094332px;}
.ls4{letter-spacing:9.098189px;}
.ls3e{letter-spacing:9.490917px;}
.lsf{letter-spacing:9.512700px;}
.lsc4{letter-spacing:9.755443px;}
.ls82{letter-spacing:10.154915px;}
.ls91{letter-spacing:10.810854px;}
.ls13{letter-spacing:10.865464px;}
.ls54{letter-spacing:10.930918px;}
.ls16{letter-spacing:11.706499px;}
.ls1b{letter-spacing:12.226273px;}
.ls34{letter-spacing:12.237239px;}
.ls1f{letter-spacing:13.136631px;}
.lsab{letter-spacing:14.400012px;}
.ls10{letter-spacing:14.530921px;}
.ls15{letter-spacing:14.596376px;}
.lsaa{letter-spacing:14.727285px;}
.ls7e{letter-spacing:14.858194px;}
.ls3{letter-spacing:16.617617px;}
.ls50{letter-spacing:16.625468px;}
.ls6{letter-spacing:16.756378px;}
.ls53{letter-spacing:16.821832px;}
.ls97{letter-spacing:17.410924px;}
.ls42{letter-spacing:17.498915px;}
.lsa0{letter-spacing:17.528915px;}
.ls9e{letter-spacing:17.534915px;}
.ls8b{letter-spacing:17.672742px;}
.lsa9{letter-spacing:17.684915px;}
.lsc0{letter-spacing:18.080700px;}
.ls76{letter-spacing:18.086700px;}
.ls21{letter-spacing:18.130924px;}
.lsb4{letter-spacing:18.170442px;}
.ls8a{letter-spacing:18.179412px;}
.ls80{letter-spacing:18.185412px;}
.ls12{letter-spacing:18.196379px;}
.lsb2{letter-spacing:18.261833px;}
.ls1{letter-spacing:18.351109px;}
.ls92{letter-spacing:18.806559px;}
.ls2b{letter-spacing:18.809644px;}
.ls7c{letter-spacing:18.812559px;}
.ls1e{letter-spacing:18.944022px;}
.ls0{letter-spacing:19.666172px;}
.lsb1{letter-spacing:19.767289px;}
.ls24{letter-spacing:20.029108px;}
.ls33{letter-spacing:20.225471px;}
.ls63{letter-spacing:20.290926px;}
.lsbc{letter-spacing:20.356381px;}
.ls52{letter-spacing:20.552744px;}
.ls96{letter-spacing:20.618199px;}
.ls61{letter-spacing:20.814563px;}
.ls60{letter-spacing:20.880017px;}
.ls73{letter-spacing:21.076381px;}
.ls74{letter-spacing:21.141836px;}
.ls2e{letter-spacing:21.164915px;}
.lsa7{letter-spacing:21.167236px;}
.ls19{letter-spacing:21.167971px;}
.ls2f{letter-spacing:21.170915px;}
.lsa6{letter-spacing:21.173236px;}
.ls1a{letter-spacing:21.185696px;}
.lsa2{letter-spacing:21.266915px;}
.ls49{letter-spacing:21.338200px;}
.ls17{letter-spacing:21.469109px;}
.ls4a{letter-spacing:21.534563px;}
.ls83{letter-spacing:21.600018px;}
.ls35{letter-spacing:21.665473px;}
.lsa{letter-spacing:21.796382px;}
.ls26{letter-spacing:21.861836px;}
.lsb7{letter-spacing:21.927291px;}
.ls38{letter-spacing:22.035763px;}
.ls5b{letter-spacing:22.058200px;}
.lsb3{letter-spacing:22.123655px;}
.ls98{letter-spacing:22.189109px;}
.ls5a{letter-spacing:22.254564px;}
.ls29{letter-spacing:22.445644px;}
.ls6d{letter-spacing:22.580022px;}
.ls79{letter-spacing:22.647292px;}
.ls9a{letter-spacing:22.843655px;}
.ls62{letter-spacing:22.909110px;}
.lsae{letter-spacing:23.170928px;}
.ls44{letter-spacing:23.236383px;}
.ls3f{letter-spacing:23.367292px;}
.ls3b{letter-spacing:23.432747px;}
.ls6c{letter-spacing:23.629111px;}
.ls9d{letter-spacing:23.760020px;}
.ls4f{letter-spacing:23.825474px;}
.ls25{letter-spacing:23.890929px;}
.ls7f{letter-spacing:24.414566px;}
.ls85{letter-spacing:24.800915px;}
.ls7{letter-spacing:25.134566px;}
.ls66{letter-spacing:25.355412px;}
.ls58{letter-spacing:25.658203px;}
.ls86{letter-spacing:25.789112px;}
.ls40{letter-spacing:26.081644px;}
.ls48{letter-spacing:26.087644px;}
.ls95{letter-spacing:26.899200px;}
.ls5c{letter-spacing:27.360023px;}
.ls51{letter-spacing:27.490932px;}
.ls89{letter-spacing:27.677644px;}
.ls46{letter-spacing:27.683644px;}
.ls3a{letter-spacing:28.145478px;}
.lse{letter-spacing:28.595644px;}
.lsb9{letter-spacing:28.865479px;}
.ls8f{letter-spacing:28.970635px;}
.lsa1{letter-spacing:29.323661px;}
.lsac{letter-spacing:29.585479px;}
.ls41{letter-spacing:29.650934px;}
.ls27{letter-spacing:29.847298px;}
.ls5d{letter-spacing:29.912752px;}
.ls99{letter-spacing:29.978207px;}
.ls4c{letter-spacing:30.109116px;}
.ls30{letter-spacing:30.174571px;}
.ls4e{letter-spacing:30.370934px;}
.ls6b{letter-spacing:30.436389px;}
.lsa8{letter-spacing:30.567298px;}
.ls2c{letter-spacing:30.894571px;}
.ls4b{letter-spacing:30.960026px;}
.ls59{letter-spacing:31.614572px;}
.ls43{letter-spacing:32.278950px;}
.ls8{letter-spacing:32.727300px;}
.lsbd{letter-spacing:33.353644px;}
.ls9{letter-spacing:34.036392px;}
.ls88{letter-spacing:38.057412px;}
.ls81{letter-spacing:39.551412px;}
.ls77{letter-spacing:39.992761px;}
.lsc3{letter-spacing:41.459644px;}
.ls8d{letter-spacing:42.929412px;}
.lsc2{letter-spacing:43.535412px;}
.ls90{letter-spacing:44.117412px;}
.ls94{letter-spacing:47.804700px;}
.ls6f{letter-spacing:51.533644px;}
.ls7a{letter-spacing:59.639644px;}
.ls87{letter-spacing:60.686915px;}
.ls78{letter-spacing:65.454600px;}
.ls5f{letter-spacing:66.894601px;}
.lsbf{letter-spacing:70.547644px;}
.lsc8{letter-spacing:71.738242px;}
.lsc1{letter-spacing:77.819644px;}
.ls56{letter-spacing:78.896700px;}
.ls11{letter-spacing:82.238700px;}
.ls65{letter-spacing:97.076700px;}
.lsb6{letter-spacing:98.181900px;}
.ls93{letter-spacing:132.183705px;}
.ls6a{letter-spacing:169.538700px;}
.ls5e{letter-spacing:188.630700px;}
.ls68{letter-spacing:193.498650px;}
.lsc6{letter-spacing:217.243817px;}
.ls64{letter-spacing:218.270700px;}
.ls67{letter-spacing:223.388154px;}
.lsc5{letter-spacing:264.671644px;}
.lsc7{letter-spacing:301.865644px;}
.lsc{letter-spacing:1177.409644px;}
.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;}
}
.ws98{word-spacing:-54.523682px;}
.ws94{word-spacing:-53.568045px;}
.ws6b{word-spacing:-50.910588px;}
.ws67{word-spacing:-47.258221px;}
.wsdc{word-spacing:-45.687311px;}
.ws109{word-spacing:-45.664082px;}
.ws17{word-spacing:-42.637126px;}
.wsb6{word-spacing:-39.403669px;}
.wsa5{word-spacing:-36.923675px;}
.ws39{word-spacing:-36.379667px;}
.ws49{word-spacing:-33.453846px;}
.wsc{word-spacing:-33.223278px;}
.ws31{word-spacing:-32.727300px;}
.ws74{word-spacing:-32.714209px;}
.wsd3{word-spacing:-32.583300px;}
.ws40{word-spacing:-31.771663px;}
.ws41{word-spacing:-31.706208px;}
.wsa7{word-spacing:-24.440748px;}
.ws19{word-spacing:-22.320019px;}
.wse9{word-spacing:-20.880017px;}
.ws25{word-spacing:-20.840745px;}
.ws23{word-spacing:-20.775290px;}
.ws9f{word-spacing:-20.552744px;}
.ws0{word-spacing:-19.367325px;}
.ws33{word-spacing:-18.183288px;}
.wsa0{word-spacing:-17.869106px;}
.ws7{word-spacing:-16.605662px;}
.ws30{word-spacing:-16.139475px;}
.wsea{word-spacing:-15.970922px;}
.wse6{word-spacing:-15.905468px;}
.ws1b{word-spacing:-15.840013px;}
.wsdf{word-spacing:-15.774559px;}
.wsa1{word-spacing:-15.578195px;}
.wsd6{word-spacing:-15.512740px;}
.wse4{word-spacing:-15.381831px;}
.ws53{word-spacing:-15.250922px;}
.wscd{word-spacing:-15.120013px;}
.wscb{word-spacing:-15.054558px;}
.ws4a{word-spacing:-14.923649px;}
.wse3{word-spacing:-14.400012px;}
.wsdb{word-spacing:-13.745466px;}
.ws104{word-spacing:-13.614557px;}
.wsce{word-spacing:-13.549102px;}
.wscf{word-spacing:-13.483648px;}
.ws68{word-spacing:-13.449600px;}
.ws54{word-spacing:-13.287284px;}
.wsd9{word-spacing:-13.221829px;}
.ws5b{word-spacing:-13.025465px;}
.wsd7{word-spacing:-12.960011px;}
.wsa4{word-spacing:-12.901102px;}
.ws60{word-spacing:-12.763647px;}
.wsf{word-spacing:-12.567283px;}
.ws3e{word-spacing:-12.501829px;}
.wse2{word-spacing:-12.436374px;}
.ws42{word-spacing:-12.370919px;}
.wseb{word-spacing:-12.240010px;}
.ws55{word-spacing:-12.181101px;}
.wsec{word-spacing:-12.174556px;}
.ws69{word-spacing:-12.109101px;}
.ws57{word-spacing:-11.984737px;}
.ws58{word-spacing:-11.919283px;}
.ws105{word-spacing:-11.847283px;}
.wsed{word-spacing:-11.781828px;}
.wsd5{word-spacing:-11.657464px;}
.wsd4{word-spacing:-11.592010px;}
.ws9b{word-spacing:-11.585464px;}
.ws6{word-spacing:-11.536691px;}
.ws6d{word-spacing:-11.526555px;}
.ws4f{word-spacing:-11.454555px;}
.ws4e{word-spacing:-11.389100px;}
.wsca{word-spacing:-11.323646px;}
.ws34{word-spacing:-11.258191px;}
.ws64{word-spacing:-11.192737px;}
.ws1d{word-spacing:-11.127282px;}
.ws50{word-spacing:-11.061827px;}
.ws4{word-spacing:-10.998710px;}
.ws26{word-spacing:-10.996373px;}
.ws12{word-spacing:-10.930918px;}
.ws28{word-spacing:-10.865464px;}
.wsa3{word-spacing:-10.806554px;}
.ws6f{word-spacing:-10.800009px;}
.ws43{word-spacing:-10.734554px;}
.ws7c{word-spacing:-10.669100px;}
.ws9c{word-spacing:-10.610191px;}
.ws96{word-spacing:-10.603645px;}
.ws1c{word-spacing:-10.538191px;}
.wsc9{word-spacing:-10.479281px;}
.ws4c{word-spacing:-10.472736px;}
.ws1e{word-spacing:-10.407281px;}
.ws66{word-spacing:-10.348372px;}
.ws35{word-spacing:-10.282918px;}
.ws5{word-spacing:-10.221628px;}
.ws61{word-spacing:-10.217463px;}
.wsd{word-spacing:-10.161852px;}
.ws56{word-spacing:-10.086554px;}
.ws21{word-spacing:-10.021099px;}
.ws3{word-spacing:-9.982525px;}
.wsf3{word-spacing:-9.955645px;}
.ws44{word-spacing:-9.890190px;}
.wsc3{word-spacing:-9.883645px;}
.ws46{word-spacing:-9.824735px;}
.wsbf{word-spacing:-9.818190px;}
.ws7b{word-spacing:-9.759281px;}
.ws8a{word-spacing:-9.752735px;}
.ws6a{word-spacing:-9.693826px;}
.ws7e{word-spacing:-9.628372px;}
.ws62{word-spacing:-9.621826px;}
.wse5{word-spacing:-9.562917px;}
.wsc1{word-spacing:-9.556372px;}
.ws1f{word-spacing:-9.497462px;}
.ws8{word-spacing:-9.384769px;}
.ws97{word-spacing:-9.229099px;}
.ws20{word-spacing:-9.170189px;}
.ws2{word-spacing:-9.151644px;}
.wsc0{word-spacing:-9.039280px;}
.ws2f{word-spacing:-8.908371px;}
.ws65{word-spacing:-8.581098px;}
.ws5c{word-spacing:-8.515643px;}
.ws92{word-spacing:-8.319280px;}
.wsf1{word-spacing:-8.188370px;}
.ws59{word-spacing:-8.181825px;}
.wsd0{word-spacing:-8.122916px;}
.wsc2{word-spacing:-7.992007px;}
.wse1{word-spacing:-7.926552px;}
.ws2c{word-spacing:-7.723643px;}
.wsf6{word-spacing:-7.396370px;}
.ws6e{word-spacing:-7.265461px;}
.ws2e{word-spacing:-7.206551px;}
.ws79{word-spacing:-7.069097px;}
.wsa9{word-spacing:-6.938188px;}
.wsee{word-spacing:-6.872733px;}
.ws70{word-spacing:-6.741824px;}
.wsb2{word-spacing:-6.676369px;}
.ws3f{word-spacing:-6.617460px;}
.wsaa{word-spacing:-6.421096px;}
.ws9d{word-spacing:-6.087278px;}
.ws2d{word-spacing:-6.028369px;}
.ws71{word-spacing:-5.766550px;}
.wsa2{word-spacing:-5.701096px;}
.wsd2{word-spacing:-5.432732px;}
.ws81{word-spacing:-5.367277px;}
.ws84{word-spacing:-5.301823px;}
.ws90{word-spacing:-5.170913px;}
.wsd1{word-spacing:-5.112004px;}
.ws91{word-spacing:-5.105459px;}
.ws9{word-spacing:-4.961375px;}
.wsdd{word-spacing:-4.909095px;}
.wsa{word-spacing:-4.608699px;}
.ws51{word-spacing:-4.503276px;}
.wsc8{word-spacing:-4.130185px;}
.wsb7{word-spacing:-3.914185px;}
.ws6c{word-spacing:-3.717821px;}
.ws82{word-spacing:-3.672003px;}
.ws24{word-spacing:-3.652367px;}
.ws2a{word-spacing:-3.586912px;}
.ws7d{word-spacing:-3.456003px;}
.ws4d{word-spacing:-3.325094px;}
.ws78{word-spacing:-3.279275px;}
.ws5a{word-spacing:-1.819638px;}
.wsda{word-spacing:-1.112728px;}
.wse7{word-spacing:-0.916364px;}
.ws72{word-spacing:-0.903273px;}
.wsb4{word-spacing:-0.837819px;}
.ws76{word-spacing:-0.726546px;}
.ws5e{word-spacing:-0.183273px;}
.ws5d{word-spacing:-0.117818px;}
.ws10{word-spacing:-0.065455px;}
.ws29{word-spacing:-0.052364px;}
.ws38{word-spacing:-0.047821px;}
.ws22{word-spacing:-0.024189px;}
.ws85{word-spacing:-0.017092px;}
.ws16{word-spacing:0.000000px;}
.ws36{word-spacing:0.013091px;}
.ws73{word-spacing:0.078546px;}
.wsb0{word-spacing:0.144000px;}
.ws7f{word-spacing:0.274909px;}
.ws4b{word-spacing:0.340364px;}
.wsd8{word-spacing:1.322183px;}
.wse{word-spacing:2.029093px;}
.ws10a{word-spacing:3.089457px;}
.ws9e{word-spacing:3.331639px;}
.ws5f{word-spacing:3.416730px;}
.ws27{word-spacing:3.613094px;}
.ws80{word-spacing:3.678549px;}
.ws8d{word-spacing:3.744003px;}
.ws88{word-spacing:3.874912px;}
.ws10c{word-spacing:4.005822px;}
.ws7a{word-spacing:4.071276px;}
.ws8b{word-spacing:4.791277px;}
.ws75{word-spacing:5.249459px;}
.ws9a{word-spacing:7.168836px;}
.wsa8{word-spacing:7.172112px;}
.wsb3{word-spacing:7.344006px;}
.wsb{word-spacing:8.679417px;}
.ws18{word-spacing:8.849462px;}
.ws83{word-spacing:9.176735px;}
.ws8f{word-spacing:9.373099px;}
.ws14{word-spacing:10.341827px;}
.ws89{word-spacing:10.354918px;}
.ws13{word-spacing:10.407281px;}
.wsb1{word-spacing:10.551282px;}
.wsef{word-spacing:10.878555px;}
.ws8c{word-spacing:11.009464px;}
.ws87{word-spacing:11.271282px;}
.ws63{word-spacing:11.467646px;}
.ws32{word-spacing:11.533101px;}
.ws11{word-spacing:16.625468px;}
.wsc4{word-spacing:17.179617px;}
.wsf0{word-spacing:17.461554px;}
.ws77{word-spacing:17.464639px;}
.ws99{word-spacing:17.467554px;}
.ws93{word-spacing:17.470639px;}
.wsf2{word-spacing:18.076836px;}
.wsf4{word-spacing:18.209470px;}
.wsc5{word-spacing:18.315290px;}
.wsb9{word-spacing:19.197209px;}
.wsb5{word-spacing:20.608639px;}
.ws3c{word-spacing:21.100100px;}
.ws3d{word-spacing:21.107768px;}
.wscc{word-spacing:21.113387px;}
.ws3a{word-spacing:21.118195px;}
.wsa6{word-spacing:21.120151px;}
.ws52{word-spacing:21.863609px;}
.wsb8{word-spacing:22.272350px;}
.ws47{word-spacing:23.301838px;}
.ws45{word-spacing:23.498201px;}
.wsaf{word-spacing:25.292755px;}
.wsae{word-spacing:25.295840px;}
.wsad{word-spacing:25.298925px;}
.wsab{word-spacing:25.302010px;}
.wsf5{word-spacing:25.354836px;}
.ws1{word-spacing:26.540366px;}
.ws106{word-spacing:31.130208px;}
.wsde{word-spacing:32.673502px;}
.wsac{word-spacing:33.682937px;}
.ws15{word-spacing:35.738212px;}
.wse8{word-spacing:38.862151px;}
.ws103{word-spacing:39.010942px;}
.wsbe{word-spacing:41.596212px;}
.ws3b{word-spacing:47.271312px;}
.ws1a{word-spacing:48.418425px;}
.wsbd{word-spacing:57.955512px;}
.ws102{word-spacing:71.738242px;}
.wsbc{word-spacing:74.320812px;}
.wsba{word-spacing:76.447554px;}
.wsbb{word-spacing:90.686112px;}
.ws2b{word-spacing:99.137537px;}
.ws37{word-spacing:99.202992px;}
.ws10b{word-spacing:100.487412px;}
.ws48{word-spacing:102.082994px;}
.ws101{word-spacing:104.465542px;}
.wse0{word-spacing:130.855402px;}
.ws95{word-spacing:134.990112px;}
.ws100{word-spacing:137.192842px;}
.wsc7{word-spacing:139.496844px;}
.ws86{word-spacing:154.088112px;}
.wsff{word-spacing:169.920142px;}
.ws108{word-spacing:183.272880px;}
.ws8e{word-spacing:183.728112px;}
.wsfe{word-spacing:202.647442px;}
.wsc6{word-spacing:230.675101px;}
.wsfd{word-spacing:235.374742px;}
.wsfc{word-spacing:268.102042px;}
.wsfb{word-spacing:300.829342px;}
.wsfa{word-spacing:333.556642px;}
.ws107{word-spacing:363.967554px;}
.wsf9{word-spacing:366.283942px;}
.wsf7{word-spacing:385.763231px;}
.wsf8{word-spacing:399.011242px;}
._26{margin-left:-37.636395px;}
._13{margin-left:-32.792755px;}
._34{margin-left:-26.181840px;}
._2f{margin-left:-21.955394px;}
._20{margin-left:-17.988375px;}
._6{margin-left:-16.617617px;}
._2b{margin-left:-14.530921px;}
._0{margin-left:-9.709486px;}
._1f{margin-left:-8.091257px;}
._a{margin-left:-6.218187px;}
._4{margin-left:-4.901599px;}
._2{margin-left:-3.048556px;}
._1{margin-left:-1.673717px;}
._3{width:1.673717px;}
._7{width:3.048556px;}
._1d{width:4.778186px;}
._22{width:5.956369px;}
._2d{width:7.330915px;}
._2e{width:8.447331px;}
._5{width:9.623872px;}
._29{width:10.930918px;}
._24{width:14.400012px;}
._2c{width:17.898487px;}
._3d{width:20.197661px;}
._23{width:21.368209px;}
._1b{width:22.628730px;}
._25{width:24.552971px;}
._2a{width:25.985476px;}
._21{width:27.586535px;}
._15{width:29.127589px;}
._3f{width:30.239733px;}
._3e{width:32.727300px;}
._12{width:33.746471px;}
._28{width:35.738212px;}
._9{width:36.981849px;}
._c{width:39.665488px;}
._40{width:43.480725px;}
._14{width:46.276402px;}
._11{width:48.698222px;}
._3c{width:54.523682px;}
._16{width:65.650964px;}
._30{width:67.249977px;}
._41{width:71.738242px;}
._31{width:76.909155px;}
._27{width:80.697600px;}
._5a{width:85.937400px;}
._58{width:93.212112px;}
._1e{width:96.836850px;}
._59{width:102.290700px;}
._3b{width:134.629500px;}
._3a{width:136.340700px;}
._56{width:149.956489px;}
._38{width:152.702700px;}
._39{width:167.362800px;}
._35{width:169.064700px;}
._55{width:182.683789px;}
._37{width:200.090100px;}
._47{width:202.647442px;}
._1c{width:210.894721px;}
._54{width:215.411089px;}
._36{width:216.452100px;}
._46{width:235.374742px;}
._53{width:248.138389px;}
._45{width:268.102042px;}
._52{width:280.865689px;}
._44{width:300.829342px;}
._51{width:313.592989px;}
._43{width:333.556642px;}
._50{width:346.320289px;}
._42{width:366.283942px;}
._4f{width:379.047589px;}
._4b{width:399.011242px;}
._4e{width:411.774889px;}
._32{width:417.011257px;}
._49{width:431.738542px;}
._4d{width:444.502189px;}
._57{width:464.465842px;}
._33{width:475.920397px;}
._4c{width:477.229489px;}
._4a{width:509.956789px;}
._48{width:542.684089px;}
._19{width:1076.195284px;}
._10{width:1331.458912px;}
._f{width:1358.931053px;}
._b{width:1388.946904px;}
._17{width:1445.443473px;}
._1a{width:1566.842966px;}
._d{width:1611.557707px;}
._e{width:1711.657666px;}
._18{width:1922.074329px;}
._8{width:2166.227023px;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs6{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1d{bottom:61.467000px;}
.y43{bottom:106.299000px;}
.y88{bottom:117.399000px;}
.y1c{bottom:120.120000px;}
.y140{bottom:127.882500px;}
.y10d{bottom:135.940500px;}
.y18f{bottom:144.232500px;}
.y10e{bottom:147.165000px;}
.y42{bottom:150.891000px;}
.y13f{bottom:152.535000px;}
.y87{bottom:152.620500px;}
.y10f{bottom:156.156000px;}
.y10c{bottom:158.235000px;}
.y1b{bottom:161.136000px;}
.y16e{bottom:162.424500px;}
.yd8{bottom:168.639000px;}
.y64{bottom:173.191500px;}
.yb9{bottom:174.189000px;}
.y10b{bottom:177.151500px;}
.y13e{bottom:177.187500px;}
.yd7{bottom:179.863500px;}
.y18e{bottom:181.912500px;}
.y16d{bottom:187.078500px;}
.y41{bottom:195.484500px;}
.y63{bottom:197.845500px;}
.y86{bottom:200.895000px;}
.y109{bottom:201.804000px;}
.y13d{bottom:201.841500px;}
.y1a{bottom:202.153500px;}
.y18d{bottom:206.565000px;}
.y10a{bottom:207.742500px;}
.yb8{bottom:210.561000px;}
.y16c{bottom:211.731000px;}
.y1cb{bottom:215.362500px;}
.yb7{bottom:216.729000px;}
.yb6{bottom:221.785500px;}
.y62{bottom:222.498000px;}
.y85{bottom:225.547500px;}
.y106{bottom:226.456500px;}
.y13c{bottom:226.494000px;}
.yd6{bottom:228.549000px;}
.y40{bottom:231.529500px;}
.y108{bottom:232.395000px;}
.y107{bottom:238.915500px;}
.y19{bottom:243.169500px;}
.y18c{bottom:248.643000px;}
.y16b{bottom:249.832500px;}
.y84{bottom:250.200000px;}
.y13b{bottom:251.146500px;}
.y1ca{bottom:256.048500px;}
.y61{bottom:260.599500px;}
.yd5{bottom:263.770500px;}
.y105{bottom:265.363500px;}
.yb5{bottom:273.286500px;}
.y18b{bottom:273.295500px;}
.y16a{bottom:274.485000px;}
.y83{bottom:274.854000px;}
.y139{bottom:275.799000px;}
.y3f{bottom:276.121500px;}
.y101{bottom:277.126500px;}
.y104{bottom:277.449000px;}
.yfd{bottom:280.176000px;}
.y1c9{bottom:280.701000px;}
.y100{bottom:281.610000px;}
.y13a{bottom:281.737500px;}
.y18{bottom:284.185500px;}
.y60{bottom:285.252000px;}
.yfc{bottom:290.968500px;}
.y169{bottom:299.137500px;}
.y82{bottom:299.506500px;}
.y138{bottom:300.451500px;}
.y103{bottom:301.636500px;}
.y1c8{bottom:305.353500px;}
.yff{bottom:308.509500px;}
.y17{bottom:308.838000px;}
.y5f{bottom:309.904500px;}
.y18a{bottom:311.229000px;}
.yd4{bottom:312.045000px;}
.y1aa{bottom:312.339000px;}
.yfe{bottom:312.993000px;}
.y102{bottom:313.722000px;}
.y1a9{bottom:317.395500px;}
.yb4{bottom:317.878500px;}
.y3e{bottom:320.715000px;}
.y81{bottom:324.159000px;}
.y137{bottom:325.104000px;}
.y1c7{bottom:330.006000px;}
.y16{bottom:333.490500px;}
.y189{bottom:335.881500px;}
.y168{bottom:339.994500px;}
.y1a8{bottom:342.049500px;}
.y80{bottom:348.811500px;}
.y136{bottom:349.756500px;}
.y5e{bottom:350.761500px;}
.yfb{bottom:353.512500px;}
.y1c6{bottom:354.660000px;}
.yd3{bottom:356.638500px;}
.y3d{bottom:357.150000px;}
.y15{bottom:358.143000px;}
.y188{bottom:360.534000px;}
.yb3{bottom:362.470500px;}
.y7f{bottom:373.464000px;}
.y135{bottom:374.409000px;}
.yfa{bottom:378.165000px;}
.y1c5{bottom:379.312500px;}
.y1a7{bottom:380.151000px;}
.y3c{bottom:381.802500px;}
.y14{bottom:382.797000px;}
.yb2{bottom:387.123000px;}
.yd2{bottom:396.174000px;}
.y167{bottom:397.282500px;}
.y7e{bottom:398.116500px;}
.y187{bottom:398.467500px;}
.yd1{bottom:401.230500px;}
.y1c4{bottom:403.965000px;}
.y1a6{bottom:404.803500px;}
.y3b{bottom:406.455000px;}
.y13{bottom:407.449500px;}
.y5d{bottom:408.049500px;}
.y134{bottom:412.512000px;}
.yb1{bottom:414.001500px;}
.yf9{bottom:414.372000px;}
.y166{bottom:421.935000px;}
.y7d{bottom:422.769000px;}
.y186{bottom:423.120000px;}
.yb0{bottom:425.226000px;}
.yd0{bottom:425.883000px;}
.y1c3{bottom:428.617500px;}
.y5b{bottom:432.702000px;}
.y133{bottom:437.164500px;}
.y5c{bottom:438.640500px;}
.yf8{bottom:439.024500px;}
.y1a4{bottom:441.177000px;}
.y165{bottom:446.587500px;}
.y3a{bottom:447.312000px;}
.y1a5{bottom:447.345000px;}
.y185{bottom:447.772500px;}
.y12{bottom:448.465500px;}
.y1a3{bottom:452.401500px;}
.y1c2{bottom:453.270000px;}
.y7c{bottom:460.872000px;}
.yf7{bottom:463.677000px;}
.ycf{bottom:463.984500px;}
.yaf{bottom:465.480000px;}
.y5a{bottom:470.805000px;}
.y164{bottom:471.240000px;}
.y1f7{bottom:472.602000px;}
.y12f{bottom:473.691000px;}
.yae{bottom:476.704500px;}
.y131{bottom:477.781500px;}
.y1c1{bottom:477.922500px;}
.y132{bottom:478.476000px;}
.y184{bottom:485.706000px;}
.y1f6{bottom:487.869000px;}
.y12e{bottom:487.939500px;}
.yce{bottom:488.638500px;}
.y11{bottom:489.481500px;}
.y130{bottom:492.030000px;}
.y1f5{bottom:492.925500px;}
.y7b{bottom:494.239500px;}
.y59{bottom:495.457500px;}
.y163{bottom:495.894000px;}
.yf6{bottom:496.539000px;}
.y12d{bottom:498.754500px;}
.y1c0{bottom:502.575000px;}
.y1a2{bottom:503.901000px;}
.y39{bottom:504.211500px;}
.y7a{bottom:505.464000px;}
.y183{bottom:510.358500px;}
.ycd{bottom:513.291000px;}
.yad{bottom:516.958500px;}
.y57{bottom:520.110000px;}
.y162{bottom:520.546500px;}
.yf5{bottom:521.191500px;}
.y58{bottom:526.048500px;}
.y1bf{bottom:527.227500px;}
.yab{bottom:528.184500px;}
.y1a1{bottom:528.553500px;}
.y38{bottom:528.864000px;}
.y10{bottom:530.497500px;}
.y1ed{bottom:530.914500px;}
.y182{bottom:535.011000px;}
.yac{bottom:539.254500px;}
.y12c{bottom:543.348000px;}
.y161{bottom:545.199000px;}
.ycc{bottom:545.401500px;}
.y1be{bottom:551.880000px;}
.y1dd{bottom:554.848500px;}
.y79{bottom:556.299000px;}
.y56{bottom:558.211500px;}
.yf4{bottom:560.140500px;}
.yf3{bottom:561.324000px;}
.yf2{bottom:565.783500px;}
.y12b{bottom:568.000500px;}
.y160{bottom:569.851500px;}
.yf{bottom:571.515000px;}
.y1a0{bottom:571.651500px;}
.yaa{bottom:572.529000px;}
.y181{bottom:572.944500px;}
.y37{bottom:573.456000px;}
.ycb{bottom:574.537500px;}
.y19f{bottom:577.819500px;}
.y1de{bottom:579.447000px;}
.y54{bottom:582.864000px;}
.y19e{bottom:582.876000px;}
.y1bd{bottom:584.743500px;}
.y55{bottom:588.802500px;}
.y12a{bottom:592.653000px;}
.y78{bottom:594.402000px;}
.y15f{bottom:594.504000px;}
.yca{bottom:603.673500px;}
.ya9{bottom:609.418500px;}
.y1df{bottom:610.170000px;}
.yf1{bottom:610.375500px;}
.ye{bottom:612.531000px;}
.y129{bottom:617.305500px;}
.y180{bottom:617.536500px;}
.y36{bottom:618.048000px;}
.y77{bottom:619.054500px;}
.y15e{bottom:619.156500px;}
.y53{bottom:619.300500px;}
.ya8{bottom:620.643000px;}
.yc9{bottom:632.809500px;}
.y19d{bottom:633.466500px;}
.y1e0{bottom:640.893000px;}
.y1bc{bottom:642.358500px;}
.y35{bottom:642.702000px;}
.y76{bottom:643.707000px;}
.y52{bottom:643.953000px;}
.y15d{bottom:646.938000px;}
.yf0{bottom:649.326000px;}
.yef{bottom:650.509500px;}
.yd{bottom:653.547000px;}
.yc8{bottom:654.742500px;}
.yee{bottom:654.969000px;}
.y128{bottom:655.408500px;}
.y159{bottom:657.811500px;}
.y19c{bottom:658.119000px;}
.y15c{bottom:659.023500px;}
.y154{bottom:660.859500px;}
.y17f{bottom:662.128500px;}
.y158{bottom:662.293500px;}
.y155{bottom:666.595500px;}
.y75{bottom:668.359500px;}
.y51{bottom:668.605500px;}
.ya7{bottom:670.569000px;}
.y1e1{bottom:671.616000px;}
.y153{bottom:671.653500px;}
.y34{bottom:676.408500px;}
.y127{bottom:680.061000px;}
.y15b{bottom:681.430500px;}
.y157{bottom:689.193000px;}
.y1bb{bottom:691.765500px;}
.y74{bottom:693.012000px;}
.y30{bottom:693.088500px;}
.y15a{bottom:693.516000px;}
.y156{bottom:693.676500px;}
.ya6{bottom:695.221500px;}
.y2f{bottom:697.572000px;}
.y33{bottom:698.703000px;}
.yc7{bottom:699.336000px;}
.yed{bottom:699.561000px;}
.y19b{bottom:701.278500px;}
.y17e{bottom:704.206500px;}
.y126{bottom:704.713500px;}
.y1e2{bottom:705.598500px;}
.y2c{bottom:706.930500px;}
.y50{bottom:709.462500px;}
.yc{bottom:710.835000px;}
.y1ba{bottom:712.089000px;}
.y152{bottom:712.458000px;}
.y1da{bottom:713.101500px;}
.y32{bottom:713.703000px;}
.y73{bottom:717.666000px;}
.y2e{bottom:724.471500px;}
.y19a{bottom:725.931000px;}
.yc6{bottom:728.470500px;}
.y17d{bottom:728.859000px;}
.ya5{bottom:728.928000px;}
.y2d{bottom:728.955000px;}
.y125{bottom:729.366000px;}
.yec{bottom:732.421500px;}
.yb{bottom:732.586500px;}
.y31{bottom:735.997500px;}
.y1e3{bottom:736.321500px;}
.y151{bottom:737.110500px;}
.y72{bottom:742.318500px;}
.ya1{bottom:745.395000px;}
.ya0{bottom:749.878500px;}
.y199{bottom:750.585000px;}
.ya4{bottom:751.222500px;}
.y1b9{bottom:753.453000px;}
.y1d9{bottom:753.787500px;}
.ya{bottom:754.339500px;}
.y9f{bottom:754.362000px;}
.yeb{bottom:757.074000px;}
.y9b{bottom:763.720500px;}
.y124{bottom:764.586000px;}
.y4f{bottom:766.749000px;}
.y71{bottom:766.971000px;}
.y1e4{bottom:767.046000px;}
.y17c{bottom:769.717500px;}
.ya3{bottom:770.158500px;}
.y2b{bottom:771.160500px;}
.yc5{bottom:773.064000px;}
.y150{bottom:774.049500px;}
.y9{bottom:776.091000px;}
.y1b8{bottom:778.105500px;}
.y1d8{bottom:778.440000px;}
.y9e{bottom:781.261500px;}
.y14c{bottom:784.921500px;}
.y9d{bottom:785.745000px;}
.y14f{bottom:786.135000px;}
.y147{bottom:787.971000px;}
.y198{bottom:788.686500px;}
.y14b{bottom:789.405000px;}
.y9c{bottom:790.227000px;}
.yea{bottom:790.441500px;}
.y4e{bottom:791.403000px;}
.y70{bottom:791.623500px;}
.ya2{bottom:792.454500px;}
.y1ee{bottom:793.260000px;}
.y148{bottom:793.707000px;}
.y2a{bottom:795.813000px;}
.yc4{bottom:797.716500px;}
.y1e5{bottom:797.769000px;}
.y8{bottom:797.844000px;}
.y146{bottom:798.763500px;}
.y123{bottom:801.238500px;}
.y1b7{bottom:802.758000px;}
.y1d7{bottom:803.092500px;}
.y14e{bottom:808.542000px;}
.ye9{bottom:812.736000px;}
.y197{bottom:813.339000px;}
.y4d{bottom:816.055500px;}
.y14a{bottom:816.304500px;}
.y11f{bottom:817.549500px;}
.y7{bottom:819.595500px;}
.y11b{bottom:820.167000px;}
.y29{bottom:820.467000px;}
.y119{bottom:820.597500px;}
.y14d{bottom:820.627500px;}
.y149{bottom:820.788000px;}
.y11e{bottom:822.031500px;}
.y122{bottom:823.534500px;}
.y17b{bottom:826.924500px;}
.y1b6{bottom:827.410500px;}
.y1d6{bottom:827.746500px;}
.y1e6{bottom:828.492000px;}
.y6f{bottom:829.726500px;}
.y118{bottom:831.391500px;}
.y9a{bottom:832.219500px;}
.y121{bottom:837.124500px;}
.yc3{bottom:837.808500px;}
.y4b{bottom:840.708000px;}
.y6{bottom:841.348500px;}
.y11a{bottom:842.461500px;}
.y28{bottom:845.119500px;}
.y4c{bottom:846.646500px;}
.ye8{bottom:848.566500px;}
.y11d{bottom:848.931000px;}
.yc2{bottom:849.033000px;}
.y196{bottom:851.442000px;}
.y17a{bottom:851.577000px;}
.y1b5{bottom:852.064500px;}
.y1d5{bottom:852.399000px;}
.y11c{bottom:853.414500px;}
.y6e{bottom:854.379000px;}
.y1e7{bottom:859.215000px;}
.y120{bottom:859.420500px;}
.y145{bottom:860.418000px;}
.y49{bottom:865.360500px;}
.y27{bottom:869.772000px;}
.y99{bottom:870.321000px;}
.y4a{bottom:871.299000px;}
.y5{bottom:872.440500px;}
.ye7{bottom:873.219000px;}
.y1b4{bottom:876.717000px;}
.y1d4{bottom:877.051500px;}
.y6d{bottom:879.031500px;}
.y144{bottom:885.070500px;}
.y1f4{bottom:889.935000px;}
.y1e8{bottom:889.938000px;}
.y195{bottom:892.299000px;}
.yc1{bottom:893.626500px;}
.y26{bottom:894.424500px;}
.y98{bottom:894.975000px;}
.y117{bottom:895.249500px;}
.ye6{bottom:897.871500px;}
.y1b3{bottom:901.369500px;}
.y1d3{bottom:901.704000px;}
.y48{bottom:903.462000px;}
.y179{bottom:904.944000px;}
.y143{bottom:909.723000px;}
.y1f3{bottom:910.639500px;}
.y6c{bottom:914.251500px;}
.yc0{bottom:918.279000px;}
.y25{bottom:919.077000px;}
.y97{bottom:919.627500px;}
.y116{bottom:919.902000px;}
.y1e9{bottom:920.661000px;}
.y1b2{bottom:926.022000px;}
.y1d2{bottom:926.356500px;}
.y178{bottom:929.596500px;}
.ye5{bottom:931.239000px;}
.y1f2{bottom:931.344000px;}
.y4{bottom:936.672000px;}
.y142{bottom:943.342500px;}
.y24{bottom:943.729500px;}
.y96{bottom:944.280000px;}
.y47{bottom:948.055500px;}
.y194{bottom:949.585500px;}
.y1b1{bottom:950.674500px;}
.y1d1{bottom:951.009000px;}
.y1ea{bottom:951.384000px;}
.ye4{bottom:953.533500px;}
.y177{bottom:954.249000px;}
.y1f1{bottom:954.681000px;}
.ybf{bottom:956.380500px;}
.y115{bottom:958.005000px;}
.y6a{bottom:962.527500px;}
.y141{bottom:967.995000px;}
.y95{bottom:968.932500px;}
.y6b{bottom:971.518500px;}
.y1b0{bottom:975.327000px;}
.y1d0{bottom:975.661500px;}
.y3{bottom:977.688000px;}
.y1f0{bottom:978.016500px;}
.y176{bottom:978.901500px;}
.y1eb{bottom:982.107000px;}
.y23{bottom:984.586500px;}
.y69{bottom:987.180000px;}
.y193{bottom:987.688500px;}
.ye3{bottom:989.364000px;}
.y46{bottom:992.647500px;}
.ybe{bottom:994.483500px;}
.y114{bottom:998.107500px;}
.y1af{bottom:999.979500px;}
.y1cf{bottom:1000.314000px;}
.y1ef{bottom:1001.353500px;}
.y94{bottom:1007.034000px;}
.y173{bottom:1007.968500px;}
.y68{bottom:1011.832500px;}
.y1ec{bottom:1012.831500px;}
.y175{bottom:1013.169000px;}
.y45{bottom:1017.300000px;}
.y171{bottom:1017.327000px;}
.ybd{bottom:1019.136000px;}
.y113{bottom:1022.760000px;}
.ye2{bottom:1023.070500px;}
.y1ae{bottom:1024.632000px;}
.y1ce{bottom:1024.966500px;}
.y192{bottom:1025.790000px;}
.y2{bottom:1027.611000px;}
.y172{bottom:1034.868000px;}
.yde{bottom:1039.017000px;}
.y93{bottom:1040.742000px;}
.y22{bottom:1041.486000px;}
.y174{bottom:1042.752000px;}
.ydd{bottom:1043.500500px;}
.ye1{bottom:1045.365000px;}
.y112{bottom:1047.412500px;}
.y1ad{bottom:1049.284500px;}
.y1cd{bottom:1049.620500px;}
.y67{bottom:1049.934000px;}
.yda{bottom:1052.859000px;}
.y8f{bottom:1055.241000px;}
.ybc{bottom:1055.571000px;}
.y170{bottom:1056.586500px;}
.y44{bottom:1058.157000px;}
.ye0{bottom:1058.229000px;}
.y8e{bottom:1059.724500px;}
.y92{bottom:1063.036500px;}
.y191{bottom:1063.893000px;}
.y8d{bottom:1064.206500px;}
.y21{bottom:1066.138500px;}
.y1{bottom:1067.490000px;}
.ydc{bottom:1070.398500px;}
.y111{bottom:1072.065000px;}
.y89{bottom:1073.566500px;}
.y66{bottom:1074.588000px;}
.ydb{bottom:1074.882000px;}
.y1dc{bottom:1075.167000px;}
.y1ac{bottom:1077.090000px;}
.y91{bottom:1080.004500px;}
.ybb{bottom:1080.223500px;}
.ydf{bottom:1080.523500px;}
.y1ab{bottom:1082.146500px;}
.y1cc{bottom:1082.482500px;}
.y16f{bottom:1082.797500px;}
.y20{bottom:1090.791000px;}
.y8c{bottom:1091.106000px;}
.y8b{bottom:1095.589500px;}
.y110{bottom:1097.316000px;}
.y65{bottom:1099.240500px;}
.y1db{bottom:1099.819500px;}
.y8a{bottom:1100.073000px;}
.y190{bottom:1101.994500px;}
.y90{bottom:1102.299000px;}
.yba{bottom:1104.876000px;}
.y1f{bottom:1115.445000px;}
.y1e{bottom:1140.097500px;}
.yd9{bottom:1146.036000px;}
.h9{height:19.965050px;}
.he{height:33.187496px;}
.h26{height:33.283138px;}
.h10{height:35.865450px;}
.h4{height:44.831700px;}
.h23{height:46.047050px;}
.h6{height:49.090950px;}
.h3{height:54.336020px;}
.hd{height:56.941496px;}
.h7{height:59.498231px;}
.h16{height:59.613450px;}
.h18{height:59.619450px;}
.hb{height:60.211496px;}
.hc{height:60.217496px;}
.h29{height:62.889450px;}
.h11{height:65.131930px;}
.h1e{height:69.316950px;}
.hf{height:69.801050px;}
.h1b{height:70.365450px;}
.h2c{height:70.371450px;}
.h5{height:78.158098px;}
.h20{height:79.473450px;}
.h2e{height:79.724231px;}
.h22{height:82.070231px;}
.h2f{height:90.591450px;}
.h2d{height:90.597450px;}
.h21{height:92.937450px;}
.h2{height:93.789499px;}
.h13{height:93.988950px;}
.h17{height:93.994950px;}
.h12{height:103.778231px;}
.h24{height:103.893450px;}
.h1a{height:103.899450px;}
.ha{height:104.396231px;}
.h25{height:104.402231px;}
.h1d{height:107.793450px;}
.h2b{height:115.263450px;}
.h1c{height:124.125450px;}
.h2a{height:143.925050px;}
.h1f{height:148.676231px;}
.h19{height:148.797450px;}
.h8{height:161.859050px;}
.h14{height:179.787050px;}
.h15{height:179.793050px;}
.h27{height:182.085050px;}
.h28{height:182.091050px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2c{left:104.994000px;}
.x21{left:106.299000px;}
.xd2{left:110.875500px;}
.x4e{left:113.908500px;}
.x14b{left:115.183500px;}
.x133{left:118.134000px;}
.x97{left:119.979000px;}
.x4f{left:121.588500px;}
.x134{left:124.371000px;}
.x152{left:126.300000px;}
.x13f{left:129.789000px;}
.x22{left:130.845000px;}
.xd3{left:133.425000px;}
.x50{left:135.843000px;}
.x1{left:137.365500px;}
.x138{left:139.570500px;}
.x122{left:141.079500px;}
.xf7{left:142.489500px;}
.x121{left:145.782000px;}
.x7{left:147.208500px;}
.x95{left:149.226000px;}
.xf8{left:150.507000px;}
.x108{left:153.255000px;}
.x15f{left:154.806000px;}
.xd4{left:156.607500px;}
.x8{left:158.017500px;}
.xd9{left:159.789000px;}
.x9{left:163.945500px;}
.x149{left:166.771500px;}
.x6{left:169.624500px;}
.xdd{left:171.498000px;}
.xa{left:172.914000px;}
.xa2{left:174.148500px;}
.x135{left:175.374000px;}
.x123{left:177.937500px;}
.xf9{left:179.307000px;}
.xb3{left:180.562500px;}
.x146{left:181.620000px;}
.xd5{left:182.890500px;}
.x51{left:185.374500px;}
.x115{left:186.597000px;}
.xa3{left:188.625000px;}
.x136{left:190.792500px;}
.x14c{left:192.754500px;}
.xb4{left:195.066000px;}
.x104{left:197.344500px;}
.x6f{left:199.038000px;}
.xd6{left:200.829000px;}
.x13a{left:202.041000px;}
.x116{left:204.601500px;}
.x109{left:206.887500px;}
.xda{left:207.904500px;}
.x13d{left:210.184500px;}
.x70{left:211.233000px;}
.x3d{left:214.063500px;}
.x2d{left:216.637500px;}
.x3e{left:217.789500px;}
.xf4{left:221.145000px;}
.x52{left:222.976500px;}
.xdb{left:225.204000px;}
.x13e{left:227.277000px;}
.x84{left:229.534500px;}
.x53{left:230.656500px;}
.xe8{left:232.368000px;}
.x105{left:234.759000px;}
.x54{left:236.893500px;}
.x37{left:238.101000px;}
.x85{left:241.369500px;}
.x10a{left:243.372000px;}
.x71{left:244.879500px;}
.x2e{left:245.950500px;}
.xdc{left:246.978000px;}
.x15b{left:249.529500px;}
.x38{left:251.608500px;}
.x72{left:253.969500px;}
.x142{left:255.091500px;}
.xcc{left:256.288500px;}
.x55{left:259.443000px;}
.x148{left:261.531000px;}
.x11e{left:264.333000px;}
.x110{left:266.947500px;}
.x124{left:269.784000px;}
.x73{left:271.932000px;}
.xcd{left:276.106500px;}
.x2f{left:277.590000px;}
.x130{left:278.647500px;}
.x8c{left:280.305000px;}
.xb{left:281.656500px;}
.x9a{left:283.171500px;}
.x30{left:285.609000px;}
.xde{left:288.013500px;}
.x143{left:289.224000px;}
.x60{left:290.821500px;}
.x31{left:292.881000px;}
.x9b{left:295.008000px;}
.xc{left:296.247000px;}
.xc8{left:297.735000px;}
.xb9{left:300.295500px;}
.xd{left:301.942500px;}
.x61{left:305.170500px;}
.x125{left:306.642000px;}
.x80{left:310.429500px;}
.xe{left:312.840000px;}
.x32{left:314.409000px;}
.xfa{left:315.538500px;}
.x140{left:317.029500px;}
.xba{left:318.906000px;}
.x2b{left:322.648500px;}
.x81{left:324.289500px;}
.x13b{left:325.732500px;}
.x117{left:326.886000px;}
.xbb{left:327.940500px;}
.x10d{left:329.551500px;}
.x126{left:331.132500px;}
.xa9{left:332.206500px;}
.xfb{left:333.610500px;}
.x103{left:335.797500px;}
.x3{left:337.176000px;}
.x111{left:339.970500px;}
.xce{left:341.086500px;}
.xfc{left:343.432500px;}
.x24{left:344.857500px;}
.xb5{left:346.933500px;}
.x141{left:348.984000px;}
.x33{left:350.893500px;}
.x66{left:352.356000px;}
.x139{left:353.464500px;}
.x10b{left:355.500000px;}
.xae{left:356.512500px;}
.x67{left:358.593000px;}
.x1b{left:360.759000px;}
.xcf{left:362.730000px;}
.x106{left:364.987500px;}
.xc9{left:367.812000px;}
.x2{left:369.108000px;}
.x68{left:370.183500px;}
.x1c{left:371.967000px;}
.x4{left:374.415000px;}
.x12d{left:375.454500px;}
.x1d{left:377.662500px;}
.xb6{left:380.997000px;}
.x86{left:382.462500px;}
.x118{left:383.623500px;}
.x1e{left:385.912500px;}
.x10c{left:387.139500px;}
.xe7{left:389.421000px;}
.x9c{left:391.477500px;}
.x155{left:392.589000px;}
.xf5{left:393.732000px;}
.x87{left:395.442000px;}
.xbc{left:396.685500px;}
.xd7{left:398.149500px;}
.x3f{left:399.564000px;}
.x25{left:401.551500px;}
.x107{left:402.802500px;}
.xbd{left:404.719500px;}
.x156{left:406.659000px;}
.xdf{left:407.836500px;}
.xcb{left:409.086000px;}
.x5{left:412.038000px;}
.xca{left:413.178000px;}
.x74{left:414.189000px;}
.x26{left:416.628000px;}
.x96{left:418.048500px;}
.x12e{left:419.175000px;}
.x9d{left:420.277500px;}
.xb7{left:423.991500px;}
.x119{left:425.454000px;}
.x75{left:428.815500px;}
.xa4{left:430.906500px;}
.x150{left:432.384000px;}
.xa6{left:433.936500px;}
.x27{left:435.396000px;}
.xc1{left:436.411500px;}
.xb8{left:438.421500px;}
.x40{left:439.644000px;}
.x23{left:442.366500px;}
.x15c{left:443.514000px;}
.x69{left:446.368500px;}
.xc2{left:448.684500px;}
.x101{left:450.696000px;}
.x39{left:452.553000px;}
.x41{left:454.983000px;}
.x9e{left:456.762000px;}
.x112{left:457.846500px;}
.x144{left:459.633000px;}
.x6a{left:460.933500px;}
.x160{left:462.681000px;}
.x3a{left:464.388000px;}
.xa5{left:467.847000px;}
.x3b{left:470.688000px;}
.x137{left:472.815000px;}
.xd0{left:474.219000px;}
.xc3{left:476.770500px;}
.xe9{left:478.218000px;}
.x3c{left:480.510000px;}
.x15d{left:482.056500px;}
.x100{left:484.246500px;}
.x82{left:485.626500px;}
.x88{left:488.728500px;}
.xbe{left:489.756000px;}
.x13c{left:491.064000px;}
.x5c{left:492.226500px;}
.x158{left:493.891500px;}
.x102{left:495.807000px;}
.xab{left:497.898000px;}
.x157{left:499.809000px;}
.xaa{left:501.780000px;}
.xaf{left:503.122500px;}
.x83{left:504.526500px;}
.x42{left:505.761000px;}
.x89{left:507.628500px;}
.x5d{left:510.526500px;}
.xd1{left:513.135000px;}
.x10e{left:515.047500px;}
.x43{left:517.035000px;}
.x9f{left:518.712000px;}
.x8a{left:520.420500px;}
.x161{left:521.857500px;}
.xc4{left:523.831500px;}
.x127{left:525.099000px;}
.xbf{left:526.824000px;}
.x6b{left:528.099000px;}
.xea{left:529.725000px;}
.x151{left:531.675000px;}
.x159{left:532.720500px;}
.x145{left:533.728500px;}
.x62{left:534.753000px;}
.xc5{left:536.104500px;}
.x6c{left:539.934000px;}
.xc6{left:542.430000px;}
.x11a{left:544.722000px;}
.x6d{left:546.169500px;}
.x44{left:547.798500px;}
.xa0{left:549.564000px;}
.xc7{left:551.464500px;}
.x11f{left:552.595500px;}
.xd8{left:553.885500px;}
.x8b{left:554.910000px;}
.x6e{left:555.991500px;}
.x93{left:557.433000px;}
.x128{left:559.203000px;}
.x7a{left:560.929500px;}
.x15a{left:561.970500px;}
.x15e{left:563.925000px;}
.x14e{left:566.070000px;}
.xac{left:567.247500px;}
.x45{left:568.572000px;}
.x76{left:569.692500px;}
.x94{left:572.134500px;}
.xad{left:573.483000px;}
.x7b{left:576.223500px;}
.x34{left:577.816500px;}
.xa7{left:579.636000px;}
.x129{left:581.338500px;}
.x46{left:582.826500px;}
.xf{left:584.547000px;}
.x63{left:585.724500px;}
.x14d{left:586.824000px;}
.x35{left:589.651500px;}
.x10f{left:590.719500px;}
.xa8{left:591.909000px;}
.x10{left:595.356000px;}
.x131{left:597.180000px;}
.x8d{left:598.299000px;}
.x11{left:601.051500px;}
.x13{left:602.166000px;}
.x11b{left:604.216500px;}
.x36{left:605.710500px;}
.x5e{left:606.753000px;}
.x120{left:608.065500px;}
.x12{left:610.021500px;}
.x14{left:613.374000px;}
.x162{left:615.901500px;}
.xf6{left:616.953000px;}
.x15{left:619.300500px;}
.x5f{left:621.222000px;}
.xfd{left:625.390500px;}
.xeb{left:627.672000px;}
.xef{left:630.769500px;}
.x132{left:633.717000px;}
.x8e{left:635.035500px;}
.x113{left:637.488000px;}
.x16{left:639.175500px;}
.x154{left:642.076500px;}
.x7c{left:643.405500px;}
.xec{left:645.864000px;}
.x8f{left:646.870500px;}
.x47{left:649.213500px;}
.x28{left:650.244000px;}
.x90{left:653.278500px;}
.x12a{left:655.453500px;}
.x29{left:656.614500px;}
.x77{left:660.297000px;}
.x11c{left:661.524000px;}
.x91{left:663.100500px;}
.x2a{left:666.436500px;}
.xfe{left:667.822500px;}
.x11d{left:669.561000px;}
.x48{left:671.148000px;}
.xe0{left:672.276000px;}
.x56{left:674.538000px;}
.xa1{left:676.318500px;}
.xb0{left:677.827500px;}
.x114{left:678.981000px;}
.xe1{left:680.295000px;}
.xff{left:684.022500px;}
.x17{left:685.099500px;}
.xe2{left:687.567000px;}
.x49{left:693.697500px;}
.x18{left:696.307500px;}
.x1f{left:698.401500px;}
.x57{left:699.576000px;}
.xf0{left:700.755000px;}
.x19{left:702.235500px;}
.xe3{left:703.603500px;}
.x98{left:705.385500px;}
.x4a{left:707.952000px;}
.x1a{left:710.485500px;}
.x58{left:713.491500px;}
.x20{left:714.843000px;}
.x99{left:716.362500px;}
.x14a{left:718.194000px;}
.x4b{left:720.679500px;}
.xb1{left:723.307500px;}
.x7d{left:724.995000px;}
.x59{left:726.951000px;}
.x92{left:728.496000px;}
.x12f{left:729.669000px;}
.xf1{left:731.337000px;}
.x7e{left:732.675000px;}
.x4c{left:734.934000px;}
.x78{left:738.853500px;}
.x153{left:741.081000px;}
.xe4{left:742.203000px;}
.x147{left:743.242500px;}
.xb2{left:745.069500px;}
.xc0{left:747.445500px;}
.x12b{left:748.497000px;}
.x64{left:750.561000px;}
.x7f{left:753.160500px;}
.x4d{left:755.341500px;}
.x5a{left:760.951500px;}
.x14f{left:762.805500px;}
.x65{left:765.264000px;}
.x79{left:770.328000px;}
.xed{left:772.470000px;}
.xe5{left:774.276000px;}
.x5b{left:777.316500px;}
.x12c{left:778.963500px;}
.xee{left:782.292000px;}
.xf2{left:793.992000px;}
.xe6{left:811.549500px;}
.xf3{left:820.356000px;}
@media print{
.v1b{vertical-align:-44.298667pt;}
.v8{vertical-align:-24.021333pt;}
.va{vertical-align:-21.114667pt;}
.vb{vertical-align:-11.477333pt;}
.v2{vertical-align:-9.482667pt;}
.v1{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:8.730667pt;}
.v15{vertical-align:15.856000pt;}
.v14{vertical-align:16.810667pt;}
.v12{vertical-align:17.978667pt;}
.v17{vertical-align:20.064000pt;}
.v9{vertical-align:21.114667pt;}
.v7{vertical-align:24.021333pt;}
.v11{vertical-align:30.666667pt;}
.v6{vertical-align:32.752000pt;}
.vd{vertical-align:36.453333pt;}
.v16{vertical-align:38.762667pt;}
.v4{vertical-align:39.909333pt;}
.vc{vertical-align:44.298667pt;}
.v18{vertical-align:50.730667pt;}
.vf{vertical-align:60.474667pt;}
.v13{vertical-align:63.936000pt;}
.v10{vertical-align:79.269333pt;}
.v1a{vertical-align:110.186667pt;}
.v3{vertical-align:126.128000pt;}
.ve{vertical-align:142.064000pt;}
.v19{vertical-align:144.106667pt;}
.lsb{letter-spacing:0.000000pt;}
.ls3d{letter-spacing:0.000749pt;}
.ls70{letter-spacing:0.000933pt;}
.ls39{letter-spacing:0.000944pt;}
.ls31{letter-spacing:0.001422pt;}
.lsa5{letter-spacing:0.001431pt;}
.lsa3{letter-spacing:0.001891pt;}
.ls9b{letter-spacing:0.001916pt;}
.ls18{letter-spacing:0.002397pt;}
.ls75{letter-spacing:0.002399pt;}
.ls55{letter-spacing:0.002400pt;}
.ls72{letter-spacing:0.002879pt;}
.ls7b{letter-spacing:0.004097pt;}
.ls23{letter-spacing:0.004802pt;}
.ls7d{letter-spacing:0.005308pt;}
.lsb5{letter-spacing:0.006082pt;}
.ls6e{letter-spacing:0.010113pt;}
.lscb{letter-spacing:0.012939pt;}
.ls45{letter-spacing:0.012941pt;}
.ls9f{letter-spacing:0.013019pt;}
.ls57{letter-spacing:0.015900pt;}
.ls36{letter-spacing:0.020626pt;}
.ls84{letter-spacing:0.022276pt;}
.lsc9{letter-spacing:0.022609pt;}
.lsbe{letter-spacing:0.024149pt;}
.ls69{letter-spacing:0.025129pt;}
.lsca{letter-spacing:0.027423pt;}
.lsbb{letter-spacing:0.029530pt;}
.ls28{letter-spacing:0.058182pt;}
.ls4d{letter-spacing:1.147694pt;}
.ls8e{letter-spacing:1.629092pt;}
.ls2{letter-spacing:1.700284pt;}
.ls2d{letter-spacing:1.803638pt;}
.ls47{letter-spacing:1.861820pt;}
.ls3c{letter-spacing:2.653258pt;}
.lsa4{letter-spacing:2.655321pt;}
.ls1d{letter-spacing:2.655975pt;}
.ls20{letter-spacing:2.656853pt;}
.ls5{letter-spacing:2.657673pt;}
.ls9c{letter-spacing:2.658591pt;}
.ls37{letter-spacing:2.658693pt;}
.ls71{letter-spacing:2.659862pt;}
.ls8c{letter-spacing:3.089376pt;}
.lsb8{letter-spacing:3.316366pt;}
.ls14{letter-spacing:3.374548pt;}
.ls32{letter-spacing:3.786350pt;}
.lsba{letter-spacing:3.788942pt;}
.ls2a{letter-spacing:3.791684pt;}
.ls22{letter-spacing:3.905798pt;}
.ls1c{letter-spacing:3.911131pt;}
.lsd{letter-spacing:8.029098pt;}
.lsb0{letter-spacing:8.064054pt;}
.lsad{letter-spacing:8.078517pt;}
.lsaf{letter-spacing:8.083850pt;}
.ls4{letter-spacing:8.087279pt;}
.ls3e{letter-spacing:8.436371pt;}
.lsf{letter-spacing:8.455733pt;}
.lsc4{letter-spacing:8.671505pt;}
.ls82{letter-spacing:9.026591pt;}
.ls91{letter-spacing:9.609648pt;}
.ls13{letter-spacing:9.658190pt;}
.ls54{letter-spacing:9.716372pt;}
.ls16{letter-spacing:10.405777pt;}
.ls1b{letter-spacing:10.867798pt;}
.ls34{letter-spacing:10.877546pt;}
.ls1f{letter-spacing:11.677005pt;}
.lsab{letter-spacing:12.800011pt;}
.ls10{letter-spacing:12.916374pt;}
.ls15{letter-spacing:12.974556pt;}
.lsaa{letter-spacing:13.090920pt;}
.ls7e{letter-spacing:13.207284pt;}
.ls3{letter-spacing:14.771215pt;}
.ls50{letter-spacing:14.778194pt;}
.ls6{letter-spacing:14.894558pt;}
.ls53{letter-spacing:14.952740pt;}
.ls97{letter-spacing:15.476377pt;}
.ls42{letter-spacing:15.554591pt;}
.lsa0{letter-spacing:15.581258pt;}
.ls9e{letter-spacing:15.586591pt;}
.ls8b{letter-spacing:15.709104pt;}
.lsa9{letter-spacing:15.719925pt;}
.lsc0{letter-spacing:16.071733pt;}
.ls76{letter-spacing:16.077067pt;}
.ls21{letter-spacing:16.116377pt;}
.lsb4{letter-spacing:16.151504pt;}
.ls8a{letter-spacing:16.159477pt;}
.ls80{letter-spacing:16.164811pt;}
.ls12{letter-spacing:16.174559pt;}
.lsb2{letter-spacing:16.232741pt;}
.ls1{letter-spacing:16.312097pt;}
.ls92{letter-spacing:16.716942pt;}
.ls2b{letter-spacing:16.719684pt;}
.ls7c{letter-spacing:16.722275pt;}
.ls1e{letter-spacing:16.839131pt;}
.ls0{letter-spacing:17.481042pt;}
.lsb1{letter-spacing:17.570924pt;}
.ls24{letter-spacing:17.803651pt;}
.ls33{letter-spacing:17.978197pt;}
.ls63{letter-spacing:18.036379pt;}
.lsbc{letter-spacing:18.094561pt;}
.ls52{letter-spacing:18.269106pt;}
.ls96{letter-spacing:18.327288pt;}
.ls61{letter-spacing:18.501834pt;}
.ls60{letter-spacing:18.560015pt;}
.ls73{letter-spacing:18.734561pt;}
.ls74{letter-spacing:18.792743pt;}
.ls2e{letter-spacing:18.813258pt;}
.lsa7{letter-spacing:18.815321pt;}
.ls19{letter-spacing:18.815975pt;}
.ls2f{letter-spacing:18.818591pt;}
.lsa6{letter-spacing:18.820654pt;}
.ls1a{letter-spacing:18.831730pt;}
.lsa2{letter-spacing:18.903925pt;}
.ls49{letter-spacing:18.967289pt;}
.ls17{letter-spacing:19.083652pt;}
.ls4a{letter-spacing:19.141834pt;}
.ls83{letter-spacing:19.200016pt;}
.ls35{letter-spacing:19.258198pt;}
.lsa{letter-spacing:19.374562pt;}
.ls26{letter-spacing:19.432743pt;}
.lsb7{letter-spacing:19.490925pt;}
.ls38{letter-spacing:19.587345pt;}
.ls5b{letter-spacing:19.607289pt;}
.lsb3{letter-spacing:19.665471pt;}
.ls98{letter-spacing:19.723653pt;}
.ls5a{letter-spacing:19.781835pt;}
.ls29{letter-spacing:19.951684pt;}
.ls6d{letter-spacing:20.071131pt;}
.ls79{letter-spacing:20.130926pt;}
.ls9a{letter-spacing:20.305471pt;}
.ls62{letter-spacing:20.363653pt;}
.lsae{letter-spacing:20.596381pt;}
.ls44{letter-spacing:20.654563pt;}
.ls3f{letter-spacing:20.770926pt;}
.ls3b{letter-spacing:20.829108pt;}
.ls6c{letter-spacing:21.003654pt;}
.ls9d{letter-spacing:21.120018pt;}
.ls4f{letter-spacing:21.178199pt;}
.ls25{letter-spacing:21.236381pt;}
.ls7f{letter-spacing:21.701836pt;}
.ls85{letter-spacing:22.045258pt;}
.ls7{letter-spacing:22.341837pt;}
.ls66{letter-spacing:22.538144pt;}
.ls58{letter-spacing:22.807292pt;}
.ls86{letter-spacing:22.923655pt;}
.ls40{letter-spacing:23.183684pt;}
.ls48{letter-spacing:23.189017pt;}
.ls95{letter-spacing:23.910400pt;}
.ls5c{letter-spacing:24.320020pt;}
.ls51{letter-spacing:24.436384pt;}
.ls89{letter-spacing:24.602350pt;}
.ls46{letter-spacing:24.607684pt;}
.ls3a{letter-spacing:25.018203pt;}
.lse{letter-spacing:25.418350pt;}
.lsb9{letter-spacing:25.658203pt;}
.ls8f{letter-spacing:25.751676pt;}
.lsa1{letter-spacing:26.065476pt;}
.lsac{letter-spacing:26.298204pt;}
.ls41{letter-spacing:26.356386pt;}
.ls27{letter-spacing:26.530931pt;}
.ls5d{letter-spacing:26.589113pt;}
.ls99{letter-spacing:26.647295pt;}
.ls4c{letter-spacing:26.763659pt;}
.ls30{letter-spacing:26.821841pt;}
.ls4e{letter-spacing:26.996386pt;}
.ls6b{letter-spacing:27.054568pt;}
.lsa8{letter-spacing:27.170932pt;}
.ls2c{letter-spacing:27.461841pt;}
.ls4b{letter-spacing:27.520023pt;}
.ls59{letter-spacing:28.101842pt;}
.ls43{letter-spacing:28.692400pt;}
.ls8{letter-spacing:29.090933pt;}
.lsbd{letter-spacing:29.647684pt;}
.ls9{letter-spacing:30.254571pt;}
.ls88{letter-spacing:33.828811pt;}
.ls81{letter-spacing:35.156811pt;}
.ls77{letter-spacing:35.549121pt;}
.lsc3{letter-spacing:36.853017pt;}
.ls8d{letter-spacing:38.159477pt;}
.lsc2{letter-spacing:38.698144pt;}
.ls90{letter-spacing:39.215477pt;}
.ls94{letter-spacing:42.493067pt;}
.ls6f{letter-spacing:45.807684pt;}
.ls7a{letter-spacing:53.013017pt;}
.ls87{letter-spacing:53.943925pt;}
.ls78{letter-spacing:58.181867pt;}
.ls5f{letter-spacing:59.461868pt;}
.lsbf{letter-spacing:62.709017pt;}
.lsc8{letter-spacing:63.767326pt;}
.lsc1{letter-spacing:69.173017pt;}
.ls56{letter-spacing:70.130400pt;}
.ls11{letter-spacing:73.101067pt;}
.ls65{letter-spacing:86.290400pt;}
.lsb6{letter-spacing:87.272800pt;}
.ls93{letter-spacing:117.496626pt;}
.ls6a{letter-spacing:150.701067pt;}
.ls5e{letter-spacing:167.671733pt;}
.ls68{letter-spacing:171.998800pt;}
.lsc6{letter-spacing:193.105615pt;}
.ls64{letter-spacing:194.018400pt;}
.ls67{letter-spacing:198.567248pt;}
.lsc5{letter-spacing:235.263684pt;}
.lsc7{letter-spacing:268.325017pt;}
.lsc{letter-spacing:1046.586350pt;}
.ws98{word-spacing:-48.465495pt;}
.ws94{word-spacing:-47.616040pt;}
.ws6b{word-spacing:-45.253856pt;}
.ws67{word-spacing:-42.007308pt;}
.wsdc{word-spacing:-40.610943pt;}
.ws109{word-spacing:-40.590295pt;}
.ws17{word-spacing:-37.899668pt;}
.wsb6{word-spacing:-35.025484pt;}
.wsa5{word-spacing:-32.821044pt;}
.ws39{word-spacing:-32.337481pt;}
.ws49{word-spacing:-29.736752pt;}
.wsc{word-spacing:-29.531803pt;}
.ws31{word-spacing:-29.090933pt;}
.ws74{word-spacing:-29.079297pt;}
.wsd3{word-spacing:-28.962933pt;}
.ws40{word-spacing:-28.241478pt;}
.ws41{word-spacing:-28.183296pt;}
.wsa7{word-spacing:-21.725109pt;}
.ws19{word-spacing:-19.840017pt;}
.wse9{word-spacing:-18.560015pt;}
.ws25{word-spacing:-18.525106pt;}
.ws23{word-spacing:-18.466924pt;}
.ws9f{word-spacing:-18.269106pt;}
.ws0{word-spacing:-17.215400pt;}
.ws33{word-spacing:-16.162923pt;}
.wsa0{word-spacing:-15.883650pt;}
.ws7{word-spacing:-14.760588pt;}
.ws30{word-spacing:-14.346200pt;}
.wsea{word-spacing:-14.196375pt;}
.wse6{word-spacing:-14.138194pt;}
.ws1b{word-spacing:-14.080012pt;}
.wsdf{word-spacing:-14.021830pt;}
.wsa1{word-spacing:-13.847284pt;}
.wsd6{word-spacing:-13.789102pt;}
.wse4{word-spacing:-13.672739pt;}
.ws53{word-spacing:-13.556375pt;}
.wscd{word-spacing:-13.440011pt;}
.wscb{word-spacing:-13.381829pt;}
.ws4a{word-spacing:-13.265466pt;}
.wse3{word-spacing:-12.800011pt;}
.wsdb{word-spacing:-12.218192pt;}
.ws104{word-spacing:-12.101828pt;}
.wsce{word-spacing:-12.043646pt;}
.wscf{word-spacing:-11.985465pt;}
.ws68{word-spacing:-11.955200pt;}
.ws54{word-spacing:-11.810919pt;}
.wsd9{word-spacing:-11.752737pt;}
.ws5b{word-spacing:-11.578191pt;}
.wsd7{word-spacing:-11.520010pt;}
.wsa4{word-spacing:-11.467646pt;}
.ws60{word-spacing:-11.345464pt;}
.wsf{word-spacing:-11.170918pt;}
.ws3e{word-spacing:-11.112737pt;}
.wse2{word-spacing:-11.054555pt;}
.ws42{word-spacing:-10.996373pt;}
.wseb{word-spacing:-10.880009pt;}
.ws55{word-spacing:-10.827645pt;}
.wsec{word-spacing:-10.821827pt;}
.ws69{word-spacing:-10.763645pt;}
.ws57{word-spacing:-10.653100pt;}
.ws58{word-spacing:-10.594918pt;}
.ws105{word-spacing:-10.530918pt;}
.wsed{word-spacing:-10.472736pt;}
.wsd5{word-spacing:-10.362190pt;}
.wsd4{word-spacing:-10.304009pt;}
.ws9b{word-spacing:-10.298190pt;}
.ws6{word-spacing:-10.254836pt;}
.ws6d{word-spacing:-10.245827pt;}
.ws4f{word-spacing:-10.181827pt;}
.ws4e{word-spacing:-10.123645pt;}
.wsca{word-spacing:-10.065463pt;}
.ws34{word-spacing:-10.007281pt;}
.ws64{word-spacing:-9.949099pt;}
.ws1d{word-spacing:-9.890917pt;}
.ws50{word-spacing:-9.832735pt;}
.ws4{word-spacing:-9.776631pt;}
.ws26{word-spacing:-9.774554pt;}
.ws12{word-spacing:-9.716372pt;}
.ws28{word-spacing:-9.658190pt;}
.wsa3{word-spacing:-9.605826pt;}
.ws6f{word-spacing:-9.600008pt;}
.ws43{word-spacing:-9.541826pt;}
.ws7c{word-spacing:-9.483644pt;}
.ws9c{word-spacing:-9.431281pt;}
.ws96{word-spacing:-9.425462pt;}
.ws1c{word-spacing:-9.367281pt;}
.wsc9{word-spacing:-9.314917pt;}
.ws4c{word-spacing:-9.309099pt;}
.ws1e{word-spacing:-9.250917pt;}
.ws66{word-spacing:-9.198553pt;}
.ws35{word-spacing:-9.140371pt;}
.ws5{word-spacing:-9.085891pt;}
.ws61{word-spacing:-9.082189pt;}
.wsd{word-spacing:-9.032757pt;}
.ws56{word-spacing:-8.965826pt;}
.ws21{word-spacing:-8.907644pt;}
.ws3{word-spacing:-8.873356pt;}
.wsf3{word-spacing:-8.849462pt;}
.ws44{word-spacing:-8.791280pt;}
.wsc3{word-spacing:-8.785462pt;}
.ws46{word-spacing:-8.733098pt;}
.wsbf{word-spacing:-8.727280pt;}
.ws7b{word-spacing:-8.674916pt;}
.ws8a{word-spacing:-8.669098pt;}
.ws6a{word-spacing:-8.616734pt;}
.ws7e{word-spacing:-8.558553pt;}
.ws62{word-spacing:-8.552734pt;}
.wse5{word-spacing:-8.500371pt;}
.wsc1{word-spacing:-8.494553pt;}
.ws1f{word-spacing:-8.442189pt;}
.ws8{word-spacing:-8.342017pt;}
.ws97{word-spacing:-8.203643pt;}
.ws20{word-spacing:-8.151280pt;}
.ws2{word-spacing:-8.134795pt;}
.wsc0{word-spacing:-8.034916pt;}
.ws2f{word-spacing:-7.918552pt;}
.ws65{word-spacing:-7.627643pt;}
.ws5c{word-spacing:-7.569461pt;}
.ws92{word-spacing:-7.394915pt;}
.wsf1{word-spacing:-7.278552pt;}
.ws59{word-spacing:-7.272733pt;}
.wsd0{word-spacing:-7.220370pt;}
.wsc2{word-spacing:-7.104006pt;}
.wse1{word-spacing:-7.045824pt;}
.ws2c{word-spacing:-6.865460pt;}
.wsf6{word-spacing:-6.574551pt;}
.ws6e{word-spacing:-6.458187pt;}
.ws2e{word-spacing:-6.405824pt;}
.ws79{word-spacing:-6.283642pt;}
.wsa9{word-spacing:-6.167278pt;}
.wsee{word-spacing:-6.109096pt;}
.ws70{word-spacing:-5.992732pt;}
.wsb2{word-spacing:-5.934550pt;}
.ws3f{word-spacing:-5.882187pt;}
.wsaa{word-spacing:-5.707641pt;}
.ws9d{word-spacing:-5.410914pt;}
.ws2d{word-spacing:-5.358550pt;}
.ws71{word-spacing:-5.125822pt;}
.wsa2{word-spacing:-5.067641pt;}
.wsd2{word-spacing:-4.829095pt;}
.ws81{word-spacing:-4.770913pt;}
.ws84{word-spacing:-4.712731pt;}
.ws90{word-spacing:-4.596367pt;}
.wsd1{word-spacing:-4.544004pt;}
.ws91{word-spacing:-4.538186pt;}
.ws9{word-spacing:-4.410111pt;}
.wsdd{word-spacing:-4.363640pt;}
.wsa{word-spacing:-4.096621pt;}
.ws51{word-spacing:-4.002912pt;}
.wsc8{word-spacing:-3.671276pt;}
.wsb7{word-spacing:-3.479276pt;}
.ws6c{word-spacing:-3.304730pt;}
.ws82{word-spacing:-3.264003pt;}
.ws24{word-spacing:-3.246548pt;}
.ws2a{word-spacing:-3.188366pt;}
.ws7d{word-spacing:-3.072003pt;}
.ws4d{word-spacing:-2.955639pt;}
.ws78{word-spacing:-2.914912pt;}
.ws5a{word-spacing:-1.617456pt;}
.wsda{word-spacing:-0.989092pt;}
.wse7{word-spacing:-0.814546pt;}
.ws72{word-spacing:-0.802910pt;}
.wsb4{word-spacing:-0.744728pt;}
.ws76{word-spacing:-0.645819pt;}
.ws5e{word-spacing:-0.162909pt;}
.ws5d{word-spacing:-0.104727pt;}
.ws10{word-spacing:-0.058182pt;}
.ws29{word-spacing:-0.046545pt;}
.ws38{word-spacing:-0.042507pt;}
.ws22{word-spacing:-0.021501pt;}
.ws85{word-spacing:-0.015193pt;}
.ws16{word-spacing:0.000000pt;}
.ws36{word-spacing:0.011636pt;}
.ws73{word-spacing:0.069818pt;}
.wsb0{word-spacing:0.128000pt;}
.ws7f{word-spacing:0.244364pt;}
.ws4b{word-spacing:0.302546pt;}
.wsd8{word-spacing:1.175274pt;}
.wse{word-spacing:1.803638pt;}
.ws10a{word-spacing:2.746184pt;}
.ws9e{word-spacing:2.961457pt;}
.ws5f{word-spacing:3.037093pt;}
.ws27{word-spacing:3.211639pt;}
.ws80{word-spacing:3.269821pt;}
.ws8d{word-spacing:3.328003pt;}
.ws88{word-spacing:3.444367pt;}
.ws10c{word-spacing:3.560730pt;}
.ws7a{word-spacing:3.618912pt;}
.ws8b{word-spacing:4.258913pt;}
.ws75{word-spacing:4.666186pt;}
.ws9a{word-spacing:6.372299pt;}
.wsa8{word-spacing:6.375211pt;}
.wsb3{word-spacing:6.528005pt;}
.wsb{word-spacing:7.715037pt;}
.ws18{word-spacing:7.866188pt;}
.ws83{word-spacing:8.157098pt;}
.ws8f{word-spacing:8.331643pt;}
.ws14{word-spacing:9.192735pt;}
.ws89{word-spacing:9.204371pt;}
.ws13{word-spacing:9.250917pt;}
.wsb1{word-spacing:9.378917pt;}
.wsef{word-spacing:9.669826pt;}
.ws8c{word-spacing:9.786190pt;}
.ws87{word-spacing:10.018917pt;}
.ws63{word-spacing:10.193463pt;}
.ws32{word-spacing:10.251645pt;}
.ws11{word-spacing:14.778194pt;}
.wsc4{word-spacing:15.270771pt;}
.wsf0{word-spacing:15.521381pt;}
.ws77{word-spacing:15.524123pt;}
.ws99{word-spacing:15.526715pt;}
.ws93{word-spacing:15.529457pt;}
.wsf2{word-spacing:16.068299pt;}
.wsf4{word-spacing:16.186195pt;}
.wsc5{word-spacing:16.280258pt;}
.wsb9{word-spacing:17.064186pt;}
.wsb5{word-spacing:18.318790pt;}
.ws3c{word-spacing:18.755644pt;}
.ws3d{word-spacing:18.762461pt;}
.wscc{word-spacing:18.767455pt;}
.ws3a{word-spacing:18.771729pt;}
.wsa6{word-spacing:18.773467pt;}
.ws52{word-spacing:19.434319pt;}
.wsb8{word-spacing:19.797645pt;}
.ws47{word-spacing:20.712745pt;}
.ws45{word-spacing:20.887290pt;}
.wsaf{word-spacing:22.482449pt;}
.wsae{word-spacing:22.485191pt;}
.wsad{word-spacing:22.487933pt;}
.wsab{word-spacing:22.490675pt;}
.wsf5{word-spacing:22.537632pt;}
.ws1{word-spacing:23.591437pt;}
.ws106{word-spacing:27.671296pt;}
.wsde{word-spacing:29.043113pt;}
.wsac{word-spacing:29.940389pt;}
.ws15{word-spacing:31.767299pt;}
.wse8{word-spacing:34.544134pt;}
.ws103{word-spacing:34.676393pt;}
.wsbe{word-spacing:36.974411pt;}
.ws3b{word-spacing:42.018944pt;}
.ws1a{word-spacing:43.038600pt;}
.wsbd{word-spacing:51.516011pt;}
.ws102{word-spacing:63.767326pt;}
.wsbc{word-spacing:66.062944pt;}
.wsba{word-spacing:67.953381pt;}
.wsbb{word-spacing:80.609877pt;}
.ws2b{word-spacing:88.122255pt;}
.ws37{word-spacing:88.180437pt;}
.ws10b{word-spacing:89.322144pt;}
.ws48{word-spacing:90.740439pt;}
.ws101{word-spacing:92.858259pt;}
.wse0{word-spacing:116.315913pt;}
.ws95{word-spacing:119.991211pt;}
.ws100{word-spacing:121.949193pt;}
.wsc7{word-spacing:123.997194pt;}
.ws86{word-spacing:136.967211pt;}
.wsff{word-spacing:151.040126pt;}
.ws108{word-spacing:162.909227pt;}
.ws8e{word-spacing:163.313877pt;}
.wsfe{word-spacing:180.131059pt;}
.wsc6{word-spacing:205.044535pt;}
.wsfd{word-spacing:209.221993pt;}
.wsfc{word-spacing:238.312926pt;}
.wsfb{word-spacing:267.403859pt;}
.wsfa{word-spacing:296.494793pt;}
.ws107{word-spacing:323.526715pt;}
.wsf9{word-spacing:325.585726pt;}
.wsf7{word-spacing:342.900649pt;}
.wsf8{word-spacing:354.676659pt;}
._26{margin-left:-33.454573pt;}
._13{margin-left:-29.149115pt;}
._34{margin-left:-23.272747pt;}
._2f{margin-left:-19.515906pt;}
._20{margin-left:-15.989667pt;}
._6{margin-left:-14.771215pt;}
._2b{margin-left:-12.916374pt;}
._0{margin-left:-8.630654pt;}
._1f{margin-left:-7.192228pt;}
._a{margin-left:-5.527277pt;}
._4{margin-left:-4.356977pt;}
._2{margin-left:-2.709827pt;}
._1{margin-left:-1.487748pt;}
._3{width:1.487748pt;}
._7{width:2.709827pt;}
._1d{width:4.247276pt;}
._22{width:5.294550pt;}
._2d{width:6.516369pt;}
._2e{width:7.508739pt;}
._5{width:8.554553pt;}
._29{width:9.716372pt;}
._24{width:12.800011pt;}
._2c{width:15.909767pt;}
._3d{width:17.953476pt;}
._23{width:18.993964pt;}
._1b{width:20.114427pt;}
._25{width:21.824863pt;}
._2a{width:23.098201pt;}
._21{width:24.521364pt;}
._15{width:25.891190pt;}
._3f{width:26.879763pt;}
._3e{width:29.090933pt;}
._12{width:29.996863pt;}
._28{width:31.767299pt;}
._9{width:32.872755pt;}
._c{width:35.258211pt;}
._40{width:38.649533pt;}
._14{width:41.134580pt;}
._11{width:43.287309pt;}
._3c{width:48.465495pt;}
._16{width:58.356412pt;}
._30{width:59.777757pt;}
._41{width:63.767326pt;}
._31{width:68.363693pt;}
._27{width:71.731200pt;}
._5a{width:76.388800pt;}
._58{width:82.855211pt;}
._1e{width:86.077200pt;}
._59{width:90.925067pt;}
._3b{width:119.670667pt;}
._3a{width:121.191733pt;}
._56{width:133.294657pt;}
._38{width:135.735733pt;}
._39{width:148.766933pt;}
._35{width:150.279733pt;}
._55{width:162.385590pt;}
._37{width:177.857867pt;}
._47{width:180.131059pt;}
._1c{width:187.461974pt;}
._54{width:191.476523pt;}
._36{width:192.401867pt;}
._46{width:209.221993pt;}
._53{width:220.567457pt;}
._45{width:238.312926pt;}
._52{width:249.658390pt;}
._44{width:267.403859pt;}
._51{width:278.749323pt;}
._43{width:296.494793pt;}
._50{width:307.840257pt;}
._42{width:325.585726pt;}
._4f{width:336.931190pt;}
._4b{width:354.676659pt;}
._4e{width:366.022123pt;}
._32{width:370.676673pt;}
._49{width:383.767593pt;}
._4d{width:395.113057pt;}
._57{width:412.858526pt;}
._33{width:423.040353pt;}
._4c{width:424.203990pt;}
._4a{width:453.294923pt;}
._48{width:482.385857pt;}
._19{width:956.618030pt;}
._10{width:1183.519033pt;}
._f{width:1207.938714pt;}
._b{width:1234.619470pt;}
._17{width:1284.838643pt;}
._1a{width:1392.749303pt;}
._d{width:1432.495739pt;}
._e{width:1521.473481pt;}
._18{width:1708.510515pt;}
._8{width:1925.535132pt;}
.fs2{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs6{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:54.637333pt;}
.y43{bottom:94.488000pt;}
.y88{bottom:104.354667pt;}
.y1c{bottom:106.773333pt;}
.y140{bottom:113.673333pt;}
.y10d{bottom:120.836000pt;}
.y18f{bottom:128.206667pt;}
.y10e{bottom:130.813333pt;}
.y42{bottom:134.125333pt;}
.y13f{bottom:135.586667pt;}
.y87{bottom:135.662667pt;}
.y10f{bottom:138.805333pt;}
.y10c{bottom:140.653333pt;}
.y1b{bottom:143.232000pt;}
.y16e{bottom:144.377333pt;}
.yd8{bottom:149.901333pt;}
.y64{bottom:153.948000pt;}
.yb9{bottom:154.834667pt;}
.y10b{bottom:157.468000pt;}
.y13e{bottom:157.500000pt;}
.yd7{bottom:159.878667pt;}
.y18e{bottom:161.700000pt;}
.y16d{bottom:166.292000pt;}
.y41{bottom:173.764000pt;}
.y63{bottom:175.862667pt;}
.y86{bottom:178.573333pt;}
.y109{bottom:179.381333pt;}
.y13d{bottom:179.414667pt;}
.y1a{bottom:179.692000pt;}
.y18d{bottom:183.613333pt;}
.y10a{bottom:184.660000pt;}
.yb8{bottom:187.165333pt;}
.y16c{bottom:188.205333pt;}
.y1cb{bottom:191.433333pt;}
.yb7{bottom:192.648000pt;}
.yb6{bottom:197.142667pt;}
.y62{bottom:197.776000pt;}
.y85{bottom:200.486667pt;}
.y106{bottom:201.294667pt;}
.y13c{bottom:201.328000pt;}
.yd6{bottom:203.154667pt;}
.y40{bottom:205.804000pt;}
.y108{bottom:206.573333pt;}
.y107{bottom:212.369333pt;}
.y19{bottom:216.150667pt;}
.y18c{bottom:221.016000pt;}
.y16b{bottom:222.073333pt;}
.y84{bottom:222.400000pt;}
.y13b{bottom:223.241333pt;}
.y1ca{bottom:227.598667pt;}
.y61{bottom:231.644000pt;}
.yd5{bottom:234.462667pt;}
.y105{bottom:235.878667pt;}
.yb5{bottom:242.921333pt;}
.y18b{bottom:242.929333pt;}
.y16a{bottom:243.986667pt;}
.y83{bottom:244.314667pt;}
.y139{bottom:245.154667pt;}
.y3f{bottom:245.441333pt;}
.y101{bottom:246.334667pt;}
.y104{bottom:246.621333pt;}
.yfd{bottom:249.045333pt;}
.y1c9{bottom:249.512000pt;}
.y100{bottom:250.320000pt;}
.y13a{bottom:250.433333pt;}
.y18{bottom:252.609333pt;}
.y60{bottom:253.557333pt;}
.yfc{bottom:258.638667pt;}
.y169{bottom:265.900000pt;}
.y82{bottom:266.228000pt;}
.y138{bottom:267.068000pt;}
.y103{bottom:268.121333pt;}
.y1c8{bottom:271.425333pt;}
.yff{bottom:274.230667pt;}
.y17{bottom:274.522667pt;}
.y5f{bottom:275.470667pt;}
.y18a{bottom:276.648000pt;}
.yd4{bottom:277.373333pt;}
.y1aa{bottom:277.634667pt;}
.yfe{bottom:278.216000pt;}
.y102{bottom:278.864000pt;}
.y1a9{bottom:282.129333pt;}
.yb4{bottom:282.558667pt;}
.y3e{bottom:285.080000pt;}
.y81{bottom:288.141333pt;}
.y137{bottom:288.981333pt;}
.y1c7{bottom:293.338667pt;}
.y16{bottom:296.436000pt;}
.y189{bottom:298.561333pt;}
.y168{bottom:302.217333pt;}
.y1a8{bottom:304.044000pt;}
.y80{bottom:310.054667pt;}
.y136{bottom:310.894667pt;}
.y5e{bottom:311.788000pt;}
.yfb{bottom:314.233333pt;}
.y1c6{bottom:315.253333pt;}
.yd3{bottom:317.012000pt;}
.y3d{bottom:317.466667pt;}
.y15{bottom:318.349333pt;}
.y188{bottom:320.474667pt;}
.yb3{bottom:322.196000pt;}
.y7f{bottom:331.968000pt;}
.y135{bottom:332.808000pt;}
.yfa{bottom:336.146667pt;}
.y1c5{bottom:337.166667pt;}
.y1a7{bottom:337.912000pt;}
.y3c{bottom:339.380000pt;}
.y14{bottom:340.264000pt;}
.yb2{bottom:344.109333pt;}
.yd2{bottom:352.154667pt;}
.y167{bottom:353.140000pt;}
.y7e{bottom:353.881333pt;}
.y187{bottom:354.193333pt;}
.yd1{bottom:356.649333pt;}
.y1c4{bottom:359.080000pt;}
.y1a6{bottom:359.825333pt;}
.y3b{bottom:361.293333pt;}
.y13{bottom:362.177333pt;}
.y5d{bottom:362.710667pt;}
.y134{bottom:366.677333pt;}
.yb1{bottom:368.001333pt;}
.yf9{bottom:368.330667pt;}
.y166{bottom:375.053333pt;}
.y7d{bottom:375.794667pt;}
.y186{bottom:376.106667pt;}
.yb0{bottom:377.978667pt;}
.yd0{bottom:378.562667pt;}
.y1c3{bottom:380.993333pt;}
.y5b{bottom:384.624000pt;}
.y133{bottom:388.590667pt;}
.y5c{bottom:389.902667pt;}
.yf8{bottom:390.244000pt;}
.y1a4{bottom:392.157333pt;}
.y165{bottom:396.966667pt;}
.y3a{bottom:397.610667pt;}
.y1a5{bottom:397.640000pt;}
.y185{bottom:398.020000pt;}
.y12{bottom:398.636000pt;}
.y1a3{bottom:402.134667pt;}
.y1c2{bottom:402.906667pt;}
.y7c{bottom:409.664000pt;}
.yf7{bottom:412.157333pt;}
.ycf{bottom:412.430667pt;}
.yaf{bottom:413.760000pt;}
.y5a{bottom:418.493333pt;}
.y164{bottom:418.880000pt;}
.y1f7{bottom:420.090667pt;}
.y12f{bottom:421.058667pt;}
.yae{bottom:423.737333pt;}
.y131{bottom:424.694667pt;}
.y1c1{bottom:424.820000pt;}
.y132{bottom:425.312000pt;}
.y184{bottom:431.738667pt;}
.y1f6{bottom:433.661333pt;}
.y12e{bottom:433.724000pt;}
.yce{bottom:434.345333pt;}
.y11{bottom:435.094667pt;}
.y130{bottom:437.360000pt;}
.y1f5{bottom:438.156000pt;}
.y7b{bottom:439.324000pt;}
.y59{bottom:440.406667pt;}
.y163{bottom:440.794667pt;}
.yf6{bottom:441.368000pt;}
.y12d{bottom:443.337333pt;}
.y1c0{bottom:446.733333pt;}
.y1a2{bottom:447.912000pt;}
.y39{bottom:448.188000pt;}
.y7a{bottom:449.301333pt;}
.y183{bottom:453.652000pt;}
.ycd{bottom:456.258667pt;}
.yad{bottom:459.518667pt;}
.y57{bottom:462.320000pt;}
.y162{bottom:462.708000pt;}
.yf5{bottom:463.281333pt;}
.y58{bottom:467.598667pt;}
.y1bf{bottom:468.646667pt;}
.yab{bottom:469.497333pt;}
.y1a1{bottom:469.825333pt;}
.y38{bottom:470.101333pt;}
.y10{bottom:471.553333pt;}
.y1ed{bottom:471.924000pt;}
.y182{bottom:475.565333pt;}
.yac{bottom:479.337333pt;}
.y12c{bottom:482.976000pt;}
.y161{bottom:484.621333pt;}
.ycc{bottom:484.801333pt;}
.y1be{bottom:490.560000pt;}
.y1dd{bottom:493.198667pt;}
.y79{bottom:494.488000pt;}
.y56{bottom:496.188000pt;}
.yf4{bottom:497.902667pt;}
.yf3{bottom:498.954667pt;}
.yf2{bottom:502.918667pt;}
.y12b{bottom:504.889333pt;}
.y160{bottom:506.534667pt;}
.yf{bottom:508.013333pt;}
.y1a0{bottom:508.134667pt;}
.yaa{bottom:508.914667pt;}
.y181{bottom:509.284000pt;}
.y37{bottom:509.738667pt;}
.ycb{bottom:510.700000pt;}
.y19f{bottom:513.617333pt;}
.y1de{bottom:515.064000pt;}
.y54{bottom:518.101333pt;}
.y19e{bottom:518.112000pt;}
.y1bd{bottom:519.772000pt;}
.y55{bottom:523.380000pt;}
.y12a{bottom:526.802667pt;}
.y78{bottom:528.357333pt;}
.y15f{bottom:528.448000pt;}
.yca{bottom:536.598667pt;}
.ya9{bottom:541.705333pt;}
.y1df{bottom:542.373333pt;}
.yf1{bottom:542.556000pt;}
.ye{bottom:544.472000pt;}
.y129{bottom:548.716000pt;}
.y180{bottom:548.921333pt;}
.y36{bottom:549.376000pt;}
.y77{bottom:550.270667pt;}
.y15e{bottom:550.361333pt;}
.y53{bottom:550.489333pt;}
.ya8{bottom:551.682667pt;}
.yc9{bottom:562.497333pt;}
.y19d{bottom:563.081333pt;}
.y1e0{bottom:569.682667pt;}
.y1bc{bottom:570.985333pt;}
.y35{bottom:571.290667pt;}
.y76{bottom:572.184000pt;}
.y52{bottom:572.402667pt;}
.y15d{bottom:575.056000pt;}
.yf0{bottom:577.178667pt;}
.yef{bottom:578.230667pt;}
.yd{bottom:580.930667pt;}
.yc8{bottom:581.993333pt;}
.yee{bottom:582.194667pt;}
.y128{bottom:582.585333pt;}
.y159{bottom:584.721333pt;}
.y19c{bottom:584.994667pt;}
.y15c{bottom:585.798667pt;}
.y154{bottom:587.430667pt;}
.y17f{bottom:588.558667pt;}
.y158{bottom:588.705333pt;}
.y155{bottom:592.529333pt;}
.y75{bottom:594.097333pt;}
.y51{bottom:594.316000pt;}
.ya7{bottom:596.061333pt;}
.y1e1{bottom:596.992000pt;}
.y153{bottom:597.025333pt;}
.y34{bottom:601.252000pt;}
.y127{bottom:604.498667pt;}
.y15b{bottom:605.716000pt;}
.y157{bottom:612.616000pt;}
.y1bb{bottom:614.902667pt;}
.y74{bottom:616.010667pt;}
.y30{bottom:616.078667pt;}
.y15a{bottom:616.458667pt;}
.y156{bottom:616.601333pt;}
.ya6{bottom:617.974667pt;}
.y2f{bottom:620.064000pt;}
.y33{bottom:621.069333pt;}
.yc7{bottom:621.632000pt;}
.yed{bottom:621.832000pt;}
.y19b{bottom:623.358667pt;}
.y17e{bottom:625.961333pt;}
.y126{bottom:626.412000pt;}
.y1e2{bottom:627.198667pt;}
.y2c{bottom:628.382667pt;}
.y50{bottom:630.633333pt;}
.yc{bottom:631.853333pt;}
.y1ba{bottom:632.968000pt;}
.y152{bottom:633.296000pt;}
.y1da{bottom:633.868000pt;}
.y32{bottom:634.402667pt;}
.y73{bottom:637.925333pt;}
.y2e{bottom:643.974667pt;}
.y19a{bottom:645.272000pt;}
.yc6{bottom:647.529333pt;}
.y17d{bottom:647.874667pt;}
.ya5{bottom:647.936000pt;}
.y2d{bottom:647.960000pt;}
.y125{bottom:648.325333pt;}
.yec{bottom:651.041333pt;}
.yb{bottom:651.188000pt;}
.y31{bottom:654.220000pt;}
.y1e3{bottom:654.508000pt;}
.y151{bottom:655.209333pt;}
.y72{bottom:659.838667pt;}
.ya1{bottom:662.573333pt;}
.ya0{bottom:666.558667pt;}
.y199{bottom:667.186667pt;}
.ya4{bottom:667.753333pt;}
.y1b9{bottom:669.736000pt;}
.y1d9{bottom:670.033333pt;}
.ya{bottom:670.524000pt;}
.y9f{bottom:670.544000pt;}
.yeb{bottom:672.954667pt;}
.y9b{bottom:678.862667pt;}
.y124{bottom:679.632000pt;}
.y4f{bottom:681.554667pt;}
.y71{bottom:681.752000pt;}
.y1e4{bottom:681.818667pt;}
.y17c{bottom:684.193333pt;}
.ya3{bottom:684.585333pt;}
.y2b{bottom:685.476000pt;}
.yc5{bottom:687.168000pt;}
.y150{bottom:688.044000pt;}
.y9{bottom:689.858667pt;}
.y1b8{bottom:691.649333pt;}
.y1d8{bottom:691.946667pt;}
.y9e{bottom:694.454667pt;}
.y14c{bottom:697.708000pt;}
.y9d{bottom:698.440000pt;}
.y14f{bottom:698.786667pt;}
.y147{bottom:700.418667pt;}
.y198{bottom:701.054667pt;}
.y14b{bottom:701.693333pt;}
.y9c{bottom:702.424000pt;}
.yea{bottom:702.614667pt;}
.y4e{bottom:703.469333pt;}
.y70{bottom:703.665333pt;}
.ya2{bottom:704.404000pt;}
.y1ee{bottom:705.120000pt;}
.y148{bottom:705.517333pt;}
.y2a{bottom:707.389333pt;}
.yc4{bottom:709.081333pt;}
.y1e5{bottom:709.128000pt;}
.y8{bottom:709.194667pt;}
.y146{bottom:710.012000pt;}
.y123{bottom:712.212000pt;}
.y1b7{bottom:713.562667pt;}
.y1d7{bottom:713.860000pt;}
.y14e{bottom:718.704000pt;}
.ye9{bottom:722.432000pt;}
.y197{bottom:722.968000pt;}
.y4d{bottom:725.382667pt;}
.y14a{bottom:725.604000pt;}
.y11f{bottom:726.710667pt;}
.y7{bottom:728.529333pt;}
.y11b{bottom:729.037333pt;}
.y29{bottom:729.304000pt;}
.y119{bottom:729.420000pt;}
.y14d{bottom:729.446667pt;}
.y149{bottom:729.589333pt;}
.y11e{bottom:730.694667pt;}
.y122{bottom:732.030667pt;}
.y17b{bottom:735.044000pt;}
.y1b6{bottom:735.476000pt;}
.y1d6{bottom:735.774667pt;}
.y1e6{bottom:736.437333pt;}
.y6f{bottom:737.534667pt;}
.y118{bottom:739.014667pt;}
.y9a{bottom:739.750667pt;}
.y121{bottom:744.110667pt;}
.yc3{bottom:744.718667pt;}
.y4b{bottom:747.296000pt;}
.y6{bottom:747.865333pt;}
.y11a{bottom:748.854667pt;}
.y28{bottom:751.217333pt;}
.y4c{bottom:752.574667pt;}
.ye8{bottom:754.281333pt;}
.y11d{bottom:754.605333pt;}
.yc2{bottom:754.696000pt;}
.y196{bottom:756.837333pt;}
.y17a{bottom:756.957333pt;}
.y1b5{bottom:757.390667pt;}
.y1d5{bottom:757.688000pt;}
.y11c{bottom:758.590667pt;}
.y6e{bottom:759.448000pt;}
.y1e7{bottom:763.746667pt;}
.y120{bottom:763.929333pt;}
.y145{bottom:764.816000pt;}
.y49{bottom:769.209333pt;}
.y27{bottom:773.130667pt;}
.y99{bottom:773.618667pt;}
.y4a{bottom:774.488000pt;}
.y5{bottom:775.502667pt;}
.ye7{bottom:776.194667pt;}
.y1b4{bottom:779.304000pt;}
.y1d4{bottom:779.601333pt;}
.y6d{bottom:781.361333pt;}
.y144{bottom:786.729333pt;}
.y1f4{bottom:791.053333pt;}
.y1e8{bottom:791.056000pt;}
.y195{bottom:793.154667pt;}
.yc1{bottom:794.334667pt;}
.y26{bottom:795.044000pt;}
.y98{bottom:795.533333pt;}
.y117{bottom:795.777333pt;}
.ye6{bottom:798.108000pt;}
.y1b3{bottom:801.217333pt;}
.y1d3{bottom:801.514667pt;}
.y48{bottom:803.077333pt;}
.y179{bottom:804.394667pt;}
.y143{bottom:808.642667pt;}
.y1f3{bottom:809.457333pt;}
.y6c{bottom:812.668000pt;}
.yc0{bottom:816.248000pt;}
.y25{bottom:816.957333pt;}
.y97{bottom:817.446667pt;}
.y116{bottom:817.690667pt;}
.y1e9{bottom:818.365333pt;}
.y1b2{bottom:823.130667pt;}
.y1d2{bottom:823.428000pt;}
.y178{bottom:826.308000pt;}
.ye5{bottom:827.768000pt;}
.y1f2{bottom:827.861333pt;}
.y4{bottom:832.597333pt;}
.y142{bottom:838.526667pt;}
.y24{bottom:838.870667pt;}
.y96{bottom:839.360000pt;}
.y47{bottom:842.716000pt;}
.y194{bottom:844.076000pt;}
.y1b1{bottom:845.044000pt;}
.y1d1{bottom:845.341333pt;}
.y1ea{bottom:845.674667pt;}
.ye4{bottom:847.585333pt;}
.y177{bottom:848.221333pt;}
.y1f1{bottom:848.605333pt;}
.ybf{bottom:850.116000pt;}
.y115{bottom:851.560000pt;}
.y6a{bottom:855.580000pt;}
.y141{bottom:860.440000pt;}
.y95{bottom:861.273333pt;}
.y6b{bottom:863.572000pt;}
.y1b0{bottom:866.957333pt;}
.y1d0{bottom:867.254667pt;}
.y3{bottom:869.056000pt;}
.y1f0{bottom:869.348000pt;}
.y176{bottom:870.134667pt;}
.y1eb{bottom:872.984000pt;}
.y23{bottom:875.188000pt;}
.y69{bottom:877.493333pt;}
.y193{bottom:877.945333pt;}
.ye3{bottom:879.434667pt;}
.y46{bottom:882.353333pt;}
.ybe{bottom:883.985333pt;}
.y114{bottom:887.206667pt;}
.y1af{bottom:888.870667pt;}
.y1cf{bottom:889.168000pt;}
.y1ef{bottom:890.092000pt;}
.y94{bottom:895.141333pt;}
.y173{bottom:895.972000pt;}
.y68{bottom:899.406667pt;}
.y1ec{bottom:900.294667pt;}
.y175{bottom:900.594667pt;}
.y45{bottom:904.266667pt;}
.y171{bottom:904.290667pt;}
.ybd{bottom:905.898667pt;}
.y113{bottom:909.120000pt;}
.ye2{bottom:909.396000pt;}
.y1ae{bottom:910.784000pt;}
.y1ce{bottom:911.081333pt;}
.y192{bottom:911.813333pt;}
.y2{bottom:913.432000pt;}
.y172{bottom:919.882667pt;}
.yde{bottom:923.570667pt;}
.y93{bottom:925.104000pt;}
.y22{bottom:925.765333pt;}
.y174{bottom:926.890667pt;}
.ydd{bottom:927.556000pt;}
.ye1{bottom:929.213333pt;}
.y112{bottom:931.033333pt;}
.y1ad{bottom:932.697333pt;}
.y1cd{bottom:932.996000pt;}
.y67{bottom:933.274667pt;}
.yda{bottom:935.874667pt;}
.y8f{bottom:937.992000pt;}
.ybc{bottom:938.285333pt;}
.y170{bottom:939.188000pt;}
.y44{bottom:940.584000pt;}
.ye0{bottom:940.648000pt;}
.y8e{bottom:941.977333pt;}
.y92{bottom:944.921333pt;}
.y191{bottom:945.682667pt;}
.y8d{bottom:945.961333pt;}
.y21{bottom:947.678667pt;}
.y1{bottom:948.880000pt;}
.ydc{bottom:951.465333pt;}
.y111{bottom:952.946667pt;}
.y89{bottom:954.281333pt;}
.y66{bottom:955.189333pt;}
.ydb{bottom:955.450667pt;}
.y1dc{bottom:955.704000pt;}
.y1ac{bottom:957.413333pt;}
.y91{bottom:960.004000pt;}
.ybb{bottom:960.198667pt;}
.ydf{bottom:960.465333pt;}
.y1ab{bottom:961.908000pt;}
.y1cc{bottom:962.206667pt;}
.y16f{bottom:962.486667pt;}
.y20{bottom:969.592000pt;}
.y8c{bottom:969.872000pt;}
.y8b{bottom:973.857333pt;}
.y110{bottom:975.392000pt;}
.y65{bottom:977.102667pt;}
.y1db{bottom:977.617333pt;}
.y8a{bottom:977.842667pt;}
.y190{bottom:979.550667pt;}
.y90{bottom:979.821333pt;}
.yba{bottom:982.112000pt;}
.y1f{bottom:991.506667pt;}
.y1e{bottom:1013.420000pt;}
.yd9{bottom:1018.698667pt;}
.h9{height:17.746711pt;}
.he{height:29.499997pt;}
.h26{height:29.585011pt;}
.h10{height:31.880400pt;}
.h4{height:39.850400pt;}
.h23{height:40.930711pt;}
.h6{height:43.636400pt;}
.h3{height:48.298685pt;}
.hd{height:50.614663pt;}
.h7{height:52.887317pt;}
.h16{height:52.989733pt;}
.h18{height:52.995067pt;}
.hb{height:53.521330pt;}
.hc{height:53.526663pt;}
.h29{height:55.901733pt;}
.h11{height:57.895049pt;}
.h1e{height:61.615067pt;}
.hf{height:62.045378pt;}
.h1b{height:62.547067pt;}
.h2c{height:62.552400pt;}
.h5{height:69.473865pt;}
.h20{height:70.643067pt;}
.h2e{height:70.865983pt;}
.h22{height:72.951317pt;}
.h2f{height:80.525733pt;}
.h2d{height:80.531067pt;}
.h21{height:82.611067pt;}
.h2{height:83.368444pt;}
.h13{height:83.545733pt;}
.h17{height:83.551067pt;}
.h12{height:92.247317pt;}
.h24{height:92.349733pt;}
.h1a{height:92.355067pt;}
.ha{height:92.796650pt;}
.h25{height:92.801983pt;}
.h1d{height:95.816400pt;}
.h2b{height:102.456400pt;}
.h1c{height:110.333733pt;}
.h2a{height:127.933378pt;}
.h1f{height:132.156650pt;}
.h19{height:132.264400pt;}
.h8{height:143.874711pt;}
.h14{height:159.810711pt;}
.h15{height:159.816045pt;}
.h27{height:161.853378pt;}
.h28{height:161.858711pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:93.328000pt;}
.x21{left:94.488000pt;}
.xd2{left:98.556000pt;}
.x4e{left:101.252000pt;}
.x14b{left:102.385333pt;}
.x133{left:105.008000pt;}
.x97{left:106.648000pt;}
.x4f{left:108.078667pt;}
.x134{left:110.552000pt;}
.x152{left:112.266667pt;}
.x13f{left:115.368000pt;}
.x22{left:116.306667pt;}
.xd3{left:118.600000pt;}
.x50{left:120.749333pt;}
.x1{left:122.102667pt;}
.x138{left:124.062667pt;}
.x122{left:125.404000pt;}
.xf7{left:126.657333pt;}
.x121{left:129.584000pt;}
.x7{left:130.852000pt;}
.x95{left:132.645333pt;}
.xf8{left:133.784000pt;}
.x108{left:136.226667pt;}
.x15f{left:137.605333pt;}
.xd4{left:139.206667pt;}
.x8{left:140.460000pt;}
.xd9{left:142.034667pt;}
.x9{left:145.729333pt;}
.x149{left:148.241333pt;}
.x6{left:150.777333pt;}
.xdd{left:152.442667pt;}
.xa{left:153.701333pt;}
.xa2{left:154.798667pt;}
.x135{left:155.888000pt;}
.x123{left:158.166667pt;}
.xf9{left:159.384000pt;}
.xb3{left:160.500000pt;}
.x146{left:161.440000pt;}
.xd5{left:162.569333pt;}
.x51{left:164.777333pt;}
.x115{left:165.864000pt;}
.xa3{left:167.666667pt;}
.x136{left:169.593333pt;}
.x14c{left:171.337333pt;}
.xb4{left:173.392000pt;}
.x104{left:175.417333pt;}
.x6f{left:176.922667pt;}
.xd6{left:178.514667pt;}
.x13a{left:179.592000pt;}
.x116{left:181.868000pt;}
.x109{left:183.900000pt;}
.xda{left:184.804000pt;}
.x13d{left:186.830667pt;}
.x70{left:187.762667pt;}
.x3d{left:190.278667pt;}
.x2d{left:192.566667pt;}
.x3e{left:193.590667pt;}
.xf4{left:196.573333pt;}
.x52{left:198.201333pt;}
.xdb{left:200.181333pt;}
.x13e{left:202.024000pt;}
.x84{left:204.030667pt;}
.x53{left:205.028000pt;}
.xe8{left:206.549333pt;}
.x105{left:208.674667pt;}
.x54{left:210.572000pt;}
.x37{left:211.645333pt;}
.x85{left:214.550667pt;}
.x10a{left:216.330667pt;}
.x71{left:217.670667pt;}
.x2e{left:218.622667pt;}
.xdc{left:219.536000pt;}
.x15b{left:221.804000pt;}
.x38{left:223.652000pt;}
.x72{left:225.750667pt;}
.x142{left:226.748000pt;}
.xcc{left:227.812000pt;}
.x55{left:230.616000pt;}
.x148{left:232.472000pt;}
.x11e{left:234.962667pt;}
.x110{left:237.286667pt;}
.x124{left:239.808000pt;}
.x73{left:241.717333pt;}
.xcd{left:245.428000pt;}
.x2f{left:246.746667pt;}
.x130{left:247.686667pt;}
.x8c{left:249.160000pt;}
.xb{left:250.361333pt;}
.x9a{left:251.708000pt;}
.x30{left:253.874667pt;}
.xde{left:256.012000pt;}
.x143{left:257.088000pt;}
.x60{left:258.508000pt;}
.x31{left:260.338667pt;}
.x9b{left:262.229333pt;}
.xc{left:263.330667pt;}
.xc8{left:264.653333pt;}
.xb9{left:266.929333pt;}
.xd{left:268.393333pt;}
.x61{left:271.262667pt;}
.x125{left:272.570667pt;}
.x80{left:275.937333pt;}
.xe{left:278.080000pt;}
.x32{left:279.474667pt;}
.xfa{left:280.478667pt;}
.x140{left:281.804000pt;}
.xba{left:283.472000pt;}
.x2b{left:286.798667pt;}
.x81{left:288.257333pt;}
.x13b{left:289.540000pt;}
.x117{left:290.565333pt;}
.xbb{left:291.502667pt;}
.x10d{left:292.934667pt;}
.x126{left:294.340000pt;}
.xa9{left:295.294667pt;}
.xfb{left:296.542667pt;}
.x103{left:298.486667pt;}
.x3{left:299.712000pt;}
.x111{left:302.196000pt;}
.xce{left:303.188000pt;}
.xfc{left:305.273333pt;}
.x24{left:306.540000pt;}
.xb5{left:308.385333pt;}
.x141{left:310.208000pt;}
.x33{left:311.905333pt;}
.x66{left:313.205333pt;}
.x139{left:314.190667pt;}
.x10b{left:316.000000pt;}
.xae{left:316.900000pt;}
.x67{left:318.749333pt;}
.x1b{left:320.674667pt;}
.xcf{left:322.426667pt;}
.x106{left:324.433333pt;}
.xc9{left:326.944000pt;}
.x2{left:328.096000pt;}
.x68{left:329.052000pt;}
.x1c{left:330.637333pt;}
.x4{left:332.813333pt;}
.x12d{left:333.737333pt;}
.x1d{left:335.700000pt;}
.xb6{left:338.664000pt;}
.x86{left:339.966667pt;}
.x118{left:340.998667pt;}
.x1e{left:343.033333pt;}
.x10c{left:344.124000pt;}
.xe7{left:346.152000pt;}
.x9c{left:347.980000pt;}
.x155{left:348.968000pt;}
.xf5{left:349.984000pt;}
.x87{left:351.504000pt;}
.xbc{left:352.609333pt;}
.xd7{left:353.910667pt;}
.x3f{left:355.168000pt;}
.x25{left:356.934667pt;}
.x107{left:358.046667pt;}
.xbd{left:359.750667pt;}
.x156{left:361.474667pt;}
.xdf{left:362.521333pt;}
.xcb{left:363.632000pt;}
.x5{left:366.256000pt;}
.xca{left:367.269333pt;}
.x74{left:368.168000pt;}
.x26{left:370.336000pt;}
.x96{left:371.598667pt;}
.x12e{left:372.600000pt;}
.x9d{left:373.580000pt;}
.xb7{left:376.881333pt;}
.x119{left:378.181333pt;}
.x75{left:381.169333pt;}
.xa4{left:383.028000pt;}
.x150{left:384.341333pt;}
.xa6{left:385.721333pt;}
.x27{left:387.018667pt;}
.xc1{left:387.921333pt;}
.xb8{left:389.708000pt;}
.x40{left:390.794667pt;}
.x23{left:393.214667pt;}
.x15c{left:394.234667pt;}
.x69{left:396.772000pt;}
.xc2{left:398.830667pt;}
.x101{left:400.618667pt;}
.x39{left:402.269333pt;}
.x41{left:404.429333pt;}
.x9e{left:406.010667pt;}
.x112{left:406.974667pt;}
.x144{left:408.562667pt;}
.x6a{left:409.718667pt;}
.x160{left:411.272000pt;}
.x3a{left:412.789333pt;}
.xa5{left:415.864000pt;}
.x3b{left:418.389333pt;}
.x137{left:420.280000pt;}
.xd0{left:421.528000pt;}
.xc3{left:423.796000pt;}
.xe9{left:425.082667pt;}
.x3c{left:427.120000pt;}
.x15d{left:428.494667pt;}
.x100{left:430.441333pt;}
.x82{left:431.668000pt;}
.x88{left:434.425333pt;}
.xbe{left:435.338667pt;}
.x13c{left:436.501333pt;}
.x5c{left:437.534667pt;}
.x158{left:439.014667pt;}
.x102{left:440.717333pt;}
.xab{left:442.576000pt;}
.x157{left:444.274667pt;}
.xaa{left:446.026667pt;}
.xaf{left:447.220000pt;}
.x83{left:448.468000pt;}
.x42{left:449.565333pt;}
.x89{left:451.225333pt;}
.x5d{left:453.801333pt;}
.xd1{left:456.120000pt;}
.x10e{left:457.820000pt;}
.x43{left:459.586667pt;}
.x9f{left:461.077333pt;}
.x8a{left:462.596000pt;}
.x161{left:463.873333pt;}
.xc4{left:465.628000pt;}
.x127{left:466.754667pt;}
.xbf{left:468.288000pt;}
.x6b{left:469.421333pt;}
.xea{left:470.866667pt;}
.x151{left:472.600000pt;}
.x159{left:473.529333pt;}
.x145{left:474.425333pt;}
.x62{left:475.336000pt;}
.xc5{left:476.537333pt;}
.x6c{left:479.941333pt;}
.xc6{left:482.160000pt;}
.x11a{left:484.197333pt;}
.x6d{left:485.484000pt;}
.x44{left:486.932000pt;}
.xa0{left:488.501333pt;}
.xc7{left:490.190667pt;}
.x11f{left:491.196000pt;}
.xd8{left:492.342667pt;}
.x8b{left:493.253333pt;}
.x6e{left:494.214667pt;}
.x93{left:495.496000pt;}
.x128{left:497.069333pt;}
.x7a{left:498.604000pt;}
.x15a{left:499.529333pt;}
.x15e{left:501.266667pt;}
.x14e{left:503.173333pt;}
.xac{left:504.220000pt;}
.x45{left:505.397333pt;}
.x76{left:506.393333pt;}
.x94{left:508.564000pt;}
.xad{left:509.762667pt;}
.x7b{left:512.198667pt;}
.x34{left:513.614667pt;}
.xa7{left:515.232000pt;}
.x129{left:516.745333pt;}
.x46{left:518.068000pt;}
.xf{left:519.597333pt;}
.x63{left:520.644000pt;}
.x14d{left:521.621333pt;}
.x35{left:524.134667pt;}
.x10f{left:525.084000pt;}
.xa8{left:526.141333pt;}
.x10{left:529.205333pt;}
.x131{left:530.826667pt;}
.x8d{left:531.821333pt;}
.x11{left:534.268000pt;}
.x13{left:535.258667pt;}
.x11b{left:537.081333pt;}
.x36{left:538.409333pt;}
.x5e{left:539.336000pt;}
.x120{left:540.502667pt;}
.x12{left:542.241333pt;}
.x14{left:545.221333pt;}
.x162{left:547.468000pt;}
.xf6{left:548.402667pt;}
.x15{left:550.489333pt;}
.x5f{left:552.197333pt;}
.xfd{left:555.902667pt;}
.xeb{left:557.930667pt;}
.xef{left:560.684000pt;}
.x132{left:563.304000pt;}
.x8e{left:564.476000pt;}
.x113{left:566.656000pt;}
.x16{left:568.156000pt;}
.x154{left:570.734667pt;}
.x7c{left:571.916000pt;}
.xec{left:574.101333pt;}
.x8f{left:574.996000pt;}
.x47{left:577.078667pt;}
.x28{left:577.994667pt;}
.x90{left:580.692000pt;}
.x12a{left:582.625333pt;}
.x29{left:583.657333pt;}
.x77{left:586.930667pt;}
.x11c{left:588.021333pt;}
.x91{left:589.422667pt;}
.x2a{left:592.388000pt;}
.xfe{left:593.620000pt;}
.x11d{left:595.165333pt;}
.x48{left:596.576000pt;}
.xe0{left:597.578667pt;}
.x56{left:599.589333pt;}
.xa1{left:601.172000pt;}
.xb0{left:602.513333pt;}
.x114{left:603.538667pt;}
.xe1{left:604.706667pt;}
.xff{left:608.020000pt;}
.x17{left:608.977333pt;}
.xe2{left:611.170667pt;}
.x49{left:616.620000pt;}
.x18{left:618.940000pt;}
.x1f{left:620.801333pt;}
.x57{left:621.845333pt;}
.xf0{left:622.893333pt;}
.x19{left:624.209333pt;}
.xe3{left:625.425333pt;}
.x98{left:627.009333pt;}
.x4a{left:629.290667pt;}
.x1a{left:631.542667pt;}
.x58{left:634.214667pt;}
.x20{left:635.416000pt;}
.x99{left:636.766667pt;}
.x14a{left:638.394667pt;}
.x4b{left:640.604000pt;}
.xb1{left:642.940000pt;}
.x7d{left:644.440000pt;}
.x59{left:646.178667pt;}
.x92{left:647.552000pt;}
.x12f{left:648.594667pt;}
.xf1{left:650.077333pt;}
.x7e{left:651.266667pt;}
.x4c{left:653.274667pt;}
.x78{left:656.758667pt;}
.x153{left:658.738667pt;}
.xe4{left:659.736000pt;}
.x147{left:660.660000pt;}
.xb2{left:662.284000pt;}
.xc0{left:664.396000pt;}
.x12b{left:665.330667pt;}
.x64{left:667.165333pt;}
.x7f{left:669.476000pt;}
.x4d{left:671.414667pt;}
.x5a{left:676.401333pt;}
.x14f{left:678.049333pt;}
.x65{left:680.234667pt;}
.x79{left:684.736000pt;}
.xed{left:686.640000pt;}
.xe5{left:688.245333pt;}
.x5b{left:690.948000pt;}
.x12c{left:692.412000pt;}
.xee{left:695.370667pt;}
.xf2{left:705.770667pt;}
.xe6{left:721.377333pt;}
.xf3{left:729.205333pt;}
}




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