
    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_db0b98aa9cbcfc87b4c80273.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_9f813a940ce309544a49c91a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_186b6af2c56a3f6ee685d397.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.999000;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_aad55212471104f990d4872d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.682000;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_5bf55e265f81cd8328c2ecb8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_63a7fe9eb39ce8a3360f5198.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.937500;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_50c37e1d41ee8b067aa02d73.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893000;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_6ecb04be0ad9026c822e8c77.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.927000;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_fbfa885b72a21ed2f9c83c8b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.917000;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_343acbd4836cf92ac74354e7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.799000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a386a8687ab28bfa79591df1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.727000;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_89cd4bc425617734fef7bd96.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.907000;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_d997d8df09b494f0f6f41b81.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.675781;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_b570006903378a85c227c3a4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.699000;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_3949a405ebc2b184536b6d08.woff2')format("woff");}.fff{font-family:fff;line-height:1.800000;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_8ec2a59b702c8a99381e4887.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_1c9e06a54879a6de82621f49.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_60a8e732e40c0e8b23b26db0.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.727051;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_a96f4b55c5d9dfb4896494c4.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.859000;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_567b32bef1fcf47a0b04c1ba.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.910156;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_277ff4efb8a5596bd32084d3.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.884277;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_b014934a440ed42c155e964f.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.049000;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_65324e03c2ece328b7186b2e.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.898000;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_1f0e5bd4a6f58643ec46f709.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.725000;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_ff2aa0ce3d508f553a26d901.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.898000;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_c9264771849bd97fa2a8f36b.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_bf997c745582cfcbe2acddea.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.826172;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_0977f48e4d1bd6ca8c9b2e77.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc{transform:matrix(0.176434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176434,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.187695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187695,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.192101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192101,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.234248,0.000000,-0.080118,0.236814,0,0);-ms-transform:matrix(0.234248,0.000000,-0.080118,0.236814,0,0);-webkit-transform:matrix(0.234248,0.000000,-0.080118,0.236814,0,0);}
