
    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_ade99fcc4b8be345c57632fd.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_b4645378c22b7c8e578233dd.woff')format("woff");}.ff2{font-family:ff2;line-height:0.959961;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_4c630b58a74c06654b5a0fff.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_eee53c0afae4f89e57645e52.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938000;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_a936cb1de2749f6466c939df.woff')format("woff");}.ff5{font-family:ff5;line-height:0.995000;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_cc48007347698d43dff77da5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.954000;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_1a42c1ff55663fd56e61db15.woff')format("woff");}.ff7{font-family:ff7;line-height:0.945000;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_a95f3baa9f28c855e6add445.woff')format("woff");}.ff8{font-family:ff8;line-height:0.444000;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_ee6f124ee1c1ab60002d0143.woff')format("woff");}.ff9{font-family:ff9;line-height:0.856934;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_1a18ab0ddb86b39a10ba7938.woff')format("woff");}.ffa{font-family:ffa;line-height:0.431000;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_d846faa881cae01f737e7e3f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.431000;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_91109783b56178965e216d11.woff')format("woff");}.ffc{font-family:ffc;line-height:0.948000;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_c3dfe7aac71397062de51491.woff')format("woff");}.ffd{font-family:ffd;line-height:0.909000;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_cc2c977a978a4f57f0410359.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_05b31b9262142079ce3b2cfa.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_6fccf8eaeb2459dd6e9cbbad.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_983bf53e22ac6f0bcc9b2162.woff')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_ef1e9a450ed5b18f6da0f813.woff')format("woff");}.ff12{font-family:ff12;line-height:0.454000;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_a3d9e7e12a4f7a45a76c1c0d.woff')format("woff");}.ff13{font-family:ff13;line-height:2.399000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_20a2685e71a1f42617895fcb.woff')format("woff");}.ff14{font-family:ff14;line-height:0.703000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_bbb607eebdfb85f3e0f8a3a9.woff')format("woff");}.ff15{font-family:ff15;line-height:0.315000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_a99d75619fb6238637bc2de9.woff')format("woff");}.ff16{font-family:ff16;line-height:0.497000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_167616e007c3700e2f8a65c3.woff')format("woff");}.ff17{font-family:ff17;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_0332a308ef0f6faad638f306.woff')format("woff");}.ff18{font-family:ff18;line-height:0.308000;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_fb4e0011406d1808e2cf8df3.woff')format("woff");}.ff19{font-family:ff19;line-height:0.714000;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_5b2b27a7d57fb52fec17000d.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051979,0.244537,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);}
.m2{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);}
.v1e{vertical-align:-79.638000px;}
.v1d{vertical-align:-70.638000px;}
.v19{vertical-align:-30.162000px;}
.v6{vertical-align:-28.554000px;}
.v2{vertical-align:-20.916000px;}
.v22{vertical-align:-15.000000px;}
.v5{vertical-align:-13.446000px;}
.v3{vertical-align:-9.000000px;}
.v12{vertical-align:-7.314000px;}
.v9{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v23{vertical-align:1.590000px;}
.v14{vertical-align:4.554000px;}
.ve{vertical-align:6.732000px;}
.v1a{vertical-align:7.746000px;}
.vb{vertical-align:9.000000px;}
.va{vertical-align:11.694000px;}
.v1c{vertical-align:13.344000px;}
.vc{vertical-align:15.732000px;}
.vd{vertical-align:16.740000px;}
.v8{vertical-align:18.900000px;}
.v17{vertical-align:20.664000px;}
.v4{vertical-align:21.774000px;}
.v11{vertical-align:22.938000px;}
.v7{vertical-align:24.900000px;}
.v1{vertical-align:26.898000px;}
.v20{vertical-align:31.590000px;}
.v13{vertical-align:35.226000px;}
.vf{vertical-align:37.506000px;}
.v10{vertical-align:38.814000px;}
.v15{vertical-align:40.590000px;}
.v18{vertical-align:46.668000px;}
.v1b{vertical-align:54.936000px;}
.v1f{vertical-align:84.600000px;}
.v16{vertical-align:122.376000px;}
.v21{vertical-align:125.760000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000150px;}
.ls2d{letter-spacing:0.000167px;}
.lsd{letter-spacing:0.000200px;}
.ls4b{letter-spacing:0.000233px;}
.ls2{letter-spacing:0.000266px;}
.lsaa{letter-spacing:0.000298px;}
.ls5{letter-spacing:0.000300px;}
.ls29{letter-spacing:0.000310px;}
.ls35{letter-spacing:0.000334px;}
.ls47{letter-spacing:0.000343px;}
.ls1e{letter-spacing:0.000346px;}
.ls4c{letter-spacing:0.000362px;}
.ls3{letter-spacing:0.000368px;}
.lsc7{letter-spacing:0.000400px;}
.lsa{letter-spacing:0.000433px;}
.ls12{letter-spacing:0.000467px;}
.ls62{letter-spacing:0.000500px;}
.ls45{letter-spacing:0.000526px;}
.ls3c{letter-spacing:0.000578px;}
.ls4{letter-spacing:0.000600px;}
.ls17{letter-spacing:0.000684px;}
.lsda{letter-spacing:0.001368px;}
.ls38{letter-spacing:0.001572px;}
.lsb9{letter-spacing:0.001800px;}
.ls71{letter-spacing:0.002628px;}
.ls75{letter-spacing:0.003171px;}
.ls40{letter-spacing:0.006361px;}
.ls34{letter-spacing:0.006500px;}
.lsb8{letter-spacing:0.040595px;}
.lsc2{letter-spacing:0.222384px;}
.ls97{letter-spacing:0.432300px;}
.ls22{letter-spacing:0.480300px;}
.ls7b{letter-spacing:1.182400px;}
.ls2f{letter-spacing:1.320400px;}
.ls11{letter-spacing:1.380233px;}
.lsc0{letter-spacing:1.380367px;}
.ls7c{letter-spacing:1.933508px;}
.ls3a{letter-spacing:1.936553px;}
.lsa5{letter-spacing:1.939508px;}
.lsbd{letter-spacing:2.033674px;}
.ls57{letter-spacing:2.148343px;}
.ls30{letter-spacing:2.154298px;}
.ls32{letter-spacing:2.154343px;}
.lsd3{letter-spacing:2.274267px;}
.ls5f{letter-spacing:2.984736px;}
.ls1a{letter-spacing:2.985264px;}
.ls39{letter-spacing:2.985983px;}
.ls50{letter-spacing:2.986632px;}
.ls41{letter-spacing:2.987751px;}
.ls7{letter-spacing:2.988000px;}
.ls3b{letter-spacing:2.988569px;}
.ls13{letter-spacing:2.988684px;}
.ls7a{letter-spacing:2.989800px;}
.lsa8{letter-spacing:2.990052px;}
.ls7f{letter-spacing:2.991983px;}
.ls42{letter-spacing:2.992632px;}
.ls9{letter-spacing:2.993751px;}
.ls1d{letter-spacing:3.168339px;}
.lsb6{letter-spacing:4.158334px;}
.ls70{letter-spacing:4.620334px;}
.ls6f{letter-spacing:4.620367px;}
.lsdb{letter-spacing:5.974200px;}
.lse7{letter-spacing:6.666300px;}
.lsc6{letter-spacing:6.666334px;}
.ls6b{letter-spacing:6.666367px;}
.lscb{letter-spacing:7.170442px;}
.ls73{letter-spacing:7.878167px;}
.ls9e{letter-spacing:7.884167px;}
.ls2a{letter-spacing:8.760167px;}
.ls76{letter-spacing:9.246266px;}
.ls77{letter-spacing:9.248880px;}
.ls78{letter-spacing:9.252266px;}
.ls6a{letter-spacing:9.654000px;}
.lsc9{letter-spacing:9.996167px;}
.ls82{letter-spacing:9.996300px;}
.lsc4{letter-spacing:9.996367px;}
.ls4a{letter-spacing:9.996467px;}
.lsc5{letter-spacing:10.002167px;}
.ls85{letter-spacing:10.002300px;}
.ls49{letter-spacing:10.002400px;}
.lse6{letter-spacing:10.002467px;}
.lsc8{letter-spacing:10.224384px;}
.lsf{letter-spacing:11.154150px;}
.lsce{letter-spacing:11.340367px;}
.ls67{letter-spacing:11.676150px;}
.ls66{letter-spacing:11.682367px;}
.ls65{letter-spacing:11.688150px;}
.ls8d{letter-spacing:12.384150px;}
.ls92{letter-spacing:13.278367px;}
.lsbe{letter-spacing:13.326467px;}
.ls1c{letter-spacing:13.332467px;}
.lscf{letter-spacing:13.380367px;}
.ls6{letter-spacing:13.446300px;}
.ls7d{letter-spacing:13.494367px;}
.lsf0{letter-spacing:13.497398px;}
.ls3f{letter-spacing:13.500150px;}
.lsef{letter-spacing:13.500300px;}
.ls79{letter-spacing:13.500367px;}
.ls21{letter-spacing:13.578150px;}
.ls58{letter-spacing:14.016367px;}
.lsa9{letter-spacing:14.490150px;}
.ls5a{letter-spacing:14.644632px;}
.lse5{letter-spacing:14.658000px;}
.ls89{letter-spacing:14.856300px;}
.ls10{letter-spacing:15.000150px;}
.lsee{letter-spacing:15.000600px;}
.lscc{letter-spacing:15.060000px;}
.ls28{letter-spacing:15.222684px;}
.ls52{letter-spacing:15.306150px;}
.ls8e{letter-spacing:15.372000px;}
.lse1{letter-spacing:15.504000px;}
.ls8a{letter-spacing:15.540367px;}
.ls4d{letter-spacing:15.850632px;}
.ls5d{letter-spacing:15.894150px;}
.ls5c{letter-spacing:15.899751px;}
.ls68{letter-spacing:15.900000px;}
.lsdf{letter-spacing:15.976200px;}
.ls2c{letter-spacing:16.146367px;}
.lsed{letter-spacing:16.248000px;}
.ls14{letter-spacing:16.272684px;}
.ls80{letter-spacing:16.315548px;}
.lsd0{letter-spacing:16.317489px;}
.ls15{letter-spacing:16.323264px;}
.ls59{letter-spacing:16.362367px;}
.ls3d{letter-spacing:16.483800px;}
.ls24{letter-spacing:16.488150px;}
.ls72{letter-spacing:16.489800px;}
.ls74{letter-spacing:16.492262px;}
.lse9{letter-spacing:17.076150px;}
.lse8{letter-spacing:17.082150px;}
.ls83{letter-spacing:17.172467px;}
.ls95{letter-spacing:17.214150px;}
.ls9d{letter-spacing:17.352346px;}
.ls51{letter-spacing:17.380632px;}
.ls60{letter-spacing:17.454150px;}
.ls5e{letter-spacing:17.460150px;}
.ls26{letter-spacing:17.550300px;}
.lse4{letter-spacing:17.622000px;}
.ls8f{letter-spacing:17.730000px;}
.ls8b{letter-spacing:17.884632px;}
.lsa6{letter-spacing:17.916339px;}
.lsc1{letter-spacing:17.985489px;}
.ls8{letter-spacing:17.988000px;}
.lsec{letter-spacing:17.988339px;}
.lsb2{letter-spacing:18.001138px;}
.ls9b{letter-spacing:18.858367px;}
.ls53{letter-spacing:18.912400px;}
.lseb{letter-spacing:19.098150px;}
.ls9a{letter-spacing:19.218346px;}
.ls93{letter-spacing:19.374150px;}
.ls69{letter-spacing:19.422000px;}
.lse{letter-spacing:19.500150px;}
.ls9c{letter-spacing:19.626267px;}
.lsd2{letter-spacing:19.887489px;}
.ls8c{letter-spacing:20.010334px;}
.ls96{letter-spacing:20.196000px;}
.lsd6{letter-spacing:20.286300px;}
.ls37{letter-spacing:20.292339px;}
.ls16{letter-spacing:20.502467px;}
.lsc3{letter-spacing:20.508467px;}
.lsae{letter-spacing:20.622150px;}
.ls31{letter-spacing:20.628150px;}
.ls2e{letter-spacing:20.634150px;}
.lsb3{letter-spacing:21.192000px;}
.lsd8{letter-spacing:21.438000px;}
.ls99{letter-spacing:21.492267px;}
.lsa7{letter-spacing:21.552339px;}
.lsaf{letter-spacing:21.606150px;}
.ls5b{letter-spacing:21.646632px;}
.lsd9{letter-spacing:21.654467px;}
.ls88{letter-spacing:21.808632px;}
.ls56{letter-spacing:22.008343px;}
.ls63{letter-spacing:22.032150px;}
.ls19{letter-spacing:22.425264px;}
.lsd4{letter-spacing:22.548300px;}
.ls55{letter-spacing:22.841751px;}
.lsd7{letter-spacing:22.860000px;}
.lsea{letter-spacing:22.878339px;}
.ls48{letter-spacing:22.990632px;}
.ls87{letter-spacing:23.430334px;}
.ls1b{letter-spacing:23.538684px;}
.ls4f{letter-spacing:23.579751px;}
.ls1f{letter-spacing:23.890632px;}
.lsb4{letter-spacing:24.006300px;}
.lsd5{letter-spacing:24.066000px;}
.ls90{letter-spacing:24.138339px;}
.lsdd{letter-spacing:24.264467px;}
.lsd1{letter-spacing:24.312467px;}
.ls20{letter-spacing:24.804150px;}
.ls6e{letter-spacing:24.964632px;}
.ls64{letter-spacing:25.010736px;}
.ls44{letter-spacing:25.518467px;}
.ls6d{letter-spacing:26.586334px;}
.ls36{letter-spacing:26.628339px;}
.lsac{letter-spacing:26.652467px;}
.lse2{letter-spacing:26.712000px;}
.lse3{letter-spacing:26.718000px;}
.ls25{letter-spacing:26.844150px;}
.lsb{letter-spacing:26.898266px;}
.ls81{letter-spacing:27.366150px;}
.ls2b{letter-spacing:27.512736px;}
.ls23{letter-spacing:27.942150px;}
.lsb5{letter-spacing:29.520000px;}
.lsc{letter-spacing:29.889442px;}
.lsb0{letter-spacing:30.000467px;}
.lsad{letter-spacing:30.564150px;}
.lsdc{letter-spacing:31.326000px;}
.lsde{letter-spacing:33.582000px;}
.ls43{letter-spacing:35.848632px;}
.lsab{letter-spacing:37.158467px;}
.ls3e{letter-spacing:45.140416px;}
.ls61{letter-spacing:49.824684px;}
.lse0{letter-spacing:53.148167px;}
.lsca{letter-spacing:54.558367px;}
.lsa3{letter-spacing:58.640416px;}
.ls7e{letter-spacing:58.646416px;}
.ls18{letter-spacing:59.661950px;}
.ls27{letter-spacing:60.978684px;}
.ls54{letter-spacing:66.000684px;}
.ls94{letter-spacing:69.198684px;}
.ls33{letter-spacing:70.452684px;}
.ls91{letter-spacing:70.794684px;}
.ls98{letter-spacing:71.148684px;}
.lsbc{letter-spacing:91.362200px;}
.ls84{letter-spacing:111.600233px;}
.lsa1{letter-spacing:138.259800px;}
.lsa0{letter-spacing:172.279800px;}
.ls86{letter-spacing:180.454632px;}
.lsbb{letter-spacing:199.770200px;}
.lsba{letter-spacing:200.472200px;}
.lsbf{letter-spacing:252.567489px;}
.ls4e{letter-spacing:281.742000px;}
.lscd{letter-spacing:286.026442px;}
.lsb1{letter-spacing:293.958233px;}
.lsb7{letter-spacing:348.414400px;}
.ls46{letter-spacing:451.944167px;}
.ls6c{letter-spacing:489.804233px;}
.ls9f{letter-spacing:525.136262px;}
.lsa2{letter-spacing:550.854367px;}
.lsa4{letter-spacing:552.571548px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-71.999100px;}
.ws67{word-spacing:-36.719633px;}
.ws12a{word-spacing:-33.047633px;}
.ws6{word-spacing:-32.111599px;}
.ws191{word-spacing:-31.049655px;}
.ws1f2{word-spacing:-29.999700px;}
.wsf{word-spacing:-26.999700px;}
.ws11{word-spacing:-26.639734px;}
.ws5d{word-spacing:-25.799472px;}
.wse{word-spacing:-23.975734px;}
.ws1e3{word-spacing:-23.386033px;}
.ws12c{word-spacing:-23.219525px;}
.wsc1{word-spacing:-21.959780px;}
.ws51{word-spacing:-21.419786px;}
.ws9{word-spacing:-21.311734px;}
.ws5{word-spacing:-20.999700px;}
.wsc4{word-spacing:-19.799802px;}
.ws203{word-spacing:-19.655782px;}
.ws20e{word-spacing:-19.604098px;}
.ws205{word-spacing:-19.602709px;}
.ws1fb{word-spacing:-19.601782px;}
.ws21c{word-spacing:-19.600147px;}
.ws1ff{word-spacing:-19.597796px;}
.ws1fc{word-spacing:-19.552750px;}
.ws21b{word-spacing:-19.552310px;}
.ws213{word-spacing:-19.551966px;}
.ws1fe{word-spacing:-19.547783px;}
.ws201{word-spacing:-19.547033px;}
.ws204{word-spacing:-19.545733px;}
.wsde{word-spacing:-19.199808px;}
.ws64{word-spacing:-18.717264px;}
.wse8{word-spacing:-16.845538px;}
.ws1ce{word-spacing:-16.679833px;}
.ws1e4{word-spacing:-16.643134px;}
.ws1db{word-spacing:-16.642167px;}
.ws13{word-spacing:-16.642133px;}
.ws1a5{word-spacing:-16.636133px;}
.ws14{word-spacing:-16.619834px;}
.ws18a{word-spacing:-16.581268px;}
.ws1e7{word-spacing:-16.559834px;}
.ws88{word-spacing:-16.439836px;}
.ws8f{word-spacing:-16.199838px;}
.wsef{word-spacing:-16.091821px;}
.ws71{word-spacing:-16.079839px;}
.ws11d{word-spacing:-16.037822px;}
.ws70{word-spacing:-16.019840px;}
.ws143{word-spacing:-15.959840px;}
.ws194{word-spacing:-15.899841px;}
.ws166{word-spacing:-15.839842px;}
.ws9d{word-spacing:-15.779842px;}
.wsa3{word-spacing:-15.719843px;}
.ws1a1{word-spacing:-15.659843px;}
.ws3a{word-spacing:-15.539845px;}
.ws3b{word-spacing:-15.479845px;}
.ws122{word-spacing:-15.359846px;}
.ws1c2{word-spacing:-15.299847px;}
.ws1c1{word-spacing:-15.298268px;}
.ws11e{word-spacing:-15.239848px;}
.ws46{word-spacing:-15.179848px;}
.ws5b{word-spacing:-15.059849px;}
.ws1bb{word-spacing:-15.052867px;}
.ws5a{word-spacing:-14.999850px;}
.wsca{word-spacing:-14.939851px;}
.ws78{word-spacing:-14.879851px;}
.ws1b3{word-spacing:-14.728834px;}
.ws8{word-spacing:-14.717866px;}
.ws1a4{word-spacing:-14.699853px;}
.wsa{word-spacing:-14.651867px;}
.wscf{word-spacing:-14.639854px;}
.ws1a7{word-spacing:-14.579854px;}
.ws4f{word-spacing:-14.519855px;}
.wsd0{word-spacing:-14.459855px;}
.wsba{word-spacing:-14.339857px;}
.ws1e1{word-spacing:-14.332334px;}
.wsbc{word-spacing:-14.279857px;}
.ws1c8{word-spacing:-14.241218px;}
.ws114{word-spacing:-14.219858px;}
.ws6e{word-spacing:-14.159858px;}
.wsbb{word-spacing:-14.099859px;}
.ws1ec{word-spacing:-14.039860px;}
.ws43{word-spacing:-13.919861px;}
.wsee{word-spacing:-13.859861px;}
.ws121{word-spacing:-13.799862px;}
.ws117{word-spacing:-13.785853px;}
.ws63{word-spacing:-13.739863px;}
.ws180{word-spacing:-13.679863px;}
.ws1bf{word-spacing:-13.619864px;}
.ws92{word-spacing:-13.559864px;}
.ws219{word-spacing:-13.505100px;}
.ws217{word-spacing:-13.504800px;}
.ws218{word-spacing:-13.504300px;}
.ws1be{word-spacing:-13.499865px;}
.ws1fd{word-spacing:-13.499100px;}
.ws202{word-spacing:-13.498800px;}
.ws208{word-spacing:-13.498500px;}
.ws7f{word-spacing:-13.439866px;}
.ws145{word-spacing:-13.437751px;}
.ws2f{word-spacing:-13.379866px;}
.ws5c{word-spacing:-13.369550px;}
.ws155{word-spacing:-13.360867px;}
.wsb9{word-spacing:-13.319867px;}
.ws1e5{word-spacing:-13.307134px;}
.ws1da{word-spacing:-13.306100px;}
.ws87{word-spacing:-13.259867px;}
.ws1dd{word-spacing:-13.241134px;}
.ws177{word-spacing:-13.199868px;}
.ws93{word-spacing:-13.079869px;}
.ws1d0{word-spacing:-13.019870px;}
.ws1c3{word-spacing:-12.959870px;}
.wsc3{word-spacing:-12.899871px;}
.ws6f{word-spacing:-12.839872px;}
.ws15c{word-spacing:-12.826534px;}
.ws187{word-spacing:-12.784567px;}
.wsf7{word-spacing:-12.779872px;}
.ws120{word-spacing:-12.719873px;}
.ws113{word-spacing:-12.659873px;}
.ws112{word-spacing:-12.627335px;}
.ws59{word-spacing:-12.599874px;}
.ws189{word-spacing:-12.539875px;}
.ws1c{word-spacing:-12.515821px;}
.ws102{word-spacing:-12.484801px;}
.wsf6{word-spacing:-12.479875px;}
.ws58{word-spacing:-12.419876px;}
.ws4d{word-spacing:-12.359876px;}
.ws2b{word-spacing:-12.299877px;}
.wsa8{word-spacing:-12.239878px;}
.ws1a{word-spacing:-12.239847px;}
.ws19{word-spacing:-12.191848px;}
.ws14c{word-spacing:-12.189781px;}
.ws17f{word-spacing:-12.179878px;}
.ws14d{word-spacing:-12.119879px;}
.ws1df{word-spacing:-12.059879px;}
.ws11f{word-spacing:-11.999880px;}
.ws3d{word-spacing:-11.939881px;}
.wsb2{word-spacing:-11.879881px;}
.ws39{word-spacing:-11.819882px;}
.ws14e{word-spacing:-11.780428px;}
.wsec{word-spacing:-11.759882px;}
.ws1f8{word-spacing:-11.701456px;}
.ws1f7{word-spacing:-11.700922px;}
.ws12{word-spacing:-11.699883px;}
.ws1fa{word-spacing:-11.697237px;}
.ws168{word-spacing:-11.644000px;}
.ws1f9{word-spacing:-11.641402px;}
.ws10{word-spacing:-11.639884px;}
.ws1bd{word-spacing:-11.638867px;}
.ws128{word-spacing:-11.638200px;}
.ws54{word-spacing:-11.579884px;}
.ws55{word-spacing:-11.519885px;}
.wsc0{word-spacing:-11.459885px;}
.ws197{word-spacing:-11.423857px;}
.ws61{word-spacing:-11.399886px;}
.ws50{word-spacing:-11.339887px;}
.ws100{word-spacing:-11.332367px;}
.ws79{word-spacing:-11.279887px;}
.ws198{word-spacing:-11.231875px;}
.ws5e{word-spacing:-11.219888px;}
.ws60{word-spacing:-11.159888px;}
.ws195{word-spacing:-11.135861px;}
.ws8b{word-spacing:-11.099889px;}
.ws211{word-spacing:-11.069877px;}
.ws57{word-spacing:-11.039890px;}
.ws77{word-spacing:-10.979890px;}
.ws196{word-spacing:-10.961878px;}
.ws17e{word-spacing:-10.919891px;}
.ws215{word-spacing:-10.907879px;}
.wse4{word-spacing:-10.859891px;}
.ws81{word-spacing:-10.799892px;}
.wsf5{word-spacing:-10.739893px;}
.wse5{word-spacing:-10.703866px;}
.ws36{word-spacing:-10.679893px;}
.ws1b{word-spacing:-10.655867px;}
.ws8d{word-spacing:-10.619894px;}
.wsf8{word-spacing:-10.559894px;}
.ws207{word-spacing:-10.531878px;}
.ws20d{word-spacing:-10.530936px;}
.wsc{word-spacing:-10.529883px;}
.ws20b{word-spacing:-10.528277px;}
.ws159{word-spacing:-10.527365px;}
.wsd9{word-spacing:-10.499895px;}
.wse0{word-spacing:-10.487000px;}
.ws216{word-spacing:-10.480534px;}
.ws200{word-spacing:-10.480112px;}
.ws214{word-spacing:-10.480068px;}
.wsd{word-spacing:-10.479934px;}
.ws210{word-spacing:-10.479434px;}
.ws212{word-spacing:-10.479282px;}
.ws20c{word-spacing:-10.478450px;}
.ws20a{word-spacing:-10.478084px;}
.ws209{word-spacing:-10.477268px;}
.wsb{word-spacing:-10.475884px;}
.ws1a9{word-spacing:-10.475134px;}
.wse6{word-spacing:-10.475034px;}
.ws15a{word-spacing:-10.474867px;}
.ws206{word-spacing:-10.474500px;}
.ws20f{word-spacing:-10.474167px;}
.ws3c{word-spacing:-10.439896px;}
.ws1e2{word-spacing:-10.439333px;}
.ws1e6{word-spacing:-10.439134px;}
.ws23{word-spacing:-10.379896px;}
.wsb8{word-spacing:-10.319897px;}
.ws4c{word-spacing:-10.259897px;}
.ws32{word-spacing:-10.199898px;}
.wsc7{word-spacing:-10.139899px;}
.wsdf{word-spacing:-10.079899px;}
.ws37{word-spacing:-10.019900px;}
.wsa1{word-spacing:-9.959900px;}
.ws4a{word-spacing:-9.899901px;}
.ws69{word-spacing:-9.839902px;}
.ws90{word-spacing:-9.779902px;}
.ws1c6{word-spacing:-9.736101px;}
.wsbe{word-spacing:-9.719903px;}
.ws148{word-spacing:-9.700101px;}
.wsd8{word-spacing:-9.694135px;}
.ws192{word-spacing:-9.659903px;}
.ws19a{word-spacing:-9.599904px;}
.wsd3{word-spacing:-9.539905px;}
.ws8e{word-spacing:-9.479905px;}
.ws2c{word-spacing:-9.419906px;}
.ws4{word-spacing:-9.365866px;}
.ws53{word-spacing:-9.359906px;}
.ws16{word-spacing:-9.359883px;}
.ws2{word-spacing:-9.338343px;}
.ws1{word-spacing:-9.323867px;}
.ws3{word-spacing:-9.323033px;}
.ws17{word-spacing:-9.311884px;}
.ws38{word-spacing:-9.299907px;}
.ws167{word-spacing:-9.286867px;}
.ws94{word-spacing:-9.239908px;}
.ws9f{word-spacing:-9.179908px;}
.wscd{word-spacing:-9.119909px;}
.ws147{word-spacing:-9.060000px;}
.wsce{word-spacing:-9.059909px;}
.wsb3{word-spacing:-8.999910px;}
.ws24{word-spacing:-8.939911px;}
.wsd1{word-spacing:-8.879911px;}
.ws49{word-spacing:-8.819912px;}
.ws10d{word-spacing:-8.759912px;}
.ws1b8{word-spacing:-8.752268px;}
.ws83{word-spacing:-8.699913px;}
.ws103{word-spacing:-8.654208px;}
.wsaa{word-spacing:-8.639914px;}
.wse2{word-spacing:-8.579914px;}
.ws34{word-spacing:-8.519915px;}
.ws109{word-spacing:-8.459915px;}
.ws86{word-spacing:-8.399916px;}
.wsbf{word-spacing:-8.339917px;}
.ws16b{word-spacing:-8.279917px;}
.ws185{word-spacing:-8.220420px;}
.wsfc{word-spacing:-8.219918px;}
.ws183{word-spacing:-8.178264px;}
.wsa5{word-spacing:-8.159918px;}
.ws56{word-spacing:-8.099919px;}
.wsf9{word-spacing:-8.039920px;}
.ws14f{word-spacing:-7.990200px;}
.ws116{word-spacing:-7.983614px;}
.wsfa{word-spacing:-7.979920px;}
.wsfb{word-spacing:-7.919921px;}
.ws14a{word-spacing:-7.859921px;}
.wse3{word-spacing:-7.799922px;}
.ws14b{word-spacing:-7.798571px;}
.wsf3{word-spacing:-7.739923px;}
.wsa7{word-spacing:-7.679923px;}
.ws80{word-spacing:-7.619924px;}
.ws1eb{word-spacing:-7.559924px;}
.ws1ea{word-spacing:-7.540867px;}
.ws1e8{word-spacing:-7.540667px;}
.ws101{word-spacing:-7.502208px;}
.ws74{word-spacing:-7.499925px;}
.wsae{word-spacing:-7.439926px;}
.ws165{word-spacing:-7.420867px;}
.wsaf{word-spacing:-7.379926px;}
.ws163{word-spacing:-7.360617px;}
.ws4b{word-spacing:-7.319927px;}
.ws9b{word-spacing:-7.259927px;}
.ws2d{word-spacing:-7.199928px;}
.ws2e{word-spacing:-7.139929px;}
.wsc5{word-spacing:-7.079929px;}
.ws119{word-spacing:-7.019930px;}
.ws18e{word-spacing:-6.994268px;}
.ws1a2{word-spacing:-6.959930px;}
.wscc{word-spacing:-6.899931px;}
.wsbd{word-spacing:-6.839932px;}
.ws106{word-spacing:-6.790867px;}
.wsfd{word-spacing:-6.779932px;}
.ws8c{word-spacing:-6.719933px;}
.wse1{word-spacing:-6.660840px;}
.ws10f{word-spacing:-6.659933px;}
.wsa0{word-spacing:-6.599934px;}
.wsf4{word-spacing:-6.479935px;}
.ws18c{word-spacing:-6.419936px;}
.ws44{word-spacing:-6.359936px;}
.wsda{word-spacing:-6.331212px;}
.ws82{word-spacing:-6.299937px;}
.ws66{word-spacing:-6.179938px;}
.ws21{word-spacing:-6.119939px;}
.wsdd{word-spacing:-6.059939px;}
.wsff{word-spacing:-6.040101px;}
.ws89{word-spacing:-5.999940px;}
.ws45{word-spacing:-5.939941px;}
.ws2a{word-spacing:-5.879941px;}
.ws76{word-spacing:-5.819942px;}
.ws75{word-spacing:-5.759942px;}
.ws1c4{word-spacing:-5.730528px;}
.ws1b6{word-spacing:-5.728056px;}
.ws1dc{word-spacing:-5.727792px;}
.ws1b5{word-spacing:-5.724528px;}
.ws1b7{word-spacing:-5.723424px;}
.ws152{word-spacing:-5.699943px;}
.ws9c{word-spacing:-5.639944px;}
.ws7b{word-spacing:-5.579944px;}
.ws42{word-spacing:-5.519945px;}
.ws33{word-spacing:-5.459945px;}
.ws4e{word-spacing:-5.399946px;}
.ws15e{word-spacing:-5.339947px;}
.wsa9{word-spacing:-5.279947px;}
.ws28{word-spacing:-5.159948px;}
.ws30{word-spacing:-5.099949px;}
.ws144{word-spacing:-5.046000px;}
.ws126{word-spacing:-5.039950px;}
.ws10e{word-spacing:-5.008481px;}
.ws124{word-spacing:-4.996101px;}
.wsb4{word-spacing:-4.979950px;}
.ws29{word-spacing:-4.859951px;}
.ws48{word-spacing:-4.799952px;}
.ws52{word-spacing:-4.739953px;}
.ws9a{word-spacing:-4.679953px;}
.ws127{word-spacing:-4.624166px;}
.ws1e{word-spacing:-4.619954px;}
.wsc9{word-spacing:-4.559954px;}
.ws178{word-spacing:-4.499955px;}
.ws20{word-spacing:-4.439956px;}
.ws1ed{word-spacing:-4.379956px;}
.ws91{word-spacing:-4.319957px;}
.ws19b{word-spacing:-4.259957px;}
.ws10c{word-spacing:-4.199958px;}
.ws104{word-spacing:-4.139959px;}
.ws1bc{word-spacing:-4.139424px;}
.ws1ba{word-spacing:-4.138056px;}
.ws1cc{word-spacing:-4.090167px;}
.ws19c{word-spacing:-4.079959px;}
.ws162{word-spacing:-4.019960px;}
.ws16a{word-spacing:-3.959960px;}
.ws13f{word-spacing:-3.899961px;}
.ws1d1{word-spacing:-3.839962px;}
.ws17d{word-spacing:-3.736567px;}
.wsf2{word-spacing:-3.719963px;}
.ws1cf{word-spacing:-3.659963px;}
.ws25{word-spacing:-3.599964px;}
.ws6b{word-spacing:-3.479965px;}
.ws115{word-spacing:-3.419966px;}
.ws151{word-spacing:-3.359966px;}
.ws150{word-spacing:-3.349896px;}
.ws1c9{word-spacing:-3.336528px;}
.ws1ca{word-spacing:-3.331740px;}
.ws1d2{word-spacing:-3.299967px;}
.wsb5{word-spacing:-3.239968px;}
.ws6d{word-spacing:-3.179968px;}
.wsa6{word-spacing:-3.059969px;}
.ws1a6{word-spacing:-2.999970px;}
.ws105{word-spacing:-2.960208px;}
.ws1de{word-spacing:-2.939971px;}
.ws160{word-spacing:-2.879971px;}
.wsc2{word-spacing:-2.819972px;}
.ws47{word-spacing:-2.759972px;}
.ws84{word-spacing:-2.699973px;}
.ws111{word-spacing:-2.639974px;}
.ws199{word-spacing:-2.632167px;}
.ws110{word-spacing:-2.579974px;}
.ws146{word-spacing:-2.526000px;}
.ws11a{word-spacing:-2.459975px;}
.ws1d8{word-spacing:-2.399976px;}
.ws1c0{word-spacing:-2.399160px;}
.ws15f{word-spacing:-2.397264px;}
.ws18d{word-spacing:-2.395896px;}
.ws1b4{word-spacing:-2.394528px;}
.ws182{word-spacing:-2.394084px;}
.ws6a{word-spacing:-2.391264px;}
.ws7d{word-spacing:-2.279977px;}
.ws7c{word-spacing:-2.219978px;}
.ws99{word-spacing:-2.159978px;}
.wsd6{word-spacing:-2.110867px;}
.wsd7{word-spacing:-2.099979px;}
.ws65{word-spacing:-2.039980px;}
.ws142{word-spacing:-1.956000px;}
.ws85{word-spacing:-1.919981px;}
.ws15d{word-spacing:-1.914000px;}
.ws188{word-spacing:-1.876320px;}
.ws8a{word-spacing:-1.859981px;}
.ws1f4{word-spacing:-1.799982px;}
.wsa4{word-spacing:-1.679983px;}
.ws1f1{word-spacing:-1.499985px;}
.wsed{word-spacing:-1.379986px;}
.ws22{word-spacing:-1.319987px;}
.ws7e{word-spacing:-1.199988px;}
.ws1d4{word-spacing:-1.145134px;}
.ws1d3{word-spacing:-1.144167px;}
.ws1d5{word-spacing:-1.139989px;}
.ws18{word-spacing:-1.103986px;}
.ws181{word-spacing:-0.899991px;}
.ws107{word-spacing:-0.839992px;}
.ws97{word-spacing:-0.779992px;}
.ws190{word-spacing:-0.729264px;}
.ws68{word-spacing:-0.727896px;}
.ws169{word-spacing:-0.726000px;}
.ws1f{word-spacing:-0.659993px;}
.ws27{word-spacing:-0.599994px;}
.ws1cb{word-spacing:-0.547740px;}
.ws7a{word-spacing:-0.539995px;}
.ws62{word-spacing:-0.485316px;}
.wsf0{word-spacing:-0.419996px;}
.ws13b{word-spacing:-0.361169px;}
.ws1a3{word-spacing:-0.359996px;}
.ws13d{word-spacing:-0.356906px;}
.ws175{word-spacing:-0.356088px;}
.ws173{word-spacing:-0.355169px;}
.ws13a{word-spacing:-0.354966px;}
.ws131{word-spacing:-0.354647px;}
.ws15b{word-spacing:-0.354600px;}
.ws134{word-spacing:-0.353984px;}
.ws13e{word-spacing:-0.353369px;}
.ws132{word-spacing:-0.352753px;}
.ws12d{word-spacing:-0.352044px;}
.ws98{word-spacing:-0.299997px;}
.ws5f{word-spacing:-0.259896px;}
.ws6c{word-spacing:-0.119999px;}
.ws1d{word-spacing:-0.059999px;}
.wse7{word-spacing:-0.053999px;}
.ws15{word-spacing:-0.041999px;}
.ws133{word-spacing:-0.035999px;}
.ws0{word-spacing:0.000000px;}
.ws21a{word-spacing:0.025266px;}
.ws1e0{word-spacing:0.059999px;}
.ws1f0{word-spacing:0.119999px;}
.wsc8{word-spacing:0.179998px;}
.ws18b{word-spacing:0.239998px;}
.ws1a0{word-spacing:0.359996px;}
.ws108{word-spacing:0.419996px;}
.wsd2{word-spacing:0.539995px;}
.wsd4{word-spacing:0.599994px;}
.wsa2{word-spacing:0.659993px;}
.ws140{word-spacing:0.719993px;}
.ws72{word-spacing:0.839992px;}
.ws73{word-spacing:0.899991px;}
.ws41{word-spacing:1.019990px;}
.ws17c{word-spacing:1.063368px;}
.ws95{word-spacing:1.079989px;}
.ws1c7{word-spacing:1.169472px;}
.ws9e{word-spacing:1.199988px;}
.wsc6{word-spacing:1.259987px;}
.wsb6{word-spacing:1.319987px;}
.ws26{word-spacing:1.379986px;}
.ws1f6{word-spacing:1.439986px;}
.ws158{word-spacing:1.483368px;}
.ws186{word-spacing:1.495680px;}
.ws1d7{word-spacing:1.679983px;}
.ws12b{word-spacing:1.767756px;}
.ws31{word-spacing:1.859981px;}
.ws1b9{word-spacing:2.159472px;}
.ws141{word-spacing:2.279977px;}
.ws157{word-spacing:2.339977px;}
.ws1f5{word-spacing:2.639974px;}
.wscb{word-spacing:2.759972px;}
.ws10b{word-spacing:2.879971px;}
.ws10a{word-spacing:2.909663px;}
.ws1cd{word-spacing:3.179968px;}
.ws1e9{word-spacing:3.367368px;}
.ws1d6{word-spacing:3.599964px;}
.ws156{word-spacing:3.642000px;}
.wsb0{word-spacing:3.779962px;}
.ws17b{word-spacing:3.817680px;}
.ws18f{word-spacing:3.922104px;}
.ws1d9{word-spacing:3.959960px;}
.ws19d{word-spacing:4.139959px;}
.ws35{word-spacing:4.319957px;}
.ws154{word-spacing:4.438104px;}
.ws153{word-spacing:4.441368px;}
.ws19e{word-spacing:4.559954px;}
.ws1ee{word-spacing:4.619954px;}
.wsea{word-spacing:5.037413px;}
.ws184{word-spacing:5.155865px;}
.ws17a{word-spacing:5.279947px;}
.ws179{word-spacing:5.339947px;}
.ws40{word-spacing:5.459945px;}
.wsad{word-spacing:5.879941px;}
.ws164{word-spacing:5.886840px;}
.ws193{word-spacing:6.179938px;}
.wsb1{word-spacing:6.299937px;}
.wsf1{word-spacing:6.599934px;}
.ws129{word-spacing:6.719933px;}
.wsb7{word-spacing:6.779932px;}
.wsac{word-spacing:7.079929px;}
.wse9{word-spacing:7.236062px;}
.ws1ef{word-spacing:7.447368px;}
.wsdc{word-spacing:7.461948px;}
.wsab{word-spacing:7.499925px;}
.ws11b{word-spacing:7.619924px;}
.ws130{word-spacing:8.101909px;}
.ws161{word-spacing:8.107368px;}
.ws3f{word-spacing:8.759912px;}
.wsd5{word-spacing:8.806260px;}
.wseb{word-spacing:9.142028px;}
.ws3e{word-spacing:9.659903px;}
.ws118{word-spacing:9.822684px;}
.wsfe{word-spacing:9.899901px;}
.ws19f{word-spacing:10.199898px;}
.ws96{word-spacing:12.119879px;}
.wsdb{word-spacing:12.348000px;}
.ws123{word-spacing:13.259867px;}
.ws1f3{word-spacing:13.619864px;}
.ws149{word-spacing:16.872401px;}
.ws135{word-spacing:20.736062px;}
.ws125{word-spacing:21.558401px;}
.ws11c{word-spacing:24.024000px;}
.ws136{word-spacing:24.917400px;}
.ws137{word-spacing:26.885353px;}
.ws138{word-spacing:29.010016px;}
.ws16c{word-spacing:57.347363px;}
.ws1af{word-spacing:77.505818px;}
.ws1b2{word-spacing:77.510034px;}
.ws1ac{word-spacing:102.846518px;}
.ws1ad{word-spacing:104.898787px;}
.ws1ab{word-spacing:109.365082px;}
.ws1b0{word-spacing:110.703818px;}
.ws176{word-spacing:115.828713px;}
.ws1ae{word-spacing:130.239487px;}
.ws1a8{word-spacing:133.532525px;}
.ws1aa{word-spacing:138.096787px;}
.ws16d{word-spacing:151.986466px;}
.ws1b1{word-spacing:152.702525px;}
.ws171{word-spacing:169.837316px;}
.ws174{word-spacing:183.337166px;}
.ws16f{word-spacing:196.837016px;}
.ws12e{word-spacing:211.632566px;}
.ws1c5{word-spacing:265.931472px;}
.ws13c{word-spacing:272.191916px;}
.ws12f{word-spacing:326.191316px;}
.ws139{word-spacing:339.691166px;}
.ws172{word-spacing:472.017094px;}
.ws16e{word-spacing:488.781756px;}
.ws170{word-spacing:491.407247px;}
._47{margin-left:-11.399886px;}
._14{margin-left:-9.395896px;}
._6{margin-left:-7.101755px;}
._4{margin-left:-5.081954px;}
._43{margin-left:-3.967968px;}
._3{margin-left:-2.939932px;}
._0{margin-left:-1.848000px;}
._5{width:1.307912px;}
._10{width:2.993825px;}
._12{width:5.350104px;}
._45{width:6.667733px;}
._44{width:8.264799px;}
._7{width:9.996931px;}
._13{width:12.463938px;}
._d{width:13.979821px;}
._1{width:15.539778px;}
._31{width:17.639824px;}
._f{width:19.499805px;}
._11{width:21.461751px;}
._30{width:23.327746px;}
._15{width:26.945701px;}
._46{width:28.333810px;}
._16{width:29.600119px;}
._c{width:30.635731px;}
._e{width:34.367675px;}
._8{width:42.587392px;}
._42{width:44.421836px;}
._a{width:66.023057px;}
._3b{width:81.377096px;}
._40{width:104.440850px;}
._3d{width:112.804747px;}
._41{width:166.819837px;}
._3c{width:187.340437px;}
._18{width:190.070849px;}
._27{width:198.031848px;}
._3f{width:214.333650px;}
._33{width:234.312600px;}
._36{width:241.333350px;}
._39{width:268.333050px;}
._3e{width:273.091666px;}
._37{width:281.764114px;}
._34{width:295.332750px;}
._32{width:308.827847px;}
._26{width:316.818627px;}
._1d{width:323.167350px;}
._1a{width:350.167050px;}
._28{width:363.666900px;}
._25{width:377.166750px;}
._35{width:400.074766px;}
._38{width:407.449366px;}
._3a{width:459.378866px;}
._23{width:472.751145px;}
._2b{width:528.648999px;}
._9{width:542.923704px;}
._2f{width:675.128829px;}
._22{width:748.928006px;}
._2c{width:781.672527px;}
._1b{width:788.635527px;}
._24{width:796.291395px;}
._20{width:886.428547px;}
._21{width:906.396199px;}
._2a{width:908.688020px;}
._1e{width:910.254397px;}
._1c{width:937.878032px;}
._2e{width:1023.970766px;}
._19{width:1049.242648px;}
._2d{width:1138.018219px;}
._1f{width:1156.519813px;}
._29{width:1255.430916px;}
._17{width:1345.442432px;}
._2{width:1550.549834px;}
._b{width:1989.279866px;}
.fc5{color:rgb(167,208,57);}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(0,110,178);}
.fc1{color:rgb(255,0,0);}
.fc3{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:29.999400px;}
.fs10{font-size:30.111600px;}
.fse{font-size:35.999400px;}
.fsa{font-size:37.799400px;}
.fs11{font-size:37.940400px;}
.fs6{font-size:41.999400px;}
.fs5{font-size:42.000000px;}
.fsd{font-size:42.156000px;}
.fs9{font-size:47.999400px;}
.fs2{font-size:48.000000px;}
.fs3{font-size:49.072383px;}
.fsb{font-size:53.999400px;}
.fs0{font-size:54.000000px;}
.fsc{font-size:59.999400px;}
.fs8{font-size:65.999400px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.fs7{font-size:143.998200px;}
.y0{bottom:0.000000px;}
.y19{bottom:2.851350px;}
.y17{bottom:64.920000px;}
.ya9{bottom:70.414500px;}
.y45{bottom:71.610000px;}
.y44{bottom:102.991500px;}
.y290{bottom:112.107000px;}
.y287{bottom:112.326000px;}
.y43{bottom:117.241500px;}
.y348{bottom:117.991500px;}
.y2bc{bottom:120.991500px;}
.y30c{bottom:128.994000px;}
.y316{bottom:129.111000px;}
.y28f{bottom:130.107000px;}
.y286{bottom:130.326000px;}
.y42{bottom:131.491500px;}
.y347{bottom:132.991500px;}
.y18a{bottom:138.856500px;}
.y2bb{bottom:138.991500px;}
.yde{bottom:139.156500px;}
.ye6{bottom:139.212000px;}
.y14c{bottom:140.500500px;}
.y122{bottom:140.712000px;}
.ya8{bottom:145.479000px;}
.y79{bottom:145.485000px;}
.y41{bottom:145.741500px;}
.y315{bottom:147.111000px;}
.y346{bottom:147.991500px;}
.y28e{bottom:148.107000px;}
.y285{bottom:148.326000px;}
.y21c{bottom:156.790500px;}
.y189{bottom:156.856500px;}
.y2ba{bottom:156.991500px;}
.ydd{bottom:157.156500px;}
.ye5{bottom:157.212000px;}
.y14b{bottom:158.500500px;}
.y121{bottom:158.712000px;}
.y345{bottom:162.991500px;}
.ya7{bottom:163.479000px;}
.y78{bottom:163.485000px;}
.y314{bottom:165.111000px;}
.y28d{bottom:166.107000px;}
.y284{bottom:166.326000px;}
.y383{bottom:169.213500px;}
.y30b{bottom:172.882500px;}
.y21b{bottom:174.790500px;}
.y188{bottom:174.856500px;}
.y2b9{bottom:174.991500px;}
.ydc{bottom:175.156500px;}
.ye4{bottom:175.212000px;}
.y14a{bottom:176.500500px;}
.y120{bottom:176.712000px;}
.y344{bottom:177.991500px;}
.ya6{bottom:181.479000px;}
.y77{bottom:181.485000px;}
.y313{bottom:183.111000px;}
.y28c{bottom:184.107000px;}
.y382{bottom:184.213500px;}
.y283{bottom:184.326000px;}
.y1e3{bottom:185.332500px;}
.y1f5{bottom:185.451000px;}
.y30a{bottom:189.537000px;}
.y21a{bottom:192.790500px;}
.y187{bottom:192.856500px;}
.y2b8{bottom:192.991500px;}
.ydb{bottom:193.156500px;}
.ye3{bottom:193.212000px;}
.y149{bottom:194.500500px;}
.y11f{bottom:194.712000px;}
.y381{bottom:199.213500px;}
.ya5{bottom:199.479000px;}
.y76{bottom:199.485000px;}
.y312{bottom:201.111000px;}
.y28b{bottom:202.107000px;}
.y282{bottom:202.326000px;}
.y1e2{bottom:203.332500px;}
.y1f4{bottom:203.451000px;}
.y309{bottom:206.341500px;}
.y40{bottom:207.874500px;}
.y343{bottom:207.991500px;}
.y219{bottom:210.790500px;}
.y186{bottom:210.856500px;}
.y2b7{bottom:210.991500px;}
.ye2{bottom:211.212000px;}
.y148{bottom:212.500500px;}
.y11e{bottom:212.712000px;}
.y380{bottom:214.213500px;}
.y1f3{bottom:217.264500px;}
.y3f{bottom:217.342500px;}
.ya4{bottom:217.479000px;}
.y75{bottom:217.485000px;}
.y311{bottom:219.111000px;}
.y281{bottom:220.326000px;}
.y1e1{bottom:221.332500px;}
.y1f2{bottom:221.451000px;}
.y342{bottom:222.991500px;}
.y308{bottom:223.594500px;}
.yda{bottom:227.656500px;}
.y218{bottom:228.790500px;}
.y185{bottom:228.856500px;}
.y2b6{bottom:228.991500px;}
.ye1{bottom:229.212000px;}
.y37f{bottom:229.213500px;}
.y147{bottom:230.500500px;}
.y11d{bottom:230.712000px;}
.ya3{bottom:235.479000px;}
.y74{bottom:235.485000px;}
.y28a{bottom:236.607000px;}
.y310{bottom:237.111000px;}
.y341{bottom:237.991500px;}
.y280{bottom:238.326000px;}
.y1e0{bottom:239.332500px;}
.y1f1{bottom:239.451000px;}
.y307{bottom:240.847500px;}
.y37e{bottom:244.213500px;}
.y217{bottom:246.790500px;}
.y184{bottom:246.856500px;}
.y2b5{bottom:246.991500px;}
.ye0{bottom:247.212000px;}
.y146{bottom:248.500500px;}
.y11c{bottom:248.712000px;}
.y340{bottom:252.991500px;}
.ya2{bottom:253.479000px;}
.y73{bottom:253.485000px;}
.y30f{bottom:255.111000px;}
.y27f{bottom:256.326000px;}
.y1df{bottom:257.332500px;}
.y1f0{bottom:257.451000px;}
.y306{bottom:258.100500px;}
.y37d{bottom:259.213500px;}
.y237{bottom:264.790500px;}
.y183{bottom:264.856500px;}
.y2b4{bottom:264.991500px;}
.ydf{bottom:265.212000px;}
.y145{bottom:266.500500px;}
.y11b{bottom:266.712000px;}
.y33f{bottom:267.991500px;}
.y1ef{bottom:271.411500px;}
.ya1{bottom:271.479000px;}
.y72{bottom:271.485000px;}
.y30e{bottom:273.111000px;}
.y37c{bottom:274.213500px;}
.y27e{bottom:274.326000px;}
.y216{bottom:275.290500px;}
.y1de{bottom:275.332500px;}
.y305{bottom:275.353500px;}
.y1ee{bottom:275.451000px;}
.y1a8{bottom:281.448000px;}
.y236{bottom:282.790500px;}
.y182{bottom:282.856500px;}
.y2b3{bottom:282.991500px;}
.yd9{bottom:283.212000px;}
.y144{bottom:284.500500px;}
.y11a{bottom:284.712000px;}
.y289{bottom:284.826000px;}
.y37b{bottom:289.213500px;}
.ya0{bottom:289.479000px;}
.y71{bottom:289.485000px;}
.y30d{bottom:291.111000px;}
.y1a7{bottom:291.736500px;}
.y3e{bottom:291.790500px;}
.y27d{bottom:292.326000px;}
.y304{bottom:292.606500px;}
.y1dd{bottom:293.332500px;}
.y1ed{bottom:293.451000px;}
.y33e{bottom:297.991500px;}
.y117{bottom:298.452000px;}
.y118{bottom:298.527000px;}
.y119{bottom:298.674000px;}
.y116{bottom:298.779000px;}
.y235{bottom:300.790500px;}
.y181{bottom:300.856500px;}
.y2b2{bottom:300.991500px;}
.yd8{bottom:301.212000px;}
.y143{bottom:302.500500px;}
.y115{bottom:302.712000px;}
.y288{bottom:302.826000px;}
.y9f{bottom:303.546000px;}
.y37a{bottom:304.213500px;}
.y9e{bottom:307.479000px;}
.y70{bottom:307.485000px;}
.y303{bottom:309.111000px;}
.y3d{bottom:309.790500px;}
.y1dc{bottom:311.332500px;}
.y1ec{bottom:311.451000px;}
.y33d{bottom:312.991500px;}
.y114{bottom:316.527000px;}
.y234{bottom:318.790500px;}
.y180{bottom:318.856500px;}
.y2b1{bottom:318.991500px;}
.yd7{bottom:319.212000px;}
.y379{bottom:319.213500px;}
.y215{bottom:320.295000px;}
.y142{bottom:320.500500px;}
.y113{bottom:320.712000px;}
.y27c{bottom:320.826000px;}
.y1eb{bottom:325.411500px;}
.y9d{bottom:325.479000px;}
.y6f{bottom:325.485000px;}
.y302{bottom:327.111000px;}
.y3c{bottom:327.790500px;}
.y33c{bottom:327.991500px;}
.y1ea{bottom:329.451000px;}
.y378{bottom:334.213500px;}
.y1a6{bottom:335.979000px;}
.y233{bottom:336.790500px;}
.y17f{bottom:336.856500px;}
.y2b0{bottom:336.991500px;}
.yd6{bottom:337.212000px;}
.y214{bottom:338.295000px;}
.y141{bottom:338.500500px;}
.y112{bottom:338.712000px;}
.y33b{bottom:342.991500px;}
.y9c{bottom:343.479000px;}
.y6e{bottom:343.485000px;}
.y301{bottom:345.111000px;}
.y3b{bottom:345.790500px;}
.y275{bottom:347.356500px;}
.y1e9{bottom:347.451000px;}
.y1db{bottom:348.804000px;}
.y377{bottom:349.213500px;}
.y1a5{bottom:353.979000px;}
.y232{bottom:354.790500px;}
.y17e{bottom:354.856500px;}
.y2af{bottom:354.991500px;}
.yd5{bottom:355.212000px;}
.y213{bottom:356.295000px;}
.y1d8{bottom:356.389500px;}
.y140{bottom:356.500500px;}
.y111{bottom:356.712000px;}
.y33a{bottom:357.991500px;}
.y9b{bottom:361.479000px;}
.y6d{bottom:361.485000px;}
.y300{bottom:363.111000px;}
.y3a{bottom:363.790500px;}
.y376{bottom:364.213500px;}
.y1e8{bottom:365.451000px;}
.y1d7{bottom:366.678000px;}
.y2de{bottom:367.813500px;}
.y27b{bottom:368.017500px;}
.y1a4{bottom:371.979000px;}
.y17d{bottom:372.856500px;}
.y2ae{bottom:372.991500px;}
.yd4{bottom:373.212000px;}
.y212{bottom:374.295000px;}
.y13f{bottom:374.500500px;}
.y110{bottom:374.712000px;}
.y2dd{bottom:378.102000px;}
.y375{bottom:379.213500px;}
.y1e7{bottom:379.411500px;}
.y9a{bottom:379.479000px;}
.y6c{bottom:379.485000px;}
.y1da{bottom:380.928000px;}
.y2ff{bottom:381.111000px;}
.y39{bottom:381.790500px;}
.y27a{bottom:383.017500px;}
.y1e6{bottom:383.451000px;}
.y1d9{bottom:385.428000px;}
.y339{bottom:387.991500px;}
.y274{bottom:388.644000px;}
.y24f{bottom:389.356500px;}
.y1a3{bottom:389.979000px;}
.y17c{bottom:390.856500px;}
.y2ad{bottom:390.991500px;}
.yd3{bottom:391.212000px;}
.y211{bottom:392.295000px;}
.y13e{bottom:392.500500px;}
.y10f{bottom:392.712000px;}
.y374{bottom:394.213500px;}
.y99{bottom:397.479000px;}
.y6b{bottom:397.485000px;}
.y2fe{bottom:399.111000px;}
.y38{bottom:399.790500px;}
.y1e5{bottom:401.451000px;}
.y338{bottom:402.991500px;}
.y273{bottom:406.644000px;}
.y1a2{bottom:407.979000px;}
.y17b{bottom:408.856500px;}
.y2ac{bottom:408.991500px;}
.yd2{bottom:409.212000px;}
.y373{bottom:409.213500px;}
.y210{bottom:410.295000px;}
.y13d{bottom:410.500500px;}
.y10e{bottom:410.712000px;}
.y98{bottom:415.479000px;}
.y6a{bottom:415.485000px;}
.y2fd{bottom:417.111000px;}
.y37{bottom:417.790500px;}
.y1d6{bottom:419.451000px;}
.y2dc{bottom:420.157500px;}
.y231{bottom:420.757500px;}
.y372{bottom:424.213500px;}
.y272{bottom:424.644000px;}
.y1a1{bottom:425.979000px;}
.y17a{bottom:426.856500px;}
.y2ab{bottom:426.991500px;}
.yd1{bottom:427.212000px;}
.y20f{bottom:428.295000px;}
.y97{bottom:428.305500px;}
.y13c{bottom:428.500500px;}
.y10d{bottom:428.712000px;}
.y96{bottom:433.479000px;}
.y69{bottom:433.485000px;}
.y337{bottom:434.491500px;}
.y2fc{bottom:435.111000px;}
.y36{bottom:435.790500px;}
.y230{bottom:437.257500px;}
.y1d5{bottom:437.451000px;}
.y2db{bottom:438.157500px;}
.y371{bottom:439.213500px;}
.y24e{bottom:440.760000px;}
.y1a0{bottom:443.979000px;}
.y179{bottom:444.856500px;}
.y2aa{bottom:444.991500px;}
.yd0{bottom:445.212000px;}
.y20e{bottom:446.295000px;}
.y13b{bottom:446.500500px;}
.y10c{bottom:446.712000px;}
.y95{bottom:451.479000px;}
.y68{bottom:451.485000px;}
.y2fb{bottom:453.111000px;}
.y22f{bottom:453.757500px;}
.y35{bottom:453.790500px;}
.y370{bottom:454.213500px;}
.y1d4{bottom:455.451000px;}
.y2da{bottom:456.157500px;}
.y270{bottom:457.348500px;}
.y24d{bottom:458.760000px;}
.y10b{bottom:460.674000px;}
.y2ea{bottom:461.356500px;}
.y19f{bottom:461.979000px;}
.y178{bottom:462.856500px;}
.y2a9{bottom:462.991500px;}
.ycf{bottom:463.212000px;}
.y20d{bottom:464.295000px;}
.y13a{bottom:464.500500px;}
.y10a{bottom:464.712000px;}
.y36f{bottom:469.213500px;}
.y94{bottom:469.479000px;}
.y67{bottom:469.485000px;}
.y22e{bottom:470.257500px;}
.y2fa{bottom:471.111000px;}
.y34{bottom:471.790500px;}
.y1d3{bottom:473.451000px;}
.y2d9{bottom:474.157500px;}
.y271{bottom:475.008000px;}
.y24c{bottom:476.760000px;}
.y19e{bottom:479.979000px;}
.y177{bottom:480.856500px;}
.y2a8{bottom:480.991500px;}
.y336{bottom:481.065000px;}
.yce{bottom:481.212000px;}
.y20c{bottom:482.295000px;}
.y139{bottom:482.500500px;}
.y109{bottom:482.712000px;}
.y36e{bottom:484.213500px;}
.y22d{bottom:486.757500px;}
.y93{bottom:487.479000px;}
.y66{bottom:487.485000px;}
.y2f9{bottom:489.111000px;}
.y33{bottom:489.790500px;}
.y1d2{bottom:491.451000px;}
.y26f{bottom:493.195500px;}
.y24b{bottom:494.760000px;}
.y19d{bottom:497.979000px;}
.y176{bottom:498.856500px;}
.y2a7{bottom:498.991500px;}
.y335{bottom:499.065000px;}
.ycd{bottom:499.212000px;}
.y36d{bottom:499.213500px;}
.y20b{bottom:500.295000px;}
.y138{bottom:500.500500px;}
.y108{bottom:500.712000px;}
.y92{bottom:505.479000px;}
.y65{bottom:505.485000px;}
.y2d8{bottom:506.583000px;}
.y2f8{bottom:507.111000px;}
.y32{bottom:507.790500px;}
.y1d1{bottom:509.451000px;}
.y26e{bottom:511.195500px;}
.y24a{bottom:512.760000px;}
.y36c{bottom:514.213500px;}
.y22c{bottom:514.507500px;}
.y2e9{bottom:515.625000px;}
.y19c{bottom:515.979000px;}
.y175{bottom:516.856500px;}
.y2d7{bottom:516.873000px;}
.y2a6{bottom:516.991500px;}
.y334{bottom:517.065000px;}
.ycc{bottom:517.212000px;}
.y20a{bottom:518.295000px;}
.y137{bottom:518.500500px;}
.y107{bottom:518.712000px;}
.y91{bottom:523.479000px;}
.y64{bottom:523.485000px;}
.y2f7{bottom:525.111000px;}
.y31{bottom:525.790500px;}
.y1d0{bottom:527.451000px;}
.y26d{bottom:529.195500px;}
.y36b{bottom:529.213500px;}
.y249{bottom:530.760000px;}
.y209{bottom:532.108500px;}
.y2e8{bottom:533.625000px;}
.y19b{bottom:533.979000px;}
.y174{bottom:534.856500px;}
.y2a5{bottom:534.991500px;}
.y333{bottom:535.065000px;}
.ycb{bottom:535.212000px;}
.y208{bottom:536.295000px;}
.y136{bottom:536.500500px;}
.y106{bottom:536.712000px;}
.y1e4{bottom:541.411500px;}
.y90{bottom:541.479000px;}
.y63{bottom:541.485000px;}
.y22b{bottom:542.257500px;}
.y2f6{bottom:543.111000px;}
.y30{bottom:543.790500px;}
.y36a{bottom:544.213500px;}
.y1cf{bottom:545.451000px;}
.y26c{bottom:547.195500px;}
.y248{bottom:548.760000px;}
.y2e7{bottom:551.625000px;}
.y19a{bottom:551.979000px;}
.y173{bottom:552.856500px;}
.y2a4{bottom:552.991500px;}
.y332{bottom:553.065000px;}
.yca{bottom:553.212000px;}
.y207{bottom:554.295000px;}
.y105{bottom:554.712000px;}
.y8f{bottom:558.732000px;}
.y22a{bottom:558.757500px;}
.y369{bottom:559.213500px;}
.y62{bottom:559.485000px;}
.y2d6{bottom:560.098500px;}
.y2f{bottom:561.858000px;}
.y1ce{bottom:563.451000px;}
.y135{bottom:565.000500px;}
.y26b{bottom:565.195500px;}
.y247{bottom:566.760000px;}
.y2e6{bottom:569.625000px;}
.y199{bottom:569.979000px;}
.y172{bottom:570.856500px;}
.y2a3{bottom:570.991500px;}
.y331{bottom:571.065000px;}
.yc9{bottom:571.212000px;}
.y206{bottom:572.295000px;}
.y104{bottom:572.712000px;}
.y368{bottom:574.213500px;}
.y229{bottom:575.257500px;}
.y8e{bottom:576.732000px;}
.y61{bottom:577.485000px;}
.y2d5{bottom:578.098500px;}
.y1cd{bottom:581.451000px;}
.y26a{bottom:583.195500px;}
.y246{bottom:584.760000px;}
.y2e5{bottom:587.625000px;}
.y198{bottom:587.979000px;}
.y228{bottom:588.838500px;}
.y171{bottom:588.856500px;}
.y2a2{bottom:588.991500px;}
.y330{bottom:589.065000px;}
.yc8{bottom:589.212000px;}
.y367{bottom:589.213500px;}
.y205{bottom:590.295000px;}
.y2f5{bottom:590.304000px;}
.y103{bottom:590.712000px;}
.y227{bottom:591.757500px;}
.y8d{bottom:594.732000px;}
.y60{bottom:595.485000px;}
.y2d4{bottom:596.098500px;}
.y1cc{bottom:599.451000px;}
.y269{bottom:601.195500px;}
.y245{bottom:602.760000px;}
.y2e{bottom:603.246000px;}
.y366{bottom:604.213500px;}
.y2f4{bottom:605.304000px;}
.y197{bottom:605.979000px;}
.y170{bottom:606.856500px;}
.y2a1{bottom:606.991500px;}
.yc7{bottom:607.212000px;}
.y226{bottom:608.257500px;}
.y204{bottom:608.295000px;}
.y102{bottom:608.712000px;}
.y8c{bottom:612.732000px;}
.y5f{bottom:613.485000px;}
.y2d3{bottom:614.098500px;}
.y134{bottom:614.145000px;}
.y1cb{bottom:617.451000px;}
.y268{bottom:619.195500px;}
.y365{bottom:619.213500px;}
.y2d{bottom:619.746000px;}
.y244{bottom:620.760000px;}
.y32f{bottom:623.565000px;}
.y196{bottom:623.979000px;}
.y225{bottom:624.757500px;}
.y16f{bottom:624.856500px;}
.y2a0{bottom:624.991500px;}
.yc6{bottom:625.212000px;}
.y203{bottom:626.295000px;}
.y101{bottom:626.712000px;}
.y8b{bottom:629.985000px;}
.y5e{bottom:631.485000px;}
.y2d2{bottom:632.098500px;}
.y133{bottom:632.145000px;}
.y364{bottom:634.213500px;}
.y1ca{bottom:635.451000px;}
.y2c{bottom:636.246000px;}
.y224{bottom:638.205000px;}
.y243{bottom:638.760000px;}
.y279{bottom:640.783500px;}
.y223{bottom:641.257500px;}
.y195{bottom:641.979000px;}
.y16e{bottom:642.856500px;}
.y29f{bottom:642.991500px;}
.yc5{bottom:643.212000px;}
.y2e4{bottom:644.119500px;}
.y202{bottom:644.295000px;}
.y100{bottom:644.712000px;}
.y267{bottom:647.695500px;}
.y8a{bottom:647.985000px;}
.y363{bottom:649.213500px;}
.y5d{bottom:649.485000px;}
.y2d1{bottom:650.098500px;}
.y132{bottom:650.145000px;}
.y1c9{bottom:653.451000px;}
.y278{bottom:655.783500px;}
.y242{bottom:656.760000px;}
.y222{bottom:657.757500px;}
.y201{bottom:658.362000px;}
.y2e3{bottom:659.119500px;}
.y16d{bottom:660.856500px;}
.y29e{bottom:660.991500px;}
.yc4{bottom:661.212000px;}
.y200{bottom:662.295000px;}
.yff{bottom:662.712000px;}
.y362{bottom:664.212000px;}
.y89{bottom:665.985000px;}
.y5c{bottom:667.485000px;}
.y2d0{bottom:668.098500px;}
.y131{bottom:668.145000px;}
.y32e{bottom:670.138500px;}
.y194{bottom:670.479000px;}
.y1c8{bottom:671.451000px;}
.y2b{bottom:672.172500px;}
.y2e2{bottom:674.119500px;}
.y241{bottom:674.760000px;}
.y221{bottom:674.854500px;}
.y319{bottom:674.953500px;}
.y16c{bottom:678.856500px;}
.y29d{bottom:678.991500px;}
.yc3{bottom:679.212000px;}
.y1ff{bottom:680.295000px;}
.yfe{bottom:680.712000px;}
.y88{bottom:683.985000px;}
.y5b{bottom:685.485000px;}
.y2cf{bottom:686.098500px;}
.y130{bottom:686.145000px;}
.y32d{bottom:688.138500px;}
.y266{bottom:688.983000px;}
.y1c7{bottom:689.451000px;}
.y240{bottom:692.760000px;}
.y361{bottom:694.212000px;}
.y1fe{bottom:694.255500px;}
.y16b{bottom:696.856500px;}
.y29c{bottom:696.991500px;}
.yc2{bottom:697.212000px;}
.y1fd{bottom:698.295000px;}
.yfd{bottom:698.712000px;}
.y87{bottom:701.983500px;}
.y220{bottom:703.315500px;}
.y5a{bottom:703.485000px;}
.y2ce{bottom:704.098500px;}
.y12f{bottom:704.145000px;}
.y32c{bottom:706.138500px;}
.y265{bottom:706.983000px;}
.y360{bottom:709.212000px;}
.y2a{bottom:710.487000px;}
.y23f{bottom:710.760000px;}
.y16a{bottom:714.856500px;}
.y29b{bottom:714.991500px;}
.yc1{bottom:715.212000px;}
.y1fc{bottom:716.295000px;}
.yfc{bottom:716.712000px;}
.y86{bottom:719.983500px;}
.y59{bottom:721.485000px;}
.y2cd{bottom:722.098500px;}
.y12e{bottom:722.145000px;}
.y32b{bottom:724.138500px;}
.y35f{bottom:724.212000px;}
.y264{bottom:724.983000px;}
.y29{bottom:726.987000px;}
.y23e{bottom:728.760000px;}
.y169{bottom:728.818500px;}
.y193{bottom:728.952000px;}
.y192{bottom:729.025500px;}
.y21f{bottom:730.873500px;}
.y168{bottom:732.856500px;}
.y29a{bottom:732.991500px;}
.yc0{bottom:733.212000px;}
.y1fb{bottom:734.295000px;}
.yfb{bottom:734.712000px;}
.y85{bottom:737.983500px;}
.y35e{bottom:739.212000px;}
.y58{bottom:739.485000px;}
.y2cc{bottom:740.098500px;}
.y12d{bottom:740.145000px;}
.y32a{bottom:742.138500px;}
.y263{bottom:742.983000px;}
.y1c6{bottom:743.149500px;}
.y28{bottom:743.487000px;}
.y23d{bottom:746.760000px;}
.y167{bottom:750.856500px;}
.y299{bottom:750.991500px;}
.ybf{bottom:751.212000px;}
.y1fa{bottom:752.295000px;}
.yfa{bottom:752.712000px;}
.y35d{bottom:754.212000px;}
.y27{bottom:754.758000px;}
.y84{bottom:755.983500px;}
.y21e{bottom:757.338000px;}
.y57{bottom:757.485000px;}
.y2cb{bottom:758.098500px;}
.y12c{bottom:758.145000px;}
.y1c5{bottom:759.649500px;}
.y329{bottom:760.138500px;}
.y262{bottom:760.983000px;}
.y23c{bottom:764.760000px;}
.y191{bottom:765.025500px;}
.y166{bottom:768.856500px;}
.y298{bottom:768.991500px;}
.ybe{bottom:769.212000px;}
.y1f9{bottom:770.295000px;}
.yf9{bottom:770.712000px;}
.y2f1{bottom:771.040500px;}
.y21d{bottom:772.338000px;}
.y83{bottom:773.983500px;}
.y56{bottom:775.485000px;}
.y2ca{bottom:776.098500px;}
.y1c4{bottom:776.149500px;}
.y26{bottom:776.487000px;}
.y328{bottom:778.138500px;}
.y261{bottom:778.983000px;}
.y23b{bottom:782.760000px;}
.y318{bottom:782.953500px;}
.y190{bottom:783.174000px;}
.y35c{bottom:784.212000px;}
.y2f0{bottom:786.040500px;}
.y165{bottom:786.856500px;}
.y297{bottom:786.991500px;}
.ybd{bottom:787.212000px;}
.y25{bottom:787.758000px;}
.yf8{bottom:788.712000px;}
.y82{bottom:791.983500px;}
.y1c3{bottom:792.649500px;}
.y55{bottom:793.485000px;}
.y2c9{bottom:794.098500px;}
.y327{bottom:796.138500px;}
.y260{bottom:796.983000px;}
.y35b{bottom:799.212000px;}
.y2ef{bottom:801.040500px;}
.y164{bottom:804.856500px;}
.y296{bottom:804.991500px;}
.ybc{bottom:805.212000px;}
.yf7{bottom:806.712000px;}
.y1c2{bottom:809.149500px;}
.y24{bottom:809.487000px;}
.y129{bottom:809.794500px;}
.y12b{bottom:809.899500px;}
.y81{bottom:809.983500px;}
.y12a{bottom:810.022500px;}
.y54{bottom:811.485000px;}
.y2c8{bottom:812.098500px;}
.y128{bottom:812.866500px;}
.y326{bottom:814.138500px;}
.y35a{bottom:814.212000px;}
.y25f{bottom:814.983000px;}
.y2ee{bottom:816.040500px;}
.y1f8{bottom:817.488000px;}
.y1c1{bottom:822.730500px;}
.y163{bottom:822.856500px;}
.ybb{bottom:823.212000px;}
.yf6{bottom:824.712000px;}
.y1c0{bottom:825.649500px;}
.y23{bottom:825.987000px;}
.y80{bottom:827.983500px;}
.y359{bottom:829.212000px;}
.y53{bottom:829.485000px;}
.y127{bottom:829.516500px;}
.y2c7{bottom:830.098500px;}
.y2ed{bottom:831.040500px;}
.y325{bottom:832.138500px;}
.y1f7{bottom:832.488000px;}
.y25e{bottom:832.983000px;}
.y23a{bottom:836.380500px;}
.y317{bottom:839.491500px;}
.y162{bottom:840.856500px;}
.yba{bottom:841.212000px;}
.y126{bottom:841.597500px;}
.y1bf{bottom:842.149500px;}
.yf5{bottom:842.712000px;}
.y358{bottom:844.212000px;}
.y125{bottom:844.516500px;}
.y7f{bottom:845.983500px;}
.y2ec{bottom:846.040500px;}
.y52{bottom:847.485000px;}
.y1f6{bottom:847.488000px;}
.y22{bottom:849.243000px;}
.y324{bottom:850.138500px;}
.y25d{bottom:850.983000px;}
.y239{bottom:851.380500px;}
.y18e{bottom:855.025500px;}
.y18f{bottom:855.174000px;}
.y1be{bottom:858.649500px;}
.y161{bottom:858.856500px;}
.yb9{bottom:859.212000px;}
.yf4{bottom:860.712000px;}
.y2eb{bottom:861.040500px;}
.y124{bottom:861.087000px;}
.y7e{bottom:863.983500px;}
.y2c6{bottom:864.825000px;}
.y51{bottom:865.485000px;}
.y238{bottom:866.380500px;}
.y323{bottom:868.138500px;}
.y21{bottom:868.743000px;}
.y295{bottom:870.208500px;}
.y1bd{bottom:872.230500px;}
.y2f3{bottom:873.018000px;}
.y357{bottom:874.212000px;}
.y16{bottom:874.260000px;}
.y7{bottom:874.350000px;}
.y1bc{bottom:875.149500px;}
.y123{bottom:876.087000px;}
.y160{bottom:876.856500px;}
.yb8{bottom:877.212000px;}
.y2e1{bottom:877.638000px;}
.yf3{bottom:878.712000px;}
.y25c{bottom:879.483000px;}
.y7d{bottom:881.983500px;}
.y50{bottom:883.485000px;}
.y294{bottom:885.208500px;}
.y322{bottom:886.138500px;}
.y15{bottom:886.260000px;}
.y2f2{bottom:888.018000px;}
.y20{bottom:888.243000px;}
.y356{bottom:889.212000px;}
.y1bb{bottom:889.261500px;}
.y277{bottom:892.191000px;}
.y1ba{bottom:892.312500px;}
.y2e0{bottom:892.638000px;}
.y15f{bottom:894.856500px;}
.yb7{bottom:895.212000px;}
.yf2{bottom:896.712000px;}
.y14{bottom:898.260000px;}
.y2c5{bottom:899.551500px;}
.y7c{bottom:899.983500px;}
.y293{bottom:900.208500px;}
.y4f{bottom:901.485000px;}
.y6{bottom:903.450000px;}
.y321{bottom:904.138500px;}
.y355{bottom:904.212000px;}
.y1b9{bottom:906.594000px;}
.y276{bottom:907.191000px;}
.y2df{bottom:907.638000px;}
.y1b8{bottom:909.712500px;}
.y13{bottom:910.260000px;}
.y15e{bottom:912.856500px;}
.yb6{bottom:913.212000px;}
.yf1{bottom:914.712000px;}
.y292{bottom:915.208500px;}
.y2c4{bottom:917.551500px;}
.y7b{bottom:917.983500px;}
.y354{bottom:919.212000px;}
.y4e{bottom:919.485000px;}
.y25b{bottom:920.770500px;}
.y320{bottom:922.138500px;}
.y12{bottom:922.260000px;}
.y1b7{bottom:923.142000px;}
.y1b6{bottom:926.212500px;}
.y291{bottom:930.208500px;}
.y15d{bottom:930.856500px;}
.yb5{bottom:931.212000px;}
.yf0{bottom:932.712000px;}
.y353{bottom:934.212000px;}
.y2c3{bottom:935.551500px;}
.y7a{bottom:935.983500px;}
.y25a{bottom:938.770500px;}
.y31f{bottom:940.138500px;}
.y1b5{bottom:943.375500px;}
.y5{bottom:943.830000px;}
.y18b{bottom:944.952000px;}
.y18d{bottom:945.174000px;}
.y18c{bottom:945.279000px;}
.y11{bottom:945.510000px;}
.y1f{bottom:945.901500px;}
.yb4{bottom:949.212000px;}
.yef{bottom:950.712000px;}
.y2c2{bottom:953.551500px;}
.y4d{bottom:953.983500px;}
.y259{bottom:956.770500px;}
.y10{bottom:957.510000px;}
.y31e{bottom:958.138500px;}
.y1b4{bottom:959.875500px;}
.y352{bottom:964.212000px;}
.yb3{bottom:967.212000px;}
.y15b{bottom:967.248000px;}
.yee{bottom:968.712000px;}
.yf{bottom:969.510000px;}
.y2c1{bottom:971.551500px;}
.y258{bottom:974.770500px;}
.y158{bottom:974.833500px;}
.y31d{bottom:976.138500px;}
.y1b3{bottom:976.972500px;}
.y351{bottom:979.212000px;}
.y15c{bottom:980.997000px;}
.ye{bottom:981.510000px;}
.y4{bottom:982.365000px;}
.y153{bottom:985.123500px;}
.yb2{bottom:985.212000px;}
.yed{bottom:986.712000px;}
.y156{bottom:989.317500px;}
.y1b2{bottom:990.648000px;}
.y1e{bottom:990.901500px;}
.y257{bottom:992.770500px;}
.y1b1{bottom:993.472500px;}
.y31c{bottom:994.138500px;}
.y350{bottom:994.212000px;}
.y157{bottom:995.271000px;}
.y155{bottom:998.317500px;}
.y15a{bottom:999.372000px;}
.yb1{bottom:1003.212000px;}
.y159{bottom:1003.872000px;}
.yec{bottom:1004.712000px;}
.yd{bottom:1004.760000px;}
.y154{bottom:1007.317500px;}
.y34f{bottom:1009.212000px;}
.y1b0{bottom:1010.635500px;}
.y256{bottom:1010.770500px;}
.y3{bottom:1011.165000px;}
.y31b{bottom:1012.138500px;}
.y4c{bottom:1012.303500px;}
.yc{bottom:1016.760000px;}
.yb0{bottom:1021.212000px;}
.yeb{bottom:1022.712000px;}
.y34e{bottom:1024.212000px;}
.y2c0{bottom:1025.941500px;}
.y1af{bottom:1027.732500px;}
.yb{bottom:1028.760000px;}
.y255{bottom:1028.770500px;}
.y1d{bottom:1035.901500px;}
.yaf{bottom:1039.212000px;}
.y2{bottom:1039.965000px;}
.yea{bottom:1040.712000px;}
.ya{bottom:1040.760000px;}
.y4b{bottom:1042.258500px;}
.y2bf{bottom:1043.038500px;}
.y1ae{bottom:1044.232500px;}
.y31a{bottom:1046.638500px;}
.y254{bottom:1046.770500px;}
.y9{bottom:1052.760000px;}
.y34d{bottom:1054.212000px;}
.yae{bottom:1057.212000px;}
.ye9{bottom:1058.712000px;}
.y2be{bottom:1059.538500px;}
.y4a{bottom:1060.258500px;}
.y1ad{bottom:1060.732500px;}
.y152{bottom:1062.864000px;}
.y34c{bottom:1069.212000px;}
.y14f{bottom:1070.449500px;}
.y1ac{bottom:1074.180000px;}
.yad{bottom:1075.212000px;}
.y253{bottom:1076.572500px;}
.y2bd{bottom:1076.635500px;}
.ye8{bottom:1076.712000px;}
.y14e{bottom:1077.030000px;}
.y1ab{bottom:1077.232500px;}
.y8{bottom:1078.260000px;}
.y252{bottom:1080.105000px;}
.y14d{bottom:1080.738000px;}
.y1c{bottom:1080.901500px;}
.y1{bottom:1081.485000px;}
.y34b{bottom:1084.212000px;}
.y250{bottom:1088.472000px;}
.y49{bottom:1090.212000px;}
.yac{bottom:1093.212000px;}
.ye7{bottom:1094.712000px;}
.y151{bottom:1094.988000px;}
.y251{bottom:1098.870000px;}
.y34a{bottom:1099.212000px;}
.y150{bottom:1099.488000px;}
.y1aa{bottom:1104.790500px;}
.y48{bottom:1108.212000px;}
.yab{bottom:1111.212000px;}
.y349{bottom:1114.212000px;}
.y47{bottom:1126.212000px;}
.yaa{bottom:1129.212000px;}
.y1a9{bottom:1131.256500px;}
.y1b{bottom:1144.129500px;}
.y18{bottom:1162.728000px;}
.y1a{bottom:1165.866000px;}
.y46{bottom:1174.168500px;}
.h2b{height:2.399976px;}
.h9{height:13.148430px;}
.h14{height:13.949721px;}
.h13{height:26.171564px;}
.he{height:27.480164px;}
.h2a{height:29.509200px;}
.ha{height:30.156000px;}
.h2c{height:30.647412px;}
.hb{height:32.549535px;}
.h15{height:34.895564px;}
.h3{height:36.000000px;}
.h4{height:36.804287px;}
.h4a{height:37.799580px;}
.h35{height:39.251564px;}
.hf{height:39.257564px;}
.h27{height:39.743558px;}
.h10{height:39.797558px;}
.h41{height:40.109714px;}
.h3c{height:40.115714px;}
.h4b{height:40.253570px;}
.h21{height:40.499550px;}
.h29{height:41.999580px;}
.h11{height:43.619564px;}
.h17{height:43.625564px;}
.h7{height:43.804688px;}
.h16{height:44.219558px;}
.h18{height:44.999550px;}
.h45{height:45.360120px;}
.h49{height:47.138200px;}
.h5{height:50.062500px;}
.h22{height:50.520671px;}
.h3a{height:50.526671px;}
.h37{height:50.555564px;}
.h23{height:50.933564px;}
.h3b{height:51.461564px;}
.h36{height:51.467564px;}
.h38{height:51.539564px;}
.h39{height:51.731564px;}
.h26{height:52.367550px;}
.h47{height:52.415412px;}
.h12{height:52.421412px;}
.h19{height:54.409200px;}
.h1{height:56.320312px;}
.h48{height:56.795412px;}
.h43{height:58.343550px;}
.h44{height:59.123550px;}
.h1b{height:59.351564px;}
.h1c{height:59.771564px;}
.h3f{height:59.777564px;}
.h1d{height:60.359564px;}
.h31{height:60.365564px;}
.h32{height:60.659564px;}
.h2f{height:61.151550px;}
.h3e{height:61.157550px;}
.h40{height:61.745550px;}
.hd{height:61.793564px;}
.h25{height:61.896671px;}
.h24{height:62.808671px;}
.h1a{height:64.313564px;}
.h1e{height:68.153412px;}
.h20{height:69.161412px;}
.h30{height:69.167412px;}
.h1f{height:69.461412px;}
.h2{height:72.000000px;}
.h6{height:75.093750px;}
.h2e{height:77.315412px;}
.h34{height:84.773564px;}
.h33{height:85.589550px;}
.h3d{height:86.153550px;}
.h28{height:99.041564px;}
.h42{height:99.935550px;}
.hc{height:106.126673px;}
.h2d{height:124.775976px;}
.h46{height:128.159976px;}
.h8{height:1262.835000px;}
.h0{height:1263.000000px;}
.w3{width:259.831500px;}
.w0{width:892.500000px;}
.w1{width:892.920000px;}
.w2{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:58.500000px;}
.xa{left:71.731500px;}
.x64{left:72.735000px;}
.x63{left:79.485000px;}
.x48{left:80.896500px;}
.x5e{left:85.018500px;}
.xe{left:89.664000px;}
.xb{left:94.613550px;}
.x16{left:104.205000px;}
.x49{left:108.636000px;}
.x60{left:112.341000px;}
.x62{left:116.226000px;}
.x3e{left:133.587000px;}
.x38{left:142.938000px;}
.xd{left:155.812500px;}
.x24{left:158.908500px;}
.x39{left:165.508500px;}
.x3a{left:169.261500px;}
.x3b{left:172.258500px;}
.x3c{left:173.755500px;}
.x25{left:191.157000px;}
.x1e{left:202.207500px;}
.x27{left:208.783500px;}
.x1f{left:211.246500px;}
.x9{left:213.105000px;}
.x26{left:222.118500px;}
.x20{left:239.932500px;}
.x28{left:246.414000px;}
.x29{left:248.544000px;}
.x21{left:253.396500px;}
.x22{left:255.526500px;}
.x17{left:260.590500px;}
.x2{left:266.400000px;}
.x2a{left:269.748000px;}
.x23{left:276.730500px;}
.x3{left:289.050000px;}
.x2c{left:291.787500px;}
.x18{left:296.965500px;}
.x47{left:311.098500px;}
.x4{left:322.395000px;}
.x2b{left:334.555500px;}
.x40{left:344.110500px;}
.x41{left:346.240500px;}
.x3f{left:352.309500px;}
.x14{left:355.179000px;}
.x19{left:361.288500px;}
.x42{left:367.443000px;}
.x5{left:389.040000px;}
.x5f{left:393.805500px;}
.x15{left:417.831000px;}
.x5d{left:443.893500px;}
.x13{left:446.524500px;}
.xf{left:458.409000px;}
.x65{left:459.414000px;}
.x46{left:462.579000px;}
.x4b{left:466.657500px;}
.x10{left:476.341500px;}
.x4c{left:493.677000px;}
.x61{left:502.905000px;}
.x11{left:506.682000px;}
.x56{left:511.296000px;}
.x43{left:514.098000px;}
.x51{left:520.101000px;}
.x57{left:538.294500px;}
.x53{left:542.106000px;}
.x4d{left:544.077000px;}
.x5a{left:546.315000px;}
.x58{left:547.405500px;}
.x54{left:549.388500px;}
.x3d{left:556.597500px;}
.x2d{left:560.598000px;}
.x36{left:578.470500px;}
.x55{left:581.509500px;}
.x2e{left:591.387000px;}
.x59{left:599.079000px;}
.x4a{left:604.371000px;}
.x6{left:605.490000px;}
.x34{left:620.347500px;}
.x2f{left:624.826500px;}
.x8{left:627.990000px;}
.x4e{left:630.180000px;}
.x7{left:634.410000px;}
.x30{left:647.286000px;}
.x4f{left:650.001000px;}
.x5b{left:654.351000px;}
.x37{left:656.376000px;}
.x1b{left:687.481500px;}
.x1a{left:705.447000px;}
.x32{left:707.830500px;}
.x5c{left:712.447500px;}
.x35{left:713.503500px;}
.x1c{left:717.985500px;}
.x33{left:733.632000px;}
.x52{left:747.846000px;}
.x1d{left:749.749500px;}
.x12{left:754.866000px;}
.xc{left:757.131000px;}
.x44{left:763.027500px;}
.x45{left:788.692500px;}
.x31{left:804.510000px;}
.x50{left:809.665500px;}
@media print{
.v1e{vertical-align:-70.789333pt;}
.v1d{vertical-align:-62.789333pt;}
.v19{vertical-align:-26.810667pt;}
.v6{vertical-align:-25.381333pt;}
.v2{vertical-align:-18.592000pt;}
.v22{vertical-align:-13.333333pt;}
.v5{vertical-align:-11.952000pt;}
.v3{vertical-align:-8.000000pt;}
.v12{vertical-align:-6.501333pt;}
.v9{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v23{vertical-align:1.413333pt;}
.v14{vertical-align:4.048000pt;}
.ve{vertical-align:5.984000pt;}
.v1a{vertical-align:6.885333pt;}
.vb{vertical-align:8.000000pt;}
.va{vertical-align:10.394667pt;}
.v1c{vertical-align:11.861333pt;}
.vc{vertical-align:13.984000pt;}
.vd{vertical-align:14.880000pt;}
.v8{vertical-align:16.800000pt;}
.v17{vertical-align:18.368000pt;}
.v4{vertical-align:19.354667pt;}
.v11{vertical-align:20.389333pt;}
.v7{vertical-align:22.133333pt;}
.v1{vertical-align:23.909333pt;}
.v20{vertical-align:28.080000pt;}
.v13{vertical-align:31.312000pt;}
.vf{vertical-align:33.338667pt;}
.v10{vertical-align:34.501333pt;}
.v15{vertical-align:36.080000pt;}
.v18{vertical-align:41.482667pt;}
.v1b{vertical-align:48.832000pt;}
.v1f{vertical-align:75.200000pt;}
.v16{vertical-align:108.778667pt;}
.v21{vertical-align:111.786667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000133pt;}
.ls2d{letter-spacing:0.000148pt;}
.lsd{letter-spacing:0.000178pt;}
.ls4b{letter-spacing:0.000207pt;}
.ls2{letter-spacing:0.000237pt;}
.lsaa{letter-spacing:0.000265pt;}
.ls5{letter-spacing:0.000267pt;}
.ls29{letter-spacing:0.000276pt;}
.ls35{letter-spacing:0.000297pt;}
.ls47{letter-spacing:0.000305pt;}
.ls1e{letter-spacing:0.000307pt;}
.ls4c{letter-spacing:0.000321pt;}
.ls3{letter-spacing:0.000327pt;}
.lsc7{letter-spacing:0.000356pt;}
.lsa{letter-spacing:0.000385pt;}
.ls12{letter-spacing:0.000415pt;}
.ls62{letter-spacing:0.000444pt;}
.ls45{letter-spacing:0.000468pt;}
.ls3c{letter-spacing:0.000514pt;}
.ls4{letter-spacing:0.000533pt;}
.ls17{letter-spacing:0.000608pt;}
.lsda{letter-spacing:0.001216pt;}
.ls38{letter-spacing:0.001397pt;}
.lsb9{letter-spacing:0.001600pt;}
.ls71{letter-spacing:0.002336pt;}
.ls75{letter-spacing:0.002819pt;}
.ls40{letter-spacing:0.005655pt;}
.ls34{letter-spacing:0.005778pt;}
.lsb8{letter-spacing:0.036085pt;}
.lsc2{letter-spacing:0.197675pt;}
.ls97{letter-spacing:0.384267pt;}
.ls22{letter-spacing:0.426933pt;}
.ls7b{letter-spacing:1.051022pt;}
.ls2f{letter-spacing:1.173689pt;}
.ls11{letter-spacing:1.226874pt;}
.lsc0{letter-spacing:1.226993pt;}
.ls7c{letter-spacing:1.718674pt;}
.ls3a{letter-spacing:1.721380pt;}
.lsa5{letter-spacing:1.724007pt;}
.lsbd{letter-spacing:1.807710pt;}
.ls57{letter-spacing:1.909638pt;}
.ls30{letter-spacing:1.914931pt;}
.ls32{letter-spacing:1.914971pt;}
.lsd3{letter-spacing:2.021570pt;}
.ls5f{letter-spacing:2.653099pt;}
.ls1a{letter-spacing:2.653568pt;}
.ls39{letter-spacing:2.654207pt;}
.ls50{letter-spacing:2.654784pt;}
.ls41{letter-spacing:2.655779pt;}
.ls7{letter-spacing:2.656000pt;}
.ls3b{letter-spacing:2.656506pt;}
.ls13{letter-spacing:2.656608pt;}
.ls7a{letter-spacing:2.657600pt;}
.lsa8{letter-spacing:2.657824pt;}
.ls7f{letter-spacing:2.659541pt;}
.ls42{letter-spacing:2.660117pt;}
.ls9{letter-spacing:2.661112pt;}
.ls1d{letter-spacing:2.816302pt;}
.lsb6{letter-spacing:3.696297pt;}
.ls70{letter-spacing:4.106963pt;}
.ls6f{letter-spacing:4.106993pt;}
.lsdb{letter-spacing:5.310400pt;}
.lse7{letter-spacing:5.925600pt;}
.lsc6{letter-spacing:5.925630pt;}
.ls6b{letter-spacing:5.925659pt;}
.lscb{letter-spacing:6.373726pt;}
.ls73{letter-spacing:7.002815pt;}
.ls9e{letter-spacing:7.008148pt;}
.ls2a{letter-spacing:7.786815pt;}
.ls76{letter-spacing:8.218903pt;}
.ls77{letter-spacing:8.221226pt;}
.ls78{letter-spacing:8.224237pt;}
.ls6a{letter-spacing:8.581333pt;}
.lsc9{letter-spacing:8.885481pt;}
.ls82{letter-spacing:8.885600pt;}
.lsc4{letter-spacing:8.885659pt;}
.ls4a{letter-spacing:8.885748pt;}
.lsc5{letter-spacing:8.890815pt;}
.ls85{letter-spacing:8.890933pt;}
.ls49{letter-spacing:8.891022pt;}
.lse6{letter-spacing:8.891081pt;}
.lsc8{letter-spacing:9.088341pt;}
.lsf{letter-spacing:9.914800pt;}
.lsce{letter-spacing:10.080326pt;}
.ls67{letter-spacing:10.378800pt;}
.ls66{letter-spacing:10.384326pt;}
.ls65{letter-spacing:10.389467pt;}
.ls8d{letter-spacing:11.008133pt;}
.ls92{letter-spacing:11.802993pt;}
.lsbe{letter-spacing:11.845748pt;}
.ls1c{letter-spacing:11.851081pt;}
.lscf{letter-spacing:11.893659pt;}
.ls6{letter-spacing:11.952267pt;}
.ls7d{letter-spacing:11.994993pt;}
.lsf0{letter-spacing:11.997687pt;}
.ls3f{letter-spacing:12.000133pt;}
.lsef{letter-spacing:12.000267pt;}
.ls79{letter-spacing:12.000326pt;}
.ls21{letter-spacing:12.069467pt;}
.ls58{letter-spacing:12.458993pt;}
.lsa9{letter-spacing:12.880133pt;}
.ls5a{letter-spacing:13.017451pt;}
.lse5{letter-spacing:13.029333pt;}
.ls89{letter-spacing:13.205600pt;}
.ls10{letter-spacing:13.333467pt;}
.lsee{letter-spacing:13.333867pt;}
.lscc{letter-spacing:13.386667pt;}
.ls28{letter-spacing:13.531275pt;}
.ls52{letter-spacing:13.605467pt;}
.ls8e{letter-spacing:13.664000pt;}
.lse1{letter-spacing:13.781333pt;}
.ls8a{letter-spacing:13.813659pt;}
.ls4d{letter-spacing:14.089451pt;}
.ls5d{letter-spacing:14.128133pt;}
.ls5c{letter-spacing:14.133112pt;}
.ls68{letter-spacing:14.133333pt;}
.lsdf{letter-spacing:14.201067pt;}
.ls2c{letter-spacing:14.352326pt;}
.lsed{letter-spacing:14.442667pt;}
.ls14{letter-spacing:14.464608pt;}
.ls80{letter-spacing:14.502709pt;}
.lsd0{letter-spacing:14.504435pt;}
.ls15{letter-spacing:14.509568pt;}
.ls59{letter-spacing:14.544326pt;}
.ls3d{letter-spacing:14.652267pt;}
.ls24{letter-spacing:14.656133pt;}
.ls72{letter-spacing:14.657600pt;}
.ls74{letter-spacing:14.659789pt;}
.lse9{letter-spacing:15.178800pt;}
.lse8{letter-spacing:15.184133pt;}
.ls83{letter-spacing:15.264415pt;}
.ls95{letter-spacing:15.301467pt;}
.ls9d{letter-spacing:15.424307pt;}
.ls51{letter-spacing:15.449451pt;}
.ls60{letter-spacing:15.514800pt;}
.ls5e{letter-spacing:15.520133pt;}
.ls26{letter-spacing:15.600267pt;}
.lse4{letter-spacing:15.664000pt;}
.ls8f{letter-spacing:15.760000pt;}
.ls8b{letter-spacing:15.897451pt;}
.lsa6{letter-spacing:15.925635pt;}
.lsc1{letter-spacing:15.987102pt;}
.ls8{letter-spacing:15.989333pt;}
.lsec{letter-spacing:15.989635pt;}
.lsb2{letter-spacing:16.001011pt;}
.ls9b{letter-spacing:16.762993pt;}
.ls53{letter-spacing:16.811022pt;}
.lseb{letter-spacing:16.976133pt;}
.ls9a{letter-spacing:17.082974pt;}
.ls93{letter-spacing:17.221467pt;}
.ls69{letter-spacing:17.264000pt;}
.lse{letter-spacing:17.333467pt;}
.ls9c{letter-spacing:17.445570pt;}
.lsd2{letter-spacing:17.677768pt;}
.ls8c{letter-spacing:17.786963pt;}
.ls96{letter-spacing:17.952000pt;}
.lsd6{letter-spacing:18.032267pt;}
.ls37{letter-spacing:18.037635pt;}
.ls16{letter-spacing:18.224415pt;}
.lsc3{letter-spacing:18.229748pt;}
.lsae{letter-spacing:18.330800pt;}
.ls31{letter-spacing:18.336133pt;}
.ls2e{letter-spacing:18.341467pt;}
.lsb3{letter-spacing:18.837333pt;}
.lsd8{letter-spacing:19.056000pt;}
.ls99{letter-spacing:19.104237pt;}
.lsa7{letter-spacing:19.157635pt;}
.lsaf{letter-spacing:19.205467pt;}
.ls5b{letter-spacing:19.241451pt;}
.lsd9{letter-spacing:19.248415pt;}
.ls88{letter-spacing:19.385451pt;}
.ls56{letter-spacing:19.562971pt;}
.ls63{letter-spacing:19.584133pt;}
.ls19{letter-spacing:19.933568pt;}
.lsd4{letter-spacing:20.042933pt;}
.ls55{letter-spacing:20.303779pt;}
.lsd7{letter-spacing:20.320000pt;}
.lsea{letter-spacing:20.336302pt;}
.ls48{letter-spacing:20.436117pt;}
.ls87{letter-spacing:20.826963pt;}
.ls1b{letter-spacing:20.923275pt;}
.ls4f{letter-spacing:20.959779pt;}
.ls1f{letter-spacing:21.236117pt;}
.lsb4{letter-spacing:21.338933pt;}
.lsd5{letter-spacing:21.392000pt;}
.ls90{letter-spacing:21.456302pt;}
.lsdd{letter-spacing:21.568415pt;}
.lsd1{letter-spacing:21.611081pt;}
.ls20{letter-spacing:22.048133pt;}
.ls6e{letter-spacing:22.190784pt;}
.ls64{letter-spacing:22.231765pt;}
.ls44{letter-spacing:22.683081pt;}
.ls6d{letter-spacing:23.632297pt;}
.ls36{letter-spacing:23.669635pt;}
.lsac{letter-spacing:23.691081pt;}
.lse2{letter-spacing:23.744000pt;}
.lse3{letter-spacing:23.749333pt;}
.ls25{letter-spacing:23.861467pt;}
.lsb{letter-spacing:23.909570pt;}
.ls81{letter-spacing:24.325467pt;}
.ls2b{letter-spacing:24.455765pt;}
.ls23{letter-spacing:24.837467pt;}
.lsb5{letter-spacing:26.240000pt;}
.lsc{letter-spacing:26.568393pt;}
.lsb0{letter-spacing:26.667081pt;}
.lsad{letter-spacing:27.168133pt;}
.lsdc{letter-spacing:27.845333pt;}
.lsde{letter-spacing:29.850667pt;}
.ls43{letter-spacing:31.865451pt;}
.lsab{letter-spacing:33.029748pt;}
.ls3e{letter-spacing:40.124814pt;}
.ls61{letter-spacing:44.288608pt;}
.lse0{letter-spacing:47.242815pt;}
.lsca{letter-spacing:48.496326pt;}
.lsa3{letter-spacing:52.124814pt;}
.ls7e{letter-spacing:52.130147pt;}
.ls18{letter-spacing:53.032845pt;}
.ls27{letter-spacing:54.203275pt;}
.ls54{letter-spacing:58.667275pt;}
.ls94{letter-spacing:61.509941pt;}
.ls33{letter-spacing:62.624608pt;}
.ls91{letter-spacing:62.928608pt;}
.ls98{letter-spacing:63.243275pt;}
.lsbc{letter-spacing:81.210844pt;}
.ls84{letter-spacing:99.200207pt;}
.lsa1{letter-spacing:122.897600pt;}
.lsa0{letter-spacing:153.137600pt;}
.ls86{letter-spacing:160.404117pt;}
.lsbb{letter-spacing:177.573511pt;}
.lsba{letter-spacing:178.197511pt;}
.lsbf{letter-spacing:224.504435pt;}
.ls4e{letter-spacing:250.437333pt;}
.lscd{letter-spacing:254.245726pt;}
.lsb1{letter-spacing:261.296207pt;}
.lsb7{letter-spacing:309.701689pt;}
.ls46{letter-spacing:401.728148pt;}
.ls6c{letter-spacing:435.381541pt;}
.ls9f{letter-spacing:466.787789pt;}
.lsa2{letter-spacing:489.648326pt;}
.lsa4{letter-spacing:491.174709pt;}
.ws7{word-spacing:-63.999200pt;}
.ws67{word-spacing:-32.639674pt;}
.ws12a{word-spacing:-29.375674pt;}
.ws6{word-spacing:-28.543643pt;}
.ws191{word-spacing:-27.599693pt;}
.ws1f2{word-spacing:-26.666400pt;}
.wsf{word-spacing:-23.999733pt;}
.ws11{word-spacing:-23.679763pt;}
.ws5d{word-spacing:-22.932864pt;}
.wse{word-spacing:-21.311763pt;}
.ws1e3{word-spacing:-20.787585pt;}
.ws12c{word-spacing:-20.639578pt;}
.wsc1{word-spacing:-19.519805pt;}
.ws51{word-spacing:-19.039810pt;}
.ws9{word-spacing:-18.943763pt;}
.ws5{word-spacing:-18.666400pt;}
.wsc4{word-spacing:-17.599824pt;}
.ws203{word-spacing:-17.471806pt;}
.ws20e{word-spacing:-17.425865pt;}
.ws205{word-spacing:-17.424630pt;}
.ws1fb{word-spacing:-17.423806pt;}
.ws21c{word-spacing:-17.422353pt;}
.ws1ff{word-spacing:-17.420263pt;}
.ws1fc{word-spacing:-17.380222pt;}
.ws21b{word-spacing:-17.379831pt;}
.ws213{word-spacing:-17.379525pt;}
.ws1fe{word-spacing:-17.375807pt;}
.ws201{word-spacing:-17.375140pt;}
.ws204{word-spacing:-17.373985pt;}
.wsde{word-spacing:-17.066496pt;}
.ws64{word-spacing:-16.637568pt;}
.wse8{word-spacing:-14.973811pt;}
.ws1ce{word-spacing:-14.826518pt;}
.ws1e4{word-spacing:-14.793897pt;}
.ws1db{word-spacing:-14.793037pt;}
.ws13{word-spacing:-14.793007pt;}
.ws1a5{word-spacing:-14.787674pt;}
.ws14{word-spacing:-14.773186pt;}
.ws18a{word-spacing:-14.738905pt;}
.ws1e7{word-spacing:-14.719853pt;}
.ws88{word-spacing:-14.613187pt;}
.ws8f{word-spacing:-14.399856pt;}
.wsef{word-spacing:-14.303841pt;}
.ws71{word-spacing:-14.293190pt;}
.ws11d{word-spacing:-14.255842pt;}
.ws70{word-spacing:-14.239858pt;}
.ws143{word-spacing:-14.186525pt;}
.ws194{word-spacing:-14.133192pt;}
.ws166{word-spacing:-14.079859pt;}
.ws9d{word-spacing:-14.026526pt;}
.wsa3{word-spacing:-13.973194pt;}
.ws1a1{word-spacing:-13.919861pt;}
.ws3a{word-spacing:-13.813195pt;}
.ws3b{word-spacing:-13.759862pt;}
.ws122{word-spacing:-13.653197pt;}
.ws1c2{word-spacing:-13.599864pt;}
.ws1c1{word-spacing:-13.598460pt;}
.ws11e{word-spacing:-13.546531pt;}
.ws46{word-spacing:-13.493198pt;}
.ws5b{word-spacing:-13.386533pt;}
.ws1bb{word-spacing:-13.380326pt;}
.ws5a{word-spacing:-13.333200pt;}
.wsca{word-spacing:-13.279867pt;}
.ws78{word-spacing:-13.226534pt;}
.ws1b3{word-spacing:-13.092297pt;}
.ws8{word-spacing:-13.082548pt;}
.ws1a4{word-spacing:-13.066536pt;}
.wsa{word-spacing:-13.023882pt;}
.wscf{word-spacing:-13.013203pt;}
.ws1a7{word-spacing:-12.959870pt;}
.ws4f{word-spacing:-12.906538pt;}
.wsd0{word-spacing:-12.853205pt;}
.wsba{word-spacing:-12.746539pt;}
.ws1e1{word-spacing:-12.739852pt;}
.wsbc{word-spacing:-12.693206pt;}
.ws1c8{word-spacing:-12.658860pt;}
.ws114{word-spacing:-12.639874pt;}
.ws6e{word-spacing:-12.586541pt;}
.wsbb{word-spacing:-12.533208pt;}
.ws1ec{word-spacing:-12.479875pt;}
.ws43{word-spacing:-12.373210pt;}
.wsee{word-spacing:-12.319877pt;}
.ws121{word-spacing:-12.266544pt;}
.ws117{word-spacing:-12.254091pt;}
.ws63{word-spacing:-12.213211pt;}
.ws180{word-spacing:-12.159878pt;}
.ws1bf{word-spacing:-12.106546pt;}
.ws92{word-spacing:-12.053213pt;}
.ws219{word-spacing:-12.004533pt;}
.ws217{word-spacing:-12.004267pt;}
.ws218{word-spacing:-12.003822pt;}
.ws1be{word-spacing:-11.999880pt;}
.ws1fd{word-spacing:-11.999200pt;}
.ws202{word-spacing:-11.998933pt;}
.ws208{word-spacing:-11.998667pt;}
.ws7f{word-spacing:-11.946547pt;}
.ws145{word-spacing:-11.944668pt;}
.ws2f{word-spacing:-11.893214pt;}
.ws5c{word-spacing:-11.884045pt;}
.ws155{word-spacing:-11.876326pt;}
.wsb9{word-spacing:-11.839882pt;}
.ws1e5{word-spacing:-11.828563pt;}
.ws1da{word-spacing:-11.827645pt;}
.ws87{word-spacing:-11.786549pt;}
.ws1dd{word-spacing:-11.769897pt;}
.ws177{word-spacing:-11.733216pt;}
.ws93{word-spacing:-11.626550pt;}
.ws1d0{word-spacing:-11.573218pt;}
.ws1c3{word-spacing:-11.519885pt;}
.wsc3{word-spacing:-11.466552pt;}
.ws6f{word-spacing:-11.413219pt;}
.ws15c{word-spacing:-11.401363pt;}
.ws187{word-spacing:-11.364060pt;}
.wsf7{word-spacing:-11.359886pt;}
.ws120{word-spacing:-11.306554pt;}
.ws113{word-spacing:-11.253221pt;}
.ws112{word-spacing:-11.224298pt;}
.ws59{word-spacing:-11.199888pt;}
.ws189{word-spacing:-11.146555pt;}
.ws1c{word-spacing:-11.125174pt;}
.ws102{word-spacing:-11.097601pt;}
.wsf6{word-spacing:-11.093222pt;}
.ws58{word-spacing:-11.039890pt;}
.ws4d{word-spacing:-10.986557pt;}
.ws2b{word-spacing:-10.933224pt;}
.wsa8{word-spacing:-10.879891pt;}
.ws1a{word-spacing:-10.879864pt;}
.ws19{word-spacing:-10.837198pt;}
.ws14c{word-spacing:-10.835361pt;}
.ws17f{word-spacing:-10.826558pt;}
.ws14d{word-spacing:-10.773226pt;}
.ws1df{word-spacing:-10.719893pt;}
.ws11f{word-spacing:-10.666560pt;}
.ws3d{word-spacing:-10.613227pt;}
.wsb2{word-spacing:-10.559894pt;}
.ws39{word-spacing:-10.506562pt;}
.ws14e{word-spacing:-10.471491pt;}
.wsec{word-spacing:-10.453229pt;}
.ws1f8{word-spacing:-10.401294pt;}
.ws1f7{word-spacing:-10.400819pt;}
.ws12{word-spacing:-10.399896pt;}
.ws1fa{word-spacing:-10.397544pt;}
.ws168{word-spacing:-10.350222pt;}
.ws1f9{word-spacing:-10.347913pt;}
.ws10{word-spacing:-10.346563pt;}
.ws1bd{word-spacing:-10.345660pt;}
.ws128{word-spacing:-10.345067pt;}
.ws54{word-spacing:-10.293230pt;}
.ws55{word-spacing:-10.239898pt;}
.wsc0{word-spacing:-10.186565pt;}
.ws197{word-spacing:-10.154540pt;}
.ws61{word-spacing:-10.133232pt;}
.ws50{word-spacing:-10.079899pt;}
.ws100{word-spacing:-10.073215pt;}
.ws79{word-spacing:-10.026566pt;}
.ws198{word-spacing:-9.983889pt;}
.ws5e{word-spacing:-9.973234pt;}
.ws60{word-spacing:-9.919901pt;}
.ws195{word-spacing:-9.898543pt;}
.ws8b{word-spacing:-9.866568pt;}
.ws211{word-spacing:-9.839891pt;}
.ws57{word-spacing:-9.813235pt;}
.ws77{word-spacing:-9.759902pt;}
.ws196{word-spacing:-9.743892pt;}
.ws17e{word-spacing:-9.706570pt;}
.ws215{word-spacing:-9.695892pt;}
.wse4{word-spacing:-9.653237pt;}
.ws81{word-spacing:-9.599904pt;}
.wsf5{word-spacing:-9.546571pt;}
.wse5{word-spacing:-9.514548pt;}
.ws36{word-spacing:-9.493238pt;}
.ws1b{word-spacing:-9.471882pt;}
.ws8d{word-spacing:-9.439906pt;}
.wsf8{word-spacing:-9.386573pt;}
.ws207{word-spacing:-9.361669pt;}
.ws20d{word-spacing:-9.360832pt;}
.wsc{word-spacing:-9.359896pt;}
.ws20b{word-spacing:-9.358468pt;}
.ws159{word-spacing:-9.357658pt;}
.wsd9{word-spacing:-9.333240pt;}
.wse0{word-spacing:-9.321778pt;}
.ws216{word-spacing:-9.316030pt;}
.ws200{word-spacing:-9.315655pt;}
.ws214{word-spacing:-9.315616pt;}
.wsd{word-spacing:-9.315497pt;}
.ws210{word-spacing:-9.315052pt;}
.ws212{word-spacing:-9.314917pt;}
.ws20c{word-spacing:-9.314178pt;}
.ws20a{word-spacing:-9.313852pt;}
.ws209{word-spacing:-9.313127pt;}
.wsb{word-spacing:-9.311897pt;}
.ws1a9{word-spacing:-9.311230pt;}
.wse6{word-spacing:-9.311141pt;}
.ws15a{word-spacing:-9.310993pt;}
.ws206{word-spacing:-9.310667pt;}
.ws20f{word-spacing:-9.310371pt;}
.ws3c{word-spacing:-9.279907pt;}
.ws1e2{word-spacing:-9.279407pt;}
.ws1e6{word-spacing:-9.279230pt;}
.ws23{word-spacing:-9.226574pt;}
.wsb8{word-spacing:-9.173242pt;}
.ws4c{word-spacing:-9.119909pt;}
.ws32{word-spacing:-9.066576pt;}
.wsc7{word-spacing:-9.013243pt;}
.wsdf{word-spacing:-8.959910pt;}
.ws37{word-spacing:-8.906578pt;}
.wsa1{word-spacing:-8.853245pt;}
.ws4a{word-spacing:-8.799912pt;}
.ws69{word-spacing:-8.746579pt;}
.ws90{word-spacing:-8.693246pt;}
.ws1c6{word-spacing:-8.654312pt;}
.wsbe{word-spacing:-8.639914pt;}
.ws148{word-spacing:-8.622312pt;}
.wsd8{word-spacing:-8.617009pt;}
.ws192{word-spacing:-8.586581pt;}
.ws19a{word-spacing:-8.533248pt;}
.wsd3{word-spacing:-8.479915pt;}
.ws8e{word-spacing:-8.426582pt;}
.ws2c{word-spacing:-8.373250pt;}
.ws4{word-spacing:-8.325214pt;}
.ws53{word-spacing:-8.319917pt;}
.ws16{word-spacing:-8.319896pt;}
.ws2{word-spacing:-8.300749pt;}
.ws1{word-spacing:-8.287882pt;}
.ws3{word-spacing:-8.287140pt;}
.ws17{word-spacing:-8.277230pt;}
.ws38{word-spacing:-8.266584pt;}
.ws167{word-spacing:-8.254993pt;}
.ws94{word-spacing:-8.213251pt;}
.ws9f{word-spacing:-8.159918pt;}
.wscd{word-spacing:-8.106586pt;}
.ws147{word-spacing:-8.053333pt;}
.wsce{word-spacing:-8.053253pt;}
.wsb3{word-spacing:-7.999920pt;}
.ws24{word-spacing:-7.946587pt;}
.wsd1{word-spacing:-7.893254pt;}
.ws49{word-spacing:-7.839922pt;}
.ws10d{word-spacing:-7.786589pt;}
.ws1b8{word-spacing:-7.779794pt;}
.ws83{word-spacing:-7.733256pt;}
.ws103{word-spacing:-7.692629pt;}
.wsaa{word-spacing:-7.679923pt;}
.wse2{word-spacing:-7.626590pt;}
.ws34{word-spacing:-7.573258pt;}
.ws109{word-spacing:-7.519925pt;}
.ws86{word-spacing:-7.466592pt;}
.wsbf{word-spacing:-7.413259pt;}
.ws16b{word-spacing:-7.359926pt;}
.ws185{word-spacing:-7.307040pt;}
.wsfc{word-spacing:-7.306594pt;}
.ws183{word-spacing:-7.269568pt;}
.wsa5{word-spacing:-7.253261pt;}
.ws56{word-spacing:-7.199928pt;}
.wsf9{word-spacing:-7.146595pt;}
.ws14f{word-spacing:-7.102400pt;}
.ws116{word-spacing:-7.096546pt;}
.wsfa{word-spacing:-7.093262pt;}
.wsfb{word-spacing:-7.039930pt;}
.ws14a{word-spacing:-6.986597pt;}
.wse3{word-spacing:-6.933264pt;}
.ws14b{word-spacing:-6.932063pt;}
.wsf3{word-spacing:-6.879931pt;}
.wsa7{word-spacing:-6.826598pt;}
.ws80{word-spacing:-6.773266pt;}
.ws1eb{word-spacing:-6.719933pt;}
.ws1ea{word-spacing:-6.702993pt;}
.ws1e8{word-spacing:-6.702815pt;}
.ws101{word-spacing:-6.668629pt;}
.ws74{word-spacing:-6.666600pt;}
.wsae{word-spacing:-6.613267pt;}
.ws165{word-spacing:-6.596326pt;}
.wsaf{word-spacing:-6.559934pt;}
.ws163{word-spacing:-6.542771pt;}
.ws4b{word-spacing:-6.506602pt;}
.ws9b{word-spacing:-6.453269pt;}
.ws2d{word-spacing:-6.399936pt;}
.ws2e{word-spacing:-6.346603pt;}
.wsc5{word-spacing:-6.293270pt;}
.ws119{word-spacing:-6.239938pt;}
.ws18e{word-spacing:-6.217127pt;}
.ws1a2{word-spacing:-6.186605pt;}
.wscc{word-spacing:-6.133272pt;}
.wsbd{word-spacing:-6.079939pt;}
.ws106{word-spacing:-6.036326pt;}
.wsfd{word-spacing:-6.026606pt;}
.ws8c{word-spacing:-5.973274pt;}
.wse1{word-spacing:-5.920747pt;}
.ws10f{word-spacing:-5.919941pt;}
.wsa0{word-spacing:-5.866608pt;}
.wsf4{word-spacing:-5.759942pt;}
.ws18c{word-spacing:-5.706610pt;}
.ws44{word-spacing:-5.653277pt;}
.wsda{word-spacing:-5.627744pt;}
.ws82{word-spacing:-5.599944pt;}
.ws66{word-spacing:-5.493278pt;}
.ws21{word-spacing:-5.439946pt;}
.wsdd{word-spacing:-5.386613pt;}
.wsff{word-spacing:-5.368979pt;}
.ws89{word-spacing:-5.333280pt;}
.ws45{word-spacing:-5.279947pt;}
.ws2a{word-spacing:-5.226614pt;}
.ws76{word-spacing:-5.173282pt;}
.ws75{word-spacing:-5.119949pt;}
.ws1c4{word-spacing:-5.093803pt;}
.ws1b6{word-spacing:-5.091605pt;}
.ws1dc{word-spacing:-5.091371pt;}
.ws1b5{word-spacing:-5.088469pt;}
.ws1b7{word-spacing:-5.087488pt;}
.ws152{word-spacing:-5.066616pt;}
.ws9c{word-spacing:-5.013283pt;}
.ws7b{word-spacing:-4.959950pt;}
.ws42{word-spacing:-4.906618pt;}
.ws33{word-spacing:-4.853285pt;}
.ws4e{word-spacing:-4.799952pt;}
.ws15e{word-spacing:-4.746619pt;}
.wsa9{word-spacing:-4.693286pt;}
.ws28{word-spacing:-4.586621pt;}
.ws30{word-spacing:-4.533288pt;}
.ws144{word-spacing:-4.485333pt;}
.ws126{word-spacing:-4.479955pt;}
.ws10e{word-spacing:-4.451983pt;}
.ws124{word-spacing:-4.440979pt;}
.wsb4{word-spacing:-4.426622pt;}
.ws29{word-spacing:-4.319957pt;}
.ws48{word-spacing:-4.266624pt;}
.ws52{word-spacing:-4.213291pt;}
.ws9a{word-spacing:-4.159958pt;}
.ws127{word-spacing:-4.110370pt;}
.ws1e{word-spacing:-4.106626pt;}
.wsc9{word-spacing:-4.053293pt;}
.ws178{word-spacing:-3.999960pt;}
.ws20{word-spacing:-3.946627pt;}
.ws1ed{word-spacing:-3.893294pt;}
.ws91{word-spacing:-3.839962pt;}
.ws19b{word-spacing:-3.786629pt;}
.ws10c{word-spacing:-3.733296pt;}
.ws104{word-spacing:-3.679963pt;}
.ws1bc{word-spacing:-3.679488pt;}
.ws1ba{word-spacing:-3.678272pt;}
.ws1cc{word-spacing:-3.635704pt;}
.ws19c{word-spacing:-3.626630pt;}
.ws162{word-spacing:-3.573298pt;}
.ws16a{word-spacing:-3.519965pt;}
.ws13f{word-spacing:-3.466632pt;}
.ws1d1{word-spacing:-3.413299pt;}
.ws17d{word-spacing:-3.321393pt;}
.wsf2{word-spacing:-3.306634pt;}
.ws1cf{word-spacing:-3.253301pt;}
.ws25{word-spacing:-3.199968pt;}
.ws6b{word-spacing:-3.093302pt;}
.ws115{word-spacing:-3.039970pt;}
.ws151{word-spacing:-2.986637pt;}
.ws150{word-spacing:-2.977685pt;}
.ws1c9{word-spacing:-2.965803pt;}
.ws1ca{word-spacing:-2.961547pt;}
.ws1d2{word-spacing:-2.933304pt;}
.wsb5{word-spacing:-2.879971pt;}
.ws6d{word-spacing:-2.826638pt;}
.wsa6{word-spacing:-2.719973pt;}
.ws1a6{word-spacing:-2.666640pt;}
.ws105{word-spacing:-2.631296pt;}
.ws1de{word-spacing:-2.613307pt;}
.ws160{word-spacing:-2.559974pt;}
.wsc2{word-spacing:-2.506642pt;}
.ws47{word-spacing:-2.453309pt;}
.ws84{word-spacing:-2.399976pt;}
.ws111{word-spacing:-2.346643pt;}
.ws199{word-spacing:-2.339704pt;}
.ws110{word-spacing:-2.293310pt;}
.ws146{word-spacing:-2.245333pt;}
.ws11a{word-spacing:-2.186645pt;}
.ws1d8{word-spacing:-2.133312pt;}
.ws1c0{word-spacing:-2.132587pt;}
.ws15f{word-spacing:-2.130901pt;}
.ws18d{word-spacing:-2.129685pt;}
.ws1b4{word-spacing:-2.128469pt;}
.ws182{word-spacing:-2.128075pt;}
.ws6a{word-spacing:-2.125568pt;}
.ws7d{word-spacing:-2.026646pt;}
.ws7c{word-spacing:-1.973314pt;}
.ws99{word-spacing:-1.919981pt;}
.wsd6{word-spacing:-1.876326pt;}
.wsd7{word-spacing:-1.866648pt;}
.ws65{word-spacing:-1.813315pt;}
.ws142{word-spacing:-1.738667pt;}
.ws85{word-spacing:-1.706650pt;}
.ws15d{word-spacing:-1.701333pt;}
.ws188{word-spacing:-1.667840pt;}
.ws8a{word-spacing:-1.653317pt;}
.ws1f4{word-spacing:-1.599984pt;}
.wsa4{word-spacing:-1.493318pt;}
.ws1f1{word-spacing:-1.333320pt;}
.wsed{word-spacing:-1.226654pt;}
.ws22{word-spacing:-1.173322pt;}
.ws7e{word-spacing:-1.066656pt;}
.ws1d4{word-spacing:-1.017897pt;}
.ws1d3{word-spacing:-1.017037pt;}
.ws1d5{word-spacing:-1.013323pt;}
.ws18{word-spacing:-0.981321pt;}
.ws181{word-spacing:-0.799992pt;}
.ws107{word-spacing:-0.746659pt;}
.ws97{word-spacing:-0.693326pt;}
.ws190{word-spacing:-0.648235pt;}
.ws68{word-spacing:-0.647019pt;}
.ws169{word-spacing:-0.645333pt;}
.ws1f{word-spacing:-0.586661pt;}
.ws27{word-spacing:-0.533328pt;}
.ws1cb{word-spacing:-0.486880pt;}
.ws7a{word-spacing:-0.479995pt;}
.ws62{word-spacing:-0.431392pt;}
.wsf0{word-spacing:-0.373330pt;}
.ws13b{word-spacing:-0.321039pt;}
.ws1a3{word-spacing:-0.319997pt;}
.ws13d{word-spacing:-0.317250pt;}
.ws175{word-spacing:-0.316523pt;}
.ws173{word-spacing:-0.315706pt;}
.ws13a{word-spacing:-0.315525pt;}
.ws131{word-spacing:-0.315242pt;}
.ws15b{word-spacing:-0.315200pt;}
.ws134{word-spacing:-0.314653pt;}
.ws13e{word-spacing:-0.314106pt;}
.ws132{word-spacing:-0.313558pt;}
.ws12d{word-spacing:-0.312928pt;}
.ws98{word-spacing:-0.266664pt;}
.ws5f{word-spacing:-0.231019pt;}
.ws6c{word-spacing:-0.106666pt;}
.ws1d{word-spacing:-0.053333pt;}
.wse7{word-spacing:-0.047999pt;}
.ws15{word-spacing:-0.037333pt;}
.ws133{word-spacing:-0.031999pt;}
.ws0{word-spacing:0.000000pt;}
.ws21a{word-spacing:0.022459pt;}
.ws1e0{word-spacing:0.053333pt;}
.ws1f0{word-spacing:0.106666pt;}
.wsc8{word-spacing:0.159998pt;}
.ws18b{word-spacing:0.213331pt;}
.ws1a0{word-spacing:0.319997pt;}
.ws108{word-spacing:0.373330pt;}
.wsd2{word-spacing:0.479995pt;}
.wsd4{word-spacing:0.533328pt;}
.wsa2{word-spacing:0.586661pt;}
.ws140{word-spacing:0.639994pt;}
.ws72{word-spacing:0.746659pt;}
.ws73{word-spacing:0.799992pt;}
.ws41{word-spacing:0.906658pt;}
.ws17c{word-spacing:0.945216pt;}
.ws95{word-spacing:0.959990pt;}
.ws1c7{word-spacing:1.039531pt;}
.ws9e{word-spacing:1.066656pt;}
.wsc6{word-spacing:1.119989pt;}
.wsb6{word-spacing:1.173322pt;}
.ws26{word-spacing:1.226654pt;}
.ws1f6{word-spacing:1.279987pt;}
.ws158{word-spacing:1.318549pt;}
.ws186{word-spacing:1.329493pt;}
.ws1d7{word-spacing:1.493318pt;}
.ws12b{word-spacing:1.571339pt;}
.ws31{word-spacing:1.653317pt;}
.ws1b9{word-spacing:1.919531pt;}
.ws141{word-spacing:2.026646pt;}
.ws157{word-spacing:2.079979pt;}
.ws1f5{word-spacing:2.346643pt;}
.wscb{word-spacing:2.453309pt;}
.ws10b{word-spacing:2.559974pt;}
.ws10a{word-spacing:2.586367pt;}
.ws1cd{word-spacing:2.826638pt;}
.ws1e9{word-spacing:2.993216pt;}
.ws1d6{word-spacing:3.199968pt;}
.ws156{word-spacing:3.237333pt;}
.wsb0{word-spacing:3.359966pt;}
.ws17b{word-spacing:3.393493pt;}
.ws18f{word-spacing:3.486315pt;}
.ws1d9{word-spacing:3.519965pt;}
.ws19d{word-spacing:3.679963pt;}
.ws35{word-spacing:3.839962pt;}
.ws154{word-spacing:3.944981pt;}
.ws153{word-spacing:3.947883pt;}
.ws19e{word-spacing:4.053293pt;}
.ws1ee{word-spacing:4.106626pt;}
.wsea{word-spacing:4.477700pt;}
.ws184{word-spacing:4.582991pt;}
.ws17a{word-spacing:4.693286pt;}
.ws179{word-spacing:4.746619pt;}
.ws40{word-spacing:4.853285pt;}
.wsad{word-spacing:5.226614pt;}
.ws164{word-spacing:5.232747pt;}
.ws193{word-spacing:5.493278pt;}
.wsb1{word-spacing:5.599944pt;}
.wsf1{word-spacing:5.866608pt;}
.ws129{word-spacing:5.973274pt;}
.wsb7{word-spacing:6.026606pt;}
.wsac{word-spacing:6.293270pt;}
.wse9{word-spacing:6.432055pt;}
.ws1ef{word-spacing:6.619883pt;}
.wsdc{word-spacing:6.632843pt;}
.wsab{word-spacing:6.666600pt;}
.ws11b{word-spacing:6.773266pt;}
.ws130{word-spacing:7.201697pt;}
.ws161{word-spacing:7.206549pt;}
.ws3f{word-spacing:7.786589pt;}
.wsd5{word-spacing:7.827787pt;}
.wseb{word-spacing:8.126247pt;}
.ws3e{word-spacing:8.586581pt;}
.ws118{word-spacing:8.731275pt;}
.wsfe{word-spacing:8.799912pt;}
.ws19f{word-spacing:9.066576pt;}
.ws96{word-spacing:10.773226pt;}
.wsdb{word-spacing:10.976000pt;}
.ws123{word-spacing:11.786549pt;}
.ws1f3{word-spacing:12.106546pt;}
.ws149{word-spacing:14.997689pt;}
.ws135{word-spacing:18.432055pt;}
.ws125{word-spacing:19.163023pt;}
.ws11c{word-spacing:21.354667pt;}
.ws136{word-spacing:22.148800pt;}
.ws137{word-spacing:23.898092pt;}
.ws138{word-spacing:25.786681pt;}
.ws16c{word-spacing:50.975434pt;}
.ws1af{word-spacing:68.894061pt;}
.ws1b2{word-spacing:68.897808pt;}
.ws1ac{word-spacing:91.419127pt;}
.ws1ad{word-spacing:93.243366pt;}
.ws1ab{word-spacing:97.213406pt;}
.ws1b0{word-spacing:98.403394pt;}
.ws176{word-spacing:102.958856pt;}
.ws1ae{word-spacing:115.768433pt;}
.ws1a8{word-spacing:118.695578pt;}
.ws1aa{word-spacing:122.752700pt;}
.ws16d{word-spacing:135.099081pt;}
.ws1b1{word-spacing:135.735578pt;}
.ws171{word-spacing:150.966503pt;}
.ws174{word-spacing:162.966370pt;}
.ws16f{word-spacing:174.966237pt;}
.ws12e{word-spacing:188.117837pt;}
.ws1c5{word-spacing:236.383531pt;}
.ws13c{word-spacing:241.948370pt;}
.ws12f{word-spacing:289.947837pt;}
.ws139{word-spacing:301.947703pt;}
.ws172{word-spacing:419.570750pt;}
.ws16e{word-spacing:434.472672pt;}
.ws170{word-spacing:436.806442pt;}
._47{margin-left:-10.133232pt;}
._14{margin-left:-8.351907pt;}
._6{margin-left:-6.312671pt;}
._4{margin-left:-4.517292pt;}
._43{margin-left:-3.527083pt;}
._3{margin-left:-2.613273pt;}
._0{margin-left:-1.642667pt;}
._5{width:1.162588pt;}
._10{width:2.661178pt;}
._12{width:4.755648pt;}
._45{width:5.926874pt;}
._44{width:7.346488pt;}
._7{width:8.886161pt;}
._13{width:11.079056pt;}
._d{width:12.426508pt;}
._1{width:13.813136pt;}
._31{width:15.679843pt;}
._f{width:17.333160pt;}
._11{width:19.077112pt;}
._30{width:20.735774pt;}
._15{width:23.951734pt;}
._46{width:25.185609pt;}
._16{width:26.311217pt;}
._c{width:27.231761pt;}
._e{width:30.549044pt;}
._8{width:37.855459pt;}
._42{width:39.486077pt;}
._a{width:58.687162pt;}
._3b{width:72.335196pt;}
._40{width:92.836311pt;}
._3d{width:100.270886pt;}
._41{width:148.284300pt;}
._3c{width:166.524833pt;}
._18{width:168.951866pt;}
._27{width:176.028309pt;}
._3f{width:190.518800pt;}
._33{width:208.277867pt;}
._36{width:214.518533pt;}
._39{width:238.518267pt;}
._3e{width:242.748148pt;}
._37{width:250.456990pt;}
._34{width:262.518000pt;}
._32{width:274.513642pt;}
._26{width:281.616557pt;}
._1d{width:287.259867pt;}
._1a{width:311.259600pt;}
._28{width:323.259467pt;}
._25{width:335.259333pt;}
._35{width:355.622014pt;}
._38{width:362.177214pt;}
._3a{width:408.336770pt;}
._23{width:420.223240pt;}
._2b{width:469.910222pt;}
._9{width:482.598848pt;}
._2f{width:600.114515pt;}
._22{width:665.713783pt;}
._2c{width:694.820024pt;}
._1b{width:701.009357pt;}
._24{width:707.814573pt;}
._20{width:787.936486pt;}
._21{width:805.685510pt;}
._2a{width:807.722684pt;}
._1e{width:809.115019pt;}
._1c{width:833.669362pt;}
._2e{width:910.196236pt;}
._19{width:932.660131pt;}
._2d{width:1011.571750pt;}
._1f{width:1028.017611pt;}
._29{width:1115.938592pt;}
._17{width:1195.948829pt;}
._2{width:1378.266519pt;}
._b{width:1768.248770pt;}
.fsf{font-size:26.666133pt;}
.fs10{font-size:26.765867pt;}
.fse{font-size:31.999467pt;}
.fsa{font-size:33.599467pt;}
.fs11{font-size:33.724800pt;}
.fs6{font-size:37.332800pt;}
.fs5{font-size:37.333333pt;}
.fsd{font-size:37.472000pt;}
.fs9{font-size:42.666133pt;}
.fs2{font-size:42.666667pt;}
.fs3{font-size:43.619896pt;}
.fsb{font-size:47.999467pt;}
.fs0{font-size:48.000000pt;}
.fsc{font-size:53.332800pt;}
.fs8{font-size:58.666133pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.fs7{font-size:127.998400pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:2.534533pt;}
.y17{bottom:57.706667pt;}
.ya9{bottom:62.590667pt;}
.y45{bottom:63.653333pt;}
.y44{bottom:91.548000pt;}
.y290{bottom:99.650667pt;}
.y287{bottom:99.845333pt;}
.y43{bottom:104.214667pt;}
.y348{bottom:104.881333pt;}
.y2bc{bottom:107.548000pt;}
.y30c{bottom:114.661333pt;}
.y316{bottom:114.765333pt;}
.y28f{bottom:115.650667pt;}
.y286{bottom:115.845333pt;}
.y42{bottom:116.881333pt;}
.y347{bottom:118.214667pt;}
.y18a{bottom:123.428000pt;}
.y2bb{bottom:123.548000pt;}
.yde{bottom:123.694667pt;}
.ye6{bottom:123.744000pt;}
.y14c{bottom:124.889333pt;}
.y122{bottom:125.077333pt;}
.ya8{bottom:129.314667pt;}
.y79{bottom:129.320000pt;}
.y41{bottom:129.548000pt;}
.y315{bottom:130.765333pt;}
.y346{bottom:131.548000pt;}
.y28e{bottom:131.650667pt;}
.y285{bottom:131.845333pt;}
.y21c{bottom:139.369333pt;}
.y189{bottom:139.428000pt;}
.y2ba{bottom:139.548000pt;}
.ydd{bottom:139.694667pt;}
.ye5{bottom:139.744000pt;}
.y14b{bottom:140.889333pt;}
.y121{bottom:141.077333pt;}
.y345{bottom:144.881333pt;}
.ya7{bottom:145.314667pt;}
.y78{bottom:145.320000pt;}
.y314{bottom:146.765333pt;}
.y28d{bottom:147.650667pt;}
.y284{bottom:147.845333pt;}
.y383{bottom:150.412000pt;}
.y30b{bottom:153.673333pt;}
.y21b{bottom:155.369333pt;}
.y188{bottom:155.428000pt;}
.y2b9{bottom:155.548000pt;}
.ydc{bottom:155.694667pt;}
.ye4{bottom:155.744000pt;}
.y14a{bottom:156.889333pt;}
.y120{bottom:157.077333pt;}
.y344{bottom:158.214667pt;}
.ya6{bottom:161.314667pt;}
.y77{bottom:161.320000pt;}
.y313{bottom:162.765333pt;}
.y28c{bottom:163.650667pt;}
.y382{bottom:163.745333pt;}
.y283{bottom:163.845333pt;}
.y1e3{bottom:164.740000pt;}
.y1f5{bottom:164.845333pt;}
.y30a{bottom:168.477333pt;}
.y21a{bottom:171.369333pt;}
.y187{bottom:171.428000pt;}
.y2b8{bottom:171.548000pt;}
.ydb{bottom:171.694667pt;}
.ye3{bottom:171.744000pt;}
.y149{bottom:172.889333pt;}
.y11f{bottom:173.077333pt;}
.y381{bottom:177.078667pt;}
.ya5{bottom:177.314667pt;}
.y76{bottom:177.320000pt;}
.y312{bottom:178.765333pt;}
.y28b{bottom:179.650667pt;}
.y282{bottom:179.845333pt;}
.y1e2{bottom:180.740000pt;}
.y1f4{bottom:180.845333pt;}
.y309{bottom:183.414667pt;}
.y40{bottom:184.777333pt;}
.y343{bottom:184.881333pt;}
.y219{bottom:187.369333pt;}
.y186{bottom:187.428000pt;}
.y2b7{bottom:187.548000pt;}
.ye2{bottom:187.744000pt;}
.y148{bottom:188.889333pt;}
.y11e{bottom:189.077333pt;}
.y380{bottom:190.412000pt;}
.y1f3{bottom:193.124000pt;}
.y3f{bottom:193.193333pt;}
.ya4{bottom:193.314667pt;}
.y75{bottom:193.320000pt;}
.y311{bottom:194.765333pt;}
.y281{bottom:195.845333pt;}
.y1e1{bottom:196.740000pt;}
.y1f2{bottom:196.845333pt;}
.y342{bottom:198.214667pt;}
.y308{bottom:198.750667pt;}
.yda{bottom:202.361333pt;}
.y218{bottom:203.369333pt;}
.y185{bottom:203.428000pt;}
.y2b6{bottom:203.548000pt;}
.ye1{bottom:203.744000pt;}
.y37f{bottom:203.745333pt;}
.y147{bottom:204.889333pt;}
.y11d{bottom:205.077333pt;}
.ya3{bottom:209.314667pt;}
.y74{bottom:209.320000pt;}
.y28a{bottom:210.317333pt;}
.y310{bottom:210.765333pt;}
.y341{bottom:211.548000pt;}
.y280{bottom:211.845333pt;}
.y1e0{bottom:212.740000pt;}
.y1f1{bottom:212.845333pt;}
.y307{bottom:214.086667pt;}
.y37e{bottom:217.078667pt;}
.y217{bottom:219.369333pt;}
.y184{bottom:219.428000pt;}
.y2b5{bottom:219.548000pt;}
.ye0{bottom:219.744000pt;}
.y146{bottom:220.889333pt;}
.y11c{bottom:221.077333pt;}
.y340{bottom:224.881333pt;}
.ya2{bottom:225.314667pt;}
.y73{bottom:225.320000pt;}
.y30f{bottom:226.765333pt;}
.y27f{bottom:227.845333pt;}
.y1df{bottom:228.740000pt;}
.y1f0{bottom:228.845333pt;}
.y306{bottom:229.422667pt;}
.y37d{bottom:230.412000pt;}
.y237{bottom:235.369333pt;}
.y183{bottom:235.428000pt;}
.y2b4{bottom:235.548000pt;}
.ydf{bottom:235.744000pt;}
.y145{bottom:236.889333pt;}
.y11b{bottom:237.077333pt;}
.y33f{bottom:238.214667pt;}
.y1ef{bottom:241.254667pt;}
.ya1{bottom:241.314667pt;}
.y72{bottom:241.320000pt;}
.y30e{bottom:242.765333pt;}
.y37c{bottom:243.745333pt;}
.y27e{bottom:243.845333pt;}
.y216{bottom:244.702667pt;}
.y1de{bottom:244.740000pt;}
.y305{bottom:244.758667pt;}
.y1ee{bottom:244.845333pt;}
.y1a8{bottom:250.176000pt;}
.y236{bottom:251.369333pt;}
.y182{bottom:251.428000pt;}
.y2b3{bottom:251.548000pt;}
.yd9{bottom:251.744000pt;}
.y144{bottom:252.889333pt;}
.y11a{bottom:253.077333pt;}
.y289{bottom:253.178667pt;}
.y37b{bottom:257.078667pt;}
.ya0{bottom:257.314667pt;}
.y71{bottom:257.320000pt;}
.y30d{bottom:258.765333pt;}
.y1a7{bottom:259.321333pt;}
.y3e{bottom:259.369333pt;}
.y27d{bottom:259.845333pt;}
.y304{bottom:260.094667pt;}
.y1dd{bottom:260.740000pt;}
.y1ed{bottom:260.845333pt;}
.y33e{bottom:264.881333pt;}
.y117{bottom:265.290667pt;}
.y118{bottom:265.357333pt;}
.y119{bottom:265.488000pt;}
.y116{bottom:265.581333pt;}
.y235{bottom:267.369333pt;}
.y181{bottom:267.428000pt;}
.y2b2{bottom:267.548000pt;}
.yd8{bottom:267.744000pt;}
.y143{bottom:268.889333pt;}
.y115{bottom:269.077333pt;}
.y288{bottom:269.178667pt;}
.y9f{bottom:269.818667pt;}
.y37a{bottom:270.412000pt;}
.y9e{bottom:273.314667pt;}
.y70{bottom:273.320000pt;}
.y303{bottom:274.765333pt;}
.y3d{bottom:275.369333pt;}
.y1dc{bottom:276.740000pt;}
.y1ec{bottom:276.845333pt;}
.y33d{bottom:278.214667pt;}
.y114{bottom:281.357333pt;}
.y234{bottom:283.369333pt;}
.y180{bottom:283.428000pt;}
.y2b1{bottom:283.548000pt;}
.yd7{bottom:283.744000pt;}
.y379{bottom:283.745333pt;}
.y215{bottom:284.706667pt;}
.y142{bottom:284.889333pt;}
.y113{bottom:285.077333pt;}
.y27c{bottom:285.178667pt;}
.y1eb{bottom:289.254667pt;}
.y9d{bottom:289.314667pt;}
.y6f{bottom:289.320000pt;}
.y302{bottom:290.765333pt;}
.y3c{bottom:291.369333pt;}
.y33c{bottom:291.548000pt;}
.y1ea{bottom:292.845333pt;}
.y378{bottom:297.078667pt;}
.y1a6{bottom:298.648000pt;}
.y233{bottom:299.369333pt;}
.y17f{bottom:299.428000pt;}
.y2b0{bottom:299.548000pt;}
.yd6{bottom:299.744000pt;}
.y214{bottom:300.706667pt;}
.y141{bottom:300.889333pt;}
.y112{bottom:301.077333pt;}
.y33b{bottom:304.881333pt;}
.y9c{bottom:305.314667pt;}
.y6e{bottom:305.320000pt;}
.y301{bottom:306.765333pt;}
.y3b{bottom:307.369333pt;}
.y275{bottom:308.761333pt;}
.y1e9{bottom:308.845333pt;}
.y1db{bottom:310.048000pt;}
.y377{bottom:310.412000pt;}
.y1a5{bottom:314.648000pt;}
.y232{bottom:315.369333pt;}
.y17e{bottom:315.428000pt;}
.y2af{bottom:315.548000pt;}
.yd5{bottom:315.744000pt;}
.y213{bottom:316.706667pt;}
.y1d8{bottom:316.790667pt;}
.y140{bottom:316.889333pt;}
.y111{bottom:317.077333pt;}
.y33a{bottom:318.214667pt;}
.y9b{bottom:321.314667pt;}
.y6d{bottom:321.320000pt;}
.y300{bottom:322.765333pt;}
.y3a{bottom:323.369333pt;}
.y376{bottom:323.745333pt;}
.y1e8{bottom:324.845333pt;}
.y1d7{bottom:325.936000pt;}
.y2de{bottom:326.945333pt;}
.y27b{bottom:327.126667pt;}
.y1a4{bottom:330.648000pt;}
.y17d{bottom:331.428000pt;}
.y2ae{bottom:331.548000pt;}
.yd4{bottom:331.744000pt;}
.y212{bottom:332.706667pt;}
.y13f{bottom:332.889333pt;}
.y110{bottom:333.077333pt;}
.y2dd{bottom:336.090667pt;}
.y375{bottom:337.078667pt;}
.y1e7{bottom:337.254667pt;}
.y9a{bottom:337.314667pt;}
.y6c{bottom:337.320000pt;}
.y1da{bottom:338.602667pt;}
.y2ff{bottom:338.765333pt;}
.y39{bottom:339.369333pt;}
.y27a{bottom:340.460000pt;}
.y1e6{bottom:340.845333pt;}
.y1d9{bottom:342.602667pt;}
.y339{bottom:344.881333pt;}
.y274{bottom:345.461333pt;}
.y24f{bottom:346.094667pt;}
.y1a3{bottom:346.648000pt;}
.y17c{bottom:347.428000pt;}
.y2ad{bottom:347.548000pt;}
.yd3{bottom:347.744000pt;}
.y211{bottom:348.706667pt;}
.y13e{bottom:348.889333pt;}
.y10f{bottom:349.077333pt;}
.y374{bottom:350.412000pt;}
.y99{bottom:353.314667pt;}
.y6b{bottom:353.320000pt;}
.y2fe{bottom:354.765333pt;}
.y38{bottom:355.369333pt;}
.y1e5{bottom:356.845333pt;}
.y338{bottom:358.214667pt;}
.y273{bottom:361.461333pt;}
.y1a2{bottom:362.648000pt;}
.y17b{bottom:363.428000pt;}
.y2ac{bottom:363.548000pt;}
.yd2{bottom:363.744000pt;}
.y373{bottom:363.745333pt;}
.y210{bottom:364.706667pt;}
.y13d{bottom:364.889333pt;}
.y10e{bottom:365.077333pt;}
.y98{bottom:369.314667pt;}
.y6a{bottom:369.320000pt;}
.y2fd{bottom:370.765333pt;}
.y37{bottom:371.369333pt;}
.y1d6{bottom:372.845333pt;}
.y2dc{bottom:373.473333pt;}
.y231{bottom:374.006667pt;}
.y372{bottom:377.078667pt;}
.y272{bottom:377.461333pt;}
.y1a1{bottom:378.648000pt;}
.y17a{bottom:379.428000pt;}
.y2ab{bottom:379.548000pt;}
.yd1{bottom:379.744000pt;}
.y20f{bottom:380.706667pt;}
.y97{bottom:380.716000pt;}
.y13c{bottom:380.889333pt;}
.y10d{bottom:381.077333pt;}
.y96{bottom:385.314667pt;}
.y69{bottom:385.320000pt;}
.y337{bottom:386.214667pt;}
.y2fc{bottom:386.765333pt;}
.y36{bottom:387.369333pt;}
.y230{bottom:388.673333pt;}
.y1d5{bottom:388.845333pt;}
.y2db{bottom:389.473333pt;}
.y371{bottom:390.412000pt;}
.y24e{bottom:391.786667pt;}
.y1a0{bottom:394.648000pt;}
.y179{bottom:395.428000pt;}
.y2aa{bottom:395.548000pt;}
.yd0{bottom:395.744000pt;}
.y20e{bottom:396.706667pt;}
.y13b{bottom:396.889333pt;}
.y10c{bottom:397.077333pt;}
.y95{bottom:401.314667pt;}
.y68{bottom:401.320000pt;}
.y2fb{bottom:402.765333pt;}
.y22f{bottom:403.340000pt;}
.y35{bottom:403.369333pt;}
.y370{bottom:403.745333pt;}
.y1d4{bottom:404.845333pt;}
.y2da{bottom:405.473333pt;}
.y270{bottom:406.532000pt;}
.y24d{bottom:407.786667pt;}
.y10b{bottom:409.488000pt;}
.y2ea{bottom:410.094667pt;}
.y19f{bottom:410.648000pt;}
.y178{bottom:411.428000pt;}
.y2a9{bottom:411.548000pt;}
.ycf{bottom:411.744000pt;}
.y20d{bottom:412.706667pt;}
.y13a{bottom:412.889333pt;}
.y10a{bottom:413.077333pt;}
.y36f{bottom:417.078667pt;}
.y94{bottom:417.314667pt;}
.y67{bottom:417.320000pt;}
.y22e{bottom:418.006667pt;}
.y2fa{bottom:418.765333pt;}
.y34{bottom:419.369333pt;}
.y1d3{bottom:420.845333pt;}
.y2d9{bottom:421.473333pt;}
.y271{bottom:422.229333pt;}
.y24c{bottom:423.786667pt;}
.y19e{bottom:426.648000pt;}
.y177{bottom:427.428000pt;}
.y2a8{bottom:427.548000pt;}
.y336{bottom:427.613333pt;}
.yce{bottom:427.744000pt;}
.y20c{bottom:428.706667pt;}
.y139{bottom:428.889333pt;}
.y109{bottom:429.077333pt;}
.y36e{bottom:430.412000pt;}
.y22d{bottom:432.673333pt;}
.y93{bottom:433.314667pt;}
.y66{bottom:433.320000pt;}
.y2f9{bottom:434.765333pt;}
.y33{bottom:435.369333pt;}
.y1d2{bottom:436.845333pt;}
.y26f{bottom:438.396000pt;}
.y24b{bottom:439.786667pt;}
.y19d{bottom:442.648000pt;}
.y176{bottom:443.428000pt;}
.y2a7{bottom:443.548000pt;}
.y335{bottom:443.613333pt;}
.ycd{bottom:443.744000pt;}
.y36d{bottom:443.745333pt;}
.y20b{bottom:444.706667pt;}
.y138{bottom:444.889333pt;}
.y108{bottom:445.077333pt;}
.y92{bottom:449.314667pt;}
.y65{bottom:449.320000pt;}
.y2d8{bottom:450.296000pt;}
.y2f8{bottom:450.765333pt;}
.y32{bottom:451.369333pt;}
.y1d1{bottom:452.845333pt;}
.y26e{bottom:454.396000pt;}
.y24a{bottom:455.786667pt;}
.y36c{bottom:457.078667pt;}
.y22c{bottom:457.340000pt;}
.y2e9{bottom:458.333333pt;}
.y19c{bottom:458.648000pt;}
.y175{bottom:459.428000pt;}
.y2d7{bottom:459.442667pt;}
.y2a6{bottom:459.548000pt;}
.y334{bottom:459.613333pt;}
.ycc{bottom:459.744000pt;}
.y20a{bottom:460.706667pt;}
.y137{bottom:460.889333pt;}
.y107{bottom:461.077333pt;}
.y91{bottom:465.314667pt;}
.y64{bottom:465.320000pt;}
.y2f7{bottom:466.765333pt;}
.y31{bottom:467.369333pt;}
.y1d0{bottom:468.845333pt;}
.y26d{bottom:470.396000pt;}
.y36b{bottom:470.412000pt;}
.y249{bottom:471.786667pt;}
.y209{bottom:472.985333pt;}
.y2e8{bottom:474.333333pt;}
.y19b{bottom:474.648000pt;}
.y174{bottom:475.428000pt;}
.y2a5{bottom:475.548000pt;}
.y333{bottom:475.613333pt;}
.ycb{bottom:475.744000pt;}
.y208{bottom:476.706667pt;}
.y136{bottom:476.889333pt;}
.y106{bottom:477.077333pt;}
.y1e4{bottom:481.254667pt;}
.y90{bottom:481.314667pt;}
.y63{bottom:481.320000pt;}
.y22b{bottom:482.006667pt;}
.y2f6{bottom:482.765333pt;}
.y30{bottom:483.369333pt;}
.y36a{bottom:483.745333pt;}
.y1cf{bottom:484.845333pt;}
.y26c{bottom:486.396000pt;}
.y248{bottom:487.786667pt;}
.y2e7{bottom:490.333333pt;}
.y19a{bottom:490.648000pt;}
.y173{bottom:491.428000pt;}
.y2a4{bottom:491.548000pt;}
.y332{bottom:491.613333pt;}
.yca{bottom:491.744000pt;}
.y207{bottom:492.706667pt;}
.y105{bottom:493.077333pt;}
.y8f{bottom:496.650667pt;}
.y22a{bottom:496.673333pt;}
.y369{bottom:497.078667pt;}
.y62{bottom:497.320000pt;}
.y2d6{bottom:497.865333pt;}
.y2f{bottom:499.429333pt;}
.y1ce{bottom:500.845333pt;}
.y135{bottom:502.222667pt;}
.y26b{bottom:502.396000pt;}
.y247{bottom:503.786667pt;}
.y2e6{bottom:506.333333pt;}
.y199{bottom:506.648000pt;}
.y172{bottom:507.428000pt;}
.y2a3{bottom:507.548000pt;}
.y331{bottom:507.613333pt;}
.yc9{bottom:507.744000pt;}
.y206{bottom:508.706667pt;}
.y104{bottom:509.077333pt;}
.y368{bottom:510.412000pt;}
.y229{bottom:511.340000pt;}
.y8e{bottom:512.650667pt;}
.y61{bottom:513.320000pt;}
.y2d5{bottom:513.865333pt;}
.y1cd{bottom:516.845333pt;}
.y26a{bottom:518.396000pt;}
.y246{bottom:519.786667pt;}
.y2e5{bottom:522.333333pt;}
.y198{bottom:522.648000pt;}
.y228{bottom:523.412000pt;}
.y171{bottom:523.428000pt;}
.y2a2{bottom:523.548000pt;}
.y330{bottom:523.613333pt;}
.yc8{bottom:523.744000pt;}
.y367{bottom:523.745333pt;}
.y205{bottom:524.706667pt;}
.y2f5{bottom:524.714667pt;}
.y103{bottom:525.077333pt;}
.y227{bottom:526.006667pt;}
.y8d{bottom:528.650667pt;}
.y60{bottom:529.320000pt;}
.y2d4{bottom:529.865333pt;}
.y1cc{bottom:532.845333pt;}
.y269{bottom:534.396000pt;}
.y245{bottom:535.786667pt;}
.y2e{bottom:536.218667pt;}
.y366{bottom:537.078667pt;}
.y2f4{bottom:538.048000pt;}
.y197{bottom:538.648000pt;}
.y170{bottom:539.428000pt;}
.y2a1{bottom:539.548000pt;}
.yc7{bottom:539.744000pt;}
.y226{bottom:540.673333pt;}
.y204{bottom:540.706667pt;}
.y102{bottom:541.077333pt;}
.y8c{bottom:544.650667pt;}
.y5f{bottom:545.320000pt;}
.y2d3{bottom:545.865333pt;}
.y134{bottom:545.906667pt;}
.y1cb{bottom:548.845333pt;}
.y268{bottom:550.396000pt;}
.y365{bottom:550.412000pt;}
.y2d{bottom:550.885333pt;}
.y244{bottom:551.786667pt;}
.y32f{bottom:554.280000pt;}
.y196{bottom:554.648000pt;}
.y225{bottom:555.340000pt;}
.y16f{bottom:555.428000pt;}
.y2a0{bottom:555.548000pt;}
.yc6{bottom:555.744000pt;}
.y203{bottom:556.706667pt;}
.y101{bottom:557.077333pt;}
.y8b{bottom:559.986667pt;}
.y5e{bottom:561.320000pt;}
.y2d2{bottom:561.865333pt;}
.y133{bottom:561.906667pt;}
.y364{bottom:563.745333pt;}
.y1ca{bottom:564.845333pt;}
.y2c{bottom:565.552000pt;}
.y224{bottom:567.293333pt;}
.y243{bottom:567.786667pt;}
.y279{bottom:569.585333pt;}
.y223{bottom:570.006667pt;}
.y195{bottom:570.648000pt;}
.y16e{bottom:571.428000pt;}
.y29f{bottom:571.548000pt;}
.yc5{bottom:571.744000pt;}
.y2e4{bottom:572.550667pt;}
.y202{bottom:572.706667pt;}
.y100{bottom:573.077333pt;}
.y267{bottom:575.729333pt;}
.y8a{bottom:575.986667pt;}
.y363{bottom:577.078667pt;}
.y5d{bottom:577.320000pt;}
.y2d1{bottom:577.865333pt;}
.y132{bottom:577.906667pt;}
.y1c9{bottom:580.845333pt;}
.y278{bottom:582.918667pt;}
.y242{bottom:583.786667pt;}
.y222{bottom:584.673333pt;}
.y201{bottom:585.210667pt;}
.y2e3{bottom:585.884000pt;}
.y16d{bottom:587.428000pt;}
.y29e{bottom:587.548000pt;}
.yc4{bottom:587.744000pt;}
.y200{bottom:588.706667pt;}
.yff{bottom:589.077333pt;}
.y362{bottom:590.410667pt;}
.y89{bottom:591.986667pt;}
.y5c{bottom:593.320000pt;}
.y2d0{bottom:593.865333pt;}
.y131{bottom:593.906667pt;}
.y32e{bottom:595.678667pt;}
.y194{bottom:595.981333pt;}
.y1c8{bottom:596.845333pt;}
.y2b{bottom:597.486667pt;}
.y2e2{bottom:599.217333pt;}
.y241{bottom:599.786667pt;}
.y221{bottom:599.870667pt;}
.y319{bottom:599.958667pt;}
.y16c{bottom:603.428000pt;}
.y29d{bottom:603.548000pt;}
.yc3{bottom:603.744000pt;}
.y1ff{bottom:604.706667pt;}
.yfe{bottom:605.077333pt;}
.y88{bottom:607.986667pt;}
.y5b{bottom:609.320000pt;}
.y2cf{bottom:609.865333pt;}
.y130{bottom:609.906667pt;}
.y32d{bottom:611.678667pt;}
.y266{bottom:612.429333pt;}
.y1c7{bottom:612.845333pt;}
.y240{bottom:615.786667pt;}
.y361{bottom:617.077333pt;}
.y1fe{bottom:617.116000pt;}
.y16b{bottom:619.428000pt;}
.y29c{bottom:619.548000pt;}
.yc2{bottom:619.744000pt;}
.y1fd{bottom:620.706667pt;}
.yfd{bottom:621.077333pt;}
.y87{bottom:623.985333pt;}
.y220{bottom:625.169333pt;}
.y5a{bottom:625.320000pt;}
.y2ce{bottom:625.865333pt;}
.y12f{bottom:625.906667pt;}
.y32c{bottom:627.678667pt;}
.y265{bottom:628.429333pt;}
.y360{bottom:630.410667pt;}
.y2a{bottom:631.544000pt;}
.y23f{bottom:631.786667pt;}
.y16a{bottom:635.428000pt;}
.y29b{bottom:635.548000pt;}
.yc1{bottom:635.744000pt;}
.y1fc{bottom:636.706667pt;}
.yfc{bottom:637.077333pt;}
.y86{bottom:639.985333pt;}
.y59{bottom:641.320000pt;}
.y2cd{bottom:641.865333pt;}
.y12e{bottom:641.906667pt;}
.y32b{bottom:643.678667pt;}
.y35f{bottom:643.744000pt;}
.y264{bottom:644.429333pt;}
.y29{bottom:646.210667pt;}
.y23e{bottom:647.786667pt;}
.y169{bottom:647.838667pt;}
.y193{bottom:647.957333pt;}
.y192{bottom:648.022667pt;}
.y21f{bottom:649.665333pt;}
.y168{bottom:651.428000pt;}
.y29a{bottom:651.548000pt;}
.yc0{bottom:651.744000pt;}
.y1fb{bottom:652.706667pt;}
.yfb{bottom:653.077333pt;}
.y85{bottom:655.985333pt;}
.y35e{bottom:657.077333pt;}
.y58{bottom:657.320000pt;}
.y2cc{bottom:657.865333pt;}
.y12d{bottom:657.906667pt;}
.y32a{bottom:659.678667pt;}
.y263{bottom:660.429333pt;}
.y1c6{bottom:660.577333pt;}
.y28{bottom:660.877333pt;}
.y23d{bottom:663.786667pt;}
.y167{bottom:667.428000pt;}
.y299{bottom:667.548000pt;}
.ybf{bottom:667.744000pt;}
.y1fa{bottom:668.706667pt;}
.yfa{bottom:669.077333pt;}
.y35d{bottom:670.410667pt;}
.y27{bottom:670.896000pt;}
.y84{bottom:671.985333pt;}
.y21e{bottom:673.189333pt;}
.y57{bottom:673.320000pt;}
.y2cb{bottom:673.865333pt;}
.y12c{bottom:673.906667pt;}
.y1c5{bottom:675.244000pt;}
.y329{bottom:675.678667pt;}
.y262{bottom:676.429333pt;}
.y23c{bottom:679.786667pt;}
.y191{bottom:680.022667pt;}
.y166{bottom:683.428000pt;}
.y298{bottom:683.548000pt;}
.ybe{bottom:683.744000pt;}
.y1f9{bottom:684.706667pt;}
.yf9{bottom:685.077333pt;}
.y2f1{bottom:685.369333pt;}
.y21d{bottom:686.522667pt;}
.y83{bottom:687.985333pt;}
.y56{bottom:689.320000pt;}
.y2ca{bottom:689.865333pt;}
.y1c4{bottom:689.910667pt;}
.y26{bottom:690.210667pt;}
.y328{bottom:691.678667pt;}
.y261{bottom:692.429333pt;}
.y23b{bottom:695.786667pt;}
.y318{bottom:695.958667pt;}
.y190{bottom:696.154667pt;}
.y35c{bottom:697.077333pt;}
.y2f0{bottom:698.702667pt;}
.y165{bottom:699.428000pt;}
.y297{bottom:699.548000pt;}
.ybd{bottom:699.744000pt;}
.y25{bottom:700.229333pt;}
.yf8{bottom:701.077333pt;}
.y82{bottom:703.985333pt;}
.y1c3{bottom:704.577333pt;}
.y55{bottom:705.320000pt;}
.y2c9{bottom:705.865333pt;}
.y327{bottom:707.678667pt;}
.y260{bottom:708.429333pt;}
.y35b{bottom:710.410667pt;}
.y2ef{bottom:712.036000pt;}
.y164{bottom:715.428000pt;}
.y296{bottom:715.548000pt;}
.ybc{bottom:715.744000pt;}
.yf7{bottom:717.077333pt;}
.y1c2{bottom:719.244000pt;}
.y24{bottom:719.544000pt;}
.y129{bottom:719.817333pt;}
.y12b{bottom:719.910667pt;}
.y81{bottom:719.985333pt;}
.y12a{bottom:720.020000pt;}
.y54{bottom:721.320000pt;}
.y2c8{bottom:721.865333pt;}
.y128{bottom:722.548000pt;}
.y326{bottom:723.678667pt;}
.y35a{bottom:723.744000pt;}
.y25f{bottom:724.429333pt;}
.y2ee{bottom:725.369333pt;}
.y1f8{bottom:726.656000pt;}
.y1c1{bottom:731.316000pt;}
.y163{bottom:731.428000pt;}
.ybb{bottom:731.744000pt;}
.yf6{bottom:733.077333pt;}
.y1c0{bottom:733.910667pt;}
.y23{bottom:734.210667pt;}
.y80{bottom:735.985333pt;}
.y359{bottom:737.077333pt;}
.y53{bottom:737.320000pt;}
.y127{bottom:737.348000pt;}
.y2c7{bottom:737.865333pt;}
.y2ed{bottom:738.702667pt;}
.y325{bottom:739.678667pt;}
.y1f7{bottom:739.989333pt;}
.y25e{bottom:740.429333pt;}
.y23a{bottom:743.449333pt;}
.y317{bottom:746.214667pt;}
.y162{bottom:747.428000pt;}
.yba{bottom:747.744000pt;}
.y126{bottom:748.086667pt;}
.y1bf{bottom:748.577333pt;}
.yf5{bottom:749.077333pt;}
.y358{bottom:750.410667pt;}
.y125{bottom:750.681333pt;}
.y7f{bottom:751.985333pt;}
.y2ec{bottom:752.036000pt;}
.y52{bottom:753.320000pt;}
.y1f6{bottom:753.322667pt;}
.y22{bottom:754.882667pt;}
.y324{bottom:755.678667pt;}
.y25d{bottom:756.429333pt;}
.y239{bottom:756.782667pt;}
.y18e{bottom:760.022667pt;}
.y18f{bottom:760.154667pt;}
.y1be{bottom:763.244000pt;}
.y161{bottom:763.428000pt;}
.yb9{bottom:763.744000pt;}
.yf4{bottom:765.077333pt;}
.y2eb{bottom:765.369333pt;}
.y124{bottom:765.410667pt;}
.y7e{bottom:767.985333pt;}
.y2c6{bottom:768.733333pt;}
.y51{bottom:769.320000pt;}
.y238{bottom:770.116000pt;}
.y323{bottom:771.678667pt;}
.y21{bottom:772.216000pt;}
.y295{bottom:773.518667pt;}
.y1bd{bottom:775.316000pt;}
.y2f3{bottom:776.016000pt;}
.y357{bottom:777.077333pt;}
.y16{bottom:777.120000pt;}
.y7{bottom:777.200000pt;}
.y1bc{bottom:777.910667pt;}
.y123{bottom:778.744000pt;}
.y160{bottom:779.428000pt;}
.yb8{bottom:779.744000pt;}
.y2e1{bottom:780.122667pt;}
.yf3{bottom:781.077333pt;}
.y25c{bottom:781.762667pt;}
.y7d{bottom:783.985333pt;}
.y50{bottom:785.320000pt;}
.y294{bottom:786.852000pt;}
.y322{bottom:787.678667pt;}
.y15{bottom:787.786667pt;}
.y2f2{bottom:789.349333pt;}
.y20{bottom:789.549333pt;}
.y356{bottom:790.410667pt;}
.y1bb{bottom:790.454667pt;}
.y277{bottom:793.058667pt;}
.y1ba{bottom:793.166667pt;}
.y2e0{bottom:793.456000pt;}
.y15f{bottom:795.428000pt;}
.yb7{bottom:795.744000pt;}
.yf2{bottom:797.077333pt;}
.y14{bottom:798.453333pt;}
.y2c5{bottom:799.601333pt;}
.y7c{bottom:799.985333pt;}
.y293{bottom:800.185333pt;}
.y4f{bottom:801.320000pt;}
.y6{bottom:803.066667pt;}
.y321{bottom:803.678667pt;}
.y355{bottom:803.744000pt;}
.y1b9{bottom:805.861333pt;}
.y276{bottom:806.392000pt;}
.y2df{bottom:806.789333pt;}
.y1b8{bottom:808.633333pt;}
.y13{bottom:809.120000pt;}
.y15e{bottom:811.428000pt;}
.yb6{bottom:811.744000pt;}
.yf1{bottom:813.077333pt;}
.y292{bottom:813.518667pt;}
.y2c4{bottom:815.601333pt;}
.y7b{bottom:815.985333pt;}
.y354{bottom:817.077333pt;}
.y4e{bottom:817.320000pt;}
.y25b{bottom:818.462667pt;}
.y320{bottom:819.678667pt;}
.y12{bottom:819.786667pt;}
.y1b7{bottom:820.570667pt;}
.y1b6{bottom:823.300000pt;}
.y291{bottom:826.852000pt;}
.y15d{bottom:827.428000pt;}
.yb5{bottom:827.744000pt;}
.yf0{bottom:829.077333pt;}
.y353{bottom:830.410667pt;}
.y2c3{bottom:831.601333pt;}
.y7a{bottom:831.985333pt;}
.y25a{bottom:834.462667pt;}
.y31f{bottom:835.678667pt;}
.y1b5{bottom:838.556000pt;}
.y5{bottom:838.960000pt;}
.y18b{bottom:839.957333pt;}
.y18d{bottom:840.154667pt;}
.y18c{bottom:840.248000pt;}
.y11{bottom:840.453333pt;}
.y1f{bottom:840.801333pt;}
.yb4{bottom:843.744000pt;}
.yef{bottom:845.077333pt;}
.y2c2{bottom:847.601333pt;}
.y4d{bottom:847.985333pt;}
.y259{bottom:850.462667pt;}
.y10{bottom:851.120000pt;}
.y31e{bottom:851.678667pt;}
.y1b4{bottom:853.222667pt;}
.y352{bottom:857.077333pt;}
.yb3{bottom:859.744000pt;}
.y15b{bottom:859.776000pt;}
.yee{bottom:861.077333pt;}
.yf{bottom:861.786667pt;}
.y2c1{bottom:863.601333pt;}
.y258{bottom:866.462667pt;}
.y158{bottom:866.518667pt;}
.y31d{bottom:867.678667pt;}
.y1b3{bottom:868.420000pt;}
.y351{bottom:870.410667pt;}
.y15c{bottom:871.997333pt;}
.ye{bottom:872.453333pt;}
.y4{bottom:873.213333pt;}
.y153{bottom:875.665333pt;}
.yb2{bottom:875.744000pt;}
.yed{bottom:877.077333pt;}
.y156{bottom:879.393333pt;}
.y1b2{bottom:880.576000pt;}
.y1e{bottom:880.801333pt;}
.y257{bottom:882.462667pt;}
.y1b1{bottom:883.086667pt;}
.y31c{bottom:883.678667pt;}
.y350{bottom:883.744000pt;}
.y157{bottom:884.685333pt;}
.y155{bottom:887.393333pt;}
.y15a{bottom:888.330667pt;}
.yb1{bottom:891.744000pt;}
.y159{bottom:892.330667pt;}
.yec{bottom:893.077333pt;}
.yd{bottom:893.120000pt;}
.y154{bottom:895.393333pt;}
.y34f{bottom:897.077333pt;}
.y1b0{bottom:898.342667pt;}
.y256{bottom:898.462667pt;}
.y3{bottom:898.813333pt;}
.y31b{bottom:899.678667pt;}
.y4c{bottom:899.825333pt;}
.yc{bottom:903.786667pt;}
.yb0{bottom:907.744000pt;}
.yeb{bottom:909.077333pt;}
.y34e{bottom:910.410667pt;}
.y2c0{bottom:911.948000pt;}
.y1af{bottom:913.540000pt;}
.yb{bottom:914.453333pt;}
.y255{bottom:914.462667pt;}
.y1d{bottom:920.801333pt;}
.yaf{bottom:923.744000pt;}
.y2{bottom:924.413333pt;}
.yea{bottom:925.077333pt;}
.ya{bottom:925.120000pt;}
.y4b{bottom:926.452000pt;}
.y2bf{bottom:927.145333pt;}
.y1ae{bottom:928.206667pt;}
.y31a{bottom:930.345333pt;}
.y254{bottom:930.462667pt;}
.y9{bottom:935.786667pt;}
.y34d{bottom:937.077333pt;}
.yae{bottom:939.744000pt;}
.ye9{bottom:941.077333pt;}
.y2be{bottom:941.812000pt;}
.y4a{bottom:942.452000pt;}
.y1ad{bottom:942.873333pt;}
.y152{bottom:944.768000pt;}
.y34c{bottom:950.410667pt;}
.y14f{bottom:951.510667pt;}
.y1ac{bottom:954.826667pt;}
.yad{bottom:955.744000pt;}
.y253{bottom:956.953333pt;}
.y2bd{bottom:957.009333pt;}
.ye8{bottom:957.077333pt;}
.y14e{bottom:957.360000pt;}
.y1ab{bottom:957.540000pt;}
.y8{bottom:958.453333pt;}
.y252{bottom:960.093333pt;}
.y14d{bottom:960.656000pt;}
.y1c{bottom:960.801333pt;}
.y1{bottom:961.320000pt;}
.y34b{bottom:963.744000pt;}
.y250{bottom:967.530667pt;}
.y49{bottom:969.077333pt;}
.yac{bottom:971.744000pt;}
.ye7{bottom:973.077333pt;}
.y151{bottom:973.322667pt;}
.y251{bottom:976.773333pt;}
.y34a{bottom:977.077333pt;}
.y150{bottom:977.322667pt;}
.y1aa{bottom:982.036000pt;}
.y48{bottom:985.077333pt;}
.yab{bottom:987.744000pt;}
.y349{bottom:990.410667pt;}
.y47{bottom:1001.077333pt;}
.yaa{bottom:1003.744000pt;}
.y1a9{bottom:1005.561333pt;}
.y1b{bottom:1017.004000pt;}
.y18{bottom:1033.536000pt;}
.y1a{bottom:1036.325333pt;}
.y46{bottom:1043.705333pt;}
.h2b{height:2.133312pt;}
.h9{height:11.687493pt;}
.h14{height:12.399752pt;}
.h13{height:23.263612pt;}
.he{height:24.426812pt;}
.h2a{height:26.230400pt;}
.ha{height:26.805333pt;}
.h2c{height:27.242144pt;}
.hb{height:28.932920pt;}
.h15{height:31.018279pt;}
.h3{height:32.000000pt;}
.h4{height:32.714922pt;}
.h4a{height:33.599627pt;}
.h35{height:34.890279pt;}
.hf{height:34.895612pt;}
.h27{height:35.327607pt;}
.h10{height:35.375607pt;}
.h41{height:35.653079pt;}
.h3c{height:35.658412pt;}
.h4b{height:35.780951pt;}
.h21{height:35.999600pt;}
.h29{height:37.332960pt;}
.h11{height:38.772946pt;}
.h17{height:38.778279pt;}
.h7{height:38.937500pt;}
.h16{height:39.306274pt;}
.h18{height:39.999600pt;}
.h45{height:40.320107pt;}
.h49{height:41.900623pt;}
.h5{height:44.500000pt;}
.h22{height:44.907263pt;}
.h3a{height:44.912596pt;}
.h37{height:44.938279pt;}
.h23{height:45.274279pt;}
.h3b{height:45.743612pt;}
.h36{height:45.748946pt;}
.h38{height:45.812946pt;}
.h39{height:45.983612pt;}
.h26{height:46.548933pt;}
.h47{height:46.591477pt;}
.h12{height:46.596811pt;}
.h19{height:48.363733pt;}
.h1{height:50.062500pt;}
.h48{height:50.484811pt;}
.h43{height:51.860933pt;}
.h44{height:52.554267pt;}
.h1b{height:52.756946pt;}
.h1c{height:53.130279pt;}
.h3f{height:53.135612pt;}
.h1d{height:53.652946pt;}
.h31{height:53.658279pt;}
.h32{height:53.919612pt;}
.h2f{height:54.356933pt;}
.h3e{height:54.362267pt;}
.h40{height:54.884933pt;}
.hd{height:54.927612pt;}
.h25{height:55.019263pt;}
.h24{height:55.829930pt;}
.h1a{height:57.167612pt;}
.h1e{height:60.580811pt;}
.h20{height:61.476811pt;}
.h30{height:61.482144pt;}
.h1f{height:61.743477pt;}
.h2{height:64.000000pt;}
.h6{height:66.750000pt;}
.h2e{height:68.724811pt;}
.h34{height:75.354279pt;}
.h33{height:76.079600pt;}
.h3d{height:76.580933pt;}
.h28{height:88.036946pt;}
.h42{height:88.831600pt;}
.hc{height:94.334821pt;}
.h2d{height:110.911979pt;}
.h46{height:113.919979pt;}
.h8{height:1122.520000pt;}
.h0{height:1122.666667pt;}
.w3{width:230.961333pt;}
.w0{width:793.333333pt;}
.w1{width:793.706667pt;}
.w2{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:52.000000pt;}
.xa{left:63.761333pt;}
.x64{left:64.653333pt;}
.x63{left:70.653333pt;}
.x48{left:71.908000pt;}
.x5e{left:75.572000pt;}
.xe{left:79.701333pt;}
.xb{left:84.100933pt;}
.x16{left:92.626667pt;}
.x49{left:96.565333pt;}
.x60{left:99.858667pt;}
.x62{left:103.312000pt;}
.x3e{left:118.744000pt;}
.x38{left:127.056000pt;}
.xd{left:138.500000pt;}
.x24{left:141.252000pt;}
.x39{left:147.118667pt;}
.x3a{left:150.454667pt;}
.x3b{left:153.118667pt;}
.x3c{left:154.449333pt;}
.x25{left:169.917333pt;}
.x1e{left:179.740000pt;}
.x27{left:185.585333pt;}
.x1f{left:187.774667pt;}
.x9{left:189.426667pt;}
.x26{left:197.438667pt;}
.x20{left:213.273333pt;}
.x28{left:219.034667pt;}
.x29{left:220.928000pt;}
.x21{left:225.241333pt;}
.x22{left:227.134667pt;}
.x17{left:231.636000pt;}
.x2{left:236.800000pt;}
.x2a{left:239.776000pt;}
.x23{left:245.982667pt;}
.x3{left:256.933333pt;}
.x2c{left:259.366667pt;}
.x18{left:263.969333pt;}
.x47{left:276.532000pt;}
.x4{left:286.573333pt;}
.x2b{left:297.382667pt;}
.x40{left:305.876000pt;}
.x41{left:307.769333pt;}
.x3f{left:313.164000pt;}
.x14{left:315.714667pt;}
.x19{left:321.145333pt;}
.x42{left:326.616000pt;}
.x5{left:345.813333pt;}
.x5f{left:350.049333pt;}
.x15{left:371.405333pt;}
.x5d{left:394.572000pt;}
.x13{left:396.910667pt;}
.xf{left:407.474667pt;}
.x65{left:408.368000pt;}
.x46{left:411.181333pt;}
.x4b{left:414.806667pt;}
.x10{left:423.414667pt;}
.x4c{left:438.824000pt;}
.x61{left:447.026667pt;}
.x11{left:450.384000pt;}
.x56{left:454.485333pt;}
.x43{left:456.976000pt;}
.x51{left:462.312000pt;}
.x57{left:478.484000pt;}
.x53{left:481.872000pt;}
.x4d{left:483.624000pt;}
.x5a{left:485.613333pt;}
.x58{left:486.582667pt;}
.x54{left:488.345333pt;}
.x3d{left:494.753333pt;}
.x2d{left:498.309333pt;}
.x36{left:514.196000pt;}
.x55{left:516.897333pt;}
.x2e{left:525.677333pt;}
.x59{left:532.514667pt;}
.x4a{left:537.218667pt;}
.x6{left:538.213333pt;}
.x34{left:551.420000pt;}
.x2f{left:555.401333pt;}
.x8{left:558.213333pt;}
.x4e{left:560.160000pt;}
.x7{left:563.920000pt;}
.x30{left:575.365333pt;}
.x4f{left:577.778667pt;}
.x5b{left:581.645333pt;}
.x37{left:583.445333pt;}
.x1b{left:611.094667pt;}
.x1a{left:627.064000pt;}
.x32{left:629.182667pt;}
.x5c{left:633.286667pt;}
.x35{left:634.225333pt;}
.x1c{left:638.209333pt;}
.x33{left:652.117333pt;}
.x52{left:664.752000pt;}
.x1d{left:666.444000pt;}
.x12{left:670.992000pt;}
.xc{left:673.005333pt;}
.x44{left:678.246667pt;}
.x45{left:701.060000pt;}
.x31{left:715.120000pt;}
.x50{left:719.702667pt;}
}




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