
    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_9571ebc9893efbd0344b8984.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.897000;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_09c29ad22131d9fcf1074594.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9547adcdcbe7a8f8f93684ad.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5ac91787e4e80cea513b1d63.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.713000;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_f86f732284ddb7c099410988.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5ca7c199efc82e419cb0b602.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.983887;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_dd3196032de346fcaa343a92.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921875;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_cbb5c4fdb5e4e93f9db9dd4a.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_87d4b8cc383c6ff1a31d3499.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.895000;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_09d0ab2fc4e32d48843c2889.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_47b480eac15505e0ee9f8869.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.685000;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_0511798290c309a13381a18b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.962000;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_e0c1d6024fe6fd0df38b4f74.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.875000;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_40177c410eb24e1091952fdf.woff2')format("woff");}.ffe{font-family:ffe;line-height:2.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v27{vertical-align:-84.312000px;}
.v23{vertical-align:-47.850000px;}
.v25{vertical-align:-44.712000px;}
.v2{vertical-align:-17.357999px;}
.v7{vertical-align:-12.366000px;}
.v3{vertical-align:-9.030000px;}
.v15{vertical-align:-7.176000px;}
.v19{vertical-align:-4.410000px;}
.v0{vertical-align:0.000000px;}
.v1d{vertical-align:3.444000px;}
.v17{vertical-align:5.988000px;}
.v16{vertical-align:7.176000px;}
.v5{vertical-align:8.970000px;}
.v1c{vertical-align:10.422000px;}
.v8{vertical-align:12.366000px;}
.v9{vertical-align:14.796000px;}
.vf{vertical-align:15.816000px;}
.v10{vertical-align:17.058000px;}
.v11{vertical-align:18.804000px;}
.v4{vertical-align:21.696000px;}
.v1{vertical-align:23.868000px;}
.v12{vertical-align:29.586000px;}
.v1a{vertical-align:33.719999px;}
.vd{vertical-align:35.268000px;}
.vb{vertical-align:36.462000px;}
.ve{vertical-align:39.641999px;}
.v1b{vertical-align:41.844000px;}
.v13{vertical-align:43.277999px;}
.v18{vertical-align:44.538000px;}
.v6{vertical-align:45.654000px;}
.v14{vertical-align:48.174000px;}
.v21{vertical-align:50.892000px;}
.v1e{vertical-align:57.366000px;}
.v20{vertical-align:59.922000px;}
.v1f{vertical-align:79.062000px;}
.va{vertical-align:84.312000px;}
.v22{vertical-align:102.246000px;}
.v24{vertical-align:104.868000px;}
.vc{vertical-align:119.580000px;}
.v26{vertical-align:143.339996px;}
.ls6{letter-spacing:0.000000px;}
.ls65{letter-spacing:0.000017px;}
.lse{letter-spacing:0.000063px;}
.ls1{letter-spacing:0.001199px;}
.ls3{letter-spacing:0.001200px;}
.ls2c{letter-spacing:0.002384px;}
.ls41{letter-spacing:0.003004px;}
.ls38{letter-spacing:0.003195px;}
.ls95{letter-spacing:0.003292px;}
.ls17{letter-spacing:0.003633px;}
.ls6b{letter-spacing:0.003998px;}
.ls9{letter-spacing:0.004200px;}
.ls1c{letter-spacing:0.005100px;}
.ls62{letter-spacing:0.005108px;}
.ls32{letter-spacing:0.005334px;}
.ls84{letter-spacing:0.006063px;}
.ls1a{letter-spacing:0.178766px;}
.lscc{letter-spacing:0.840018px;}
.ls2{letter-spacing:2.964877px;}
.ls86{letter-spacing:2.985004px;}
.lscb{letter-spacing:2.986767px;}
.lsa{letter-spacing:2.987100px;}
.lsd3{letter-spacing:2.987676px;}
.ls7{letter-spacing:2.988018px;}
.lsca{letter-spacing:2.988780px;}
.ls0{letter-spacing:2.989200px;}
.ls91{letter-spacing:2.991004px;}
.lsb{letter-spacing:2.993100px;}
.lscd{letter-spacing:2.994018px;}
.lsc3{letter-spacing:3.106201px;}
.ls90{letter-spacing:3.166767px;}
.lsa4{letter-spacing:3.315633px;}
.lsa3{letter-spacing:3.316201px;}
.lsa9{letter-spacing:3.321634px;}
.ls27{letter-spacing:3.602339px;}
.ls6d{letter-spacing:4.095004px;}
.lsc7{letter-spacing:4.361109px;}
.ls5e{letter-spacing:4.757245px;}
.ls6f{letter-spacing:4.763245px;}
.ls36{letter-spacing:4.911269px;}
.ls26{letter-spacing:4.965596px;}
.ls46{letter-spacing:5.021108px;}
.ls1b{letter-spacing:5.268539px;}
.ls5a{letter-spacing:5.273437px;}
.ls98{letter-spacing:6.219148px;}
.lsb4{letter-spacing:6.453314px;}
.lsc1{letter-spacing:6.588539px;}
.ls1e{letter-spacing:6.590339px;}
.lsc6{letter-spacing:6.592438px;}
.ls5f{letter-spacing:6.596339px;}
.ls6c{letter-spacing:6.634200px;}
.ls7a{letter-spacing:6.638100px;}
.ls79{letter-spacing:6.644100px;}
.lsad{letter-spacing:6.814767px;}
.ls8f{letter-spacing:6.872913px;}
.lsac{letter-spacing:7.119269px;}
.lsb1{letter-spacing:7.352853px;}
.ls29{letter-spacing:7.353196px;}
.lsab{letter-spacing:8.247270px;}
.ls13{letter-spacing:8.250537px;}
.ls14{letter-spacing:8.256539px;}
.ls70{letter-spacing:8.298018px;}
.ls8e{letter-spacing:8.302199px;}
.lsc5{letter-spacing:8.307634px;}
.lsc4{letter-spacing:8.604007px;}
.ls5d{letter-spacing:8.610007px;}
.ls2e{letter-spacing:8.924339px;}
.lsc8{letter-spacing:9.024007px;}
.ls34{letter-spacing:9.629099px;}
.ls5c{letter-spacing:10.335004px;}
.lsb8{letter-spacing:10.728538px;}
.lsb7{letter-spacing:10.768201px;}
.ls25{letter-spacing:11.088539px;}
.ls66{letter-spacing:11.289004px;}
.ls12{letter-spacing:11.291099px;}
.ls67{letter-spacing:11.295004px;}
.ls89{letter-spacing:11.322538px;}
.ls8b{letter-spacing:11.328539px;}
.lsc2{letter-spacing:11.348726px;}
.ls71{letter-spacing:11.422193px;}
.lsa0{letter-spacing:11.513100px;}
.lsa1{letter-spacing:11.645099px;}
.ls63{letter-spacing:13.055245px;}
.ls42{letter-spacing:13.061244px;}
.ls9e{letter-spacing:13.097607px;}
.ls44{letter-spacing:13.230539px;}
.ls11{letter-spacing:13.236539px;}
.ls74{letter-spacing:13.241608px;}
.lsba{letter-spacing:13.248538px;}
.ls35{letter-spacing:13.263596px;}
.ls3f{letter-spacing:13.280382px;}
.lsc0{letter-spacing:13.282201px;}
.ls73{letter-spacing:13.284015px;}
.ls54{letter-spacing:13.286384px;}
.lsb9{letter-spacing:13.300201px;}
.lsc{letter-spacing:13.664339px;}
.lsbd{letter-spacing:13.667608px;}
.lsd{letter-spacing:13.673606px;}
.ls8{letter-spacing:13.714201px;}
.ls8a{letter-spacing:14.369099px;}
.ls19{letter-spacing:14.964472px;}
.ls99{letter-spacing:15.176912px;}
.ls18{letter-spacing:15.426538px;}
.ls37{letter-spacing:15.657196px;}
.lsb0{letter-spacing:15.696538px;}
.lsb3{letter-spacing:15.702539px;}
.lsb2{letter-spacing:15.742201px;}
.ls88{letter-spacing:16.133245px;}
.ls6a{letter-spacing:16.269004px;}
.ls72{letter-spacing:16.270193px;}
.ls2a{letter-spacing:16.271099px;}
.ls76{letter-spacing:16.273195px;}
.ls68{letter-spacing:16.275004px;}
.ls10{letter-spacing:16.275148px;}
.ls43{letter-spacing:16.277100px;}
.ls2b{letter-spacing:16.649100px;}
.lsbc{letter-spacing:16.697099px;}
.ls16{letter-spacing:16.731644px;}
.ls51{letter-spacing:16.908006px;}
.ls4{letter-spacing:16.969867px;}
.ls9d{letter-spacing:17.507109px;}
.ls24{letter-spacing:17.796472px;}
.ls6e{letter-spacing:17.936100px;}
.ls47{letter-spacing:18.041243px;}
.lsaf{letter-spacing:18.735004px;}
.ls4e{letter-spacing:18.779100px;}
.ls4d{letter-spacing:18.785100px;}
.lsd1{letter-spacing:18.911099px;}
.ls28{letter-spacing:19.569644px;}
.ls56{letter-spacing:19.817099px;}
.ls21{letter-spacing:19.828201px;}
.lsa6{letter-spacing:19.847100px;}
.lsa7{letter-spacing:19.943100px;}
.ls31{letter-spacing:20.252339px;}
.ls15{letter-spacing:20.406537px;}
.lsbb{letter-spacing:20.776201px;}
.ls53{letter-spacing:20.919633px;}
.ls4c{letter-spacing:21.161245px;}
.lsbf{letter-spacing:21.298766px;}
.ls59{letter-spacing:21.379200px;}
.ls61{letter-spacing:21.555633px;}
.lsbe{letter-spacing:21.684063px;}
.lsa2{letter-spacing:21.711643px;}
.ls45{letter-spacing:21.888007px;}
.ls4f{letter-spacing:21.894007px;}
.ls83{letter-spacing:22.001608px;}
.ls5b{letter-spacing:23.221200px;}
.ls9f{letter-spacing:23.603099px;}
.ls55{letter-spacing:23.613004px;}
.ls97{letter-spacing:23.714911px;}
.ls40{letter-spacing:23.745004px;}
.ls50{letter-spacing:23.751003px;}
.ls75{letter-spacing:23.909100px;}
.lsd2{letter-spacing:23.915100px;}
.ls9b{letter-spacing:24.123146px;}
.lsf{letter-spacing:24.689100px;}
.ls57{letter-spacing:24.791099px;}
.ls48{letter-spacing:24.929100px;}
.ls4b{letter-spacing:25.014005px;}
.ls87{letter-spacing:25.030193px;}
.ls82{letter-spacing:25.162193px;}
.ls3e{letter-spacing:25.581634px;}
.ls8d{letter-spacing:25.842018px;}
.ls3d{letter-spacing:26.723100px;}
.ls23{letter-spacing:27.501196px;}
.ls69{letter-spacing:27.819003px;}
.ls96{letter-spacing:28.065004px;}
.lsd0{letter-spacing:28.667098px;}
.ls5{letter-spacing:28.861868px;}
.ls2f{letter-spacing:28.943100px;}
.ls30{letter-spacing:29.447099px;}
.ls3a{letter-spacing:29.723100px;}
.lsa5{letter-spacing:29.765100px;}
.ls60{letter-spacing:30.275100px;}
.ls93{letter-spacing:30.453004px;}
.ls3b{letter-spacing:31.695597px;}
.ls8c{letter-spacing:32.211004px;}
.ls4a{letter-spacing:32.745004px;}
.ls22{letter-spacing:33.867596px;}
.ls3c{letter-spacing:34.083194px;}
.ls1f{letter-spacing:34.091100px;}
.lscf{letter-spacing:34.109100px;}
.ls94{letter-spacing:35.050765px;}
.ls20{letter-spacing:35.533196px;}
.lsce{letter-spacing:35.861100px;}
.ls33{letter-spacing:36.263097px;}
.lsb5{letter-spacing:36.633314px;}
.lsb6{letter-spacing:37.526852px;}
.ls9c{letter-spacing:37.842007px;}
.ls85{letter-spacing:39.683100px;}
.lsc9{letter-spacing:59.722438px;}
.ls77{letter-spacing:59.776201px;}
.ls78{letter-spacing:63.100201px;}
.lsae{letter-spacing:66.113100px;}
.ls80{letter-spacing:66.466201px;}
.ls7e{letter-spacing:72.206098px;}
.ls7c{letter-spacing:76.358100px;}
.ls7d{letter-spacing:77.996099px;}
.lsaa{letter-spacing:80.332201px;}
.ls1d{letter-spacing:81.665100px;}
.ls7f{letter-spacing:86.318100px;}
.ls7b{letter-spacing:93.794096px;}
.lsa8{letter-spacing:96.358201px;}
.ls81{letter-spacing:100.423006px;}
.ls92{letter-spacing:132.340767px;}
.ls9a{letter-spacing:355.168774px;}
.ls39{letter-spacing:379.366439px;}
.ls58{letter-spacing:381.323087px;}
.ls49{letter-spacing:450.857114px;}
.ls2d{letter-spacing:538.385099px;}
.ls52{letter-spacing:542.297100px;}
.ls64{letter-spacing:647.927122px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa8{word-spacing:-115.366905px;}
.ws8b{word-spacing:-59.775599px;}
.ws86{word-spacing:-47.324341px;}
.ws95{word-spacing:-46.565191px;}
.ws8c{word-spacing:-46.505416px;}
.wsc9{word-spacing:-44.233800px;}
.ws131{word-spacing:-17.932680px;}
.ws5a{word-spacing:-14.943900px;}
.ws17{word-spacing:-14.920027px;}
.ws2{word-spacing:-12.164400px;}
.ws99{word-spacing:-11.955150px;}
.ws7a{word-spacing:-11.058450px;}
.wsb6{word-spacing:-6.644208px;}
.wsed{word-spacing:-4.961375px;}
.ws51{word-spacing:-1.195512px;}
.ws45{word-spacing:-1.016185px;}
.ws12b{word-spacing:-0.836858px;}
.ws64{word-spacing:-0.777083px;}
.ws115{word-spacing:-0.717307px;}
.ws109{word-spacing:-0.537980px;}
.ws40{word-spacing:-0.478205px;}
.wsd3{word-spacing:-0.418429px;}
.ws14{word-spacing:-0.376589px;}
.ws23{word-spacing:-0.298878px;}
.wsd0{word-spacing:-0.239102px;}
.ws163{word-spacing:-0.191282px;}
.ws22{word-spacing:-0.179327px;}
.ws79{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.053798px;}
.ws3{word-spacing:-0.048658px;}
.ws7b{word-spacing:-0.044234px;}
.ws33{word-spacing:-0.035866px;}
.ws54{word-spacing:0.000000px;}
.ws5b{word-spacing:0.006214px;}
.wsd2{word-spacing:0.033184px;}
.wse7{word-spacing:0.191282px;}
.ws140{word-spacing:0.286924px;}
.ws1b{word-spacing:0.418429px;}
.wsd{word-spacing:0.591782px;}
.ws57{word-spacing:0.657532px;}
.ws134{word-spacing:0.669488px;}
.ws6d{word-spacing:0.777083px;}
.ws6e{word-spacing:0.836858px;}
.ws92{word-spacing:0.848134px;}
.ws10d{word-spacing:0.956410px;}
.ws16f{word-spacing:1.004233px;}
.ws16e{word-spacing:1.052053px;}
.ws1a{word-spacing:1.135736px;}
.ws12{word-spacing:1.183565px;}
.ws3b{word-spacing:1.315063px;}
.ws11b{word-spacing:1.374839px;}
.ws15a{word-spacing:1.386797px;}
.ws8f{word-spacing:1.434614px;}
.ws90{word-spacing:1.460136px;}
.ws4f{word-spacing:1.554166px;}
.ws91{word-spacing:1.613941px;}
.wse5{word-spacing:1.721542px;}
.ws116{word-spacing:1.733492px;}
.ws146{word-spacing:1.817183px;}
.wse9{word-spacing:1.853044px;}
.wsb5{word-spacing:1.877615px;}
.wsb4{word-spacing:1.912819px;}
.wsec{word-spacing:1.972595px;}
.ws34{word-spacing:2.056286px;}
.ws111{word-spacing:2.092146px;}
.ws3a{word-spacing:2.211697px;}
.wsf5{word-spacing:2.271473px;}
.ws16a{word-spacing:2.295389px;}
.wse2{word-spacing:2.331248px;}
.wsd6{word-spacing:2.391024px;}
.ws148{word-spacing:2.391030px;}
.ws107{word-spacing:2.450800px;}
.ws14e{word-spacing:2.582312px;}
.ws68{word-spacing:2.689902px;}
.ws66{word-spacing:2.749678px;}
.ws16b{word-spacing:2.964877px;}
.wsee{word-spacing:2.988780px;}
.wse8{word-spacing:3.012698px;}
.ws12a{word-spacing:3.048556px;}
.ws16c{word-spacing:3.060518px;}
.ws13b{word-spacing:3.156160px;}
.ws13a{word-spacing:3.251801px;}
.ws50{word-spacing:3.287658px;}
.ws12f{word-spacing:3.347434px;}
.ws97{word-spacing:3.395263px;}
.ws46{word-spacing:3.407209px;}
.ws2c{word-spacing:3.466985px;}
.wse{word-spacing:3.496896px;}
.ws141{word-spacing:3.586545px;}
.ws13{word-spacing:3.604493px;}
.ws60{word-spacing:3.646312px;}
.ws6f{word-spacing:3.765863px;}
.ws142{word-spacing:3.777827px;}
.wsf7{word-spacing:3.825638px;}
.ws14a{word-spacing:3.873469px;}
.ws19{word-spacing:3.885414px;}
.ws15b{word-spacing:3.921289px;}
.ws102{word-spacing:3.945190px;}
.wsf6{word-spacing:4.004965px;}
.ws10f{word-spacing:4.064741px;}
.wsfb{word-spacing:4.064751px;}
.ws21{word-spacing:4.124516px;}
.ws120{word-spacing:4.160392px;}
.ws61{word-spacing:4.184292px;}
.ws96{word-spacing:4.303854px;}
.ws13d{word-spacing:4.351675px;}
.ws137{word-spacing:4.399495px;}
.wsce{word-spacing:4.423394px;}
.ws13e{word-spacing:4.447316px;}
.ws15e{word-spacing:4.495136px;}
.wsf2{word-spacing:4.602721px;}
.wse4{word-spacing:4.722272px;}
.ws16d{word-spacing:4.734239px;}
.ws62{word-spacing:4.782048px;}
.ws32{word-spacing:4.782060px;}
.ws15f{word-spacing:4.783022px;}
.ws135{word-spacing:4.786999px;}
.ws81{word-spacing:4.841823px;}
.ws2e{word-spacing:4.901599px;}
.ws169{word-spacing:4.925522px;}
.ws159{word-spacing:4.973342px;}
.ws11e{word-spacing:5.068984px;}
.wscf{word-spacing:5.080926px;}
.ws55{word-spacing:5.140701px;}
.ws83{word-spacing:5.200477px;}
.ws136{word-spacing:5.212445px;}
.ws128{word-spacing:5.260253px;}
.ws10{word-spacing:5.272243px;}
.ws133{word-spacing:5.308087px;}
.ws118{word-spacing:5.320028px;}
.ws43{word-spacing:5.379804px;}
.ws2a{word-spacing:5.439579px;}
.ws165{word-spacing:5.499369px;}
.wsfe{word-spacing:5.595010px;}
.ws31{word-spacing:5.642831px;}
.ws2b{word-spacing:5.678682px;}
.ws145{word-spacing:5.738472px;}
.wsf3{word-spacing:5.858009px;}
.ws151{word-spacing:5.881934px;}
.ws113{word-spacing:5.910695px;}
.wsbf{word-spacing:5.917784px;}
.ws5c{word-spacing:5.932319px;}
.wsf1{word-spacing:5.935346px;}
.wsf0{word-spacing:5.935968px;}
.wsef{word-spacing:5.948003px;}
.wsa3{word-spacing:5.974313px;}
.wsa0{word-spacing:5.974345px;}
.wsba{word-spacing:5.974777px;}
.ws20{word-spacing:5.977560px;}
.ws94{word-spacing:5.977776px;}
.wsb9{word-spacing:5.977844px;}
.ws11f{word-spacing:6.025396px;}
.ws110{word-spacing:6.037335px;}
.ws123{word-spacing:6.156887px;}
.ws13c{word-spacing:6.168857px;}
.ws29{word-spacing:6.276438px;}
.ws101{word-spacing:6.312319px;}
.wsdd{word-spacing:6.395989px;}
.ws9d{word-spacing:6.455765px;}
.ws98{word-spacing:6.455781px;}
.wse6{word-spacing:6.503602px;}
.wsca{word-spacing:6.515540px;}
.ws63{word-spacing:6.575316px;}
.ws1{word-spacing:6.575340px;}
.wsfc{word-spacing:6.599243px;}
.ws67{word-spacing:6.635091px;}
.wsff{word-spacing:6.647063px;}
.ws2d{word-spacing:6.694867px;}
.ws138{word-spacing:6.694884px;}
.ws15{word-spacing:6.724800px;}
.ws100{word-spacing:6.742705px;}
.wsc5{word-spacing:6.746133px;}
.ws7c{word-spacing:6.754643px;}
.ws77{word-spacing:6.755287px;}
.ws158{word-spacing:6.790525px;}
.ws144{word-spacing:6.838346px;}
.ws69{word-spacing:6.933969px;}
.wsfd{word-spacing:6.933987px;}
.ws14f{word-spacing:7.029628px;}
.wsf4{word-spacing:7.053521px;}
.ws155{word-spacing:7.173090px;}
.wsfa{word-spacing:7.232847px;}
.ws6{word-spacing:7.316582px;}
.ws8d{word-spacing:7.336313px;}
.ws8e{word-spacing:7.352399px;}
.ws74{word-spacing:7.412174px;}
.ws157{word-spacing:7.412193px;}
.ws15d{word-spacing:7.507834px;}
.ws129{word-spacing:7.591501px;}
.ws3e{word-spacing:7.651277px;}
.ws11d{word-spacing:7.699117px;}
.wsea{word-spacing:7.711052px;}
.ws168{word-spacing:7.746937px;}
.ws56{word-spacing:7.770828px;}
.ws9{word-spacing:7.854566px;}
.wsf8{word-spacing:7.890379px;}
.ws30{word-spacing:7.950155px;}
.ws127{word-spacing:8.009930px;}
.ws28{word-spacing:8.129481px;}
.ws5d{word-spacing:8.189257px;}
.ws65{word-spacing:8.249033px;}
.ws9a{word-spacing:8.272964px;}
.ws47{word-spacing:8.308808px;}
.ws105{word-spacing:8.368584px;}
.ws75{word-spacing:8.428359px;}
.ws8a{word-spacing:8.488135px;}
.ws18{word-spacing:8.547911px;}
.ws132{word-spacing:8.607686px;}
.ws164{word-spacing:8.607708px;}
.ws160{word-spacing:8.703349px;}
.ws14b{word-spacing:8.751170px;}
.ws154{word-spacing:8.751919px;}
.ws89{word-spacing:8.787013px;}
.ws6a{word-spacing:8.846789px;}
.wsd5{word-spacing:8.906564px;}
.ws73{word-spacing:8.966340px;}
.ws108{word-spacing:9.026115px;}
.ws36{word-spacing:9.038093px;}
.wsf9{word-spacing:9.085891px;}
.ws106{word-spacing:9.145667px;}
.wsdc{word-spacing:9.265218px;}
.ws93{word-spacing:9.324993px;}
.wseb{word-spacing:9.504320px;}
.ws152{word-spacing:9.659761px;}
.wscb{word-spacing:9.683647px;}
.ws38{word-spacing:9.743423px;}
.ws104{word-spacing:9.803198px;}
.ws2f{word-spacing:9.862974px;}
.ws9f{word-spacing:9.886309px;}
.ws72{word-spacing:9.922749px;}
.ws48{word-spacing:10.042301px;}
.ws14d{word-spacing:10.042326px;}
.wsb3{word-spacing:10.102076px;}
.wsb2{word-spacing:10.111563px;}
.ws167{word-spacing:10.233608px;}
.ws147{word-spacing:10.329250px;}
.ws11a{word-spacing:10.341179px;}
.wsc1{word-spacing:10.400954px;}
.wsc0{word-spacing:10.411276px;}
.ws41{word-spacing:10.460730px;}
.ws14c{word-spacing:10.472711px;}
.wsd8{word-spacing:10.699832px;}
.ws10c{word-spacing:10.759608px;}
.ws117{word-spacing:10.819383px;}
.wsaf{word-spacing:10.879159px;}
.wsae{word-spacing:10.895444px;}
.ws27{word-spacing:10.998710px;}
.ws166{word-spacing:10.998738px;}
.wsd7{word-spacing:11.118261px;}
.ws150{word-spacing:11.142200px;}
.ws59{word-spacing:11.237813px;}
.wsf{word-spacing:11.243866px;}
.ws10e{word-spacing:11.357364px;}
.ws161{word-spacing:11.381303px;}
.ws162{word-spacing:11.429123px;}
.ws42{word-spacing:11.536691px;}
.ws12c{word-spacing:11.596466px;}
.ws112{word-spacing:11.656242px;}
.ws143{word-spacing:11.668226px;}
.ws53{word-spacing:11.775793px;}
.ws87{word-spacing:11.784125px;}
.ws88{word-spacing:11.786134px;}
.wsbd{word-spacing:11.832130px;}
.wsbe{word-spacing:11.835569px;}
.wscc{word-spacing:11.895344px;}
.ws7{word-spacing:11.943245px;}
.wsd1{word-spacing:11.955120px;}
.ws0{word-spacing:11.955150px;}
.wsda{word-spacing:12.014895px;}
.ws5e{word-spacing:12.074671px;}
.ws9c{word-spacing:12.313773px;}
.ws9b{word-spacing:12.336130px;}
.ws4b{word-spacing:12.373549px;}
.ws8{word-spacing:12.373632px;}
.wsb1{word-spacing:12.493100px;}
.wsb0{word-spacing:12.516130px;}
.ws6c{word-spacing:12.552876px;}
.ws1e{word-spacing:12.672427px;}
.ws52{word-spacing:12.732202px;}
.wse1{word-spacing:12.851754px;}
.wsd9{word-spacing:12.911529px;}
.wsbb{word-spacing:13.150632px;}
.ws6b{word-spacing:13.210407px;}
.ws1c{word-spacing:13.270183px;}
.wse3{word-spacing:13.329958px;}
.ws84{word-spacing:13.344127px;}
.ws4c{word-spacing:13.449510px;}
.ws119{word-spacing:13.509285px;}
.ws78{word-spacing:13.628836px;}
.wsb{word-spacing:13.664794px;}
.wse0{word-spacing:13.748388px;}
.wsdb{word-spacing:13.927714px;}
.ws35{word-spacing:13.963615px;}
.ws82{word-spacing:13.987490px;}
.wsc6{word-spacing:14.047266px;}
.ws13f{word-spacing:14.202718px;}
.wsad{word-spacing:14.276136px;}
.wsb7{word-spacing:14.286130px;}
.wsac{word-spacing:14.286368px;}
.ws139{word-spacing:14.441821px;}
.ws80{word-spacing:14.525470px;}
.ws125{word-spacing:14.585246px;}
.ws5f{word-spacing:14.645022px;}
.ws3c{word-spacing:14.764573px;}
.ws4d{word-spacing:14.824348px;}
.ws153{word-spacing:14.967848px;}
.ws71{word-spacing:15.063451px;}
.ws25{word-spacing:15.123226px;}
.wsc2{word-spacing:15.242778px;}
.ws15c{word-spacing:15.302592px;}
.wsc7{word-spacing:15.422104px;}
.wsdf{word-spacing:15.481880px;}
.ws12e{word-spacing:15.541656px;}
.ws5{word-spacing:16.031923px;}
.ws7f{word-spacing:16.139412px;}
.ws7e{word-spacing:16.158126px;}
.ws10b{word-spacing:16.199187px;}
.ws37{word-spacing:16.258963px;}
.ws1f{word-spacing:16.318738px;}
.ws7d{word-spacing:16.378514px;}
.ws156{word-spacing:16.402466px;}
.wscd{word-spacing:16.557841px;}
.ws26{word-spacing:16.677392px;}
.ws49{word-spacing:16.796943px;}
.wsc{word-spacing:16.892698px;}
.ws126{word-spacing:17.215372px;}
.ws3d{word-spacing:17.394699px;}
.ws130{word-spacing:17.633802px;}
.ws3f{word-spacing:17.693577px;}
.ws4e{word-spacing:17.753353px;}
.wsb8{word-spacing:17.813128px;}
.wsa{word-spacing:17.914867px;}
.ws16{word-spacing:17.932680px;}
.ws4a{word-spacing:18.112006px;}
.ws58{word-spacing:18.171782px;}
.ws149{word-spacing:18.219649px;}
.ws85{word-spacing:18.351109px;}
.wsd4{word-spacing:18.649987px;}
.ws76{word-spacing:18.889089px;}
.ws122{word-spacing:19.187967px;}
.ws10a{word-spacing:19.247743px;}
.ws24{word-spacing:19.367294px;}
.wsc4{word-spacing:19.427070px;}
.wsc3{word-spacing:19.486845px;}
.wsde{word-spacing:19.546621px;}
.ws103{word-spacing:19.606396px;}
.ws70{word-spacing:19.845499px;}
.ws121{word-spacing:20.084601px;}
.ws1d{word-spacing:20.204152px;}
.ws114{word-spacing:20.562806px;}
.ws39{word-spacing:21.041011px;}
.ws12d{word-spacing:21.220337px;}
.ws44{word-spacing:21.638767px;}
.wsab{word-spacing:21.742018px;}
.wsaa{word-spacing:21.758318px;}
.wsc8{word-spacing:21.877869px;}
.ws124{word-spacing:21.937645px;}
.ws11c{word-spacing:22.953830px;}
.ws11{word-spacing:24.585869px;}
.wsa7{word-spacing:62.277494px;}
.wsa4{word-spacing:68.024631px;}
.wsa5{word-spacing:83.762833px;}
.wsa6{word-spacing:89.552833px;}
.wsa1{word-spacing:110.704408px;}
.ws9e{word-spacing:113.214984px;}
.wsa9{word-spacing:129.353425px;}
.wsbc{word-spacing:167.311900px;}
.wsa2{word-spacing:356.322343px;}
._13{margin-left:-100.229276px;}
._7{margin-left:-6.754643px;}
._3{margin-left:-5.589072px;}
._b{margin-left:-4.156153px;}
._4{margin-left:-2.958912px;}
._0{margin-left:-1.912824px;}
._19{width:1.840744px;}
._5{width:2.988780px;}
._14{width:4.316158px;}
._e{width:6.508339px;}
._11{width:7.615944px;}
._1{width:9.138845px;}
._17{width:10.341183px;}
._1b{width:12.046882px;}
._d{width:13.391557px;}
._10{width:15.254771px;}
._15{width:18.351109px;}
._2{width:19.744013px;}
._c{width:22.894054px;}
._6{width:30.605111px;}
._18{width:33.743379px;}
._9{width:35.566481px;}
._16{width:40.934434px;}
._1d{width:45.955597px;}
._f{width:48.681371px;}
._1a{width:56.619590px;}
._1c{width:59.058441px;}
._8{width:62.931910px;}
._12{width:100.616735px;}
._a{width:556.032000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs8{font-size:42.000000px;}
.fs9{font-size:44.233800px;}
.fs5{font-size:47.820600px;}
.fs7{font-size:48.000000px;}
.fs2{font-size:48.657600px;}
.fs3{font-size:53.798400px;}
.fs4{font-size:59.775599px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:95.641199px;}
.y0{bottom:0.000000px;}
.y5c{bottom:32.862000px;}
.y5a{bottom:54.600000px;}
.y5b{bottom:90.000000px;}
.y12d{bottom:90.110992px;}
.y35{bottom:90.709463px;}
.y1a1{bottom:90.709466px;}
.y1c3{bottom:90.709489px;}
.y93{bottom:90.709503px;}
.y170{bottom:90.709505px;}
.y57{bottom:90.709517px;}
.y252{bottom:90.709524px;}
.y29c{bottom:90.711048px;}
.yee{bottom:91.226991px;}
.yed{bottom:92.398491px;}
.yec{bottom:96.089991px;}
.y29b{bottom:104.160047px;}
.y12c{bottom:108.044992px;}
.y34{bottom:108.497962px;}
.y1a0{bottom:108.641966px;}
.y1c2{bottom:108.641989px;}
.y92{bottom:108.642003px;}
.y16f{bottom:108.642005px;}
.y56{bottom:108.642017px;}
.y251{bottom:108.642024px;}
.y135{bottom:111.959986px;}
.y125{bottom:111.959993px;}
.yeb{bottom:113.642990px;}
.yea{bottom:114.079490px;}
.y29a{bottom:117.609047px;}
.ye9{bottom:118.505990px;}
.y33{bottom:119.258962px;}
.y134{bottom:121.508986px;}
.y124{bottom:121.508993px;}
.y16e{bottom:121.927505px;}
.y12b{bottom:125.977492px;}
.y19f{bottom:126.574466px;}
.y1c1{bottom:126.574489px;}
.y22e{bottom:126.574504px;}
.y55{bottom:126.574517px;}
.y91{bottom:126.576003px;}
.y16d{bottom:126.576005px;}
.y133{bottom:130.474486px;}
.y123{bottom:130.474493px;}
.y299{bottom:131.065546px;}
.y20f{bottom:131.518505px;}
.y12a{bottom:131.954992px;}
.y136{bottom:135.704986px;}
.y11d{bottom:135.704993px;}
.ye7{bottom:136.495490px;}
.y250{bottom:137.046024px;}
.y32{bottom:137.047461px;}
.ye8{bottom:137.230490px;}
.y129{bottom:137.932492px;}
.y132{bottom:139.441486px;}
.y122{bottom:139.441493px;}
.ye6{bottom:140.921990px;}
.y19e{bottom:144.508466px;}
.y1c0{bottom:144.508489px;}
.y16c{bottom:144.508505px;}
.y54{bottom:144.508517px;}
.y298{bottom:144.516046px;}
.y31{bottom:147.806961px;}
.y131{bottom:148.408486px;}
.y121{bottom:148.408493px;}
.y8f{bottom:149.412003px;}
.y127{bottom:153.787491px;}
.y130{bottom:157.373986px;}
.y120{bottom:157.373993px;}
.y297{bottom:157.972546px;}
.ye5{bottom:158.858990px;}
.y8e{bottom:159.663020px;}
.y90{bottom:159.664503px;}
.y128{bottom:159.764991px;}
.y20e{bottom:160.114504px;}
.y30{bottom:161.255960px;}
.y19d{bottom:162.440966px;}
.y1bf{bottom:162.440989px;}
.y22d{bottom:162.441004px;}
.y1db{bottom:162.441017px;}
.y53{bottom:162.520517px;}
.ye4{bottom:163.507490px;}
.y12f{bottom:166.340986px;}
.y11f{bottom:166.340993px;}
.y169{bottom:168.844505px;}
.y296{bottom:171.421545px;}
.y24f{bottom:173.230523px;}
.y168{bottom:174.232511px;}
.y20d{bottom:178.047004px;}
.y16a{bottom:179.097005px;}
.y167{bottom:179.097011px;}
.y19c{bottom:180.373466px;}
.y1be{bottom:180.373489px;}
.y22c{bottom:180.373504px;}
.y1da{bottom:180.373517px;}
.y52{bottom:180.453017px;}
.ye3{bottom:181.444490px;}
.y126{bottom:181.598991px;}
.y295{bottom:184.872045px;}
.ye2{bottom:186.091490px;}
.y16b{bottom:189.421505px;}
.y24e{bottom:191.163023px;}
.y8d{bottom:192.148520px;}
.y2f{bottom:192.199460px;}
.y12e{bottom:192.641986px;}
.y11e{bottom:192.641993px;}
.y20c{bottom:195.979504px;}
.y19b{bottom:198.305966px;}
.y1bd{bottom:198.305989px;}
.y22b{bottom:198.306004px;}
.y1d9{bottom:198.306017px;}
.y294{bottom:198.328545px;}
.y51{bottom:198.385517px;}
.ye0{bottom:204.029990px;}
.ydf{bottom:204.250490px;}
.ye1{bottom:204.985490px;}
.y11c{bottom:208.142993px;}
.y162{bottom:208.482010px;}
.yde{bottom:208.676990px;}
.y24d{bottom:209.095523px;}
.y2e{bottom:210.131960px;}
.y293{bottom:211.777544px;}
.y20b{bottom:213.912004px;}
.y15f{bottom:214.308001px;}
.y163{bottom:214.780510px;}
.y160{bottom:215.043001px;}
.y166{bottom:215.043010px;}
.y19a{bottom:216.238466px;}
.y1bc{bottom:216.238489px;}
.y22a{bottom:216.238504px;}
.y1d8{bottom:216.238517px;}
.y50{bottom:216.318017px;}
.y15e{bottom:218.734501px;}
.y165{bottom:218.734510px;}
.y8c{bottom:220.485020px;}
.y292{bottom:225.226544px;}
.ydd{bottom:226.613990px;}
.ydc{bottom:226.835990px;}
.y24c{bottom:227.028023px;}
.y2d{bottom:228.064460px;}
.y161{bottom:228.850501px;}
.y164{bottom:228.850510px;}
.ydb{bottom:231.262490px;}
.y20a{bottom:231.846004px;}
.y199{bottom:234.170966px;}
.y1bb{bottom:234.170989px;}
.y229{bottom:234.172504px;}
.y1d7{bottom:234.172517px;}
.y4f{bottom:234.252017px;}
.y11b{bottom:238.049992px;}
.y8b{bottom:238.417520px;}
.y291{bottom:238.684544px;}
.y24b{bottom:244.962023px;}
.y2c{bottom:245.996960px;}
.yd9{bottom:249.029990px;}
.y158{bottom:249.039000px;}
.yda{bottom:249.251990px;}
.y209{bottom:249.778504px;}
.y198{bottom:252.104966px;}
.y1ba{bottom:252.104989px;}
.y228{bottom:252.105004px;}
.y1d6{bottom:252.105017px;}
.y290{bottom:252.133543px;}
.y4e{bottom:252.184517px;}
.yd8{bottom:253.678489px;}
.y15c{bottom:254.427000px;}
.y155{bottom:255.599989px;}
.y159{bottom:255.600000px;}
.y8a{bottom:256.350020px;}
.y154{bottom:259.291489px;}
.y15b{bottom:259.291500px;}
.y24a{bottom:262.894523px;}
.y2b{bottom:263.929460px;}
.y157{bottom:265.240489px;}
.y28f{bottom:265.582542px;}
.y156{bottom:266.249989px;}
.y11a{bottom:267.611992px;}
.y208{bottom:267.711004px;}
.y15a{bottom:269.407500px;}
.y15d{bottom:269.616000px;}
.y197{bottom:269.825966px;}
.y1b9{bottom:270.037489px;}
.y227{bottom:270.037504px;}
.y1d5{bottom:270.037517px;}
.y4d{bottom:270.117017px;}
.y89{bottom:274.282520px;}
.y28e{bottom:279.039042px;}
.yd7{bottom:279.157489px;}
.y249{bottom:280.827023px;}
.y2a{bottom:281.861960px;}
.y207{bottom:285.643504px;}
.y196{bottom:287.758466px;}
.y1b8{bottom:287.969989px;}
.y226{bottom:287.970004px;}
.y1d4{bottom:287.970017px;}
.y4c{bottom:288.049517px;}
.y88{bottom:292.216520px;}
.y28d{bottom:292.489542px;}
.y119{bottom:293.092492px;}
.y118{bottom:293.827492px;}
.y117{bottom:297.518992px;}
.y248{bottom:298.759523px;}
.y29{bottom:299.795960px;}
.yd5{bottom:300.682490px;}
.yd6{bottom:300.946490px;}
.y206{bottom:303.576004px;}
.yd4{bottom:304.636490px;}
.y195{bottom:305.690966px;}
.y1b7{bottom:305.902489px;}
.y225{bottom:305.902504px;}
.y1d3{bottom:305.902517px;}
.y28c{bottom:305.938541px;}
.y4b{bottom:305.982017px;}
.y87{bottom:310.149020px;}
.y153{bottom:312.233986px;}
.y247{bottom:316.692023px;}
.y28{bottom:317.728460px;}
.y28b{bottom:319.387541px;}
.y116{bottom:319.934992px;}
.y205{bottom:321.510004px;}
.yd3{bottom:323.362490px;}
.y194{bottom:323.623466px;}
.y224{bottom:323.835004px;}
.y1d2{bottom:323.835017px;}
.y4a{bottom:323.914517px;}
.yd2{bottom:327.052490px;}
.y86{bottom:328.081520px;}
.y152{bottom:330.167986px;}
.y1b6{bottom:330.170989px;}
.y28a{bottom:332.845541px;}
.y246{bottom:334.624523px;}
.y27{bottom:335.660960px;}
.y204{bottom:339.442504px;}
.y193{bottom:341.555966px;}
.y223{bottom:341.769004px;}
.y1d1{bottom:341.769017px;}
.y49{bottom:341.928017px;}
.y115{bottom:342.350992px;}
.yd1{bottom:345.778490px;}
.y85{bottom:346.014020px;}
.y289{bottom:346.294540px;}
.y151{bottom:348.100486px;}
.yd0{bottom:349.468490px;}
.y245{bottom:352.558523px;}
.y26{bottom:353.593460px;}
.y203{bottom:357.375004px;}
.y192{bottom:359.489966px;}
.y288{bottom:359.751040px;}
.y48{bottom:359.860517px;}
.y1b5{bottom:362.147989px;}
.y84{bottom:363.946520px;}
.y1d0{bottom:364.377016px;}
.y222{bottom:364.384504px;}
.y150{bottom:366.032986px;}
.ycf{bottom:368.192990px;}
.y244{bottom:370.491023px;}
.y25{bottom:371.525960px;}
.yce{bottom:371.884491px;}
.y114{bottom:371.911492px;}
.y287{bottom:373.200039px;}
.y202{bottom:375.307504px;}
.y191{bottom:377.422466px;}
.y47{bottom:377.793017px;}
.y1b4{bottom:380.080489px;}
.y83{bottom:381.879020px;}
.y113{bottom:386.147992px;}
.y286{bottom:386.650539px;}
.y14f{bottom:388.748984px;}
.y24{bottom:389.458460px;}
.y14e{bottom:389.659484px;}
.y14d{bottom:389.921984px;}
.y112{bottom:390.191992px;}
.ycd{bottom:390.562491px;}
.y1cf{bottom:392.209516px;}
.y221{bottom:392.259004px;}
.y201{bottom:393.240004px;}
.y14c{bottom:393.613484px;}
.ycc{bottom:394.300491px;}
.y190{bottom:395.354966px;}
.y46{bottom:395.725517px;}
.y1b3{bottom:398.012989px;}
.y243{bottom:398.893522px;}
.y82{bottom:399.813020px;}
.y285{bottom:400.099539px;}
.y23{bottom:407.392460px;}
.y111{bottom:408.124492px;}
.y1ce{bottom:410.142016px;}
.y220{bottom:410.191504px;}
.y200{bottom:411.172504px;}
.y14b{bottom:412.337984px;}
.y18f{bottom:413.287466px;}
.y284{bottom:413.556038px;}
.y45{bottom:413.658017px;}
.y1b2{bottom:415.945489px;}
.y14a{bottom:416.029484px;}
.ycb{bottom:419.779491px;}
.y81{bottom:422.701520px;}
.y22{bottom:425.324960px;}
.y283{bottom:427.006538px;}
.y1cd{bottom:428.074516px;}
.y21f{bottom:428.124004px;}
.y1ff{bottom:429.106504px;}
.y18e{bottom:431.219966px;}
.y44{bottom:431.592017px;}
.y110{bottom:433.384491px;}
.y148{bottom:433.787984px;}
.y10f{bottom:434.293491px;}
.y149{bottom:434.696984px;}
.y242{bottom:435.079522px;}
.yca{bottom:437.713491px;}
.y10e{bottom:438.031491px;}
.y147{bottom:438.650984px;}
.y282{bottom:440.455537px;}
.y1b1{bottom:441.377989px;}
.y21{bottom:443.257460px;}
.y21e{bottom:446.056504px;}
.y18d{bottom:448.940966px;}
.y43{bottom:449.524517px;}
.yc9{bottom:450.944991px;}
.y80{bottom:451.327520px;}
.yc8{bottom:451.954491px;}
.y1fe{bottom:451.983004px;}
.y241{bottom:453.012022px;}
.y281{bottom:453.904537px;}
.yc7{bottom:455.645991px;}
.y10d{bottom:456.757491px;}
.y10c{bottom:460.447491px;}
.y20{bottom:461.189960px;}
.y21d{bottom:463.990504px;}
.y146{bottom:466.312484px;}
.y18c{bottom:466.874966px;}
.y280{bottom:467.361036px;}
.y42{bottom:467.457017px;}
.y7f{bottom:469.260020px;}
.y240{bottom:470.944522px;}
.y1b0{bottom:473.353488px;}
.yc6{bottom:473.578491px;}
.y1fd{bottom:475.029004px;}
.y10b{bottom:478.385991px;}
.y1cc{bottom:478.749016px;}
.y1f{bottom:479.122460px;}
.y10a{bottom:479.294991px;}
.y27f{bottom:480.811536px;}
.y21c{bottom:481.923004px;}
.y109{bottom:483.032992px;}
.y145{bottom:484.163984px;}
.y18b{bottom:484.807466px;}
.y41{bottom:485.389517px;}
.y7e{bottom:487.192520px;}
.yc5{bottom:487.246491px;}
.y23f{bottom:488.877022px;}
.y1af{bottom:491.285988px;}
.yc4{bottom:491.510991px;}
.y1cb{bottom:492.198016px;}
.y27e{bottom:494.260536px;}
.y1e{bottom:497.459960px;}
.y144{bottom:502.096484px;}
.y18a{bottom:502.739966px;}
.y40{bottom:503.322017px;}
.y1fc{bottom:503.625003px;}
.y21b{bottom:504.538503px;}
.y7d{bottom:505.125020px;}
.yc3{bottom:505.178991px;}
.y108{bottom:505.448992px;}
.y1ca{bottom:505.647015px;}
.y23e{bottom:506.809522px;}
.y27d{bottom:507.709535px;}
.y1ae{bottom:509.218488px;}
.yc2{bottom:509.443491px;}
.y1d{bottom:515.392460px;}
.y1c9{bottom:519.097515px;}
.y143{bottom:520.030484px;}
.y189{bottom:520.672466px;}
.y27c{bottom:521.160035px;}
.y3f{bottom:521.254517px;}
.y1fb{bottom:521.557503px;}
.y7c{bottom:523.059020px;}
.y23d{bottom:524.743522px;}
.y1ad{bottom:527.152488px;}
.yc1{bottom:530.969990px;}
.yc0{bottom:531.232491px;}
.y21a{bottom:532.413003px;}
.y1c8{bottom:532.546515px;}
.y1c{bottom:533.324960px;}
.y27b{bottom:534.616535px;}
.ybf{bottom:534.923991px;}
.y107{bottom:535.009492px;}
.y188{bottom:538.604966px;}
.y3e{bottom:539.188517px;}
.y7b{bottom:540.991520px;}
.y1fa{bottom:542.622003px;}
.y23c{bottom:542.676022px;}
.y1ac{bottom:545.084988px;}
.y1c7{bottom:545.995514px;}
.y142{bottom:547.610983px;}
.y27a{bottom:548.065534px;}
.y219{bottom:550.345503px;}
.y1b{bottom:551.257460px;}
.y106{bottom:552.943492px;}
.ybe{bottom:553.385990px;}
.ybd{bottom:553.648490px;}
.y187{bottom:556.537466px;}
.y3d{bottom:557.200517px;}
.ybc{bottom:557.339990px;}
.y7a{bottom:558.924020px;}
.y1f9{bottom:560.554503px;}
.y23b{bottom:560.608522px;}
.y279{bottom:561.516034px;}
.y1ab{bottom:563.017488px;}
.y218{bottom:568.278003px;}
.y1a{bottom:569.189960px;}
.y186{bottom:574.471466px;}
.y278{bottom:574.965034px;}
.y3c{bottom:575.133017px;}
.y141{bottom:575.270983px;}
.ybb{bottom:576.064490px;}
.y79{bottom:576.856520px;}
.y104{bottom:577.987491px;}
.y105{bottom:578.423991px;}
.y1f8{bottom:578.487003px;}
.y23a{bottom:578.541022px;}
.yba{bottom:579.754490px;}
.y1aa{bottom:580.949988px;}
.y103{bottom:582.850491px;}
.y217{bottom:586.210503px;}
.y19{bottom:587.122460px;}
.y277{bottom:588.414033px;}
.y185{bottom:592.403966px;}
.y3b{bottom:593.065517px;}
.y140{bottom:593.204983px;}
.y78{bottom:594.789020px;}
.y1f7{bottom:596.419503px;}
.y239{bottom:596.473522px;}
.yb9{bottom:598.432490px;}
.y1a9{bottom:598.882488px;}
.y102{bottom:600.839991px;}
.y101{bottom:601.574991px;}
.y276{bottom:601.870533px;}
.yb8{bottom:602.170490px;}
.y18{bottom:605.056460px;}
.y100{bottom:605.266491px;}
.y184{bottom:610.336466px;}
.y3a{bottom:610.998017px;}
.y13f{bottom:611.137483px;}
.y77{bottom:612.721520px;}
.y1f6{bottom:614.352003px;}
.y238{bottom:614.406022px;}
.y275{bottom:615.321033px;}
.y1a8{bottom:616.814988px;}
.yb7{bottom:620.848490px;}
.y17{bottom:622.988960px;}
.yff{bottom:623.255991px;}
.yb6{bottom:624.586490px;}
.yfe{bottom:627.682491px;}
.y274{bottom:628.770032px;}
.y39{bottom:628.932017px;}
.y13e{bottom:629.069983px;}
.y76{bottom:630.655520px;}
.y1f5{bottom:632.286003px;}
.y237{bottom:632.340022px;}
.y183{bottom:632.764465px;}
.y216{bottom:636.960003px;}
.y16{bottom:640.921460px;}
.y273{bottom:642.220532px;}
.yb5{bottom:643.264490px;}
.yb4{bottom:643.312490px;}
.yfd{bottom:645.671991px;}
.y38{bottom:646.864517px;}
.yb3{bottom:647.002490px;}
.y75{bottom:648.588020px;}
.yfc{bottom:650.098491px;}
.y236{bottom:650.272522px;}
.y215{bottom:650.409003px;}
.y1f4{bottom:653.350503px;}
.y272{bottom:655.677032px;}
.y13d{bottom:656.650482px;}
.y182{bottom:659.515465px;}
.y214{bottom:663.858002px;}
.yb2{bottom:665.680490px;}
.yb1{bottom:665.726990px;}
.y15{bottom:665.983460px;}
.y74{bottom:666.520520px;}
.yfb{bottom:668.035490px;}
.y235{bottom:668.205022px;}
.y1a7{bottom:669.063010px;}
.y271{bottom:669.126031px;}
.yb0{bottom:669.418490px;}
.y1f3{bottom:671.283003px;}
.yfa{bottom:672.683990px;}
.y213{bottom:677.308502px;}
.y181{bottom:677.447965px;}
.y1a6{bottom:682.513510px;}
.y270{bottom:682.575030px;}
.y13c{bottom:684.311982px;}
.y73{bottom:684.525020px;}
.y234{bottom:686.137522px;}
.yae{bottom:688.096490px;}
.yaf{bottom:688.142990px;}
.y1f2{bottom:689.215503px;}
.yad{bottom:691.834490px;}
.y180{bottom:695.380465px;}
.y1a5{bottom:695.962509px;}
.y26f{bottom:696.025530px;}
.y14{bottom:697.433959px;}
.y37{bottom:698.083517px;}
.y13b{bottom:702.244482px;}
.yf9{bottom:702.244490px;}
.y72{bottom:702.457520px;}
.y233{bottom:704.070022px;}
.y1f1{bottom:707.148003px;}
.y26e{bottom:709.482030px;}
.y36{bottom:711.532516px;}
.y13{bottom:712.378459px;}
.y17f{bottom:713.314465px;}
.y13a{bottom:715.750482px;}
.yac{bottom:717.313490px;}
.y139{bottom:720.176982px;}
.yf8{bottom:720.176990px;}
.y71{bottom:720.390020px;}
.y232{bottom:722.002522px;}
.y26d{bottom:722.931029px;}
.y1f0{bottom:725.080503px;}
.y12{bottom:727.322959px;}
.y17e{bottom:731.246965px;}
.yf7{bottom:733.246490px;}
.yf5{bottom:733.682990px;}
.y138{bottom:733.844982px;}
.yab{bottom:735.247490px;}
.yf6{bottom:736.055990px;}
.y26c{bottom:736.381529px;}
.y137{bottom:738.109482px;}
.yf4{bottom:738.109490px;}
.y70{bottom:738.322520px;}
.y231{bottom:740.896522px;}
.y11{bottom:742.265958px;}
.y1ef{bottom:743.013003px;}
.y17d{bottom:749.179465px;}
.y26b{bottom:749.830529px;}
.yaa{bottom:753.179990px;}
.y6f{bottom:756.255020px;}
.y10{bottom:757.210458px;}
.y230{bottom:758.829022px;}
.y26a{bottom:763.287028px;}
.y1ee{bottom:764.077503px;}
.y17c{bottom:767.111965px;}
.ya9{bottom:771.112490px;}
.yf{bottom:772.153458px;}
.y6e{bottom:774.187520px;}
.y269{bottom:776.736028px;}
.y22f{bottom:776.761522px;}
.y1ed{bottom:782.011503px;}
.y17b{bottom:785.044465px;}
.ye{bottom:787.097958px;}
.ya8{bottom:789.044990px;}
.yf3{bottom:789.116992px;}
.y268{bottom:790.186528px;}
.y6d{bottom:792.121520px;}
.y1ec{bottom:799.944003px;}
.yd{bottom:802.042458px;}
.yf2{bottom:802.565991px;}
.y267{bottom:803.643027px;}
.y17a{bottom:804.395966px;}
.y6c{bottom:810.054020px;}
.y178{bottom:810.336017px;}
.ya7{bottom:812.525990px;}
.y179{bottom:815.439017px;}
.yf1{bottom:816.016491px;}
.yc{bottom:816.985458px;}
.y266{bottom:817.092027px;}
.y1eb{bottom:817.876503px;}
.y177{bottom:819.153017px;}
.ya6{bottom:821.342990px;}
.ya5{bottom:825.041990px;}
.y212{bottom:827.768988px;}
.y6b{bottom:827.986520px;}
.yf0{bottom:829.465490px;}
.y265{bottom:830.542527px;}
.yb{bottom:831.929958px;}
.y1ea{bottom:835.809003px;}
.y211{bottom:841.217988px;}
.yef{bottom:842.914490px;}
.y264{bottom:843.999026px;}
.y6a{bottom:845.919020px;}
.ya{bottom:846.874458px;}
.ya4{bottom:852.874490px;}
.y1e9{bottom:853.741503px;}
.y176{bottom:853.813517px;}
.y210{bottom:854.668488px;}
.y263{bottom:857.448026px;}
.ya3{bottom:861.691490px;}
.y9{bottom:861.817458px;}
.y69{bottom:863.851520px;}
.ya2{bottom:865.390490px;}
.y262{bottom:870.897025px;}
.y1e8{bottom:871.674003px;}
.y8{bottom:876.761958px;}
.y2ad{bottom:879.751574px;}
.y175{bottom:881.722519px;}
.y68{bottom:881.856020px;}
.y261{bottom:884.353525px;}
.y1e7{bottom:889.608003px;}
.y1c6{bottom:890.209509px;}
.y174{bottom:890.539519px;}
.y7{bottom:891.706458px;}
.y2ac{bottom:893.200574px;}
.ya1{bottom:894.142489px;}
.y1a4{bottom:895.477545px;}
.y260{bottom:897.804025px;}
.y67{bottom:899.788520px;}
.y1c5{bottom:903.658509px;}
.y6{bottom:906.649458px;}
.y2ab{bottom:906.651074px;}
.y1e6{bottom:907.540503px;}
.y1a3{bottom:908.928045px;}
.y25f{bottom:911.253024px;}
.ya0{bottom:912.074989px;}
.y9f{bottom:915.773989px;}
.y1c4{bottom:917.109009px;}
.y66{bottom:917.721020px;}
.y2aa{bottom:920.100073px;}
.y5{bottom:921.593958px;}
.y1a2{bottom:922.377045px;}
.y25e{bottom:924.709524px;}
.y1e5{bottom:925.473003px;}
.y9e{bottom:930.007489px;}
.y173{bottom:933.549019px;}
.y2a9{bottom:933.550573px;}
.y65{bottom:935.655020px;}
.y4{bottom:936.538458px;}
.y25d{bottom:938.160024px;}
.y1e4{bottom:943.405503px;}
.y2a8{bottom:946.999572px;}
.y9d{bottom:947.939989px;}
.y3{bottom:951.481458px;}
.y172{bottom:951.481519px;}
.y25c{bottom:951.609023px;}
.y64{bottom:958.722020px;}
.y2a7{bottom:960.448572px;}
.y1e3{bottom:964.470003px;}
.y25b{bottom:965.058023px;}
.y171{bottom:969.414019px;}
.y2a6{bottom:973.899072px;}
.y9c{bottom:974.072989px;}
.y9b{bottom:977.182489px;}
.y25a{bottom:978.508523px;}
.y1e2{bottom:982.402503px;}
.y63{bottom:987.348019px;}
.y2a5{bottom:987.348071px;}
.y259{bottom:991.965022px;}
.y9a{bottom:998.305489px;}
.y1e1{bottom:1000.336503px;}
.y2a4{bottom:1000.797071px;}
.y99{bottom:1001.413489px;}
.y62{bottom:1005.280519px;}
.y258{bottom:1005.414022px;}
.y2{bottom:1013.362455px;}
.y2a3{bottom:1014.247571px;}
.y1e0{bottom:1018.269003px;}
.y257{bottom:1018.870521px;}
.y61{bottom:1023.213019px;}
.y98{bottom:1023.784488px;}
.y2a2{bottom:1027.696570px;}
.y256{bottom:1032.321021px;}
.y1df{bottom:1036.201503px;}
.y60{bottom:1041.145519px;}
.y2a1{bottom:1041.147070px;}
.y97{bottom:1041.716988px;}
.y255{bottom:1045.777521px;}
.y1de{bottom:1054.134003px;}
.y2a0{bottom:1054.596069px;}
.y96{bottom:1059.077988px;}
.y5f{bottom:1059.078019px;}
.y254{bottom:1059.226520px;}
.y1{bottom:1060.435455px;}
.y29f{bottom:1068.045069px;}
.y1dd{bottom:1072.066503px;}
.y253{bottom:1072.675519px;}
.y95{bottom:1077.010488px;}
.y5e{bottom:1077.010519px;}
.y29e{bottom:1081.495569px;}
.y94{bottom:1094.944488px;}
.y1dc{bottom:1094.944502px;}
.y5d{bottom:1094.944519px;}
.y29d{bottom:1094.944568px;}
.y59{bottom:1123.200000px;}
.y58{bottom:1137.600000px;}
.h3b{height:2.391024px;}
.h7{height:26.899200px;}
.h17{height:30.344387px;}
.h4e{height:32.733012px;}
.h6{height:32.900573px;}
.h52{height:33.134573px;}
.h51{height:33.140573px;}
.h19{height:33.175350px;}
.h9{height:35.695312px;}
.h31{height:35.865450px;}
.h8{height:37.125000px;}
.h4{height:37.174694px;}
.h3{height:37.605082px;}
.hb{height:41.006061px;}
.h5{height:41.125612px;}
.ha{height:43.804688px;}
.hf{height:44.233943px;}
.hd{height:44.831699px;}
.h11{height:44.951250px;}
.h21{height:52.040387px;}
.h1f{height:52.046387px;}
.h38{height:53.810387px;}
.hc{height:54.871350px;}
.h3f{height:54.877350px;}
.h50{height:54.991612px;}
.h1c{height:55.028386px;}
.h15{height:55.034385px;}
.h1e{height:56.941612px;}
.h12{height:57.269699px;}
.h49{height:57.337350px;}
.h4d{height:57.865349px;}
.h20{height:58.183612px;}
.h37{height:59.591699px;}
.h2a{height:59.597699px;}
.h10{height:59.627699px;}
.h1b{height:59.783699px;}
.h24{height:59.929612px;}
.h26{height:59.930387px;}
.h2{height:60.361200px;}
.h33{height:60.577612px;}
.h42{height:60.647699px;}
.h3a{height:61.007699px;}
.h34{height:62.537699px;}
.h36{height:63.419699px;}
.h2c{height:63.425699px;}
.h30{height:64.283699px;}
.h1{height:66.088069px;}
.h23{height:66.806387px;}
.h32{height:68.144387px;}
.h22{height:69.098387px;}
.h1a{height:69.794385px;}
.h18{height:69.800385px;}
.h16{height:69.986385px;}
.h39{height:69.986387px;}
.h1d{height:70.844386px;}
.h25{height:70.850385px;}
.h3e{height:71.929350px;}
.h2d{height:72.734386px;}
.h29{height:73.622385px;}
.h40{height:74.480386px;}
.h44{height:74.486386px;}
.h2f{height:74.696387px;}
.h35{height:74.882387px;}
.h41{height:75.746387px;}
.h28{height:77.636387px;}
.h2b{height:78.518387px;}
.h27{height:78.524387px;}
.h2e{height:79.382387px;}
.h43{height:79.388387px;}
.h3d{height:82.969612px;}
.h48{height:86.129698px;}
.h13{height:86.703024px;}
.h3c{height:88.945612px;}
.he{height:90.485699px;}
.h46{height:96.038386px;}
.h47{height:100.928061px;}
.h4a{height:104.637024px;}
.h45{height:109.406387px;}
.h14{height:121.971024px;}
.h4b{height:138.043350px;}
.h4c{height:139.905024px;}
.h4f{height:145.731020px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:25.500000px;}
.x4{left:81.000011px;}
.x1{left:83.862000px;}
.x82{left:86.977504px;}
.xa{left:91.347750px;}
.x6{left:93.702011px;}
.x3{left:95.944508px;}
.xb{left:100.989000px;}
.x83{left:108.388504px;}
.x43{left:130.467011px;}
.x4e{left:140.251507px;}
.x39{left:151.720492px;}
.x2{left:156.444000px;}
.x7c{left:158.648998px;}
.xc{left:160.395000px;}
.x79{left:164.848507px;}
.x3a{left:172.307992px;}
.x4f{left:179.311506px;}
.x3e{left:186.673505px;}
.x50{left:189.264006px;}
.x52{left:191.131498px;}
.x3b{left:195.538492px;}
.x4d{left:198.708011px;}
.xd{left:202.869000px;}
.x5{left:206.289011px;}
.x7e{left:210.391502px;}
.x44{left:214.465505px;}
.x4c{left:216.327004px;}
.x46{left:219.376510px;}
.x3c{left:220.870492px;}
.x81{left:222.757507px;}
.x40{left:228.845998px;}
.x48{left:233.497507px;}
.x78{left:236.698507px;}
.x3d{left:242.077491px;}
.x3f{left:243.586505px;}
.x4a{left:253.304994px;}
.x76{left:259.621503px;}
.x41{left:261.163496px;}
.x42{left:263.264995px;}
.x7a{left:267.460507px;}
.x47{left:272.647509px;}
.x45{left:276.948005px;}
.x85{left:286.704014px;}
.x84{left:289.972514px;}
.xe{left:306.799507px;}
.x49{left:315.012007px;}
.x51{left:318.541502px;}
.x53{left:329.950495px;}
.x54{left:343.223995px;}
.x4b{left:356.528993px;}
.x77{left:384.099002px;}
.x7b{left:391.761006px;}
.xf{left:397.194007px;}
.x38{left:448.992000px;}
.x7{left:469.800018px;}
.x14{left:473.214028px;}
.x29{left:478.930517px;}
.x68{left:481.599015px;}
.x8{left:484.744518px;}
.x58{left:490.960453px;}
.x5f{left:493.874914px;}
.x15{left:495.175528px;}
.x86{left:497.188506px;}
.x59{left:500.090953px;}
.x5b{left:505.889954px;}
.x26{left:521.008512px;}
.x2a{left:523.813516px;}
.x57{left:525.883500px;}
.x69{left:527.020514px;}
.x12{left:531.058534px;}
.x5c{left:537.058453px;}
.x61{left:544.543488px;}
.x75{left:549.095991px;}
.x13{left:550.771534px;}
.x6a{left:553.466995px;}
.x5a{left:562.033452px;}
.x60{left:563.797412px;}
.x80{left:574.399518px;}
.x17{left:582.078024px;}
.x1a{left:583.932022px;}
.x16{left:585.493524px;}
.x19{left:587.346022px;}
.x31{left:590.940015px;}
.x7f{left:593.094013px;}
.x5d{left:594.401952px;}
.x1c{left:597.028527px;}
.x70{left:599.692520px;}
.x2b{left:601.882516px;}
.x56{left:603.765002px;}
.x1d{left:606.159027px;}
.x63{left:607.628998px;}
.x2c{left:611.013016px;}
.x62{left:612.197987px;}
.x27{left:617.745010px;}
.x36{left:620.614510px;}
.x10{left:621.655524px;}
.x32{left:623.980512px;}
.x33{left:626.233513px;}
.x6b{left:627.334488px;}
.x35{left:628.725014px;}
.x64{left:633.547498px;}
.x24{left:635.833518px;}
.x34{left:638.721015px;}
.x1e{left:639.819026px;}
.x1f{left:641.452523px;}
.x71{left:642.972015px;}
.x18{left:644.433022px;}
.x1b{left:646.285521px;}
.x21{left:653.940022px;}
.x2e{left:655.698016px;}
.x2d{left:658.795516px;}
.x28{left:664.957510px;}
.x11{left:666.150024px;}
.x22{left:671.517023px;}
.x23{left:673.618521px;}
.x20{left:675.112523px;}
.x2f{left:676.372516px;}
.x30{left:678.472515px;}
.x37{left:683.590509px;}
.x55{left:695.504995px;}
.x25{left:701.332517px;}
.x7d{left:702.775550px;}
.x65{left:711.353999px;}
.x5e{left:719.501950px;}
.x6c{left:730.061986px;}
.x6d{left:740.261986px;}
.x67{left:741.576004px;}
.x66{left:745.729498px;}
.x6e{left:750.029984px;}
.x73{left:756.652496px;}
.x72{left:760.807514px;}
.x74{left:782.156996px;}
.x6f{left:785.300983px;}
@media print{
.v27{vertical-align:-74.944000pt;}
.v23{vertical-align:-42.533333pt;}
.v25{vertical-align:-39.744000pt;}
.v2{vertical-align:-15.429333pt;}
.v7{vertical-align:-10.992000pt;}
.v3{vertical-align:-8.026667pt;}
.v15{vertical-align:-6.378667pt;}
.v19{vertical-align:-3.920000pt;}
.v0{vertical-align:0.000000pt;}
.v1d{vertical-align:3.061333pt;}
.v17{vertical-align:5.322667pt;}
.v16{vertical-align:6.378667pt;}
.v5{vertical-align:7.973333pt;}
.v1c{vertical-align:9.264000pt;}
.v8{vertical-align:10.992000pt;}
.v9{vertical-align:13.152000pt;}
.vf{vertical-align:14.058667pt;}
.v10{vertical-align:15.162667pt;}
.v11{vertical-align:16.714667pt;}
.v4{vertical-align:19.285333pt;}
.v1{vertical-align:21.216000pt;}
.v12{vertical-align:26.298667pt;}
.v1a{vertical-align:29.973332pt;}
.vd{vertical-align:31.349333pt;}
.vb{vertical-align:32.410667pt;}
.ve{vertical-align:35.237332pt;}
.v1b{vertical-align:37.194667pt;}
.v13{vertical-align:38.469332pt;}
.v18{vertical-align:39.589333pt;}
.v6{vertical-align:40.581333pt;}
.v14{vertical-align:42.821333pt;}
.v21{vertical-align:45.237333pt;}
.v1e{vertical-align:50.992000pt;}
.v20{vertical-align:53.264000pt;}
.v1f{vertical-align:70.277333pt;}
.va{vertical-align:74.944000pt;}
.v22{vertical-align:90.885333pt;}
.v24{vertical-align:93.216000pt;}
.vc{vertical-align:106.293333pt;}
.v26{vertical-align:127.413330pt;}
.ls6{letter-spacing:0.000000pt;}
.ls65{letter-spacing:0.000015pt;}
.lse{letter-spacing:0.000056pt;}
.ls1{letter-spacing:0.001066pt;}
.ls3{letter-spacing:0.001067pt;}
.ls2c{letter-spacing:0.002119pt;}
.ls41{letter-spacing:0.002670pt;}
.ls38{letter-spacing:0.002840pt;}
.ls95{letter-spacing:0.002926pt;}
.ls17{letter-spacing:0.003229pt;}
.ls6b{letter-spacing:0.003554pt;}
.ls9{letter-spacing:0.003733pt;}
.ls1c{letter-spacing:0.004533pt;}
.ls62{letter-spacing:0.004541pt;}
.ls32{letter-spacing:0.004741pt;}
.ls84{letter-spacing:0.005389pt;}
.ls1a{letter-spacing:0.158903pt;}
.lscc{letter-spacing:0.746683pt;}
.ls2{letter-spacing:2.635446pt;}
.ls86{letter-spacing:2.653337pt;}
.lscb{letter-spacing:2.654904pt;}
.lsa{letter-spacing:2.655200pt;}
.lsd3{letter-spacing:2.655712pt;}
.ls7{letter-spacing:2.656016pt;}
.lsca{letter-spacing:2.656693pt;}
.ls0{letter-spacing:2.657067pt;}
.ls91{letter-spacing:2.658670pt;}
.lsb{letter-spacing:2.660533pt;}
.lscd{letter-spacing:2.661349pt;}
.lsc3{letter-spacing:2.761067pt;}
.ls90{letter-spacing:2.814904pt;}
.lsa4{letter-spacing:2.947230pt;}
.lsa3{letter-spacing:2.947734pt;}
.lsa9{letter-spacing:2.952564pt;}
.ls27{letter-spacing:3.202079pt;}
.ls6d{letter-spacing:3.640003pt;}
.lsc7{letter-spacing:3.876542pt;}
.ls5e{letter-spacing:4.228662pt;}
.ls6f{letter-spacing:4.233995pt;}
.ls36{letter-spacing:4.365572pt;}
.ls26{letter-spacing:4.413863pt;}
.ls46{letter-spacing:4.463207pt;}
.ls1b{letter-spacing:4.683145pt;}
.ls5a{letter-spacing:4.687500pt;}
.ls98{letter-spacing:5.528131pt;}
.lsb4{letter-spacing:5.736279pt;}
.lsc1{letter-spacing:5.856480pt;}
.ls1e{letter-spacing:5.858079pt;}
.lsc6{letter-spacing:5.859945pt;}
.ls5f{letter-spacing:5.863412pt;}
.ls6c{letter-spacing:5.897067pt;}
.ls7a{letter-spacing:5.900533pt;}
.ls79{letter-spacing:5.905867pt;}
.lsad{letter-spacing:6.057571pt;}
.ls8f{letter-spacing:6.109256pt;}
.lsac{letter-spacing:6.328239pt;}
.lsb1{letter-spacing:6.535870pt;}
.ls29{letter-spacing:6.536175pt;}
.lsab{letter-spacing:7.330906pt;}
.ls13{letter-spacing:7.333811pt;}
.ls14{letter-spacing:7.339146pt;}
.ls70{letter-spacing:7.376016pt;}
.ls8e{letter-spacing:7.379733pt;}
.lsc5{letter-spacing:7.384564pt;}
.lsc4{letter-spacing:7.648006pt;}
.ls5d{letter-spacing:7.653340pt;}
.ls2e{letter-spacing:7.932746pt;}
.lsc8{letter-spacing:8.021340pt;}
.ls34{letter-spacing:8.559199pt;}
.ls5c{letter-spacing:9.186670pt;}
.lsb8{letter-spacing:9.536478pt;}
.lsb7{letter-spacing:9.571734pt;}
.ls25{letter-spacing:9.856480pt;}
.ls66{letter-spacing:10.034670pt;}
.ls12{letter-spacing:10.036532pt;}
.ls67{letter-spacing:10.040003pt;}
.ls89{letter-spacing:10.064478pt;}
.ls8b{letter-spacing:10.069813pt;}
.lsc2{letter-spacing:10.087756pt;}
.ls71{letter-spacing:10.153060pt;}
.lsa0{letter-spacing:10.233867pt;}
.lsa1{letter-spacing:10.351199pt;}
.ls63{letter-spacing:11.604662pt;}
.ls42{letter-spacing:11.609994pt;}
.ls9e{letter-spacing:11.642318pt;}
.ls44{letter-spacing:11.760480pt;}
.ls11{letter-spacing:11.765813pt;}
.ls74{letter-spacing:11.770319pt;}
.lsba{letter-spacing:11.776478pt;}
.ls35{letter-spacing:11.789863pt;}
.ls3f{letter-spacing:11.804784pt;}
.lsc0{letter-spacing:11.806401pt;}
.ls73{letter-spacing:11.808014pt;}
.ls54{letter-spacing:11.810119pt;}
.lsb9{letter-spacing:11.822401pt;}
.lsc{letter-spacing:12.146079pt;}
.lsbd{letter-spacing:12.148985pt;}
.lsd{letter-spacing:12.154316pt;}
.ls8{letter-spacing:12.190401pt;}
.ls8a{letter-spacing:12.772533pt;}
.ls19{letter-spacing:13.301753pt;}
.ls99{letter-spacing:13.490588pt;}
.ls18{letter-spacing:13.712478pt;}
.ls37{letter-spacing:13.917508pt;}
.lsb0{letter-spacing:13.952478pt;}
.lsb3{letter-spacing:13.957813pt;}
.lsb2{letter-spacing:13.993067pt;}
.ls88{letter-spacing:14.340662pt;}
.ls6a{letter-spacing:14.461337pt;}
.ls72{letter-spacing:14.462394pt;}
.ls2a{letter-spacing:14.463199pt;}
.ls76{letter-spacing:14.465063pt;}
.ls68{letter-spacing:14.466670pt;}
.ls10{letter-spacing:14.466798pt;}
.ls43{letter-spacing:14.468533pt;}
.ls2b{letter-spacing:14.799200pt;}
.lsbc{letter-spacing:14.841866pt;}
.ls16{letter-spacing:14.872572pt;}
.ls51{letter-spacing:15.029339pt;}
.ls4{letter-spacing:15.084327pt;}
.ls9d{letter-spacing:15.561875pt;}
.ls24{letter-spacing:15.819086pt;}
.ls6e{letter-spacing:15.943200pt;}
.ls47{letter-spacing:16.036661pt;}
.lsaf{letter-spacing:16.653337pt;}
.ls4e{letter-spacing:16.692533pt;}
.ls4d{letter-spacing:16.697867pt;}
.lsd1{letter-spacing:16.809866pt;}
.ls28{letter-spacing:17.395239pt;}
.ls56{letter-spacing:17.615199pt;}
.ls21{letter-spacing:17.625067pt;}
.lsa6{letter-spacing:17.641867pt;}
.lsa7{letter-spacing:17.727200pt;}
.ls31{letter-spacing:18.002079pt;}
.ls15{letter-spacing:18.139144pt;}
.lsbb{letter-spacing:18.467734pt;}
.ls53{letter-spacing:18.595230pt;}
.ls4c{letter-spacing:18.809995pt;}
.lsbf{letter-spacing:18.932236pt;}
.ls59{letter-spacing:19.003733pt;}
.ls61{letter-spacing:19.160563pt;}
.lsbe{letter-spacing:19.274722pt;}
.lsa2{letter-spacing:19.299238pt;}
.ls45{letter-spacing:19.456006pt;}
.ls4f{letter-spacing:19.461340pt;}
.ls83{letter-spacing:19.556985pt;}
.ls5b{letter-spacing:20.641067pt;}
.ls9f{letter-spacing:20.980533pt;}
.ls55{letter-spacing:20.989337pt;}
.ls97{letter-spacing:21.079921pt;}
.ls40{letter-spacing:21.106670pt;}
.ls50{letter-spacing:21.112003pt;}
.ls75{letter-spacing:21.252533pt;}
.lsd2{letter-spacing:21.257867pt;}
.ls9b{letter-spacing:21.442796pt;}
.lsf{letter-spacing:21.945867pt;}
.ls57{letter-spacing:22.036532pt;}
.ls48{letter-spacing:22.159200pt;}
.ls4b{letter-spacing:22.234671pt;}
.ls87{letter-spacing:22.249060pt;}
.ls82{letter-spacing:22.366394pt;}
.ls3e{letter-spacing:22.739230pt;}
.ls8d{letter-spacing:22.970683pt;}
.ls3d{letter-spacing:23.753867pt;}
.ls23{letter-spacing:24.445508pt;}
.ls69{letter-spacing:24.728003pt;}
.ls96{letter-spacing:24.946670pt;}
.lsd0{letter-spacing:25.481865pt;}
.ls5{letter-spacing:25.654994pt;}
.ls2f{letter-spacing:25.727200pt;}
.ls30{letter-spacing:26.175199pt;}
.ls3a{letter-spacing:26.420533pt;}
.lsa5{letter-spacing:26.457867pt;}
.ls60{letter-spacing:26.911200pt;}
.ls93{letter-spacing:27.069337pt;}
.ls3b{letter-spacing:28.173864pt;}
.ls8c{letter-spacing:28.632003pt;}
.ls4a{letter-spacing:29.106670pt;}
.ls22{letter-spacing:30.104530pt;}
.ls3c{letter-spacing:30.296173pt;}
.ls1f{letter-spacing:30.303200pt;}
.lscf{letter-spacing:30.319200pt;}
.ls94{letter-spacing:31.156235pt;}
.ls20{letter-spacing:31.585063pt;}
.lsce{letter-spacing:31.876533pt;}
.ls33{letter-spacing:32.233864pt;}
.lsb5{letter-spacing:32.562946pt;}
.lsb6{letter-spacing:33.357202pt;}
.ls9c{letter-spacing:33.637340pt;}
.ls85{letter-spacing:35.273867pt;}
.lsc9{letter-spacing:53.086612pt;}
.ls77{letter-spacing:53.134401pt;}
.ls78{letter-spacing:56.089067pt;}
.lsae{letter-spacing:58.767200pt;}
.ls80{letter-spacing:59.081067pt;}
.ls7e{letter-spacing:64.183198pt;}
.ls7c{letter-spacing:67.873867pt;}
.ls7d{letter-spacing:69.329866pt;}
.lsaa{letter-spacing:71.406401pt;}
.ls1d{letter-spacing:72.591200pt;}
.ls7f{letter-spacing:76.727200pt;}
.ls7b{letter-spacing:83.372529pt;}
.lsa8{letter-spacing:85.651734pt;}
.ls81{letter-spacing:89.264894pt;}
.ls92{letter-spacing:117.636238pt;}
.ls9a{letter-spacing:315.705577pt;}
.ls39{letter-spacing:337.214613pt;}
.ls58{letter-spacing:338.953855pt;}
.ls49{letter-spacing:400.761879pt;}
.ls2d{letter-spacing:478.564532pt;}
.ls52{letter-spacing:482.041867pt;}
.ls64{letter-spacing:575.935219pt;}
.wsa8{word-spacing:-102.548360pt;}
.ws8b{word-spacing:-53.133865pt;}
.ws86{word-spacing:-42.066081pt;}
.ws95{word-spacing:-41.391281pt;}
.ws8c{word-spacing:-41.338147pt;}
.wsc9{word-spacing:-39.318933pt;}
.ws131{word-spacing:-15.940160pt;}
.ws5a{word-spacing:-13.283466pt;}
.ws17{word-spacing:-13.262246pt;}
.ws2{word-spacing:-10.812800pt;}
.ws99{word-spacing:-10.626800pt;}
.ws7a{word-spacing:-9.829733pt;}
.wsb6{word-spacing:-5.905963pt;}
.wsed{word-spacing:-4.410111pt;}
.ws51{word-spacing:-1.062677pt;}
.ws45{word-spacing:-0.903276pt;}
.ws12b{word-spacing:-0.743874pt;}
.ws64{word-spacing:-0.690740pt;}
.ws115{word-spacing:-0.637606pt;}
.ws109{word-spacing:-0.478205pt;}
.ws40{word-spacing:-0.425071pt;}
.wsd3{word-spacing:-0.371937pt;}
.ws14{word-spacing:-0.334746pt;}
.ws23{word-spacing:-0.265669pt;}
.wsd0{word-spacing:-0.212535pt;}
.ws163{word-spacing:-0.170029pt;}
.ws22{word-spacing:-0.159402pt;}
.ws79{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.047821pt;}
.ws3{word-spacing:-0.043251pt;}
.ws7b{word-spacing:-0.039319pt;}
.ws33{word-spacing:-0.031881pt;}
.ws54{word-spacing:0.000000pt;}
.ws5b{word-spacing:0.005524pt;}
.wsd2{word-spacing:0.029497pt;}
.wse7{word-spacing:0.170029pt;}
.ws140{word-spacing:0.255043pt;}
.ws1b{word-spacing:0.371937pt;}
.wsd{word-spacing:0.526029pt;}
.ws57{word-spacing:0.584473pt;}
.ws134{word-spacing:0.595101pt;}
.ws6d{word-spacing:0.690740pt;}
.ws6e{word-spacing:0.743874pt;}
.ws92{word-spacing:0.753897pt;}
.ws10d{word-spacing:0.850142pt;}
.ws16f{word-spacing:0.892651pt;}
.ws16e{word-spacing:0.935158pt;}
.ws1a{word-spacing:1.009543pt;}
.ws12{word-spacing:1.052058pt;}
.ws3b{word-spacing:1.168945pt;}
.ws11b{word-spacing:1.222079pt;}
.ws15a{word-spacing:1.232709pt;}
.ws8f{word-spacing:1.275213pt;}
.ws90{word-spacing:1.297899pt;}
.ws4f{word-spacing:1.381480pt;}
.ws91{word-spacing:1.434614pt;}
.wse5{word-spacing:1.530259pt;}
.ws116{word-spacing:1.540882pt;}
.ws146{word-spacing:1.615274pt;}
.wse9{word-spacing:1.647150pt;}
.wsb5{word-spacing:1.668991pt;}
.wsb4{word-spacing:1.700284pt;}
.wsec{word-spacing:1.753418pt;}
.ws34{word-spacing:1.827810pt;}
.ws111{word-spacing:1.859685pt;}
.ws3a{word-spacing:1.965953pt;}
.wsf5{word-spacing:2.019087pt;}
.ws16a{word-spacing:2.040346pt;}
.wse2{word-spacing:2.072221pt;}
.wsd6{word-spacing:2.125355pt;}
.ws148{word-spacing:2.125360pt;}
.ws107{word-spacing:2.178488pt;}
.ws14e{word-spacing:2.295389pt;}
.ws68{word-spacing:2.391024pt;}
.ws66{word-spacing:2.444158pt;}
.ws16b{word-spacing:2.635446pt;}
.wsee{word-spacing:2.656693pt;}
.wse8{word-spacing:2.677954pt;}
.ws12a{word-spacing:2.709827pt;}
.ws16c{word-spacing:2.720461pt;}
.ws13b{word-spacing:2.805475pt;}
.ws13a{word-spacing:2.890490pt;}
.ws50{word-spacing:2.922363pt;}
.ws12f{word-spacing:2.975496pt;}
.ws97{word-spacing:3.018011pt;}
.ws46{word-spacing:3.028630pt;}
.ws2c{word-spacing:3.081764pt;}
.wse{word-spacing:3.108352pt;}
.ws141{word-spacing:3.188040pt;}
.ws13{word-spacing:3.203994pt;}
.ws60{word-spacing:3.241166pt;}
.ws6f{word-spacing:3.347434pt;}
.ws142{word-spacing:3.358069pt;}
.wsf7{word-spacing:3.400567pt;}
.ws14a{word-spacing:3.443083pt;}
.ws19{word-spacing:3.453701pt;}
.ws15b{word-spacing:3.485590pt;}
.ws102{word-spacing:3.506835pt;}
.wsf6{word-spacing:3.559969pt;}
.ws10f{word-spacing:3.613103pt;}
.wsfb{word-spacing:3.613112pt;}
.ws21{word-spacing:3.666237pt;}
.ws120{word-spacing:3.698126pt;}
.ws61{word-spacing:3.719371pt;}
.ws96{word-spacing:3.825648pt;}
.ws13d{word-spacing:3.868155pt;}
.ws137{word-spacing:3.910662pt;}
.wsce{word-spacing:3.931906pt;}
.ws13e{word-spacing:3.953170pt;}
.ws15e{word-spacing:3.995677pt;}
.wsf2{word-spacing:4.091308pt;}
.wse4{word-spacing:4.197575pt;}
.ws16d{word-spacing:4.208213pt;}
.ws62{word-spacing:4.250709pt;}
.ws32{word-spacing:4.250720pt;}
.ws15f{word-spacing:4.251575pt;}
.ws135{word-spacing:4.255110pt;}
.ws81{word-spacing:4.303843pt;}
.ws2e{word-spacing:4.356977pt;}
.ws169{word-spacing:4.378242pt;}
.ws159{word-spacing:4.420749pt;}
.ws11e{word-spacing:4.505763pt;}
.wscf{word-spacing:4.516379pt;}
.ws55{word-spacing:4.569512pt;}
.ws83{word-spacing:4.622646pt;}
.ws136{word-spacing:4.633285pt;}
.ws128{word-spacing:4.675780pt;}
.ws10{word-spacing:4.686438pt;}
.ws133{word-spacing:4.718299pt;}
.ws118{word-spacing:4.728914pt;}
.ws43{word-spacing:4.782048pt;}
.ws2a{word-spacing:4.835182pt;}
.ws165{word-spacing:4.888328pt;}
.wsfe{word-spacing:4.973342pt;}
.ws31{word-spacing:5.015850pt;}
.ws2b{word-spacing:5.047717pt;}
.ws145{word-spacing:5.100864pt;}
.wsf3{word-spacing:5.207119pt;}
.ws151{word-spacing:5.228386pt;}
.ws113{word-spacing:5.253951pt;}
.wsbf{word-spacing:5.260253pt;}
.ws5c{word-spacing:5.273173pt;}
.wsf1{word-spacing:5.275863pt;}
.wsf0{word-spacing:5.276416pt;}
.wsef{word-spacing:5.287114pt;}
.wsa3{word-spacing:5.310501pt;}
.wsa0{word-spacing:5.310529pt;}
.wsba{word-spacing:5.310913pt;}
.ws20{word-spacing:5.313387pt;}
.ws94{word-spacing:5.313579pt;}
.wsb9{word-spacing:5.313639pt;}
.ws11f{word-spacing:5.355907pt;}
.ws110{word-spacing:5.366520pt;}
.ws123{word-spacing:5.472788pt;}
.ws13c{word-spacing:5.483429pt;}
.ws29{word-spacing:5.579056pt;}
.ws101{word-spacing:5.610950pt;}
.wsdd{word-spacing:5.685324pt;}
.ws9d{word-spacing:5.738457pt;}
.ws98{word-spacing:5.738472pt;}
.wse6{word-spacing:5.780979pt;}
.wsca{word-spacing:5.791591pt;}
.ws63{word-spacing:5.844725pt;}
.ws1{word-spacing:5.844747pt;}
.wsfc{word-spacing:5.865994pt;}
.ws67{word-spacing:5.897859pt;}
.wsff{word-spacing:5.908501pt;}
.ws2d{word-spacing:5.950993pt;}
.ws138{word-spacing:5.951008pt;}
.ws15{word-spacing:5.977600pt;}
.ws100{word-spacing:5.993515pt;}
.wsc5{word-spacing:5.996562pt;}
.ws7c{word-spacing:6.004127pt;}
.ws77{word-spacing:6.004700pt;}
.ws158{word-spacing:6.036022pt;}
.ws144{word-spacing:6.078530pt;}
.ws69{word-spacing:6.163528pt;}
.wsfd{word-spacing:6.163544pt;}
.ws14f{word-spacing:6.248558pt;}
.wsf4{word-spacing:6.269796pt;}
.ws155{word-spacing:6.376080pt;}
.wsfa{word-spacing:6.429198pt;}
.ws6{word-spacing:6.503629pt;}
.ws8d{word-spacing:6.521167pt;}
.ws8e{word-spacing:6.535465pt;}
.ws74{word-spacing:6.588599pt;}
.ws157{word-spacing:6.588616pt;}
.ws15d{word-spacing:6.673630pt;}
.ws129{word-spacing:6.748001pt;}
.ws3e{word-spacing:6.801135pt;}
.ws11d{word-spacing:6.843659pt;}
.wsea{word-spacing:6.854269pt;}
.ws168{word-spacing:6.886166pt;}
.ws56{word-spacing:6.907402pt;}
.ws9{word-spacing:6.981837pt;}
.wsf8{word-spacing:7.013670pt;}
.ws30{word-spacing:7.066804pt;}
.ws127{word-spacing:7.119938pt;}
.ws28{word-spacing:7.226206pt;}
.ws5d{word-spacing:7.279340pt;}
.ws65{word-spacing:7.332473pt;}
.ws9a{word-spacing:7.353746pt;}
.ws47{word-spacing:7.385607pt;}
.ws105{word-spacing:7.438741pt;}
.ws75{word-spacing:7.491875pt;}
.ws8a{word-spacing:7.545009pt;}
.ws18{word-spacing:7.598143pt;}
.ws132{word-spacing:7.651277pt;}
.ws164{word-spacing:7.651296pt;}
.ws160{word-spacing:7.736310pt;}
.ws14b{word-spacing:7.778818pt;}
.ws154{word-spacing:7.779483pt;}
.ws89{word-spacing:7.810678pt;}
.ws6a{word-spacing:7.863812pt;}
.wsd5{word-spacing:7.916946pt;}
.ws73{word-spacing:7.970080pt;}
.ws108{word-spacing:8.023214pt;}
.ws36{word-spacing:8.033861pt;}
.wsf9{word-spacing:8.076348pt;}
.ws106{word-spacing:8.129481pt;}
.wsdc{word-spacing:8.235749pt;}
.ws93{word-spacing:8.288883pt;}
.wseb{word-spacing:8.448285pt;}
.ws152{word-spacing:8.586454pt;}
.wscb{word-spacing:8.607686pt;}
.ws38{word-spacing:8.660820pt;}
.ws104{word-spacing:8.713954pt;}
.ws2f{word-spacing:8.767088pt;}
.ws9f{word-spacing:8.787830pt;}
.ws72{word-spacing:8.820222pt;}
.ws48{word-spacing:8.926489pt;}
.ws14d{word-spacing:8.926512pt;}
.wsb3{word-spacing:8.979623pt;}
.wsb2{word-spacing:8.988056pt;}
.ws167{word-spacing:9.096541pt;}
.ws147{word-spacing:9.181555pt;}
.ws11a{word-spacing:9.192159pt;}
.wsc1{word-spacing:9.245293pt;}
.wsc0{word-spacing:9.254467pt;}
.ws41{word-spacing:9.298426pt;}
.ws14c{word-spacing:9.309077pt;}
.wsd8{word-spacing:9.510962pt;}
.ws10c{word-spacing:9.564096pt;}
.ws117{word-spacing:9.617230pt;}
.wsaf{word-spacing:9.670363pt;}
.wsae{word-spacing:9.684839pt;}
.ws27{word-spacing:9.776631pt;}
.ws166{word-spacing:9.776656pt;}
.wsd7{word-spacing:9.882899pt;}
.ws150{word-spacing:9.904178pt;}
.ws59{word-spacing:9.989167pt;}
.wsf{word-spacing:9.994547pt;}
.ws10e{word-spacing:10.095434pt;}
.ws161{word-spacing:10.116714pt;}
.ws162{word-spacing:10.159221pt;}
.ws42{word-spacing:10.254836pt;}
.ws12c{word-spacing:10.307970pt;}
.ws112{word-spacing:10.361104pt;}
.ws143{word-spacing:10.371757pt;}
.ws53{word-spacing:10.467371pt;}
.ws87{word-spacing:10.474778pt;}
.ws88{word-spacing:10.476563pt;}
.wsbd{word-spacing:10.517449pt;}
.wsbe{word-spacing:10.520505pt;}
.wscc{word-spacing:10.573639pt;}
.ws7{word-spacing:10.616218pt;}
.wsd1{word-spacing:10.626773pt;}
.ws0{word-spacing:10.626800pt;}
.wsda{word-spacing:10.679907pt;}
.ws5e{word-spacing:10.733041pt;}
.ws9c{word-spacing:10.945576pt;}
.ws9b{word-spacing:10.965449pt;}
.ws4b{word-spacing:10.998710pt;}
.ws8{word-spacing:10.998784pt;}
.wsb1{word-spacing:11.104978pt;}
.wsb0{word-spacing:11.125449pt;}
.ws6c{word-spacing:11.158112pt;}
.ws1e{word-spacing:11.264379pt;}
.ws52{word-spacing:11.317513pt;}
.wse1{word-spacing:11.423781pt;}
.wsd9{word-spacing:11.476915pt;}
.wsbb{word-spacing:11.689450pt;}
.ws6b{word-spacing:11.742584pt;}
.ws1c{word-spacing:11.795718pt;}
.wse3{word-spacing:11.848852pt;}
.ws84{word-spacing:11.861446pt;}
.ws4c{word-spacing:11.955120pt;}
.ws119{word-spacing:12.008254pt;}
.ws78{word-spacing:12.114521pt;}
.wsb{word-spacing:12.146483pt;}
.wse0{word-spacing:12.220789pt;}
.wsdb{word-spacing:12.380191pt;}
.ws35{word-spacing:12.412102pt;}
.ws82{word-spacing:12.433324pt;}
.wsc6{word-spacing:12.486458pt;}
.ws13f{word-spacing:12.624638pt;}
.wsad{word-spacing:12.689899pt;}
.wsb7{word-spacing:12.698782pt;}
.wsac{word-spacing:12.698994pt;}
.ws139{word-spacing:12.837174pt;}
.ws80{word-spacing:12.911529pt;}
.ws125{word-spacing:12.964663pt;}
.ws5f{word-spacing:13.017797pt;}
.ws3c{word-spacing:13.124065pt;}
.ws4d{word-spacing:13.177199pt;}
.ws153{word-spacing:13.304754pt;}
.ws71{word-spacing:13.389734pt;}
.ws25{word-spacing:13.442868pt;}
.wsc2{word-spacing:13.549136pt;}
.ws15c{word-spacing:13.602304pt;}
.wsc7{word-spacing:13.708537pt;}
.wsdf{word-spacing:13.761671pt;}
.ws12e{word-spacing:13.814805pt;}
.ws5{word-spacing:14.250598pt;}
.ws7f{word-spacing:14.346144pt;}
.ws7e{word-spacing:14.362779pt;}
.ws10b{word-spacing:14.399278pt;}
.ws37{word-spacing:14.452411pt;}
.ws1f{word-spacing:14.505545pt;}
.ws7d{word-spacing:14.558679pt;}
.ws156{word-spacing:14.579970pt;}
.wscd{word-spacing:14.718081pt;}
.ws26{word-spacing:14.824348pt;}
.ws49{word-spacing:14.930616pt;}
.wsc{word-spacing:15.015731pt;}
.ws126{word-spacing:15.302553pt;}
.ws3d{word-spacing:15.461955pt;}
.ws130{word-spacing:15.674490pt;}
.ws3f{word-spacing:15.727624pt;}
.ws4e{word-spacing:15.780758pt;}
.wsb8{word-spacing:15.833892pt;}
.wsa{word-spacing:15.924326pt;}
.ws16{word-spacing:15.940160pt;}
.ws4a{word-spacing:16.099561pt;}
.ws58{word-spacing:16.152695pt;}
.ws149{word-spacing:16.195243pt;}
.ws85{word-spacing:16.312097pt;}
.wsd4{word-spacing:16.577766pt;}
.ws76{word-spacing:16.790301pt;}
.ws122{word-spacing:17.055971pt;}
.ws10a{word-spacing:17.109105pt;}
.ws24{word-spacing:17.215372pt;}
.wsc4{word-spacing:17.268506pt;}
.wsc3{word-spacing:17.321640pt;}
.wsde{word-spacing:17.374774pt;}
.ws103{word-spacing:17.427908pt;}
.ws70{word-spacing:17.640443pt;}
.ws121{word-spacing:17.852979pt;}
.ws1d{word-spacing:17.959246pt;}
.ws114{word-spacing:18.278050pt;}
.ws39{word-spacing:18.703121pt;}
.ws12d{word-spacing:18.862522pt;}
.ws44{word-spacing:19.234459pt;}
.wsab{word-spacing:19.326238pt;}
.wsaa{word-spacing:19.340727pt;}
.wsc8{word-spacing:19.446995pt;}
.ws124{word-spacing:19.500129pt;}
.ws11c{word-spacing:20.403404pt;}
.ws11{word-spacing:21.854106pt;}
.wsa7{word-spacing:55.357773pt;}
.wsa4{word-spacing:60.466339pt;}
.wsa5{word-spacing:74.455852pt;}
.wsa6{word-spacing:79.602519pt;}
.wsa1{word-spacing:98.403919pt;}
.ws9e{word-spacing:100.635541pt;}
.wsa9{word-spacing:114.980822pt;}
.wsbc{word-spacing:148.721689pt;}
.wsa2{word-spacing:316.730971pt;}
._13{margin-left:-89.092690pt;}
._7{margin-left:-6.004127pt;}
._3{margin-left:-4.968064pt;}
._b{margin-left:-3.694358pt;}
._4{margin-left:-2.630144pt;}
._0{margin-left:-1.700288pt;}
._19{width:1.636217pt;}
._5{width:2.656693pt;}
._14{width:3.836585pt;}
._e{width:5.785190pt;}
._11{width:6.769728pt;}
._1{width:8.123418pt;}
._17{width:9.192163pt;}
._1b{width:10.708340pt;}
._d{width:11.903607pt;}
._10{width:13.559797pt;}
._15{width:16.312097pt;}
._2{width:17.550234pt;}
._c{width:20.350270pt;}
._6{width:27.204543pt;}
._18{width:29.994115pt;}
._9{width:31.614650pt;}
._16{width:36.386163pt;}
._1d{width:40.849419pt;}
._f{width:43.272330pt;}
._1a{width:50.328525pt;}
._1c{width:52.496392pt;}
._8{width:55.939475pt;}
._12{width:89.437098pt;}
._a{width:494.250667pt;}
.fs6{font-size:31.880533pt;}
.fs8{font-size:37.333333pt;}
.fs9{font-size:39.318933pt;}
.fs5{font-size:42.507200pt;}
.fs7{font-size:42.666667pt;}
.fs2{font-size:43.251200pt;}
.fs3{font-size:47.820800pt;}
.fs4{font-size:53.133865pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:85.014399pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:29.210667pt;}
.y5a{bottom:48.533333pt;}
.y5b{bottom:80.000000pt;}
.y12d{bottom:80.098659pt;}
.y35{bottom:80.630634pt;}
.y1a1{bottom:80.630636pt;}
.y1c3{bottom:80.630657pt;}
.y93{bottom:80.630669pt;}
.y170{bottom:80.630671pt;}
.y57{bottom:80.630682pt;}
.y252{bottom:80.630688pt;}
.y29c{bottom:80.632042pt;}
.yee{bottom:81.090659pt;}
.yed{bottom:82.131992pt;}
.yec{bottom:85.413325pt;}
.y29b{bottom:92.586709pt;}
.y12c{bottom:96.039993pt;}
.y34{bottom:96.442633pt;}
.y1a0{bottom:96.570636pt;}
.y1c2{bottom:96.570657pt;}
.y92{bottom:96.570669pt;}
.y16f{bottom:96.570671pt;}
.y56{bottom:96.570682pt;}
.y251{bottom:96.570688pt;}
.y135{bottom:99.519988pt;}
.y125{bottom:99.519994pt;}
.yeb{bottom:101.015992pt;}
.yea{bottom:101.403992pt;}
.y29a{bottom:104.541375pt;}
.ye9{bottom:105.338658pt;}
.y33{bottom:106.007966pt;}
.y134{bottom:108.007988pt;}
.y124{bottom:108.007994pt;}
.y16e{bottom:108.380005pt;}
.y12b{bottom:111.979993pt;}
.y19f{bottom:112.510636pt;}
.y1c1{bottom:112.510657pt;}
.y22e{bottom:112.510671pt;}
.y55{bottom:112.510682pt;}
.y91{bottom:112.512002pt;}
.y16d{bottom:112.512005pt;}
.y133{bottom:115.977321pt;}
.y123{bottom:115.977327pt;}
.y299{bottom:116.502708pt;}
.y20f{bottom:116.905338pt;}
.y12a{bottom:117.293326pt;}
.y136{bottom:120.626655pt;}
.y11d{bottom:120.626660pt;}
.ye7{bottom:121.329325pt;}
.y250{bottom:121.818688pt;}
.y32{bottom:121.819966pt;}
.ye8{bottom:121.982658pt;}
.y129{bottom:122.606659pt;}
.y132{bottom:123.947988pt;}
.y122{bottom:123.947994pt;}
.ye6{bottom:125.263991pt;}
.y19e{bottom:128.451970pt;}
.y1c0{bottom:128.451990pt;}
.y16c{bottom:128.452005pt;}
.y54{bottom:128.452015pt;}
.y298{bottom:128.458708pt;}
.y31{bottom:131.383965pt;}
.y131{bottom:131.918655pt;}
.y121{bottom:131.918660pt;}
.y8f{bottom:132.810669pt;}
.y127{bottom:136.699992pt;}
.y130{bottom:139.887988pt;}
.y120{bottom:139.887994pt;}
.y297{bottom:140.420041pt;}
.ye5{bottom:141.207991pt;}
.y8e{bottom:141.922685pt;}
.y90{bottom:141.924002pt;}
.y128{bottom:142.013325pt;}
.y20e{bottom:142.324003pt;}
.y30{bottom:143.338632pt;}
.y19d{bottom:144.391970pt;}
.y1bf{bottom:144.391990pt;}
.y22d{bottom:144.392004pt;}
.y1db{bottom:144.392015pt;}
.y53{bottom:144.462682pt;}
.ye4{bottom:145.339991pt;}
.y12f{bottom:147.858655pt;}
.y11f{bottom:147.858660pt;}
.y169{bottom:150.084005pt;}
.y296{bottom:152.374707pt;}
.y24f{bottom:153.982687pt;}
.y168{bottom:154.873343pt;}
.y20d{bottom:158.264003pt;}
.y16a{bottom:159.197338pt;}
.y167{bottom:159.197343pt;}
.y19c{bottom:160.331970pt;}
.y1be{bottom:160.331990pt;}
.y22c{bottom:160.332004pt;}
.y1da{bottom:160.332015pt;}
.y52{bottom:160.402682pt;}
.ye3{bottom:161.283991pt;}
.y126{bottom:161.421325pt;}
.y295{bottom:164.330707pt;}
.ye2{bottom:165.414658pt;}
.y16b{bottom:168.374671pt;}
.y24e{bottom:169.922687pt;}
.y8d{bottom:170.798685pt;}
.y2f{bottom:170.843964pt;}
.y12e{bottom:171.237321pt;}
.y11e{bottom:171.237327pt;}
.y20c{bottom:174.204003pt;}
.y19b{bottom:176.271970pt;}
.y1bd{bottom:176.271990pt;}
.y22b{bottom:176.272004pt;}
.y1d9{bottom:176.272015pt;}
.y294{bottom:176.292040pt;}
.y51{bottom:176.342682pt;}
.ye0{bottom:181.359991pt;}
.ydf{bottom:181.555991pt;}
.ye1{bottom:182.209324pt;}
.y11c{bottom:185.015994pt;}
.y162{bottom:185.317342pt;}
.yde{bottom:185.490658pt;}
.y24d{bottom:185.862687pt;}
.y2e{bottom:186.783964pt;}
.y293{bottom:188.246706pt;}
.y20b{bottom:190.144003pt;}
.y15f{bottom:190.496000pt;}
.y163{bottom:190.916009pt;}
.y160{bottom:191.149334pt;}
.y166{bottom:191.149342pt;}
.y19a{bottom:192.211970pt;}
.y1bc{bottom:192.211990pt;}
.y22a{bottom:192.212004pt;}
.y1d8{bottom:192.212015pt;}
.y50{bottom:192.282682pt;}
.y15e{bottom:194.430667pt;}
.y165{bottom:194.430675pt;}
.y8c{bottom:195.986685pt;}
.y292{bottom:200.201372pt;}
.ydd{bottom:201.434658pt;}
.ydc{bottom:201.631991pt;}
.y24c{bottom:201.802687pt;}
.y2d{bottom:202.723964pt;}
.y161{bottom:203.422667pt;}
.y164{bottom:203.422675pt;}
.ydb{bottom:205.566657pt;}
.y20a{bottom:206.085337pt;}
.y199{bottom:208.151970pt;}
.y1bb{bottom:208.151990pt;}
.y229{bottom:208.153337pt;}
.y1d7{bottom:208.153348pt;}
.y4f{bottom:208.224015pt;}
.y11b{bottom:211.599993pt;}
.y8b{bottom:211.926685pt;}
.y291{bottom:212.164039pt;}
.y24b{bottom:217.744020pt;}
.y2c{bottom:218.663964pt;}
.yd9{bottom:221.359991pt;}
.y158{bottom:221.368000pt;}
.yda{bottom:221.557324pt;}
.y209{bottom:222.025337pt;}
.y198{bottom:224.093303pt;}
.y1ba{bottom:224.093324pt;}
.y228{bottom:224.093337pt;}
.y1d6{bottom:224.093348pt;}
.y290{bottom:224.118705pt;}
.y4e{bottom:224.164015pt;}
.yd8{bottom:225.491990pt;}
.y15c{bottom:226.157334pt;}
.y155{bottom:227.199990pt;}
.y159{bottom:227.200000pt;}
.y8a{bottom:227.866685pt;}
.y154{bottom:230.481323pt;}
.y15b{bottom:230.481333pt;}
.y24a{bottom:233.684020pt;}
.y2b{bottom:234.603964pt;}
.y157{bottom:235.769323pt;}
.y28f{bottom:236.073371pt;}
.y156{bottom:236.666657pt;}
.y11a{bottom:237.877327pt;}
.y208{bottom:237.965337pt;}
.y15a{bottom:239.473333pt;}
.y15d{bottom:239.658667pt;}
.y197{bottom:239.845303pt;}
.y1b9{bottom:240.033324pt;}
.y227{bottom:240.033337pt;}
.y1d5{bottom:240.033348pt;}
.y4d{bottom:240.104015pt;}
.y89{bottom:243.806685pt;}
.y28e{bottom:248.034704pt;}
.yd7{bottom:248.139990pt;}
.y249{bottom:249.624020pt;}
.y2a{bottom:250.543964pt;}
.y207{bottom:253.905337pt;}
.y196{bottom:255.785303pt;}
.y1b8{bottom:255.973324pt;}
.y226{bottom:255.973337pt;}
.y1d4{bottom:255.973348pt;}
.y4c{bottom:256.044015pt;}
.y88{bottom:259.748018pt;}
.y28d{bottom:259.990704pt;}
.y119{bottom:260.526660pt;}
.y118{bottom:261.179993pt;}
.y117{bottom:264.461326pt;}
.y248{bottom:265.564020pt;}
.y29{bottom:266.485298pt;}
.yd5{bottom:267.273324pt;}
.yd6{bottom:267.507991pt;}
.y206{bottom:269.845337pt;}
.yd4{bottom:270.787991pt;}
.y195{bottom:271.725303pt;}
.y1b7{bottom:271.913324pt;}
.y225{bottom:271.913337pt;}
.y1d3{bottom:271.913348pt;}
.y28c{bottom:271.945370pt;}
.y4b{bottom:271.984015pt;}
.y87{bottom:275.688018pt;}
.y153{bottom:277.541321pt;}
.y247{bottom:281.504020pt;}
.y28{bottom:282.425298pt;}
.y28b{bottom:283.900036pt;}
.y116{bottom:284.386659pt;}
.y205{bottom:285.786670pt;}
.yd3{bottom:287.433325pt;}
.y194{bottom:287.665303pt;}
.y224{bottom:287.853337pt;}
.y1d2{bottom:287.853348pt;}
.y4a{bottom:287.924015pt;}
.yd2{bottom:290.713325pt;}
.y86{bottom:291.628018pt;}
.y152{bottom:293.482654pt;}
.y1b6{bottom:293.485324pt;}
.y28a{bottom:295.862703pt;}
.y246{bottom:297.444020pt;}
.y27{bottom:298.365298pt;}
.y204{bottom:301.726670pt;}
.y193{bottom:303.605303pt;}
.y223{bottom:303.794671pt;}
.y1d1{bottom:303.794682pt;}
.y49{bottom:303.936015pt;}
.y115{bottom:304.311993pt;}
.yd1{bottom:307.358658pt;}
.y85{bottom:307.568018pt;}
.y289{bottom:307.817369pt;}
.y151{bottom:309.422654pt;}
.yd0{bottom:310.638658pt;}
.y245{bottom:313.385354pt;}
.y26{bottom:314.305298pt;}
.y203{bottom:317.666670pt;}
.y192{bottom:319.546636pt;}
.y288{bottom:319.778702pt;}
.y48{bottom:319.876015pt;}
.y1b5{bottom:321.909324pt;}
.y84{bottom:323.508018pt;}
.y1d0{bottom:323.890681pt;}
.y222{bottom:323.897337pt;}
.y150{bottom:325.362654pt;}
.ycf{bottom:327.282658pt;}
.y244{bottom:329.325354pt;}
.y25{bottom:330.245298pt;}
.yce{bottom:330.563992pt;}
.y114{bottom:330.587993pt;}
.y287{bottom:331.733368pt;}
.y202{bottom:333.606670pt;}
.y191{bottom:335.486636pt;}
.y47{bottom:335.816015pt;}
.y1b4{bottom:337.849324pt;}
.y83{bottom:339.448018pt;}
.y113{bottom:343.242659pt;}
.y286{bottom:343.689368pt;}
.y14f{bottom:345.554653pt;}
.y24{bottom:346.185298pt;}
.y14e{bottom:346.363986pt;}
.y14d{bottom:346.597319pt;}
.y112{bottom:346.837326pt;}
.ycd{bottom:347.166658pt;}
.y1cf{bottom:348.630681pt;}
.y221{bottom:348.674670pt;}
.y201{bottom:349.546670pt;}
.y14c{bottom:349.878652pt;}
.ycc{bottom:350.489325pt;}
.y190{bottom:351.426636pt;}
.y46{bottom:351.756015pt;}
.y1b3{bottom:353.789324pt;}
.y243{bottom:354.572020pt;}
.y82{bottom:355.389351pt;}
.y285{bottom:355.644034pt;}
.y23{bottom:362.126631pt;}
.y111{bottom:362.777326pt;}
.y1ce{bottom:364.570681pt;}
.y220{bottom:364.614670pt;}
.y200{bottom:365.486670pt;}
.y14b{bottom:366.522652pt;}
.y18f{bottom:367.366636pt;}
.y284{bottom:367.605367pt;}
.y45{bottom:367.696015pt;}
.y1b2{bottom:369.729324pt;}
.y14a{bottom:369.803986pt;}
.ycb{bottom:373.137325pt;}
.y81{bottom:375.734685pt;}
.y22{bottom:378.066631pt;}
.y283{bottom:379.561367pt;}
.y1cd{bottom:380.510681pt;}
.y21f{bottom:380.554670pt;}
.y1ff{bottom:381.428003pt;}
.y18e{bottom:383.306636pt;}
.y44{bottom:383.637349pt;}
.y110{bottom:385.230659pt;}
.y148{bottom:385.589319pt;}
.y10f{bottom:386.038659pt;}
.y149{bottom:386.397319pt;}
.y242{bottom:386.737353pt;}
.yca{bottom:389.078659pt;}
.y10e{bottom:389.361326pt;}
.y147{bottom:389.911986pt;}
.y282{bottom:391.516033pt;}
.y1b1{bottom:392.335990pt;}
.y21{bottom:394.006631pt;}
.y21e{bottom:396.494670pt;}
.y18d{bottom:399.058636pt;}
.y43{bottom:399.577349pt;}
.yc9{bottom:400.839992pt;}
.y80{bottom:401.180017pt;}
.yc8{bottom:401.737325pt;}
.y1fe{bottom:401.762670pt;}
.y241{bottom:402.677353pt;}
.y281{bottom:403.470699pt;}
.yc7{bottom:405.018659pt;}
.y10d{bottom:406.006659pt;}
.y10c{bottom:409.286659pt;}
.y20{bottom:409.946631pt;}
.y21d{bottom:412.436003pt;}
.y146{bottom:414.499986pt;}
.y18c{bottom:414.999970pt;}
.y280{bottom:415.432032pt;}
.y42{bottom:415.517349pt;}
.y7f{bottom:417.120017pt;}
.y240{bottom:418.617353pt;}
.y1b0{bottom:420.758656pt;}
.yc6{bottom:420.958659pt;}
.y1fd{bottom:422.248003pt;}
.y10b{bottom:425.231992pt;}
.y1cc{bottom:425.554681pt;}
.y1f{bottom:425.886631pt;}
.y10a{bottom:426.039992pt;}
.y27f{bottom:427.388032pt;}
.y21c{bottom:428.376003pt;}
.y109{bottom:429.362659pt;}
.y145{bottom:430.367986pt;}
.y18b{bottom:430.939970pt;}
.y41{bottom:431.457349pt;}
.y7e{bottom:433.060017pt;}
.yc5{bottom:433.107992pt;}
.y23f{bottom:434.557353pt;}
.y1af{bottom:436.698656pt;}
.yc4{bottom:436.898659pt;}
.y1cb{bottom:437.509347pt;}
.y27e{bottom:439.342699pt;}
.y1e{bottom:442.186631pt;}
.y144{bottom:446.307986pt;}
.y18a{bottom:446.879970pt;}
.y40{bottom:447.397349pt;}
.y1fc{bottom:447.666669pt;}
.y21b{bottom:448.478670pt;}
.y7d{bottom:449.000017pt;}
.yc3{bottom:449.047992pt;}
.y108{bottom:449.287992pt;}
.y1ca{bottom:449.464013pt;}
.y23e{bottom:450.497353pt;}
.y27d{bottom:451.297365pt;}
.y1ae{bottom:452.638656pt;}
.yc2{bottom:452.838659pt;}
.y1d{bottom:458.126631pt;}
.y1c9{bottom:461.420013pt;}
.y143{bottom:462.249319pt;}
.y189{bottom:462.819970pt;}
.y27c{bottom:463.253365pt;}
.y3f{bottom:463.337349pt;}
.y1fb{bottom:463.606669pt;}
.y7c{bottom:464.941351pt;}
.y23d{bottom:466.438686pt;}
.y1ad{bottom:468.579990pt;}
.yc1{bottom:471.973325pt;}
.yc0{bottom:472.206658pt;}
.y21a{bottom:473.256003pt;}
.y1c8{bottom:473.374680pt;}
.y1c{bottom:474.066631pt;}
.y27b{bottom:475.214698pt;}
.ybf{bottom:475.487992pt;}
.y107{bottom:475.563992pt;}
.y188{bottom:478.759970pt;}
.y3e{bottom:479.278682pt;}
.y7b{bottom:480.881351pt;}
.y1fa{bottom:482.330669pt;}
.y23c{bottom:482.378686pt;}
.y1ac{bottom:484.519990pt;}
.y1c7{bottom:485.329346pt;}
.y142{bottom:486.765318pt;}
.y27a{bottom:487.169364pt;}
.y219{bottom:489.196003pt;}
.y1b{bottom:490.006631pt;}
.y106{bottom:491.505326pt;}
.ybe{bottom:491.898658pt;}
.ybd{bottom:492.131992pt;}
.y187{bottom:494.699970pt;}
.y3d{bottom:495.289349pt;}
.ybc{bottom:495.413325pt;}
.y7a{bottom:496.821351pt;}
.y1f9{bottom:498.270669pt;}
.y23b{bottom:498.318686pt;}
.y279{bottom:499.125364pt;}
.y1ab{bottom:500.459990pt;}
.y218{bottom:505.136003pt;}
.y1a{bottom:505.946631pt;}
.y186{bottom:510.641303pt;}
.y278{bottom:511.080030pt;}
.y3c{bottom:511.229349pt;}
.y141{bottom:511.351985pt;}
.ybb{bottom:512.057325pt;}
.y79{bottom:512.761351pt;}
.y104{bottom:513.766659pt;}
.y105{bottom:514.154659pt;}
.y1f8{bottom:514.210669pt;}
.y23a{bottom:514.258686pt;}
.yba{bottom:515.337325pt;}
.y1aa{bottom:516.399990pt;}
.y103{bottom:518.089325pt;}
.y217{bottom:521.076003pt;}
.y19{bottom:521.886631pt;}
.y277{bottom:523.034696pt;}
.y185{bottom:526.581303pt;}
.y3b{bottom:527.169349pt;}
.y140{bottom:527.293318pt;}
.y78{bottom:528.701351pt;}
.y1f7{bottom:530.150669pt;}
.y239{bottom:530.198686pt;}
.yb9{bottom:531.939991pt;}
.y1a9{bottom:532.339990pt;}
.y102{bottom:534.079992pt;}
.y101{bottom:534.733325pt;}
.y276{bottom:534.996029pt;}
.yb8{bottom:535.262658pt;}
.y18{bottom:537.827964pt;}
.y100{bottom:538.014658pt;}
.y184{bottom:542.521303pt;}
.y3a{bottom:543.109349pt;}
.y13f{bottom:543.233318pt;}
.y77{bottom:544.641351pt;}
.y1f6{bottom:546.090669pt;}
.y238{bottom:546.138686pt;}
.y275{bottom:546.952029pt;}
.y1a8{bottom:548.279990pt;}
.yb7{bottom:551.865325pt;}
.y17{bottom:553.767964pt;}
.yff{bottom:554.005325pt;}
.yb6{bottom:555.187991pt;}
.yfe{bottom:557.939992pt;}
.y274{bottom:558.906695pt;}
.y39{bottom:559.050682pt;}
.y13e{bottom:559.173318pt;}
.y76{bottom:560.582684pt;}
.y1f5{bottom:562.032002pt;}
.y237{bottom:562.080020pt;}
.y183{bottom:562.457302pt;}
.y216{bottom:566.186670pt;}
.y16{bottom:569.707964pt;}
.y273{bottom:570.862695pt;}
.yb5{bottom:571.790658pt;}
.yb4{bottom:571.833324pt;}
.yfd{bottom:573.930658pt;}
.y38{bottom:574.990682pt;}
.yb3{bottom:575.113324pt;}
.y75{bottom:576.522684pt;}
.yfc{bottom:577.865325pt;}
.y236{bottom:578.020020pt;}
.y215{bottom:578.141336pt;}
.y1f4{bottom:580.756002pt;}
.y272{bottom:582.824028pt;}
.y13d{bottom:583.689317pt;}
.y182{bottom:586.235969pt;}
.y214{bottom:590.096002pt;}
.yb2{bottom:591.715991pt;}
.yb1{bottom:591.757324pt;}
.y15{bottom:591.985298pt;}
.y74{bottom:592.462684pt;}
.yfb{bottom:593.809325pt;}
.y235{bottom:593.960020pt;}
.y1a7{bottom:594.722675pt;}
.y271{bottom:594.778694pt;}
.yb0{bottom:595.038658pt;}
.y1f3{bottom:596.696002pt;}
.yfa{bottom:597.941324pt;}
.y213{bottom:602.052002pt;}
.y181{bottom:602.175969pt;}
.y1a6{bottom:606.678675pt;}
.y270{bottom:606.733360pt;}
.y13c{bottom:608.277317pt;}
.y73{bottom:608.466684pt;}
.y234{bottom:609.900020pt;}
.yae{bottom:611.641325pt;}
.yaf{bottom:611.682658pt;}
.y1f2{bottom:612.636002pt;}
.yad{bottom:614.963991pt;}
.y180{bottom:618.115969pt;}
.y1a5{bottom:618.633341pt;}
.y26f{bottom:618.689360pt;}
.y14{bottom:619.941297pt;}
.y37{bottom:620.518682pt;}
.y13b{bottom:624.217317pt;}
.yf9{bottom:624.217324pt;}
.y72{bottom:624.406684pt;}
.y233{bottom:625.840020pt;}
.y1f1{bottom:628.576002pt;}
.y26e{bottom:630.650693pt;}
.y36{bottom:632.473348pt;}
.y13{bottom:633.225297pt;}
.y17f{bottom:634.057302pt;}
.y13a{bottom:636.222650pt;}
.yac{bottom:637.611991pt;}
.y139{bottom:640.157317pt;}
.yf8{bottom:640.157324pt;}
.y71{bottom:640.346684pt;}
.y232{bottom:641.780020pt;}
.y26d{bottom:642.605359pt;}
.y1f0{bottom:644.516002pt;}
.y12{bottom:646.509297pt;}
.y17e{bottom:649.997302pt;}
.yf7{bottom:651.774658pt;}
.yf5{bottom:652.162658pt;}
.y138{bottom:652.306650pt;}
.yab{bottom:653.553325pt;}
.yf6{bottom:654.271991pt;}
.y26c{bottom:654.561359pt;}
.y137{bottom:656.097317pt;}
.yf4{bottom:656.097324pt;}
.y70{bottom:656.286684pt;}
.y231{bottom:658.574686pt;}
.y11{bottom:659.791963pt;}
.y1ef{bottom:660.456002pt;}
.y17d{bottom:665.937302pt;}
.y26b{bottom:666.516026pt;}
.yaa{bottom:669.493325pt;}
.y6f{bottom:672.226684pt;}
.y10{bottom:673.075963pt;}
.y230{bottom:674.514686pt;}
.y26a{bottom:678.477359pt;}
.y1ee{bottom:679.180002pt;}
.y17c{bottom:681.877302pt;}
.ya9{bottom:685.433325pt;}
.yf{bottom:686.358630pt;}
.y6e{bottom:688.166684pt;}
.y269{bottom:690.432025pt;}
.y22f{bottom:690.454686pt;}
.y1ed{bottom:695.121336pt;}
.y17b{bottom:697.817302pt;}
.ye{bottom:699.642630pt;}
.ya8{bottom:701.373325pt;}
.yf3{bottom:701.437326pt;}
.y268{bottom:702.388025pt;}
.y6d{bottom:704.108017pt;}
.y1ec{bottom:711.061336pt;}
.yd{bottom:712.926630pt;}
.yf2{bottom:713.391992pt;}
.y267{bottom:714.349358pt;}
.y17a{bottom:715.018636pt;}
.y6c{bottom:720.048017pt;}
.y178{bottom:720.298682pt;}
.ya7{bottom:722.245324pt;}
.y179{bottom:724.834682pt;}
.yf1{bottom:725.347992pt;}
.yc{bottom:726.209296pt;}
.y266{bottom:726.304024pt;}
.y1eb{bottom:727.001336pt;}
.y177{bottom:728.136015pt;}
.ya6{bottom:730.082657pt;}
.ya5{bottom:733.370657pt;}
.y212{bottom:735.794656pt;}
.y6b{bottom:735.988017pt;}
.yf0{bottom:737.302658pt;}
.y265{bottom:738.260024pt;}
.yb{bottom:739.493296pt;}
.y1ea{bottom:742.941336pt;}
.y211{bottom:747.749322pt;}
.yef{bottom:749.257324pt;}
.y264{bottom:750.221357pt;}
.y6a{bottom:751.928017pt;}
.ya{bottom:752.777296pt;}
.ya4{bottom:758.110657pt;}
.y1e9{bottom:758.881336pt;}
.y176{bottom:758.945348pt;}
.y210{bottom:759.705322pt;}
.y263{bottom:762.176023pt;}
.ya3{bottom:765.947991pt;}
.y9{bottom:766.059963pt;}
.y69{bottom:767.868017pt;}
.ya2{bottom:769.235991pt;}
.y262{bottom:774.130689pt;}
.y1e8{bottom:774.821336pt;}
.y8{bottom:779.343963pt;}
.y2ad{bottom:782.001399pt;}
.y175{bottom:783.753350pt;}
.y68{bottom:783.872017pt;}
.y261{bottom:786.092022pt;}
.y1e7{bottom:790.762669pt;}
.y1c6{bottom:791.297342pt;}
.y174{bottom:791.590684pt;}
.y7{bottom:792.627963pt;}
.y2ac{bottom:793.956065pt;}
.ya1{bottom:794.793323pt;}
.y1a4{bottom:795.980040pt;}
.y260{bottom:798.048022pt;}
.y67{bottom:799.812017pt;}
.y1c5{bottom:803.252008pt;}
.y6{bottom:805.910629pt;}
.y2ab{bottom:805.912065pt;}
.y1e6{bottom:806.702669pt;}
.y1a3{bottom:807.936040pt;}
.y25f{bottom:810.002688pt;}
.ya0{bottom:810.733323pt;}
.y9f{bottom:814.021323pt;}
.y1c4{bottom:815.208008pt;}
.y66{bottom:815.752017pt;}
.y2aa{bottom:817.866732pt;}
.y5{bottom:819.194629pt;}
.y1a2{bottom:819.890706pt;}
.y25e{bottom:821.964021pt;}
.y1e5{bottom:822.642669pt;}
.y9e{bottom:826.673323pt;}
.y173{bottom:829.821350pt;}
.y2a9{bottom:829.822732pt;}
.y65{bottom:831.693351pt;}
.y4{bottom:832.478629pt;}
.y25d{bottom:833.920021pt;}
.y1e4{bottom:838.582669pt;}
.y2a8{bottom:841.777398pt;}
.y9d{bottom:842.613323pt;}
.y3{bottom:845.761296pt;}
.y172{bottom:845.761350pt;}
.y25c{bottom:845.874687pt;}
.y64{bottom:852.197351pt;}
.y2a7{bottom:853.732064pt;}
.y1e3{bottom:857.306669pt;}
.y25b{bottom:857.829353pt;}
.y171{bottom:861.701350pt;}
.y2a6{bottom:865.688064pt;}
.y9c{bottom:865.842657pt;}
.y9b{bottom:868.606657pt;}
.y25a{bottom:869.785353pt;}
.y1e2{bottom:873.246669pt;}
.y63{bottom:877.642684pt;}
.y2a5{bottom:877.642730pt;}
.y259{bottom:881.746686pt;}
.y9a{bottom:887.382657pt;}
.y1e1{bottom:889.188002pt;}
.y2a4{bottom:889.597396pt;}
.y99{bottom:890.145323pt;}
.y62{bottom:893.582684pt;}
.y258{bottom:893.701352pt;}
.y2{bottom:900.766627pt;}
.y2a3{bottom:901.553396pt;}
.y1e0{bottom:905.128002pt;}
.y257{bottom:905.662685pt;}
.y61{bottom:909.522684pt;}
.y98{bottom:910.030656pt;}
.y2a2{bottom:913.508062pt;}
.y256{bottom:917.618685pt;}
.y1df{bottom:921.068002pt;}
.y60{bottom:925.462684pt;}
.y2a1{bottom:925.464062pt;}
.y97{bottom:925.970656pt;}
.y255{bottom:929.580018pt;}
.y1de{bottom:937.008002pt;}
.y2a0{bottom:937.418728pt;}
.y96{bottom:941.402656pt;}
.y5f{bottom:941.402684pt;}
.y254{bottom:941.534684pt;}
.y1{bottom:942.609294pt;}
.y29f{bottom:949.373395pt;}
.y1dd{bottom:952.948002pt;}
.y253{bottom:953.489351pt;}
.y95{bottom:957.342656pt;}
.y5e{bottom:957.342684pt;}
.y29e{bottom:961.329395pt;}
.y94{bottom:973.283989pt;}
.y1dc{bottom:973.284002pt;}
.y5d{bottom:973.284017pt;}
.y29d{bottom:973.284061pt;}
.y59{bottom:998.400000pt;}
.y58{bottom:1011.200000pt;}
.h3b{height:2.125355pt;}
.h7{height:23.910400pt;}
.h17{height:26.972788pt;}
.h4e{height:29.096011pt;}
.h6{height:29.244954pt;}
.h52{height:29.452954pt;}
.h51{height:29.458287pt;}
.h19{height:29.489200pt;}
.h9{height:31.729167pt;}
.h31{height:31.880400pt;}
.h8{height:33.000000pt;}
.h4{height:33.044173pt;}
.h3{height:33.426739pt;}
.hb{height:36.449832pt;}
.h5{height:36.556099pt;}
.ha{height:38.937500pt;}
.hf{height:39.319060pt;}
.hd{height:39.850399pt;}
.h11{height:39.956667pt;}
.h21{height:46.258122pt;}
.h1f{height:46.263455pt;}
.h38{height:47.831455pt;}
.hc{height:48.774533pt;}
.h3f{height:48.779867pt;}
.h50{height:48.881433pt;}
.h1c{height:48.914121pt;}
.h15{height:48.919454pt;}
.h1e{height:50.614766pt;}
.h12{height:50.906399pt;}
.h49{height:50.966533pt;}
.h4d{height:51.435865pt;}
.h20{height:51.718766pt;}
.h37{height:52.970399pt;}
.h2a{height:52.975732pt;}
.h10{height:53.002399pt;}
.h1b{height:53.141066pt;}
.h24{height:53.270766pt;}
.h26{height:53.271455pt;}
.h2{height:53.654400pt;}
.h33{height:53.846766pt;}
.h42{height:53.909066pt;}
.h3a{height:54.229066pt;}
.h34{height:55.589066pt;}
.h36{height:56.373066pt;}
.h2c{height:56.378399pt;}
.h30{height:57.141066pt;}
.h1{height:58.744950pt;}
.h23{height:59.383455pt;}
.h32{height:60.572788pt;}
.h22{height:61.420788pt;}
.h1a{height:62.039454pt;}
.h18{height:62.044787pt;}
.h16{height:62.210120pt;}
.h39{height:62.210122pt;}
.h1d{height:62.972787pt;}
.h25{height:62.978120pt;}
.h3e{height:63.937200pt;}
.h2d{height:64.652787pt;}
.h29{height:65.442120pt;}
.h40{height:66.204787pt;}
.h44{height:66.210121pt;}
.h2f{height:66.396788pt;}
.h35{height:66.562122pt;}
.h41{height:67.330122pt;}
.h28{height:69.010122pt;}
.h2b{height:69.794122pt;}
.h27{height:69.799455pt;}
.h2e{height:70.562122pt;}
.h43{height:70.567455pt;}
.h3d{height:73.750766pt;}
.h48{height:76.559732pt;}
.h13{height:77.069355pt;}
.h3c{height:79.062766pt;}
.he{height:80.431732pt;}
.h46{height:85.367454pt;}
.h47{height:89.713832pt;}
.h4a{height:93.010688pt;}
.h45{height:97.250122pt;}
.h14{height:108.418688pt;}
.h4b{height:122.705200pt;}
.h4c{height:124.360021pt;}
.h4f{height:129.538685pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:22.666667pt;}
.x4{left:72.000010pt;}
.x1{left:74.544000pt;}
.x82{left:77.313337pt;}
.xa{left:81.198000pt;}
.x6{left:83.290676pt;}
.x3{left:85.284008pt;}
.xb{left:89.768000pt;}
.x83{left:96.345337pt;}
.x43{left:115.970676pt;}
.x4e{left:124.668006pt;}
.x39{left:134.862660pt;}
.x2{left:139.061333pt;}
.x7c{left:141.021331pt;}
.xc{left:142.573333pt;}
.x79{left:146.532006pt;}
.x3a{left:153.162659pt;}
.x4f{left:159.388006pt;}
.x3e{left:165.932005pt;}
.x50{left:168.234672pt;}
.x52{left:169.894665pt;}
.x3b{left:173.811993pt;}
.x4d{left:176.629343pt;}
.xd{left:180.328000pt;}
.x5{left:183.368010pt;}
.x7e{left:187.014669pt;}
.x44{left:190.636005pt;}
.x4c{left:192.290670pt;}
.x46{left:195.001342pt;}
.x3c{left:196.329326pt;}
.x81{left:198.006673pt;}
.x40{left:203.418665pt;}
.x48{left:207.553340pt;}
.x78{left:210.398673pt;}
.x3d{left:215.179992pt;}
.x3f{left:216.521337pt;}
.x4a{left:225.159995pt;}
.x76{left:230.774670pt;}
.x41{left:232.145329pt;}
.x42{left:234.013329pt;}
.x7a{left:237.742673pt;}
.x47{left:242.353341pt;}
.x45{left:246.176004pt;}
.x85{left:254.848012pt;}
.x84{left:257.753346pt;}
.xe{left:272.710673pt;}
.x49{left:280.010673pt;}
.x51{left:283.148001pt;}
.x53{left:293.289329pt;}
.x54{left:305.087995pt;}
.x4b{left:316.914661pt;}
.x77{left:341.421336pt;}
.x7b{left:348.232005pt;}
.xf{left:353.061339pt;}
.x38{left:399.104000pt;}
.x7{left:417.600016pt;}
.x14{left:420.634691pt;}
.x29{left:425.716015pt;}
.x68{left:428.088014pt;}
.x8{left:430.884016pt;}
.x58{left:436.409292pt;}
.x5f{left:438.999924pt;}
.x15{left:440.156025pt;}
.x86{left:441.945339pt;}
.x59{left:444.525292pt;}
.x5b{left:449.679959pt;}
.x26{left:463.118677pt;}
.x2a{left:465.612014pt;}
.x57{left:467.452000pt;}
.x69{left:468.462679pt;}
.x12{left:472.052030pt;}
.x5c{left:477.385291pt;}
.x61{left:484.038656pt;}
.x75{left:488.085325pt;}
.x13{left:489.574697pt;}
.x6a{left:491.970662pt;}
.x5a{left:499.585291pt;}
.x60{left:501.153256pt;}
.x80{left:510.577349pt;}
.x17{left:517.402688pt;}
.x1a{left:519.050686pt;}
.x16{left:520.438688pt;}
.x19{left:522.085353pt;}
.x31{left:525.280014pt;}
.x7f{left:527.194678pt;}
.x5d{left:528.357291pt;}
.x1c{left:530.692024pt;}
.x70{left:533.060018pt;}
.x2b{left:535.006681pt;}
.x56{left:536.680002pt;}
.x1d{left:538.808024pt;}
.x63{left:540.114665pt;}
.x2c{left:543.122681pt;}
.x62{left:544.175988pt;}
.x27{left:549.106676pt;}
.x36{left:551.657343pt;}
.x10{left:552.582688pt;}
.x32{left:554.649344pt;}
.x33{left:556.652012pt;}
.x6b{left:557.630656pt;}
.x35{left:558.866679pt;}
.x64{left:563.153331pt;}
.x24{left:565.185349pt;}
.x34{left:567.752013pt;}
.x1e{left:568.728023pt;}
.x1f{left:570.180020pt;}
.x71{left:571.530680pt;}
.x18{left:572.829353pt;}
.x1b{left:574.476019pt;}
.x21{left:581.280020pt;}
.x2e{left:582.842681pt;}
.x2d{left:585.596014pt;}
.x28{left:591.073342pt;}
.x11{left:592.133354pt;}
.x22{left:596.904020pt;}
.x23{left:598.772019pt;}
.x20{left:600.100020pt;}
.x2f{left:601.220014pt;}
.x30{left:603.086680pt;}
.x37{left:607.636008pt;}
.x55{left:618.226663pt;}
.x25{left:623.406682pt;}
.x7d{left:624.689378pt;}
.x65{left:632.314666pt;}
.x5e{left:639.557289pt;}
.x6c{left:648.943988pt;}
.x6d{left:658.010655pt;}
.x67{left:659.178670pt;}
.x66{left:662.870665pt;}
.x6e{left:666.693319pt;}
.x73{left:672.579997pt;}
.x72{left:676.273346pt;}
.x74{left:695.250663pt;}
.x6f{left:698.045318pt;}
}




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