
    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_00f96fe9f5358236fd2c483d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_de14402a5dd41558ab342b8b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.841000;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_ce0f0a3ed136df101e506970.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_469db72c589da912f7cb9ab6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7e03487c41b13de8321f3332.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ac047405e49cec6aa90ee1c3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.014000;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_b8cf8fdc7362e3c43070710e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006348;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_f4521e27c2298c968f1e0c3e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006348;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_265a542c2f3e0086243b6698.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b69de7ea8b53da560362a3c0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2b1c79d66ef7e5bad8c6fbe6.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_553ff4799ac81bbb06bebe6d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.758000;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_4e8b89e93310d20d727dedec.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_361e59dcc396ad4e33d006ef.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_7abeee35b8b62b40c1ea9ec8.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.799000;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_eb22e8d1eb2bc72001a787a8.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.966000;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_fd861fd2e2917baa24f0adf8.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.587000;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_7c1ecc4cdd0ea1da9ff76fad.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.061000;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;}
.md{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);}
.m6{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m27{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m18{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);}
.m28{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.m11{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m4{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m21{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);}
.m1f{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);}
.m1d{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);}
.m14{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);}
.m1a{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m1e{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m23{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);}
.ma{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m5{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m10{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m2b{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v17{vertical-align:-66.384000px;}
.v1d{vertical-align:-33.654000px;}
.v26{vertical-align:-31.971300px;}
.v27{vertical-align:-26.864100px;}
.v3{vertical-align:-19.524000px;}
.v1e{vertical-align:-17.358000px;}
.va{vertical-align:-14.640000px;}
.v8{vertical-align:-11.599260px;}
.v4{vertical-align:-10.115160px;}
.v9{vertical-align:-8.964000px;}
.v5{vertical-align:-7.827900px;}
.v1c{vertical-align:-3.468000px;}
.vf{vertical-align:-1.884000px;}
.v0{vertical-align:0.000000px;}
.v22{vertical-align:1.266000px;}
.v1b{vertical-align:2.334000px;}
.v14{vertical-align:5.796000px;}
.v7{vertical-align:7.827900px;}
.vd{vertical-align:8.964000px;}
.v6{vertical-align:10.929960px;}
.v13{vertical-align:14.760000px;}
.v15{vertical-align:17.646000px;}
.v2{vertical-align:19.926000px;}
.v1{vertical-align:21.696000px;}
.v12{vertical-align:24.690000px;}
.v25{vertical-align:31.230300px;}
.vc{vertical-align:33.654000px;}
.v24{vertical-align:36.052500px;}
.v19{vertical-align:39.456000px;}
.v23{vertical-align:41.004000px;}
.v10{vertical-align:47.952000px;}
.v21{vertical-align:55.146000px;}
.v20{vertical-align:64.116000px;}
.vb{vertical-align:66.384000px;}
.v11{vertical-align:69.654000px;}
.ve{vertical-align:75.348000px;}
.v1a{vertical-align:81.150000px;}
.v18{vertical-align:83.268000px;}
.v16{vertical-align:124.962000px;}
.v1f{vertical-align:130.494000px;}
.ls16{letter-spacing:-0.124448px;}
.ls24{letter-spacing:-0.113627px;}
.ls1f{letter-spacing:-0.097394px;}
.ls1b{letter-spacing:-0.091984px;}
.ls1e{letter-spacing:-0.081162px;}
.ls14{letter-spacing:-0.077566px;}
.ls19{letter-spacing:-0.059519px;}
.ls22{letter-spacing:-0.043286px;}
.ls23{letter-spacing:-0.037876px;}
.ls18{letter-spacing:-0.032465px;}
.ls1c{letter-spacing:-0.027054px;}
.ls15{letter-spacing:-0.021643px;}
.ls1a{letter-spacing:-0.016232px;}
.ls1d{letter-spacing:-0.009720px;}
.ls17{letter-spacing:-0.005411px;}
.ls0{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.000410px;}
.ls46{letter-spacing:0.001099px;}
.lsef{letter-spacing:0.001324px;}
.lsed{letter-spacing:0.001996px;}
.lsf8{letter-spacing:0.002778px;}
.ls128{letter-spacing:0.004800px;}
.lsec{letter-spacing:0.004929px;}
.ls11{letter-spacing:0.005411px;}
.ls13{letter-spacing:0.010822px;}
.lsd{letter-spacing:0.016232px;}
.ls8{letter-spacing:0.021546px;}
.lsf{letter-spacing:0.029160px;}
.lse{letter-spacing:0.032465px;}
.ls12{letter-spacing:0.037876px;}
.ls10{letter-spacing:0.043286px;}
.lsb{letter-spacing:0.048697px;}
.lsc{letter-spacing:0.054108px;}
.ls20{letter-spacing:0.064930px;}
.lsa{letter-spacing:0.163750px;}
.ls9{letter-spacing:0.172368px;}
.lsa9{letter-spacing:0.407108px;}
.lsa7{letter-spacing:0.413108px;}
.ls40{letter-spacing:0.503721px;}
.ls4c{letter-spacing:0.506922px;}
.ls50{letter-spacing:0.507456px;}
.ls3f{letter-spacing:0.509107px;}
.ls44{letter-spacing:0.509541px;}
.ls49{letter-spacing:0.509641px;}
.lsfc{letter-spacing:0.534022px;}
.ls85{letter-spacing:0.548815px;}
.lsc9{letter-spacing:0.562457px;}
.ls61{letter-spacing:0.564600px;}
.lsbe{letter-spacing:0.565142px;}
.ls5c{letter-spacing:0.565200px;}
.lsb5{letter-spacing:0.567831px;}
.ls84{letter-spacing:0.567886px;}
.lsfb{letter-spacing:0.567943px;}
.ls79{letter-spacing:0.568457px;}
.ls5d{letter-spacing:0.570600px;}
.lsb6{letter-spacing:0.571142px;}
.ls60{letter-spacing:0.571200px;}
.lsac{letter-spacing:0.622335px;}
.ls36{letter-spacing:0.637323px;}
.ls3c{letter-spacing:0.649102px;}
.ls122{letter-spacing:0.669725px;}
.ls100{letter-spacing:0.670741px;}
.lsca{letter-spacing:0.691565px;}
.ls43{letter-spacing:0.708485px;}
.ls8a{letter-spacing:0.716912px;}
.ls9a{letter-spacing:0.743108px;}
.ls7c{letter-spacing:0.746725px;}
.ls8d{letter-spacing:0.747292px;}
.ls2f{letter-spacing:0.747353px;}
.ls2d{letter-spacing:0.748042px;}
.ls81{letter-spacing:0.748200px;}
.ls9f{letter-spacing:0.749108px;}
.ls78{letter-spacing:0.794458px;}
.ls71{letter-spacing:0.815675px;}
.lsd6{letter-spacing:0.817200px;}
.ls6e{letter-spacing:0.821108px;}
.lscb{letter-spacing:0.996172px;}
.ls113{letter-spacing:1.002172px;}
.ls11a{letter-spacing:1.021565px;}
.ls104{letter-spacing:1.070700px;}
.lse4{letter-spacing:1.076700px;}
.lsf3{letter-spacing:1.078407px;}
.lsf5{letter-spacing:1.084407px;}
.lsf0{letter-spacing:1.111615px;}
.lsf4{letter-spacing:1.112815px;}
.lsf1{letter-spacing:1.117615px;}
.ls62{letter-spacing:1.131943px;}
.lsf2{letter-spacing:1.134571px;}
.lsd3{letter-spacing:1.135142px;}
.ls64{letter-spacing:1.135200px;}
.lsb9{letter-spacing:1.137943px;}
.ls32{letter-spacing:1.159689px;}
.ls59{letter-spacing:1.162147px;}
.ls10a{letter-spacing:1.166383px;}
.ls38{letter-spacing:1.305785px;}
.ls118{letter-spacing:1.310912px;}
.ls9d{letter-spacing:1.312766px;}
.ls89{letter-spacing:1.313108px;}
.lsbc{letter-spacing:1.314017px;}
.ls114{letter-spacing:1.316912px;}
.lsa2{letter-spacing:1.318766px;}
.lscf{letter-spacing:1.420741px;}
.ls8c{letter-spacing:1.435565px;}
.ls7b{letter-spacing:1.441565px;}
.lsd7{letter-spacing:1.458571px;}
.lsa5{letter-spacing:1.461483px;}
.lsda{letter-spacing:1.464783px;}
.ls9c{letter-spacing:1.467483px;}
.lsd8{letter-spacing:1.470783px;}
.ls108{letter-spacing:1.490383px;}
.ls106{letter-spacing:1.490700px;}
.lse1{letter-spacing:1.490912px;}
.lsd9{letter-spacing:1.492766px;}
.lsdb{letter-spacing:1.496383px;}
.lse6{letter-spacing:1.496700px;}
.lsd0{letter-spacing:1.496912px;}
.lsdd{letter-spacing:1.498766px;}
.ls65{letter-spacing:1.560022px;}
.ls5f{letter-spacing:1.566150px;}
.ls5e{letter-spacing:1.569831px;}
.ls29{letter-spacing:1.683079px;}
.lsba{letter-spacing:1.692022px;}
.ls63{letter-spacing:1.698022px;}
.ls47{letter-spacing:1.724953px;}
.lse5{letter-spacing:1.910383px;}
.ls105{letter-spacing:1.916383px;}
.lsc2{letter-spacing:1.927771px;}
.lsc8{letter-spacing:1.933771px;}
.ls4e{letter-spacing:2.047476px;}
.ls2b{letter-spacing:2.055969px;}
.ls42{letter-spacing:2.206599px;}
.ls5b{letter-spacing:2.314200px;}
.ls69{letter-spacing:2.316017px;}
.lsbb{letter-spacing:2.404514px;}
.ls97{letter-spacing:2.460583px;}
.ls77{letter-spacing:2.466583px;}
.lsd5{letter-spacing:2.539771px;}
.ls112{letter-spacing:2.604583px;}
.ls90{letter-spacing:2.678012px;}
.lsd4{letter-spacing:2.708815px;}
.ls80{letter-spacing:2.749565px;}
.lsc4{letter-spacing:2.755565px;}
.ls10e{letter-spacing:2.904172px;}
.lsff{letter-spacing:3.348583px;}
.ls3e{letter-spacing:3.404748px;}
.ls3d{letter-spacing:3.408383px;}
.ls56{letter-spacing:3.410568px;}
.ls111{letter-spacing:3.508741px;}
.lsfe{letter-spacing:3.514741px;}
.lsa0{letter-spacing:3.553258px;}
.ls6c{letter-spacing:3.555943px;}
.ls9b{letter-spacing:3.556514px;}
.ls107{letter-spacing:3.584700px;}
.ls37{letter-spacing:4.054581px;}
.ls91{letter-spacing:4.299943px;}
.ls10f{letter-spacing:4.302571px;}
.lsc0{letter-spacing:4.303142px;}
.ls72{letter-spacing:4.303200px;}
.ls68{letter-spacing:4.472012px;}
.lsce{letter-spacing:4.620571px;}
.ls110{letter-spacing:4.626571px;}
.lsae{letter-spacing:10.328661px;}
.lsb1{letter-spacing:10.334241px;}
.lsb2{letter-spacing:10.352543px;}
.lsa1{letter-spacing:10.706100px;}
.ls82{letter-spacing:10.712100px;}
.lsb0{letter-spacing:10.978815px;}
.lsb3{letter-spacing:10.984395px;}
.ls21{letter-spacing:11.433020px;}
.lsaf{letter-spacing:11.952441px;}
.ls5{letter-spacing:11.954850px;}
.lsab{letter-spacing:11.958021px;}
.ls6{letter-spacing:11.960850px;}
.lsdf{letter-spacing:12.339483px;}
.ls10b{letter-spacing:12.800100px;}
.ls70{letter-spacing:12.849483px;}
.lse7{letter-spacing:13.042741px;}
.ls3b{letter-spacing:13.043030px;}
.ls4b{letter-spacing:13.043719px;}
.ls35{letter-spacing:13.047276px;}
.ls52{letter-spacing:13.048850px;}
.ls53{letter-spacing:13.049539px;}
.ls96{letter-spacing:13.083483px;}
.lsde{letter-spacing:13.086783px;}
.ls67{letter-spacing:13.089483px;}
.lsb7{letter-spacing:13.106012px;}
.lsdc{letter-spacing:13.114766px;}
.ls117{letter-spacing:13.118912px;}
.lse2{letter-spacing:13.120766px;}
.lsad{letter-spacing:13.135878px;}
.ls126{letter-spacing:13.448400px;}
.ls125{letter-spacing:13.454400px;}
.ls57{letter-spacing:13.552161px;}
.lsa6{letter-spacing:13.983483px;}
.lsa4{letter-spacing:13.989483px;}
.ls6b{letter-spacing:14.283483px;}
.ls127{letter-spacing:14.568047px;}
.lsee{letter-spacing:14.674220px;}
.lseb{letter-spacing:14.809826px;}
.ls123{letter-spacing:14.884124px;}
.lsb4{letter-spacing:14.941200px;}
.lscd{letter-spacing:14.942383px;}
.ls83{letter-spacing:14.943292px;}
.ls7{letter-spacing:15.063451px;}
.lsf9{letter-spacing:15.104732px;}
.lse9{letter-spacing:15.105192px;}
.lsfa{letter-spacing:15.203850px;}
.ls6d{letter-spacing:15.355200px;}
.lsa3{letter-spacing:15.921886px;}
.ls66{letter-spacing:15.921943px;}
.lsbf{letter-spacing:15.925142px;}
.ls6a{letter-spacing:15.925200px;}
.ls9e{letter-spacing:15.927886px;}
.ls6f{letter-spacing:15.927943px;}
.lsbd{letter-spacing:15.931142px;}
.lse3{letter-spacing:16.061524px;}
.ls103{letter-spacing:16.067524px;}
.ls11d{letter-spacing:16.360741px;}
.ls119{letter-spacing:16.366741px;}
.lsea{letter-spacing:16.679994px;}
.ls115{letter-spacing:17.206741px;}
.lsf6{letter-spacing:17.252971px;}
.lsf7{letter-spacing:17.259259px;}
.ls2a{letter-spacing:17.307125px;}
.ls7f{letter-spacing:17.319483px;}
.ls7e{letter-spacing:17.325483px;}
.ls102{letter-spacing:17.335324px;}
.ls101{letter-spacing:17.341207px;}
.ls98{letter-spacing:17.350200px;}
.ls1{letter-spacing:17.935200px;}
.lsd1{letter-spacing:18.022741px;}
.ls93{letter-spacing:18.069483px;}
.ls92{letter-spacing:18.086012px;}
.ls10c{letter-spacing:18.092700px;}
.ls11e{letter-spacing:18.100766px;}
.ls120{letter-spacing:18.112007px;}
.ls31{letter-spacing:18.323593px;}
.lsc6{letter-spacing:18.495943px;}
.ls8e{letter-spacing:18.501943px;}
.ls11b{letter-spacing:18.512383px;}
.lscc{letter-spacing:18.816571px;}
.ls109{letter-spacing:18.859289px;}
.ls87{letter-spacing:18.963483px;}
.lsa8{letter-spacing:18.969483px;}
.lsc3{letter-spacing:19.245943px;}
.ls8b{letter-spacing:19.250153px;}
.ls94{letter-spacing:19.251943px;}
.ls76{letter-spacing:19.263483px;}
.ls99{letter-spacing:19.269483px;}
.lsb8{letter-spacing:19.995483px;}
.ls11c{letter-spacing:20.147524px;}
.ls86{letter-spacing:20.341200px;}
.ls95{letter-spacing:20.439943px;}
.ls74{letter-spacing:20.445943px;}
.ls7d{letter-spacing:20.901943px;}
.ls75{letter-spacing:20.907943px;}
.ls10d{letter-spacing:21.057483px;}
.ls116{letter-spacing:21.063483px;}
.ls11f{letter-spacing:21.083400px;}
.ls88{letter-spacing:21.459483px;}
.ls8f{letter-spacing:23.509258px;}
.ls7a{letter-spacing:25.652100px;}
.lsfd{letter-spacing:33.015483px;}
.ls2{letter-spacing:37.855200px;}
.lsd2{letter-spacing:68.811483px;}
.ls3{letter-spacing:70.236600px;}
.ls4{letter-spacing:72.353510px;}
.lsc1{letter-spacing:135.932012px;}
.ls39{letter-spacing:195.808662px;}
.ls58{letter-spacing:202.883597px;}
.ls45{letter-spacing:207.009977px;}
.ls48{letter-spacing:211.113077px;}
.ls55{letter-spacing:212.795057px;}
.lse0{letter-spacing:215.366383px;}
.ls41{letter-spacing:219.819797px;}
.ls4a{letter-spacing:222.473717px;}
.ls4d{letter-spacing:223.166297px;}
.ls4f{letter-spacing:223.975277px;}
.ls51{letter-spacing:224.039297px;}
.ls54{letter-spacing:225.866777px;}
.ls33{letter-spacing:228.525601px;}
.ls2c{letter-spacing:229.215462px;}
.ls30{letter-spacing:232.713282px;}
.ls34{letter-spacing:232.855681px;}
.ls2e{letter-spacing:233.545542px;}
.ls5a{letter-spacing:237.550236px;}
.ls27{letter-spacing:244.647667px;}
.ls25{letter-spacing:245.532996px;}
.ls26{letter-spacing:249.003290px;}
.ls28{letter-spacing:250.464799px;}
.ls121{letter-spacing:329.725133px;}
.ls124{letter-spacing:433.980422px;}
.lse8{letter-spacing:511.890783px;}
.lsc7{letter-spacing:556.070725px;}
.ls73{letter-spacing:608.702012px;}
.lsc5{letter-spacing:659.606725px;}
.lsaa{letter-spacing:1152.952514px;}
.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;}
}
.ws75{word-spacing:-14.943900px;}
.ws3{word-spacing:-13.449600px;}
.ws6c{word-spacing:-13.046112px;}
.ws8f{word-spacing:-12.508128px;}
.ws19{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.ws2f{word-spacing:-10.945368px;}
.ws9c{word-spacing:-4.233034px;}
.ws68{word-spacing:-2.878546px;}
.ws4f{word-spacing:-2.835259px;}
.ws9e{word-spacing:-2.749678px;}
.ws4e{word-spacing:-2.748686px;}
.ws93{word-spacing:-2.271473px;}
.ws70{word-spacing:-2.211697px;}
.ws90{word-spacing:-2.156112px;}
.ws8d{word-spacing:-2.154996px;}
.ws91{word-spacing:-2.153880px;}
.ws8e{word-spacing:-2.152764px;}
.wscb{word-spacing:-2.032370px;}
.ws32{word-spacing:-1.972595px;}
.wsf0{word-spacing:-1.936742px;}
.ws37{word-spacing:-1.904602px;}
.ws50{word-spacing:-1.861315px;}
.wsbc{word-spacing:-1.853044px;}
.ws38{word-spacing:-1.834261px;}
.ws51{word-spacing:-1.758510px;}
.ws73{word-spacing:-1.673717px;}
.ws6a{word-spacing:-1.542078px;}
.ws5f{word-spacing:-1.520435px;}
.ws69{word-spacing:-1.515024px;}
.ws63{word-spacing:-1.498792px;}
.ws60{word-spacing:-1.493381px;}
.wsdb{word-spacing:-1.452557px;}
.ws64{word-spacing:-1.423040px;}
.ws42{word-spacing:-1.228252px;}
.ws41{word-spacing:-1.120036px;}
.ws8b{word-spacing:-1.050683px;}
.ws14{word-spacing:-1.016185px;}
.ws4d{word-spacing:-0.930658px;}
.ws20{word-spacing:-0.896634px;}
.ws71{word-spacing:-0.836858px;}
.wsca{word-spacing:-0.717307px;}
.ws2a{word-spacing:-0.657532px;}
.ws52{word-spacing:-0.600599px;}
.ws53{word-spacing:-0.573545px;}
.wsd1{word-spacing:-0.537984px;}
.ws15{word-spacing:-0.537980px;}
.wsa2{word-spacing:-0.418429px;}
.wsae{word-spacing:-0.358654px;}
.wsde{word-spacing:-0.322790px;}
.wsb{word-spacing:-0.298878px;}
.wsdc{word-spacing:-0.268992px;}
.ws34{word-spacing:-0.249934px;}
.ws35{word-spacing:-0.241315px;}
.ws21{word-spacing:-0.239102px;}
.ws55{word-spacing:-0.238075px;}
.ws39{word-spacing:-0.232664px;}
.wscd{word-spacing:-0.215194px;}
.ws9{word-spacing:-0.179327px;}
.wsa4{word-spacing:-0.147185px;}
.ws10{word-spacing:-0.119551px;}
.wscf{word-spacing:-0.107597px;}
.wsac{word-spacing:-0.062287px;}
.ws6{word-spacing:-0.059776px;}
.wse3{word-spacing:-0.053798px;}
.ws6f{word-spacing:-0.003809px;}
.ws7b{word-spacing:-0.001531px;}
.wsed{word-spacing:-0.001517px;}
.ws18{word-spacing:-0.000823px;}
.ws1{word-spacing:-0.000191px;}
.ws0{word-spacing:0.000000px;}
.ws6d{word-spacing:0.052184px;}
.wsce{word-spacing:0.053798px;}
.ws8{word-spacing:0.059776px;}
.ws67{word-spacing:0.081162px;}
.ws48{word-spacing:0.091984px;}
.ws54{word-spacing:0.102805px;}
.wsd2{word-spacing:0.107597px;}
.ws4{word-spacing:0.119551px;}
.ws49{word-spacing:0.136080px;}
.wsa3{word-spacing:0.145339px;}
.wseb{word-spacing:0.161395px;}
.ws4a{word-spacing:0.174960px;}
.ws5{word-spacing:0.179327px;}
.wsa6{word-spacing:0.229829px;}
.wsc{word-spacing:0.239102px;}
.ws1a{word-spacing:0.298878px;}
.ws12{word-spacing:0.358654px;}
.ws36{word-spacing:0.362524px;}
.wse7{word-spacing:0.591782px;}
.ws2e{word-spacing:0.597756px;}
.wsd5{word-spacing:0.645581px;}
.ws30{word-spacing:0.717307px;}
.ws9a{word-spacing:0.744826px;}
.ws97{word-spacing:0.746626px;}
.ws7a{word-spacing:0.761686px;}
.ws79{word-spacing:0.767495px;}
.ws89{word-spacing:0.777083px;}
.ws1f{word-spacing:0.836858px;}
.wsdf{word-spacing:0.860774px;}
.ws8a{word-spacing:0.896634px;}
.ws28{word-spacing:1.075961px;}
.wsd0{word-spacing:1.075968px;}
.wse0{word-spacing:1.129766px;}
.wsc5{word-spacing:1.135736px;}
.ws7{word-spacing:1.255288px;}
.wsf{word-spacing:1.315063px;}
.ws3b{word-spacing:1.331057px;}
.ws3a{word-spacing:1.406808px;}
.ws88{word-spacing:1.434614px;}
.ws1e{word-spacing:1.554166px;}
.wse4{word-spacing:1.560154px;}
.wsf1{word-spacing:1.613952px;}
.wse9{word-spacing:1.667750px;}
.ws87{word-spacing:1.793268px;}
.ws96{word-spacing:1.942009px;}
.ws7d{word-spacing:1.944762px;}
.ws76{word-spacing:1.972595px;}
.ws72{word-spacing:2.092146px;}
.wsa{word-spacing:2.151922px;}
.ws33{word-spacing:2.211697px;}
.wsd7{word-spacing:2.313331px;}
.wsa5{word-spacing:2.331248px;}
.wsd3{word-spacing:2.351959px;}
.wsd4{word-spacing:2.367130px;}
.wsa9{word-spacing:2.391024px;}
.wsaa{word-spacing:2.397186px;}
.wse5{word-spacing:2.528525px;}
.ws81{word-spacing:2.570351px;}
.ws5a{word-spacing:2.672935px;}
.ws43{word-spacing:2.683757px;}
.ws44{word-spacing:2.705400px;}
.wsaf{word-spacing:2.809453px;}
.ws25{word-spacing:2.869229px;}
.wsbb{word-spacing:2.929004px;}
.ws5b{word-spacing:2.986762px;}
.wsb1{word-spacing:3.168107px;}
.wsdd{word-spacing:3.223872px;}
.ws26{word-spacing:3.227882px;}
.wse6{word-spacing:3.227904px;}
.wsea{word-spacing:3.228672px;}
.wsd6{word-spacing:3.228874px;}
.wsc6{word-spacing:3.407209px;}
.ws11{word-spacing:3.466985px;}
.ws94{word-spacing:3.526760px;}
.wsd{word-spacing:3.583475px;}
.wse{word-spacing:3.586536px;}
.ws4c{word-spacing:3.619825px;}
.ws4b{word-spacing:3.684755px;}
.ws7f{word-spacing:3.706087px;}
.wsb0{word-spacing:3.825638px;}
.ws6e{word-spacing:3.896402px;}
.ws24{word-spacing:3.945190px;}
.ws80{word-spacing:4.124516px;}
.ws29{word-spacing:4.244068px;}
.wsd8{word-spacing:4.250074px;}
.ws9f{word-spacing:4.303843px;}
.ws95{word-spacing:4.363619px;}
.wsef{word-spacing:4.411469px;}
.wsee{word-spacing:4.465267px;}
.ws78{word-spacing:4.724678px;}
.wse2{word-spacing:4.895654px;}
.ws27{word-spacing:4.901599px;}
.wse1{word-spacing:4.949453px;}
.ws2b{word-spacing:5.080926px;}
.ws61{word-spacing:5.270119px;}
.ws62{word-spacing:5.297173px;}
.ws23{word-spacing:5.559131px;}
.ws1b{word-spacing:5.678682px;}
.ws74{word-spacing:5.858009px;}
.ws45{word-spacing:5.870718px;}
.wsa1{word-spacing:5.917784px;}
.wsba{word-spacing:5.977560px;}
.ws2d{word-spacing:6.216662px;}
.wsda{word-spacing:6.240614px;}
.ws16{word-spacing:6.336214px;}
.ws17{word-spacing:6.395989px;}
.ws13{word-spacing:6.515540px;}
.ws65{word-spacing:6.563300px;}
.ws1d{word-spacing:6.814418px;}
.ws66{word-spacing:6.898770px;}
.ws47{word-spacing:7.218007px;}
.wsa8{word-spacing:7.232848px;}
.ws3c{word-spacing:7.526423px;}
.ws46{word-spacing:7.548066px;}
.ws3f{word-spacing:7.558888px;}
.ws3e{word-spacing:7.602174px;}
.ws3d{word-spacing:7.899768px;}
.wse8{word-spacing:8.338752px;}
.ws86{word-spacing:8.547911px;}
.ws1c{word-spacing:9.324994px;}
.wsec{word-spacing:9.629914px;}
.ws40{word-spacing:9.777316px;}
.ws5e{word-spacing:10.442844px;}
.ws31{word-spacing:10.699832px;}
.wsd9{word-spacing:10.705882px;}
.ws2c{word-spacing:10.998710px;}
.wsa0{word-spacing:11.118262px;}
.ws59{word-spacing:11.449253px;}
.ws57{word-spacing:12.022798px;}
.ws22{word-spacing:12.074671px;}
.ws58{word-spacing:12.336624px;}
.ws5c{word-spacing:12.390732px;}
.ws5d{word-spacing:12.396143px;}
.ws56{word-spacing:12.423197px;}
.wscc{word-spacing:12.493100px;}
.ws6b{word-spacing:14.246580px;}
.ws9b{word-spacing:16.886400px;}
.wsad{word-spacing:17.938541px;}
.wsab{word-spacing:23.046042px;}
.wsa7{word-spacing:26.002386px;}
.ws98{word-spacing:30.638400px;}
.wsb7{word-spacing:97.208329px;}
.wsb9{word-spacing:97.862160px;}
.wsb5{word-spacing:99.150451px;}
.wsb3{word-spacing:122.967003px;}
.wsb6{word-spacing:136.204099px;}
.wsc3{word-spacing:163.762330px;}
.wsc1{word-spacing:178.206346px;}
.wsb4{word-spacing:192.528125px;}
.wsb8{word-spacing:200.089699px;}
.wsc2{word-spacing:205.964602px;}
.wsc4{word-spacing:217.614528px;}
.wsbf{word-spacing:219.143510px;}
.wsc8{word-spacing:251.507520px;}
.wsc0{word-spacing:260.922240px;}
.wsbd{word-spacing:273.105101px;}
.wsbe{word-spacing:298.258330px;}
.wsb2{word-spacing:301.540470px;}
.wsc7{word-spacing:323.382182px;}
.wsc9{word-spacing:390.630182px;}
.ws9d{word-spacing:520.466149px;}
.ws92{word-spacing:584.088884px;}
.ws8c{word-spacing:596.597012px;}
.ws99{word-spacing:610.428427px;}
.ws82{word-spacing:755.683135px;}
.ws85{word-spacing:771.284567px;}
.ws7c{word-spacing:787.842408px;}
.ws83{word-spacing:819.224598px;}
.ws84{word-spacing:823.647992px;}
.ws77{word-spacing:858.975372px;}
.ws7e{word-spacing:883.363817px;}
._0{margin-left:-11.943245px;}
._19{margin-left:-10.732597px;}
._7{margin-left:-7.412174px;}
._3{margin-left:-5.971622px;}
._2{margin-left:-4.949453px;}
._2f{margin-left:-3.911016px;}
._1a{margin-left:-2.870145px;}
._6{margin-left:-1.075961px;}
._17{width:1.006409px;}
._1{width:2.998544px;}
._20{width:4.387262px;}
._32{width:6.993391px;}
._15{width:8.010803px;}
._18{width:10.312196px;}
._d{width:12.911530px;}
._54{width:14.455502px;}
._4{width:15.709133px;}
._5{width:17.645875px;}
._b{width:18.769538px;}
._a{width:19.845499px;}
._12{width:21.214400px;}
._8{width:22.894055px;}
._9{width:24.806874px;}
._23{width:26.719693px;}
._13{width:27.974981px;}
._c{width:29.349820px;}
._53{width:30.420390px;}
._14{width:31.800619px;}
._31{width:33.175458px;}
._55{width:35.184154px;}
._e{width:38.136833px;}
._11{width:39.571447px;}
._2e{width:59.775600px;}
._21{width:65.334731px;}
._52{width:68.622389px;}
._30{width:70.834086px;}
._39{width:160.500613px;}
._44{width:163.816128px;}
._33{width:165.794906px;}
._34{width:167.490559px;}
._3a{width:172.184469px;}
._1f{width:180.037496px;}
._1e{width:181.038300px;}
._1b{width:191.913369px;}
._1c{width:195.214407px;}
._1d{width:196.512873px;}
._40{width:201.674062px;}
._25{width:204.525120px;}
._3c{width:206.563531px;}
._24{width:212.838306px;}
._3b{width:214.451182px;}
._3d{width:217.977667px;}
._36{width:225.643939px;}
._35{width:230.754787px;}
._4b{width:242.937307px;}
._45{width:244.207335px;}
._46{width:245.697293px;}
._22{width:247.277993px;}
._3e{width:250.022684px;}
._37{width:262.799804px;}
._4a{width:264.564264px;}
._50{width:283.131888px;}
._38{width:299.955669px;}
._3f{width:312.732789px;}
._4f{width:328.708224px;}
._43{width:329.748672px;}
._4e{width:350.281382px;}
._4d{width:355.607424px;}
._4c{width:376.458317px;}
._51{width:425.855818px;}
._2d{width:534.910272px;}
._2a{width:538.108711px;}
._49{width:540.082138px;}
._2c{width:548.710202px;}
._28{width:551.266145px;}
._27{width:563.816378px;}
._29{width:575.724116px;}
._48{width:610.127654px;}
._2b{width:611.747524px;}
._26{width:624.255652px;}
._47{width:658.976602px;}
._42{width:702.284314px;}
._f{width:1126.801298px;}
._16{width:1911.742106px;}
._41{width:2136.045600px;}
._10{width:2159.955600px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc1{color:rgb(74,41,38);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:29.887800px;}
.fs1b{font-size:35.865600px;}
.fs19{font-size:38.913804px;}
.fs12{font-size:40.587516px;}
.fsa{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fsd{font-size:43.092000px;}
.fs14{font-size:44.831700px;}
.fs8{font-size:45.429600px;}
.fs16{font-size:47.337600px;}
.fsc{font-size:47.820600px;}
.fse{font-size:48.600000px;}
.fs18{font-size:50.032512px;}
.fs1c{font-size:51.108480px;}
.fs1a{font-size:52.133940px;}
.fs11{font-size:52.184448px;}
.fsb{font-size:53.798400px;}
.fsf{font-size:54.108000px;}
.fs13{font-size:54.376260px;}
.fs1d{font-size:56.058000px;}
.fs6{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs17{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs10{font-size:64.800000px;}
.fs0{font-size:72.000000px;}
.fs15{font-size:83.686200px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:107.596800px;}
.fs5{font-size:151.185600px;}
.y86{bottom:-435.091095px;}
.ya8{bottom:-417.269065px;}
.ya7{bottom:-399.044138px;}
.ya6{bottom:-380.819210px;}
.ya5{bottom:-362.594283px;}
.ya4{bottom:-344.450518px;}
.ya3{bottom:-326.225591px;}
.ya2{bottom:-308.000664px;}
.ya1{bottom:-289.775737px;}
.ya0{bottom:-271.550810px;}
.y9f{bottom:-253.325883px;}
.y9e{bottom:-235.100956px;}
.y9d{bottom:-216.957190px;}
.y9c{bottom:-190.551134px;}
.y9b{bottom:-156.207433px;}
.y9a{bottom:-137.982506px;}
.y99{bottom:-119.757579px;}
.y98{bottom:-101.532652px;}
.y97{bottom:-83.307725px;}
.y96{bottom:-65.163960px;}
.y95{bottom:-31.062960px;}
.y94{bottom:-9.112095px;}
.y0{bottom:0.000000px;}
.y23{bottom:15.759303px;}
.y4f{bottom:63.780000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y4e{bottom:108.612000px;}
.y1f6{bottom:112.662000px;}
.y80{bottom:116.607000px;}
.y4d{bottom:128.875500px;}
.y1f5{bottom:132.028500px;}
.y1c7{bottom:132.054000px;}
.ydc{bottom:132.940500px;}
.y7f{bottom:136.870500px;}
.y21{bottom:139.264499px;}
.y19d{bottom:140.862000px;}
.y122{bottom:145.714500px;}
.y1c6{bottom:148.566000px;}
.y4c{bottom:149.139000px;}
.yf8{bottom:149.974500px;}
.y174{bottom:150.081000px;}
.y1f4{bottom:151.396500px;}
.ydb{bottom:153.205500px;}
.y7e{bottom:157.134000px;}
.y19c{bottom:161.127000px;}
.y150{bottom:162.640500px;}
.y1c5{bottom:165.004500px;}
.y121{bottom:165.978000px;}
.y4b{bottom:169.404000px;}
.yf7{bottom:170.238000px;}
.y173{bottom:170.344500px;}
.yf9{bottom:170.556000px;}
.y1f3{bottom:170.764500px;}
.yda{bottom:173.469000px;}
.y14f{bottom:174.177000px;}
.y151{bottom:177.285000px;}
.y7d{bottom:177.399000px;}
.y19b{bottom:181.390500px;}
.y1c4{bottom:181.443000px;}
.y120{bottom:186.243000px;}
.y4a{bottom:189.667500px;}
.y1f2{bottom:190.131000px;}
.yf6{bottom:190.503000px;}
.y172{bottom:190.609500px;}
.yd9{bottom:193.734000px;}
.y18{bottom:196.933500px;}
.y7c{bottom:197.662500px;}
.y19a{bottom:201.655500px;}
.y1c3{bottom:205.158000px;}
.y11f{bottom:206.506500px;}
.y1f1{bottom:209.499000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y49{bottom:209.932500px;}
.y171{bottom:210.873000px;}
.yd8{bottom:213.997500px;}
.y14e{bottom:214.437000px;}
.y7b{bottom:217.927500px;}
.y199{bottom:221.919000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y11e{bottom:226.770000px;}
.yf5{bottom:228.451500px;}
.y1c2{bottom:228.874500px;}
.y48{bottom:230.196000px;}
.y170{bottom:231.138000px;}
.y14d{bottom:234.700500px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y1f0{bottom:237.832500px;}
.y7a{bottom:238.191000px;}
.y198{bottom:242.182500px;}
.yd7{bottom:243.228000px;}
.y11d{bottom:247.035000px;}
.yf4{bottom:248.715000px;}
.y222{bottom:250.314000px;}
.y47{bottom:250.459500px;}
.y16f{bottom:251.401500px;}
.y79{bottom:258.454500px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y14c{bottom:264.780000px;}
.y1c1{bottom:266.470500px;}
.y11c{bottom:267.298500px;}
.y221{bottom:269.680500px;}
.y46{bottom:270.724500px;}
.y197{bottom:271.413000px;}
.y16e{bottom:271.665000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y1ef{bottom:277.284000px;}
.y78{bottom:278.719500px;}
.yf2{bottom:282.480000px;}
.yd6{bottom:283.536240px;}
.y93{bottom:284.514201px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y11b{bottom:287.563500px;}
.y220{bottom:289.048500px;}
.y45{bottom:290.988000px;}
.yf1{bottom:294.018000px;}
.yf3{bottom:297.126000px;}
.y77{bottom:298.983000px;}
.y16d{bottom:300.895500px;}
.y1ee{bottom:301.449000px;}
.yd5{bottom:301.554960px;}
.y92{bottom:302.739128px;}
.y14b{bottom:303.426000px;}
.y1c0{bottom:303.576000px;}
.y196{bottom:306.232500px;}
.y11a{bottom:307.827000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y44{bottom:311.253000px;}
.y1ed{bottom:316.647000px;}
.y76{bottom:319.248000px;}
.yd4{bottom:319.573680px;}
.y91{bottom:320.964055px;}
.y21f{bottom:321.999000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y1bf{bottom:323.839500px;}
.y195{bottom:326.497500px;}
.y119{bottom:328.090500px;}
.y43{bottom:331.516500px;}
.y1ec{bottom:331.845000px;}
.yf0{bottom:334.276500px;}
.y16c{bottom:335.715000px;}
.yd3{bottom:337.590945px;}
.y90{bottom:339.107820px;}
.y75{bottom:339.511500px;}
.yb0{bottom:340.483500px;}
.y14a{bottom:340.893000px;}
.y21e{bottom:341.367000px;}
.y1be{bottom:344.103000px;}
.y194{bottom:346.761000px;}
.y1eb{bottom:347.043000px;}
.yf{bottom:348.133500px;}
.y118{bottom:348.355500px;}
.y42{bottom:351.780000px;}
.yef{bottom:354.540000px;}
.yd2{bottom:355.609665px;}
.y16b{bottom:355.980000px;}
.y8f{bottom:357.332747px;}
.y74{bottom:359.775000px;}
.y21d{bottom:360.733500px;}
.y149{bottom:361.158000px;}
.y1ea{bottom:362.241000px;}
.y1bd{bottom:364.368000px;}
.y193{bottom:367.026000px;}
.y117{bottom:368.619000px;}
.y41{bottom:372.045000px;}
.yd1{bottom:373.626930px;}
.yee{bottom:374.805000px;}
.yaf{bottom:375.303000px;}
.y8e{bottom:375.557675px;}
.y1e9{bottom:377.439000px;}
.y16a{bottom:377.737500px;}
.y73{bottom:380.040000px;}
.y21c{bottom:380.101500px;}
.y148{bottom:381.421500px;}
.y1bc{bottom:384.631500px;}
.ye{bottom:386.785499px;}
.y192{bottom:387.289500px;}
.y116{bottom:388.884000px;}
.yd0{bottom:391.645650px;}
.y40{bottom:392.308500px;}
.y1e8{bottom:392.637000px;}
.y8d{bottom:393.782602px;}
.yae{bottom:395.566500px;}
.y169{bottom:398.002500px;}
.y21b{bottom:399.468000px;}
.y72{bottom:400.303500px;}
.y1bb{bottom:404.896500px;}
.y191{bottom:407.553000px;}
.yd{bottom:408.044999px;}
.ycf{bottom:409.664370px;}
.y8c{bottom:412.007529px;}
.yea{bottom:412.293000px;}
.y3f{bottom:412.573500px;}
.y146{bottom:415.186500px;}
.yad{bottom:415.830000px;}
.y115{bottom:418.114500px;}
.y21a{bottom:418.836000px;}
.y71{bottom:420.568500px;}
.y168{bottom:421.255500px;}
.y1ba{bottom:425.160000px;}
.y145{bottom:426.723000px;}
.y190{bottom:427.818000px;}
.ye9{bottom:428.074500px;}
.yed{bottom:428.668500px;}
.yec{bottom:428.817000px;}
.y147{bottom:429.832500px;}
.y8b{bottom:430.232456px;}
.y3e{bottom:432.837000px;}
.yce{bottom:434.668545px;}
.yac{bottom:436.095000px;}
.y219{bottom:438.204000px;}
.y1e7{bottom:440.712000px;}
.y70{bottom:440.832000px;}
.y167{bottom:441.520500px;}
.yeb{bottom:441.736500px;}
.ye8{bottom:444.844500px;}
.y1b9{bottom:445.423500px;}
.y18f{bottom:448.081500px;}
.y114{bottom:452.934000px;}
.y3d{bottom:453.100500px;}
.yab{bottom:456.358500px;}
.y8a{bottom:456.557351px;}
.y218{bottom:457.570500px;}
.ycd{bottom:459.672720px;}
.y1e6{bottom:460.977000px;}
.y6f{bottom:461.095500px;}
.y166{bottom:461.784000px;}
.y1b8{bottom:465.688500px;}
.y144{bottom:466.983000px;}
.y18e{bottom:468.346500px;}
.yaa{bottom:476.623500px;}
.y217{bottom:476.938500px;}
.ycc{bottom:477.691440px;}
.y164{bottom:480.918000px;}
.y6e{bottom:481.360500px;}
.y3c{bottom:482.331000px;}
.y1e5{bottom:482.734500px;}
.ye7{bottom:484.618500px;}
.y1b7{bottom:485.952000px;}
.y143{bottom:487.246500px;}
.y18d{bottom:488.610000px;}
.y113{bottom:490.084500px;}
.y89{bottom:490.901051px;}
.y163{bottom:493.303500px;}
.y165{bottom:494.454000px;}
.ycb{bottom:495.708705px;}
.y216{bottom:496.305000px;}
.y6d{bottom:501.624000px;}
.yc{bottom:502.864502px;}
.y1e4{bottom:502.999500px;}
.ye6{bottom:504.882000px;}
.y1b6{bottom:506.217000px;}
.y142{bottom:507.511500px;}
.y18c{bottom:508.873500px;}
.y88{bottom:509.125978px;}
.y112{bottom:510.348000px;}
.y162{bottom:514.719000px;}
.y215{bottom:515.673000px;}
.ya9{bottom:517.872000px;}
.yca{bottom:520.712880px;}
.yb{bottom:520.864502px;}
.y6c{bottom:521.889000px;}
.y1e3{bottom:524.757000px;}
.ye5{bottom:525.145500px;}
.y1b5{bottom:526.480500px;}
.y87{bottom:527.350905px;}
.y18b{bottom:529.138500px;}
.y214{bottom:535.041000px;}
.ya{bottom:538.864499px;}
.y6b{bottom:542.152500px;}
.y13e{bottom:544.999500px;}
.y1e2{bottom:545.022000px;}
.ye4{bottom:545.410500px;}
.yc9{bottom:545.718510px;}
.y84{bottom:546.279000px;}
.y1b4{bottom:546.744000px;}
.y111{bottom:547.500000px;}
.y18a{bottom:549.402000px;}
.y161{bottom:549.927000px;}
.y213{bottom:554.407500px;}
.y13d{bottom:556.297500px;}
.y9{bottom:556.864499px;}
.y3b{bottom:558.739500px;}
.y85{bottom:561.046905px;}
.yc8{bottom:563.735775px;}
.ye3{bottom:565.674000px;}
.y160{bottom:570.190500px;}
.y6a{bottom:571.383000px;}
.y13c{bottom:572.079000px;}
.y141{bottom:572.673000px;}
.y140{bottom:572.820000px;}
.y212{bottom:573.775500px;}
.y1b3{bottom:575.974500px;}
.y1e1{bottom:580.230000px;}
.yc7{bottom:581.754495px;}
.y189{bottom:583.498500px;}
.y110{bottom:584.650500px;}
.y13f{bottom:585.739500px;}
.ye2{bottom:585.939000px;}
.y13b{bottom:588.849000px;}
.y15f{bottom:590.455500px;}
.y211{bottom:593.142000px;}
.y3a{bottom:596.937000px;}
.yc6{bottom:599.771760px;}
.y1e0{bottom:600.493500px;}
.y186{bottom:604.455450px;}
.y188{bottom:604.834500px;}
.y69{bottom:606.202500px;}
.y15e{bottom:610.719000px;}
.y1b2{bottom:610.794000px;}
.y210{bottom:612.510000px;}
.y10f{bottom:615.046500px;}
.y39{bottom:617.200500px;}
.yc5{bottom:617.790480px;}
.y185{bottom:620.072025px;}
.y187{bottom:620.522325px;}
.y1df{bottom:620.758500px;}
.y68{bottom:626.466000px;}
.y13a{bottom:628.621500px;}
.y15d{bottom:630.984000px;}
.y1b1{bottom:631.059000px;}
.y20f{bottom:631.878000px;}
.y38{bottom:637.465500px;}
.y1de{bottom:641.022000px;}
.y182{bottom:642.672525px;}
.yc4{bottom:642.794655px;}
.y184{bottom:643.051575px;}
.y8{bottom:645.510000px;}
.y67{bottom:646.731000px;}
.y139{bottom:648.885000px;}
.y20e{bottom:651.244500px;}
.y15c{bottom:651.247500px;}
.y1b0{bottom:651.322500px;}
.y10e{bottom:652.197000px;}
.y37{bottom:657.729000px;}
.y181{bottom:658.289100px;}
.y183{bottom:658.739400px;}
.y1dd{bottom:661.285500px;}
.y15b{bottom:666.355500px;}
.y7{bottom:666.771000px;}
.y66{bottom:666.994500px;}
.yc3{bottom:667.798830px;}
.y138{bottom:669.150000px;}
.y20d{bottom:670.612500px;}
.y159{bottom:671.511000px;}
.y1af{bottom:671.587500px;}
.y36{bottom:677.992500px;}
.y15a{bottom:679.074000px;}
.y180{bottom:681.270075px;}
.y1dc{bottom:681.550500px;}
.yc2{bottom:685.817550px;}
.y65{bottom:687.258000px;}
.y17e{bottom:687.857850px;}
.y10d{bottom:689.347500px;}
.y137{bottom:689.413500px;}
.y20c{bottom:689.979000px;}
.y1ae{bottom:691.851000px;}
.y158{bottom:693.699000px;}
.y17f{bottom:696.956475px;}
.y35{bottom:698.257500px;}
.y1db{bottom:701.814000px;}
.yc1{bottom:703.836270px;}
.y64{bottom:707.523000px;}
.y20b{bottom:709.347000px;}
.y10c{bottom:709.612500px;}
.y136{bottom:709.678500px;}
.y1ad{bottom:712.114500px;}
.y157{bottom:713.962500px;}
.y34{bottom:718.521000px;}
.y17d{bottom:719.487150px;}
.yc0{bottom:721.985940px;}
.y1da{bottom:722.077500px;}
.y17b{bottom:726.074925px;}
.y6{bottom:726.298500px;}
.y63{bottom:727.786500px;}
.y20a{bottom:728.715000px;}
.y135{bottom:729.942000px;}
.y1ac{bottom:732.379500px;}
.y156{bottom:734.226000px;}
.y17c{bottom:735.173550px;}
.y33{bottom:738.786000px;}
.y1d9{bottom:742.342500px;}
.y10a{bottom:743.377500px;}
.ybf{bottom:746.990115px;}
.y62{bottom:748.051500px;}
.y209{bottom:748.081500px;}
.y134{bottom:750.205500px;}
.y3{bottom:752.599495px;}
.y109{bottom:754.914000px;}
.y17a{bottom:757.704225px;}
.y10b{bottom:758.022000px;}
.y32{bottom:759.049500px;}
.y1d8{bottom:762.606000px;}
.y208{bottom:767.449500px;}
.y153{bottom:767.809500px;}
.y61{bottom:768.315000px;}
.y133{bottom:770.470500px;}
.ybe{bottom:771.994290px;}
.y155{bottom:774.615000px;}
.y177{bottom:778.958100px;}
.y31{bottom:779.313000px;}
.y1ab{bottom:779.350500px;}
.y178{bottom:780.162225px;}
.y1d7{bottom:782.871000px;}
.y152{bottom:784.866000px;}
.y207{bottom:786.816000px;}
.y60{bottom:788.578500px;}
.ybd{bottom:790.013010px;}
.y132{bottom:790.734000px;}
.y154{bottom:794.781000px;}
.y108{bottom:795.172500px;}
.y179{bottom:795.778800px;}
.y30{bottom:799.578000px;}
.y1aa{bottom:803.065500px;}
.y1d6{bottom:803.134500px;}
.y206{bottom:806.184000px;}
.ybc{bottom:808.030275px;}
.y5f{bottom:808.843500px;}
.y131{bottom:810.999000px;}
.y107{bottom:815.437500px;}
.y2f{bottom:819.841500px;}
.y1d5{bottom:823.398000px;}
.y205{bottom:825.552000px;}
.ybb{bottom:826.048995px;}
.y1a9{bottom:826.782000px;}
.y5e{bottom:829.107000px;}
.y130{bottom:831.262500px;}
.y176{bottom:832.531500px;}
.y106{bottom:835.701000px;}
.y1a8{bottom:843.294000px;}
.y1d4{bottom:843.663000px;}
.yba{bottom:844.066260px;}
.y204{bottom:844.918500px;}
.y5d{bottom:849.372000px;}
.y12f{bottom:851.526000px;}
.y2e{bottom:852.381000px;}
.y105{bottom:855.966000px;}
.y1a7{bottom:859.807500px;}
.yb9{bottom:862.084980px;}
.y1d3{bottom:863.926500px;}
.y203{bottom:864.286500px;}
.y5c{bottom:869.635500px;}
.y12e{bottom:871.791000px;}
.y2{bottom:879.369000px;}
.y2d{bottom:879.504000px;}
.yb8{bottom:880.103700px;}
.y1a5{bottom:883.449000px;}
.y202{bottom:883.653000px;}
.y1d2{bottom:884.191500px;}
.y102{bottom:886.789500px;}
.y5b{bottom:889.899000px;}
.y1a2{bottom:891.667500px;}
.y2c{bottom:897.661500px;}
.y103{bottom:897.742500px;}
.yb7{bottom:898.120965px;}
.y101{bottom:898.326000px;}
.y1a4{bottom:899.887500px;}
.y12d{bottom:901.021500px;}
.y104{bottom:901.434000px;}
.y201{bottom:903.021000px;}
.y1d1{bottom:904.455000px;}
.y1a1{bottom:908.106000px;}
.y5a{bottom:910.164000px;}
.y19f{bottom:913.366500px;}
.y1a3{bottom:916.324500px;}
.y1a6{bottom:916.326000px;}
.y2b{bottom:920.700000px;}
.y200{bottom:922.389000px;}
.yb6{bottom:923.125140px;}
.y1d0{bottom:924.718500px;}
.y59{bottom:930.427500px;}
.y2a{bottom:933.975000px;}
.y100{bottom:938.742000px;}
.ye1{bottom:939.394500px;}
.y1a0{bottom:940.041000px;}
.y1ff{bottom:941.755500px;}
.yff{bottom:943.153500px;}
.y1cf{bottom:944.983500px;}
.y12c{bottom:946.173000px;}
.yb5{bottom:948.130770px;}
.y58{bottom:950.692500px;}
.y29{bottom:957.015000px;}
.y1fe{bottom:961.123500px;}
.y12b{bottom:963.167295px;}
.yfe{bottom:963.417000px;}
.y1ce{bottom:965.247000px;}
.yb4{bottom:966.148035px;}
.y1{bottom:966.726000px;}
.y57{bottom:970.956000px;}
.ye0{bottom:974.214000px;}
.y28{bottom:975.171000px;}
.y19e{bottom:977.638500px;}
.y12a{bottom:978.937770px;}
.y175{bottom:979.923000px;}
.y1fd{bottom:980.490000px;}
.yb3{bottom:984.166755px;}
.y1cd{bottom:985.512000px;}
.y56{bottom:991.219500px;}
.ydf{bottom:994.477500px;}
.y27{bottom:994.519500px;}
.y129{bottom:994.709640px;}
.yfc{bottom:996.742500px;}
.y1fc{bottom:999.858000px;}
.yb2{bottom:1002.184020px;}
.yfd{bottom:1003.303500px;}
.y1cc{bottom:1005.775500px;}
.yfa{bottom:1006.993500px;}
.y128{bottom:1010.667045px;}
.y55{bottom:1011.484500px;}
.yfb{bottom:1014.571500px;}
.yde{bottom:1014.742500px;}
.y1fb{bottom:1019.226000px;}
.y83{bottom:1020.450000px;}
.y1cb{bottom:1026.039000px;}
.y127{bottom:1026.809985px;}
.yb1{bottom:1027.189650px;}
.y54{bottom:1031.748000px;}
.ydd{bottom:1035.006000px;}
.y1fa{bottom:1038.592500px;}
.y26{bottom:1040.848500px;}
.y126{bottom:1042.767390px;}
.y1ca{bottom:1046.304000px;}
.y82{bottom:1055.269500px;}
.y1f9{bottom:1057.960500px;}
.y125{bottom:1058.539260px;}
.y53{bottom:1060.978500px;}
.y1c9{bottom:1066.567500px;}
.y25{bottom:1071.244500px;}
.y81{bottom:1075.534500px;}
.y1f8{bottom:1077.327000px;}
.y124{bottom:1080.947145px;}
.y1c8{bottom:1086.832500px;}
.y52{bottom:1095.798000px;}
.y1f7{bottom:1096.695000px;}
.y24{bottom:1100.145000px;}
.y51{bottom:1116.063000px;}
.y123{bottom:1117.543500px;}
.y22{bottom:1137.954000px;}
.y50{bottom:1168.366500px;}
.h38{height:26.217754px;}
.h28{height:28.811839px;}
.he{height:30.587087px;}
.h24{height:31.573572px;}
.h14{height:31.729852px;}
.h7{height:32.130000px;}
.h15{height:32.392090px;}
.h20{height:32.861636px;}
.h27{height:33.299897px;}
.h46{height:34.956859px;}
.h12{height:35.052500px;}
.h22{height:35.503200px;}
.h19{height:35.785547px;}
.h3e{height:36.115200px;}
.h44{height:36.951431px;}
.h45{height:37.360299px;}
.h1b{height:38.146831px;}
.h1c{height:38.251200px;}
.h47{height:38.896243px;}
.h17{height:39.260004px;}
.hf{height:39.326630px;}
.h49{height:39.434227px;}
.h16{height:39.497783px;}
.h1a{height:39.841242px;}
.h1d{height:40.235115px;}
.h10{height:43.217759px;}
.h11{height:43.695964px;}
.hb{height:43.815515px;}
.h34{height:45.572180px;}
.h35{height:45.637971px;}
.h36{height:45.643551px;}
.h6{height:45.900000px;}
.h40{height:46.084950px;}
.h37{height:46.385691px;}
.h3f{height:46.445641px;}
.h25{height:46.714950px;}
.h18{height:47.302734px;}
.h3c{height:47.524950px;}
.h3b{height:47.980950px;}
.h3{height:48.195000px;}
.h1f{height:48.607754px;}
.h1e{height:48.613574px;}
.h9{height:50.930649px;}
.h31{height:52.592177px;}
.hd{height:54.541601px;}
.h2b{height:54.995897px;}
.h2{height:55.080000px;}
.h41{height:57.199200px;}
.h42{height:57.205200px;}
.h33{height:57.893038px;}
.h32{height:57.899038px;}
.h29{height:57.989897px;}
.h2d{height:61.341964px;}
.h2a{height:61.474950px;}
.h21{height:65.024177px;}
.h39{height:68.769024px;}
.h23{height:68.775024px;}
.h48{height:72.206630px;}
.h2c{height:72.641897px;}
.h2f{height:72.755897px;}
.hc{height:77.792486px;}
.h5{height:78.030000px;}
.h30{height:83.541024px;}
.h3d{height:87.718950px;}
.ha{height:94.491000px;}
.h26{height:102.953897px;}
.h43{height:104.234231px;}
.h4{height:119.055004px;}
.h2e{height:127.353024px;}
.h3a{height:132.885024px;}
.h13{height:261.908100px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:156.736946px;}
.w5{width:528.768000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x24{left:-30.816450px;}
.x25{left:-2.142545px;}
.x0{left:0.000000px;}
.x6{left:58.056593px;}
.x1{left:102.045000px;}
.x27{left:104.696550px;}
.x2{left:106.297500px;}
.x5{left:114.802500px;}
.x9{left:122.110500px;}
.x7{left:123.307500px;}
.x8a{left:124.515225px;}
.x90{left:127.281000px;}
.x8c{left:129.303225px;}
.x5c{left:130.820115px;}
.x9f{left:133.632000px;}
.x8e{left:136.432500px;}
.x8d{left:138.917700px;}
.x9d{left:142.236000px;}
.x8{left:146.170500px;}
.x9e{left:147.495000px;}
.x7a{left:149.397000px;}
.x2f{left:151.001445px;}
.x9c{left:152.472000px;}
.x2e{left:153.594255px;}
.x2a{left:154.886295px;}
.x2c{left:155.912070px;}
.x31{left:157.431090px;}
.x32{left:158.456865px;}
.x30{left:160.633545px;}
.x33{left:162.143835px;}
.x2b{left:163.373310px;}
.x34{left:164.805030px;}
.x85{left:166.732275px;}
.x29{left:167.777595px;}
.x50{left:169.206000px;}
.x7b{left:173.605500px;}
.x23{left:182.074500px;}
.xa{left:188.361000px;}
.x5e{left:196.298625px;}
.x5d{left:199.426215px;}
.x60{left:202.221000px;}
.x4{left:203.484001px;}
.x3a{left:211.882500px;}
.x8b{left:220.171200px;}
.x62{left:224.836500px;}
.x91{left:226.510500px;}
.x61{left:227.964000px;}
.xa0{left:230.788500px;}
.x92{left:234.534000px;}
.x2d{left:235.683900px;}
.x3b{left:237.778500px;}
.x5b{left:245.521500px;}
.x63{left:250.212000px;}
.xa3{left:252.097500px;}
.xa4{left:254.101500px;}
.x1f{left:255.370500px;}
.x20{left:262.843500px;}
.x28{left:265.797000px;}
.x6f{left:268.425000px;}
.x68{left:276.223500px;}
.x84{left:279.421500px;}
.x69{left:281.409000px;}
.x89{left:288.072450px;}
.x3f{left:290.794500px;}
.x40{left:292.312500px;}
.x6a{left:295.137000px;}
.x13{left:297.357000px;}
.x67{left:298.488000px;}
.x14{left:304.828500px;}
.x65{left:307.092000px;}
.x17{left:311.706000px;}
.x94{left:313.285500px;}
.x66{left:315.211500px;}
.x18{left:319.179000px;}
.x70{left:323.505000px;}
.x35{left:326.643000px;}
.x41{left:328.014000px;}
.x3c{left:332.086500px;}
.x47{left:333.328500px;}
.x93{left:341.235000px;}
.x1d{left:346.686000px;}
.x43{left:348.859500px;}
.x42{left:351.987000px;}
.x3d{left:353.610000px;}
.x45{left:358.569000px;}
.x1e{left:361.629000px;}
.x51{left:364.338000px;}
.x71{left:369.628500px;}
.x46{left:372.297000px;}
.x44{left:374.235000px;}
.x74{left:375.438000px;}
.x48{left:379.009500px;}
.x8f{left:380.991000px;}
.x5f{left:387.043500px;}
.x52{left:393.462000px;}
.x15{left:395.967000px;}
.x75{left:397.923000px;}
.x16{left:403.438500px;}
.x6b{left:407.400000px;}
.x76{left:413.809500px;}
.x38{left:418.692000px;}
.x5a{left:419.715000px;}
.x6c{left:421.108500px;}
.x7c{left:423.744000px;}
.x53{left:432.414000px;}
.x4c{left:435.532500px;}
.x95{left:436.740000px;}
.x4b{left:440.824500px;}
.x39{left:443.949000px;}
.x49{left:447.451500px;}
.x3{left:454.959000px;}
.x4d{left:457.923000px;}
.x21{left:462.219000px;}
.x4f{left:464.821500px;}
.x22{left:477.162000px;}
.x54{left:480.391500px;}
.x4e{left:481.570500px;}
.x77{left:486.133500px;}
.x3e{left:488.550000px;}
.x55{left:494.101500px;}
.xb{left:498.711000px;}
.x64{left:503.103000px;}
.x86{left:505.024425px;}
.xc{left:506.182500px;}
.xd{left:509.982000px;}
.xe{left:517.453500px;}
.x78{left:518.779500px;}
.x26{left:538.046415px;}
.x79{left:566.850000px;}
.x56{left:574.408500px;}
.x19{left:587.499000px;}
.x7f{left:591.141000px;}
.x57{left:593.907000px;}
.x1a{left:594.970500px;}
.x98{left:597.561000px;}
.x80{left:603.136500px;}
.x97{left:607.581000px;}
.x82{left:621.997500px;}
.x58{left:624.253500px;}
.x96{left:625.509000px;}
.x87{left:634.271925px;}
.x83{left:636.942000px;}
.x59{left:645.717000px;}
.x1b{left:670.728000px;}
.xa1{left:674.113500px;}
.x88{left:677.949600px;}
.x1c{left:685.672500px;}
.x9b{left:692.319000px;}
.x36{left:697.645500px;}
.xa2{left:701.013000px;}
.x9a{left:702.339000px;}
.x81{left:711.436500px;}
.x37{left:712.590000px;}
.x7d{left:713.742000px;}
.x99{left:721.014000px;}
.x7e{left:730.453500px;}
.x72{left:731.680500px;}
.x73{left:743.379000px;}
.xf{left:750.705000px;}
.x6d{left:757.050000px;}
.x10{left:758.178000px;}
.x4a{left:760.686000px;}
.x11{left:765.657000px;}
.x6e{left:771.993000px;}
.x12{left:773.128500px;}
@media print{
.v17{vertical-align:-59.008000pt;}
.v1d{vertical-align:-29.914667pt;}
.v26{vertical-align:-28.418933pt;}
.v27{vertical-align:-23.879200pt;}
.v3{vertical-align:-17.354667pt;}
.v1e{vertical-align:-15.429333pt;}
.va{vertical-align:-13.013333pt;}
.v8{vertical-align:-10.310453pt;}
.v4{vertical-align:-8.991253pt;}
.v9{vertical-align:-7.968000pt;}
.v5{vertical-align:-6.958133pt;}
.v1c{vertical-align:-3.082667pt;}
.vf{vertical-align:-1.674667pt;}
.v0{vertical-align:0.000000pt;}
.v22{vertical-align:1.125333pt;}
.v1b{vertical-align:2.074667pt;}
.v14{vertical-align:5.152000pt;}
.v7{vertical-align:6.958133pt;}
.vd{vertical-align:7.968000pt;}
.v6{vertical-align:9.715520pt;}
.v13{vertical-align:13.120000pt;}
.v15{vertical-align:15.685333pt;}
.v2{vertical-align:17.712000pt;}
.v1{vertical-align:19.285333pt;}
.v12{vertical-align:21.946667pt;}
.v25{vertical-align:27.760267pt;}
.vc{vertical-align:29.914667pt;}
.v24{vertical-align:32.046667pt;}
.v19{vertical-align:35.072000pt;}
.v23{vertical-align:36.448000pt;}
.v10{vertical-align:42.624000pt;}
.v21{vertical-align:49.018667pt;}
.v20{vertical-align:56.992000pt;}
.vb{vertical-align:59.008000pt;}
.v11{vertical-align:61.914667pt;}
.ve{vertical-align:66.976000pt;}
.v1a{vertical-align:72.133333pt;}
.v18{vertical-align:74.016000pt;}
.v16{vertical-align:111.077333pt;}
.v1f{vertical-align:115.994667pt;}
.ls16{letter-spacing:-0.110621pt;}
.ls24{letter-spacing:-0.101002pt;}
.ls1f{letter-spacing:-0.086573pt;}
.ls1b{letter-spacing:-0.081763pt;}
.ls1e{letter-spacing:-0.072144pt;}
.ls14{letter-spacing:-0.068947pt;}
.ls19{letter-spacing:-0.052906pt;}
.ls22{letter-spacing:-0.038477pt;}
.ls23{letter-spacing:-0.033667pt;}
.ls18{letter-spacing:-0.028858pt;}
.ls1c{letter-spacing:-0.024048pt;}
.ls15{letter-spacing:-0.019238pt;}
.ls1a{letter-spacing:-0.014429pt;}
.ls1d{letter-spacing:-0.008640pt;}
.ls17{letter-spacing:-0.004810pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.000364pt;}
.ls46{letter-spacing:0.000977pt;}
.lsef{letter-spacing:0.001177pt;}
.lsed{letter-spacing:0.001774pt;}
.lsf8{letter-spacing:0.002469pt;}
.ls128{letter-spacing:0.004267pt;}
.lsec{letter-spacing:0.004382pt;}
.ls11{letter-spacing:0.004810pt;}
.ls13{letter-spacing:0.009619pt;}
.lsd{letter-spacing:0.014429pt;}
.ls8{letter-spacing:0.019152pt;}
.lsf{letter-spacing:0.025920pt;}
.lse{letter-spacing:0.028858pt;}
.ls12{letter-spacing:0.033667pt;}
.ls10{letter-spacing:0.038477pt;}
.lsb{letter-spacing:0.043286pt;}
.lsc{letter-spacing:0.048096pt;}
.ls20{letter-spacing:0.057715pt;}
.lsa{letter-spacing:0.145555pt;}
.ls9{letter-spacing:0.153216pt;}
.lsa9{letter-spacing:0.361874pt;}
.lsa7{letter-spacing:0.367207pt;}
.ls40{letter-spacing:0.447752pt;}
.ls4c{letter-spacing:0.450597pt;}
.ls50{letter-spacing:0.451072pt;}
.ls3f{letter-spacing:0.452539pt;}
.ls44{letter-spacing:0.452925pt;}
.ls49{letter-spacing:0.453014pt;}
.lsfc{letter-spacing:0.474686pt;}
.ls85{letter-spacing:0.487835pt;}
.lsc9{letter-spacing:0.499962pt;}
.ls61{letter-spacing:0.501867pt;}
.lsbe{letter-spacing:0.502349pt;}
.ls5c{letter-spacing:0.502400pt;}
.lsb5{letter-spacing:0.504739pt;}
.ls84{letter-spacing:0.504787pt;}
.lsfb{letter-spacing:0.504838pt;}
.ls79{letter-spacing:0.505295pt;}
.ls5d{letter-spacing:0.507200pt;}
.lsb6{letter-spacing:0.507682pt;}
.ls60{letter-spacing:0.507733pt;}
.lsac{letter-spacing:0.553187pt;}
.ls36{letter-spacing:0.566509pt;}
.ls3c{letter-spacing:0.576980pt;}
.ls122{letter-spacing:0.595311pt;}
.ls100{letter-spacing:0.596214pt;}
.lsca{letter-spacing:0.614724pt;}
.ls43{letter-spacing:0.629764pt;}
.ls8a{letter-spacing:0.637255pt;}
.ls9a{letter-spacing:0.660541pt;}
.ls7c{letter-spacing:0.663756pt;}
.ls8d{letter-spacing:0.664259pt;}
.ls2f{letter-spacing:0.664314pt;}
.ls2d{letter-spacing:0.664926pt;}
.ls81{letter-spacing:0.665067pt;}
.ls9f{letter-spacing:0.665874pt;}
.ls78{letter-spacing:0.706185pt;}
.ls71{letter-spacing:0.725044pt;}
.lsd6{letter-spacing:0.726400pt;}
.ls6e{letter-spacing:0.729874pt;}
.lscb{letter-spacing:0.885486pt;}
.ls113{letter-spacing:0.890819pt;}
.ls11a{letter-spacing:0.908058pt;}
.ls104{letter-spacing:0.951733pt;}
.lse4{letter-spacing:0.957067pt;}
.lsf3{letter-spacing:0.958584pt;}
.lsf5{letter-spacing:0.963918pt;}
.lsf0{letter-spacing:0.988102pt;}
.lsf4{letter-spacing:0.989169pt;}
.lsf1{letter-spacing:0.993435pt;}
.ls62{letter-spacing:1.006172pt;}
.lsf2{letter-spacing:1.008508pt;}
.lsd3{letter-spacing:1.009015pt;}
.ls64{letter-spacing:1.009067pt;}
.lsb9{letter-spacing:1.011505pt;}
.ls32{letter-spacing:1.030834pt;}
.ls59{letter-spacing:1.033019pt;}
.ls10a{letter-spacing:1.036785pt;}
.ls38{letter-spacing:1.160697pt;}
.ls118{letter-spacing:1.165255pt;}
.ls9d{letter-spacing:1.166903pt;}
.ls89{letter-spacing:1.167207pt;}
.lsbc{letter-spacing:1.168015pt;}
.ls114{letter-spacing:1.170589pt;}
.lsa2{letter-spacing:1.172237pt;}
.lscf{letter-spacing:1.262881pt;}
.ls8c{letter-spacing:1.276058pt;}
.ls7b{letter-spacing:1.281391pt;}
.lsd7{letter-spacing:1.296508pt;}
.lsa5{letter-spacing:1.299096pt;}
.lsda{letter-spacing:1.302029pt;}
.ls9c{letter-spacing:1.304429pt;}
.lsd8{letter-spacing:1.307362pt;}
.ls108{letter-spacing:1.324785pt;}
.ls106{letter-spacing:1.325067pt;}
.lse1{letter-spacing:1.325255pt;}
.lsd9{letter-spacing:1.326903pt;}
.lsdb{letter-spacing:1.330118pt;}
.lse6{letter-spacing:1.330400pt;}
.lsd0{letter-spacing:1.330589pt;}
.lsdd{letter-spacing:1.332237pt;}
.ls65{letter-spacing:1.386686pt;}
.ls5f{letter-spacing:1.392133pt;}
.ls5e{letter-spacing:1.395406pt;}
.ls29{letter-spacing:1.496070pt;}
.lsba{letter-spacing:1.504020pt;}
.ls63{letter-spacing:1.509353pt;}
.ls47{letter-spacing:1.533291pt;}
.lse5{letter-spacing:1.698118pt;}
.ls105{letter-spacing:1.703452pt;}
.lsc2{letter-spacing:1.713574pt;}
.lsc8{letter-spacing:1.718908pt;}
.ls4e{letter-spacing:1.819979pt;}
.ls2b{letter-spacing:1.827528pt;}
.ls42{letter-spacing:1.961422pt;}
.ls5b{letter-spacing:2.057067pt;}
.ls69{letter-spacing:2.058682pt;}
.lsbb{letter-spacing:2.137346pt;}
.ls97{letter-spacing:2.187185pt;}
.ls77{letter-spacing:2.192518pt;}
.lsd5{letter-spacing:2.257574pt;}
.ls112{letter-spacing:2.315185pt;}
.ls90{letter-spacing:2.380455pt;}
.lsd4{letter-spacing:2.407835pt;}
.ls80{letter-spacing:2.444058pt;}
.lsc4{letter-spacing:2.449391pt;}
.ls10e{letter-spacing:2.581486pt;}
.lsff{letter-spacing:2.976518pt;}
.ls3e{letter-spacing:3.026442pt;}
.ls3d{letter-spacing:3.029674pt;}
.ls56{letter-spacing:3.031616pt;}
.ls111{letter-spacing:3.118881pt;}
.lsfe{letter-spacing:3.124214pt;}
.lsa0{letter-spacing:3.158451pt;}
.ls6c{letter-spacing:3.160838pt;}
.ls9b{letter-spacing:3.161346pt;}
.ls107{letter-spacing:3.186400pt;}
.ls37{letter-spacing:3.604072pt;}
.ls91{letter-spacing:3.822172pt;}
.ls10f{letter-spacing:3.824508pt;}
.lsc0{letter-spacing:3.825015pt;}
.ls72{letter-spacing:3.825067pt;}
.ls68{letter-spacing:3.975121pt;}
.lsce{letter-spacing:4.107174pt;}
.ls110{letter-spacing:4.112508pt;}
.lsae{letter-spacing:9.181032pt;}
.lsb1{letter-spacing:9.185992pt;}
.lsb2{letter-spacing:9.202260pt;}
.lsa1{letter-spacing:9.516533pt;}
.ls82{letter-spacing:9.521867pt;}
.lsb0{letter-spacing:9.758947pt;}
.lsb3{letter-spacing:9.763907pt;}
.ls21{letter-spacing:10.162685pt;}
.lsaf{letter-spacing:10.624392pt;}
.ls5{letter-spacing:10.626533pt;}
.lsab{letter-spacing:10.629352pt;}
.ls6{letter-spacing:10.631867pt;}
.lsdf{letter-spacing:10.968429pt;}
.ls10b{letter-spacing:11.377867pt;}
.ls70{letter-spacing:11.421762pt;}
.lse7{letter-spacing:11.593548pt;}
.ls3b{letter-spacing:11.593804pt;}
.ls4b{letter-spacing:11.594417pt;}
.ls35{letter-spacing:11.597579pt;}
.ls52{letter-spacing:11.598978pt;}
.ls53{letter-spacing:11.599590pt;}
.ls96{letter-spacing:11.629762pt;}
.lsde{letter-spacing:11.632696pt;}
.ls67{letter-spacing:11.635096pt;}
.lsb7{letter-spacing:11.649788pt;}
.lsdc{letter-spacing:11.657570pt;}
.ls117{letter-spacing:11.661255pt;}
.lse2{letter-spacing:11.662903pt;}
.lsad{letter-spacing:11.676336pt;}
.ls126{letter-spacing:11.954133pt;}
.ls125{letter-spacing:11.959467pt;}
.ls57{letter-spacing:12.046365pt;}
.lsa6{letter-spacing:12.429762pt;}
.lsa4{letter-spacing:12.435096pt;}
.ls6b{letter-spacing:12.696429pt;}
.ls127{letter-spacing:12.949375pt;}
.lsee{letter-spacing:13.043751pt;}
.lseb{letter-spacing:13.164290pt;}
.ls123{letter-spacing:13.230333pt;}
.lsb4{letter-spacing:13.281067pt;}
.lscd{letter-spacing:13.282118pt;}
.ls83{letter-spacing:13.282926pt;}
.ls7{letter-spacing:13.389734pt;}
.lsf9{letter-spacing:13.426429pt;}
.lse9{letter-spacing:13.426837pt;}
.lsfa{letter-spacing:13.514533pt;}
.ls6d{letter-spacing:13.649067pt;}
.lsa3{letter-spacing:14.152787pt;}
.ls66{letter-spacing:14.152838pt;}
.lsbf{letter-spacing:14.155682pt;}
.ls6a{letter-spacing:14.155733pt;}
.ls9e{letter-spacing:14.158121pt;}
.ls6f{letter-spacing:14.158172pt;}
.lsbd{letter-spacing:14.161015pt;}
.lse3{letter-spacing:14.276910pt;}
.ls103{letter-spacing:14.282243pt;}
.ls11d{letter-spacing:14.542881pt;}
.ls119{letter-spacing:14.548214pt;}
.lsea{letter-spacing:14.826661pt;}
.ls115{letter-spacing:15.294881pt;}
.lsf6{letter-spacing:15.335975pt;}
.lsf7{letter-spacing:15.341563pt;}
.ls2a{letter-spacing:15.384111pt;}
.ls7f{letter-spacing:15.395096pt;}
.ls7e{letter-spacing:15.400429pt;}
.ls102{letter-spacing:15.409177pt;}
.ls101{letter-spacing:15.414406pt;}
.ls98{letter-spacing:15.422400pt;}
.ls1{letter-spacing:15.942400pt;}
.lsd1{letter-spacing:16.020214pt;}
.ls93{letter-spacing:16.061762pt;}
.ls92{letter-spacing:16.076455pt;}
.ls10c{letter-spacing:16.082400pt;}
.ls11e{letter-spacing:16.089570pt;}
.ls120{letter-spacing:16.099562pt;}
.ls31{letter-spacing:16.287638pt;}
.lsc6{letter-spacing:16.440838pt;}
.ls8e{letter-spacing:16.446172pt;}
.ls11b{letter-spacing:16.455452pt;}
.lscc{letter-spacing:16.725841pt;}
.ls109{letter-spacing:16.763813pt;}
.ls87{letter-spacing:16.856429pt;}
.lsa8{letter-spacing:16.861762pt;}
.lsc3{letter-spacing:17.107505pt;}
.ls8b{letter-spacing:17.111247pt;}
.ls94{letter-spacing:17.112838pt;}
.ls76{letter-spacing:17.123096pt;}
.ls99{letter-spacing:17.128429pt;}
.lsb8{letter-spacing:17.773762pt;}
.ls11c{letter-spacing:17.908910pt;}
.ls86{letter-spacing:18.081067pt;}
.ls95{letter-spacing:18.168838pt;}
.ls74{letter-spacing:18.174172pt;}
.ls7d{letter-spacing:18.579505pt;}
.ls75{letter-spacing:18.584838pt;}
.ls10d{letter-spacing:18.717762pt;}
.ls116{letter-spacing:18.723096pt;}
.ls11f{letter-spacing:18.740800pt;}
.ls88{letter-spacing:19.075096pt;}
.ls8f{letter-spacing:20.897118pt;}
.ls7a{letter-spacing:22.801867pt;}
.lsfd{letter-spacing:29.347096pt;}
.ls2{letter-spacing:33.649067pt;}
.lsd2{letter-spacing:61.165762pt;}
.ls3{letter-spacing:62.432533pt;}
.ls4{letter-spacing:64.314231pt;}
.lsc1{letter-spacing:120.828455pt;}
.ls39{letter-spacing:174.052144pt;}
.ls58{letter-spacing:180.340975pt;}
.ls45{letter-spacing:184.008869pt;}
.ls48{letter-spacing:187.656069pt;}
.ls55{letter-spacing:189.151162pt;}
.lse0{letter-spacing:191.436785pt;}
.ls41{letter-spacing:195.395375pt;}
.ls4a{letter-spacing:197.754415pt;}
.ls4d{letter-spacing:198.370042pt;}
.ls4f{letter-spacing:199.089135pt;}
.ls51{letter-spacing:199.146042pt;}
.ls54{letter-spacing:200.770469pt;}
.ls33{letter-spacing:203.133868pt;}
.ls2c{letter-spacing:203.747077pt;}
.ls30{letter-spacing:206.856251pt;}
.ls34{letter-spacing:206.982828pt;}
.ls2e{letter-spacing:207.596037pt;}
.ls5a{letter-spacing:211.155766pt;}
.ls27{letter-spacing:217.464593pt;}
.ls25{letter-spacing:218.251552pt;}
.ls26{letter-spacing:221.336258pt;}
.ls28{letter-spacing:222.635377pt;}
.ls121{letter-spacing:293.089007pt;}
.ls124{letter-spacing:385.760375pt;}
.lse8{letter-spacing:455.014029pt;}
.lsc7{letter-spacing:494.285089pt;}
.ls73{letter-spacing:541.068455pt;}
.lsc5{letter-spacing:586.317089pt;}
.lsaa{letter-spacing:1024.846679pt;}
.ws75{word-spacing:-13.283467pt;}
.ws3{word-spacing:-11.955200pt;}
.ws6c{word-spacing:-11.596544pt;}
.ws8f{word-spacing:-11.118336pt;}
.ws19{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.ws2f{word-spacing:-9.729216pt;}
.ws9c{word-spacing:-3.762697pt;}
.ws68{word-spacing:-2.558707pt;}
.ws4f{word-spacing:-2.520230pt;}
.ws9e{word-spacing:-2.444158pt;}
.ws4e{word-spacing:-2.443277pt;}
.ws93{word-spacing:-2.019087pt;}
.ws70{word-spacing:-1.965953pt;}
.ws90{word-spacing:-1.916544pt;}
.ws8d{word-spacing:-1.915552pt;}
.ws91{word-spacing:-1.914560pt;}
.ws8e{word-spacing:-1.913568pt;}
.wscb{word-spacing:-1.806551pt;}
.ws32{word-spacing:-1.753418pt;}
.wsf0{word-spacing:-1.721549pt;}
.ws37{word-spacing:-1.692979pt;}
.ws50{word-spacing:-1.654502pt;}
.wsbc{word-spacing:-1.647150pt;}
.ws38{word-spacing:-1.630454pt;}
.ws51{word-spacing:-1.563120pt;}
.ws73{word-spacing:-1.487748pt;}
.ws6a{word-spacing:-1.370736pt;}
.ws5f{word-spacing:-1.351498pt;}
.ws69{word-spacing:-1.346688pt;}
.ws63{word-spacing:-1.332259pt;}
.ws60{word-spacing:-1.327450pt;}
.wsdb{word-spacing:-1.291162pt;}
.ws64{word-spacing:-1.264925pt;}
.ws42{word-spacing:-1.091779pt;}
.ws41{word-spacing:-0.995587pt;}
.ws8b{word-spacing:-0.933940pt;}
.ws14{word-spacing:-0.903276pt;}
.ws4d{word-spacing:-0.827251pt;}
.ws20{word-spacing:-0.797008pt;}
.ws71{word-spacing:-0.743874pt;}
.wsca{word-spacing:-0.637606pt;}
.ws2a{word-spacing:-0.584473pt;}
.ws52{word-spacing:-0.533866pt;}
.ws53{word-spacing:-0.509818pt;}
.wsd1{word-spacing:-0.478208pt;}
.ws15{word-spacing:-0.478205pt;}
.wsa2{word-spacing:-0.371937pt;}
.wsae{word-spacing:-0.318803pt;}
.wsde{word-spacing:-0.286925pt;}
.wsb{word-spacing:-0.265669pt;}
.wsdc{word-spacing:-0.239104pt;}
.ws34{word-spacing:-0.222163pt;}
.ws35{word-spacing:-0.214502pt;}
.ws21{word-spacing:-0.212535pt;}
.ws55{word-spacing:-0.211622pt;}
.ws39{word-spacing:-0.206813pt;}
.wscd{word-spacing:-0.191283pt;}
.ws9{word-spacing:-0.159402pt;}
.wsa4{word-spacing:-0.130831pt;}
.ws10{word-spacing:-0.106268pt;}
.wscf{word-spacing:-0.095642pt;}
.wsac{word-spacing:-0.055366pt;}
.ws6{word-spacing:-0.053134pt;}
.wse3{word-spacing:-0.047821pt;}
.ws6f{word-spacing:-0.003385pt;}
.ws7b{word-spacing:-0.001361pt;}
.wsed{word-spacing:-0.001348pt;}
.ws18{word-spacing:-0.000732pt;}
.ws1{word-spacing:-0.000170pt;}
.ws0{word-spacing:0.000000pt;}
.ws6d{word-spacing:0.046386pt;}
.wsce{word-spacing:0.047821pt;}
.ws8{word-spacing:0.053134pt;}
.ws67{word-spacing:0.072144pt;}
.ws48{word-spacing:0.081763pt;}
.ws54{word-spacing:0.091382pt;}
.wsd2{word-spacing:0.095642pt;}
.ws4{word-spacing:0.106268pt;}
.ws49{word-spacing:0.120960pt;}
.wsa3{word-spacing:0.129190pt;}
.wseb{word-spacing:0.143462pt;}
.ws4a{word-spacing:0.155520pt;}
.ws5{word-spacing:0.159402pt;}
.wsa6{word-spacing:0.204292pt;}
.wsc{word-spacing:0.212535pt;}
.ws1a{word-spacing:0.265669pt;}
.ws12{word-spacing:0.318803pt;}
.ws36{word-spacing:0.322243pt;}
.wse7{word-spacing:0.526029pt;}
.ws2e{word-spacing:0.531339pt;}
.wsd5{word-spacing:0.573850pt;}
.ws30{word-spacing:0.637606pt;}
.ws9a{word-spacing:0.662067pt;}
.ws97{word-spacing:0.663667pt;}
.ws7a{word-spacing:0.677054pt;}
.ws79{word-spacing:0.682218pt;}
.ws89{word-spacing:0.690740pt;}
.ws1f{word-spacing:0.743874pt;}
.wsdf{word-spacing:0.765133pt;}
.ws8a{word-spacing:0.797008pt;}
.ws28{word-spacing:0.956410pt;}
.wsd0{word-spacing:0.956416pt;}
.wse0{word-spacing:1.004237pt;}
.wsc5{word-spacing:1.009543pt;}
.ws7{word-spacing:1.115811pt;}
.wsf{word-spacing:1.168945pt;}
.ws3b{word-spacing:1.183162pt;}
.ws3a{word-spacing:1.250496pt;}
.ws88{word-spacing:1.275213pt;}
.ws1e{word-spacing:1.381481pt;}
.wse4{word-spacing:1.386803pt;}
.wsf1{word-spacing:1.434624pt;}
.wse9{word-spacing:1.482445pt;}
.ws87{word-spacing:1.594016pt;}
.ws96{word-spacing:1.726230pt;}
.ws7d{word-spacing:1.728677pt;}
.ws76{word-spacing:1.753418pt;}
.ws72{word-spacing:1.859685pt;}
.wsa{word-spacing:1.912819pt;}
.ws33{word-spacing:1.965953pt;}
.wsd7{word-spacing:2.056294pt;}
.wsa5{word-spacing:2.072221pt;}
.wsd3{word-spacing:2.090631pt;}
.wsd4{word-spacing:2.104115pt;}
.wsa9{word-spacing:2.125355pt;}
.wsaa{word-spacing:2.130832pt;}
.wse5{word-spacing:2.247578pt;}
.ws81{word-spacing:2.284756pt;}
.ws5a{word-spacing:2.375942pt;}
.ws43{word-spacing:2.385562pt;}
.ws44{word-spacing:2.404800pt;}
.wsaf{word-spacing:2.497292pt;}
.ws25{word-spacing:2.550426pt;}
.wsbb{word-spacing:2.603559pt;}
.ws5b{word-spacing:2.654899pt;}
.wsb1{word-spacing:2.816095pt;}
.wsdd{word-spacing:2.865664pt;}
.ws26{word-spacing:2.869229pt;}
.wse6{word-spacing:2.869248pt;}
.wsea{word-spacing:2.869931pt;}
.wsd6{word-spacing:2.870110pt;}
.wsc6{word-spacing:3.028630pt;}
.ws11{word-spacing:3.081764pt;}
.ws94{word-spacing:3.134898pt;}
.wsd{word-spacing:3.185311pt;}
.wse{word-spacing:3.188032pt;}
.ws4c{word-spacing:3.217622pt;}
.ws4b{word-spacing:3.275338pt;}
.ws7f{word-spacing:3.294300pt;}
.wsb0{word-spacing:3.400567pt;}
.ws6e{word-spacing:3.463468pt;}
.ws24{word-spacing:3.506835pt;}
.ws80{word-spacing:3.666237pt;}
.ws29{word-spacing:3.772505pt;}
.wsd8{word-spacing:3.777843pt;}
.ws9f{word-spacing:3.825638pt;}
.ws95{word-spacing:3.878772pt;}
.wsef{word-spacing:3.921306pt;}
.wsee{word-spacing:3.969126pt;}
.ws78{word-spacing:4.199714pt;}
.wse2{word-spacing:4.351693pt;}
.ws27{word-spacing:4.356977pt;}
.wse1{word-spacing:4.399514pt;}
.ws2b{word-spacing:4.516379pt;}
.ws61{word-spacing:4.684550pt;}
.ws62{word-spacing:4.708598pt;}
.ws23{word-spacing:4.941450pt;}
.ws1b{word-spacing:5.047717pt;}
.ws74{word-spacing:5.207119pt;}
.ws45{word-spacing:5.218416pt;}
.wsa1{word-spacing:5.260253pt;}
.wsba{word-spacing:5.313387pt;}
.ws2d{word-spacing:5.525922pt;}
.wsda{word-spacing:5.547213pt;}
.ws16{word-spacing:5.632190pt;}
.ws17{word-spacing:5.685324pt;}
.ws13{word-spacing:5.791591pt;}
.ws65{word-spacing:5.834045pt;}
.ws1d{word-spacing:6.057261pt;}
.ws66{word-spacing:6.132240pt;}
.ws47{word-spacing:6.416006pt;}
.wsa8{word-spacing:6.429198pt;}
.ws3c{word-spacing:6.690154pt;}
.ws46{word-spacing:6.709392pt;}
.ws3f{word-spacing:6.719011pt;}
.ws3e{word-spacing:6.757488pt;}
.ws3d{word-spacing:7.022016pt;}
.wse8{word-spacing:7.412224pt;}
.ws86{word-spacing:7.598143pt;}
.ws1c{word-spacing:8.288883pt;}
.wsec{word-spacing:8.559923pt;}
.ws40{word-spacing:8.690947pt;}
.ws5e{word-spacing:9.282528pt;}
.ws31{word-spacing:9.510962pt;}
.wsd9{word-spacing:9.516339pt;}
.ws2c{word-spacing:9.776631pt;}
.wsa0{word-spacing:9.882899pt;}
.ws59{word-spacing:10.177114pt;}
.ws57{word-spacing:10.686931pt;}
.ws22{word-spacing:10.733041pt;}
.ws58{word-spacing:10.965888pt;}
.ws5c{word-spacing:11.013984pt;}
.ws5d{word-spacing:11.018794pt;}
.ws56{word-spacing:11.042842pt;}
.wscc{word-spacing:11.104978pt;}
.ws6b{word-spacing:12.663627pt;}
.ws9b{word-spacing:15.010133pt;}
.wsad{word-spacing:15.945370pt;}
.wsab{word-spacing:20.485371pt;}
.wsa7{word-spacing:23.113232pt;}
.ws98{word-spacing:27.234133pt;}
.wsb7{word-spacing:86.407404pt;}
.wsb9{word-spacing:86.988587pt;}
.wsb5{word-spacing:88.133734pt;}
.wsb3{word-spacing:109.304003pt;}
.wsb6{word-spacing:121.070310pt;}
.wsc3{word-spacing:145.566515pt;}
.wsc1{word-spacing:158.405641pt;}
.wsb4{word-spacing:171.136111pt;}
.wsb8{word-spacing:177.857510pt;}
.wsc2{word-spacing:183.079646pt;}
.wsc4{word-spacing:193.435136pt;}
.wsbf{word-spacing:194.794231pt;}
.wsc8{word-spacing:223.562240pt;}
.wsc0{word-spacing:231.930880pt;}
.wsbd{word-spacing:242.760090pt;}
.wsbe{word-spacing:265.118515pt;}
.wsb2{word-spacing:268.035973pt;}
.wsc7{word-spacing:287.450829pt;}
.wsc9{word-spacing:347.226829pt;}
.ws9d{word-spacing:462.636577pt;}
.ws92{word-spacing:519.190119pt;}
.ws8c{word-spacing:530.308455pt;}
.ws99{word-spacing:542.603046pt;}
.ws82{word-spacing:671.718342pt;}
.ws85{word-spacing:685.586282pt;}
.ws7c{word-spacing:700.304363pt;}
.ws83{word-spacing:728.199643pt;}
.ws84{word-spacing:732.131549pt;}
.ws77{word-spacing:763.533664pt;}
.ws7e{word-spacing:785.212282pt;}
._0{margin-left:-10.616218pt;}
._19{margin-left:-9.540086pt;}
._7{margin-left:-6.588599pt;}
._3{margin-left:-5.308109pt;}
._2{margin-left:-4.399514pt;}
._2f{margin-left:-3.476458pt;}
._1a{margin-left:-2.551240pt;}
._6{margin-left:-0.956410pt;}
._17{width:0.894586pt;}
._1{width:2.665373pt;}
._20{width:3.899788pt;}
._32{width:6.216348pt;}
._15{width:7.120714pt;}
._18{width:9.166397pt;}
._d{width:11.476915pt;}
._54{width:12.849335pt;}
._4{width:13.963674pt;}
._5{width:15.685222pt;}
._b{width:16.684034pt;}
._a{width:17.640444pt;}
._12{width:18.857245pt;}
._8{width:20.350271pt;}
._9{width:22.050555pt;}
._23{width:23.750838pt;}
._13{width:24.866650pt;}
._c{width:26.088729pt;}
._53{width:27.040347pt;}
._14{width:28.267217pt;}
._31{width:29.489296pt;}
._55{width:31.274803pt;}
._e{width:33.899407pt;}
._11{width:35.174620pt;}
._2e{width:53.133867pt;}
._21{width:58.075316pt;}
._52{width:60.997679pt;}
._30{width:62.963632pt;}
._39{width:142.667212pt;}
._44{width:145.614336pt;}
._33{width:147.373250pt;}
._34{width:148.880497pt;}
._3a{width:153.052861pt;}
._1f{width:160.033329pt;}
._1e{width:160.922933pt;}
._1b{width:170.589661pt;}
._1c{width:173.523918pt;}
._1d{width:174.678110pt;}
._40{width:179.265833pt;}
._25{width:181.800106pt;}
._3c{width:183.612028pt;}
._24{width:189.189605pt;}
._3b{width:190.623273pt;}
._3d{width:193.757926pt;}
._36{width:200.572390pt;}
._35{width:205.115366pt;}
._4b{width:215.944273pt;}
._45{width:217.073187pt;}
._46{width:218.397594pt;}
._22{width:219.802660pt;}
._3e{width:222.242386pt;}
._37{width:233.599826pt;}
._4a{width:235.168234pt;}
._50{width:251.672789pt;}
._38{width:266.627261pt;}
._3f{width:277.984701pt;}
._4f{width:292.185088pt;}
._43{width:293.109931pt;}
._4e{width:311.361229pt;}
._4d{width:316.095488pt;}
._4c{width:334.629615pt;}
._51{width:378.538505pt;}
._2d{width:475.475798pt;}
._2a{width:478.318854pt;}
._49{width:480.073011pt;}
._2c{width:487.742402pt;}
._28{width:490.014351pt;}
._27{width:501.170114pt;}
._29{width:511.754769pt;}
._48{width:542.335693pt;}
._2b{width:543.775577pt;}
._26{width:554.893913pt;}
._47{width:585.756979pt;}
._42{width:624.252723pt;}
._f{width:1001.601154pt;}
._16{width:1699.326317pt;}
._41{width:1898.707200pt;}
._10{width:1919.960533pt;}
.fs9{font-size:26.566933pt;}
.fs1b{font-size:31.880533pt;}
.fs19{font-size:34.590048pt;}
.fs12{font-size:36.077792pt;}
.fsa{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fsd{font-size:38.304000pt;}
.fs14{font-size:39.850400pt;}
.fs8{font-size:40.381867pt;}
.fs16{font-size:42.077867pt;}
.fsc{font-size:42.507200pt;}
.fse{font-size:43.200000pt;}
.fs18{font-size:44.473344pt;}
.fs1c{font-size:45.429760pt;}
.fs1a{font-size:46.341280pt;}
.fs11{font-size:46.386176pt;}
.fsb{font-size:47.820800pt;}
.fsf{font-size:48.096000pt;}
.fs13{font-size:48.334453pt;}
.fs1d{font-size:49.829333pt;}
.fs6{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs17{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs10{font-size:57.600000pt;}
.fs0{font-size:64.000000pt;}
.fs15{font-size:74.387733pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:95.641600pt;}
.fs5{font-size:134.387200pt;}
.y86{bottom:-386.747640pt;}
.ya8{bottom:-370.905835pt;}
.ya7{bottom:-354.705900pt;}
.ya6{bottom:-338.505965pt;}
.ya5{bottom:-322.306030pt;}
.ya4{bottom:-306.178238pt;}
.ya3{bottom:-289.978303pt;}
.ya2{bottom:-273.778368pt;}
.ya1{bottom:-257.578433pt;}
.ya0{bottom:-241.378498pt;}
.y9f{bottom:-225.178562pt;}
.y9e{bottom:-208.978627pt;}
.y9d{bottom:-192.850836pt;}
.y9c{bottom:-169.378786pt;}
.y9b{bottom:-138.851052pt;}
.y9a{bottom:-122.651117pt;}
.y99{bottom:-106.451182pt;}
.y98{bottom:-90.251246pt;}
.y97{bottom:-74.051311pt;}
.y96{bottom:-57.923520pt;}
.y95{bottom:-27.611520pt;}
.y94{bottom:-8.099640pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:14.008270pt;}
.y4f{bottom:56.693333pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y4e{bottom:96.544000pt;}
.y1f6{bottom:100.144000pt;}
.y80{bottom:103.650667pt;}
.y4d{bottom:114.556000pt;}
.y1f5{bottom:117.358667pt;}
.y1c7{bottom:117.381333pt;}
.ydc{bottom:118.169333pt;}
.y7f{bottom:121.662667pt;}
.y21{bottom:123.790666pt;}
.y19d{bottom:125.210667pt;}
.y122{bottom:129.524000pt;}
.y1c6{bottom:132.058667pt;}
.y4c{bottom:132.568000pt;}
.yf8{bottom:133.310667pt;}
.y174{bottom:133.405333pt;}
.y1f4{bottom:134.574667pt;}
.ydb{bottom:136.182667pt;}
.y7e{bottom:139.674667pt;}
.y19c{bottom:143.224000pt;}
.y150{bottom:144.569333pt;}
.y1c5{bottom:146.670667pt;}
.y121{bottom:147.536000pt;}
.y4b{bottom:150.581333pt;}
.yf7{bottom:151.322667pt;}
.y173{bottom:151.417333pt;}
.yf9{bottom:151.605333pt;}
.y1f3{bottom:151.790667pt;}
.yda{bottom:154.194667pt;}
.y14f{bottom:154.824000pt;}
.y151{bottom:157.586667pt;}
.y7d{bottom:157.688000pt;}
.y19b{bottom:161.236000pt;}
.y1c4{bottom:161.282667pt;}
.y120{bottom:165.549333pt;}
.y4a{bottom:168.593333pt;}
.y1f2{bottom:169.005333pt;}
.yf6{bottom:169.336000pt;}
.y172{bottom:169.430667pt;}
.yd9{bottom:172.208000pt;}
.y18{bottom:175.052000pt;}
.y7c{bottom:175.700000pt;}
.y19a{bottom:179.249333pt;}
.y1c3{bottom:182.362667pt;}
.y11f{bottom:183.561333pt;}
.y1f1{bottom:186.221333pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y49{bottom:186.606667pt;}
.y171{bottom:187.442667pt;}
.yd8{bottom:190.220000pt;}
.y14e{bottom:190.610667pt;}
.y7b{bottom:193.713333pt;}
.y199{bottom:197.261333pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y11e{bottom:201.573333pt;}
.yf5{bottom:203.068000pt;}
.y1c2{bottom:203.444000pt;}
.y48{bottom:204.618667pt;}
.y170{bottom:205.456000pt;}
.y14d{bottom:208.622667pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y1f0{bottom:211.406667pt;}
.y7a{bottom:211.725333pt;}
.y198{bottom:215.273333pt;}
.yd7{bottom:216.202667pt;}
.y11d{bottom:219.586667pt;}
.yf4{bottom:221.080000pt;}
.y222{bottom:222.501333pt;}
.y47{bottom:222.630667pt;}
.y16f{bottom:223.468000pt;}
.y79{bottom:229.737333pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y14c{bottom:235.360000pt;}
.y1c1{bottom:236.862667pt;}
.y11c{bottom:237.598667pt;}
.y221{bottom:239.716000pt;}
.y46{bottom:240.644000pt;}
.y197{bottom:241.256000pt;}
.y16e{bottom:241.480000pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y1ef{bottom:246.474667pt;}
.y78{bottom:247.750667pt;}
.yf2{bottom:251.093333pt;}
.yd6{bottom:252.032213pt;}
.y93{bottom:252.901512pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y11b{bottom:255.612000pt;}
.y220{bottom:256.932000pt;}
.y45{bottom:258.656000pt;}
.yf1{bottom:261.349333pt;}
.yf3{bottom:264.112000pt;}
.y77{bottom:265.762667pt;}
.y16d{bottom:267.462667pt;}
.y1ee{bottom:267.954667pt;}
.yd5{bottom:268.048853pt;}
.y92{bottom:269.101447pt;}
.y14b{bottom:269.712000pt;}
.y1c0{bottom:269.845333pt;}
.y196{bottom:272.206667pt;}
.y11a{bottom:273.624000pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y44{bottom:276.669333pt;}
.y1ed{bottom:281.464000pt;}
.y76{bottom:283.776000pt;}
.yd4{bottom:284.065493pt;}
.y91{bottom:285.301382pt;}
.y21f{bottom:286.221333pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y1bf{bottom:287.857333pt;}
.y195{bottom:290.220000pt;}
.y119{bottom:291.636000pt;}
.y43{bottom:294.681333pt;}
.y1ec{bottom:294.973333pt;}
.yf0{bottom:297.134667pt;}
.y16c{bottom:298.413333pt;}
.yd3{bottom:300.080840pt;}
.y90{bottom:301.429174pt;}
.y75{bottom:301.788000pt;}
.yb0{bottom:302.652000pt;}
.y14a{bottom:303.016000pt;}
.y21e{bottom:303.437333pt;}
.y1be{bottom:305.869333pt;}
.y194{bottom:308.232000pt;}
.y1eb{bottom:308.482667pt;}
.yf{bottom:309.452000pt;}
.y118{bottom:309.649333pt;}
.y42{bottom:312.693333pt;}
.yef{bottom:315.146667pt;}
.yd2{bottom:316.097480pt;}
.y16b{bottom:316.426667pt;}
.y8f{bottom:317.629109pt;}
.y74{bottom:319.800000pt;}
.y21d{bottom:320.652000pt;}
.y149{bottom:321.029333pt;}
.y1ea{bottom:321.992000pt;}
.y1bd{bottom:323.882667pt;}
.y193{bottom:326.245333pt;}
.y117{bottom:327.661333pt;}
.y41{bottom:330.706667pt;}
.yd1{bottom:332.112827pt;}
.yee{bottom:333.160000pt;}
.yaf{bottom:333.602667pt;}
.y8e{bottom:333.829044pt;}
.y1e9{bottom:335.501333pt;}
.y16a{bottom:335.766667pt;}
.y73{bottom:337.813333pt;}
.y21c{bottom:337.868000pt;}
.y148{bottom:339.041333pt;}
.y1bc{bottom:341.894667pt;}
.ye{bottom:343.809333pt;}
.y192{bottom:344.257333pt;}
.y116{bottom:345.674667pt;}
.yd0{bottom:348.129467pt;}
.y40{bottom:348.718667pt;}
.y1e8{bottom:349.010667pt;}
.y8d{bottom:350.028979pt;}
.yae{bottom:351.614667pt;}
.y169{bottom:353.780000pt;}
.y21b{bottom:355.082667pt;}
.y72{bottom:355.825333pt;}
.y1bb{bottom:359.908000pt;}
.y191{bottom:362.269333pt;}
.yd{bottom:362.706666pt;}
.ycf{bottom:364.146107pt;}
.y8c{bottom:366.228914pt;}
.yea{bottom:366.482667pt;}
.y3f{bottom:366.732000pt;}
.y146{bottom:369.054667pt;}
.yad{bottom:369.626667pt;}
.y115{bottom:371.657333pt;}
.y21a{bottom:372.298667pt;}
.y71{bottom:373.838667pt;}
.y168{bottom:374.449333pt;}
.y1ba{bottom:377.920000pt;}
.y145{bottom:379.309333pt;}
.y190{bottom:380.282667pt;}
.ye9{bottom:380.510667pt;}
.yed{bottom:381.038667pt;}
.yec{bottom:381.170667pt;}
.y147{bottom:382.073333pt;}
.y8b{bottom:382.428850pt;}
.y3e{bottom:384.744000pt;}
.yce{bottom:386.372040pt;}
.yac{bottom:387.640000pt;}
.y219{bottom:389.514667pt;}
.y1e7{bottom:391.744000pt;}
.y70{bottom:391.850667pt;}
.y167{bottom:392.462667pt;}
.yeb{bottom:392.654667pt;}
.ye8{bottom:395.417333pt;}
.y1b9{bottom:395.932000pt;}
.y18f{bottom:398.294667pt;}
.y114{bottom:402.608000pt;}
.y3d{bottom:402.756000pt;}
.yab{bottom:405.652000pt;}
.y8a{bottom:405.828756pt;}
.y218{bottom:406.729333pt;}
.ycd{bottom:408.597973pt;}
.y1e6{bottom:409.757333pt;}
.y6f{bottom:409.862667pt;}
.y166{bottom:410.474667pt;}
.y1b8{bottom:413.945333pt;}
.y144{bottom:415.096000pt;}
.y18e{bottom:416.308000pt;}
.yaa{bottom:423.665333pt;}
.y217{bottom:423.945333pt;}
.ycc{bottom:424.614613pt;}
.y164{bottom:427.482667pt;}
.y6e{bottom:427.876000pt;}
.y3c{bottom:428.738667pt;}
.y1e5{bottom:429.097333pt;}
.ye7{bottom:430.772000pt;}
.y1b7{bottom:431.957333pt;}
.y143{bottom:433.108000pt;}
.y18d{bottom:434.320000pt;}
.y113{bottom:435.630667pt;}
.y89{bottom:436.356490pt;}
.y163{bottom:438.492000pt;}
.y165{bottom:439.514667pt;}
.ycb{bottom:440.629960pt;}
.y216{bottom:441.160000pt;}
.y6d{bottom:445.888000pt;}
.yc{bottom:446.990669pt;}
.y1e4{bottom:447.110667pt;}
.ye6{bottom:448.784000pt;}
.y1b6{bottom:449.970667pt;}
.y142{bottom:451.121333pt;}
.y18c{bottom:452.332000pt;}
.y88{bottom:452.556425pt;}
.y112{bottom:453.642667pt;}
.y162{bottom:457.528000pt;}
.y215{bottom:458.376000pt;}
.ya9{bottom:460.330667pt;}
.yca{bottom:462.855893pt;}
.yb{bottom:462.990669pt;}
.y6c{bottom:463.901333pt;}
.y1e3{bottom:466.450667pt;}
.ye5{bottom:466.796000pt;}
.y1b5{bottom:467.982667pt;}
.y87{bottom:468.756360pt;}
.y18b{bottom:470.345333pt;}
.y214{bottom:475.592000pt;}
.ya{bottom:478.990666pt;}
.y6b{bottom:481.913333pt;}
.y13e{bottom:484.444000pt;}
.y1e2{bottom:484.464000pt;}
.ye4{bottom:484.809333pt;}
.yc9{bottom:485.083120pt;}
.y84{bottom:485.581333pt;}
.y1b4{bottom:485.994667pt;}
.y111{bottom:486.666667pt;}
.y18a{bottom:488.357333pt;}
.y161{bottom:488.824000pt;}
.y213{bottom:492.806667pt;}
.y13d{bottom:494.486667pt;}
.y9{bottom:494.990666pt;}
.y3b{bottom:496.657333pt;}
.y85{bottom:498.708360pt;}
.yc8{bottom:501.098467pt;}
.ye3{bottom:502.821333pt;}
.y160{bottom:506.836000pt;}
.y6a{bottom:507.896000pt;}
.y13c{bottom:508.514667pt;}
.y141{bottom:509.042667pt;}
.y140{bottom:509.173333pt;}
.y212{bottom:510.022667pt;}
.y1b3{bottom:511.977333pt;}
.y1e1{bottom:515.760000pt;}
.yc7{bottom:517.115107pt;}
.y189{bottom:518.665333pt;}
.y110{bottom:519.689333pt;}
.y13f{bottom:520.657333pt;}
.ye2{bottom:520.834667pt;}
.y13b{bottom:523.421333pt;}
.y15f{bottom:524.849333pt;}
.y211{bottom:527.237333pt;}
.y3a{bottom:530.610667pt;}
.yc6{bottom:533.130453pt;}
.y1e0{bottom:533.772000pt;}
.y186{bottom:537.293733pt;}
.y188{bottom:537.630667pt;}
.y69{bottom:538.846667pt;}
.y15e{bottom:542.861333pt;}
.y1b2{bottom:542.928000pt;}
.y210{bottom:544.453333pt;}
.y10f{bottom:546.708000pt;}
.y39{bottom:548.622667pt;}
.yc5{bottom:549.147093pt;}
.y185{bottom:551.175133pt;}
.y187{bottom:551.575400pt;}
.y1df{bottom:551.785333pt;}
.y68{bottom:556.858667pt;}
.y13a{bottom:558.774667pt;}
.y15d{bottom:560.874667pt;}
.y1b1{bottom:560.941333pt;}
.y20f{bottom:561.669333pt;}
.y38{bottom:566.636000pt;}
.y1de{bottom:569.797333pt;}
.y182{bottom:571.264467pt;}
.yc4{bottom:571.373027pt;}
.y184{bottom:571.601400pt;}
.y8{bottom:573.786667pt;}
.y67{bottom:574.872000pt;}
.y139{bottom:576.786667pt;}
.y20e{bottom:578.884000pt;}
.y15c{bottom:578.886667pt;}
.y1b0{bottom:578.953333pt;}
.y10e{bottom:579.730667pt;}
.y37{bottom:584.648000pt;}
.y181{bottom:585.145867pt;}
.y183{bottom:585.546133pt;}
.y1dd{bottom:587.809333pt;}
.y15b{bottom:592.316000pt;}
.y7{bottom:592.685334pt;}
.y66{bottom:592.884000pt;}
.yc3{bottom:593.598960pt;}
.y138{bottom:594.800000pt;}
.y20d{bottom:596.100000pt;}
.y159{bottom:596.898667pt;}
.y1af{bottom:596.966667pt;}
.y36{bottom:602.660000pt;}
.y15a{bottom:603.621333pt;}
.y180{bottom:605.573400pt;}
.y1dc{bottom:605.822667pt;}
.yc2{bottom:609.615600pt;}
.y65{bottom:610.896000pt;}
.y17e{bottom:611.429200pt;}
.y10d{bottom:612.753333pt;}
.y137{bottom:612.812000pt;}
.y20c{bottom:613.314667pt;}
.y1ae{bottom:614.978667pt;}
.y158{bottom:616.621333pt;}
.y17f{bottom:619.516867pt;}
.y35{bottom:620.673333pt;}
.y1db{bottom:623.834667pt;}
.yc1{bottom:625.632240pt;}
.y64{bottom:628.909333pt;}
.y20b{bottom:630.530667pt;}
.y10c{bottom:630.766667pt;}
.y136{bottom:630.825333pt;}
.y1ad{bottom:632.990667pt;}
.y157{bottom:634.633333pt;}
.y34{bottom:638.685333pt;}
.y17d{bottom:639.544133pt;}
.yc0{bottom:641.765280pt;}
.y1da{bottom:641.846667pt;}
.y17b{bottom:645.399933pt;}
.y6{bottom:645.598667pt;}
.y63{bottom:646.921333pt;}
.y20a{bottom:647.746667pt;}
.y135{bottom:648.837333pt;}
.y1ac{bottom:651.004000pt;}
.y156{bottom:652.645333pt;}
.y17c{bottom:653.487600pt;}
.y33{bottom:656.698667pt;}
.y1d9{bottom:659.860000pt;}
.y10a{bottom:660.780000pt;}
.ybf{bottom:663.991213pt;}
.y62{bottom:664.934667pt;}
.y209{bottom:664.961333pt;}
.y134{bottom:666.849333pt;}
.y3{bottom:668.977329pt;}
.y109{bottom:671.034667pt;}
.y17a{bottom:673.514867pt;}
.y10b{bottom:673.797333pt;}
.y32{bottom:674.710667pt;}
.y1d8{bottom:677.872000pt;}
.y208{bottom:682.177333pt;}
.y153{bottom:682.497333pt;}
.y61{bottom:682.946667pt;}
.y133{bottom:684.862667pt;}
.ybe{bottom:686.217147pt;}
.y155{bottom:688.546667pt;}
.y177{bottom:692.407200pt;}
.y31{bottom:692.722667pt;}
.y1ab{bottom:692.756000pt;}
.y178{bottom:693.477533pt;}
.y1d7{bottom:695.885333pt;}
.y152{bottom:697.658667pt;}
.y207{bottom:699.392000pt;}
.y60{bottom:700.958667pt;}
.ybd{bottom:702.233787pt;}
.y132{bottom:702.874667pt;}
.y154{bottom:706.472000pt;}
.y108{bottom:706.820000pt;}
.y179{bottom:707.358933pt;}
.y30{bottom:710.736000pt;}
.y1aa{bottom:713.836000pt;}
.y1d6{bottom:713.897333pt;}
.y206{bottom:716.608000pt;}
.ybc{bottom:718.249133pt;}
.y5f{bottom:718.972000pt;}
.y131{bottom:720.888000pt;}
.y107{bottom:724.833333pt;}
.y2f{bottom:728.748000pt;}
.y1d5{bottom:731.909333pt;}
.y205{bottom:733.824000pt;}
.ybb{bottom:734.265773pt;}
.y1a9{bottom:734.917333pt;}
.y5e{bottom:736.984000pt;}
.y130{bottom:738.900000pt;}
.y176{bottom:740.028000pt;}
.y106{bottom:742.845333pt;}
.y1a8{bottom:749.594667pt;}
.y1d4{bottom:749.922667pt;}
.yba{bottom:750.281120pt;}
.y204{bottom:751.038667pt;}
.y5d{bottom:754.997333pt;}
.y12f{bottom:756.912000pt;}
.y2e{bottom:757.672000pt;}
.y105{bottom:760.858667pt;}
.y1a7{bottom:764.273333pt;}
.yb9{bottom:766.297760pt;}
.y1d3{bottom:767.934667pt;}
.y203{bottom:768.254667pt;}
.y5c{bottom:773.009333pt;}
.y12e{bottom:774.925333pt;}
.y2{bottom:781.661334pt;}
.y2d{bottom:781.781333pt;}
.yb8{bottom:782.314400pt;}
.y1a5{bottom:785.288000pt;}
.y202{bottom:785.469333pt;}
.y1d2{bottom:785.948000pt;}
.y102{bottom:788.257333pt;}
.y5b{bottom:791.021333pt;}
.y1a2{bottom:792.593333pt;}
.y2c{bottom:797.921333pt;}
.y103{bottom:797.993333pt;}
.yb7{bottom:798.329747pt;}
.y101{bottom:798.512000pt;}
.y1a4{bottom:799.900000pt;}
.y12d{bottom:800.908000pt;}
.y104{bottom:801.274667pt;}
.y201{bottom:802.685333pt;}
.y1d1{bottom:803.960000pt;}
.y1a1{bottom:807.205333pt;}
.y5a{bottom:809.034667pt;}
.y19f{bottom:811.881333pt;}
.y1a3{bottom:814.510667pt;}
.y1a6{bottom:814.512000pt;}
.y2b{bottom:818.400000pt;}
.y200{bottom:819.901333pt;}
.yb6{bottom:820.555680pt;}
.y1d0{bottom:821.972000pt;}
.y59{bottom:827.046667pt;}
.y2a{bottom:830.200000pt;}
.y100{bottom:834.437333pt;}
.ye1{bottom:835.017333pt;}
.y1a0{bottom:835.592000pt;}
.y1ff{bottom:837.116000pt;}
.yff{bottom:838.358667pt;}
.y1cf{bottom:839.985333pt;}
.y12c{bottom:841.042667pt;}
.yb5{bottom:842.782907pt;}
.y58{bottom:845.060000pt;}
.y29{bottom:850.680000pt;}
.y1fe{bottom:854.332000pt;}
.y12b{bottom:856.148707pt;}
.yfe{bottom:856.370667pt;}
.y1ce{bottom:857.997333pt;}
.yb4{bottom:858.798253pt;}
.y1{bottom:859.312000pt;}
.y57{bottom:863.072000pt;}
.ye0{bottom:865.968000pt;}
.y28{bottom:866.818667pt;}
.y19e{bottom:869.012000pt;}
.y12a{bottom:870.166907pt;}
.y175{bottom:871.042667pt;}
.y1fd{bottom:871.546667pt;}
.yb3{bottom:874.814893pt;}
.y1cd{bottom:876.010667pt;}
.y56{bottom:881.084000pt;}
.ydf{bottom:883.980000pt;}
.y27{bottom:884.017333pt;}
.y129{bottom:884.186347pt;}
.yfc{bottom:885.993333pt;}
.y1fc{bottom:888.762667pt;}
.yb2{bottom:890.830240pt;}
.yfd{bottom:891.825333pt;}
.y1cc{bottom:894.022667pt;}
.yfa{bottom:895.105333pt;}
.y128{bottom:898.370707pt;}
.y55{bottom:899.097333pt;}
.yfb{bottom:901.841333pt;}
.yde{bottom:901.993333pt;}
.y1fb{bottom:905.978667pt;}
.y83{bottom:907.066667pt;}
.y1cb{bottom:912.034667pt;}
.y127{bottom:912.719987pt;}
.yb1{bottom:913.057467pt;}
.y54{bottom:917.109333pt;}
.ydd{bottom:920.005333pt;}
.y1fa{bottom:923.193333pt;}
.y26{bottom:925.198667pt;}
.y126{bottom:926.904347pt;}
.y1ca{bottom:930.048000pt;}
.y82{bottom:938.017333pt;}
.y1f9{bottom:940.409333pt;}
.y125{bottom:940.923787pt;}
.y53{bottom:943.092000pt;}
.y1c9{bottom:948.060000pt;}
.y25{bottom:952.217333pt;}
.y81{bottom:956.030667pt;}
.y1f8{bottom:957.624000pt;}
.y124{bottom:960.841907pt;}
.y1c8{bottom:966.073333pt;}
.y52{bottom:974.042667pt;}
.y1f7{bottom:974.840000pt;}
.y24{bottom:977.906667pt;}
.y51{bottom:992.056000pt;}
.y123{bottom:993.372000pt;}
.y22{bottom:1011.514667pt;}
.y50{bottom:1038.548000pt;}
.h38{height:23.304670pt;}
.h28{height:25.610524pt;}
.he{height:27.188522pt;}
.h24{height:28.065397pt;}
.h14{height:28.204313pt;}
.h7{height:28.560000pt;}
.h15{height:28.792969pt;}
.h20{height:29.210343pt;}
.h27{height:29.599908pt;}
.h46{height:31.072763pt;}
.h12{height:31.157778pt;}
.h22{height:31.558400pt;}
.h19{height:31.809375pt;}
.h3e{height:32.102400pt;}
.h44{height:32.845716pt;}
.h45{height:33.209155pt;}
.h1b{height:33.908295pt;}
.h1c{height:34.001067pt;}
.h47{height:34.574438pt;}
.h17{height:34.897781pt;}
.hf{height:34.957005pt;}
.h49{height:35.052646pt;}
.h16{height:35.109141pt;}
.h1a{height:35.414437pt;}
.h1d{height:35.764547pt;}
.h10{height:38.415786pt;}
.h11{height:38.840857pt;}
.hb{height:38.947124pt;}
.h34{height:40.508605pt;}
.h35{height:40.567085pt;}
.h36{height:40.572045pt;}
.h6{height:40.800000pt;}
.h40{height:40.964400pt;}
.h37{height:41.231725pt;}
.h3f{height:41.285014pt;}
.h25{height:41.524400pt;}
.h18{height:42.046875pt;}
.h3c{height:42.244400pt;}
.h3b{height:42.649733pt;}
.h3{height:42.840000pt;}
.h1f{height:43.206893pt;}
.h1e{height:43.212066pt;}
.h9{height:45.271688pt;}
.h31{height:46.748602pt;}
.hd{height:48.481423pt;}
.h2b{height:48.885242pt;}
.h2{height:48.960000pt;}
.h41{height:50.843733pt;}
.h42{height:50.849067pt;}
.h33{height:51.460478pt;}
.h32{height:51.465811pt;}
.h29{height:51.546575pt;}
.h2d{height:54.526190pt;}
.h2a{height:54.644400pt;}
.h21{height:57.799269pt;}
.h39{height:61.128021pt;}
.h23{height:61.133355pt;}
.h48{height:64.183671pt;}
.h2c{height:64.570575pt;}
.h2f{height:64.671908pt;}
.hc{height:69.148877pt;}
.h5{height:69.360000pt;}
.h30{height:74.258688pt;}
.h3d{height:77.972400pt;}
.ha{height:83.992000pt;}
.h26{height:91.514575pt;}
.h43{height:92.652650pt;}
.h4{height:105.826671pt;}
.h2e{height:113.202688pt;}
.h3a{height:118.120021pt;}
.h13{height:232.807200pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:139.321730pt;}
.w5{width:470.016000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x24{left:-27.392400pt;}
.x25{left:-1.904484pt;}
.x0{left:0.000000pt;}
.x6{left:51.605861pt;}
.x1{left:90.706667pt;}
.x27{left:93.063600pt;}
.x2{left:94.486667pt;}
.x5{left:102.046667pt;}
.x9{left:108.542667pt;}
.x7{left:109.606667pt;}
.x8a{left:110.680200pt;}
.x90{left:113.138667pt;}
.x8c{left:114.936200pt;}
.x5c{left:116.284547pt;}
.x9f{left:118.784000pt;}
.x8e{left:121.273333pt;}
.x8d{left:123.482400pt;}
.x9d{left:126.432000pt;}
.x8{left:129.929333pt;}
.x9e{left:131.106667pt;}
.x7a{left:132.797333pt;}
.x2f{left:134.223507pt;}
.x9c{left:135.530667pt;}
.x2e{left:136.528227pt;}
.x2a{left:137.676707pt;}
.x2c{left:138.588507pt;}
.x31{left:139.938747pt;}
.x32{left:140.850547pt;}
.x30{left:142.785373pt;}
.x33{left:144.127853pt;}
.x2b{left:145.220720pt;}
.x34{left:146.493360pt;}
.x85{left:148.206467pt;}
.x29{left:149.135640pt;}
.x50{left:150.405333pt;}
.x7b{left:154.316000pt;}
.x23{left:161.844000pt;}
.xa{left:167.432000pt;}
.x5e{left:174.487667pt;}
.x5d{left:177.267747pt;}
.x60{left:179.752000pt;}
.x4{left:180.874667pt;}
.x3a{left:188.340000pt;}
.x8b{left:195.707733pt;}
.x62{left:199.854667pt;}
.x91{left:201.342667pt;}
.x61{left:202.634667pt;}
.xa0{left:205.145333pt;}
.x92{left:208.474667pt;}
.x2d{left:209.496800pt;}
.x3b{left:211.358667pt;}
.x5b{left:218.241333pt;}
.x63{left:222.410667pt;}
.xa3{left:224.086667pt;}
.xa4{left:225.868000pt;}
.x1f{left:226.996000pt;}
.x20{left:233.638667pt;}
.x28{left:236.264000pt;}
.x6f{left:238.600000pt;}
.x68{left:245.532000pt;}
.x84{left:248.374667pt;}
.x69{left:250.141333pt;}
.x89{left:256.064400pt;}
.x3f{left:258.484000pt;}
.x40{left:259.833333pt;}
.x6a{left:262.344000pt;}
.x13{left:264.317333pt;}
.x67{left:265.322667pt;}
.x14{left:270.958667pt;}
.x65{left:272.970667pt;}
.x17{left:277.072000pt;}
.x94{left:278.476000pt;}
.x66{left:280.188000pt;}
.x18{left:283.714667pt;}
.x70{left:287.560000pt;}
.x35{left:290.349333pt;}
.x41{left:291.568000pt;}
.x3c{left:295.188000pt;}
.x47{left:296.292000pt;}
.x93{left:303.320000pt;}
.x1d{left:308.165333pt;}
.x43{left:310.097333pt;}
.x42{left:312.877333pt;}
.x3d{left:314.320000pt;}
.x45{left:318.728000pt;}
.x1e{left:321.448000pt;}
.x51{left:323.856000pt;}
.x71{left:328.558667pt;}
.x46{left:330.930667pt;}
.x44{left:332.653333pt;}
.x74{left:333.722667pt;}
.x48{left:336.897333pt;}
.x8f{left:338.658667pt;}
.x5f{left:344.038667pt;}
.x52{left:349.744000pt;}
.x15{left:351.970667pt;}
.x75{left:353.709333pt;}
.x16{left:358.612000pt;}
.x6b{left:362.133333pt;}
.x76{left:367.830667pt;}
.x38{left:372.170667pt;}
.x5a{left:373.080000pt;}
.x6c{left:374.318667pt;}
.x7c{left:376.661333pt;}
.x53{left:384.368000pt;}
.x4c{left:387.140000pt;}
.x95{left:388.213333pt;}
.x4b{left:391.844000pt;}
.x39{left:394.621333pt;}
.x49{left:397.734667pt;}
.x3{left:404.408000pt;}
.x4d{left:407.042667pt;}
.x21{left:410.861333pt;}
.x4f{left:413.174667pt;}
.x22{left:424.144000pt;}
.x54{left:427.014667pt;}
.x4e{left:428.062667pt;}
.x77{left:432.118667pt;}
.x3e{left:434.266667pt;}
.x55{left:439.201333pt;}
.xb{left:443.298667pt;}
.x64{left:447.202667pt;}
.x86{left:448.910600pt;}
.xc{left:449.940000pt;}
.xd{left:453.317333pt;}
.xe{left:459.958667pt;}
.x78{left:461.137333pt;}
.x26{left:478.263480pt;}
.x79{left:503.866667pt;}
.x56{left:510.585333pt;}
.x19{left:522.221333pt;}
.x7f{left:525.458667pt;}
.x57{left:527.917333pt;}
.x1a{left:528.862667pt;}
.x98{left:531.165333pt;}
.x80{left:536.121333pt;}
.x97{left:540.072000pt;}
.x82{left:552.886667pt;}
.x58{left:554.892000pt;}
.x96{left:556.008000pt;}
.x87{left:563.797267pt;}
.x83{left:566.170667pt;}
.x59{left:573.970667pt;}
.x1b{left:596.202667pt;}
.xa1{left:599.212000pt;}
.x88{left:602.621867pt;}
.x1c{left:609.486667pt;}
.x9b{left:615.394667pt;}
.x36{left:620.129333pt;}
.xa2{left:623.122667pt;}
.x9a{left:624.301333pt;}
.x81{left:632.388000pt;}
.x37{left:633.413333pt;}
.x7d{left:634.437333pt;}
.x99{left:640.901333pt;}
.x7e{left:649.292000pt;}
.x72{left:650.382667pt;}
.x73{left:660.781333pt;}
.xf{left:667.293333pt;}
.x6d{left:672.933333pt;}
.x10{left:673.936000pt;}
.x4a{left:676.165333pt;}
.x11{left:680.584000pt;}
.x6e{left:686.216000pt;}
.x12{left:687.225333pt;}
}




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