
    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_95ee37bc95371847248c2e52.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b1f0ca7d6884bb8c11414730.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0f642b553a81a9b1f9ce9864.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_20f06fd42095668c5a12e344.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.761000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7cc5658874d24c8e5b1c146b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9cf334738222cc8bca7e3bf1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.933000;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_33ce00266ea36e2cb74d3107.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.703000;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_5eab9721068b8221196621eb.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c13e9eacc8a0ef34f863834d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.683000;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_4315e39a323f074168043bdb.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_91f903b512b8c80663fad074.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.799000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_6db44b75872815af63cb925c.woff2')format("woff");}.fff{font-family:fff;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_96bf2adae6c002ad99f25833.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_f8fb56068890060f7b7854b6.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_9e5bfda48a9f72cc0766862b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.973633;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_878d5000a207b8fbcdbde3aa.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_71199794aa3e4c59b14ea89c.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.486000;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;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m11{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);}
.md{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);}
.m20{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m1a{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);}
.m1f{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);}
.m18{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);}
.m17{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);}
.m10{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.m1b{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);}
.m1d{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);}
.m14{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);}
.ma{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m22{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);}
.m24{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);}
.m13{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);}
.m27{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);}
.m1e{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);}
.m21{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m23{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);}
.mc{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);}
.mb{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);}
.m12{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);}
.m3{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);}
.m1c{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);}
.m9{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.mf{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);}
.v13{vertical-align:-48.450000px;}
.v29{vertical-align:-33.120000px;}
.v2b{vertical-align:-32.028000px;}
.v2c{vertical-align:-27.600000px;}
.v28{vertical-align:-21.390000px;}
.v26{vertical-align:-19.524000px;}
.v6{vertical-align:-17.874000px;}
.v1a{vertical-align:-13.332000px;}
.v2{vertical-align:-11.766000px;}
.v18{vertical-align:-10.488000px;}
.v1{vertical-align:-8.070000px;}
.va{vertical-align:-6.810000px;}
.v15{vertical-align:-3.690000px;}
.v27{vertical-align:-1.866000px;}
.v0{vertical-align:0.000000px;}
.v2a{vertical-align:1.086000px;}
.ve{vertical-align:3.618000px;}
.vf{vertical-align:5.802000px;}
.v8{vertical-align:8.964000px;}
.v17{vertical-align:12.306000px;}
.vd{vertical-align:14.766000px;}
.v19{vertical-align:17.358000px;}
.vb{vertical-align:19.470000px;}
.v3{vertical-align:21.696000px;}
.v1b{vertical-align:24.684000px;}
.v9{vertical-align:25.710000px;}
.v22{vertical-align:28.584000px;}
.v5{vertical-align:30.306000px;}
.v24{vertical-align:31.500000px;}
.v16{vertical-align:33.246000px;}
.v12{vertical-align:36.120000px;}
.v1e{vertical-align:37.644000px;}
.v7{vertical-align:40.470000px;}
.v20{vertical-align:42.390000px;}
.vc{vertical-align:44.160000px;}
.v11{vertical-align:45.654000px;}
.v4{vertical-align:48.180000px;}
.v10{vertical-align:53.994000px;}
.v25{vertical-align:55.236000px;}
.v21{vertical-align:66.384000px;}
.v14{vertical-align:67.920000px;}
.v1f{vertical-align:75.192000px;}
.v1d{vertical-align:81.144000px;}
.v23{vertical-align:84.882000px;}
.v1c{vertical-align:88.032000px;}
.ls48{letter-spacing:-0.180360px;}
.ls47{letter-spacing:-0.144288px;}
.ls4d{letter-spacing:-0.109296px;}
.ls3f{letter-spacing:-0.090972px;}
.ls45{letter-spacing:-0.060120px;}
.ls4a{letter-spacing:-0.059616px;}
.ls40{letter-spacing:-0.048096px;}
.ls41{letter-spacing:-0.036072px;}
.ls44{letter-spacing:-0.030060px;}
.ls42{letter-spacing:-0.018036px;}
.ls43{letter-spacing:-0.012024px;}
.ls49{letter-spacing:-0.010800px;}
.ls46{letter-spacing:-0.006012px;}
.ls4f{letter-spacing:-0.005400px;}
.ls8{letter-spacing:0.000000px;}
.ls93{letter-spacing:0.000196px;}
.lsd{letter-spacing:0.000612px;}
.ls54{letter-spacing:0.000683px;}
.ls9b{letter-spacing:0.000800px;}
.ls3a{letter-spacing:0.000845px;}
.ls57{letter-spacing:0.000914px;}
.ls9a{letter-spacing:0.001036px;}
.ls96{letter-spacing:0.001301px;}
.ls7e{letter-spacing:0.001342px;}
.ls97{letter-spacing:0.001449px;}
.ls8a{letter-spacing:0.001555px;}
.ls95{letter-spacing:0.001584px;}
.ls98{letter-spacing:0.001701px;}
.ls92{letter-spacing:0.002186px;}
.ls99{letter-spacing:0.002544px;}
.ls5c{letter-spacing:0.002725px;}
.ls55{letter-spacing:0.002888px;}
.ls94{letter-spacing:0.003324px;}
.ls0{letter-spacing:0.004200px;}
.ls31{letter-spacing:0.006012px;}
.ls32{letter-spacing:0.012024px;}
.ls37{letter-spacing:0.016200px;}
.ls2e{letter-spacing:0.018036px;}
.ls2f{letter-spacing:0.021600px;}
.ls2d{letter-spacing:0.030060px;}
.ls34{letter-spacing:0.032400px;}
.ls29{letter-spacing:0.033516px;}
.ls36{letter-spacing:0.043200px;}
.ls30{letter-spacing:0.048096px;}
.ls2c{letter-spacing:0.054108px;}
.ls35{letter-spacing:0.059400px;}
.ls2b{letter-spacing:0.066132px;}
.ls27{letter-spacing:0.076608px;}
.ls33{letter-spacing:0.096192px;}
.ls4b{letter-spacing:0.097200px;}
.ls4e{letter-spacing:0.113400px;}
.ls2a{letter-spacing:0.167580px;}
.ls28{letter-spacing:0.181944px;}
.ls3c{letter-spacing:0.434370px;}
.ls6{letter-spacing:0.503764px;}
.ls38{letter-spacing:0.542815px;}
.lsb{letter-spacing:0.548815px;}
.ls17{letter-spacing:0.564701px;}
.ls71{letter-spacing:0.570701px;}
.ls50{letter-spacing:0.651088px;}
.ls4{letter-spacing:0.670282px;}
.ls5{letter-spacing:0.676282px;}
.ls1d{letter-spacing:0.705507px;}
.lsf{letter-spacing:0.714783px;}
.lse{letter-spacing:0.720783px;}
.ls23{letter-spacing:0.726843px;}
.ls76{letter-spacing:0.734012px;}
.ls83{letter-spacing:0.743108px;}
.ls56{letter-spacing:0.745694px;}
.ls20{letter-spacing:0.749108px;}
.ls73{letter-spacing:0.751694px;}
.ls9{letter-spacing:1.275394px;}
.ls5e{letter-spacing:1.315694px;}
.ls60{letter-spacing:1.484012px;}
.ls22{letter-spacing:1.493675px;}
.ls1{letter-spacing:1.861130px;}
.ls8c{letter-spacing:2.983151px;}
.ls7b{letter-spacing:2.983663px;}
.ls51{letter-spacing:2.988600px;}
.ls8b{letter-spacing:2.989151px;}
.ls1b{letter-spacing:2.989200px;}
.ls6c{letter-spacing:2.989663px;}
.ls8e{letter-spacing:2.989751px;}
.ls90{letter-spacing:2.991943px;}
.ls3b{letter-spacing:2.994600px;}
.ls3d{letter-spacing:3.436200px;}
.ls67{letter-spacing:3.559200px;}
.ls19{letter-spacing:3.733200px;}
.ls70{letter-spacing:3.733663px;}
.ls1c{letter-spacing:3.733973px;}
.ls75{letter-spacing:3.735943px;}
.ls65{letter-spacing:3.739200px;}
.ls7a{letter-spacing:3.739663px;}
.ls72{letter-spacing:4.280815px;}
.ls1f{letter-spacing:4.286815px;}
.ls11{letter-spacing:7.893483px;}
.ls2{letter-spacing:10.461299px;}
.ls7{letter-spacing:11.954850px;}
.ls15{letter-spacing:12.339483px;}
.ls16{letter-spacing:12.345483px;}
.ls61{letter-spacing:13.083483px;}
.ls14{letter-spacing:13.089483px;}
.ls9d{letter-spacing:13.389045px;}
.ls91{letter-spacing:13.448400px;}
.lsa1{letter-spacing:13.454400px;}
.ls9c{letter-spacing:13.487210px;}
.ls9e{letter-spacing:13.517167px;}
.ls9f{letter-spacing:13.571548px;}
.lsa0{letter-spacing:13.641863px;}
.ls26{letter-spacing:14.645022px;}
.ls53{letter-spacing:14.704798px;}
.ls3e{letter-spacing:14.941200px;}
.ls80{letter-spacing:14.941342px;}
.ls6a{letter-spacing:14.943900px;}
.ls81{letter-spacing:14.947148px;}
.ls8f{letter-spacing:14.948323px;}
.ls74{letter-spacing:15.355663px;}
.ls78{letter-spacing:15.357943px;}
.lsa{letter-spacing:15.663483px;}
.ls88{letter-spacing:16.434600px;}
.ls89{letter-spacing:16.440049px;}
.ls86{letter-spacing:17.319483px;}
.ls6e{letter-spacing:17.325483px;}
.ls18{letter-spacing:17.345400px;}
.ls6d{letter-spacing:17.348725px;}
.ls85{letter-spacing:17.351899px;}
.ls21{letter-spacing:17.352583px;}
.ls84{letter-spacing:17.929200px;}
.ls6b{letter-spacing:17.931943px;}
.lsc{letter-spacing:17.935200px;}
.ls5a{letter-spacing:17.985943px;}
.ls5b{letter-spacing:17.989200px;}
.ls10{letter-spacing:18.069483px;}
.ls1e{letter-spacing:18.955200px;}
.ls63{letter-spacing:20.335663px;}
.ls5d{letter-spacing:20.337943px;}
.ls68{letter-spacing:20.341663px;}
.ls64{letter-spacing:24.265663px;}
.ls69{letter-spacing:24.271663px;}
.ls59{letter-spacing:24.495483px;}
.ls25{letter-spacing:25.245483px;}
.ls7c{letter-spacing:27.189483px;}
.ls3{letter-spacing:28.453654px;}
.ls82{letter-spacing:33.315483px;}
.ls58{letter-spacing:39.561483px;}
.ls5f{letter-spacing:49.257943px;}
.ls12{letter-spacing:55.548017px;}
.ls13{letter-spacing:136.209483px;}
.ls1a{letter-spacing:142.467483px;}
.ls79{letter-spacing:170.289483px;}
.ls6f{letter-spacing:170.763483px;}
.ls4c{letter-spacing:294.661800px;}
.ls8d{letter-spacing:333.102600px;}
.ls39{letter-spacing:356.970600px;}
.ls52{letter-spacing:367.420090px;}
.ls66{letter-spacing:566.528012px;}
.ls77{letter-spacing:650.120012px;}
.ls24{letter-spacing:738.739200px;}
.ls62{letter-spacing:773.120012px;}
.ls87{letter-spacing:910.795663px;}
.ls7f{letter-spacing:912.739148px;}
.ls7d{letter-spacing:950.689663px;}
.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;}
}
.ws0{word-spacing:-89.501898px;}
.ws63{word-spacing:-36.000000px;}
.ws66{word-spacing:-33.120000px;}
.wsc8{word-spacing:-29.887800px;}
.ws62{word-spacing:-15.023988px;}
.ws39{word-spacing:-14.943900px;}
.ws71{word-spacing:-13.449600px;}
.ws61{word-spacing:-12.151944px;}
.ws12{word-spacing:-11.955150px;}
.ws44{word-spacing:-11.357400px;}
.ws6{word-spacing:-10.460700px;}
.ws64{word-spacing:-9.000000px;}
.ws67{word-spacing:-8.280000px;}
.ws65{word-spacing:-8.220384px;}
.ws68{word-spacing:-8.170704px;}
.ws55{word-spacing:-4.961375px;}
.ws6d{word-spacing:-3.347434px;}
.ws4b{word-spacing:-3.287658px;}
.wscc{word-spacing:-2.929004px;}
.ws8f{word-spacing:-2.837664px;}
.ws90{word-spacing:-2.783556px;}
.ws8d{word-spacing:-2.741472px;}
.ws8c{word-spacing:-2.723436px;}
.ws81{word-spacing:-2.482956px;}
.ws2e{word-spacing:-2.331248px;}
.ws82{word-spacing:-2.098188px;}
.ws20{word-spacing:-2.092146px;}
.wsc4{word-spacing:-1.972595px;}
.wsc3{word-spacing:-1.912819px;}
.ws3{word-spacing:-1.908367px;}
.ws2d{word-spacing:-1.853044px;}
.ws15{word-spacing:-1.829146px;}
.wsba{word-spacing:-1.793268px;}
.ws5b{word-spacing:-1.733492px;}
.wsfb{word-spacing:-1.506355px;}
.ws5d{word-spacing:-1.494390px;}
.ws6e{word-spacing:-1.452557px;}
.wsca{word-spacing:-1.374839px;}
.ws2{word-spacing:-1.322630px;}
.ws5c{word-spacing:-1.315063px;}
.ws9d{word-spacing:-1.279800px;}
.ws9e{word-spacing:-1.258200px;}
.ws9f{word-spacing:-1.247400px;}
.ws6f{word-spacing:-1.237363px;}
.ws41{word-spacing:-1.195512px;}
.ws1b{word-spacing:-0.914573px;}
.ws1c{word-spacing:-0.860774px;}
.ws5a{word-spacing:-0.836858px;}
.wse2{word-spacing:-0.806976px;}
.wse3{word-spacing:-0.798988px;}
.ws59{word-spacing:-0.777083px;}
.wsa9{word-spacing:-0.657532px;}
.ws32{word-spacing:-0.478205px;}
.wsad{word-spacing:-0.418429px;}
.ws52{word-spacing:-0.358654px;}
.ws7e{word-spacing:-0.336672px;}
.ws1a{word-spacing:-0.322790px;}
.ws5f{word-spacing:-0.298878px;}
.ws9a{word-spacing:-0.276552px;}
.wsdf{word-spacing:-0.268992px;}
.ws21{word-spacing:-0.239102px;}
.wsf3{word-spacing:-0.215194px;}
.ws3e{word-spacing:-0.179327px;}
.ws17{word-spacing:-0.161395px;}
.ws7c{word-spacing:-0.124488px;}
.ws25{word-spacing:-0.119551px;}
.wsf4{word-spacing:-0.107597px;}
.ws51{word-spacing:-0.059776px;}
.ws1d{word-spacing:-0.053798px;}
.ws13{word-spacing:-0.047821px;}
.ws7{word-spacing:-0.041843px;}
.ws9c{word-spacing:-0.006012px;}
.wsd5{word-spacing:-0.002256px;}
.wsd3{word-spacing:-0.001056px;}
.ws1{word-spacing:0.000000px;}
.ws78{word-spacing:0.000895px;}
.wse7{word-spacing:0.053798px;}
.ws2b{word-spacing:0.059776px;}
.wsa3{word-spacing:0.064800px;}
.ws87{word-spacing:0.072144px;}
.ws75{word-spacing:0.072528px;}
.ws77{word-spacing:0.095641px;}
.wsb8{word-spacing:0.104907px;}
.wsdd{word-spacing:0.107597px;}
.wsa2{word-spacing:0.118800px;}
.ws40{word-spacing:0.119551px;}
.ws8a{word-spacing:0.126252px;}
.wsa6{word-spacing:0.135000px;}
.wsa0{word-spacing:0.145800px;}
.ws8b{word-spacing:0.150300px;}
.ws89{word-spacing:0.156600px;}
.ws18{word-spacing:0.161395px;}
.wsa7{word-spacing:0.162000px;}
.ws88{word-spacing:0.178200px;}
.ws2c{word-spacing:0.179327px;}
.wsa8{word-spacing:0.183600px;}
.ws8{word-spacing:0.209214px;}
.wse4{word-spacing:0.215194px;}
.ws43{word-spacing:0.239102px;}
.ws16{word-spacing:0.268992px;}
.wsa{word-spacing:0.292900px;}
.ws26{word-spacing:0.298878px;}
.wsdc{word-spacing:0.322790px;}
.ws27{word-spacing:0.358654px;}
.wsde{word-spacing:0.376589px;}
.ws54{word-spacing:0.478205px;}
.ws85{word-spacing:0.480960px;}
.ws74{word-spacing:0.621668px;}
.wsd9{word-spacing:0.657532px;}
.wsec{word-spacing:0.806976px;}
.ws86{word-spacing:0.811620px;}
.ws6b{word-spacing:0.836858px;}
.wsb1{word-spacing:1.016185px;}
.wsdb{word-spacing:1.075961px;}
.wsf7{word-spacing:1.183565px;}
.wscd{word-spacing:1.255288px;}
.wsbd{word-spacing:1.374839px;}
.wsd2{word-spacing:1.434614px;}
.wsc7{word-spacing:1.554166px;}
.wsda{word-spacing:1.733492px;}
.ws7b{word-spacing:1.912819px;}
.ws9{word-spacing:2.008454px;}
.ws29{word-spacing:2.032370px;}
.ws6c{word-spacing:2.092146px;}
.ws38{word-spacing:2.151922px;}
.ws2a{word-spacing:2.271473px;}
.ws34{word-spacing:2.331248px;}
.wsf6{word-spacing:2.367130px;}
.ws2f{word-spacing:2.391024px;}
.ws47{word-spacing:2.404153px;}
.ws36{word-spacing:2.450800px;}
.ws79{word-spacing:2.510575px;}
.wsea{word-spacing:2.528525px;}
.wseb{word-spacing:2.582323px;}
.ws3c{word-spacing:2.749678px;}
.wsab{word-spacing:2.809453px;}
.ws14{word-spacing:2.869236px;}
.wscf{word-spacing:2.929004px;}
.ws99{word-spacing:2.969928px;}
.wsb2{word-spacing:2.988780px;}
.wsc5{word-spacing:3.048556px;}
.ws19{word-spacing:3.066509px;}
.ws98{word-spacing:3.114216px;}
.ws1e{word-spacing:3.219667px;}
.wse0{word-spacing:3.224822px;}
.wsef{word-spacing:3.225072px;}
.ws7a{word-spacing:3.227882px;}
.wse8{word-spacing:3.227904px;}
.wse9{word-spacing:3.281702px;}
.ws84{word-spacing:3.342672px;}
.wsac{word-spacing:3.347434px;}
.ws83{word-spacing:3.348684px;}
.ws22{word-spacing:3.407209px;}
.ws1f{word-spacing:3.586536px;}
.ws69{word-spacing:3.706087px;}
.ws35{word-spacing:3.765863px;}
.ws48{word-spacing:3.996343px;}
.wsbf{word-spacing:3.999130px;}
.wsbe{word-spacing:4.002343px;}
.ws56{word-spacing:4.003044px;}
.ws4d{word-spacing:4.004489px;}
.ws23{word-spacing:4.303843px;}
.ws94{word-spacing:4.557096px;}
.ws95{word-spacing:4.587156px;}
.ws3b{word-spacing:4.662497px;}
.wsaa{word-spacing:4.782048px;}
.ws3d{word-spacing:4.901599px;}
.ws28{word-spacing:5.021150px;}
.ws97{word-spacing:5.080140px;}
.wsce{word-spacing:5.080926px;}
.ws96{word-spacing:5.116212px;}
.ws5e{word-spacing:5.224757px;}
.ws57{word-spacing:5.320028px;}
.ws6a{word-spacing:5.379804px;}
.wsf1{word-spacing:5.433638px;}
.ws9b{word-spacing:5.434848px;}
.ws4c{word-spacing:5.439580px;}
.ws60{word-spacing:5.678682px;}
.ws3f{word-spacing:5.798233px;}
.ws70{word-spacing:5.977303px;}
.wsc2{word-spacing:6.037336px;}
.ws10{word-spacing:6.067206px;}
.ws11{word-spacing:6.150892px;}
.ws8e{word-spacing:6.162300px;}
.ws4a{word-spacing:6.620249px;}
.ws42{word-spacing:6.635092px;}
.ws45{word-spacing:6.888001px;}
.ws24{word-spacing:6.933970px;}
.ws37{word-spacing:7.412174px;}
.wsb7{word-spacing:7.471950px;}
.ws31{word-spacing:7.890379px;}
.wsc1{word-spacing:8.009930px;}
.ws80{word-spacing:8.044056px;}
.wsc0{word-spacing:8.069706px;}
.ws7f{word-spacing:8.416800px;}
.wse{word-spacing:8.661460px;}
.ws92{word-spacing:8.723412px;}
.ws91{word-spacing:8.735436px;}
.ws93{word-spacing:8.777520px;}
.wsd0{word-spacing:8.978294px;}
.wsbb{word-spacing:8.980236px;}
.ws58{word-spacing:8.980958px;}
.ws53{word-spacing:8.982098px;}
.ws4f{word-spacing:8.983224px;}
.wscb{word-spacing:8.984964px;}
.ws4e{word-spacing:9.380064px;}
.wsa1{word-spacing:10.162800px;}
.ws5{word-spacing:10.417442px;}
.ws7d{word-spacing:11.620476px;}
.ws30{word-spacing:11.902715px;}
.ws76{word-spacing:11.990838px;}
.wsf0{word-spacing:13.389907px;}
.wsed{word-spacing:13.395802px;}
.wsf2{word-spacing:13.449600px;}
.wse5{word-spacing:13.610995px;}
.wsb6{word-spacing:14.672827px;}
.ws33{word-spacing:14.884124px;}
.wsbc{word-spacing:14.910607px;}
.wsd1{word-spacing:14.978600px;}
.wsb9{word-spacing:15.093765px;}
.ws4{word-spacing:15.483541px;}
.wsb{word-spacing:16.142252px;}
.wsc{word-spacing:16.151321px;}
.wsf5{word-spacing:16.569907px;}
.wsf8{word-spacing:16.619520px;}
.wsf9{word-spacing:16.620106px;}
.wse6{word-spacing:16.621555px;}
.wse1{word-spacing:16.623706px;}
.wsfa{word-spacing:16.731302px;}
.wsee{word-spacing:16.785101px;}
.wsfc{word-spacing:16.892698px;}
.wsd{word-spacing:17.699504px;}
.wsb3{word-spacing:17.847517px;}
.ws3a{word-spacing:18.470660px;}
.wsf{word-spacing:27.448877px;}
.wsd4{word-spacing:309.018010px;}
.wsd6{word-spacing:322.467610px;}
.wsd7{word-spacing:339.466589px;}
.wsd8{word-spacing:376.266010px;}
.ws50{word-spacing:581.462489px;}
.wsa5{word-spacing:615.405600px;}
.wsa4{word-spacing:628.716600px;}
.ws73{word-spacing:683.132083px;}
.wsaf{word-spacing:689.856883px;}
.ws72{word-spacing:696.581683px;}
.wsae{word-spacing:696.635482px;}
.wsb4{word-spacing:703.306483px;}
.wsb5{word-spacing:710.031283px;}
.wsb0{word-spacing:710.085082px;}
.ws49{word-spacing:770.148830px;}
.wsc6{word-spacing:772.473130px;}
.ws46{word-spacing:818.985496px;}
.wsc9{word-spacing:894.066343px;}
._1a{margin-left:-295.624800px;}
._25{margin-left:-14.942263px;}
._1{margin-left:-11.943245px;}
._10{margin-left:-6.874194px;}
._c{margin-left:-4.895828px;}
._5{margin-left:-3.849538px;}
._3{margin-left:-2.151849px;}
._0{margin-left:-1.122949px;}
._4{width:1.091170px;}
._8{width:2.301354px;}
._16{width:3.738624px;}
._6{width:12.967163px;}
._a{width:14.268144px;}
._b{width:16.455493px;}
._18{width:17.750920px;}
._f{width:19.068416px;}
._d{width:20.848897px;}
._14{width:22.356074px;}
._13{width:24.926425px;}
._7{width:25.943736px;}
._20{width:27.471200px;}
._9{width:32.637384px;}
._17{width:34.955938px;}
._15{width:38.913916px;}
._e{width:39.917313px;}
._31{width:61.868160px;}
._2{width:84.311818px;}
._1c{width:101.498400px;}
._1d{width:114.820200px;}
._2c{width:214.117632px;}
._28{width:225.846547px;}
._2b{width:239.298547px;}
._26{width:243.832272px;}
._2f{width:247.741632px;}
._27{width:286.220717px;}
._2d{width:302.293210px;}
._2a{width:335.917210px;}
._29{width:349.366810px;}
._2e{width:362.816410px;}
._22{width:407.934557px;}
._30{width:416.614810px;}
._1e{width:427.184870px;}
._1b{width:445.561632px;}
._21{width:496.451635px;}
._11{width:639.778402px;}
._23{width:710.085082px;}
._1f{width:723.534682px;}
._24{width:736.930483px;}
._19{width:2068.028172px;}
._12{width:2524.209000px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(110,47,34);}
.fs12{font-size:33.120000px;}
.fsd{font-size:35.865600px;}
.fs11{font-size:36.000000px;}
.fs13{font-size:37.371600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:41.936104px;}
.fs9{font-size:43.600200px;}
.fsc{font-size:45.429600px;}
.fs3{font-size:47.236800px;}
.fsb{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fse{font-size:47.880000px;}
.fs7{font-size:53.798400px;}
.fs10{font-size:54.000000px;}
.fs8{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fsf{font-size:60.120000px;}
.fsa{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:115.041000px;}
.ybd{bottom:-523.963050px;}
.yd9{bottom:-456.643050px;}
.yd8{bottom:-439.363050px;}
.yd7{bottom:-420.373050px;}
.yd6{bottom:-402.192600px;}
.yd5{bottom:-383.923050px;}
.yd4{bottom:-365.743050px;}
.yd3{bottom:-346.753500px;}
.yd2{bottom:-318.313500px;}
.yd1{bottom:-300.943050px;}
.yd0{bottom:-265.296732px;}
.ycf{bottom:-246.037290px;}
.yce{bottom:-226.868028px;}
.ycd{bottom:-207.608586px;}
.ycc{bottom:-188.439324px;}
.ycb{bottom:-169.179882px;}
.yca{bottom:-149.920440px;}
.yc9{bottom:-130.751178px;}
.yc8{bottom:-111.491736px;}
.yc7{bottom:-92.322474px;}
.yc6{bottom:-68.563050px;}
.yc5{bottom:-31.753050px;}
.yc4{bottom:-9.251682px;}
.y0{bottom:0.000000px;}
.ya{bottom:3.425340px;}
.y9{bottom:14.151273px;}
.y2{bottom:15.983741px;}
.y4e{bottom:31.890000px;}
.y195{bottom:89.359500px;}
.y194{bottom:96.076500px;}
.y193{bottom:99.768000px;}
.yf8{bottom:101.184000px;}
.y25{bottom:102.823500px;}
.y4d{bottom:108.264000px;}
.yf7{bottom:120.013500px;}
.y24{bottom:120.711000px;}
.y192{bottom:122.512500px;}
.y1c2{bottom:123.093000px;}
.y156{bottom:126.615000px;}
.y4c{bottom:127.093500px;}
.y155{bottom:130.306500px;}
.y23{bottom:138.600000px;}
.yf6{bottom:138.843000px;}
.y191{bottom:141.342000px;}
.y84{bottom:143.940000px;}
.y85{bottom:144.097500px;}
.y4b{bottom:145.923000px;}
.y1c1{bottom:149.634000px;}
.y83{bottom:154.348500px;}
.y22{bottom:156.487500px;}
.yf5{bottom:157.672500px;}
.y190{bottom:160.171500px;}
.y4a{bottom:164.752500px;}
.y1c0{bottom:167.208000px;}
.y154{bottom:168.963000px;}
.y21{bottom:174.375000px;}
.y153{bottom:174.376500px;}
.yf4{bottom:176.502000px;}
.y18f{bottom:179.001000px;}
.yb9{bottom:179.775000px;}
.y49{bottom:183.582000px;}
.y20{bottom:192.264000px;}
.y1bf{bottom:193.749000px;}
.yf2{bottom:195.331500px;}
.y18e{bottom:197.830500px;}
.yb8{bottom:198.604500px;}
.y82{bottom:199.479000px;}
.yf3{bottom:200.757000px;}
.y48{bottom:202.411500px;}
.y1f{bottom:210.151500px;}
.y1be{bottom:211.323000px;}
.y152{bottom:212.953500px;}
.yf1{bottom:214.161000px;}
.y18d{bottom:216.660000px;}
.yb7{bottom:217.434000px;}
.y81{bottom:218.308500px;}
.y1f5{bottom:219.895500px;}
.y47{bottom:221.241000px;}
.y1e{bottom:228.039000px;}
.y121{bottom:230.292000px;}
.y151{bottom:231.783000px;}
.y18b{bottom:235.489500px;}
.yb6{bottom:236.263500px;}
.y80{bottom:237.138000px;}
.y1f4{bottom:237.156000px;}
.y1bd{bottom:237.862500px;}
.y46{bottom:240.070500px;}
.y18c{bottom:240.913500px;}
.y120{bottom:249.121500px;}
.yf0{bottom:249.811500px;}
.y150{bottom:250.612500px;}
.y1f3{bottom:254.416500px;}
.yb5{bottom:255.093000px;}
.y7f{bottom:255.967500px;}
.y45{bottom:258.900000px;}
.y18a{bottom:259.693500px;}
.yef{bottom:264.009000px;}
.y1bc{bottom:264.403500px;}
.y11f{bottom:267.951000px;}
.y14f{bottom:269.442000px;}
.y188{bottom:269.946000px;}
.y1f2{bottom:271.677000px;}
.y7e{bottom:274.797000px;}
.y44{bottom:277.728000px;}
.yee{bottom:278.205000px;}
.yb4{bottom:278.406000px;}
.y189{bottom:280.062000px;}
.y11e{bottom:286.780500px;}
.y14e{bottom:288.271500px;}
.y1f1{bottom:288.937500px;}
.y1bb{bottom:290.944500px;}
.y7d{bottom:293.626500px;}
.y43{bottom:296.557500px;}
.yed{bottom:297.049500px;}
.y187{bottom:298.953000px;}
.y11d{bottom:305.610000px;}
.y1f0{bottom:306.198000px;}
.y1d{bottom:307.299000px;}
.y14d{bottom:311.584500px;}
.yb3{bottom:312.030000px;}
.y7c{bottom:312.456000px;}
.yec{bottom:313.486500px;}
.y42{bottom:315.387000px;}
.y1ba{bottom:317.484000px;}
.y186{bottom:317.782500px;}
.y1ef{bottom:323.458500px;}
.y11c{bottom:324.439500px;}
.y1c{bottom:325.186500px;}
.yeb{bottom:329.925000px;}
.yb2{bottom:330.859500px;}
.y7b{bottom:331.285500px;}
.y41{bottom:334.216500px;}
.y185{bottom:334.369500px;}
.y1b9{bottom:335.058000px;}
.y183{bottom:336.612000px;}
.y1ee{bottom:340.719000px;}
.y184{bottom:342.036000px;}
.y1b{bottom:343.074000px;}
.y11b{bottom:343.269000px;}
.y14c{bottom:345.208500px;}
.yea{bottom:346.363500px;}
.yb1{bottom:349.689000px;}
.y79{bottom:350.115000px;}
.y1b8{bottom:352.632000px;}
.y40{bottom:353.046000px;}
.y7a{bottom:355.540500px;}
.y1ed{bottom:357.978000px;}
.y1a{bottom:360.963000px;}
.y14b{bottom:364.038000px;}
.y11a{bottom:366.582000px;}
.yb0{bottom:368.518500px;}
.y77{bottom:368.944500px;}
.y182{bottom:369.367500px;}
.ye9{bottom:370.200000px;}
.y1b7{bottom:370.207500px;}
.y3f{bottom:371.875500px;}
.y78{bottom:374.370000px;}
.y1ec{bottom:375.238500px;}
.y181{bottom:379.620000px;}
.y149{bottom:380.137500px;}
.y148{bottom:382.867500px;}
.yaf{bottom:385.105500px;}
.yae{bottom:387.346500px;}
.y75{bottom:387.774000px;}
.y14a{bottom:388.291500px;}
.y3e{bottom:390.705000px;}
.y1eb{bottom:392.499000px;}
.y76{bottom:393.199500px;}
.y19{bottom:399.024000px;}
.y147{bottom:401.697000px;}
.ye8{bottom:402.013500px;}
.y1b6{bottom:405.714000px;}
.y74{bottom:406.603500px;}
.y119{bottom:407.917500px;}
.y3d{bottom:409.534500px;}
.y1ea{bottom:409.759500px;}
.yad{bottom:416.739000px;}
.y18{bottom:416.913000px;}
.y146{bottom:420.526500px;}
.ye7{bottom:421.246500px;}
.y180{bottom:421.948500px;}
.y118{bottom:422.455500px;}
.y1b5{bottom:424.543500px;}
.y1e9{bottom:427.020000px;}
.yac{bottom:427.147500px;}
.y3c{bottom:428.364000px;}
.y73{bottom:429.916500px;}
.y17{bottom:434.800500px;}
.y145{bottom:439.356000px;}
.y1b4{bottom:440.643000px;}
.y17f{bottom:440.778000px;}
.y1b3{bottom:443.373000px;}
.y1e8{bottom:444.280500px;}
.y117{bottom:446.095500px;}
.y3b{bottom:447.193500px;}
.yab{bottom:454.149000px;}
.yc3{bottom:454.789047px;}
.ye6{bottom:457.267500px;}
.y144{bottom:458.185500px;}
.y17e{bottom:459.607500px;}
.y1e7{bottom:461.541000px;}
.y1b2{bottom:462.202500px;}
.y72{bottom:463.540500px;}
.y3a{bottom:466.023000px;}
.y116{bottom:469.737000px;}
.y16{bottom:470.622000px;}
.yaa{bottom:470.736000px;}
.ya9{bottom:472.978500px;}
.yc2{bottom:474.048489px;}
.ye4{bottom:476.097000px;}
.y143{bottom:477.015000px;}
.y17c{bottom:478.437000px;}
.y1e6{bottom:478.801500px;}
.y1b1{bottom:481.032000px;}
.ye5{bottom:481.521000px;}
.y71{bottom:482.370000px;}
.y17d{bottom:483.861000px;}
.y15{bottom:488.509500px;}
.ya8{bottom:488.731500px;}
.y39{bottom:489.336000px;}
.ya7{bottom:489.565500px;}
.ya6{bottom:491.808000px;}
.yc1{bottom:493.217751px;}
.y115{bottom:493.377000px;}
.ye3{bottom:494.926500px;}
.y1e5{bottom:496.062000px;}
.y17b{bottom:497.266500px;}
.y1b0{bottom:499.861500px;}
.y142{bottom:500.326500px;}
.y70{bottom:501.199500px;}
.y14{bottom:506.397000px;}
.yc0{bottom:512.477193px;}
.y17a{bottom:513.019500px;}
.y1e4{bottom:513.321000px;}
.y177{bottom:513.366000px;}
.ye2{bottom:513.756000px;}
.y178{bottom:513.853500px;}
.y176{bottom:516.096000px;}
.y114{bottom:517.018500px;}
.y1af{bottom:518.691000px;}
.y6f{bottom:520.029000px;}
.y179{bottom:521.520000px;}
.y13{bottom:524.286000px;}
.ya5{bottom:526.327500px;}
.y1e3{bottom:530.581500px;}
.ybf{bottom:531.736635px;}
.ye1{bottom:532.585500px;}
.y141{bottom:533.950500px;}
.y6d{bottom:538.858500px;}
.y113{bottom:540.658500px;}
.y1ae{bottom:542.002500px;}
.y12{bottom:542.173500px;}
.y6e{bottom:544.282500px;}
.y175{bottom:547.776000px;}
.y1e2{bottom:547.842000px;}
.y13f{bottom:549.703500px;}
.ye0{bottom:551.415000px;}
.y174{bottom:552.400500px;}
.y13e{bottom:552.780000px;}
.ybe{bottom:555.407382px;}
.y172{bottom:555.577500px;}
.y6b{bottom:557.688000px;}
.y140{bottom:558.205500px;}
.y6c{bottom:563.112000px;}
.ya4{bottom:563.796000px;}
.y112{bottom:564.300000px;}
.y38{bottom:564.486000px;}
.y1e1{bottom:565.102500px;}
.y173{bottom:565.830000px;}
.y13d{bottom:568.533000px;}
.ydf{bottom:570.244500px;}
.y13c{bottom:571.609500px;}
.y1ad{bottom:575.626500px;}
.y171{bottom:575.947500px;}
.y6a{bottom:576.517500px;}
.y11{bottom:577.993500px;}
.y1e0{bottom:582.363000px;}
.ya3{bottom:582.625500px;}
.yde{bottom:589.072500px;}
.y13b{bottom:590.439000px;}
.y1ac{bottom:594.456000px;}
.y69{bottom:595.347000px;}
.y10{bottom:595.882500px;}
.y111{bottom:595.918500px;}
.y1df{bottom:599.623500px;}
.ya2{bottom:601.455000px;}
.y37{bottom:601.875000px;}
.y170{bottom:607.875000px;}
.ydd{bottom:607.902000px;}
.ybc{bottom:610.127085px;}
.y1ab{bottom:613.285500px;}
.yf{bottom:613.770000px;}
.y1de{bottom:616.884000px;}
.y13a{bottom:617.754000px;}
.y68{bottom:618.658500px;}
.ybb{bottom:619.756950px;}
.y36{bottom:621.333000px;}
.y16f{bottom:626.704500px;}
.ydc{bottom:626.731500px;}
.y139{bottom:628.005000px;}
.y1a9{bottom:629.038500px;}
.y1aa{bottom:629.874000px;}
.ye{bottom:631.657500px;}
.y1a8{bottom:632.115000px;}
.y110{bottom:633.022500px;}
.ya0{bottom:633.577500px;}
.ya1{bottom:633.820500px;}
.y1dd{bottom:634.144500px;}
.y67{bottom:638.833500px;}
.y34{bottom:640.789500px;}
.y16e{bottom:645.534000px;}
.y35{bottom:645.672000px;}
.yd{bottom:649.546500px;}
.ydb{bottom:650.044500px;}
.y9e{bottom:650.124000px;}
.y138{bottom:650.368500px;}
.y9f{bottom:650.557500px;}
.y1dc{bottom:651.403500px;}
.y10f{bottom:651.852000px;}
.y33{bottom:660.247500px;}
.y16d{bottom:664.363500px;}
.yc{bottom:667.434000px;}
.y1db{bottom:668.664000px;}
.y137{bottom:669.198000px;}
.y10e{bottom:670.681500px;}
.y1a7{bottom:672.105000px;}
.y66{bottom:672.457500px;}
.y32{bottom:679.704000px;}
.y16c{bottom:683.193000px;}
.yda{bottom:683.461500px;}
.yb{bottom:685.321500px;}
.y1da{bottom:685.924500px;}
.y136{bottom:688.027500px;}
.y1a6{bottom:688.786500px;}
.y10d{bottom:689.511000px;}
.y65{bottom:691.287000px;}
.y9d{bottom:696.708000px;}
.y31{bottom:699.160500px;}
.y16b{bottom:702.021000px;}
.y1d9{bottom:703.185000px;}
.y135{bottom:703.780500px;}
.y1a5{bottom:705.225000px;}
.yba{bottom:705.891000px;}
.y134{bottom:706.857000px;}
.y8{bottom:707.692555px;}
.y10c{bottom:708.340500px;}
.y64{bottom:710.116500px;}
.y9c{bottom:715.537500px;}
.y30{bottom:718.618500px;}
.y1d8{bottom:720.445500px;}
.y16a{bottom:720.850500px;}
.y133{bottom:725.686500px;}
.y10b{bottom:727.170000px;}
.y1a4{bottom:728.865000px;}
.y63{bottom:728.946000px;}
.y9b{bottom:732.126000px;}
.y9a{bottom:734.367000px;}
.y1d7{bottom:737.706000px;}
.y2f{bottom:738.075000px;}
.y132{bottom:744.516000px;}
.y10a{bottom:745.999500px;}
.y62{bottom:747.775500px;}
.y1a3{bottom:752.506500px;}
.y99{bottom:753.196500px;}
.y169{bottom:753.930000px;}
.y1d6{bottom:754.966500px;}
.y2e{bottom:757.531500px;}
.y168{bottom:758.554500px;}
.y131{bottom:763.345500px;}
.y108{bottom:764.829000px;}
.y61{bottom:766.605000px;}
.y109{bottom:770.254500px;}
.y1d5{bottom:772.227000px;}
.y166{bottom:774.088500px;}
.y1a2{bottom:776.146500px;}
.y2d{bottom:776.989500px;}
.y167{bottom:781.116000px;}
.y130{bottom:782.175000px;}
.y107{bottom:783.658500px;}
.y97{bottom:785.425500px;}
.y60{bottom:785.434500px;}
.y98{bottom:786.601500px;}
.y1d4{bottom:789.487500px;}
.y96{bottom:790.293000px;}
.y1a1{bottom:792.585000px;}
.y2c{bottom:796.446000px;}
.y12f{bottom:801.004500px;}
.y106{bottom:802.488000px;}
.y5f{bottom:804.264000px;}
.y1d3{bottom:806.746500px;}
.y2b{bottom:815.904000px;}
.y1a0{bottom:816.226500px;}
.y12e{bottom:819.834000px;}
.y105{bottom:821.317500px;}
.y165{bottom:822.214500px;}
.y5e{bottom:823.093500px;}
.y1d2{bottom:824.007000px;}
.y95{bottom:824.814000px;}
.y19f{bottom:832.665000px;}
.y2a{bottom:835.360500px;}
.y12d{bottom:838.663500px;}
.y1d1{bottom:841.267500px;}
.y5d{bottom:841.923000px;}
.y94{bottom:843.643500px;}
.y104{bottom:844.630500px;}
.y164{bottom:850.458000px;}
.y29{bottom:854.817000px;}
.y19d{bottom:856.305000px;}
.y12c{bottom:857.493000px;}
.y1d0{bottom:858.528000px;}
.y5c{bottom:865.234500px;}
.y93{bottom:866.956500px;}
.y163{bottom:869.287500px;}
.y19e{bottom:869.406000px;}
.y19c{bottom:872.743500px;}
.y1cf{bottom:875.788500px;}
.y103{bottom:878.254500px;}
.y5b{bottom:885.409500px;}
.y92{bottom:887.130000px;}
.y162{bottom:888.117000px;}
.y1ce{bottom:893.049000px;}
.y28{bottom:893.403000px;}
.y12b{bottom:894.493500px;}
.y102{bottom:897.084000px;}
.y19b{bottom:904.363500px;}
.y161{bottom:906.946500px;}
.y12a{bottom:909.033000px;}
.y27{bottom:909.543000px;}
.y1cd{bottom:910.309500px;}
.y101{bottom:915.913500px;}
.y90{bottom:918.024000px;}
.y5a{bottom:919.033500px;}
.y8f{bottom:920.754000px;}
.y26{bottom:925.681500px;}
.y160{bottom:925.776000px;}
.y91{bottom:926.179500px;}
.y1cc{bottom:927.570000px;}
.y129{bottom:932.673000px;}
.y100{bottom:934.743000px;}
.y59{bottom:937.863000px;}
.y8e{bottom:939.583500px;}
.y19a{bottom:941.467500px;}
.y1cb{bottom:944.829000px;}
.y15f{bottom:950.329500px;}
.yfe{bottom:953.572500px;}
.y15e{bottom:954.021000px;}
.y128{bottom:956.314500px;}
.y58{bottom:956.692500px;}
.y198{bottom:957.220500px;}
.y199{bottom:958.054500px;}
.y8d{bottom:958.413000px;}
.yff{bottom:958.996500px;}
.y197{bottom:960.297000px;}
.y1ca{bottom:962.089500px;}
.y7{bottom:970.215000px;}
.yfc{bottom:972.402000px;}
.y15d{bottom:972.849000px;}
.y57{bottom:975.522000px;}
.yfd{bottom:977.826000px;}
.y1c9{bottom:979.350000px;}
.y127{bottom:979.954500px;}
.yfb{bottom:991.231500px;}
.y15c{bottom:991.678500px;}
.y8c{bottom:992.628000px;}
.y56{bottom:994.351500px;}
.y196{bottom:994.818000px;}
.y1c8{bottom:996.610500px;}
.y8b{bottom:1003.036500px;}
.y126{bottom:1003.594500px;}
.yfa{bottom:1010.061000px;}
.y15b{bottom:1010.508000px;}
.y6{bottom:1012.954500px;}
.y55{bottom:1013.181000px;}
.y1c7{bottom:1013.871000px;}
.y15a{bottom:1026.607500px;}
.y125{bottom:1027.236000px;}
.y159{bottom:1029.337500px;}
.y1c6{bottom:1031.131500px;}
.y54{bottom:1032.010500px;}
.yf9{bottom:1033.372500px;}
.y5{bottom:1041.199500px;}
.y8a{bottom:1048.167000px;}
.y1c5{bottom:1048.392000px;}
.y53{bottom:1050.840000px;}
.y124{bottom:1050.876000px;}
.y1c4{bottom:1065.652500px;}
.y89{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y52{bottom:1069.669500px;}
.y123{bottom:1074.517500px;}
.y158{bottom:1082.749500px;}
.y1c3{bottom:1082.913000px;}
.y157{bottom:1083.096000px;}
.y88{bottom:1085.826000px;}
.y51{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.y87{bottom:1101.579000px;}
.y86{bottom:1104.655500px;}
.y122{bottom:1106.137500px;}
.y50{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4f{bottom:1173.397500px;}
.h22{height:8.792842px;}
.h7{height:25.508090px;}
.h2e{height:26.110157px;}
.h42{height:30.252344px;}
.ha{height:30.461558px;}
.hb{height:30.670772px;}
.h19{height:31.526842px;}
.h18{height:33.072749px;}
.h9{height:33.112997px;}
.h8{height:34.199443px;}
.hd{height:34.813397px;}
.h15{height:35.052500px;}
.h12{height:37.334628px;}
.h11{height:37.658880px;}
.hc{height:38.202476px;}
.hf{height:38.896243px;}
.h10{height:39.165235px;}
.h43{height:39.434227px;}
.h2b{height:39.763519px;}
.h17{height:41.482876px;}
.h30{height:41.842920px;}
.h13{height:43.217759px;}
.h2d{height:43.468157px;}
.h14{height:43.516637px;}
.h28{height:43.622227px;}
.he{height:43.660208px;}
.h4{height:43.815515px;}
.h26{height:44.279648px;}
.h6{height:44.473046px;}
.h1b{height:46.714950px;}
.h48{height:49.117939px;}
.h2c{height:49.776344px;}
.h2f{height:49.782344px;}
.h29{height:49.939453px;}
.h2a{height:49.941253px;}
.h2{height:50.098500px;}
.h16{height:54.768749px;}
.h31{height:54.774749px;}
.h27{height:55.599258px;}
.h1e{height:57.236842px;}
.h32{height:57.756749px;}
.h40{height:57.762749px;}
.h20{height:58.282637px;}
.h36{height:60.850950px;}
.h3c{height:61.656749px;}
.h3d{height:63.738749px;}
.h35{height:64.148842px;}
.h47{height:65.688749px;}
.h24{height:66.318749px;}
.h46{height:67.080749px;}
.h39{height:68.775024px;}
.h44{height:72.039235px;}
.h45{height:72.045235px;}
.h5{height:77.792486px;}
.h38{height:77.893200px;}
.h3{height:77.997798px;}
.h1f{height:79.663200px;}
.h23{height:81.126749px;}
.h3b{height:82.312920px;}
.h34{height:83.535024px;}
.h3e{height:83.980637px;}
.h1c{height:83.986637px;}
.h1d{height:84.520637px;}
.h3f{height:84.526637px;}
.h33{height:90.423024px;}
.h1a{height:94.894950px;}
.h41{height:98.752637px;}
.h21{height:100.708950px;}
.h37{height:108.264749px;}
.h3a{height:124.150637px;}
.h25{height:413.710500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:194.345070px;}
.w4{width:743.542200px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x54{left:-14.110800px;}
.x0{left:0.000000px;}
.x4{left:29.274117px;}
.x3{left:52.951500px;}
.x1{left:54.000000px;}
.x2{left:57.744088px;}
.x53{left:74.686800px;}
.xc0{left:86.272500px;}
.x58{left:119.719200px;}
.x55{left:181.459560px;}
.x5c{left:188.793000px;}
.x59{left:210.169200px;}
.x56{left:213.320154px;}
.x6{left:249.832500px;}
.x5{left:250.897500px;}
.xa{left:255.189000px;}
.x5b{left:261.379200px;}
.x5a{left:264.799200px;}
.xb{left:268.680000px;}
.x23{left:274.447500px;}
.xbb{left:275.455500px;}
.xbc{left:276.841500px;}
.xb9{left:278.320500px;}
.xa0{left:279.985500px;}
.x5f{left:281.215500px;}
.x10{left:282.786000px;}
.x6c{left:289.372500px;}
.xbd{left:290.412000px;}
.x24{left:291.796500px;}
.x48{left:294.307500px;}
.xa1{left:298.533000px;}
.x5e{left:301.209000px;}
.xb5{left:305.461500px;}
.x25{left:307.180500px;}
.x7{left:309.187500px;}
.x91{left:311.461500px;}
.xb6{left:313.731000px;}
.x49{left:316.908000px;}
.x71{left:318.229500px;}
.x69{left:321.637500px;}
.x83{left:323.991000px;}
.x26{left:328.005000px;}
.x27{left:332.371500px;}
.x60{left:335.449500px;}
.x28{left:339.178500px;}
.x6b{left:340.494000px;}
.x6d{left:342.175500px;}
.x6a{left:345.537000px;}
.xb7{left:352.999500px;}
.x4a{left:357.355500px;}
.x92{left:363.411000px;}
.xb8{left:367.515000px;}
.x15{left:373.207500px;}
.x4b{left:375.856500px;}
.x96{left:378.177000px;}
.x16{left:380.680500px;}
.x17{left:384.460500px;}
.xb0{left:388.131000px;}
.xa5{left:390.099000px;}
.x18{left:391.933500px;}
.x97{left:395.787000px;}
.xba{left:400.474500px;}
.xb1{left:404.169000px;}
.xa6{left:406.125000px;}
.x81{left:409.770000px;}
.x3f{left:415.780500px;}
.xb2{left:419.181000px;}
.xa7{left:421.075500px;}
.x6e{left:428.967000px;}
.x8e{left:436.347000px;}
.xb3{left:438.696000px;}
.xa8{left:440.577000px;}
.x44{left:443.671500px;}
.x6f{left:446.352000px;}
.x47{left:452.259000px;}
.x4f{left:454.668000px;}
.x82{left:456.778500px;}
.x2b{left:458.193000px;}
.xa9{left:460.228500px;}
.x7f{left:461.418000px;}
.x2c{left:464.619000px;}
.xaa{left:466.654500px;}
.x61{left:471.660000px;}
.x98{left:472.870500px;}
.x76{left:474.226500px;}
.x50{left:475.675500px;}
.x34{left:479.293500px;}
.x77{left:482.499000px;}
.x93{left:485.749500px;}
.x99{left:488.620500px;}
.x72{left:490.870500px;}
.x29{left:492.049500px;}
.x35{left:496.809000px;}
.xad{left:498.766500px;}
.x40{left:500.058000px;}
.x80{left:502.179000px;}
.x2a{left:504.340500px;}
.x7d{left:505.645500px;}
.xb4{left:506.905500px;}
.x3c{left:509.074500px;}
.xa4{left:510.925500px;}
.x8d{left:518.011500px;}
.x9a{left:525.286500px;}
.x51{left:528.843000px;}
.x45{left:529.843500px;}
.x94{left:537.279000px;}
.x65{left:539.389500px;}
.x36{left:540.652500px;}
.x73{left:541.866000px;}
.x9b{left:543.045000px;}
.x52{left:545.092500px;}
.x41{left:547.458000px;}
.x9c{left:550.674000px;}
.x4e{left:551.883000px;}
.x9d{left:555.750000px;}
.x11{left:558.775500px;}
.x70{left:561.097500px;}
.x74{left:562.815000px;}
.x8f{left:563.953500px;}
.x12{left:566.247000px;}
.x13{left:573.592500px;}
.xae{left:575.143500px;}
.xaf{left:578.563500px;}
.x14{left:581.064000px;}
.x75{left:582.268500px;}
.x37{left:583.459500px;}
.x31{left:586.792500px;}
.x90{left:591.226500px;}
.x32{left:593.598000px;}
.x3d{left:602.793000px;}
.x1d{left:606.411000px;}
.x7e{left:611.895000px;}
.x1e{left:613.884000px;}
.x1f{left:621.505500px;}
.x8{left:623.934000px;}
.x46{left:626.596500px;}
.x20{left:636.448500px;}
.x78{left:637.902000px;}
.x68{left:641.562000px;}
.x9{left:643.177500px;}
.xab{left:648.783000px;}
.x7a{left:650.835000px;}
.xc{left:653.248500px;}
.x3e{left:655.990500px;}
.xbe{left:658.567500px;}
.xc2{left:661.857000px;}
.xac{left:663.291000px;}
.xd{left:667.389000px;}
.x79{left:672.304500px;}
.x85{left:674.290500px;}
.xe{left:680.700000px;}
.xc4{left:682.594500px;}
.x86{left:689.683500px;}
.xf{left:698.361000px;}
.x2f{left:700.800000px;}
.x7b{left:704.319000px;}
.x30{left:707.226000px;}
.xc5{left:709.494000px;}
.x87{left:711.226500px;}
.x38{left:721.024500px;}
.x88{left:725.622000px;}
.xbf{left:727.482000px;}
.x8c{left:733.026000px;}
.x39{left:735.837000px;}
.x66{left:737.610000px;}
.xa2{left:740.301000px;}
.x21{left:741.424500px;}
.x33{left:743.623500px;}
.x84{left:751.882500px;}
.x67{left:753.378000px;}
.x22{left:756.369000px;}
.x57{left:757.458759px;}
.x7c{left:760.647000px;}
.xa3{left:765.094500px;}
.x9e{left:769.855500px;}
.x42{left:775.354500px;}
.xc3{left:783.327000px;}
.x19{left:784.851000px;}
.x4c{left:788.080500px;}
.x3a{left:789.940500px;}
.x1a{left:792.322500px;}
.x62{left:793.560000px;}
.x9f{left:794.662500px;}
.x1b{left:796.132500px;}
.x89{left:801.148500px;}
.x1c{left:803.605500px;}
.x3b{left:806.728500px;}
.x63{left:809.326500px;}
.xc1{left:810.373500px;}
.x4d{left:812.116500px;}
.x95{left:814.017000px;}
.x8a{left:816.541500px;}
.x43{left:821.368500px;}
.x5d{left:823.714500px;}
.x8b{left:827.853000px;}
.x2d{left:829.041000px;}
.x2e{left:835.465500px;}
.x64{left:836.970000px;}
@media print{
.v13{vertical-align:-43.066667pt;}
.v29{vertical-align:-29.440000pt;}
.v2b{vertical-align:-28.469333pt;}
.v2c{vertical-align:-24.533333pt;}
.v28{vertical-align:-19.013333pt;}
.v26{vertical-align:-17.354667pt;}
.v6{vertical-align:-15.888000pt;}
.v1a{vertical-align:-11.850667pt;}
.v2{vertical-align:-10.458667pt;}
.v18{vertical-align:-9.322667pt;}
.v1{vertical-align:-7.173333pt;}
.va{vertical-align:-6.053333pt;}
.v15{vertical-align:-3.280000pt;}
.v27{vertical-align:-1.658667pt;}
.v0{vertical-align:0.000000pt;}
.v2a{vertical-align:0.965333pt;}
.ve{vertical-align:3.216000pt;}
.vf{vertical-align:5.157333pt;}
.v8{vertical-align:7.968000pt;}
.v17{vertical-align:10.938667pt;}
.vd{vertical-align:13.125333pt;}
.v19{vertical-align:15.429333pt;}
.vb{vertical-align:17.306667pt;}
.v3{vertical-align:19.285333pt;}
.v1b{vertical-align:21.941333pt;}
.v9{vertical-align:22.853333pt;}
.v22{vertical-align:25.408000pt;}
.v5{vertical-align:26.938667pt;}
.v24{vertical-align:28.000000pt;}
.v16{vertical-align:29.552000pt;}
.v12{vertical-align:32.106667pt;}
.v1e{vertical-align:33.461333pt;}
.v7{vertical-align:35.973333pt;}
.v20{vertical-align:37.680000pt;}
.vc{vertical-align:39.253333pt;}
.v11{vertical-align:40.581333pt;}
.v4{vertical-align:42.826667pt;}
.v10{vertical-align:47.994667pt;}
.v25{vertical-align:49.098667pt;}
.v21{vertical-align:59.008000pt;}
.v14{vertical-align:60.373333pt;}
.v1f{vertical-align:66.837333pt;}
.v1d{vertical-align:72.128000pt;}
.v23{vertical-align:75.450667pt;}
.v1c{vertical-align:78.250667pt;}
.ls48{letter-spacing:-0.160320pt;}
.ls47{letter-spacing:-0.128256pt;}
.ls4d{letter-spacing:-0.097152pt;}
.ls3f{letter-spacing:-0.080864pt;}
.ls45{letter-spacing:-0.053440pt;}
.ls4a{letter-spacing:-0.052992pt;}
.ls40{letter-spacing:-0.042752pt;}
.ls41{letter-spacing:-0.032064pt;}
.ls44{letter-spacing:-0.026720pt;}
.ls42{letter-spacing:-0.016032pt;}
.ls43{letter-spacing:-0.010688pt;}
.ls49{letter-spacing:-0.009600pt;}
.ls46{letter-spacing:-0.005344pt;}
.ls4f{letter-spacing:-0.004800pt;}
.ls8{letter-spacing:0.000000pt;}
.ls93{letter-spacing:0.000174pt;}
.lsd{letter-spacing:0.000544pt;}
.ls54{letter-spacing:0.000607pt;}
.ls9b{letter-spacing:0.000711pt;}
.ls3a{letter-spacing:0.000751pt;}
.ls57{letter-spacing:0.000813pt;}
.ls9a{letter-spacing:0.000921pt;}
.ls96{letter-spacing:0.001156pt;}
.ls7e{letter-spacing:0.001193pt;}
.ls97{letter-spacing:0.001288pt;}
.ls8a{letter-spacing:0.001382pt;}
.ls95{letter-spacing:0.001408pt;}
.ls98{letter-spacing:0.001512pt;}
.ls92{letter-spacing:0.001943pt;}
.ls99{letter-spacing:0.002262pt;}
.ls5c{letter-spacing:0.002422pt;}
.ls55{letter-spacing:0.002567pt;}
.ls94{letter-spacing:0.002955pt;}
.ls0{letter-spacing:0.003733pt;}
.ls31{letter-spacing:0.005344pt;}
.ls32{letter-spacing:0.010688pt;}
.ls37{letter-spacing:0.014400pt;}
.ls2e{letter-spacing:0.016032pt;}
.ls2f{letter-spacing:0.019200pt;}
.ls2d{letter-spacing:0.026720pt;}
.ls34{letter-spacing:0.028800pt;}
.ls29{letter-spacing:0.029792pt;}
.ls36{letter-spacing:0.038400pt;}
.ls30{letter-spacing:0.042752pt;}
.ls2c{letter-spacing:0.048096pt;}
.ls35{letter-spacing:0.052800pt;}
.ls2b{letter-spacing:0.058784pt;}
.ls27{letter-spacing:0.068096pt;}
.ls33{letter-spacing:0.085504pt;}
.ls4b{letter-spacing:0.086400pt;}
.ls4e{letter-spacing:0.100800pt;}
.ls2a{letter-spacing:0.148960pt;}
.ls28{letter-spacing:0.161728pt;}
.ls3c{letter-spacing:0.386106pt;}
.ls6{letter-spacing:0.447791pt;}
.ls38{letter-spacing:0.482502pt;}
.lsb{letter-spacing:0.487835pt;}
.ls17{letter-spacing:0.501956pt;}
.ls71{letter-spacing:0.507290pt;}
.ls50{letter-spacing:0.578745pt;}
.ls4{letter-spacing:0.595806pt;}
.ls5{letter-spacing:0.601139pt;}
.ls1d{letter-spacing:0.627118pt;}
.lsf{letter-spacing:0.635362pt;}
.lse{letter-spacing:0.640696pt;}
.ls23{letter-spacing:0.646082pt;}
.ls76{letter-spacing:0.652455pt;}
.ls83{letter-spacing:0.660541pt;}
.ls56{letter-spacing:0.662839pt;}
.ls20{letter-spacing:0.665874pt;}
.ls73{letter-spacing:0.668173pt;}
.ls9{letter-spacing:1.133683pt;}
.ls5e{letter-spacing:1.169506pt;}
.ls60{letter-spacing:1.319121pt;}
.ls22{letter-spacing:1.327711pt;}
.ls1{letter-spacing:1.654338pt;}
.ls8c{letter-spacing:2.651690pt;}
.ls7b{letter-spacing:2.652145pt;}
.ls51{letter-spacing:2.656533pt;}
.ls8b{letter-spacing:2.657023pt;}
.ls1b{letter-spacing:2.657067pt;}
.ls6c{letter-spacing:2.657478pt;}
.ls8e{letter-spacing:2.657556pt;}
.ls90{letter-spacing:2.659505pt;}
.ls3b{letter-spacing:2.661867pt;}
.ls3d{letter-spacing:3.054400pt;}
.ls67{letter-spacing:3.163733pt;}
.ls19{letter-spacing:3.318400pt;}
.ls70{letter-spacing:3.318812pt;}
.ls1c{letter-spacing:3.319087pt;}
.ls75{letter-spacing:3.320838pt;}
.ls65{letter-spacing:3.323733pt;}
.ls7a{letter-spacing:3.324145pt;}
.ls72{letter-spacing:3.805169pt;}
.ls1f{letter-spacing:3.810502pt;}
.ls11{letter-spacing:7.016429pt;}
.ls2{letter-spacing:9.298932pt;}
.ls7{letter-spacing:10.626533pt;}
.ls15{letter-spacing:10.968429pt;}
.ls16{letter-spacing:10.973762pt;}
.ls61{letter-spacing:11.629762pt;}
.ls14{letter-spacing:11.635096pt;}
.ls9d{letter-spacing:11.901374pt;}
.ls91{letter-spacing:11.954133pt;}
.lsa1{letter-spacing:11.959467pt;}
.ls9c{letter-spacing:11.988631pt;}
.ls9e{letter-spacing:12.015260pt;}
.ls9f{letter-spacing:12.063598pt;}
.lsa0{letter-spacing:12.126101pt;}
.ls26{letter-spacing:13.017797pt;}
.ls53{letter-spacing:13.070931pt;}
.ls3e{letter-spacing:13.281067pt;}
.ls80{letter-spacing:13.281193pt;}
.ls6a{letter-spacing:13.283467pt;}
.ls81{letter-spacing:13.286354pt;}
.ls8f{letter-spacing:13.287398pt;}
.ls74{letter-spacing:13.649478pt;}
.ls78{letter-spacing:13.651505pt;}
.lsa{letter-spacing:13.923096pt;}
.ls88{letter-spacing:14.608533pt;}
.ls89{letter-spacing:14.613377pt;}
.ls86{letter-spacing:15.395096pt;}
.ls6e{letter-spacing:15.400429pt;}
.ls18{letter-spacing:15.418133pt;}
.ls6d{letter-spacing:15.421089pt;}
.ls85{letter-spacing:15.423910pt;}
.ls21{letter-spacing:15.424518pt;}
.ls84{letter-spacing:15.937067pt;}
.ls6b{letter-spacing:15.939505pt;}
.lsc{letter-spacing:15.942400pt;}
.ls5a{letter-spacing:15.987505pt;}
.ls5b{letter-spacing:15.990400pt;}
.ls10{letter-spacing:16.061762pt;}
.ls1e{letter-spacing:16.849067pt;}
.ls63{letter-spacing:18.076145pt;}
.ls5d{letter-spacing:18.078172pt;}
.ls68{letter-spacing:18.081478pt;}
.ls64{letter-spacing:21.569478pt;}
.ls69{letter-spacing:21.574812pt;}
.ls59{letter-spacing:21.773762pt;}
.ls25{letter-spacing:22.440429pt;}
.ls7c{letter-spacing:24.168429pt;}
.ls3{letter-spacing:25.292137pt;}
.ls82{letter-spacing:29.613762pt;}
.ls58{letter-spacing:35.165762pt;}
.ls5f{letter-spacing:43.784838pt;}
.ls12{letter-spacing:49.376015pt;}
.ls13{letter-spacing:121.075096pt;}
.ls1a{letter-spacing:126.637762pt;}
.ls79{letter-spacing:151.368429pt;}
.ls6f{letter-spacing:151.789762pt;}
.ls4c{letter-spacing:261.921600pt;}
.ls8d{letter-spacing:296.091200pt;}
.ls39{letter-spacing:317.307200pt;}
.ls52{letter-spacing:326.595635pt;}
.ls66{letter-spacing:503.580455pt;}
.ls77{letter-spacing:577.884455pt;}
.ls24{letter-spacing:656.657067pt;}
.ls62{letter-spacing:687.217788pt;}
.ls87{letter-spacing:809.596145pt;}
.ls7f{letter-spacing:811.323687pt;}
.ls7d{letter-spacing:845.057478pt;}
.ws0{word-spacing:-79.557243pt;}
.ws63{word-spacing:-32.000000pt;}
.ws66{word-spacing:-29.440000pt;}
.wsc8{word-spacing:-26.566933pt;}
.ws62{word-spacing:-13.354656pt;}
.ws39{word-spacing:-13.283467pt;}
.ws71{word-spacing:-11.955200pt;}
.ws61{word-spacing:-10.801728pt;}
.ws12{word-spacing:-10.626800pt;}
.ws44{word-spacing:-10.095467pt;}
.ws6{word-spacing:-9.298400pt;}
.ws64{word-spacing:-8.000000pt;}
.ws67{word-spacing:-7.360000pt;}
.ws65{word-spacing:-7.307008pt;}
.ws68{word-spacing:-7.262848pt;}
.ws55{word-spacing:-4.410111pt;}
.ws6d{word-spacing:-2.975497pt;}
.ws4b{word-spacing:-2.922363pt;}
.wscc{word-spacing:-2.603559pt;}
.ws8f{word-spacing:-2.522368pt;}
.ws90{word-spacing:-2.474272pt;}
.ws8d{word-spacing:-2.436864pt;}
.ws8c{word-spacing:-2.420832pt;}
.ws81{word-spacing:-2.207072pt;}
.ws2e{word-spacing:-2.072221pt;}
.ws82{word-spacing:-1.865056pt;}
.ws20{word-spacing:-1.859685pt;}
.wsc4{word-spacing:-1.753418pt;}
.wsc3{word-spacing:-1.700284pt;}
.ws3{word-spacing:-1.696326pt;}
.ws2d{word-spacing:-1.647150pt;}
.ws15{word-spacing:-1.625907pt;}
.wsba{word-spacing:-1.594016pt;}
.ws5b{word-spacing:-1.540882pt;}
.wsfb{word-spacing:-1.338982pt;}
.ws5d{word-spacing:-1.328347pt;}
.ws6e{word-spacing:-1.291162pt;}
.wsca{word-spacing:-1.222079pt;}
.ws2{word-spacing:-1.175671pt;}
.ws5c{word-spacing:-1.168945pt;}
.ws9d{word-spacing:-1.137600pt;}
.ws9e{word-spacing:-1.118400pt;}
.ws9f{word-spacing:-1.108800pt;}
.ws6f{word-spacing:-1.099878pt;}
.ws41{word-spacing:-1.062677pt;}
.ws1b{word-spacing:-0.812954pt;}
.ws1c{word-spacing:-0.765133pt;}
.ws5a{word-spacing:-0.743874pt;}
.wse2{word-spacing:-0.717312pt;}
.wse3{word-spacing:-0.710212pt;}
.ws59{word-spacing:-0.690740pt;}
.wsa9{word-spacing:-0.584473pt;}
.ws32{word-spacing:-0.425071pt;}
.wsad{word-spacing:-0.371937pt;}
.ws52{word-spacing:-0.318803pt;}
.ws7e{word-spacing:-0.299264pt;}
.ws1a{word-spacing:-0.286925pt;}
.ws5f{word-spacing:-0.265669pt;}
.ws9a{word-spacing:-0.245824pt;}
.wsdf{word-spacing:-0.239104pt;}
.ws21{word-spacing:-0.212535pt;}
.wsf3{word-spacing:-0.191283pt;}
.ws3e{word-spacing:-0.159402pt;}
.ws17{word-spacing:-0.143462pt;}
.ws7c{word-spacing:-0.110656pt;}
.ws25{word-spacing:-0.106268pt;}
.wsf4{word-spacing:-0.095642pt;}
.ws51{word-spacing:-0.053134pt;}
.ws1d{word-spacing:-0.047821pt;}
.ws13{word-spacing:-0.042507pt;}
.ws7{word-spacing:-0.037194pt;}
.ws9c{word-spacing:-0.005344pt;}
.wsd5{word-spacing:-0.002005pt;}
.wsd3{word-spacing:-0.000939pt;}
.ws1{word-spacing:0.000000pt;}
.ws78{word-spacing:0.000795pt;}
.wse7{word-spacing:0.047821pt;}
.ws2b{word-spacing:0.053134pt;}
.wsa3{word-spacing:0.057600pt;}
.ws87{word-spacing:0.064128pt;}
.ws75{word-spacing:0.064469pt;}
.ws77{word-spacing:0.085014pt;}
.wsb8{word-spacing:0.093251pt;}
.wsdd{word-spacing:0.095642pt;}
.wsa2{word-spacing:0.105600pt;}
.ws40{word-spacing:0.106268pt;}
.ws8a{word-spacing:0.112224pt;}
.wsa6{word-spacing:0.120000pt;}
.wsa0{word-spacing:0.129600pt;}
.ws8b{word-spacing:0.133600pt;}
.ws89{word-spacing:0.139200pt;}
.ws18{word-spacing:0.143462pt;}
.wsa7{word-spacing:0.144000pt;}
.ws88{word-spacing:0.158400pt;}
.ws2c{word-spacing:0.159402pt;}
.wsa8{word-spacing:0.163200pt;}
.ws8{word-spacing:0.185968pt;}
.wse4{word-spacing:0.191283pt;}
.ws43{word-spacing:0.212535pt;}
.ws16{word-spacing:0.239104pt;}
.wsa{word-spacing:0.260355pt;}
.ws26{word-spacing:0.265669pt;}
.wsdc{word-spacing:0.286925pt;}
.ws27{word-spacing:0.318803pt;}
.wsde{word-spacing:0.334746pt;}
.ws54{word-spacing:0.425071pt;}
.ws85{word-spacing:0.427520pt;}
.ws74{word-spacing:0.552594pt;}
.wsd9{word-spacing:0.584473pt;}
.wsec{word-spacing:0.717312pt;}
.ws86{word-spacing:0.721440pt;}
.ws6b{word-spacing:0.743874pt;}
.wsb1{word-spacing:0.903276pt;}
.wsdb{word-spacing:0.956410pt;}
.wsf7{word-spacing:1.052058pt;}
.wscd{word-spacing:1.115811pt;}
.wsbd{word-spacing:1.222079pt;}
.wsd2{word-spacing:1.275213pt;}
.wsc7{word-spacing:1.381481pt;}
.wsda{word-spacing:1.540882pt;}
.ws7b{word-spacing:1.700284pt;}
.ws9{word-spacing:1.785293pt;}
.ws29{word-spacing:1.806551pt;}
.ws6c{word-spacing:1.859685pt;}
.ws38{word-spacing:1.912819pt;}
.ws2a{word-spacing:2.019087pt;}
.ws34{word-spacing:2.072221pt;}
.wsf6{word-spacing:2.104115pt;}
.ws2f{word-spacing:2.125355pt;}
.ws47{word-spacing:2.137025pt;}
.ws36{word-spacing:2.178489pt;}
.ws79{word-spacing:2.231622pt;}
.wsea{word-spacing:2.247578pt;}
.wseb{word-spacing:2.295398pt;}
.ws3c{word-spacing:2.444158pt;}
.wsab{word-spacing:2.497292pt;}
.ws14{word-spacing:2.550432pt;}
.wscf{word-spacing:2.603559pt;}
.ws99{word-spacing:2.639936pt;}
.wsb2{word-spacing:2.656693pt;}
.wsc5{word-spacing:2.709827pt;}
.ws19{word-spacing:2.725786pt;}
.ws98{word-spacing:2.768192pt;}
.ws1e{word-spacing:2.861926pt;}
.wse0{word-spacing:2.866509pt;}
.wsef{word-spacing:2.866731pt;}
.ws7a{word-spacing:2.869229pt;}
.wse8{word-spacing:2.869248pt;}
.wse9{word-spacing:2.917069pt;}
.ws84{word-spacing:2.971264pt;}
.wsac{word-spacing:2.975497pt;}
.ws83{word-spacing:2.976608pt;}
.ws22{word-spacing:3.028630pt;}
.ws1f{word-spacing:3.188032pt;}
.ws69{word-spacing:3.294300pt;}
.ws35{word-spacing:3.347434pt;}
.ws48{word-spacing:3.552305pt;}
.wsbf{word-spacing:3.554782pt;}
.wsbe{word-spacing:3.557638pt;}
.ws56{word-spacing:3.558261pt;}
.ws4d{word-spacing:3.559546pt;}
.ws23{word-spacing:3.825638pt;}
.ws94{word-spacing:4.050752pt;}
.ws95{word-spacing:4.077472pt;}
.ws3b{word-spacing:4.144442pt;}
.wsaa{word-spacing:4.250709pt;}
.ws3d{word-spacing:4.356977pt;}
.ws28{word-spacing:4.463245pt;}
.ws97{word-spacing:4.515680pt;}
.wsce{word-spacing:4.516379pt;}
.ws96{word-spacing:4.547744pt;}
.ws5e{word-spacing:4.644228pt;}
.ws57{word-spacing:4.728914pt;}
.ws6a{word-spacing:4.782048pt;}
.wsf1{word-spacing:4.829901pt;}
.ws9b{word-spacing:4.830976pt;}
.ws4c{word-spacing:4.835182pt;}
.ws60{word-spacing:5.047717pt;}
.ws3f{word-spacing:5.153985pt;}
.ws70{word-spacing:5.313158pt;}
.wsc2{word-spacing:5.366521pt;}
.ws10{word-spacing:5.393072pt;}
.ws11{word-spacing:5.467459pt;}
.ws8e{word-spacing:5.477600pt;}
.ws4a{word-spacing:5.884666pt;}
.ws42{word-spacing:5.897859pt;}
.ws45{word-spacing:6.122668pt;}
.ws24{word-spacing:6.163529pt;}
.ws37{word-spacing:6.588599pt;}
.wsb7{word-spacing:6.641733pt;}
.ws31{word-spacing:7.013670pt;}
.wsc1{word-spacing:7.119938pt;}
.ws80{word-spacing:7.150272pt;}
.wsc0{word-spacing:7.173072pt;}
.ws7f{word-spacing:7.481600pt;}
.wse{word-spacing:7.699075pt;}
.ws92{word-spacing:7.754144pt;}
.ws91{word-spacing:7.764832pt;}
.ws93{word-spacing:7.802240pt;}
.wsd0{word-spacing:7.980706pt;}
.wsbb{word-spacing:7.982432pt;}
.ws58{word-spacing:7.983074pt;}
.ws53{word-spacing:7.984087pt;}
.ws4f{word-spacing:7.985088pt;}
.wscb{word-spacing:7.986635pt;}
.ws4e{word-spacing:8.337835pt;}
.wsa1{word-spacing:9.033600pt;}
.ws5{word-spacing:9.259949pt;}
.ws7d{word-spacing:10.329312pt;}
.ws30{word-spacing:10.580191pt;}
.ws76{word-spacing:10.658522pt;}
.wsf0{word-spacing:11.902140pt;}
.wsed{word-spacing:11.907379pt;}
.wsf2{word-spacing:11.955200pt;}
.wse5{word-spacing:12.098662pt;}
.wsb6{word-spacing:13.042513pt;}
.ws33{word-spacing:13.230333pt;}
.wsbc{word-spacing:13.253873pt;}
.wsd1{word-spacing:13.314311pt;}
.wsb9{word-spacing:13.416680pt;}
.ws4{word-spacing:13.763148pt;}
.wsb{word-spacing:14.348669pt;}
.wsc{word-spacing:14.356730pt;}
.wsf5{word-spacing:14.728806pt;}
.wsf8{word-spacing:14.772907pt;}
.wsf9{word-spacing:14.773427pt;}
.wse6{word-spacing:14.774716pt;}
.wse1{word-spacing:14.776627pt;}
.wsfa{word-spacing:14.872269pt;}
.wsee{word-spacing:14.920090pt;}
.wsfc{word-spacing:15.015731pt;}
.wsd{word-spacing:15.732893pt;}
.wsb3{word-spacing:15.864460pt;}
.ws3a{word-spacing:16.418365pt;}
.wsf{word-spacing:24.399002pt;}
.wsd4{word-spacing:274.682675pt;}
.wsd6{word-spacing:286.637875pt;}
.wsd7{word-spacing:301.748079pt;}
.wsd8{word-spacing:334.458675pt;}
.ws50{word-spacing:516.855546pt;}
.wsa5{word-spacing:547.027200pt;}
.wsa4{word-spacing:558.859200pt;}
.ws73{word-spacing:607.228518pt;}
.wsaf{word-spacing:613.206118pt;}
.ws72{word-spacing:619.183718pt;}
.wsae{word-spacing:619.231539pt;}
.wsb4{word-spacing:625.161318pt;}
.wsb5{word-spacing:631.138918pt;}
.wsb0{word-spacing:631.186739pt;}
.ws49{word-spacing:684.576738pt;}
.wsc6{word-spacing:686.642782pt;}
.ws46{word-spacing:727.987107pt;}
.wsc9{word-spacing:794.725638pt;}
._1a{margin-left:-262.777600pt;}
._25{margin-left:-13.282012pt;}
._1{margin-left:-10.616218pt;}
._10{margin-left:-6.110395pt;}
._c{margin-left:-4.351848pt;}
._5{margin-left:-3.421811pt;}
._3{margin-left:-1.912755pt;}
._0{margin-left:-0.998177pt;}
._4{width:0.969929pt;}
._8{width:2.045648pt;}
._16{width:3.323221pt;}
._6{width:11.526367pt;}
._a{width:12.682795pt;}
._b{width:14.627105pt;}
._18{width:15.778596pt;}
._f{width:16.949703pt;}
._d{width:18.532353pt;}
._14{width:19.872066pt;}
._13{width:22.156822pt;}
._7{width:23.061099pt;}
._20{width:24.418845pt;}
._9{width:29.011008pt;}
._17{width:31.071945pt;}
._15{width:34.590147pt;}
._e{width:35.482056pt;}
._31{width:54.993920pt;}
._2{width:74.943838pt;}
._1c{width:90.220800pt;}
._1d{width:102.062400pt;}
._2c{width:190.326784pt;}
._28{width:200.752486pt;}
._2b{width:212.709820pt;}
._26{width:216.739797pt;}
._2f{width:220.214784pt;}
._27{width:254.418415pt;}
._2d{width:268.705075pt;}
._2a{width:298.593075pt;}
._29{width:310.548275pt;}
._2e{width:322.503475pt;}
._22{width:362.608495pt;}
._30{width:370.324275pt;}
._1e{width:379.719885pt;}
._1b{width:396.054784pt;}
._21{width:441.290342pt;}
._11{width:568.691913pt;}
._23{width:631.186739pt;}
._1f{width:643.141939pt;}
._24{width:655.049318pt;}
._19{width:1838.247264pt;}
._12{width:2243.741333pt;}
.fs12{font-size:29.440000pt;}
.fsd{font-size:31.880533pt;}
.fs11{font-size:32.000000pt;}
.fs13{font-size:33.219200pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.276537pt;}
.fs9{font-size:38.755733pt;}
.fsc{font-size:40.381867pt;}
.fs3{font-size:41.988267pt;}
.fsb{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fse{font-size:42.560000pt;}
.fs7{font-size:47.820800pt;}
.fs10{font-size:48.000000pt;}
.fs8{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fsf{font-size:53.440000pt;}
.fsa{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:102.258667pt;}
.ybd{bottom:-465.744933pt;}
.yd9{bottom:-405.904933pt;}
.yd8{bottom:-390.544933pt;}
.yd7{bottom:-373.664933pt;}
.yd6{bottom:-357.504533pt;}
.yd5{bottom:-341.264933pt;}
.yd4{bottom:-325.104933pt;}
.yd3{bottom:-308.225333pt;}
.yd2{bottom:-282.945333pt;}
.yd1{bottom:-267.504933pt;}
.yd0{bottom:-235.819317pt;}
.ycf{bottom:-218.699813pt;}
.yce{bottom:-201.660469pt;}
.ycd{bottom:-184.540965pt;}
.ycc{bottom:-167.501621pt;}
.ycb{bottom:-150.382117pt;}
.yca{bottom:-133.262613pt;}
.yc9{bottom:-116.223269pt;}
.yc8{bottom:-99.103765pt;}
.yc7{bottom:-82.064421pt;}
.yc6{bottom:-60.944933pt;}
.yc5{bottom:-28.224933pt;}
.yc4{bottom:-8.223717pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:3.044747pt;}
.y9{bottom:12.578910pt;}
.y2{bottom:14.207770pt;}
.y4e{bottom:28.346667pt;}
.y195{bottom:79.430667pt;}
.y194{bottom:85.401333pt;}
.y193{bottom:88.682667pt;}
.yf8{bottom:89.941333pt;}
.y25{bottom:91.398667pt;}
.y4d{bottom:96.234667pt;}
.yf7{bottom:106.678667pt;}
.y24{bottom:107.298667pt;}
.y192{bottom:108.900000pt;}
.y1c2{bottom:109.416000pt;}
.y156{bottom:112.546667pt;}
.y4c{bottom:112.972000pt;}
.y155{bottom:115.828000pt;}
.y23{bottom:123.200000pt;}
.yf6{bottom:123.416000pt;}
.y191{bottom:125.637333pt;}
.y84{bottom:127.946667pt;}
.y85{bottom:128.086667pt;}
.y4b{bottom:129.709333pt;}
.y1c1{bottom:133.008000pt;}
.y83{bottom:137.198667pt;}
.y22{bottom:139.100000pt;}
.yf5{bottom:140.153333pt;}
.y190{bottom:142.374667pt;}
.y4a{bottom:146.446667pt;}
.y1c0{bottom:148.629333pt;}
.y154{bottom:150.189333pt;}
.y21{bottom:155.000000pt;}
.y153{bottom:155.001333pt;}
.yf4{bottom:156.890667pt;}
.y18f{bottom:159.112000pt;}
.yb9{bottom:159.800000pt;}
.y49{bottom:163.184000pt;}
.y20{bottom:170.901333pt;}
.y1bf{bottom:172.221333pt;}
.yf2{bottom:173.628000pt;}
.y18e{bottom:175.849333pt;}
.yb8{bottom:176.537333pt;}
.y82{bottom:177.314667pt;}
.yf3{bottom:178.450667pt;}
.y48{bottom:179.921333pt;}
.y1f{bottom:186.801333pt;}
.y1be{bottom:187.842667pt;}
.y152{bottom:189.292000pt;}
.yf1{bottom:190.365333pt;}
.y18d{bottom:192.586667pt;}
.yb7{bottom:193.274667pt;}
.y81{bottom:194.052000pt;}
.y1f5{bottom:195.462667pt;}
.y47{bottom:196.658667pt;}
.y1e{bottom:202.701333pt;}
.y121{bottom:204.704000pt;}
.y151{bottom:206.029333pt;}
.y18b{bottom:209.324000pt;}
.yb6{bottom:210.012000pt;}
.y80{bottom:210.789333pt;}
.y1f4{bottom:210.805333pt;}
.y1bd{bottom:211.433333pt;}
.y46{bottom:213.396000pt;}
.y18c{bottom:214.145333pt;}
.y120{bottom:221.441333pt;}
.yf0{bottom:222.054667pt;}
.y150{bottom:222.766667pt;}
.y1f3{bottom:226.148000pt;}
.yb5{bottom:226.749333pt;}
.y7f{bottom:227.526667pt;}
.y45{bottom:230.133333pt;}
.y18a{bottom:230.838667pt;}
.yef{bottom:234.674667pt;}
.y1bc{bottom:235.025333pt;}
.y11f{bottom:238.178667pt;}
.y14f{bottom:239.504000pt;}
.y188{bottom:239.952000pt;}
.y1f2{bottom:241.490667pt;}
.y7e{bottom:244.264000pt;}
.y44{bottom:246.869333pt;}
.yee{bottom:247.293333pt;}
.yb4{bottom:247.472000pt;}
.y189{bottom:248.944000pt;}
.y11e{bottom:254.916000pt;}
.y14e{bottom:256.241333pt;}
.y1f1{bottom:256.833333pt;}
.y1bb{bottom:258.617333pt;}
.y7d{bottom:261.001333pt;}
.y43{bottom:263.606667pt;}
.yed{bottom:264.044000pt;}
.y187{bottom:265.736000pt;}
.y11d{bottom:271.653333pt;}
.y1f0{bottom:272.176000pt;}
.y1d{bottom:273.154667pt;}
.y14d{bottom:276.964000pt;}
.yb3{bottom:277.360000pt;}
.y7c{bottom:277.738667pt;}
.yec{bottom:278.654667pt;}
.y42{bottom:280.344000pt;}
.y1ba{bottom:282.208000pt;}
.y186{bottom:282.473333pt;}
.y1ef{bottom:287.518667pt;}
.y11c{bottom:288.390667pt;}
.y1c{bottom:289.054667pt;}
.yeb{bottom:293.266667pt;}
.yb2{bottom:294.097333pt;}
.y7b{bottom:294.476000pt;}
.y41{bottom:297.081333pt;}
.y185{bottom:297.217333pt;}
.y1b9{bottom:297.829333pt;}
.y183{bottom:299.210667pt;}
.y1ee{bottom:302.861333pt;}
.y184{bottom:304.032000pt;}
.y1b{bottom:304.954667pt;}
.y11b{bottom:305.128000pt;}
.y14c{bottom:306.852000pt;}
.yea{bottom:307.878667pt;}
.yb1{bottom:310.834667pt;}
.y79{bottom:311.213333pt;}
.y1b8{bottom:313.450667pt;}
.y40{bottom:313.818667pt;}
.y7a{bottom:316.036000pt;}
.y1ed{bottom:318.202667pt;}
.y1a{bottom:320.856000pt;}
.y14b{bottom:323.589333pt;}
.y11a{bottom:325.850667pt;}
.yb0{bottom:327.572000pt;}
.y77{bottom:327.950667pt;}
.y182{bottom:328.326667pt;}
.ye9{bottom:329.066667pt;}
.y1b7{bottom:329.073333pt;}
.y3f{bottom:330.556000pt;}
.y78{bottom:332.773333pt;}
.y1ec{bottom:333.545333pt;}
.y181{bottom:337.440000pt;}
.y149{bottom:337.900000pt;}
.y148{bottom:340.326667pt;}
.yaf{bottom:342.316000pt;}
.yae{bottom:344.308000pt;}
.y75{bottom:344.688000pt;}
.y14a{bottom:345.148000pt;}
.y3e{bottom:347.293333pt;}
.y1eb{bottom:348.888000pt;}
.y76{bottom:349.510667pt;}
.y19{bottom:354.688000pt;}
.y147{bottom:357.064000pt;}
.ye8{bottom:357.345333pt;}
.y1b6{bottom:360.634667pt;}
.y74{bottom:361.425333pt;}
.y119{bottom:362.593333pt;}
.y3d{bottom:364.030667pt;}
.y1ea{bottom:364.230667pt;}
.yad{bottom:370.434667pt;}
.y18{bottom:370.589333pt;}
.y146{bottom:373.801333pt;}
.ye7{bottom:374.441333pt;}
.y180{bottom:375.065333pt;}
.y118{bottom:375.516000pt;}
.y1b5{bottom:377.372000pt;}
.y1e9{bottom:379.573333pt;}
.yac{bottom:379.686667pt;}
.y3c{bottom:380.768000pt;}
.y73{bottom:382.148000pt;}
.y17{bottom:386.489333pt;}
.y145{bottom:390.538667pt;}
.y1b4{bottom:391.682667pt;}
.y17f{bottom:391.802667pt;}
.y1b3{bottom:394.109333pt;}
.y1e8{bottom:394.916000pt;}
.y117{bottom:396.529333pt;}
.y3b{bottom:397.505333pt;}
.yab{bottom:403.688000pt;}
.yc3{bottom:404.256931pt;}
.ye6{bottom:406.460000pt;}
.y144{bottom:407.276000pt;}
.y17e{bottom:408.540000pt;}
.y1e7{bottom:410.258667pt;}
.y1b2{bottom:410.846667pt;}
.y72{bottom:412.036000pt;}
.y3a{bottom:414.242667pt;}
.y116{bottom:417.544000pt;}
.y16{bottom:418.330667pt;}
.yaa{bottom:418.432000pt;}
.ya9{bottom:420.425333pt;}
.yc2{bottom:421.376435pt;}
.ye4{bottom:423.197333pt;}
.y143{bottom:424.013333pt;}
.y17c{bottom:425.277333pt;}
.y1e6{bottom:425.601333pt;}
.y1b1{bottom:427.584000pt;}
.ye5{bottom:428.018667pt;}
.y71{bottom:428.773333pt;}
.y17d{bottom:430.098667pt;}
.y15{bottom:434.230667pt;}
.ya8{bottom:434.428000pt;}
.y39{bottom:434.965333pt;}
.ya7{bottom:435.169333pt;}
.ya6{bottom:437.162667pt;}
.yc1{bottom:438.415779pt;}
.y115{bottom:438.557333pt;}
.ye3{bottom:439.934667pt;}
.y1e5{bottom:440.944000pt;}
.y17b{bottom:442.014667pt;}
.y1b0{bottom:444.321333pt;}
.y142{bottom:444.734667pt;}
.y70{bottom:445.510667pt;}
.y14{bottom:450.130667pt;}
.yc0{bottom:455.535283pt;}
.y17a{bottom:456.017333pt;}
.y1e4{bottom:456.285333pt;}
.y177{bottom:456.325333pt;}
.ye2{bottom:456.672000pt;}
.y178{bottom:456.758667pt;}
.y176{bottom:458.752000pt;}
.y114{bottom:459.572000pt;}
.y1af{bottom:461.058667pt;}
.y6f{bottom:462.248000pt;}
.y179{bottom:463.573333pt;}
.y13{bottom:466.032000pt;}
.ya5{bottom:467.846667pt;}
.y1e3{bottom:471.628000pt;}
.ybf{bottom:472.654787pt;}
.ye1{bottom:473.409333pt;}
.y141{bottom:474.622667pt;}
.y6d{bottom:478.985333pt;}
.y113{bottom:480.585333pt;}
.y1ae{bottom:481.780000pt;}
.y12{bottom:481.932000pt;}
.y6e{bottom:483.806667pt;}
.y175{bottom:486.912000pt;}
.y1e2{bottom:486.970667pt;}
.y13f{bottom:488.625333pt;}
.ye0{bottom:490.146667pt;}
.y174{bottom:491.022667pt;}
.y13e{bottom:491.360000pt;}
.ybe{bottom:493.695451pt;}
.y172{bottom:493.846667pt;}
.y6b{bottom:495.722667pt;}
.y140{bottom:496.182667pt;}
.y6c{bottom:500.544000pt;}
.ya4{bottom:501.152000pt;}
.y112{bottom:501.600000pt;}
.y38{bottom:501.765333pt;}
.y1e1{bottom:502.313333pt;}
.y173{bottom:502.960000pt;}
.y13d{bottom:505.362667pt;}
.ydf{bottom:506.884000pt;}
.y13c{bottom:508.097333pt;}
.y1ad{bottom:511.668000pt;}
.y171{bottom:511.953333pt;}
.y6a{bottom:512.460000pt;}
.y11{bottom:513.772000pt;}
.y1e0{bottom:517.656000pt;}
.ya3{bottom:517.889333pt;}
.yde{bottom:523.620000pt;}
.y13b{bottom:524.834667pt;}
.y1ac{bottom:528.405333pt;}
.y69{bottom:529.197333pt;}
.y10{bottom:529.673333pt;}
.y111{bottom:529.705333pt;}
.y1df{bottom:532.998667pt;}
.ya2{bottom:534.626667pt;}
.y37{bottom:535.000000pt;}
.y170{bottom:540.333333pt;}
.ydd{bottom:540.357333pt;}
.ybc{bottom:542.335187pt;}
.y1ab{bottom:545.142667pt;}
.yf{bottom:545.573333pt;}
.y1de{bottom:548.341333pt;}
.y13a{bottom:549.114667pt;}
.y68{bottom:549.918667pt;}
.ybb{bottom:550.895067pt;}
.y36{bottom:552.296000pt;}
.y16f{bottom:557.070667pt;}
.ydc{bottom:557.094667pt;}
.y139{bottom:558.226667pt;}
.y1a9{bottom:559.145333pt;}
.y1aa{bottom:559.888000pt;}
.ye{bottom:561.473333pt;}
.y1a8{bottom:561.880000pt;}
.y110{bottom:562.686667pt;}
.ya0{bottom:563.180000pt;}
.ya1{bottom:563.396000pt;}
.y1dd{bottom:563.684000pt;}
.y67{bottom:567.852000pt;}
.y34{bottom:569.590667pt;}
.y16e{bottom:573.808000pt;}
.y35{bottom:573.930667pt;}
.yd{bottom:577.374667pt;}
.ydb{bottom:577.817333pt;}
.y9e{bottom:577.888000pt;}
.y138{bottom:578.105333pt;}
.y9f{bottom:578.273333pt;}
.y1dc{bottom:579.025333pt;}
.y10f{bottom:579.424000pt;}
.y33{bottom:586.886667pt;}
.y16d{bottom:590.545333pt;}
.yc{bottom:593.274667pt;}
.y1db{bottom:594.368000pt;}
.y137{bottom:594.842667pt;}
.y10e{bottom:596.161333pt;}
.y1a7{bottom:597.426667pt;}
.y66{bottom:597.740000pt;}
.y32{bottom:604.181333pt;}
.y16c{bottom:607.282667pt;}
.yda{bottom:607.521333pt;}
.yb{bottom:609.174667pt;}
.y1da{bottom:609.710667pt;}
.y136{bottom:611.580000pt;}
.y1a6{bottom:612.254667pt;}
.y10d{bottom:612.898667pt;}
.y65{bottom:614.477333pt;}
.y9d{bottom:619.296000pt;}
.y31{bottom:621.476000pt;}
.y16b{bottom:624.018667pt;}
.y1d9{bottom:625.053333pt;}
.y135{bottom:625.582667pt;}
.y1a5{bottom:626.866667pt;}
.yba{bottom:627.458667pt;}
.y134{bottom:628.317333pt;}
.y8{bottom:629.060048pt;}
.y10c{bottom:629.636000pt;}
.y64{bottom:631.214667pt;}
.y9c{bottom:636.033333pt;}
.y30{bottom:638.772000pt;}
.y1d8{bottom:640.396000pt;}
.y16a{bottom:640.756000pt;}
.y133{bottom:645.054667pt;}
.y10b{bottom:646.373333pt;}
.y1a4{bottom:647.880000pt;}
.y63{bottom:647.952000pt;}
.y9b{bottom:650.778667pt;}
.y9a{bottom:652.770667pt;}
.y1d7{bottom:655.738667pt;}
.y2f{bottom:656.066667pt;}
.y132{bottom:661.792000pt;}
.y10a{bottom:663.110667pt;}
.y62{bottom:664.689333pt;}
.y1a3{bottom:668.894667pt;}
.y99{bottom:669.508000pt;}
.y169{bottom:670.160000pt;}
.y1d6{bottom:671.081333pt;}
.y2e{bottom:673.361333pt;}
.y168{bottom:674.270667pt;}
.y131{bottom:678.529333pt;}
.y108{bottom:679.848000pt;}
.y61{bottom:681.426667pt;}
.y109{bottom:684.670667pt;}
.y1d5{bottom:686.424000pt;}
.y166{bottom:688.078667pt;}
.y1a2{bottom:689.908000pt;}
.y2d{bottom:690.657333pt;}
.y167{bottom:694.325333pt;}
.y130{bottom:695.266667pt;}
.y107{bottom:696.585333pt;}
.y97{bottom:698.156000pt;}
.y60{bottom:698.164000pt;}
.y98{bottom:699.201333pt;}
.y1d4{bottom:701.766667pt;}
.y96{bottom:702.482667pt;}
.y1a1{bottom:704.520000pt;}
.y2c{bottom:707.952000pt;}
.y12f{bottom:712.004000pt;}
.y106{bottom:713.322667pt;}
.y5f{bottom:714.901333pt;}
.y1d3{bottom:717.108000pt;}
.y2b{bottom:725.248000pt;}
.y1a0{bottom:725.534667pt;}
.y12e{bottom:728.741333pt;}
.y105{bottom:730.060000pt;}
.y165{bottom:730.857333pt;}
.y5e{bottom:731.638667pt;}
.y1d2{bottom:732.450667pt;}
.y95{bottom:733.168000pt;}
.y19f{bottom:740.146667pt;}
.y2a{bottom:742.542667pt;}
.y12d{bottom:745.478667pt;}
.y1d1{bottom:747.793333pt;}
.y5d{bottom:748.376000pt;}
.y94{bottom:749.905333pt;}
.y104{bottom:750.782667pt;}
.y164{bottom:755.962667pt;}
.y29{bottom:759.837333pt;}
.y19d{bottom:761.160000pt;}
.y12c{bottom:762.216000pt;}
.y1d0{bottom:763.136000pt;}
.y5c{bottom:769.097333pt;}
.y93{bottom:770.628000pt;}
.y163{bottom:772.700000pt;}
.y19e{bottom:772.805333pt;}
.y19c{bottom:775.772000pt;}
.y1cf{bottom:778.478667pt;}
.y103{bottom:780.670667pt;}
.y5b{bottom:787.030667pt;}
.y92{bottom:788.560000pt;}
.y162{bottom:789.437333pt;}
.y1ce{bottom:793.821333pt;}
.y28{bottom:794.136000pt;}
.y12b{bottom:795.105333pt;}
.y102{bottom:797.408000pt;}
.y19b{bottom:803.878667pt;}
.y161{bottom:806.174667pt;}
.y12a{bottom:808.029333pt;}
.y27{bottom:808.482667pt;}
.y1cd{bottom:809.164000pt;}
.y101{bottom:814.145333pt;}
.y90{bottom:816.021333pt;}
.y5a{bottom:816.918667pt;}
.y8f{bottom:818.448000pt;}
.y26{bottom:822.828000pt;}
.y160{bottom:822.912000pt;}
.y91{bottom:823.270667pt;}
.y1cc{bottom:824.506667pt;}
.y129{bottom:829.042667pt;}
.y100{bottom:830.882667pt;}
.y59{bottom:833.656000pt;}
.y8e{bottom:835.185333pt;}
.y19a{bottom:836.860000pt;}
.y1cb{bottom:839.848000pt;}
.y15f{bottom:844.737333pt;}
.yfe{bottom:847.620000pt;}
.y15e{bottom:848.018667pt;}
.y128{bottom:850.057333pt;}
.y58{bottom:850.393333pt;}
.y198{bottom:850.862667pt;}
.y199{bottom:851.604000pt;}
.y8d{bottom:851.922667pt;}
.yff{bottom:852.441333pt;}
.y197{bottom:853.597333pt;}
.y1ca{bottom:855.190667pt;}
.y7{bottom:862.413333pt;}
.yfc{bottom:864.357333pt;}
.y15d{bottom:864.754667pt;}
.y57{bottom:867.130667pt;}
.yfd{bottom:869.178667pt;}
.y1c9{bottom:870.533333pt;}
.y127{bottom:871.070667pt;}
.yfb{bottom:881.094667pt;}
.y15c{bottom:881.492000pt;}
.y8c{bottom:882.336000pt;}
.y56{bottom:883.868000pt;}
.y196{bottom:884.282667pt;}
.y1c8{bottom:885.876000pt;}
.y8b{bottom:891.588000pt;}
.y126{bottom:892.084000pt;}
.yfa{bottom:897.832000pt;}
.y15b{bottom:898.229333pt;}
.y6{bottom:900.404000pt;}
.y55{bottom:900.605333pt;}
.y1c7{bottom:901.218667pt;}
.y15a{bottom:912.540000pt;}
.y125{bottom:913.098667pt;}
.y159{bottom:914.966667pt;}
.y1c6{bottom:916.561333pt;}
.y54{bottom:917.342667pt;}
.yf9{bottom:918.553333pt;}
.y5{bottom:925.510667pt;}
.y8a{bottom:931.704000pt;}
.y1c5{bottom:931.904000pt;}
.y53{bottom:934.080000pt;}
.y124{bottom:934.112000pt;}
.y1c4{bottom:947.246667pt;}
.y89{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y52{bottom:950.817333pt;}
.y123{bottom:955.126667pt;}
.y158{bottom:962.444000pt;}
.y1c3{bottom:962.589333pt;}
.y157{bottom:962.752000pt;}
.y88{bottom:965.178667pt;}
.y51{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.y87{bottom:979.181333pt;}
.y86{bottom:981.916000pt;}
.y122{bottom:983.233333pt;}
.y50{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4f{bottom:1043.020000pt;}
.h22{height:7.815859pt;}
.h7{height:22.673858pt;}
.h2e{height:23.209028pt;}
.h42{height:26.890973pt;}
.ha{height:27.076941pt;}
.hb{height:27.262909pt;}
.h19{height:28.023859pt;}
.h18{height:29.397999pt;}
.h9{height:29.433775pt;}
.h8{height:30.399505pt;}
.hd{height:30.945242pt;}
.h15{height:31.157778pt;}
.h12{height:33.186336pt;}
.h11{height:33.474560pt;}
.hc{height:33.957757pt;}
.hf{height:34.574438pt;}
.h10{height:34.813542pt;}
.h43{height:35.052646pt;}
.h2b{height:35.345350pt;}
.h17{height:36.873667pt;}
.h30{height:37.193707pt;}
.h13{height:38.415786pt;}
.h2d{height:38.638362pt;}
.h14{height:38.681455pt;}
.h28{height:38.775312pt;}
.he{height:38.809074pt;}
.h4{height:38.947124pt;}
.h26{height:39.359687pt;}
.h6{height:39.531597pt;}
.h1b{height:41.524400pt;}
.h48{height:43.660390pt;}
.h2c{height:44.245639pt;}
.h2f{height:44.250973pt;}
.h29{height:44.390625pt;}
.h2a{height:44.392225pt;}
.h2{height:44.532000pt;}
.h16{height:48.683332pt;}
.h31{height:48.688666pt;}
.h27{height:49.421563pt;}
.h1e{height:50.877193pt;}
.h32{height:51.339332pt;}
.h40{height:51.344666pt;}
.h20{height:51.806788pt;}
.h36{height:54.089733pt;}
.h3c{height:54.805999pt;}
.h3d{height:56.656666pt;}
.h35{height:57.021193pt;}
.h47{height:58.389999pt;}
.h24{height:58.949999pt;}
.h46{height:59.627332pt;}
.h39{height:61.133355pt;}
.h44{height:64.034876pt;}
.h45{height:64.040209pt;}
.h5{height:69.148877pt;}
.h38{height:69.238400pt;}
.h3{height:69.331376pt;}
.h1f{height:70.811733pt;}
.h23{height:72.112666pt;}
.h3b{height:73.167040pt;}
.h34{height:74.253355pt;}
.h3e{height:74.649455pt;}
.h1c{height:74.654788pt;}
.h1d{height:75.129455pt;}
.h3f{height:75.134788pt;}
.h33{height:80.376021pt;}
.h1a{height:84.351067pt;}
.h41{height:87.780122pt;}
.h21{height:89.519067pt;}
.h37{height:96.235332pt;}
.h3a{height:110.356122pt;}
.h25{height:367.742667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:172.751173pt;}
.w4{width:660.926400pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x54{left:-12.542933pt;}
.x0{left:0.000000pt;}
.x4{left:26.021437pt;}
.x3{left:47.068000pt;}
.x1{left:48.000000pt;}
.x2{left:51.328078pt;}
.x53{left:66.388267pt;}
.xc0{left:76.686667pt;}
.x58{left:106.417067pt;}
.x55{left:161.297387pt;}
.x5c{left:167.816000pt;}
.x59{left:186.817067pt;}
.x56{left:189.617915pt;}
.x6{left:222.073333pt;}
.x5{left:223.020000pt;}
.xa{left:226.834667pt;}
.x5b{left:232.337067pt;}
.x5a{left:235.377067pt;}
.xb{left:238.826667pt;}
.x23{left:243.953333pt;}
.xbb{left:244.849333pt;}
.xbc{left:246.081333pt;}
.xb9{left:247.396000pt;}
.xa0{left:248.876000pt;}
.x5f{left:249.969333pt;}
.x10{left:251.365333pt;}
.x6c{left:257.220000pt;}
.xbd{left:258.144000pt;}
.x24{left:259.374667pt;}
.x48{left:261.606667pt;}
.xa1{left:265.362667pt;}
.x5e{left:267.741333pt;}
.xb5{left:271.521333pt;}
.x25{left:273.049333pt;}
.x7{left:274.833333pt;}
.x91{left:276.854667pt;}
.xb6{left:278.872000pt;}
.x49{left:281.696000pt;}
.x71{left:282.870667pt;}
.x69{left:285.900000pt;}
.x83{left:287.992000pt;}
.x26{left:291.560000pt;}
.x27{left:295.441333pt;}
.x60{left:298.177333pt;}
.x28{left:301.492000pt;}
.x6b{left:302.661333pt;}
.x6d{left:304.156000pt;}
.x6a{left:307.144000pt;}
.xb7{left:313.777333pt;}
.x4a{left:317.649333pt;}
.x92{left:323.032000pt;}
.xb8{left:326.680000pt;}
.x15{left:331.740000pt;}
.x4b{left:334.094667pt;}
.x96{left:336.157333pt;}
.x16{left:338.382667pt;}
.x17{left:341.742667pt;}
.xb0{left:345.005333pt;}
.xa5{left:346.754667pt;}
.x18{left:348.385333pt;}
.x97{left:351.810667pt;}
.xba{left:355.977333pt;}
.xb1{left:359.261333pt;}
.xa6{left:361.000000pt;}
.x81{left:364.240000pt;}
.x3f{left:369.582667pt;}
.xb2{left:372.605333pt;}
.xa7{left:374.289333pt;}
.x6e{left:381.304000pt;}
.x8e{left:387.864000pt;}
.xb3{left:389.952000pt;}
.xa8{left:391.624000pt;}
.x44{left:394.374667pt;}
.x6f{left:396.757333pt;}
.x47{left:402.008000pt;}
.x4f{left:404.149333pt;}
.x82{left:406.025333pt;}
.x2b{left:407.282667pt;}
.xa9{left:409.092000pt;}
.x7f{left:410.149333pt;}
.x2c{left:412.994667pt;}
.xaa{left:414.804000pt;}
.x61{left:419.253333pt;}
.x98{left:420.329333pt;}
.x76{left:421.534667pt;}
.x50{left:422.822667pt;}
.x34{left:426.038667pt;}
.x77{left:428.888000pt;}
.x93{left:431.777333pt;}
.x99{left:434.329333pt;}
.x72{left:436.329333pt;}
.x29{left:437.377333pt;}
.x35{left:441.608000pt;}
.xad{left:443.348000pt;}
.x40{left:444.496000pt;}
.x80{left:446.381333pt;}
.x2a{left:448.302667pt;}
.x7d{left:449.462667pt;}
.xb4{left:450.582667pt;}
.x3c{left:452.510667pt;}
.xa4{left:454.156000pt;}
.x8d{left:460.454667pt;}
.x9a{left:466.921333pt;}
.x51{left:470.082667pt;}
.x45{left:470.972000pt;}
.x94{left:477.581333pt;}
.x65{left:479.457333pt;}
.x36{left:480.580000pt;}
.x73{left:481.658667pt;}
.x9b{left:482.706667pt;}
.x52{left:484.526667pt;}
.x41{left:486.629333pt;}
.x9c{left:489.488000pt;}
.x4e{left:490.562667pt;}
.x9d{left:494.000000pt;}
.x11{left:496.689333pt;}
.x70{left:498.753333pt;}
.x74{left:500.280000pt;}
.x8f{left:501.292000pt;}
.x12{left:503.330667pt;}
.x13{left:509.860000pt;}
.xae{left:511.238667pt;}
.xaf{left:514.278667pt;}
.x14{left:516.501333pt;}
.x75{left:517.572000pt;}
.x37{left:518.630667pt;}
.x31{left:521.593333pt;}
.x90{left:525.534667pt;}
.x32{left:527.642667pt;}
.x3d{left:535.816000pt;}
.x1d{left:539.032000pt;}
.x7e{left:543.906667pt;}
.x1e{left:545.674667pt;}
.x1f{left:552.449333pt;}
.x8{left:554.608000pt;}
.x46{left:556.974667pt;}
.x20{left:565.732000pt;}
.x78{left:567.024000pt;}
.x68{left:570.277333pt;}
.x9{left:571.713333pt;}
.xab{left:576.696000pt;}
.x7a{left:578.520000pt;}
.xc{left:580.665333pt;}
.x3e{left:583.102667pt;}
.xbe{left:585.393333pt;}
.xc2{left:588.317333pt;}
.xac{left:589.592000pt;}
.xd{left:593.234667pt;}
.x79{left:597.604000pt;}
.x85{left:599.369333pt;}
.xe{left:605.066667pt;}
.xc4{left:606.750667pt;}
.x86{left:613.052000pt;}
.xf{left:620.765333pt;}
.x2f{left:622.933333pt;}
.x7b{left:626.061333pt;}
.x30{left:628.645333pt;}
.xc5{left:630.661333pt;}
.x87{left:632.201333pt;}
.x38{left:640.910667pt;}
.x88{left:644.997333pt;}
.xbf{left:646.650667pt;}
.x8c{left:651.578667pt;}
.x39{left:654.077333pt;}
.x66{left:655.653333pt;}
.xa2{left:658.045333pt;}
.x21{left:659.044000pt;}
.x33{left:660.998667pt;}
.x84{left:668.340000pt;}
.x67{left:669.669333pt;}
.x22{left:672.328000pt;}
.x57{left:673.296675pt;}
.x7c{left:676.130667pt;}
.xa3{left:680.084000pt;}
.x9e{left:684.316000pt;}
.x42{left:689.204000pt;}
.xc3{left:696.290667pt;}
.x19{left:697.645333pt;}
.x4c{left:700.516000pt;}
.x3a{left:702.169333pt;}
.x1a{left:704.286667pt;}
.x62{left:705.386667pt;}
.x9f{left:706.366667pt;}
.x1b{left:707.673333pt;}
.x89{left:712.132000pt;}
.x1c{left:714.316000pt;}
.x3b{left:717.092000pt;}
.x63{left:719.401333pt;}
.xc1{left:720.332000pt;}
.x4d{left:721.881333pt;}
.x95{left:723.570667pt;}
.x8a{left:725.814667pt;}
.x43{left:730.105333pt;}
.x5d{left:732.190667pt;}
.x8b{left:735.869333pt;}
.x2d{left:736.925333pt;}
.x2e{left:742.636000pt;}
.x64{left:743.973333pt;}
}




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