
    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_f92dcd4988d944c33f652503.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_5715706f6aa2396ff47d98db.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b75204419c4c0d3ec0803183.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_25186dc0262aa7f0f1d7e86e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.123000;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_d74efa75994c40bdde7843e6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8f7072e8b1b9dee70d3228fb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e8ea7a35a592ec1a2d9b8ce0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.196000;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_2004063e501139d377d55562.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666000;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_b53897171f16ffd5f04c72ca.woff2')format("woff");}.ffb{font-family:ffb;line-height:3.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d68ac1e54387de3094611ef8.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_3e53dd29935ee7a8e684fd1f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5c876962a8a069f43a2503c9.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.173828;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_48aba273f19f75e1399d6193.woff2')format("woff");}.fff{font-family:fff;line-height:1.006836;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_7aca71a43e0de4346f81491d.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.206055;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_7bd0e5125e809d105c5f38e4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.939941;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_0a55d9d72f8ba19ed0684a89.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.727539;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_a153a6202416d63808b0a0bb.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.752441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_4e0f77894855f890687804f4.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.775391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_5c876962a8a069f43a2503c9.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.173828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_20dd117be865f2ef8560c28e.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_673728dead4406a15b60d139.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_9f50a8bd8b35fdeef09d6507.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.939941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_fabd14750e67e1bf1eebd74a.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_4e0f77894855f890687804f4.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.775391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_a06d12083f87709fd6b84a84.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_c4dc386c8a2a8258088ecaba.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.867000;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;}
