
    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_638f306e2c0a5be4ecf6efa4.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_ae0d6438079af0110e357692.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_69e3b98d600f3d371f10f62a.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_027bfd92738b1d73e563c356.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.966000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5a7640b1a61af8ab8f5325a7.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f66b30019f38c474a003b770.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_400009d9ec4db69560acdf42.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_30cbef4ecd4efe4ee41bc2b9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.773000;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_43d584a89ec79e087b8bb692.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5a72fe12d6599c5dc5a99e09.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.014160;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_73d9fa97e1d9224a1cf9abbe.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.003418;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_1336a260ef3c1069e569ba43.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_09d29eb9343dc55fc694b9e8.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_732a2db35ba0211cc133cae2.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.014160;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_73d9fa97e1d9224a1cf9abbe.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.003418;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_61b7774a82b272ebadead252.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_732a2db35ba0211cc133cae2.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.014160;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_73d9fa97e1d9224a1cf9abbe.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.003418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_61b7774a82b272ebadead252.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_df226793c74ab9b76035b62f.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.014160;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_9241014586522b77812c80a9.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.003418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_a3b59b6a4b896bf95d07909e.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_df226793c74ab9b76035b62f.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.014160;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_6e069588ebcefca7365b0e9e.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.003418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_3a6933ec1b936be7b637e450.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_b4baffebe49a3fc7639b4d29.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.014160;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_83ca366e251ccc4c32981490.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.003418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_0987617d9d9f47b376c30dc8.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_45cd4483345a5535596113f7.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_9a88084fa54e8354dc5e2906.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.014160;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:ff22;src:url('chunks/assets/font_897de44e3e4595ea210c675c.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.003418;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:ff23;src:url('chunks/assets/font_488d2c2f9071cf4767b24a32.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_654f462ce025b7a215c212f0.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_df226793c74ab9b76035b62f.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.014160;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:ff26;src:url('chunks/assets/font_3fb796ab6325a81eab823dc8.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.003418;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:ff27;src:url('chunks/assets/font_1600e6bafe1e5f654546bebe.woff2')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_cdff0bd9c3394dbfd952e8be.woff2')format("woff");}.ff28{font-family:ff28;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;}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.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);}
