
    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_73b23052d6b4244268c874c4.woff')format("woff");}.ff1{font-family:ff1;line-height:0.905000;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_dcb8406b8e3c863f3dd829d6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_93f044705bbbfbbd8e39b0d1.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0a7e43aae2cb20833dfe0bec.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5cee2aa58994e09859b2c725.woff')format("woff");}.ff5{font-family:ff5;line-height:1.001000;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_4281f51eed3db0a0e17f76e2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.911000;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_fd0017f3330ff543c63a5b96.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e76f6de63b1f581239b311b4.woff')format("woff");}.ff8{font-family:ff8;line-height:0.918000;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_c046feeb2eaa641a80054c71.woff')format("woff");}.ff9{font-family:ff9;line-height:0.734000;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_8dfe66d57f7f79eb765f4ce2.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c82d23e781ebc46001f7abf7.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_2db500d3f5bad6c184673b6a.woff')format("woff");}.ffc{font-family:ffc;line-height:0.918000;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_ef98586b0ac0fe3e80a95e1a.woff')format("woff");}.ffd{font-family:ffd;line-height:1.001000;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_74a7441cb174ebe3c9b2381e.woff')format("woff");}.ffe{font-family:ffe;line-height:0.925000;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_78a3d20bca33d1652670a906.woff')format("woff");}.fff{font-family:fff;line-height:0.803000;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_95df74377389ac53c57be329.woff')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_ad280ceb5fc67c922fd01e2c.woff')format("woff");}.ff11{font-family:ff11;line-height:0.908000;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_fd22c2bf4d43ecba1c0f0bf1.woff')format("woff");}.ff12{font-family:ff12;line-height:1.400000;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_184980f8dadb49a1ee7bd268.woff')format("woff");}.ff13{font-family:ff13;line-height:0.486000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff14{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff15;src:url('chunks/assets/font_0fc1928f4cd444a2e6edd2d9.woff')format("woff");}.ff15{font-family:ff15;line-height:0.694000;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;}
.ff16{font-family:sans-serif;visibility:hidden;}
.ff17{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff18;src:url('chunks/assets/font_f4bd17b60ffd7fcd702dd4e5.woff')format("woff");}.ff18{font-family:ff18;line-height:0.479000;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_c9aec218dda8b7d19d520add.woff')format("woff");}.ff19{font-family:ff19;line-height:0.520000;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_562df48afe275f84a5dd4976.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.857000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-31.236000px;}
.v3{vertical-align:-21.696000px;}
.v6{vertical-align:-11.160000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:26.028000px;}
.v1{vertical-align:31.236000px;}
.v5{vertical-align:38.572120px;}
.v7{vertical-align:43.338000px;}
.v8{vertical-align:69.366000px;}
.ls1{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.000960px;}
.ls2f{letter-spacing:0.001114px;}
.ls30{letter-spacing:0.001473px;}
.ls4c{letter-spacing:0.002202px;}
.ls5e{letter-spacing:0.002338px;}
.ls7{letter-spacing:0.002712px;}
.ls3a{letter-spacing:0.002759px;}
.ls61{letter-spacing:0.004200px;}
.ls3e{letter-spacing:0.174141px;}
.ls71{letter-spacing:0.415114px;}
.ls59{letter-spacing:0.586737px;}
.ls46{letter-spacing:1.271644px;}
.ls2{letter-spacing:1.527746px;}
.ls48{letter-spacing:1.717905px;}
.ls4{letter-spacing:2.988710px;}
.ls5{letter-spacing:2.988741px;}
.ls57{letter-spacing:5.637295px;}
.ls54{letter-spacing:8.013894px;}
.ls3d{letter-spacing:9.760765px;}
.ls2e{letter-spacing:11.953114px;}
.ls43{letter-spacing:14.942915px;}
.ls4b{letter-spacing:15.935518px;}
.ls42{letter-spacing:15.941518px;}
.ls47{letter-spacing:16.217644px;}
.ls41{letter-spacing:16.393809px;}
.ls60{letter-spacing:16.600896px;}
.ls5d{letter-spacing:16.602538px;}
.ls5c{letter-spacing:16.606896px;}
.ls49{letter-spacing:16.663905px;}
.ls25{letter-spacing:16.928563px;}
.ls26{letter-spacing:17.000294px;}
.ls15{letter-spacing:18.363187px;}
.ls44{letter-spacing:18.925739px;}
.ls4a{letter-spacing:18.930141px;}
.ls45{letter-spacing:18.931739px;}
.ls17{letter-spacing:18.989764px;}
.ls80{letter-spacing:19.405473px;}
.ls22{letter-spacing:19.905275px;}
.ls3c{letter-spacing:19.918821px;}
.ls78{letter-spacing:19.921473px;}
.ls5f{letter-spacing:19.922338px;}
.ls40{letter-spacing:19.925518px;}
.ls0{letter-spacing:19.926538px;}
.ls77{letter-spacing:19.927288px;}
.ls2c{letter-spacing:19.965050px;}
.ls33{letter-spacing:20.084736px;}
.ls10{letter-spacing:20.299930px;}
.ls12{letter-spacing:20.371661px;}
.ls74{letter-spacing:20.413114px;}
.ls8{letter-spacing:20.586854px;}
.ls11{letter-spacing:20.873779px;}
.ls20{letter-spacing:21.041011px;}
.ls1c{letter-spacing:21.088973px;}
.ls72{letter-spacing:22.069288px;}
.ls70{letter-spacing:22.073518px;}
.ls73{letter-spacing:22.075473px;}
.ls38{letter-spacing:22.117473px;}
.ls79{letter-spacing:22.236672px;}
.ls7a{letter-spacing:22.308403px;}
.ls39{letter-spacing:22.554538px;}
.ls75{letter-spacing:22.614179px;}
.lsb{letter-spacing:22.882253px;}
.ls3f{letter-spacing:22.914141px;}
.ls5b{letter-spacing:22.915409px;}
.ls76{letter-spacing:23.365114px;}
.ls24{letter-spacing:23.384371px;}
.ls81{letter-spacing:23.409446px;}
.ls7e{letter-spacing:23.409910px;}
.ls31{letter-spacing:23.410404px;}
.ls7f{letter-spacing:23.415910px;}
.ls14{letter-spacing:23.456102px;}
.ls68{letter-spacing:24.061473px;}
.ls67{letter-spacing:24.067288px;}
.ls9{letter-spacing:24.101683px;}
.ls7c{letter-spacing:24.747264px;}
.ls6f{letter-spacing:24.756179px;}
.ls7d{letter-spacing:24.818995px;}
.ls6e{letter-spacing:24.991114px;}
.ls2b{letter-spacing:25.823232px;}
.ls1e{letter-spacing:26.038426px;}
.ls1f{letter-spacing:26.110157px;}
.ls1b{letter-spacing:26.397082px;}
.ls63{letter-spacing:26.419114px;}
.ls66{letter-spacing:26.449114px;}
.ls6a{letter-spacing:26.455114px;}
.ls69{letter-spacing:26.754179px;}
.ls62{letter-spacing:27.008915px;}
.ls34{letter-spacing:27.128915px;}
.ls6c{letter-spacing:27.361288px;}
.ls21{letter-spacing:27.377225px;}
.ls32{letter-spacing:27.529473px;}
.ls6d{letter-spacing:27.781473px;}
.ls13{letter-spacing:28.477286px;}
.ls6b{letter-spacing:28.873114px;}
.ls6{letter-spacing:29.381412px;}
.ls18{letter-spacing:29.408915px;}
.ls36{letter-spacing:29.527473px;}
.ls35{letter-spacing:29.533473px;}
.ls2a{letter-spacing:29.983642px;}
.ls29{letter-spacing:30.055373px;}
.ls23{letter-spacing:30.772685px;}
.ls3{letter-spacing:31.084200px;}
.ls7b{letter-spacing:31.561728px;}
.ls28{letter-spacing:32.063846px;}
.ls27{letter-spacing:32.135578px;}
.ls16{letter-spacing:32.494234px;}
.ls52{letter-spacing:32.548404px;}
.ls4d{letter-spacing:32.549518px;}
.lsa{letter-spacing:32.637696px;}
.lse{letter-spacing:32.781158px;}
.lsd{letter-spacing:32.852890px;}
.ls2d{letter-spacing:34.712915px;}
.lsf{letter-spacing:34.717901px;}
.ls4e{letter-spacing:34.837114px;}
.ls3b{letter-spacing:35.042759px;}
.ls51{letter-spacing:35.479473px;}
.ls50{letter-spacing:35.485288px;}
.ls64{letter-spacing:37.039114px;}
.ls1d{letter-spacing:37.448915px;}
.ls4f{letter-spacing:39.383724px;}
.ls65{letter-spacing:41.172179px;}
.ls19{letter-spacing:43.232915px;}
.lsc{letter-spacing:49.286915px;}
.ls37{letter-spacing:50.624915px;}
.ls58{letter-spacing:590.816915px;}
.ls5a{letter-spacing:602.654915px;}
.ls55{letter-spacing:618.188915px;}
.ls56{letter-spacing:651.609894px;}
.ls53{letter-spacing:653.177566px;}
.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;}
}
.wsa8{word-spacing:-45.664082px;}
.wsf{word-spacing:-42.143397px;}
.ws71{word-spacing:-35.865600px;}
.wsa{word-spacing:-35.119596px;}
.wsd9{word-spacing:-33.684972px;}
.wsd4{word-spacing:-31.257494px;}
.ws1f{word-spacing:-29.887800px;}
.wsbe{word-spacing:-19.553925px;}
.wsc7{word-spacing:-19.267000px;}
.wsdf{word-spacing:-19.051807px;}
.ws6{word-spacing:-18.764882px;}
.ws16a{word-spacing:-18.621420px;}
.ws154{word-spacing:-18.334495px;}
.ws171{word-spacing:-18.262764px;}
.ws8c{word-spacing:-18.191032px;}
.wsec{word-spacing:-18.119301px;}
.wsbd{word-spacing:-17.975839px;}
.wsbb{word-spacing:-17.789338px;}
.ws159{word-spacing:-17.502413px;}
.wseb{word-spacing:-17.473720px;}
.ws60{word-spacing:-17.401989px;}
.ws126{word-spacing:-17.330258px;}
.wsbc{word-spacing:-17.115064px;}
.ws119{word-spacing:-17.043333px;}
.ws89{word-spacing:-16.828140px;}
.ws55{word-spacing:-16.756408px;}
.ws18{word-spacing:-16.690923px;}
.ws56{word-spacing:-16.684677px;}
.ws34{word-spacing:-16.541215px;}
.ws9d{word-spacing:-16.326021px;}
.ws61{word-spacing:-16.254290px;}
.ws5b{word-spacing:-16.182559px;}
.ws5c{word-spacing:-16.110828px;}
.ws142{word-spacing:-16.067789px;}
.ws14d{word-spacing:-15.823903px;}
.ws5d{word-spacing:-15.752172px;}
.ws176{word-spacing:-15.680440px;}
.ws4d{word-spacing:-15.608709px;}
.ws82{word-spacing:-15.541656px;}
.ws4e{word-spacing:-15.536978px;}
.ws10b{word-spacing:-15.465247px;}
.ws13e{word-spacing:-15.422208px;}
.ws93{word-spacing:-15.250053px;}
.ws9e{word-spacing:-15.178322px;}
.ws4f{word-spacing:-15.106591px;}
.wsbf{word-spacing:-15.034860px;}
.ws2d{word-spacing:-14.963128px;}
.wsc1{word-spacing:-14.891397px;}
.ws72{word-spacing:-14.676204px;}
.ws73{word-spacing:-14.604472px;}
.ws14e{word-spacing:-14.561434px;}
.ws30{word-spacing:-14.532741px;}
.ws46{word-spacing:-14.461010px;}
.wscb{word-spacing:-14.405920px;}
.ws88{word-spacing:-14.389279px;}
.ws27{word-spacing:-14.334557px;}
.wse3{word-spacing:-14.245816px;}
.wsb0{word-spacing:-14.107042px;}
.wsd{word-spacing:-14.082230px;}
.ws77{word-spacing:-13.958892px;}
.ws8e{word-spacing:-13.743698px;}
.ws1{word-spacing:-13.691062px;}
.ws8d{word-spacing:-13.671967px;}
.ws129{word-spacing:-13.600236px;}
.ws52{word-spacing:-13.528504px;}
.ws3c{word-spacing:-13.456773px;}
.ws5a{word-spacing:-13.385042px;}
.ws116{word-spacing:-13.313311px;}
.wsd7{word-spacing:-13.241580px;}
.ws96{word-spacing:-13.169848px;}
.ws179{word-spacing:-13.156375px;}
.ws39{word-spacing:-13.098117px;}
.ws6f{word-spacing:-13.026386px;}
.ws5e{word-spacing:-12.911530px;}
.ws114{word-spacing:-12.882924px;}
.wsc6{word-spacing:-12.811192px;}
.ws42{word-spacing:-12.739461px;}
.wsea{word-spacing:-12.667730px;}
.ws6a{word-spacing:-12.595999px;}
.wsc9{word-spacing:-12.524268px;}
.ws9f{word-spacing:-12.452536px;}
.ws8b{word-spacing:-12.380805px;}
.ws1b{word-spacing:-12.313774px;}
.ws32{word-spacing:-12.309074px;}
.ws3b{word-spacing:-12.237343px;}
.ws36{word-spacing:-12.165612px;}
.wsba{word-spacing:-12.050842px;}
.ws21{word-spacing:-11.912737px;}
.wsb5{word-spacing:-11.878687px;}
.ws17{word-spacing:-11.847283px;}
.ws8a{word-spacing:-11.806956px;}
.ws29{word-spacing:-11.781828px;}
.ws10d{word-spacing:-11.775360px;}
.ws9{word-spacing:-11.735224px;}
.ws54{word-spacing:-11.663493px;}
.wscd{word-spacing:-11.596466px;}
.wsa2{word-spacing:-11.591762px;}
.wsa1{word-spacing:-11.520031px;}
.ws19{word-spacing:-11.520010px;}
.ws173{word-spacing:-11.501224px;}
.ws144{word-spacing:-11.304837px;}
.wsc8{word-spacing:-11.233106px;}
.ws9c{word-spacing:-11.089644px;}
.ws31{word-spacing:-11.017912px;}
.wsc0{word-spacing:-10.946181px;}
.ws1a{word-spacing:-10.930918px;}
.ws70{word-spacing:-10.874450px;}
.ws157{word-spacing:-10.802719px;}
.ws8{word-spacing:-10.759680px;}
.ws17d{word-spacing:-10.734554px;}
.wse1{word-spacing:-10.730988px;}
.ws75{word-spacing:-10.659256px;}
.wsb3{word-spacing:-10.640057px;}
.ws74{word-spacing:-10.587525px;}
.ws6e{word-spacing:-10.515794px;}
.wsb1{word-spacing:-10.460730px;}
.wsd2{word-spacing:-10.444702px;}
.ws107{word-spacing:-10.444063px;}
.ws10a{word-spacing:-10.443360px;}
.ws143{word-spacing:-10.401024px;}
.wsd3{word-spacing:-10.380859px;}
.ws33{word-spacing:-10.372332px;}
.ws68{word-spacing:-10.300600px;}
.ws128{word-spacing:-10.257562px;}
.ws145{word-spacing:-10.228869px;}
.ws156{word-spacing:-10.114099px;}
.wsb2{word-spacing:-10.042301px;}
.ws2e{word-spacing:-10.013676px;}
.ws3{word-spacing:-9.982525px;}
.wsd0{word-spacing:-9.922750px;}
.ws17e{word-spacing:-9.818190px;}
.wsae{word-spacing:-9.803198px;}
.ws98{word-spacing:-9.726751px;}
.ws15{word-spacing:-9.687281px;}
.ws66{word-spacing:-9.583288px;}
.ws67{word-spacing:-9.511557px;}
.ws7b{word-spacing:-9.444545px;}
.ws90{word-spacing:-9.439826px;}
.ws80{word-spacing:-9.384769px;}
.ws64{word-spacing:-9.296364px;}
.ws101{word-spacing:-9.279360px;}
.ws17f{word-spacing:-9.163644px;}
.ws35{word-spacing:-9.152901px;}
.ws6c{word-spacing:-9.081170px;}
.ws14{word-spacing:-9.032735px;}
.ws76{word-spacing:-9.009439px;}
.ws16{word-spacing:-8.901826px;}
.wsa5{word-spacing:-8.892426px;}
.ws53{word-spacing:-8.865976px;}
.ws7a{word-spacing:-8.846789px;}
.ws178{word-spacing:-8.836371px;}
.ws69{word-spacing:-8.794245px;}
.ws12{word-spacing:-8.770916px;}
.ws57{word-spacing:-8.722514px;}
.ws79{word-spacing:-8.667462px;}
.ws13b{word-spacing:-8.650783px;}
.ws7{word-spacing:-8.579052px;}
.ws1c{word-spacing:-8.488135px;}
.ws48{word-spacing:-8.435589px;}
.wsca{word-spacing:-8.428360px;}
.ws9b{word-spacing:-8.363858px;}
.ws62{word-spacing:-8.148664px;}
.ws43{word-spacing:-8.076933px;}
.ws7e{word-spacing:-8.069706px;}
.ws3e{word-spacing:-8.005202px;}
.ws13c{word-spacing:-7.962163px;}
.ws13d{word-spacing:-7.933471px;}
.ws28{word-spacing:-7.920007px;}
.ws50{word-spacing:-7.790008px;}
.ws2f{word-spacing:-7.646546px;}
.ws65{word-spacing:-7.574815px;}
.ws6b{word-spacing:-7.503084px;}
.ws38{word-spacing:-7.359621px;}
.wscc{word-spacing:-7.352399px;}
.ws92{word-spacing:-7.287890px;}
.ws11c{word-spacing:-7.216159px;}
.ws44{word-spacing:-7.072696px;}
.ws11{word-spacing:-7.069097px;}
.wse2{word-spacing:-7.000965px;}
.ws14a{word-spacing:-6.929234px;}
.wsaf{word-spacing:-6.874194px;}
.ws85{word-spacing:-6.785772px;}
.ws131{word-spacing:-6.742733px;}
.ws45{word-spacing:-6.714040px;}
.ws78{word-spacing:-6.694867px;}
.ws2c{word-spacing:-6.642309px;}
.ws51{word-spacing:-6.570578px;}
.wsb8{word-spacing:-6.427116px;}
.ws117{word-spacing:-6.283653px;}
.ws83{word-spacing:-6.216662px;}
.ws63{word-spacing:-6.211922px;}
.wsab{word-spacing:-6.068460px;}
.ws110{word-spacing:-5.996728px;}
.ws140{word-spacing:-5.924997px;}
.ws1e{word-spacing:-5.917784px;}
.wse5{word-spacing:-5.853266px;}
.ws158{word-spacing:-5.709804px;}
.wsc4{word-spacing:-5.638072px;}
.wsc3{word-spacing:-5.618721px;}
.wsc5{word-spacing:-5.602564px;}
.ws37{word-spacing:-5.566341px;}
.ws7d{word-spacing:-5.499355px;}
.ws13f{word-spacing:-5.451571px;}
.ws112{word-spacing:-5.422879px;}
.ws47{word-spacing:-5.279416px;}
.ws15a{word-spacing:-5.207685px;}
.ws7c{word-spacing:-5.140702px;}
.ws97{word-spacing:-5.135954px;}
.ws113{word-spacing:-5.064223px;}
.ws3d{word-spacing:-4.920760px;}
.ws115{word-spacing:-4.777298px;}
.ws40{word-spacing:-4.633836px;}
.ws4a{word-spacing:-4.562104px;}
.ws17b{word-spacing:-4.516367px;}
.ws5f{word-spacing:-4.423394px;}
.ws87{word-spacing:-4.346911px;}
.ws169{word-spacing:-4.303872px;}
.ws3f{word-spacing:-4.275180px;}
.ws17a{word-spacing:-4.254549px;}
.ws4b{word-spacing:-4.203448px;}
.ws22{word-spacing:-4.201820px;}
.ws24{word-spacing:-4.189094px;}
.ws4c{word-spacing:-4.131717px;}
.ws16c{word-spacing:-4.088678px;}
.wsb6{word-spacing:-4.059986px;}
.ws26{word-spacing:-4.058185px;}
.wscf{word-spacing:-4.004965px;}
.ws125{word-spacing:-3.988255px;}
.ws10{word-spacing:-3.861821px;}
.wsb4{word-spacing:-3.773061px;}
.ws12a{word-spacing:-3.629599px;}
.wsac{word-spacing:-3.557868px;}
.ws17c{word-spacing:-3.534548px;}
.ws104{word-spacing:-3.486136px;}
.ws106{word-spacing:-3.478737px;}
.ws6d{word-spacing:-3.414405px;}
.ws20{word-spacing:-3.403639px;}
.ws12b{word-spacing:-3.371366px;}
.wsa0{word-spacing:-3.270943px;}
.ws11a{word-spacing:-3.199212px;}
.ws167{word-spacing:-3.156173px;}
.ws94{word-spacing:-3.055749px;}
.ws95{word-spacing:-2.984018px;}
.ws133{word-spacing:-2.912287px;}
.wsad{word-spacing:-2.840556px;}
.wse9{word-spacing:-2.625362px;}
.wse8{word-spacing:-2.571360px;}
.ws58{word-spacing:-2.553631px;}
.ws84{word-spacing:-2.510575px;}
.ws181{word-spacing:-2.487275px;}
.ws3a{word-spacing:-2.481900px;}
.ws132{word-spacing:-2.410168px;}
.ws1d{word-spacing:-2.391024px;}
.ws41{word-spacing:-2.338437px;}
.ws7f{word-spacing:-2.271473px;}
.wsc2{word-spacing:-2.266706px;}
.ws81{word-spacing:-2.211697px;}
.ws123{word-spacing:-2.194975px;}
.ws146{word-spacing:-2.123244px;}
.ws124{word-spacing:-2.080205px;}
.ws8f{word-spacing:-1.836319px;}
.wse4{word-spacing:-1.764588px;}
.ws155{word-spacing:-1.692856px;}
.wsce{word-spacing:-1.554166px;}
.ws99{word-spacing:-1.494390px;}
.ws168{word-spacing:-1.405932px;}
.wsb7{word-spacing:-1.262469px;}
.ws180{word-spacing:-1.112728px;}
.ws13{word-spacing:-1.047274px;}
.wsb9{word-spacing:-0.975544px;}
.ws91{word-spacing:-0.903813px;}
.wse0{word-spacing:-0.832082px;}
.ws59{word-spacing:-0.760351px;}
.ws11b{word-spacing:-0.616888px;}
.wsd6{word-spacing:-0.258232px;}
.wsd8{word-spacing:-0.114770px;}
.ws11d{word-spacing:-0.103292px;}
.wsa3{word-spacing:-0.071731px;}
.ws23{word-spacing:-0.065455px;}
.wse{word-spacing:-0.059776px;}
.wsdc{word-spacing:-0.047821px;}
.wsda{word-spacing:-0.043039px;}
.ws103{word-spacing:-0.041843px;}
.ws4{word-spacing:0.000000px;}
.ws118{word-spacing:0.243886px;}
.ws127{word-spacing:0.387348px;}
.ws86{word-spacing:0.602542px;}
.ws121{word-spacing:0.645581px;}
.ws120{word-spacing:0.674273px;}
.ws25{word-spacing:0.850910px;}
.wsaa{word-spacing:1.606779px;}
.ws153{word-spacing:1.750241px;}
.ws12f{word-spacing:2.223667px;}
.ws12e{word-spacing:2.467553px;}
.ws14c{word-spacing:2.754478px;}
.ws122{word-spacing:3.758715px;}
.ws14b{word-spacing:4.762952px;}
.ws135{word-spacing:5.092915px;}
.ws134{word-spacing:5.480264px;}
.ws130{word-spacing:5.982382px;}
.ws138{word-spacing:6.814464px;}
.ws137{word-spacing:7.345275px;}
.ws141{word-spacing:7.775662px;}
.ws11f{word-spacing:7.990856px;}
.ws136{word-spacing:9.855867px;}
.ws15b{word-spacing:10.501448px;}
.ws15c{word-spacing:11.218760px;}
.ws139{word-spacing:12.151265px;}
.ws15e{word-spacing:14.202778px;}
.ws12d{word-spacing:14.374932px;}
.ws15d{word-spacing:15.450900px;}
.ws16b{word-spacing:17.657028px;}
.ws12c{word-spacing:19.324385px;}
.wsdb{word-spacing:19.869542px;}
.ws13a{word-spacing:21.332859px;}
.wsfd{word-spacing:21.570419px;}
.ws108{word-spacing:22.021478px;}
.ws15f{word-spacing:22.265364px;}
.wsfb{word-spacing:22.874976px;}
.wsfc{word-spacing:22.876385px;}
.ws10c{word-spacing:23.274419px;}
.ws10e{word-spacing:23.277078px;}
.ws10f{word-spacing:23.337078px;}
.wsa9{word-spacing:23.340419px;}
.wsa4{word-spacing:23.509482px;}
.wsfe{word-spacing:23.958221px;}
.ws163{word-spacing:24.316877px;}
.ws109{word-spacing:24.594419px;}
.ws166{word-spacing:25.349806px;}
.ws102{word-spacing:25.764419px;}
.ws100{word-spacing:25.770419px;}
.wsa6{word-spacing:26.173482px;}
.wsa7{word-spacing:26.174014px;}
.ws162{word-spacing:26.497505px;}
.wsfa{word-spacing:26.502327px;}
.wsde{word-spacing:26.508327px;}
.ws5{word-spacing:26.827469px;}
.ws14f{word-spacing:26.927892px;}
.ws111{word-spacing:27.426010px;}
.ws165{word-spacing:27.716936px;}
.ws2a{word-spacing:29.026620px;}
.ws151{word-spacing:29.840179px;}
.ws11e{word-spacing:30.012334px;}
.ws161{word-spacing:30.944840px;}
.ws2{word-spacing:31.298639px;}
.ws105{word-spacing:31.569078px;}
.ws16f{word-spacing:31.633459px;}
.ws9a{word-spacing:32.192873px;}
.ws150{word-spacing:32.451195px;}
.wse7{word-spacing:32.472419px;}
.ws16e{word-spacing:33.426739px;}
.ws170{word-spacing:34.387937px;}
.wse6{word-spacing:35.435213px;}
.ws172{word-spacing:35.881569px;}
.ws164{word-spacing:36.037755px;}
.ws16d{word-spacing:36.324680px;}
.ws177{word-spacing:36.611604px;}
.ws160{word-spacing:36.970260px;}
.wsb{word-spacing:37.192500px;}
.wsc{word-spacing:37.316475px;}
.ws49{word-spacing:38.631358px;}
.ws152{word-spacing:43.497800px;}
.ws148{word-spacing:44.688538px;}
.ws147{word-spacing:48.590715px;}
.ws0{word-spacing:49.183543px;}
.wsff{word-spacing:66.864010px;}
.wsf6{word-spacing:74.655540px;}
.ws174{word-spacing:96.059122px;}
.wsf7{word-spacing:96.459540px;}
.ws175{word-spacing:102.808007px;}
.wsf4{word-spacing:107.051643px;}
.wsee{word-spacing:110.925128px;}
.wsf9{word-spacing:114.021540px;}
.ws2b{word-spacing:116.100658px;}
.wsf1{word-spacing:132.731412px;}
.wsf0{word-spacing:159.487150px;}
.wsed{word-spacing:165.584302px;}
.ws149{word-spacing:175.770132px;}
.wsf3{word-spacing:220.171745px;}
.wsdd{word-spacing:247.431266px;}
.wsf2{word-spacing:367.583034px;}
.wsd1{word-spacing:468.887941px;}
.wsd5{word-spacing:472.016031px;}
.wsf5{word-spacing:472.819939px;}
.wsf8{word-spacing:475.732226px;}
.wsef{word-spacing:764.216148px;}
._1e{margin-left:-9.709486px;}
._3{margin-left:-7.866503px;}
._7{margin-left:-6.133012px;}
._19{margin-left:-5.092954px;}
._0{margin-left:-4.076711px;}
._2{margin-left:-2.259527px;}
._9{margin-left:-1.219414px;}
._4{width:1.004220px;}
._1{width:2.343214px;}
._c{width:3.347325px;}
._2b{width:5.042305px;}
._30{width:7.588236px;}
._25{width:15.924229px;}
._2c{width:16.964325px;}
._6{width:18.040391px;}
._16{width:19.875797px;}
._1f{width:21.088924px;}
._10{width:22.234844px;}
._1b{width:23.384360px;}
._d{width:25.380841px;}
._21{width:26.528606px;}
._f{width:27.805347px;}
._8{width:29.696728px;}
._11{width:31.071149px;}
._a{width:32.255832px;}
._17{width:33.271322px;}
._18{width:35.243924px;}
._15{width:36.523667px;}
._22{width:37.862091px;}
._23{width:39.691286px;}
._12{width:40.697521px;}
._1c{width:41.962752px;}
._1a{width:43.026754px;}
._27{width:44.748314px;}
._20{width:47.055656px;}
._45{width:48.059904px;}
._13{width:49.217959px;}
._b{width:51.435161px;}
._28{width:53.296282px;}
._43{width:54.408110px;}
._42{width:55.663411px;}
._24{width:57.026321px;}
._e{width:58.581867px;}
._4b{width:60.110761px;}
._35{width:61.174746px;}
._2a{width:62.967497px;}
._14{width:64.472781px;}
._2f{width:65.885102px;}
._26{width:68.885845px;}
._5c{width:70.300475px;}
._4e{width:71.731200px;}
._34{width:73.001822px;}
._47{width:74.173526px;}
._2d{width:79.782397px;}
._48{width:82.590060px;}
._49{width:87.732029px;}
._46{width:89.879194px;}
._33{width:92.162284px;}
._29{width:96.836850px;}
._4c{width:99.419432px;}
._37{width:102.097430px;}
._44{width:106.644793px;}
._36{width:108.027204px;}
._1d{width:116.203950px;}
._2e{width:118.906534px;}
._52{width:121.532493px;}
._31{width:128.754970px;}
._4a{width:130.098094px;}
._67{width:133.121152px;}
._58{width:137.157017px;}
._32{width:139.812137px;}
._69{width:140.813978px;}
._57{width:142.218680px;}
._50{width:145.094603px;}
._4f{width:146.367508px;}
._51{width:149.170222px;}
._5e{width:156.348752px;}
._41{width:163.905792px;}
._3a{width:167.851008px;}
._3e{width:174.235085px;}
._55{width:186.943695px;}
._56{width:188.546960px;}
._68{width:192.311347px;}
._4d{width:210.936420px;}
._61{width:215.234686px;}
._39{width:222.438451px;}
._66{width:231.763507px;}
._3f{width:255.255470px;}
._6d{width:256.618335px;}
._54{width:263.768901px;}
._59{width:271.441596px;}
._40{width:276.990023px;}
._60{width:318.462581px;}
._5d{width:324.620938px;}
._38{width:336.824696px;}
._6a{width:337.961543px;}
._5b{width:343.742778px;}
._5a{width:360.446267px;}
._65{width:386.380103px;}
._6b{width:400.367687px;}
._6c{width:414.427003px;}
._5f{width:490.531015px;}
._63{width:498.657797px;}
._62{width:509.030045px;}
._64{width:694.573226px;}
._53{width:797.332572px;}
._5{width:878.043788px;}
._3d{width:951.264230px;}
._3c{width:1079.400468px;}
._3b{width:1119.000468px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:18.621600px;}
.fsb{font-size:26.793600px;}
.fsc{font-size:37.511040px;}
.fs7{font-size:41.842800px;}
.fs9{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fsa{font-size:63.842920px;}
.fs6{font-size:65.454600px;}
.fse{font-size:70.300880px;}
.fs3{font-size:71.731200px;}
.fs1{font-size:83.686200px;}
.fs5{font-size:86.077200px;}
.fs8{font-size:103.292400px;}
.fs4{font-size:123.975000px;}
.fs0{font-size:131.506800px;}
.y0{bottom:0.000000px;}
.yfd{bottom:4.319338px;}
.yf6{bottom:8.894219px;}
.yf4{bottom:26.422676px;}
.yfe{bottom:28.115309px;}
.y103{bottom:45.930177px;}
.y89{bottom:61.365000px;}
.y26{bottom:61.366500px;}
.yff{bottom:70.264202px;}
.y104{bottom:84.792086px;}
.y102{bottom:91.209761px;}
.y107{bottom:91.678938px;}
.y7{bottom:106.197000px;}
.y69{bottom:106.198500px;}
.y1ad{bottom:107.520000px;}
.y12f{bottom:111.621000px;}
.y100{bottom:112.413095px;}
.y1e1{bottom:112.890000px;}
.y105{bottom:123.653994px;}
.y15c{bottom:124.099500px;}
.y68{bottom:124.131000px;}
.y1e2{bottom:124.746000px;}
.yfa{bottom:124.872000px;}
.y25{bottom:129.553500px;}
.y49{bottom:133.089000px;}
.y1ac{bottom:134.410500px;}
.y88{bottom:142.063500px;}
.y24{bottom:142.140000px;}
.y17a{bottom:146.539500px;}
.yf9{bottom:146.541000px;}
.y67{bottom:147.486000px;}
.y12e{bottom:149.103000px;}
.y197{bottom:149.355000px;}
.y15b{bottom:150.990000px;}
.y101{bottom:154.561988px;}
.ye5{bottom:158.683380px;}
.y14b{bottom:159.430500px;}
.y48{bottom:159.979500px;}
.yb1{bottom:159.996000px;}
.y1ab{bottom:161.301000px;}
.y106{bottom:162.515903px;}
.y87{bottom:165.418500px;}
.y23{bottom:165.495000px;}
.yf8{bottom:168.210000px;}
.ye4{bottom:168.326410px;}
.y179{bottom:173.431500px;}
.y12d{bottom:175.993500px;}
.y196{bottom:176.245500px;}
.y15a{bottom:177.882000px;}
.y86{bottom:177.928500px;}
.y22{bottom:178.081500px;}
.y14a{bottom:186.321000px;}
.y47{bottom:186.870000px;}
.y1aa{bottom:188.193000px;}
.yf7{bottom:189.879000px;}
.y91{bottom:191.230500px;}
.y85{bottom:195.861000px;}
.y21{bottom:196.014000px;}
.y178{bottom:200.322000px;}
.y1df{bottom:200.797500px;}
.yb0{bottom:201.285000px;}
.y12c{bottom:202.884000px;}
.ye3{bottom:205.252420px;}
.yb{bottom:210.796500px;}
.yf3{bottom:211.546500px;}
.y149{bottom:213.211500px;}
.y46{bottom:213.760500px;}
.y84{bottom:213.793500px;}
.yaf{bottom:213.795000px;}
.ye2{bottom:214.895450px;}
.y159{bottom:217.528500px;}
.y195{bottom:218.080500px;}
.y90{bottom:218.121000px;}
.y20{bottom:219.370500px;}
.y1de{bottom:222.466500px;}
.y12b{bottom:229.774500px;}
.y1a9{bottom:230.026500px;}
.y83{bottom:231.727500px;}
.yae{bottom:237.150000px;}
.ya{bottom:237.688500px;}
.y1f3{bottom:239.734500px;}
.y148{bottom:240.103500px;}
.y45{bottom:240.652500px;}
.y177{bottom:242.157000px;}
.y1dd{bottom:244.135500px;}
.y158{bottom:244.419000px;}
.y194{bottom:244.971000px;}
.y8f{bottom:245.013000px;}
.y1e0{bottom:247.392000px;}
.y82{bottom:249.660000px;}
.ye1{bottom:251.820125px;}
.y66{bottom:253.084500px;}
.yba{bottom:255.082500px;}
.y12a{bottom:256.665000px;}
.y1a8{bottom:256.918500px;}
.y9{bottom:264.579000px;}
.y1dc{bottom:265.803000px;}
.y147{bottom:266.994000px;}
.y44{bottom:267.543000px;}
.y81{bottom:267.592500px;}
.y176{bottom:269.047500px;}
.ydf{bottom:271.106185px;}
.y157{bottom:271.309500px;}
.y8e{bottom:271.903500px;}
.yad{bottom:273.579000px;}
.y65{bottom:279.975000px;}
.y129{bottom:283.557000px;}
.y1a7{bottom:283.809000px;}
.y1f2{bottom:284.184000px;}
.y80{bottom:285.525000px;}
.y193{bottom:286.806000px;}
.ye0{bottom:290.392245px;}
.y146{bottom:293.884500px;}
.y43{bottom:294.433500px;}
.y1db{bottom:295.982471px;}
.y156{bottom:298.200000px;}
.y8d{bottom:298.794000px;}
.yac{bottom:300.469500px;}
.y1f{bottom:305.944500px;}
.y1da{bottom:306.600931px;}
.y64{bottom:306.867000px;}
.y7f{bottom:308.881500px;}
.y8{bottom:309.402000px;}
.yb9{bottom:309.409500px;}
.y175{bottom:310.882500px;}
.y1f1{bottom:311.074500px;}
.y192{bottom:313.696500px;}
.yde{bottom:317.675224px;}
.y145{bottom:320.775000px;}
.y42{bottom:321.324000px;}
.y7e{bottom:321.391500px;}
.y1a6{bottom:325.644000px;}
.y8c{bottom:325.684500px;}
.ydd{bottom:327.318254px;}
.yab{bottom:327.360000px;}
.y1e{bottom:331.167000px;}
.y63{bottom:333.757500px;}
.yb8{bottom:336.300000px;}
.y174{bottom:337.773000px;}
.y155{bottom:337.848000px;}
.y7d{bottom:339.324000px;}
.y128{bottom:339.706500px;}
.y191{bottom:340.587000px;}
.y1d9{bottom:347.260680px;}
.y144{bottom:347.667000px;}
.y41{bottom:348.216000px;}
.y1a5{bottom:352.534500px;}
.y8b{bottom:352.575000px;}
.yaa{bottom:354.252000px;}
.y1f0{bottom:355.524000px;}
.y127{bottom:355.951500px;}
.y1d{bottom:356.388000px;}
.y7c{bottom:357.256500px;}
.yf5{bottom:357.399830px;}
.y1d8{bottom:357.879140px;}
.y10b{bottom:359.797500px;}
.y62{bottom:360.648000px;}
.yb7{bottom:363.192000px;}
.ydc{bottom:364.242929px;}
.y173{bottom:364.663500px;}
.y154{bottom:364.738500px;}
.y126{bottom:373.884000px;}
.y143{bottom:374.557500px;}
.y40{bottom:375.106500px;}
.y1a4{bottom:379.425000px;}
.y8a{bottom:379.467000px;}
.y7b{bottom:380.611500px;}
.ya9{bottom:381.142500px;}
.y1c{bottom:381.610500px;}
.y1ef{bottom:382.416000px;}
.y190{bottom:382.422000px;}
.yda{bottom:383.528989px;}
.y61{bottom:387.538500px;}
.yb6{bottom:390.082500px;}
.y172{bottom:391.554000px;}
.y153{bottom:391.629000px;}
.y1d7{bottom:398.540359px;}
.y142{bottom:401.448000px;}
.y3f{bottom:401.997000px;}
.ydb{bottom:402.815049px;}
.y125{bottom:404.437500px;}
.y7a{bottom:406.357500px;}
.y1b{bottom:406.831500px;}
.ya8{bottom:408.033000px;}
.y1d6{bottom:409.158819px;}
.y1ee{bottom:409.306500px;}
.y18f{bottom:409.312500px;}
.y60{bottom:414.429000px;}
.yb5{bottom:416.973000px;}
.y152{bottom:418.519500px;}
.y1a3{bottom:421.260000px;}
.y124{bottom:426.106500px;}
.y141{bottom:428.338500px;}
.y3e{bottom:428.887500px;}
.yd9{bottom:430.098029px;}
.y1a{bottom:432.054000px;}
.y10a{bottom:432.163500px;}
.y79{bottom:433.248000px;}
.y171{bottom:433.389000px;}
.y1ed{bottom:436.197000px;}
.y18e{bottom:436.204500px;}
.yd8{bottom:439.741059px;}
.y5f{bottom:441.321000px;}
.yb4{bottom:443.863500px;}
.y151{bottom:445.411500px;}
.ya7{bottom:446.505000px;}
.y1a2{bottom:448.150500px;}
.y1d5{bottom:449.818569px;}
.y109{bottom:453.832500px;}
.y140{bottom:455.229000px;}
.y3d{bottom:455.779500px;}
.y123{bottom:456.760500px;}
.y19{bottom:457.275000px;}
.y78{bottom:460.138500px;}
.y170{bottom:460.281000px;}
.y1d4{bottom:460.437029px;}
.y1ec{bottom:463.087500px;}
.y1be{bottom:466.092000px;}
.y5e{bottom:468.211500px;}
.yb3{bottom:470.755500px;}
.y108{bottom:475.501500px;}
.yd7{bottom:476.665734px;}
.y18d{bottom:478.039500px;}
.y122{bottom:478.429500px;}
.y13f{bottom:482.121000px;}
.y18{bottom:482.497500px;}
.y3c{bottom:482.670000px;}
.y77{bottom:487.030500px;}
.y16f{bottom:487.171500px;}
.y1eb{bottom:489.979500px;}
.y1a1{bottom:489.985500px;}
.y150{bottom:490.060500px;}
.y1bd{bottom:492.982500px;}
.y5d{bottom:495.102000px;}
.yd5{bottom:495.951794px;}
.yfc{bottom:497.170500px;}
.y121{bottom:500.098500px;}
.y1d3{bottom:501.098248px;}
.y18c{bottom:504.930000px;}
.ya6{bottom:504.981000px;}
.y17{bottom:507.718500px;}
.y13e{bottom:509.011500px;}
.yb2{bottom:509.227500px;}
.y3b{bottom:509.560500px;}
.y1d2{bottom:511.716708px;}
.y76{bottom:513.921000px;}
.yd6{bottom:515.237854px;}
.y1ea{bottom:516.870000px;}
.y1a0{bottom:516.876000px;}
.y1bc{bottom:519.873000px;}
.y120{bottom:521.766000px;}
.y5c{bottom:521.992500px;}
.y16e{bottom:529.006500px;}
.y18b{bottom:531.820500px;}
.ya5{bottom:531.871500px;}
.y11f{bottom:532.600500px;}
.y16{bottom:532.941000px;}
.y13d{bottom:535.902000px;}
.y3a{bottom:536.451000px;}
.y75{bottom:540.811500px;}
.yd4{bottom:542.520833px;}
.y1e9{bottom:543.760500px;}
.y1bb{bottom:546.765000px;}
.y5b{bottom:548.884500px;}
.y1e3{bottom:549.570000px;}
.y1d1{bottom:552.377927px;}
.y16d{bottom:555.897000px;}
.y14f{bottom:557.883000px;}
.y15{bottom:558.162000px;}
.y18a{bottom:558.711000px;}
.ya4{bottom:558.762000px;}
.yd2{bottom:561.806893px;}
.y13c{bottom:562.792500px;}
.y1d0{bottom:562.996388px;}
.y39{bottom:563.341500px;}
.y74{bottom:567.702000px;}
.y1e8{bottom:570.651000px;}
.y11e{bottom:574.089000px;}
.y5a{bottom:575.775000px;}
.yd3{bottom:581.092953px;}
.y16c{bottom:582.787500px;}
.y14e{bottom:584.775000px;}
.y19f{bottom:585.603000px;}
.ya3{bottom:585.654000px;}
.y1ba{bottom:588.600000px;}
.y13b{bottom:589.684500px;}
.y38{bottom:590.233500px;}
.y14{bottom:593.401500px;}
.yf2{bottom:594.384000px;}
.y73{bottom:594.594000px;}
.y1e7{bottom:597.543000px;}
.y189{bottom:600.546000px;}
.y59{bottom:602.665500px;}
.y1cf{bottom:603.656137px;}
.y11d{bottom:604.743000px;}
.yd1{bottom:608.374598px;}
.y6{bottom:609.412500px;}
.y19e{bottom:612.493500px;}
.ya2{bottom:612.544500px;}
.y1ce{bottom:614.274597px;}
.y1b9{bottom:615.490500px;}
.yf1{bottom:616.053000px;}
.y13a{bottom:616.575000px;}
.y37{bottom:617.124000px;}
.y72{bottom:621.484500px;}
.y16b{bottom:624.622500px;}
.y188{bottom:627.436500px;}
.ycf{bottom:627.660658px;}
.y14d{bottom:629.424000px;}
.y58{bottom:629.556000px;}
.y11c{bottom:635.397000px;}
.ya1{bottom:639.435000px;}
.y1e6{bottom:641.992500px;}
.y1b8{bottom:642.381000px;}
.y139{bottom:643.465500px;}
.y36{bottom:644.014500px;}
.y5{bottom:644.649000px;}
.y11b{bottom:646.231500px;}
.yd0{bottom:646.946718px;}
.y71{bottom:648.375000px;}
.y16a{bottom:651.513000px;}
.y187{bottom:654.328500px;}
.y1cd{bottom:654.935816px;}
.y57{bottom:656.448000px;}
.y1cc{bottom:665.554276px;}
.ya0{bottom:666.325500px;}
.y1e5{bottom:668.883000px;}
.y138{bottom:670.356000px;}
.y35{bottom:670.905000px;}
.yce{bottom:674.229698px;}
.y70{bottom:675.265500px;}
.y169{bottom:678.405000px;}
.y4{bottom:679.885500px;}
.yf0{bottom:680.038500px;}
.y19d{bottom:681.219000px;}
.y56{bottom:683.338500px;}
.y1b7{bottom:684.216000px;}
.y11a{bottom:687.718500px;}
.y9f{bottom:693.217500px;}
.ycc{bottom:693.515758px;}
.y186{bottom:696.162000px;}
.y137{bottom:697.248000px;}
.y34{bottom:697.797000px;}
.y119{bottom:698.553000px;}
.y6f{bottom:702.157500px;}
.y1cb{bottom:706.215495px;}
.yfb{bottom:708.229500px;}
.y55{bottom:710.229000px;}
.y1b6{bottom:711.106500px;}
.y13{bottom:712.491000px;}
.ycd{bottom:712.800483px;}
.y1e4{bottom:713.332500px;}
.y1ca{bottom:716.832485px;}
.y9e{bottom:720.108000px;}
.y168{bottom:720.238500px;}
.y185{bottom:723.054000px;}
.y136{bottom:724.138500px;}
.y33{bottom:724.687500px;}
.y6e{bottom:729.048000px;}
.y118{bottom:731.056500px;}
.yef{bottom:731.178000px;}
.y1b5{bottom:737.997000px;}
.ycb{bottom:740.083462px;}
.y117{bottom:741.891000px;}
.y12{bottom:745.873500px;}
.y9d{bottom:746.998500px;}
.y167{bottom:747.130500px;}
.y184{bottom:749.944500px;}
.y135{bottom:751.029000px;}
.y54{bottom:754.878000px;}
.y6d{bottom:755.938500px;}
.y1c9{bottom:757.493705px;}
.yca{bottom:759.369523px;}
.y3{bottom:762.943500px;}
.y1b4{bottom:764.889000px;}
.y1c8{bottom:768.112165px;}
.y14c{bottom:768.787500px;}
.yc7{bottom:769.012553px;}
.y32{bottom:769.336500px;}
.y9c{bottom:773.889000px;}
.y166{bottom:774.021000px;}
.y116{bottom:774.393000px;}
.y19c{bottom:776.835000px;}
.y134{bottom:777.919500px;}
.yc9{bottom:778.655583px;}
.y11{bottom:779.254500px;}
.yee{bottom:781.335000px;}
.y6c{bottom:782.829000px;}
.y115{bottom:785.227500px;}
.y183{bottom:791.779500px;}
.y53{bottom:795.678000px;}
.yc8{bottom:797.941643px;}
.y2{bottom:798.178500px;}
.yeb{bottom:799.002000px;}
.y9b{bottom:800.779500px;}
.y19b{bottom:803.725500px;}
.y133{bottom:804.811500px;}
.y1b3{bottom:806.722500px;}
.y1c7{bottom:808.773384px;}
.y6b{bottom:809.719500px;}
.yed{bottom:813.946500px;}
.y165{bottom:815.856000px;}
.yec{bottom:818.428500px;}
.y182{bottom:818.670000px;}
.y1c6{bottom:819.391844px;}
.yc6{bottom:825.223287px;}
.y114{bottom:826.716000px;}
.y9a{bottom:827.671500px;}
.ye6{bottom:829.471500px;}
.y132{bottom:831.702000px;}
.y1b2{bottom:833.614500px;}
.yea{bottom:834.070500px;}
.y31{bottom:836.593500px;}
.y6a{bottom:836.611500px;}
.y10{bottom:838.209000px;}
.y164{bottom:842.746500px;}
.yc4{bottom:844.509347px;}
.y181{bottom:845.560500px;}
.ye7{bottom:852.336000px;}
.y99{bottom:854.562000px;}
.y1{bottom:854.928000px;}
.y113{bottom:857.370000px;}
.y131{bottom:858.592500px;}
.y1c5{bottom:860.051593px;}
.y1b1{bottom:860.505000px;}
.y52{bottom:863.502000px;}
.yc5{bottom:863.795407px;}
.ye9{bottom:867.279000px;}
.y112{bottom:868.204500px;}
.y1c4{bottom:870.670054px;}
.yf{bottom:871.591500px;}
.ye8{bottom:871.762500px;}
.y19a{bottom:872.452500px;}
.y30{bottom:878.523000px;}
.y98{bottom:881.452500px;}
.y163{bottom:884.581500px;}
.y180{bottom:887.395500px;}
.y51{bottom:890.392500px;}
.yc3{bottom:891.078387px;}
.y199{bottom:899.343000px;}
.yc2{bottom:900.721417px;}
.y1b0{bottom:902.340000px;}
.y130{bottom:903.241500px;}
.y2f{bottom:903.745500px;}
.y97{bottom:908.343000px;}
.y111{bottom:909.693000px;}
.y1c3{bottom:911.331273px;}
.y162{bottom:911.472000px;}
.y17f{bottom:914.286000px;}
.y50{bottom:917.283000px;}
.y1c2{bottom:921.949733px;}
.y2e{bottom:928.966500px;}
.y1af{bottom:929.230500px;}
.ye{bottom:931.311000px;}
.y96{bottom:935.235000px;}
.yc1{bottom:937.646092px;}
.y161{bottom:938.362500px;}
.y110{bottom:940.345500px;}
.y17e{bottom:941.178000px;}
.y4f{bottom:944.175000px;}
.y10f{bottom:951.180000px;}
.y2d{bottom:954.189000px;}
.y1ae{bottom:956.121000px;}
.ybf{bottom:956.932152px;}
.y95{bottom:962.125500px;}
.y198{bottom:968.068500px;}
.y1c1{bottom:969.573298px;}
.y4e{bottom:971.065500px;}
.yc0{bottom:976.218212px;}
.yd{bottom:977.674500px;}
.y2c{bottom:979.411500px;}
.y160{bottom:980.197500px;}
.y17d{bottom:983.011500px;}
.y94{bottom:989.016000px;}
.y10e{bottom:992.668500px;}
.y4d{bottom:997.956000px;}
.ybe{bottom:1003.501191px;}
.y2b{bottom:1004.632500px;}
.y15f{bottom:1007.088000px;}
.y17c{bottom:1009.903500px;}
.y1c0{bottom:1012.852500px;}
.ybd{bottom:1013.144221px;}
.y93{bottom:1015.906500px;}
.yc{bottom:1024.038000px;}
.y4c{bottom:1024.846500px;}
.y2a{bottom:1029.855000px;}
.y10d{bottom:1030.426500px;}
.y15e{bottom:1033.980000px;}
.y1bf{bottom:1034.521500px;}
.y17b{bottom:1036.794000px;}
.y4b{bottom:1051.738500px;}
.y92{bottom:1054.380000px;}
.y29{bottom:1055.076000px;}
.ybc{bottom:1056.393004px;}
.y15d{bottom:1060.870500px;}
.y10c{bottom:1074.486000px;}
.y4a{bottom:1078.629000px;}
.y28{bottom:1080.298500px;}
.ybb{bottom:1096.155000px;}
.y27{bottom:1105.519500px;}
.h14{height:0.000000px;}
.h1a{height:17.299466px;}
.h1e{height:23.135700px;}
.h17{height:24.891254px;}
.hc{height:29.457331px;}
.h13{height:33.665702px;}
.h18{height:34.847756px;}
.h15{height:35.865450px;}
.h5{height:44.831700px;}
.ha{height:45.687311px;}
.h11{height:47.882190px;}
.hb{height:49.090950px;}
.h6{height:50.498765px;}
.h1f{height:52.725660px;}
.h7{height:53.798400px;}
.h4{height:58.915085px;}
.h10{height:60.598349px;}
.h22{height:61.473638px;}
.he{height:61.893450px;}
.hf{height:61.899450px;}
.h3{height:62.764650px;}
.hd{height:72.717850px;}
.h9{height:76.067700px;}
.h12{height:86.454310px;}
.h8{height:87.650325px;}
.h2{height:92.580787px;}
.h21{height:95.193620px;}
.h20{height:95.199500px;}
.h1d{height:97.130400px;}
.h1b{height:97.136400px;}
.h1c{height:103.031702px;}
.h19{height:197.571393px;}
.h16{height:369.350195px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:331.677756px;}
.w2{width:670.137232px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:6.746354px;}
.x28{left:9.716693px;}
.x27{left:39.237311px;}
.x1f{left:63.173233px;}
.x2{left:108.000000px;}
.x1d{left:111.382500px;}
.x2a{left:114.120000px;}
.x1{left:121.540500px;}
.x38{left:125.559000px;}
.x37{left:126.945000px;}
.xd{left:128.196000px;}
.x12{left:131.719500px;}
.x10{left:132.903000px;}
.x3{left:135.304500px;}
.x4{left:138.201000px;}
.x6{left:149.788500px;}
.xc{left:151.897500px;}
.xf{left:163.773000px;}
.x20{left:173.737466px;}
.x4c{left:193.413000px;}
.x35{left:197.391000px;}
.x15{left:201.724500px;}
.x11{left:215.593500px;}
.x2b{left:220.843500px;}
.x3a{left:224.635500px;}
.x21{left:230.635327px;}
.x2f{left:235.410000px;}
.x26{left:260.977500px;}
.x3b{left:268.695000px;}
.x19{left:271.570500px;}
.x1b{left:289.771500px;}
.x13{left:294.518892px;}
.x1a{left:295.615500px;}
.x3c{left:306.453000px;}
.x9{left:313.470000px;}
.x1c{left:314.905500px;}
.x3d{left:328.122000px;}
.x36{left:331.006500px;}
.x22{left:340.728578px;}
.x2e{left:345.087000px;}
.x33{left:346.891500px;}
.x3e{left:349.789500px;}
.x39{left:353.947527px;}
.xa{left:357.571500px;}
.x31{left:363.496500px;}
.x5{left:365.137500px;}
.x3f{left:371.458500px;}
.x8{left:380.601000px;}
.x7{left:393.276000px;}
.x2d{left:395.944500px;}
.x30{left:399.108000px;}
.x23{left:404.570796px;}
.xb{left:410.457000px;}
.x40{left:414.796500px;}
.x41{left:436.465500px;}
.x2c{left:437.677500px;}
.xe{left:442.066500px;}
.x29{left:449.383500px;}
.x42{left:458.134500px;}
.x43{left:479.802000px;}
.x32{left:489.277500px;}
.x44{left:501.471000px;}
.x24{left:507.719690px;}
.x45{left:523.140000px;}
.x17{left:544.906500px;}
.x16{left:549.921000px;}
.x25{left:565.036201px;}
.x46{left:566.478000px;}
.x18{left:570.270000px;}
.x34{left:584.898000px;}
.x47{left:588.145500px;}
.x48{left:609.814500px;}
.x49{left:640.368000px;}
.x4a{left:662.037000px;}
.x4b{left:683.706000px;}
.x14{left:762.477000px;}
@media print{
.v2{vertical-align:-27.765333pt;}
.v3{vertical-align:-19.285333pt;}
.v6{vertical-align:-9.920000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:23.136000pt;}
.v1{vertical-align:27.765333pt;}
.v5{vertical-align:34.286329pt;}
.v7{vertical-align:38.522667pt;}
.v8{vertical-align:61.658667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.000853pt;}
.ls2f{letter-spacing:0.000990pt;}
.ls30{letter-spacing:0.001309pt;}
.ls4c{letter-spacing:0.001958pt;}
.ls5e{letter-spacing:0.002079pt;}
.ls7{letter-spacing:0.002411pt;}
.ls3a{letter-spacing:0.002452pt;}
.ls61{letter-spacing:0.003733pt;}
.ls3e{letter-spacing:0.154792pt;}
.ls71{letter-spacing:0.368990pt;}
.ls59{letter-spacing:0.521544pt;}
.ls46{letter-spacing:1.130350pt;}
.ls2{letter-spacing:1.357996pt;}
.ls48{letter-spacing:1.527026pt;}
.ls4{letter-spacing:2.656631pt;}
.ls5{letter-spacing:2.656659pt;}
.ls57{letter-spacing:5.010929pt;}
.ls54{letter-spacing:7.123461pt;}
.ls3d{letter-spacing:8.676236pt;}
.ls2e{letter-spacing:10.624990pt;}
.ls43{letter-spacing:13.282591pt;}
.ls4b{letter-spacing:14.164905pt;}
.ls42{letter-spacing:14.170238pt;}
.ls47{letter-spacing:14.415684pt;}
.ls41{letter-spacing:14.572274pt;}
.ls60{letter-spacing:14.756352pt;}
.ls5d{letter-spacing:14.757812pt;}
.ls5c{letter-spacing:14.761685pt;}
.ls49{letter-spacing:14.812360pt;}
.ls25{letter-spacing:15.047612pt;}
.ls26{letter-spacing:15.111373pt;}
.ls15{letter-spacing:16.322833pt;}
.ls44{letter-spacing:16.822879pt;}
.ls4a{letter-spacing:16.826792pt;}
.ls45{letter-spacing:16.828213pt;}
.ls17{letter-spacing:16.879790pt;}
.ls80{letter-spacing:17.249309pt;}
.ls22{letter-spacing:17.693578pt;}
.ls3c{letter-spacing:17.705619pt;}
.ls78{letter-spacing:17.707976pt;}
.ls5f{letter-spacing:17.708745pt;}
.ls40{letter-spacing:17.711572pt;}
.ls0{letter-spacing:17.712479pt;}
.ls77{letter-spacing:17.713145pt;}
.ls2c{letter-spacing:17.746711pt;}
.ls33{letter-spacing:17.853099pt;}
.ls10{letter-spacing:18.044382pt;}
.ls12{letter-spacing:18.108143pt;}
.ls74{letter-spacing:18.144990pt;}
.ls8{letter-spacing:18.299426pt;}
.ls11{letter-spacing:18.554470pt;}
.ls20{letter-spacing:18.703121pt;}
.ls1c{letter-spacing:18.745754pt;}
.ls72{letter-spacing:19.617145pt;}
.ls70{letter-spacing:19.620905pt;}
.ls73{letter-spacing:19.622642pt;}
.ls38{letter-spacing:19.659976pt;}
.ls79{letter-spacing:19.765931pt;}
.ls7a{letter-spacing:19.829692pt;}
.ls39{letter-spacing:20.048479pt;}
.ls75{letter-spacing:20.101492pt;}
.lsb{letter-spacing:20.339780pt;}
.ls3f{letter-spacing:20.368125pt;}
.ls5b{letter-spacing:20.369253pt;}
.ls76{letter-spacing:20.768990pt;}
.ls24{letter-spacing:20.786108pt;}
.ls81{letter-spacing:20.808397pt;}
.ls7e{letter-spacing:20.808809pt;}
.ls31{letter-spacing:20.809248pt;}
.ls7f{letter-spacing:20.814142pt;}
.ls14{letter-spacing:20.849869pt;}
.ls68{letter-spacing:21.387976pt;}
.ls67{letter-spacing:21.393145pt;}
.ls9{letter-spacing:21.423718pt;}
.ls7c{letter-spacing:21.997568pt;}
.ls6f{letter-spacing:22.005492pt;}
.ls7d{letter-spacing:22.061329pt;}
.ls6e{letter-spacing:22.214323pt;}
.ls2b{letter-spacing:22.953984pt;}
.ls1e{letter-spacing:23.145267pt;}
.ls1f{letter-spacing:23.209028pt;}
.ls1b{letter-spacing:23.464073pt;}
.ls63{letter-spacing:23.483657pt;}
.ls66{letter-spacing:23.510323pt;}
.ls6a{letter-spacing:23.515657pt;}
.ls69{letter-spacing:23.781492pt;}
.ls62{letter-spacing:24.007925pt;}
.ls34{letter-spacing:24.114591pt;}
.ls6c{letter-spacing:24.321145pt;}
.ls21{letter-spacing:24.335311pt;}
.ls32{letter-spacing:24.470642pt;}
.ls6d{letter-spacing:24.694642pt;}
.ls13{letter-spacing:25.313143pt;}
.ls6b{letter-spacing:25.664990pt;}
.ls6{letter-spacing:26.116811pt;}
.ls18{letter-spacing:26.141258pt;}
.ls36{letter-spacing:26.246642pt;}
.ls35{letter-spacing:26.251976pt;}
.ls2a{letter-spacing:26.652126pt;}
.ls29{letter-spacing:26.715887pt;}
.ls23{letter-spacing:27.353498pt;}
.ls3{letter-spacing:27.630400pt;}
.ls7b{letter-spacing:28.054869pt;}
.ls28{letter-spacing:28.501197pt;}
.ls27{letter-spacing:28.564958pt;}
.ls16{letter-spacing:28.883763pt;}
.ls52{letter-spacing:28.931915pt;}
.ls4d{letter-spacing:28.932905pt;}
.lsa{letter-spacing:29.011285pt;}
.lse{letter-spacing:29.138807pt;}
.lsd{letter-spacing:29.202569pt;}
.ls2d{letter-spacing:30.855925pt;}
.lsf{letter-spacing:30.860356pt;}
.ls4e{letter-spacing:30.966323pt;}
.ls3b{letter-spacing:31.149119pt;}
.ls51{letter-spacing:31.537309pt;}
.ls50{letter-spacing:31.542479pt;}
.ls64{letter-spacing:32.923657pt;}
.ls1d{letter-spacing:33.287925pt;}
.ls4f{letter-spacing:35.007754pt;}
.ls65{letter-spacing:36.597492pt;}
.ls19{letter-spacing:38.429258pt;}
.lsc{letter-spacing:43.810591pt;}
.ls37{letter-spacing:44.999925pt;}
.ls58{letter-spacing:525.170591pt;}
.ls5a{letter-spacing:535.693258pt;}
.ls55{letter-spacing:549.501258pt;}
.ls56{letter-spacing:579.208794pt;}
.ls53{letter-spacing:580.602281pt;}
.wsa8{word-spacing:-40.590295pt;}
.wsf{word-spacing:-37.460797pt;}
.ws71{word-spacing:-31.880533pt;}
.wsa{word-spacing:-31.217418pt;}
.wsd9{word-spacing:-29.942197pt;}
.wsd4{word-spacing:-27.784439pt;}
.ws1f{word-spacing:-26.566933pt;}
.wsbe{word-spacing:-17.381267pt;}
.wsc7{word-spacing:-17.126223pt;}
.wsdf{word-spacing:-16.934939pt;}
.ws6{word-spacing:-16.679895pt;}
.ws16a{word-spacing:-16.552373pt;}
.ws154{word-spacing:-16.297329pt;}
.ws171{word-spacing:-16.233568pt;}
.ws8c{word-spacing:-16.169807pt;}
.wsec{word-spacing:-16.106045pt;}
.wsbd{word-spacing:-15.978523pt;}
.wsbb{word-spacing:-15.812745pt;}
.ws159{word-spacing:-15.557700pt;}
.wseb{word-spacing:-15.532196pt;}
.ws60{word-spacing:-15.468435pt;}
.ws126{word-spacing:-15.404674pt;}
.wsbc{word-spacing:-15.213391pt;}
.ws119{word-spacing:-15.149629pt;}
.ws89{word-spacing:-14.958346pt;}
.ws55{word-spacing:-14.894585pt;}
.ws18{word-spacing:-14.836376pt;}
.ws56{word-spacing:-14.830824pt;}
.ws34{word-spacing:-14.703302pt;}
.ws9d{word-spacing:-14.512019pt;}
.ws61{word-spacing:-14.448258pt;}
.ws5b{word-spacing:-14.384497pt;}
.ws5c{word-spacing:-14.320736pt;}
.ws142{word-spacing:-14.282479pt;}
.ws14d{word-spacing:-14.065691pt;}
.ws5d{word-spacing:-14.001930pt;}
.ws176{word-spacing:-13.938169pt;}
.ws4d{word-spacing:-13.874408pt;}
.ws82{word-spacing:-13.814805pt;}
.ws4e{word-spacing:-13.810647pt;}
.ws10b{word-spacing:-13.746886pt;}
.ws13e{word-spacing:-13.708629pt;}
.ws93{word-spacing:-13.555603pt;}
.ws9e{word-spacing:-13.491842pt;}
.ws4f{word-spacing:-13.428081pt;}
.wsbf{word-spacing:-13.364320pt;}
.ws2d{word-spacing:-13.300559pt;}
.wsc1{word-spacing:-13.236797pt;}
.ws72{word-spacing:-13.045514pt;}
.ws73{word-spacing:-12.981753pt;}
.ws14e{word-spacing:-12.943497pt;}
.ws30{word-spacing:-12.917992pt;}
.ws46{word-spacing:-12.854231pt;}
.wscb{word-spacing:-12.805262pt;}
.ws88{word-spacing:-12.790470pt;}
.ws27{word-spacing:-12.741829pt;}
.wse3{word-spacing:-12.662948pt;}
.wsb0{word-spacing:-12.539593pt;}
.wsd{word-spacing:-12.517538pt;}
.ws77{word-spacing:-12.407904pt;}
.ws8e{word-spacing:-12.216620pt;}
.ws1{word-spacing:-12.169833pt;}
.ws8d{word-spacing:-12.152859pt;}
.ws129{word-spacing:-12.089098pt;}
.ws52{word-spacing:-12.025337pt;}
.ws3c{word-spacing:-11.961576pt;}
.ws5a{word-spacing:-11.897815pt;}
.ws116{word-spacing:-11.834054pt;}
.wsd7{word-spacing:-11.770293pt;}
.ws96{word-spacing:-11.706532pt;}
.ws179{word-spacing:-11.694555pt;}
.ws39{word-spacing:-11.642771pt;}
.ws6f{word-spacing:-11.579010pt;}
.ws5e{word-spacing:-11.476915pt;}
.ws114{word-spacing:-11.451488pt;}
.wsc6{word-spacing:-11.387727pt;}
.ws42{word-spacing:-11.323965pt;}
.wsea{word-spacing:-11.260204pt;}
.ws6a{word-spacing:-11.196443pt;}
.wsc9{word-spacing:-11.132682pt;}
.ws9f{word-spacing:-11.068921pt;}
.ws8b{word-spacing:-11.005160pt;}
.ws1b{word-spacing:-10.945577pt;}
.ws32{word-spacing:-10.941399pt;}
.ws3b{word-spacing:-10.877638pt;}
.ws36{word-spacing:-10.813877pt;}
.wsba{word-spacing:-10.711859pt;}
.ws21{word-spacing:-10.589100pt;}
.wsb5{word-spacing:-10.558833pt;}
.ws17{word-spacing:-10.530918pt;}
.ws8a{word-spacing:-10.495072pt;}
.ws29{word-spacing:-10.472736pt;}
.ws10d{word-spacing:-10.466987pt;}
.ws9{word-spacing:-10.431311pt;}
.ws54{word-spacing:-10.367549pt;}
.wscd{word-spacing:-10.307970pt;}
.wsa2{word-spacing:-10.303788pt;}
.wsa1{word-spacing:-10.240027pt;}
.ws19{word-spacing:-10.240009pt;}
.ws173{word-spacing:-10.223310pt;}
.ws144{word-spacing:-10.048744pt;}
.wsc8{word-spacing:-9.984983pt;}
.ws9c{word-spacing:-9.857461pt;}
.ws31{word-spacing:-9.793700pt;}
.wsc0{word-spacing:-9.729939pt;}
.ws1a{word-spacing:-9.716372pt;}
.ws70{word-spacing:-9.666178pt;}
.ws157{word-spacing:-9.602417pt;}
.ws8{word-spacing:-9.564160pt;}
.ws17d{word-spacing:-9.541826pt;}
.wse1{word-spacing:-9.538656pt;}
.ws75{word-spacing:-9.474895pt;}
.wsb3{word-spacing:-9.457828pt;}
.ws74{word-spacing:-9.411133pt;}
.ws6e{word-spacing:-9.347372pt;}
.wsb1{word-spacing:-9.298427pt;}
.wsd2{word-spacing:-9.284179pt;}
.ws107{word-spacing:-9.283611pt;}
.ws10a{word-spacing:-9.282987pt;}
.ws143{word-spacing:-9.245355pt;}
.wsd3{word-spacing:-9.227430pt;}
.ws33{word-spacing:-9.219850pt;}
.ws68{word-spacing:-9.156089pt;}
.ws128{word-spacing:-9.117833pt;}
.ws145{word-spacing:-9.092328pt;}
.ws156{word-spacing:-8.990310pt;}
.wsb2{word-spacing:-8.926490pt;}
.ws2e{word-spacing:-8.901045pt;}
.ws3{word-spacing:-8.873356pt;}
.wsd0{word-spacing:-8.820222pt;}
.ws17e{word-spacing:-8.727280pt;}
.wsae{word-spacing:-8.713954pt;}
.ws98{word-spacing:-8.646001pt;}
.ws15{word-spacing:-8.610916pt;}
.ws66{word-spacing:-8.518479pt;}
.ws67{word-spacing:-8.454717pt;}
.ws7b{word-spacing:-8.395151pt;}
.ws90{word-spacing:-8.390956pt;}
.ws80{word-spacing:-8.342017pt;}
.ws64{word-spacing:-8.263434pt;}
.ws101{word-spacing:-8.248320pt;}
.ws17f{word-spacing:-8.145461pt;}
.ws35{word-spacing:-8.135912pt;}
.ws6c{word-spacing:-8.072151pt;}
.ws14{word-spacing:-8.029098pt;}
.ws76{word-spacing:-8.008390pt;}
.ws16{word-spacing:-7.912734pt;}
.wsa5{word-spacing:-7.904379pt;}
.ws53{word-spacing:-7.880868pt;}
.ws7a{word-spacing:-7.863812pt;}
.ws178{word-spacing:-7.854552pt;}
.ws69{word-spacing:-7.817107pt;}
.ws12{word-spacing:-7.796370pt;}
.ws57{word-spacing:-7.753346pt;}
.ws79{word-spacing:-7.704411pt;}
.ws13b{word-spacing:-7.689585pt;}
.ws7{word-spacing:-7.625824pt;}
.ws1c{word-spacing:-7.545009pt;}
.ws48{word-spacing:-7.498301pt;}
.wsca{word-spacing:-7.491875pt;}
.ws9b{word-spacing:-7.434540pt;}
.ws62{word-spacing:-7.243257pt;}
.ws43{word-spacing:-7.179496pt;}
.ws7e{word-spacing:-7.173072pt;}
.ws3e{word-spacing:-7.115735pt;}
.ws13c{word-spacing:-7.077478pt;}
.ws13d{word-spacing:-7.051974pt;}
.ws28{word-spacing:-7.040006pt;}
.ws50{word-spacing:-6.924452pt;}
.ws2f{word-spacing:-6.796930pt;}
.ws65{word-spacing:-6.733169pt;}
.ws6b{word-spacing:-6.669408pt;}
.ws38{word-spacing:-6.541885pt;}
.wscc{word-spacing:-6.535466pt;}
.ws92{word-spacing:-6.478124pt;}
.ws11c{word-spacing:-6.414363pt;}
.ws44{word-spacing:-6.286841pt;}
.ws11{word-spacing:-6.283642pt;}
.wse2{word-spacing:-6.223080pt;}
.ws14a{word-spacing:-6.159319pt;}
.wsaf{word-spacing:-6.110395pt;}
.ws85{word-spacing:-6.031797pt;}
.ws131{word-spacing:-5.993540pt;}
.ws45{word-spacing:-5.968036pt;}
.ws78{word-spacing:-5.950993pt;}
.ws2c{word-spacing:-5.904275pt;}
.ws51{word-spacing:-5.840514pt;}
.wsb8{word-spacing:-5.712992pt;}
.ws117{word-spacing:-5.585469pt;}
.ws83{word-spacing:-5.525922pt;}
.ws63{word-spacing:-5.521708pt;}
.wsab{word-spacing:-5.394186pt;}
.ws110{word-spacing:-5.330425pt;}
.ws140{word-spacing:-5.266664pt;}
.ws1e{word-spacing:-5.260253pt;}
.wse5{word-spacing:-5.202903pt;}
.ws158{word-spacing:-5.075381pt;}
.wsc4{word-spacing:-5.011620pt;}
.wsc3{word-spacing:-4.994418pt;}
.wsc5{word-spacing:-4.980057pt;}
.ws37{word-spacing:-4.947859pt;}
.ws7d{word-spacing:-4.888316pt;}
.ws13f{word-spacing:-4.845841pt;}
.ws112{word-spacing:-4.820337pt;}
.ws47{word-spacing:-4.692815pt;}
.ws15a{word-spacing:-4.629053pt;}
.ws7c{word-spacing:-4.569513pt;}
.ws97{word-spacing:-4.565292pt;}
.ws113{word-spacing:-4.501531pt;}
.ws3d{word-spacing:-4.374009pt;}
.ws115{word-spacing:-4.246487pt;}
.ws40{word-spacing:-4.118965pt;}
.ws4a{word-spacing:-4.055204pt;}
.ws17b{word-spacing:-4.014549pt;}
.ws5f{word-spacing:-3.931906pt;}
.ws87{word-spacing:-3.863921pt;}
.ws169{word-spacing:-3.825664pt;}
.ws3f{word-spacing:-3.800160pt;}
.ws17a{word-spacing:-3.781821pt;}
.ws4b{word-spacing:-3.736399pt;}
.ws22{word-spacing:-3.734951pt;}
.ws24{word-spacing:-3.723639pt;}
.ws4c{word-spacing:-3.672637pt;}
.ws16c{word-spacing:-3.634381pt;}
.wsb6{word-spacing:-3.608876pt;}
.ws26{word-spacing:-3.607276pt;}
.wscf{word-spacing:-3.559969pt;}
.ws125{word-spacing:-3.545115pt;}
.ws10{word-spacing:-3.432730pt;}
.wsb4{word-spacing:-3.353832pt;}
.ws12a{word-spacing:-3.226310pt;}
.wsac{word-spacing:-3.162549pt;}
.ws17c{word-spacing:-3.141821pt;}
.ws104{word-spacing:-3.098788pt;}
.ws106{word-spacing:-3.092210pt;}
.ws6d{word-spacing:-3.035027pt;}
.ws20{word-spacing:-3.025457pt;}
.ws12b{word-spacing:-2.996770pt;}
.wsa0{word-spacing:-2.907505pt;}
.ws11a{word-spacing:-2.843744pt;}
.ws167{word-spacing:-2.805487pt;}
.ws94{word-spacing:-2.716221pt;}
.ws95{word-spacing:-2.652460pt;}
.ws133{word-spacing:-2.588699pt;}
.wsad{word-spacing:-2.524938pt;}
.wse9{word-spacing:-2.333655pt;}
.wse8{word-spacing:-2.285653pt;}
.ws58{word-spacing:-2.269894pt;}
.ws84{word-spacing:-2.231622pt;}
.ws181{word-spacing:-2.210911pt;}
.ws3a{word-spacing:-2.206133pt;}
.ws132{word-spacing:-2.142372pt;}
.ws1d{word-spacing:-2.125355pt;}
.ws41{word-spacing:-2.078611pt;}
.ws7f{word-spacing:-2.019087pt;}
.wsc2{word-spacing:-2.014850pt;}
.ws81{word-spacing:-1.965953pt;}
.ws123{word-spacing:-1.951089pt;}
.ws146{word-spacing:-1.887328pt;}
.ws124{word-spacing:-1.849071pt;}
.ws8f{word-spacing:-1.632283pt;}
.wse4{word-spacing:-1.568522pt;}
.ws155{word-spacing:-1.504761pt;}
.wsce{word-spacing:-1.381481pt;}
.ws99{word-spacing:-1.328347pt;}
.ws168{word-spacing:-1.249717pt;}
.wsb7{word-spacing:-1.122195pt;}
.ws180{word-spacing:-0.989092pt;}
.ws13{word-spacing:-0.930910pt;}
.wsb9{word-spacing:-0.867151pt;}
.ws91{word-spacing:-0.803389pt;}
.wse0{word-spacing:-0.739628pt;}
.ws59{word-spacing:-0.675867pt;}
.ws11b{word-spacing:-0.548345pt;}
.wsd6{word-spacing:-0.229540pt;}
.wsd8{word-spacing:-0.102018pt;}
.ws11d{word-spacing:-0.091815pt;}
.wsa3{word-spacing:-0.063761pt;}
.ws23{word-spacing:-0.058182pt;}
.wse{word-spacing:-0.053134pt;}
.wsdc{word-spacing:-0.042507pt;}
.wsda{word-spacing:-0.038257pt;}
.ws103{word-spacing:-0.037194pt;}
.ws4{word-spacing:0.000000pt;}
.ws118{word-spacing:0.216788pt;}
.ws127{word-spacing:0.344310pt;}
.ws86{word-spacing:0.535593pt;}
.ws121{word-spacing:0.573850pt;}
.ws120{word-spacing:0.599354pt;}
.ws25{word-spacing:0.756364pt;}
.wsaa{word-spacing:1.428248pt;}
.ws153{word-spacing:1.555770pt;}
.ws12f{word-spacing:1.976593pt;}
.ws12e{word-spacing:2.193381pt;}
.ws14c{word-spacing:2.448425pt;}
.ws122{word-spacing:3.341080pt;}
.ws14b{word-spacing:4.233735pt;}
.ws135{word-spacing:4.527036pt;}
.ws134{word-spacing:4.871345pt;}
.ws130{word-spacing:5.317673pt;}
.ws138{word-spacing:6.057301pt;}
.ws137{word-spacing:6.529133pt;}
.ws141{word-spacing:6.911700pt;}
.ws11f{word-spacing:7.102983pt;}
.ws136{word-spacing:8.760771pt;}
.ws15b{word-spacing:9.334620pt;}
.ws15c{word-spacing:9.972231pt;}
.ws139{word-spacing:10.801125pt;}
.ws15e{word-spacing:12.624691pt;}
.ws12d{word-spacing:12.777718pt;}
.ws15d{word-spacing:13.734134pt;}
.ws16b{word-spacing:15.695136pt;}
.ws12c{word-spacing:17.177231pt;}
.wsdb{word-spacing:17.661815pt;}
.ws13a{word-spacing:18.962541pt;}
.wsfd{word-spacing:19.173705pt;}
.ws108{word-spacing:19.574647pt;}
.ws15f{word-spacing:19.791435pt;}
.wsfb{word-spacing:20.333312pt;}
.wsfc{word-spacing:20.334564pt;}
.ws10c{word-spacing:20.688372pt;}
.ws10e{word-spacing:20.690736pt;}
.ws10f{word-spacing:20.744069pt;}
.wsa9{word-spacing:20.747039pt;}
.wsa4{word-spacing:20.897318pt;}
.wsfe{word-spacing:21.296196pt;}
.ws163{word-spacing:21.615002pt;}
.ws109{word-spacing:21.861705pt;}
.ws166{word-spacing:22.533161pt;}
.ws102{word-spacing:22.901705pt;}
.ws100{word-spacing:22.907039pt;}
.wsa6{word-spacing:23.265318pt;}
.wsa7{word-spacing:23.265790pt;}
.ws162{word-spacing:23.553338pt;}
.wsfa{word-spacing:23.557624pt;}
.wsde{word-spacing:23.562958pt;}
.ws5{word-spacing:23.846639pt;}
.ws14f{word-spacing:23.935904pt;}
.ws111{word-spacing:24.378675pt;}
.ws165{word-spacing:24.637276pt;}
.ws2a{word-spacing:25.801440pt;}
.ws151{word-spacing:26.524604pt;}
.ws11e{word-spacing:26.677630pt;}
.ws161{word-spacing:27.506524pt;}
.ws2{word-spacing:27.821012pt;}
.ws105{word-spacing:28.061402pt;}
.ws16f{word-spacing:28.118630pt;}
.ws9a{word-spacing:28.615887pt;}
.ws150{word-spacing:28.845507pt;}
.wse7{word-spacing:28.864372pt;}
.ws16e{word-spacing:29.712657pt;}
.ws170{word-spacing:30.567055pt;}
.wse6{word-spacing:31.497967pt;}
.ws172{word-spacing:31.894728pt;}
.ws164{word-spacing:32.033560pt;}
.ws16d{word-spacing:32.288604pt;}
.ws177{word-spacing:32.543648pt;}
.ws160{word-spacing:32.862454pt;}
.wsb{word-spacing:33.060000pt;}
.wsc{word-spacing:33.170200pt;}
.ws49{word-spacing:34.338985pt;}
.ws152{word-spacing:38.664711pt;}
.ws148{word-spacing:39.723145pt;}
.ws147{word-spacing:43.191747pt;}
.ws0{word-spacing:43.718705pt;}
.wsff{word-spacing:59.434675pt;}
.wsf6{word-spacing:66.360480pt;}
.ws174{word-spacing:85.385886pt;}
.wsf7{word-spacing:85.741814pt;}
.ws175{word-spacing:91.384895pt;}
.wsf4{word-spacing:95.157016pt;}
.wsee{word-spacing:98.600113pt;}
.wsf9{word-spacing:101.352480pt;}
.ws2b{word-spacing:103.200585pt;}
.wsf1{word-spacing:117.983478pt;}
.wsf0{word-spacing:141.766356pt;}
.wsed{word-spacing:147.186046pt;}
.ws149{word-spacing:156.240118pt;}
.wsf3{word-spacing:195.708218pt;}
.wsdd{word-spacing:219.938903pt;}
.wsf2{word-spacing:326.740475pt;}
.wsd1{word-spacing:416.789281pt;}
.wsd5{word-spacing:419.569805pt;}
.wsf5{word-spacing:420.284390pt;}
.wsf8{word-spacing:422.873090pt;}
.wsef{word-spacing:679.303243pt;}
._1e{margin-left:-8.630654pt;}
._3{margin-left:-6.992447pt;}
._7{margin-left:-5.451566pt;}
._19{margin-left:-4.527070pt;}
._0{margin-left:-3.623743pt;}
._2{margin-left:-2.008469pt;}
._9{margin-left:-1.083923pt;}
._4{width:0.892640pt;}
._1{width:2.082857pt;}
._c{width:2.975400pt;}
._2b{width:4.482049pt;}
._30{width:6.745099pt;}
._25{width:14.154870pt;}
._2c{width:15.079400pt;}
._6{width:16.035903pt;}
._16{width:17.667375pt;}
._1f{width:18.745710pt;}
._10{width:19.764306pt;}
._1b{width:20.786098pt;}
._d{width:22.560747pt;}
._21{width:23.580983pt;}
._f{width:24.715864pt;}
._8{width:26.397091pt;}
._11{width:27.618799pt;}
._a{width:28.671851pt;}
._17{width:29.574508pt;}
._18{width:31.327933pt;}
._15{width:32.465482pt;}
._22{width:33.655192pt;}
._23{width:35.281143pt;}
._12{width:36.175574pt;}
._1c{width:37.300224pt;}
._1a{width:38.246004pt;}
._27{width:39.776279pt;}
._20{width:41.827250pt;}
._45{width:42.719915pt;}
._13{width:43.749297pt;}
._b{width:45.720143pt;}
._28{width:47.374473pt;}
._43{width:48.362764pt;}
._42{width:49.478588pt;}
._24{width:50.690063pt;}
._e{width:52.072771pt;}
._4b{width:53.431788pt;}
._35{width:54.377552pt;}
._2a{width:55.971108pt;}
._14{width:57.309139pt;}
._2f{width:58.564535pt;}
._26{width:61.231862pt;}
._5c{width:62.489311pt;}
._4e{width:63.761067pt;}
._34{width:64.890508pt;}
._47{width:65.932023pt;}
._2d{width:70.917686pt;}
._48{width:73.413386pt;}
._49{width:77.984026pt;}
._46{width:79.892617pt;}
._33{width:81.922031pt;}
._29{width:86.077200pt;}
._4c{width:88.372829pt;}
._37{width:90.753271pt;}
._44{width:94.795372pt;}
._36{width:96.024181pt;}
._1d{width:103.292400pt;}
._2e{width:105.694697pt;}
._52{width:108.028883pt;}
._31{width:114.448862pt;}
._4a{width:115.642750pt;}
._67{width:118.329913pt;}
._58{width:121.917348pt;}
._32{width:124.277455pt;}
._69{width:125.167980pt;}
._57{width:126.416604pt;}
._50{width:128.972980pt;}
._4f{width:130.104452pt;}
._51{width:132.595753pt;}
._5e{width:138.976669pt;}
._41{width:145.694037pt;}
._3a{width:149.200896pt;}
._3e{width:154.875631pt;}
._55{width:166.172173pt;}
._56{width:167.597298pt;}
._68{width:170.943420pt;}
._4d{width:187.499040pt;}
._61{width:191.319721pt;}
._39{width:197.723068pt;}
._66{width:206.012006pt;}
._3f{width:226.893751pt;}
._6d{width:228.105187pt;}
._54{width:234.461246pt;}
._59{width:241.281419pt;}
._40{width:246.213354pt;}
._60{width:283.077850pt;}
._5d{width:288.551945pt;}
._38{width:299.399729pt;}
._6a{width:300.410261pt;}
._5b{width:305.549136pt;}
._5a{width:320.396682pt;}
._65{width:343.448981pt;}
._6b{width:355.882389pt;}
._6c{width:368.379558pt;}
._5f{width:436.027569pt;}
._63{width:443.251375pt;}
._62{width:452.471152pt;}
._64{width:617.398423pt;}
._53{width:708.740064pt;}
._5{width:780.483367pt;}
._3d{width:845.568205pt;}
._3c{width:959.467083pt;}
._3b{width:994.667083pt;}
.fsd{font-size:16.552533pt;}
.fsb{font-size:23.816533pt;}
.fsc{font-size:33.343147pt;}
.fs7{font-size:37.193600pt;}
.fs9{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fsa{font-size:56.749262pt;}
.fs6{font-size:58.181867pt;}
.fse{font-size:62.489671pt;}
.fs3{font-size:63.761067pt;}
.fs1{font-size:74.387733pt;}
.fs5{font-size:76.513067pt;}
.fs8{font-size:91.815467pt;}
.fs4{font-size:110.200000pt;}
.fs0{font-size:116.894933pt;}
.y0{bottom:0.000000pt;}
.yfd{bottom:3.839412pt;}
.yf6{bottom:7.905973pt;}
.yf4{bottom:23.486823pt;}
.yfe{bottom:24.991386pt;}
.y103{bottom:40.826824pt;}
.y89{bottom:54.546667pt;}
.y26{bottom:54.548000pt;}
.yff{bottom:62.457068pt;}
.y104{bottom:75.370743pt;}
.y102{bottom:81.075343pt;}
.y107{bottom:81.492389pt;}
.y7{bottom:94.397333pt;}
.y69{bottom:94.398667pt;}
.y1ad{bottom:95.573333pt;}
.y12f{bottom:99.218667pt;}
.y100{bottom:99.922751pt;}
.y1e1{bottom:100.346667pt;}
.y105{bottom:109.914662pt;}
.y15c{bottom:110.310667pt;}
.y68{bottom:110.338667pt;}
.y1e2{bottom:110.885333pt;}
.yfa{bottom:110.997333pt;}
.y25{bottom:115.158667pt;}
.y49{bottom:118.301333pt;}
.y1ac{bottom:119.476000pt;}
.y88{bottom:126.278667pt;}
.y24{bottom:126.346667pt;}
.y17a{bottom:130.257333pt;}
.yf9{bottom:130.258667pt;}
.y67{bottom:131.098667pt;}
.y12e{bottom:132.536000pt;}
.y197{bottom:132.760000pt;}
.y15b{bottom:134.213333pt;}
.y101{bottom:137.388433pt;}
.ye5{bottom:141.051894pt;}
.y14b{bottom:141.716000pt;}
.y48{bottom:142.204000pt;}
.yb1{bottom:142.218667pt;}
.y1ab{bottom:143.378667pt;}
.y106{bottom:144.458581pt;}
.y87{bottom:147.038667pt;}
.y23{bottom:147.106667pt;}
.yf8{bottom:149.520000pt;}
.ye4{bottom:149.623476pt;}
.y179{bottom:154.161333pt;}
.y12d{bottom:156.438667pt;}
.y196{bottom:156.662667pt;}
.y15a{bottom:158.117333pt;}
.y86{bottom:158.158667pt;}
.y22{bottom:158.294667pt;}
.y14a{bottom:165.618667pt;}
.y47{bottom:166.106667pt;}
.y1aa{bottom:167.282667pt;}
.yf7{bottom:168.781333pt;}
.y91{bottom:169.982667pt;}
.y85{bottom:174.098667pt;}
.y21{bottom:174.234667pt;}
.y178{bottom:178.064000pt;}
.y1df{bottom:178.486667pt;}
.yb0{bottom:178.920000pt;}
.y12c{bottom:180.341333pt;}
.ye3{bottom:182.446596pt;}
.yb{bottom:187.374667pt;}
.yf3{bottom:188.041333pt;}
.y149{bottom:189.521333pt;}
.y46{bottom:190.009333pt;}
.y84{bottom:190.038667pt;}
.yaf{bottom:190.040000pt;}
.ye2{bottom:191.018178pt;}
.y159{bottom:193.358667pt;}
.y195{bottom:193.849333pt;}
.y90{bottom:193.885333pt;}
.y20{bottom:194.996000pt;}
.y1de{bottom:197.748000pt;}
.y12b{bottom:204.244000pt;}
.y1a9{bottom:204.468000pt;}
.y83{bottom:205.980000pt;}
.yae{bottom:210.800000pt;}
.ya{bottom:211.278667pt;}
.y1f3{bottom:213.097333pt;}
.y148{bottom:213.425333pt;}
.y45{bottom:213.913333pt;}
.y177{bottom:215.250667pt;}
.y1dd{bottom:217.009333pt;}
.y158{bottom:217.261333pt;}
.y194{bottom:217.752000pt;}
.y8f{bottom:217.789333pt;}
.y1e0{bottom:219.904000pt;}
.y82{bottom:221.920000pt;}
.ye1{bottom:223.840111pt;}
.y66{bottom:224.964000pt;}
.yba{bottom:226.740000pt;}
.y12a{bottom:228.146667pt;}
.y1a8{bottom:228.372000pt;}
.y9{bottom:235.181333pt;}
.y1dc{bottom:236.269333pt;}
.y147{bottom:237.328000pt;}
.y44{bottom:237.816000pt;}
.y81{bottom:237.860000pt;}
.y176{bottom:239.153333pt;}
.ydf{bottom:240.983275pt;}
.y157{bottom:241.164000pt;}
.y8e{bottom:241.692000pt;}
.yad{bottom:243.181333pt;}
.y65{bottom:248.866667pt;}
.y129{bottom:252.050667pt;}
.y1a7{bottom:252.274667pt;}
.y1f2{bottom:252.608000pt;}
.y80{bottom:253.800000pt;}
.y193{bottom:254.938667pt;}
.ye0{bottom:258.126440pt;}
.y146{bottom:261.230667pt;}
.y43{bottom:261.718667pt;}
.y1db{bottom:263.095530pt;}
.y156{bottom:265.066667pt;}
.y8d{bottom:265.594667pt;}
.yac{bottom:267.084000pt;}
.y1f{bottom:271.950667pt;}
.y1da{bottom:272.534161pt;}
.y64{bottom:272.770667pt;}
.y7f{bottom:274.561333pt;}
.y8{bottom:275.024000pt;}
.yb9{bottom:275.030667pt;}
.y175{bottom:276.340000pt;}
.y1f1{bottom:276.510667pt;}
.y192{bottom:278.841333pt;}
.yde{bottom:282.377977pt;}
.y145{bottom:285.133333pt;}
.y42{bottom:285.621333pt;}
.y7e{bottom:285.681333pt;}
.y1a6{bottom:289.461333pt;}
.y8c{bottom:289.497333pt;}
.ydd{bottom:290.949560pt;}
.yab{bottom:290.986667pt;}
.y1e{bottom:294.370667pt;}
.y63{bottom:296.673333pt;}
.yb8{bottom:298.933333pt;}
.y174{bottom:300.242667pt;}
.y155{bottom:300.309333pt;}
.y7d{bottom:301.621333pt;}
.y128{bottom:301.961333pt;}
.y191{bottom:302.744000pt;}
.y1d9{bottom:308.676160pt;}
.y144{bottom:309.037333pt;}
.y41{bottom:309.525333pt;}
.y1a5{bottom:313.364000pt;}
.y8b{bottom:313.400000pt;}
.yaa{bottom:314.890667pt;}
.y1f0{bottom:316.021333pt;}
.y127{bottom:316.401333pt;}
.y1d{bottom:316.789333pt;}
.y7c{bottom:317.561333pt;}
.yf5{bottom:317.688738pt;}
.y1d8{bottom:318.114791pt;}
.y10b{bottom:319.820000pt;}
.y62{bottom:320.576000pt;}
.yb7{bottom:322.837333pt;}
.ydc{bottom:323.771493pt;}
.y173{bottom:324.145333pt;}
.y154{bottom:324.212000pt;}
.y126{bottom:332.341333pt;}
.y143{bottom:332.940000pt;}
.y40{bottom:333.428000pt;}
.y1a4{bottom:337.266667pt;}
.y8a{bottom:337.304000pt;}
.y7b{bottom:338.321333pt;}
.ya9{bottom:338.793333pt;}
.y1c{bottom:339.209333pt;}
.y1ef{bottom:339.925333pt;}
.y190{bottom:339.930667pt;}
.yda{bottom:340.914657pt;}
.y61{bottom:344.478667pt;}
.yb6{bottom:346.740000pt;}
.y172{bottom:348.048000pt;}
.y153{bottom:348.114667pt;}
.y1d7{bottom:354.258097pt;}
.y142{bottom:356.842667pt;}
.y3f{bottom:357.330667pt;}
.ydb{bottom:358.057822pt;}
.y125{bottom:359.500000pt;}
.y7a{bottom:361.206667pt;}
.y1b{bottom:361.628000pt;}
.ya8{bottom:362.696000pt;}
.y1d6{bottom:363.696728pt;}
.y1ee{bottom:363.828000pt;}
.y18f{bottom:363.833333pt;}
.y60{bottom:368.381333pt;}
.yb5{bottom:370.642667pt;}
.y152{bottom:372.017333pt;}
.y1a3{bottom:374.453333pt;}
.y124{bottom:378.761333pt;}
.y141{bottom:380.745333pt;}
.y3e{bottom:381.233333pt;}
.yd9{bottom:382.309359pt;}
.y1a{bottom:384.048000pt;}
.y10a{bottom:384.145333pt;}
.y79{bottom:385.109333pt;}
.y171{bottom:385.234667pt;}
.y1ed{bottom:387.730667pt;}
.y18e{bottom:387.737333pt;}
.yd8{bottom:390.880941pt;}
.y5f{bottom:392.285333pt;}
.yb4{bottom:394.545333pt;}
.y151{bottom:395.921333pt;}
.ya7{bottom:396.893333pt;}
.y1a2{bottom:398.356000pt;}
.y1d5{bottom:399.838728pt;}
.y109{bottom:403.406667pt;}
.y140{bottom:404.648000pt;}
.y3d{bottom:405.137333pt;}
.y123{bottom:406.009333pt;}
.y19{bottom:406.466667pt;}
.y78{bottom:409.012000pt;}
.y170{bottom:409.138667pt;}
.y1d4{bottom:409.277359pt;}
.y1ec{bottom:411.633333pt;}
.y1be{bottom:414.304000pt;}
.y5e{bottom:416.188000pt;}
.yb3{bottom:418.449333pt;}
.y108{bottom:422.668000pt;}
.yd7{bottom:423.702874pt;}
.y18d{bottom:424.924000pt;}
.y122{bottom:425.270667pt;}
.y13f{bottom:428.552000pt;}
.y18{bottom:428.886667pt;}
.y3c{bottom:429.040000pt;}
.y77{bottom:432.916000pt;}
.y16f{bottom:433.041333pt;}
.y1eb{bottom:435.537333pt;}
.y1a1{bottom:435.542667pt;}
.y150{bottom:435.609333pt;}
.y1bd{bottom:438.206667pt;}
.y5d{bottom:440.090667pt;}
.yd5{bottom:440.846039pt;}
.yfc{bottom:441.929333pt;}
.y121{bottom:444.532000pt;}
.y1d3{bottom:445.420665pt;}
.y18c{bottom:448.826667pt;}
.ya6{bottom:448.872000pt;}
.y17{bottom:451.305333pt;}
.y13e{bottom:452.454667pt;}
.yb2{bottom:452.646667pt;}
.y3b{bottom:452.942667pt;}
.y1d2{bottom:454.859296pt;}
.y76{bottom:456.818667pt;}
.yd6{bottom:457.989203pt;}
.y1ea{bottom:459.440000pt;}
.y1a0{bottom:459.445333pt;}
.y1bc{bottom:462.109333pt;}
.y120{bottom:463.792000pt;}
.y5c{bottom:463.993333pt;}
.y16e{bottom:470.228000pt;}
.y18b{bottom:472.729333pt;}
.ya5{bottom:472.774667pt;}
.y11f{bottom:473.422667pt;}
.y16{bottom:473.725333pt;}
.y13d{bottom:476.357333pt;}
.y3a{bottom:476.845333pt;}
.y75{bottom:480.721333pt;}
.yd4{bottom:482.240741pt;}
.y1e9{bottom:483.342667pt;}
.y1bb{bottom:486.013333pt;}
.y5b{bottom:487.897333pt;}
.y1e3{bottom:488.506667pt;}
.y1d1{bottom:491.002602pt;}
.y16d{bottom:494.130667pt;}
.y14f{bottom:495.896000pt;}
.y15{bottom:496.144000pt;}
.y18a{bottom:496.632000pt;}
.ya4{bottom:496.677333pt;}
.yd2{bottom:499.383905pt;}
.y13c{bottom:500.260000pt;}
.y1d0{bottom:500.441233pt;}
.y39{bottom:500.748000pt;}
.y74{bottom:504.624000pt;}
.y1e8{bottom:507.245333pt;}
.y11e{bottom:510.301333pt;}
.y5a{bottom:511.800000pt;}
.yd3{bottom:516.527070pt;}
.y16c{bottom:518.033333pt;}
.y14e{bottom:519.800000pt;}
.y19f{bottom:520.536000pt;}
.ya3{bottom:520.581333pt;}
.y1ba{bottom:523.200000pt;}
.y13b{bottom:524.164000pt;}
.y38{bottom:524.652000pt;}
.y14{bottom:527.468000pt;}
.yf2{bottom:528.341333pt;}
.y73{bottom:528.528000pt;}
.y1e7{bottom:531.149333pt;}
.y189{bottom:533.818667pt;}
.y59{bottom:535.702667pt;}
.y1cf{bottom:536.583233pt;}
.y11d{bottom:537.549333pt;}
.yd1{bottom:540.777420pt;}
.y6{bottom:541.700000pt;}
.y19e{bottom:544.438667pt;}
.ya2{bottom:544.484000pt;}
.y1ce{bottom:546.021864pt;}
.y1b9{bottom:547.102667pt;}
.yf1{bottom:547.602667pt;}
.y13a{bottom:548.066667pt;}
.y37{bottom:548.554667pt;}
.y72{bottom:552.430667pt;}
.y16b{bottom:555.220000pt;}
.y188{bottom:557.721333pt;}
.ycf{bottom:557.920585pt;}
.y14d{bottom:559.488000pt;}
.y58{bottom:559.605333pt;}
.y11c{bottom:564.797333pt;}
.ya1{bottom:568.386667pt;}
.y1e6{bottom:570.660000pt;}
.y1b8{bottom:571.005333pt;}
.y139{bottom:571.969333pt;}
.y36{bottom:572.457333pt;}
.y5{bottom:573.021333pt;}
.y11b{bottom:574.428000pt;}
.yd0{bottom:575.063749pt;}
.y71{bottom:576.333333pt;}
.y16a{bottom:579.122667pt;}
.y187{bottom:581.625333pt;}
.y1cd{bottom:582.165170pt;}
.y57{bottom:583.509333pt;}
.y1cc{bottom:591.603801pt;}
.ya0{bottom:592.289333pt;}
.y1e5{bottom:594.562667pt;}
.y138{bottom:595.872000pt;}
.y35{bottom:596.360000pt;}
.yce{bottom:599.315287pt;}
.y70{bottom:600.236000pt;}
.y169{bottom:603.026667pt;}
.y4{bottom:604.342667pt;}
.yf0{bottom:604.478667pt;}
.y19d{bottom:605.528000pt;}
.y56{bottom:607.412000pt;}
.y1b7{bottom:608.192000pt;}
.y11a{bottom:611.305333pt;}
.y9f{bottom:616.193333pt;}
.ycc{bottom:616.458451pt;}
.y186{bottom:618.810667pt;}
.y137{bottom:619.776000pt;}
.y34{bottom:620.264000pt;}
.y119{bottom:620.936000pt;}
.y6f{bottom:624.140000pt;}
.y1cb{bottom:627.747107pt;}
.yfb{bottom:629.537333pt;}
.y55{bottom:631.314667pt;}
.y1b6{bottom:632.094667pt;}
.y13{bottom:633.325333pt;}
.ycd{bottom:633.600429pt;}
.y1e4{bottom:634.073333pt;}
.y1ca{bottom:637.184432pt;}
.y9e{bottom:640.096000pt;}
.y168{bottom:640.212000pt;}
.y185{bottom:642.714667pt;}
.y136{bottom:643.678667pt;}
.y33{bottom:644.166667pt;}
.y6e{bottom:648.042667pt;}
.y118{bottom:649.828000pt;}
.yef{bottom:649.936000pt;}
.y1b5{bottom:655.997333pt;}
.ycb{bottom:657.851967pt;}
.y117{bottom:659.458667pt;}
.y12{bottom:662.998667pt;}
.y9d{bottom:663.998667pt;}
.y167{bottom:664.116000pt;}
.y184{bottom:666.617333pt;}
.y135{bottom:667.581333pt;}
.y54{bottom:671.002667pt;}
.y6d{bottom:671.945333pt;}
.y1c9{bottom:673.327738pt;}
.yca{bottom:674.995131pt;}
.y3{bottom:678.172000pt;}
.y1b4{bottom:679.901333pt;}
.y1c8{bottom:682.766369pt;}
.y14c{bottom:683.366667pt;}
.yc7{bottom:683.566713pt;}
.y32{bottom:683.854667pt;}
.y9c{bottom:687.901333pt;}
.y166{bottom:688.018667pt;}
.y116{bottom:688.349333pt;}
.y19c{bottom:690.520000pt;}
.y134{bottom:691.484000pt;}
.yc9{bottom:692.138296pt;}
.y11{bottom:692.670667pt;}
.yee{bottom:694.520000pt;}
.y6c{bottom:695.848000pt;}
.y115{bottom:697.980000pt;}
.y183{bottom:703.804000pt;}
.y53{bottom:707.269333pt;}
.yc8{bottom:709.281460pt;}
.y2{bottom:709.492000pt;}
.yeb{bottom:710.224000pt;}
.y9b{bottom:711.804000pt;}
.y19b{bottom:714.422667pt;}
.y133{bottom:715.388000pt;}
.y1b3{bottom:717.086667pt;}
.y1c7{bottom:718.909675pt;}
.y6b{bottom:719.750667pt;}
.yed{bottom:723.508000pt;}
.y165{bottom:725.205333pt;}
.yec{bottom:727.492000pt;}
.y182{bottom:727.706667pt;}
.y1c6{bottom:728.348306pt;}
.yc6{bottom:733.531811pt;}
.y114{bottom:734.858667pt;}
.y9a{bottom:735.708000pt;}
.ye6{bottom:737.308000pt;}
.y132{bottom:739.290667pt;}
.y1b2{bottom:740.990667pt;}
.yea{bottom:741.396000pt;}
.y31{bottom:743.638667pt;}
.y6a{bottom:743.654667pt;}
.y10{bottom:745.074667pt;}
.y164{bottom:749.108000pt;}
.yc4{bottom:750.674975pt;}
.y181{bottom:751.609333pt;}
.ye7{bottom:757.632000pt;}
.y99{bottom:759.610667pt;}
.y1{bottom:759.936000pt;}
.y113{bottom:762.106667pt;}
.y131{bottom:763.193333pt;}
.y1c5{bottom:764.490305pt;}
.y1b1{bottom:764.893333pt;}
.y52{bottom:767.557333pt;}
.yc5{bottom:767.818140pt;}
.ye9{bottom:770.914667pt;}
.y112{bottom:771.737333pt;}
.y1c4{bottom:773.928936pt;}
.yf{bottom:774.748000pt;}
.ye8{bottom:774.900000pt;}
.y19a{bottom:775.513333pt;}
.y30{bottom:780.909333pt;}
.y98{bottom:783.513333pt;}
.y163{bottom:786.294667pt;}
.y180{bottom:788.796000pt;}
.y51{bottom:791.460000pt;}
.yc3{bottom:792.069677pt;}
.y199{bottom:799.416000pt;}
.yc2{bottom:800.641260pt;}
.y1b0{bottom:802.080000pt;}
.y130{bottom:802.881333pt;}
.y2f{bottom:803.329333pt;}
.y97{bottom:807.416000pt;}
.y111{bottom:808.616000pt;}
.y1c3{bottom:810.072243pt;}
.y162{bottom:810.197333pt;}
.y17f{bottom:812.698667pt;}
.y50{bottom:815.362667pt;}
.y1c2{bottom:819.510874pt;}
.y2e{bottom:825.748000pt;}
.y1af{bottom:825.982667pt;}
.ye{bottom:827.832000pt;}
.y96{bottom:831.320000pt;}
.yc1{bottom:833.463193pt;}
.y161{bottom:834.100000pt;}
.y110{bottom:835.862667pt;}
.y17e{bottom:836.602667pt;}
.y4f{bottom:839.266667pt;}
.y10f{bottom:845.493333pt;}
.y2d{bottom:848.168000pt;}
.y1ae{bottom:849.885333pt;}
.ybf{bottom:850.606357pt;}
.y95{bottom:855.222667pt;}
.y198{bottom:860.505333pt;}
.y1c1{bottom:861.842932pt;}
.y4e{bottom:863.169333pt;}
.yc0{bottom:867.749522pt;}
.yd{bottom:869.044000pt;}
.y2c{bottom:870.588000pt;}
.y160{bottom:871.286667pt;}
.y17d{bottom:873.788000pt;}
.y94{bottom:879.125333pt;}
.y10e{bottom:882.372000pt;}
.y4d{bottom:887.072000pt;}
.ybe{bottom:892.001059pt;}
.y2b{bottom:893.006667pt;}
.y15f{bottom:895.189333pt;}
.y17c{bottom:897.692000pt;}
.y1c0{bottom:900.313333pt;}
.ybd{bottom:900.572641pt;}
.y93{bottom:903.028000pt;}
.yc{bottom:910.256000pt;}
.y4c{bottom:910.974667pt;}
.y2a{bottom:915.426667pt;}
.y10d{bottom:915.934667pt;}
.y15e{bottom:919.093333pt;}
.y1bf{bottom:919.574667pt;}
.y17b{bottom:921.594667pt;}
.y4b{bottom:934.878667pt;}
.y92{bottom:937.226667pt;}
.y29{bottom:937.845333pt;}
.ybc{bottom:939.016004pt;}
.y15d{bottom:942.996000pt;}
.y10c{bottom:955.098667pt;}
.y4a{bottom:958.781333pt;}
.y28{bottom:960.265333pt;}
.ybb{bottom:974.360000pt;}
.y27{bottom:982.684000pt;}
.h14{height:0.000000pt;}
.h1a{height:15.377303pt;}
.h1e{height:20.565067pt;}
.h17{height:22.125559pt;}
.hc{height:26.184294pt;}
.h13{height:29.925069pt;}
.h18{height:30.975783pt;}
.h15{height:31.880400pt;}
.h5{height:39.850400pt;}
.ha{height:40.610943pt;}
.h11{height:42.561947pt;}
.hb{height:43.636400pt;}
.h6{height:44.887791pt;}
.h1f{height:46.867253pt;}
.h7{height:47.820800pt;}
.h4{height:52.368964pt;}
.h10{height:53.865199pt;}
.h22{height:54.643234pt;}
.he{height:55.016400pt;}
.hf{height:55.021733pt;}
.h3{height:55.790800pt;}
.hd{height:64.638089pt;}
.h9{height:67.615733pt;}
.h12{height:76.848276pt;}
.h8{height:77.911400pt;}
.h2{height:82.294033pt;}
.h21{height:84.616551pt;}
.h20{height:84.621778pt;}
.h1d{height:86.338133pt;}
.h1b{height:86.343467pt;}
.h1c{height:91.583735pt;}
.h19{height:175.619016pt;}
.h16{height:328.311284pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:294.824672pt;}
.w2{width:595.677539pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:5.996759pt;}
.x28{left:8.637060pt;}
.x27{left:34.877610pt;}
.x1f{left:56.153985pt;}
.x2{left:96.000000pt;}
.x1d{left:99.006667pt;}
.x2a{left:101.440000pt;}
.x1{left:108.036000pt;}
.x38{left:111.608000pt;}
.x37{left:112.840000pt;}
.xd{left:113.952000pt;}
.x12{left:117.084000pt;}
.x10{left:118.136000pt;}
.x3{left:120.270667pt;}
.x4{left:122.845333pt;}
.x6{left:133.145333pt;}
.xc{left:135.020000pt;}
.xf{left:145.576000pt;}
.x20{left:154.433303pt;}
.x4c{left:171.922667pt;}
.x35{left:175.458667pt;}
.x15{left:179.310667pt;}
.x11{left:191.638667pt;}
.x2b{left:196.305333pt;}
.x3a{left:199.676000pt;}
.x21{left:205.009179pt;}
.x2f{left:209.253333pt;}
.x26{left:231.980000pt;}
.x3b{left:238.840000pt;}
.x19{left:241.396000pt;}
.x1b{left:257.574667pt;}
.x13{left:261.794571pt;}
.x1a{left:262.769333pt;}
.x3c{left:272.402667pt;}
.x9{left:278.640000pt;}
.x1c{left:279.916000pt;}
.x3d{left:291.664000pt;}
.x36{left:294.228000pt;}
.x22{left:302.869847pt;}
.x2e{left:306.744000pt;}
.x33{left:308.348000pt;}
.x3e{left:310.924000pt;}
.x39{left:314.620024pt;}
.xa{left:317.841333pt;}
.x31{left:323.108000pt;}
.x5{left:324.566667pt;}
.x3f{left:330.185333pt;}
.x8{left:338.312000pt;}
.x7{left:349.578667pt;}
.x2d{left:351.950667pt;}
.x30{left:354.762667pt;}
.x23{left:359.618485pt;}
.xb{left:364.850667pt;}
.x40{left:368.708000pt;}
.x41{left:387.969333pt;}
.x2c{left:389.046667pt;}
.xe{left:392.948000pt;}
.x29{left:399.452000pt;}
.x42{left:407.230667pt;}
.x43{left:426.490667pt;}
.x32{left:434.913333pt;}
.x44{left:445.752000pt;}
.x24{left:451.306391pt;}
.x45{left:465.013333pt;}
.x17{left:484.361333pt;}
.x16{left:488.818667pt;}
.x25{left:502.254401pt;}
.x46{left:503.536000pt;}
.x18{left:506.906667pt;}
.x34{left:519.909333pt;}
.x47{left:522.796000pt;}
.x48{left:542.057333pt;}
.x49{left:569.216000pt;}
.x4a{left:588.477333pt;}
.x4b{left:607.738667pt;}
.x14{left:677.757333pt;}
}




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