.m9{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m18{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);}
.m14{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);}
.m4{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);}
.m8{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);}
.m1b{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);}
.m27{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);}
.m1d{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);}
.m6{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);}
.m29{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);}
.m10{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);}
.m1f{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);}
.m2{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);}
.me{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);}
.m19{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);}
.mc{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);}
.m24{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);}
.m2a{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);}
.m2c{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);}
.m2b{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);}
.m15{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);}
.m25{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);}
.m22{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);}
.m16{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);}
.m12{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);}
.md{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);}
.m28{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);}
.m1e{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);}
.ma{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.m5{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.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);}
.m1c{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);}
.m21{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);}
.m1a{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);}
.m26{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);}
.m17{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);}
.m23{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);}
.v12{vertical-align:-48.450000px;}
.v13{vertical-align:-46.578000px;}
.v2{vertical-align:-11.958000px;}
.v17{vertical-align:-10.464000px;}
.v19{vertical-align:-8.964000px;}
.v1b{vertical-align:-1.082160px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:3.558000px;}
.v11{vertical-align:5.622000px;}
.v10{vertical-align:10.344000px;}
.vb{vertical-align:14.766000px;}
.v8{vertical-align:17.274000px;}
.v1{vertical-align:19.530000px;}
.v3{vertical-align:21.696000px;}
.va{vertical-align:24.684000px;}
.v1a{vertical-align:32.874000px;}
.v15{vertical-align:37.974000px;}
.vd{vertical-align:39.456000px;}
.v5{vertical-align:40.464000px;}
.v9{vertical-align:41.730000px;}
.v18{vertical-align:47.820000px;}
.v6{vertical-align:57.744000px;}
.ve{vertical-align:63.216000px;}
.v4{vertical-align:108.732000px;}
.v7{vertical-align:113.826000px;}
.v14{vertical-align:122.286000px;}
.vc{vertical-align:191.880000px;}
.v16{vertical-align:247.788000px;}
.ls9b{letter-spacing:-2.062116px;}
.ls82{letter-spacing:-1.773540px;}
.ls81{letter-spacing:-0.402804px;}
.ls86{letter-spacing:-0.222444px;}
.ls84{letter-spacing:-0.180360px;}
.ls7d{letter-spacing:-0.120240px;}
.ls77{letter-spacing:-0.114228px;}
.ls79{letter-spacing:-0.108216px;}
.ls7b{letter-spacing:-0.102204px;}
.ls80{letter-spacing:-0.096192px;}
.ls9c{letter-spacing:-0.090180px;}
.ls9d{letter-spacing:-0.084168px;}
.ls7a{letter-spacing:-0.048096px;}
.ls76{letter-spacing:-0.042084px;}
.ls72{letter-spacing:-0.038304px;}
.ls9a{letter-spacing:-0.037800px;}
.ls74{letter-spacing:-0.036072px;}
.ls7c{letter-spacing:-0.030060px;}
.ls97{letter-spacing:-0.028728px;}
.ls85{letter-spacing:-0.024048px;}
.ls75{letter-spacing:-0.018036px;}
.ls73{letter-spacing:-0.014364px;}
.ls78{letter-spacing:-0.012024px;}
.ls7e{letter-spacing:-0.006012px;}
.ls7f{letter-spacing:-0.005400px;}
.ls98{letter-spacing:-0.004788px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000061px;}
.lsb0{letter-spacing:0.000096px;}
.lsa5{letter-spacing:0.000208px;}
.lsab{letter-spacing:0.000271px;}
.ls27{letter-spacing:0.000353px;}
.ls5e{letter-spacing:0.000366px;}
.ls88{letter-spacing:0.000435px;}
.lsad{letter-spacing:0.000566px;}
.lsa2{letter-spacing:0.000800px;}
.lsa9{letter-spacing:0.001133px;}
.lsa7{letter-spacing:0.002074px;}
.lsa0{letter-spacing:0.002856px;}
.ls9f{letter-spacing:0.003040px;}
.lsae{letter-spacing:0.003178px;}
.lsd{letter-spacing:0.003389px;}
.lsaa{letter-spacing:0.004090px;}
.lsac{letter-spacing:0.004666px;}
.ls5{letter-spacing:0.004766px;}
.ls8e{letter-spacing:0.005400px;}
.lsaf{letter-spacing:0.005873px;}
.ls6d{letter-spacing:0.006012px;}
.ls70{letter-spacing:0.012024px;}
.ls94{letter-spacing:0.016200px;}
.ls2{letter-spacing:0.016777px;}
.ls62{letter-spacing:0.018036px;}
.ls8f{letter-spacing:0.021600px;}
.ls64{letter-spacing:0.024048px;}
.ls6b{letter-spacing:0.030060px;}
.ls8{letter-spacing:0.032226px;}
.ls8b{letter-spacing:0.032400px;}
.ls63{letter-spacing:0.036072px;}
.ls6a{letter-spacing:0.042084px;}
.ls95{letter-spacing:0.043200px;}
.ls93{letter-spacing:0.048096px;}
.ls66{letter-spacing:0.048600px;}
.ls90{letter-spacing:0.054000px;}
.ls67{letter-spacing:0.054108px;}
.ls65{letter-spacing:0.060120px;}
.ls69{letter-spacing:0.066132px;}
.ls91{letter-spacing:0.078156px;}
.ls68{letter-spacing:0.081000px;}
.ls61{letter-spacing:0.084168px;}
.ls6c{letter-spacing:0.090180px;}
.ls6e{letter-spacing:0.096192px;}
.ls8c{letter-spacing:0.097200px;}
.ls6f{letter-spacing:0.102204px;}
.ls83{letter-spacing:0.120240px;}
.ls9e{letter-spacing:0.144288px;}
.ls8d{letter-spacing:0.150300px;}
.ls99{letter-spacing:0.156312px;}
.ls60{letter-spacing:0.167580px;}
.ls87{letter-spacing:0.180360px;}
.ls5f{letter-spacing:0.181944px;}
.ls8a{letter-spacing:0.191520px;}
.ls2c{letter-spacing:0.542815px;}
.ls3c{letter-spacing:0.548815px;}
.ls42{letter-spacing:0.571200px;}
.ls26{letter-spacing:0.648088px;}
.ls4a{letter-spacing:0.741292px;}
.ls40{letter-spacing:0.742200px;}
.ls34{letter-spacing:0.745331px;}
.ls44{letter-spacing:0.747292px;}
.ls19{letter-spacing:0.748200px;}
.ls48{letter-spacing:0.751331px;}
.ls46{letter-spacing:0.862200px;}
.ls5a{letter-spacing:0.870783px;}
.ls15{letter-spacing:0.896700px;}
.ls58{letter-spacing:0.994200px;}
.ls5b{letter-spacing:0.999292px;}
.ls47{letter-spacing:1.017886px;}
.ls50{letter-spacing:1.134571px;}
.ls4b{letter-spacing:1.309331px;}
.ls37{letter-spacing:1.315331px;}
.ls4c{letter-spacing:1.317292px;}
.ls51{letter-spacing:1.318200px;}
.ls12{letter-spacing:1.342200px;}
.ls20{letter-spacing:1.348200px;}
.ls57{letter-spacing:1.452571px;}
.ls33{letter-spacing:1.455507px;}
.ls14{letter-spacing:1.464783px;}
.ls13{letter-spacing:1.492766px;}
.ls3e{letter-spacing:1.903331px;}
.ls31{letter-spacing:1.907108px;}
.ls2b{letter-spacing:1.914583px;}
.ls2f{letter-spacing:2.499292px;}
.ls52{letter-spacing:2.702815px;}
.ls54{letter-spacing:2.905331px;}
.lsa4{letter-spacing:2.953741px;}
.ls7{letter-spacing:3.352200px;}
.lsb{letter-spacing:3.412200px;}
.ls59{letter-spacing:4.280815px;}
.ls53{letter-spacing:4.302571px;}
.ls4{letter-spacing:11.954850px;}
.ls17{letter-spacing:12.339483px;}
.ls3d{letter-spacing:12.724438px;}
.ls18{letter-spacing:13.119292px;}
.ls21{letter-spacing:13.120766px;}
.lsa8{letter-spacing:13.448026px;}
.lsb1{letter-spacing:13.448045px;}
.lsa1{letter-spacing:13.628743px;}
.ls16{letter-spacing:13.713292px;}
.lsc{letter-spacing:13.716282px;}
.ls22{letter-spacing:14.103483px;}
.ls28{letter-spacing:14.671914px;}
.ls5d{letter-spacing:14.884124px;}
.ls1d{letter-spacing:14.943292px;}
.ls6{letter-spacing:14.944200px;}
.ls4e{letter-spacing:14.947331px;}
.ls4d{letter-spacing:15.038201px;}
.ls1c{letter-spacing:15.047090px;}
.ls1b{letter-spacing:15.048469px;}
.ls3{letter-spacing:15.066607px;}
.lsa{letter-spacing:16.182788px;}
.lsa3{letter-spacing:16.676400px;}
.lsa6{letter-spacing:16.682400px;}
.ls25{letter-spacing:16.854017px;}
.ls89{letter-spacing:17.935200px;}
.ls41{letter-spacing:18.052438px;}
.ls10{letter-spacing:18.069483px;}
.ls2e{letter-spacing:18.095108px;}
.ls56{letter-spacing:18.097331px;}
.ls29{letter-spacing:18.101675px;}
.ls4f{letter-spacing:18.693292px;}
.ls1e{letter-spacing:18.695675px;}
.ls2a{letter-spacing:19.263483px;}
.lsf{letter-spacing:20.610017px;}
.ls24{letter-spacing:20.883193px;}
.ls32{letter-spacing:21.994514px;}
.ls3a{letter-spacing:22.111997px;}
.ls3b{letter-spacing:22.112507px;}
.lse{letter-spacing:23.800840px;}
.ls1{letter-spacing:28.453654px;}
.ls38{letter-spacing:34.191886px;}
.ls30{letter-spacing:48.014153px;}
.ls2d{letter-spacing:49.287886px;}
.ls45{letter-spacing:59.774100px;}
.ls36{letter-spacing:62.767200px;}
.ls43{letter-spacing:63.477886px;}
.ls49{letter-spacing:63.483886px;}
.ls35{letter-spacing:63.511200px;}
.ls1f{letter-spacing:63.626400px;}
.ls3f{letter-spacing:64.426514px;}
.ls11{letter-spacing:230.390400px;}
.ls5c{letter-spacing:504.774571px;}
.ls55{letter-spacing:542.286571px;}
.ls39{letter-spacing:667.407507px;}
.ls92{letter-spacing:689.047344px;}
.ls1a{letter-spacing:770.138700px;}
.ls71{letter-spacing:848.971332px;}
.ls96{letter-spacing:849.309228px;}
.ls23{letter-spacing:941.563200px;}
.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;}
}
.ws91{word-spacing:-60.120000px;}
.wsd8{word-spacing:-54.000000px;}
.ws89{word-spacing:-50.888152px;}
.wsc{word-spacing:-22.718660px;}
.ws94{word-spacing:-15.048036px;}
.ws93{word-spacing:-14.987916px;}
.ws22{word-spacing:-14.943900px;}
.wscd{word-spacing:-13.449600px;}
.wsd7{word-spacing:-12.161520px;}
.ws8f{word-spacing:-12.151944px;}
.ws90{word-spacing:-11.970000px;}
.ws2e{word-spacing:-11.955150px;}
.ws8a{word-spacing:-11.357400px;}
.wsb{word-spacing:-10.460700px;}
.ws95{word-spacing:-9.000000px;}
.ws7c{word-spacing:-4.233600px;}
.ws88{word-spacing:-3.526760px;}
.wsa8{word-spacing:-3.498984px;}
.wsa9{word-spacing:-3.402792px;}
.ws10e{word-spacing:-3.347434px;}
.ws61{word-spacing:-3.227882px;}
.ws6a{word-spacing:-3.108331px;}
.wsf1{word-spacing:-3.102192px;}
.ws6b{word-spacing:-3.048556px;}
.wsfc{word-spacing:-2.988780px;}
.ws109{word-spacing:-2.630126px;}
.wsb9{word-spacing:-2.458908px;}
.ws155{word-spacing:-2.367130px;}
.ws10d{word-spacing:-2.331248px;}
.wsda{word-spacing:-2.211697px;}
.ws8d{word-spacing:-2.151922px;}
.wscb{word-spacing:-2.092146px;}
.wsb1{word-spacing:-2.056104px;}
.wse5{word-spacing:-2.044080px;}
.ws5a{word-spacing:-2.032370px;}
.wsb2{word-spacing:-1.953900px;}
.ws101{word-spacing:-1.912819px;}
.ws68{word-spacing:-1.853044px;}
.ws1b{word-spacing:-1.829146px;}
.ws10a{word-spacing:-1.793268px;}
.wsf3{word-spacing:-1.707408px;}
.ws2b{word-spacing:-1.673717px;}
.wsf4{word-spacing:-1.623240px;}
.ws67{word-spacing:-1.613941px;}
.ws39{word-spacing:-1.554166px;}
.ws11c{word-spacing:-1.506355px;}
.wse4{word-spacing:-1.448892px;}
.ws72{word-spacing:-1.434614px;}
.ws114{word-spacing:-1.398758px;}
.ws102{word-spacing:-1.315063px;}
.ws69{word-spacing:-1.255288px;}
.ws64{word-spacing:-1.195512px;}
.ws10b{word-spacing:-1.075961px;}
.wsc4{word-spacing:-1.052100px;}
.wsa5{word-spacing:-1.028052px;}
.ws50{word-spacing:-1.016185px;}
.wsa6{word-spacing:-1.016028px;}
.wse3{word-spacing:-0.985968px;}
.wsfe{word-spacing:-0.956410px;}
.ws121{word-spacing:-0.922714px;}
.ws120{word-spacing:-0.914573px;}
.wsff{word-spacing:-0.896634px;}
.wsc3{word-spacing:-0.877752px;}
.ws62{word-spacing:-0.777083px;}
.ws31{word-spacing:-0.657532px;}
.ws153{word-spacing:-0.591782px;}
.wscc{word-spacing:-0.537984px;}
.ws26{word-spacing:-0.478205px;}
.ws11f{word-spacing:-0.430387px;}
.wsdf{word-spacing:-0.420840px;}
.ws35{word-spacing:-0.358654px;}
.wsea{word-spacing:-0.342684px;}
.wsb8{word-spacing:-0.336672px;}
.wsd9{word-spacing:-0.322790px;}
.ws2f{word-spacing:-0.298878px;}
.wsdc{word-spacing:-0.277704px;}
.wsbe{word-spacing:-0.276552px;}
.ws9d{word-spacing:-0.272916px;}
.ws123{word-spacing:-0.268992px;}
.wsbc{word-spacing:-0.240480px;}
.ws43{word-spacing:-0.239102px;}
.wsc9{word-spacing:-0.234468px;}
.ws12{word-spacing:-0.215194px;}
.ws24{word-spacing:-0.179327px;}
.ws12d{word-spacing:-0.161395px;}
.ws25{word-spacing:-0.119551px;}
.ws11e{word-spacing:-0.107597px;}
.wsdd{word-spacing:-0.081396px;}
.ws9e{word-spacing:-0.076608px;}
.ws92{word-spacing:-0.060120px;}
.ws21{word-spacing:-0.059776px;}
.wsdb{word-spacing:-0.057456px;}
.ws16{word-spacing:-0.053798px;}
.ws9c{word-spacing:-0.052668px;}
.wsbb{word-spacing:-0.030060px;}
.ws11d{word-spacing:-0.015168px;}
.ws124{word-spacing:-0.013517px;}
.wsbd{word-spacing:-0.012024px;}
.ws140{word-spacing:-0.011453px;}
.ws135{word-spacing:-0.011107px;}
.ws138{word-spacing:-0.010896px;}
.ws137{word-spacing:-0.009302px;}
.ws12f{word-spacing:-0.007488px;}
.wsd3{word-spacing:-0.006892px;}
.ws13b{word-spacing:-0.006154px;}
.ws8b{word-spacing:-0.005623px;}
.ws12b{word-spacing:-0.005386px;}
.ws14d{word-spacing:-0.005347px;}
.ws11b{word-spacing:-0.004733px;}
.ws149{word-spacing:-0.004186px;}
.ws154{word-spacing:-0.003869px;}
.ws12e{word-spacing:-0.003734px;}
.ws126{word-spacing:-0.003312px;}
.ws119{word-spacing:-0.003302px;}
.ws14b{word-spacing:-0.001843px;}
.ws0{word-spacing:0.000000px;}
.ws156{word-spacing:0.001402px;}
.ws2d{word-spacing:0.003599px;}
.wsa0{word-spacing:0.006012px;}
.wsd1{word-spacing:0.015275px;}
.wsaa{word-spacing:0.030060px;}
.ws3{word-spacing:0.041843px;}
.ws14{word-spacing:0.053798px;}
.wsb4{word-spacing:0.054108px;}
.ws1e{word-spacing:0.059776px;}
.wsba{word-spacing:0.060120px;}
.wsee{word-spacing:0.084168px;}
.wse2{word-spacing:0.086400px;}
.ws7d{word-spacing:0.094310px;}
.wsb3{word-spacing:0.096192px;}
.wsb7{word-spacing:0.097200px;}
.ws7e{word-spacing:0.100780px;}
.ws113{word-spacing:0.107597px;}
.ws20{word-spacing:0.119551px;}
.wsb5{word-spacing:0.120240px;}
.wsac{word-spacing:0.129600px;}
.ws15{word-spacing:0.161395px;}
.wse9{word-spacing:0.162000px;}
.wsab{word-spacing:0.178200px;}
.ws37{word-spacing:0.179327px;}
.wse8{word-spacing:0.180360px;}
.wsb6{word-spacing:0.183600px;}
.ws9a{word-spacing:0.191282px;}
.ws11{word-spacing:0.215194px;}
.ws28{word-spacing:0.239102px;}
.ws19{word-spacing:0.268992px;}
.ws36{word-spacing:0.298878px;}
.ws127{word-spacing:0.322790px;}
.ws8e{word-spacing:0.358654px;}
.ws51{word-spacing:0.418429px;}
.ws145{word-spacing:0.430387px;}
.ws3a{word-spacing:0.478205px;}
.wse0{word-spacing:0.513000px;}
.ws63{word-spacing:0.537980px;}
.wse1{word-spacing:0.583200px;}
.ws148{word-spacing:0.591782px;}
.ws53{word-spacing:0.597756px;}
.ws27{word-spacing:0.657532px;}
.ws40{word-spacing:0.717307px;}
.ws100{word-spacing:0.777083px;}
.wsc2{word-spacing:0.799596px;}
.ws146{word-spacing:0.806976px;}
.ws17{word-spacing:0.860774px;}
.ws1f{word-spacing:0.896634px;}
.ws134{word-spacing:0.914573px;}
.wsc1{word-spacing:0.925848px;}
.ws54{word-spacing:0.956410px;}
.ws6c{word-spacing:1.016185px;}
.ws106{word-spacing:1.075961px;}
.ws129{word-spacing:1.075968px;}
.ws7a{word-spacing:1.135736px;}
.ws30{word-spacing:1.195512px;}
.ws5e{word-spacing:1.255288px;}
.ws142{word-spacing:1.291162px;}
.ws4a{word-spacing:1.315063px;}
.ws10c{word-spacing:1.374839px;}
.wsa{word-spacing:1.380812px;}
.ws13e{word-spacing:1.398758px;}
.ws76{word-spacing:1.434614px;}
.ws13{word-spacing:1.452557px;}
.ws38{word-spacing:1.494390px;}
.ws157{word-spacing:1.516037px;}
.ws13c{word-spacing:1.523967px;}
.wsf{word-spacing:1.560154px;}
.ws2c{word-spacing:1.613941px;}
.ws118{word-spacing:1.613952px;}
.ws45{word-spacing:1.673717px;}
.ws4b{word-spacing:1.733492px;}
.ws74{word-spacing:1.793268px;}
.ws52{word-spacing:1.853044px;}
.ws5f{word-spacing:1.854331px;}
.ws117{word-spacing:1.882944px;}
.ws111{word-spacing:1.912819px;}
.wsae{word-spacing:1.917828px;}
.ws3f{word-spacing:1.972595px;}
.wsad{word-spacing:1.989972px;}
.wsca{word-spacing:2.032370px;}
.ws47{word-spacing:2.092146px;}
.ws13f{word-spacing:2.098138px;}
.ws66{word-spacing:2.151922px;}
.ws3e{word-spacing:2.211697px;}
.wse7{word-spacing:2.218428px;}
.ws42{word-spacing:2.271473px;}
.wsf9{word-spacing:2.305800px;}
.wsfa{word-spacing:2.322000px;}
.ws44{word-spacing:2.331248px;}
.wsf8{word-spacing:2.332800px;}
.wse6{word-spacing:2.344680px;}
.ws5c{word-spacing:2.391024px;}
.ws6e{word-spacing:2.450800px;}
.ws6f{word-spacing:2.510575px;}
.ws1a{word-spacing:2.511422px;}
.ws1{word-spacing:2.511541px;}
.wsb0{word-spacing:2.555100px;}
.ws1d{word-spacing:2.570351px;}
.ws2{word-spacing:2.579672px;}
.ws116{word-spacing:2.582323px;}
.ws59{word-spacing:2.630126px;}
.wsf2{word-spacing:2.639268px;}
.ws8c{word-spacing:2.689902px;}
.wsaf{word-spacing:2.729448px;}
.ws105{word-spacing:2.749678px;}
.ws79{word-spacing:2.809453px;}
.wsd0{word-spacing:2.869229px;}
.wsd{word-spacing:2.869236px;}
.wsc0{word-spacing:2.903796px;}
.ws18{word-spacing:2.905114px;}
.ws122{word-spacing:2.958912px;}
.wsbf{word-spacing:2.981952px;}
.ws130{word-spacing:3.012710px;}
.ws48{word-spacing:3.048556px;}
.ws3c{word-spacing:3.108331px;}
.ws125{word-spacing:3.174106px;}
.ws12a{word-spacing:3.219082px;}
.ws131{word-spacing:3.220339px;}
.ws13a{word-spacing:3.221280px;}
.ws147{word-spacing:3.221414px;}
.ws14e{word-spacing:3.222240px;}
.ws139{word-spacing:3.222298px;}
.ws136{word-spacing:3.224026px;}
.ws151{word-spacing:3.226022px;}
.ws33{word-spacing:3.227882px;}
.ws11a{word-spacing:3.227904px;}
.ws115{word-spacing:3.275807px;}
.ws57{word-spacing:3.287658px;}
.ws58{word-spacing:3.347434px;}
.ws73{word-spacing:3.407209px;}
.ws12c{word-spacing:3.443098px;}
.wsa7{word-spacing:3.444876px;}
.ws29{word-spacing:3.466985px;}
.ws158{word-spacing:3.496896px;}
.ws5d{word-spacing:3.526760px;}
.ws1c{word-spacing:3.586536px;}
.ws46{word-spacing:3.646312px;}
.ws65{word-spacing:3.765863px;}
.ws78{word-spacing:3.825638px;}
.ws4f{word-spacing:3.885414px;}
.ws128{word-spacing:3.927283px;}
.wsfb{word-spacing:4.004965px;}
.ws7f{word-spacing:4.064741px;}
.ws3d{word-spacing:4.124516px;}
.ws133{word-spacing:4.142477px;}
.ws2a{word-spacing:4.363619px;}
.ws110{word-spacing:4.423394px;}
.wsa1{word-spacing:4.448880px;}
.wsc7{word-spacing:4.460904px;}
.ws3b{word-spacing:4.483170px;}
.wsc8{word-spacing:4.533048px;}
.ws4e{word-spacing:4.542946px;}
.ws14c{word-spacing:4.626662px;}
.ws77{word-spacing:4.662497px;}
.wsef{word-spacing:4.779540px;}
.ws4c{word-spacing:4.782048px;}
.wsf0{word-spacing:4.785552px;}
.ws141{word-spacing:4.841856px;}
.ws56{word-spacing:5.021150px;}
.ws75{word-spacing:5.080926px;}
.wsc6{word-spacing:5.158296px;}
.ws132{word-spacing:5.164646px;}
.wsd2{word-spacing:5.200477px;}
.wsc5{word-spacing:5.224428px;}
.ws10f{word-spacing:5.320028px;}
.ws9b{word-spacing:5.379804px;}
.ws143{word-spacing:5.379840px;}
.ws32{word-spacing:5.439580px;}
.ws8{word-spacing:5.481407px;}
.ws6d{word-spacing:5.499355px;}
.ws103{word-spacing:5.559131px;}
.ws55{word-spacing:5.798233px;}
.ws81{word-spacing:5.858009px;}
.ws23{word-spacing:5.917784px;}
.ws60{word-spacing:5.977560px;}
.wsfd{word-spacing:6.156887px;}
.wsf6{word-spacing:6.162300px;}
.wsf7{word-spacing:6.204384px;}
.ws112{word-spacing:6.336214px;}
.ws49{word-spacing:6.395989px;}
.ws13d{word-spacing:6.509606px;}
.wse{word-spacing:6.510037px;}
.ws104{word-spacing:6.515540px;}
.ws41{word-spacing:6.575316px;}
.wsa3{word-spacing:6.589152px;}
.wsa4{word-spacing:6.613200px;}
.ws5b{word-spacing:6.754643px;}
.ws14a{word-spacing:6.832397px;}
.ws108{word-spacing:6.874194px;}
.ws7b{word-spacing:6.993745px;}
.ws99{word-spacing:7.113296px;}
.ws84{word-spacing:7.157259px;}
.ws83{word-spacing:7.173072px;}
.ws107{word-spacing:7.232848px;}
.wsa2{word-spacing:7.629228px;}
.ws10{word-spacing:7.639373px;}
.ws34{word-spacing:7.711052px;}
.ws4d{word-spacing:7.770828px;}
.wsf5{word-spacing:8.693352px;}
.ws6{word-spacing:9.833058px;}
.wsde{word-spacing:11.615688px;}
.ws9f{word-spacing:11.620476px;}
.ws7{word-spacing:11.841512px;}
.ws152{word-spacing:13.397948px;}
.ws144{word-spacing:14.148979px;}
.ws4{word-spacing:15.481836px;}
.ws150{word-spacing:18.372457px;}
.ws14f{word-spacing:18.399053px;}
.ws70{word-spacing:18.525325px;}
.ws71{word-spacing:18.875993px;}
.ws5{word-spacing:22.339429px;}
.ws9{word-spacing:22.720640px;}
.ws82{word-spacing:44.831700px;}
.ws86{word-spacing:55.443000px;}
.wseb{word-spacing:57.360492px;}
.ws85{word-spacing:58.400761px;}
.wsed{word-spacing:124.225956px;}
.ws87{word-spacing:178.833000px;}
.wsd5{word-spacing:193.205242px;}
.ws98{word-spacing:255.935851px;}
.ws96{word-spacing:267.891001px;}
.ws97{word-spacing:332.687914px;}
.wsce{word-spacing:356.360602px;}
.wsd4{word-spacing:370.670976px;}
.wscf{word-spacing:381.269261px;}
.wsd6{word-spacing:562.838861px;}
.ws80{word-spacing:666.976570px;}
.wsec{word-spacing:676.656612px;}
._62{margin-left:-321.169482px;}
._61{margin-left:-57.267468px;}
._16{margin-left:-23.257760px;}
._6b{margin-left:-21.119675px;}
._69{margin-left:-18.688358px;}
._11{margin-left:-7.591501px;}
._6{margin-left:-6.025421px;}
._4{margin-left:-4.303854px;}
._12{margin-left:-2.946973px;}
._2{margin-left:-1.464498px;}
._1b{width:1.075961px;}
._1c{width:2.331811px;}
._59{width:3.981082px;}
._1a{width:5.140702px;}
._68{width:10.986815px;}
._0{width:12.971268px;}
._5{width:13.987584px;}
._4a{width:15.111310px;}
._9{width:16.462310px;}
._c{width:17.831098px;}
._a{width:19.152230px;}
._d{width:20.741983px;}
._7{width:21.788352px;}
._14{width:23.312484px;}
._1{width:25.314894px;}
._17{width:26.839244px;}
._10{width:28.811839px;}
._18{width:29.977459px;}
._66{width:31.113187px;}
._6a{width:32.303239px;}
._3{width:33.355008px;}
._67{width:34.400854px;}
._19{width:35.446931px;}
._b{width:36.761994px;}
._13{width:38.794364px;}
._8{width:39.972211px;}
._15{width:42.201574px;}
._23{width:60.557452px;}
._22{width:64.640021px;}
._65{width:93.548814px;}
._47{width:174.844800px;}
._5d{width:188.724787px;}
._4b{width:194.750208px;}
._26{width:209.686164px;}
._25{width:222.163962px;}
._41{width:224.565538px;}
._1e{width:226.222272px;}
._37{width:230.670840px;}
._34{width:232.652184px;}
._33{width:244.708320px;}
._48{width:252.314496px;}
._46{width:253.605658px;}
._44{width:255.045607px;}
._2c{width:259.468320px;}
._1d{width:264.311539px;}
._3f{width:267.891001px;}
._43{width:273.151267px;}
._45{width:276.254784px;}
._3b{width:278.124610px;}
._42{width:279.846151px;}
._53{width:297.403643px;}
._4c{width:299.172902px;}
._35{width:309.383340px;}
._58{width:321.445422px;}
._31{width:326.788920px;}
._56{width:330.639113px;}
._36{width:337.629228px;}
._40{width:344.595244px;}
._30{width:350.188920px;}
._32{width:351.988920px;}
._2e{width:354.508920px;}
._3a{width:356.550394px;}
._2a{width:357.750720px;}
._50{width:360.766217px;}
._29{width:365.308920px;}
._2b{width:367.830720px;}
._27{width:369.628920px;}
._2d{width:376.760160px;}
._3e{width:387.825066px;}
._4f{width:394.718861px;}
._2f{width:400.228920px;}
._4e{width:408.168461px;}
._28{width:416.070720px;}
._52{width:437.918976px;}
._64{width:445.855932px;}
._57{width:448.624840px;}
._55{width:451.368576px;}
._60{width:459.493416px;}
._4d{width:465.029516px;}
._5a{width:470.036621px;}
._3c{width:474.236890px;}
._20{width:476.546227px;}
._51{width:481.172890px;}
._38{width:486.192040px;}
._54{width:494.622490px;}
._3d{width:495.851801px;}
._21{width:500.809306px;}
._39{width:507.806951px;}
._1f{width:513.398131px;}
._5b{width:576.288461px;}
._49{width:609.858662px;}
._5e{width:632.884360px;}
._e{width:881.947413px;}
._63{width:908.222213px;}
._5f{width:2081.895559px;}
._24{width:2104.743895px;}
._5c{width:2513.639802px;}
._f{width:2537.549802px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(81,125,151);}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:36.000000px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:45.429600px;}
.fse{font-size:47.337600px;}
.fs9{font-size:47.820600px;}
.fs10{font-size:47.880000px;}
.fsa{font-size:53.798400px;}
.fs12{font-size:54.000000px;}
.fsd{font-size:56.058000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs11{font-size:60.120000px;}
.fsc{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fsf{font-size:83.686200px;}
.fs6{font-size:90.874640px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.y12d{bottom:-689.566050px;}
.y153{bottom:-584.443836px;}
.y152{bottom:-562.934403px;}
.y151{bottom:-543.674961px;}
.y150{bottom:-524.415519px;}
.y14f{bottom:-505.246257px;}
.y14e{bottom:-485.986815px;}
.y14d{bottom:-466.816050px;}
.y14c{bottom:-430.006050px;}
.y14b{bottom:-410.475969px;}
.y14a{bottom:-390.225969px;}
.y149{bottom:-369.975789px;}
.y148{bottom:-349.816050px;}
.y147{bottom:-329.566476px;}
.y143{bottom:-308.596050px;}
.y146{bottom:-298.425900px;}
.y141{bottom:-288.346050px;}
.y145{bottom:-278.175900px;}
.y13f{bottom:-268.096050px;}
.y144{bottom:-257.926050px;}
.y142{bottom:-247.846050px;}
.y140{bottom:-227.596050px;}
.y13e{bottom:-206.626050px;}
.y13d{bottom:-176.566050px;}
.y1b0{bottom:-153.473550px;}
.y13c{bottom:-140.833458px;}
.y13b{bottom:-121.664196px;}
.y13a{bottom:-102.404754px;}
.y139{bottom:-83.145312px;}
.y1ca{bottom:-74.903550px;}
.y138{bottom:-63.976050px;}
.y1c9{bottom:-35.124000px;}
.y137{bottom:-27.166050px;}
.y1c8{bottom:-17.753550px;}
.y136{bottom:-4.662540px;}
.y0{bottom:0.000000px;}
.y1c7{bottom:4.656666px;}
.y39{bottom:9.233944px;}
.y38{bottom:26.903761px;}
.y66{bottom:31.890000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y1d3{bottom:103.620000px;}
.y177{bottom:103.621500px;}
.y229{bottom:104.398500px;}
.y36{bottom:104.646000px;}
.y1ff{bottom:112.125000px;}
.y129{bottom:114.027000px;}
.y25f{bottom:116.458500px;}
.y65{bottom:117.775500px;}
.yd1{bottom:119.596500px;}
.y228{bottom:121.659000px;}
.y213{bottom:121.837500px;}
.y176{bottom:122.449500px;}
.y35{bottom:122.535000px;}
.y1fe{bottom:130.954500px;}
.y128{bottom:132.856500px;}
.y25e{bottom:133.719000px;}
.yd0{bottom:133.942500px;}
.y64{bottom:136.605000px;}
.y9c{bottom:138.426000px;}
.y227{bottom:138.919500px;}
.y21{bottom:139.264499px;}
.y34{bottom:140.422500px;}
.y212{bottom:140.667000px;}
.y175{bottom:141.279000px;}
.y1fd{bottom:149.782500px;}
.y25d{bottom:150.978000px;}
.y127{bottom:151.686000px;}
.ycf{bottom:152.772000px;}
.y63{bottom:155.434500px;}
.y226{bottom:156.180000px;}
.ydd{bottom:157.104000px;}
.y9b{bottom:157.255500px;}
.y33{bottom:158.310000px;}
.y211{bottom:159.496500px;}
.y1d2{bottom:167.308500px;}
.y25c{bottom:168.238500px;}
.y1fc{bottom:168.612000px;}
.y126{bottom:170.515500px;}
.yce{bottom:171.601500px;}
.y225{bottom:173.440500px;}
.y62{bottom:174.264000px;}
.ydc{bottom:175.933500px;}
.y9a{bottom:176.085000px;}
.y32{bottom:176.199000px;}
.yd4{bottom:177.877500px;}
.y174{bottom:180.675000px;}
.y19e{bottom:184.693500px;}
.y25b{bottom:185.499000px;}
.y1d1{bottom:186.138000px;}
.y1fb{bottom:187.441500px;}
.y125{bottom:189.345000px;}
.ycd{bottom:190.431000px;}
.y224{bottom:190.701000px;}
.y61{bottom:193.093500px;}
.y31{bottom:194.086500px;}
.y173{bottom:194.871000px;}
.y99{bottom:194.914500px;}
.y210{bottom:196.258500px;}
.yd3{bottom:196.707000px;}
.y18{bottom:196.933500px;}
.y25a{bottom:202.759500px;}
.y19d{bottom:203.523000px;}
.y1d0{bottom:204.967500px;}
.y1fa{bottom:206.271000px;}
.y223{bottom:207.960000px;}
.ycc{bottom:209.260500px;}
.ydb{bottom:209.275500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y60{bottom:211.923000px;}
.y30{bottom:211.974000px;}
.y124{bottom:212.658000px;}
.y172{bottom:213.715500px;}
.y98{bottom:213.744000px;}
.y20f{bottom:215.088000px;}
.yda{bottom:219.708000px;}
.y259{bottom:220.020000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y19c{bottom:222.352500px;}
.y1cf{bottom:223.797000px;}
.y1f9{bottom:225.100500px;}
.y222{bottom:225.220500px;}
.ycb{bottom:228.090000px;}
.y2f{bottom:229.863000px;}
.y171{bottom:230.154000px;}
.y5f{bottom:230.752500px;}
.y97{bottom:232.573500px;}
.yd2{bottom:233.469000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y258{bottom:237.280500px;}
.y19b{bottom:241.182000px;}
.y221{bottom:242.481000px;}
.y1ce{bottom:242.626500px;}
.y1f8{bottom:243.930000px;}
.y123{bottom:246.282000px;}
.y170{bottom:246.592500px;}
.yca{bottom:246.919500px;}
.y5e{bottom:249.582000px;}
.y96{bottom:251.403000px;}
.y20e{bottom:251.851500px;}
.y135{bottom:252.826911px;}
.y257{bottom:254.541000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y1f7{bottom:262.759500px;}
.y220{bottom:264.225000px;}
.y122{bottom:265.111500px;}
.yc9{bottom:265.749000px;}
.y1cd{bottom:265.939500px;}
.y5d{bottom:268.411500px;}
.yd9{bottom:269.647500px;}
.y95{bottom:270.232500px;}
.y256{bottom:271.801500px;}
.y134{bottom:272.086353px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y19a{bottom:281.316000px;}
.y1f6{bottom:281.589000px;}
.y121{bottom:283.941000px;}
.yc8{bottom:284.578500px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y5c{bottom:287.241000px;}
.yd7{bottom:288.475500px;}
.y20d{bottom:288.613500px;}
.y94{bottom:289.062000px;}
.y133{bottom:291.255615px;}
.y16f{bottom:293.874000px;}
.yd8{bottom:293.901000px;}
.y199{bottom:295.512000px;}
.y1cc{bottom:295.822500px;}
.y21f{bottom:297.849000px;}
.y2e{bottom:299.892000px;}
.y1f5{bottom:300.418500px;}
.y120{bottom:302.770500px;}
.yc7{bottom:303.408000px;}
.y5b{bottom:306.070500px;}
.y255{bottom:306.321000px;}
.y20c{bottom:307.443000px;}
.y93{bottom:307.891500px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y132{bottom:310.515057px;}
.y198{bottom:314.356500px;}
.y1cb{bottom:315.055500px;}
.y2d{bottom:317.779500px;}
.y1f4{bottom:319.248000px;}
.yd6{bottom:319.479000px;}
.y11f{bottom:321.598500px;}
.yc6{bottom:322.237500px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y254{bottom:323.581500px;}
.y21e{bottom:324.388500px;}
.y5a{bottom:324.900000px;}
.y16e{bottom:325.492500px;}
.y20b{bottom:326.272500px;}
.y92{bottom:326.719500px;}
.y131{bottom:329.684319px;}
.yd5{bottom:329.731500px;}
.y2c{bottom:335.667000px;}
.y197{bottom:337.996500px;}
.y1f3{bottom:338.077500px;}
.y1ad{bottom:340.473000px;}
.y253{bottom:340.842000px;}
.yc5{bottom:341.067000px;}
.y21d{bottom:341.964000px;}
.y59{bottom:343.729500px;}
.y20a{bottom:345.102000px;}
.y91{bottom:345.549000px;}
.yf{bottom:348.133500px;}
.y130{bottom:348.943761px;}
.y2b{bottom:353.554500px;}
.y11e{bottom:354.231000px;}
.y1f2{bottom:356.907000px;}
.y252{bottom:358.102500px;}
.yc4{bottom:359.896500px;}
.y196{bottom:361.638000px;}
.y16d{bottom:361.858500px;}
.y58{bottom:362.559000px;}
.y209{bottom:363.931500px;}
.y90{bottom:364.378500px;}
.y11d{bottom:367.378500px;}
.y12f{bottom:368.203203px;}
.y21c{bottom:368.503500px;}
.y11b{bottom:370.486500px;}
.y251{bottom:375.363000px;}
.y1f1{bottom:375.736500px;}
.y195{bottom:378.076500px;}
.yc3{bottom:378.726000px;}
.y2a{bottom:380.409000px;}
.y16c{bottom:380.688000px;}
.y57{bottom:381.388500px;}
.y208{bottom:382.761000px;}
.y8f{bottom:383.208000px;}
.y11c{bottom:386.626500px;}
.ye{bottom:386.785499px;}
.y12e{bottom:391.873950px;}
.y250{bottom:392.623500px;}
.y194{bottom:394.515000px;}
.y1f0{bottom:394.566000px;}
.y21b{bottom:395.044500px;}
.yc2{bottom:397.555500px;}
.y29{bottom:398.298000px;}
.y16b{bottom:399.517500px;}
.y56{bottom:400.216500px;}
.y207{bottom:401.589000px;}
.y8e{bottom:402.037500px;}
.yd{bottom:408.044999px;}
.y24f{bottom:409.884000px;}
.y1ef{bottom:413.395500px;}
.y11a{bottom:413.928000px;}
.y28{bottom:416.185500px;}
.yc1{bottom:416.383500px;}
.y193{bottom:418.155000px;}
.y16a{bottom:418.347000px;}
.y55{bottom:419.046000px;}
.y206{bottom:420.418500px;}
.y8d{bottom:420.867000px;}
.y21a{bottom:421.585500px;}
.y24e{bottom:427.144500px;}
.y1ee{bottom:432.225000px;}
.y119{bottom:432.757500px;}
.y27{bottom:434.073000px;}
.yc0{bottom:435.213000px;}
.y169{bottom:437.176500px;}
.y54{bottom:437.875500px;}
.y219{bottom:439.159500px;}
.y205{bottom:439.248000px;}
.y8c{bottom:439.696500px;}
.y192{bottom:441.796500px;}
.y24d{bottom:444.403500px;}
.y12c{bottom:446.594085px;}
.y1ed{bottom:451.054500px;}
.y26{bottom:451.962000px;}
.ybf{bottom:454.042500px;}
.y1c6{bottom:454.387332px;}
.y168{bottom:456.006000px;}
.y12b{bottom:456.223950px;}
.y53{bottom:456.705000px;}
.y204{bottom:458.077500px;}
.y8b{bottom:458.526000px;}
.y24c{bottom:461.664000px;}
.y218{bottom:465.699000px;}
.y115{bottom:466.404000px;}
.y25{bottom:469.849500px;}
.y1ec{bottom:469.884000px;}
.ybe{bottom:472.872000px;}
.y191{bottom:473.415000px;}
.y1c5{bottom:473.558097px;}
.y52{bottom:475.534500px;}
.y203{bottom:476.907000px;}
.y8a{bottom:477.355500px;}
.y24b{bottom:478.924500px;}
.y217{bottom:483.273000px;}
.y114{bottom:485.233500px;}
.y24{bottom:487.737000px;}
.y1eb{bottom:488.713500px;}
.y10e{bottom:489.600000px;}
.ybd{bottom:491.701500px;}
.y1c4{bottom:492.817539px;}
.y51{bottom:494.364000px;}
.y167{bottom:495.402000px;}
.y202{bottom:495.736500px;}
.y89{bottom:496.185000px;}
.y10d{bottom:499.149000px;}
.y117{bottom:499.150500px;}
.y108{bottom:499.369500px;}
.y216{bottom:500.848500px;}
.yc{bottom:502.864502px;}
.y113{bottom:504.063000px;}
.y23{bottom:505.626000px;}
.y1ea{bottom:507.543000px;}
.y10c{bottom:508.116000px;}
.y118{bottom:508.863000px;}
.y190{bottom:509.131500px;}
.y112{bottom:510.040500px;}
.ybc{bottom:510.531000px;}
.y1c3{bottom:512.076981px;}
.y24a{bottom:513.445500px;}
.y201{bottom:514.566000px;}
.y88{bottom:515.014500px;}
.y111{bottom:516.018000px;}
.y166{bottom:516.196500px;}
.y10b{bottom:517.083000px;}
.y50{bottom:517.677000px;}
.y215{bottom:518.422500px;}
.yb{bottom:520.864502px;}
.y22{bottom:523.513500px;}
.y10a{bottom:526.048500px;}
.y1e9{bottom:526.372500px;}
.y18f{bottom:527.959500px;}
.ybb{bottom:529.360500px;}
.y107{bottom:529.941000px;}
.y165{bottom:530.394000px;}
.y249{bottom:530.706000px;}
.y1c2{bottom:531.247746px;}
.y110{bottom:532.374000px;}
.y87{bottom:533.844000px;}
.y109{bottom:535.015500px;}
.y214{bottom:535.996500px;}
.y200{bottom:537.879000px;}
.ya{bottom:538.864499px;}
.y164{bottom:544.590000px;}
.y1e8{bottom:545.202000px;}
.y18e{bottom:546.789000px;}
.y248{bottom:547.966500px;}
.yba{bottom:548.190000px;}
.y1c1{bottom:550.507188px;}
.y10f{bottom:551.233500px;}
.y86{bottom:552.673500px;}
.y9{bottom:556.864499px;}
.y163{bottom:558.787500px;}
.y116{bottom:561.316500px;}
.y1e7{bottom:564.031500px;}
.y247{bottom:565.227000px;}
.y18d{bottom:565.618500px;}
.yb9{bottom:567.019500px;}
.y1c0{bottom:569.676450px;}
.y85{bottom:571.503000px;}
.y162{bottom:572.983500px;}
.y246{bottom:582.487500px;}
.y1e6{bottom:582.861000px;}
.y18c{bottom:584.448000px;}
.y106{bottom:585.843000px;}
.yb8{bottom:585.849000px;}
.y84{bottom:590.332500px;}
.y4f{bottom:592.827000px;}
.y161{bottom:594.382500px;}
.y245{bottom:599.746500px;}
.y105{bottom:600.981000px;}
.y15e{bottom:601.482000px;}
.y1e5{bottom:601.690500px;}
.y18b{bottom:603.277500px;}
.y104{bottom:604.672500px;}
.yb7{bottom:604.678500px;}
.y1bf{bottom:606.486450px;}
.y160{bottom:608.580000px;}
.y83{bottom:609.162000px;}
.y4e{bottom:612.283500px;}
.y15d{bottom:615.678000px;}
.y244{bottom:617.007000px;}
.y103{bottom:619.810500px;}
.y1e4{bottom:620.520000px;}
.y18a{bottom:622.107000px;}
.y15f{bottom:622.776000px;}
.y102{bottom:623.502000px;}
.yb6{bottom:623.508000px;}
.y1be{bottom:626.016675px;}
.y82{bottom:627.991500px;}
.y243{bottom:634.267500px;}
.y15c{bottom:636.973500px;}
.y1e3{bottom:639.349500px;}
.y189{bottom:640.936500px;}
.yb5{bottom:642.337500px;}
.y8{bottom:645.510000px;}
.y81{bottom:646.821000px;}
.y1bd{bottom:646.986531px;}
.y4d{bottom:649.674000px;}
.y101{bottom:649.765500px;}
.y242{bottom:651.528000px;}
.y100{bottom:653.457000px;}
.y1e2{bottom:658.177500px;}
.y15b{bottom:658.372500px;}
.y188{bottom:659.766000px;}
.yb4{bottom:661.167000px;}
.y80{bottom:665.650500px;}
.y7{bottom:666.771000px;}
.y1bb{bottom:667.236450px;}
.y241{bottom:668.788500px;}
.y4c{bottom:669.130500px;}
.y1e1{bottom:677.007000px;}
.y187{bottom:678.595500px;}
.yb3{bottom:679.996500px;}
.yfe{bottom:680.422500px;}
.yfd{bottom:684.114000px;}
.y7f{bottom:684.480000px;}
.y240{bottom:686.049000px;}
.y1bc{bottom:687.486369px;}
.y4b{bottom:688.588500px;}
.y15a{bottom:691.411500px;}
.y1e0{bottom:695.836500px;}
.y186{bottom:697.425000px;}
.yb2{bottom:698.826000px;}
.yfc{bottom:703.041000px;}
.y7e{bottom:703.309500px;}
.yf6{bottom:707.170500px;}
.y4a{bottom:708.045000px;}
.y1ba{bottom:708.726450px;}
.y1df{bottom:714.666000px;}
.y185{bottom:716.254500px;}
.yf5{bottom:716.719500px;}
.yb1{bottom:717.655500px;}
.yf1{bottom:718.258500px;}
.y23f{bottom:720.570000px;}
.yfb{bottom:721.870500px;}
.yf0{bottom:721.950000px;}
.y7d{bottom:722.139000px;}
.yf4{bottom:725.685000px;}
.y6{bottom:726.298500px;}
.y49{bottom:727.503000px;}
.y159{bottom:727.777500px;}
.y1b9{bottom:729.426450px;}
.y1de{bottom:733.495500px;}
.yf3{bottom:734.652000px;}
.yfa{bottom:735.925500px;}
.yb0{bottom:736.485000px;}
.y23e{bottom:737.829000px;}
.yf9{bottom:740.700000px;}
.y7c{bottom:740.968500px;}
.yf2{bottom:743.617500px;}
.y158{bottom:746.607000px;}
.y48{bottom:746.959500px;}
.y1dd{bottom:752.325000px;}
.y3{bottom:752.599495px;}
.yf8{bottom:754.683000px;}
.y23d{bottom:755.089500px;}
.yaf{bottom:755.314500px;}
.y184{bottom:756.388500px;}
.y1b8{bottom:759.486450px;}
.yf7{bottom:759.627000px;}
.y7b{bottom:759.798000px;}
.y157{bottom:765.436500px;}
.y47{bottom:766.416000px;}
.yff{bottom:769.920000px;}
.y1dc{bottom:771.154500px;}
.y23c{bottom:772.350000px;}
.yae{bottom:774.144000px;}
.y183{bottom:777.856500px;}
.yef{bottom:778.614000px;}
.y7a{bottom:778.627500px;}
.y156{bottom:784.266000px;}
.y46{bottom:785.874000px;}
.y23b{bottom:789.610500px;}
.y1db{bottom:789.984000px;}
.yad{bottom:792.973500px;}
.y1b7{bottom:795.216801px;}
.y1ac{bottom:796.137000px;}
.yee{bottom:797.443500px;}
.y79{bottom:797.457000px;}
.y182{bottom:801.496500px;}
.y155{bottom:803.095500px;}
.y45{bottom:805.330500px;}
.y23a{bottom:806.871000px;}
.y1da{bottom:808.813500px;}
.yac{bottom:811.803000px;}
.y1b6{bottom:814.476243px;}
.y1ab{bottom:814.966500px;}
.yed{bottom:816.273000px;}
.y78{bottom:816.286500px;}
.y181{bottom:817.935000px;}
.y262{bottom:819.573000px;}
.y239{bottom:824.131500px;}
.y44{bottom:824.787000px;}
.y1d9{bottom:827.643000px;}
.yab{bottom:830.632500px;}
.y1b5{bottom:833.647008px;}
.y1aa{bottom:833.794500px;}
.y180{bottom:834.373500px;}
.yec{bottom:835.102500px;}
.y77{bottom:835.114500px;}
.y154{bottom:835.923000px;}
.y261{bottom:836.833500px;}
.y238{bottom:841.392000px;}
.y43{bottom:844.245000px;}
.y1d8{bottom:846.472500px;}
.yaa{bottom:849.462000px;}
.y17f{bottom:850.812000px;}
.y1a9{bottom:852.624000px;}
.y1b4{bottom:852.906450px;}
.yeb{bottom:853.932000px;}
.y76{bottom:853.944000px;}
.y260{bottom:854.094000px;}
.y12a{bottom:858.352500px;}
.y237{bottom:858.652500px;}
.y42{bottom:863.701500px;}
.y1d7{bottom:865.302000px;}
.ya9{bottom:868.291500px;}
.y1a8{bottom:871.453500px;}
.yea{bottom:872.761500px;}
.y75{bottom:872.773500px;}
.y17e{bottom:874.452000px;}
.y236{bottom:875.913000px;}
.y2{bottom:879.369000px;}
.y1d6{bottom:884.131500px;}
.ya8{bottom:887.121000px;}
.y1b3{bottom:889.716000px;}
.y1a7{bottom:890.283000px;}
.y17d{bottom:890.890500px;}
.ye9{bottom:891.591000px;}
.y74{bottom:891.603000px;}
.y17c{bottom:891.637500px;}
.y235{bottom:893.172000px;}
.y41{bottom:902.287500px;}
.y1d5{bottom:902.961000px;}
.ya7{bottom:905.950500px;}
.y1b2{bottom:907.086450px;}
.y17b{bottom:908.076000px;}
.y1a6{bottom:909.112500px;}
.ye8{bottom:910.420500px;}
.y73{bottom:910.432500px;}
.y40{bottom:918.426000px;}
.y1d4{bottom:921.790500px;}
.ya6{bottom:924.778500px;}
.y1b1{bottom:926.526450px;}
.y234{bottom:927.693000px;}
.ye7{bottom:929.250000px;}
.y72{bottom:929.262000px;}
.y17a{bottom:932.464500px;}
.y3f{bottom:934.566000px;}
.ya5{bottom:943.608000px;}
.y233{bottom:944.953500px;}
.ye6{bottom:948.079500px;}
.y71{bottom:948.091500px;}
.y1a5{bottom:948.702000px;}
.y3e{bottom:950.706000px;}
.y232{bottom:962.214000px;}
.ya4{bottom:962.437500px;}
.y1{bottom:966.726000px;}
.ye5{bottom:966.909000px;}
.y70{bottom:966.921000px;}
.y179{bottom:967.072500px;}
.y1a4{bottom:967.180500px;}
.y231{bottom:979.474500px;}
.ya3{bottom:981.267000px;}
.y1af{bottom:982.686585px;}
.ye4{bottom:985.738500px;}
.y6f{bottom:985.750500px;}
.y178{bottom:986.305500px;}
.y1a3{bottom:990.822000px;}
.y1ae{bottom:992.316450px;}
.y230{bottom:996.735000px;}
.y3d{bottom:999.721500px;}
.ya2{bottom:1000.096500px;}
.y6e{bottom:1004.580000px;}
.y1a2{bottom:1007.260500px;}
.ye3{bottom:1012.422000px;}
.y22f{bottom:1013.995500px;}
.ya1{bottom:1018.926000px;}
.y6d{bottom:1023.409500px;}
.y1a1{bottom:1023.699000px;}
.y19f{bottom:1024.092000px;}
.ye2{bottom:1030.900500px;}
.y22e{bottom:1031.254500px;}
.y3c{bottom:1036.485000px;}
.ya0{bottom:1037.755500px;}
.y1a0{bottom:1040.137500px;}
.y6c{bottom:1042.239000px;}
.ye1{bottom:1047.339000px;}
.y22d{bottom:1048.515000px;}
.y9f{bottom:1056.585000px;}
.y6b{bottom:1061.068500px;}
.ye0{bottom:1063.777500px;}
.y3b{bottom:1064.728500px;}
.y22c{bottom:1065.775500px;}
.y9e{bottom:1075.414500px;}
.y6a{bottom:1079.898000px;}
.y22b{bottom:1083.036000px;}
.ydf{bottom:1087.419000px;}
.y3a{bottom:1092.972000px;}
.y9d{bottom:1094.244000px;}
.y69{bottom:1098.727500px;}
.y22a{bottom:1100.296500px;}
.y68{bottom:1117.557000px;}
.yde{bottom:1119.037500px;}
.y37{bottom:1136.460000px;}
.y67{bottom:1177.662000px;}
.h24{height:2.391024px;}
.h2a{height:4.051933px;}
.h35{height:27.974981px;}
.hb{height:30.461558px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h1c{height:33.072749px;}
.h34{height:34.574294px;}
.h12{height:34.813397px;}
.hc{height:35.440852px;}
.h26{height:38.478871px;}
.h20{height:38.896243px;}
.h13{height:39.165235px;}
.h3c{height:39.489235px;}
.h17{height:40.504048px;}
.h21{height:42.043500px;}
.h38{height:43.185887px;}
.h11{height:43.217759px;}
.h15{height:43.516637px;}
.h18{height:43.876637px;}
.h30{height:44.268047px;}
.h2f{height:44.279648px;}
.h39{height:45.567245px;}
.h7{height:45.960000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h3a{height:49.117939px;}
.h32{height:49.939453px;}
.h14{height:49.991558px;}
.hf{height:50.629933px;}
.hd{height:50.930649px;}
.h16{height:54.575123px;}
.h19{height:54.768749px;}
.h1d{height:54.774749px;}
.h2{height:55.152000px;}
.h31{height:55.599258px;}
.h33{height:55.601562px;}
.h3b{height:56.865245px;}
.h29{height:57.205200px;}
.h25{height:60.180871px;}
.h22{height:60.187200px;}
.h27{height:60.193200px;}
.he{height:61.613006px;}
.h2d{height:65.024177px;}
.h36{height:72.039235px;}
.h10{height:77.792486px;}
.h28{height:77.934871px;}
.h5{height:78.132000px;}
.h1b{height:84.526637px;}
.h1f{height:85.246637px;}
.h2c{height:91.336637px;}
.h1a{height:111.123024px;}
.h1e{height:116.217024px;}
.h4{height:119.055004px;}
.h23{height:209.037024px;}
.h2e{height:235.405500px;}
.h2b{height:250.179024px;}
.h37{height:432.567000px;}
.h0{height:1262.833500px;}
.ha{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:197.527766px;}
.w5{width:507.738000px;}
.w2{width:637.794021px;}
.w6{width:652.146000px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x41{left:-228.882000px;}
.x45{left:-181.362000px;}
.x47{left:-126.462000px;}
.x48{left:-123.672000px;}
.x46{left:-79.932000px;}
.x75{left:-64.692000px;}
.x4b{left:-47.712000px;}
.x49{left:-44.472000px;}
.x4a{left:-39.072000px;}
.x42{left:-33.312000px;}
.x4c{left:-27.642000px;}
.x43{left:-1.451406px;}
.x0{left:0.000000px;}
.x7{left:52.230000px;}
.x5{left:53.574000px;}
.x6{left:58.054042px;}
.x67{left:62.541000px;}
.x6f{left:65.101500px;}
.x70{left:67.792500px;}
.x71{left:76.225500px;}
.x4e{left:84.228000px;}
.x7d{left:85.848000px;}
.x4d{left:88.548000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x74{left:120.171000px;}
.x77{left:130.878000px;}
.x44{left:133.548000px;}
.x5b{left:135.388500px;}
.x5c{left:137.707500px;}
.x68{left:156.967500px;}
.x78{left:162.738000px;}
.x51{left:192.048000px;}
.x4f{left:196.098000px;}
.x50{left:197.988000px;}
.x4{left:203.484001px;}
.x6e{left:212.146500px;}
.x6c{left:214.384500px;}
.x5d{left:217.759500px;}
.x5e{left:226.206000px;}
.x76{left:235.458000px;}
.x59{left:243.366000px;}
.x9{left:248.526000px;}
.x8{left:249.591000px;}
.x5f{left:258.921000px;}
.x80{left:271.768500px;}
.xc{left:281.479500px;}
.x1a{left:282.621000px;}
.x7b{left:284.184000px;}
.x7a{left:299.088000px;}
.x15{left:300.991500px;}
.x52{left:305.628000px;}
.x16{left:311.157000px;}
.x53{left:312.198000px;}
.x54{left:322.728000px;}
.x1b{left:335.329500px;}
.x79{left:353.628000px;}
.xa{left:360.160500px;}
.xb{left:377.239500px;}
.x2b{left:389.728500px;}
.x3c{left:390.784500px;}
.x56{left:393.378000px;}
.x2c{left:397.977000px;}
.x55{left:399.858000px;}
.x73{left:405.888000px;}
.x3e{left:419.188500px;}
.x58{left:422.125500px;}
.x3d{left:425.004000px;}
.x29{left:426.475500px;}
.x24{left:432.324000px;}
.x2a{left:438.207000px;}
.x3f{left:440.212500px;}
.x3{left:454.959000px;}
.x13{left:456.112500px;}
.x69{left:457.573500px;}
.x2d{left:464.268000px;}
.x25{left:475.624500px;}
.x2e{left:476.680500px;}
.x1c{left:478.206000px;}
.x72{left:479.815500px;}
.x62{left:488.476500px;}
.x60{left:491.902500px;}
.x61{left:493.288500px;}
.x19{left:498.498000px;}
.x6a{left:503.053500px;}
.x14{left:505.795500px;}
.x6b{left:512.893500px;}
.x2f{left:516.618000px;}
.x30{left:517.627500px;}
.x31{left:520.261500px;}
.x17{left:521.910000px;}
.x57{left:532.247850px;}
.x18{left:540.693000px;}
.x10{left:545.943000px;}
.x7f{left:550.573500px;}
.x11{left:564.711000px;}
.x1d{left:568.267500px;}
.xe{left:569.841000px;}
.x36{left:573.960000px;}
.x20{left:578.445000px;}
.x32{left:579.708000px;}
.x1e{left:582.181500px;}
.x21{left:584.445000px;}
.x64{left:585.586500px;}
.x1f{left:588.180000px;}
.xf{left:589.524000px;}
.x33{left:595.710000px;}
.x63{left:597.046500px;}
.x22{left:600.643500px;}
.x7e{left:605.325000px;}
.x37{left:614.508000px;}
.x38{left:617.143500px;}
.x26{left:628.071000px;}
.x34{left:629.526000px;}
.x27{left:639.688500px;}
.x40{left:646.384500px;}
.x35{left:648.205500px;}
.x39{left:654.771000px;}
.x3a{left:656.740500px;}
.x28{left:661.581000px;}
.x3b{left:688.822500px;}
.x66{left:690.675000px;}
.x65{left:695.833500px;}
.x7c{left:707.109000px;}
.x6d{left:800.122500px;}
.x5a{left:803.338500px;}
.x12{left:810.280500px;}
.xd{left:814.669500px;}
.x23{left:822.982500px;}
@media print{
.v12{vertical-align:-43.066667pt;}
.v13{vertical-align:-41.402667pt;}
.v2{vertical-align:-10.629333pt;}
.v17{vertical-align:-9.301333pt;}
.v19{vertical-align:-7.968000pt;}
.v1b{vertical-align:-0.961920pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:3.162667pt;}
.v11{vertical-align:4.997333pt;}
.v10{vertical-align:9.194667pt;}
.vb{vertical-align:13.125333pt;}
.v8{vertical-align:15.354667pt;}
.v1{vertical-align:17.360000pt;}
.v3{vertical-align:19.285333pt;}
.va{vertical-align:21.941333pt;}
.v1a{vertical-align:29.221333pt;}
.v15{vertical-align:33.754667pt;}
.vd{vertical-align:35.072000pt;}
.v5{vertical-align:35.968000pt;}
.v9{vertical-align:37.093333pt;}
.v18{vertical-align:42.506667pt;}
.v6{vertical-align:51.328000pt;}
.ve{vertical-align:56.192000pt;}
.v4{vertical-align:96.650667pt;}
.v7{vertical-align:101.178667pt;}
.v14{vertical-align:108.698667pt;}
.vc{vertical-align:170.560000pt;}
.v16{vertical-align:220.256000pt;}
.ls9b{letter-spacing:-1.832992pt;}
.ls82{letter-spacing:-1.576480pt;}
.ls81{letter-spacing:-0.358048pt;}
.ls86{letter-spacing:-0.197728pt;}
.ls84{letter-spacing:-0.160320pt;}
.ls7d{letter-spacing:-0.106880pt;}
.ls77{letter-spacing:-0.101536pt;}
.ls79{letter-spacing:-0.096192pt;}
.ls7b{letter-spacing:-0.090848pt;}
.ls80{letter-spacing:-0.085504pt;}
.ls9c{letter-spacing:-0.080160pt;}
.ls9d{letter-spacing:-0.074816pt;}
.ls7a{letter-spacing:-0.042752pt;}
.ls76{letter-spacing:-0.037408pt;}
.ls72{letter-spacing:-0.034048pt;}
.ls9a{letter-spacing:-0.033600pt;}
.ls74{letter-spacing:-0.032064pt;}
.ls7c{letter-spacing:-0.026720pt;}
.ls97{letter-spacing:-0.025536pt;}
.ls85{letter-spacing:-0.021376pt;}
.ls75{letter-spacing:-0.016032pt;}
.ls73{letter-spacing:-0.012768pt;}
.ls78{letter-spacing:-0.010688pt;}
.ls7e{letter-spacing:-0.005344pt;}
.ls7f{letter-spacing:-0.004800pt;}
.ls98{letter-spacing:-0.004256pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000054pt;}
.lsb0{letter-spacing:0.000085pt;}
.lsa5{letter-spacing:0.000185pt;}
.lsab{letter-spacing:0.000241pt;}
.ls27{letter-spacing:0.000314pt;}
.ls5e{letter-spacing:0.000325pt;}
.ls88{letter-spacing:0.000387pt;}
.lsad{letter-spacing:0.000503pt;}
.lsa2{letter-spacing:0.000711pt;}
.lsa9{letter-spacing:0.001007pt;}
.lsa7{letter-spacing:0.001843pt;}
.lsa0{letter-spacing:0.002538pt;}
.ls9f{letter-spacing:0.002703pt;}
.lsae{letter-spacing:0.002825pt;}
.lsd{letter-spacing:0.003012pt;}
.lsaa{letter-spacing:0.003635pt;}
.lsac{letter-spacing:0.004147pt;}
.ls5{letter-spacing:0.004237pt;}
.ls8e{letter-spacing:0.004800pt;}
.lsaf{letter-spacing:0.005221pt;}
.ls6d{letter-spacing:0.005344pt;}
.ls70{letter-spacing:0.010688pt;}
.ls94{letter-spacing:0.014400pt;}
.ls2{letter-spacing:0.014912pt;}
.ls62{letter-spacing:0.016032pt;}
.ls8f{letter-spacing:0.019200pt;}
.ls64{letter-spacing:0.021376pt;}
.ls6b{letter-spacing:0.026720pt;}
.ls8{letter-spacing:0.028645pt;}
.ls8b{letter-spacing:0.028800pt;}
.ls63{letter-spacing:0.032064pt;}
.ls6a{letter-spacing:0.037408pt;}
.ls95{letter-spacing:0.038400pt;}
.ls93{letter-spacing:0.042752pt;}
.ls66{letter-spacing:0.043200pt;}
.ls90{letter-spacing:0.048000pt;}
.ls67{letter-spacing:0.048096pt;}
.ls65{letter-spacing:0.053440pt;}
.ls69{letter-spacing:0.058784pt;}
.ls91{letter-spacing:0.069472pt;}
.ls68{letter-spacing:0.072000pt;}
.ls61{letter-spacing:0.074816pt;}
.ls6c{letter-spacing:0.080160pt;}
.ls6e{letter-spacing:0.085504pt;}
.ls8c{letter-spacing:0.086400pt;}
.ls6f{letter-spacing:0.090848pt;}
.ls83{letter-spacing:0.106880pt;}
.ls9e{letter-spacing:0.128256pt;}
.ls8d{letter-spacing:0.133600pt;}
.ls99{letter-spacing:0.138944pt;}
.ls60{letter-spacing:0.148960pt;}
.ls87{letter-spacing:0.160320pt;}
.ls5f{letter-spacing:0.161728pt;}
.ls8a{letter-spacing:0.170240pt;}
.ls2c{letter-spacing:0.482502pt;}
.ls3c{letter-spacing:0.487835pt;}
.ls42{letter-spacing:0.507733pt;}
.ls26{letter-spacing:0.576078pt;}
.ls4a{letter-spacing:0.658926pt;}
.ls40{letter-spacing:0.659733pt;}
.ls34{letter-spacing:0.662516pt;}
.ls44{letter-spacing:0.664259pt;}
.ls19{letter-spacing:0.665067pt;}
.ls48{letter-spacing:0.667850pt;}
.ls46{letter-spacing:0.766400pt;}
.ls5a{letter-spacing:0.774029pt;}
.ls15{letter-spacing:0.797067pt;}
.ls58{letter-spacing:0.883733pt;}
.ls5b{letter-spacing:0.888259pt;}
.ls47{letter-spacing:0.904787pt;}
.ls50{letter-spacing:1.008508pt;}
.ls4b{letter-spacing:1.163850pt;}
.ls37{letter-spacing:1.169183pt;}
.ls4c{letter-spacing:1.170926pt;}
.ls51{letter-spacing:1.171733pt;}
.ls12{letter-spacing:1.193067pt;}
.ls20{letter-spacing:1.198400pt;}
.ls57{letter-spacing:1.291174pt;}
.ls33{letter-spacing:1.293784pt;}
.ls14{letter-spacing:1.302029pt;}
.ls13{letter-spacing:1.326903pt;}
.ls3e{letter-spacing:1.691850pt;}
.ls31{letter-spacing:1.695207pt;}
.ls2b{letter-spacing:1.701852pt;}
.ls2f{letter-spacing:2.221593pt;}
.ls52{letter-spacing:2.402502pt;}
.ls54{letter-spacing:2.582516pt;}
.lsa4{letter-spacing:2.625548pt;}
.ls7{letter-spacing:2.979733pt;}
.lsb{letter-spacing:3.033067pt;}
.ls59{letter-spacing:3.805169pt;}
.ls53{letter-spacing:3.824508pt;}
.ls4{letter-spacing:10.626533pt;}
.ls17{letter-spacing:10.968429pt;}
.ls3d{letter-spacing:11.310612pt;}
.ls18{letter-spacing:11.661593pt;}
.ls21{letter-spacing:11.662903pt;}
.lsa8{letter-spacing:11.953801pt;}
.lsb1{letter-spacing:11.953818pt;}
.lsa1{letter-spacing:12.114438pt;}
.ls16{letter-spacing:12.189593pt;}
.lsc{letter-spacing:12.192250pt;}
.ls22{letter-spacing:12.536429pt;}
.ls28{letter-spacing:13.041702pt;}
.ls5d{letter-spacing:13.230333pt;}
.ls1d{letter-spacing:13.282926pt;}
.ls6{letter-spacing:13.283733pt;}
.ls4e{letter-spacing:13.286516pt;}
.ls4d{letter-spacing:13.367290pt;}
.ls1c{letter-spacing:13.375191pt;}
.ls1b{letter-spacing:13.376417pt;}
.ls3{letter-spacing:13.392540pt;}
.lsa{letter-spacing:14.384701pt;}
.lsa3{letter-spacing:14.823467pt;}
.lsa6{letter-spacing:14.828800pt;}
.ls25{letter-spacing:14.981348pt;}
.ls89{letter-spacing:15.942400pt;}
.ls41{letter-spacing:16.046612pt;}
.ls10{letter-spacing:16.061762pt;}
.ls2e{letter-spacing:16.084541pt;}
.ls56{letter-spacing:16.086516pt;}
.ls29{letter-spacing:16.090378pt;}
.ls4f{letter-spacing:16.616259pt;}
.ls1e{letter-spacing:16.618378pt;}
.ls2a{letter-spacing:17.123096pt;}
.lsf{letter-spacing:18.320015pt;}
.ls24{letter-spacing:18.562838pt;}
.ls32{letter-spacing:19.550679pt;}
.ls3a{letter-spacing:19.655109pt;}
.ls3b{letter-spacing:19.655562pt;}
.lse{letter-spacing:21.156303pt;}
.ls1{letter-spacing:25.292137pt;}
.ls38{letter-spacing:30.392787pt;}
.ls30{letter-spacing:42.679247pt;}
.ls2d{letter-spacing:43.811454pt;}
.ls45{letter-spacing:53.132533pt;}
.ls36{letter-spacing:55.793067pt;}
.ls43{letter-spacing:56.424787pt;}
.ls49{letter-spacing:56.430121pt;}
.ls35{letter-spacing:56.454400pt;}
.ls1f{letter-spacing:56.556800pt;}
.ls3f{letter-spacing:57.268013pt;}
.ls11{letter-spacing:204.791467pt;}
.ls5c{letter-spacing:448.688508pt;}
.ls55{letter-spacing:482.032508pt;}
.ls39{letter-spacing:593.251118pt;}
.ls92{letter-spacing:612.486528pt;}
.ls1a{letter-spacing:684.567733pt;}
.ls71{letter-spacing:754.641184pt;}
.ls96{letter-spacing:754.941536pt;}
.ls23{letter-spacing:836.945067pt;}
.ws91{word-spacing:-53.440000pt;}
.wsd8{word-spacing:-48.000000pt;}
.ws89{word-spacing:-45.233913pt;}
.wsc{word-spacing:-20.194365pt;}
.ws94{word-spacing:-13.376032pt;}
.ws93{word-spacing:-13.322592pt;}
.ws22{word-spacing:-13.283467pt;}
.wscd{word-spacing:-11.955200pt;}
.wsd7{word-spacing:-10.810240pt;}
.ws8f{word-spacing:-10.801728pt;}
.ws90{word-spacing:-10.640000pt;}
.ws2e{word-spacing:-10.626800pt;}
.ws8a{word-spacing:-10.095467pt;}
.wsb{word-spacing:-9.298400pt;}
.ws95{word-spacing:-8.000000pt;}
.ws7c{word-spacing:-3.763200pt;}
.ws88{word-spacing:-3.134898pt;}
.wsa8{word-spacing:-3.110208pt;}
.wsa9{word-spacing:-3.024704pt;}
.ws10e{word-spacing:-2.975497pt;}
.ws61{word-spacing:-2.869229pt;}
.ws6a{word-spacing:-2.762961pt;}
.wsf1{word-spacing:-2.757504pt;}
.ws6b{word-spacing:-2.709827pt;}
.wsfc{word-spacing:-2.656693pt;}
.ws109{word-spacing:-2.337890pt;}
.wsb9{word-spacing:-2.185696pt;}
.ws155{word-spacing:-2.104115pt;}
.ws10d{word-spacing:-2.072221pt;}
.wsda{word-spacing:-1.965953pt;}
.ws8d{word-spacing:-1.912819pt;}
.wscb{word-spacing:-1.859685pt;}
.wsb1{word-spacing:-1.827648pt;}
.wse5{word-spacing:-1.816960pt;}
.ws5a{word-spacing:-1.806551pt;}
.wsb2{word-spacing:-1.736800pt;}
.ws101{word-spacing:-1.700284pt;}
.ws68{word-spacing:-1.647150pt;}
.ws1b{word-spacing:-1.625907pt;}
.ws10a{word-spacing:-1.594016pt;}
.wsf3{word-spacing:-1.517696pt;}
.ws2b{word-spacing:-1.487748pt;}
.wsf4{word-spacing:-1.442880pt;}
.ws67{word-spacing:-1.434614pt;}
.ws39{word-spacing:-1.381481pt;}
.ws11c{word-spacing:-1.338982pt;}
.wse4{word-spacing:-1.287904pt;}
.ws72{word-spacing:-1.275213pt;}
.ws114{word-spacing:-1.243341pt;}
.ws102{word-spacing:-1.168945pt;}
.ws69{word-spacing:-1.115811pt;}
.ws64{word-spacing:-1.062677pt;}
.ws10b{word-spacing:-0.956410pt;}
.wsc4{word-spacing:-0.935200pt;}
.wsa5{word-spacing:-0.913824pt;}
.ws50{word-spacing:-0.903276pt;}
.wsa6{word-spacing:-0.903136pt;}
.wse3{word-spacing:-0.876416pt;}
.wsfe{word-spacing:-0.850142pt;}
.ws121{word-spacing:-0.820190pt;}
.ws120{word-spacing:-0.812954pt;}
.wsff{word-spacing:-0.797008pt;}
.wsc3{word-spacing:-0.780224pt;}
.ws62{word-spacing:-0.690740pt;}
.ws31{word-spacing:-0.584473pt;}
.ws153{word-spacing:-0.526029pt;}
.wscc{word-spacing:-0.478208pt;}
.ws26{word-spacing:-0.425071pt;}
.ws11f{word-spacing:-0.382566pt;}
.wsdf{word-spacing:-0.374080pt;}
.ws35{word-spacing:-0.318803pt;}
.wsea{word-spacing:-0.304608pt;}
.wsb8{word-spacing:-0.299264pt;}
.wsd9{word-spacing:-0.286925pt;}
.ws2f{word-spacing:-0.265669pt;}
.wsdc{word-spacing:-0.246848pt;}
.wsbe{word-spacing:-0.245824pt;}
.ws9d{word-spacing:-0.242592pt;}
.ws123{word-spacing:-0.239104pt;}
.wsbc{word-spacing:-0.213760pt;}
.ws43{word-spacing:-0.212535pt;}
.wsc9{word-spacing:-0.208416pt;}
.ws12{word-spacing:-0.191283pt;}
.ws24{word-spacing:-0.159402pt;}
.ws12d{word-spacing:-0.143462pt;}
.ws25{word-spacing:-0.106268pt;}
.ws11e{word-spacing:-0.095642pt;}
.wsdd{word-spacing:-0.072352pt;}
.ws9e{word-spacing:-0.068096pt;}
.ws92{word-spacing:-0.053440pt;}
.ws21{word-spacing:-0.053134pt;}
.wsdb{word-spacing:-0.051072pt;}
.ws16{word-spacing:-0.047821pt;}
.ws9c{word-spacing:-0.046816pt;}
.wsbb{word-spacing:-0.026720pt;}
.ws11d{word-spacing:-0.013483pt;}
.ws124{word-spacing:-0.012015pt;}
.wsbd{word-spacing:-0.010688pt;}
.ws140{word-spacing:-0.010180pt;}
.ws135{word-spacing:-0.009873pt;}
.ws138{word-spacing:-0.009685pt;}
.ws137{word-spacing:-0.008269pt;}
.ws12f{word-spacing:-0.006656pt;}
.wsd3{word-spacing:-0.006126pt;}
.ws13b{word-spacing:-0.005470pt;}
.ws8b{word-spacing:-0.004998pt;}
.ws12b{word-spacing:-0.004787pt;}
.ws14d{word-spacing:-0.004753pt;}
.ws11b{word-spacing:-0.004207pt;}
.ws149{word-spacing:-0.003721pt;}
.ws154{word-spacing:-0.003439pt;}
.ws12e{word-spacing:-0.003319pt;}
.ws126{word-spacing:-0.002944pt;}
.ws119{word-spacing:-0.002935pt;}
.ws14b{word-spacing:-0.001638pt;}
.ws0{word-spacing:0.000000pt;}
.ws156{word-spacing:0.001246pt;}
.ws2d{word-spacing:0.003199pt;}
.wsa0{word-spacing:0.005344pt;}
.wsd1{word-spacing:0.013578pt;}
.wsaa{word-spacing:0.026720pt;}
.ws3{word-spacing:0.037194pt;}
.ws14{word-spacing:0.047821pt;}
.wsb4{word-spacing:0.048096pt;}
.ws1e{word-spacing:0.053134pt;}
.wsba{word-spacing:0.053440pt;}
.wsee{word-spacing:0.074816pt;}
.wse2{word-spacing:0.076800pt;}
.ws7d{word-spacing:0.083831pt;}
.wsb3{word-spacing:0.085504pt;}
.wsb7{word-spacing:0.086400pt;}
.ws7e{word-spacing:0.089582pt;}
.ws113{word-spacing:0.095642pt;}
.ws20{word-spacing:0.106268pt;}
.wsb5{word-spacing:0.106880pt;}
.wsac{word-spacing:0.115200pt;}
.ws15{word-spacing:0.143462pt;}
.wse9{word-spacing:0.144000pt;}
.wsab{word-spacing:0.158400pt;}
.ws37{word-spacing:0.159402pt;}
.wse8{word-spacing:0.160320pt;}
.wsb6{word-spacing:0.163200pt;}
.ws9a{word-spacing:0.170029pt;}
.ws11{word-spacing:0.191283pt;}
.ws28{word-spacing:0.212535pt;}
.ws19{word-spacing:0.239104pt;}
.ws36{word-spacing:0.265669pt;}
.ws127{word-spacing:0.286925pt;}
.ws8e{word-spacing:0.318803pt;}
.ws51{word-spacing:0.371937pt;}
.ws145{word-spacing:0.382566pt;}
.ws3a{word-spacing:0.425071pt;}
.wse0{word-spacing:0.456000pt;}
.ws63{word-spacing:0.478205pt;}
.wse1{word-spacing:0.518400pt;}
.ws148{word-spacing:0.526029pt;}
.ws53{word-spacing:0.531339pt;}
.ws27{word-spacing:0.584473pt;}
.ws40{word-spacing:0.637606pt;}
.ws100{word-spacing:0.690740pt;}
.wsc2{word-spacing:0.710752pt;}
.ws146{word-spacing:0.717312pt;}
.ws17{word-spacing:0.765133pt;}
.ws1f{word-spacing:0.797008pt;}
.ws134{word-spacing:0.812954pt;}
.wsc1{word-spacing:0.822976pt;}
.ws54{word-spacing:0.850142pt;}
.ws6c{word-spacing:0.903276pt;}
.ws106{word-spacing:0.956410pt;}
.ws129{word-spacing:0.956416pt;}
.ws7a{word-spacing:1.009543pt;}
.ws30{word-spacing:1.062677pt;}
.ws5e{word-spacing:1.115811pt;}
.ws142{word-spacing:1.147699pt;}
.ws4a{word-spacing:1.168945pt;}
.ws10c{word-spacing:1.222079pt;}
.wsa{word-spacing:1.227389pt;}
.ws13e{word-spacing:1.243341pt;}
.ws76{word-spacing:1.275213pt;}
.ws13{word-spacing:1.291162pt;}
.ws38{word-spacing:1.328347pt;}
.ws157{word-spacing:1.347589pt;}
.ws13c{word-spacing:1.354638pt;}
.wsf{word-spacing:1.386803pt;}
.ws2c{word-spacing:1.434614pt;}
.ws118{word-spacing:1.434624pt;}
.ws45{word-spacing:1.487748pt;}
.ws4b{word-spacing:1.540882pt;}
.ws74{word-spacing:1.594016pt;}
.ws52{word-spacing:1.647150pt;}
.ws5f{word-spacing:1.648294pt;}
.ws117{word-spacing:1.673728pt;}
.ws111{word-spacing:1.700284pt;}
.wsae{word-spacing:1.704736pt;}
.ws3f{word-spacing:1.753418pt;}
.wsad{word-spacing:1.768864pt;}
.wsca{word-spacing:1.806551pt;}
.ws47{word-spacing:1.859685pt;}
.ws13f{word-spacing:1.865011pt;}
.ws66{word-spacing:1.912819pt;}
.ws3e{word-spacing:1.965953pt;}
.wse7{word-spacing:1.971936pt;}
.ws42{word-spacing:2.019087pt;}
.wsf9{word-spacing:2.049600pt;}
.wsfa{word-spacing:2.064000pt;}
.ws44{word-spacing:2.072221pt;}
.wsf8{word-spacing:2.073600pt;}
.wse6{word-spacing:2.084160pt;}
.ws5c{word-spacing:2.125355pt;}
.ws6e{word-spacing:2.178489pt;}
.ws6f{word-spacing:2.231622pt;}
.ws1a{word-spacing:2.232375pt;}
.ws1{word-spacing:2.232481pt;}
.wsb0{word-spacing:2.271200pt;}
.ws1d{word-spacing:2.284756pt;}
.ws2{word-spacing:2.293041pt;}
.ws116{word-spacing:2.295398pt;}
.ws59{word-spacing:2.337890pt;}
.wsf2{word-spacing:2.346016pt;}
.ws8c{word-spacing:2.391024pt;}
.wsaf{word-spacing:2.426176pt;}
.ws105{word-spacing:2.444158pt;}
.ws79{word-spacing:2.497292pt;}
.wsd0{word-spacing:2.550426pt;}
.wsd{word-spacing:2.550432pt;}
.wsc0{word-spacing:2.581152pt;}
.ws18{word-spacing:2.582323pt;}
.ws122{word-spacing:2.630144pt;}
.wsbf{word-spacing:2.650624pt;}
.ws130{word-spacing:2.677965pt;}
.ws48{word-spacing:2.709827pt;}
.ws3c{word-spacing:2.762961pt;}
.ws125{word-spacing:2.821427pt;}
.ws12a{word-spacing:2.861406pt;}
.ws131{word-spacing:2.862524pt;}
.ws13a{word-spacing:2.863360pt;}
.ws147{word-spacing:2.863479pt;}
.ws14e{word-spacing:2.864213pt;}
.ws139{word-spacing:2.864265pt;}
.ws136{word-spacing:2.865801pt;}
.ws151{word-spacing:2.867575pt;}
.ws33{word-spacing:2.869229pt;}
.ws11a{word-spacing:2.869248pt;}
.ws115{word-spacing:2.911829pt;}
.ws57{word-spacing:2.922363pt;}
.ws58{word-spacing:2.975497pt;}
.ws73{word-spacing:3.028630pt;}
.ws12c{word-spacing:3.060531pt;}
.wsa7{word-spacing:3.062112pt;}
.ws29{word-spacing:3.081764pt;}
.ws158{word-spacing:3.108352pt;}
.ws5d{word-spacing:3.134898pt;}
.ws1c{word-spacing:3.188032pt;}
.ws46{word-spacing:3.241166pt;}
.ws65{word-spacing:3.347434pt;}
.ws78{word-spacing:3.400567pt;}
.ws4f{word-spacing:3.453701pt;}
.ws128{word-spacing:3.490918pt;}
.wsfb{word-spacing:3.559969pt;}
.ws7f{word-spacing:3.613103pt;}
.ws3d{word-spacing:3.666237pt;}
.ws133{word-spacing:3.682202pt;}
.ws2a{word-spacing:3.878772pt;}
.ws110{word-spacing:3.931906pt;}
.wsa1{word-spacing:3.954560pt;}
.wsc7{word-spacing:3.965248pt;}
.ws3b{word-spacing:3.985040pt;}
.wsc8{word-spacing:4.029376pt;}
.ws4e{word-spacing:4.038174pt;}
.ws14c{word-spacing:4.112589pt;}
.ws77{word-spacing:4.144442pt;}
.wsef{word-spacing:4.248480pt;}
.ws4c{word-spacing:4.250709pt;}
.wsf0{word-spacing:4.253824pt;}
.ws141{word-spacing:4.303872pt;}
.ws56{word-spacing:4.463245pt;}
.ws75{word-spacing:4.516379pt;}
.wsc6{word-spacing:4.585152pt;}
.ws132{word-spacing:4.590797pt;}
.wsd2{word-spacing:4.622646pt;}
.wsc5{word-spacing:4.643936pt;}
.ws10f{word-spacing:4.728914pt;}
.ws9b{word-spacing:4.782048pt;}
.ws143{word-spacing:4.782080pt;}
.ws32{word-spacing:4.835182pt;}
.ws8{word-spacing:4.872362pt;}
.ws6d{word-spacing:4.888316pt;}
.ws103{word-spacing:4.941450pt;}
.ws55{word-spacing:5.153985pt;}
.ws81{word-spacing:5.207119pt;}
.ws23{word-spacing:5.260253pt;}
.ws60{word-spacing:5.313387pt;}
.wsfd{word-spacing:5.472788pt;}
.wsf6{word-spacing:5.477600pt;}
.wsf7{word-spacing:5.515008pt;}
.ws112{word-spacing:5.632190pt;}
.ws49{word-spacing:5.685324pt;}
.ws13d{word-spacing:5.786317pt;}
.wse{word-spacing:5.786700pt;}
.ws104{word-spacing:5.791591pt;}
.ws41{word-spacing:5.844725pt;}
.wsa3{word-spacing:5.857024pt;}
.wsa4{word-spacing:5.878400pt;}
.ws5b{word-spacing:6.004127pt;}
.ws14a{word-spacing:6.073242pt;}
.ws108{word-spacing:6.110395pt;}
.ws7b{word-spacing:6.216662pt;}
.ws99{word-spacing:6.322930pt;}
.ws84{word-spacing:6.362008pt;}
.ws83{word-spacing:6.376064pt;}
.ws107{word-spacing:6.429198pt;}
.wsa2{word-spacing:6.781536pt;}
.ws10{word-spacing:6.790554pt;}
.ws34{word-spacing:6.854269pt;}
.ws4d{word-spacing:6.907403pt;}
.wsf5{word-spacing:7.727424pt;}
.ws6{word-spacing:8.740496pt;}
.wsde{word-spacing:10.325056pt;}
.ws9f{word-spacing:10.329312pt;}
.ws7{word-spacing:10.525789pt;}
.ws152{word-spacing:11.909287pt;}
.ws144{word-spacing:12.576870pt;}
.ws4{word-spacing:13.761632pt;}
.ws150{word-spacing:16.331073pt;}
.ws14f{word-spacing:16.354714pt;}
.ws70{word-spacing:16.466956pt;}
.ws71{word-spacing:16.778661pt;}
.ws5{word-spacing:19.857270pt;}
.ws9{word-spacing:20.196125pt;}
.ws82{word-spacing:39.850400pt;}
.ws86{word-spacing:49.282667pt;}
.wseb{word-spacing:50.987104pt;}
.ws85{word-spacing:51.911788pt;}
.wsed{word-spacing:110.423072pt;}
.ws87{word-spacing:158.962667pt;}
.wsd5{word-spacing:171.737993pt;}
.ws98{word-spacing:227.498534pt;}
.ws96{word-spacing:238.125334pt;}
.ws97{word-spacing:295.722590pt;}
.wsce{word-spacing:316.764979pt;}
.wsd4{word-spacing:329.485312pt;}
.wscf{word-spacing:338.906010pt;}
.wsd6{word-spacing:500.301210pt;}
.ws80{word-spacing:592.868062pt;}
.wsec{word-spacing:601.472544pt;}
._62{margin-left:-285.483984pt;}
._61{margin-left:-50.904416pt;}
._16{margin-left:-20.673565pt;}
._6b{margin-left:-18.773044pt;}
._69{margin-left:-16.611874pt;}
._11{margin-left:-6.748001pt;}
._6{margin-left:-5.355930pt;}
._4{margin-left:-3.825648pt;}
._12{margin-left:-2.619532pt;}
._2{margin-left:-1.301776pt;}
._1b{width:0.956410pt;}
._1c{width:2.072721pt;}
._59{width:3.538739pt;}
._1a{width:4.569513pt;}
._68{width:9.766058pt;}
._0{width:11.530016pt;}
._5{width:12.433408pt;}
._4a{width:13.432275pt;}
._9{width:14.633165pt;}
._c{width:15.849865pt;}
._a{width:17.024205pt;}
._d{width:18.437318pt;}
._7{width:19.367424pt;}
._14{width:20.722208pt;}
._1{width:22.502128pt;}
._17{width:23.857106pt;}
._10{width:25.610524pt;}
._18{width:26.646630pt;}
._66{width:27.656166pt;}
._6a{width:28.713990pt;}
._3{width:29.648896pt;}
._67{width:30.578537pt;}
._19{width:31.508383pt;}
._b{width:32.677328pt;}
._13{width:34.483879pt;}
._8{width:35.530854pt;}
._15{width:37.512510pt;}
._23{width:53.828846pt;}
._22{width:57.457796pt;}
._65{width:83.154501pt;}
._47{width:155.417600pt;}
._5d{width:167.755366pt;}
._4b{width:173.111296pt;}
._26{width:186.387701pt;}
._25{width:197.479077pt;}
._41{width:199.613811pt;}
._1e{width:201.086464pt;}
._37{width:205.040747pt;}
._34{width:206.801941pt;}
._33{width:217.518507pt;}
._48{width:224.279552pt;}
._46{width:225.427251pt;}
._44{width:226.707206pt;}
._2c{width:230.638507pt;}
._1d{width:234.943590pt;}
._3f{width:238.125334pt;}
._43{width:242.801126pt;}
._45{width:245.559808pt;}
._3b{width:247.221875pt;}
._42{width:248.752134pt;}
._53{width:264.358794pt;}
._4c{width:265.931469pt;}
._35{width:275.007413pt;}
._58{width:285.729264pt;}
._31{width:290.479040pt;}
._56{width:293.901434pt;}
._36{width:300.114869pt;}
._40{width:306.306883pt;}
._30{width:311.279040pt;}
._32{width:312.879040pt;}
._2e{width:315.119040pt;}
._3a{width:316.933683pt;}
._2a{width:318.000640pt;}
._50{width:320.681082pt;}
._29{width:324.719040pt;}
._2b{width:326.960640pt;}
._27{width:328.559040pt;}
._2d{width:334.897920pt;}
._3e{width:344.733392pt;}
._4f{width:350.861210pt;}
._2f{width:355.759040pt;}
._4e{width:362.816410pt;}
._28{width:369.840640pt;}
._52{width:389.261312pt;}
._64{width:396.316384pt;}
._57{width:398.777635pt;}
._55{width:401.216512pt;}
._60{width:408.438592pt;}
._4d{width:413.359570pt;}
._5a{width:417.810330pt;}
._3c{width:421.543902pt;}
._20{width:423.596646pt;}
._51{width:427.709235pt;}
._38{width:432.170702pt;}
._54{width:439.664435pt;}
._3d{width:440.757157pt;}
._21{width:445.163827pt;}
._39{width:451.383957pt;}
._1f{width:456.353894pt;}
._5b{width:512.256410pt;}
._49{width:542.096589pt;}
._5e{width:562.563875pt;}
._e{width:783.953256pt;}
._63{width:807.308634pt;}
._5f{width:1850.573830pt;}
._24{width:1870.883462pt;}
._5c{width:2234.346491pt;}
._f{width:2255.599824pt;}
.fs13{font-size:32.000000pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:40.381867pt;}
.fse{font-size:42.077867pt;}
.fs9{font-size:42.507200pt;}
.fs10{font-size:42.560000pt;}
.fsa{font-size:47.820800pt;}
.fs12{font-size:48.000000pt;}
.fsd{font-size:49.829333pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs11{font-size:53.440000pt;}
.fsc{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fsf{font-size:74.387733pt;}
.fs6{font-size:80.777458pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.y12d{bottom:-612.947600pt;}
.y153{bottom:-519.505632pt;}
.y152{bottom:-500.386136pt;}
.y151{bottom:-483.266632pt;}
.y150{bottom:-466.147128pt;}
.y14f{bottom:-449.107784pt;}
.y14e{bottom:-431.988280pt;}
.y14d{bottom:-414.947600pt;}
.y14c{bottom:-382.227600pt;}
.y14b{bottom:-364.867528pt;}
.y14a{bottom:-346.867528pt;}
.y149{bottom:-328.867368pt;}
.y148{bottom:-310.947600pt;}
.y147{bottom:-292.947979pt;}
.y143{bottom:-274.307600pt;}
.y146{bottom:-265.267467pt;}
.y141{bottom:-256.307600pt;}
.y145{bottom:-247.267467pt;}
.y13f{bottom:-238.307600pt;}
.y144{bottom:-229.267600pt;}
.y142{bottom:-220.307600pt;}
.y140{bottom:-202.307600pt;}
.y13e{bottom:-183.667600pt;}
.y13d{bottom:-156.947600pt;}
.y1b0{bottom:-136.420933pt;}
.y13c{bottom:-125.185296pt;}
.y13b{bottom:-108.145952pt;}
.y13a{bottom:-91.026448pt;}
.y139{bottom:-73.906944pt;}
.y1ca{bottom:-66.580933pt;}
.y138{bottom:-56.867600pt;}
.y1c9{bottom:-31.221333pt;}
.y137{bottom:-24.147600pt;}
.y1c8{bottom:-15.780933pt;}
.y136{bottom:-4.144480pt;}
.y0{bottom:0.000000pt;}
.y1c7{bottom:4.139259pt;}
.y39{bottom:8.207950pt;}
.y38{bottom:23.914454pt;}
.y66{bottom:28.346667pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y1d3{bottom:92.106667pt;}
.y177{bottom:92.108000pt;}
.y229{bottom:92.798667pt;}
.y36{bottom:93.018667pt;}
.y1ff{bottom:99.666667pt;}
.y129{bottom:101.357333pt;}
.y25f{bottom:103.518667pt;}
.y65{bottom:104.689333pt;}
.yd1{bottom:106.308000pt;}
.y228{bottom:108.141333pt;}
.y213{bottom:108.300000pt;}
.y176{bottom:108.844000pt;}
.y35{bottom:108.920000pt;}
.y1fe{bottom:116.404000pt;}
.y128{bottom:118.094667pt;}
.y25e{bottom:118.861333pt;}
.yd0{bottom:119.060000pt;}
.y64{bottom:121.426667pt;}
.y9c{bottom:123.045333pt;}
.y227{bottom:123.484000pt;}
.y21{bottom:123.790666pt;}
.y34{bottom:124.820000pt;}
.y212{bottom:125.037333pt;}
.y175{bottom:125.581333pt;}
.y1fd{bottom:133.140000pt;}
.y25d{bottom:134.202667pt;}
.y127{bottom:134.832000pt;}
.ycf{bottom:135.797333pt;}
.y63{bottom:138.164000pt;}
.y226{bottom:138.826667pt;}
.ydd{bottom:139.648000pt;}
.y9b{bottom:139.782667pt;}
.y33{bottom:140.720000pt;}
.y211{bottom:141.774667pt;}
.y1d2{bottom:148.718667pt;}
.y25c{bottom:149.545333pt;}
.y1fc{bottom:149.877333pt;}
.y126{bottom:151.569333pt;}
.yce{bottom:152.534667pt;}
.y225{bottom:154.169333pt;}
.y62{bottom:154.901333pt;}
.ydc{bottom:156.385333pt;}
.y9a{bottom:156.520000pt;}
.y32{bottom:156.621333pt;}
.yd4{bottom:158.113333pt;}
.y174{bottom:160.600000pt;}
.y19e{bottom:164.172000pt;}
.y25b{bottom:164.888000pt;}
.y1d1{bottom:165.456000pt;}
.y1fb{bottom:166.614667pt;}
.y125{bottom:168.306667pt;}
.ycd{bottom:169.272000pt;}
.y224{bottom:169.512000pt;}
.y61{bottom:171.638667pt;}
.y31{bottom:172.521333pt;}
.y173{bottom:173.218667pt;}
.y99{bottom:173.257333pt;}
.y210{bottom:174.452000pt;}
.yd3{bottom:174.850667pt;}
.y18{bottom:175.052000pt;}
.y25a{bottom:180.230667pt;}
.y19d{bottom:180.909333pt;}
.y1d0{bottom:182.193333pt;}
.y1fa{bottom:183.352000pt;}
.y223{bottom:184.853333pt;}
.ycc{bottom:186.009333pt;}
.ydb{bottom:186.022667pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y60{bottom:188.376000pt;}
.y30{bottom:188.421333pt;}
.y124{bottom:189.029333pt;}
.y172{bottom:189.969333pt;}
.y98{bottom:189.994667pt;}
.y20f{bottom:191.189333pt;}
.yda{bottom:195.296000pt;}
.y259{bottom:195.573333pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y19c{bottom:197.646667pt;}
.y1cf{bottom:198.930667pt;}
.y1f9{bottom:200.089333pt;}
.y222{bottom:200.196000pt;}
.ycb{bottom:202.746667pt;}
.y2f{bottom:204.322667pt;}
.y171{bottom:204.581333pt;}
.y5f{bottom:205.113333pt;}
.y97{bottom:206.732000pt;}
.yd2{bottom:207.528000pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y258{bottom:210.916000pt;}
.y19b{bottom:214.384000pt;}
.y221{bottom:215.538667pt;}
.y1ce{bottom:215.668000pt;}
.y1f8{bottom:216.826667pt;}
.y123{bottom:218.917333pt;}
.y170{bottom:219.193333pt;}
.yca{bottom:219.484000pt;}
.y5e{bottom:221.850667pt;}
.y96{bottom:223.469333pt;}
.y20e{bottom:223.868000pt;}
.y135{bottom:224.735032pt;}
.y257{bottom:226.258667pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y1f7{bottom:233.564000pt;}
.y220{bottom:234.866667pt;}
.y122{bottom:235.654667pt;}
.yc9{bottom:236.221333pt;}
.y1cd{bottom:236.390667pt;}
.y5d{bottom:238.588000pt;}
.yd9{bottom:239.686667pt;}
.y95{bottom:240.206667pt;}
.y256{bottom:241.601333pt;}
.y134{bottom:241.854536pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y19a{bottom:250.058667pt;}
.y1f6{bottom:250.301333pt;}
.y121{bottom:252.392000pt;}
.yc8{bottom:252.958667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y5c{bottom:255.325333pt;}
.yd7{bottom:256.422667pt;}
.y20d{bottom:256.545333pt;}
.y94{bottom:256.944000pt;}
.y133{bottom:258.893880pt;}
.y16f{bottom:261.221333pt;}
.yd8{bottom:261.245333pt;}
.y199{bottom:262.677333pt;}
.y1cc{bottom:262.953333pt;}
.y21f{bottom:264.754667pt;}
.y2e{bottom:266.570667pt;}
.y1f5{bottom:267.038667pt;}
.y120{bottom:269.129333pt;}
.yc7{bottom:269.696000pt;}
.y5b{bottom:272.062667pt;}
.y255{bottom:272.285333pt;}
.y20c{bottom:273.282667pt;}
.y93{bottom:273.681333pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y132{bottom:276.013384pt;}
.y198{bottom:279.428000pt;}
.y1cb{bottom:280.049333pt;}
.y2d{bottom:282.470667pt;}
.y1f4{bottom:283.776000pt;}
.yd6{bottom:283.981333pt;}
.y11f{bottom:285.865333pt;}
.yc6{bottom:286.433333pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y254{bottom:287.628000pt;}
.y21e{bottom:288.345333pt;}
.y5a{bottom:288.800000pt;}
.y16e{bottom:289.326667pt;}
.y20b{bottom:290.020000pt;}
.y92{bottom:290.417333pt;}
.y131{bottom:293.052728pt;}
.yd5{bottom:293.094667pt;}
.y2c{bottom:298.370667pt;}
.y197{bottom:300.441333pt;}
.y1f3{bottom:300.513333pt;}
.y1ad{bottom:302.642667pt;}
.y253{bottom:302.970667pt;}
.yc5{bottom:303.170667pt;}
.y21d{bottom:303.968000pt;}
.y59{bottom:305.537333pt;}
.y20a{bottom:306.757333pt;}
.y91{bottom:307.154667pt;}
.yf{bottom:309.452000pt;}
.y130{bottom:310.172232pt;}
.y2b{bottom:314.270667pt;}
.y11e{bottom:314.872000pt;}
.y1f2{bottom:317.250667pt;}
.y252{bottom:318.313333pt;}
.yc4{bottom:319.908000pt;}
.y196{bottom:321.456000pt;}
.y16d{bottom:321.652000pt;}
.y58{bottom:322.274667pt;}
.y209{bottom:323.494667pt;}
.y90{bottom:323.892000pt;}
.y11d{bottom:326.558667pt;}
.y12f{bottom:327.291736pt;}
.y21c{bottom:327.558667pt;}
.y11b{bottom:329.321333pt;}
.y251{bottom:333.656000pt;}
.y1f1{bottom:333.988000pt;}
.y195{bottom:336.068000pt;}
.yc3{bottom:336.645333pt;}
.y2a{bottom:338.141333pt;}
.y16c{bottom:338.389333pt;}
.y57{bottom:339.012000pt;}
.y208{bottom:340.232000pt;}
.y8f{bottom:340.629333pt;}
.y11c{bottom:343.668000pt;}
.ye{bottom:343.809333pt;}
.y12e{bottom:348.332400pt;}
.y250{bottom:348.998667pt;}
.y194{bottom:350.680000pt;}
.y1f0{bottom:350.725333pt;}
.y21b{bottom:351.150667pt;}
.yc2{bottom:353.382667pt;}
.y29{bottom:354.042667pt;}
.y16b{bottom:355.126667pt;}
.y56{bottom:355.748000pt;}
.y207{bottom:356.968000pt;}
.y8e{bottom:357.366667pt;}
.yd{bottom:362.706666pt;}
.y24f{bottom:364.341333pt;}
.y1ef{bottom:367.462667pt;}
.y11a{bottom:367.936000pt;}
.y28{bottom:369.942667pt;}
.yc1{bottom:370.118667pt;}
.y193{bottom:371.693333pt;}
.y16a{bottom:371.864000pt;}
.y55{bottom:372.485333pt;}
.y206{bottom:373.705333pt;}
.y8d{bottom:374.104000pt;}
.y21a{bottom:374.742667pt;}
.y24e{bottom:379.684000pt;}
.y1ee{bottom:384.200000pt;}
.y119{bottom:384.673333pt;}
.y27{bottom:385.842667pt;}
.yc0{bottom:386.856000pt;}
.y169{bottom:388.601333pt;}
.y54{bottom:389.222667pt;}
.y219{bottom:390.364000pt;}
.y205{bottom:390.442667pt;}
.y8c{bottom:390.841333pt;}
.y192{bottom:392.708000pt;}
.y24d{bottom:395.025333pt;}
.y12c{bottom:396.972520pt;}
.y1ed{bottom:400.937333pt;}
.y26{bottom:401.744000pt;}
.ybf{bottom:403.593333pt;}
.y1c6{bottom:403.899851pt;}
.y168{bottom:405.338667pt;}
.y12b{bottom:405.532400pt;}
.y53{bottom:405.960000pt;}
.y204{bottom:407.180000pt;}
.y8b{bottom:407.578667pt;}
.y24c{bottom:410.368000pt;}
.y218{bottom:413.954667pt;}
.y115{bottom:414.581333pt;}
.y25{bottom:417.644000pt;}
.y1ec{bottom:417.674667pt;}
.ybe{bottom:420.330667pt;}
.y191{bottom:420.813333pt;}
.y1c5{bottom:420.940531pt;}
.y52{bottom:422.697333pt;}
.y203{bottom:423.917333pt;}
.y8a{bottom:424.316000pt;}
.y24b{bottom:425.710667pt;}
.y217{bottom:429.576000pt;}
.y114{bottom:431.318667pt;}
.y24{bottom:433.544000pt;}
.y1eb{bottom:434.412000pt;}
.y10e{bottom:435.200000pt;}
.ybd{bottom:437.068000pt;}
.y1c4{bottom:438.060035pt;}
.y51{bottom:439.434667pt;}
.y167{bottom:440.357333pt;}
.y202{bottom:440.654667pt;}
.y89{bottom:441.053333pt;}
.y10d{bottom:443.688000pt;}
.y117{bottom:443.689333pt;}
.y108{bottom:443.884000pt;}
.y216{bottom:445.198667pt;}
.yc{bottom:446.990669pt;}
.y113{bottom:448.056000pt;}
.y23{bottom:449.445333pt;}
.y1ea{bottom:451.149333pt;}
.y10c{bottom:451.658667pt;}
.y118{bottom:452.322667pt;}
.y190{bottom:452.561333pt;}
.y112{bottom:453.369333pt;}
.ybc{bottom:453.805333pt;}
.y1c3{bottom:455.179539pt;}
.y24a{bottom:456.396000pt;}
.y201{bottom:457.392000pt;}
.y88{bottom:457.790667pt;}
.y111{bottom:458.682667pt;}
.y166{bottom:458.841333pt;}
.y10b{bottom:459.629333pt;}
.y50{bottom:460.157333pt;}
.y215{bottom:460.820000pt;}
.yb{bottom:462.990669pt;}
.y22{bottom:465.345333pt;}
.y10a{bottom:467.598667pt;}
.y1e9{bottom:467.886667pt;}
.y18f{bottom:469.297333pt;}
.ybb{bottom:470.542667pt;}
.y107{bottom:471.058667pt;}
.y165{bottom:471.461333pt;}
.y249{bottom:471.738667pt;}
.y1c2{bottom:472.220219pt;}
.y110{bottom:473.221333pt;}
.y87{bottom:474.528000pt;}
.y109{bottom:475.569333pt;}
.y214{bottom:476.441333pt;}
.y200{bottom:478.114667pt;}
.ya{bottom:478.990666pt;}
.y164{bottom:484.080000pt;}
.y1e8{bottom:484.624000pt;}
.y18e{bottom:486.034667pt;}
.y248{bottom:487.081333pt;}
.yba{bottom:487.280000pt;}
.y1c1{bottom:489.339723pt;}
.y10f{bottom:489.985333pt;}
.y86{bottom:491.265333pt;}
.y9{bottom:494.990666pt;}
.y163{bottom:496.700000pt;}
.y116{bottom:498.948000pt;}
.y1e7{bottom:501.361333pt;}
.y247{bottom:502.424000pt;}
.y18d{bottom:502.772000pt;}
.yb9{bottom:504.017333pt;}
.y1c0{bottom:506.379067pt;}
.y85{bottom:508.002667pt;}
.y162{bottom:509.318667pt;}
.y246{bottom:517.766667pt;}
.y1e6{bottom:518.098667pt;}
.y18c{bottom:519.509333pt;}
.y106{bottom:520.749333pt;}
.yb8{bottom:520.754667pt;}
.y84{bottom:524.740000pt;}
.y4f{bottom:526.957333pt;}
.y161{bottom:528.340000pt;}
.y245{bottom:533.108000pt;}
.y105{bottom:534.205333pt;}
.y15e{bottom:534.650667pt;}
.y1e5{bottom:534.836000pt;}
.y18b{bottom:536.246667pt;}
.y104{bottom:537.486667pt;}
.yb7{bottom:537.492000pt;}
.y1bf{bottom:539.099067pt;}
.y160{bottom:540.960000pt;}
.y83{bottom:541.477333pt;}
.y4e{bottom:544.252000pt;}
.y15d{bottom:547.269333pt;}
.y244{bottom:548.450667pt;}
.y103{bottom:550.942667pt;}
.y1e4{bottom:551.573333pt;}
.y18a{bottom:552.984000pt;}
.y15f{bottom:553.578667pt;}
.y102{bottom:554.224000pt;}
.yb6{bottom:554.229333pt;}
.y1be{bottom:556.459267pt;}
.y82{bottom:558.214667pt;}
.y243{bottom:563.793333pt;}
.y15c{bottom:566.198667pt;}
.y1e3{bottom:568.310667pt;}
.y189{bottom:569.721333pt;}
.yb5{bottom:570.966667pt;}
.y8{bottom:573.786667pt;}
.y81{bottom:574.952000pt;}
.y1bd{bottom:575.099139pt;}
.y4d{bottom:577.488000pt;}
.y101{bottom:577.569333pt;}
.y242{bottom:579.136000pt;}
.y100{bottom:580.850667pt;}
.y1e2{bottom:585.046667pt;}
.y15b{bottom:585.220000pt;}
.y188{bottom:586.458667pt;}
.yb4{bottom:587.704000pt;}
.y80{bottom:591.689333pt;}
.y7{bottom:592.685334pt;}
.y1bb{bottom:593.099067pt;}
.y241{bottom:594.478667pt;}
.y4c{bottom:594.782667pt;}
.y1e1{bottom:601.784000pt;}
.y187{bottom:603.196000pt;}
.yb3{bottom:604.441333pt;}
.yfe{bottom:604.820000pt;}
.yfd{bottom:608.101333pt;}
.y7f{bottom:608.426667pt;}
.y240{bottom:609.821333pt;}
.y1bc{bottom:611.098995pt;}
.y4b{bottom:612.078667pt;}
.y15a{bottom:614.588000pt;}
.y1e0{bottom:618.521333pt;}
.y186{bottom:619.933333pt;}
.yb2{bottom:621.178667pt;}
.yfc{bottom:624.925333pt;}
.y7e{bottom:625.164000pt;}
.yf6{bottom:628.596000pt;}
.y4a{bottom:629.373333pt;}
.y1ba{bottom:629.979067pt;}
.y1df{bottom:635.258667pt;}
.y185{bottom:636.670667pt;}
.yf5{bottom:637.084000pt;}
.yb1{bottom:637.916000pt;}
.yf1{bottom:638.452000pt;}
.y23f{bottom:640.506667pt;}
.yfb{bottom:641.662667pt;}
.yf0{bottom:641.733333pt;}
.y7d{bottom:641.901333pt;}
.yf4{bottom:645.053333pt;}
.y6{bottom:645.598667pt;}
.y49{bottom:646.669333pt;}
.y159{bottom:646.913333pt;}
.y1b9{bottom:648.379067pt;}
.y1de{bottom:651.996000pt;}
.yf3{bottom:653.024000pt;}
.yfa{bottom:654.156000pt;}
.yb0{bottom:654.653333pt;}
.y23e{bottom:655.848000pt;}
.yf9{bottom:658.400000pt;}
.y7c{bottom:658.638667pt;}
.yf2{bottom:660.993333pt;}
.y158{bottom:663.650667pt;}
.y48{bottom:663.964000pt;}
.y1dd{bottom:668.733333pt;}
.y3{bottom:668.977329pt;}
.yf8{bottom:670.829333pt;}
.y23d{bottom:671.190667pt;}
.yaf{bottom:671.390667pt;}
.y184{bottom:672.345333pt;}
.y1b8{bottom:675.099067pt;}
.yf7{bottom:675.224000pt;}
.y7b{bottom:675.376000pt;}
.y157{bottom:680.388000pt;}
.y47{bottom:681.258667pt;}
.yff{bottom:684.373333pt;}
.y1dc{bottom:685.470667pt;}
.y23c{bottom:686.533333pt;}
.yae{bottom:688.128000pt;}
.y183{bottom:691.428000pt;}
.yef{bottom:692.101333pt;}
.y7a{bottom:692.113333pt;}
.y156{bottom:697.125333pt;}
.y46{bottom:698.554667pt;}
.y23b{bottom:701.876000pt;}
.y1db{bottom:702.208000pt;}
.yad{bottom:704.865333pt;}
.y1b7{bottom:706.859379pt;}
.y1ac{bottom:707.677333pt;}
.yee{bottom:708.838667pt;}
.y79{bottom:708.850667pt;}
.y182{bottom:712.441333pt;}
.y155{bottom:713.862667pt;}
.y45{bottom:715.849333pt;}
.y23a{bottom:717.218667pt;}
.y1da{bottom:718.945333pt;}
.yac{bottom:721.602667pt;}
.y1b6{bottom:723.978883pt;}
.y1ab{bottom:724.414667pt;}
.yed{bottom:725.576000pt;}
.y78{bottom:725.588000pt;}
.y181{bottom:727.053333pt;}
.y262{bottom:728.509333pt;}
.y239{bottom:732.561333pt;}
.y44{bottom:733.144000pt;}
.y1d9{bottom:735.682667pt;}
.yab{bottom:738.340000pt;}
.y1b5{bottom:741.019563pt;}
.y1aa{bottom:741.150667pt;}
.y180{bottom:741.665333pt;}
.yec{bottom:742.313333pt;}
.y77{bottom:742.324000pt;}
.y154{bottom:743.042667pt;}
.y261{bottom:743.852000pt;}
.y238{bottom:747.904000pt;}
.y43{bottom:750.440000pt;}
.y1d8{bottom:752.420000pt;}
.yaa{bottom:755.077333pt;}
.y17f{bottom:756.277333pt;}
.y1a9{bottom:757.888000pt;}
.y1b4{bottom:758.139067pt;}
.yeb{bottom:759.050667pt;}
.y76{bottom:759.061333pt;}
.y260{bottom:759.194667pt;}
.y12a{bottom:762.980000pt;}
.y237{bottom:763.246667pt;}
.y42{bottom:767.734667pt;}
.y1d7{bottom:769.157333pt;}
.ya9{bottom:771.814667pt;}
.y1a8{bottom:774.625333pt;}
.yea{bottom:775.788000pt;}
.y75{bottom:775.798667pt;}
.y17e{bottom:777.290667pt;}
.y236{bottom:778.589333pt;}
.y2{bottom:781.661334pt;}
.y1d6{bottom:785.894667pt;}
.ya8{bottom:788.552000pt;}
.y1b3{bottom:790.858667pt;}
.y1a7{bottom:791.362667pt;}
.y17d{bottom:791.902667pt;}
.ye9{bottom:792.525333pt;}
.y74{bottom:792.536000pt;}
.y17c{bottom:792.566667pt;}
.y235{bottom:793.930667pt;}
.y41{bottom:802.033333pt;}
.y1d5{bottom:802.632000pt;}
.ya7{bottom:805.289333pt;}
.y1b2{bottom:806.299067pt;}
.y17b{bottom:807.178667pt;}
.y1a6{bottom:808.100000pt;}
.ye8{bottom:809.262667pt;}
.y73{bottom:809.273333pt;}
.y40{bottom:816.378667pt;}
.y1d4{bottom:819.369333pt;}
.ya6{bottom:822.025333pt;}
.y1b1{bottom:823.579067pt;}
.y234{bottom:824.616000pt;}
.ye7{bottom:826.000000pt;}
.y72{bottom:826.010667pt;}
.y17a{bottom:828.857333pt;}
.y3f{bottom:830.725333pt;}
.ya5{bottom:838.762667pt;}
.y233{bottom:839.958667pt;}
.ye6{bottom:842.737333pt;}
.y71{bottom:842.748000pt;}
.y1a5{bottom:843.290667pt;}
.y3e{bottom:845.072000pt;}
.y232{bottom:855.301333pt;}
.ya4{bottom:855.500000pt;}
.y1{bottom:859.312000pt;}
.ye5{bottom:859.474667pt;}
.y70{bottom:859.485333pt;}
.y179{bottom:859.620000pt;}
.y1a4{bottom:859.716000pt;}
.y231{bottom:870.644000pt;}
.ya3{bottom:872.237333pt;}
.y1af{bottom:873.499187pt;}
.ye4{bottom:876.212000pt;}
.y6f{bottom:876.222667pt;}
.y178{bottom:876.716000pt;}
.y1a3{bottom:880.730667pt;}
.y1ae{bottom:882.059067pt;}
.y230{bottom:885.986667pt;}
.y3d{bottom:888.641333pt;}
.ya2{bottom:888.974667pt;}
.y6e{bottom:892.960000pt;}
.y1a2{bottom:895.342667pt;}
.ye3{bottom:899.930667pt;}
.y22f{bottom:901.329333pt;}
.ya1{bottom:905.712000pt;}
.y6d{bottom:909.697333pt;}
.y1a1{bottom:909.954667pt;}
.y19f{bottom:910.304000pt;}
.ye2{bottom:916.356000pt;}
.y22e{bottom:916.670667pt;}
.y3c{bottom:921.320000pt;}
.ya0{bottom:922.449333pt;}
.y1a0{bottom:924.566667pt;}
.y6c{bottom:926.434667pt;}
.ye1{bottom:930.968000pt;}
.y22d{bottom:932.013333pt;}
.y9f{bottom:939.186667pt;}
.y6b{bottom:943.172000pt;}
.ye0{bottom:945.580000pt;}
.y3b{bottom:946.425333pt;}
.y22c{bottom:947.356000pt;}
.y9e{bottom:955.924000pt;}
.y6a{bottom:959.909333pt;}
.y22b{bottom:962.698667pt;}
.ydf{bottom:966.594667pt;}
.y3a{bottom:971.530667pt;}
.y9d{bottom:972.661333pt;}
.y69{bottom:976.646667pt;}
.y22a{bottom:978.041333pt;}
.y68{bottom:993.384000pt;}
.yde{bottom:994.700000pt;}
.y37{bottom:1010.186667pt;}
.y67{bottom:1046.810667pt;}
.h24{height:2.125355pt;}
.h2a{height:3.601718pt;}
.h35{height:24.866650pt;}
.hb{height:27.076941pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h1c{height:29.397999pt;}
.h34{height:30.732706pt;}
.h12{height:30.945242pt;}
.hc{height:31.502979pt;}
.h26{height:34.203441pt;}
.h20{height:34.574438pt;}
.h13{height:34.813542pt;}
.h3c{height:35.101542pt;}
.h17{height:36.003598pt;}
.h21{height:37.372000pt;}
.h38{height:38.387455pt;}
.h11{height:38.415786pt;}
.h15{height:38.681455pt;}
.h18{height:39.001455pt;}
.h30{height:39.349375pt;}
.h2f{height:39.359687pt;}
.h39{height:40.504218pt;}
.h7{height:40.853333pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h3a{height:43.660390pt;}
.h32{height:44.390625pt;}
.h14{height:44.436941pt;}
.hf{height:45.004385pt;}
.hd{height:45.271688pt;}
.h16{height:48.511220pt;}
.h19{height:48.683332pt;}
.h1d{height:48.688666pt;}
.h2{height:49.024000pt;}
.h31{height:49.421563pt;}
.h33{height:49.423611pt;}
.h3b{height:50.546884pt;}
.h29{height:50.849067pt;}
.h25{height:53.494108pt;}
.h22{height:53.499733pt;}
.h27{height:53.505067pt;}
.he{height:54.767117pt;}
.h2d{height:57.799269pt;}
.h36{height:64.034876pt;}
.h10{height:69.148877pt;}
.h28{height:69.275441pt;}
.h5{height:69.450667pt;}
.h1b{height:75.134788pt;}
.h1f{height:75.774788pt;}
.h2c{height:81.188122pt;}
.h1a{height:98.776021pt;}
.h1e{height:103.304021pt;}
.h4{height:105.826671pt;}
.h23{height:185.810688pt;}
.h2e{height:209.249333pt;}
.h2b{height:222.381355pt;}
.h37{height:384.504000pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:175.580236pt;}
.w5{width:451.322667pt;}
.w2{width:566.928019pt;}
.w6{width:579.685333pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x41{left:-203.450667pt;}
.x45{left:-161.210667pt;}
.x47{left:-112.410667pt;}
.x48{left:-109.930667pt;}
.x46{left:-71.050667pt;}
.x75{left:-57.504000pt;}
.x4b{left:-42.410667pt;}
.x49{left:-39.530667pt;}
.x4a{left:-34.730667pt;}
.x42{left:-29.610667pt;}
.x4c{left:-24.570667pt;}
.x43{left:-1.290139pt;}
.x0{left:0.000000pt;}
.x7{left:46.426667pt;}
.x5{left:47.621333pt;}
.x6{left:51.603593pt;}
.x67{left:55.592000pt;}
.x6f{left:57.868000pt;}
.x70{left:60.260000pt;}
.x71{left:67.756000pt;}
.x4e{left:74.869333pt;}
.x7d{left:76.309333pt;}
.x4d{left:78.709333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x74{left:106.818667pt;}
.x77{left:116.336000pt;}
.x44{left:118.709333pt;}
.x5b{left:120.345333pt;}
.x5c{left:122.406667pt;}
.x68{left:139.526667pt;}
.x78{left:144.656000pt;}
.x51{left:170.709333pt;}
.x4f{left:174.309333pt;}
.x50{left:175.989333pt;}
.x4{left:180.874667pt;}
.x6e{left:188.574667pt;}
.x6c{left:190.564000pt;}
.x5d{left:193.564000pt;}
.x5e{left:201.072000pt;}
.x76{left:209.296000pt;}
.x59{left:216.325333pt;}
.x9{left:220.912000pt;}
.x8{left:221.858667pt;}
.x5f{left:230.152000pt;}
.x80{left:241.572000pt;}
.xc{left:250.204000pt;}
.x1a{left:251.218667pt;}
.x7b{left:252.608000pt;}
.x7a{left:265.856000pt;}
.x15{left:267.548000pt;}
.x52{left:271.669333pt;}
.x16{left:276.584000pt;}
.x53{left:277.509333pt;}
.x54{left:286.869333pt;}
.x1b{left:298.070667pt;}
.x79{left:314.336000pt;}
.xa{left:320.142667pt;}
.xb{left:335.324000pt;}
.x2b{left:346.425333pt;}
.x3c{left:347.364000pt;}
.x56{left:349.669333pt;}
.x2c{left:353.757333pt;}
.x55{left:355.429333pt;}
.x73{left:360.789333pt;}
.x3e{left:372.612000pt;}
.x58{left:375.222667pt;}
.x3d{left:377.781333pt;}
.x29{left:379.089333pt;}
.x24{left:384.288000pt;}
.x2a{left:389.517333pt;}
.x3f{left:391.300000pt;}
.x3{left:404.408000pt;}
.x13{left:405.433333pt;}
.x69{left:406.732000pt;}
.x2d{left:412.682667pt;}
.x25{left:422.777333pt;}
.x2e{left:423.716000pt;}
.x1c{left:425.072000pt;}
.x72{left:426.502667pt;}
.x62{left:434.201333pt;}
.x60{left:437.246667pt;}
.x61{left:438.478667pt;}
.x19{left:443.109333pt;}
.x6a{left:447.158667pt;}
.x14{left:449.596000pt;}
.x6b{left:455.905333pt;}
.x2f{left:459.216000pt;}
.x30{left:460.113333pt;}
.x31{left:462.454667pt;}
.x17{left:463.920000pt;}
.x57{left:473.109200pt;}
.x18{left:480.616000pt;}
.x10{left:485.282667pt;}
.x7f{left:489.398667pt;}
.x11{left:501.965333pt;}
.x1d{left:505.126667pt;}
.xe{left:506.525333pt;}
.x36{left:510.186667pt;}
.x20{left:514.173333pt;}
.x32{left:515.296000pt;}
.x1e{left:517.494667pt;}
.x21{left:519.506667pt;}
.x64{left:520.521333pt;}
.x1f{left:522.826667pt;}
.xf{left:524.021333pt;}
.x33{left:529.520000pt;}
.x63{left:530.708000pt;}
.x22{left:533.905333pt;}
.x7e{left:538.066667pt;}
.x37{left:546.229333pt;}
.x38{left:548.572000pt;}
.x26{left:558.285333pt;}
.x34{left:559.578667pt;}
.x27{left:568.612000pt;}
.x40{left:574.564000pt;}
.x35{left:576.182667pt;}
.x39{left:582.018667pt;}
.x3a{left:583.769333pt;}
.x28{left:588.072000pt;}
.x3b{left:612.286667pt;}
.x66{left:613.933333pt;}
.x65{left:618.518667pt;}
.x7c{left:628.541333pt;}
.x6d{left:711.220000pt;}
.x5a{left:714.078667pt;}
.x12{left:720.249333pt;}
.xd{left:724.150667pt;}
.x23{left:731.540000pt;}
}




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