
    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_7e6e83d1ecdd4f64d9042c3a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e6ed78d57cc2e8890cf65555.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f4a02610b46d961936217412.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.717000;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_fa4866d3ec0ac4d34593861e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1cc29be304e4d335191a0f30.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_57bb9d8c648e8b15e5b808d0.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e51970d9016d846f52417b0b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.899000;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_7aa98bb51426ff7986c02b15.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.635000;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_1b48704eb9ec3d3b4a3c4ccb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b49a134e8c140c776fb8807e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.431000;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_d867df63a7cd85ae33f71358.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_834e115b2956abb6e319ad71.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.717000;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_991a795574cf8051bd416d60.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_0548056e7c12a7d2ad46eddf.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.685000;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_d573ef227723d5eb24d4b4d2.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_523ce18b3532e6f7930549de.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_d83a51fb3c80000624c6a9f3.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_47507987099a3320f7715f4b.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_03d4e88deca7290f5684267c.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_fdef5cb957b5181302d3c97e.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_ca033de4a82e7390e2a58f57.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_d0a72fbc43a3226c60ee9699.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_fa1ee386f9c7062ed043e20c.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_f3265a6a91c908044e112cd7.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_9db80945ce8b8bdff36e1ee5.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_ad25b627d579276f4fee3bfe.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_517269eba219ee23d3007daa.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.685000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_4ca005f612035f9629ac4bc6.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_37860f01b265feaf098685d8.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.872000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_ef622491dd67b5dce0b7fafe.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:2.399000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_6ebcdbccba81ca2dc6d90e04.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.717000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_8c2f43544bec8c5815452de3.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_3997fc1c65ffcd2f539bb488.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.453000;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);}