.m6{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);}
.m3{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);}
.m11{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);}
.m9{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);}
.m1b{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);}
.m1{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m24{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);}
.m23{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);}
.mc{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);}
.mf{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);}
.m22{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);}
.m19{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);}
.m10{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);}
.m15{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);}
.m1e{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);}
.ma{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);}
.m20{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);}
.m1d{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);}
.m16{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);}
.m8{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);}
.m18{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);}
.m25{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m26{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);}
.m27{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);}
.m21{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m17{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);}
.m4{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);}
.md{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);}
.v2{vertical-align:-17.364000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:12.852000px;}
.v4{vertical-align:14.817600px;}
.v1{vertical-align:21.696000px;}
.ls14{letter-spacing:-8.100000px;}
.ls1e{letter-spacing:-1.652400px;}
.ls15{letter-spacing:-0.180000px;}
.ls2c{letter-spacing:-0.176400px;}
.ls2a{letter-spacing:-0.171000px;}
.ls1f{letter-spacing:-0.153000px;}
.ls16{letter-spacing:-0.126600px;}
.ls13{letter-spacing:-0.090000px;}
.ls2b{letter-spacing:-0.088200px;}
.ls28{letter-spacing:-0.085500px;}
.ls1d{letter-spacing:-0.076500px;}
.ls10{letter-spacing:0.000000px;}
.ls55{letter-spacing:0.000088px;}
.ls3e{letter-spacing:0.000292px;}
.ls32{letter-spacing:0.000608px;}
.ls56{letter-spacing:0.000658px;}
.ls41{letter-spacing:0.000800px;}
.ls51{letter-spacing:0.001036px;}
.ls4a{letter-spacing:0.001357px;}
.ls54{letter-spacing:0.001467px;}
.ls3f{letter-spacing:0.001484px;}
.ls38{letter-spacing:0.001502px;}
.ls4c{letter-spacing:0.001701px;}
.lsd{letter-spacing:0.001933px;}
.lsb{letter-spacing:0.001952px;}
.ls0{letter-spacing:0.002266px;}
.ls45{letter-spacing:0.002488px;}
.ls50{letter-spacing:0.002544px;}
.ls3{letter-spacing:0.002725px;}
.ls3d{letter-spacing:0.003155px;}
.ls4d{letter-spacing:0.003284px;}
.ls49{letter-spacing:0.003437px;}
.lsc{letter-spacing:0.003488px;}
.ls33{letter-spacing:0.003859px;}
.ls1{letter-spacing:0.004200px;}
.ls4e{letter-spacing:0.004267px;}
.ls2f{letter-spacing:0.018000px;}
.ls2e{letter-spacing:0.036000px;}
.ls29{letter-spacing:0.085500px;}
.ls30{letter-spacing:0.090000px;}
.ls20{letter-spacing:0.091800px;}
.ls26{letter-spacing:0.105840px;}
.ls22{letter-spacing:0.108000px;}
.ls2d{letter-spacing:0.126000px;}
.ls24{letter-spacing:0.132810px;}
.ls19{letter-spacing:0.153000px;}
.ls23{letter-spacing:0.171000px;}
.ls25{letter-spacing:0.176400px;}
.ls12{letter-spacing:0.180000px;}
.ls27{letter-spacing:0.241080px;}
.ls11{letter-spacing:1.275394px;}
.ls7{letter-spacing:1.861130px;}
.ls1a{letter-spacing:2.830500px;}
.ls5{letter-spacing:2.989200px;}
.ls4{letter-spacing:2.998354px;}
.ls9{letter-spacing:10.461116px;}
.ls8{letter-spacing:10.461300px;}
.lsf{letter-spacing:11.954850px;}
.ls36{letter-spacing:12.717747px;}
.ls44{letter-spacing:13.362714px;}
.ls43{letter-spacing:13.370759px;}
.ls35{letter-spacing:13.448400px;}
.ls1b{letter-spacing:13.450800px;}
.ls40{letter-spacing:13.454400px;}
.ls4b{letter-spacing:13.463313px;}
.ls34{letter-spacing:13.479812px;}
.ls39{letter-spacing:13.487210px;}
.ls42{letter-spacing:13.562448px;}
.ls46{letter-spacing:13.592739px;}
.ls48{letter-spacing:13.752029px;}
.ls47{letter-spacing:14.438635px;}
.ls31{letter-spacing:14.645022px;}
.ls1c{letter-spacing:14.780839px;}
.ls52{letter-spacing:14.832753px;}
.ls18{letter-spacing:14.944200px;}
.ls3a{letter-spacing:14.962165px;}
.ls21{letter-spacing:15.188342px;}
.ls37{letter-spacing:15.503341px;}
.ls3c{letter-spacing:15.597459px;}
.ls53{letter-spacing:16.676400px;}
.ls57{letter-spacing:17.320988px;}
.ls4f{letter-spacing:18.262165px;}
.ls17{letter-spacing:18.524160px;}
.ls3b{letter-spacing:22.138635px;}
.ls2{letter-spacing:57.415200px;}
.lsa{letter-spacing:62.761200px;}
.lse{letter-spacing:64.321654px;}
.ls6{letter-spacing:72.361200px;}
.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:-117.622397px;}
.ws7f{word-spacing:-57.114000px;}
.ws63{word-spacing:-14.943900px;}
.ws4c{word-spacing:-14.903400px;}
.ws4b{word-spacing:-14.850000px;}
.ws84{word-spacing:-14.729400px;}
.ws7d{word-spacing:-14.449500px;}
.ws80{word-spacing:-14.278500px;}
.ws7e{word-spacing:-14.107500px;}
.ws88{word-spacing:-13.608000px;}
.ws7b{word-spacing:-13.500000px;}
.wsa2{word-spacing:-13.449600px;}
.ws83{word-spacing:-13.230000px;}
.ws68{word-spacing:-12.775500px;}
.ws1d{word-spacing:-11.955150px;}
.ws66{word-spacing:-11.475000px;}
.ws8{word-spacing:-11.357400px;}
.wsf{word-spacing:-10.460700px;}
.ws85{word-spacing:-8.114400px;}
.ws67{word-spacing:-7.038000px;}
.ws4a{word-spacing:-6.930000px;}
.ws8b{word-spacing:-3.347434px;}
.wsad{word-spacing:-3.012710px;}
.ws53{word-spacing:-2.331248px;}
.wsac{word-spacing:-2.313331px;}
.ws39{word-spacing:-2.092146px;}
.ws72{word-spacing:-2.032370px;}
.ws79{word-spacing:-1.912819px;}
.wsd{word-spacing:-1.908367px;}
.wsaa{word-spacing:-1.721549px;}
.ws78{word-spacing:-1.673717px;}
.wse9{word-spacing:-1.613952px;}
.wsd6{word-spacing:-1.560154px;}
.ws27{word-spacing:-1.398758px;}
.ws28{word-spacing:-1.344960px;}
.wsc{word-spacing:-1.322630px;}
.ws5b{word-spacing:-1.315063px;}
.ws70{word-spacing:-1.255288px;}
.ws38{word-spacing:-1.195512px;}
.ws82{word-spacing:-1.129766px;}
.ws7a{word-spacing:-1.075961px;}
.ws6d{word-spacing:-1.016185px;}
.wsb3{word-spacing:-0.968371px;}
.ws8c{word-spacing:-0.777083px;}
.wsb5{word-spacing:-0.753178px;}
.ws5c{word-spacing:-0.717307px;}
.ws9e{word-spacing:-0.657532px;}
.ws6b{word-spacing:-0.645581px;}
.ws2f{word-spacing:-0.597756px;}
.wsa8{word-spacing:-0.591782px;}
.wsdc{word-spacing:-0.537984px;}
.wscf{word-spacing:-0.484186px;}
.wsa1{word-spacing:-0.376589px;}
.ws2b{word-spacing:-0.358654px;}
.ws23{word-spacing:-0.322790px;}
.ws2c{word-spacing:-0.298878px;}
.ws7c{word-spacing:-0.268992px;}
.ws33{word-spacing:-0.239102px;}
.ws73{word-spacing:-0.215194px;}
.ws34{word-spacing:-0.179327px;}
.ws86{word-spacing:-0.161395px;}
.ws43{word-spacing:-0.119551px;}
.ws74{word-spacing:-0.107597px;}
.ws5{word-spacing:-0.059776px;}
.ws26{word-spacing:-0.053798px;}
.ws1c{word-spacing:-0.047821px;}
.ws11{word-spacing:-0.041843px;}
.wsa{word-spacing:-0.004708px;}
.ws3{word-spacing:-0.004374px;}
.ws7{word-spacing:-0.000841px;}
.ws1{word-spacing:0.000000px;}
.ws9{word-spacing:0.000917px;}
.wsab{word-spacing:0.053798px;}
.ws31{word-spacing:0.059776px;}
.wsc9{word-spacing:0.074979px;}
.ws1f{word-spacing:0.107597px;}
.ws2a{word-spacing:0.119551px;}
.wsa6{word-spacing:0.161395px;}
.ws3f{word-spacing:0.179327px;}
.ws12{word-spacing:0.209214px;}
.ws20{word-spacing:0.215194px;}
.ws36{word-spacing:0.239102px;}
.wsd5{word-spacing:0.264479px;}
.ws4d{word-spacing:0.268992px;}
.ws14{word-spacing:0.292900px;}
.ws37{word-spacing:0.298878px;}
.wsbe{word-spacing:0.322790px;}
.ws56{word-spacing:0.358654px;}
.ws25{word-spacing:0.376589px;}
.ws45{word-spacing:0.418429px;}
.ws55{word-spacing:0.478205px;}
.ws8a{word-spacing:0.484186px;}
.ws49{word-spacing:0.537980px;}
.ws92{word-spacing:0.597756px;}
.wsa7{word-spacing:0.645581px;}
.ws8e{word-spacing:0.657532px;}
.ws2e{word-spacing:0.717307px;}
.ws89{word-spacing:0.753178px;}
.ws52{word-spacing:0.836858px;}
.ws75{word-spacing:0.896634px;}
.ws8d{word-spacing:0.956410px;}
.ws6c{word-spacing:0.968371px;}
.ws5f{word-spacing:1.016185px;}
.wse6{word-spacing:1.022170px;}
.ws94{word-spacing:1.075961px;}
.wsa5{word-spacing:1.129766px;}
.ws6f{word-spacing:1.237363px;}
.ws46{word-spacing:1.255288px;}
.wsec{word-spacing:1.291162px;}
.ws61{word-spacing:1.374839px;}
.wse8{word-spacing:1.398758px;}
.ws3e{word-spacing:1.434614px;}
.ws65{word-spacing:1.494390px;}
.ws6e{word-spacing:1.506355px;}
.wsd8{word-spacing:1.560154px;}
.ws64{word-spacing:1.613941px;}
.wsc2{word-spacing:1.667750px;}
.ws8f{word-spacing:1.673717px;}
.ws5d{word-spacing:1.733492px;}
.ws59{word-spacing:1.793268px;}
.wsb8{word-spacing:1.829146px;}
.ws93{word-spacing:1.853044px;}
.ws5a{word-spacing:1.972595px;}
.ws13{word-spacing:2.008454px;}
.wsb6{word-spacing:2.044339px;}
.ws4f{word-spacing:2.092146px;}
.wsc4{word-spacing:2.151936px;}
.wsd4{word-spacing:2.205734px;}
.wsaf{word-spacing:2.259533px;}
.ws32{word-spacing:2.510575px;}
.ws50{word-spacing:2.570351px;}
.ws87{word-spacing:2.851315px;}
.ws2d{word-spacing:2.869229px;}
.ws1e{word-spacing:2.869236px;}
.ws44{word-spacing:2.929004px;}
.ws57{word-spacing:2.988780px;}
.wsef{word-spacing:3.066509px;}
.ws51{word-spacing:3.108331px;}
.wsbc{word-spacing:3.227904px;}
.wsbf{word-spacing:3.227933px;}
.wsb1{word-spacing:3.228000px;}
.ws30{word-spacing:3.347434px;}
.wseb{word-spacing:3.389299px;}
.ws96{word-spacing:3.407209px;}
.ws21{word-spacing:3.443098px;}
.ws90{word-spacing:3.526760px;}
.ws29{word-spacing:3.586536px;}
.wsc6{word-spacing:3.604493px;}
.wse0{word-spacing:3.658291px;}
.ws9f{word-spacing:3.706087px;}
.wsc1{word-spacing:3.712090px;}
.ws6a{word-spacing:3.765888px;}
.ws24{word-spacing:3.819686px;}
.wsf1{word-spacing:3.873485px;}
.ws97{word-spacing:3.885414px;}
.ws58{word-spacing:3.945190px;}
.ws62{word-spacing:4.004965px;}
.ws69{word-spacing:4.142477px;}
.ws3b{word-spacing:4.184292px;}
.ws42{word-spacing:4.303843px;}
.ws81{word-spacing:4.465267px;}
.wsda{word-spacing:4.519066px;}
.ws41{word-spacing:4.602721px;}
.ws3a{word-spacing:4.722272px;}
.wse2{word-spacing:4.788058px;}
.ws22{word-spacing:4.841856px;}
.wsae{word-spacing:4.949453px;}
.ws60{word-spacing:5.021150px;}
.wse5{word-spacing:5.218445px;}
.ws91{word-spacing:5.320028px;}
.ws71{word-spacing:5.499355px;}
.wsa9{word-spacing:5.541235px;}
.ws5e{word-spacing:5.618906px;}
.ws77{word-spacing:5.798233px;}
.ws1a{word-spacing:6.067206px;}
.ws1b{word-spacing:6.150892px;}
.ws9b{word-spacing:6.276438px;}
.wse4{word-spacing:6.348211px;}
.ws99{word-spacing:6.933970px;}
.ws9c{word-spacing:6.993745px;}
.ws48{word-spacing:7.173072px;}
.wscc{word-spacing:7.370381px;}
.ws3d{word-spacing:8.009930px;}
.ws18{word-spacing:8.661460px;}
.wscb{word-spacing:8.876736px;}
.wsa4{word-spacing:9.629914px;}
.ws3c{word-spacing:10.102076px;}
.wsa3{word-spacing:10.114099px;}
.ws10{word-spacing:10.418857px;}
.ws35{word-spacing:11.909197px;}
.wsd1{word-spacing:13.288205px;}
.wsdd{word-spacing:13.342003px;}
.wsdb{word-spacing:13.384138px;}
.wsbd{word-spacing:13.386720px;}
.wsea{word-spacing:13.388083px;}
.wsd7{word-spacing:13.388342px;}
.wsc7{word-spacing:13.390426px;}
.wsc0{word-spacing:13.391318px;}
.wsd9{word-spacing:13.392336px;}
.wsde{word-spacing:13.393008px;}
.wsdf{word-spacing:13.394342px;}
.wsb0{word-spacing:13.395802px;}
.wsca{word-spacing:13.449600px;}
.wsc8{word-spacing:13.503398px;}
.wsd2{word-spacing:13.557197px;}
.wse7{word-spacing:14.471770px;}
.wsed{word-spacing:14.633165px;}
.ws98{word-spacing:14.704798px;}
.ws76{word-spacing:14.764573px;}
.ws47{word-spacing:14.824349px;}
.ws40{word-spacing:14.884124px;}
.wsa0{word-spacing:14.943900px;}
.wsc3{word-spacing:15.063552px;}
.ws95{word-spacing:15.203641px;}
.ws54{word-spacing:15.362329px;}
.wse{word-spacing:15.483541px;}
.ws9d{word-spacing:15.780758px;}
.ws15{word-spacing:16.142252px;}
.ws16{word-spacing:16.151321px;}
.wsf0{word-spacing:16.408512px;}
.wsb4{word-spacing:16.516109px;}
.wsce{word-spacing:16.569907px;}
.wse3{word-spacing:16.619683px;}
.wsd0{word-spacing:16.619712px;}
.wsee{word-spacing:16.620912px;}
.wsc5{word-spacing:16.621373px;}
.wsba{word-spacing:16.623475px;}
.wsb2{word-spacing:16.623706px;}
.wscd{word-spacing:16.838899px;}
.wsb9{word-spacing:16.946496px;}
.ws17{word-spacing:17.699504px;}
.ws4e{word-spacing:18.470660px;}
.wsd3{word-spacing:19.313626px;}
.wsbb{word-spacing:20.604787px;}
.ws9a{word-spacing:21.160562px;}
.wsb7{word-spacing:21.842150px;}
.ws2{word-spacing:26.791603px;}
.ws19{word-spacing:27.448877px;}
.wse1{word-spacing:28.459354px;}
.wsb{word-spacing:40.042186px;}
.ws6{word-spacing:46.627738px;}
.ws4{word-spacing:46.633738px;}
._2b{margin-left:-19.974408px;}
._3{margin-left:-11.943245px;}
._2{margin-left:-7.967318px;}
._1d{margin-left:-6.933970px;}
._1{margin-left:-5.917824px;}
._23{margin-left:-4.895654px;}
._8{margin-left:-3.852283px;}
._6{margin-left:-2.297896px;}
._0{margin-left:-1.279388px;}
._7{width:1.091170px;}
._4{width:3.002728px;}
._5{width:4.077583px;}
._1b{width:5.175707px;}
._1a{width:6.252480px;}
._1c{width:7.409228px;}
._18{width:9.138240px;}
._19{width:10.236720px;}
._9{width:13.056984px;}
._b{width:14.270178px;}
._e{width:16.085722px;}
._f{width:17.511070px;}
._10{width:19.421222px;}
._11{width:21.220338px;}
._14{width:22.356114px;}
._16{width:23.432035px;}
._29{width:24.931843px;}
._a{width:25.946136px;}
._20{width:27.959733px;}
._22{width:29.340568px;}
._c{width:32.637384px;}
._1e{width:34.395070px;}
._21{width:35.506706px;}
._28{width:39.930101px;}
._15{width:43.098208px;}
._d{width:56.810873px;}
._2c{width:61.868160px;}
._2a{width:88.767360px;}
._12{width:1017.531923px;}
._1f{width:1847.145464px;}
._24{width:2064.585068px;}
._25{width:2106.179349px;}
._27{width:2149.184870px;}
._17{width:2173.304870px;}
._26{width:2537.668259px;}
._13{width:2561.578259px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(144,38,54);}
.fs12{font-size:28.152000px;}
.fs19{font-size:32.457600px;}
.fs7{font-size:35.865600px;}
.fsf{font-size:40.698000px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs14{font-size:45.486000px;}
.fs11{font-size:45.900000px;}
.fs16{font-size:46.922400px;}
.fs4{font-size:47.236800px;}
.fse{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fsb{font-size:47.880000px;}
.fs10{font-size:51.102000px;}
.fs18{font-size:52.920000px;}
.fs9{font-size:53.798400px;}
.fsd{font-size:54.000000px;}
.fs13{font-size:56.058000px;}
.fs15{font-size:57.114000px;}
.fs17{font-size:58.917600px;}
.fs1{font-size:59.775600px;}
.fsc{font-size:60.120000px;}
.fsa{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.yed{bottom:-570.613500px;}
.y85{bottom:-535.353000px;}
.yf8{bottom:-495.031500px;}
.y18d{bottom:-469.626780px;}
.y9b{bottom:-451.473000px;}
.y9a{bottom:-432.303000px;}
.y99{bottom:-413.043000px;}
.y1aa{bottom:-402.891000px;}
.y98{bottom:-393.783000px;}
.y97{bottom:-374.613000px;}
.y96{bottom:-355.353000px;}
.y1bc{bottom:-338.901000px;}
.y95{bottom:-336.153000px;}
.y1bb{bottom:-319.641000px;}
.y94{bottom:-312.393000px;}
.y1ba{bottom:-300.381000px;}
.y1b9{bottom:-281.211000px;}
.y93{bottom:-275.133000px;}
.y1b8{bottom:-261.951000px;}
.y92{bottom:-255.963000px;}
.y1b7{bottom:-242.691000px;}
.y91{bottom:-236.703000px;}
.y1b6{bottom:-223.521000px;}
.y90{bottom:-217.443000px;}
.y1b5{bottom:-204.231000px;}
.y8f{bottom:-198.273000px;}
.y1b4{bottom:-185.061000px;}
.y8e{bottom:-179.013000px;}
.y121{bottom:-170.921400px;}
.y1b3{bottom:-165.801000px;}
.y157{bottom:-165.367500px;}
.y8d{bottom:-159.843000px;}
.y1b2{bottom:-146.541000px;}
.y8c{bottom:-140.583000px;}
.yf7{bottom:-136.833000px;}
.y1b1{bottom:-127.371000px;}
.y8b{bottom:-121.323000px;}
.yf6{bottom:-120.462000px;}
.yf5{bottom:-104.091000px;}
.y1b0{bottom:-103.521000px;}
.y8a{bottom:-102.153000px;}
.y16a{bottom:-92.036047px;}
.y15c{bottom:-90.577500px;}
.y105{bottom:-86.157743px;}
.y1a1{bottom:-83.104980px;}
.y89{bottom:-78.393000px;}
.y15b{bottom:-73.207500px;}
.y126{bottom:-72.924900px;}
.yf4{bottom:-72.879000px;}
.y1af{bottom:-66.891000px;}
.y1a0{bottom:-66.170580px;}
.yf3{bottom:-58.165500px;}
.y125{bottom:-58.160400px;}
.y15a{bottom:-55.837500px;}
.y1ae{bottom:-49.521000px;}
.y19f{bottom:-49.147980px;}
.yf2{bottom:-43.477500px;}
.y124{bottom:-43.395900px;}
.y88{bottom:-41.673000px;}
.y159{bottom:-38.557500px;}
.y1ad{bottom:-32.151000px;}
.y19e{bottom:-32.125380px;}
.y123{bottom:-28.707900px;}
.yf1{bottom:-28.636500px;}
.y87{bottom:-24.303000px;}
.y1ac{bottom:-14.871000px;}
.y110{bottom:-10.575742px;}
.y19d{bottom:-10.163580px;}
.yf0{bottom:-9.588000px;}
.y158{bottom:-7.057500px;}
.y122{bottom:-2.825400px;}
.y86{bottom:-1.803000px;}
.y0{bottom:0.000000px;}
.y15e{bottom:3.150000px;}
.yb{bottom:3.425340px;}
.y183{bottom:6.117953px;}
.y1ab{bottom:7.539000px;}
.y12c{bottom:7.624500px;}
.y162{bottom:9.480000px;}
.y160{bottom:9.600000px;}
.y2{bottom:13.800505px;}
.ya{bottom:14.151273px;}
.y128{bottom:14.815500px;}
.y12a{bottom:15.019500px;}
.y50{bottom:31.890000px;}
.y118{bottom:93.435000px;}
.y27{bottom:102.823500px;}
.y4f{bottom:103.621500px;}
.y1d7{bottom:106.695000px;}
.y117{bottom:112.264500px;}
.y1f5{bottom:114.070500px;}
.y1a6{bottom:116.491500px;}
.y1cb{bottom:117.210000px;}
.y166{bottom:118.852500px;}
.y26{bottom:120.711000px;}
.y262{bottom:120.817500px;}
.y130{bottom:121.995000px;}
.y4e{bottom:122.449500px;}
.ye9{bottom:123.732000px;}
.y22d{bottom:124.269000px;}
.yb3{bottom:125.473500px;}
.y1d6{bottom:125.524500px;}
.y116{bottom:131.094000px;}
.y1f4{bottom:131.644500px;}
.y1a5{bottom:135.724500px;}
.y1ca{bottom:136.039500px;}
.y261{bottom:138.078000px;}
.y165{bottom:138.085500px;}
.y25{bottom:138.600000px;}
.y12f{bottom:141.228000px;}
.y4d{bottom:141.279000px;}
.y22c{bottom:141.529500px;}
.ye8{bottom:142.561500px;}
.yb2{bottom:144.303000px;}
.y1d5{bottom:144.354000px;}
.y115{bottom:149.923500px;}
.y1c9{bottom:154.869000px;}
.y1a3{bottom:154.957500px;}
.y260{bottom:155.338500px;}
.y24{bottom:156.487500px;}
.y164{bottom:157.318500px;}
.y1f3{bottom:158.185500px;}
.y22b{bottom:158.790000px;}
.y1a4{bottom:159.838500px;}
.y4c{bottom:160.108500px;}
.y12e{bottom:160.461000px;}
.ye6{bottom:161.391000px;}
.yb1{bottom:163.131000px;}
.y1d4{bottom:163.183500px;}
.ye7{bottom:166.815000px;}
.y114{bottom:168.753000px;}
.y25f{bottom:172.599000px;}
.y1c8{bottom:173.698500px;}
.y1a2{bottom:174.190500px;}
.y23{bottom:174.375000px;}
.y22a{bottom:176.050500px;}
.y163{bottom:176.550000px;}
.y4b{bottom:178.938000px;}
.y12d{bottom:179.692500px;}
.yb0{bottom:181.960500px;}
.y1d3{bottom:182.013000px;}
.ye5{bottom:184.702500px;}
.y1f2{bottom:184.726500px;}
.y113{bottom:187.582500px;}
.y25e{bottom:189.858000px;}
.y22{bottom:192.264000px;}
.y1c7{bottom:192.528000px;}
.y229{bottom:193.311000px;}
.y18a{bottom:196.618500px;}
.y4a{bottom:197.767500px;}
.y154{bottom:198.979500px;}
.yaf{bottom:200.790000px;}
.y1d2{bottom:200.842500px;}
.y11e{bottom:202.122000px;}
.y1f1{bottom:202.300500px;}
.y25d{bottom:207.118500px;}
.y21{bottom:210.151500px;}
.y228{bottom:210.571500px;}
.y1c6{bottom:211.357500px;}
.y49{bottom:216.597000px;}
.ye4{bottom:218.326500px;}
.yae{bottom:219.619500px;}
.y1d1{bottom:219.672000px;}
.y1f0{bottom:219.874500px;}
.y112{bottom:221.148000px;}
.y25c{bottom:224.379000px;}
.y227{bottom:227.832000px;}
.y20{bottom:228.039000px;}
.y1c5{bottom:230.187000px;}
.y48{bottom:235.426500px;}
.ye3{bottom:237.156000px;}
.y1ef{bottom:237.448500px;}
.yad{bottom:238.449000px;}
.y1d0{bottom:238.501500px;}
.y81{bottom:239.380500px;}
.y111{bottom:240.381000px;}
.y25b{bottom:241.639500px;}
.y226{bottom:245.092500px;}
.y1c4{bottom:249.016500px;}
.y47{bottom:254.256000px;}
.y1ee{bottom:255.022500px;}
.ye2{bottom:255.985500px;}
.y1cf{bottom:257.331000px;}
.y80{bottom:258.210000px;}
.y25a{bottom:258.900000px;}
.yac{bottom:261.762000px;}
.y225{bottom:262.351500px;}
.y102{bottom:262.810117px;}
.y1c3{bottom:267.846000px;}
.y1ed{bottom:272.596500px;}
.y46{bottom:273.085500px;}
.ye1{bottom:274.815000px;}
.y1ce{bottom:276.160500px;}
.y7f{bottom:277.039500px;}
.y224{bottom:279.612000px;}
.y1c2{bottom:286.675500px;}
.y1ec{bottom:290.170500px;}
.y45{bottom:291.915000px;}
.y259{bottom:293.421000px;}
.ye0{bottom:293.644500px;}
.y1cd{bottom:294.990000px;}
.yab{bottom:295.386000px;}
.y7e{bottom:295.869000px;}
.y223{bottom:296.872500px;}
.y1f{bottom:307.299000px;}
.y1eb{bottom:307.744500px;}
.y1c1{bottom:309.987000px;}
.y258{bottom:310.681500px;}
.ydf{bottom:312.474000px;}
.y153{bottom:313.819500px;}
.y222{bottom:314.133000px;}
.yaa{bottom:314.215500px;}
.y7d{bottom:314.698500px;}
.y44{bottom:315.228000px;}
.y19c{bottom:318.146220px;}
.y1e{bottom:325.186500px;}
.y1ea{bottom:325.318500px;}
.y257{bottom:327.940500px;}
.yef{bottom:330.633000px;}
.yde{bottom:331.303500px;}
.y221{bottom:331.393500px;}
.y152{bottom:332.649000px;}
.ya9{bottom:333.045000px;}
.y7c{bottom:333.528000px;}
.y19b{bottom:337.021020px;}
.y1c0{bottom:340.414500px;}
.y1e9{bottom:342.892500px;}
.y1d{bottom:343.074000px;}
.y256{bottom:345.201000px;}
.yee{bottom:347.004000px;}
.y10f{bottom:347.622757px;}
.y220{bottom:348.654000px;}
.ydd{bottom:350.133000px;}
.y151{bottom:351.478500px;}
.ya7{bottom:351.874500px;}
.y7b{bottom:352.356000px;}
.y19a{bottom:355.895820px;}
.ya8{bottom:357.298500px;}
.y1bf{bottom:359.647500px;}
.y1e8{bottom:360.466500px;}
.y1c{bottom:360.963000px;}
.y255{bottom:362.461500px;}
.y10e{bottom:363.993758px;}
.y21f{bottom:365.914500px;}
.y150{bottom:370.308000px;}
.ya6{bottom:370.704000px;}
.y7a{bottom:371.185500px;}
.ydc{bottom:373.446000px;}
.y199{bottom:374.682420px;}
.y1be{bottom:378.880500px;}
.y254{bottom:379.722000px;}
.y129{bottom:380.193600px;}
.y10d{bottom:380.364758px;}
.y21e{bottom:383.175000px;}
.y1e7{bottom:387.007500px;}
.y14f{bottom:389.137500px;}
.ya5{bottom:389.533500px;}
.y79{bottom:390.015000px;}
.y43{bottom:390.378000px;}
.yec{bottom:393.363000px;}
.y198{bottom:393.557220px;}
.y253{bottom:396.982500px;}
.y1bd{bottom:398.113500px;}
.y1b{bottom:399.024000px;}
.y21d{bottom:400.434000px;}
.yeb{bottom:401.701500px;}
.y1e6{bottom:404.581500px;}
.ydb{bottom:407.070000px;}
.y14e{bottom:407.967000px;}
.ya3{bottom:408.363000px;}
.y78{bottom:408.844500px;}
.y10c{bottom:411.576758px;}
.y197{bottom:412.343820px;}
.ya4{bottom:413.787000px;}
.y252{bottom:414.243000px;}
.y1a{bottom:416.913000px;}
.y21c{bottom:417.694500px;}
.y1a7{bottom:420.543000px;}
.yd9{bottom:425.899500px;}
.y10b{bottom:426.290257px;}
.y14d{bottom:426.796500px;}
.ya1{bottom:427.192500px;}
.y76{bottom:427.674000px;}
.y42{bottom:427.767000px;}
.y1e5{bottom:431.122500px;}
.y196{bottom:431.218620px;}
.yda{bottom:431.323500px;}
.y251{bottom:431.503500px;}
.ya2{bottom:432.616500px;}
.y77{bottom:433.099500px;}
.y19{bottom:434.800500px;}
.y21b{bottom:434.955000px;}
.y10a{bottom:440.978257px;}
.yd7{bottom:444.729000px;}
.y14c{bottom:445.624500px;}
.y1cc{bottom:445.626000px;}
.ya0{bottom:446.022000px;}
.y75{bottom:446.503500px;}
.y41{bottom:447.225000px;}
.y1e4{bottom:448.696500px;}
.y250{bottom:448.764000px;}
.y195{bottom:450.093420px;}
.yd8{bottom:450.153000px;}
.y21a{bottom:452.215500px;}
.y109{bottom:455.819257px;}
.yd6{bottom:463.558500px;}
.y14b{bottom:464.454000px;}
.y9f{bottom:464.851500px;}
.y74{bottom:465.333000px;}
.y24f{bottom:466.024500px;}
.y1e3{bottom:466.270500px;}
.y40{bottom:466.681500px;}
.y194{bottom:468.880020px;}
.y219{bottom:469.476000px;}
.y18{bottom:470.622000px;}
.y108{bottom:474.867758px;}
.yd5{bottom:482.388000px;}
.y14a{bottom:483.283500px;}
.y1e2{bottom:483.844500px;}
.y73{bottom:484.162500px;}
.y3f{bottom:486.139500px;}
.y218{bottom:486.736500px;}
.y9e{bottom:488.163000px;}
.y17{bottom:488.509500px;}
.y161{bottom:489.102000px;}
.y24e{bottom:500.544000px;}
.yd4{bottom:501.217500px;}
.y1e1{bottom:501.418500px;}
.y149{bottom:502.113000px;}
.y72{bottom:502.992000px;}
.y217{bottom:503.997000px;}
.y189{bottom:504.054000px;}
.y193{bottom:504.953820px;}
.y3e{bottom:505.596000px;}
.y182{bottom:513.446453px;}
.y24d{bottom:517.804500px;}
.y1e0{bottom:518.992500px;}
.yd3{bottom:520.047000px;}
.y148{bottom:520.942500px;}
.y216{bottom:521.257500px;}
.y9d{bottom:521.580000px;}
.y70{bottom:521.821500px;}
.y192{bottom:521.976420px;}
.y188{bottom:523.287000px;}
.y16{bottom:524.329500px;}
.y3d{bottom:525.052500px;}
.y71{bottom:527.247000px;}
.y181{bottom:531.657952px;}
.y24c{bottom:535.065000px;}
.y1df{bottom:536.566500px;}
.y215{bottom:538.518000px;}
.yd2{bottom:538.876500px;}
.y191{bottom:538.940220px;}
.y147{bottom:539.772000px;}
.y6f{bottom:540.651000px;}
.y9c{bottom:540.813000px;}
.y15{bottom:542.218500px;}
.y187{bottom:542.520000px;}
.y3c{bottom:544.510500px;}
.y180{bottom:549.954952px;}
.y24b{bottom:552.325500px;}
.y1de{bottom:554.142000px;}
.y214{bottom:555.777000px;}
.y190{bottom:555.874620px;}
.yd1{bottom:557.706000px;}
.y146{bottom:558.601500px;}
.y6e{bottom:559.480500px;}
.y14{bottom:560.106000px;}
.y186{bottom:561.753000px;}
.y82{bottom:563.242500px;}
.y3b{bottom:563.967000px;}
.y17f{bottom:568.251953px;}
.y24a{bottom:569.586000px;}
.y18f{bottom:572.809020px;}
.y213{bottom:573.037500px;}
.yd0{bottom:576.535500px;}
.y145{bottom:577.431000px;}
.y13{bottom:577.993500px;}
.y6d{bottom:578.310000px;}
.y1dd{bottom:580.681500px;}
.y185{bottom:580.986000px;}
.y3a{bottom:583.423500px;}
.y17e{bottom:586.463452px;}
.y249{bottom:586.846500px;}
.y18e{bottom:589.831620px;}
.y212{bottom:590.298000px;}
.y127{bottom:591.563100px;}
.ycf{bottom:595.365000px;}
.y12{bottom:595.882500px;}
.y144{bottom:596.260500px;}
.y6c{bottom:597.139500px;}
.y1dc{bottom:598.726500px;}
.y84{bottom:598.737000px;}
.y184{bottom:600.219000px;}
.y39{bottom:602.881500px;}
.y248{bottom:604.107000px;}
.y17d{bottom:604.760452px;}
.y211{bottom:607.558500px;}
.y83{bottom:608.547000px;}
.y101{bottom:609.840000px;}
.y11{bottom:613.770000px;}
.yce{bottom:614.194500px;}
.y143{bottom:615.090000px;}
.y6b{bottom:615.969000px;}
.y1db{bottom:616.771500px;}
.y247{bottom:621.366000px;}
.y38{bottom:622.338000px;}
.y167{bottom:622.647997px;}
.y17c{bottom:622.971953px;}
.y210{bottom:624.819000px;}
.y100{bottom:628.669500px;}
.y10{bottom:631.657500px;}
.ycd{bottom:633.022500px;}
.y142{bottom:633.919500px;}
.y6a{bottom:634.798500px;}
.y246{bottom:638.626500px;}
.y17b{bottom:641.268953px;}
.y18c{bottom:641.781420px;}
.y37{bottom:641.796000px;}
.y20f{bottom:642.079500px;}
.yff{bottom:647.499000px;}
.yf{bottom:649.546500px;}
.y18b{bottom:651.395220px;}
.ycc{bottom:651.852000px;}
.y141{bottom:652.749000px;}
.y69{bottom:653.628000px;}
.y245{bottom:655.887000px;}
.y20e{bottom:659.340000px;}
.y17a{bottom:659.565952px;}
.y36{bottom:661.252500px;}
.ye{bottom:667.434000px;}
.ycb{bottom:670.681500px;}
.y140{bottom:671.578500px;}
.y68{bottom:672.457500px;}
.y244{bottom:673.147500px;}
.y20d{bottom:676.600500px;}
.y179{bottom:677.777452px;}
.y35{bottom:680.709000px;}
.yfe{bottom:681.064500px;}
.yd{bottom:685.321500px;}
.yca{bottom:689.511000px;}
.y13f{bottom:690.408000px;}
.y67{bottom:691.287000px;}
.y20b{bottom:693.859500px;}
.y20c{bottom:693.861000px;}
.y178{bottom:696.074453px;}
.yfc{bottom:700.297500px;}
.yc{bottom:703.210500px;}
.yfd{bottom:705.178500px;}
.y243{bottom:707.668500px;}
.yc8{bottom:708.340500px;}
.y13e{bottom:709.237500px;}
.y66{bottom:710.116500px;}
.y20a{bottom:711.120000px;}
.yc9{bottom:713.766000px;}
.y177{bottom:714.285952px;}
.y34{bottom:716.236500px;}
.yfa{bottom:719.530500px;}
.yfb{bottom:724.411500px;}
.y242{bottom:724.929000px;}
.y9{bottom:725.581464px;}
.yc7{bottom:727.170000px;}
.y13d{bottom:728.067000px;}
.y209{bottom:728.380500px;}
.y65{bottom:728.946000px;}
.y1a9{bottom:731.199000px;}
.y33{bottom:732.376500px;}
.y176{bottom:732.582952px;}
.yf9{bottom:738.762000px;}
.y1a8{bottom:741.009000px;}
.y241{bottom:742.189500px;}
.y208{bottom:745.641000px;}
.yc6{bottom:745.999500px;}
.y13c{bottom:746.896500px;}
.y64{bottom:747.775500px;}
.y32{bottom:748.515000px;}
.y175{bottom:750.879952px;}
.y240{bottom:759.450000px;}
.yea{bottom:761.191500px;}
.y15f{bottom:761.622000px;}
.y207{bottom:762.901500px;}
.yc5{bottom:764.829000px;}
.y13b{bottom:765.726000px;}
.y31{bottom:768.994500px;}
.y174{bottom:769.091453px;}
.y63{bottom:771.087000px;}
.y23f{bottom:776.709000px;}
.y206{bottom:780.162000px;}
.y30{bottom:780.795000px;}
.yc3{bottom:783.658500px;}
.y13a{bottom:784.555500px;}
.y173{bottom:787.388453px;}
.yc4{bottom:789.084000px;}
.y1da{bottom:789.979500px;}
.y62{bottom:791.262000px;}
.y120{bottom:793.055100px;}
.y23e{bottom:793.969500px;}
.y2f{bottom:796.933500px;}
.y205{bottom:797.422500px;}
.y11f{bottom:801.393600px;}
.yc2{bottom:802.488000px;}
.y139{bottom:803.385000px;}
.y172{bottom:805.685452px;}
.y1d9{bottom:808.809000px;}
.y23d{bottom:811.230000px;}
.y204{bottom:814.683000px;}
.y107{bottom:815.088757px;}
.y2e{bottom:817.413000px;}
.yc1{bottom:821.317500px;}
.y138{bottom:822.214500px;}
.y171{bottom:823.896952px;}
.y61{bottom:824.886000px;}
.y23c{bottom:828.490500px;}
.y2d{bottom:829.213500px;}
.y106{bottom:831.459758px;}
.y203{bottom:831.943500px;}
.yc0{bottom:840.147000px;}
.y137{bottom:841.044000px;}
.y170{bottom:842.193953px;}
.y60{bottom:843.715500px;}
.y2c{bottom:845.353500px;}
.y23b{bottom:845.751000px;}
.y1d8{bottom:846.468000px;}
.y202{bottom:849.202500px;}
.ybf{bottom:858.976500px;}
.y12b{bottom:859.389600px;}
.y136{bottom:859.873500px;}
.y16f{bottom:860.405452px;}
.y5f{bottom:862.545000px;}
.y23a{bottom:863.011500px;}
.y2b{bottom:865.831500px;}
.y201{bottom:866.463000px;}
.y2a{bottom:877.632000px;}
.ybe{bottom:877.806000px;}
.y104{bottom:877.818757px;}
.y16e{bottom:878.702453px;}
.y135{bottom:878.703000px;}
.y239{bottom:880.272000px;}
.y5e{bottom:881.374500px;}
.y200{bottom:883.723500px;}
.y103{bottom:886.157258px;}
.y29{bottom:893.772000px;}
.ybd{bottom:896.635500px;}
.y16d{bottom:897.027952px;}
.y134{bottom:897.532500px;}
.y5d{bottom:900.204000px;}
.y1ff{bottom:900.984000px;}
.y28{bottom:914.251500px;}
.y238{bottom:914.793000px;}
.y16c{bottom:915.239452px;}
.y133{bottom:916.362000px;}
.y1fe{bottom:918.244500px;}
.y5c{bottom:919.033500px;}
.ybc{bottom:919.948500px;}
.y237{bottom:932.052000px;}
.y16b{bottom:933.536452px;}
.y132{bottom:935.191500px;}
.y1fd{bottom:935.505000px;}
.y5b{bottom:937.863000px;}
.y236{bottom:949.312500px;}
.y8{bottom:951.385500px;}
.y1fc{bottom:952.765500px;}
.ybb{bottom:953.572500px;}
.y131{bottom:954.021000px;}
.y5a{bottom:956.692500px;}
.y235{bottom:966.573000px;}
.y156{bottom:968.722500px;}
.y1fb{bottom:970.026000px;}
.y7{bottom:970.215000px;}
.yba{bottom:972.402000px;}
.y11d{bottom:972.849000px;}
.y59{bottom:975.522000px;}
.y155{bottom:978.532500px;}
.y234{bottom:983.833500px;}
.y169{bottom:985.349452px;}
.yb9{bottom:991.231500px;}
.y11c{bottom:991.678500px;}
.y1fa{bottom:991.768500px;}
.y58{bottom:994.351500px;}
.y168{bottom:994.668952px;}
.y233{bottom:1001.094000px;}
.yb8{bottom:1010.061000px;}
.y11b{bottom:1010.508000px;}
.y6{bottom:1012.954500px;}
.y57{bottom:1013.181000px;}
.y232{bottom:1018.354500px;}
.y1f9{bottom:1025.392500px;}
.y11a{bottom:1029.337500px;}
.y56{bottom:1032.010500px;}
.yb7{bottom:1033.372500px;}
.y231{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.y119{bottom:1048.167000px;}
.y55{bottom:1050.840000px;}
.y1f8{bottom:1051.933500px;}
.y230{bottom:1052.875500px;}
.yb6{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y1f7{bottom:1069.507500px;}
.y54{bottom:1069.669500px;}
.y22f{bottom:1070.134500px;}
.y15d{bottom:1081.932000px;}
.yb5{bottom:1085.826000px;}
.y1f6{bottom:1087.081500px;}
.y22e{bottom:1087.395000px;}
.y53{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.yb4{bottom:1104.655500px;}
.y52{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y51{bottom:1173.397500px;}
.h2f{height:20.970000px;}
.h2d{height:22.720500px;}
.h3b{height:25.070054px;}
.h8{height:25.508090px;}
.h10{height:26.110157px;}
.he{height:26.296208px;}
.h11{height:26.302208px;}
.h32{height:27.360000px;}
.h31{height:27.450000px;}
.h1b{height:27.855430px;}
.h2a{height:29.988000px;}
.h21{height:30.106714px;}
.h2c{height:30.141000px;}
.hb{height:30.461558px;}
.hc{height:30.670772px;}
.h1a{height:33.072749px;}
.ha{height:33.112997px;}
.h9{height:34.199443px;}
.hf{height:34.813397px;}
.h18{height:35.052500px;}
.h27{height:35.652888px;}
.h2b{height:37.478127px;}
.h24{height:37.637701px;}
.hd{height:38.202476px;}
.h13{height:38.896243px;}
.h14{height:39.165235px;}
.h15{height:39.434227px;}
.h19{height:39.614278px;}
.h34{height:42.065666px;}
.h26{height:42.448535px;}
.h16{height:43.217759px;}
.h37{height:43.394055px;}
.h17{height:43.516637px;}
.h12{height:43.660208px;}
.h4{height:43.815515px;}
.h20{height:44.062559px;}
.h30{height:44.091914px;}
.h1d{height:44.279648px;}
.h25{height:47.259369px;}
.h39{height:48.940664px;}
.h3c{height:49.117939px;}
.h1f{height:49.939453px;}
.h2{height:51.025140px;}
.h22{height:51.808714px;}
.h35{height:52.819295px;}
.h38{height:54.487273px;}
.h6{height:54.541601px;}
.h7{height:54.547601px;}
.h1e{height:55.599258px;}
.h5{height:77.792486px;}
.h3{height:102.503837px;}
.h36{height:282.240000px;}
.h23{height:300.991800px;}
.h28{height:323.386283px;}
.h33{height:496.954927px;}
.h1c{height:556.359000px;}
.h3a{height:699.058500px;}
.h29{height:747.082425px;}
.h2e{height:920.622000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wa{width:29.689777px;}
.w8{width:30.760778px;}
.wd{width:37.710000px;}
.w9{width:38.716778px;}
.wc{width:48.510000px;}
.w3{width:75.364879px;}
.w2{width:166.304160px;}
.w6{width:442.725900px;}
.w7{width:445.979828px;}
.w5{width:453.991800px;}
.wf{width:478.523220px;}
.we{width:485.762550px;}
.w10{width:581.239500px;}
.wb{width:593.082000px;}
.w4{width:730.376850px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x82{left:-199.490760px;}
.x73{left:-196.012500px;}
.x88{left:-185.833500px;}
.x7a{left:-179.940450px;}
.x5f{left:-178.593075px;}
.x67{left:-176.090250px;}
.x3f{left:-26.220150px;}
.x60{left:-12.333075px;}
.x68{left:-9.830250px;}
.x83{left:-7.802760px;}
.x0{left:0.000000px;}
.x6d{left:3.603278px;}
.x41{left:5.639850px;}
.x89{left:9.766500px;}
.x75{left:10.830000px;}
.x61{left:14.747925px;}
.x69{left:17.250750px;}
.x84{left:23.420040px;}
.x3{left:29.274117px;}
.x7b{left:36.146550px;}
.x8a{left:41.626500px;}
.x1{left:54.000000px;}
.x2{left:57.652455px;}
.x3e{left:81.268650px;}
.x44{left:85.890000px;}
.x45{left:143.125500px;}
.x42{left:169.379850px;}
.x43{left:201.239850px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.x76{left:261.345000px;}
.x74{left:266.115000px;}
.x5{left:270.754500px;}
.xb7{left:278.308500px;}
.x9{left:282.786000px;}
.x64{left:292.612500px;}
.x38{left:296.710500px;}
.xb0{left:297.802500px;}
.x59{left:299.622000px;}
.xb8{left:303.385500px;}
.x54{left:307.963500px;}
.x7{left:309.454500px;}
.xba{left:310.747500px;}
.x39{left:312.823500px;}
.xb1{left:316.558500px;}
.x2c{left:318.093000px;}
.x8{left:320.038500px;}
.x65{left:321.075000px;}
.x46{left:322.984500px;}
.x56{left:325.650000px;}
.x3a{left:328.066500px;}
.x66{left:330.735000px;}
.x2d{left:333.036000px;}
.x9a{left:335.281500px;}
.x3b{left:338.314500px;}
.x30{left:342.774000px;}
.xb9{left:345.960000px;}
.x52{left:348.331500px;}
.x9b{left:350.224500px;}
.x9c{left:353.976000px;}
.x31{left:357.718500px;}
.x53{left:360.622500px;}
.x55{left:363.322500px;}
.xa6{left:365.610000px;}
.x9d{left:368.920500px;}
.xaf{left:372.118500px;}
.xbc{left:373.300500px;}
.x86{left:380.845500px;}
.xa7{left:384.216000px;}
.x8f{left:387.988500px;}
.x87{left:390.186000px;}
.x90{left:396.205500px;}
.xa8{left:399.160500px;}
.x91{left:402.904500px;}
.x92{left:414.108000px;}
.xa9{left:417.765000px;}
.x7c{left:419.104500px;}
.x70{left:424.696500px;}
.x7d{left:428.076000px;}
.x71{left:434.407500px;}
.x1c{left:435.487500px;}
.x63{left:437.430000px;}
.x1d{left:442.960500px;}
.x62{left:444.805425px;}
.x6a{left:447.308250px;}
.x98{left:448.921500px;}
.x28{left:451.303500px;}
.x6c{left:459.925777px;}
.x4d{left:463.167000px;}
.xa{left:464.340000px;}
.x29{left:466.248000px;}
.xb{left:471.811500px;}
.x2a{left:473.869500px;}
.x85{left:480.002040px;}
.x4e{left:481.038000px;}
.x99{left:486.430500px;}
.x2b{left:488.812500px;}
.x12{left:490.473000px;}
.xbb{left:491.586000px;}
.x49{left:493.555500px;}
.xb2{left:495.777000px;}
.x13{left:497.944500px;}
.xb3{left:499.588500px;}
.x80{left:502.921500px;}
.x4a{left:505.846500px;}
.x18{left:508.056000px;}
.x81{left:511.138500px;}
.x19{left:515.527500px;}
.xb5{left:517.122000px;}
.x1a{left:519.249000px;}
.x9e{left:522.733500px;}
.x4b{left:525.702000px;}
.xb6{left:527.329500px;}
.xb4{left:530.742000px;}
.x4c{left:532.509000px;}
.x1b{left:534.192000px;}
.x94{left:535.338000px;}
.x9f{left:537.678000px;}
.xae{left:541.191000px;}
.x4f{left:544.149000px;}
.x95{left:550.282500px;}
.x96{left:553.944000px;}
.x57{left:556.506000px;}
.x50{left:559.092000px;}
.x5c{left:560.314500px;}
.x10{left:561.625500px;}
.x58{left:563.311500px;}
.x11{left:569.098500px;}
.x32{left:573.472500px;}
.x5d{left:575.347500px;}
.x5e{left:585.507000px;}
.x33{left:589.126500px;}
.x20{left:597.790500px;}
.x34{left:603.772500px;}
.x21{left:605.262000px;}
.x22{left:608.923500px;}
.x35{left:613.561500px;}
.x7e{left:615.577500px;}
.x23{left:623.868000px;}
.x7f{left:626.779500px;}
.x93{left:636.013500px;}
.xaa{left:638.316000px;}
.x2e{left:641.203500px;}
.x77{left:646.042500px;}
.x6b{left:649.087500px;}
.x24{left:654.786000px;}
.x2f{left:656.146500px;}
.x97{left:660.691500px;}
.x14{left:663.604500px;}
.x25{left:669.730500px;}
.x15{left:671.076000px;}
.x6e{left:672.115500px;}
.x16{left:678.399000px;}
.x5a{left:680.080500px;}
.x47{left:681.670500px;}
.x27{left:684.954000px;}
.x5b{left:686.506500px;}
.x48{left:688.477500px;}
.xc4{left:690.361500px;}
.xca{left:691.663500px;}
.x17{left:693.342000px;}
.xcc{left:702.240000px;}
.xbf{left:705.039000px;}
.xa5{left:707.583000px;}
.x8b{left:711.931500px;}
.xc2{left:715.488000px;}
.xc5{left:717.261000px;}
.xcb{left:718.563000px;}
.x8c{left:722.394000px;}
.xc6{left:723.439500px;}
.x8d{left:729.220500px;}
.xc0{left:734.437500px;}
.x40{left:736.079850px;}
.xa0{left:737.220000px;}
.x8e{left:740.424000px;}
.xbd{left:749.188500px;}
.xc7{left:750.339000px;}
.xa2{left:752.116500px;}
.xe{left:758.212500px;}
.xa3{left:759.610500px;}
.xc1{left:761.337000px;}
.xc9{left:764.479500px;}
.xf{left:765.684000px;}
.x72{left:767.221500px;}
.xa4{left:774.555000px;}
.xbe{left:776.088000px;}
.xc8{left:777.262500px;}
.x1e{left:780.237000px;}
.x36{left:781.413000px;}
.xab{left:788.683500px;}
.x37{left:790.642500px;}
.xac{left:792.360000px;}
.x1f{left:795.181500px;}
.x78{left:796.561500px;}
.x51{left:800.931000px;}
.x79{left:805.531500px;}
.xad{left:807.304500px;}
.x3c{left:812.622000px;}
.xc3{left:816.201000px;}
.x26{left:817.299000px;}
.xc{left:824.562000px;}
.x3d{left:827.566500px;}
.xd{left:832.033500px;}
.x6f{left:835.722000px;}
.xa1{left:837.717000px;}
@media print{
.v2{vertical-align:-15.434667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:11.424000pt;}
.v4{vertical-align:13.171200pt;}
.v1{vertical-align:19.285333pt;}
.ls14{letter-spacing:-7.200000pt;}
.ls1e{letter-spacing:-1.468800pt;}
.ls15{letter-spacing:-0.160000pt;}
.ls2c{letter-spacing:-0.156800pt;}
.ls2a{letter-spacing:-0.152000pt;}
.ls1f{letter-spacing:-0.136000pt;}
.ls16{letter-spacing:-0.112533pt;}
.ls13{letter-spacing:-0.080000pt;}
.ls2b{letter-spacing:-0.078400pt;}
.ls28{letter-spacing:-0.076000pt;}
.ls1d{letter-spacing:-0.068000pt;}
.ls10{letter-spacing:0.000000pt;}
.ls55{letter-spacing:0.000078pt;}
.ls3e{letter-spacing:0.000260pt;}
.ls32{letter-spacing:0.000540pt;}
.ls56{letter-spacing:0.000585pt;}
.ls41{letter-spacing:0.000711pt;}
.ls51{letter-spacing:0.000921pt;}
.ls4a{letter-spacing:0.001207pt;}
.ls54{letter-spacing:0.001304pt;}
.ls3f{letter-spacing:0.001319pt;}
.ls38{letter-spacing:0.001335pt;}
.ls4c{letter-spacing:0.001512pt;}
.lsd{letter-spacing:0.001718pt;}
.lsb{letter-spacing:0.001735pt;}
.ls0{letter-spacing:0.002014pt;}
.ls45{letter-spacing:0.002212pt;}
.ls50{letter-spacing:0.002262pt;}
.ls3{letter-spacing:0.002422pt;}
.ls3d{letter-spacing:0.002805pt;}
.ls4d{letter-spacing:0.002919pt;}
.ls49{letter-spacing:0.003055pt;}
.lsc{letter-spacing:0.003100pt;}
.ls33{letter-spacing:0.003430pt;}
.ls1{letter-spacing:0.003733pt;}
.ls4e{letter-spacing:0.003793pt;}
.ls2f{letter-spacing:0.016000pt;}
.ls2e{letter-spacing:0.032000pt;}
.ls29{letter-spacing:0.076000pt;}
.ls30{letter-spacing:0.080000pt;}
.ls20{letter-spacing:0.081600pt;}
.ls26{letter-spacing:0.094080pt;}
.ls22{letter-spacing:0.096000pt;}
.ls2d{letter-spacing:0.112000pt;}
.ls24{letter-spacing:0.118053pt;}
.ls19{letter-spacing:0.136000pt;}
.ls23{letter-spacing:0.152000pt;}
.ls25{letter-spacing:0.156800pt;}
.ls12{letter-spacing:0.160000pt;}
.ls27{letter-spacing:0.214293pt;}
.ls11{letter-spacing:1.133683pt;}
.ls7{letter-spacing:1.654338pt;}
.ls1a{letter-spacing:2.516000pt;}
.ls5{letter-spacing:2.657067pt;}
.ls4{letter-spacing:2.665203pt;}
.ls9{letter-spacing:9.298770pt;}
.ls8{letter-spacing:9.298933pt;}
.lsf{letter-spacing:10.626533pt;}
.ls36{letter-spacing:11.304664pt;}
.ls44{letter-spacing:11.877968pt;}
.ls43{letter-spacing:11.885119pt;}
.ls35{letter-spacing:11.954133pt;}
.ls1b{letter-spacing:11.956267pt;}
.ls40{letter-spacing:11.959467pt;}
.ls4b{letter-spacing:11.967389pt;}
.ls34{letter-spacing:11.982055pt;}
.ls39{letter-spacing:11.988631pt;}
.ls42{letter-spacing:12.055510pt;}
.ls46{letter-spacing:12.082434pt;}
.ls48{letter-spacing:12.224026pt;}
.ls47{letter-spacing:12.834342pt;}
.ls31{letter-spacing:13.017797pt;}
.ls1c{letter-spacing:13.138524pt;}
.ls52{letter-spacing:13.184669pt;}
.ls18{letter-spacing:13.283733pt;}
.ls3a{letter-spacing:13.299702pt;}
.ls21{letter-spacing:13.500749pt;}
.ls37{letter-spacing:13.780748pt;}
.ls3c{letter-spacing:13.864408pt;}
.ls53{letter-spacing:14.823467pt;}
.ls57{letter-spacing:15.396434pt;}
.ls4f{letter-spacing:16.233035pt;}
.ls17{letter-spacing:16.465920pt;}
.ls3b{letter-spacing:19.678787pt;}
.ls2{letter-spacing:51.035733pt;}
.lsa{letter-spacing:55.787733pt;}
.lse{letter-spacing:57.174803pt;}
.ls6{letter-spacing:64.321067pt;}
.ws0{word-spacing:-104.553242pt;}
.ws7f{word-spacing:-50.768000pt;}
.ws63{word-spacing:-13.283467pt;}
.ws4c{word-spacing:-13.247467pt;}
.ws4b{word-spacing:-13.200000pt;}
.ws84{word-spacing:-13.092800pt;}
.ws7d{word-spacing:-12.844000pt;}
.ws80{word-spacing:-12.692000pt;}
.ws7e{word-spacing:-12.540000pt;}
.ws88{word-spacing:-12.096000pt;}
.ws7b{word-spacing:-12.000000pt;}
.wsa2{word-spacing:-11.955200pt;}
.ws83{word-spacing:-11.760000pt;}
.ws68{word-spacing:-11.356000pt;}
.ws1d{word-spacing:-10.626800pt;}
.ws66{word-spacing:-10.200000pt;}
.ws8{word-spacing:-10.095467pt;}
.wsf{word-spacing:-9.298400pt;}
.ws85{word-spacing:-7.212800pt;}
.ws67{word-spacing:-6.256000pt;}
.ws4a{word-spacing:-6.160000pt;}
.ws8b{word-spacing:-2.975497pt;}
.wsad{word-spacing:-2.677965pt;}
.ws53{word-spacing:-2.072221pt;}
.wsac{word-spacing:-2.056294pt;}
.ws39{word-spacing:-1.859685pt;}
.ws72{word-spacing:-1.806551pt;}
.ws79{word-spacing:-1.700284pt;}
.wsd{word-spacing:-1.696326pt;}
.wsaa{word-spacing:-1.530266pt;}
.ws78{word-spacing:-1.487748pt;}
.wse9{word-spacing:-1.434624pt;}
.wsd6{word-spacing:-1.386803pt;}
.ws27{word-spacing:-1.243341pt;}
.ws28{word-spacing:-1.195520pt;}
.wsc{word-spacing:-1.175671pt;}
.ws5b{word-spacing:-1.168945pt;}
.ws70{word-spacing:-1.115811pt;}
.ws38{word-spacing:-1.062677pt;}
.ws82{word-spacing:-1.004237pt;}
.ws7a{word-spacing:-0.956410pt;}
.ws6d{word-spacing:-0.903276pt;}
.wsb3{word-spacing:-0.860774pt;}
.ws8c{word-spacing:-0.690740pt;}
.wsb5{word-spacing:-0.669491pt;}
.ws5c{word-spacing:-0.637606pt;}
.ws9e{word-spacing:-0.584473pt;}
.ws6b{word-spacing:-0.573850pt;}
.ws2f{word-spacing:-0.531339pt;}
.wsa8{word-spacing:-0.526029pt;}
.wsdc{word-spacing:-0.478208pt;}
.wscf{word-spacing:-0.430387pt;}
.wsa1{word-spacing:-0.334746pt;}
.ws2b{word-spacing:-0.318803pt;}
.ws23{word-spacing:-0.286925pt;}
.ws2c{word-spacing:-0.265669pt;}
.ws7c{word-spacing:-0.239104pt;}
.ws33{word-spacing:-0.212535pt;}
.ws73{word-spacing:-0.191283pt;}
.ws34{word-spacing:-0.159402pt;}
.ws86{word-spacing:-0.143462pt;}
.ws43{word-spacing:-0.106268pt;}
.ws74{word-spacing:-0.095642pt;}
.ws5{word-spacing:-0.053134pt;}
.ws26{word-spacing:-0.047821pt;}
.ws1c{word-spacing:-0.042507pt;}
.ws11{word-spacing:-0.037194pt;}
.wsa{word-spacing:-0.004185pt;}
.ws3{word-spacing:-0.003888pt;}
.ws7{word-spacing:-0.000748pt;}
.ws1{word-spacing:0.000000pt;}
.ws9{word-spacing:0.000815pt;}
.wsab{word-spacing:0.047821pt;}
.ws31{word-spacing:0.053134pt;}
.wsc9{word-spacing:0.066648pt;}
.ws1f{word-spacing:0.095642pt;}
.ws2a{word-spacing:0.106268pt;}
.wsa6{word-spacing:0.143462pt;}
.ws3f{word-spacing:0.159402pt;}
.ws12{word-spacing:0.185968pt;}
.ws20{word-spacing:0.191283pt;}
.ws36{word-spacing:0.212535pt;}
.wsd5{word-spacing:0.235093pt;}
.ws4d{word-spacing:0.239104pt;}
.ws14{word-spacing:0.260355pt;}
.ws37{word-spacing:0.265669pt;}
.wsbe{word-spacing:0.286925pt;}
.ws56{word-spacing:0.318803pt;}
.ws25{word-spacing:0.334746pt;}
.ws45{word-spacing:0.371937pt;}
.ws55{word-spacing:0.425071pt;}
.ws8a{word-spacing:0.430387pt;}
.ws49{word-spacing:0.478205pt;}
.ws92{word-spacing:0.531339pt;}
.wsa7{word-spacing:0.573850pt;}
.ws8e{word-spacing:0.584473pt;}
.ws2e{word-spacing:0.637606pt;}
.ws89{word-spacing:0.669491pt;}
.ws52{word-spacing:0.743874pt;}
.ws75{word-spacing:0.797008pt;}
.ws8d{word-spacing:0.850142pt;}
.ws6c{word-spacing:0.860774pt;}
.ws5f{word-spacing:0.903276pt;}
.wse6{word-spacing:0.908595pt;}
.ws94{word-spacing:0.956410pt;}
.wsa5{word-spacing:1.004237pt;}
.ws6f{word-spacing:1.099878pt;}
.ws46{word-spacing:1.115811pt;}
.wsec{word-spacing:1.147699pt;}
.ws61{word-spacing:1.222079pt;}
.wse8{word-spacing:1.243341pt;}
.ws3e{word-spacing:1.275213pt;}
.ws65{word-spacing:1.328347pt;}
.ws6e{word-spacing:1.338982pt;}
.wsd8{word-spacing:1.386803pt;}
.ws64{word-spacing:1.434614pt;}
.wsc2{word-spacing:1.482445pt;}
.ws8f{word-spacing:1.487748pt;}
.ws5d{word-spacing:1.540882pt;}
.ws59{word-spacing:1.594016pt;}
.wsb8{word-spacing:1.625907pt;}
.ws93{word-spacing:1.647150pt;}
.ws5a{word-spacing:1.753418pt;}
.ws13{word-spacing:1.785293pt;}
.wsb6{word-spacing:1.817190pt;}
.ws4f{word-spacing:1.859685pt;}
.wsc4{word-spacing:1.912832pt;}
.wsd4{word-spacing:1.960653pt;}
.wsaf{word-spacing:2.008474pt;}
.ws32{word-spacing:2.231622pt;}
.ws50{word-spacing:2.284756pt;}
.ws87{word-spacing:2.534502pt;}
.ws2d{word-spacing:2.550426pt;}
.ws1e{word-spacing:2.550432pt;}
.ws44{word-spacing:2.603559pt;}
.ws57{word-spacing:2.656693pt;}
.wsef{word-spacing:2.725786pt;}
.ws51{word-spacing:2.762961pt;}
.wsbc{word-spacing:2.869248pt;}
.wsbf{word-spacing:2.869274pt;}
.wsb1{word-spacing:2.869333pt;}
.ws30{word-spacing:2.975497pt;}
.wseb{word-spacing:3.012710pt;}
.ws96{word-spacing:3.028630pt;}
.ws21{word-spacing:3.060531pt;}
.ws90{word-spacing:3.134898pt;}
.ws29{word-spacing:3.188032pt;}
.wsc6{word-spacing:3.203994pt;}
.wse0{word-spacing:3.251814pt;}
.ws9f{word-spacing:3.294300pt;}
.wsc1{word-spacing:3.299635pt;}
.ws6a{word-spacing:3.347456pt;}
.ws24{word-spacing:3.395277pt;}
.wsf1{word-spacing:3.443098pt;}
.ws97{word-spacing:3.453701pt;}
.ws58{word-spacing:3.506835pt;}
.ws62{word-spacing:3.559969pt;}
.ws69{word-spacing:3.682202pt;}
.ws3b{word-spacing:3.719371pt;}
.ws42{word-spacing:3.825638pt;}
.ws81{word-spacing:3.969126pt;}
.wsda{word-spacing:4.016947pt;}
.ws41{word-spacing:4.091308pt;}
.ws3a{word-spacing:4.197575pt;}
.wse2{word-spacing:4.256051pt;}
.ws22{word-spacing:4.303872pt;}
.wsae{word-spacing:4.399514pt;}
.ws60{word-spacing:4.463245pt;}
.wse5{word-spacing:4.638618pt;}
.ws91{word-spacing:4.728914pt;}
.ws71{word-spacing:4.888316pt;}
.wsa9{word-spacing:4.925542pt;}
.ws5e{word-spacing:4.994583pt;}
.ws77{word-spacing:5.153985pt;}
.ws1a{word-spacing:5.393072pt;}
.ws1b{word-spacing:5.467459pt;}
.ws9b{word-spacing:5.579056pt;}
.wse4{word-spacing:5.642854pt;}
.ws99{word-spacing:6.163529pt;}
.ws9c{word-spacing:6.216662pt;}
.ws48{word-spacing:6.376064pt;}
.wscc{word-spacing:6.551450pt;}
.ws3d{word-spacing:7.119938pt;}
.ws18{word-spacing:7.699075pt;}
.wscb{word-spacing:7.890432pt;}
.wsa4{word-spacing:8.559923pt;}
.ws3c{word-spacing:8.979623pt;}
.wsa3{word-spacing:8.990310pt;}
.ws10{word-spacing:9.261206pt;}
.ws35{word-spacing:10.585953pt;}
.wsd1{word-spacing:11.811738pt;}
.wsdd{word-spacing:11.859558pt;}
.wsdb{word-spacing:11.897011pt;}
.wsbd{word-spacing:11.899307pt;}
.wsea{word-spacing:11.900518pt;}
.wsd7{word-spacing:11.900749pt;}
.wsc7{word-spacing:11.902601pt;}
.wsc0{word-spacing:11.903394pt;}
.wsd9{word-spacing:11.904299pt;}
.wsde{word-spacing:11.904896pt;}
.wsdf{word-spacing:11.906082pt;}
.wsb0{word-spacing:11.907379pt;}
.wsca{word-spacing:11.955200pt;}
.wsc8{word-spacing:12.003021pt;}
.wsd2{word-spacing:12.050842pt;}
.wse7{word-spacing:12.863795pt;}
.wsed{word-spacing:13.007258pt;}
.ws98{word-spacing:13.070931pt;}
.ws76{word-spacing:13.124065pt;}
.ws47{word-spacing:13.177199pt;}
.ws40{word-spacing:13.230333pt;}
.wsa0{word-spacing:13.283467pt;}
.wsc3{word-spacing:13.389824pt;}
.ws95{word-spacing:13.514347pt;}
.ws54{word-spacing:13.655404pt;}
.wse{word-spacing:13.763148pt;}
.ws9d{word-spacing:14.027341pt;}
.ws15{word-spacing:14.348669pt;}
.ws16{word-spacing:14.356730pt;}
.wsf0{word-spacing:14.585344pt;}
.wsb4{word-spacing:14.680986pt;}
.wsce{word-spacing:14.728806pt;}
.wse3{word-spacing:14.773052pt;}
.wsd0{word-spacing:14.773077pt;}
.wsee{word-spacing:14.774144pt;}
.wsc5{word-spacing:14.774554pt;}
.wsba{word-spacing:14.776422pt;}
.wsb2{word-spacing:14.776627pt;}
.wscd{word-spacing:14.967910pt;}
.wsb9{word-spacing:15.063552pt;}
.ws17{word-spacing:15.732893pt;}
.ws4e{word-spacing:16.418365pt;}
.wsd3{word-spacing:17.167667pt;}
.wsbb{word-spacing:18.315366pt;}
.ws9a{word-spacing:18.809389pt;}
.wsb7{word-spacing:19.415245pt;}
.ws2{word-spacing:23.814758pt;}
.ws19{word-spacing:24.399002pt;}
.wse1{word-spacing:25.297203pt;}
.wsb{word-spacing:35.593054pt;}
.ws6{word-spacing:41.446878pt;}
.ws4{word-spacing:41.452211pt;}
._2b{margin-left:-17.755030pt;}
._3{margin-left:-10.616218pt;}
._2{margin-left:-7.082061pt;}
._1d{margin-left:-6.163529pt;}
._1{margin-left:-5.260288pt;}
._23{margin-left:-4.351693pt;}
._8{margin-left:-3.424252pt;}
._6{margin-left:-2.042574pt;}
._0{margin-left:-1.137234pt;}
._7{width:0.969929pt;}
._4{width:2.669091pt;}
._5{width:3.624518pt;}
._1b{width:4.600628pt;}
._1a{width:5.557760pt;}
._1c{width:6.585980pt;}
._18{width:8.122880pt;}
._19{width:9.099307pt;}
._9{width:11.606208pt;}
._b{width:12.684603pt;}
._e{width:14.298419pt;}
._f{width:15.565395pt;}
._10{width:17.263309pt;}
._11{width:18.862523pt;}
._14{width:19.872101pt;}
._16{width:20.828476pt;}
._29{width:22.161638pt;}
._a{width:23.063232pt;}
._20{width:24.853096pt;}
._22{width:26.080505pt;}
._c{width:29.011008pt;}
._1e{width:30.573396pt;}
._21{width:31.561517pt;}
._28{width:35.493423pt;}
._15{width:38.309518pt;}
._d{width:50.498554pt;}
._2c{width:54.993920pt;}
._2a{width:78.904320pt;}
._12{width:904.472820pt;}
._1f{width:1641.907079pt;}
._24{width:1835.186727pt;}
._25{width:1872.159421pt;}
._27{width:1910.386551pt;}
._17{width:1931.826551pt;}
._26{width:2255.705119pt;}
._13{width:2276.958452pt;}
.fs12{font-size:25.024000pt;}
.fs19{font-size:28.851200pt;}
.fs7{font-size:31.880533pt;}
.fsf{font-size:36.176000pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs14{font-size:40.432000pt;}
.fs11{font-size:40.800000pt;}
.fs16{font-size:41.708800pt;}
.fs4{font-size:41.988267pt;}
.fse{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fsb{font-size:42.560000pt;}
.fs10{font-size:45.424000pt;}
.fs18{font-size:47.040000pt;}
.fs9{font-size:47.820800pt;}
.fsd{font-size:48.000000pt;}
.fs13{font-size:49.829333pt;}
.fs15{font-size:50.768000pt;}
.fs17{font-size:52.371200pt;}
.fs1{font-size:53.133867pt;}
.fsc{font-size:53.440000pt;}
.fsa{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.yed{bottom:-507.212000pt;}
.y85{bottom:-475.869333pt;}
.yf8{bottom:-440.028000pt;}
.y18d{bottom:-417.446027pt;}
.y9b{bottom:-401.309333pt;}
.y9a{bottom:-384.269333pt;}
.y99{bottom:-367.149333pt;}
.y1aa{bottom:-358.125333pt;}
.y98{bottom:-350.029333pt;}
.y97{bottom:-332.989333pt;}
.y96{bottom:-315.869333pt;}
.y1bc{bottom:-301.245333pt;}
.y95{bottom:-298.802667pt;}
.y1bb{bottom:-284.125333pt;}
.y94{bottom:-277.682667pt;}
.y1ba{bottom:-267.005333pt;}
.y1b9{bottom:-249.965333pt;}
.y93{bottom:-244.562667pt;}
.y1b8{bottom:-232.845333pt;}
.y92{bottom:-227.522667pt;}
.y1b7{bottom:-215.725333pt;}
.y91{bottom:-210.402667pt;}
.y1b6{bottom:-198.685333pt;}
.y90{bottom:-193.282667pt;}
.y1b5{bottom:-181.538667pt;}
.y8f{bottom:-176.242667pt;}
.y1b4{bottom:-164.498667pt;}
.y8e{bottom:-159.122667pt;}
.y121{bottom:-151.930133pt;}
.y1b3{bottom:-147.378667pt;}
.y157{bottom:-146.993333pt;}
.y8d{bottom:-142.082667pt;}
.y1b2{bottom:-130.258667pt;}
.y8c{bottom:-124.962667pt;}
.yf7{bottom:-121.629333pt;}
.y1b1{bottom:-113.218667pt;}
.y8b{bottom:-107.842667pt;}
.yf6{bottom:-107.077333pt;}
.yf5{bottom:-92.525333pt;}
.y1b0{bottom:-92.018667pt;}
.y8a{bottom:-90.802667pt;}
.y16a{bottom:-81.809820pt;}
.y15c{bottom:-80.513333pt;}
.y105{bottom:-76.584660pt;}
.y1a1{bottom:-73.871093pt;}
.y89{bottom:-69.682667pt;}
.y15b{bottom:-65.073333pt;}
.y126{bottom:-64.822133pt;}
.yf4{bottom:-64.781333pt;}
.y1af{bottom:-59.458667pt;}
.y1a0{bottom:-58.818293pt;}
.yf3{bottom:-51.702667pt;}
.y125{bottom:-51.698133pt;}
.y15a{bottom:-49.633333pt;}
.y1ae{bottom:-44.018667pt;}
.y19f{bottom:-43.687093pt;}
.yf2{bottom:-38.646667pt;}
.y124{bottom:-38.574133pt;}
.y88{bottom:-37.042667pt;}
.y159{bottom:-34.273333pt;}
.y1ad{bottom:-28.578667pt;}
.y19e{bottom:-28.555893pt;}
.y123{bottom:-25.518133pt;}
.yf1{bottom:-25.454667pt;}
.y87{bottom:-21.602667pt;}
.y1ac{bottom:-13.218667pt;}
.y110{bottom:-9.400660pt;}
.y19d{bottom:-9.034293pt;}
.yf0{bottom:-8.522667pt;}
.y158{bottom:-6.273333pt;}
.y122{bottom:-2.511467pt;}
.y86{bottom:-1.602667pt;}
.y0{bottom:0.000000pt;}
.y15e{bottom:2.800000pt;}
.yb{bottom:3.044747pt;}
.y183{bottom:5.438180pt;}
.y1ab{bottom:6.701333pt;}
.y12c{bottom:6.777333pt;}
.y162{bottom:8.426667pt;}
.y160{bottom:8.533333pt;}
.y2{bottom:12.267116pt;}
.ya{bottom:12.578910pt;}
.y128{bottom:13.169333pt;}
.y12a{bottom:13.350667pt;}
.y50{bottom:28.346667pt;}
.y118{bottom:83.053333pt;}
.y27{bottom:91.398667pt;}
.y4f{bottom:92.108000pt;}
.y1d7{bottom:94.840000pt;}
.y117{bottom:99.790667pt;}
.y1f5{bottom:101.396000pt;}
.y1a6{bottom:103.548000pt;}
.y1cb{bottom:104.186667pt;}
.y166{bottom:105.646667pt;}
.y26{bottom:107.298667pt;}
.y262{bottom:107.393333pt;}
.y130{bottom:108.440000pt;}
.y4e{bottom:108.844000pt;}
.ye9{bottom:109.984000pt;}
.y22d{bottom:110.461333pt;}
.yb3{bottom:111.532000pt;}
.y1d6{bottom:111.577333pt;}
.y116{bottom:116.528000pt;}
.y1f4{bottom:117.017333pt;}
.y1a5{bottom:120.644000pt;}
.y1ca{bottom:120.924000pt;}
.y261{bottom:122.736000pt;}
.y165{bottom:122.742667pt;}
.y25{bottom:123.200000pt;}
.y12f{bottom:125.536000pt;}
.y4d{bottom:125.581333pt;}
.y22c{bottom:125.804000pt;}
.ye8{bottom:126.721333pt;}
.yb2{bottom:128.269333pt;}
.y1d5{bottom:128.314667pt;}
.y115{bottom:133.265333pt;}
.y1c9{bottom:137.661333pt;}
.y1a3{bottom:137.740000pt;}
.y260{bottom:138.078667pt;}
.y24{bottom:139.100000pt;}
.y164{bottom:139.838667pt;}
.y1f3{bottom:140.609333pt;}
.y22b{bottom:141.146667pt;}
.y1a4{bottom:142.078667pt;}
.y4c{bottom:142.318667pt;}
.y12e{bottom:142.632000pt;}
.ye6{bottom:143.458667pt;}
.yb1{bottom:145.005333pt;}
.y1d4{bottom:145.052000pt;}
.ye7{bottom:148.280000pt;}
.y114{bottom:150.002667pt;}
.y25f{bottom:153.421333pt;}
.y1c8{bottom:154.398667pt;}
.y1a2{bottom:154.836000pt;}
.y23{bottom:155.000000pt;}
.y22a{bottom:156.489333pt;}
.y163{bottom:156.933333pt;}
.y4b{bottom:159.056000pt;}
.y12d{bottom:159.726667pt;}
.yb0{bottom:161.742667pt;}
.y1d3{bottom:161.789333pt;}
.ye5{bottom:164.180000pt;}
.y1f2{bottom:164.201333pt;}
.y113{bottom:166.740000pt;}
.y25e{bottom:168.762667pt;}
.y22{bottom:170.901333pt;}
.y1c7{bottom:171.136000pt;}
.y229{bottom:171.832000pt;}
.y18a{bottom:174.772000pt;}
.y4a{bottom:175.793333pt;}
.y154{bottom:176.870667pt;}
.yaf{bottom:178.480000pt;}
.y1d2{bottom:178.526667pt;}
.y11e{bottom:179.664000pt;}
.y1f1{bottom:179.822667pt;}
.y25d{bottom:184.105333pt;}
.y21{bottom:186.801333pt;}
.y228{bottom:187.174667pt;}
.y1c6{bottom:187.873333pt;}
.y49{bottom:192.530667pt;}
.ye4{bottom:194.068000pt;}
.yae{bottom:195.217333pt;}
.y1d1{bottom:195.264000pt;}
.y1f0{bottom:195.444000pt;}
.y112{bottom:196.576000pt;}
.y25c{bottom:199.448000pt;}
.y227{bottom:202.517333pt;}
.y20{bottom:202.701333pt;}
.y1c5{bottom:204.610667pt;}
.y48{bottom:209.268000pt;}
.ye3{bottom:210.805333pt;}
.y1ef{bottom:211.065333pt;}
.yad{bottom:211.954667pt;}
.y1d0{bottom:212.001333pt;}
.y81{bottom:212.782667pt;}
.y111{bottom:213.672000pt;}
.y25b{bottom:214.790667pt;}
.y226{bottom:217.860000pt;}
.y1c4{bottom:221.348000pt;}
.y47{bottom:226.005333pt;}
.y1ee{bottom:226.686667pt;}
.ye2{bottom:227.542667pt;}
.y1cf{bottom:228.738667pt;}
.y80{bottom:229.520000pt;}
.y25a{bottom:230.133333pt;}
.yac{bottom:232.677333pt;}
.y225{bottom:233.201333pt;}
.y102{bottom:233.608993pt;}
.y1c3{bottom:238.085333pt;}
.y1ed{bottom:242.308000pt;}
.y46{bottom:242.742667pt;}
.ye1{bottom:244.280000pt;}
.y1ce{bottom:245.476000pt;}
.y7f{bottom:246.257333pt;}
.y224{bottom:248.544000pt;}
.y1c2{bottom:254.822667pt;}
.y1ec{bottom:257.929333pt;}
.y45{bottom:259.480000pt;}
.y259{bottom:260.818667pt;}
.ye0{bottom:261.017333pt;}
.y1cd{bottom:262.213333pt;}
.yab{bottom:262.565333pt;}
.y7e{bottom:262.994667pt;}
.y223{bottom:263.886667pt;}
.y1f{bottom:273.154667pt;}
.y1eb{bottom:273.550667pt;}
.y1c1{bottom:275.544000pt;}
.y258{bottom:276.161333pt;}
.ydf{bottom:277.754667pt;}
.y153{bottom:278.950667pt;}
.y222{bottom:279.229333pt;}
.yaa{bottom:279.302667pt;}
.y7d{bottom:279.732000pt;}
.y44{bottom:280.202667pt;}
.y19c{bottom:282.796640pt;}
.y1e{bottom:289.054667pt;}
.y1ea{bottom:289.172000pt;}
.y257{bottom:291.502667pt;}
.yef{bottom:293.896000pt;}
.yde{bottom:294.492000pt;}
.y221{bottom:294.572000pt;}
.y152{bottom:295.688000pt;}
.ya9{bottom:296.040000pt;}
.y7c{bottom:296.469333pt;}
.y19b{bottom:299.574240pt;}
.y1c0{bottom:302.590667pt;}
.y1e9{bottom:304.793333pt;}
.y1d{bottom:304.954667pt;}
.y256{bottom:306.845333pt;}
.yee{bottom:308.448000pt;}
.y10f{bottom:308.998007pt;}
.y220{bottom:309.914667pt;}
.ydd{bottom:311.229333pt;}
.y151{bottom:312.425333pt;}
.ya7{bottom:312.777333pt;}
.y7b{bottom:313.205333pt;}
.y19a{bottom:316.351840pt;}
.ya8{bottom:317.598667pt;}
.y1bf{bottom:319.686667pt;}
.y1e8{bottom:320.414667pt;}
.y1c{bottom:320.856000pt;}
.y255{bottom:322.188000pt;}
.y10e{bottom:323.550007pt;}
.y21f{bottom:325.257333pt;}
.y150{bottom:329.162667pt;}
.ya6{bottom:329.514667pt;}
.y7a{bottom:329.942667pt;}
.ydc{bottom:331.952000pt;}
.y199{bottom:333.051040pt;}
.y1be{bottom:336.782667pt;}
.y254{bottom:337.530667pt;}
.y129{bottom:337.949867pt;}
.y10d{bottom:338.102007pt;}
.y21e{bottom:340.600000pt;}
.y1e7{bottom:344.006667pt;}
.y14f{bottom:345.900000pt;}
.ya5{bottom:346.252000pt;}
.y79{bottom:346.680000pt;}
.y43{bottom:347.002667pt;}
.yec{bottom:349.656000pt;}
.y198{bottom:349.828640pt;}
.y253{bottom:352.873333pt;}
.y1bd{bottom:353.878667pt;}
.y1b{bottom:354.688000pt;}
.y21d{bottom:355.941333pt;}
.yeb{bottom:357.068000pt;}
.y1e6{bottom:359.628000pt;}
.ydb{bottom:361.840000pt;}
.y14e{bottom:362.637333pt;}
.ya3{bottom:362.989333pt;}
.y78{bottom:363.417333pt;}
.y10c{bottom:365.846007pt;}
.y197{bottom:366.527840pt;}
.ya4{bottom:367.810667pt;}
.y252{bottom:368.216000pt;}
.y1a{bottom:370.589333pt;}
.y21c{bottom:371.284000pt;}
.y1a7{bottom:373.816000pt;}
.yd9{bottom:378.577333pt;}
.y10b{bottom:378.924673pt;}
.y14d{bottom:379.374667pt;}
.ya1{bottom:379.726667pt;}
.y76{bottom:380.154667pt;}
.y42{bottom:380.237333pt;}
.y1e5{bottom:383.220000pt;}
.y196{bottom:383.305440pt;}
.yda{bottom:383.398667pt;}
.y251{bottom:383.558667pt;}
.ya2{bottom:384.548000pt;}
.y77{bottom:384.977333pt;}
.y19{bottom:386.489333pt;}
.y21b{bottom:386.626667pt;}
.y10a{bottom:391.980673pt;}
.yd7{bottom:395.314667pt;}
.y14c{bottom:396.110667pt;}
.y1cc{bottom:396.112000pt;}
.ya0{bottom:396.464000pt;}
.y75{bottom:396.892000pt;}
.y41{bottom:397.533333pt;}
.y1e4{bottom:398.841333pt;}
.y250{bottom:398.901333pt;}
.y195{bottom:400.083040pt;}
.yd8{bottom:400.136000pt;}
.y21a{bottom:401.969333pt;}
.y109{bottom:405.172673pt;}
.yd6{bottom:412.052000pt;}
.y14b{bottom:412.848000pt;}
.y9f{bottom:413.201333pt;}
.y74{bottom:413.629333pt;}
.y24f{bottom:414.244000pt;}
.y1e3{bottom:414.462667pt;}
.y40{bottom:414.828000pt;}
.y194{bottom:416.782240pt;}
.y219{bottom:417.312000pt;}
.y18{bottom:418.330667pt;}
.y108{bottom:422.104673pt;}
.yd5{bottom:428.789333pt;}
.y14a{bottom:429.585333pt;}
.y1e2{bottom:430.084000pt;}
.y73{bottom:430.366667pt;}
.y3f{bottom:432.124000pt;}
.y218{bottom:432.654667pt;}
.y9e{bottom:433.922667pt;}
.y17{bottom:434.230667pt;}
.y161{bottom:434.757333pt;}
.y24e{bottom:444.928000pt;}
.yd4{bottom:445.526667pt;}
.y1e1{bottom:445.705333pt;}
.y149{bottom:446.322667pt;}
.y72{bottom:447.104000pt;}
.y217{bottom:447.997333pt;}
.y189{bottom:448.048000pt;}
.y193{bottom:448.847840pt;}
.y3e{bottom:449.418667pt;}
.y182{bottom:456.396847pt;}
.y24d{bottom:460.270667pt;}
.y1e0{bottom:461.326667pt;}
.yd3{bottom:462.264000pt;}
.y148{bottom:463.060000pt;}
.y216{bottom:463.340000pt;}
.y9d{bottom:463.626667pt;}
.y70{bottom:463.841333pt;}
.y192{bottom:463.979040pt;}
.y188{bottom:465.144000pt;}
.y16{bottom:466.070667pt;}
.y3d{bottom:466.713333pt;}
.y71{bottom:468.664000pt;}
.y181{bottom:472.584847pt;}
.y24c{bottom:475.613333pt;}
.y1df{bottom:476.948000pt;}
.y215{bottom:478.682667pt;}
.yd2{bottom:479.001333pt;}
.y191{bottom:479.057973pt;}
.y147{bottom:479.797333pt;}
.y6f{bottom:480.578667pt;}
.y9c{bottom:480.722667pt;}
.y15{bottom:481.972000pt;}
.y187{bottom:482.240000pt;}
.y3c{bottom:484.009333pt;}
.y180{bottom:488.848847pt;}
.y24b{bottom:490.956000pt;}
.y1de{bottom:492.570667pt;}
.y214{bottom:494.024000pt;}
.y190{bottom:494.110773pt;}
.yd1{bottom:495.738667pt;}
.y146{bottom:496.534667pt;}
.y6e{bottom:497.316000pt;}
.y14{bottom:497.872000pt;}
.y186{bottom:499.336000pt;}
.y82{bottom:500.660000pt;}
.y3b{bottom:501.304000pt;}
.y17f{bottom:505.112847pt;}
.y24a{bottom:506.298667pt;}
.y18f{bottom:509.163573pt;}
.y213{bottom:509.366667pt;}
.yd0{bottom:512.476000pt;}
.y145{bottom:513.272000pt;}
.y13{bottom:513.772000pt;}
.y6d{bottom:514.053333pt;}
.y1dd{bottom:516.161333pt;}
.y185{bottom:516.432000pt;}
.y3a{bottom:518.598667pt;}
.y17e{bottom:521.300847pt;}
.y249{bottom:521.641333pt;}
.y18e{bottom:524.294773pt;}
.y212{bottom:524.709333pt;}
.y127{bottom:525.833867pt;}
.ycf{bottom:529.213333pt;}
.y12{bottom:529.673333pt;}
.y144{bottom:530.009333pt;}
.y6c{bottom:530.790667pt;}
.y1dc{bottom:532.201333pt;}
.y84{bottom:532.210667pt;}
.y184{bottom:533.528000pt;}
.y39{bottom:535.894667pt;}
.y248{bottom:536.984000pt;}
.y17d{bottom:537.564847pt;}
.y211{bottom:540.052000pt;}
.y83{bottom:540.930667pt;}
.y101{bottom:542.080000pt;}
.y11{bottom:545.573333pt;}
.yce{bottom:545.950667pt;}
.y143{bottom:546.746667pt;}
.y6b{bottom:547.528000pt;}
.y1db{bottom:548.241333pt;}
.y247{bottom:552.325333pt;}
.y38{bottom:553.189333pt;}
.y167{bottom:553.464887pt;}
.y17c{bottom:553.752847pt;}
.y210{bottom:555.394667pt;}
.y100{bottom:558.817333pt;}
.y10{bottom:561.473333pt;}
.ycd{bottom:562.686667pt;}
.y142{bottom:563.484000pt;}
.y6a{bottom:564.265333pt;}
.y246{bottom:567.668000pt;}
.y17b{bottom:570.016847pt;}
.y18c{bottom:570.472373pt;}
.y37{bottom:570.485333pt;}
.y20f{bottom:570.737333pt;}
.yff{bottom:575.554667pt;}
.yf{bottom:577.374667pt;}
.y18b{bottom:579.017973pt;}
.ycc{bottom:579.424000pt;}
.y141{bottom:580.221333pt;}
.y69{bottom:581.002667pt;}
.y245{bottom:583.010667pt;}
.y20e{bottom:586.080000pt;}
.y17a{bottom:586.280847pt;}
.y36{bottom:587.780000pt;}
.ye{bottom:593.274667pt;}
.ycb{bottom:596.161333pt;}
.y140{bottom:596.958667pt;}
.y68{bottom:597.740000pt;}
.y244{bottom:598.353333pt;}
.y20d{bottom:601.422667pt;}
.y179{bottom:602.468847pt;}
.y35{bottom:605.074667pt;}
.yfe{bottom:605.390667pt;}
.yd{bottom:609.174667pt;}
.yca{bottom:612.898667pt;}
.y13f{bottom:613.696000pt;}
.y67{bottom:614.477333pt;}
.y20b{bottom:616.764000pt;}
.y20c{bottom:616.765333pt;}
.y178{bottom:618.732847pt;}
.yfc{bottom:622.486667pt;}
.yc{bottom:625.076000pt;}
.yfd{bottom:626.825333pt;}
.y243{bottom:629.038667pt;}
.yc8{bottom:629.636000pt;}
.y13e{bottom:630.433333pt;}
.y66{bottom:631.214667pt;}
.y20a{bottom:632.106667pt;}
.yc9{bottom:634.458667pt;}
.y177{bottom:634.920847pt;}
.y34{bottom:636.654667pt;}
.yfa{bottom:639.582667pt;}
.yfb{bottom:643.921333pt;}
.y242{bottom:644.381333pt;}
.y9{bottom:644.961301pt;}
.yc7{bottom:646.373333pt;}
.y13d{bottom:647.170667pt;}
.y209{bottom:647.449333pt;}
.y65{bottom:647.952000pt;}
.y1a9{bottom:649.954667pt;}
.y33{bottom:651.001333pt;}
.y176{bottom:651.184847pt;}
.yf9{bottom:656.677333pt;}
.y1a8{bottom:658.674667pt;}
.y241{bottom:659.724000pt;}
.y208{bottom:662.792000pt;}
.yc6{bottom:663.110667pt;}
.y13c{bottom:663.908000pt;}
.y64{bottom:664.689333pt;}
.y32{bottom:665.346667pt;}
.y175{bottom:667.448847pt;}
.y240{bottom:675.066667pt;}
.yea{bottom:676.614667pt;}
.y15f{bottom:676.997333pt;}
.y207{bottom:678.134667pt;}
.yc5{bottom:679.848000pt;}
.y13b{bottom:680.645333pt;}
.y31{bottom:683.550667pt;}
.y174{bottom:683.636847pt;}
.y63{bottom:685.410667pt;}
.y23f{bottom:690.408000pt;}
.y206{bottom:693.477333pt;}
.y30{bottom:694.040000pt;}
.yc3{bottom:696.585333pt;}
.y13a{bottom:697.382667pt;}
.y173{bottom:699.900847pt;}
.yc4{bottom:701.408000pt;}
.y1da{bottom:702.204000pt;}
.y62{bottom:703.344000pt;}
.y120{bottom:704.937867pt;}
.y23e{bottom:705.750667pt;}
.y2f{bottom:708.385333pt;}
.y205{bottom:708.820000pt;}
.y11f{bottom:712.349867pt;}
.yc2{bottom:713.322667pt;}
.y139{bottom:714.120000pt;}
.y172{bottom:716.164847pt;}
.y1d9{bottom:718.941333pt;}
.y23d{bottom:721.093333pt;}
.y204{bottom:724.162667pt;}
.y107{bottom:724.523340pt;}
.y2e{bottom:726.589333pt;}
.yc1{bottom:730.060000pt;}
.y138{bottom:730.857333pt;}
.y171{bottom:732.352847pt;}
.y61{bottom:733.232000pt;}
.y23c{bottom:736.436000pt;}
.y2d{bottom:737.078667pt;}
.y106{bottom:739.075340pt;}
.y203{bottom:739.505333pt;}
.yc0{bottom:746.797333pt;}
.y137{bottom:747.594667pt;}
.y170{bottom:748.616847pt;}
.y60{bottom:749.969333pt;}
.y2c{bottom:751.425333pt;}
.y23b{bottom:751.778667pt;}
.y1d8{bottom:752.416000pt;}
.y202{bottom:754.846667pt;}
.ybf{bottom:763.534667pt;}
.y12b{bottom:763.901867pt;}
.y136{bottom:764.332000pt;}
.y16f{bottom:764.804847pt;}
.y5f{bottom:766.706667pt;}
.y23a{bottom:767.121333pt;}
.y2b{bottom:769.628000pt;}
.y201{bottom:770.189333pt;}
.y2a{bottom:780.117333pt;}
.ybe{bottom:780.272000pt;}
.y104{bottom:780.283340pt;}
.y16e{bottom:781.068847pt;}
.y135{bottom:781.069333pt;}
.y239{bottom:782.464000pt;}
.y5e{bottom:783.444000pt;}
.y200{bottom:785.532000pt;}
.y103{bottom:787.695340pt;}
.y29{bottom:794.464000pt;}
.ybd{bottom:797.009333pt;}
.y16d{bottom:797.358180pt;}
.y134{bottom:797.806667pt;}
.y5d{bottom:800.181333pt;}
.y1ff{bottom:800.874667pt;}
.y28{bottom:812.668000pt;}
.y238{bottom:813.149333pt;}
.y16c{bottom:813.546180pt;}
.y133{bottom:814.544000pt;}
.y1fe{bottom:816.217333pt;}
.y5c{bottom:816.918667pt;}
.ybc{bottom:817.732000pt;}
.y237{bottom:828.490667pt;}
.y16b{bottom:829.810180pt;}
.y132{bottom:831.281333pt;}
.y1fd{bottom:831.560000pt;}
.y5b{bottom:833.656000pt;}
.y236{bottom:843.833333pt;}
.y8{bottom:845.676000pt;}
.y1fc{bottom:846.902667pt;}
.ybb{bottom:847.620000pt;}
.y131{bottom:848.018667pt;}
.y5a{bottom:850.393333pt;}
.y235{bottom:859.176000pt;}
.y156{bottom:861.086667pt;}
.y1fb{bottom:862.245333pt;}
.y7{bottom:862.413333pt;}
.yba{bottom:864.357333pt;}
.y11d{bottom:864.754667pt;}
.y59{bottom:867.130667pt;}
.y155{bottom:869.806667pt;}
.y234{bottom:874.518667pt;}
.y169{bottom:875.866180pt;}
.yb9{bottom:881.094667pt;}
.y11c{bottom:881.492000pt;}
.y1fa{bottom:881.572000pt;}
.y58{bottom:883.868000pt;}
.y168{bottom:884.150180pt;}
.y233{bottom:889.861333pt;}
.yb8{bottom:897.832000pt;}
.y11b{bottom:898.229333pt;}
.y6{bottom:900.404000pt;}
.y57{bottom:900.605333pt;}
.y232{bottom:905.204000pt;}
.y1f9{bottom:911.460000pt;}
.y11a{bottom:914.966667pt;}
.y56{bottom:917.342667pt;}
.yb7{bottom:918.553333pt;}
.y231{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.y119{bottom:931.704000pt;}
.y55{bottom:934.080000pt;}
.y1f8{bottom:935.052000pt;}
.y230{bottom:935.889333pt;}
.yb6{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y1f7{bottom:950.673333pt;}
.y54{bottom:950.817333pt;}
.y22f{bottom:951.230667pt;}
.y15d{bottom:961.717333pt;}
.yb5{bottom:965.178667pt;}
.y1f6{bottom:966.294667pt;}
.y22e{bottom:966.573333pt;}
.y53{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.yb4{bottom:981.916000pt;}
.y52{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y51{bottom:1043.020000pt;}
.h2f{height:18.640000pt;}
.h2d{height:20.196000pt;}
.h3b{height:22.284493pt;}
.h8{height:22.673858pt;}
.h10{height:23.209028pt;}
.he{height:23.374407pt;}
.h11{height:23.379740pt;}
.h32{height:24.320000pt;}
.h31{height:24.400000pt;}
.h1b{height:24.760382pt;}
.h2a{height:26.656000pt;}
.h21{height:26.761523pt;}
.h2c{height:26.792000pt;}
.hb{height:27.076941pt;}
.hc{height:27.262909pt;}
.h1a{height:29.397999pt;}
.ha{height:29.433775pt;}
.h9{height:30.399505pt;}
.hf{height:30.945242pt;}
.h18{height:31.157778pt;}
.h27{height:31.691456pt;}
.h2b{height:33.313891pt;}
.h24{height:33.455734pt;}
.hd{height:33.957757pt;}
.h13{height:34.574438pt;}
.h14{height:34.813542pt;}
.h15{height:35.052646pt;}
.h19{height:35.212691pt;}
.h34{height:37.391703pt;}
.h26{height:37.732031pt;}
.h16{height:38.415786pt;}
.h37{height:38.572494pt;}
.h17{height:38.681455pt;}
.h12{height:38.809074pt;}
.h4{height:38.947124pt;}
.h20{height:39.166719pt;}
.h30{height:39.192812pt;}
.h1d{height:39.359687pt;}
.h25{height:42.008328pt;}
.h39{height:43.502813pt;}
.h3c{height:43.660390pt;}
.h1f{height:44.390625pt;}
.h2{height:45.355680pt;}
.h22{height:46.052190pt;}
.h35{height:46.950484pt;}
.h38{height:48.433131pt;}
.h6{height:48.481423pt;}
.h7{height:48.486756pt;}
.h1e{height:49.421563pt;}
.h5{height:69.148877pt;}
.h3{height:91.114522pt;}
.h36{height:250.880000pt;}
.h23{height:267.548267pt;}
.h28{height:287.454473pt;}
.h33{height:441.737713pt;}
.h1c{height:494.541333pt;}
.h3a{height:621.385333pt;}
.h29{height:664.073267pt;}
.h2e{height:818.330667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wa{width:26.390913pt;}
.w8{width:27.342913pt;}
.wd{width:33.520000pt;}
.w9{width:34.414913pt;}
.wc{width:43.120000pt;}
.w3{width:66.991004pt;}
.w2{width:147.825920pt;}
.w6{width:393.534133pt;}
.w7{width:396.426513pt;}
.w5{width:403.548267pt;}
.wf{width:425.353973pt;}
.we{width:431.788933pt;}
.w10{width:516.657333pt;}
.wb{width:527.184000pt;}
.w4{width:649.223867pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x82{left:-177.325120pt;}
.x73{left:-174.233333pt;}
.x88{left:-165.185333pt;}
.x7a{left:-159.947067pt;}
.x5f{left:-158.749400pt;}
.x67{left:-156.524667pt;}
.x3f{left:-23.306800pt;}
.x60{left:-10.962733pt;}
.x68{left:-8.738000pt;}
.x83{left:-6.935787pt;}
.x0{left:0.000000pt;}
.x6d{left:3.202913pt;}
.x41{left:5.013200pt;}
.x89{left:8.681333pt;}
.x75{left:9.626667pt;}
.x61{left:13.109267pt;}
.x69{left:15.334000pt;}
.x84{left:20.817813pt;}
.x3{left:26.021437pt;}
.x7b{left:32.130267pt;}
.x8a{left:37.001333pt;}
.x1{left:48.000000pt;}
.x2{left:51.246627pt;}
.x3e{left:72.238800pt;}
.x44{left:76.346667pt;}
.x45{left:127.222667pt;}
.x42{left:150.559867pt;}
.x43{left:178.879867pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.x76{left:232.306667pt;}
.x74{left:236.546667pt;}
.x5{left:240.670667pt;}
.xb7{left:247.385333pt;}
.x9{left:251.365333pt;}
.x64{left:260.100000pt;}
.x38{left:263.742667pt;}
.xb0{left:264.713333pt;}
.x59{left:266.330667pt;}
.xb8{left:269.676000pt;}
.x54{left:273.745333pt;}
.x7{left:275.070667pt;}
.xba{left:276.220000pt;}
.x39{left:278.065333pt;}
.xb1{left:281.385333pt;}
.x2c{left:282.749333pt;}
.x8{left:284.478667pt;}
.x65{left:285.400000pt;}
.x46{left:287.097333pt;}
.x56{left:289.466667pt;}
.x3a{left:291.614667pt;}
.x66{left:293.986667pt;}
.x2d{left:296.032000pt;}
.x9a{left:298.028000pt;}
.x3b{left:300.724000pt;}
.x30{left:304.688000pt;}
.xb9{left:307.520000pt;}
.x52{left:309.628000pt;}
.x9b{left:311.310667pt;}
.x9c{left:314.645333pt;}
.x31{left:317.972000pt;}
.x53{left:320.553333pt;}
.x55{left:322.953333pt;}
.xa6{left:324.986667pt;}
.x9d{left:327.929333pt;}
.xaf{left:330.772000pt;}
.xbc{left:331.822667pt;}
.x86{left:338.529333pt;}
.xa7{left:341.525333pt;}
.x8f{left:344.878667pt;}
.x87{left:346.832000pt;}
.x90{left:352.182667pt;}
.xa8{left:354.809333pt;}
.x91{left:358.137333pt;}
.x92{left:368.096000pt;}
.xa9{left:371.346667pt;}
.x7c{left:372.537333pt;}
.x70{left:377.508000pt;}
.x7d{left:380.512000pt;}
.x71{left:386.140000pt;}
.x1c{left:387.100000pt;}
.x63{left:388.826667pt;}
.x1d{left:393.742667pt;}
.x62{left:395.382600pt;}
.x6a{left:397.607333pt;}
.x98{left:399.041333pt;}
.x28{left:401.158667pt;}
.x6c{left:408.822913pt;}
.x4d{left:411.704000pt;}
.xa{left:412.746667pt;}
.x29{left:414.442667pt;}
.xb{left:419.388000pt;}
.x2a{left:421.217333pt;}
.x85{left:426.668480pt;}
.x4e{left:427.589333pt;}
.x99{left:432.382667pt;}
.x2b{left:434.500000pt;}
.x12{left:435.976000pt;}
.xbb{left:436.965333pt;}
.x49{left:438.716000pt;}
.xb2{left:440.690667pt;}
.x13{left:442.617333pt;}
.xb3{left:444.078667pt;}
.x80{left:447.041333pt;}
.x4a{left:449.641333pt;}
.x18{left:451.605333pt;}
.x81{left:454.345333pt;}
.x19{left:458.246667pt;}
.xb5{left:459.664000pt;}
.x1a{left:461.554667pt;}
.x9e{left:464.652000pt;}
.x4b{left:467.290667pt;}
.xb6{left:468.737333pt;}
.xb4{left:471.770667pt;}
.x4c{left:473.341333pt;}
.x1b{left:474.837333pt;}
.x94{left:475.856000pt;}
.x9f{left:477.936000pt;}
.xae{left:481.058667pt;}
.x4f{left:483.688000pt;}
.x95{left:489.140000pt;}
.x96{left:492.394667pt;}
.x57{left:494.672000pt;}
.x50{left:496.970667pt;}
.x5c{left:498.057333pt;}
.x10{left:499.222667pt;}
.x58{left:500.721333pt;}
.x11{left:505.865333pt;}
.x32{left:509.753333pt;}
.x5d{left:511.420000pt;}
.x5e{left:520.450667pt;}
.x33{left:523.668000pt;}
.x20{left:531.369333pt;}
.x34{left:536.686667pt;}
.x21{left:538.010667pt;}
.x22{left:541.265333pt;}
.x35{left:545.388000pt;}
.x7e{left:547.180000pt;}
.x23{left:554.549333pt;}
.x7f{left:557.137333pt;}
.x93{left:565.345333pt;}
.xaa{left:567.392000pt;}
.x2e{left:569.958667pt;}
.x77{left:574.260000pt;}
.x6b{left:576.966667pt;}
.x24{left:582.032000pt;}
.x2f{left:583.241333pt;}
.x97{left:587.281333pt;}
.x14{left:589.870667pt;}
.x25{left:595.316000pt;}
.x15{left:596.512000pt;}
.x6e{left:597.436000pt;}
.x16{left:603.021333pt;}
.x5a{left:604.516000pt;}
.x47{left:605.929333pt;}
.x27{left:608.848000pt;}
.x5b{left:610.228000pt;}
.x48{left:611.980000pt;}
.xc4{left:613.654667pt;}
.xca{left:614.812000pt;}
.x17{left:616.304000pt;}
.xcc{left:624.213333pt;}
.xbf{left:626.701333pt;}
.xa5{left:628.962667pt;}
.x8b{left:632.828000pt;}
.xc2{left:635.989333pt;}
.xc5{left:637.565333pt;}
.xcb{left:638.722667pt;}
.x8c{left:642.128000pt;}
.xc6{left:643.057333pt;}
.x8d{left:648.196000pt;}
.xc0{left:652.833333pt;}
.x40{left:654.293200pt;}
.xa0{left:655.306667pt;}
.x8e{left:658.154667pt;}
.xbd{left:665.945333pt;}
.xc7{left:666.968000pt;}
.xa2{left:668.548000pt;}
.xe{left:673.966667pt;}
.xa3{left:675.209333pt;}
.xc1{left:676.744000pt;}
.xc9{left:679.537333pt;}
.xf{left:680.608000pt;}
.x72{left:681.974667pt;}
.xa4{left:688.493333pt;}
.xbe{left:689.856000pt;}
.xc8{left:690.900000pt;}
.x1e{left:693.544000pt;}
.x36{left:694.589333pt;}
.xab{left:701.052000pt;}
.x37{left:702.793333pt;}
.xac{left:704.320000pt;}
.x1f{left:706.828000pt;}
.x78{left:708.054667pt;}
.x51{left:711.938667pt;}
.x79{left:716.028000pt;}
.xad{left:717.604000pt;}
.x3c{left:722.330667pt;}
.xc3{left:725.512000pt;}
.x26{left:726.488000pt;}
.xc{left:732.944000pt;}
.x3d{left:735.614667pt;}
.xd{left:739.585333pt;}
.x6f{left:742.864000pt;}
.xa1{left:744.637333pt;}
}




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