
    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_4f20f36ba6f6f87ea1fac817.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3857943bca93623de2a90815.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;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_2d48e4242f3f49e4c4b6adec.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_58f0c2ae3e573bf1423f020c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8ff9b194794f4fb86575f4db.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.894000;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_8cbd4b20d3127df5847ed08a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.747000;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_694b8df30be84686f945b4c9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.712000;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_d8ef662c740e1f364f0e703a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6e2ca8c2eb2a232a81625f96.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_32d3d43b32d75a2da42a9815.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_cacbfca51d24e56ad7690ad8.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_a0cd75fac4708c986a8f1bfc.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_fb78663779188e3ff2124020.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_56922d7975e71045085f33ae.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_2aea3e39a2866909ca587cc6.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_a0cd75fac4708c986a8f1bfc.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_fb78663779188e3ff2124020.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_56922d7975e71045085f33ae.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_2aea3e39a2866909ca587cc6.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_9a56e0597e63d9105775234d.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_cda38fc94acd94ab16b63113.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_7ec4afb4e253bc6826b22f1e.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_c768a11a983b44b36a3894a3.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_9a56e0597e63d9105775234d.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_cda38fc94acd94ab16b63113.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_7ec4afb4e253bc6826b22f1e.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_c768a11a983b44b36a3894a3.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_a454f8b2d46d6afb11fb568f.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_0678a07770e9e4ff3fb87cc3.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_d09e1a5b264e58266030b35a.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_791c981ab0505d21b4140554.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.909180;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_40ee9a5bfda9dbfc0d29eb2d.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_0ffccf977dcba9110e28f82c.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_66ddb6bafa6c847a43b92b50.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_a9b18028d81d732bc5e67684.woff2')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_791c981ab0505d21b4140554.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.909180;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_2d96ce126f864f224ca9a027.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;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m17{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);}
