
    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_0f8b2100f42776238c9046b1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_238e7e70545870c0f235b614.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_227137c9bd64e95f773a3e4f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6ce18a8bcd58c17e0e966c71.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ceb22f19b2b91d2280e27f35.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e094ee6a9dad2f37bc75025e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.151000;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_57979122159aef66f373c203.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.897000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_bff03e495f076232ecf9a9f8.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_55e44e80cd71b72d5d538b3a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.059000;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_dc2f44e840162a14fc0a798f.woff2')format("woff");}.fff{font-family:fff;line-height:1.000488;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_cc6bfd4c4fe56390354b213d.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000488;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_4409b546781159b8918c7895.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.174316;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_54b14df4b6f9180964aae4de.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;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_294bf932f5600a0d6d1a9dc1.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;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_6ca19d84ac9c5075e360c756.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_bf82385d15d64502574d376c.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666504;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_5b295813ac16d1c53369bbc3.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.988281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_bc7f33a9d6b57d45e6582ba9.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.744629;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_9b3e73218ca53136490b04cc.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.116000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_381dfe133ba6facd10967d15.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.573000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_4f81f72286c3a429c878f1ac.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.869000;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;}
.m3{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);}
.m29{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);}
.m12{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);}
.m8{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m21{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);}
.md{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);}
.m18{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);}
.me{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);}
.m24{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);}
.mf{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);}
.m11{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);}
.m16{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);}
.ma{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);}
.m10{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);}
.m20{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);}
.m1e{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m27{transform:matrix(0.250131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250131,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m23{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);}
.m25{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m15{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);}
.mc{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m26{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m14{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m22{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m19{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);}
.m13{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);}
.m5{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vb{vertical-align:-30.666000px;}
.vc{vertical-align:-28.650000px;}
.v12{vertical-align:-27.600000px;}
.v8{vertical-align:-21.696000px;}
.v2{vertical-align:-19.530000px;}
.v3{vertical-align:-11.190000px;}
.v6{vertical-align:-10.008000px;}
.v4{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.200000px;}
.va{vertical-align:8.964000px;}
.v10{vertical-align:15.186000px;}
.vf{vertical-align:19.524000px;}
.v1{vertical-align:21.702000px;}
.v9{vertical-align:24.690000px;}
.v7{vertical-align:30.660000px;}
.v11{vertical-align:36.828000px;}
.vd{vertical-align:38.256000px;}
.ve{vertical-align:65.754000px;}
.ls44{letter-spacing:-0.760112px;}
.ls42{letter-spacing:-0.144288px;}
.ls3b{letter-spacing:-0.132264px;}
.ls41{letter-spacing:-0.108216px;}
.ls43{letter-spacing:-0.096192px;}
.ls32{letter-spacing:-0.090972px;}
.ls3e{letter-spacing:-0.084168px;}
.ls40{letter-spacing:-0.072144px;}
.ls36{letter-spacing:-0.069552px;}
.ls38{letter-spacing:-0.054000px;}
.ls3c{letter-spacing:-0.048096px;}
.ls3d{letter-spacing:-0.042084px;}
.ls3a{letter-spacing:-0.030060px;}
.ls37{letter-spacing:-0.026496px;}
.ls3f{letter-spacing:-0.024048px;}
.ls35{letter-spacing:-0.021600px;}
.ls33{letter-spacing:-0.014364px;}
.ls39{letter-spacing:-0.010800px;}
.ls34{letter-spacing:-0.005400px;}
.ls0{letter-spacing:0.000000px;}
.ls84{letter-spacing:0.000059px;}
.ls60{letter-spacing:0.000213px;}
.ls48{letter-spacing:0.000273px;}
.lsd{letter-spacing:0.000309px;}
.ls18{letter-spacing:0.000591px;}
.ls16{letter-spacing:0.000608px;}
.ls82{letter-spacing:0.000800px;}
.ls61{letter-spacing:0.001135px;}
.ls14{letter-spacing:0.001148px;}
.ls85{letter-spacing:0.001416px;}
.ls5e{letter-spacing:0.001518px;}
.ls5d{letter-spacing:0.002058px;}
.ls6{letter-spacing:0.002239px;}
.ls19{letter-spacing:0.002870px;}
.ls5{letter-spacing:0.002940px;}
.ls76{letter-spacing:0.002958px;}
.ls77{letter-spacing:0.002982px;}
.ls73{letter-spacing:0.003167px;}
.ls6a{letter-spacing:0.003247px;}
.ls8{letter-spacing:0.003488px;}
.ls5f{letter-spacing:0.003494px;}
.ls4c{letter-spacing:0.003598px;}
.ls79{letter-spacing:0.003769px;}
.ls58{letter-spacing:0.003950px;}
.ls54{letter-spacing:0.004424px;}
.lsb{letter-spacing:0.004435px;}
.ls13{letter-spacing:0.004665px;}
.ls80{letter-spacing:0.005002px;}
.lsc{letter-spacing:0.005204px;}
.ls1e{letter-spacing:0.005400px;}
.ls1b{letter-spacing:0.009576px;}
.ls2c{letter-spacing:0.012024px;}
.ls1d{letter-spacing:0.016200px;}
.ls30{letter-spacing:0.018036px;}
.ls23{letter-spacing:0.019872px;}
.ls20{letter-spacing:0.021600px;}
.ls2b{letter-spacing:0.024048px;}
.ls24{letter-spacing:0.027000px;}
.ls25{letter-spacing:0.032400px;}
.ls2e{letter-spacing:0.036072px;}
.ls26{letter-spacing:0.037800px;}
.ls27{letter-spacing:0.043200px;}
.ls2d{letter-spacing:0.048096px;}
.ls2f{letter-spacing:0.048600px;}
.ls22{letter-spacing:0.052992px;}
.ls21{letter-spacing:0.054000px;}
.ls29{letter-spacing:0.059400px;}
.ls2a{letter-spacing:0.064800px;}
.ls28{letter-spacing:0.091800px;}
.ls1f{letter-spacing:0.176400px;}
.ls1c{letter-spacing:0.181944px;}
.ls31{letter-spacing:0.349089px;}
.ls17{letter-spacing:0.473508px;}
.ls83{letter-spacing:0.524565px;}
.ls81{letter-spacing:0.530447px;}
.ls45{letter-spacing:0.709438px;}
.ls9{letter-spacing:1.275394px;}
.ls4{letter-spacing:1.861130px;}
.ls47{letter-spacing:1.987552px;}
.ls55{letter-spacing:2.983200px;}
.ls7a{letter-spacing:2.984302px;}
.ls4a{letter-spacing:2.985598px;}
.ls64{letter-spacing:2.985769px;}
.ls5a{letter-spacing:2.985950px;}
.ls71{letter-spacing:2.986348px;}
.ls7e{letter-spacing:2.988600px;}
.ls56{letter-spacing:2.989200px;}
.ls63{letter-spacing:2.990302px;}
.ls6e{letter-spacing:2.991167px;}
.ls4b{letter-spacing:2.991598px;}
.ls49{letter-spacing:2.991950px;}
.ls75{letter-spacing:2.992348px;}
.ls46{letter-spacing:3.102383px;}
.ls7{letter-spacing:11.954850px;}
.ls68{letter-spacing:12.481137px;}
.ls69{letter-spacing:12.486421px;}
.ls6c{letter-spacing:13.443754px;}
.ls7d{letter-spacing:13.445338px;}
.ls70{letter-spacing:13.445674px;}
.ls7b{letter-spacing:13.446845px;}
.ls1a{letter-spacing:13.447133px;}
.ls66{letter-spacing:13.448362px;}
.ls67{letter-spacing:13.448870px;}
.ls6d{letter-spacing:13.450560px;}
.ls7c{letter-spacing:13.451338px;}
.ls72{letter-spacing:13.454870px;}
.ls74{letter-spacing:13.652455px;}
.ls59{letter-spacing:14.512164px;}
.lse{letter-spacing:14.824349px;}
.ls5b{letter-spacing:14.912100px;}
.ls12{letter-spacing:14.940124px;}
.ls11{letter-spacing:14.943767px;}
.lsa{letter-spacing:14.943900px;}
.ls50{letter-spacing:14.944547px;}
.ls4e{letter-spacing:14.944665px;}
.ls10{letter-spacing:14.946124px;}
.ls52{letter-spacing:15.059370px;}
.ls78{letter-spacing:15.063451px;}
.lsf{letter-spacing:15.183002px;}
.ls6f{letter-spacing:16.437247px;}
.ls6b{letter-spacing:16.440127px;}
.ls7f{letter-spacing:16.443247px;}
.ls62{letter-spacing:17.155597px;}
.ls5c{letter-spacing:17.901950px;}
.ls4d{letter-spacing:17.928110px;}
.ls4f{letter-spacing:17.931950px;}
.ls53{letter-spacing:17.934110px;}
.ls2{letter-spacing:70.236600px;}
.ls3{letter-spacing:72.353510px;}
.ls1{letter-spacing:72.361200px;}
.ls65{letter-spacing:149.572348px;}
.ls57{letter-spacing:463.887950px;}
.ls51{letter-spacing:766.401950px;}
.ls15{letter-spacing:925.251950px;}
.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;}
}
.ws63{word-spacing:-54.000000px;}
.wsad{word-spacing:-45.088735px;}
.wsc3{word-spacing:-40.580133px;}
.ws68{word-spacing:-18.755062px;}
.ws9{word-spacing:-17.394700px;}
.ws1{word-spacing:-16.529216px;}
.ws64{word-spacing:-16.001767px;}
.ws4{word-spacing:-15.655334px;}
.ws30{word-spacing:-14.943900px;}
.ws44{word-spacing:-13.915795px;}
.ws45{word-spacing:-13.449600px;}
.wsa9{word-spacing:-13.220014px;}
.wsc2{word-spacing:-12.176255px;}
.ws5e{word-spacing:-12.151944px;}
.ws1d{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.wsb6{word-spacing:-10.460700px;}
.ws60{word-spacing:-8.332992px;}
.ws61{word-spacing:-8.299872px;}
.ws62{word-spacing:-8.253504px;}
.ws5f{word-spacing:-8.210448px;}
.wsa6{word-spacing:-3.825638px;}
.wsd7{word-spacing:-3.765863px;}
.ws2b{word-spacing:-3.586536px;}
.ws7{word-spacing:-3.168107px;}
.ws11{word-spacing:-3.048556px;}
.ws42{word-spacing:-2.749678px;}
.ws3a{word-spacing:-2.689902px;}
.ws39{word-spacing:-2.570351px;}
.ws31{word-spacing:-2.391024px;}
.wsd9{word-spacing:-2.211697px;}
.wsda{word-spacing:-2.151922px;}
.ws6{word-spacing:-1.908367px;}
.ws1b{word-spacing:-1.613941px;}
.ws86{word-spacing:-1.376748px;}
.ws5{word-spacing:-1.322630px;}
.ws98{word-spacing:-1.296000px;}
.ws9a{word-spacing:-1.279800px;}
.wsb3{word-spacing:-1.255288px;}
.ws99{word-spacing:-1.252800px;}
.wsd{word-spacing:-1.195512px;}
.wsd0{word-spacing:-1.075961px;}
.wsc{word-spacing:-1.016185px;}
.wsa2{word-spacing:-1.010016px;}
.wsc0{word-spacing:-0.968371px;}
.ws19{word-spacing:-0.896634px;}
.wse6{word-spacing:-0.860774px;}
.ws3f{word-spacing:-0.836858px;}
.wsc5{word-spacing:-0.777083px;}
.wse5{word-spacing:-0.753178px;}
.wsdb{word-spacing:-0.657532px;}
.wsde{word-spacing:-0.537984px;}
.ws32{word-spacing:-0.537980px;}
.wse7{word-spacing:-0.484186px;}
.ws36{word-spacing:-0.478205px;}
.ws1a{word-spacing:-0.418429px;}
.ws23{word-spacing:-0.358654px;}
.ws21{word-spacing:-0.298878px;}
.wsdf{word-spacing:-0.268992px;}
.ws81{word-spacing:-0.243000px;}
.ws12{word-spacing:-0.239102px;}
.ws7f{word-spacing:-0.237600px;}
.ws97{word-spacing:-0.216000px;}
.wse8{word-spacing:-0.215194px;}
.ws18{word-spacing:-0.179327px;}
.ws80{word-spacing:-0.172800px;}
.ws69{word-spacing:-0.161395px;}
.ws22{word-spacing:-0.119551px;}
.ws6b{word-spacing:-0.107597px;}
.ws5a{word-spacing:-0.095641px;}
.ws70{word-spacing:-0.076608px;}
.ws24{word-spacing:-0.059776px;}
.ws4e{word-spacing:-0.053798px;}
.ws1e{word-spacing:-0.047821px;}
.wsb7{word-spacing:-0.041843px;}
.wsc6{word-spacing:-0.022474px;}
.wsc7{word-spacing:-0.021014px;}
.wsc8{word-spacing:-0.019910px;}
.ws3{word-spacing:-0.011222px;}
.ws41{word-spacing:-0.001723px;}
.ws0{word-spacing:0.000000px;}
.ws55{word-spacing:0.001373px;}
.ws91{word-spacing:0.048096px;}
.ws90{word-spacing:0.054108px;}
.ws15{word-spacing:0.059776px;}
.ws9f{word-spacing:0.066132px;}
.ws7e{word-spacing:0.086400px;}
.ws6a{word-spacing:0.107597px;}
.ws10{word-spacing:0.119551px;}
.ws9b{word-spacing:0.129600px;}
.ws75{word-spacing:0.156600px;}
.ws6c{word-spacing:0.161395px;}
.ws71{word-spacing:0.162000px;}
.ws72{word-spacing:0.172800px;}
.ws8{word-spacing:0.179327px;}
.ws73{word-spacing:0.183600px;}
.ws74{word-spacing:0.199800px;}
.wsc4{word-spacing:0.215194px;}
.ws14{word-spacing:0.239102px;}
.ws6f{word-spacing:0.258552px;}
.wsb{word-spacing:0.298878px;}
.wse2{word-spacing:0.322790px;}
.ws2d{word-spacing:0.358654px;}
.wsf8{word-spacing:0.484186px;}
.ws89{word-spacing:0.492984px;}
.wsb4{word-spacing:0.537980px;}
.ws33{word-spacing:0.597756px;}
.ws6e{word-spacing:0.717307px;}
.wse9{word-spacing:0.753178px;}
.wsb1{word-spacing:0.777083px;}
.ws87{word-spacing:0.799596px;}
.ws6d{word-spacing:0.836858px;}
.ws88{word-spacing:0.859716px;}
.ws37{word-spacing:0.896634px;}
.ws5b{word-spacing:0.956410px;}
.ws40{word-spacing:1.016185px;}
.ws13{word-spacing:1.075961px;}
.wsa7{word-spacing:1.135736px;}
.wsdd{word-spacing:1.237363px;}
.ws2c{word-spacing:1.255288px;}
.wsf6{word-spacing:1.291162px;}
.wsd3{word-spacing:1.374839px;}
.ws38{word-spacing:1.434614px;}
.ws29{word-spacing:1.554166px;}
.wsdc{word-spacing:1.560154px;}
.ws2a{word-spacing:1.613941px;}
.ws20{word-spacing:1.673717px;}
.wsb5{word-spacing:1.733492px;}
.wsac{word-spacing:1.853044px;}
.ws83{word-spacing:1.992600px;}
.ws82{word-spacing:2.003400px;}
.ws26{word-spacing:2.092146px;}
.ws27{word-spacing:2.151922px;}
.wsf9{word-spacing:2.151936px;}
.ws3c{word-spacing:2.211697px;}
.ws17{word-spacing:2.271473px;}
.wsd1{word-spacing:2.331248px;}
.wsab{word-spacing:2.391024px;}
.wsf3{word-spacing:2.689920px;}
.wsa5{word-spacing:2.705400px;}
.ws3d{word-spacing:2.809453px;}
.ws43{word-spacing:2.929004px;}
.wsa3{word-spacing:2.945880px;}
.ws5d{word-spacing:2.988780px;}
.ws28{word-spacing:3.108331px;}
.ws59{word-spacing:3.108339px;}
.wsa4{word-spacing:3.114216px;}
.wsa{word-spacing:3.227882px;}
.wsef{word-spacing:3.281702px;}
.ws3b{word-spacing:3.407209px;}
.ws93{word-spacing:3.412800px;}
.ws94{word-spacing:3.429000px;}
.wsa0{word-spacing:3.691368px;}
.ws34{word-spacing:3.706087px;}
.ws84{word-spacing:3.721428px;}
.wsa1{word-spacing:3.799584px;}
.ws85{word-spacing:3.823632px;}
.wsb2{word-spacing:3.825638px;}
.wse1{word-spacing:3.981082px;}
.ws35{word-spacing:4.004965px;}
.ws92{word-spacing:4.114800px;}
.ws9d{word-spacing:4.124232px;}
.ws9e{word-spacing:4.136256px;}
.wsd2{word-spacing:4.244068px;}
.ws9c{word-spacing:4.388760px;}
.ws95{word-spacing:4.455000px;}
.ws96{word-spacing:4.476600px;}
.ws2f{word-spacing:4.542946px;}
.ws2e{word-spacing:4.602721px;}
.wsd6{word-spacing:4.662497px;}
.wsd5{word-spacing:4.722272px;}
.wsa8{word-spacing:4.901599px;}
.ws8f{word-spacing:5.080140px;}
.wsaa{word-spacing:5.080926px;}
.ws8e{word-spacing:5.104188px;}
.wsf0{word-spacing:5.377642px;}
.wse0{word-spacing:5.378822px;}
.wse4{word-spacing:5.379840px;}
.wsd8{word-spacing:5.559131px;}
.wsf7{word-spacing:5.595034px;}
.wsd4{word-spacing:5.738458px;}
.wsaf{word-spacing:5.798233px;}
.wse{word-spacing:5.971475px;}
.wsf{word-spacing:5.977560px;}
.ws3e{word-spacing:6.573137px;}
.ws16{word-spacing:6.635092px;}
.wsb0{word-spacing:6.694867px;}
.wseb{word-spacing:7.101389px;}
.wscf{word-spacing:8.876736px;}
.wsae{word-spacing:9.862974px;}
.ws5c{word-spacing:10.580281px;}
.ws1c{word-spacing:11.907329px;}
.ws25{word-spacing:12.851754px;}
.wsec{word-spacing:13.180608px;}
.wsee{word-spacing:13.288205px;}
.wsf5{word-spacing:13.387133px;}
.wsf2{word-spacing:13.393334px;}
.wsed{word-spacing:13.393373px;}
.wse3{word-spacing:13.395802px;}
.wsf1{word-spacing:13.557197px;}
.wsea{word-spacing:14.148979px;}
.wsfa{word-spacing:15.493939px;}
.ws8d{word-spacing:15.955848px;}
.ws8c{word-spacing:15.961860px;}
.wsf4{word-spacing:16.031923px;}
.ws8a{word-spacing:27.078048px;}
.ws8b{word-spacing:27.174240px;}
.ws48{word-spacing:34.562651px;}
.ws47{word-spacing:57.827248px;}
.ws46{word-spacing:81.964048px;}
.ws77{word-spacing:92.647800px;}
.ws78{word-spacing:94.084200px;}
.wsb9{word-spacing:95.570285px;}
.wsc1{word-spacing:100.330800px;}
.wsb8{word-spacing:111.627821px;}
.wsba{word-spacing:116.742528px;}
.ws76{word-spacing:117.844200px;}
.wsbb{word-spacing:118.315853px;}
.wsbd{word-spacing:118.347187px;}
.wsbe{word-spacing:138.448800px;}
.wsbc{word-spacing:138.584678px;}
.ws65{word-spacing:169.302302px;}
.ws66{word-spacing:172.196401px;}
.ws67{word-spacing:172.917637px;}
.wsbf{word-spacing:191.468506px;}
.ws56{word-spacing:194.412163px;}
.ws4c{word-spacing:201.610800px;}
.ws4d{word-spacing:201.616800px;}
.ws4a{word-spacing:216.299366px;}
.ws4b{word-spacing:223.216800px;}
.ws7d{word-spacing:235.612800px;}
.ws49{word-spacing:237.627533px;}
.ws58{word-spacing:241.968000px;}
.ws4f{word-spacing:247.937885px;}
.ws7b{word-spacing:249.274800px;}
.ws52{word-spacing:255.409200px;}
.ws51{word-spacing:255.415200px;}
.ws57{word-spacing:263.569200px;}
.ws50{word-spacing:277.015200px;}
.ws54{word-spacing:277.976333px;}
.ws7a{word-spacing:282.025800px;}
.ws53{word-spacing:291.425933px;}
.ws7c{word-spacing:300.391200px;}
.ws79{word-spacing:306.514800px;}
.wscc{word-spacing:333.262800px;}
.wsc9{word-spacing:351.236602px;}
.wscd{word-spacing:358.781530px;}
.wscb{word-spacing:377.508038px;}
.wsca{word-spacing:390.961238px;}
.wsce{word-spacing:396.171418px;}
.ws1f{word-spacing:722.951831px;}
._24{margin-left:-51.872400px;}
._25{margin-left:-34.948800px;}
._23{margin-left:-30.628800px;}
._26{margin-left:-26.081794px;}
._27{margin-left:-9.735624px;}
._1{margin-left:-7.711052px;}
._0{margin-left:-5.917824px;}
._a{margin-left:-4.049729px;}
._14{margin-left:-3.048556px;}
._6{margin-left:-2.047382px;}
._3{margin-left:-1.022170px;}
._7{width:1.091170px;}
._2{width:2.989792px;}
._28{width:5.498209px;}
._33{width:8.251200px;}
._3a{width:11.880304px;}
._8{width:13.150632px;}
._57{width:14.202778px;}
._e{width:15.708895px;}
._3d{width:16.767191px;}
._4{width:17.861069px;}
._5{width:19.797811px;}
._b{width:21.459440px;}
._d{width:23.372260px;}
._13{width:25.180539px;}
._10{width:26.480591px;}
._20{width:28.214083px;}
._32{width:29.494800px;}
._9{width:31.026460px;}
._12{width:33.363693px;}
._11{width:35.820596px;}
._c{width:41.544042px;}
._1f{width:53.514174px;}
._35{width:59.761800px;}
._36{width:76.685400px;}
._34{width:81.000000px;}
._15{width:91.564090px;}
._22{width:102.443400px;}
._44{width:106.141670px;}
._46{width:131.772067px;}
._45{width:142.235645px;}
._3f{width:148.423267px;}
._41{width:166.825709px;}
._40{width:169.895347px;}
._3b{width:188.576806px;}
._3c{width:194.299372px;}
._49{width:204.023443px;}
._37{width:217.015200px;}
._2b{width:227.653200px;}
._1d{width:230.472346px;}
._48{width:231.476580px;}
._29{width:239.689800px;}
._19{width:243.921946px;}
._2a{width:248.535000px;}
._2d{width:255.771206px;}
._42{width:257.963328px;}
._1a{width:261.029837px;}
._47{width:264.280214px;}
._2c{width:265.323600px;}
._39{width:267.975000px;}
._2e{width:271.215000px;}
._17{width:272.650291px;}
._18{width:276.523776px;}
._30{width:281.664000px;}
._38{width:289.224000px;}
._1b{width:294.653837px;}
._31{width:298.587600px;}
._16{width:300.786854px;}
._2f{width:302.545800px;}
._4c{width:306.435686px;}
._1e{width:312.999091px;}
._43{width:314.666842px;}
._4b{width:316.926374px;}
._1c{width:326.448691px;}
._55{width:328.227168px;}
._4d{width:337.853952px;}
._51{width:344.578752px;}
._4f{width:355.015642px;}
._3e{width:363.659866px;}
._52{width:364.696224px;}
._50{width:382.668019px;}
._56{width:391.759949px;}
._4a{width:394.772659px;}
._53{width:405.209549px;}
._54{width:408.975437px;}
._4e{width:422.425037px;}
._21{width:1374.601778px;}
._f{width:1784.090102px;}
.fc5{color:transparent;}
.fc3{color:rgb(12,11,11);}
.fc4{color:rgb(8,117,183);}
.fc2{color:rgb(40,65,113);}
.fc1{color:rgb(14,15,14);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:33.120000px;}
.fsf{font-size:35.865600px;}
.fsa{font-size:41.842800px;}
.fsd{font-size:41.936104px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.429600px;}
.fsc{font-size:47.236800px;}
.fse{font-size:47.820600px;}
.fs10{font-size:47.880000px;}
.fs5{font-size:52.197584px;}
.fsb{font-size:53.798400px;}
.fs11{font-size:54.000000px;}
.fs14{font-size:56.304600px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs13{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.116865px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.yc3{bottom:-271.127550px;}
.ye5{bottom:-237.916815px;}
.ye4{bottom:-217.666896px;}
.ye3{bottom:-197.507157px;}
.ye2{bottom:-177.257238px;}
.ye1{bottom:-157.007319px;}
.ye0{bottom:-136.757400px;}
.ydf{bottom:-98.958900px;}
.yde{bottom:-79.518900px;}
.ydd{bottom:-59.988450px;}
.ydc{bottom:-40.458000px;}
.ydb{bottom:-20.927550px;}
.y0{bottom:0.000000px;}
.y2e{bottom:3.425340px;}
.yda{bottom:3.463143px;}
.y24{bottom:5.788613px;}
.yf0{bottom:8.502450px;}
.y2d{bottom:14.151273px;}
.y23{bottom:22.317924px;}
.yeb{bottom:28.482450px;}
.y22{bottom:38.654567px;}
.yf2{bottom:45.852450px;}
.ye6{bottom:62.142450px;}
.yf1{bottom:63.492600px;}
.y52{bottom:63.780000px;}
.yec{bottom:95.712450px;}
.y4{bottom:97.125005px;}
.yfc{bottom:108.612000px;}
.y186{bottom:109.150500px;}
.y117{bottom:109.851000px;}
.y170{bottom:113.157000px;}
.y51{bottom:116.035500px;}
.y13d{bottom:118.884000px;}
.y85{bottom:123.121500px;}
.y185{bottom:128.517000px;}
.yfb{bottom:128.875500px;}
.ye7{bottom:129.192450px;}
.y116{bottom:130.116000px;}
.y16f{bottom:133.420500px;}
.y50{bottom:136.299000px;}
.y13c{bottom:139.147500px;}
.y20{bottom:139.264499px;}
.y84{bottom:143.386500px;}
.y184{bottom:147.885000px;}
.yfa{bottom:149.139000px;}
.y16e{bottom:153.684000px;}
.y4f{bottom:156.562500px;}
.y115{bottom:159.346500px;}
.y13b{bottom:159.412500px;}
.yed{bottom:162.762450px;}
.y83{bottom:163.650000px;}
.y183{bottom:167.251500px;}
.yf9{bottom:169.404000px;}
.y16d{bottom:173.949000px;}
.y4e{bottom:176.827500px;}
.y13a{bottom:179.676000px;}
.y82{bottom:183.913500px;}
.y182{bottom:186.619500px;}
.yf8{bottom:189.667500px;}
.yaa{bottom:191.304000px;}
.y114{bottom:194.166000px;}
.y16c{bottom:194.212500px;}
.ye8{bottom:196.332450px;}
.y17{bottom:196.933500px;}
.y4d{bottom:197.091000px;}
.y139{bottom:199.939500px;}
.y81{bottom:204.178500px;}
.ya9{bottom:205.501500px;}
.y181{bottom:205.987500px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.ya8{bottom:209.841000px;}
.y113{bottom:214.429500px;}
.y16b{bottom:214.477500px;}
.y4c{bottom:217.356000px;}
.y138{bottom:220.204500px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.yf7{bottom:222.909000px;}
.y80{bottom:224.442000px;}
.yee{bottom:229.902450px;}
.y112{bottom:231.897000px;}
.y180{bottom:234.321000px;}
.y111{bottom:234.694500px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y16a{bottom:234.741000px;}
.y4b{bottom:237.619500px;}
.yf6{bottom:242.140500px;}
.y7f{bottom:244.707000px;}
.y169{bottom:255.004500px;}
.y4a{bottom:257.883000px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.yf5{bottom:261.373500px;}
.ye9{bottom:263.382450px;}
.y7e{bottom:264.970500px;}
.y137{bottom:267.100500px;}
.ya7{bottom:268.467000px;}
.y110{bottom:271.845000px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y17f{bottom:273.772500px;}
.y168{bottom:275.269500px;}
.y49{bottom:278.148000px;}
.yf4{bottom:280.606500px;}
.y135{bottom:283.539000px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y7d{bottom:285.234000px;}
.y136{bottom:288.421500px;}
.ya6{bottom:288.732000px;}
.y167{bottom:295.533000px;}
.yef{bottom:296.952450px;}
.y134{bottom:297.289500px;}
.y17e{bottom:297.937500px;}
.y48{bottom:298.411500px;}
.yf3{bottom:299.839500px;}
.y133{bottom:299.977500px;}
.y7c{bottom:305.499000px;}
.ya5{bottom:308.995500px;}
.y1af{bottom:309.820500px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y17d{bottom:313.135500px;}
.y166{bottom:315.798000px;}
.y132{bottom:316.416000px;}
.y47{bottom:318.676500px;}
.yc1{bottom:322.269000px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y7b{bottom:325.762500px;}
.y1ae{bottom:329.188500px;}
.ya4{bottom:329.259000px;}
.yea{bottom:330.522450px;}
.y131{bottom:332.854500px;}
.y165{bottom:336.061500px;}
.y17c{bottom:337.299000px;}
.y46{bottom:338.940000px;}
.y7a{bottom:346.027500px;}
.y10f{bottom:347.281500px;}
.ye{bottom:348.133500px;}
.y1ad{bottom:348.556500px;}
.y130{bottom:349.293000px;}
.ya3{bottom:349.524000px;}
.y164{bottom:356.325000px;}
.y45{bottom:359.203500px;}
.y17b{bottom:361.464000px;}
.yd9{bottom:365.713197px;}
.y79{bottom:366.291000px;}
.y10e{bottom:367.546500px;}
.ya2{bottom:369.787500px;}
.y12f{bottom:373.290000px;}
.y163{bottom:376.590000px;}
.y17a{bottom:376.662000px;}
.y44{bottom:379.468500px;}
.y1ac{bottom:380.101500px;}
.yd8{bottom:385.963116px;}
.y78{bottom:386.554500px;}
.yd{bottom:386.785499px;}
.y10d{bottom:387.810000px;}
.ya1{bottom:390.052500px;}
.y12e{bottom:390.085500px;}
.y179{bottom:391.860000px;}
.y1ab{bottom:399.468000px;}
.y43{bottom:399.732000px;}
.yd7{bottom:406.213035px;}
.y77{bottom:406.819500px;}
.y12d{bottom:406.881000px;}
.yc{bottom:408.044999px;}
.y9f{bottom:410.316000px;}
.ya0{bottom:415.740000px;}
.y178{bottom:416.025000px;}
.y1aa{bottom:418.836000px;}
.y42{bottom:419.997000px;}
.y162{bottom:423.486000px;}
.yd6{bottom:426.462954px;}
.y76{bottom:427.083000px;}
.y9e{bottom:430.579500px;}
.y12c{bottom:430.879500px;}
.y177{bottom:431.223000px;}
.y161{bottom:437.907000px;}
.y1a9{bottom:438.204000px;}
.y160{bottom:439.924500px;}
.y12a{bottom:440.223000px;}
.y41{bottom:440.260500px;}
.yd5{bottom:446.712873px;}
.y75{bottom:447.348000px;}
.y12b{bottom:447.675000px;}
.y9d{bottom:450.844500px;}
.y15f{bottom:456.363000px;}
.y1a8{bottom:457.570500px;}
.y40{bottom:460.524000px;}
.y176{bottom:464.353500px;}
.yd4{bottom:466.872612px;}
.y74{bottom:467.611500px;}
.y9c{bottom:471.108000px;}
.y129{bottom:471.673500px;}
.y15e{bottom:472.801500px;}
.y1a7{bottom:476.938500px;}
.y128{bottom:479.260500px;}
.y3f{bottom:480.789000px;}
.y175{bottom:484.618500px;}
.yd3{bottom:487.122531px;}
.y73{bottom:487.875000px;}
.y9b{bottom:488.575500px;}
.y15d{bottom:489.240000px;}
.y9a{bottom:491.373000px;}
.y1a6{bottom:496.305000px;}
.y3e{bottom:501.052500px;}
.yb{bottom:502.864502px;}
.y174{bottom:504.882000px;}
.y15c{bottom:505.678500px;}
.yd2{bottom:507.372450px;}
.y72{bottom:508.140000px;}
.y10c{bottom:511.636500px;}
.y127{bottom:512.466000px;}
.y1a5{bottom:515.673000px;}
.y126{bottom:520.054500px;}
.ya{bottom:520.864502px;}
.y3d{bottom:521.317500px;}
.y173{bottom:525.145500px;}
.y71{bottom:528.403500px;}
.y99{bottom:528.523500px;}
.y15b{bottom:529.318500px;}
.y10b{bottom:529.659000px;}
.y10a{bottom:531.900000px;}
.y1a4{bottom:535.041000px;}
.y9{bottom:538.864499px;}
.y3c{bottom:541.581000px;}
.yd1{bottom:545.172000px;}
.y172{bottom:545.410500px;}
.y15a{bottom:545.757000px;}
.y70{bottom:548.667000px;}
.y108{bottom:552.165000px;}
.y125{bottom:553.260000px;}
.y1a3{bottom:554.407500px;}
.y8{bottom:556.864499px;}
.y109{bottom:557.589000px;}
.y3b{bottom:561.844500px;}
.y159{bottom:562.195500px;}
.y124{bottom:562.603500px;}
.yd0{bottom:564.612000px;}
.y98{bottom:565.674000px;}
.y6f{bottom:568.932000px;}
.y107{bottom:569.631000px;}
.y106{bottom:572.428500px;}
.y1a2{bottom:573.775500px;}
.y158{bottom:578.634000px;}
.y3a{bottom:582.109500px;}
.ycf{bottom:584.142450px;}
.y97{bottom:585.939000px;}
.y6e{bottom:589.195500px;}
.y123{bottom:592.036500px;}
.y1a1{bottom:593.142000px;}
.y122{bottom:594.054000px;}
.y121{bottom:594.450000px;}
.y11f{bottom:594.799500px;}
.y39{bottom:602.373000px;}
.y157{bottom:602.632500px;}
.yce{bottom:605.112000px;}
.y96{bottom:606.202500px;}
.y105{bottom:607.338000px;}
.y6d{bottom:609.460500px;}
.y104{bottom:609.579000px;}
.y11e{bottom:611.238000px;}
.y1a0{bottom:612.510000px;}
.y120{bottom:618.051000px;}
.y156{bottom:619.428000px;}
.ycd{bottom:623.381550px;}
.y95{bottom:626.466000px;}
.y6c{bottom:629.724000px;}
.y38{bottom:631.603500px;}
.y19f{bottom:631.878000px;}
.y155{bottom:636.223500px;}
.ycc{bottom:641.562000px;}
.y11d{bottom:642.049500px;}
.y7{bottom:645.510000px;}
.y94{bottom:646.731000px;}
.y6b{bottom:649.987500px;}
.y19e{bottom:651.244500px;}
.y154{bottom:653.019000px;}
.ycb{bottom:659.742450px;}
.y6{bottom:666.771000px;}
.y93{bottom:666.994500px;}
.y153{bottom:669.814500px;}
.y6a{bottom:670.252500px;}
.y19d{bottom:670.612500px;}
.y11c{bottom:673.669500px;}
.yca{bottom:678.012000px;}
.y152{bottom:686.610000px;}
.y92{bottom:687.258000px;}
.y19c{bottom:689.979000px;}
.y69{bottom:690.516000px;}
.yc0{bottom:693.592500px;}
.yc9{bottom:696.192450px;}
.y151{bottom:703.405500px;}
.y91{bottom:707.523000px;}
.y37{bottom:708.019500px;}
.y19b{bottom:709.347000px;}
.y68{bottom:710.781000px;}
.y103{bottom:712.947000px;}
.ybf{bottom:713.856000px;}
.yc8{bottom:714.372900px;}
.y150{bottom:720.201000px;}
.y5{bottom:726.298500px;}
.y90{bottom:727.786500px;}
.y19a{bottom:728.715000px;}
.y67{bottom:731.044500px;}
.yc7{bottom:732.642450px;}
.ybe{bottom:734.121000px;}
.y14f{bottom:736.996500px;}
.y36{bottom:746.217000px;}
.y8f{bottom:748.051500px;}
.y199{bottom:748.081500px;}
.yc6{bottom:750.822450px;}
.y66{bottom:751.308000px;}
.y3{bottom:752.599495px;}
.y14e{bottom:753.792000px;}
.ybd{bottom:754.384500px;}
.y35{bottom:766.480500px;}
.y198{bottom:767.449500px;}
.y8e{bottom:768.315000px;}
.yc5{bottom:769.902450px;}
.y14d{bottom:770.587500px;}
.y65{bottom:771.573000px;}
.ybc{bottom:774.648000px;}
.y34{bottom:786.744000px;}
.y197{bottom:786.816000px;}
.y14c{bottom:787.383000px;}
.y8d{bottom:788.578500px;}
.y64{bottom:791.836500px;}
.ybb{bottom:794.913000px;}
.yc4{bottom:798.612450px;}
.y14b{bottom:804.178500px;}
.y196{bottom:806.184000px;}
.y102{bottom:806.602500px;}
.y33{bottom:807.009000px;}
.y8c{bottom:808.843500px;}
.y63{bottom:812.101500px;}
.yba{bottom:815.176500px;}
.y14a{bottom:820.974000px;}
.y195{bottom:825.552000px;}
.y32{bottom:827.272500px;}
.y8b{bottom:829.107000px;}
.y62{bottom:832.365000px;}
.yb9{bottom:835.441500px;}
.yc2{bottom:835.692450px;}
.y149{bottom:837.769500px;}
.y194{bottom:844.918500px;}
.y31{bottom:847.537500px;}
.y8a{bottom:849.372000px;}
.y61{bottom:852.628500px;}
.y148{bottom:854.565000px;}
.y193{bottom:864.286500px;}
.y30{bottom:867.801000px;}
.y89{bottom:869.635500px;}
.y147{bottom:871.360500px;}
.y60{bottom:872.893500px;}
.yb8{bottom:876.810000px;}
.y2{bottom:879.369000px;}
.y192{bottom:883.653000px;}
.y2f{bottom:888.064500px;}
.y146{bottom:888.156000px;}
.y88{bottom:889.899000px;}
.yb7{bottom:891.006000px;}
.y5f{bottom:893.157000px;}
.y191{bottom:903.021000px;}
.y145{bottom:904.951500px;}
.yb6{bottom:905.203500px;}
.y87{bottom:910.164000px;}
.y5e{bottom:913.422000px;}
.y144{bottom:921.747000px;}
.y190{bottom:922.389000px;}
.y2c{bottom:923.497464px;}
.y2b{bottom:924.264000px;}
.yb5{bottom:927.261000px;}
.y101{bottom:930.427500px;}
.y5d{bottom:933.685500px;}
.y143{bottom:938.542500px;}
.y86{bottom:939.394500px;}
.y18f{bottom:941.755500px;}
.yb4{bottom:944.056500px;}
.y100{bottom:950.692500px;}
.y5c{bottom:953.949000px;}
.yb3{bottom:960.852000px;}
.y18e{bottom:961.123500px;}
.y142{bottom:962.541000px;}
.y140{bottom:962.937000px;}
.y2a{bottom:963.270000px;}
.y1{bottom:966.726000px;}
.yff{bottom:970.956000px;}
.y5b{bottom:974.214000px;}
.yb2{bottom:977.647500px;}
.y13f{bottom:979.375500px;}
.y171{bottom:979.923000px;}
.y18d{bottom:980.490000px;}
.y29{bottom:986.308500px;}
.y141{bottom:986.539500px;}
.yfe{bottom:991.219500px;}
.yb1{bottom:994.443000px;}
.y5a{bottom:994.477500px;}
.y18c{bottom:999.858000px;}
.y28{bottom:1004.466000px;}
.yb0{bottom:1011.238500px;}
.y59{bottom:1014.742500px;}
.y13e{bottom:1018.158000px;}
.y18b{bottom:1019.226000px;}
.yfd{bottom:1020.450000px;}
.y27{bottom:1026.706500px;}
.yaf{bottom:1028.034000px;}
.y11b{bottom:1032.765000px;}
.y58{bottom:1035.006000px;}
.y18a{bottom:1038.592500px;}
.y11a{bottom:1040.430000px;}
.yae{bottom:1044.829500px;}
.y57{bottom:1055.269500px;}
.y189{bottom:1057.960500px;}
.yad{bottom:1061.625000px;}
.y26{bottom:1071.244500px;}
.y56{bottom:1075.534500px;}
.y188{bottom:1077.327000px;}
.yac{bottom:1085.623500px;}
.y55{bottom:1095.798000px;}
.y187{bottom:1096.695000px;}
.y25{bottom:1100.145000px;}
.y119{bottom:1113.820500px;}
.y54{bottom:1116.063000px;}
.yab{bottom:1117.543500px;}
.y118{bottom:1121.487000px;}
.y21{bottom:1137.954000px;}
.y53{bottom:1168.366500px;}
.h31{height:5.971622px;}
.h28{height:13.628880px;}
.h27{height:17.932680px;}
.h11{height:25.508090px;}
.h23{height:30.189221px;}
.h2b{height:30.252344px;}
.h30{height:30.461558px;}
.h18{height:31.131341px;}
.h7{height:32.130000px;}
.h26{height:33.072749px;}
.h13{height:33.112997px;}
.h12{height:34.199443px;}
.h1c{height:35.991211px;}
.ha{height:36.277321px;}
.hf{height:36.319550px;}
.h32{height:37.927872px;}
.h21{height:38.896243px;}
.h1e{height:39.418945px;}
.h17{height:39.432893px;}
.h19{height:40.096243px;}
.h20{height:40.991288px;}
.h16{height:41.508281px;}
.h1b{height:42.760020px;}
.h2a{height:42.788597px;}
.h14{height:43.217759px;}
.hc{height:43.815515px;}
.hb{height:44.827234px;}
.h6{height:45.900000px;}
.h10{height:46.697011px;}
.h3{height:48.195000px;}
.h1d{height:48.225586px;}
.h9{height:50.931027px;}
.h15{height:51.885221px;}
.h1f{height:53.691152px;}
.he{height:54.547601px;}
.h22{height:54.768749px;}
.h2{height:55.080000px;}
.h2f{height:55.849550px;}
.h24{height:57.762749px;}
.h25{height:60.849221px;}
.h2c{height:76.505011px;}
.hd{height:77.792486px;}
.h5{height:78.030000px;}
.h2d{height:83.525011px;}
.h2e{height:83.531011px;}
.h29{height:104.650243px;}
.h4{height:119.055004px;}
.h1a{height:350.526000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:75.364879px;}
.w4{width:209.166223px;}
.w6{width:606.042150px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x21{left:-27.376350px;}
.x2a{left:-8.294100px;}
.x29{left:-5.414550px;}
.x0{left:0.000000px;}
.x25{left:3.043200px;}
.x27{left:5.204550px;}
.x26{left:7.004100px;}
.x28{left:8.985900px;}
.x24{left:11.233650px;}
.x23{left:17.263650px;}
.xb{left:29.274117px;}
.x22{left:53.984100px;}
.x6{left:60.141348px;}
.x2d{left:74.683650px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x7{left:113.754000px;}
.x5{left:114.802500px;}
.x38{left:119.772000px;}
.x9{left:122.110500px;}
.x8{left:123.307500px;}
.x53{left:128.497500px;}
.x39{left:129.769500px;}
.x49{left:131.458500px;}
.x51{left:134.194500px;}
.x15{left:136.063500px;}
.x4f{left:138.849000px;}
.x58{left:141.538500px;}
.x20{left:143.435850px;}
.xd{left:146.692500px;}
.x1f{left:149.361000px;}
.x1e{left:152.199000px;}
.x1a{left:160.599000px;}
.x1c{left:162.744000px;}
.x1b{left:164.653500px;}
.x1d{left:166.563000px;}
.x19{left:168.756000px;}
.x3c{left:173.341500px;}
.x18{left:174.820500px;}
.xc{left:188.953500px;}
.x52{left:192.322500px;}
.x16{left:197.958000px;}
.x57{left:201.966000px;}
.x4{left:203.484001px;}
.xf{left:207.942000px;}
.x47{left:210.063000px;}
.x3e{left:212.050500px;}
.x36{left:213.606000px;}
.x10{left:221.989500px;}
.x3a{left:227.913000px;}
.x4d{left:229.302000px;}
.x50{left:233.970000px;}
.x3b{left:236.646000px;}
.x65{left:240.318000px;}
.x3d{left:247.452000px;}
.x66{left:251.667000px;}
.x68{left:254.101500px;}
.x17{left:256.470000px;}
.x67{left:267.238500px;}
.x4a{left:270.861000px;}
.x64{left:280.545000px;}
.x5a{left:282.673500px;}
.x54{left:307.020000px;}
.x48{left:309.819000px;}
.x5b{left:311.631000px;}
.x34{left:323.080500px;}
.x5c{left:335.142000px;}
.x5d{left:339.300000px;}
.x5e{left:345.967500px;}
.xe{left:362.794500px;}
.x5f{left:365.020500px;}
.x37{left:374.532000px;}
.x59{left:376.149000px;}
.x44{left:383.601000px;}
.x2e{left:390.403650px;}
.x60{left:395.142000px;}
.x33{left:399.037500px;}
.x61{left:402.661500px;}
.x4e{left:444.172500px;}
.x3{left:454.959000px;}
.x2f{left:472.416000px;}
.x30{left:476.866500px;}
.x4b{left:481.344000px;}
.x35{left:536.196000px;}
.x41{left:539.523000px;}
.x42{left:547.867500px;}
.x43{left:556.843500px;}
.x2c{left:565.363650px;}
.x45{left:574.242000px;}
.x46{left:584.239500px;}
.x2b{left:601.272345px;}
.x11{left:621.468000px;}
.x12{left:635.517000px;}
.x4c{left:671.182500px;}
.x55{left:694.540500px;}
.xa{left:701.339982px;}
.x56{left:706.291500px;}
.x62{left:710.677500px;}
.x63{left:718.197000px;}
.x3f{left:761.769000px;}
.x31{left:767.625000px;}
.x13{left:770.553000px;}
.x32{left:772.074000px;}
.x40{left:774.564000px;}
.x14{left:776.979000px;}
@media print{
.vb{vertical-align:-27.258667pt;}
.vc{vertical-align:-25.466667pt;}
.v12{vertical-align:-24.533333pt;}
.v8{vertical-align:-19.285333pt;}
.v2{vertical-align:-17.360000pt;}
.v3{vertical-align:-9.946667pt;}
.v6{vertical-align:-8.896000pt;}
.v4{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.066667pt;}
.va{vertical-align:7.968000pt;}
.v10{vertical-align:13.498667pt;}
.vf{vertical-align:17.354667pt;}
.v1{vertical-align:19.290667pt;}
.v9{vertical-align:21.946667pt;}
.v7{vertical-align:27.253333pt;}
.v11{vertical-align:32.736000pt;}
.vd{vertical-align:34.005333pt;}
.ve{vertical-align:58.448000pt;}
.ls44{letter-spacing:-0.675655pt;}
.ls42{letter-spacing:-0.128256pt;}
.ls3b{letter-spacing:-0.117568pt;}
.ls41{letter-spacing:-0.096192pt;}
.ls43{letter-spacing:-0.085504pt;}
.ls32{letter-spacing:-0.080864pt;}
.ls3e{letter-spacing:-0.074816pt;}
.ls40{letter-spacing:-0.064128pt;}
.ls36{letter-spacing:-0.061824pt;}
.ls38{letter-spacing:-0.048000pt;}
.ls3c{letter-spacing:-0.042752pt;}
.ls3d{letter-spacing:-0.037408pt;}
.ls3a{letter-spacing:-0.026720pt;}
.ls37{letter-spacing:-0.023552pt;}
.ls3f{letter-spacing:-0.021376pt;}
.ls35{letter-spacing:-0.019200pt;}
.ls33{letter-spacing:-0.012768pt;}
.ls39{letter-spacing:-0.009600pt;}
.ls34{letter-spacing:-0.004800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls84{letter-spacing:0.000052pt;}
.ls60{letter-spacing:0.000189pt;}
.ls48{letter-spacing:0.000243pt;}
.lsd{letter-spacing:0.000274pt;}
.ls18{letter-spacing:0.000525pt;}
.ls16{letter-spacing:0.000540pt;}
.ls82{letter-spacing:0.000711pt;}
.ls61{letter-spacing:0.001009pt;}
.ls14{letter-spacing:0.001021pt;}
.ls85{letter-spacing:0.001259pt;}
.ls5e{letter-spacing:0.001349pt;}
.ls5d{letter-spacing:0.001829pt;}
.ls6{letter-spacing:0.001990pt;}
.ls19{letter-spacing:0.002551pt;}
.ls5{letter-spacing:0.002613pt;}
.ls76{letter-spacing:0.002630pt;}
.ls77{letter-spacing:0.002651pt;}
.ls73{letter-spacing:0.002815pt;}
.ls6a{letter-spacing:0.002886pt;}
.ls8{letter-spacing:0.003100pt;}
.ls5f{letter-spacing:0.003106pt;}
.ls4c{letter-spacing:0.003198pt;}
.ls79{letter-spacing:0.003350pt;}
.ls58{letter-spacing:0.003511pt;}
.ls54{letter-spacing:0.003933pt;}
.lsb{letter-spacing:0.003942pt;}
.ls13{letter-spacing:0.004147pt;}
.ls80{letter-spacing:0.004446pt;}
.lsc{letter-spacing:0.004625pt;}
.ls1e{letter-spacing:0.004800pt;}
.ls1b{letter-spacing:0.008512pt;}
.ls2c{letter-spacing:0.010688pt;}
.ls1d{letter-spacing:0.014400pt;}
.ls30{letter-spacing:0.016032pt;}
.ls23{letter-spacing:0.017664pt;}
.ls20{letter-spacing:0.019200pt;}
.ls2b{letter-spacing:0.021376pt;}
.ls24{letter-spacing:0.024000pt;}
.ls25{letter-spacing:0.028800pt;}
.ls2e{letter-spacing:0.032064pt;}
.ls26{letter-spacing:0.033600pt;}
.ls27{letter-spacing:0.038400pt;}
.ls2d{letter-spacing:0.042752pt;}
.ls2f{letter-spacing:0.043200pt;}
.ls22{letter-spacing:0.047104pt;}
.ls21{letter-spacing:0.048000pt;}
.ls29{letter-spacing:0.052800pt;}
.ls2a{letter-spacing:0.057600pt;}
.ls28{letter-spacing:0.081600pt;}
.ls1f{letter-spacing:0.156800pt;}
.ls1c{letter-spacing:0.161728pt;}
.ls31{letter-spacing:0.310301pt;}
.ls17{letter-spacing:0.420896pt;}
.ls83{letter-spacing:0.466280pt;}
.ls81{letter-spacing:0.471509pt;}
.ls45{letter-spacing:0.630612pt;}
.ls9{letter-spacing:1.133683pt;}
.ls4{letter-spacing:1.654338pt;}
.ls47{letter-spacing:1.766713pt;}
.ls55{letter-spacing:2.651733pt;}
.ls7a{letter-spacing:2.652713pt;}
.ls4a{letter-spacing:2.653865pt;}
.ls64{letter-spacing:2.654017pt;}
.ls5a{letter-spacing:2.654178pt;}
.ls71{letter-spacing:2.654531pt;}
.ls7e{letter-spacing:2.656533pt;}
.ls56{letter-spacing:2.657067pt;}
.ls63{letter-spacing:2.658046pt;}
.ls6e{letter-spacing:2.658815pt;}
.ls4b{letter-spacing:2.659198pt;}
.ls49{letter-spacing:2.659511pt;}
.ls75{letter-spacing:2.659865pt;}
.ls46{letter-spacing:2.757674pt;}
.ls7{letter-spacing:10.626533pt;}
.ls68{letter-spacing:11.094344pt;}
.ls69{letter-spacing:11.099041pt;}
.ls6c{letter-spacing:11.950003pt;}
.ls7d{letter-spacing:11.951411pt;}
.ls70{letter-spacing:11.951710pt;}
.ls7b{letter-spacing:11.952751pt;}
.ls1a{letter-spacing:11.953007pt;}
.ls66{letter-spacing:11.954099pt;}
.ls67{letter-spacing:11.954551pt;}
.ls6d{letter-spacing:11.956053pt;}
.ls7c{letter-spacing:11.956745pt;}
.ls72{letter-spacing:11.959885pt;}
.ls74{letter-spacing:12.135515pt;}
.ls59{letter-spacing:12.899702pt;}
.lse{letter-spacing:13.177199pt;}
.ls5b{letter-spacing:13.255200pt;}
.ls12{letter-spacing:13.280110pt;}
.ls11{letter-spacing:13.283349pt;}
.lsa{letter-spacing:13.283467pt;}
.ls50{letter-spacing:13.284042pt;}
.ls4e{letter-spacing:13.284147pt;}
.ls10{letter-spacing:13.285443pt;}
.ls52{letter-spacing:13.386107pt;}
.ls78{letter-spacing:13.389734pt;}
.lsf{letter-spacing:13.496002pt;}
.ls6f{letter-spacing:14.610886pt;}
.ls6b{letter-spacing:14.613446pt;}
.ls7f{letter-spacing:14.616220pt;}
.ls62{letter-spacing:15.249420pt;}
.ls5c{letter-spacing:15.912845pt;}
.ls4d{letter-spacing:15.936098pt;}
.ls4f{letter-spacing:15.939511pt;}
.ls53{letter-spacing:15.941431pt;}
.ls2{letter-spacing:62.432533pt;}
.ls3{letter-spacing:64.314231pt;}
.ls1{letter-spacing:64.321067pt;}
.ls65{letter-spacing:132.953198pt;}
.ls57{letter-spacing:412.344845pt;}
.ls51{letter-spacing:681.246178pt;}
.ls15{letter-spacing:822.446178pt;}
.ws63{word-spacing:-48.000000pt;}
.wsad{word-spacing:-40.078876pt;}
.wsc3{word-spacing:-36.071229pt;}
.ws68{word-spacing:-16.671166pt;}
.ws9{word-spacing:-15.461955pt;}
.ws1{word-spacing:-14.692637pt;}
.ws64{word-spacing:-14.223793pt;}
.ws4{word-spacing:-13.915853pt;}
.ws30{word-spacing:-13.283467pt;}
.ws44{word-spacing:-12.369595pt;}
.ws45{word-spacing:-11.955200pt;}
.wsa9{word-spacing:-11.751123pt;}
.wsc2{word-spacing:-10.823338pt;}
.ws5e{word-spacing:-10.801728pt;}
.ws1d{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.wsb6{word-spacing:-9.298400pt;}
.ws60{word-spacing:-7.407104pt;}
.ws61{word-spacing:-7.377664pt;}
.ws62{word-spacing:-7.336448pt;}
.ws5f{word-spacing:-7.298176pt;}
.wsa6{word-spacing:-3.400567pt;}
.wsd7{word-spacing:-3.347434pt;}
.ws2b{word-spacing:-3.188032pt;}
.ws7{word-spacing:-2.816095pt;}
.ws11{word-spacing:-2.709827pt;}
.ws42{word-spacing:-2.444158pt;}
.ws3a{word-spacing:-2.391024pt;}
.ws39{word-spacing:-2.284756pt;}
.ws31{word-spacing:-2.125355pt;}
.wsd9{word-spacing:-1.965953pt;}
.wsda{word-spacing:-1.912819pt;}
.ws6{word-spacing:-1.696326pt;}
.ws1b{word-spacing:-1.434614pt;}
.ws86{word-spacing:-1.223776pt;}
.ws5{word-spacing:-1.175671pt;}
.ws98{word-spacing:-1.152000pt;}
.ws9a{word-spacing:-1.137600pt;}
.wsb3{word-spacing:-1.115811pt;}
.ws99{word-spacing:-1.113600pt;}
.wsd{word-spacing:-1.062677pt;}
.wsd0{word-spacing:-0.956410pt;}
.wsc{word-spacing:-0.903276pt;}
.wsa2{word-spacing:-0.897792pt;}
.wsc0{word-spacing:-0.860774pt;}
.ws19{word-spacing:-0.797008pt;}
.wse6{word-spacing:-0.765133pt;}
.ws3f{word-spacing:-0.743874pt;}
.wsc5{word-spacing:-0.690740pt;}
.wse5{word-spacing:-0.669491pt;}
.wsdb{word-spacing:-0.584473pt;}
.wsde{word-spacing:-0.478208pt;}
.ws32{word-spacing:-0.478205pt;}
.wse7{word-spacing:-0.430387pt;}
.ws36{word-spacing:-0.425071pt;}
.ws1a{word-spacing:-0.371937pt;}
.ws23{word-spacing:-0.318803pt;}
.ws21{word-spacing:-0.265669pt;}
.wsdf{word-spacing:-0.239104pt;}
.ws81{word-spacing:-0.216000pt;}
.ws12{word-spacing:-0.212535pt;}
.ws7f{word-spacing:-0.211200pt;}
.ws97{word-spacing:-0.192000pt;}
.wse8{word-spacing:-0.191283pt;}
.ws18{word-spacing:-0.159402pt;}
.ws80{word-spacing:-0.153600pt;}
.ws69{word-spacing:-0.143462pt;}
.ws22{word-spacing:-0.106268pt;}
.ws6b{word-spacing:-0.095642pt;}
.ws5a{word-spacing:-0.085014pt;}
.ws70{word-spacing:-0.068096pt;}
.ws24{word-spacing:-0.053134pt;}
.ws4e{word-spacing:-0.047821pt;}
.ws1e{word-spacing:-0.042507pt;}
.wsb7{word-spacing:-0.037194pt;}
.wsc6{word-spacing:-0.019977pt;}
.wsc7{word-spacing:-0.018679pt;}
.wsc8{word-spacing:-0.017698pt;}
.ws3{word-spacing:-0.009975pt;}
.ws41{word-spacing:-0.001532pt;}
.ws0{word-spacing:0.000000pt;}
.ws55{word-spacing:0.001220pt;}
.ws91{word-spacing:0.042752pt;}
.ws90{word-spacing:0.048096pt;}
.ws15{word-spacing:0.053134pt;}
.ws9f{word-spacing:0.058784pt;}
.ws7e{word-spacing:0.076800pt;}
.ws6a{word-spacing:0.095642pt;}
.ws10{word-spacing:0.106268pt;}
.ws9b{word-spacing:0.115200pt;}
.ws75{word-spacing:0.139200pt;}
.ws6c{word-spacing:0.143462pt;}
.ws71{word-spacing:0.144000pt;}
.ws72{word-spacing:0.153600pt;}
.ws8{word-spacing:0.159402pt;}
.ws73{word-spacing:0.163200pt;}
.ws74{word-spacing:0.177600pt;}
.wsc4{word-spacing:0.191283pt;}
.ws14{word-spacing:0.212535pt;}
.ws6f{word-spacing:0.229824pt;}
.wsb{word-spacing:0.265669pt;}
.wse2{word-spacing:0.286925pt;}
.ws2d{word-spacing:0.318803pt;}
.wsf8{word-spacing:0.430387pt;}
.ws89{word-spacing:0.438208pt;}
.wsb4{word-spacing:0.478205pt;}
.ws33{word-spacing:0.531339pt;}
.ws6e{word-spacing:0.637606pt;}
.wse9{word-spacing:0.669491pt;}
.wsb1{word-spacing:0.690740pt;}
.ws87{word-spacing:0.710752pt;}
.ws6d{word-spacing:0.743874pt;}
.ws88{word-spacing:0.764192pt;}
.ws37{word-spacing:0.797008pt;}
.ws5b{word-spacing:0.850142pt;}
.ws40{word-spacing:0.903276pt;}
.ws13{word-spacing:0.956410pt;}
.wsa7{word-spacing:1.009543pt;}
.wsdd{word-spacing:1.099878pt;}
.ws2c{word-spacing:1.115811pt;}
.wsf6{word-spacing:1.147699pt;}
.wsd3{word-spacing:1.222079pt;}
.ws38{word-spacing:1.275213pt;}
.ws29{word-spacing:1.381481pt;}
.wsdc{word-spacing:1.386803pt;}
.ws2a{word-spacing:1.434614pt;}
.ws20{word-spacing:1.487748pt;}
.wsb5{word-spacing:1.540882pt;}
.wsac{word-spacing:1.647150pt;}
.ws83{word-spacing:1.771200pt;}
.ws82{word-spacing:1.780800pt;}
.ws26{word-spacing:1.859685pt;}
.ws27{word-spacing:1.912819pt;}
.wsf9{word-spacing:1.912832pt;}
.ws3c{word-spacing:1.965953pt;}
.ws17{word-spacing:2.019087pt;}
.wsd1{word-spacing:2.072221pt;}
.wsab{word-spacing:2.125355pt;}
.wsf3{word-spacing:2.391040pt;}
.wsa5{word-spacing:2.404800pt;}
.ws3d{word-spacing:2.497292pt;}
.ws43{word-spacing:2.603559pt;}
.wsa3{word-spacing:2.618560pt;}
.ws5d{word-spacing:2.656693pt;}
.ws28{word-spacing:2.762961pt;}
.ws59{word-spacing:2.762968pt;}
.wsa4{word-spacing:2.768192pt;}
.wsa{word-spacing:2.869229pt;}
.wsef{word-spacing:2.917069pt;}
.ws3b{word-spacing:3.028630pt;}
.ws93{word-spacing:3.033600pt;}
.ws94{word-spacing:3.048000pt;}
.wsa0{word-spacing:3.281216pt;}
.ws34{word-spacing:3.294300pt;}
.ws84{word-spacing:3.307936pt;}
.wsa1{word-spacing:3.377408pt;}
.ws85{word-spacing:3.398784pt;}
.wsb2{word-spacing:3.400567pt;}
.wse1{word-spacing:3.538739pt;}
.ws35{word-spacing:3.559969pt;}
.ws92{word-spacing:3.657600pt;}
.ws9d{word-spacing:3.665984pt;}
.ws9e{word-spacing:3.676672pt;}
.wsd2{word-spacing:3.772505pt;}
.ws9c{word-spacing:3.901120pt;}
.ws95{word-spacing:3.960000pt;}
.ws96{word-spacing:3.979200pt;}
.ws2f{word-spacing:4.038174pt;}
.ws2e{word-spacing:4.091308pt;}
.wsd6{word-spacing:4.144442pt;}
.wsd5{word-spacing:4.197575pt;}
.wsa8{word-spacing:4.356977pt;}
.ws8f{word-spacing:4.515680pt;}
.wsaa{word-spacing:4.516379pt;}
.ws8e{word-spacing:4.537056pt;}
.wsf0{word-spacing:4.780126pt;}
.wse0{word-spacing:4.781175pt;}
.wse4{word-spacing:4.782080pt;}
.wsd8{word-spacing:4.941450pt;}
.wsf7{word-spacing:4.973363pt;}
.wsd4{word-spacing:5.100851pt;}
.wsaf{word-spacing:5.153985pt;}
.wse{word-spacing:5.307978pt;}
.wsf{word-spacing:5.313387pt;}
.ws3e{word-spacing:5.842788pt;}
.ws16{word-spacing:5.897859pt;}
.wsb0{word-spacing:5.950993pt;}
.wseb{word-spacing:6.312346pt;}
.wscf{word-spacing:7.890432pt;}
.wsae{word-spacing:8.767088pt;}
.ws5c{word-spacing:9.404694pt;}
.ws1c{word-spacing:10.584293pt;}
.ws25{word-spacing:11.423781pt;}
.wsec{word-spacing:11.716096pt;}
.wsee{word-spacing:11.811738pt;}
.wsf5{word-spacing:11.899674pt;}
.wsf2{word-spacing:11.905186pt;}
.wsed{word-spacing:11.905220pt;}
.wse3{word-spacing:11.907379pt;}
.wsf1{word-spacing:12.050842pt;}
.wsea{word-spacing:12.576870pt;}
.wsfa{word-spacing:13.772390pt;}
.ws8d{word-spacing:14.182976pt;}
.ws8c{word-spacing:14.188320pt;}
.wsf4{word-spacing:14.250598pt;}
.ws8a{word-spacing:24.069376pt;}
.ws8b{word-spacing:24.154880pt;}
.ws48{word-spacing:30.722356pt;}
.ws47{word-spacing:51.401998pt;}
.ws46{word-spacing:72.856931pt;}
.ws77{word-spacing:82.353600pt;}
.ws78{word-spacing:83.630400pt;}
.wsb9{word-spacing:84.951364pt;}
.wsc1{word-spacing:89.182933pt;}
.wsb8{word-spacing:99.224730pt;}
.wsba{word-spacing:103.771136pt;}
.ws76{word-spacing:104.750400pt;}
.wsbb{word-spacing:105.169647pt;}
.wsbd{word-spacing:105.197500pt;}
.wsbe{word-spacing:123.065600pt;}
.wsbc{word-spacing:123.186381pt;}
.ws65{word-spacing:150.490935pt;}
.ws66{word-spacing:153.063467pt;}
.ws67{word-spacing:153.704566pt;}
.wsbf{word-spacing:170.194227pt;}
.ws56{word-spacing:172.810812pt;}
.ws4c{word-spacing:179.209600pt;}
.ws4d{word-spacing:179.214933pt;}
.ws4a{word-spacing:192.266103pt;}
.ws4b{word-spacing:198.414933pt;}
.ws7d{word-spacing:209.433600pt;}
.ws49{word-spacing:211.224474pt;}
.ws58{word-spacing:215.082667pt;}
.ws4f{word-spacing:220.389231pt;}
.ws7b{word-spacing:221.577600pt;}
.ws52{word-spacing:227.030400pt;}
.ws51{word-spacing:227.035733pt;}
.ws57{word-spacing:234.283733pt;}
.ws50{word-spacing:246.235733pt;}
.ws54{word-spacing:247.090074pt;}
.ws7a{word-spacing:250.689600pt;}
.ws53{word-spacing:259.045274pt;}
.ws7c{word-spacing:267.014400pt;}
.ws79{word-spacing:272.457600pt;}
.wscc{word-spacing:296.233600pt;}
.wsc9{word-spacing:312.210313pt;}
.wscd{word-spacing:318.916915pt;}
.wscb{word-spacing:335.562701pt;}
.wsca{word-spacing:347.521101pt;}
.wsce{word-spacing:352.152371pt;}
.ws1f{word-spacing:642.623850pt;}
._24{margin-left:-46.108800pt;}
._25{margin-left:-31.065600pt;}
._23{margin-left:-27.225600pt;}
._26{margin-left:-23.183817pt;}
._27{margin-left:-8.653888pt;}
._1{margin-left:-6.854269pt;}
._0{margin-left:-5.260288pt;}
._a{margin-left:-3.599759pt;}
._14{margin-left:-2.709827pt;}
._6{margin-left:-1.819895pt;}
._3{margin-left:-0.908595pt;}
._7{width:0.969929pt;}
._2{width:2.657593pt;}
._28{width:4.887297pt;}
._33{width:7.334400pt;}
._3a{width:10.560270pt;}
._8{width:11.689451pt;}
._57{width:12.624691pt;}
._e{width:13.963462pt;}
._3d{width:14.904170pt;}
._4{width:15.876506pt;}
._5{width:17.598054pt;}
._b{width:19.075058pt;}
._d{width:20.775342pt;}
._13{width:22.382701pt;}
._10{width:23.538303pt;}
._20{width:25.079185pt;}
._32{width:26.217600pt;}
._9{width:27.579076pt;}
._12{width:29.656616pt;}
._11{width:31.840530pt;}
._c{width:36.928037pt;}
._1f{width:47.568154pt;}
._35{width:53.121600pt;}
._36{width:68.164800pt;}
._34{width:72.000000pt;}
._15{width:81.390302pt;}
._22{width:91.060800pt;}
._44{width:94.348151pt;}
._46{width:117.130726pt;}
._45{width:126.431684pt;}
._3f{width:131.931793pt;}
._41{width:148.289519pt;}
._40{width:151.018086pt;}
._3b{width:167.623828pt;}
._3c{width:172.710553pt;}
._49{width:181.354172pt;}
._37{width:192.902400pt;}
._2b{width:202.358400pt;}
._1d{width:204.864307pt;}
._48{width:205.756960pt;}
._29{width:213.057600pt;}
._19{width:216.819507pt;}
._2a{width:220.920000pt;}
._2d{width:227.352183pt;}
._42{width:229.300736pt;}
._1a{width:232.026522pt;}
._47{width:234.915746pt;}
._2c{width:235.843200pt;}
._39{width:238.200000pt;}
._2e{width:241.080000pt;}
._17{width:242.355814pt;}
._18{width:245.798912pt;}
._30{width:250.368000pt;}
._38{width:257.088000pt;}
._1b{width:261.914522pt;}
._31{width:265.411200pt;}
._16{width:267.366093pt;}
._2f{width:268.929600pt;}
._4c{width:272.387277pt;}
._1e{width:278.221414pt;}
._43{width:279.703859pt;}
._4b{width:281.712333pt;}
._1c{width:290.176614pt;}
._55{width:291.757483pt;}
._4d{width:300.314624pt;}
._51{width:306.292224pt;}
._4f{width:315.569459pt;}
._3e{width:323.253214pt;}
._52{width:324.174421pt;}
._50{width:340.149350pt;}
._56{width:348.231066pt;}
._4a{width:350.909030pt;}
._53{width:360.186266pt;}
._54{width:363.533722pt;}
._4e{width:375.488922pt;}
._21{width:1221.868247pt;}
._f{width:1585.857869pt;}
.fs12{font-size:29.440000pt;}
.fsf{font-size:31.880533pt;}
.fsa{font-size:37.193600pt;}
.fsd{font-size:37.276537pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.381867pt;}
.fsc{font-size:41.988267pt;}
.fse{font-size:42.507200pt;}
.fs10{font-size:42.560000pt;}
.fs5{font-size:46.397853pt;}
.fsb{font-size:47.820800pt;}
.fs11{font-size:48.000000pt;}
.fs14{font-size:50.048533pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs13{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.770546pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.yc3{bottom:-241.002267pt;}
.ye5{bottom:-211.481613pt;}
.ye4{bottom:-193.481685pt;}
.ye3{bottom:-175.561917pt;}
.ye2{bottom:-157.561989pt;}
.ye1{bottom:-139.562061pt;}
.ye0{bottom:-121.562133pt;}
.ydf{bottom:-87.963467pt;}
.yde{bottom:-70.683467pt;}
.ydd{bottom:-53.323067pt;}
.ydc{bottom:-35.962667pt;}
.ydb{bottom:-18.602267pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:3.044747pt;}
.yda{bottom:3.078349pt;}
.y24{bottom:5.145434pt;}
.yf0{bottom:7.557733pt;}
.y2d{bottom:12.578910pt;}
.y23{bottom:19.838154pt;}
.yeb{bottom:25.317733pt;}
.y22{bottom:34.359615pt;}
.yf2{bottom:40.757733pt;}
.ye6{bottom:55.237733pt;}
.yf1{bottom:56.437867pt;}
.y52{bottom:56.693333pt;}
.yec{bottom:85.077733pt;}
.y4{bottom:86.333337pt;}
.yfc{bottom:96.544000pt;}
.y186{bottom:97.022667pt;}
.y117{bottom:97.645333pt;}
.y170{bottom:100.584000pt;}
.y51{bottom:103.142667pt;}
.y13d{bottom:105.674667pt;}
.y85{bottom:109.441333pt;}
.y185{bottom:114.237333pt;}
.yfb{bottom:114.556000pt;}
.ye7{bottom:114.837733pt;}
.y116{bottom:115.658667pt;}
.y16f{bottom:118.596000pt;}
.y50{bottom:121.154667pt;}
.y13c{bottom:123.686667pt;}
.y20{bottom:123.790666pt;}
.y84{bottom:127.454667pt;}
.y184{bottom:131.453333pt;}
.yfa{bottom:132.568000pt;}
.y16e{bottom:136.608000pt;}
.y4f{bottom:139.166667pt;}
.y115{bottom:141.641333pt;}
.y13b{bottom:141.700000pt;}
.yed{bottom:144.677733pt;}
.y83{bottom:145.466667pt;}
.y183{bottom:148.668000pt;}
.yf9{bottom:150.581333pt;}
.y16d{bottom:154.621333pt;}
.y4e{bottom:157.180000pt;}
.y13a{bottom:159.712000pt;}
.y82{bottom:163.478667pt;}
.y182{bottom:165.884000pt;}
.yf8{bottom:168.593333pt;}
.yaa{bottom:170.048000pt;}
.y114{bottom:172.592000pt;}
.y16c{bottom:172.633333pt;}
.ye8{bottom:174.517733pt;}
.y17{bottom:175.052000pt;}
.y4d{bottom:175.192000pt;}
.y139{bottom:177.724000pt;}
.y81{bottom:181.492000pt;}
.ya9{bottom:182.668000pt;}
.y181{bottom:183.100000pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.ya8{bottom:186.525333pt;}
.y113{bottom:190.604000pt;}
.y16b{bottom:190.646667pt;}
.y4c{bottom:193.205333pt;}
.y138{bottom:195.737333pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.yf7{bottom:198.141333pt;}
.y80{bottom:199.504000pt;}
.yee{bottom:204.357733pt;}
.y112{bottom:206.130667pt;}
.y180{bottom:208.285333pt;}
.y111{bottom:208.617333pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y16a{bottom:208.658667pt;}
.y4b{bottom:211.217333pt;}
.yf6{bottom:215.236000pt;}
.y7f{bottom:217.517333pt;}
.y169{bottom:226.670667pt;}
.y4a{bottom:229.229333pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.yf5{bottom:232.332000pt;}
.ye9{bottom:234.117733pt;}
.y7e{bottom:235.529333pt;}
.y137{bottom:237.422667pt;}
.ya7{bottom:238.637333pt;}
.y110{bottom:241.640000pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y17f{bottom:243.353333pt;}
.y168{bottom:244.684000pt;}
.y49{bottom:247.242667pt;}
.yf4{bottom:249.428000pt;}
.y135{bottom:252.034667pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y7d{bottom:253.541333pt;}
.y136{bottom:256.374667pt;}
.ya6{bottom:256.650667pt;}
.y167{bottom:262.696000pt;}
.yef{bottom:263.957733pt;}
.y134{bottom:264.257333pt;}
.y17e{bottom:264.833333pt;}
.y48{bottom:265.254667pt;}
.yf3{bottom:266.524000pt;}
.y133{bottom:266.646667pt;}
.y7c{bottom:271.554667pt;}
.ya5{bottom:274.662667pt;}
.y1af{bottom:275.396000pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y17d{bottom:278.342667pt;}
.y166{bottom:280.709333pt;}
.y132{bottom:281.258667pt;}
.y47{bottom:283.268000pt;}
.yc1{bottom:286.461333pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y7b{bottom:289.566667pt;}
.y1ae{bottom:292.612000pt;}
.ya4{bottom:292.674667pt;}
.yea{bottom:293.797733pt;}
.y131{bottom:295.870667pt;}
.y165{bottom:298.721333pt;}
.y17c{bottom:299.821333pt;}
.y46{bottom:301.280000pt;}
.y7a{bottom:307.580000pt;}
.y10f{bottom:308.694667pt;}
.ye{bottom:309.452000pt;}
.y1ad{bottom:309.828000pt;}
.y130{bottom:310.482667pt;}
.ya3{bottom:310.688000pt;}
.y164{bottom:316.733333pt;}
.y45{bottom:319.292000pt;}
.y17b{bottom:321.301333pt;}
.yd9{bottom:325.078397pt;}
.y79{bottom:325.592000pt;}
.y10e{bottom:326.708000pt;}
.ya2{bottom:328.700000pt;}
.y12f{bottom:331.813333pt;}
.y163{bottom:334.746667pt;}
.y17a{bottom:334.810667pt;}
.y44{bottom:337.305333pt;}
.y1ac{bottom:337.868000pt;}
.yd8{bottom:343.078325pt;}
.y78{bottom:343.604000pt;}
.yd{bottom:343.809333pt;}
.y10d{bottom:344.720000pt;}
.ya1{bottom:346.713333pt;}
.y12e{bottom:346.742667pt;}
.y179{bottom:348.320000pt;}
.y1ab{bottom:355.082667pt;}
.y43{bottom:355.317333pt;}
.yd7{bottom:361.078253pt;}
.y77{bottom:361.617333pt;}
.y12d{bottom:361.672000pt;}
.yc{bottom:362.706666pt;}
.y9f{bottom:364.725333pt;}
.ya0{bottom:369.546667pt;}
.y178{bottom:369.800000pt;}
.y1aa{bottom:372.298667pt;}
.y42{bottom:373.330667pt;}
.y162{bottom:376.432000pt;}
.yd6{bottom:379.078181pt;}
.y76{bottom:379.629333pt;}
.y9e{bottom:382.737333pt;}
.y12c{bottom:383.004000pt;}
.y177{bottom:383.309333pt;}
.y161{bottom:389.250667pt;}
.y1a9{bottom:389.514667pt;}
.y160{bottom:391.044000pt;}
.y12a{bottom:391.309333pt;}
.y41{bottom:391.342667pt;}
.yd5{bottom:397.078109pt;}
.y75{bottom:397.642667pt;}
.y12b{bottom:397.933333pt;}
.y9d{bottom:400.750667pt;}
.y15f{bottom:405.656000pt;}
.y1a8{bottom:406.729333pt;}
.y40{bottom:409.354667pt;}
.y176{bottom:412.758667pt;}
.yd4{bottom:414.997877pt;}
.y74{bottom:415.654667pt;}
.y9c{bottom:418.762667pt;}
.y129{bottom:419.265333pt;}
.y15e{bottom:420.268000pt;}
.y1a7{bottom:423.945333pt;}
.y128{bottom:426.009333pt;}
.y3f{bottom:427.368000pt;}
.y175{bottom:430.772000pt;}
.yd3{bottom:432.997805pt;}
.y73{bottom:433.666667pt;}
.y9b{bottom:434.289333pt;}
.y15d{bottom:434.880000pt;}
.y9a{bottom:436.776000pt;}
.y1a6{bottom:441.160000pt;}
.y3e{bottom:445.380000pt;}
.yb{bottom:446.990669pt;}
.y174{bottom:448.784000pt;}
.y15c{bottom:449.492000pt;}
.yd2{bottom:450.997733pt;}
.y72{bottom:451.680000pt;}
.y10c{bottom:454.788000pt;}
.y127{bottom:455.525333pt;}
.y1a5{bottom:458.376000pt;}
.y126{bottom:462.270667pt;}
.ya{bottom:462.990669pt;}
.y3d{bottom:463.393333pt;}
.y173{bottom:466.796000pt;}
.y71{bottom:469.692000pt;}
.y99{bottom:469.798667pt;}
.y15b{bottom:470.505333pt;}
.y10b{bottom:470.808000pt;}
.y10a{bottom:472.800000pt;}
.y1a4{bottom:475.592000pt;}
.y9{bottom:478.990666pt;}
.y3c{bottom:481.405333pt;}
.yd1{bottom:484.597333pt;}
.y172{bottom:484.809333pt;}
.y15a{bottom:485.117333pt;}
.y70{bottom:487.704000pt;}
.y108{bottom:490.813333pt;}
.y125{bottom:491.786667pt;}
.y1a3{bottom:492.806667pt;}
.y8{bottom:494.990666pt;}
.y109{bottom:495.634667pt;}
.y3b{bottom:499.417333pt;}
.y159{bottom:499.729333pt;}
.y124{bottom:500.092000pt;}
.yd0{bottom:501.877333pt;}
.y98{bottom:502.821333pt;}
.y6f{bottom:505.717333pt;}
.y107{bottom:506.338667pt;}
.y106{bottom:508.825333pt;}
.y1a2{bottom:510.022667pt;}
.y158{bottom:514.341333pt;}
.y3a{bottom:517.430667pt;}
.ycf{bottom:519.237733pt;}
.y97{bottom:520.834667pt;}
.y6e{bottom:523.729333pt;}
.y123{bottom:526.254667pt;}
.y1a1{bottom:527.237333pt;}
.y122{bottom:528.048000pt;}
.y121{bottom:528.400000pt;}
.y11f{bottom:528.710667pt;}
.y39{bottom:535.442667pt;}
.y157{bottom:535.673333pt;}
.yce{bottom:537.877333pt;}
.y96{bottom:538.846667pt;}
.y105{bottom:539.856000pt;}
.y6d{bottom:541.742667pt;}
.y104{bottom:541.848000pt;}
.y11e{bottom:543.322667pt;}
.y1a0{bottom:544.453333pt;}
.y120{bottom:549.378667pt;}
.y156{bottom:550.602667pt;}
.ycd{bottom:554.116933pt;}
.y95{bottom:556.858667pt;}
.y6c{bottom:559.754667pt;}
.y38{bottom:561.425333pt;}
.y19f{bottom:561.669333pt;}
.y155{bottom:565.532000pt;}
.ycc{bottom:570.277333pt;}
.y11d{bottom:570.710667pt;}
.y7{bottom:573.786667pt;}
.y94{bottom:574.872000pt;}
.y6b{bottom:577.766667pt;}
.y19e{bottom:578.884000pt;}
.y154{bottom:580.461333pt;}
.ycb{bottom:586.437733pt;}
.y6{bottom:592.685334pt;}
.y93{bottom:592.884000pt;}
.y153{bottom:595.390667pt;}
.y6a{bottom:595.780000pt;}
.y19d{bottom:596.100000pt;}
.y11c{bottom:598.817333pt;}
.yca{bottom:602.677333pt;}
.y152{bottom:610.320000pt;}
.y92{bottom:610.896000pt;}
.y19c{bottom:613.314667pt;}
.y69{bottom:613.792000pt;}
.yc0{bottom:616.526667pt;}
.yc9{bottom:618.837733pt;}
.y151{bottom:625.249333pt;}
.y91{bottom:628.909333pt;}
.y37{bottom:629.350667pt;}
.y19b{bottom:630.530667pt;}
.y68{bottom:631.805333pt;}
.y103{bottom:633.730667pt;}
.ybf{bottom:634.538667pt;}
.yc8{bottom:634.998133pt;}
.y150{bottom:640.178667pt;}
.y5{bottom:645.598667pt;}
.y90{bottom:646.921333pt;}
.y19a{bottom:647.746667pt;}
.y67{bottom:649.817333pt;}
.yc7{bottom:651.237733pt;}
.ybe{bottom:652.552000pt;}
.y14f{bottom:655.108000pt;}
.y36{bottom:663.304000pt;}
.y8f{bottom:664.934667pt;}
.y199{bottom:664.961333pt;}
.yc6{bottom:667.397733pt;}
.y66{bottom:667.829333pt;}
.y3{bottom:668.977329pt;}
.y14e{bottom:670.037333pt;}
.ybd{bottom:670.564000pt;}
.y35{bottom:681.316000pt;}
.y198{bottom:682.177333pt;}
.y8e{bottom:682.946667pt;}
.yc5{bottom:684.357733pt;}
.y14d{bottom:684.966667pt;}
.y65{bottom:685.842667pt;}
.ybc{bottom:688.576000pt;}
.y34{bottom:699.328000pt;}
.y197{bottom:699.392000pt;}
.y14c{bottom:699.896000pt;}
.y8d{bottom:700.958667pt;}
.y64{bottom:703.854667pt;}
.ybb{bottom:706.589333pt;}
.yc4{bottom:709.877733pt;}
.y14b{bottom:714.825333pt;}
.y196{bottom:716.608000pt;}
.y102{bottom:716.980000pt;}
.y33{bottom:717.341333pt;}
.y8c{bottom:718.972000pt;}
.y63{bottom:721.868000pt;}
.yba{bottom:724.601333pt;}
.y14a{bottom:729.754667pt;}
.y195{bottom:733.824000pt;}
.y32{bottom:735.353333pt;}
.y8b{bottom:736.984000pt;}
.y62{bottom:739.880000pt;}
.yb9{bottom:742.614667pt;}
.yc2{bottom:742.837733pt;}
.y149{bottom:744.684000pt;}
.y194{bottom:751.038667pt;}
.y31{bottom:753.366667pt;}
.y8a{bottom:754.997333pt;}
.y61{bottom:757.892000pt;}
.y148{bottom:759.613333pt;}
.y193{bottom:768.254667pt;}
.y30{bottom:771.378667pt;}
.y89{bottom:773.009333pt;}
.y147{bottom:774.542667pt;}
.y60{bottom:775.905333pt;}
.yb8{bottom:779.386667pt;}
.y2{bottom:781.661334pt;}
.y192{bottom:785.469333pt;}
.y2f{bottom:789.390667pt;}
.y146{bottom:789.472000pt;}
.y88{bottom:791.021333pt;}
.yb7{bottom:792.005333pt;}
.y5f{bottom:793.917333pt;}
.y191{bottom:802.685333pt;}
.y145{bottom:804.401333pt;}
.yb6{bottom:804.625333pt;}
.y87{bottom:809.034667pt;}
.y5e{bottom:811.930667pt;}
.y144{bottom:819.330667pt;}
.y190{bottom:819.901333pt;}
.y2c{bottom:820.886634pt;}
.y2b{bottom:821.568000pt;}
.yb5{bottom:824.232000pt;}
.y101{bottom:827.046667pt;}
.y5d{bottom:829.942667pt;}
.y143{bottom:834.260000pt;}
.y86{bottom:835.017333pt;}
.y18f{bottom:837.116000pt;}
.yb4{bottom:839.161333pt;}
.y100{bottom:845.060000pt;}
.y5c{bottom:847.954667pt;}
.yb3{bottom:854.090667pt;}
.y18e{bottom:854.332000pt;}
.y142{bottom:855.592000pt;}
.y140{bottom:855.944000pt;}
.y2a{bottom:856.240000pt;}
.y1{bottom:859.312000pt;}
.yff{bottom:863.072000pt;}
.y5b{bottom:865.968000pt;}
.yb2{bottom:869.020000pt;}
.y13f{bottom:870.556000pt;}
.y171{bottom:871.042667pt;}
.y18d{bottom:871.546667pt;}
.y29{bottom:876.718667pt;}
.y141{bottom:876.924000pt;}
.yfe{bottom:881.084000pt;}
.yb1{bottom:883.949333pt;}
.y5a{bottom:883.980000pt;}
.y18c{bottom:888.762667pt;}
.y28{bottom:892.858667pt;}
.yb0{bottom:898.878667pt;}
.y59{bottom:901.993333pt;}
.y13e{bottom:905.029333pt;}
.y18b{bottom:905.978667pt;}
.yfd{bottom:907.066667pt;}
.y27{bottom:912.628000pt;}
.yaf{bottom:913.808000pt;}
.y11b{bottom:918.013333pt;}
.y58{bottom:920.005333pt;}
.y18a{bottom:923.193333pt;}
.y11a{bottom:924.826667pt;}
.yae{bottom:928.737333pt;}
.y57{bottom:938.017333pt;}
.y189{bottom:940.409333pt;}
.yad{bottom:943.666667pt;}
.y26{bottom:952.217333pt;}
.y56{bottom:956.030667pt;}
.y188{bottom:957.624000pt;}
.yac{bottom:964.998667pt;}
.y55{bottom:974.042667pt;}
.y187{bottom:974.840000pt;}
.y25{bottom:977.906667pt;}
.y119{bottom:990.062667pt;}
.y54{bottom:992.056000pt;}
.yab{bottom:993.372000pt;}
.y118{bottom:996.877333pt;}
.y21{bottom:1011.514667pt;}
.y53{bottom:1038.548000pt;}
.h31{height:5.308109pt;}
.h28{height:12.114560pt;}
.h27{height:15.940160pt;}
.h11{height:22.673858pt;}
.h23{height:26.834863pt;}
.h2b{height:26.890973pt;}
.h30{height:27.076941pt;}
.h18{height:27.672303pt;}
.h7{height:28.560000pt;}
.h26{height:29.397999pt;}
.h13{height:29.433775pt;}
.h12{height:30.399505pt;}
.h1c{height:31.992188pt;}
.ha{height:32.246508pt;}
.hf{height:32.284045pt;}
.h32{height:33.713664pt;}
.h21{height:34.574438pt;}
.h1e{height:35.039062pt;}
.h17{height:35.051460pt;}
.h19{height:35.641105pt;}
.h20{height:36.436701pt;}
.h16{height:36.896250pt;}
.h1b{height:38.008906pt;}
.h2a{height:38.034308pt;}
.h14{height:38.415786pt;}
.hc{height:38.947124pt;}
.hb{height:39.846430pt;}
.h6{height:40.800000pt;}
.h10{height:41.508454pt;}
.h3{height:42.840000pt;}
.h1d{height:42.867188pt;}
.h9{height:45.272024pt;}
.h15{height:46.120196pt;}
.h1f{height:47.725469pt;}
.he{height:48.486756pt;}
.h22{height:48.683332pt;}
.h2{height:48.960000pt;}
.h2f{height:49.644045pt;}
.h24{height:51.344666pt;}
.h25{height:54.088196pt;}
.h2c{height:68.004454pt;}
.hd{height:69.148877pt;}
.h5{height:69.360000pt;}
.h2d{height:74.244454pt;}
.h2e{height:74.249788pt;}
.h29{height:93.022438pt;}
.h4{height:105.826671pt;}
.h1a{height:311.578667pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:66.991004pt;}
.w4{width:185.925531pt;}
.w6{width:538.704133pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x21{left:-24.334533pt;}
.x2a{left:-7.372533pt;}
.x29{left:-4.812933pt;}
.x0{left:0.000000pt;}
.x25{left:2.705067pt;}
.x27{left:4.626267pt;}
.x26{left:6.225867pt;}
.x28{left:7.987467pt;}
.x24{left:9.985467pt;}
.x23{left:15.345467pt;}
.xb{left:26.021437pt;}
.x22{left:47.985867pt;}
.x6{left:53.458976pt;}
.x2d{left:66.385467pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x7{left:101.114667pt;}
.x5{left:102.046667pt;}
.x38{left:106.464000pt;}
.x9{left:108.542667pt;}
.x8{left:109.606667pt;}
.x53{left:114.220000pt;}
.x39{left:115.350667pt;}
.x49{left:116.852000pt;}
.x51{left:119.284000pt;}
.x15{left:120.945333pt;}
.x4f{left:123.421333pt;}
.x58{left:125.812000pt;}
.x20{left:127.498533pt;}
.xd{left:130.393333pt;}
.x1f{left:132.765333pt;}
.x1e{left:135.288000pt;}
.x1a{left:142.754667pt;}
.x1c{left:144.661333pt;}
.x1b{left:146.358667pt;}
.x1d{left:148.056000pt;}
.x19{left:150.005333pt;}
.x3c{left:154.081333pt;}
.x18{left:155.396000pt;}
.xc{left:167.958667pt;}
.x52{left:170.953333pt;}
.x16{left:175.962667pt;}
.x57{left:179.525333pt;}
.x4{left:180.874667pt;}
.xf{left:184.837333pt;}
.x47{left:186.722667pt;}
.x3e{left:188.489333pt;}
.x36{left:189.872000pt;}
.x10{left:197.324000pt;}
.x3a{left:202.589333pt;}
.x4d{left:203.824000pt;}
.x50{left:207.973333pt;}
.x3b{left:210.352000pt;}
.x65{left:213.616000pt;}
.x3d{left:219.957333pt;}
.x66{left:223.704000pt;}
.x68{left:225.868000pt;}
.x17{left:227.973333pt;}
.x67{left:237.545333pt;}
.x4a{left:240.765333pt;}
.x64{left:249.373333pt;}
.x5a{left:251.265333pt;}
.x54{left:272.906667pt;}
.x48{left:275.394667pt;}
.x5b{left:277.005333pt;}
.x34{left:287.182667pt;}
.x5c{left:297.904000pt;}
.x5d{left:301.600000pt;}
.x5e{left:307.526667pt;}
.xe{left:322.484000pt;}
.x5f{left:324.462667pt;}
.x37{left:332.917333pt;}
.x59{left:334.354667pt;}
.x44{left:340.978667pt;}
.x2e{left:347.025467pt;}
.x60{left:351.237333pt;}
.x33{left:354.700000pt;}
.x61{left:357.921333pt;}
.x4e{left:394.820000pt;}
.x3{left:404.408000pt;}
.x2f{left:419.925333pt;}
.x30{left:423.881333pt;}
.x4b{left:427.861333pt;}
.x35{left:476.618667pt;}
.x41{left:479.576000pt;}
.x42{left:486.993333pt;}
.x43{left:494.972000pt;}
.x2c{left:502.545467pt;}
.x45{left:510.437333pt;}
.x46{left:519.324000pt;}
.x2b{left:534.464307pt;}
.x11{left:552.416000pt;}
.x12{left:564.904000pt;}
.x4c{left:596.606667pt;}
.x55{left:617.369333pt;}
.xa{left:623.413317pt;}
.x56{left:627.814667pt;}
.x62{left:631.713333pt;}
.x63{left:638.397333pt;}
.x3f{left:677.128000pt;}
.x31{left:682.333333pt;}
.x13{left:684.936000pt;}
.x32{left:686.288000pt;}
.x40{left:688.501333pt;}
.x14{left:690.648000pt;}
}




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