.me{transform:matrix(0.236878,0.000000,-0.081015,0.236509,0,0);-ms-transform:matrix(0.236878,0.000000,-0.081015,0.236509,0,0);-webkit-transform:matrix(0.236878,0.000000,-0.081015,0.236509,0,0);}
.ma{transform:matrix(0.237001,0.000000,-0.081058,0.236494,0,0);-ms-transform:matrix(0.237001,0.000000,-0.081058,0.236494,0,0);-webkit-transform:matrix(0.237001,0.000000,-0.081058,0.236494,0,0);}
.m6{transform:matrix(0.247290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247290,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247292,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);}
.m1{transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250536,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-21.690000px;}
.v11{vertical-align:-13.086000px;}
.v6{vertical-align:-10.766044px;}
.v5{vertical-align:-8.058607px;}
.va{vertical-align:-6.854958px;}
.v12{vertical-align:-2.790000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:1.326000px;}
.vd{vertical-align:4.038000px;}
.v4{vertical-align:5.052000px;}
.vc{vertical-align:8.970000px;}
.v2{vertical-align:14.334000px;}
.ve{vertical-align:16.878000px;}
.v10{vertical-align:17.898000px;}
.v7{vertical-align:21.690000px;}
.v1{vertical-align:23.754000px;}
.v13{vertical-align:24.918000px;}
.vb{vertical-align:26.070000px;}
.vf{vertical-align:31.722000px;}
.v8{vertical-align:36.528000px;}
.ls34{letter-spacing:-0.554387px;}
.ls36{letter-spacing:-0.124361px;}
.ls3a{letter-spacing:-0.057266px;}
.ls70{letter-spacing:-0.035681px;}
.ls39{letter-spacing:-0.027487px;}
.ls2b{letter-spacing:-0.021865px;}
.ls2e{letter-spacing:-0.020615px;}
.ls2f{letter-spacing:-0.005497px;}
.ls72{letter-spacing:-0.005097px;}
.ls17{letter-spacing:0.000000px;}
.ls5e{letter-spacing:0.000141px;}
.ls5f{letter-spacing:0.000532px;}
.ls48{letter-spacing:0.000538px;}
.ls4c{letter-spacing:0.000564px;}
.lsd{letter-spacing:0.000993px;}
.ls6{letter-spacing:0.001084px;}
.ls75{letter-spacing:0.001641px;}
.ls20{letter-spacing:0.001707px;}
.ls3e{letter-spacing:0.001866px;}
.ls46{letter-spacing:0.002338px;}
.ls5d{letter-spacing:0.002915px;}
.ls62{letter-spacing:0.003056px;}
.ls66{letter-spacing:0.004200px;}
.ls73{letter-spacing:0.005097px;}
.ls79{letter-spacing:0.005418px;}
.ls61{letter-spacing:0.005644px;}
.ls7b{letter-spacing:0.006141px;}
.ls2d{letter-spacing:0.007288px;}
.ls37{letter-spacing:0.011515px;}
.ls28{letter-spacing:0.016034px;}
.ls4{letter-spacing:0.021898px;}
.ls2c{letter-spacing:0.042636px;}
.ls71{letter-spacing:0.046384px;}
.ls5{letter-spacing:0.095557px;}
.ls38{letter-spacing:0.329682px;}
.ls27{letter-spacing:0.343002px;}
.ls33{letter-spacing:0.479739px;}
.ls83{letter-spacing:0.840017px;}
.ls30{letter-spacing:1.149189px;}
.ls57{letter-spacing:1.195613px;}
.ls5a{letter-spacing:1.271644px;}
.ls5c{letter-spacing:1.277644px;}
.ls6b{letter-spacing:1.612648px;}
.ls26{letter-spacing:1.653319px;}
.ls22{letter-spacing:1.880823px;}
.ls23{letter-spacing:1.886823px;}
.ls6f{letter-spacing:2.144023px;}
.ls59{letter-spacing:2.371909px;}
.ls74{letter-spacing:2.385746px;}
.ls58{letter-spacing:2.393660px;}
.ls2{letter-spacing:2.964877px;}
.ls4d{letter-spacing:2.984525px;}
.ls84{letter-spacing:2.987675px;}
.ls78{letter-spacing:2.988532px;}
.ls29{letter-spacing:2.988780px;}
.ls3c{letter-spacing:2.990725px;}
.ls3b{letter-spacing:2.991634px;}
.ls3{letter-spacing:3.314383px;}
.ls80{letter-spacing:3.316200px;}
.ls82{letter-spacing:3.320383px;}
.ls18{letter-spacing:3.693297px;}
.ls19{letter-spacing:3.699297px;}
.ls76{letter-spacing:3.740425px;}
.ls7f{letter-spacing:4.000868px;}
.ls2a{letter-spacing:4.995292px;}
.ls1{letter-spacing:5.488118px;}
.ls1a{letter-spacing:5.510423px;}
.lse{letter-spacing:7.486595px;}
.ls52{letter-spacing:8.498423px;}
.ls16{letter-spacing:8.504423px;}
.ls1d{letter-spacing:8.937297px;}
.ls8{letter-spacing:9.962338px;}
.ls63{letter-spacing:11.289056px;}
.ls64{letter-spacing:11.295056px;}
.ls4b{letter-spacing:13.278538px;}
.ls5b{letter-spacing:14.109056px;}
.ls60{letter-spacing:14.115056px;}
.ls77{letter-spacing:16.734141px;}
.ls81{letter-spacing:17.110200px;}
.ls42{letter-spacing:17.930525px;}
.ls41{letter-spacing:18.114538px;}
.ls1f{letter-spacing:18.436200px;}
.lsb{letter-spacing:19.224538px;}
.ls3f{letter-spacing:19.592525px;}
.ls7a{letter-spacing:19.722532px;}
.ls7d{letter-spacing:19.728532px;}
.ls45{letter-spacing:19.986538px;}
.ls12{letter-spacing:20.920200px;}
.ls15{letter-spacing:21.016200px;}
.ls40{letter-spacing:21.104525px;}
.lsc{letter-spacing:22.338993px;}
.ls10{letter-spacing:22.360200px;}
.ls56{letter-spacing:22.802823px;}
.ls44{letter-spacing:22.976525px;}
.ls0{letter-spacing:23.017650px;}
.ls25{letter-spacing:23.088538px;}
.ls13{letter-spacing:23.188200px;}
.ls7{letter-spacing:23.364579px;}
.ls1b{letter-spacing:23.915374px;}
.ls6e{letter-spacing:24.909634px;}
.ls6d{letter-spacing:24.914245px;}
.ls54{letter-spacing:25.300200px;}
.ls9{letter-spacing:25.786200px;}
.ls6c{letter-spacing:26.214961px;}
.lsf{letter-spacing:26.848200px;}
.ls1e{letter-spacing:26.930423px;}
.ls1c{letter-spacing:27.609297px;}
.lsa{letter-spacing:27.867723px;}
.ls50{letter-spacing:28.498200px;}
.ls14{letter-spacing:29.510423px;}
.ls43{letter-spacing:29.973634px;}
.ls11{letter-spacing:30.860423px;}
.ls4f{letter-spacing:31.054200px;}
.ls69{letter-spacing:32.572200px;}
.ls68{letter-spacing:33.430200px;}
.ls53{letter-spacing:33.794423px;}
.ls51{letter-spacing:36.998423px;}
.ls6a{letter-spacing:41.072423px;}
.ls67{letter-spacing:41.930423px;}
.ls4e{letter-spacing:42.188338px;}
.ls65{letter-spacing:44.654423px;}
.ls21{letter-spacing:59.772538px;}
.ls49{letter-spacing:59.776200px;}
.ls7e{letter-spacing:71.726915px;}
.ls7c{letter-spacing:91.484915px;}
.ls47{letter-spacing:97.966200px;}
.ls55{letter-spacing:102.644338px;}
.ls4a{letter-spacing:121.216200px;}
.ls3d{letter-spacing:153.797530px;}
.ls24{letter-spacing:231.044338px;}
.ls31{letter-spacing:325.432733px;}
.ls35{letter-spacing:325.596075px;}
.ls32{letter-spacing:560.358191px;}
.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;}
}
.wse7{word-spacing:-59.775600px;}
.ws118{word-spacing:-50.809387px;}
.wsab{word-spacing:-39.730117px;}
.wsa7{word-spacing:-39.584662px;}
.wsaf{word-spacing:-39.479981px;}
.ws4c{word-spacing:-38.937826px;}
.ws0{word-spacing:-35.865450px;}
.wse1{word-spacing:-18.195693px;}
.ws4d{word-spacing:-16.605662px;}
.ws4{word-spacing:-16.438350px;}
.ws7{word-spacing:-14.943900px;}
.wscc{word-spacing:-14.920027px;}
.ws3{word-spacing:-14.111859px;}
.ws40{word-spacing:-12.975471px;}
.ws20{word-spacing:-11.955150px;}
.ws13a{word-spacing:-11.936059px;}
.ws3f{word-spacing:-11.679724px;}
.ws3e{word-spacing:-11.661727px;}
.wsdd{word-spacing:-10.245538px;}
.ws139{word-spacing:-9.564150px;}
.ws41{word-spacing:-8.206401px;}
.ws1f{word-spacing:-7.643017px;}
.wsb3{word-spacing:-7.610669px;}
.ws4a{word-spacing:-6.645516px;}
.ws15b{word-spacing:-6.623136px;}
.ws13c{word-spacing:-3.490904px;}
.ws105{word-spacing:-3.335478px;}
.wscb{word-spacing:-1.697984px;}
.wsa5{word-spacing:-1.676410px;}
.wse2{word-spacing:-1.661762px;}
.ws137{word-spacing:-1.364705px;}
.ws138{word-spacing:-1.363304px;}
.wsa6{word-spacing:-1.190977px;}
.ws38{word-spacing:-1.075961px;}
.ws30{word-spacing:-0.657532px;}
.ws21{word-spacing:-0.537980px;}
.wsa9{word-spacing:-0.502915px;}
.ws46{word-spacing:-0.418429px;}
.wsae{word-spacing:-0.371414px;}
.wsa8{word-spacing:-0.366178px;}
.wsb6{word-spacing:-0.358654px;}
.wsb7{word-spacing:-0.298878px;}
.wsa1{word-spacing:-0.254162px;}
.wsa0{word-spacing:-0.239102px;}
.ws59{word-spacing:-0.119551px;}
.ws57{word-spacing:-0.059776px;}
.ws8{word-spacing:-0.053798px;}
.ws11e{word-spacing:-0.047821px;}
.ws132{word-spacing:-0.045875px;}
.ws6{word-spacing:-0.041843px;}
.ws113{word-spacing:-0.035866px;}
.wsad{word-spacing:-0.034545px;}
.ws55{word-spacing:-0.018140px;}
.wsd{word-spacing:0.000000px;}
.wsd7{word-spacing:0.011955px;}
.wsac{word-spacing:0.101332px;}
.ws2c{word-spacing:0.239102px;}
.wscf{word-spacing:0.298878px;}
.ws37{word-spacing:0.358654px;}
.wsd2{word-spacing:0.478205px;}
.wsaa{word-spacing:0.512388px;}
.ws22{word-spacing:0.537980px;}
.ws23{word-spacing:0.597756px;}
.wscd{word-spacing:0.896634px;}
.ws1c{word-spacing:0.914573px;}
.ws16c{word-spacing:0.942961px;}
.wsb9{word-spacing:0.956410px;}
.ws16b{word-spacing:0.956412px;}
.ws14{word-spacing:1.237363px;}
.ws2e{word-spacing:1.255288px;}
.ws12f{word-spacing:1.374839px;}
.wse5{word-spacing:1.554166px;}
.ws15d{word-spacing:1.717876px;}
.ws47{word-spacing:1.733492px;}
.ws150{word-spacing:2.151922px;}
.ws2b{word-spacing:2.211697px;}
.ws1b{word-spacing:2.259533px;}
.ws32{word-spacing:2.271473px;}
.wsc1{word-spacing:2.391024px;}
.ws136{word-spacing:2.391030px;}
.ws152{word-spacing:2.450800px;}
.ws49{word-spacing:2.462755px;}
.wsd1{word-spacing:2.510575px;}
.ws109{word-spacing:2.570351px;}
.ws52{word-spacing:2.601733px;}
.ws15e{word-spacing:2.630126px;}
.wsb5{word-spacing:2.689902px;}
.ws107{word-spacing:3.048556px;}
.ws167{word-spacing:3.108331px;}
.ws45{word-spacing:3.168107px;}
.ws10a{word-spacing:3.227882px;}
.ws15c{word-spacing:3.407209px;}
.ws18{word-spacing:3.443098px;}
.ws81{word-spacing:3.466985px;}
.wsd6{word-spacing:3.646312px;}
.ws2f{word-spacing:3.706087px;}
.ws7b{word-spacing:3.751217px;}
.ws7e{word-spacing:3.765863px;}
.wsb4{word-spacing:3.825638px;}
.ws83{word-spacing:4.044302px;}
.ws82{word-spacing:4.064741px;}
.ws85{word-spacing:4.244068px;}
.ws3b{word-spacing:4.303843px;}
.ws70{word-spacing:4.303854px;}
.ws6e{word-spacing:4.363619px;}
.ws39{word-spacing:4.423394px;}
.ws169{word-spacing:4.638598px;}
.ws155{word-spacing:4.722272px;}
.ws110{word-spacing:4.743818px;}
.ws10f{word-spacing:4.749914px;}
.ws176{word-spacing:4.777987px;}
.ws174{word-spacing:4.779631px;}
.ws43{word-spacing:4.782060px;}
.ws3c{word-spacing:4.901599px;}
.ws6d{word-spacing:5.021150px;}
.wsb{word-spacing:5.057050px;}
.ws6c{word-spacing:5.080926px;}
.ws9f{word-spacing:5.140702px;}
.ws24{word-spacing:5.379804px;}
.ws35{word-spacing:5.499355px;}
.ws36{word-spacing:5.738458px;}
.ws159{word-spacing:5.798233px;}
.wsb8{word-spacing:5.917784px;}
.ws3a{word-spacing:5.929754px;}
.ws106{word-spacing:5.948839px;}
.wsf2{word-spacing:5.971933px;}
.ws10e{word-spacing:5.976676px;}
.ws5{word-spacing:5.977560px;}
.ws62{word-spacing:5.978492px;}
.ws175{word-spacing:6.025396px;}
.ws6b{word-spacing:6.037336px;}
.ws6a{word-spacing:6.065834px;}
.ws34{word-spacing:6.216662px;}
.ws173{word-spacing:6.264499px;}
.ws33{word-spacing:6.276438px;}
.ws108{word-spacing:6.336214px;}
.ws15a{word-spacing:6.395989px;}
.ws9e{word-spacing:6.515540px;}
.ws9c{word-spacing:6.524717px;}
.wsdf{word-spacing:6.527496px;}
.ws8b{word-spacing:6.575316px;}
.ws2{word-spacing:6.575340px;}
.ws153{word-spacing:6.635092px;}
.ws16a{word-spacing:6.647063px;}
.ws1d{word-spacing:6.724800px;}
.ws72{word-spacing:6.754643px;}
.wsd0{word-spacing:6.993745px;}
.ws48{word-spacing:7.292623px;}
.ws151{word-spacing:7.364372px;}
.wsa{word-spacing:7.370381px;}
.ws4f{word-spacing:7.376676px;}
.ws53{word-spacing:7.412174px;}
.wsbb{word-spacing:7.471950px;}
.ws12b{word-spacing:7.543681px;}
.ws135{word-spacing:7.711052px;}
.ws164{word-spacing:7.770828px;}
.ws10c{word-spacing:7.830604px;}
.wsce{word-spacing:7.890379px;}
.ws7c{word-spacing:7.910428px;}
.wsf9{word-spacing:7.916428px;}
.wsd9{word-spacing:7.962110px;}
.ws3d{word-spacing:8.009930px;}
.ws84{word-spacing:8.189257px;}
.wse0{word-spacing:8.224292px;}
.ws68{word-spacing:8.246392px;}
.ws66{word-spacing:8.248500px;}
.ws65{word-spacing:8.249033px;}
.ws67{word-spacing:8.250622px;}
.ws61{word-spacing:8.368584px;}
.wsa4{word-spacing:8.428360px;}
.ws80{word-spacing:8.459003px;}
.ws74{word-spacing:8.488135px;}
.ws2d{word-spacing:8.607686px;}
.ws1a{word-spacing:8.715341px;}
.ws89{word-spacing:8.727238px;}
.ws6f{word-spacing:8.846789px;}
.ws4b{word-spacing:8.978295px;}
.wsca{word-spacing:9.145667px;}
.ws12a{word-spacing:9.184025px;}
.ws75{word-spacing:9.205442px;}
.ws27{word-spacing:9.265218px;}
.ws28{word-spacing:9.324994px;}
.ws5a{word-spacing:9.384769px;}
.ws99{word-spacing:9.477925px;}
.ws9b{word-spacing:9.504320px;}
.wsd8{word-spacing:9.623872px;}
.ws15{word-spacing:9.629914px;}
.ws76{word-spacing:9.731618px;}
.ws7f{word-spacing:9.737618px;}
.ws158{word-spacing:9.803198px;}
.ws131{word-spacing:9.922750px;}
.ws56{word-spacing:9.982525px;}
.ws58{word-spacing:10.042301px;}
.ws127{word-spacing:10.102076px;}
.ws154{word-spacing:10.161852px;}
.ws31{word-spacing:10.281403px;}
.ws101{word-spacing:10.341179px;}
.ws103{word-spacing:10.350676px;}
.wsba{word-spacing:10.400954px;}
.ws13{word-spacing:10.490688px;}
.wsbf{word-spacing:10.580281px;}
.wsc0{word-spacing:10.759608px;}
.ws4e{word-spacing:10.819384px;}
.wsda{word-spacing:10.831339px;}
.wsde{word-spacing:10.838669px;}
.ws157{word-spacing:10.879159px;}
.ws16{word-spacing:10.921075px;}
.ws166{word-spacing:10.938935px;}
.wsc{word-spacing:11.243866px;}
.wsf6{word-spacing:11.290830px;}
.wsf7{word-spacing:11.297588px;}
.ws95{word-spacing:11.316754px;}
.ws25{word-spacing:11.357364px;}
.ws156{word-spacing:11.716018px;}
.ws8a{word-spacing:11.775793px;}
.wsf{word-spacing:11.835648px;}
.ws5b{word-spacing:11.895344px;}
.ws5c{word-spacing:11.910622px;}
.ws92{word-spacing:11.944534px;}
.ws94{word-spacing:11.955120px;}
.ws15f{word-spacing:12.194222px;}
.ws162{word-spacing:12.313774px;}
.wsc7{word-spacing:12.370500px;}
.wsc6{word-spacing:12.373549px;}
.wsc2{word-spacing:12.433325px;}
.wsdb{word-spacing:12.493100px;}
.wsdc{word-spacing:12.502292px;}
.ws171{word-spacing:12.528997px;}
.ws163{word-spacing:12.742171px;}
.ws79{word-spacing:12.791978px;}
.ws7a{word-spacing:12.851754px;}
.ws14b{word-spacing:12.911530px;}
.ws69{word-spacing:13.150632px;}
.wse3{word-spacing:13.341914px;}
.wsfc{word-spacing:13.537498px;}
.wsfe{word-spacing:13.554676px;}
.ws14f{word-spacing:13.569061px;}
.wsd3{word-spacing:13.628837px;}
.wsd4{word-spacing:13.987490px;}
.ws165{word-spacing:14.107042px;}
.ws172{word-spacing:14.154898px;}
.ws71{word-spacing:14.166817px;}
.ws11{word-spacing:14.310374px;}
.ws78{word-spacing:14.346144px;}
.ws1{word-spacing:14.346180px;}
.ws88{word-spacing:14.465695px;}
.ws17{word-spacing:14.471770px;}
.wsa2{word-spacing:14.585246px;}
.ws96{word-spacing:14.824349px;}
.ws134{word-spacing:14.884124px;}
.wse4{word-spacing:15.003676px;}
.ws26{word-spacing:15.183002px;}
.wsc3{word-spacing:15.481880px;}
.ws14d{word-spacing:15.541656px;}
.ws60{word-spacing:15.661207px;}
.wse{word-spacing:16.031923px;}
.wsf0{word-spacing:16.079636px;}
.wsc9{word-spacing:16.139412px;}
.ws42{word-spacing:16.306825px;}
.ws73{word-spacing:16.378514px;}
.ws168{word-spacing:16.438290px;}
.ws87{word-spacing:16.498066px;}
.ws86{word-spacing:16.501534px;}
.ws5d{word-spacing:16.677392px;}
.wsd5{word-spacing:16.737168px;}
.ws14c{word-spacing:16.916495px;}
.wsbd{word-spacing:17.095822px;}
.ws161{word-spacing:17.275148px;}
.ws160{word-spacing:17.334924px;}
.ws130{word-spacing:17.394700px;}
.ws12e{word-spacing:17.633802px;}
.wsa3{word-spacing:17.693578px;}
.ws5e{word-spacing:18.112007px;}
.ws5f{word-spacing:18.171782px;}
.ws100{word-spacing:18.203208px;}
.ws29{word-spacing:18.231558px;}
.ws116{word-spacing:18.343198px;}
.ws12c{word-spacing:18.470660px;}
.ws8f{word-spacing:18.555665px;}
.ws90{word-spacing:18.589956px;}
.ws91{word-spacing:18.590212px;}
.wsef{word-spacing:18.781494px;}
.ws14e{word-spacing:18.889090px;}
.ws16e{word-spacing:19.223881px;}
.ws104{word-spacing:19.226839px;}
.ws12d{word-spacing:19.427070px;}
.ws9{word-spacing:19.475021px;}
.ws54{word-spacing:19.534534px;}
.wsc8{word-spacing:19.546621px;}
.wse6{word-spacing:19.549690px;}
.wsc5{word-spacing:19.606397px;}
.ws10{word-spacing:19.636416px;}
.ws114{word-spacing:19.687198px;}
.ws11c{word-spacing:19.693198px;}
.wsc4{word-spacing:19.785724px;}
.ws2a{word-spacing:19.845499px;}
.ws19{word-spacing:19.905408px;}
.wsbe{word-spacing:20.024826px;}
.ws11f{word-spacing:20.060839px;}
.ws16f{word-spacing:21.041064px;}
.wsf4{word-spacing:21.053208px;}
.ws10b{word-spacing:21.113208px;}
.ws128{word-spacing:21.220338px;}
.ws133{word-spacing:21.339889px;}
.ws129{word-spacing:21.519216px;}
.ws16d{word-spacing:21.949655px;}
.wsbc{word-spacing:22.116972px;}
.ws50{word-spacing:22.166907px;}
.ws170{word-spacing:22.188758px;}
.ws8c{word-spacing:22.544839px;}
.ws98{word-spacing:23.133157px;}
.wsf8{word-spacing:23.312484px;}
.wsfb{word-spacing:23.372260px;}
.wsf1{word-spacing:23.825208px;}
.ws64{word-spacing:23.869044px;}
.ws12{word-spacing:24.209280px;}
.ws51{word-spacing:24.228821px;}
.ws123{word-spacing:24.379198px;}
.ws10d{word-spacing:25.715208px;}
.wsf3{word-spacing:26.963208px;}
.ws97{word-spacing:27.755003px;}
.ws102{word-spacing:28.241208px;}
.ws9a{word-spacing:28.450206px;}
.ws63{word-spacing:29.384831px;}
.ws9d{word-spacing:29.933003px;}
.wsfd{word-spacing:31.439208px;}
.ws11a{word-spacing:31.951198px;}
.ws93{word-spacing:32.834839px;}
.ws77{word-spacing:33.054751px;}
.ws7d{word-spacing:35.105003px;}
.ws122{word-spacing:35.671198px;}
.wsee{word-spacing:38.314241px;}
.wsfa{word-spacing:41.225208px;}
.wsb2{word-spacing:41.842920px;}
.wsec{word-spacing:43.169938px;}
.ws44{word-spacing:44.831700px;}
.ws1e{word-spacing:47.820480px;}
.wsff{word-spacing:47.885208px;}
.ws13e{word-spacing:57.615056px;}
.ws124{word-spacing:57.622669px;}
.ws8d{word-spacing:64.595208px;}
.ws8e{word-spacing:64.601208px;}
.wsf5{word-spacing:65.057208px;}
.wse9{word-spacing:66.422647px;}
.ws140{word-spacing:74.964973px;}
.ws146{word-spacing:77.037146px;}
.ws141{word-spacing:77.373056px;}
.ws13d{word-spacing:80.277146px;}
.wsed{word-spacing:81.366547px;}
.ws147{word-spacing:91.494973px;}
.ws144{word-spacing:94.728973px;}
.ws143{word-spacing:100.041146px;}
.wsea{word-spacing:104.587113px;}
.wseb{word-spacing:104.595822px;}
.wse8{word-spacing:104.619255px;}
.ws149{word-spacing:105.186973px;}
.ws121{word-spacing:105.187350px;}
.ws145{word-spacing:109.895802px;}
.ws13b{word-spacing:111.148972px;}
.ws142{word-spacing:122.597802px;}
.ws14a{word-spacing:129.653802px;}
.ws148{word-spacing:130.257146px;}
.ws126{word-spacing:135.631198px;}
.ws125{word-spacing:144.709350px;}
.ws13f{word-spacing:147.101802px;}
.ws11d{word-spacing:161.839350px;}
.ws120{word-spacing:186.223198px;}
.ws112{word-spacing:220.742250px;}
.ws119{word-spacing:231.673350px;}
.ws111{word-spacing:235.812490px;}
.ws115{word-spacing:238.483350px;}
.ws11b{word-spacing:246.007198px;}
.ws117{word-spacing:252.817198px;}
.wsb0{word-spacing:403.357397px;}
.wsb1{word-spacing:439.922051px;}
._1a{margin-left:-247.559093px;}
._14{margin-left:-236.962732px;}
._1b{margin-left:-233.783410px;}
._1f{margin-left:-223.545586px;}
._1c{margin-left:-208.709988px;}
._19{margin-left:-199.812529px;}
._20{margin-left:-191.203318px;}
._15{margin-left:-189.407210px;}
._1d{margin-left:-186.405762px;}
._17{margin-left:-184.446969px;}
._13{margin-left:-179.375918px;}
._16{margin-left:-176.468425px;}
._12{margin-left:-173.118243px;}
._18{margin-left:-172.112805px;}
._1e{margin-left:-158.634512px;}
._c{margin-left:-6.347922px;}
._2{margin-left:-3.953896px;}
._1{margin-left:-2.869236px;}
._5{margin-left:-1.643835px;}
._a{width:1.967882px;}
._4{width:2.978906px;}
._8{width:4.390951px;}
._3{width:5.490665px;}
._23{width:7.166913px;}
._22{width:8.518540px;}
._0{width:11.978521px;}
._21{width:14.874657px;}
._2c{width:17.117232px;}
._7{width:18.895465px;}
._9{width:20.262901px;}
._6{width:24.263078px;}
._24{width:27.255603px;}
._f{width:30.306229px;}
._e{width:32.565829px;}
._11{width:36.027822px;}
._2b{width:38.639045px;}
._b{width:56.571770px;}
._d{width:59.775600px;}
._10{width:96.896503px;}
._2a{width:110.963366px;}
._26{width:115.060088px;}
._27{width:128.700499px;}
._25{width:144.464655px;}
._29{width:149.471644px;}
._28{width:188.712621px;}
.fc8{color:rgb(75,172,198);}
.fc7{color:rgb(75,172,198);}
.fc4{color:transparent;}
.fc5{color:rgb(0,112,192);}
.fc3{color:rgb(0,176,240);}
.fc6{color:rgb(240,15,196);}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs1e{font-size:23.029893px;}
.fs15{font-size:23.091053px;}
.fs1a{font-size:23.175806px;}
.fs14{font-size:27.486982px;}
.fs12{font-size:29.887800px;}
.fs27{font-size:33.131728px;}
.fs25{font-size:35.865600px;}
.fs9{font-size:36.311508px;}
.fsb{font-size:36.391139px;}
.fs24{font-size:38.256600px;}
.fs20{font-size:39.479981px;}
.fs17{font-size:39.584662px;}
.fs1c{font-size:39.730117px;}
.fs13{font-size:41.230702px;}
.fs1f{font-size:41.731959px;}
.fs16{font-size:41.788684px;}
.fs4{font-size:41.842800px;}
.fs1b{font-size:41.999032px;}
.fs21{font-size:45.812400px;}
.fs11{font-size:47.373161px;}
.fs2{font-size:47.820600px;}
.fsd{font-size:49.689432px;}
.fse{font-size:49.769063px;}
.fs26{font-size:50.972194px;}
.fs1d{font-size:51.509401px;}
.fs6{font-size:51.600564px;}
.fs7{font-size:51.680194px;}
.fs18{font-size:51.835356px;}
.fs19{font-size:53.283715px;}
.fs5{font-size:53.798400px;}
.fsa{font-size:57.333960px;}
.fs8{font-size:57.413590px;}
.fs3{font-size:59.775600px;}
.fs23{font-size:61.617600px;}
.fs22{font-size:61.681785px;}
.fs1{font-size:65.753400px;}
.fs10{font-size:72.882113px;}
.fsf{font-size:76.445280px;}
.fsc{font-size:76.524911px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y13b{bottom:2.582294px;}
.y3f{bottom:3.957636px;}
.yec{bottom:4.651487px;}
.yf0{bottom:5.357522px;}
.ybe{bottom:5.420580px;}
.yee{bottom:5.453799px;}
.y45{bottom:17.510747px;}
.y13a{bottom:17.873952px;}
.y75{bottom:18.432723px;}
.y7a{bottom:19.070523px;}
.y79{bottom:21.621418px;}
.y56{bottom:23.268032px;}
.y76{bottom:27.133174px;}
.y47{bottom:34.456117px;}
.y51{bottom:55.183937px;}
.y46{bottom:58.225822px;}
.y77{bottom:66.398663px;}
.y13f{bottom:68.634326px;}
.y13e{bottom:70.418372px;}
.yef{bottom:72.931490px;}
.yed{bottom:74.741507px;}
.y78{bottom:75.053562px;}
.y44{bottom:79.646426px;}
.y55{bottom:91.049514px;}
.y7c{bottom:94.367407px;}
.y7b{bottom:96.918302px;}
.y48{bottom:102.341119px;}
.y7d{bottom:105.618533px;}
.y10b{bottom:107.970000px;}
.y50{bottom:111.602146px;}
.y71{bottom:111.678000px;}
.y3a{bottom:111.679500px;}
.y189{bottom:116.134500px;}
.ybb{bottom:121.466826px;}
.yb8{bottom:122.202687px;}
.ybc{bottom:123.940752px;}
.yba{bottom:124.009414px;}
.yb9{bottom:124.676614px;}
.yb7{bottom:124.745275px;}
.y43{bottom:124.773030px;}
.y188{bottom:129.585000px;}
.y39{bottom:129.612000px;}
.y139{bottom:130.948525px;}
.y138{bottom:132.732571px;}
.y13d{bottom:132.987435px;}
.y13c{bottom:134.771482px;}
.y54{bottom:136.223896px;}
.y187{bottom:143.034000px;}
.y49{bottom:147.451797px;}
.y70{bottom:147.544500px;}
.ybd{bottom:150.603512px;}
.y38{bottom:151.873500px;}
.y137{bottom:155.033154px;}
.y186{bottom:156.484500px;}
.y136{bottom:156.817271px;}
.y4f{bottom:156.903937px;}
.y6f{bottom:165.477000px;}
.y185{bottom:169.933500px;}
.y42{bottom:170.066859px;}
.yb4{bottom:172.867938px;}
.yb3{bottom:174.311028px;}
.y37{bottom:177.621000px;}
.y10a{bottom:179.701500px;}
.y53{bottom:181.334575px;}
.y184{bottom:183.382500px;}
.y6e{bottom:183.409500px;}
.y4d{bottom:192.140433px;}
.y4a{bottom:192.697847px;}
.y36{bottom:195.555000px;}
.y183{bottom:196.833000px;}
.y109{bottom:197.634000px;}
.y6d{bottom:201.342000px;}
.y108{bottom:201.343500px;}
.yad{bottom:201.417000px;}
.y4e{bottom:203.217036px;}
.yb0{bottom:205.337476px;}
.yaf{bottom:206.780567px;}
.y182{bottom:210.282000px;}
.y35{bottom:213.487500px;}
.y4c{bottom:213.680484px;}
.y41{bottom:214.166230px;}
.yac{bottom:219.274500px;}
.y6c{bottom:219.276000px;}
.y140{bottom:219.457500px;}
.y181{bottom:223.731000px;}
.y52{bottom:226.508957px;}
.y34{bottom:231.420000px;}
.y40{bottom:232.218464px;}
.y107{bottom:233.499000px;}
.y4b{bottom:234.010150px;}
.y180{bottom:237.181500px;}
.y6b{bottom:237.208500px;}
.y3e{bottom:245.771575px;}
.y135{bottom:246.357000px;}
.y33{bottom:249.352500px;}
.y17f{bottom:250.630500px;}
.yab{bottom:255.141000px;}
.y6a{bottom:255.445500px;}
.y17e{bottom:264.081000px;}
.y32{bottom:267.285000px;}
.yb2{bottom:270.276553px;}
.yb1{bottom:271.719644px;}
.yaa{bottom:273.073500px;}
.y69{bottom:273.378000px;}
.yb5{bottom:274.640184px;}
.y106{bottom:274.899000px;}
.yb6{bottom:277.114054px;}
.y17d{bottom:277.530000px;}
.y31{bottom:285.217500px;}
.y17c{bottom:290.979000px;}
.ya9{bottom:291.006000px;}
.y68{bottom:291.312000px;}
.y105{bottom:292.831500px;}
.y30{bottom:303.151500px;}
.y17b{bottom:304.429500px;}
.ydc{bottom:308.938500px;}
.y162{bottom:308.940000px;}
.y67{bottom:309.244500px;}
.ya8{bottom:310.495500px;}
.y17a{bottom:317.878500px;}
.y2f{bottom:321.084000px;}
.y104{bottom:323.434500px;}
.ydb{bottom:326.872500px;}
.y66{bottom:327.177000px;}
.ya7{bottom:328.428000px;}
.y2e{bottom:339.016500px;}
.y179{bottom:339.061500px;}
.yda{bottom:344.805000px;}
.y65{bottom:345.109500px;}
.ya6{bottom:346.362000px;}
.y2d{bottom:356.949000px;}
.yd9{bottom:362.656500px;}
.y161{bottom:362.737500px;}
.y64{bottom:363.042000px;}
.y178{bottom:364.054500px;}
.ya5{bottom:364.294500px;}
.y2c{bottom:374.881500px;}
.yd8{bottom:380.589000px;}
.y160{bottom:380.670000px;}
.y63{bottom:380.974500px;}
.y177{bottom:381.988500px;}
.y2b{bottom:392.814000px;}
.ya4{bottom:398.503500px;}
.yd7{bottom:398.521500px;}
.y15f{bottom:398.602500px;}
.y62{bottom:398.908500px;}
.y176{bottom:399.921000px;}
.y2a{bottom:410.748000px;}
.ya3{bottom:412.728000px;}
.ya2{bottom:416.437500px;}
.yd6{bottom:416.455500px;}
.y15e{bottom:416.536500px;}
.y61{bottom:416.841000px;}
.y175{bottom:417.853500px;}
.y9d{bottom:419.425500px;}
.y99{bottom:425.254500px;}
.y29{bottom:428.301000px;}
.y9c{bottom:428.989500px;}
.ya1{bottom:430.660500px;}
.ya0{bottom:434.370000px;}
.yd5{bottom:434.388000px;}
.y15d{bottom:434.469000px;}
.y60{bottom:435.078000px;}
.y174{bottom:435.786000px;}
.y9b{bottom:437.956500px;}
.y134{bottom:444.351000px;}
.y28{bottom:446.235000px;}
.y9f{bottom:448.593000px;}
.y9e{bottom:452.302500px;}
.yd4{bottom:452.320500px;}
.y15c{bottom:452.401500px;}
.y5f{bottom:453.010500px;}
.y173{bottom:457.921500px;}
.y133{bottom:462.285000px;}
.y27{bottom:464.167500px;}
.y9a{bottom:464.257500px;}
.yd3{bottom:470.253000px;}
.y15b{bottom:470.334000px;}
.y5e{bottom:470.944500px;}
.y132{bottom:480.217500px;}
.y26{bottom:482.100000px;}
.y103{bottom:482.194500px;}
.y172{bottom:482.914500px;}
.yd2{bottom:488.185500px;}
.y15a{bottom:488.266500px;}
.y5d{bottom:488.877000px;}
.y98{bottom:491.265000px;}
.y131{bottom:498.150000px;}
.y25{bottom:500.032500px;}
.y102{bottom:500.127000px;}
.y171{bottom:500.848500px;}
.yd1{bottom:506.119500px;}
.y5c{bottom:506.809500px;}
.y97{bottom:509.197500px;}
.y130{bottom:516.082500px;}
.y24{bottom:517.965000px;}
.y170{bottom:518.781000px;}
.y159{bottom:520.693500px;}
.y101{bottom:523.840500px;}
.yd0{bottom:524.052000px;}
.y5b{bottom:524.742000px;}
.y96{bottom:528.687000px;}
.y12f{bottom:534.015000px;}
.y158{bottom:534.144000px;}
.y23{bottom:535.897500px;}
.y16f{bottom:536.713500px;}
.y100{bottom:541.773000px;}
.ycf{bottom:541.984500px;}
.y5a{bottom:542.674500px;}
.yfd{bottom:544.762500px;}
.y95{bottom:546.619500px;}
.yf9{bottom:550.590000px;}
.y12e{bottom:551.947500px;}
.y22{bottom:553.831500px;}
.yfc{bottom:554.326500px;}
.y16e{bottom:554.646000px;}
.yff{bottom:559.705500px;}
.yce{bottom:559.917000px;}
.yfb{bottom:563.292000px;}
.y94{bottom:564.552000px;}
.y59{bottom:566.382000px;}
.y12d{bottom:569.881500px;}
.y21{bottom:571.764000px;}
.y16d{bottom:572.578500px;}
.yfe{bottom:577.638000px;}
.ycd{bottom:577.849500px;}
.y93{bottom:582.486000px;}
.y12c{bottom:587.814000px;}
.yfa{bottom:589.594500px;}
.y20{bottom:589.696500px;}
.y16c{bottom:590.512500px;}
.ycc{bottom:595.782000px;}
.y92{bottom:600.418500px;}
.y12b{bottom:605.746500px;}
.y1f{bottom:607.629000px;}
.y16b{bottom:608.445000px;}
.y58{bottom:612.099000px;}
.ycb{bottom:613.716000px;}
.yf8{bottom:616.245000px;}
.y91{bottom:618.351000px;}
.y12a{bottom:623.679000px;}
.y57{bottom:625.548000px;}
.y16a{bottom:626.377500px;}
.y1e{bottom:629.890500px;}
.yca{bottom:631.648500px;}
.yf7{bottom:634.177500px;}
.y90{bottom:636.283500px;}
.y129{bottom:641.611500px;}
.y169{bottom:644.310000px;}
.yc9{bottom:649.581000px;}
.yf6{bottom:652.111500px;}
.y3d{bottom:652.447500px;}
.y8f{bottom:654.216000px;}
.y1d{bottom:655.639500px;}
.y128{bottom:659.545500px;}
.y168{bottom:662.242500px;}
.yc8{bottom:667.432500px;}
.yf5{bottom:670.044000px;}
.y1c{bottom:670.582500px;}
.y8e{bottom:672.150000px;}
.y167{bottom:680.175000px;}
.yc7{bottom:685.366500px;}
.y1b{bottom:685.527000px;}
.y8d{bottom:686.373000px;}
.yf4{bottom:687.976500px;}
.y8c{bottom:690.082500px;}
.y127{bottom:692.073000px;}
.y126{bottom:695.784000px;}
.y166{bottom:698.109000px;}
.y1a{bottom:700.471500px;}
.yc6{bottom:703.299000px;}
.yf3{bottom:705.909000px;}
.y8b{bottom:708.015000px;}
.y125{bottom:710.155500px;}
.y124{bottom:713.866500px;}
.y19{bottom:715.414500px;}
.y165{bottom:720.244500px;}
.yc5{bottom:721.231500px;}
.yf2{bottom:723.841500px;}
.y8a{bottom:725.947500px;}
.y123{bottom:728.238000px;}
.y157{bottom:730.266000px;}
.y18{bottom:730.359000px;}
.y122{bottom:731.949000px;}
.yc4{bottom:739.164000px;}
.y89{bottom:743.880000px;}
.y17{bottom:745.303500px;}
.y120{bottom:746.218500px;}
.y121{bottom:746.319000px;}
.y156{bottom:748.198500px;}
.y11f{bottom:750.030000px;}
.yc3{bottom:757.096500px;}
.yf1{bottom:757.507500px;}
.y164{bottom:757.648500px;}
.y16{bottom:760.246500px;}
.y88{bottom:761.812500px;}
.y11e{bottom:764.401500px;}
.y155{bottom:766.131000px;}
.y11d{bottom:768.112500px;}
.yc2{bottom:775.029000px;}
.y15{bottom:775.191000px;}
.y87{bottom:779.746500px;}
.y154{bottom:784.063500px;}
.yeb{bottom:784.407000px;}
.y14{bottom:790.135500px;}
.y11c{bottom:791.874000px;}
.yc1{bottom:792.963000px;}
.y86{bottom:797.679000px;}
.y153{bottom:801.996000px;}
.y13{bottom:805.078500px;}
.yc0{bottom:815.521500px;}
.y85{bottom:815.611500px;}
.y152{bottom:819.930000px;}
.y151{bottom:820.003500px;}
.y12{bottom:820.023000px;}
.y11b{bottom:820.551000px;}
.y84{bottom:833.544000px;}
.y11a{bottom:834.000000px;}
.y11{bottom:834.966000px;}
.y150{bottom:837.862500px;}
.y10{bottom:849.910500px;}
.y83{bottom:851.476500px;}
.y14f{bottom:855.795000px;}
.ybf{bottom:862.978500px;}
.yf{bottom:864.855000px;}
.y119{bottom:870.867000px;}
.y82{bottom:870.966000px;}
.ye{bottom:879.798000px;}
.y118{bottom:888.799500px;}
.y81{bottom:888.900000px;}
.yae{bottom:889.876672px;}
.yea{bottom:891.904500px;}
.yd{bottom:894.742500px;}
.y117{bottom:906.732000px;}
.y80{bottom:906.832500px;}
.yc{bottom:909.687000px;}
.y14e{bottom:909.715500px;}
.ye9{bottom:909.837000px;}
.yb{bottom:924.630000px;}
.y116{bottom:924.666000px;}
.y7f{bottom:924.765000px;}
.ye8{bottom:927.771000px;}
.y14d{bottom:927.798000px;}
.y3c{bottom:936.585000px;}
.ya{bottom:939.574500px;}
.y115{bottom:942.598500px;}
.ye7{bottom:945.703500px;}
.y14c{bottom:945.880500px;}
.y3b{bottom:954.517500px;}
.y9{bottom:954.519000px;}
.y114{bottom:960.531000px;}
.y7e{bottom:961.594500px;}
.ye6{bottom:963.636000px;}
.y14b{bottom:963.963000px;}
.y163{bottom:964.380000px;}
.y113{bottom:978.463500px;}
.ye5{bottom:981.568500px;}
.y14a{bottom:982.044000px;}
.y74{bottom:988.494000px;}
.y112{bottom:996.396000px;}
.ye4{bottom:999.501000px;}
.y149{bottom:1000.126500px;}
.y8{bottom:1001.496000px;}
.y7{bottom:1006.918500px;}
.y111{bottom:1014.328500px;}
.ye3{bottom:1017.433500px;}
.y148{bottom:1018.209000px;}
.y6{bottom:1020.312000px;}
.y5{bottom:1025.734500px;}
.y110{bottom:1032.262500px;}
.ye2{bottom:1035.367500px;}
.y147{bottom:1036.291500px;}
.y4{bottom:1039.128000px;}
.ye1{bottom:1053.300000px;}
.y146{bottom:1054.374000px;}
.y3{bottom:1057.843500px;}
.y10f{bottom:1061.212500px;}
.ye0{bottom:1071.232500px;}
.y145{bottom:1072.455000px;}
.ydf{bottom:1089.165000px;}
.y144{bottom:1096.216500px;}
.y2{bottom:1104.916500px;}
.yde{bottom:1107.097500px;}
.y10e{bottom:1108.095000px;}
.y143{bottom:1124.893500px;}
.ydd{bottom:1125.030000px;}
.y10d{bottom:1125.667500px;}
.y10c{bottom:1129.377000px;}
.y142{bottom:1138.344000px;}
.y1{bottom:1146.760500px;}
.y73{bottom:1147.309500px;}
.y141{bottom:1151.793000px;}
.y72{bottom:1165.242000px;}
.h1e{height:2.391024px;}
.h30{height:16.237874px;}
.h27{height:16.280996px;}
.h2c{height:16.340754px;}
.h26{height:20.615236px;}
.h48{height:22.680997px;}
.h49{height:26.320541px;}
.h31{height:29.424292px;}
.h28{height:29.464287px;}
.h2d{height:29.612599px;}
.h32{height:29.688946px;}
.h29{height:29.767666px;}
.h2e{height:29.877048px;}
.h25{height:30.923026px;}
.h8{height:31.382100px;}
.h1b{height:31.574397px;}
.h4e{height:32.804932px;}
.hd{height:32.900573px;}
.h4d{height:33.134573px;}
.h15{height:33.140573px;}
.h3f{height:33.187496px;}
.h33{height:34.359300px;}
.h34{height:34.363881px;}
.h47{height:34.894051px;}
.h2f{height:35.764828px;}
.h4b{height:35.865450px;}
.h2a{height:35.991151px;}
.h3e{height:36.938573px;}
.h4a{height:36.944573px;}
.h2b{height:36.996798px;}
.hb{height:37.336090px;}
.hf{height:39.179139px;}
.h10{height:39.239601px;}
.h16{height:41.006062px;}
.h7{height:41.125613px;}
.ha{height:41.419613px;}
.h9{height:41.425613px;}
.h45{height:42.127382px;}
.h18{height:42.141798px;}
.h22{height:42.500452px;}
.h17{height:42.799330px;}
.h40{height:43.147382px;}
.h4c{height:43.153382px;}
.h12{height:43.532377px;}
.h11{height:43.592838px;}
.h21{height:44.831700px;}
.h5{height:45.568339px;}
.hc{height:46.177613px;}
.h37{height:46.724674px;}
.h36{height:46.773346px;}
.h1a{height:48.576213px;}
.h43{height:48.697382px;}
.h42{height:50.709450px;}
.h1c{height:51.105488px;}
.h23{height:51.111488px;}
.h3a{height:51.523916px;}
.h3c{height:51.529916px;}
.h1f{height:53.072100px;}
.h3d{height:55.957613px;}
.h3b{height:55.963613px;}
.h38{height:56.060100px;}
.h41{height:56.971382px;}
.h44{height:57.373382px;}
.h39{height:57.452100px;}
.h14{height:58.043169px;}
.h13{height:58.103631px;}
.h6{height:59.619450px;}
.h1d{height:65.943488px;}
.h20{height:67.910100px;}
.h35{height:88.629215px;}
.h3{height:98.701718px;}
.h2{height:99.415718px;}
.h4{height:99.421718px;}
.h19{height:122.355662px;}
.h46{height:176.745213px;}
.he{height:259.468021px;}
.h24{height:287.915301px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:149.479163px;}
.w4{width:242.901983px;}
.w3{width:261.599617px;}
.w6{width:336.341491px;}
.w2{width:373.718120px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8f{left:2.659185px;}
.x38{left:5.052794px;}
.x32{left:16.937646px;}
.x67{left:26.886897px;}
.x66{left:29.532506px;}
.x31{left:38.075562px;}
.x61{left:46.605012px;}
.x63{left:49.869145px;}
.x6c{left:57.771784px;}
.x62{left:67.942137px;}
.x60{left:70.965755px;}
.xbb{left:72.971612px;}
.x13{left:76.536000px;}
.xc4{left:77.782500px;}
.x20{left:81.511500px;}
.xc2{left:84.658500px;}
.x49{left:85.856603px;}
.x92{left:87.082500px;}
.xbc{left:90.387305px;}
.x12{left:91.479000px;}
.x90{left:93.718444px;}
.x4c{left:95.832426px;}
.x1{left:100.488000px;}
.x95{left:102.051000px;}
.xc9{left:106.902000px;}
.x68{left:109.452237px;}
.x4d{left:120.749206px;}
.xcf{left:127.179000px;}
.x1f{left:128.659500px;}
.x1d{left:131.334000px;}
.x48{left:132.592500px;}
.xcc{left:134.880000px;}
.x93{left:136.408500px;}
.x8b{left:138.697500px;}
.x4b{left:141.475229px;}
.x97{left:145.890000px;}
.x55{left:151.720500px;}
.x94{left:153.843000px;}
.x19{left:157.554000px;}
.x50{left:160.417500px;}
.x3{left:163.182000px;}
.x2{left:166.228500px;}
.x33{left:167.363642px;}
.x26{left:169.662000px;}
.x52{left:171.768000px;}
.x17{left:172.828500px;}
.xf{left:174.676500px;}
.x89{left:176.037000px;}
.x35{left:177.890794px;}
.x34{left:179.268402px;}
.x4a{left:181.788484px;}
.xc{left:183.135000px;}
.x5b{left:186.642000px;}
.x65{left:187.649938px;}
.x18{left:188.713500px;}
.x5e{left:192.859500px;}
.x28{left:194.586000px;}
.x64{left:196.514638px;}
.x5{left:197.799000px;}
.x14{left:201.007500px;}
.x6b{left:202.866985px;}
.x23{left:205.479000px;}
.x6a{left:211.113217px;}
.x8a{left:212.215500px;}
.x1b{left:215.122500px;}
.x5d{left:217.306500px;}
.x25{left:221.143500px;}
.x21{left:223.372500px;}
.x69{left:228.430304px;}
.x56{left:231.796500px;}
.xba{left:235.575566px;}
.xc0{left:239.469000px;}
.x2b{left:241.186500px;}
.x53{left:244.585500px;}
.x1a{left:248.773500px;}
.x9a{left:250.200000px;}
.x96{left:254.571000px;}
.x54{left:255.771000px;}
.x6{left:257.437500px;}
.x36{left:260.013729px;}
.x91{left:262.297500px;}
.x24{left:263.607000px;}
.x57{left:266.143500px;}
.x99{left:269.679000px;}
.xbd{left:272.997218px;}
.x4e{left:278.761500px;}
.x27{left:286.501500px;}
.xd2{left:289.987500px;}
.x10{left:298.705500px;}
.xb{left:301.309500px;}
.x5c{left:303.541500px;}
.x15{left:307.782000px;}
.xce{left:309.462000px;}
.x22{left:311.494500px;}
.xcb{left:313.390500px;}
.x4f{left:316.258500px;}
.xb9{left:321.336385px;}
.xd0{left:324.298500px;}
.x37{left:333.926759px;}
.x5f{left:335.098500px;}
.x58{left:337.854000px;}
.xc3{left:345.658500px;}
.x51{left:355.252500px;}
.x59{left:358.456500px;}
.xca{left:365.445000px;}
.xc6{left:367.654500px;}
.x5a{left:370.909500px;}
.x2a{left:372.544500px;}
.xc7{left:377.095500px;}
.xc1{left:379.695000px;}
.x1e{left:387.877500px;}
.xc5{left:389.904000px;}
.x98{left:394.270500px;}
.x1c{left:396.738000px;}
.x7{left:398.671500px;}
.x8d{left:408.541500px;}
.x29{left:412.801500px;}
.xd1{left:418.296000px;}
.x16{left:424.231500px;}
.xc8{left:427.483500px;}
.xcd{left:431.566500px;}
.xd{left:433.170000px;}
.x8c{left:435.303000px;}
.x8e{left:439.456500px;}
.x2c{left:468.178500px;}
.xd9{left:472.333500px;}
.x81{left:473.992500px;}
.x41{left:475.651500px;}
.x6e{left:481.492500px;}
.x3b{left:483.123000px;}
.xb8{left:486.865642px;}
.x76{left:487.875000px;}
.xe1{left:489.591000px;}
.xa2{left:492.253500px;}
.xa6{left:494.749500px;}
.x4{left:497.050500px;}
.x9b{left:500.158500px;}
.xad{left:501.417000px;}
.xaa{left:503.928000px;}
.x9d{left:505.314000px;}
.x6d{left:506.761500px;}
.xaf{left:509.781000px;}
.x9f{left:511.266000px;}
.xd5{left:513.847500px;}
.xa7{left:522.052500px;}
.xb5{left:524.607000px;}
.x39{left:533.262000px;}
.x7b{left:535.411500px;}
.xb6{left:537.891000px;}
.x8{left:541.485000px;}
.xd7{left:545.148000px;}
.x9{left:546.958500px;}
.x3a{left:548.278500px;}
.xd4{left:549.468000px;}
.x11{left:552.945000px;}
.x82{left:556.554000px;}
.x42{left:558.745500px;}
.xda{left:562.303500px;}
.x3f{left:563.340000px;}
.x45{left:570.438000px;}
.xbe{left:575.766000px;}
.xb7{left:590.094000px;}
.x7d{left:592.338000px;}
.x72{left:595.129500px;}
.x7f{left:597.255000px;}
.xdf{left:598.614000px;}
.x74{left:600.847500px;}
.xa5{left:607.728000px;}
.xe0{left:610.165500px;}
.x2e{left:613.357500px;}
.x77{left:616.572000px;}
.xa8{left:621.901500px;}
.x2d{left:624.817500px;}
.x88{left:626.481000px;}
.xd3{left:631.626000px;}
.x46{left:632.842500px;}
.x6f{left:634.456500px;}
.x83{left:639.357000px;}
.xbf{left:644.559000px;}
.x3e{left:646.531500px;}
.x43{left:648.234000px;}
.xab{left:652.039500px;}
.x3c{left:654.193500px;}
.x79{left:657.829500px;}
.x86{left:662.302500px;}
.xa{left:665.314500px;}
.xd8{left:667.684500px;}
.xb4{left:671.938500px;}
.x2f{left:673.044000px;}
.xb2{left:679.410000px;}
.x40{left:681.787500px;}
.xb0{left:684.351000px;}
.x7a{left:686.350500px;}
.x73{left:689.307000px;}
.xac{left:691.018500px;}
.x80{left:692.496000px;}
.x3d{left:693.508500px;}
.xe{left:700.098000px;}
.x78{left:703.380000px;}
.xae{left:705.964500px;}
.x70{left:707.263500px;}
.xa9{left:712.474500px;}
.xb3{left:718.612500px;}
.xb1{left:723.552000px;}
.x9c{left:731.782500px;}
.x85{left:736.980000px;}
.xd6{left:740.200500px;}
.x9e{left:749.542500px;}
.x44{left:755.523000px;}
.xa0{left:756.871500px;}
.x30{left:759.852000px;}
.xa3{left:764.505000px;}
.xdc{left:789.312000px;}
.x84{left:806.145000px;}
.xdd{left:807.838500px;}
.xa1{left:809.506500px;}
.x71{left:810.583500px;}
.x47{left:812.839500px;}
.x7e{left:820.311000px;}
.xde{left:823.210500px;}
.xdb{left:825.288000px;}
.xa4{left:826.945500px;}
.x7c{left:831.100500px;}
.x75{left:834.000000px;}
.x87{left:835.255500px;}
@media print{
.v3{vertical-align:-19.280000pt;}
.v11{vertical-align:-11.632000pt;}
.v6{vertical-align:-9.569817pt;}
.v5{vertical-align:-7.163206pt;}
.va{vertical-align:-6.093296pt;}
.v12{vertical-align:-2.480000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.178667pt;}
.vd{vertical-align:3.589333pt;}
.v4{vertical-align:4.490667pt;}
.vc{vertical-align:7.973333pt;}
.v2{vertical-align:12.741333pt;}
.ve{vertical-align:15.002667pt;}
.v10{vertical-align:15.909333pt;}
.v7{vertical-align:19.280000pt;}
.v1{vertical-align:21.114667pt;}
.v13{vertical-align:22.149333pt;}
.vb{vertical-align:23.173333pt;}
.vf{vertical-align:28.197333pt;}
.v8{vertical-align:32.469333pt;}
.ls34{letter-spacing:-0.492789pt;}
.ls36{letter-spacing:-0.110543pt;}
.ls3a{letter-spacing:-0.050903pt;}
.ls70{letter-spacing:-0.031716pt;}
.ls39{letter-spacing:-0.024433pt;}
.ls2b{letter-spacing:-0.019435pt;}
.ls2e{letter-spacing:-0.018325pt;}
.ls2f{letter-spacing:-0.004887pt;}
.ls72{letter-spacing:-0.004531pt;}
.ls17{letter-spacing:0.000000pt;}
.ls5e{letter-spacing:0.000125pt;}
.ls5f{letter-spacing:0.000473pt;}
.ls48{letter-spacing:0.000479pt;}
.ls4c{letter-spacing:0.000501pt;}
.lsd{letter-spacing:0.000882pt;}
.ls6{letter-spacing:0.000964pt;}
.ls75{letter-spacing:0.001458pt;}
.ls20{letter-spacing:0.001518pt;}
.ls3e{letter-spacing:0.001659pt;}
.ls46{letter-spacing:0.002079pt;}
.ls5d{letter-spacing:0.002591pt;}
.ls62{letter-spacing:0.002717pt;}
.ls66{letter-spacing:0.003733pt;}
.ls73{letter-spacing:0.004531pt;}
.ls79{letter-spacing:0.004816pt;}
.ls61{letter-spacing:0.005017pt;}
.ls7b{letter-spacing:0.005459pt;}
.ls2d{letter-spacing:0.006478pt;}
.ls37{letter-spacing:0.010236pt;}
.ls28{letter-spacing:0.014253pt;}
.ls4{letter-spacing:0.019465pt;}
.ls2c{letter-spacing:0.037899pt;}
.ls71{letter-spacing:0.041231pt;}
.ls5{letter-spacing:0.084939pt;}
.ls38{letter-spacing:0.293051pt;}
.ls27{letter-spacing:0.304891pt;}
.ls33{letter-spacing:0.426435pt;}
.ls83{letter-spacing:0.746682pt;}
.ls30{letter-spacing:1.021501pt;}
.ls57{letter-spacing:1.062767pt;}
.ls5a{letter-spacing:1.130350pt;}
.ls5c{letter-spacing:1.135684pt;}
.ls6b{letter-spacing:1.433465pt;}
.ls26{letter-spacing:1.469617pt;}
.ls22{letter-spacing:1.671842pt;}
.ls23{letter-spacing:1.677176pt;}
.ls6f{letter-spacing:1.905799pt;}
.ls59{letter-spacing:2.108364pt;}
.ls74{letter-spacing:2.120663pt;}
.ls58{letter-spacing:2.127698pt;}
.ls2{letter-spacing:2.635446pt;}
.ls4d{letter-spacing:2.652911pt;}
.ls84{letter-spacing:2.655711pt;}
.ls78{letter-spacing:2.656473pt;}
.ls29{letter-spacing:2.656693pt;}
.ls3c{letter-spacing:2.658422pt;}
.ls3b{letter-spacing:2.659230pt;}
.ls3{letter-spacing:2.946118pt;}
.ls80{letter-spacing:2.947733pt;}
.ls82{letter-spacing:2.951452pt;}
.ls18{letter-spacing:3.282930pt;}
.ls19{letter-spacing:3.288264pt;}
.ls76{letter-spacing:3.324822pt;}
.ls7f{letter-spacing:3.556327pt;}
.ls2a{letter-spacing:4.440259pt;}
.ls1{letter-spacing:4.878327pt;}
.ls1a{letter-spacing:4.898154pt;}
.lse{letter-spacing:6.654751pt;}
.ls52{letter-spacing:7.554154pt;}
.ls16{letter-spacing:7.559487pt;}
.ls1d{letter-spacing:7.944264pt;}
.ls8{letter-spacing:8.855412pt;}
.ls63{letter-spacing:10.034717pt;}
.ls64{letter-spacing:10.040050pt;}
.ls4b{letter-spacing:11.803145pt;}
.ls5b{letter-spacing:12.541383pt;}
.ls60{letter-spacing:12.546717pt;}
.ls77{letter-spacing:14.874792pt;}
.ls81{letter-spacing:15.209067pt;}
.ls42{letter-spacing:15.938245pt;}
.ls41{letter-spacing:16.101812pt;}
.ls1f{letter-spacing:16.387733pt;}
.lsb{letter-spacing:17.088479pt;}
.ls3f{letter-spacing:17.415578pt;}
.ls7a{letter-spacing:17.531139pt;}
.ls7d{letter-spacing:17.536473pt;}
.ls45{letter-spacing:17.765812pt;}
.ls12{letter-spacing:18.595733pt;}
.ls15{letter-spacing:18.681067pt;}
.ls40{letter-spacing:18.759578pt;}
.lsc{letter-spacing:19.856882pt;}
.ls10{letter-spacing:19.875733pt;}
.ls56{letter-spacing:20.269176pt;}
.ls44{letter-spacing:20.423578pt;}
.ls0{letter-spacing:20.460133pt;}
.ls25{letter-spacing:20.523145pt;}
.ls13{letter-spacing:20.611733pt;}
.ls7{letter-spacing:20.768515pt;}
.ls1b{letter-spacing:21.258110pt;}
.ls6e{letter-spacing:22.141897pt;}
.ls6d{letter-spacing:22.145995pt;}
.ls54{letter-spacing:22.489067pt;}
.ls9{letter-spacing:22.921067pt;}
.ls6c{letter-spacing:23.302188pt;}
.lsf{letter-spacing:23.865067pt;}
.ls1e{letter-spacing:23.938154pt;}
.ls1c{letter-spacing:24.541597pt;}
.lsa{letter-spacing:24.771310pt;}
.ls50{letter-spacing:25.331733pt;}
.ls14{letter-spacing:26.231487pt;}
.ls43{letter-spacing:26.643230pt;}
.ls11{letter-spacing:27.431487pt;}
.ls4f{letter-spacing:27.603733pt;}
.ls69{letter-spacing:28.953067pt;}
.ls68{letter-spacing:29.715733pt;}
.ls53{letter-spacing:30.039487pt;}
.ls51{letter-spacing:32.887487pt;}
.ls6a{letter-spacing:36.508820pt;}
.ls67{letter-spacing:37.271487pt;}
.ls4e{letter-spacing:37.500745pt;}
.ls65{letter-spacing:39.692820pt;}
.ls21{letter-spacing:53.131145pt;}
.ls49{letter-spacing:53.134400pt;}
.ls7e{letter-spacing:63.757258pt;}
.ls7c{letter-spacing:81.319925pt;}
.ls47{letter-spacing:87.081067pt;}
.ls55{letter-spacing:91.239412pt;}
.ls4a{letter-spacing:107.747733pt;}
.ls3d{letter-spacing:136.708915pt;}
.ls24{letter-spacing:205.372745pt;}
.ls31{letter-spacing:289.273541pt;}
.ls35{letter-spacing:289.418733pt;}
.ls32{letter-spacing:498.096170pt;}
.wse7{word-spacing:-53.133867pt;}
.ws118{word-spacing:-45.163900pt;}
.wsab{word-spacing:-35.315659pt;}
.wsa7{word-spacing:-35.186367pt;}
.wsaf{word-spacing:-35.093316pt;}
.ws4c{word-spacing:-34.611401pt;}
.ws0{word-spacing:-31.880400pt;}
.wse1{word-spacing:-16.173949pt;}
.ws4d{word-spacing:-14.760588pt;}
.ws4{word-spacing:-14.611867pt;}
.ws7{word-spacing:-13.283467pt;}
.wscc{word-spacing:-13.262246pt;}
.ws3{word-spacing:-12.543875pt;}
.ws40{word-spacing:-11.533752pt;}
.ws20{word-spacing:-10.626800pt;}
.ws13a{word-spacing:-10.609830pt;}
.ws3f{word-spacing:-10.381977pt;}
.ws3e{word-spacing:-10.365980pt;}
.wsdd{word-spacing:-9.107145pt;}
.ws139{word-spacing:-8.501467pt;}
.ws41{word-spacing:-7.294578pt;}
.ws1f{word-spacing:-6.793793pt;}
.wsb3{word-spacing:-6.765039pt;}
.ws4a{word-spacing:-5.907125pt;}
.ws15b{word-spacing:-5.887232pt;}
.ws13c{word-spacing:-3.103026pt;}
.ws105{word-spacing:-2.964870pt;}
.wscb{word-spacing:-1.509319pt;}
.wsa5{word-spacing:-1.490143pt;}
.wse2{word-spacing:-1.477121pt;}
.ws137{word-spacing:-1.213071pt;}
.ws138{word-spacing:-1.211826pt;}
.wsa6{word-spacing:-1.058647pt;}
.ws38{word-spacing:-0.956410pt;}
.ws30{word-spacing:-0.584473pt;}
.ws21{word-spacing:-0.478205pt;}
.wsa9{word-spacing:-0.447036pt;}
.ws46{word-spacing:-0.371937pt;}
.wsae{word-spacing:-0.330146pt;}
.wsa8{word-spacing:-0.325491pt;}
.wsb6{word-spacing:-0.318803pt;}
.wsb7{word-spacing:-0.265669pt;}
.wsa1{word-spacing:-0.225922pt;}
.wsa0{word-spacing:-0.212535pt;}
.ws59{word-spacing:-0.106268pt;}
.ws57{word-spacing:-0.053134pt;}
.ws8{word-spacing:-0.047821pt;}
.ws11e{word-spacing:-0.042507pt;}
.ws132{word-spacing:-0.040778pt;}
.ws6{word-spacing:-0.037194pt;}
.ws113{word-spacing:-0.031881pt;}
.wsad{word-spacing:-0.030707pt;}
.ws55{word-spacing:-0.016125pt;}
.wsd{word-spacing:0.000000pt;}
.wsd7{word-spacing:0.010627pt;}
.wsac{word-spacing:0.090072pt;}
.ws2c{word-spacing:0.212535pt;}
.wscf{word-spacing:0.265669pt;}
.ws37{word-spacing:0.318803pt;}
.wsd2{word-spacing:0.425071pt;}
.wsaa{word-spacing:0.455456pt;}
.ws22{word-spacing:0.478205pt;}
.ws23{word-spacing:0.531339pt;}
.wscd{word-spacing:0.797008pt;}
.ws1c{word-spacing:0.812954pt;}
.ws16c{word-spacing:0.838188pt;}
.wsb9{word-spacing:0.850142pt;}
.ws16b{word-spacing:0.850144pt;}
.ws14{word-spacing:1.099878pt;}
.ws2e{word-spacing:1.115811pt;}
.ws12f{word-spacing:1.222079pt;}
.wse5{word-spacing:1.381481pt;}
.ws15d{word-spacing:1.527001pt;}
.ws47{word-spacing:1.540882pt;}
.ws150{word-spacing:1.912819pt;}
.ws2b{word-spacing:1.965953pt;}
.ws1b{word-spacing:2.008474pt;}
.ws32{word-spacing:2.019087pt;}
.wsc1{word-spacing:2.125355pt;}
.ws136{word-spacing:2.125360pt;}
.ws152{word-spacing:2.178489pt;}
.ws49{word-spacing:2.189115pt;}
.wsd1{word-spacing:2.231622pt;}
.ws109{word-spacing:2.284756pt;}
.ws52{word-spacing:2.312652pt;}
.ws15e{word-spacing:2.337890pt;}
.wsb5{word-spacing:2.391024pt;}
.ws107{word-spacing:2.709827pt;}
.ws167{word-spacing:2.762961pt;}
.ws45{word-spacing:2.816095pt;}
.ws10a{word-spacing:2.869229pt;}
.ws15c{word-spacing:3.028630pt;}
.ws18{word-spacing:3.060531pt;}
.ws81{word-spacing:3.081764pt;}
.wsd6{word-spacing:3.241166pt;}
.ws2f{word-spacing:3.294300pt;}
.ws7b{word-spacing:3.334415pt;}
.ws7e{word-spacing:3.347434pt;}
.wsb4{word-spacing:3.400567pt;}
.ws83{word-spacing:3.594935pt;}
.ws82{word-spacing:3.613103pt;}
.ws85{word-spacing:3.772505pt;}
.ws3b{word-spacing:3.825638pt;}
.ws70{word-spacing:3.825648pt;}
.ws6e{word-spacing:3.878772pt;}
.ws39{word-spacing:3.931906pt;}
.ws169{word-spacing:4.123198pt;}
.ws155{word-spacing:4.197575pt;}
.ws110{word-spacing:4.216727pt;}
.ws10f{word-spacing:4.222146pt;}
.ws176{word-spacing:4.247099pt;}
.ws174{word-spacing:4.248561pt;}
.ws43{word-spacing:4.250720pt;}
.ws3c{word-spacing:4.356977pt;}
.ws6d{word-spacing:4.463245pt;}
.wsb{word-spacing:4.495155pt;}
.ws6c{word-spacing:4.516379pt;}
.ws9f{word-spacing:4.569513pt;}
.ws24{word-spacing:4.782048pt;}
.ws35{word-spacing:4.888316pt;}
.ws36{word-spacing:5.100851pt;}
.ws159{word-spacing:5.153985pt;}
.wsb8{word-spacing:5.260253pt;}
.ws3a{word-spacing:5.270893pt;}
.ws106{word-spacing:5.287857pt;}
.wsf2{word-spacing:5.308385pt;}
.ws10e{word-spacing:5.312601pt;}
.ws5{word-spacing:5.313387pt;}
.ws62{word-spacing:5.314215pt;}
.ws175{word-spacing:5.355907pt;}
.ws6b{word-spacing:5.366521pt;}
.ws6a{word-spacing:5.391853pt;}
.ws34{word-spacing:5.525922pt;}
.ws173{word-spacing:5.568443pt;}
.ws33{word-spacing:5.579056pt;}
.ws108{word-spacing:5.632190pt;}
.ws15a{word-spacing:5.685324pt;}
.ws9e{word-spacing:5.791591pt;}
.ws9c{word-spacing:5.799748pt;}
.wsdf{word-spacing:5.802218pt;}
.ws8b{word-spacing:5.844725pt;}
.ws2{word-spacing:5.844747pt;}
.ws153{word-spacing:5.897859pt;}
.ws16a{word-spacing:5.908501pt;}
.ws1d{word-spacing:5.977600pt;}
.ws72{word-spacing:6.004127pt;}
.wsd0{word-spacing:6.216662pt;}
.ws48{word-spacing:6.482332pt;}
.ws151{word-spacing:6.546109pt;}
.wsa{word-spacing:6.551450pt;}
.ws4f{word-spacing:6.557045pt;}
.ws53{word-spacing:6.588599pt;}
.wsbb{word-spacing:6.641733pt;}
.ws12b{word-spacing:6.705494pt;}
.ws135{word-spacing:6.854269pt;}
.ws164{word-spacing:6.907403pt;}
.ws10c{word-spacing:6.960537pt;}
.wsce{word-spacing:7.013670pt;}
.ws7c{word-spacing:7.031491pt;}
.wsf9{word-spacing:7.036825pt;}
.wsd9{word-spacing:7.077431pt;}
.ws3d{word-spacing:7.119938pt;}
.ws84{word-spacing:7.279340pt;}
.wse0{word-spacing:7.310482pt;}
.ws68{word-spacing:7.330126pt;}
.ws66{word-spacing:7.332000pt;}
.ws65{word-spacing:7.332474pt;}
.ws67{word-spacing:7.333886pt;}
.ws61{word-spacing:7.438741pt;}
.wsa4{word-spacing:7.491875pt;}
.ws80{word-spacing:7.519114pt;}
.ws74{word-spacing:7.545009pt;}
.ws2d{word-spacing:7.651277pt;}
.ws1a{word-spacing:7.746970pt;}
.ws89{word-spacing:7.757545pt;}
.ws6f{word-spacing:7.863812pt;}
.ws4b{word-spacing:7.980707pt;}
.wsca{word-spacing:8.129482pt;}
.ws12a{word-spacing:8.163578pt;}
.ws75{word-spacing:8.182615pt;}
.ws27{word-spacing:8.235749pt;}
.ws28{word-spacing:8.288883pt;}
.ws5a{word-spacing:8.342017pt;}
.ws99{word-spacing:8.424822pt;}
.ws9b{word-spacing:8.448285pt;}
.wsd8{word-spacing:8.554553pt;}
.ws15{word-spacing:8.559923pt;}
.ws76{word-spacing:8.650327pt;}
.ws7f{word-spacing:8.655660pt;}
.ws158{word-spacing:8.713954pt;}
.ws131{word-spacing:8.820222pt;}
.ws56{word-spacing:8.873356pt;}
.ws58{word-spacing:8.926490pt;}
.ws127{word-spacing:8.979623pt;}
.ws154{word-spacing:9.032757pt;}
.ws31{word-spacing:9.139025pt;}
.ws101{word-spacing:9.192159pt;}
.ws103{word-spacing:9.200601pt;}
.wsba{word-spacing:9.245293pt;}
.ws13{word-spacing:9.325056pt;}
.wsbf{word-spacing:9.404694pt;}
.wsc0{word-spacing:9.564096pt;}
.ws4e{word-spacing:9.617230pt;}
.wsda{word-spacing:9.627857pt;}
.wsde{word-spacing:9.634373pt;}
.ws157{word-spacing:9.670364pt;}
.ws16{word-spacing:9.707622pt;}
.ws166{word-spacing:9.723498pt;}
.wsc{word-spacing:9.994547pt;}
.wsf6{word-spacing:10.036293pt;}
.wsf7{word-spacing:10.042301pt;}
.ws95{word-spacing:10.059337pt;}
.ws25{word-spacing:10.095435pt;}
.ws156{word-spacing:10.414238pt;}
.ws8a{word-spacing:10.467372pt;}
.wsf{word-spacing:10.520576pt;}
.ws5b{word-spacing:10.573639pt;}
.ws5c{word-spacing:10.587219pt;}
.ws92{word-spacing:10.617363pt;}
.ws94{word-spacing:10.626773pt;}
.ws15f{word-spacing:10.839309pt;}
.ws162{word-spacing:10.945577pt;}
.wsc7{word-spacing:10.996000pt;}
.wsc6{word-spacing:10.998710pt;}
.wsc2{word-spacing:11.051844pt;}
.wsdb{word-spacing:11.104978pt;}
.wsdc{word-spacing:11.113149pt;}
.ws171{word-spacing:11.136886pt;}
.ws163{word-spacing:11.326374pt;}
.ws79{word-spacing:11.370647pt;}
.ws7a{word-spacing:11.423781pt;}
.ws14b{word-spacing:11.476915pt;}
.ws69{word-spacing:11.689451pt;}
.wse3{word-spacing:11.859479pt;}
.wsfc{word-spacing:12.033331pt;}
.wsfe{word-spacing:12.048601pt;}
.ws14f{word-spacing:12.061388pt;}
.wsd3{word-spacing:12.114522pt;}
.wsd4{word-spacing:12.433325pt;}
.ws165{word-spacing:12.539593pt;}
.ws172{word-spacing:12.582131pt;}
.ws71{word-spacing:12.592726pt;}
.ws11{word-spacing:12.720333pt;}
.ws78{word-spacing:12.752128pt;}
.ws1{word-spacing:12.752160pt;}
.ws88{word-spacing:12.858396pt;}
.ws17{word-spacing:12.863795pt;}
.wsa2{word-spacing:12.964663pt;}
.ws96{word-spacing:13.177199pt;}
.ws134{word-spacing:13.230333pt;}
.wse4{word-spacing:13.336601pt;}
.ws26{word-spacing:13.496002pt;}
.wsc3{word-spacing:13.761671pt;}
.ws14d{word-spacing:13.814805pt;}
.ws60{word-spacing:13.921073pt;}
.wse{word-spacing:14.250598pt;}
.wsf0{word-spacing:14.293010pt;}
.wsc9{word-spacing:14.346144pt;}
.ws42{word-spacing:14.494955pt;}
.ws73{word-spacing:14.558679pt;}
.ws168{word-spacing:14.611813pt;}
.ws87{word-spacing:14.664947pt;}
.ws86{word-spacing:14.668030pt;}
.ws5d{word-spacing:14.824349pt;}
.wsd5{word-spacing:14.877483pt;}
.ws14c{word-spacing:15.036884pt;}
.wsbd{word-spacing:15.196286pt;}
.ws161{word-spacing:15.355687pt;}
.ws160{word-spacing:15.408821pt;}
.ws130{word-spacing:15.461955pt;}
.ws12e{word-spacing:15.674491pt;}
.wsa3{word-spacing:15.727625pt;}
.ws5e{word-spacing:16.099562pt;}
.ws5f{word-spacing:16.152695pt;}
.ws100{word-spacing:16.180629pt;}
.ws29{word-spacing:16.205829pt;}
.ws116{word-spacing:16.305065pt;}
.ws12c{word-spacing:16.418365pt;}
.ws8f{word-spacing:16.493924pt;}
.ws90{word-spacing:16.524405pt;}
.ws91{word-spacing:16.524633pt;}
.wsef{word-spacing:16.694661pt;}
.ws14e{word-spacing:16.790302pt;}
.ws16e{word-spacing:17.087894pt;}
.ws104{word-spacing:17.090523pt;}
.ws12d{word-spacing:17.268507pt;}
.ws9{word-spacing:17.311130pt;}
.ws54{word-spacing:17.364030pt;}
.wsc8{word-spacing:17.374774pt;}
.wse6{word-spacing:17.377503pt;}
.wsc5{word-spacing:17.427908pt;}
.ws10{word-spacing:17.454592pt;}
.ws114{word-spacing:17.499732pt;}
.ws11c{word-spacing:17.505065pt;}
.wsc4{word-spacing:17.587310pt;}
.ws2a{word-spacing:17.640444pt;}
.ws19{word-spacing:17.693696pt;}
.wsbe{word-spacing:17.799845pt;}
.ws11f{word-spacing:17.831857pt;}
.ws16f{word-spacing:18.703168pt;}
.wsf4{word-spacing:18.713963pt;}
.ws10b{word-spacing:18.767296pt;}
.ws128{word-spacing:18.862523pt;}
.ws133{word-spacing:18.968790pt;}
.ws129{word-spacing:19.128192pt;}
.ws16d{word-spacing:19.510805pt;}
.wsbc{word-spacing:19.659531pt;}
.ws50{word-spacing:19.703918pt;}
.ws170{word-spacing:19.723341pt;}
.ws8c{word-spacing:20.039857pt;}
.ws98{word-spacing:20.562806pt;}
.wsf8{word-spacing:20.722208pt;}
.wsfb{word-spacing:20.775342pt;}
.wsf1{word-spacing:21.177963pt;}
.ws64{word-spacing:21.216928pt;}
.ws12{word-spacing:21.519360pt;}
.ws51{word-spacing:21.536730pt;}
.ws123{word-spacing:21.670398pt;}
.ws10d{word-spacing:22.857963pt;}
.wsf3{word-spacing:23.967296pt;}
.ws97{word-spacing:24.671114pt;}
.ws102{word-spacing:25.103296pt;}
.ws9a{word-spacing:25.289072pt;}
.ws63{word-spacing:26.119850pt;}
.ws9d{word-spacing:26.607114pt;}
.wsfd{word-spacing:27.945963pt;}
.ws11a{word-spacing:28.401065pt;}
.ws93{word-spacing:29.186523pt;}
.ws77{word-spacing:29.382001pt;}
.ws7d{word-spacing:31.204447pt;}
.ws122{word-spacing:31.707732pt;}
.wsee{word-spacing:34.057103pt;}
.wsfa{word-spacing:36.644629pt;}
.wsb2{word-spacing:37.193707pt;}
.wsec{word-spacing:38.373279pt;}
.ws44{word-spacing:39.850400pt;}
.ws1e{word-spacing:42.507093pt;}
.wsff{word-spacing:42.564629pt;}
.ws13e{word-spacing:51.213383pt;}
.ws124{word-spacing:51.220150pt;}
.ws8d{word-spacing:57.417963pt;}
.ws8e{word-spacing:57.423296pt;}
.wsf5{word-spacing:57.828629pt;}
.wse9{word-spacing:59.042353pt;}
.ws140{word-spacing:66.635532pt;}
.ws146{word-spacing:68.477463pt;}
.ws141{word-spacing:68.776050pt;}
.ws13d{word-spacing:71.357463pt;}
.wsed{word-spacing:72.325819pt;}
.ws147{word-spacing:81.328865pt;}
.ws144{word-spacing:84.203532pt;}
.ws143{word-spacing:88.925463pt;}
.wsea{word-spacing:92.966323pt;}
.wseb{word-spacing:92.974064pt;}
.wse8{word-spacing:92.994893pt;}
.ws149{word-spacing:93.499532pt;}
.ws121{word-spacing:93.499867pt;}
.ws145{word-spacing:97.685157pt;}
.ws13b{word-spacing:98.799086pt;}
.ws142{word-spacing:108.975824pt;}
.ws14a{word-spacing:115.247824pt;}
.ws148{word-spacing:115.784130pt;}
.ws126{word-spacing:120.561065pt;}
.ws125{word-spacing:128.630533pt;}
.ws13f{word-spacing:130.757157pt;}
.ws11d{word-spacing:143.857200pt;}
.ws120{word-spacing:165.531732pt;}
.ws112{word-spacing:196.215333pt;}
.ws119{word-spacing:205.931867pt;}
.ws111{word-spacing:209.611102pt;}
.ws115{word-spacing:211.985200pt;}
.ws11b{word-spacing:218.673065pt;}
.ws117{word-spacing:224.726398pt;}
.wsb0{word-spacing:358.539909pt;}
.wsb1{word-spacing:391.041823pt;}
._1a{margin-left:-220.052527pt;}
._14{margin-left:-210.633539pt;}
._1b{margin-left:-207.807476pt;}
._1f{margin-left:-198.707188pt;}
._1c{margin-left:-185.519990pt;}
._19{margin-left:-177.611137pt;}
._20{margin-left:-169.958505pt;}
._15{margin-left:-168.361964pt;}
._1d{margin-left:-165.694010pt;}
._17{margin-left:-163.952862pt;}
._13{margin-left:-159.445261pt;}
._16{margin-left:-156.860822pt;}
._12{margin-left:-153.882882pt;}
._18{margin-left:-152.989160pt;}
._1e{margin-left:-141.008455pt;}
._c{margin-left:-5.642597pt;}
._2{margin-left:-3.514574pt;}
._1{margin-left:-2.550432pt;}
._5{margin-left:-1.461187pt;}
._a{width:1.749229pt;}
._4{width:2.647916pt;}
._8{width:3.903068pt;}
._3{width:4.880591pt;}
._23{width:6.370589pt;}
._22{width:7.572036pt;}
._0{width:10.647574pt;}
._21{width:13.221917pt;}
._2c{width:15.215317pt;}
._7{width:16.795969pt;}
._9{width:18.011468pt;}
._6{width:21.567181pt;}
._24{width:24.227202pt;}
._f{width:26.938870pt;}
._e{width:28.947403pt;}
._11{width:32.024731pt;}
._2b{width:34.345818pt;}
._b{width:50.286018pt;}
._d{width:53.133867pt;}
._10{width:86.130225pt;}
._2a{width:98.634103pt;}
._26{width:102.275634pt;}
._27{width:114.400444pt;}
._25{width:128.413027pt;}
._29{width:132.863684pt;}
._28{width:167.744552pt;}
.fs1e{font-size:20.471016pt;}
.fs15{font-size:20.525380pt;}
.fs1a{font-size:20.600716pt;}
.fs14{font-size:24.432873pt;}
.fs12{font-size:26.566933pt;}
.fs27{font-size:29.450425pt;}
.fs25{font-size:31.880533pt;}
.fs9{font-size:32.276896pt;}
.fsb{font-size:32.347679pt;}
.fs24{font-size:34.005867pt;}
.fs20{font-size:35.093316pt;}
.fs17{font-size:35.186367pt;}
.fs1c{font-size:35.315659pt;}
.fs13{font-size:36.649513pt;}
.fs1f{font-size:37.095075pt;}
.fs16{font-size:37.145497pt;}
.fs4{font-size:37.193600pt;}
.fs1b{font-size:37.332473pt;}
.fs21{font-size:40.722133pt;}
.fs11{font-size:42.109476pt;}
.fs2{font-size:42.507200pt;}
.fsd{font-size:44.168384pt;}
.fse{font-size:44.239167pt;}
.fs26{font-size:45.308617pt;}
.fs1d{font-size:45.786134pt;}
.fs6{font-size:45.867168pt;}
.fs7{font-size:45.937951pt;}
.fs18{font-size:46.075872pt;}
.fs19{font-size:47.363302pt;}
.fs5{font-size:47.820800pt;}
.fsa{font-size:50.963520pt;}
.fs8{font-size:51.034303pt;}
.fs3{font-size:53.133867pt;}
.fs23{font-size:54.771200pt;}
.fs22{font-size:54.828253pt;}
.fs1{font-size:58.447467pt;}
.fs10{font-size:64.784100pt;}
.fsf{font-size:67.951360pt;}
.fsc{font-size:68.022143pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y13b{bottom:2.295373pt;}
.y3f{bottom:3.517899pt;}
.yec{bottom:4.134655pt;}
.yf0{bottom:4.762242pt;}
.ybe{bottom:4.818294pt;}
.yee{bottom:4.847822pt;}
.y45{bottom:15.565108pt;}
.y13a{bottom:15.887958pt;}
.y75{bottom:16.384643pt;}
.y7a{bottom:16.951576pt;}
.y79{bottom:19.219038pt;}
.y56{bottom:20.682695pt;}
.y76{bottom:24.118377pt;}
.y47{bottom:30.627660pt;}
.y51{bottom:49.052388pt;}
.y46{bottom:51.756286pt;}
.y77{bottom:59.021034pt;}
.y13f{bottom:61.008290pt;}
.y13e{bottom:62.594109pt;}
.yef{bottom:64.827991pt;}
.yed{bottom:66.436895pt;}
.y78{bottom:66.714277pt;}
.y44{bottom:70.796823pt;}
.y55{bottom:80.932901pt;}
.y7c{bottom:83.882140pt;}
.y7b{bottom:86.149602pt;}
.y48{bottom:90.969883pt;}
.y7d{bottom:93.883140pt;}
.y10b{bottom:95.973333pt;}
.y50{bottom:99.201907pt;}
.y71{bottom:99.269333pt;}
.y3a{bottom:99.270667pt;}
.y189{bottom:103.230667pt;}
.ybb{bottom:107.970512pt;}
.yb8{bottom:108.624611pt;}
.ybc{bottom:110.169558pt;}
.yba{bottom:110.230590pt;}
.yb9{bottom:110.823657pt;}
.yb7{bottom:110.884689pt;}
.y43{bottom:110.909360pt;}
.y188{bottom:115.186667pt;}
.y39{bottom:115.210667pt;}
.y139{bottom:116.398689pt;}
.y138{bottom:117.984508pt;}
.y13d{bottom:118.211054pt;}
.y13c{bottom:119.796873pt;}
.y54{bottom:121.087908pt;}
.y187{bottom:127.141333pt;}
.y49{bottom:131.068264pt;}
.y70{bottom:131.150667pt;}
.ybd{bottom:133.869788pt;}
.y38{bottom:134.998667pt;}
.y137{bottom:137.807248pt;}
.y186{bottom:139.097333pt;}
.y136{bottom:139.393130pt;}
.y4f{bottom:139.470166pt;}
.y6f{bottom:147.090667pt;}
.y185{bottom:151.052000pt;}
.y42{bottom:151.170541pt;}
.yb4{bottom:153.660389pt;}
.yb3{bottom:154.943136pt;}
.y37{bottom:157.885333pt;}
.y10a{bottom:159.734667pt;}
.y53{bottom:161.186289pt;}
.y184{bottom:163.006667pt;}
.y6e{bottom:163.030667pt;}
.y4d{bottom:170.791496pt;}
.y4a{bottom:171.286975pt;}
.y36{bottom:173.826667pt;}
.y183{bottom:174.962667pt;}
.y109{bottom:175.674667pt;}
.y6d{bottom:178.970667pt;}
.y108{bottom:178.972000pt;}
.yad{bottom:179.037333pt;}
.y4e{bottom:180.637365pt;}
.yb0{bottom:182.522201pt;}
.yaf{bottom:183.804948pt;}
.y182{bottom:186.917333pt;}
.y35{bottom:189.766667pt;}
.y4c{bottom:189.938208pt;}
.y41{bottom:190.369982pt;}
.yac{bottom:194.910667pt;}
.y6c{bottom:194.912000pt;}
.y140{bottom:195.073333pt;}
.y181{bottom:198.872000pt;}
.y52{bottom:201.341295pt;}
.y34{bottom:205.706667pt;}
.y40{bottom:206.416413pt;}
.y107{bottom:207.554667pt;}
.y4b{bottom:208.009023pt;}
.y180{bottom:210.828000pt;}
.y6b{bottom:210.852000pt;}
.y3e{bottom:218.463622pt;}
.y135{bottom:218.984000pt;}
.y33{bottom:221.646667pt;}
.y17f{bottom:222.782667pt;}
.yab{bottom:226.792000pt;}
.y6a{bottom:227.062667pt;}
.y17e{bottom:234.738667pt;}
.y32{bottom:237.586667pt;}
.yb2{bottom:240.245825pt;}
.yb1{bottom:241.528572pt;}
.yaa{bottom:242.732000pt;}
.y69{bottom:243.002667pt;}
.yb5{bottom:244.124608pt;}
.y106{bottom:244.354667pt;}
.yb6{bottom:246.323603pt;}
.y17d{bottom:246.693333pt;}
.y31{bottom:253.526667pt;}
.y17c{bottom:258.648000pt;}
.ya9{bottom:258.672000pt;}
.y68{bottom:258.944000pt;}
.y105{bottom:260.294667pt;}
.y30{bottom:269.468000pt;}
.y17b{bottom:270.604000pt;}
.ydc{bottom:274.612000pt;}
.y162{bottom:274.613333pt;}
.y67{bottom:274.884000pt;}
.ya8{bottom:275.996000pt;}
.y17a{bottom:282.558667pt;}
.y2f{bottom:285.408000pt;}
.y104{bottom:287.497333pt;}
.ydb{bottom:290.553333pt;}
.y66{bottom:290.824000pt;}
.ya7{bottom:291.936000pt;}
.y2e{bottom:301.348000pt;}
.y179{bottom:301.388000pt;}
.yda{bottom:306.493333pt;}
.y65{bottom:306.764000pt;}
.ya6{bottom:307.877333pt;}
.y2d{bottom:317.288000pt;}
.yd9{bottom:322.361333pt;}
.y161{bottom:322.433333pt;}
.y64{bottom:322.704000pt;}
.y178{bottom:323.604000pt;}
.ya5{bottom:323.817333pt;}
.y2c{bottom:333.228000pt;}
.yd8{bottom:338.301333pt;}
.y160{bottom:338.373333pt;}
.y63{bottom:338.644000pt;}
.y177{bottom:339.545333pt;}
.y2b{bottom:349.168000pt;}
.ya4{bottom:354.225333pt;}
.yd7{bottom:354.241333pt;}
.y15f{bottom:354.313333pt;}
.y62{bottom:354.585333pt;}
.y176{bottom:355.485333pt;}
.y2a{bottom:365.109333pt;}
.ya3{bottom:366.869333pt;}
.ya2{bottom:370.166667pt;}
.yd6{bottom:370.182667pt;}
.y15e{bottom:370.254667pt;}
.y61{bottom:370.525333pt;}
.y175{bottom:371.425333pt;}
.y9d{bottom:372.822667pt;}
.y99{bottom:378.004000pt;}
.y29{bottom:380.712000pt;}
.y9c{bottom:381.324000pt;}
.ya1{bottom:382.809333pt;}
.ya0{bottom:386.106667pt;}
.yd5{bottom:386.122667pt;}
.y15d{bottom:386.194667pt;}
.y60{bottom:386.736000pt;}
.y174{bottom:387.365333pt;}
.y9b{bottom:389.294667pt;}
.y134{bottom:394.978667pt;}
.y28{bottom:396.653333pt;}
.y9f{bottom:398.749333pt;}
.y9e{bottom:402.046667pt;}
.yd4{bottom:402.062667pt;}
.y15c{bottom:402.134667pt;}
.y5f{bottom:402.676000pt;}
.y173{bottom:407.041333pt;}
.y133{bottom:410.920000pt;}
.y27{bottom:412.593333pt;}
.y9a{bottom:412.673333pt;}
.yd3{bottom:418.002667pt;}
.y15b{bottom:418.074667pt;}
.y5e{bottom:418.617333pt;}
.y132{bottom:426.860000pt;}
.y26{bottom:428.533333pt;}
.y103{bottom:428.617333pt;}
.y172{bottom:429.257333pt;}
.yd2{bottom:433.942667pt;}
.y15a{bottom:434.014667pt;}
.y5d{bottom:434.557333pt;}
.y98{bottom:436.680000pt;}
.y131{bottom:442.800000pt;}
.y25{bottom:444.473333pt;}
.y102{bottom:444.557333pt;}
.y171{bottom:445.198667pt;}
.yd1{bottom:449.884000pt;}
.y5c{bottom:450.497333pt;}
.y97{bottom:452.620000pt;}
.y130{bottom:458.740000pt;}
.y24{bottom:460.413333pt;}
.y170{bottom:461.138667pt;}
.y159{bottom:462.838667pt;}
.y101{bottom:465.636000pt;}
.yd0{bottom:465.824000pt;}
.y5b{bottom:466.437333pt;}
.y96{bottom:469.944000pt;}
.y12f{bottom:474.680000pt;}
.y158{bottom:474.794667pt;}
.y23{bottom:476.353333pt;}
.y16f{bottom:477.078667pt;}
.y100{bottom:481.576000pt;}
.ycf{bottom:481.764000pt;}
.y5a{bottom:482.377333pt;}
.yfd{bottom:484.233333pt;}
.y95{bottom:485.884000pt;}
.yf9{bottom:489.413333pt;}
.y12e{bottom:490.620000pt;}
.y22{bottom:492.294667pt;}
.yfc{bottom:492.734667pt;}
.y16e{bottom:493.018667pt;}
.yff{bottom:497.516000pt;}
.yce{bottom:497.704000pt;}
.yfb{bottom:500.704000pt;}
.y94{bottom:501.824000pt;}
.y59{bottom:503.450667pt;}
.y12d{bottom:506.561333pt;}
.y21{bottom:508.234667pt;}
.y16d{bottom:508.958667pt;}
.yfe{bottom:513.456000pt;}
.ycd{bottom:513.644000pt;}
.y93{bottom:517.765333pt;}
.y12c{bottom:522.501333pt;}
.yfa{bottom:524.084000pt;}
.y20{bottom:524.174667pt;}
.y16c{bottom:524.900000pt;}
.ycc{bottom:529.584000pt;}
.y92{bottom:533.705333pt;}
.y12b{bottom:538.441333pt;}
.y1f{bottom:540.114667pt;}
.y16b{bottom:540.840000pt;}
.y58{bottom:544.088000pt;}
.ycb{bottom:545.525333pt;}
.yf8{bottom:547.773333pt;}
.y91{bottom:549.645333pt;}
.y12a{bottom:554.381333pt;}
.y57{bottom:556.042667pt;}
.y16a{bottom:556.780000pt;}
.y1e{bottom:559.902667pt;}
.yca{bottom:561.465333pt;}
.yf7{bottom:563.713333pt;}
.y90{bottom:565.585333pt;}
.y129{bottom:570.321333pt;}
.y169{bottom:572.720000pt;}
.yc9{bottom:577.405333pt;}
.yf6{bottom:579.654667pt;}
.y3d{bottom:579.953333pt;}
.y8f{bottom:581.525333pt;}
.y1d{bottom:582.790667pt;}
.y128{bottom:586.262667pt;}
.y168{bottom:588.660000pt;}
.yc8{bottom:593.273333pt;}
.yf5{bottom:595.594667pt;}
.y1c{bottom:596.073333pt;}
.y8e{bottom:597.466667pt;}
.y167{bottom:604.600000pt;}
.yc7{bottom:609.214667pt;}
.y1b{bottom:609.357333pt;}
.y8d{bottom:610.109333pt;}
.yf4{bottom:611.534667pt;}
.y8c{bottom:613.406667pt;}
.y127{bottom:615.176000pt;}
.y126{bottom:618.474667pt;}
.y166{bottom:620.541333pt;}
.y1a{bottom:622.641333pt;}
.yc6{bottom:625.154667pt;}
.yf3{bottom:627.474667pt;}
.y8b{bottom:629.346667pt;}
.y125{bottom:631.249333pt;}
.y124{bottom:634.548000pt;}
.y19{bottom:635.924000pt;}
.y165{bottom:640.217333pt;}
.yc5{bottom:641.094667pt;}
.yf2{bottom:643.414667pt;}
.y8a{bottom:645.286667pt;}
.y123{bottom:647.322667pt;}
.y157{bottom:649.125333pt;}
.y18{bottom:649.208000pt;}
.y122{bottom:650.621333pt;}
.yc4{bottom:657.034667pt;}
.y89{bottom:661.226667pt;}
.y17{bottom:662.492000pt;}
.y120{bottom:663.305333pt;}
.y121{bottom:663.394667pt;}
.y156{bottom:665.065333pt;}
.y11f{bottom:666.693333pt;}
.yc3{bottom:672.974667pt;}
.yf1{bottom:673.340000pt;}
.y164{bottom:673.465333pt;}
.y16{bottom:675.774667pt;}
.y88{bottom:677.166667pt;}
.y11e{bottom:679.468000pt;}
.y155{bottom:681.005333pt;}
.y11d{bottom:682.766667pt;}
.yc2{bottom:688.914667pt;}
.y15{bottom:689.058667pt;}
.y87{bottom:693.108000pt;}
.y154{bottom:696.945333pt;}
.yeb{bottom:697.250667pt;}
.y14{bottom:702.342667pt;}
.y11c{bottom:703.888000pt;}
.yc1{bottom:704.856000pt;}
.y86{bottom:709.048000pt;}
.y153{bottom:712.885333pt;}
.y13{bottom:715.625333pt;}
.yc0{bottom:724.908000pt;}
.y85{bottom:724.988000pt;}
.y152{bottom:728.826667pt;}
.y151{bottom:728.892000pt;}
.y12{bottom:728.909333pt;}
.y11b{bottom:729.378667pt;}
.y84{bottom:740.928000pt;}
.y11a{bottom:741.333333pt;}
.y11{bottom:742.192000pt;}
.y150{bottom:744.766667pt;}
.y10{bottom:755.476000pt;}
.y83{bottom:756.868000pt;}
.y14f{bottom:760.706667pt;}
.ybf{bottom:767.092000pt;}
.yf{bottom:768.760000pt;}
.y119{bottom:774.104000pt;}
.y82{bottom:774.192000pt;}
.ye{bottom:782.042667pt;}
.y118{bottom:790.044000pt;}
.y81{bottom:790.133333pt;}
.yae{bottom:791.001486pt;}
.yea{bottom:792.804000pt;}
.yd{bottom:795.326667pt;}
.y117{bottom:805.984000pt;}
.y80{bottom:806.073333pt;}
.yc{bottom:808.610667pt;}
.y14e{bottom:808.636000pt;}
.ye9{bottom:808.744000pt;}
.yb{bottom:821.893333pt;}
.y116{bottom:821.925333pt;}
.y7f{bottom:822.013333pt;}
.ye8{bottom:824.685333pt;}
.y14d{bottom:824.709333pt;}
.y3c{bottom:832.520000pt;}
.ya{bottom:835.177333pt;}
.y115{bottom:837.865333pt;}
.ye7{bottom:840.625333pt;}
.y14c{bottom:840.782667pt;}
.y3b{bottom:848.460000pt;}
.y9{bottom:848.461333pt;}
.y114{bottom:853.805333pt;}
.y7e{bottom:854.750667pt;}
.ye6{bottom:856.565333pt;}
.y14b{bottom:856.856000pt;}
.y163{bottom:857.226667pt;}
.y113{bottom:869.745333pt;}
.ye5{bottom:872.505333pt;}
.y14a{bottom:872.928000pt;}
.y74{bottom:878.661333pt;}
.y112{bottom:885.685333pt;}
.ye4{bottom:888.445333pt;}
.y149{bottom:889.001333pt;}
.y8{bottom:890.218667pt;}
.y7{bottom:895.038667pt;}
.y111{bottom:901.625333pt;}
.ye3{bottom:904.385333pt;}
.y148{bottom:905.074667pt;}
.y6{bottom:906.944000pt;}
.y5{bottom:911.764000pt;}
.y110{bottom:917.566667pt;}
.ye2{bottom:920.326667pt;}
.y147{bottom:921.148000pt;}
.y4{bottom:923.669333pt;}
.ye1{bottom:936.266667pt;}
.y146{bottom:937.221333pt;}
.y3{bottom:940.305333pt;}
.y10f{bottom:943.300000pt;}
.ye0{bottom:952.206667pt;}
.y145{bottom:953.293333pt;}
.ydf{bottom:968.146667pt;}
.y144{bottom:974.414667pt;}
.y2{bottom:982.148000pt;}
.yde{bottom:984.086667pt;}
.y10e{bottom:984.973333pt;}
.y143{bottom:999.905333pt;}
.ydd{bottom:1000.026667pt;}
.y10d{bottom:1000.593333pt;}
.y10c{bottom:1003.890667pt;}
.y142{bottom:1011.861333pt;}
.y1{bottom:1019.342667pt;}
.y73{bottom:1019.830667pt;}
.y141{bottom:1023.816000pt;}
.y72{bottom:1035.770667pt;}
.h1e{height:2.125355pt;}
.h30{height:14.433666pt;}
.h27{height:14.471997pt;}
.h2c{height:14.525115pt;}
.h26{height:18.324655pt;}
.h48{height:20.160886pt;}
.h49{height:23.396036pt;}
.h31{height:26.154926pt;}
.h28{height:26.190477pt;}
.h2d{height:26.322310pt;}
.h32{height:26.390174pt;}
.h29{height:26.460148pt;}
.h2e{height:26.557376pt;}
.h25{height:27.487135pt;}
.h8{height:27.895200pt;}
.h1b{height:28.066130pt;}
.h4e{height:29.159939pt;}
.hd{height:29.244954pt;}
.h4d{height:29.452954pt;}
.h15{height:29.458287pt;}
.h3f{height:29.499997pt;}
.h33{height:30.541600pt;}
.h34{height:30.545672pt;}
.h47{height:31.016934pt;}
.h2f{height:31.790958pt;}
.h4b{height:31.880400pt;}
.h2a{height:31.992134pt;}
.h3e{height:32.834287pt;}
.h4a{height:32.839620pt;}
.h2b{height:32.886043pt;}
.hb{height:33.187635pt;}
.hf{height:34.825901pt;}
.h10{height:34.879645pt;}
.h16{height:36.449833pt;}
.h7{height:36.556100pt;}
.ha{height:36.817434pt;}
.h9{height:36.822767pt;}
.h45{height:37.446562pt;}
.h18{height:37.459376pt;}
.h22{height:37.778179pt;}
.h17{height:38.043849pt;}
.h40{height:38.353229pt;}
.h4c{height:38.358562pt;}
.h12{height:38.695446pt;}
.h11{height:38.749190pt;}
.h21{height:39.850400pt;}
.h5{height:40.505190pt;}
.hc{height:41.046767pt;}
.h37{height:41.533044pt;}
.h36{height:41.576307pt;}
.h1a{height:43.178856pt;}
.h43{height:43.286562pt;}
.h42{height:45.075067pt;}
.h1c{height:45.427101pt;}
.h23{height:45.432434pt;}
.h3a{height:45.799037pt;}
.h3c{height:45.804370pt;}
.h1f{height:47.175200pt;}
.h3d{height:49.740100pt;}
.h3b{height:49.745434pt;}
.h38{height:49.831200pt;}
.h41{height:50.641229pt;}
.h44{height:50.998562pt;}
.h39{height:51.068533pt;}
.h14{height:51.593928pt;}
.h13{height:51.647672pt;}
.h6{height:52.995067pt;}
.h1d{height:58.616434pt;}
.h20{height:60.364533pt;}
.h35{height:78.781525pt;}
.h3{height:87.734861pt;}
.h2{height:88.369527pt;}
.h4{height:88.374861pt;}
.h19{height:108.760589pt;}
.h46{height:157.106856pt;}
.he{height:230.638241pt;}
.h24{height:255.924712pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:132.870367pt;}
.w4{width:215.912874pt;}
.w3{width:232.532993pt;}
.w6{width:298.970215pt;}
.w2{width:332.193884pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8f{left:2.363720pt;}
.x38{left:4.491373pt;}
.x32{left:15.055686pt;}
.x67{left:23.899464pt;}
.x66{left:26.251116pt;}
.x31{left:33.844944pt;}
.x61{left:41.426677pt;}
.x63{left:44.328129pt;}
.x6c{left:51.352697pt;}
.x62{left:60.393011pt;}
.x60{left:63.080672pt;}
.xbb{left:64.863655pt;}
.x13{left:68.032000pt;}
.xc4{left:69.140000pt;}
.x20{left:72.454667pt;}
.xc2{left:75.252000pt;}
.x49{left:76.316981pt;}
.x92{left:77.406667pt;}
.xbc{left:80.344271pt;}
.x12{left:81.314667pt;}
.x90{left:83.305284pt;}
.x4c{left:85.184378pt;}
.x1{left:89.322667pt;}
.x95{left:90.712000pt;}
.xc9{left:95.024000pt;}
.x68{left:97.290878pt;}
.x4d{left:107.332627pt;}
.xcf{left:113.048000pt;}
.x1f{left:114.364000pt;}
.x1d{left:116.741333pt;}
.x48{left:117.860000pt;}
.xcc{left:119.893333pt;}
.x93{left:121.252000pt;}
.x8b{left:123.286667pt;}
.x4b{left:125.755759pt;}
.x97{left:129.680000pt;}
.x55{left:134.862667pt;}
.x94{left:136.749333pt;}
.x19{left:140.048000pt;}
.x50{left:142.593333pt;}
.x3{left:145.050667pt;}
.x2{left:147.758667pt;}
.x33{left:148.767682pt;}
.x26{left:150.810667pt;}
.x52{left:152.682667pt;}
.x17{left:153.625333pt;}
.xf{left:155.268000pt;}
.x89{left:156.477333pt;}
.x35{left:158.125151pt;}
.x34{left:159.349691pt;}
.x4a{left:161.589763pt;}
.xc{left:162.786667pt;}
.x5b{left:165.904000pt;}
.x65{left:166.799945pt;}
.x18{left:167.745333pt;}
.x5e{left:171.430667pt;}
.x28{left:172.965333pt;}
.x64{left:174.679678pt;}
.x5{left:175.821333pt;}
.x14{left:178.673333pt;}
.x6b{left:180.326209pt;}
.x23{left:182.648000pt;}
.x6a{left:187.656193pt;}
.x8a{left:188.636000pt;}
.x1b{left:191.220000pt;}
.x5d{left:193.161333pt;}
.x25{left:196.572000pt;}
.x21{left:198.553333pt;}
.x69{left:203.049159pt;}
.x56{left:206.041333pt;}
.xba{left:209.400503pt;}
.xc0{left:212.861333pt;}
.x2b{left:214.388000pt;}
.x53{left:217.409333pt;}
.x1a{left:221.132000pt;}
.x9a{left:222.400000pt;}
.x96{left:226.285333pt;}
.x54{left:227.352000pt;}
.x6{left:228.833333pt;}
.x36{left:231.123315pt;}
.x91{left:233.153333pt;}
.x24{left:234.317333pt;}
.x57{left:236.572000pt;}
.x99{left:239.714667pt;}
.xbd{left:242.664194pt;}
.x4e{left:247.788000pt;}
.x27{left:254.668000pt;}
.xd2{left:257.766667pt;}
.x10{left:265.516000pt;}
.xb{left:267.830667pt;}
.x5c{left:269.814667pt;}
.x15{left:273.584000pt;}
.xce{left:275.077333pt;}
.x22{left:276.884000pt;}
.xcb{left:278.569333pt;}
.x4f{left:281.118667pt;}
.xb9{left:285.632342pt;}
.xd0{left:288.265333pt;}
.x37{left:296.823786pt;}
.x5f{left:297.865333pt;}
.x58{left:300.314667pt;}
.xc3{left:307.252000pt;}
.x51{left:315.780000pt;}
.x59{left:318.628000pt;}
.xca{left:324.840000pt;}
.xc6{left:326.804000pt;}
.x5a{left:329.697333pt;}
.x2a{left:331.150667pt;}
.xc7{left:335.196000pt;}
.xc1{left:337.506667pt;}
.x1e{left:344.780000pt;}
.xc5{left:346.581333pt;}
.x98{left:350.462667pt;}
.x1c{left:352.656000pt;}
.x7{left:354.374667pt;}
.x8d{left:363.148000pt;}
.x29{left:366.934667pt;}
.xd1{left:371.818667pt;}
.x16{left:377.094667pt;}
.xc8{left:379.985333pt;}
.xcd{left:383.614667pt;}
.xd{left:385.040000pt;}
.x8c{left:386.936000pt;}
.x8e{left:390.628000pt;}
.x2c{left:416.158667pt;}
.xd9{left:419.852000pt;}
.x81{left:421.326667pt;}
.x41{left:422.801333pt;}
.x6e{left:427.993333pt;}
.x3b{left:429.442667pt;}
.xb8{left:432.769459pt;}
.x76{left:433.666667pt;}
.xe1{left:435.192000pt;}
.xa2{left:437.558667pt;}
.xa6{left:439.777333pt;}
.x4{left:441.822667pt;}
.x9b{left:444.585333pt;}
.xad{left:445.704000pt;}
.xaa{left:447.936000pt;}
.x9d{left:449.168000pt;}
.x6d{left:450.454667pt;}
.xaf{left:453.138667pt;}
.x9f{left:454.458667pt;}
.xd5{left:456.753333pt;}
.xa7{left:464.046667pt;}
.xb5{left:466.317333pt;}
.x39{left:474.010667pt;}
.x7b{left:475.921333pt;}
.xb6{left:478.125333pt;}
.x8{left:481.320000pt;}
.xd7{left:484.576000pt;}
.x9{left:486.185333pt;}
.x3a{left:487.358667pt;}
.xd4{left:488.416000pt;}
.x11{left:491.506667pt;}
.x82{left:494.714667pt;}
.x42{left:496.662667pt;}
.xda{left:499.825333pt;}
.x3f{left:500.746667pt;}
.x45{left:507.056000pt;}
.xbe{left:511.792000pt;}
.xb7{left:524.528000pt;}
.x7d{left:526.522667pt;}
.x72{left:529.004000pt;}
.x7f{left:530.893333pt;}
.xdf{left:532.101333pt;}
.x74{left:534.086667pt;}
.xa5{left:540.202667pt;}
.xe0{left:542.369333pt;}
.x2e{left:545.206667pt;}
.x77{left:548.064000pt;}
.xa8{left:552.801333pt;}
.x2d{left:555.393333pt;}
.x88{left:556.872000pt;}
.xd3{left:561.445333pt;}
.x46{left:562.526667pt;}
.x6f{left:563.961333pt;}
.x83{left:568.317333pt;}
.xbf{left:572.941333pt;}
.x3e{left:574.694667pt;}
.x43{left:576.208000pt;}
.xab{left:579.590667pt;}
.x3c{left:581.505333pt;}
.x79{left:584.737333pt;}
.x86{left:588.713333pt;}
.xa{left:591.390667pt;}
.xd8{left:593.497333pt;}
.xb4{left:597.278667pt;}
.x2f{left:598.261333pt;}
.xb2{left:603.920000pt;}
.x40{left:606.033333pt;}
.xb0{left:608.312000pt;}
.x7a{left:610.089333pt;}
.x73{left:612.717333pt;}
.xac{left:614.238667pt;}
.x80{left:615.552000pt;}
.x3d{left:616.452000pt;}
.xe{left:622.309333pt;}
.x78{left:625.226667pt;}
.xae{left:627.524000pt;}
.x70{left:628.678667pt;}
.xa9{left:633.310667pt;}
.xb3{left:638.766667pt;}
.xb1{left:643.157333pt;}
.x9c{left:650.473333pt;}
.x85{left:655.093333pt;}
.xd6{left:657.956000pt;}
.x9e{left:666.260000pt;}
.x44{left:671.576000pt;}
.xa0{left:672.774667pt;}
.x30{left:675.424000pt;}
.xa3{left:679.560000pt;}
.xdc{left:701.610667pt;}
.x84{left:716.573333pt;}
.xdd{left:718.078667pt;}
.xa1{left:719.561333pt;}
.x71{left:720.518667pt;}
.x47{left:722.524000pt;}
.x7e{left:729.165333pt;}
.xde{left:731.742667pt;}
.xdb{left:733.589333pt;}
.xa4{left:735.062667pt;}
.x7c{left:738.756000pt;}
.x75{left:741.333333pt;}
.x87{left:742.449333pt;}
}




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