.m28{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m1e{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);}
.md{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);}
.m22{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);}
.m1f{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.ma{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);}
.m8{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);}
.m1a{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);}
.m19{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);}
.m1c{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);}
.m20{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);}
.m25{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);}
.mb{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.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);}
.m12{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);}
.m23{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);}
.m1d{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);}
.m7{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);}
.m18{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);}
.m10{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);}
.m4{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);}
.mc{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);}
.m21{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);}
.mf{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);}
.m26{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);}
.m11{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);}
.m24{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);}
.m9{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);}
.m1b{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);}
.m6{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);}
.m15{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);}
.m29{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);}
.me{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);}
.m5{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.v4{vertical-align:26.994000px;}
.v3{vertical-align:28.392000px;}
.ls14{letter-spacing:-0.648000px;}
.ls22{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.216000px;}
.ls23{letter-spacing:-0.138000px;}
.ls1e{letter-spacing:-0.126000px;}
.ls0{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.000179px;}
.ls2{letter-spacing:0.000600px;}
.ls26{letter-spacing:0.002488px;}
.ls34{letter-spacing:0.004800px;}
.lsf{letter-spacing:0.014400px;}
.ls19{letter-spacing:0.018000px;}
.ls25{letter-spacing:0.059776px;}
.lsb{letter-spacing:0.086400px;}
.lsc{letter-spacing:0.100800px;}
.ls21{letter-spacing:0.106800px;}
.ls10{letter-spacing:0.108000px;}
.ls1d{letter-spacing:0.110400px;}
.ls1a{letter-spacing:0.126000px;}
.lsd{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.165312px;}
.ls11{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.206400px;}
.ls18{letter-spacing:0.206640px;}
.ls8{letter-spacing:0.207936px;}
.ls16{letter-spacing:0.259920px;}
.ls9{letter-spacing:0.288000px;}
.ls1f{letter-spacing:0.306600px;}
.ls17{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.490800px;}
.ls1{letter-spacing:10.461300px;}
.ls32{letter-spacing:11.738155px;}
.ls7{letter-spacing:11.954850px;}
.ls33{letter-spacing:11.984924px;}
.ls2a{letter-spacing:12.638155px;}
.ls35{letter-spacing:12.662645px;}
.ls2d{letter-spacing:13.168047px;}
.ls2f{letter-spacing:13.209827px;}
.ls2e{letter-spacing:13.415804px;}
.ls28{letter-spacing:13.448400px;}
.ls2b{letter-spacing:13.454400px;}
.ls37{letter-spacing:13.476931px;}
.ls36{letter-spacing:13.493343px;}
.ls30{letter-spacing:13.559445px;}
.ls29{letter-spacing:13.642050px;}
.ls31{letter-spacing:13.706363px;}
.ls38{letter-spacing:14.685694px;}
.ls12{letter-spacing:14.884124px;}
.ls24{letter-spacing:15.183002px;}
.ls2c{letter-spacing:16.676400px;}
.ls3{letter-spacing:57.415200px;}
.ls5{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.ls4{letter-spacing:72.361200px;}
.ls1c{letter-spacing:849.180000px;}
.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;}
}
.ws82{word-spacing:-59.760000px;}
.ws7f{word-spacing:-54.000000px;}
.ws86{word-spacing:-15.300000px;}
.ws8c{word-spacing:-15.246600px;}
.ws8f{word-spacing:-15.146400px;}
.ws85{word-spacing:-15.050400px;}
.ws8d{word-spacing:-15.046800px;}
.ws24{word-spacing:-14.943900px;}
.ws8e{word-spacing:-14.940000px;}
.ws90{word-spacing:-14.802000px;}
.ws7e{word-spacing:-14.292000px;}
.ws80{word-spacing:-13.500000px;}
.wsd0{word-spacing:-13.449600px;}
.ws87{word-spacing:-13.374000px;}
.ws81{word-spacing:-13.284000px;}
.wsb2{word-spacing:-12.420000px;}
.ws7c{word-spacing:-12.060000px;}
.ws32{word-spacing:-11.955150px;}
.ws7d{word-spacing:-11.700000px;}
.ws10{word-spacing:-11.357400px;}
.ws78{word-spacing:-10.800000px;}
.ws3{word-spacing:-10.460700px;}
.ws76{word-spacing:-9.648000px;}
.ws77{word-spacing:-9.360000px;}
.ws7b{word-spacing:-4.680461px;}
.ws7a{word-spacing:-4.626662px;}
.ws92{word-spacing:-3.646312px;}
.ws99{word-spacing:-3.287658px;}
.ws79{word-spacing:-2.851315px;}
.ws4b{word-spacing:-2.689902px;}
.ws21{word-spacing:-2.570351px;}
.ws94{word-spacing:-2.331248px;}
.ws11a{word-spacing:-2.313331px;}
.ws62{word-spacing:-2.271473px;}
.ws44{word-spacing:-2.211697px;}
.ws109{word-spacing:-2.205734px;}
.ws95{word-spacing:-2.151922px;}
.ws22{word-spacing:-2.032370px;}
.ws25{word-spacing:-1.912819px;}
.ws98{word-spacing:-1.853044px;}
.ws2a{word-spacing:-1.733492px;}
.ws10b{word-spacing:-1.721549px;}
.wsc7{word-spacing:-1.673717px;}
.ws27{word-spacing:-1.613941px;}
.ws6c{word-spacing:-1.554166px;}
.ws2b{word-spacing:-1.494390px;}
.ws10c{word-spacing:-1.452557px;}
.ws29{word-spacing:-1.434614px;}
.ws47{word-spacing:-1.374839px;}
.wsc5{word-spacing:-1.315063px;}
.ws8b{word-spacing:-1.255288px;}
.wsa5{word-spacing:-1.195512px;}
.ws4{word-spacing:-1.171598px;}
.wsa6{word-spacing:-1.135736px;}
.wsd6{word-spacing:-1.075968px;}
.wsa7{word-spacing:-1.075961px;}
.ws6{word-spacing:-1.046070px;}
.wsb7{word-spacing:-1.016185px;}
.wsc4{word-spacing:-0.956410px;}
.ws40{word-spacing:-0.836858px;}
.ws111{word-spacing:-0.806976px;}
.wsab{word-spacing:-0.717307px;}
.wsb1{word-spacing:-0.657532px;}
.wsc6{word-spacing:-0.597756px;}
.ws89{word-spacing:-0.537980px;}
.wsa4{word-spacing:-0.478205px;}
.ws93{word-spacing:-0.418429px;}
.ws100{word-spacing:-0.376589px;}
.ws38{word-spacing:-0.358654px;}
.wscb{word-spacing:-0.322790px;}
.ws45{word-spacing:-0.298878px;}
.ws19{word-spacing:-0.268992px;}
.ws2e{word-spacing:-0.239102px;}
.ws1d{word-spacing:-0.215194px;}
.ws2c{word-spacing:-0.179327px;}
.ws16{word-spacing:-0.161395px;}
.ws2d{word-spacing:-0.119551px;}
.wscd{word-spacing:-0.107597px;}
.wse{word-spacing:-0.059776px;}
.ws15{word-spacing:-0.053798px;}
.ws11{word-spacing:-0.047821px;}
.ws6e{word-spacing:-0.001991px;}
.wsf{word-spacing:-0.000892px;}
.ws0{word-spacing:0.000000px;}
.ws14{word-spacing:0.053798px;}
.ws4e{word-spacing:0.059776px;}
.ws13{word-spacing:0.107597px;}
.ws2f{word-spacing:0.119551px;}
.ws88{word-spacing:0.161395px;}
.ws30{word-spacing:0.179327px;}
.ws5f{word-spacing:0.191282px;}
.wsdb{word-spacing:0.215194px;}
.ws6a{word-spacing:0.222035px;}
.ws4a{word-spacing:0.239102px;}
.ws103{word-spacing:0.268992px;}
.ws52{word-spacing:0.298878px;}
.wsdd{word-spacing:0.322790px;}
.ws3f{word-spacing:0.358654px;}
.wsd9{word-spacing:0.376589px;}
.wsb6{word-spacing:0.418429px;}
.wsd4{word-spacing:0.430387px;}
.ws114{word-spacing:0.484186px;}
.ws4c{word-spacing:0.537980px;}
.ws112{word-spacing:0.591782px;}
.ws63{word-spacing:0.597756px;}
.ws4f{word-spacing:0.717307px;}
.wsce{word-spacing:0.753178px;}
.ws9d{word-spacing:0.777083px;}
.wsa9{word-spacing:0.836858px;}
.ws26{word-spacing:0.896634px;}
.ws11f{word-spacing:0.914573px;}
.ws37{word-spacing:0.956410px;}
.ws5{word-spacing:1.004227px;}
.ws9a{word-spacing:1.016185px;}
.ws3d{word-spacing:1.075961px;}
.ws8a{word-spacing:1.135736px;}
.ws5c{word-spacing:1.195512px;}
.ws121{word-spacing:1.237363px;}
.ws43{word-spacing:1.255288px;}
.ws1e{word-spacing:1.291162px;}
.ws20{word-spacing:1.315063px;}
.wsbf{word-spacing:1.374839px;}
.ws28{word-spacing:1.494390px;}
.wsf2{word-spacing:1.506355px;}
.ws54{word-spacing:1.554166px;}
.ws53{word-spacing:1.613941px;}
.ws34{word-spacing:1.673717px;}
.ws18{word-spacing:1.721549px;}
.ws3e{word-spacing:1.793268px;}
.wse4{word-spacing:1.829146px;}
.ws108{word-spacing:1.882944px;}
.wsf6{word-spacing:1.936742px;}
.ws122{word-spacing:1.990541px;}
.ws84{word-spacing:2.032370px;}
.ws35{word-spacing:2.092146px;}
.wscc{word-spacing:2.098138px;}
.wsbb{word-spacing:2.151922px;}
.wsf0{word-spacing:2.151936px;}
.ws9c{word-spacing:2.211697px;}
.ws57{word-spacing:2.271473px;}
.ws1b{word-spacing:2.367130px;}
.ws55{word-spacing:2.450800px;}
.ws3b{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.wsbc{word-spacing:2.570351px;}
.ws51{word-spacing:2.809453px;}
.ws42{word-spacing:2.869229px;}
.ws12{word-spacing:2.869236px;}
.wsc2{word-spacing:2.929004px;}
.ws97{word-spacing:2.988780px;}
.wsad{word-spacing:3.048556px;}
.ws36{word-spacing:3.108331px;}
.ws3c{word-spacing:3.168107px;}
.ws117{word-spacing:3.218630px;}
.wse5{word-spacing:3.219062px;}
.ws11d{word-spacing:3.220339px;}
.wse1{word-spacing:3.220387px;}
.ws123{word-spacing:3.221232px;}
.wsf8{word-spacing:3.221760px;}
.ws105{word-spacing:3.224323px;}
.wsed{word-spacing:3.225610px;}
.ws4d{word-spacing:3.227882px;}
.ws107{word-spacing:3.227904px;}
.ws83{word-spacing:3.287658px;}
.ws33{word-spacing:3.347434px;}
.wsb8{word-spacing:3.407209px;}
.wse3{word-spacing:3.443098px;}
.wsaa{word-spacing:3.466985px;}
.ws1f{word-spacing:3.586536px;}
.ws23{word-spacing:3.646312px;}
.wsdf{word-spacing:3.658291px;}
.ws5a{word-spacing:3.765863px;}
.ws17{word-spacing:3.927283px;}
.wsb0{word-spacing:3.945190px;}
.wsa3{word-spacing:4.004965px;}
.wsc3{word-spacing:4.184292px;}
.wsba{word-spacing:4.303843px;}
.wsaf{word-spacing:4.363619px;}
.wsc0{word-spacing:4.423394px;}
.ws118{word-spacing:4.519066px;}
.ws49{word-spacing:4.542946px;}
.wsa0{word-spacing:4.662497px;}
.wsb3{word-spacing:4.722272px;}
.wsc{word-spacing:4.770079px;}
.wsa8{word-spacing:4.782048px;}
.ws41{word-spacing:4.841824px;}
.wsd{word-spacing:4.853765px;}
.ws3a{word-spacing:4.901599px;}
.ws48{word-spacing:4.961375px;}
.wsf9{word-spacing:5.003251px;}
.wsa1{word-spacing:5.140702px;}
.ws66{word-spacing:5.167774px;}
.ws68{word-spacing:5.200477px;}
.ws59{word-spacing:5.320028px;}
.ws39{word-spacing:5.439580px;}
.ws56{word-spacing:5.618906px;}
.wsbd{word-spacing:5.678682px;}
.ws1c{word-spacing:5.810227px;}
.ws96{word-spacing:5.917784px;}
.wsac{word-spacing:5.977560px;}
.wsae{word-spacing:6.097111px;}
.ws91{word-spacing:6.156887px;}
.ws58{word-spacing:6.276438px;}
.ws50{word-spacing:6.455765px;}
.wse7{word-spacing:6.509606px;}
.ws5b{word-spacing:6.575316px;}
.wsc8{word-spacing:6.635092px;}
.wsbe{word-spacing:6.754643px;}
.wsc9{word-spacing:6.993745px;}
.ws1a{word-spacing:6.993792px;}
.wsb5{word-spacing:7.113296px;}
.wsc1{word-spacing:7.173072px;}
.ws9e{word-spacing:7.232848px;}
.wsa2{word-spacing:7.531726px;}
.wsb9{word-spacing:7.591501px;}
.wsa{word-spacing:7.782761px;}
.ws46{word-spacing:7.890379px;}
.ws9b{word-spacing:7.950155px;}
.wsca{word-spacing:8.984333px;}
.wsb4{word-spacing:9.085891px;}
.ws11b{word-spacing:11.082470px;}
.ws113{word-spacing:11.512858px;}
.ws10d{word-spacing:11.943245px;}
.ws8{word-spacing:12.176255px;}
.wsd7{word-spacing:12.319834px;}
.ws2{word-spacing:12.929425px;}
.wsdc{word-spacing:13.126810px;}
.wsfe{word-spacing:13.180608px;}
.wsd3{word-spacing:13.234406px;}
.wsef{word-spacing:13.288205px;}
.ws6d{word-spacing:13.329959px;}
.ws119{word-spacing:13.342003px;}
.ws124{word-spacing:13.384291px;}
.ws11e{word-spacing:13.385664px;}
.wsee{word-spacing:13.386499px;}
.wsf3{word-spacing:13.388851px;}
.ws11c{word-spacing:13.389830px;}
.wseb{word-spacing:13.390771px;}
.wse2{word-spacing:13.390963px;}
.wsde{word-spacing:13.392038px;}
.wse8{word-spacing:13.395091px;}
.wsd1{word-spacing:13.395802px;}
.wsfc{word-spacing:13.449600px;}
.wsfb{word-spacing:13.503398px;}
.wsf4{word-spacing:13.557197px;}
.wsd5{word-spacing:13.826189px;}
.ws31{word-spacing:14.776565px;}
.ws6f{word-spacing:14.884124px;}
.ws64{word-spacing:15.003676px;}
.ws69{word-spacing:15.063451px;}
.ws6b{word-spacing:15.123227px;}
.ws9{word-spacing:16.109478px;}
.ws10a{word-spacing:16.139520px;}
.wsda{word-spacing:16.300915px;}
.wsec{word-spacing:16.408512px;}
.wse9{word-spacing:16.516109px;}
.wsf7{word-spacing:16.569907px;}
.wsff{word-spacing:16.614365px;}
.ws116{word-spacing:16.616822px;}
.ws110{word-spacing:16.618253px;}
.ws10f{word-spacing:16.619194px;}
.wsfd{word-spacing:16.619203px;}
.wse6{word-spacing:16.619299px;}
.ws125{word-spacing:16.620499px;}
.wsea{word-spacing:16.620883px;}
.wsf5{word-spacing:16.621296px;}
.wsfa{word-spacing:16.621430px;}
.ws102{word-spacing:16.623581px;}
.wscf{word-spacing:16.623706px;}
.ws101{word-spacing:16.677504px;}
.ws10e{word-spacing:16.731302px;}
.wsd8{word-spacing:16.838899px;}
.wsd2{word-spacing:16.892698px;}
.ws104{word-spacing:16.946496px;}
.wse0{word-spacing:17.054093px;}
.ws106{word-spacing:17.107891px;}
.wsf1{word-spacing:17.753472px;}
.ws9f{word-spacing:17.813129px;}
.ws61{word-spacing:18.470660px;}
.ws115{word-spacing:18.560448px;}
.ws120{word-spacing:19.905408px;}
.ws67{word-spacing:20.024826px;}
.ws65{word-spacing:20.044757px;}
.wsb{word-spacing:26.109907px;}
.ws7{word-spacing:26.840252px;}
.ws60{word-spacing:632.212237px;}
.ws5e{word-spacing:665.184546px;}
.ws5d{word-spacing:708.366548px;}
.ws71{word-spacing:955.838153px;}
.ws70{word-spacing:956.890206px;}
.ws73{word-spacing:1005.428115px;}
.ws72{word-spacing:1021.782760px;}
.ws75{word-spacing:1043.445492px;}
.ws74{word-spacing:1070.942337px;}
._1b{margin-left:-7.220897px;}
._0{margin-left:-6.150892px;}
._d{margin-left:-4.841856px;}
._8{margin-left:-3.489596px;}
._2{margin-left:-1.506341px;}
._9{width:1.026257px;}
._5{width:2.301354px;}
._b{width:3.677189px;}
._37{width:4.818401px;}
._3a{width:6.480000px;}
._39{width:8.366400px;}
._3b{width:9.400269px;}
._3{width:10.460700px;}
._6{width:11.582422px;}
._1{width:12.971268px;}
._1a{width:14.370046px;}
._12{width:15.656861px;}
._c{width:16.677490px;}
._1c{width:17.705528px;}
._11{width:18.709763px;}
._e{width:20.120602px;}
._10{width:21.573158px;}
._18{width:22.774504px;}
._f{width:24.209280px;}
._4{width:25.944936px;}
._17{width:27.676103px;}
._15{width:29.015068px;}
._7{width:30.587087px;}
._19{width:31.997852px;}
._a{width:33.355008px;}
._16{width:35.446931px;}
._3f{width:37.670579px;}
._3d{width:40.766959px;}
._3c{width:42.138045px;}
._42{width:61.868160px;}
._41{width:88.767360px;}
._20{width:302.372575px;}
._13{width:376.874149px;}
._28{width:524.735444px;}
._1f{width:627.322606px;}
._24{width:632.140511px;}
._27{width:646.167330px;}
._23{width:698.013380px;}
._2d{width:701.014151px;}
._30{width:737.058908px;}
._2f{width:755.517659px;}
._2c{width:788.430208px;}
._2b{width:803.302414px;}
._25{width:822.753423px;}
._2a{width:825.060787px;}
._1e{width:829.400486px;}
._34{width:853.788992px;}
._31{width:873.443259px;}
._21{width:879.325193px;}
._32{width:886.020077px;}
._26{width:889.522956px;}
._33{width:895.249453px;}
._35{width:926.285022px;}
._29{width:928.150025px;}
._2e{width:932.740803px;}
._1d{width:964.637143px;}
._22{width:986.252054px;}
._36{width:1225.930771px;}
._40{width:1506.907207px;}
._38{width:1531.387207px;}
._3e{width:1944.291275px;}
._14{width:1968.201275px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(95,159,35);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:35.865600px;}
.fsf{font-size:38.592000px;}
.fs7{font-size:38.962980px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs11{font-size:43.200000px;}
.fs8{font-size:44.529120px;}
.fsb{font-size:45.429600px;}
.fs10{font-size:47.808000px;}
.fsd{font-size:47.820600px;}
.fs12{font-size:48.240000px;}
.fse{font-size:53.798400px;}
.fs14{font-size:54.000000px;}
.fs6{font-size:55.661400px;}
.fs13{font-size:59.760000px;}
.fs9{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fsa{font-size:107.596800px;}
.y174{bottom:-742.225500px;}
.y134{bottom:-733.887000px;}
.y173{bottom:-720.445500px;}
.y133{bottom:-714.627000px;}
.y172{bottom:-701.185500px;}
.y132{bottom:-695.373000px;}
.y171{bottom:-682.111500px;}
.y131{bottom:-676.113000px;}
.y1d2{bottom:-675.774000px;}
.y170{bottom:-662.851500px;}
.y130{bottom:-657.033000px;}
.y1d1{bottom:-656.514000px;}
.y16f{bottom:-643.591500px;}
.y12f{bottom:-637.773000px;}
.y1d0{bottom:-637.434000px;}
.y16e{bottom:-624.331500px;}
.y12e{bottom:-618.513000px;}
.y1cf{bottom:-618.174000px;}
.y16d{bottom:-605.071500px;}
.y12d{bottom:-599.253000px;}
.y1ce{bottom:-598.920000px;}
.y16c{bottom:-585.991500px;}
.y1cd{bottom:-579.660000px;}
.y12c{bottom:-575.673000px;}
.y1cc{bottom:-560.400000px;}
.y16b{bottom:-549.271500px;}
.y21e{bottom:-542.454000px;}
.y1cb{bottom:-541.320000px;}
.y12b{bottom:-538.773000px;}
.y16a{bottom:-531.991500px;}
.y21d{bottom:-523.194000px;}
.y1ca{bottom:-522.060000px;}
.y12a{bottom:-516.408000px;}
.y169{bottom:-504.766500px;}
.y21c{bottom:-504.114000px;}
.y1c9{bottom:-502.800000px;}
.y168{bottom:-489.106500px;}
.y21b{bottom:-484.860000px;}
.y1c8{bottom:-483.540000px;}
.y21a{bottom:-465.600000px;}
.y1c7{bottom:-464.280000px;}
.y219{bottom:-446.340000px;}
.y1c6{bottom:-445.200000px;}
.y218{bottom:-427.080000px;}
.y1c5{bottom:-425.895000px;}
.y217{bottom:-408.000000px;}
.y1c4{bottom:-406.635000px;}
.y216{bottom:-388.740000px;}
.y1c3{bottom:-387.375000px;}
.y215{bottom:-369.480000px;}
.y1c2{bottom:-368.115000px;}
.y214{bottom:-350.220000px;}
.y1c1{bottom:-349.035000px;}
.y213{bottom:-330.960000px;}
.y1c0{bottom:-329.775000px;}
.y212{bottom:-311.835000px;}
.y1bf{bottom:-310.515000px;}
.y211{bottom:-292.575000px;}
.y1be{bottom:-291.255000px;}
.y210{bottom:-273.315000px;}
.y1bd{bottom:-271.995000px;}
.y20f{bottom:-254.055000px;}
.y1bc{bottom:-252.735000px;}
.y20e{bottom:-234.795000px;}
.y1bb{bottom:-233.655000px;}
.y198{bottom:-231.291000px;}
.y20d{bottom:-215.715000px;}
.y155{bottom:-214.647000px;}
.y1ba{bottom:-214.395000px;}
.y197{bottom:-209.511000px;}
.y20c{bottom:-196.455000px;}
.y154{bottom:-195.387000px;}
.y1b9{bottom:-195.135000px;}
.y129{bottom:-194.718000px;}
.y167{bottom:-194.596500px;}
.y196{bottom:-190.251000px;}
.y20b{bottom:-177.195000px;}
.y153{bottom:-176.133000px;}
.y1b8{bottom:-175.875000px;}
.y128{bottom:-175.458000px;}
.y166{bottom:-175.336500px;}
.y195{bottom:-171.177000px;}
.y20a{bottom:-157.935000px;}
.y152{bottom:-156.873000px;}
.y1b7{bottom:-156.585000px;}
.y127{bottom:-156.198000px;}
.y165{bottom:-156.076500px;}
.y194{bottom:-151.917000px;}
.y116{bottom:-139.384800px;}
.y209{bottom:-138.675000px;}
.y151{bottom:-137.793000px;}
.y1b6{bottom:-137.505000px;}
.y126{bottom:-136.938000px;}
.y164{bottom:-136.816500px;}
.y193{bottom:-132.657000px;}
.y115{bottom:-123.976800px;}
.y208{bottom:-119.595000px;}
.y150{bottom:-118.533000px;}
.y1b5{bottom:-118.245000px;}
.y125{bottom:-117.678000px;}
.y163{bottom:-117.556500px;}
.y192{bottom:-113.397000px;}
.y114{bottom:-108.532800px;}
.y207{bottom:-100.335000px;}
.y14f{bottom:-99.273000px;}
.y1b4{bottom:-98.985000px;}
.y162{bottom:-98.476500px;}
.y124{bottom:-98.418000px;}
.y191{bottom:-94.137000px;}
.y113{bottom:-93.124800px;}
.y206{bottom:-81.075000px;}
.y14e{bottom:-80.013000px;}
.y1b3{bottom:-79.725000px;}
.y123{bottom:-79.338000px;}
.y161{bottom:-79.216500px;}
.y112{bottom:-77.860800px;}
.y190{bottom:-75.057000px;}
.y205{bottom:-61.815000px;}
.y111{bottom:-58.852800px;}
.y14d{bottom:-56.433000px;}
.y1b2{bottom:-56.145000px;}
.y122{bottom:-55.578000px;}
.y160{bottom:-55.456500px;}
.y18f{bottom:-38.337000px;}
.y110{bottom:-29.476800px;}
.y204{bottom:-25.065000px;}
.y18e{bottom:-21.057000px;}
.y14c{bottom:-19.533000px;}
.y1b1{bottom:-19.245000px;}
.y121{bottom:-18.858000px;}
.y15f{bottom:-18.736500px;}
.y10f{bottom:-15.652800px;}
.y203{bottom:-2.565000px;}
.y0{bottom:0.000000px;}
.y14b{bottom:2.832000px;}
.y1b0{bottom:3.075000px;}
.y10b{bottom:3.600000px;}
.y120{bottom:3.687000px;}
.y10e{bottom:3.744000px;}
.y15e{bottom:3.763500px;}
.y18d{bottom:4.680000px;}
.y3b{bottom:12.664592px;}
.y3a{bottom:26.023328px;}
.y69{bottom:31.890000px;}
.y5{bottom:66.525004px;}
.y117{bottom:88.468500px;}
.y19e{bottom:91.665000px;}
.y15a{bottom:96.484500px;}
.y4{bottom:97.125005px;}
.y23f{bottom:99.115500px;}
.y68{bottom:103.621500px;}
.y2be{bottom:104.503500px;}
.y38{bottom:104.646000px;}
.y24f{bottom:106.744500px;}
.y1ee{bottom:107.193000px;}
.y19d{bottom:110.494500px;}
.y106{bottom:110.898000px;}
.y10d{bottom:113.245200px;}
.y159{bottom:115.314000px;}
.y23e{bottom:117.945000px;}
.y284{bottom:118.804500px;}
.y2bd{bottom:121.762500px;}
.y67{bottom:122.449500px;}
.y37{bottom:122.535000px;}
.y24e{bottom:125.574000px;}
.y9e{bottom:126.022500px;}
.y19c{bottom:129.324000px;}
.y10c{bottom:129.517200px;}
.y158{bottom:134.142000px;}
.y283{bottom:136.065000px;}
.y23d{bottom:136.774500px;}
.y2bc{bottom:139.023000px;}
.y22{bottom:139.264499px;}
.y36{bottom:140.422500px;}
.y66{bottom:141.279000px;}
.y24d{bottom:144.403500px;}
.y9d{bottom:144.852000px;}
.y19b{bottom:148.153500px;}
.y282{bottom:153.325500px;}
.y23c{bottom:155.604000px;}
.y2bb{bottom:156.283500px;}
.y157{bottom:157.455000px;}
.y35{bottom:158.310000px;}
.y65{bottom:160.108500px;}
.y24c{bottom:163.233000px;}
.y9c{bottom:163.681500px;}
.y1ed{bottom:166.983000px;}
.y281{bottom:170.586000px;}
.y2ba{bottom:173.544000px;}
.y23b{bottom:174.433500px;}
.y34{bottom:176.199000px;}
.y64{bottom:178.938000px;}
.y19a{bottom:180.564000px;}
.y24b{bottom:182.062500px;}
.y9b{bottom:182.511000px;}
.yed{bottom:185.305500px;}
.y1ec{bottom:185.812500px;}
.y280{bottom:187.846500px;}
.y156{bottom:187.882500px;}
.yb0{bottom:189.150000px;}
.y2b9{bottom:190.804500px;}
.y23a{bottom:193.263000px;}
.y33{bottom:194.086500px;}
.y19{bottom:196.933500px;}
.y63{bottom:197.767500px;}
.y199{bottom:199.797000px;}
.y24a{bottom:200.892000px;}
.y9a{bottom:201.340500px;}
.yaf{bottom:203.347500px;}
.yec{bottom:204.135000px;}
.y1eb{bottom:204.642000px;}
.y27f{bottom:205.107000px;}
.y2b8{bottom:208.065000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y13e{bottom:210.312000px;}
.yae{bottom:210.445500px;}
.y32{bottom:211.974000px;}
.y239{bottom:212.091000px;}
.y62{bottom:216.597000px;}
.y249{bottom:219.721500px;}
.y99{bottom:220.170000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y27e{bottom:222.366000px;}
.yeb{bottom:222.964500px;}
.y1ea{bottom:223.471500px;}
.y1af{bottom:224.160000px;}
.y17e{bottom:225.214500px;}
.y2b7{bottom:225.325500px;}
.y18c{bottom:226.702500px;}
.y31{bottom:229.863000px;}
.y238{bottom:230.920500px;}
.yad{bottom:231.741000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y61{bottom:235.426500px;}
.y248{bottom:238.551000px;}
.y98{bottom:238.999500px;}
.y27d{bottom:239.626500px;}
.yea{bottom:241.794000px;}
.y1e9{bottom:242.301000px;}
.y2b6{bottom:242.586000px;}
.y1ae{bottom:243.420000px;}
.yac{bottom:245.938500px;}
.y18b{bottom:247.042500px;}
.y237{bottom:249.750000px;}
.ya5{bottom:253.386000px;}
.ya8{bottom:253.567500px;}
.y60{bottom:254.256000px;}
.y27c{bottom:256.887000px;}
.y247{bottom:257.380500px;}
.y97{bottom:257.829000px;}
.y2b5{bottom:259.846500px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.yab{bottom:260.134500px;}
.ye9{bottom:260.623500px;}
.y1e8{bottom:261.130500px;}
.y1ad{bottom:262.680000px;}
.y202{bottom:267.300000px;}
.y236{bottom:268.579500px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y5f{bottom:273.085500px;}
.y27b{bottom:274.147500px;}
.yaa{bottom:274.332000px;}
.y246{bottom:276.210000px;}
.y96{bottom:276.658500px;}
.y2b4{bottom:277.105500px;}
.ye8{bottom:279.453000px;}
.y1e7{bottom:279.960000px;}
.y1ac{bottom:281.940000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y201{bottom:286.560000px;}
.y235{bottom:287.409000px;}
.ya9{bottom:288.528000px;}
.y27a{bottom:291.408000px;}
.y5e{bottom:291.915000px;}
.y2b3{bottom:294.366000px;}
.y245{bottom:295.039500px;}
.y95{bottom:295.488000px;}
.ye7{bottom:298.282500px;}
.y1e6{bottom:298.789500px;}
.y30{bottom:300.154500px;}
.y1ab{bottom:301.020000px;}
.ya7{bottom:302.725500px;}
.y11f{bottom:302.877000px;}
.y200{bottom:305.640000px;}
.y234{bottom:306.238500px;}
.y279{bottom:308.668500px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y5d{bottom:310.744500px;}
.y2b2{bottom:311.626500px;}
.y11e{bottom:312.417000px;}
.y244{bottom:313.869000px;}
.y94{bottom:314.317500px;}
.y18a{bottom:316.338000px;}
.ya6{bottom:316.921500px;}
.y1e5{bottom:317.619000px;}
.y2f{bottom:318.043500px;}
.y15d{bottom:318.118500px;}
.y1aa{bottom:320.280000px;}
.ye6{bottom:321.595500px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y14a{bottom:324.522000px;}
.y1ff{bottom:324.900000px;}
.y233{bottom:325.068000px;}
.y278{bottom:325.929000px;}
.y15c{bottom:327.658500px;}
.y2b1{bottom:328.887000px;}
.y5c{bottom:329.574000px;}
.y25d{bottom:332.698500px;}
.y93{bottom:333.145500px;}
.y189{bottom:335.598000px;}
.y2e{bottom:335.931000px;}
.y1e4{bottom:336.448500px;}
.y243{bottom:337.180500px;}
.ya4{bottom:338.320500px;}
.y277{bottom:343.189500px;}
.y149{bottom:343.782000px;}
.y232{bottom:343.897500px;}
.y1a9{bottom:344.040000px;}
.y2b0{bottom:346.147500px;}
.y10{bottom:348.133500px;}
.y5b{bottom:348.403500px;}
.y1fe{bottom:348.660000px;}
.y25c{bottom:351.528000px;}
.y92{bottom:351.975000px;}
.y10a{bottom:352.741200px;}
.y2d{bottom:353.818500px;}
.y188{bottom:354.858000px;}
.ye5{bottom:355.219500px;}
.y1e3{bottom:355.278000px;}
.y276{bottom:360.450000px;}
.y231{bottom:362.727000px;}
.y148{bottom:363.042000px;}
.y2af{bottom:363.408000px;}
.y5a{bottom:367.233000px;}
.y109{bottom:368.869200px;}
.y25b{bottom:370.357500px;}
.y91{bottom:370.804500px;}
.ya3{bottom:371.359500px;}
.y1fd{bottom:372.420000px;}
.ye4{bottom:374.049000px;}
.y1e2{bottom:374.107500px;}
.y187{bottom:374.118000px;}
.y275{bottom:377.709000px;}
.y2ae{bottom:380.668500px;}
.y2c{bottom:380.673000px;}
.y230{bottom:381.556500px;}
.y147{bottom:382.302000px;}
.y59{bottom:386.062500px;}
.yf{bottom:386.785499px;}
.y25a{bottom:389.187000px;}
.y90{bottom:389.634000px;}
.ye3{bottom:392.878500px;}
.y1e1{bottom:392.937000px;}
.y186{bottom:393.378000px;}
.y274{bottom:394.969500px;}
.y2ad{bottom:397.929000px;}
.y2b{bottom:398.562000px;}
.y1a8{bottom:398.790000px;}
.y22f{bottom:400.386000px;}
.y146{bottom:401.562000px;}
.y58{bottom:404.892000px;}
.y259{bottom:408.015000px;}
.ye{bottom:408.044999px;}
.y1a7{bottom:408.330000px;}
.y8f{bottom:408.463500px;}
.y1fc{bottom:409.680000px;}
.ye2{bottom:411.708000px;}
.y1e0{bottom:411.766500px;}
.y273{bottom:412.230000px;}
.y185{bottom:412.458000px;}
.y2ac{bottom:415.188000px;}
.y2a{bottom:416.449500px;}
.y22e{bottom:419.215500px;}
.y145{bottom:420.822000px;}
.y57{bottom:423.721500px;}
.y258{bottom:426.844500px;}
.y8e{bottom:427.293000px;}
.y1fb{bottom:428.760000px;}
.y272{bottom:429.490500px;}
.ye1{bottom:430.536000px;}
.y1df{bottom:430.596000px;}
.y184{bottom:431.718000px;}
.y2ab{bottom:432.448500px;}
.y22d{bottom:438.045000px;}
.y144{bottom:439.902000px;}
.y29{bottom:443.304000px;}
.y257{bottom:445.674000px;}
.y8d{bottom:446.122500px;}
.y271{bottom:446.751000px;}
.y56{bottom:447.034500px;}
.y1fa{bottom:448.020000px;}
.ye0{bottom:449.365500px;}
.y1de{bottom:449.425500px;}
.y2aa{bottom:449.709000px;}
.y183{bottom:455.478000px;}
.y22c{bottom:456.874500px;}
.y28{bottom:461.191500px;}
.y143{bottom:463.662000px;}
.y270{bottom:464.011500px;}
.y256{bottom:464.503500px;}
.y8c{bottom:464.952000px;}
.y2a9{bottom:466.969500px;}
.y1f9{bottom:467.280000px;}
.ydf{bottom:468.195000px;}
.y1dd{bottom:468.255000px;}
.y22b{bottom:475.704000px;}
.y27{bottom:479.079000px;}
.y26f{bottom:481.272000px;}
.y8b{bottom:483.781500px;}
.y2a8{bottom:484.230000px;}
.yd{bottom:484.864502px;}
.yde{bottom:487.024500px;}
.y1dc{bottom:487.084500px;}
.y255{bottom:487.816500px;}
.y182{bottom:492.198000px;}
.y22a{bottom:494.533500px;}
.y26{bottom:496.968000px;}
.y26e{bottom:498.532500px;}
.y142{bottom:500.382000px;}
.y2a7{bottom:501.490500px;}
.y8a{bottom:502.611000px;}
.yc{bottom:502.864502px;}
.ydd{bottom:505.854000px;}
.y1db{bottom:505.914000px;}
.y229{bottom:513.363000px;}
.y181{bottom:514.698000px;}
.y25{bottom:514.855500px;}
.y26d{bottom:515.791500px;}
.y55{bottom:518.680500px;}
.y2a6{bottom:518.751000px;}
.yb{bottom:520.864502px;}
.y89{bottom:521.440500px;}
.y1f8{bottom:522.030000px;}
.y141{bottom:522.927000px;}
.ydc{bottom:524.683500px;}
.y1da{bottom:524.743500px;}
.y1f7{bottom:531.570000px;}
.y228{bottom:532.192500px;}
.y24{bottom:532.743000px;}
.y13d{bottom:532.987500px;}
.y26c{bottom:533.052000px;}
.y2a5{bottom:536.011500px;}
.y54{bottom:538.137000px;}
.ya{bottom:538.864499px;}
.y17d{bottom:539.692500px;}
.y88{bottom:540.270000px;}
.y1d9{bottom:543.573000px;}
.ydb{bottom:547.996500px;}
.y23{bottom:550.632000px;}
.y227{bottom:551.022000px;}
.y13c{bottom:551.817000px;}
.y2a4{bottom:553.272000px;}
.y26b{bottom:554.796000px;}
.y9{bottom:556.864499px;}
.y17c{bottom:558.522000px;}
.y108{bottom:558.559200px;}
.y87{bottom:559.099500px;}
.y1d8{bottom:562.401000px;}
.y107{bottom:566.191200px;}
.yda{bottom:568.171500px;}
.y226{bottom:569.851500px;}
.y2a3{bottom:570.531000px;}
.y13b{bottom:570.646500px;}
.y53{bottom:575.527500px;}
.y17b{bottom:577.351500px;}
.y86{bottom:577.929000px;}
.y1d7{bottom:581.230500px;}
.y2a2{bottom:587.791500px;}
.y26a{bottom:588.420000px;}
.y225{bottom:588.681000px;}
.y13a{bottom:589.476000px;}
.y52{bottom:594.984000px;}
.y17a{bottom:596.181000px;}
.y85{bottom:596.758500px;}
.y1d6{bottom:600.060000px;}
.y2a1{bottom:605.052000px;}
.yd9{bottom:605.166000px;}
.y224{bottom:607.510500px;}
.y139{bottom:608.305500px;}
.y51{bottom:614.442000px;}
.y269{bottom:614.961000px;}
.y179{bottom:615.010500px;}
.y84{bottom:615.588000px;}
.y1d5{bottom:618.889500px;}
.yd8{bottom:619.363500px;}
.y2a0{bottom:622.312500px;}
.y223{bottom:626.340000px;}
.y138{bottom:627.135000px;}
.y178{bottom:633.840000px;}
.y50{bottom:633.898500px;}
.y83{bottom:634.417500px;}
.y29f{bottom:639.573000px;}
.yd7{bottom:640.522500px;}
.y268{bottom:641.500500px;}
.y1d4{bottom:642.202500px;}
.y222{bottom:645.169500px;}
.y8{bottom:645.510000px;}
.y137{bottom:645.964500px;}
.y177{bottom:652.669500px;}
.y82{bottom:653.247000px;}
.y4f{bottom:653.355000px;}
.yd6{bottom:654.720000px;}
.y29e{bottom:656.833500px;}
.yd2{bottom:662.019000px;}
.y221{bottom:663.999000px;}
.y7{bottom:666.771000px;}
.y267{bottom:668.041500px;}
.yd5{bottom:668.916000px;}
.y136{bottom:669.277500px;}
.y1d3{bottom:670.017000px;}
.y81{bottom:672.076500px;}
.y4e{bottom:672.813000px;}
.y29d{bottom:674.094000px;}
.y176{bottom:675.982500px;}
.yd1{bottom:676.215000px;}
.ya2{bottom:676.560000px;}
.y105{bottom:678.483000px;}
.y220{bottom:682.828500px;}
.yd4{bottom:683.113500px;}
.y80{bottom:690.906000px;}
.y29c{bottom:691.354500px;}
.y4d{bottom:692.269500px;}
.y1a6{bottom:692.445000px;}
.y104{bottom:692.680500px;}
.y266{bottom:694.582500px;}
.yd3{bottom:697.309500px;}
.y135{bottom:699.705000px;}
.y175{bottom:705.253500px;}
.y103{bottom:706.876500px;}
.y29b{bottom:708.613500px;}
.y7f{bottom:709.735500px;}
.ya1{bottom:710.184000px;}
.y4c{bottom:711.727500px;}
.y265{bottom:712.156500px;}
.y21f{bottom:716.394000px;}
.yd0{bottom:718.708500px;}
.y102{bottom:721.074000px;}
.y11d{bottom:722.134500px;}
.y29a{bottom:725.874000px;}
.y6{bottom:726.298500px;}
.y15b{bottom:727.683000px;}
.y1f0{bottom:728.565000px;}
.ya0{bottom:729.013500px;}
.y264{bottom:729.730500px;}
.y4b{bottom:731.184000px;}
.ycf{bottom:732.906000px;}
.y7e{bottom:733.047000px;}
.y101{bottom:735.270000px;}
.y1f6{bottom:741.811500px;}
.y299{bottom:743.134500px;}
.yc6{bottom:745.999500px;}
.yce{bottom:747.102000px;}
.y263{bottom:747.304500px;}
.y242{bottom:747.394500px;}
.y9f{bottom:747.843000px;}
.y4a{bottom:750.640500px;}
.y1ef{bottom:751.876500px;}
.y3{bottom:752.599495px;}
.yca{bottom:754.732500px;}
.y100{bottom:756.670500px;}
.y298{bottom:760.395000px;}
.ycd{bottom:761.299500px;}
.y241{bottom:766.224000px;}
.y7d{bottom:766.671000px;}
.y49{bottom:770.098500px;}
.y262{bottom:773.845500px;}
.ycc{bottom:775.495500px;}
.y297{bottom:777.655500px;}
.yff{bottom:778.069500px;}
.y254{bottom:785.053500px;}
.y7c{bottom:785.500500px;}
.y240{bottom:789.535500px;}
.y48{bottom:789.555000px;}
.ycb{bottom:789.693000px;}
.y261{bottom:791.419500px;}
.yfe{bottom:792.265500px;}
.y296{bottom:794.916000px;}
.y253{bottom:803.883000px;}
.y7b{bottom:804.330000px;}
.yfd{bottom:806.463000px;}
.y260{bottom:808.993500px;}
.y47{bottom:809.011500px;}
.yc9{bottom:811.092000px;}
.y295{bottom:812.176500px;}
.y140{bottom:822.117000px;}
.y252{bottom:822.712500px;}
.y7a{bottom:823.159500px;}
.yc8{bottom:825.288000px;}
.y25f{bottom:826.567500px;}
.yfc{bottom:827.862000px;}
.y46{bottom:828.469500px;}
.y180{bottom:829.053000px;}
.y294{bottom:829.437000px;}
.y13f{bottom:831.657000px;}
.y17f{bottom:838.593000px;}
.yc7{bottom:839.485500px;}
.y251{bottom:841.540500px;}
.y79{bottom:841.989000px;}
.y25e{bottom:844.141500px;}
.y293{bottom:846.697500px;}
.y45{bottom:847.926000px;}
.yfb{bottom:849.261000px;}
.y78{bottom:860.818500px;}
.yc5{bottom:860.884500px;}
.yfa{bottom:863.457000px;}
.y292{bottom:863.956500px;}
.y250{bottom:864.853500px;}
.y44{bottom:867.384000px;}
.yc4{bottom:868.332000px;}
.y2{bottom:879.369000px;}
.y77{bottom:879.648000px;}
.y291{bottom:881.217000px;}
.yf9{bottom:884.856000px;}
.yc0{bottom:888.070500px;}
.yc3{bottom:889.278000px;}
.y76{bottom:898.477500px;}
.y43{bottom:902.860500px;}
.yc2{bottom:903.474000px;}
.yf8{bottom:906.255000px;}
.y290{bottom:915.738000px;}
.y1a5{bottom:916.858500px;}
.y75{bottom:917.307000px;}
.yc1{bottom:917.671500px;}
.y42{bottom:919.000500px;}
.yf7{bottom:927.654000px;}
.y28f{bottom:932.998500px;}
.y1a4{bottom:935.688000px;}
.y74{bottom:936.136500px;}
.ybf{bottom:939.070500px;}
.y41{bottom:939.478500px;}
.yf6{bottom:949.053000px;}
.y28e{bottom:950.259000px;}
.ybe{bottom:953.268000px;}
.y1a3{bottom:954.517500px;}
.y73{bottom:954.966000px;}
.y40{bottom:955.618500px;}
.yf5{bottom:963.250500px;}
.y1{bottom:966.726000px;}
.ybd{bottom:967.464000px;}
.y28d{bottom:967.519500px;}
.y1a2{bottom:973.347000px;}
.y72{bottom:973.795500px;}
.yba{bottom:974.763000px;}
.yf4{bottom:977.446500px;}
.ybc{bottom:981.661500px;}
.y28c{bottom:984.780000px;}
.yb9{bottom:988.959000px;}
.yb3{bottom:989.109000px;}
.yf3{bottom:991.644000px;}
.y1a1{bottom:992.176500px;}
.y71{bottom:992.625000px;}
.ybb{bottom:995.857500px;}
.y3f{bottom:997.186500px;}
.y28a{bottom:1002.039000px;}
.y28b{bottom:1002.040500px;}
.y1f5{bottom:1005.627000px;}
.yf2{bottom:1005.840000px;}
.y11c{bottom:1006.971000px;}
.yb8{bottom:1010.055000px;}
.y1a0{bottom:1011.006000px;}
.y70{bottom:1011.454500px;}
.y289{bottom:1019.299500px;}
.yf1{bottom:1020.037500px;}
.yb5{bottom:1023.043500px;}
.yb7{bottom:1024.251000px;}
.y1f4{bottom:1024.456500px;}
.y11b{bottom:1025.800500px;}
.y6f{bottom:1030.284000px;}
.yf0{bottom:1034.233500px;}
.y19f{bottom:1034.319000px;}
.y288{bottom:1036.560000px;}
.y3e{bottom:1037.106000px;}
.yb6{bottom:1038.447000px;}
.y1f3{bottom:1043.284500px;}
.y11a{bottom:1044.630000px;}
.y6e{bottom:1049.113500px;}
.yb4{bottom:1052.644500px;}
.y287{bottom:1053.820500px;}
.yef{bottom:1055.634000px;}
.y1f2{bottom:1062.114000px;}
.y119{bottom:1063.459500px;}
.y3d{bottom:1065.349500px;}
.y6d{bottom:1067.943000px;}
.y286{bottom:1071.081000px;}
.yb2{bottom:1074.043500px;}
.yee{bottom:1077.033000px;}
.y118{bottom:1082.289000px;}
.y1f1{bottom:1085.427000px;}
.y6c{bottom:1086.772500px;}
.y285{bottom:1088.341500px;}
.y3c{bottom:1093.594500px;}
.y6b{bottom:1105.602000px;}
.yb1{bottom:1107.082500px;}
.y39{bottom:1137.081000px;}
.y6a{bottom:1168.366500px;}
.h2f{height:-489.106500px;}
.h2e{height:-216.916500px;}
.h22{height:16.128000px;}
.h24{height:16.272000px;}
.h32{height:20.340000px;}
.h13{height:26.110157px;}
.hf{height:30.190743px;}
.hb{height:30.461558px;}
.hc{height:30.670772px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h1a{height:34.430832px;}
.h14{height:34.813397px;}
.h26{height:35.038969px;}
.h19{height:35.052500px;}
.h1f{height:35.690062px;}
.he{height:37.738429px;}
.h15{height:38.734848px;}
.h16{height:39.165235px;}
.h1c{height:39.434227px;}
.h25{height:39.951563px;}
.h17{height:43.038432px;}
.h18{height:43.516637px;}
.h2b{height:43.798711px;}
.h10{height:43.815515px;}
.h21{height:44.213063px;}
.h28{height:44.612578px;}
.h7{height:45.960000px;}
.h34{height:46.366523px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h2a{height:49.939453px;}
.hd{height:51.022950px;}
.h12{height:54.411312px;}
.h2{height:55.152000px;}
.h29{height:55.266328px;}
.h1d{height:61.807397px;}
.h1b{height:63.205397px;}
.h11{height:77.469696px;}
.h5{height:78.132000px;}
.h4{height:119.055004px;}
.h33{height:203.386500px;}
.h23{height:223.224000px;}
.h35{height:240.174000px;}
.h27{height:261.196500px;}
.h20{height:268.728000px;}
.h31{height:270.165000px;}
.h2d{height:280.116000px;}
.h30{height:291.993000px;}
.h2c{height:299.035500px;}
.h1e{height:527.341200px;}
.h0{height:1262.833500px;}
.ha{height:1262.835000px;}
.h1{height:1263.000000px;}
.wa{width:131.395500px;}
.w4{width:233.211061px;}
.wd{width:264.042000px;}
.w9{width:265.924500px;}
.we{width:322.029000px;}
.w7{width:361.575000px;}
.w5{width:375.256800px;}
.wc{width:389.322600px;}
.w8{width:397.314000px;}
.w6{width:474.567000px;}
.wf{width:574.948500px;}
.w2{width:637.794021px;}
.wb{width:653.358600px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.xc0{left:-199.839000px;}
.x96{left:-197.737500px;}
.x99{left:-196.686000px;}
.xa1{left:-193.006500px;}
.x8c{left:-165.988800px;}
.xa7{left:-69.608400px;}
.x90{left:-9.436800px;}
.xc2{left:-4.149000px;}
.x97{left:-2.047500px;}
.x0{left:0.000000px;}
.xa2{left:2.683500px;}
.x91{left:16.051200px;}
.xc1{left:27.711000px;}
.x98{left:29.812500px;}
.x9a{left:30.864000px;}
.xa3{left:34.543500px;}
.x5{left:53.574000px;}
.x6{left:56.951817px;}
.x69{left:82.594500px;}
.xc6{left:85.848000px;}
.x60{left:90.021000px;}
.x75{left:96.916500px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xa6{left:119.565900px;}
.xa5{left:124.560000px;}
.xa8{left:126.081600px;}
.x68{left:139.708500px;}
.x5f{left:145.110000px;}
.xa9{left:157.941600px;}
.xac{left:180.126600px;}
.x8e{left:181.279200px;}
.x4{left:203.484001px;}
.x9{left:248.526000px;}
.x7{left:249.591000px;}
.xa4{left:257.818500px;}
.x74{left:259.378500px;}
.x8{left:269.520000px;}
.x6f{left:273.274500px;}
.x6a{left:279.430500px;}
.xc{left:281.331000px;}
.x79{left:288.093000px;}
.x44{left:291.982500px;}
.x5b{left:296.800500px;}
.x6b{left:302.958000px;}
.x92{left:305.671500px;}
.x45{left:306.925500px;}
.xa{left:308.121000px;}
.x46{left:310.639500px;}
.x5c{left:311.745000px;}
.x53{left:316.828500px;}
.x7a{left:318.871500px;}
.xb{left:319.875000px;}
.x88{left:321.340500px;}
.x62{left:322.519500px;}
.x70{left:323.862000px;}
.x47{left:325.584000px;}
.xb1{left:327.364500px;}
.x67{left:328.455000px;}
.x54{left:331.773000px;}
.x76{left:333.450000px;}
.x55{left:335.490000px;}
.xbd{left:337.339500px;}
.x83{left:339.703500px;}
.x61{left:340.786500px;}
.x42{left:344.847000px;}
.x56{left:350.434500px;}
.x8b{left:353.164500px;}
.xb9{left:354.775500px;}
.xbe{left:356.094000px;}
.x87{left:358.527000px;}
.x43{left:359.791500px;}
.x8a{left:364.218000px;}
.x9b{left:366.099000px;}
.x86{left:371.623500px;}
.x8d{left:373.699200px;}
.x81{left:376.764000px;}
.x8f{left:379.459200px;}
.xaa{left:381.216600px;}
.x48{left:386.748000px;}
.xc5{left:390.694500px;}
.x7e{left:391.720500px;}
.x82{left:393.669000px;}
.x84{left:395.563500px;}
.x80{left:398.110500px;}
.x49{left:401.692500px;}
.x85{left:405.964500px;}
.x4a{left:409.111500px;}
.x1d{left:418.228500px;}
.x4b{left:424.056000px;}
.x1e{left:425.401500px;}
.x1f{left:428.907000px;}
.x20{left:436.080000px;}
.x21{left:442.879500px;}
.x3{left:454.959000px;}
.x73{left:457.026000px;}
.x7b{left:462.208500px;}
.x7f{left:464.775000px;}
.x71{left:466.135500px;}
.x6d{left:471.586500px;}
.x78{left:475.138500px;}
.x65{left:479.413500px;}
.x64{left:481.456500px;}
.x35{left:483.745500px;}
.x3e{left:484.746000px;}
.x89{left:487.131000px;}
.x5d{left:491.532000px;}
.x36{left:498.688500px;}
.x3f{left:499.690500px;}
.x2f{left:502.542000px;}
.x40{left:507.312000px;}
.xab{left:508.882500px;}
.x2a{left:514.896000px;}
.x30{left:517.485000px;}
.x2b{left:522.369000px;}
.x2c{left:526.141500px;}
.xd{left:527.391000px;}
.xe{left:534.564000px;}
.xf{left:537.931500px;}
.x2d{left:541.086000px;}
.x63{left:544.059000px;}
.x10{left:545.104500px;}
.x31{left:558.688500px;}
.x2e{left:559.803000px;}
.x6c{left:563.515500px;}
.x93{left:564.889500px;}
.x6e{left:566.301000px;}
.x77{left:570.682500px;}
.x32{left:573.633000px;}
.x33{left:577.443000px;}
.xc3{left:578.631000px;}
.x72{left:580.144500px;}
.x15{left:582.745500px;}
.x34{left:585.453000px;}
.x16{left:589.918500px;}
.x17{left:593.287500px;}
.x4c{left:596.827500px;}
.xc4{left:599.350500px;}
.x18{left:600.460500px;}
.x4d{left:604.188000px;}
.x5e{left:607.962000px;}
.x66{left:609.931500px;}
.x3a{left:611.935500px;}
.x57{left:616.372500px;}
.x4e{left:619.132500px;}
.x3b{left:626.878500px;}
.x51{left:631.284000px;}
.x3c{left:634.500000px;}
.x26{left:636.511500px;}
.xb7{left:638.742000px;}
.x4f{left:642.214500px;}
.x27{left:643.984500px;}
.x52{left:646.227000px;}
.x28{left:647.791500px;}
.x3d{left:649.444500px;}
.xb0{left:654.087000px;}
.x29{left:655.263000px;}
.x50{left:657.159000px;}
.x58{left:659.619000px;}
.x19{left:660.763500px;}
.x39{left:663.378000px;}
.x1a{left:667.936500px;}
.xad{left:669.249000px;}
.x1b{left:671.442000px;}
.x59{left:674.563500px;}
.x1c{left:678.615000px;}
.xce{left:685.846500px;}
.x5a{left:693.318000px;}
.xcd{left:697.431000px;}
.x94{left:708.630000px;}
.x95{left:716.445000px;}
.xb2{left:722.673000px;}
.xb8{left:725.596500px;}
.xcf{left:727.656000px;}
.xd0{left:732.373500px;}
.xb3{left:736.719000px;}
.xbf{left:737.901000px;}
.xb4{left:739.941000px;}
.xca{left:742.489500px;}
.x9c{left:743.794500px;}
.x7c{left:748.323000px;}
.xcc{left:750.226500px;}
.xb5{left:753.988500px;}
.xd2{left:755.434500px;}
.x41{left:758.920500px;}
.x22{left:759.921000px;}
.xba{left:762.231000px;}
.x7d{left:763.267500px;}
.xc7{left:764.748000px;}
.x9d{left:766.330500px;}
.xcb{left:769.387500px;}
.x23{left:774.864000px;}
.xbb{left:777.174000px;}
.x24{left:778.630500px;}
.x9e{left:781.275000px;}
.xd3{left:782.334000px;}
.x9f{left:785.070000px;}
.xd1{left:790.171500px;}
.xc8{left:791.646000px;}
.x25{left:793.575000px;}
.xa0{left:800.014500px;}
.xae{left:801.835500px;}
.xbc{left:803.251500px;}
.xaf{left:810.054000px;}
.xb6{left:813.975000px;}
.x11{left:815.100000px;}
.x37{left:816.951000px;}
.x12{left:822.273000px;}
.x13{left:825.780000px;}
.x38{left:831.894000px;}
.x14{left:832.953000px;}
.xc9{left:837.165000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.v4{vertical-align:23.994667pt;}
.v3{vertical-align:25.237333pt;}
.ls14{letter-spacing:-0.576000pt;}
.ls22{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls23{letter-spacing:-0.122667pt;}
.ls1e{letter-spacing:-0.112000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.000159pt;}
.ls2{letter-spacing:0.000533pt;}
.ls26{letter-spacing:0.002212pt;}
.ls34{letter-spacing:0.004267pt;}
.lsf{letter-spacing:0.012800pt;}
.ls19{letter-spacing:0.016000pt;}
.ls25{letter-spacing:0.053134pt;}
.lsb{letter-spacing:0.076800pt;}
.lsc{letter-spacing:0.089600pt;}
.ls21{letter-spacing:0.094933pt;}
.ls10{letter-spacing:0.096000pt;}
.ls1d{letter-spacing:0.098133pt;}
.ls1a{letter-spacing:0.112000pt;}
.lsd{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.146944pt;}
.ls11{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.183467pt;}
.ls18{letter-spacing:0.183680pt;}
.ls8{letter-spacing:0.184832pt;}
.ls16{letter-spacing:0.231040pt;}
.ls9{letter-spacing:0.256000pt;}
.ls1f{letter-spacing:0.272533pt;}
.ls17{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.436267pt;}
.ls1{letter-spacing:9.298933pt;}
.ls32{letter-spacing:10.433916pt;}
.ls7{letter-spacing:10.626533pt;}
.ls33{letter-spacing:10.653266pt;}
.ls2a{letter-spacing:11.233916pt;}
.ls35{letter-spacing:11.255684pt;}
.ls2d{letter-spacing:11.704931pt;}
.ls2f{letter-spacing:11.742069pt;}
.ls2e{letter-spacing:11.925159pt;}
.ls28{letter-spacing:11.954133pt;}
.ls2b{letter-spacing:11.959467pt;}
.ls37{letter-spacing:11.979494pt;}
.ls36{letter-spacing:11.994083pt;}
.ls30{letter-spacing:12.052840pt;}
.ls29{letter-spacing:12.126266pt;}
.ls31{letter-spacing:12.183434pt;}
.ls38{letter-spacing:13.053950pt;}
.ls12{letter-spacing:13.230333pt;}
.ls24{letter-spacing:13.496002pt;}
.ls2c{letter-spacing:14.823467pt;}
.ls3{letter-spacing:51.035733pt;}
.ls5{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.ls4{letter-spacing:64.321067pt;}
.ls1c{letter-spacing:754.826667pt;}
.ws82{word-spacing:-53.120000pt;}
.ws7f{word-spacing:-48.000000pt;}
.ws86{word-spacing:-13.600000pt;}
.ws8c{word-spacing:-13.552533pt;}
.ws8f{word-spacing:-13.463467pt;}
.ws85{word-spacing:-13.378133pt;}
.ws8d{word-spacing:-13.374933pt;}
.ws24{word-spacing:-13.283467pt;}
.ws8e{word-spacing:-13.280000pt;}
.ws90{word-spacing:-13.157333pt;}
.ws7e{word-spacing:-12.704000pt;}
.ws80{word-spacing:-12.000000pt;}
.wsd0{word-spacing:-11.955200pt;}
.ws87{word-spacing:-11.888000pt;}
.ws81{word-spacing:-11.808000pt;}
.wsb2{word-spacing:-11.040000pt;}
.ws7c{word-spacing:-10.720000pt;}
.ws32{word-spacing:-10.626800pt;}
.ws7d{word-spacing:-10.400000pt;}
.ws10{word-spacing:-10.095467pt;}
.ws78{word-spacing:-9.600000pt;}
.ws3{word-spacing:-9.298400pt;}
.ws76{word-spacing:-8.576000pt;}
.ws77{word-spacing:-8.320000pt;}
.ws7b{word-spacing:-4.160410pt;}
.ws7a{word-spacing:-4.112589pt;}
.ws92{word-spacing:-3.241166pt;}
.ws99{word-spacing:-2.922363pt;}
.ws79{word-spacing:-2.534502pt;}
.ws4b{word-spacing:-2.391024pt;}
.ws21{word-spacing:-2.284756pt;}
.ws94{word-spacing:-2.072221pt;}
.ws11a{word-spacing:-2.056294pt;}
.ws62{word-spacing:-2.019087pt;}
.ws44{word-spacing:-1.965953pt;}
.ws109{word-spacing:-1.960653pt;}
.ws95{word-spacing:-1.912819pt;}
.ws22{word-spacing:-1.806551pt;}
.ws25{word-spacing:-1.700284pt;}
.ws98{word-spacing:-1.647150pt;}
.ws2a{word-spacing:-1.540882pt;}
.ws10b{word-spacing:-1.530266pt;}
.wsc7{word-spacing:-1.487748pt;}
.ws27{word-spacing:-1.434614pt;}
.ws6c{word-spacing:-1.381481pt;}
.ws2b{word-spacing:-1.328347pt;}
.ws10c{word-spacing:-1.291162pt;}
.ws29{word-spacing:-1.275213pt;}
.ws47{word-spacing:-1.222079pt;}
.wsc5{word-spacing:-1.168945pt;}
.ws8b{word-spacing:-1.115811pt;}
.wsa5{word-spacing:-1.062677pt;}
.ws4{word-spacing:-1.041421pt;}
.wsa6{word-spacing:-1.009543pt;}
.wsd6{word-spacing:-0.956416pt;}
.wsa7{word-spacing:-0.956410pt;}
.ws6{word-spacing:-0.929840pt;}
.wsb7{word-spacing:-0.903276pt;}
.wsc4{word-spacing:-0.850142pt;}
.ws40{word-spacing:-0.743874pt;}
.ws111{word-spacing:-0.717312pt;}
.wsab{word-spacing:-0.637606pt;}
.wsb1{word-spacing:-0.584473pt;}
.wsc6{word-spacing:-0.531339pt;}
.ws89{word-spacing:-0.478205pt;}
.wsa4{word-spacing:-0.425071pt;}
.ws93{word-spacing:-0.371937pt;}
.ws100{word-spacing:-0.334746pt;}
.ws38{word-spacing:-0.318803pt;}
.wscb{word-spacing:-0.286925pt;}
.ws45{word-spacing:-0.265669pt;}
.ws19{word-spacing:-0.239104pt;}
.ws2e{word-spacing:-0.212535pt;}
.ws1d{word-spacing:-0.191283pt;}
.ws2c{word-spacing:-0.159402pt;}
.ws16{word-spacing:-0.143462pt;}
.ws2d{word-spacing:-0.106268pt;}
.wscd{word-spacing:-0.095642pt;}
.wse{word-spacing:-0.053134pt;}
.ws15{word-spacing:-0.047821pt;}
.ws11{word-spacing:-0.042507pt;}
.ws6e{word-spacing:-0.001770pt;}
.wsf{word-spacing:-0.000793pt;}
.ws0{word-spacing:0.000000pt;}
.ws14{word-spacing:0.047821pt;}
.ws4e{word-spacing:0.053134pt;}
.ws13{word-spacing:0.095642pt;}
.ws2f{word-spacing:0.106268pt;}
.ws88{word-spacing:0.143462pt;}
.ws30{word-spacing:0.159402pt;}
.ws5f{word-spacing:0.170029pt;}
.wsdb{word-spacing:0.191283pt;}
.ws6a{word-spacing:0.197365pt;}
.ws4a{word-spacing:0.212535pt;}
.ws103{word-spacing:0.239104pt;}
.ws52{word-spacing:0.265669pt;}
.wsdd{word-spacing:0.286925pt;}
.ws3f{word-spacing:0.318803pt;}
.wsd9{word-spacing:0.334746pt;}
.wsb6{word-spacing:0.371937pt;}
.wsd4{word-spacing:0.382566pt;}
.ws114{word-spacing:0.430387pt;}
.ws4c{word-spacing:0.478205pt;}
.ws112{word-spacing:0.526029pt;}
.ws63{word-spacing:0.531339pt;}
.ws4f{word-spacing:0.637606pt;}
.wsce{word-spacing:0.669491pt;}
.ws9d{word-spacing:0.690740pt;}
.wsa9{word-spacing:0.743874pt;}
.ws26{word-spacing:0.797008pt;}
.ws11f{word-spacing:0.812954pt;}
.ws37{word-spacing:0.850142pt;}
.ws5{word-spacing:0.892646pt;}
.ws9a{word-spacing:0.903276pt;}
.ws3d{word-spacing:0.956410pt;}
.ws8a{word-spacing:1.009543pt;}
.ws5c{word-spacing:1.062677pt;}
.ws121{word-spacing:1.099878pt;}
.ws43{word-spacing:1.115811pt;}
.ws1e{word-spacing:1.147699pt;}
.ws20{word-spacing:1.168945pt;}
.wsbf{word-spacing:1.222079pt;}
.ws28{word-spacing:1.328347pt;}
.wsf2{word-spacing:1.338982pt;}
.ws54{word-spacing:1.381481pt;}
.ws53{word-spacing:1.434614pt;}
.ws34{word-spacing:1.487748pt;}
.ws18{word-spacing:1.530266pt;}
.ws3e{word-spacing:1.594016pt;}
.wse4{word-spacing:1.625907pt;}
.ws108{word-spacing:1.673728pt;}
.wsf6{word-spacing:1.721549pt;}
.ws122{word-spacing:1.769370pt;}
.ws84{word-spacing:1.806551pt;}
.ws35{word-spacing:1.859685pt;}
.wscc{word-spacing:1.865011pt;}
.wsbb{word-spacing:1.912819pt;}
.wsf0{word-spacing:1.912832pt;}
.ws9c{word-spacing:1.965953pt;}
.ws57{word-spacing:2.019087pt;}
.ws1b{word-spacing:2.104115pt;}
.ws55{word-spacing:2.178489pt;}
.ws3b{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.wsbc{word-spacing:2.284756pt;}
.ws51{word-spacing:2.497292pt;}
.ws42{word-spacing:2.550426pt;}
.ws12{word-spacing:2.550432pt;}
.wsc2{word-spacing:2.603559pt;}
.ws97{word-spacing:2.656693pt;}
.wsad{word-spacing:2.709827pt;}
.ws36{word-spacing:2.762961pt;}
.ws3c{word-spacing:2.816095pt;}
.ws117{word-spacing:2.861005pt;}
.wse5{word-spacing:2.861389pt;}
.ws11d{word-spacing:2.862524pt;}
.wse1{word-spacing:2.862566pt;}
.ws123{word-spacing:2.863317pt;}
.wsf8{word-spacing:2.863787pt;}
.ws105{word-spacing:2.866065pt;}
.wsed{word-spacing:2.867209pt;}
.ws4d{word-spacing:2.869229pt;}
.ws107{word-spacing:2.869248pt;}
.ws83{word-spacing:2.922363pt;}
.ws33{word-spacing:2.975497pt;}
.wsb8{word-spacing:3.028630pt;}
.wse3{word-spacing:3.060531pt;}
.wsaa{word-spacing:3.081764pt;}
.ws1f{word-spacing:3.188032pt;}
.ws23{word-spacing:3.241166pt;}
.wsdf{word-spacing:3.251814pt;}
.ws5a{word-spacing:3.347434pt;}
.ws17{word-spacing:3.490918pt;}
.wsb0{word-spacing:3.506835pt;}
.wsa3{word-spacing:3.559969pt;}
.wsc3{word-spacing:3.719371pt;}
.wsba{word-spacing:3.825638pt;}
.wsaf{word-spacing:3.878772pt;}
.wsc0{word-spacing:3.931906pt;}
.ws118{word-spacing:4.016947pt;}
.ws49{word-spacing:4.038174pt;}
.wsa0{word-spacing:4.144442pt;}
.wsb3{word-spacing:4.197575pt;}
.wsc{word-spacing:4.240070pt;}
.wsa8{word-spacing:4.250709pt;}
.ws41{word-spacing:4.303843pt;}
.wsd{word-spacing:4.314458pt;}
.ws3a{word-spacing:4.356977pt;}
.ws48{word-spacing:4.410111pt;}
.wsf9{word-spacing:4.447334pt;}
.wsa1{word-spacing:4.569513pt;}
.ws66{word-spacing:4.593577pt;}
.ws68{word-spacing:4.622646pt;}
.ws59{word-spacing:4.728914pt;}
.ws39{word-spacing:4.835182pt;}
.ws56{word-spacing:4.994583pt;}
.wsbd{word-spacing:5.047717pt;}
.ws1c{word-spacing:5.164646pt;}
.ws96{word-spacing:5.260253pt;}
.wsac{word-spacing:5.313387pt;}
.wsae{word-spacing:5.419654pt;}
.ws91{word-spacing:5.472788pt;}
.ws58{word-spacing:5.579056pt;}
.ws50{word-spacing:5.738458pt;}
.wse7{word-spacing:5.786317pt;}
.ws5b{word-spacing:5.844725pt;}
.wsc8{word-spacing:5.897859pt;}
.wsbe{word-spacing:6.004127pt;}
.wsc9{word-spacing:6.216662pt;}
.ws1a{word-spacing:6.216704pt;}
.wsb5{word-spacing:6.322930pt;}
.wsc1{word-spacing:6.376064pt;}
.ws9e{word-spacing:6.429198pt;}
.wsa2{word-spacing:6.694867pt;}
.wsb9{word-spacing:6.748001pt;}
.wsa{word-spacing:6.918010pt;}
.ws46{word-spacing:7.013670pt;}
.ws9b{word-spacing:7.066804pt;}
.wsca{word-spacing:7.986074pt;}
.wsb4{word-spacing:8.076348pt;}
.ws11b{word-spacing:9.851085pt;}
.ws113{word-spacing:10.233651pt;}
.ws10d{word-spacing:10.616218pt;}
.ws8{word-spacing:10.823338pt;}
.wsd7{word-spacing:10.950963pt;}
.ws2{word-spacing:11.492822pt;}
.wsdc{word-spacing:11.668275pt;}
.wsfe{word-spacing:11.716096pt;}
.wsd3{word-spacing:11.763917pt;}
.wsef{word-spacing:11.811738pt;}
.ws6d{word-spacing:11.848852pt;}
.ws119{word-spacing:11.859558pt;}
.ws124{word-spacing:11.897148pt;}
.ws11e{word-spacing:11.898368pt;}
.wsee{word-spacing:11.899110pt;}
.wsf3{word-spacing:11.901201pt;}
.ws11c{word-spacing:11.902071pt;}
.wseb{word-spacing:11.902908pt;}
.wse2{word-spacing:11.903078pt;}
.wsde{word-spacing:11.904034pt;}
.wse8{word-spacing:11.906748pt;}
.wsd1{word-spacing:11.907379pt;}
.wsfc{word-spacing:11.955200pt;}
.wsfb{word-spacing:12.003021pt;}
.wsf4{word-spacing:12.050842pt;}
.wsd5{word-spacing:12.289946pt;}
.ws31{word-spacing:13.134725pt;}
.ws6f{word-spacing:13.230333pt;}
.ws64{word-spacing:13.336601pt;}
.ws69{word-spacing:13.389734pt;}
.ws6b{word-spacing:13.442868pt;}
.ws9{word-spacing:14.319536pt;}
.ws10a{word-spacing:14.346240pt;}
.wsda{word-spacing:14.489702pt;}
.wsec{word-spacing:14.585344pt;}
.wse9{word-spacing:14.680986pt;}
.wsf7{word-spacing:14.728806pt;}
.wsff{word-spacing:14.768324pt;}
.ws116{word-spacing:14.770509pt;}
.ws110{word-spacing:14.771780pt;}
.ws10f{word-spacing:14.772617pt;}
.wsfd{word-spacing:14.772625pt;}
.wse6{word-spacing:14.772710pt;}
.ws125{word-spacing:14.773777pt;}
.wsea{word-spacing:14.774118pt;}
.wsf5{word-spacing:14.774485pt;}
.wsfa{word-spacing:14.774605pt;}
.ws102{word-spacing:14.776516pt;}
.wscf{word-spacing:14.776627pt;}
.ws101{word-spacing:14.824448pt;}
.ws10e{word-spacing:14.872269pt;}
.wsd8{word-spacing:14.967910pt;}
.wsd2{word-spacing:15.015731pt;}
.ws104{word-spacing:15.063552pt;}
.wse0{word-spacing:15.159194pt;}
.ws106{word-spacing:15.207014pt;}
.wsf1{word-spacing:15.780864pt;}
.ws9f{word-spacing:15.833892pt;}
.ws61{word-spacing:16.418365pt;}
.ws115{word-spacing:16.498176pt;}
.ws120{word-spacing:17.693696pt;}
.ws67{word-spacing:17.799845pt;}
.ws65{word-spacing:17.817561pt;}
.wsb{word-spacing:23.208806pt;}
.ws7{word-spacing:23.858002pt;}
.ws60{word-spacing:561.966433pt;}
.ws5e{word-spacing:591.275152pt;}
.ws5d{word-spacing:629.659154pt;}
.ws71{word-spacing:849.633914pt;}
.ws70{word-spacing:850.569072pt;}
.ws73{word-spacing:893.713880pt;}
.ws72{word-spacing:908.251342pt;}
.ws75{word-spacing:927.507104pt;}
.ws74{word-spacing:951.948744pt;}
._1b{margin-left:-6.418575pt;}
._0{margin-left:-5.467459pt;}
._d{margin-left:-4.303872pt;}
._8{margin-left:-3.101863pt;}
._2{margin-left:-1.338970pt;}
._9{width:0.912228pt;}
._5{width:2.045648pt;}
._b{width:3.268612pt;}
._37{width:4.283023pt;}
._3a{width:5.760000pt;}
._39{width:7.436800pt;}
._3b{width:8.355795pt;}
._3{width:9.298400pt;}
._6{width:10.295486pt;}
._1{width:11.530016pt;}
._1a{width:12.773374pt;}
._12{width:13.917210pt;}
._c{width:14.824435pt;}
._1c{width:15.738247pt;}
._11{width:16.630900pt;}
._e{width:17.884979pt;}
._10{width:19.176141pt;}
._18{width:20.244003pt;}
._f{width:21.519360pt;}
._4{width:23.062165pt;}
._17{width:24.600980pt;}
._15{width:25.791171pt;}
._7{width:27.188522pt;}
._19{width:28.442535pt;}
._a{width:29.648896pt;}
._16{width:31.508383pt;}
._3f{width:33.484959pt;}
._3d{width:36.237297pt;}
._3c{width:37.456040pt;}
._42{width:54.993920pt;}
._41{width:78.904320pt;}
._20{width:268.775622pt;}
._13{width:334.999243pt;}
._28{width:466.431506pt;}
._1f{width:557.620094pt;}
._24{width:561.902677pt;}
._27{width:574.370960pt;}
._23{width:620.456338pt;}
._2d{width:623.123690pt;}
._30{width:655.163474pt;}
._2f{width:671.571253pt;}
._2c{width:700.826851pt;}
._2b{width:714.046590pt;}
._25{width:731.336376pt;}
._2a{width:733.387366pt;}
._1e{width:737.244877pt;}
._34{width:758.923549pt;}
._31{width:776.394008pt;}
._21{width:781.622394pt;}
._32{width:787.573402pt;}
._26{width:790.687072pt;}
._33{width:795.777291pt;}
._35{width:823.364464pt;}
._29{width:825.022245pt;}
._2e{width:829.102936pt;}
._1d{width:857.455238pt;}
._22{width:876.668493pt;}
._36{width:1089.716241pt;}
._40{width:1339.473073pt;}
._38{width:1361.233073pt;}
._3e{width:1728.258911pt;}
._14{width:1749.512245pt;}
.fsc{font-size:31.880533pt;}
.fsf{font-size:34.304000pt;}
.fs7{font-size:34.633760pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs11{font-size:38.400000pt;}
.fs8{font-size:39.581440pt;}
.fsb{font-size:40.381867pt;}
.fs10{font-size:42.496000pt;}
.fsd{font-size:42.507200pt;}
.fs12{font-size:42.880000pt;}
.fse{font-size:47.820800pt;}
.fs14{font-size:48.000000pt;}
.fs6{font-size:49.476800pt;}
.fs13{font-size:53.120000pt;}
.fs9{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fsa{font-size:95.641600pt;}
.y174{bottom:-659.756000pt;}
.y134{bottom:-652.344000pt;}
.y173{bottom:-640.396000pt;}
.y133{bottom:-635.224000pt;}
.y172{bottom:-623.276000pt;}
.y132{bottom:-618.109333pt;}
.y171{bottom:-606.321333pt;}
.y131{bottom:-600.989333pt;}
.y1d2{bottom:-600.688000pt;}
.y170{bottom:-589.201333pt;}
.y130{bottom:-584.029333pt;}
.y1d1{bottom:-583.568000pt;}
.y16f{bottom:-572.081333pt;}
.y12f{bottom:-566.909333pt;}
.y1d0{bottom:-566.608000pt;}
.y16e{bottom:-554.961333pt;}
.y12e{bottom:-549.789333pt;}
.y1cf{bottom:-549.488000pt;}
.y16d{bottom:-537.841333pt;}
.y12d{bottom:-532.669333pt;}
.y1ce{bottom:-532.373333pt;}
.y16c{bottom:-520.881333pt;}
.y1cd{bottom:-515.253333pt;}
.y12c{bottom:-511.709333pt;}
.y1cc{bottom:-498.133333pt;}
.y16b{bottom:-488.241333pt;}
.y21e{bottom:-482.181333pt;}
.y1cb{bottom:-481.173333pt;}
.y12b{bottom:-478.909333pt;}
.y16a{bottom:-472.881333pt;}
.y21d{bottom:-465.061333pt;}
.y1ca{bottom:-464.053333pt;}
.y12a{bottom:-459.029333pt;}
.y169{bottom:-448.681333pt;}
.y21c{bottom:-448.101333pt;}
.y1c9{bottom:-446.933333pt;}
.y168{bottom:-434.761333pt;}
.y21b{bottom:-430.986667pt;}
.y1c8{bottom:-429.813333pt;}
.y21a{bottom:-413.866667pt;}
.y1c7{bottom:-412.693333pt;}
.y219{bottom:-396.746667pt;}
.y1c6{bottom:-395.733333pt;}
.y218{bottom:-379.626667pt;}
.y1c5{bottom:-378.573333pt;}
.y217{bottom:-362.666667pt;}
.y1c4{bottom:-361.453333pt;}
.y216{bottom:-345.546667pt;}
.y1c3{bottom:-344.333333pt;}
.y215{bottom:-328.426667pt;}
.y1c2{bottom:-327.213333pt;}
.y214{bottom:-311.306667pt;}
.y1c1{bottom:-310.253333pt;}
.y213{bottom:-294.186667pt;}
.y1c0{bottom:-293.133333pt;}
.y212{bottom:-277.186667pt;}
.y1bf{bottom:-276.013333pt;}
.y211{bottom:-260.066667pt;}
.y1be{bottom:-258.893333pt;}
.y210{bottom:-242.946667pt;}
.y1bd{bottom:-241.773333pt;}
.y20f{bottom:-225.826667pt;}
.y1bc{bottom:-224.653333pt;}
.y20e{bottom:-208.706667pt;}
.y1bb{bottom:-207.693333pt;}
.y198{bottom:-205.592000pt;}
.y20d{bottom:-191.746667pt;}
.y155{bottom:-190.797333pt;}
.y1ba{bottom:-190.573333pt;}
.y197{bottom:-186.232000pt;}
.y20c{bottom:-174.626667pt;}
.y154{bottom:-173.677333pt;}
.y1b9{bottom:-173.453333pt;}
.y129{bottom:-173.082667pt;}
.y167{bottom:-172.974667pt;}
.y196{bottom:-169.112000pt;}
.y20b{bottom:-157.506667pt;}
.y153{bottom:-156.562667pt;}
.y1b8{bottom:-156.333333pt;}
.y128{bottom:-155.962667pt;}
.y166{bottom:-155.854667pt;}
.y195{bottom:-152.157333pt;}
.y20a{bottom:-140.386667pt;}
.y152{bottom:-139.442667pt;}
.y1b7{bottom:-139.186667pt;}
.y127{bottom:-138.842667pt;}
.y165{bottom:-138.734667pt;}
.y194{bottom:-135.037333pt;}
.y116{bottom:-123.897600pt;}
.y209{bottom:-123.266667pt;}
.y151{bottom:-122.482667pt;}
.y1b6{bottom:-122.226667pt;}
.y126{bottom:-121.722667pt;}
.y164{bottom:-121.614667pt;}
.y193{bottom:-117.917333pt;}
.y115{bottom:-110.201600pt;}
.y208{bottom:-106.306667pt;}
.y150{bottom:-105.362667pt;}
.y1b5{bottom:-105.106667pt;}
.y125{bottom:-104.602667pt;}
.y163{bottom:-104.494667pt;}
.y192{bottom:-100.797333pt;}
.y114{bottom:-96.473600pt;}
.y207{bottom:-89.186667pt;}
.y14f{bottom:-88.242667pt;}
.y1b4{bottom:-87.986667pt;}
.y162{bottom:-87.534667pt;}
.y124{bottom:-87.482667pt;}
.y191{bottom:-83.677333pt;}
.y113{bottom:-82.777600pt;}
.y206{bottom:-72.066667pt;}
.y14e{bottom:-71.122667pt;}
.y1b3{bottom:-70.866667pt;}
.y123{bottom:-70.522667pt;}
.y161{bottom:-70.414667pt;}
.y112{bottom:-69.209600pt;}
.y190{bottom:-66.717333pt;}
.y205{bottom:-54.946667pt;}
.y111{bottom:-52.313600pt;}
.y14d{bottom:-50.162667pt;}
.y1b2{bottom:-49.906667pt;}
.y122{bottom:-49.402667pt;}
.y160{bottom:-49.294667pt;}
.y18f{bottom:-34.077333pt;}
.y110{bottom:-26.201600pt;}
.y204{bottom:-22.280000pt;}
.y18e{bottom:-18.717333pt;}
.y14c{bottom:-17.362667pt;}
.y1b1{bottom:-17.106667pt;}
.y121{bottom:-16.762667pt;}
.y15f{bottom:-16.654667pt;}
.y10f{bottom:-13.913600pt;}
.y203{bottom:-2.280000pt;}
.y0{bottom:0.000000pt;}
.y14b{bottom:2.517333pt;}
.y1b0{bottom:2.733333pt;}
.y10b{bottom:3.200000pt;}
.y120{bottom:3.277333pt;}
.y10e{bottom:3.328000pt;}
.y15e{bottom:3.345333pt;}
.y18d{bottom:4.160000pt;}
.y3b{bottom:11.257415pt;}
.y3a{bottom:23.131847pt;}
.y69{bottom:28.346667pt;}
.y5{bottom:59.133337pt;}
.y117{bottom:78.638667pt;}
.y19e{bottom:81.480000pt;}
.y15a{bottom:85.764000pt;}
.y4{bottom:86.333337pt;}
.y23f{bottom:88.102667pt;}
.y68{bottom:92.108000pt;}
.y2be{bottom:92.892000pt;}
.y38{bottom:93.018667pt;}
.y24f{bottom:94.884000pt;}
.y1ee{bottom:95.282667pt;}
.y19d{bottom:98.217333pt;}
.y106{bottom:98.576000pt;}
.y10d{bottom:100.662400pt;}
.y159{bottom:102.501333pt;}
.y23e{bottom:104.840000pt;}
.y284{bottom:105.604000pt;}
.y2bd{bottom:108.233333pt;}
.y67{bottom:108.844000pt;}
.y37{bottom:108.920000pt;}
.y24e{bottom:111.621333pt;}
.y9e{bottom:112.020000pt;}
.y19c{bottom:114.954667pt;}
.y10c{bottom:115.126400pt;}
.y158{bottom:119.237333pt;}
.y283{bottom:120.946667pt;}
.y23d{bottom:121.577333pt;}
.y2bc{bottom:123.576000pt;}
.y22{bottom:123.790666pt;}
.y36{bottom:124.820000pt;}
.y66{bottom:125.581333pt;}
.y24d{bottom:128.358667pt;}
.y9d{bottom:128.757333pt;}
.y19b{bottom:131.692000pt;}
.y282{bottom:136.289333pt;}
.y23c{bottom:138.314667pt;}
.y2bb{bottom:138.918667pt;}
.y157{bottom:139.960000pt;}
.y35{bottom:140.720000pt;}
.y65{bottom:142.318667pt;}
.y24c{bottom:145.096000pt;}
.y9c{bottom:145.494667pt;}
.y1ed{bottom:148.429333pt;}
.y281{bottom:151.632000pt;}
.y2ba{bottom:154.261333pt;}
.y23b{bottom:155.052000pt;}
.y34{bottom:156.621333pt;}
.y64{bottom:159.056000pt;}
.y19a{bottom:160.501333pt;}
.y24b{bottom:161.833333pt;}
.y9b{bottom:162.232000pt;}
.yed{bottom:164.716000pt;}
.y1ec{bottom:165.166667pt;}
.y280{bottom:166.974667pt;}
.y156{bottom:167.006667pt;}
.yb0{bottom:168.133333pt;}
.y2b9{bottom:169.604000pt;}
.y23a{bottom:171.789333pt;}
.y33{bottom:172.521333pt;}
.y19{bottom:175.052000pt;}
.y63{bottom:175.793333pt;}
.y199{bottom:177.597333pt;}
.y24a{bottom:178.570667pt;}
.y9a{bottom:178.969333pt;}
.yaf{bottom:180.753333pt;}
.yec{bottom:181.453333pt;}
.y1eb{bottom:181.904000pt;}
.y27f{bottom:182.317333pt;}
.y2b8{bottom:184.946667pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y13e{bottom:186.944000pt;}
.yae{bottom:187.062667pt;}
.y32{bottom:188.421333pt;}
.y239{bottom:188.525333pt;}
.y62{bottom:192.530667pt;}
.y249{bottom:195.308000pt;}
.y99{bottom:195.706667pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y27e{bottom:197.658667pt;}
.yeb{bottom:198.190667pt;}
.y1ea{bottom:198.641333pt;}
.y1af{bottom:199.253333pt;}
.y17e{bottom:200.190667pt;}
.y2b7{bottom:200.289333pt;}
.y18c{bottom:201.513333pt;}
.y31{bottom:204.322667pt;}
.y238{bottom:205.262667pt;}
.yad{bottom:205.992000pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y61{bottom:209.268000pt;}
.y248{bottom:212.045333pt;}
.y98{bottom:212.444000pt;}
.y27d{bottom:213.001333pt;}
.yea{bottom:214.928000pt;}
.y1e9{bottom:215.378667pt;}
.y2b6{bottom:215.632000pt;}
.y1ae{bottom:216.373333pt;}
.yac{bottom:218.612000pt;}
.y18b{bottom:219.593333pt;}
.y237{bottom:222.000000pt;}
.ya5{bottom:225.232000pt;}
.ya8{bottom:225.393333pt;}
.y60{bottom:226.005333pt;}
.y27c{bottom:228.344000pt;}
.y247{bottom:228.782667pt;}
.y97{bottom:229.181333pt;}
.y2b5{bottom:230.974667pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.yab{bottom:231.230667pt;}
.ye9{bottom:231.665333pt;}
.y1e8{bottom:232.116000pt;}
.y1ad{bottom:233.493333pt;}
.y202{bottom:237.600000pt;}
.y236{bottom:238.737333pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y5f{bottom:242.742667pt;}
.y27b{bottom:243.686667pt;}
.yaa{bottom:243.850667pt;}
.y246{bottom:245.520000pt;}
.y96{bottom:245.918667pt;}
.y2b4{bottom:246.316000pt;}
.ye8{bottom:248.402667pt;}
.y1e7{bottom:248.853333pt;}
.y1ac{bottom:250.613333pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y201{bottom:254.720000pt;}
.y235{bottom:255.474667pt;}
.ya9{bottom:256.469333pt;}
.y27a{bottom:259.029333pt;}
.y5e{bottom:259.480000pt;}
.y2b3{bottom:261.658667pt;}
.y245{bottom:262.257333pt;}
.y95{bottom:262.656000pt;}
.ye7{bottom:265.140000pt;}
.y1e6{bottom:265.590667pt;}
.y30{bottom:266.804000pt;}
.y1ab{bottom:267.573333pt;}
.ya7{bottom:269.089333pt;}
.y11f{bottom:269.224000pt;}
.y200{bottom:271.680000pt;}
.y234{bottom:272.212000pt;}
.y279{bottom:274.372000pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y5d{bottom:276.217333pt;}
.y2b2{bottom:277.001333pt;}
.y11e{bottom:277.704000pt;}
.y244{bottom:278.994667pt;}
.y94{bottom:279.393333pt;}
.y18a{bottom:281.189333pt;}
.ya6{bottom:281.708000pt;}
.y1e5{bottom:282.328000pt;}
.y2f{bottom:282.705333pt;}
.y15d{bottom:282.772000pt;}
.y1aa{bottom:284.693333pt;}
.ye6{bottom:285.862667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y14a{bottom:288.464000pt;}
.y1ff{bottom:288.800000pt;}
.y233{bottom:288.949333pt;}
.y278{bottom:289.714667pt;}
.y15c{bottom:291.252000pt;}
.y2b1{bottom:292.344000pt;}
.y5c{bottom:292.954667pt;}
.y25d{bottom:295.732000pt;}
.y93{bottom:296.129333pt;}
.y189{bottom:298.309333pt;}
.y2e{bottom:298.605333pt;}
.y1e4{bottom:299.065333pt;}
.y243{bottom:299.716000pt;}
.ya4{bottom:300.729333pt;}
.y277{bottom:305.057333pt;}
.y149{bottom:305.584000pt;}
.y232{bottom:305.686667pt;}
.y1a9{bottom:305.813333pt;}
.y2b0{bottom:307.686667pt;}
.y10{bottom:309.452000pt;}
.y5b{bottom:309.692000pt;}
.y1fe{bottom:309.920000pt;}
.y25c{bottom:312.469333pt;}
.y92{bottom:312.866667pt;}
.y10a{bottom:313.547733pt;}
.y2d{bottom:314.505333pt;}
.y188{bottom:315.429333pt;}
.ye5{bottom:315.750667pt;}
.y1e3{bottom:315.802667pt;}
.y276{bottom:320.400000pt;}
.y231{bottom:322.424000pt;}
.y148{bottom:322.704000pt;}
.y2af{bottom:323.029333pt;}
.y5a{bottom:326.429333pt;}
.y109{bottom:327.883733pt;}
.y25b{bottom:329.206667pt;}
.y91{bottom:329.604000pt;}
.ya3{bottom:330.097333pt;}
.y1fd{bottom:331.040000pt;}
.ye4{bottom:332.488000pt;}
.y1e2{bottom:332.540000pt;}
.y187{bottom:332.549333pt;}
.y275{bottom:335.741333pt;}
.y2ae{bottom:338.372000pt;}
.y2c{bottom:338.376000pt;}
.y230{bottom:339.161333pt;}
.y147{bottom:339.824000pt;}
.y59{bottom:343.166667pt;}
.yf{bottom:343.809333pt;}
.y25a{bottom:345.944000pt;}
.y90{bottom:346.341333pt;}
.ye3{bottom:349.225333pt;}
.y1e1{bottom:349.277333pt;}
.y186{bottom:349.669333pt;}
.y274{bottom:351.084000pt;}
.y2ad{bottom:353.714667pt;}
.y2b{bottom:354.277333pt;}
.y1a8{bottom:354.480000pt;}
.y22f{bottom:355.898667pt;}
.y146{bottom:356.944000pt;}
.y58{bottom:359.904000pt;}
.y259{bottom:362.680000pt;}
.ye{bottom:362.706666pt;}
.y1a7{bottom:362.960000pt;}
.y8f{bottom:363.078667pt;}
.y1fc{bottom:364.160000pt;}
.ye2{bottom:365.962667pt;}
.y1e0{bottom:366.014667pt;}
.y273{bottom:366.426667pt;}
.y185{bottom:366.629333pt;}
.y2ac{bottom:369.056000pt;}
.y2a{bottom:370.177333pt;}
.y22e{bottom:372.636000pt;}
.y145{bottom:374.064000pt;}
.y57{bottom:376.641333pt;}
.y258{bottom:379.417333pt;}
.y8e{bottom:379.816000pt;}
.y1fb{bottom:381.120000pt;}
.y272{bottom:381.769333pt;}
.ye1{bottom:382.698667pt;}
.y1df{bottom:382.752000pt;}
.y184{bottom:383.749333pt;}
.y2ab{bottom:384.398667pt;}
.y22d{bottom:389.373333pt;}
.y144{bottom:391.024000pt;}
.y29{bottom:394.048000pt;}
.y257{bottom:396.154667pt;}
.y8d{bottom:396.553333pt;}
.y271{bottom:397.112000pt;}
.y56{bottom:397.364000pt;}
.y1fa{bottom:398.240000pt;}
.ye0{bottom:399.436000pt;}
.y1de{bottom:399.489333pt;}
.y2aa{bottom:399.741333pt;}
.y183{bottom:404.869333pt;}
.y22c{bottom:406.110667pt;}
.y28{bottom:409.948000pt;}
.y143{bottom:412.144000pt;}
.y270{bottom:412.454667pt;}
.y256{bottom:412.892000pt;}
.y8c{bottom:413.290667pt;}
.y2a9{bottom:415.084000pt;}
.y1f9{bottom:415.360000pt;}
.ydf{bottom:416.173333pt;}
.y1dd{bottom:416.226667pt;}
.y22b{bottom:422.848000pt;}
.y27{bottom:425.848000pt;}
.y26f{bottom:427.797333pt;}
.y8b{bottom:430.028000pt;}
.y2a8{bottom:430.426667pt;}
.yd{bottom:430.990669pt;}
.yde{bottom:432.910667pt;}
.y1dc{bottom:432.964000pt;}
.y255{bottom:433.614667pt;}
.y182{bottom:437.509333pt;}
.y22a{bottom:439.585333pt;}
.y26{bottom:441.749333pt;}
.y26e{bottom:443.140000pt;}
.y142{bottom:444.784000pt;}
.y2a7{bottom:445.769333pt;}
.y8a{bottom:446.765333pt;}
.yc{bottom:446.990669pt;}
.ydd{bottom:449.648000pt;}
.y1db{bottom:449.701333pt;}
.y229{bottom:456.322667pt;}
.y181{bottom:457.509333pt;}
.y25{bottom:457.649333pt;}
.y26d{bottom:458.481333pt;}
.y55{bottom:461.049333pt;}
.y2a6{bottom:461.112000pt;}
.yb{bottom:462.990669pt;}
.y89{bottom:463.502667pt;}
.y1f8{bottom:464.026667pt;}
.y141{bottom:464.824000pt;}
.ydc{bottom:466.385333pt;}
.y1da{bottom:466.438667pt;}
.y1f7{bottom:472.506667pt;}
.y228{bottom:473.060000pt;}
.y24{bottom:473.549333pt;}
.y13d{bottom:473.766667pt;}
.y26c{bottom:473.824000pt;}
.y2a5{bottom:476.454667pt;}
.y54{bottom:478.344000pt;}
.ya{bottom:478.990666pt;}
.y17d{bottom:479.726667pt;}
.y88{bottom:480.240000pt;}
.y1d9{bottom:483.176000pt;}
.ydb{bottom:487.108000pt;}
.y23{bottom:489.450667pt;}
.y227{bottom:489.797333pt;}
.y13c{bottom:490.504000pt;}
.y2a4{bottom:491.797333pt;}
.y26b{bottom:493.152000pt;}
.y9{bottom:494.990666pt;}
.y17c{bottom:496.464000pt;}
.y108{bottom:496.497067pt;}
.y87{bottom:496.977333pt;}
.y1d8{bottom:499.912000pt;}
.y107{bottom:503.281067pt;}
.yda{bottom:505.041333pt;}
.y226{bottom:506.534667pt;}
.y2a3{bottom:507.138667pt;}
.y13b{bottom:507.241333pt;}
.y53{bottom:511.580000pt;}
.y17b{bottom:513.201333pt;}
.y86{bottom:513.714667pt;}
.y1d7{bottom:516.649333pt;}
.y2a2{bottom:522.481333pt;}
.y26a{bottom:523.040000pt;}
.y225{bottom:523.272000pt;}
.y13a{bottom:523.978667pt;}
.y52{bottom:528.874667pt;}
.y17a{bottom:529.938667pt;}
.y85{bottom:530.452000pt;}
.y1d6{bottom:533.386667pt;}
.y2a1{bottom:537.824000pt;}
.yd9{bottom:537.925333pt;}
.y224{bottom:540.009333pt;}
.y139{bottom:540.716000pt;}
.y51{bottom:546.170667pt;}
.y269{bottom:546.632000pt;}
.y179{bottom:546.676000pt;}
.y84{bottom:547.189333pt;}
.y1d5{bottom:550.124000pt;}
.yd8{bottom:550.545333pt;}
.y2a0{bottom:553.166667pt;}
.y223{bottom:556.746667pt;}
.y138{bottom:557.453333pt;}
.y178{bottom:563.413333pt;}
.y50{bottom:563.465333pt;}
.y83{bottom:563.926667pt;}
.y29f{bottom:568.509333pt;}
.yd7{bottom:569.353333pt;}
.y268{bottom:570.222667pt;}
.y1d4{bottom:570.846667pt;}
.y222{bottom:573.484000pt;}
.y8{bottom:573.786667pt;}
.y137{bottom:574.190667pt;}
.y177{bottom:580.150667pt;}
.y82{bottom:580.664000pt;}
.y4f{bottom:580.760000pt;}
.yd6{bottom:581.973333pt;}
.y29e{bottom:583.852000pt;}
.yd2{bottom:588.461333pt;}
.y221{bottom:590.221333pt;}
.y7{bottom:592.685334pt;}
.y267{bottom:593.814667pt;}
.yd5{bottom:594.592000pt;}
.y136{bottom:594.913333pt;}
.y1d3{bottom:595.570667pt;}
.y81{bottom:597.401333pt;}
.y4e{bottom:598.056000pt;}
.y29d{bottom:599.194667pt;}
.y176{bottom:600.873333pt;}
.yd1{bottom:601.080000pt;}
.ya2{bottom:601.386667pt;}
.y105{bottom:603.096000pt;}
.y220{bottom:606.958667pt;}
.yd4{bottom:607.212000pt;}
.y80{bottom:614.138667pt;}
.y29c{bottom:614.537333pt;}
.y4d{bottom:615.350667pt;}
.y1a6{bottom:615.506667pt;}
.y104{bottom:615.716000pt;}
.y266{bottom:617.406667pt;}
.yd3{bottom:619.830667pt;}
.y135{bottom:621.960000pt;}
.y175{bottom:626.892000pt;}
.y103{bottom:628.334667pt;}
.y29b{bottom:629.878667pt;}
.y7f{bottom:630.876000pt;}
.ya1{bottom:631.274667pt;}
.y4c{bottom:632.646667pt;}
.y265{bottom:633.028000pt;}
.y21f{bottom:636.794667pt;}
.yd0{bottom:638.852000pt;}
.y102{bottom:640.954667pt;}
.y11d{bottom:641.897333pt;}
.y29a{bottom:645.221333pt;}
.y6{bottom:645.598667pt;}
.y15b{bottom:646.829333pt;}
.y1f0{bottom:647.613333pt;}
.ya0{bottom:648.012000pt;}
.y264{bottom:648.649333pt;}
.y4b{bottom:649.941333pt;}
.ycf{bottom:651.472000pt;}
.y7e{bottom:651.597333pt;}
.y101{bottom:653.573333pt;}
.y1f6{bottom:659.388000pt;}
.y299{bottom:660.564000pt;}
.yc6{bottom:663.110667pt;}
.yce{bottom:664.090667pt;}
.y263{bottom:664.270667pt;}
.y242{bottom:664.350667pt;}
.y9f{bottom:664.749333pt;}
.y4a{bottom:667.236000pt;}
.y1ef{bottom:668.334667pt;}
.y3{bottom:668.977329pt;}
.yca{bottom:670.873333pt;}
.y100{bottom:672.596000pt;}
.y298{bottom:675.906667pt;}
.ycd{bottom:676.710667pt;}
.y241{bottom:681.088000pt;}
.y7d{bottom:681.485333pt;}
.y49{bottom:684.532000pt;}
.y262{bottom:687.862667pt;}
.ycc{bottom:689.329333pt;}
.y297{bottom:691.249333pt;}
.yff{bottom:691.617333pt;}
.y254{bottom:697.825333pt;}
.y7c{bottom:698.222667pt;}
.y240{bottom:701.809333pt;}
.y48{bottom:701.826667pt;}
.ycb{bottom:701.949333pt;}
.y261{bottom:703.484000pt;}
.yfe{bottom:704.236000pt;}
.y296{bottom:706.592000pt;}
.y253{bottom:714.562667pt;}
.y7b{bottom:714.960000pt;}
.yfd{bottom:716.856000pt;}
.y260{bottom:719.105333pt;}
.y47{bottom:719.121333pt;}
.yc9{bottom:720.970667pt;}
.y295{bottom:721.934667pt;}
.y140{bottom:730.770667pt;}
.y252{bottom:731.300000pt;}
.y7a{bottom:731.697333pt;}
.yc8{bottom:733.589333pt;}
.y25f{bottom:734.726667pt;}
.yfc{bottom:735.877333pt;}
.y46{bottom:736.417333pt;}
.y180{bottom:736.936000pt;}
.y294{bottom:737.277333pt;}
.y13f{bottom:739.250667pt;}
.y17f{bottom:745.416000pt;}
.yc7{bottom:746.209333pt;}
.y251{bottom:748.036000pt;}
.y79{bottom:748.434667pt;}
.y25e{bottom:750.348000pt;}
.y293{bottom:752.620000pt;}
.y45{bottom:753.712000pt;}
.yfb{bottom:754.898667pt;}
.y78{bottom:765.172000pt;}
.yc5{bottom:765.230667pt;}
.yfa{bottom:767.517333pt;}
.y292{bottom:767.961333pt;}
.y250{bottom:768.758667pt;}
.y44{bottom:771.008000pt;}
.yc4{bottom:771.850667pt;}
.y2{bottom:781.661334pt;}
.y77{bottom:781.909333pt;}
.y291{bottom:783.304000pt;}
.yf9{bottom:786.538667pt;}
.yc0{bottom:789.396000pt;}
.yc3{bottom:790.469333pt;}
.y76{bottom:798.646667pt;}
.y43{bottom:802.542667pt;}
.yc2{bottom:803.088000pt;}
.yf8{bottom:805.560000pt;}
.y290{bottom:813.989333pt;}
.y1a5{bottom:814.985333pt;}
.y75{bottom:815.384000pt;}
.yc1{bottom:815.708000pt;}
.y42{bottom:816.889333pt;}
.yf7{bottom:824.581333pt;}
.y28f{bottom:829.332000pt;}
.y1a4{bottom:831.722667pt;}
.y74{bottom:832.121333pt;}
.ybf{bottom:834.729333pt;}
.y41{bottom:835.092000pt;}
.yf6{bottom:843.602667pt;}
.y28e{bottom:844.674667pt;}
.ybe{bottom:847.349333pt;}
.y1a3{bottom:848.460000pt;}
.y73{bottom:848.858667pt;}
.y40{bottom:849.438667pt;}
.yf5{bottom:856.222667pt;}
.y1{bottom:859.312000pt;}
.ybd{bottom:859.968000pt;}
.y28d{bottom:860.017333pt;}
.y1a2{bottom:865.197333pt;}
.y72{bottom:865.596000pt;}
.yba{bottom:866.456000pt;}
.yf4{bottom:868.841333pt;}
.ybc{bottom:872.588000pt;}
.y28c{bottom:875.360000pt;}
.yb9{bottom:879.074667pt;}
.yb3{bottom:879.208000pt;}
.yf3{bottom:881.461333pt;}
.y1a1{bottom:881.934667pt;}
.y71{bottom:882.333333pt;}
.ybb{bottom:885.206667pt;}
.y3f{bottom:886.388000pt;}
.y28a{bottom:890.701333pt;}
.y28b{bottom:890.702667pt;}
.y1f5{bottom:893.890667pt;}
.yf2{bottom:894.080000pt;}
.y11c{bottom:895.085333pt;}
.yb8{bottom:897.826667pt;}
.y1a0{bottom:898.672000pt;}
.y70{bottom:899.070667pt;}
.y289{bottom:906.044000pt;}
.yf1{bottom:906.700000pt;}
.yb5{bottom:909.372000pt;}
.yb7{bottom:910.445333pt;}
.y1f4{bottom:910.628000pt;}
.y11b{bottom:911.822667pt;}
.y6f{bottom:915.808000pt;}
.yf0{bottom:919.318667pt;}
.y19f{bottom:919.394667pt;}
.y288{bottom:921.386667pt;}
.y3e{bottom:921.872000pt;}
.yb6{bottom:923.064000pt;}
.y1f3{bottom:927.364000pt;}
.y11a{bottom:928.560000pt;}
.y6e{bottom:932.545333pt;}
.yb4{bottom:935.684000pt;}
.y287{bottom:936.729333pt;}
.yef{bottom:938.341333pt;}
.y1f2{bottom:944.101333pt;}
.y119{bottom:945.297333pt;}
.y3d{bottom:946.977333pt;}
.y6d{bottom:949.282667pt;}
.y286{bottom:952.072000pt;}
.yb2{bottom:954.705333pt;}
.yee{bottom:957.362667pt;}
.y118{bottom:962.034667pt;}
.y1f1{bottom:964.824000pt;}
.y6c{bottom:966.020000pt;}
.y285{bottom:967.414667pt;}
.y3c{bottom:972.084000pt;}
.y6b{bottom:982.757333pt;}
.yb1{bottom:984.073333pt;}
.y39{bottom:1010.738667pt;}
.y6a{bottom:1038.548000pt;}
.h2f{height:-434.761333pt;}
.h2e{height:-192.814667pt;}
.h22{height:14.336000pt;}
.h24{height:14.464000pt;}
.h32{height:18.080000pt;}
.h13{height:23.209028pt;}
.hf{height:26.836216pt;}
.hb{height:27.076941pt;}
.hc{height:27.262909pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h1a{height:30.605184pt;}
.h14{height:30.945242pt;}
.h26{height:31.145750pt;}
.h19{height:31.157778pt;}
.h1f{height:31.724500pt;}
.he{height:33.545270pt;}
.h15{height:34.430976pt;}
.h16{height:34.813542pt;}
.h1c{height:35.052646pt;}
.h25{height:35.512500pt;}
.h17{height:38.256384pt;}
.h18{height:38.681455pt;}
.h2b{height:38.932188pt;}
.h10{height:38.947124pt;}
.h21{height:39.300500pt;}
.h28{height:39.655625pt;}
.h7{height:40.853333pt;}
.h34{height:41.214688pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h2a{height:44.390625pt;}
.hd{height:45.353733pt;}
.h12{height:48.365611pt;}
.h2{height:49.024000pt;}
.h29{height:49.125625pt;}
.h1d{height:54.939908pt;}
.h1b{height:56.182575pt;}
.h11{height:68.861952pt;}
.h5{height:69.450667pt;}
.h4{height:105.826671pt;}
.h33{height:180.788000pt;}
.h23{height:198.421333pt;}
.h35{height:213.488000pt;}
.h27{height:232.174667pt;}
.h20{height:238.869333pt;}
.h31{height:240.146667pt;}
.h2d{height:248.992000pt;}
.h30{height:259.549333pt;}
.h2c{height:265.809333pt;}
.h1e{height:468.747733pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wa{width:116.796000pt;}
.w4{width:207.298721pt;}
.wd{width:234.704000pt;}
.w9{width:236.377333pt;}
.we{width:286.248000pt;}
.w7{width:321.400000pt;}
.w5{width:333.561600pt;}
.wc{width:346.064533pt;}
.w8{width:353.168000pt;}
.w6{width:421.837333pt;}
.wf{width:511.065333pt;}
.w2{width:566.928019pt;}
.wb{width:580.763200pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.xc0{left:-177.634667pt;}
.x96{left:-175.766667pt;}
.x99{left:-174.832000pt;}
.xa1{left:-171.561333pt;}
.x8c{left:-147.545600pt;}
.xa7{left:-61.874133pt;}
.x90{left:-8.388267pt;}
.xc2{left:-3.688000pt;}
.x97{left:-1.820000pt;}
.x0{left:0.000000pt;}
.xa2{left:2.385333pt;}
.x91{left:14.267733pt;}
.xc1{left:24.632000pt;}
.x98{left:26.500000pt;}
.x9a{left:27.434667pt;}
.xa3{left:30.705333pt;}
.x5{left:47.621333pt;}
.x6{left:50.623837pt;}
.x69{left:73.417333pt;}
.xc6{left:76.309333pt;}
.x60{left:80.018667pt;}
.x75{left:86.148000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xa6{left:106.280800pt;}
.xa5{left:110.720000pt;}
.xa8{left:112.072533pt;}
.x68{left:124.185333pt;}
.x5f{left:128.986667pt;}
.xa9{left:140.392533pt;}
.xac{left:160.112533pt;}
.x8e{left:161.137067pt;}
.x4{left:180.874667pt;}
.x9{left:220.912000pt;}
.x7{left:221.858667pt;}
.xa4{left:229.172000pt;}
.x74{left:230.558667pt;}
.x8{left:239.573333pt;}
.x6f{left:242.910667pt;}
.x6a{left:248.382667pt;}
.xc{left:250.072000pt;}
.x79{left:256.082667pt;}
.x44{left:259.540000pt;}
.x5b{left:263.822667pt;}
.x6b{left:269.296000pt;}
.x92{left:271.708000pt;}
.x45{left:272.822667pt;}
.xa{left:273.885333pt;}
.x46{left:276.124000pt;}
.x5c{left:277.106667pt;}
.x53{left:281.625333pt;}
.x7a{left:283.441333pt;}
.xb{left:284.333333pt;}
.x88{left:285.636000pt;}
.x62{left:286.684000pt;}
.x70{left:287.877333pt;}
.x47{left:289.408000pt;}
.xb1{left:290.990667pt;}
.x67{left:291.960000pt;}
.x54{left:294.909333pt;}
.x76{left:296.400000pt;}
.x55{left:298.213333pt;}
.xbd{left:299.857333pt;}
.x83{left:301.958667pt;}
.x61{left:302.921333pt;}
.x42{left:306.530667pt;}
.x56{left:311.497333pt;}
.x8b{left:313.924000pt;}
.xb9{left:315.356000pt;}
.xbe{left:316.528000pt;}
.x87{left:318.690667pt;}
.x43{left:319.814667pt;}
.x8a{left:323.749333pt;}
.x9b{left:325.421333pt;}
.x86{left:330.332000pt;}
.x8d{left:332.177067pt;}
.x81{left:334.901333pt;}
.x8f{left:337.297067pt;}
.xaa{left:338.859200pt;}
.x48{left:343.776000pt;}
.xc5{left:347.284000pt;}
.x7e{left:348.196000pt;}
.x82{left:349.928000pt;}
.x84{left:351.612000pt;}
.x80{left:353.876000pt;}
.x49{left:357.060000pt;}
.x85{left:360.857333pt;}
.x4a{left:363.654667pt;}
.x1d{left:371.758667pt;}
.x4b{left:376.938667pt;}
.x1e{left:378.134667pt;}
.x1f{left:381.250667pt;}
.x20{left:387.626667pt;}
.x21{left:393.670667pt;}
.x3{left:404.408000pt;}
.x73{left:406.245333pt;}
.x7b{left:410.852000pt;}
.x7f{left:413.133333pt;}
.x71{left:414.342667pt;}
.x6d{left:419.188000pt;}
.x78{left:422.345333pt;}
.x65{left:426.145333pt;}
.x64{left:427.961333pt;}
.x35{left:429.996000pt;}
.x3e{left:430.885333pt;}
.x89{left:433.005333pt;}
.x5d{left:436.917333pt;}
.x36{left:443.278667pt;}
.x3f{left:444.169333pt;}
.x2f{left:446.704000pt;}
.x40{left:450.944000pt;}
.xab{left:452.340000pt;}
.x2a{left:457.685333pt;}
.x30{left:459.986667pt;}
.x2b{left:464.328000pt;}
.x2c{left:467.681333pt;}
.xd{left:468.792000pt;}
.xe{left:475.168000pt;}
.xf{left:478.161333pt;}
.x2d{left:480.965333pt;}
.x63{left:483.608000pt;}
.x10{left:484.537333pt;}
.x31{left:496.612000pt;}
.x2e{left:497.602667pt;}
.x6c{left:500.902667pt;}
.x93{left:502.124000pt;}
.x6e{left:503.378667pt;}
.x77{left:507.273333pt;}
.x32{left:509.896000pt;}
.x33{left:513.282667pt;}
.xc3{left:514.338667pt;}
.x72{left:515.684000pt;}
.x15{left:517.996000pt;}
.x34{left:520.402667pt;}
.x16{left:524.372000pt;}
.x17{left:527.366667pt;}
.x4c{left:530.513333pt;}
.xc4{left:532.756000pt;}
.x18{left:533.742667pt;}
.x4d{left:537.056000pt;}
.x5e{left:540.410667pt;}
.x66{left:542.161333pt;}
.x3a{left:543.942667pt;}
.x57{left:547.886667pt;}
.x4e{left:550.340000pt;}
.x3b{left:557.225333pt;}
.x51{left:561.141333pt;}
.x3c{left:564.000000pt;}
.x26{left:565.788000pt;}
.xb7{left:567.770667pt;}
.x4f{left:570.857333pt;}
.x27{left:572.430667pt;}
.x52{left:574.424000pt;}
.x28{left:575.814667pt;}
.x3d{left:577.284000pt;}
.xb0{left:581.410667pt;}
.x29{left:582.456000pt;}
.x50{left:584.141333pt;}
.x58{left:586.328000pt;}
.x19{left:587.345333pt;}
.x39{left:589.669333pt;}
.x1a{left:593.721333pt;}
.xad{left:594.888000pt;}
.x1b{left:596.837333pt;}
.x59{left:599.612000pt;}
.x1c{left:603.213333pt;}
.xce{left:609.641333pt;}
.x5a{left:616.282667pt;}
.xcd{left:619.938667pt;}
.x94{left:629.893333pt;}
.x95{left:636.840000pt;}
.xb2{left:642.376000pt;}
.xb8{left:644.974667pt;}
.xcf{left:646.805333pt;}
.xd0{left:650.998667pt;}
.xb3{left:654.861333pt;}
.xbf{left:655.912000pt;}
.xb4{left:657.725333pt;}
.xca{left:659.990667pt;}
.x9c{left:661.150667pt;}
.x7c{left:665.176000pt;}
.xcc{left:666.868000pt;}
.xb5{left:670.212000pt;}
.xd2{left:671.497333pt;}
.x41{left:674.596000pt;}
.x22{left:675.485333pt;}
.xba{left:677.538667pt;}
.x7d{left:678.460000pt;}
.xc7{left:679.776000pt;}
.x9d{left:681.182667pt;}
.xcb{left:683.900000pt;}
.x23{left:688.768000pt;}
.xbb{left:690.821333pt;}
.x24{left:692.116000pt;}
.x9e{left:694.466667pt;}
.xd3{left:695.408000pt;}
.x9f{left:697.840000pt;}
.xd1{left:702.374667pt;}
.xc8{left:703.685333pt;}
.x25{left:705.400000pt;}
.xa0{left:711.124000pt;}
.xae{left:712.742667pt;}
.xbc{left:714.001333pt;}
.xaf{left:720.048000pt;}
.xb6{left:723.533333pt;}
.x11{left:724.533333pt;}
.x37{left:726.178667pt;}
.x12{left:730.909333pt;}
.x13{left:734.026667pt;}
.x38{left:739.461333pt;}
.x14{left:740.402667pt;}
.xc9{left:744.146667pt;}
}




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