.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);}
.me{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);}
.ma{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);}
.m13{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);}
.m10{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m5{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);}
.m2{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);}
.m15{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);}
.mf{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);}
.m14{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);}
.m4{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);}
.m6{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);}
.m7{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);}
.m12{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);}
.mb{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.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);}
.m11{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.ve{vertical-align:-27.024000px;}
.va{vertical-align:-22.854000px;}
.v24{vertical-align:-18.486000px;}
.v2{vertical-align:-12.912000px;}
.vb{vertical-align:-9.816000px;}
.v3{vertical-align:-5.976000px;}
.v21{vertical-align:-1.182000px;}
.v0{vertical-align:0.000000px;}
.v1b{vertical-align:2.742000px;}
.v1{vertical-align:6.456000px;}
.v12{vertical-align:8.352000px;}
.vf{vertical-align:10.392000px;}
.v26{vertical-align:11.958000px;}
.v8{vertical-align:14.772000px;}
.vc{vertical-align:16.182000px;}
.v11{vertical-align:18.750000px;}
.v10{vertical-align:19.956000px;}
.v1d{vertical-align:21.690000px;}
.v4{vertical-align:22.854000px;}
.v7{vertical-align:24.684000px;}
.v22{vertical-align:26.400000px;}
.v5{vertical-align:27.498000px;}
.v6{vertical-align:29.328000px;}
.v1c{vertical-align:31.050000px;}
.v15{vertical-align:34.500000px;}
.v23{vertical-align:36.474000px;}
.v1e{vertical-align:38.040000px;}
.v9{vertical-align:39.456000px;}
.v16{vertical-align:42.108000px;}
.vd{vertical-align:43.206000px;}
.v17{vertical-align:44.898000px;}
.v14{vertical-align:46.986000px;}
.v13{vertical-align:48.024000px;}
.v1f{vertical-align:50.682000px;}
.v20{vertical-align:54.192000px;}
.v29{vertical-align:56.790000px;}
.v28{vertical-align:58.206000px;}
.v19{vertical-align:68.034000px;}
.v18{vertical-align:71.922000px;}
.v25{vertical-align:85.704000px;}
.v1a{vertical-align:89.178000px;}
.v27{vertical-align:103.104000px;}
.lsa{letter-spacing:0.000000px;}
.lsd9{letter-spacing:0.000468px;}
.lse{letter-spacing:0.000611px;}
.ls8{letter-spacing:0.000780px;}
.ls35{letter-spacing:0.001038px;}
.ls8c{letter-spacing:0.001044px;}
.lse2{letter-spacing:0.001050px;}
.ls82{letter-spacing:0.001209px;}
.lsee{letter-spacing:0.001590px;}
.ls2e{letter-spacing:0.001593px;}
.ls41{letter-spacing:0.001597px;}
.lsa8{letter-spacing:0.002012px;}
.ls29{letter-spacing:0.002147px;}
.ls6f{letter-spacing:0.002250px;}
.ls48{letter-spacing:0.002481px;}
.ls9b{letter-spacing:0.002640px;}
.ls79{letter-spacing:0.002661px;}
.ls4d{letter-spacing:0.002682px;}
.ls9e{letter-spacing:0.002698px;}
.ls21{letter-spacing:0.002700px;}
.ls33{letter-spacing:0.002706px;}
.ls8a{letter-spacing:0.003181px;}
.ls14{letter-spacing:0.003269px;}
.ls19{letter-spacing:0.004338px;}
.ls88{letter-spacing:0.004528px;}
.lsd7{letter-spacing:0.004893px;}
.ls1{letter-spacing:0.005017px;}
.lsdb{letter-spacing:0.005253px;}
.ls49{letter-spacing:0.005357px;}
.lsdc{letter-spacing:0.006355px;}
.lsfe{letter-spacing:0.007044px;}
.ls38{letter-spacing:0.008084px;}
.ls25{letter-spacing:0.009063px;}
.lse0{letter-spacing:0.010215px;}
.ls85{letter-spacing:0.010829px;}
.lsfa{letter-spacing:0.011192px;}
.ls5e{letter-spacing:0.011905px;}
.lscf{letter-spacing:0.012791px;}
.ls22{letter-spacing:0.014084px;}
.lsf2{letter-spacing:0.014563px;}
.ls51{letter-spacing:0.014968px;}
.ls2f{letter-spacing:0.015551px;}
.ls30{letter-spacing:0.016063px;}
.ls62{letter-spacing:0.016270px;}
.lse6{letter-spacing:0.016326px;}
.lsed{letter-spacing:0.017051px;}
.lse8{letter-spacing:0.018383px;}
.lse5{letter-spacing:0.024834px;}
.ls75{letter-spacing:0.026454px;}
.lsb5{letter-spacing:0.261818px;}
.ls2c{letter-spacing:0.327273px;}
.lsff{letter-spacing:0.458182px;}
.lsd6{letter-spacing:0.478205px;}
.ls92{letter-spacing:1.283226px;}
.lsac{letter-spacing:1.291156px;}
.ls8e{letter-spacing:1.407603px;}
.ls86{letter-spacing:1.413603px;}
.ls6{letter-spacing:1.535856px;}
.ls72{letter-spacing:1.631085px;}
.ls10{letter-spacing:1.646702px;}
.ls68{letter-spacing:1.659050px;}
.ls47{letter-spacing:1.661781px;}
.lsd2{letter-spacing:1.665050px;}
.ls11{letter-spacing:1.670136px;}
.ls74{letter-spacing:1.676136px;}
.lsdf{letter-spacing:1.712830px;}
.lsc7{letter-spacing:1.783110px;}
.lsf6{letter-spacing:1.793370px;}
.ls54{letter-spacing:1.795581px;}
.lsb8{letter-spacing:1.797174px;}
.ls3b{letter-spacing:1.801581px;}
.ls81{letter-spacing:1.802588px;}
.ls3c{letter-spacing:1.802609px;}
.ls39{letter-spacing:1.802757px;}
.ls1d{letter-spacing:1.803170px;}
.lsb1{letter-spacing:1.805876px;}
.lsc5{letter-spacing:1.808887px;}
.lsbd{letter-spacing:1.812139px;}
.ls52{letter-spacing:1.813178px;}
.ls4b{letter-spacing:1.814137px;}
.lsbc{letter-spacing:1.816282px;}
.lscb{letter-spacing:1.816843px;}
.lsf7{letter-spacing:1.819576px;}
.ls1a{letter-spacing:1.820137px;}
.ls7e{letter-spacing:1.820418px;}
.ls3d{letter-spacing:1.822837px;}
.ls59{letter-spacing:1.822843px;}
.lsf5{letter-spacing:1.828211px;}
.lsf4{letter-spacing:1.830950px;}
.ls1f{letter-spacing:1.832628px;}
.ls3a{letter-spacing:1.833839px;}
.ls58{letter-spacing:1.844534px;}
.ls57{letter-spacing:1.852118px;}
.ls56{letter-spacing:2.290911px;}
.ls5b{letter-spacing:2.330601px;}
.lse9{letter-spacing:2.356366px;}
.lsba{letter-spacing:2.487275px;}
.ls9c{letter-spacing:2.979890px;}
.ls61{letter-spacing:2.984915px;}
.ls2a{letter-spacing:2.985072px;}
.ls97{letter-spacing:2.986031px;}
.lsd0{letter-spacing:2.986059px;}
.lsd1{letter-spacing:2.987320px;}
.ls9{letter-spacing:2.988532px;}
.lsd8{letter-spacing:2.988615px;}
.ls15{letter-spacing:2.988710px;}
.lsfc{letter-spacing:2.989115px;}
.ls18{letter-spacing:2.989223px;}
.lsda{letter-spacing:2.989409px;}
.ls63{letter-spacing:2.989739px;}
.lsc1{letter-spacing:2.990915px;}
.lsca{letter-spacing:2.991017px;}
.ls28{letter-spacing:2.991072px;}
.lsce{letter-spacing:2.992059px;}
.ls67{letter-spacing:2.993320px;}
.ls2{letter-spacing:2.994125px;}
.lsc3{letter-spacing:2.994710px;}
.ls2d{letter-spacing:2.995223px;}
.lsc2{letter-spacing:3.157578px;}
.lsf0{letter-spacing:3.338185px;}
.lsb4{letter-spacing:3.454878px;}
.ls27{letter-spacing:3.606914px;}
.ls32{letter-spacing:3.612914px;}
.ls36{letter-spacing:3.620593px;}
.lsa7{letter-spacing:3.771239px;}
.lsae{letter-spacing:4.256531px;}
.lsad{letter-spacing:4.262531px;}
.ls3{letter-spacing:4.275980px;}
.ls64{letter-spacing:4.276379px;}
.lsfb{letter-spacing:4.655259px;}
.lscc{letter-spacing:4.681597px;}
.lsc8{letter-spacing:4.687597px;}
.ls43{letter-spacing:5.220499px;}
.lsb2{letter-spacing:5.300063px;}
.ls7c{letter-spacing:5.300624px;}
.lscd{letter-spacing:5.311591px;}
.lsc4{letter-spacing:5.317030px;}
.lsb0{letter-spacing:5.317591px;}
.ls7f{letter-spacing:5.325615px;}
.lsb6{letter-spacing:5.337895px;}
.ls26{letter-spacing:5.443358px;}
.ls34{letter-spacing:5.449358px;}
.ls89{letter-spacing:5.976532px;}
.lsfd{letter-spacing:5.982532px;}
.ls4f{letter-spacing:6.545460px;}
.lsa9{letter-spacing:7.069097px;}
.ls4c{letter-spacing:8.083860px;}
.lsa5{letter-spacing:9.982525px;}
.lsaa{letter-spacing:10.910012px;}
.lsb9{letter-spacing:10.916012px;}
.lsa0{letter-spacing:10.930918px;}
.lsd{letter-spacing:13.270183px;}
.lsa4{letter-spacing:13.629954px;}
.ls1e{letter-spacing:14.530921px;}
.ls60{letter-spacing:14.596376px;}
.ls5{letter-spacing:14.633165px;}
.ls9f{letter-spacing:14.782200px;}
.ls96{letter-spacing:14.788200px;}
.lsc6{letter-spacing:16.272710px;}
.lsc{letter-spacing:16.617617px;}
.ls5c{letter-spacing:17.203860px;}
.lsf9{letter-spacing:17.209860px;}
.lsaf{letter-spacing:17.528915px;}
.ls5f{letter-spacing:17.534915px;}
.ls3e{letter-spacing:17.539223px;}
.lse4{letter-spacing:18.130924px;}
.ls8b{letter-spacing:18.183181px;}
.ls17{letter-spacing:18.196379px;}
.ls40{letter-spacing:20.342700px;}
.ls42{letter-spacing:20.348700px;}
.lsec{letter-spacing:20.552744px;}
.lse1{letter-spacing:21.076381px;}
.ls7b{letter-spacing:21.164915px;}
.lsc9{letter-spacing:21.169115px;}
.ls24{letter-spacing:21.169223px;}
.lse3{letter-spacing:21.169739px;}
.ls5a{letter-spacing:21.170915px;}
.lsb{letter-spacing:21.280114px;}
.lsab{letter-spacing:21.317329px;}
.ls16{letter-spacing:21.419468px;}
.ls78{letter-spacing:21.469109px;}
.ls3f{letter-spacing:21.719412px;}
.ls31{letter-spacing:21.796382px;}
.lsef{letter-spacing:21.927291px;}
.ls4e{letter-spacing:22.627860px;}
.lsf1{letter-spacing:22.630888px;}
.ls6c{letter-spacing:23.301838px;}
.ls45{letter-spacing:23.367292px;}
.ls55{letter-spacing:23.432747px;}
.lsd3{letter-spacing:23.907269px;}
.ls83{letter-spacing:24.162532px;}
.lsdd{letter-spacing:24.800915px;}
.lsde{letter-spacing:24.806915px;}
.ls99{letter-spacing:25.772915px;}
.lse7{letter-spacing:26.407739px;}
.lsea{letter-spacing:26.509113px;}
.lsbe{letter-spacing:26.836386px;}
.ls50{letter-spacing:28.341842px;}
.ls73{letter-spacing:29.887800px;}
.ls23{letter-spacing:30.436389px;}
.ls71{letter-spacing:33.235234px;}
.lsf8{letter-spacing:35.389860px;}
.ls44{letter-spacing:35.869121px;}
.ls5d{letter-spacing:40.222888px;}
.ls69{letter-spacing:54.345269px;}
.ls95{letter-spacing:56.991739px;}
.ls93{letter-spacing:57.306185px;}
.lsa1{letter-spacing:61.726868px;}
.lsa3{letter-spacing:61.732868px;}
.ls87{letter-spacing:61.806557px;}
.ls8f{letter-spacing:61.812557px;}
.ls9d{letter-spacing:66.461644px;}
.ls12{letter-spacing:67.102362px;}
.lseb{letter-spacing:67.810966px;}
.lsd4{letter-spacing:69.903269px;}
.ls20{letter-spacing:71.641739px;}
.lsd5{letter-spacing:84.045269px;}
.ls1b{letter-spacing:89.821739px;}
.lsf3{letter-spacing:89.827739px;}
.lsbf{letter-spacing:90.782113px;}
.lsbb{letter-spacing:90.788113px;}
.ls90{letter-spacing:91.926185px;}
.ls53{letter-spacing:95.059739px;}
.ls98{letter-spacing:96.639739px;}
.lsa6{letter-spacing:98.382615px;}
.ls7{letter-spacing:98.886557px;}
.ls9a{letter-spacing:104.872059px;}
.ls94{letter-spacing:105.552557px;}
.ls8d{letter-spacing:105.558557px;}
.ls13{letter-spacing:107.176362px;}
.ls6e{letter-spacing:112.472915px;}
.ls7a{letter-spacing:114.379739px;}
.lsc0{letter-spacing:114.385739px;}
.ls66{letter-spacing:117.779363px;}
.ls4{letter-spacing:118.098557px;}
.lsb3{letter-spacing:119.695739px;}
.lsb7{letter-spacing:119.701739px;}
.ls84{letter-spacing:120.102557px;}
.lsf{letter-spacing:123.778362px;}
.ls6b{letter-spacing:130.652915px;}
.ls6d{letter-spacing:132.559739px;}
.ls1c{letter-spacing:132.565739px;}
.ls7d{letter-spacing:134.245739px;}
.ls80{letter-spacing:137.881739px;}
.ls76{letter-spacing:140.326362px;}
.ls70{letter-spacing:140.386362px;}
.ls2b{letter-spacing:141.840118px;}
.ls37{letter-spacing:144.720121px;}
.lsa2{letter-spacing:168.873737px;}
.ls4a{letter-spacing:218.109352px;}
.ls65{letter-spacing:258.628362px;}
.ls6a{letter-spacing:265.376802px;}
.ls0{letter-spacing:345.347589px;}
.ls77{letter-spacing:426.502362px;}
.ls91{letter-spacing:630.948185px;}
.ls46{letter-spacing:821.715352px;}
.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;}
}
.ws8b{word-spacing:-65.454600px;}
.ws7b{word-spacing:-54.589136px;}
.ws8d{word-spacing:-50.923679px;}
.ws5a{word-spacing:-47.258221px;}
.ws96{word-spacing:-46.493462px;}
.ws45{word-spacing:-42.637126px;}
.ws7e{word-spacing:-38.937826px;}
.ws69{word-spacing:-36.379667px;}
.ws77{word-spacing:-33.453846px;}
.ws2b{word-spacing:-33.223278px;}
.ws47{word-spacing:-33.211407px;}
.ws38{word-spacing:-32.727300px;}
.ws93{word-spacing:-32.714209px;}
.ws64{word-spacing:-31.771663px;}
.ws5c{word-spacing:-31.706208px;}
.ws80{word-spacing:-31.633157px;}
.wsd9{word-spacing:-30.551309px;}
.ws1c{word-spacing:-29.887800px;}
.ws20{word-spacing:-29.875845px;}
.ws7{word-spacing:-29.388273px;}
.ws2a{word-spacing:-28.955301px;}
.ws31{word-spacing:-27.646998px;}
.wsd2{word-spacing:-25.151463px;}
.ws8a{word-spacing:-25.103643px;}
.wsa4{word-spacing:-24.440748px;}
.wsb5{word-spacing:-22.379985px;}
.ws5d{word-spacing:-18.183288px;}
.wsaa{word-spacing:-17.149105px;}
.ws28{word-spacing:-16.605662px;}
.wscf{word-spacing:-16.128013px;}
.ws39{word-spacing:-16.036377px;}
.ws98{word-spacing:-16.019861px;}
.ws79{word-spacing:-15.681128px;}
.ws57{word-spacing:-15.676009px;}
.ws7a{word-spacing:-15.675128px;}
.ws6e{word-spacing:-15.670009px;}
.ws44{word-spacing:-15.381831px;}
.wsab{word-spacing:-14.923649px;}
.wsf{word-spacing:-14.686963px;}
.ws1a{word-spacing:-14.585246px;}
.wsc0{word-spacing:-14.269103px;}
.ws43{word-spacing:-13.810921px;}
.wsac{word-spacing:-13.686557px;}
.ws9b{word-spacing:-13.221829px;}
.ws27{word-spacing:-13.150632px;}
.ws3a{word-spacing:-12.829102px;}
.wsa1{word-spacing:-12.797570px;}
.ws62{word-spacing:-12.305465px;}
.ws40{word-spacing:-12.043646px;}
.ws66{word-spacing:-12.041168px;}
.ws46{word-spacing:-12.040304px;}
.ws67{word-spacing:-12.040009px;}
.ws7d{word-spacing:-12.037984px;}
.ws78{word-spacing:-12.034304px;}
.ws68{word-spacing:-12.034009px;}
.wsb8{word-spacing:-11.912737px;}
.ws12{word-spacing:-11.776470px;}
.wscd{word-spacing:-11.716373px;}
.wscc{word-spacing:-11.650919px;}
.wsc3{word-spacing:-11.520010px;}
.ws52{word-spacing:-11.476915px;}
.wsc4{word-spacing:-11.454555px;}
.wscb{word-spacing:-11.417140px;}
.ws51{word-spacing:-11.323646px;}
.ws9e{word-spacing:-11.258191px;}
.wsc8{word-spacing:-11.192737px;}
.wsc6{word-spacing:-11.127282px;}
.wsca{word-spacing:-11.061827px;}
.ws9d{word-spacing:-10.996373px;}
.ws10{word-spacing:-10.969494px;}
.ws30{word-spacing:-10.930918px;}
.ws33{word-spacing:-10.865464px;}
.ws9c{word-spacing:-10.800009px;}
.ws1e{word-spacing:-10.759608px;}
.ws4f{word-spacing:-10.734554px;}
.ws4e{word-spacing:-10.669100px;}
.wsc5{word-spacing:-10.610191px;}
.ws3e{word-spacing:-10.603645px;}
.ws3d{word-spacing:-10.538191px;}
.ws3c{word-spacing:-10.472736px;}
.wsd7{word-spacing:-10.400954px;}
.ws41{word-spacing:-10.341827px;}
.ws2c{word-spacing:-10.221628px;}
.ws1d{word-spacing:-10.102076px;}
.wsce{word-spacing:-10.086554px;}
.ws63{word-spacing:-10.021099px;}
.ws4{word-spacing:-9.982525px;}
.ws82{word-spacing:-9.922750px;}
.wsdf{word-spacing:-9.868952px;}
.ws1f{word-spacing:-9.862974px;}
.wse1{word-spacing:-9.803198px;}
.ws26{word-spacing:-9.743423px;}
.wsc7{word-spacing:-9.687281px;}
.wsd5{word-spacing:-9.683647px;}
.wsd8{word-spacing:-9.629849px;}
.ws25{word-spacing:-9.623872px;}
.ws2f{word-spacing:-9.556372px;}
.wsdb{word-spacing:-9.510298px;}
.ws74{word-spacing:-9.425462px;}
.wsd{word-spacing:-9.247945px;}
.wse0{word-spacing:-9.211420px;}
.ws8{word-spacing:-9.194147px;}
.wsc2{word-spacing:-9.163644px;}
.wsda{word-spacing:-9.151644px;}
.wsa{word-spacing:-9.140348px;}
.wsc{word-spacing:-9.086550px;}
.wsbd{word-spacing:-9.085891px;}
.wse2{word-spacing:-8.972318px;}
.ws4d{word-spacing:-8.901826px;}
.wsd6{word-spacing:-8.852766px;}
.ws9{word-spacing:-8.817558px;}
.ws76{word-spacing:-7.795643px;}
.ws1b{word-spacing:-7.770828px;}
.ws3f{word-spacing:-7.527279px;}
.wsa0{word-spacing:-7.252370px;}
.wsdc{word-spacing:-7.113296px;}
.wsde{word-spacing:-7.053521px;}
.wsdd{word-spacing:-6.581294px;}
.ws5{word-spacing:-6.396630px;}
.wsd0{word-spacing:-6.043096px;}
.wsbf{word-spacing:-5.956369px;}
.ws32{word-spacing:-5.825459px;}
.wse{word-spacing:-5.697251px;}
.ws54{word-spacing:-5.563641px;}
.ws87{word-spacing:-5.236368px;}
.ws19{word-spacing:-5.027128px;}
.ws24{word-spacing:-4.901599px;}
.ws55{word-spacing:-4.712731px;}
.ws91{word-spacing:-4.647277px;}
.ws5f{word-spacing:-4.581822px;}
.ws60{word-spacing:-4.516367px;}
.ws3b{word-spacing:-4.385458px;}
.wsb1{word-spacing:-4.320004px;}
.ws50{word-spacing:-3.992731px;}
.ws4b{word-spacing:-3.652367px;}
.wsc9{word-spacing:-3.586912px;}
.wsb9{word-spacing:-3.534548px;}
.ws22{word-spacing:-3.335478px;}
.wsc1{word-spacing:-3.207275px;}
.ws2e{word-spacing:-2.356366px;}
.ws58{word-spacing:-2.290911px;}
.ws42{word-spacing:-1.832729px;}
.ws53{word-spacing:-1.178183px;}
.wsb4{word-spacing:-0.981819px;}
.ws2{word-spacing:-0.086077px;}
.ws49{word-spacing:-0.065455px;}
.ws29{word-spacing:-0.059776px;}
.ws6{word-spacing:-0.053798px;}
.ws5e{word-spacing:-0.052364px;}
.ws48{word-spacing:-0.047821px;}
.ws8f{word-spacing:-0.041843px;}
.ws16{word-spacing:0.000000px;}
.wsa2{word-spacing:0.011955px;}
.ws59{word-spacing:0.013091px;}
.ws9f{word-spacing:0.209455px;}
.ws65{word-spacing:2.415275px;}
.ws17{word-spacing:2.683639px;}
.wsbe{word-spacing:3.299613px;}
.wsba{word-spacing:3.613094px;}
.wsd1{word-spacing:5.136452px;}
.ws2d{word-spacing:8.836371px;}
.wsa9{word-spacing:8.883668px;}
.ws14{word-spacing:9.145728px;}
.ws18{word-spacing:11.429123px;}
.ws75{word-spacing:12.135332px;}
.ws73{word-spacing:12.141332px;}
.ws15{word-spacing:15.278746px;}
.ws97{word-spacing:16.227303px;}
.ws23{word-spacing:16.233303px;}
.wsd3{word-spacing:17.481066px;}
.ws4c{word-spacing:17.487038px;}
.ws6b{word-spacing:17.491697px;}
.wsa8{word-spacing:18.196379px;}
.ws11{word-spacing:19.152230px;}
.wsb0{word-spacing:19.636380px;}
.wsb7{word-spacing:21.120151px;}
.ws5b{word-spacing:21.123037px;}
.ws88{word-spacing:21.123066px;}
.ws8c{word-spacing:21.126151px;}
.ws61{word-spacing:21.127697px;}
.ws13{word-spacing:21.142771px;}
.wsb{word-spacing:21.250368px;}
.ws21{word-spacing:23.231089px;}
.ws1{word-spacing:23.384371px;}
.wsb3{word-spacing:24.803741px;}
.ws4a{word-spacing:26.685332px;}
.wsaf{word-spacing:26.791788px;}
.ws3{word-spacing:26.827469px;}
.wsa7{word-spacing:29.009479px;}
.ws6d{word-spacing:30.315332px;}
.ws56{word-spacing:30.321332px;}
.wsae{word-spacing:30.514935px;}
.ws0{word-spacing:32.192873px;}
.wsd4{word-spacing:33.748392px;}
.ws37{word-spacing:34.370970px;}
.ws70{word-spacing:35.553332px;}
.ws89{word-spacing:42.006452px;}
.wsa3{word-spacing:55.509971px;}
.ws84{word-spacing:59.456255px;}
.ws72{word-spacing:64.284452px;}
.wsa5{word-spacing:66.144452px;}
.ws71{word-spacing:82.905037px;}
.wsa6{word-spacing:84.543037px;}
.wsad{word-spacing:84.549037px;}
.ws9a{word-spacing:92.021089px;}
.wsb2{word-spacing:96.393303px;}
.ws92{word-spacing:97.455037px;}
.ws7c{word-spacing:99.137537px;}
.ws6c{word-spacing:99.202992px;}
.ws6a{word-spacing:101.085038px;}
.ws6f{word-spacing:106.323038px;}
.wsbb{word-spacing:108.755615px;}
.ws83{word-spacing:120.498469px;}
.ws90{word-spacing:178.620325px;}
.wsbc{word-spacing:186.996794px;}
.ws86{word-spacing:187.703089px;}
.ws85{word-spacing:212.229303px;}
.ws81{word-spacing:252.491296px;}
.ws99{word-spacing:325.340908px;}
.ws94{word-spacing:485.081089px;}
.ws95{word-spacing:498.951303px;}
.ws7f{word-spacing:724.098469px;}
.wsb6{word-spacing:856.638559px;}
.ws8e{word-spacing:884.274325px;}
.ws34{word-spacing:2202.931881px;}
.ws36{word-spacing:2229.126812px;}
.ws35{word-spacing:2371.645881px;}
._4b{margin-left:-29.876057px;}
._46{margin-left:-17.591921px;}
._c{margin-left:-16.151395px;}
._6{margin-left:-14.633165px;}
._54{margin-left:-10.865464px;}
._1{margin-left:-8.091257px;}
._2{margin-left:-5.881958px;}
._5{margin-left:-4.680461px;}
._7{margin-left:-2.705480px;}
._4{margin-left:-1.673717px;}
._3{width:1.205092px;}
._0{width:2.668393px;}
._8{width:4.196275px;}
._44{width:5.420967px;}
._4a{width:6.711745px;}
._55{width:8.132643px;}
._3b{width:18.431288px;}
._3f{width:20.142357px;}
._b{width:21.285037px;}
._11{width:22.850948px;}
._e{width:24.490463px;}
._a{width:26.540366px;}
._9{width:27.561475px;}
._3c{width:28.825712px;}
._38{width:29.872543px;}
._43{width:31.440050px;}
._58{width:32.460415px;}
._d{width:35.666231px;}
._3d{width:40.489489px;}
._59{width:42.498083px;}
._41{width:46.003214px;}
._3e{width:47.707993px;}
._45{width:49.218013px;}
._42{width:56.460411px;}
._52{width:59.304659px;}
._4e{width:60.956932px;}
._50{width:66.257329px;}
._40{width:69.449668px;}
._56{width:85.090980px;}
._4d{width:109.741901px;}
._53{width:141.334032px;}
._51{width:178.676540px;}
._57{width:203.035122px;}
._48{width:263.537055px;}
._5a{width:267.593855px;}
._5b{width:271.172400px;}
._4f{width:290.618134px;}
._49{width:376.922400px;}
._1d{width:403.185815px;}
._47{width:421.487055px;}
._24{width:566.619397px;}
._4c{width:585.755458px;}
._3a{width:898.517136px;}
._31{width:916.967059px;}
._15{width:1009.388954px;}
._1a{width:1113.869741px;}
._10{width:1122.821791px;}
._12{width:1124.996606px;}
._20{width:1131.715868px;}
._23{width:1175.575059px;}
._2f{width:1198.780189px;}
._32{width:1201.752554px;}
._25{width:1207.537996px;}
._2a{width:1222.975588px;}
._36{width:1227.004007px;}
._1c{width:1240.491208px;}
._21{width:1324.396815px;}
._16{width:1411.877564px;}
._2e{width:1423.964823px;}
._26{width:1474.492652px;}
._2d{width:1478.597410px;}
._33{width:1480.870116px;}
._1e{width:1503.386498px;}
._18{width:1513.204688px;}
._17{width:1552.890769px;}
._13{width:1560.117683px;}
._39{width:1591.763509px;}
._2c{width:1618.032147px;}
._2b{width:1647.140031px;}
._35{width:1714.204102px;}
._1f{width:1726.063048px;}
._27{width:1736.778455px;}
._28{width:1764.166580px;}
._1b{width:1767.897493px;}
._14{width:1813.754258px;}
._30{width:1843.393529px;}
._34{width:1920.437801px;}
._37{width:2008.574057px;}
._22{width:2013.016014px;}
._19{width:2045.743314px;}
._29{width:2067.405383px;}
._f{width:2237.718731px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(236,0,140);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:29.887800px;}
.fs4{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y16c{bottom:154.336500px;}
.y122{bottom:156.661500px;}
.y56{bottom:160.314000px;}
.y121{bottom:160.707000px;}
.y16d{bottom:161.515500px;}
.y14c{bottom:162.154500px;}
.y18{bottom:173.262000px;}
.y39{bottom:173.425500px;}
.y16b{bottom:174.729000px;}
.y17{bottom:174.880500px;}
.y16a{bottom:176.631000px;}
.y14b{bottom:176.767500px;}
.y14a{bottom:180.813000px;}
.y22b{bottom:187.213500px;}
.y6f{bottom:190.800000px;}
.y89{bottom:192.205500px;}
.y19e{bottom:193.525500px;}
.ybe{bottom:194.245500px;}
.y211{bottom:198.555000px;}
.y210{bottom:199.432500px;}
.y16{bottom:199.537500px;}
.y105{bottom:200.481000px;}
.ybf{bottom:201.424500px;}
.ye9{bottom:202.479000px;}
.yca{bottom:202.944000px;}
.y20f{bottom:203.478000px;}
.y104{bottom:204.526500px;}
.ya3{bottom:204.847500px;}
.ybd{bottom:205.470000px;}
.y169{bottom:205.753500px;}
.y1e4{bottom:205.834500px;}
.y55{bottom:207.547500px;}
.y1c7{bottom:208.005000px;}
.y1f8{bottom:208.944000px;}
.y22a{bottom:214.113000px;}
.y1b3{bottom:219.384000px;}
.y149{bottom:219.651000px;}
.y120{bottom:220.803000px;}
.y6e{bottom:221.286000px;}
.y38{bottom:222.169500px;}
.y88{bottom:222.691500px;}
.y15{bottom:235.123500px;}
.y54{bottom:238.225500px;}
.y229{bottom:241.011000px;}
.y168{bottom:241.902000px;}
.y18c{bottom:242.545500px;}
.y147{bottom:244.282500px;}
.y167{bottom:245.947500px;}
.y20e{bottom:246.643500px;}
.y19d{bottom:248.625000px;}
.y103{bottom:248.739000px;}
.ya2{bottom:249.379500px;}
.ybc{bottom:250.624500px;}
.y1e3{bottom:251.355000px;}
.y146{bottom:251.406000px;}
.y6d{bottom:251.904000px;}
.y37{bottom:252.655500px;}
.ye8{bottom:254.224500px;}
.y87{bottom:254.581500px;}
.y1c6{bottom:255.696000px;}
.y148{bottom:258.585000px;}
.yc7{bottom:258.984000px;}
.y14{bottom:259.780500px;}
.yc6{bottom:260.731500px;}
.y1f7{bottom:261.258000px;}
.y144{bottom:262.630500px;}
.y145{bottom:267.253500px;}
.y228{bottom:267.910500px;}
.y53{bottom:268.903500px;}
.y1b2{bottom:273.031500px;}
.y11f{bottom:276.939000px;}
.y6c{bottom:282.390000px;}
.y36{bottom:283.141500px;}
.y20d{bottom:284.883000px;}
.y86{bottom:285.067500px;}
.y166{bottom:286.140000px;}
.y102{bottom:288.492000px;}
.y101{bottom:288.904500px;}
.y20c{bottom:289.807500px;}
.y18b{bottom:291.330000px;}
.y100{bottom:292.950000px;}
.ya1{bottom:293.913000px;}
.y227{bottom:294.810000px;}
.y1e2{bottom:294.973500px;}
.y13{bottom:295.365000px;}
.y1e1{bottom:296.875500px;}
.y189{bottom:298.509000px;}
.y52{bottom:299.581500px;}
.y143{bottom:301.470000px;}
.ybb{bottom:302.370000px;}
.ye7{bottom:302.383500px;}
.y188{bottom:302.554500px;}
.y1c5{bottom:303.387000px;}
.y19c{bottom:303.724500px;}
.y18a{bottom:311.062500px;}
.y6b{bottom:312.876000px;}
.y85{bottom:315.553500px;}
.y11{bottom:318.403500px;}
.y10{bottom:320.023500px;}
.y226{bottom:321.709500px;}
.y1f6{bottom:325.423500px;}
.y12{bottom:325.737000px;}
.y141{bottom:326.101500px;}
.y51{bottom:330.259500px;}
.y20b{bottom:332.971500px;}
.y140{bottom:333.225000px;}
.yff{bottom:337.162500px;}
.y165{bottom:337.885500px;}
.y142{bottom:340.404000px;}
.y35{bottom:341.406000px;}
.y1e0{bottom:342.396000px;}
.y1b1{bottom:342.877500px;}
.y6a{bottom:343.360500px;}
.y13e{bottom:344.449500px;}
.ya0{bottom:345.658500px;}
.y84{bottom:346.039500px;}
.y225{bottom:348.607500px;}
.y187{bottom:348.996000px;}
.y13f{bottom:349.072500px;}
.y1c4{bottom:351.079500px;}
.yf{bottom:355.608000px;}
.y19b{bottom:357.504000px;}
.y50{bottom:360.937500px;}
.y19a{bottom:361.549500px;}
.ye6{bottom:362.550000px;}
.y11e{bottom:362.946000px;}
.yba{bottom:363.007500px;}
.y34{bottom:368.305500px;}
.y20a{bottom:372.090000px;}
.y1df{bottom:372.880500px;}
.y1f5{bottom:373.696500px;}
.y69{bottom:373.846500px;}
.y224{bottom:375.507000px;}
.y209{bottom:376.135500px;}
.y83{bottom:376.525500px;}
.ye{bottom:378.646500px;}
.yd{bottom:380.265000px;}
.yfe{bottom:381.375000px;}
.y13d{bottom:383.289000px;}
.y1b0{bottom:383.316000px;}
.y186{bottom:388.660500px;}
.yb9{bottom:391.591500px;}
.y11d{bottom:393.432000px;}
.yb8{bottom:393.493500px;}
.y164{bottom:397.743000px;}
.y1c3{bottom:398.770500px;}
.y9f{bottom:401.509500px;}
.y223{bottom:402.406500px;}
.yc{bottom:404.923500px;}
.y9e{bottom:406.197000px;}
.y4f{bottom:408.171000px;}
.y33{bottom:409.873500px;}
.y1de{bottom:412.387500px;}
.y32{bottom:413.568000px;}
.ye5{bottom:414.295500px;}
.y199{bottom:416.649000px;}
.y208{bottom:419.301000px;}
.y1af{bottom:419.707500px;}
.y1f4{bottom:421.969500px;}
.y1ae{bottom:423.753000px;}
.y11c{bottom:423.918000px;}
.yfd{bottom:425.587500px;}
.y68{bottom:425.725500px;}
.yb6{bottom:427.423500px;}
.y163{bottom:428.229000px;}
.y82{bottom:428.982000px;}
.y222{bottom:429.306000px;}
.yb7{bottom:434.602500px;}
.y13c{bottom:435.034500px;}
.y9d{bottom:436.683000px;}
.y4e{bottom:438.849000px;}
.y185{bottom:440.406000px;}
.yb{bottom:440.508000px;}
.y1dd{bottom:442.873500px;}
.y1c2{bottom:446.461500px;}
.yb5{bottom:447.816000px;}
.yb4{bottom:449.718000px;}
.y207{bottom:458.419500px;}
.y162{bottom:458.713500px;}
.y11b{bottom:458.794500px;}
.y31{bottom:458.830500px;}
.y1ad{bottom:462.288000px;}
.y206{bottom:462.465000px;}
.y1ac{bottom:464.190000px;}
.ya{bottom:465.165000px;}
.yfb{bottom:465.340500px;}
.yfc{bottom:465.753000px;}
.y4d{bottom:469.527000px;}
.ye4{bottom:469.539000px;}
.yfa{bottom:469.798500px;}
.y1f3{bottom:470.242500px;}
.ye3{bottom:470.416500px;}
.y198{bottom:471.120000px;}
.y1dc{bottom:473.359500px;}
.ye2{bottom:474.462000px;}
.y81{bottom:476.076000px;}
.y80{bottom:480.121500px;}
.y9c{bottom:481.216500px;}
.y30{bottom:485.730000px;}
.yb3{bottom:486.655500px;}
.y67{bottom:487.401000px;}
.y11a{bottom:489.280500px;}
.y1c1{bottom:494.152500px;}
.y4c{bottom:500.205000px;}
.y184{bottom:500.415000px;}
.y9{bottom:501.027000px;}
.y1db{bottom:503.863500px;}
.y205{bottom:505.629000px;}
.y161{bottom:510.459000px;}
.y2f{bottom:512.629500px;}
.y13b{bottom:512.923500px;}
.yf9{bottom:514.011000px;}
.y1ab{bottom:515.935500px;}
.ye1{bottom:516.627000px;}
.y119{bottom:517.864500px;}
.y1f2{bottom:518.515500px;}
.y118{bottom:519.766500px;}
.y221{bottom:523.452000px;}
.y9b{bottom:525.748500px;}
.y182{bottom:530.350500px;}
.y4b{bottom:530.883000px;}
.y7f{bottom:531.262500px;}
.y1da{bottom:534.348000px;}
.y66{bottom:534.516000px;}
.y160{bottom:537.358500px;}
.y183{bottom:537.529500px;}
.yb2{bottom:538.401000px;}
.y2e{bottom:539.529000px;}
.y1c0{bottom:541.843500px;}
.yf8{bottom:542.043000px;}
.yc5{bottom:543.621000px;}
.yf7{bottom:544.497000px;}
.ydf{bottom:547.566000px;}
.y197{bottom:547.609500px;}
.y181{bottom:552.645000px;}
.y8{bottom:553.438500px;}
.ye0{bottom:554.746500px;}
.yc9{bottom:556.588500px;}
.y204{bottom:557.374500px;}
.y4a{bottom:561.561000px;}
.y2d{bottom:566.427000px;}
.y1f1{bottom:567.715500px;}
.yde{bottom:567.958500px;}
.y220{bottom:568.683000px;}
.y138{bottom:568.855500px;}
.ydd{bottom:569.860500px;}
.y9a{bottom:570.282000px;}
.y139{bottom:571.290000px;}
.y13a{bottom:572.887500px;}
.y117{bottom:575.902500px;}
.y1d9{bottom:577.281000px;}
.y196{bottom:578.094000px;}
.y7{bottom:580.336500px;}
.y1d8{bottom:581.326500px;}
.y65{bottom:581.631000px;}
.y180{bottom:582.733500px;}
.y7e{bottom:583.719000px;}
.y1bf{bottom:589.534500px;}
.y49{bottom:592.239000px;}
.y2c{bottom:593.326500px;}
.yf6{bottom:593.415000px;}
.y1aa{bottom:595.140000px;}
.yb1{bottom:597.136500px;}
.y15f{bottom:597.216000px;}
.yb0{bottom:599.038500px;}
.ydc{bottom:600.955500px;}
.y116{bottom:602.802000px;}
.y6{bottom:607.236000px;}
.y195{bottom:608.580000px;}
.y21f{bottom:613.912500px;}
.y99{bottom:614.815500px;}
.y1f0{bottom:616.345500px;}
.y203{bottom:617.698500px;}
.y17f{bottom:619.848000px;}
.y17e{bottom:623.893500px;}
.y1d7{bottom:628.305000px;}
.y64{bottom:628.746000px;}
.yf5{bottom:628.816500px;}
.y7d{bottom:630.814500px;}
.y7c{bottom:634.860000px;}
.y2b{bottom:634.896000px;}
.y15e{bottom:637.408500px;}
.y2a{bottom:638.589000px;}
.yaf{bottom:639.204000px;}
.y48{bottom:639.472500px;}
.ydb{bottom:639.723000px;}
.yae{bottom:640.149000px;}
.y136{bottom:641.440500px;}
.yda{bottom:641.625000px;}
.y1be{bottom:641.733000px;}
.y137{bottom:643.875000px;}
.yad{bottom:644.193000px;}
.y1ef{bottom:646.831500px;}
.yf4{bottom:652.020000px;}
.y21e{bottom:655.096500px;}
.yf3{bottom:655.714500px;}
.y1d6{bottom:658.791000px;}
.y21d{bottom:659.142000px;}
.y63{bottom:659.365500px;}
.y1a8{bottom:660.349500px;}
.y202{bottom:660.862500px;}
.y115{bottom:662.310000px;}
.y194{bottom:663.051000px;}
.y17d{bottom:665.052000px;}
.y98{bottom:666.561000px;}
.y1a9{bottom:673.399500px;}
.y15d{bottom:677.601000px;}
.yd9{bottom:679.744500px;}
.yf2{bottom:680.866500px;}
.yf1{bottom:682.614000px;}
.yd8{bottom:683.790000px;}
.y29{bottom:683.853000px;}
.y7b{bottom:685.999500px;}
.y47{bottom:686.706000px;}
.y1d5{bottom:689.277000px;}
.yac{bottom:689.349000px;}
.y135{bottom:689.781000px;}
.y1bd{bottom:694.194000px;}
.y114{bottom:695.962500px;}
.y113{bottom:697.710000px;}
.y1ee{bottom:699.145500px;}
.y15b{bottom:703.585500px;}
.y201{bottom:704.026500px;}
.y21c{bottom:704.371500px;}
.y62{bottom:706.480500px;}
.yf0{bottom:710.110500px;}
.y28{bottom:710.752500px;}
.y1a7{bottom:710.965500px;}
.y17c{bottom:716.797500px;}
.y15a{bottom:717.253500px;}
.y46{bottom:717.384000px;}
.y15c{bottom:718.198500px;}
.y193{bottom:719.227500px;}
.y1d4{bottom:719.781000px;}
.y1bc{bottom:721.092000px;}
.y159{bottom:722.242500px;}
.y112{bottom:722.862000px;}
.y111{bottom:724.609500px;}
.yd7{bottom:725.953500px;}
.y97{bottom:727.099500px;}
.y61{bottom:737.098500px;}
.y7a{bottom:738.456000px;}
.yab{bottom:741.094500px;}
.y134{bottom:741.526500px;}
.y192{bottom:746.127000px;}
.y200{bottom:747.192000px;}
.y45{bottom:748.062000px;}
.y110{bottom:749.761500px;}
.y5{bottom:749.814000px;}
.y1d3{bottom:750.267000px;}
.y1a6{bottom:751.402500px;}
.y10f{bottom:751.509000px;}
.yef{bottom:754.546500px;}
.y27{bottom:756.015000px;}
.y21b{bottom:756.117000px;}
.yd6{bottom:756.439500px;}
.y96{bottom:757.585500px;}
.y158{bottom:762.436500px;}
.y1ed{bottom:763.309500px;}
.y60{bottom:767.718000px;}
.y1b8{bottom:767.916000px;}
.y17b{bottom:772.762500px;}
.yc4{bottom:773.227500px;}
.y17a{bottom:776.806500px;}
.y10e{bottom:779.005500px;}
.y1d2{bottom:780.751500px;}
.yc8{bottom:786.195000px;}
.y79{bottom:789.597000px;}
.y1ff{bottom:790.356000px;}
.y1a5{bottom:791.839500px;}
.y1ec{bottom:793.795500px;}
.y44{bottom:795.295500px;}
.y95{bottom:797.128500px;}
.y156{bottom:797.638500px;}
.yaa{bottom:797.686500px;}
.y94{bottom:798.072000px;}
.y5f{bottom:798.336000px;}
.y157{bottom:798.583500px;}
.yd5{bottom:798.604500px;}
.y132{bottom:801.171000px;}
.y26{bottom:801.277500px;}
.ya9{bottom:801.732000px;}
.y93{bottom:802.117500px;}
.y155{bottom:802.629000px;}
.y133{bottom:805.794000px;}
.y191{bottom:806.395500px;}
.y190{bottom:808.143000px;}
.y1d1{bottom:811.237500px;}
.yed{bottom:813.066000px;}
.y21a{bottom:816.766500px;}
.y179{bottom:817.966500px;}
.y1eb{bottom:824.281500px;}
.y43{bottom:825.973500px;}
.y25{bottom:828.177000px;}
.y5e{bottom:828.955500px;}
.y10d{bottom:834.030000px;}
.y131{bottom:840.010500px;}
.y78{bottom:840.738000px;}
.yd4{bottom:840.768000px;}
.y1fe{bottom:842.101500px;}
.y154{bottom:842.821500px;}
.y1a4{bottom:843.585000px;}
.y92{bottom:846.651000px;}
.ya8{bottom:846.886500px;}
.y178{bottom:847.902000px;}
.yc3{bottom:848.263500px;}
.y1d0{bottom:854.170500px;}
.y24{bottom:855.076500px;}
.y42{bottom:856.651500px;}
.y1cf{bottom:858.216000px;}
.y10c{bottom:859.182000px;}
.y10b{bottom:860.929500px;}
.y218{bottom:861.996000px;}
.y219{bottom:866.619000px;}
.y177{bottom:867.633000px;}
.yd3{bottom:871.254000px;}
.y176{bottom:871.716000px;}
.y5d{bottom:876.070500px;}
.y1ea{bottom:876.595500px;}
.y91{bottom:877.137000px;}
.y1bb{bottom:877.948500px;}
.y12e{bottom:878.850000px;}
.y23{bottom:881.974500px;}
.y12f{bottom:883.471500px;}
.y130{bottom:883.473000px;}
.y41{bottom:887.329500px;}
.y1a3{bottom:889.987500px;}
.ya7{bottom:892.042500px;}
.y77{bottom:893.194500px;}
.y153{bottom:894.567000px;}
.y4{bottom:899.557500px;}
.y1fd{bottom:902.425500px;}
.y175{bottom:904.657500px;}
.y1ce{bottom:905.194500px;}
.yc2{bottom:905.280000px;}
.y217{bottom:907.225500px;}
.y22{bottom:908.874000px;}
.y1ba{bottom:911.964000px;}
.y10a{bottom:916.969500px;}
.y12d{bottom:917.688000px;}
.y40{bottom:918.007500px;}
.y109{bottom:918.717000px;}
.y90{bottom:921.669000px;}
.yd2{bottom:922.999500px;}
.y5c{bottom:923.185500px;}
.y233{bottom:924.697500px;}
.y76{bottom:925.086000px;}
.y1e9{bottom:925.323000px;}
.y3{bottom:930.940500px;}
.y1fc{bottom:932.911500px;}
.y1cd{bottom:935.680500px;}
.y21{bottom:935.773500px;}
.ya6{bottom:937.197000px;}
.y173{bottom:941.734500px;}
.y174{bottom:941.772000px;}
.y172{bottom:945.817500px;}
.y3f{bottom:948.685500px;}
.y1b9{bottom:948.733500px;}
.y19f{bottom:950.172000px;}
.y232{bottom:951.597000px;}
.y215{bottom:952.455000px;}
.y75{bottom:955.570500px;}
.y216{bottom:957.078000px;}
.y1a2{bottom:962.409000px;}
.y20{bottom:962.673000px;}
.y1cc{bottom:966.184500px;}
.y8f{bottom:966.202500px;}
.y12c{bottom:969.433500px;}
.yee{bottom:969.750000px;}
.y5b{bottom:970.300500px;}
.yd1{bottom:971.158500px;}
.y152{bottom:976.753500px;}
.y231{bottom:978.496500px;}
.y3e{bottom:979.363500px;}
.y1fb{bottom:984.657000px;}
.y74{bottom:986.056500px;}
.y171{bottom:986.977500px;}
.ya5{bottom:988.942500px;}
.y1e8{bottom:989.488500px;}
.y1f{bottom:989.571000px;}
.y1b7{bottom:991.813500px;}
.y1a1{bottom:995.947500px;}
.yc1{bottom:996.318000px;}
.y1cb{bottom:996.670500px;}
.y8e{bottom:996.688500px;}
.y2{bottom:996.801000px;}
.y214{bottom:997.686000px;}
.y230{bottom:1005.394500px;}
.y151{bottom:1006.813500px;}
.y3d{bottom:1010.041500px;}
.y73{bottom:1016.542500px;}
.y5a{bottom:1017.415500px;}
.yd0{bottom:1018.711500px;}
.y14f{bottom:1020.555000px;}
.y150{bottom:1021.092000px;}
.y14e{bottom:1024.786500px;}
.y1ca{bottom:1027.155000px;}
.y8d{bottom:1027.174500px;}
.y12b{bottom:1027.176000px;}
.y12a{bottom:1027.177500px;}
.y1b6{bottom:1027.213500px;}
.y1e{bottom:1028.277000px;}
.y129{bottom:1029.078000px;}
.y1e7{bottom:1030.645500px;}
.y22f{bottom:1032.294000px;}
.y1fa{bottom:1033.756500px;}
.y170{bottom:1038.723000px;}
.y213{bottom:1038.870000px;}
.y1{bottom:1040.139000px;}
.y3c{bottom:1040.719500px;}
.y212{bottom:1042.915500px;}
.y72{bottom:1047.028500px;}
.y59{bottom:1048.035000px;}
.y1b5{bottom:1050.418500px;}
.y14d{bottom:1052.284500px;}
.ycf{bottom:1052.365500px;}
.yce{bottom:1054.113000px;}
.y1f9{bottom:1056.051000px;}
.y1d{bottom:1056.885000px;}
.y1c9{bottom:1057.641000px;}
.y8c{bottom:1057.659000px;}
.y22e{bottom:1059.193500px;}
.y1e6{bottom:1061.131500px;}
.y1c{bottom:1062.309000px;}
.y128{bottom:1063.872000px;}
.y127{bottom:1067.917500px;}
.yc0{bottom:1068.105000px;}
.y1b4{bottom:1077.316500px;}
.y58{bottom:1078.653000px;}
.y71{bottom:1078.920000px;}
.ycd{bottom:1081.011000px;}
.y8b{bottom:1083.988500px;}
.y22d{bottom:1086.093000px;}
.y3b{bottom:1087.953000px;}
.y1c8{bottom:1088.127000px;}
.y8a{bottom:1088.145000px;}
.y1a{bottom:1090.725000px;}
.y1e5{bottom:1091.617500px;}
.y16f{bottom:1094.686500px;}
.ya4{bottom:1094.736000px;}
.y1b{bottom:1096.663500px;}
.y1a0{bottom:1098.468000px;}
.y16e{bottom:1098.732000px;}
.y126{bottom:1106.757000px;}
.ycc{bottom:1107.910500px;}
.y57{bottom:1109.272500px;}
.y70{bottom:1109.404500px;}
.y22c{bottom:1112.991000px;}
.yeb{bottom:1119.963000px;}
.y18f{bottom:1120.084500px;}
.y18e{bottom:1120.626000px;}
.yea{bottom:1122.006000px;}
.y18d{bottom:1122.373500px;}
.y108{bottom:1124.299500px;}
.y107{bottom:1125.316500px;}
.y106{bottom:1127.064000px;}
.y124{bottom:1134.789000px;}
.y125{bottom:1135.341000px;}
.ycb{bottom:1135.407000px;}
.y123{bottom:1137.243000px;}
.yec{bottom:1137.955500px;}
.y19{bottom:1139.890500px;}
.y3a{bottom:1192.194000px;}
.hb{height:15.816730px;}
.h18{height:17.494800px;}
.hd{height:26.899200px;}
.h38{height:29.038903px;}
.h13{height:31.382100px;}
.hf{height:31.902451px;}
.h12{height:35.865450px;}
.h8{height:37.927872px;}
.he{height:38.382451px;}
.h9{height:39.531504px;}
.h7{height:40.348800px;}
.h6{height:44.831700px;}
.h2b{height:47.573700px;}
.h11{height:49.090950px;}
.h5{height:50.211840px;}
.h2d{height:50.728903px;}
.h2e{height:50.734903px;}
.h30{height:51.821700px;}
.h43{height:52.309200px;}
.h47{height:52.409850px;}
.h39{height:53.072100px;}
.h4c{height:53.078100px;}
.h3{height:53.798400px;}
.hc{height:54.391200px;}
.ha{height:54.397200px;}
.h3a{height:55.438903px;}
.h14{height:56.066100px;}
.h10{height:56.227200px;}
.h27{height:56.698950px;}
.h59{height:57.782100px;}
.h16{height:59.603700px;}
.h4f{height:59.609700px;}
.h1e{height:59.619450px;}
.h57{height:59.663700px;}
.h58{height:60.068100px;}
.h2{height:60.254040px;}
.h42{height:60.871200px;}
.h41{height:60.877200px;}
.h37{height:61.250100px;}
.h46{height:62.147850px;}
.h2c{height:62.432100px;}
.h19{height:62.889450px;}
.h1b{height:62.895450px;}
.h33{height:65.266950px;}
.h1d{height:65.272950px;}
.h3d{height:65.354100px;}
.h4{height:67.226503px;}
.h31{height:67.227450px;}
.h21{height:67.840950px;}
.h5a{height:67.850100px;}
.h3b{height:67.856100px;}
.h5b{height:68.788950px;}
.h20{height:69.046950px;}
.h24{height:69.052950px;}
.h2f{height:69.422100px;}
.h45{height:69.603024px;}
.h25{height:70.365450px;}
.h3f{height:70.371450px;}
.h15{height:70.838100px;}
.h17{height:70.844100px;}
.h4d{height:72.992100px;}
.h4e{height:73.959024px;}
.h49{height:74.878950px;}
.h56{height:75.098100px;}
.h4b{height:76.779024px;}
.h26{height:77.973450px;}
.h1a{height:79.071450px;}
.h1c{height:79.077450px;}
.h40{height:79.357200px;}
.h48{height:79.363200px;}
.h3e{height:80.181450px;}
.h52{height:80.559024px;}
.h3c{height:80.727450px;}
.h22{height:81.689702px;}
.h1f{height:81.695702px;}
.h36{height:82.587450px;}
.h23{height:82.851450px;}
.h51{height:86.343024px;}
.h53{height:86.493024px;}
.h34{height:86.547450px;}
.h44{height:88.095024px;}
.h35{height:90.057450px;}
.h50{height:90.123024px;}
.h54{height:93.988950px;}
.h29{height:103.899450px;}
.h4a{height:105.495024px;}
.h28{height:107.787450px;}
.h32{height:107.793450px;}
.h55{height:136.911450px;}
.h2a{height:148.797450px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xca{left:105.424500px;}
.x5f{left:106.645500px;}
.x2d{left:108.000000px;}
.xa{left:109.203000px;}
.x2e{left:110.739000px;}
.x36{left:114.363000px;}
.xe4{left:115.471500px;}
.xb8{left:116.604000px;}
.x35{left:120.273000px;}
.xa7{left:122.020500px;}
.x40{left:123.865500px;}
.x32{left:126.636000px;}
.xb{left:128.922000px;}
.x39{left:130.416000px;}
.x31{left:132.999000px;}
.xe6{left:137.860500px;}
.xe5{left:140.212500px;}
.xd4{left:146.698500px;}
.x33{left:150.747000px;}
.x34{left:151.882500px;}
.x37{left:154.837500px;}
.x27{left:157.060500px;}
.x20{left:159.052500px;}
.x1{left:160.812000px;}
.xd5{left:164.421000px;}
.x94{left:168.331500px;}
.x44{left:169.332000px;}
.x78{left:172.353000px;}
.x26{left:173.754000px;}
.xcb{left:176.388000px;}
.xa3{left:179.607000px;}
.x4c{left:183.378000px;}
.xe3{left:186.184500px;}
.xb4{left:187.444500px;}
.x70{left:189.528000px;}
.x79{left:194.449500px;}
.xd6{left:196.050000px;}
.x2{left:200.094000px;}
.x8f{left:208.825500px;}
.xbf{left:212.629500px;}
.x23{left:214.422000px;}
.x8a{left:215.659500px;}
.x90{left:217.008000px;}
.x50{left:219.499500px;}
.x24{left:221.125500px;}
.x91{left:227.122500px;}
.x86{left:229.689000px;}
.x55{left:234.676500px;}
.x87{left:236.800500px;}
.x7a{left:238.936500px;}
.x54{left:242.988000px;}
.x6b{left:245.460000px;}
.x56{left:248.224500px;}
.x89{left:249.408000px;}
.xb3{left:250.813500px;}
.x77{left:253.041000px;}
.x88{left:254.389500px;}
.x6e{left:256.371000px;}
.x12{left:257.922000px;}
.x4a{left:259.189500px;}
.x59{left:262.642500px;}
.x99{left:264.385500px;}
.x3c{left:266.016000px;}
.x13{left:269.106000px;}
.x69{left:271.117500px;}
.x67{left:272.512500px;}
.xc8{left:273.592500px;}
.x3{left:274.819500px;}
.x6f{left:276.283500px;}
.xe1{left:277.525500px;}
.x7b{left:280.027500px;}
.x65{left:282.814500px;}
.x66{left:284.707500px;}
.xa2{left:286.693500px;}
.xae{left:287.821500px;}
.x75{left:289.444500px;}
.x76{left:292.225500px;}
.x9e{left:294.295500px;}
.x80{left:296.505000px;}
.xc1{left:297.532500px;}
.x14{left:299.068500px;}
.x72{left:302.326500px;}
.x15{left:304.551000px;}
.x5e{left:306.735000px;}
.xb9{left:308.277000px;}
.x4b{left:310.353000px;}
.x62{left:312.021000px;}
.x8e{left:313.911000px;}
.x16{left:316.270500px;}
.x92{left:319.093500px;}
.x52{left:323.554500px;}
.x9a{left:326.334000px;}
.x96{left:327.982500px;}
.x7{left:329.793000px;}
.x7c{left:330.895500px;}
.x17{left:332.731500px;}
.x53{left:336.490500px;}
.x93{left:339.066000px;}
.x28{left:340.405500px;}
.x95{left:342.760500px;}
.x18{left:344.164500px;}
.xdf{left:346.194000px;}
.x82{left:348.732000px;}
.x51{left:350.154000px;}
.x29{left:352.833000px;}
.x4{left:356.257500px;}
.xa4{left:357.835500px;}
.xe0{left:361.098000px;}
.x68{left:363.339000px;}
.x25{left:364.890000px;}
.x41{left:366.919500px;}
.xd3{left:370.590000px;}
.x38{left:373.006500px;}
.xd7{left:374.485500px;}
.x5b{left:378.339000px;}
.x6a{left:380.178000px;}
.x6{left:381.384000px;}
.x21{left:382.602000px;}
.xb7{left:384.607500px;}
.x7d{left:386.604000px;}
.xb0{left:387.883500px;}
.x4f{left:389.361000px;}
.x48{left:391.633500px;}
.x8{left:392.640000px;}
.x5{left:394.558500px;}
.x2c{left:396.034500px;}
.xd2{left:397.300500px;}
.x5c{left:398.739000px;}
.xa9{left:400.608000px;}
.x3e{left:402.133500px;}
.x6d{left:403.632000px;}
.x9{left:405.966000px;}
.xb1{left:407.707500px;}
.x30{left:409.203000px;}
.x6c{left:411.946500px;}
.xaf{left:413.005500px;}
.x3d{left:414.049500px;}
.x3f{left:415.681500px;}
.x2a{left:417.564000px;}
.xa6{left:418.959000px;}
.x83{left:421.765500px;}
.xad{left:422.800500px;}
.x1f{left:425.238000px;}
.xd8{left:427.032000px;}
.x19{left:429.679500px;}
.xac{left:431.673000px;}
.xb6{left:433.872000px;}
.x42{left:436.755000px;}
.x1a{left:444.165000px;}
.x10{left:445.908000px;}
.x60{left:447.781500px;}
.x1b{left:449.647500px;}
.x9f{left:451.479000px;}
.x8b{left:454.320000px;}
.x11{left:457.092000px;}
.x1c{left:461.046000px;}
.x8c{left:467.928000px;}
.x4d{left:470.742000px;}
.x98{left:473.374500px;}
.xa8{left:476.788500px;}
.x5d{left:478.192500px;}
.x57{left:479.562000px;}
.x1d{left:481.770000px;}
.x9c{left:483.438000px;}
.x7e{left:484.872000px;}
.xc{left:487.321500px;}
.xa5{left:490.999500px;}
.xab{left:496.312500px;}
.x1e{left:499.080000px;}
.xaa{left:504.448500px;}
.xc3{left:505.885500px;}
.x8d{left:507.178500px;}
.xc2{left:509.086500px;}
.x22{left:511.759500px;}
.x49{left:513.498000px;}
.xa1{left:517.161000px;}
.xd{left:520.033500px;}
.x9d{left:522.282000px;}
.x85{left:524.295000px;}
.x4e{left:526.179000px;}
.xa0{left:535.146000px;}
.xe{left:536.202000px;}
.x63{left:541.377000px;}
.x2b{left:548.404500px;}
.x97{left:550.243500px;}
.x64{left:553.749000px;}
.x9b{left:554.932500px;}
.x7f{left:556.152000px;}
.x84{left:560.908500px;}
.xd9{left:563.250000px;}
.x73{left:569.817000px;}
.xcc{left:571.885500px;}
.x43{left:578.568000px;}
.x74{left:580.417500px;}
.xb5{left:582.043500px;}
.xcd{left:585.862500px;}
.xc9{left:591.106500px;}
.xba{left:593.133000px;}
.xda{left:598.287000px;}
.xe2{left:602.697000px;}
.xf{left:606.469500px;}
.x81{left:607.864500px;}
.xc0{left:608.875500px;}
.x58{left:631.438500px;}
.xbb{left:635.565000px;}
.x61{left:647.004000px;}
.xce{left:649.500000px;}
.x3a{left:654.237000px;}
.x3b{left:662.419500px;}
.x5a{left:681.822000px;}
.xbc{left:684.519000px;}
.x45{left:686.611500px;}
.xc4{left:689.785500px;}
.xcf{left:693.978000px;}
.xbd{left:698.121000px;}
.xd0{left:700.215000px;}
.xc5{left:701.485500px;}
.xd1{left:714.192000px;}
.xc6{left:718.036500px;}
.x46{left:724.818000px;}
.xb2{left:728.779500px;}
.xc7{left:731.911500px;}
.xbe{left:733.920000px;}
.x47{left:757.996500px;}
.xdb{left:766.111500px;}
.xdc{left:772.431000px;}
.xdd{left:784.704000px;}
.x71{left:791.013000px;}
.xde{left:794.650500px;}
.x2f{left:799.195500px;}
@media print{
.ve{vertical-align:-24.021333pt;}
.va{vertical-align:-20.314667pt;}
.v24{vertical-align:-16.432000pt;}
.v2{vertical-align:-11.477333pt;}
.vb{vertical-align:-8.725333pt;}
.v3{vertical-align:-5.312000pt;}
.v21{vertical-align:-1.050667pt;}
.v0{vertical-align:0.000000pt;}
.v1b{vertical-align:2.437333pt;}
.v1{vertical-align:5.738667pt;}
.v12{vertical-align:7.424000pt;}
.vf{vertical-align:9.237333pt;}
.v26{vertical-align:10.629333pt;}
.v8{vertical-align:13.130667pt;}
.vc{vertical-align:14.384000pt;}
.v11{vertical-align:16.666667pt;}
.v10{vertical-align:17.738667pt;}
.v1d{vertical-align:19.280000pt;}
.v4{vertical-align:20.314667pt;}
.v7{vertical-align:21.941333pt;}
.v22{vertical-align:23.466667pt;}
.v5{vertical-align:24.442667pt;}
.v6{vertical-align:26.069333pt;}
.v1c{vertical-align:27.600000pt;}
.v15{vertical-align:30.666667pt;}
.v23{vertical-align:32.421333pt;}
.v1e{vertical-align:33.813333pt;}
.v9{vertical-align:35.072000pt;}
.v16{vertical-align:37.429333pt;}
.vd{vertical-align:38.405333pt;}
.v17{vertical-align:39.909333pt;}
.v14{vertical-align:41.765333pt;}
.v13{vertical-align:42.688000pt;}
.v1f{vertical-align:45.050667pt;}
.v20{vertical-align:48.170667pt;}
.v29{vertical-align:50.480000pt;}
.v28{vertical-align:51.738667pt;}
.v19{vertical-align:60.474667pt;}
.v18{vertical-align:63.930667pt;}
.v25{vertical-align:76.181333pt;}
.v1a{vertical-align:79.269333pt;}
.v27{vertical-align:91.648000pt;}
.lsa{letter-spacing:0.000000pt;}
.lsd9{letter-spacing:0.000416pt;}
.lse{letter-spacing:0.000543pt;}
.ls8{letter-spacing:0.000693pt;}
.ls35{letter-spacing:0.000923pt;}
.ls8c{letter-spacing:0.000928pt;}
.lse2{letter-spacing:0.000933pt;}
.ls82{letter-spacing:0.001075pt;}
.lsee{letter-spacing:0.001414pt;}
.ls2e{letter-spacing:0.001416pt;}
.ls41{letter-spacing:0.001420pt;}
.lsa8{letter-spacing:0.001788pt;}
.ls29{letter-spacing:0.001908pt;}
.ls6f{letter-spacing:0.002000pt;}
.ls48{letter-spacing:0.002205pt;}
.ls9b{letter-spacing:0.002346pt;}
.ls79{letter-spacing:0.002365pt;}
.ls4d{letter-spacing:0.002384pt;}
.ls9e{letter-spacing:0.002399pt;}
.ls21{letter-spacing:0.002400pt;}
.ls33{letter-spacing:0.002405pt;}
.ls8a{letter-spacing:0.002827pt;}
.ls14{letter-spacing:0.002906pt;}
.ls19{letter-spacing:0.003856pt;}
.ls88{letter-spacing:0.004025pt;}
.lsd7{letter-spacing:0.004349pt;}
.ls1{letter-spacing:0.004460pt;}
.lsdb{letter-spacing:0.004670pt;}
.ls49{letter-spacing:0.004762pt;}
.lsdc{letter-spacing:0.005649pt;}
.lsfe{letter-spacing:0.006262pt;}
.ls38{letter-spacing:0.007186pt;}
.ls25{letter-spacing:0.008056pt;}
.lse0{letter-spacing:0.009080pt;}
.ls85{letter-spacing:0.009626pt;}
.lsfa{letter-spacing:0.009948pt;}
.ls5e{letter-spacing:0.010582pt;}
.lscf{letter-spacing:0.011370pt;}
.ls22{letter-spacing:0.012519pt;}
.lsf2{letter-spacing:0.012945pt;}
.ls51{letter-spacing:0.013305pt;}
.ls2f{letter-spacing:0.013823pt;}
.ls30{letter-spacing:0.014279pt;}
.ls62{letter-spacing:0.014462pt;}
.lse6{letter-spacing:0.014512pt;}
.lsed{letter-spacing:0.015156pt;}
.lse8{letter-spacing:0.016341pt;}
.lse5{letter-spacing:0.022075pt;}
.ls75{letter-spacing:0.023514pt;}
.lsb5{letter-spacing:0.232727pt;}
.ls2c{letter-spacing:0.290909pt;}
.lsff{letter-spacing:0.407273pt;}
.lsd6{letter-spacing:0.425071pt;}
.ls92{letter-spacing:1.140645pt;}
.lsac{letter-spacing:1.147694pt;}
.ls8e{letter-spacing:1.251203pt;}
.ls86{letter-spacing:1.256536pt;}
.ls6{letter-spacing:1.365205pt;}
.ls72{letter-spacing:1.449854pt;}
.ls10{letter-spacing:1.463735pt;}
.ls68{letter-spacing:1.474711pt;}
.ls47{letter-spacing:1.477138pt;}
.lsd2{letter-spacing:1.480044pt;}
.ls11{letter-spacing:1.484565pt;}
.ls74{letter-spacing:1.489899pt;}
.lsdf{letter-spacing:1.522516pt;}
.lsc7{letter-spacing:1.584987pt;}
.lsf6{letter-spacing:1.594106pt;}
.ls54{letter-spacing:1.596072pt;}
.lsb8{letter-spacing:1.597488pt;}
.ls3b{letter-spacing:1.601405pt;}
.ls81{letter-spacing:1.602301pt;}
.ls3c{letter-spacing:1.602319pt;}
.ls39{letter-spacing:1.602451pt;}
.ls1d{letter-spacing:1.602818pt;}
.lsb1{letter-spacing:1.605223pt;}
.lsc5{letter-spacing:1.607900pt;}
.lsbd{letter-spacing:1.610790pt;}
.ls52{letter-spacing:1.611714pt;}
.ls4b{letter-spacing:1.612566pt;}
.lsbc{letter-spacing:1.614473pt;}
.lscb{letter-spacing:1.614971pt;}
.lsf7{letter-spacing:1.617401pt;}
.ls1a{letter-spacing:1.617899pt;}
.ls7e{letter-spacing:1.618150pt;}
.ls3d{letter-spacing:1.620299pt;}
.ls59{letter-spacing:1.620305pt;}
.lsf5{letter-spacing:1.625077pt;}
.lsf4{letter-spacing:1.627511pt;}
.ls1f{letter-spacing:1.629002pt;}
.ls3a{letter-spacing:1.630079pt;}
.ls58{letter-spacing:1.639586pt;}
.ls57{letter-spacing:1.646327pt;}
.ls56{letter-spacing:2.036365pt;}
.ls5b{letter-spacing:2.071646pt;}
.lse9{letter-spacing:2.094547pt;}
.lsba{letter-spacing:2.210911pt;}
.ls9c{letter-spacing:2.648791pt;}
.ls61{letter-spacing:2.653258pt;}
.ls2a{letter-spacing:2.653398pt;}
.ls97{letter-spacing:2.654249pt;}
.lsd0{letter-spacing:2.654275pt;}
.lsd1{letter-spacing:2.655396pt;}
.ls9{letter-spacing:2.656473pt;}
.lsd8{letter-spacing:2.656546pt;}
.ls15{letter-spacing:2.656631pt;}
.lsfc{letter-spacing:2.656991pt;}
.ls18{letter-spacing:2.657087pt;}
.lsda{letter-spacing:2.657253pt;}
.ls63{letter-spacing:2.657546pt;}
.lsc1{letter-spacing:2.658591pt;}
.lsca{letter-spacing:2.658681pt;}
.ls28{letter-spacing:2.658731pt;}
.lsce{letter-spacing:2.659608pt;}
.ls67{letter-spacing:2.660729pt;}
.ls2{letter-spacing:2.661444pt;}
.lsc3{letter-spacing:2.661964pt;}
.ls2d{letter-spacing:2.662420pt;}
.lsc2{letter-spacing:2.806736pt;}
.lsf0{letter-spacing:2.967275pt;}
.lsb4{letter-spacing:3.071003pt;}
.ls27{letter-spacing:3.206146pt;}
.ls32{letter-spacing:3.211479pt;}
.ls36{letter-spacing:3.218305pt;}
.lsa7{letter-spacing:3.352213pt;}
.lsae{letter-spacing:3.783583pt;}
.lsad{letter-spacing:3.788916pt;}
.ls3{letter-spacing:3.800871pt;}
.ls64{letter-spacing:3.801225pt;}
.lsfb{letter-spacing:4.138008pt;}
.lscc{letter-spacing:4.161420pt;}
.lsc8{letter-spacing:4.166753pt;}
.ls43{letter-spacing:4.640444pt;}
.lsb2{letter-spacing:4.711168pt;}
.ls7c{letter-spacing:4.711666pt;}
.lscd{letter-spacing:4.721414pt;}
.lsc4{letter-spacing:4.726249pt;}
.lsb0{letter-spacing:4.726748pt;}
.ls7f{letter-spacing:4.733880pt;}
.lsb6{letter-spacing:4.744796pt;}
.ls26{letter-spacing:4.838541pt;}
.ls34{letter-spacing:4.843874pt;}
.ls89{letter-spacing:5.312473pt;}
.lsfd{letter-spacing:5.317806pt;}
.ls4f{letter-spacing:5.818187pt;}
.lsa9{letter-spacing:6.283642pt;}
.ls4c{letter-spacing:7.185653pt;}
.lsa5{letter-spacing:8.873356pt;}
.lsaa{letter-spacing:9.697788pt;}
.lsb9{letter-spacing:9.703121pt;}
.lsa0{letter-spacing:9.716372pt;}
.lsd{letter-spacing:11.795718pt;}
.lsa4{letter-spacing:12.115514pt;}
.ls1e{letter-spacing:12.916374pt;}
.ls60{letter-spacing:12.974556pt;}
.ls5{letter-spacing:13.007258pt;}
.ls9f{letter-spacing:13.139733pt;}
.ls96{letter-spacing:13.145067pt;}
.lsc6{letter-spacing:14.464631pt;}
.lsc{letter-spacing:14.771215pt;}
.ls5c{letter-spacing:15.292320pt;}
.lsf9{letter-spacing:15.297653pt;}
.lsaf{letter-spacing:15.581258pt;}
.ls5f{letter-spacing:15.586591pt;}
.ls3e{letter-spacing:15.590420pt;}
.lse4{letter-spacing:16.116377pt;}
.ls8b{letter-spacing:16.162827pt;}
.ls17{letter-spacing:16.174559pt;}
.ls40{letter-spacing:18.082400pt;}
.ls42{letter-spacing:18.087733pt;}
.lsec{letter-spacing:18.269106pt;}
.lse1{letter-spacing:18.734561pt;}
.ls7b{letter-spacing:18.813258pt;}
.lsc9{letter-spacing:18.816991pt;}
.ls24{letter-spacing:18.817087pt;}
.lse3{letter-spacing:18.817546pt;}
.ls5a{letter-spacing:18.818591pt;}
.lsb{letter-spacing:18.915657pt;}
.lsab{letter-spacing:18.948737pt;}
.ls16{letter-spacing:19.039527pt;}
.ls78{letter-spacing:19.083652pt;}
.ls3f{letter-spacing:19.306144pt;}
.ls31{letter-spacing:19.374562pt;}
.lsef{letter-spacing:19.490925pt;}
.ls4e{letter-spacing:20.113653pt;}
.lsf1{letter-spacing:20.116345pt;}
.ls6c{letter-spacing:20.712745pt;}
.ls45{letter-spacing:20.770926pt;}
.ls55{letter-spacing:20.829108pt;}
.lsd3{letter-spacing:21.250906pt;}
.ls83{letter-spacing:21.477806pt;}
.lsdd{letter-spacing:22.045258pt;}
.lsde{letter-spacing:22.050591pt;}
.ls99{letter-spacing:22.909258pt;}
.lse7{letter-spacing:23.473546pt;}
.lsea{letter-spacing:23.563656pt;}
.lsbe{letter-spacing:23.854565pt;}
.ls50{letter-spacing:25.192748pt;}
.ls73{letter-spacing:26.566933pt;}
.ls23{letter-spacing:27.054568pt;}
.ls71{letter-spacing:29.542430pt;}
.lsf8{letter-spacing:31.457653pt;}
.ls44{letter-spacing:31.883663pt;}
.ls5d{letter-spacing:35.753678pt;}
.ls69{letter-spacing:48.306906pt;}
.ls95{letter-spacing:50.659324pt;}
.ls93{letter-spacing:50.938831pt;}
.lsa1{letter-spacing:54.868327pt;}
.lsa3{letter-spacing:54.873660pt;}
.ls87{letter-spacing:54.939162pt;}
.ls8f{letter-spacing:54.944495pt;}
.ls9d{letter-spacing:59.077017pt;}
.ls12{letter-spacing:59.646544pt;}
.lseb{letter-spacing:60.276414pt;}
.lsd4{letter-spacing:62.136239pt;}
.ls20{letter-spacing:63.681546pt;}
.lsd5{letter-spacing:74.706906pt;}
.ls1b{letter-spacing:79.841546pt;}
.lsf3{letter-spacing:79.846879pt;}
.lsbf{letter-spacing:80.695212pt;}
.lsbb{letter-spacing:80.700545pt;}
.ls90{letter-spacing:81.712165pt;}
.ls53{letter-spacing:84.497546pt;}
.ls98{letter-spacing:85.901991pt;}
.lsa6{letter-spacing:87.451213pt;}
.ls7{letter-spacing:87.899162pt;}
.ls9a{letter-spacing:93.219608pt;}
.ls94{letter-spacing:93.824495pt;}
.ls8d{letter-spacing:93.829828pt;}
.ls13{letter-spacing:95.267878pt;}
.ls6e{letter-spacing:99.975925pt;}
.ls7a{letter-spacing:101.670879pt;}
.lsc0{letter-spacing:101.676213pt;}
.ls66{letter-spacing:104.692767pt;}
.ls4{letter-spacing:104.976495pt;}
.lsb3{letter-spacing:106.396213pt;}
.lsb7{letter-spacing:106.401546pt;}
.ls84{letter-spacing:106.757828pt;}
.lsf{letter-spacing:110.025211pt;}
.ls6b{letter-spacing:116.135925pt;}
.ls6d{letter-spacing:117.830879pt;}
.ls1c{letter-spacing:117.836213pt;}
.ls7d{letter-spacing:119.329546pt;}
.ls80{letter-spacing:122.561546pt;}
.ls76{letter-spacing:124.734544pt;}
.ls70{letter-spacing:124.787878pt;}
.ls2b{letter-spacing:126.080105pt;}
.ls37{letter-spacing:128.640107pt;}
.lsa2{letter-spacing:150.109988pt;}
.ls4a{letter-spacing:193.874980pt;}
.ls65{letter-spacing:229.891878pt;}
.ls6a{letter-spacing:235.890491pt;}
.ls0{letter-spacing:306.975635pt;}
.ls77{letter-spacing:379.113211pt;}
.ls91{letter-spacing:560.842831pt;}
.ls46{letter-spacing:730.413647pt;}
.ws8b{word-spacing:-58.181867pt;}
.ws7b{word-spacing:-48.523677pt;}
.ws8d{word-spacing:-45.265492pt;}
.ws5a{word-spacing:-42.007308pt;}
.ws96{word-spacing:-41.327521pt;}
.ws45{word-spacing:-37.899668pt;}
.ws7e{word-spacing:-34.611401pt;}
.ws69{word-spacing:-32.337481pt;}
.ws77{word-spacing:-29.736752pt;}
.ws2b{word-spacing:-29.531803pt;}
.ws47{word-spacing:-29.521250pt;}
.ws38{word-spacing:-29.090933pt;}
.ws93{word-spacing:-29.079297pt;}
.ws64{word-spacing:-28.241478pt;}
.ws5c{word-spacing:-28.183296pt;}
.ws80{word-spacing:-28.118362pt;}
.wsd9{word-spacing:-27.156719pt;}
.ws1c{word-spacing:-26.566933pt;}
.ws20{word-spacing:-26.556307pt;}
.ws7{word-spacing:-26.122909pt;}
.ws2a{word-spacing:-25.738045pt;}
.ws31{word-spacing:-24.575109pt;}
.wsd2{word-spacing:-22.356856pt;}
.ws8a{word-spacing:-22.314349pt;}
.wsa4{word-spacing:-21.725109pt;}
.wsb5{word-spacing:-19.893320pt;}
.ws5d{word-spacing:-16.162923pt;}
.wsaa{word-spacing:-15.243649pt;}
.ws28{word-spacing:-14.760588pt;}
.wscf{word-spacing:-14.336012pt;}
.ws39{word-spacing:-14.254557pt;}
.ws98{word-spacing:-14.239876pt;}
.ws79{word-spacing:-13.938780pt;}
.ws57{word-spacing:-13.934231pt;}
.ws7a{word-spacing:-13.933447pt;}
.ws6e{word-spacing:-13.928897pt;}
.ws44{word-spacing:-13.672739pt;}
.wsab{word-spacing:-13.265466pt;}
.wsf{word-spacing:-13.055078pt;}
.ws1a{word-spacing:-12.964663pt;}
.wsc0{word-spacing:-12.683647pt;}
.ws43{word-spacing:-12.276374pt;}
.wsac{word-spacing:-12.165828pt;}
.ws9b{word-spacing:-11.752737pt;}
.ws27{word-spacing:-11.689451pt;}
.ws3a{word-spacing:-11.403646pt;}
.wsa1{word-spacing:-11.375618pt;}
.ws62{word-spacing:-10.938191pt;}
.ws40{word-spacing:-10.705463pt;}
.ws66{word-spacing:-10.703261pt;}
.ws46{word-spacing:-10.702492pt;}
.ws67{word-spacing:-10.702231pt;}
.ws7d{word-spacing:-10.700430pt;}
.ws78{word-spacing:-10.697159pt;}
.ws68{word-spacing:-10.696897pt;}
.wsb8{word-spacing:-10.589100pt;}
.ws12{word-spacing:-10.467973pt;}
.wscd{word-spacing:-10.414554pt;}
.wscc{word-spacing:-10.356372pt;}
.wsc3{word-spacing:-10.240009pt;}
.ws52{word-spacing:-10.201702pt;}
.wsc4{word-spacing:-10.181827pt;}
.wscb{word-spacing:-10.148569pt;}
.ws51{word-spacing:-10.065463pt;}
.ws9e{word-spacing:-10.007281pt;}
.wsc8{word-spacing:-9.949099pt;}
.wsc6{word-spacing:-9.890917pt;}
.wsca{word-spacing:-9.832735pt;}
.ws9d{word-spacing:-9.774554pt;}
.ws10{word-spacing:-9.750661pt;}
.ws30{word-spacing:-9.716372pt;}
.ws33{word-spacing:-9.658190pt;}
.ws9c{word-spacing:-9.600008pt;}
.ws1e{word-spacing:-9.564096pt;}
.ws4f{word-spacing:-9.541826pt;}
.ws4e{word-spacing:-9.483644pt;}
.wsc5{word-spacing:-9.431281pt;}
.ws3e{word-spacing:-9.425462pt;}
.ws3d{word-spacing:-9.367281pt;}
.ws3c{word-spacing:-9.309099pt;}
.wsd7{word-spacing:-9.245293pt;}
.ws41{word-spacing:-9.192735pt;}
.ws2c{word-spacing:-9.085891pt;}
.ws1d{word-spacing:-8.979623pt;}
.wsce{word-spacing:-8.965826pt;}
.ws63{word-spacing:-8.907644pt;}
.ws4{word-spacing:-8.873356pt;}
.ws82{word-spacing:-8.820222pt;}
.wsdf{word-spacing:-8.772401pt;}
.ws1f{word-spacing:-8.767088pt;}
.wse1{word-spacing:-8.713954pt;}
.ws26{word-spacing:-8.660820pt;}
.wsc7{word-spacing:-8.610916pt;}
.wsd5{word-spacing:-8.607686pt;}
.wsd8{word-spacing:-8.559866pt;}
.ws25{word-spacing:-8.554553pt;}
.ws2f{word-spacing:-8.494553pt;}
.wsdb{word-spacing:-8.453598pt;}
.ws74{word-spacing:-8.378189pt;}
.wsd{word-spacing:-8.220396pt;}
.wse0{word-spacing:-8.187929pt;}
.ws8{word-spacing:-8.172575pt;}
.wsc2{word-spacing:-8.145461pt;}
.wsda{word-spacing:-8.134795pt;}
.wsa{word-spacing:-8.124754pt;}
.wsc{word-spacing:-8.076933pt;}
.wsbd{word-spacing:-8.076348pt;}
.wse2{word-spacing:-7.975393pt;}
.ws4d{word-spacing:-7.912734pt;}
.wsd6{word-spacing:-7.869126pt;}
.ws9{word-spacing:-7.837829pt;}
.ws76{word-spacing:-6.929460pt;}
.ws1b{word-spacing:-6.907403pt;}
.ws3f{word-spacing:-6.690915pt;}
.wsa0{word-spacing:-6.446551pt;}
.wsdc{word-spacing:-6.322930pt;}
.wsde{word-spacing:-6.269796pt;}
.wsdd{word-spacing:-5.850039pt;}
.ws5{word-spacing:-5.685893pt;}
.wsd0{word-spacing:-5.371641pt;}
.wsbf{word-spacing:-5.294550pt;}
.ws32{word-spacing:-5.178186pt;}
.wse{word-spacing:-5.064223pt;}
.ws54{word-spacing:-4.945459pt;}
.ws87{word-spacing:-4.654549pt;}
.ws19{word-spacing:-4.468558pt;}
.ws24{word-spacing:-4.356977pt;}
.ws55{word-spacing:-4.189094pt;}
.ws91{word-spacing:-4.130913pt;}
.ws5f{word-spacing:-4.072731pt;}
.ws60{word-spacing:-4.014549pt;}
.ws3b{word-spacing:-3.898185pt;}
.wsb1{word-spacing:-3.840003pt;}
.ws50{word-spacing:-3.549094pt;}
.ws4b{word-spacing:-3.246548pt;}
.wsc9{word-spacing:-3.188366pt;}
.wsb9{word-spacing:-3.141821pt;}
.ws22{word-spacing:-2.964870pt;}
.wsc1{word-spacing:-2.850911pt;}
.ws2e{word-spacing:-2.094547pt;}
.ws58{word-spacing:-2.036365pt;}
.ws42{word-spacing:-1.629092pt;}
.ws53{word-spacing:-1.047274pt;}
.wsb4{word-spacing:-0.872728pt;}
.ws2{word-spacing:-0.076513pt;}
.ws49{word-spacing:-0.058182pt;}
.ws29{word-spacing:-0.053134pt;}
.ws6{word-spacing:-0.047821pt;}
.ws5e{word-spacing:-0.046545pt;}
.ws48{word-spacing:-0.042507pt;}
.ws8f{word-spacing:-0.037194pt;}
.ws16{word-spacing:0.000000pt;}
.wsa2{word-spacing:0.010627pt;}
.ws59{word-spacing:0.011636pt;}
.ws9f{word-spacing:0.186182pt;}
.ws65{word-spacing:2.146911pt;}
.ws17{word-spacing:2.385457pt;}
.wsbe{word-spacing:2.932989pt;}
.wsba{word-spacing:3.211639pt;}
.wsd1{word-spacing:4.565735pt;}
.ws2d{word-spacing:7.854552pt;}
.wsa9{word-spacing:7.896594pt;}
.ws14{word-spacing:8.129536pt;}
.ws18{word-spacing:10.159221pt;}
.ws75{word-spacing:10.786961pt;}
.ws73{word-spacing:10.792295pt;}
.ws15{word-spacing:13.581107pt;}
.ws97{word-spacing:14.424269pt;}
.ws23{word-spacing:14.429602pt;}
.wsd3{word-spacing:15.538725pt;}
.ws4c{word-spacing:15.544033pt;}
.ws6b{word-spacing:15.548175pt;}
.wsa8{word-spacing:16.174559pt;}
.ws11{word-spacing:17.024205pt;}
.wsb0{word-spacing:17.454560pt;}
.wsb7{word-spacing:18.773467pt;}
.ws5b{word-spacing:18.776033pt;}
.ws88{word-spacing:18.776059pt;}
.ws8c{word-spacing:18.778801pt;}
.ws61{word-spacing:18.780175pt;}
.ws13{word-spacing:18.793574pt;}
.wsb{word-spacing:18.889216pt;}
.ws21{word-spacing:20.649857pt;}
.ws1{word-spacing:20.786108pt;}
.wsb3{word-spacing:22.047769pt;}
.ws4a{word-spacing:23.720295pt;}
.wsaf{word-spacing:23.814923pt;}
.ws3{word-spacing:23.846639pt;}
.wsa7{word-spacing:25.786203pt;}
.ws6d{word-spacing:26.946961pt;}
.ws56{word-spacing:26.952295pt;}
.wsae{word-spacing:27.124386pt;}
.ws0{word-spacing:28.615887pt;}
.wsd4{word-spacing:29.998570pt;}
.ws37{word-spacing:30.551973pt;}
.ws70{word-spacing:31.602961pt;}
.ws89{word-spacing:37.339069pt;}
.wsa3{word-spacing:49.342197pt;}
.ws84{word-spacing:52.850004pt;}
.ws72{word-spacing:57.141735pt;}
.wsa5{word-spacing:58.795069pt;}
.ws71{word-spacing:73.693367pt;}
.wsa6{word-spacing:75.149367pt;}
.wsad{word-spacing:75.154700pt;}
.ws9a{word-spacing:81.796523pt;}
.wsb2{word-spacing:85.682936pt;}
.ws92{word-spacing:86.626700pt;}
.ws7c{word-spacing:88.122255pt;}
.ws6c{word-spacing:88.180437pt;}
.ws6a{word-spacing:89.853367pt;}
.ws6f{word-spacing:94.509367pt;}
.wsbb{word-spacing:96.671658pt;}
.ws83{word-spacing:107.109750pt;}
.ws90{word-spacing:158.773622pt;}
.wsbc{word-spacing:166.219372pt;}
.ws86{word-spacing:166.847190pt;}
.ws85{word-spacing:188.648269pt;}
.ws81{word-spacing:224.436707pt;}
.ws99{word-spacing:289.191918pt;}
.ws94{word-spacing:431.183190pt;}
.ws95{word-spacing:443.512269pt;}
.ws7f{word-spacing:643.643083pt;}
.wsb6{word-spacing:761.456497pt;}
.ws8e{word-spacing:786.021622pt;}
.ws34{word-spacing:1958.161672pt;}
.ws36{word-spacing:1981.446055pt;}
.ws35{word-spacing:2108.129672pt;}
._4b{margin-left:-26.556495pt;}
._46{margin-left:-15.637263pt;}
._c{margin-left:-14.356796pt;}
._6{margin-left:-13.007258pt;}
._54{margin-left:-9.658190pt;}
._1{margin-left:-7.192228pt;}
._2{margin-left:-5.228407pt;}
._5{margin-left:-4.160410pt;}
._7{margin-left:-2.404871pt;}
._4{margin-left:-1.487748pt;}
._3{width:1.071193pt;}
._0{width:2.371905pt;}
._8{width:3.730022pt;}
._44{width:4.818638pt;}
._4a{width:5.965995pt;}
._55{width:7.229016pt;}
._3b{width:16.383367pt;}
._3f{width:17.904317pt;}
._b{width:18.920033pt;}
._11{width:20.311954pt;}
._e{width:21.769301pt;}
._a{width:23.591437pt;}
._9{width:24.499089pt;}
._3c{width:25.622855pt;}
._38{width:26.553372pt;}
._43{width:27.946711pt;}
._58{width:28.853702pt;}
._d{width:31.703317pt;}
._3d{width:35.990657pt;}
._59{width:37.776074pt;}
._41{width:40.891746pt;}
._3e{width:42.407105pt;}
._45{width:43.749345pt;}
._42{width:50.187032pt;}
._52{width:52.715252pt;}
._4e{width:54.183940pt;}
._50{width:58.895404pt;}
._40{width:61.733038pt;}
._56{width:75.636427pt;}
._4d{width:97.548357pt;}
._53{width:125.630251pt;}
._51{width:158.823591pt;}
._57{width:180.475664pt;}
._48{width:234.255160pt;}
._5a{width:237.861204pt;}
._5b{width:241.042133pt;}
._4f{width:258.327230pt;}
._49{width:335.042133pt;}
._1d{width:358.387391pt;}
._47{width:374.655160pt;}
._24{width:503.661686pt;}
._4c{width:520.671519pt;}
._3a{width:798.681899pt;}
._31{width:815.081830pt;}
._15{width:897.234626pt;}
._1a{width:990.106437pt;}
._10{width:998.063814pt;}
._12{width:999.996983pt;}
._20{width:1005.969660pt;}
._23{width:1044.955608pt;}
._2f{width:1065.582390pt;}
._32{width:1068.224493pt;}
._25{width:1073.367108pt;}
._2a{width:1087.089412pt;}
._36{width:1090.670229pt;}
._1c{width:1102.658852pt;}
._21{width:1177.241613pt;}
._16{width:1255.002279pt;}
._2e{width:1265.746509pt;}
._26{width:1310.660135pt;}
._2d{width:1314.308809pt;}
._33{width:1316.328992pt;}
._1e{width:1336.343554pt;}
._18{width:1345.070834pt;}
._17{width:1380.347350pt;}
._13{width:1386.771274pt;}
._39{width:1414.900897pt;}
._2c{width:1438.250797pt;}
._2b{width:1464.124472pt;}
._35{width:1523.736979pt;}
._1f{width:1534.278265pt;}
._27{width:1543.803071pt;}
._28{width:1568.148071pt;}
._1b{width:1571.464438pt;}
._14{width:1612.226007pt;}
._30{width:1638.572026pt;}
._34{width:1707.055823pt;}
._37{width:1785.399162pt;}
._22{width:1789.347568pt;}
._19{width:1818.438501pt;}
._29{width:1837.693674pt;}
._f{width:1989.083317pt;}
.fs8{font-size:26.566933pt;}
.fs4{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y16c{bottom:137.188000pt;}
.y122{bottom:139.254667pt;}
.y56{bottom:142.501333pt;}
.y121{bottom:142.850667pt;}
.y16d{bottom:143.569333pt;}
.y14c{bottom:144.137333pt;}
.y18{bottom:154.010667pt;}
.y39{bottom:154.156000pt;}
.y16b{bottom:155.314667pt;}
.y17{bottom:155.449333pt;}
.y16a{bottom:157.005333pt;}
.y14b{bottom:157.126667pt;}
.y14a{bottom:160.722667pt;}
.y22b{bottom:166.412000pt;}
.y6f{bottom:169.600000pt;}
.y89{bottom:170.849333pt;}
.y19e{bottom:172.022667pt;}
.ybe{bottom:172.662667pt;}
.y211{bottom:176.493333pt;}
.y210{bottom:177.273333pt;}
.y16{bottom:177.366667pt;}
.y105{bottom:178.205333pt;}
.ybf{bottom:179.044000pt;}
.ye9{bottom:179.981333pt;}
.yca{bottom:180.394667pt;}
.y20f{bottom:180.869333pt;}
.y104{bottom:181.801333pt;}
.ya3{bottom:182.086667pt;}
.ybd{bottom:182.640000pt;}
.y169{bottom:182.892000pt;}
.y1e4{bottom:182.964000pt;}
.y55{bottom:184.486667pt;}
.y1c7{bottom:184.893333pt;}
.y1f8{bottom:185.728000pt;}
.y22a{bottom:190.322667pt;}
.y1b3{bottom:195.008000pt;}
.y149{bottom:195.245333pt;}
.y120{bottom:196.269333pt;}
.y6e{bottom:196.698667pt;}
.y38{bottom:197.484000pt;}
.y88{bottom:197.948000pt;}
.y15{bottom:208.998667pt;}
.y54{bottom:211.756000pt;}
.y229{bottom:214.232000pt;}
.y168{bottom:215.024000pt;}
.y18c{bottom:215.596000pt;}
.y147{bottom:217.140000pt;}
.y167{bottom:218.620000pt;}
.y20e{bottom:219.238667pt;}
.y19d{bottom:221.000000pt;}
.y103{bottom:221.101333pt;}
.ya2{bottom:221.670667pt;}
.ybc{bottom:222.777333pt;}
.y1e3{bottom:223.426667pt;}
.y146{bottom:223.472000pt;}
.y6d{bottom:223.914667pt;}
.y37{bottom:224.582667pt;}
.ye8{bottom:225.977333pt;}
.y87{bottom:226.294667pt;}
.y1c6{bottom:227.285333pt;}
.y148{bottom:229.853333pt;}
.yc7{bottom:230.208000pt;}
.y14{bottom:230.916000pt;}
.yc6{bottom:231.761333pt;}
.y1f7{bottom:232.229333pt;}
.y144{bottom:233.449333pt;}
.y145{bottom:237.558667pt;}
.y228{bottom:238.142667pt;}
.y53{bottom:239.025333pt;}
.y1b2{bottom:242.694667pt;}
.y11f{bottom:246.168000pt;}
.y6c{bottom:251.013333pt;}
.y36{bottom:251.681333pt;}
.y20d{bottom:253.229333pt;}
.y86{bottom:253.393333pt;}
.y166{bottom:254.346667pt;}
.y102{bottom:256.437333pt;}
.y101{bottom:256.804000pt;}
.y20c{bottom:257.606667pt;}
.y18b{bottom:258.960000pt;}
.y100{bottom:260.400000pt;}
.ya1{bottom:261.256000pt;}
.y227{bottom:262.053333pt;}
.y1e2{bottom:262.198667pt;}
.y13{bottom:262.546667pt;}
.y1e1{bottom:263.889333pt;}
.y189{bottom:265.341333pt;}
.y52{bottom:266.294667pt;}
.y143{bottom:267.973333pt;}
.ybb{bottom:268.773333pt;}
.ye7{bottom:268.785333pt;}
.y188{bottom:268.937333pt;}
.y1c5{bottom:269.677333pt;}
.y19c{bottom:269.977333pt;}
.y18a{bottom:276.500000pt;}
.y6b{bottom:278.112000pt;}
.y85{bottom:280.492000pt;}
.y11{bottom:283.025333pt;}
.y10{bottom:284.465333pt;}
.y226{bottom:285.964000pt;}
.y1f6{bottom:289.265333pt;}
.y12{bottom:289.544000pt;}
.y141{bottom:289.868000pt;}
.y51{bottom:293.564000pt;}
.y20b{bottom:295.974667pt;}
.y140{bottom:296.200000pt;}
.yff{bottom:299.700000pt;}
.y165{bottom:300.342667pt;}
.y142{bottom:302.581333pt;}
.y35{bottom:303.472000pt;}
.y1e0{bottom:304.352000pt;}
.y1b1{bottom:304.780000pt;}
.y6a{bottom:305.209333pt;}
.y13e{bottom:306.177333pt;}
.ya0{bottom:307.252000pt;}
.y84{bottom:307.590667pt;}
.y225{bottom:309.873333pt;}
.y187{bottom:310.218667pt;}
.y13f{bottom:310.286667pt;}
.y1c4{bottom:312.070667pt;}
.yf{bottom:316.096000pt;}
.y19b{bottom:317.781333pt;}
.y50{bottom:320.833333pt;}
.y19a{bottom:321.377333pt;}
.ye6{bottom:322.266667pt;}
.y11e{bottom:322.618667pt;}
.yba{bottom:322.673333pt;}
.y34{bottom:327.382667pt;}
.y20a{bottom:330.746667pt;}
.y1df{bottom:331.449333pt;}
.y1f5{bottom:332.174667pt;}
.y69{bottom:332.308000pt;}
.y224{bottom:333.784000pt;}
.y209{bottom:334.342667pt;}
.y83{bottom:334.689333pt;}
.ye{bottom:336.574667pt;}
.yd{bottom:338.013333pt;}
.yfe{bottom:339.000000pt;}
.y13d{bottom:340.701333pt;}
.y1b0{bottom:340.725333pt;}
.y186{bottom:345.476000pt;}
.yb9{bottom:348.081333pt;}
.y11d{bottom:349.717333pt;}
.yb8{bottom:349.772000pt;}
.y164{bottom:353.549333pt;}
.y1c3{bottom:354.462667pt;}
.y9f{bottom:356.897333pt;}
.y223{bottom:357.694667pt;}
.yc{bottom:359.932000pt;}
.y9e{bottom:361.064000pt;}
.y4f{bottom:362.818667pt;}
.y33{bottom:364.332000pt;}
.y1de{bottom:366.566667pt;}
.y32{bottom:367.616000pt;}
.ye5{bottom:368.262667pt;}
.y199{bottom:370.354667pt;}
.y208{bottom:372.712000pt;}
.y1af{bottom:373.073333pt;}
.y1f4{bottom:375.084000pt;}
.y1ae{bottom:376.669333pt;}
.y11c{bottom:376.816000pt;}
.yfd{bottom:378.300000pt;}
.y68{bottom:378.422667pt;}
.yb6{bottom:379.932000pt;}
.y163{bottom:380.648000pt;}
.y82{bottom:381.317333pt;}
.y222{bottom:381.605333pt;}
.yb7{bottom:386.313333pt;}
.y13c{bottom:386.697333pt;}
.y9d{bottom:388.162667pt;}
.y4e{bottom:390.088000pt;}
.y185{bottom:391.472000pt;}
.yb{bottom:391.562667pt;}
.y1dd{bottom:393.665333pt;}
.y1c2{bottom:396.854667pt;}
.yb5{bottom:398.058667pt;}
.yb4{bottom:399.749333pt;}
.y207{bottom:407.484000pt;}
.y162{bottom:407.745333pt;}
.y11b{bottom:407.817333pt;}
.y31{bottom:407.849333pt;}
.y1ad{bottom:410.922667pt;}
.y206{bottom:411.080000pt;}
.y1ac{bottom:412.613333pt;}
.ya{bottom:413.480000pt;}
.yfb{bottom:413.636000pt;}
.yfc{bottom:414.002667pt;}
.y4d{bottom:417.357333pt;}
.ye4{bottom:417.368000pt;}
.yfa{bottom:417.598667pt;}
.y1f3{bottom:417.993333pt;}
.ye3{bottom:418.148000pt;}
.y198{bottom:418.773333pt;}
.y1dc{bottom:420.764000pt;}
.ye2{bottom:421.744000pt;}
.y81{bottom:423.178667pt;}
.y80{bottom:426.774667pt;}
.y9c{bottom:427.748000pt;}
.y30{bottom:431.760000pt;}
.yb3{bottom:432.582667pt;}
.y67{bottom:433.245333pt;}
.y11a{bottom:434.916000pt;}
.y1c1{bottom:439.246667pt;}
.y4c{bottom:444.626667pt;}
.y184{bottom:444.813333pt;}
.y9{bottom:445.357333pt;}
.y1db{bottom:447.878667pt;}
.y205{bottom:449.448000pt;}
.y161{bottom:453.741333pt;}
.y2f{bottom:455.670667pt;}
.y13b{bottom:455.932000pt;}
.yf9{bottom:456.898667pt;}
.y1ab{bottom:458.609333pt;}
.ye1{bottom:459.224000pt;}
.y119{bottom:460.324000pt;}
.y1f2{bottom:460.902667pt;}
.y118{bottom:462.014667pt;}
.y221{bottom:465.290667pt;}
.y9b{bottom:467.332000pt;}
.y182{bottom:471.422667pt;}
.y4b{bottom:471.896000pt;}
.y7f{bottom:472.233333pt;}
.y1da{bottom:474.976000pt;}
.y66{bottom:475.125333pt;}
.y160{bottom:477.652000pt;}
.y183{bottom:477.804000pt;}
.yb2{bottom:478.578667pt;}
.y2e{bottom:479.581333pt;}
.y1c0{bottom:481.638667pt;}
.yf8{bottom:481.816000pt;}
.yc5{bottom:483.218667pt;}
.yf7{bottom:483.997333pt;}
.ydf{bottom:486.725333pt;}
.y197{bottom:486.764000pt;}
.y181{bottom:491.240000pt;}
.y8{bottom:491.945333pt;}
.ye0{bottom:493.108000pt;}
.yc9{bottom:494.745333pt;}
.y204{bottom:495.444000pt;}
.y4a{bottom:499.165333pt;}
.y2d{bottom:503.490667pt;}
.y1f1{bottom:504.636000pt;}
.yde{bottom:504.852000pt;}
.y220{bottom:505.496000pt;}
.y138{bottom:505.649333pt;}
.ydd{bottom:506.542667pt;}
.y9a{bottom:506.917333pt;}
.y139{bottom:507.813333pt;}
.y13a{bottom:509.233333pt;}
.y117{bottom:511.913333pt;}
.y1d9{bottom:513.138667pt;}
.y196{bottom:513.861333pt;}
.y7{bottom:515.854667pt;}
.y1d8{bottom:516.734667pt;}
.y65{bottom:517.005333pt;}
.y180{bottom:517.985333pt;}
.y7e{bottom:518.861333pt;}
.y1bf{bottom:524.030667pt;}
.y49{bottom:526.434667pt;}
.y2c{bottom:527.401333pt;}
.yf6{bottom:527.480000pt;}
.y1aa{bottom:529.013333pt;}
.yb1{bottom:530.788000pt;}
.y15f{bottom:530.858667pt;}
.yb0{bottom:532.478667pt;}
.ydc{bottom:534.182667pt;}
.y116{bottom:535.824000pt;}
.y6{bottom:539.765333pt;}
.y195{bottom:540.960000pt;}
.y21f{bottom:545.700000pt;}
.y99{bottom:546.502667pt;}
.y1f0{bottom:547.862667pt;}
.y203{bottom:549.065333pt;}
.y17f{bottom:550.976000pt;}
.y17e{bottom:554.572000pt;}
.y1d7{bottom:558.493333pt;}
.y64{bottom:558.885333pt;}
.yf5{bottom:558.948000pt;}
.y7d{bottom:560.724000pt;}
.y7c{bottom:564.320000pt;}
.y2b{bottom:564.352000pt;}
.y15e{bottom:566.585333pt;}
.y2a{bottom:567.634667pt;}
.yaf{bottom:568.181333pt;}
.y48{bottom:568.420000pt;}
.ydb{bottom:568.642667pt;}
.yae{bottom:569.021333pt;}
.y136{bottom:570.169333pt;}
.yda{bottom:570.333333pt;}
.y1be{bottom:570.429333pt;}
.y137{bottom:572.333333pt;}
.yad{bottom:572.616000pt;}
.y1ef{bottom:574.961333pt;}
.yf4{bottom:579.573333pt;}
.y21e{bottom:582.308000pt;}
.yf3{bottom:582.857333pt;}
.y1d6{bottom:585.592000pt;}
.y21d{bottom:585.904000pt;}
.y63{bottom:586.102667pt;}
.y1a8{bottom:586.977333pt;}
.y202{bottom:587.433333pt;}
.y115{bottom:588.720000pt;}
.y194{bottom:589.378667pt;}
.y17d{bottom:591.157333pt;}
.y98{bottom:592.498667pt;}
.y1a9{bottom:598.577333pt;}
.y15d{bottom:602.312000pt;}
.yd9{bottom:604.217333pt;}
.yf2{bottom:605.214667pt;}
.yf1{bottom:606.768000pt;}
.yd8{bottom:607.813333pt;}
.y29{bottom:607.869333pt;}
.y7b{bottom:609.777333pt;}
.y47{bottom:610.405333pt;}
.y1d5{bottom:612.690667pt;}
.yac{bottom:612.754667pt;}
.y135{bottom:613.138667pt;}
.y1bd{bottom:617.061333pt;}
.y114{bottom:618.633333pt;}
.y113{bottom:620.186667pt;}
.y1ee{bottom:621.462667pt;}
.y15b{bottom:625.409333pt;}
.y201{bottom:625.801333pt;}
.y21c{bottom:626.108000pt;}
.y62{bottom:627.982667pt;}
.yf0{bottom:631.209333pt;}
.y28{bottom:631.780000pt;}
.y1a7{bottom:631.969333pt;}
.y17c{bottom:637.153333pt;}
.y15a{bottom:637.558667pt;}
.y46{bottom:637.674667pt;}
.y15c{bottom:638.398667pt;}
.y193{bottom:639.313333pt;}
.y1d4{bottom:639.805333pt;}
.y1bc{bottom:640.970667pt;}
.y159{bottom:641.993333pt;}
.y112{bottom:642.544000pt;}
.y111{bottom:644.097333pt;}
.yd7{bottom:645.292000pt;}
.y97{bottom:646.310667pt;}
.y61{bottom:655.198667pt;}
.y7a{bottom:656.405333pt;}
.yab{bottom:658.750667pt;}
.y134{bottom:659.134667pt;}
.y192{bottom:663.224000pt;}
.y200{bottom:664.170667pt;}
.y45{bottom:664.944000pt;}
.y110{bottom:666.454667pt;}
.y5{bottom:666.501333pt;}
.y1d3{bottom:666.904000pt;}
.y1a6{bottom:667.913333pt;}
.y10f{bottom:668.008000pt;}
.yef{bottom:670.708000pt;}
.y27{bottom:672.013333pt;}
.y21b{bottom:672.104000pt;}
.yd6{bottom:672.390667pt;}
.y96{bottom:673.409333pt;}
.y158{bottom:677.721333pt;}
.y1ed{bottom:678.497333pt;}
.y60{bottom:682.416000pt;}
.y1b8{bottom:682.592000pt;}
.y17b{bottom:686.900000pt;}
.yc4{bottom:687.313333pt;}
.y17a{bottom:690.494667pt;}
.y10e{bottom:692.449333pt;}
.y1d2{bottom:694.001333pt;}
.yc8{bottom:698.840000pt;}
.y79{bottom:701.864000pt;}
.y1ff{bottom:702.538667pt;}
.y1a5{bottom:703.857333pt;}
.y1ec{bottom:705.596000pt;}
.y44{bottom:706.929333pt;}
.y95{bottom:708.558667pt;}
.y156{bottom:709.012000pt;}
.yaa{bottom:709.054667pt;}
.y94{bottom:709.397333pt;}
.y5f{bottom:709.632000pt;}
.y157{bottom:709.852000pt;}
.yd5{bottom:709.870667pt;}
.y132{bottom:712.152000pt;}
.y26{bottom:712.246667pt;}
.ya9{bottom:712.650667pt;}
.y93{bottom:712.993333pt;}
.y155{bottom:713.448000pt;}
.y133{bottom:716.261333pt;}
.y191{bottom:716.796000pt;}
.y190{bottom:718.349333pt;}
.y1d1{bottom:721.100000pt;}
.yed{bottom:722.725333pt;}
.y21a{bottom:726.014667pt;}
.y179{bottom:727.081333pt;}
.y1eb{bottom:732.694667pt;}
.y43{bottom:734.198667pt;}
.y25{bottom:736.157333pt;}
.y5e{bottom:736.849333pt;}
.y10d{bottom:741.360000pt;}
.y131{bottom:746.676000pt;}
.y78{bottom:747.322667pt;}
.yd4{bottom:747.349333pt;}
.y1fe{bottom:748.534667pt;}
.y154{bottom:749.174667pt;}
.y1a4{bottom:749.853333pt;}
.y92{bottom:752.578667pt;}
.ya8{bottom:752.788000pt;}
.y178{bottom:753.690667pt;}
.yc3{bottom:754.012000pt;}
.y1d0{bottom:759.262667pt;}
.y24{bottom:760.068000pt;}
.y42{bottom:761.468000pt;}
.y1cf{bottom:762.858667pt;}
.y10c{bottom:763.717333pt;}
.y10b{bottom:765.270667pt;}
.y218{bottom:766.218667pt;}
.y219{bottom:770.328000pt;}
.y177{bottom:771.229333pt;}
.yd3{bottom:774.448000pt;}
.y176{bottom:774.858667pt;}
.y5d{bottom:778.729333pt;}
.y1ea{bottom:779.196000pt;}
.y91{bottom:779.677333pt;}
.y1bb{bottom:780.398667pt;}
.y12e{bottom:781.200000pt;}
.y23{bottom:783.977333pt;}
.y12f{bottom:785.308000pt;}
.y130{bottom:785.309333pt;}
.y41{bottom:788.737333pt;}
.y1a3{bottom:791.100000pt;}
.ya7{bottom:792.926667pt;}
.y77{bottom:793.950667pt;}
.y153{bottom:795.170667pt;}
.y4{bottom:799.606667pt;}
.y1fd{bottom:802.156000pt;}
.y175{bottom:804.140000pt;}
.y1ce{bottom:804.617333pt;}
.yc2{bottom:804.693333pt;}
.y217{bottom:806.422667pt;}
.y22{bottom:807.888000pt;}
.y1ba{bottom:810.634667pt;}
.y10a{bottom:815.084000pt;}
.y12d{bottom:815.722667pt;}
.y40{bottom:816.006667pt;}
.y109{bottom:816.637333pt;}
.y90{bottom:819.261333pt;}
.yd2{bottom:820.444000pt;}
.y5c{bottom:820.609333pt;}
.y233{bottom:821.953333pt;}
.y76{bottom:822.298667pt;}
.y1e9{bottom:822.509333pt;}
.y3{bottom:827.502667pt;}
.y1fc{bottom:829.254667pt;}
.y1cd{bottom:831.716000pt;}
.y21{bottom:831.798667pt;}
.ya6{bottom:833.064000pt;}
.y173{bottom:837.097333pt;}
.y174{bottom:837.130667pt;}
.y172{bottom:840.726667pt;}
.y3f{bottom:843.276000pt;}
.y1b9{bottom:843.318667pt;}
.y19f{bottom:844.597333pt;}
.y232{bottom:845.864000pt;}
.y215{bottom:846.626667pt;}
.y75{bottom:849.396000pt;}
.y216{bottom:850.736000pt;}
.y1a2{bottom:855.474667pt;}
.y20{bottom:855.709333pt;}
.y1cc{bottom:858.830667pt;}
.y8f{bottom:858.846667pt;}
.y12c{bottom:861.718667pt;}
.yee{bottom:862.000000pt;}
.y5b{bottom:862.489333pt;}
.yd1{bottom:863.252000pt;}
.y152{bottom:868.225333pt;}
.y231{bottom:869.774667pt;}
.y3e{bottom:870.545333pt;}
.y1fb{bottom:875.250667pt;}
.y74{bottom:876.494667pt;}
.y171{bottom:877.313333pt;}
.ya5{bottom:879.060000pt;}
.y1e8{bottom:879.545333pt;}
.y1f{bottom:879.618667pt;}
.y1b7{bottom:881.612000pt;}
.y1a1{bottom:885.286667pt;}
.yc1{bottom:885.616000pt;}
.y1cb{bottom:885.929333pt;}
.y8e{bottom:885.945333pt;}
.y2{bottom:886.045333pt;}
.y214{bottom:886.832000pt;}
.y230{bottom:893.684000pt;}
.y151{bottom:894.945333pt;}
.y3d{bottom:897.814667pt;}
.y73{bottom:903.593333pt;}
.y5a{bottom:904.369333pt;}
.yd0{bottom:905.521333pt;}
.y14f{bottom:907.160000pt;}
.y150{bottom:907.637333pt;}
.y14e{bottom:910.921333pt;}
.y1ca{bottom:913.026667pt;}
.y8d{bottom:913.044000pt;}
.y12b{bottom:913.045333pt;}
.y12a{bottom:913.046667pt;}
.y1b6{bottom:913.078667pt;}
.y1e{bottom:914.024000pt;}
.y129{bottom:914.736000pt;}
.y1e7{bottom:916.129333pt;}
.y22f{bottom:917.594667pt;}
.y1fa{bottom:918.894667pt;}
.y170{bottom:923.309333pt;}
.y213{bottom:923.440000pt;}
.y1{bottom:924.568000pt;}
.y3c{bottom:925.084000pt;}
.y212{bottom:927.036000pt;}
.y72{bottom:930.692000pt;}
.y59{bottom:931.586667pt;}
.y1b5{bottom:933.705333pt;}
.y14d{bottom:935.364000pt;}
.ycf{bottom:935.436000pt;}
.yce{bottom:936.989333pt;}
.y1f9{bottom:938.712000pt;}
.y1d{bottom:939.453333pt;}
.y1c9{bottom:940.125333pt;}
.y8c{bottom:940.141333pt;}
.y22e{bottom:941.505333pt;}
.y1e6{bottom:943.228000pt;}
.y1c{bottom:944.274667pt;}
.y128{bottom:945.664000pt;}
.y127{bottom:949.260000pt;}
.yc0{bottom:949.426667pt;}
.y1b4{bottom:957.614667pt;}
.y58{bottom:958.802667pt;}
.y71{bottom:959.040000pt;}
.ycd{bottom:960.898667pt;}
.y8b{bottom:963.545333pt;}
.y22d{bottom:965.416000pt;}
.y3b{bottom:967.069333pt;}
.y1c8{bottom:967.224000pt;}
.y8a{bottom:967.240000pt;}
.y1a{bottom:969.533333pt;}
.y1e5{bottom:970.326667pt;}
.y16f{bottom:973.054667pt;}
.ya4{bottom:973.098667pt;}
.y1b{bottom:974.812000pt;}
.y1a0{bottom:976.416000pt;}
.y16e{bottom:976.650667pt;}
.y126{bottom:983.784000pt;}
.ycc{bottom:984.809333pt;}
.y57{bottom:986.020000pt;}
.y70{bottom:986.137333pt;}
.y22c{bottom:989.325333pt;}
.yeb{bottom:995.522667pt;}
.y18f{bottom:995.630667pt;}
.y18e{bottom:996.112000pt;}
.yea{bottom:997.338667pt;}
.y18d{bottom:997.665333pt;}
.y108{bottom:999.377333pt;}
.y107{bottom:1000.281333pt;}
.y106{bottom:1001.834667pt;}
.y124{bottom:1008.701333pt;}
.y125{bottom:1009.192000pt;}
.ycb{bottom:1009.250667pt;}
.y123{bottom:1010.882667pt;}
.yec{bottom:1011.516000pt;}
.y19{bottom:1013.236000pt;}
.y3a{bottom:1059.728000pt;}
.hb{height:14.059315pt;}
.h18{height:15.550933pt;}
.hd{height:23.910400pt;}
.h38{height:25.812358pt;}
.h13{height:27.895200pt;}
.hf{height:28.357734pt;}
.h12{height:31.880400pt;}
.h8{height:33.713664pt;}
.he{height:34.117734pt;}
.h9{height:35.139115pt;}
.h7{height:35.865600pt;}
.h6{height:39.850400pt;}
.h2b{height:42.287733pt;}
.h11{height:43.636400pt;}
.h5{height:44.632747pt;}
.h2d{height:45.092358pt;}
.h2e{height:45.097692pt;}
.h30{height:46.063733pt;}
.h43{height:46.497067pt;}
.h47{height:46.586533pt;}
.h39{height:47.175200pt;}
.h4c{height:47.180533pt;}
.h3{height:47.820800pt;}
.hc{height:48.347733pt;}
.ha{height:48.353067pt;}
.h3a{height:49.279025pt;}
.h14{height:49.836533pt;}
.h10{height:49.979733pt;}
.h27{height:50.399067pt;}
.h59{height:51.361867pt;}
.h16{height:52.981067pt;}
.h4f{height:52.986400pt;}
.h1e{height:52.995067pt;}
.h57{height:53.034400pt;}
.h58{height:53.393867pt;}
.h2{height:53.559147pt;}
.h42{height:54.107733pt;}
.h41{height:54.113067pt;}
.h37{height:54.444533pt;}
.h46{height:55.242533pt;}
.h2c{height:55.495200pt;}
.h19{height:55.901733pt;}
.h1b{height:55.907067pt;}
.h33{height:58.015067pt;}
.h1d{height:58.020400pt;}
.h3d{height:58.092533pt;}
.h4{height:59.756892pt;}
.h31{height:59.757733pt;}
.h21{height:60.303067pt;}
.h5a{height:60.311200pt;}
.h3b{height:60.316533pt;}
.h5b{height:61.145733pt;}
.h20{height:61.375067pt;}
.h24{height:61.380400pt;}
.h2f{height:61.708533pt;}
.h45{height:61.869355pt;}
.h25{height:62.547067pt;}
.h3f{height:62.552400pt;}
.h15{height:62.967200pt;}
.h17{height:62.972533pt;}
.h4d{height:64.881867pt;}
.h4e{height:65.741355pt;}
.h49{height:66.559067pt;}
.h56{height:66.753867pt;}
.h4b{height:68.248021pt;}
.h26{height:69.309733pt;}
.h1a{height:70.285733pt;}
.h1c{height:70.291067pt;}
.h40{height:70.539733pt;}
.h48{height:70.545067pt;}
.h3e{height:71.272400pt;}
.h52{height:71.608021pt;}
.h3c{height:71.757733pt;}
.h22{height:72.613069pt;}
.h1f{height:72.618402pt;}
.h36{height:73.411067pt;}
.h23{height:73.645733pt;}
.h51{height:76.749355pt;}
.h53{height:76.882688pt;}
.h34{height:76.931067pt;}
.h44{height:78.306688pt;}
.h35{height:80.051067pt;}
.h50{height:80.109355pt;}
.h54{height:83.545733pt;}
.h29{height:92.355067pt;}
.h4a{height:93.773355pt;}
.h28{height:95.811067pt;}
.h32{height:95.816400pt;}
.h55{height:121.699067pt;}
.h2a{height:132.264400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xca{left:93.710667pt;}
.x5f{left:94.796000pt;}
.x2d{left:96.000000pt;}
.xa{left:97.069333pt;}
.x2e{left:98.434667pt;}
.x36{left:101.656000pt;}
.xe4{left:102.641333pt;}
.xb8{left:103.648000pt;}
.x35{left:106.909333pt;}
.xa7{left:108.462667pt;}
.x40{left:110.102667pt;}
.x32{left:112.565333pt;}
.xb{left:114.597333pt;}
.x39{left:115.925333pt;}
.x31{left:118.221333pt;}
.xe6{left:122.542667pt;}
.xe5{left:124.633333pt;}
.xd4{left:130.398667pt;}
.x33{left:133.997333pt;}
.x34{left:135.006667pt;}
.x37{left:137.633333pt;}
.x27{left:139.609333pt;}
.x20{left:141.380000pt;}
.x1{left:142.944000pt;}
.xd5{left:146.152000pt;}
.x94{left:149.628000pt;}
.x44{left:150.517333pt;}
.x78{left:153.202667pt;}
.x26{left:154.448000pt;}
.xcb{left:156.789333pt;}
.xa3{left:159.650667pt;}
.x4c{left:163.002667pt;}
.xe3{left:165.497333pt;}
.xb4{left:166.617333pt;}
.x70{left:168.469333pt;}
.x79{left:172.844000pt;}
.xd6{left:174.266667pt;}
.x2{left:177.861333pt;}
.x8f{left:185.622667pt;}
.xbf{left:189.004000pt;}
.x23{left:190.597333pt;}
.x8a{left:191.697333pt;}
.x90{left:192.896000pt;}
.x50{left:195.110667pt;}
.x24{left:196.556000pt;}
.x91{left:201.886667pt;}
.x86{left:204.168000pt;}
.x55{left:208.601333pt;}
.x87{left:210.489333pt;}
.x7a{left:212.388000pt;}
.x54{left:215.989333pt;}
.x6b{left:218.186667pt;}
.x56{left:220.644000pt;}
.x89{left:221.696000pt;}
.xb3{left:222.945333pt;}
.x77{left:224.925333pt;}
.x88{left:226.124000pt;}
.x6e{left:227.885333pt;}
.x12{left:229.264000pt;}
.x4a{left:230.390667pt;}
.x59{left:233.460000pt;}
.x99{left:235.009333pt;}
.x3c{left:236.458667pt;}
.x13{left:239.205333pt;}
.x69{left:240.993333pt;}
.x67{left:242.233333pt;}
.xc8{left:243.193333pt;}
.x3{left:244.284000pt;}
.x6f{left:245.585333pt;}
.xe1{left:246.689333pt;}
.x7b{left:248.913333pt;}
.x65{left:251.390667pt;}
.x66{left:253.073333pt;}
.xa2{left:254.838667pt;}
.xae{left:255.841333pt;}
.x75{left:257.284000pt;}
.x76{left:259.756000pt;}
.x9e{left:261.596000pt;}
.x80{left:263.560000pt;}
.xc1{left:264.473333pt;}
.x14{left:265.838667pt;}
.x72{left:268.734667pt;}
.x15{left:270.712000pt;}
.x5e{left:272.653333pt;}
.xb9{left:274.024000pt;}
.x4b{left:275.869333pt;}
.x62{left:277.352000pt;}
.x8e{left:279.032000pt;}
.x16{left:281.129333pt;}
.x92{left:283.638667pt;}
.x52{left:287.604000pt;}
.x9a{left:290.074667pt;}
.x96{left:291.540000pt;}
.x7{left:293.149333pt;}
.x7c{left:294.129333pt;}
.x17{left:295.761333pt;}
.x53{left:299.102667pt;}
.x93{left:301.392000pt;}
.x28{left:302.582667pt;}
.x95{left:304.676000pt;}
.x18{left:305.924000pt;}
.xdf{left:307.728000pt;}
.x82{left:309.984000pt;}
.x51{left:311.248000pt;}
.x29{left:313.629333pt;}
.x4{left:316.673333pt;}
.xa4{left:318.076000pt;}
.xe0{left:320.976000pt;}
.x68{left:322.968000pt;}
.x25{left:324.346667pt;}
.x41{left:326.150667pt;}
.xd3{left:329.413333pt;}
.x38{left:331.561333pt;}
.xd7{left:332.876000pt;}
.x5b{left:336.301333pt;}
.x6a{left:337.936000pt;}
.x6{left:339.008000pt;}
.x21{left:340.090667pt;}
.xb7{left:341.873333pt;}
.x7d{left:343.648000pt;}
.xb0{left:344.785333pt;}
.x4f{left:346.098667pt;}
.x48{left:348.118667pt;}
.x8{left:349.013333pt;}
.x5{left:350.718667pt;}
.x2c{left:352.030667pt;}
.xd2{left:353.156000pt;}
.x5c{left:354.434667pt;}
.xa9{left:356.096000pt;}
.x3e{left:357.452000pt;}
.x6d{left:358.784000pt;}
.x9{left:360.858667pt;}
.xb1{left:362.406667pt;}
.x30{left:363.736000pt;}
.x6c{left:366.174667pt;}
.xaf{left:367.116000pt;}
.x3d{left:368.044000pt;}
.x3f{left:369.494667pt;}
.x2a{left:371.168000pt;}
.xa6{left:372.408000pt;}
.x83{left:374.902667pt;}
.xad{left:375.822667pt;}
.x1f{left:377.989333pt;}
.xd8{left:379.584000pt;}
.x19{left:381.937333pt;}
.xac{left:383.709333pt;}
.xb6{left:385.664000pt;}
.x42{left:388.226667pt;}
.x1a{left:394.813333pt;}
.x10{left:396.362667pt;}
.x60{left:398.028000pt;}
.x1b{left:399.686667pt;}
.x9f{left:401.314667pt;}
.x8b{left:403.840000pt;}
.x11{left:406.304000pt;}
.x1c{left:409.818667pt;}
.x8c{left:415.936000pt;}
.x4d{left:418.437333pt;}
.x98{left:420.777333pt;}
.xa8{left:423.812000pt;}
.x5d{left:425.060000pt;}
.x57{left:426.277333pt;}
.x1d{left:428.240000pt;}
.x9c{left:429.722667pt;}
.x7e{left:430.997333pt;}
.xc{left:433.174667pt;}
.xa5{left:436.444000pt;}
.xab{left:441.166667pt;}
.x1e{left:443.626667pt;}
.xaa{left:448.398667pt;}
.xc3{left:449.676000pt;}
.x8d{left:450.825333pt;}
.xc2{left:452.521333pt;}
.x22{left:454.897333pt;}
.x49{left:456.442667pt;}
.xa1{left:459.698667pt;}
.xd{left:462.252000pt;}
.x9d{left:464.250667pt;}
.x85{left:466.040000pt;}
.x4e{left:467.714667pt;}
.xa0{left:475.685333pt;}
.xe{left:476.624000pt;}
.x63{left:481.224000pt;}
.x2b{left:487.470667pt;}
.x97{left:489.105333pt;}
.x64{left:492.221333pt;}
.x9b{left:493.273333pt;}
.x7f{left:494.357333pt;}
.x84{left:498.585333pt;}
.xd9{left:500.666667pt;}
.x73{left:506.504000pt;}
.xcc{left:508.342667pt;}
.x43{left:514.282667pt;}
.x74{left:515.926667pt;}
.xb5{left:517.372000pt;}
.xcd{left:520.766667pt;}
.xc9{left:525.428000pt;}
.xba{left:527.229333pt;}
.xda{left:531.810667pt;}
.xe2{left:535.730667pt;}
.xf{left:539.084000pt;}
.x81{left:540.324000pt;}
.xc0{left:541.222667pt;}
.x58{left:561.278667pt;}
.xbb{left:564.946667pt;}
.x61{left:575.114667pt;}
.xce{left:577.333333pt;}
.x3a{left:581.544000pt;}
.x3b{left:588.817333pt;}
.x5a{left:606.064000pt;}
.xbc{left:608.461333pt;}
.x45{left:610.321333pt;}
.xc4{left:613.142667pt;}
.xcf{left:616.869333pt;}
.xbd{left:620.552000pt;}
.xd0{left:622.413333pt;}
.xc5{left:623.542667pt;}
.xd1{left:634.837333pt;}
.xc6{left:638.254667pt;}
.x46{left:644.282667pt;}
.xb2{left:647.804000pt;}
.xc7{left:650.588000pt;}
.xbe{left:652.373333pt;}
.x47{left:673.774667pt;}
.xdb{left:680.988000pt;}
.xdc{left:686.605333pt;}
.xdd{left:697.514667pt;}
.x71{left:703.122667pt;}
.xde{left:706.356000pt;}
.x2f{left:710.396000pt;}
}




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