
    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_4c8708419e385b6431ef5042.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_201aefd031f709f28d4b0d22.woff')format("woff");}.ff2{font-family:ff2;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f0a04914a992e0a06907b9e5.woff')format("woff");}.ff3{font-family:ff3;line-height:0.743000;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_34649c9f51f5a91e834326e5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.926000;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_65fef20edb580d7872b1cbe9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.868000;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_eaaf98b455ab1234d66f3a84.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_fb6f222ae0139a8a4cb34194.woff')format("woff");}.ff7{font-family:ff7;line-height:0.949000;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_2708dd2e600ab977c603128a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.890000;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_3dc6e979065bd23a16d300be.woff')format("woff");}.ff9{font-family:ff9;line-height:0.879000;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_03fe675d66af8a67c3b6dccd.woff')format("woff");}.ffa{font-family:ffa;line-height:0.723000;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_fe0d09b3e8d37d9add6131cc.woff')format("woff");}.ffb{font-family:ffb;line-height:0.958008;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_e1d68420f5ce3679dcd713c7.woff')format("woff");}.ffc{font-family:ffc;line-height:0.717285;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_5a0486a7ee8d462707b089ca.woff')format("woff");}.ffd{font-family:ffd;line-height:1.450000;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_dc264b3091de5d062ed47881.woff')format("woff");}.ffe{font-family:ffe;line-height:1.230000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_db4adf1d15a5c993c79cc134.woff')format("woff");}.fff{font-family:fff;line-height:0.461000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_5922222cbd2bbeb453ee8034.woff')format("woff");}.ff10{font-family:ff10;line-height:0.714000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_f6c0739fa94ddb623f647064.woff')format("woff");}.ff11{font-family:ff11;line-height:2.269000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_9a5ed1dac70213c1bf0749a2.woff')format("woff");}.ff12{font-family:ff12;line-height:0.951172;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);}
.v2d{vertical-align:-108.714840px;}
.v2b{vertical-align:-99.881868px;}
.vc{vertical-align:-66.000000px;}
.v27{vertical-align:-54.357120px;}
.v17{vertical-align:-53.280000px;}
.v1{vertical-align:-47.109834px;}
.v8{vertical-align:-45.000000px;}
.v22{vertical-align:-42.153600px;}
.v1f{vertical-align:-40.768320px;}
.v35{vertical-align:-37.852850px;}
.v13{vertical-align:-36.000000px;}
.v31{vertical-align:-34.500000px;}
.v21{vertical-align:-32.288460px;}
.v2e{vertical-align:-27.491340px;}
.v33{vertical-align:-20.785586px;}
.v0{vertical-align:0.000000px;}
.v14{vertical-align:7.488000px;}
.v4{vertical-align:9.855600px;}
.v25{vertical-align:14.602200px;}
.v37{vertical-align:19.219200px;}
.v34{vertical-align:20.785586px;}
.v24{vertical-align:23.541600px;}
.v2f{vertical-align:27.491340px;}
.v15{vertical-align:28.512000px;}
.v28{vertical-align:32.288460px;}
.v1e{vertical-align:35.640000px;}
.v36{vertical-align:37.852850px;}
.v20{vertical-align:40.768320px;}
.v23{vertical-align:42.153600px;}
.v7{vertical-align:45.000000px;}
.v2{vertical-align:47.109834px;}
.v30{vertical-align:51.060000px;}
.v3{vertical-align:52.414331px;}
.va{vertical-align:58.627800px;}
.v29{vertical-align:60.336960px;}
.v6{vertical-align:66.600000px;}
.v18{vertical-align:68.601351px;}
.v5{vertical-align:69.722280px;}
.v19{vertical-align:77.700000px;}
.v26{vertical-align:80.449320px;}
.v16{vertical-align:81.792000px;}
.v11{vertical-align:92.407920px;}
.v12{vertical-align:101.520000px;}
.v32{vertical-align:103.500000px;}
.v1b{vertical-align:108.000000px;}
.v9{vertical-align:111.600000px;}
.v1c{vertical-align:113.631720px;}
.ve{vertical-align:116.143080px;}
.v2a{vertical-align:122.304360px;}
.vb{vertical-align:125.227800px;}
.vd{vertical-align:131.936940px;}
.vf{vertical-align:133.545780px;}
.v1d{vertical-align:134.999982px;}
.v10{vertical-align:136.763400px;}
.v1a{vertical-align:157.500000px;}
.v2c{vertical-align:185.739492px;}
.ls76{letter-spacing:-35.078400px;}
.ls73{letter-spacing:-26.730000px;}
.ls72{letter-spacing:-25.650000px;}
.ls74{letter-spacing:-7.200000px;}
.lsc{letter-spacing:-7.128000px;}
.ls71{letter-spacing:-6.840000px;}
.ls81{letter-spacing:-6.600000px;}
.ls77{letter-spacing:-6.264000px;}
.ls36{letter-spacing:-6.120000px;}
.ls24{letter-spacing:-5.976000px;}
.ls2c{letter-spacing:-5.904000px;}
.ls94{letter-spacing:-0.022440px;}
.ls1{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.000002px;}
.ls4{letter-spacing:0.000012px;}
.lsa{letter-spacing:0.000013px;}
.ls1c{letter-spacing:0.000015px;}
.ls1d{letter-spacing:0.000018px;}
.lsb{letter-spacing:0.000023px;}
.ls3{letter-spacing:0.000025px;}
.ls2f{letter-spacing:0.000039px;}
.ls26{letter-spacing:0.000052px;}
.ls8f{letter-spacing:0.000058px;}
.ls57{letter-spacing:0.000062px;}
.ls50{letter-spacing:0.000066px;}
.ls62{letter-spacing:0.000114px;}
.ls22{letter-spacing:0.000120px;}
.ls91{letter-spacing:0.000167px;}
.ls5f{letter-spacing:0.000180px;}
.ls6d{letter-spacing:0.000300px;}
.ls6f{letter-spacing:0.000477px;}
.ls6{letter-spacing:0.000480px;}
.ls54{letter-spacing:0.021600px;}
.ls93{letter-spacing:0.022440px;}
.ls41{letter-spacing:0.024000px;}
.ls2e{letter-spacing:0.027600px;}
.ls7e{letter-spacing:0.029304px;}
.ls3d{letter-spacing:0.030000px;}
.ls75{letter-spacing:0.033600px;}
.ls63{letter-spacing:0.036000px;}
.ls67{letter-spacing:0.048000px;}
.ls0{letter-spacing:0.066000px;}
.ls61{letter-spacing:0.708180px;}
.ls6a{letter-spacing:0.959880px;}
.ls52{letter-spacing:0.960000px;}
.ls3a{letter-spacing:1.007880px;}
.ls6b{letter-spacing:2.051637px;}
.ls37{letter-spacing:6.927420px;}
.ls9{letter-spacing:7.366336px;}
.ls39{letter-spacing:7.488000px;}
.ls8b{letter-spacing:8.736000px;}
.ls15{letter-spacing:9.360000px;}
.ls4d{letter-spacing:9.530364px;}
.ls8{letter-spacing:10.468691px;}
.ls87{letter-spacing:13.857062px;}
.ls80{letter-spacing:18.327510px;}
.ls7f{letter-spacing:18.327690px;}
.ls2a{letter-spacing:18.542741px;}
.ls8a{letter-spacing:18.666600px;}
.ls89{letter-spacing:18.666660px;}
.ls2d{letter-spacing:18.768716px;}
.ls33{letter-spacing:19.220614px;}
.ls35{letter-spacing:19.221107px;}
.ls19{letter-spacing:19.999800px;}
.ls13{letter-spacing:19.999980px;}
.ls14{letter-spacing:20.000040px;}
.ls1a{letter-spacing:20.000400px;}
.ls3f{letter-spacing:20.132388px;}
.ls3e{letter-spacing:20.132434px;}
.ls79{letter-spacing:20.363820px;}
.ls4c{letter-spacing:20.364108px;}
.ls7a{letter-spacing:20.364288px;}
.ls86{letter-spacing:23.095093px;}
.ls6e{letter-spacing:24.460971px;}
.ls90{letter-spacing:25.235206px;}
.ls5d{letter-spacing:27.178710px;}
.ls70{letter-spacing:27.233098px;}
.ls58{letter-spacing:27.233277px;}
.ls8d{letter-spacing:27.999600px;}
.ls88{letter-spacing:28.000020px;}
.ls12{letter-spacing:30.000000px;}
.ls4f{letter-spacing:30.545850px;}
.ls7d{letter-spacing:30.546120px;}
.ls78{letter-spacing:30.546150px;}
.ls7c{letter-spacing:30.546450px;}
.ls5{letter-spacing:31.406790px;}
.ls5a{letter-spacing:36.237979px;}
.ls56{letter-spacing:36.238099px;}
.ls6c{letter-spacing:36.238128px;}
.ls5c{letter-spacing:36.238380px;}
.ls59{letter-spacing:36.238500px;}
.ls60{letter-spacing:36.238579px;}
.ls83{letter-spacing:38.333340px;}
.ls28{letter-spacing:39.620280px;}
.ls29{letter-spacing:39.620587px;}
.ls49{letter-spacing:40.000020px;}
.ls3b{letter-spacing:40.000080px;}
.ls3c{letter-spacing:40.000200px;}
.ls82{letter-spacing:40.083600px;}
.ls20{letter-spacing:40.103429px;}
.ls1f{letter-spacing:40.103970px;}
.ls42{letter-spacing:40.728158px;}
.ls31{letter-spacing:41.070180px;}
.ls32{letter-spacing:41.070331px;}
.ls48{letter-spacing:41.288280px;}
.ls11{letter-spacing:41.875286px;}
.ls10{letter-spacing:41.875380px;}
.ls8e{letter-spacing:42.058662px;}
.ls23{letter-spacing:44.000400px;}
.ls5b{letter-spacing:45.297859px;}
.ls5e{letter-spacing:45.297912px;}
.ls55{letter-spacing:45.554471px;}
.ls66{letter-spacing:46.837315px;}
.ls64{letter-spacing:46.837350px;}
.ls65{letter-spacing:46.837375px;}
.ls84{letter-spacing:48.879840px;}
.ls51{letter-spacing:50.000040px;}
.ls40{letter-spacing:50.330978px;}
.ls4a{letter-spacing:50.466960px;}
.ls7{letter-spacing:52.344240px;}
.ls2{letter-spacing:52.344245px;}
.lsf{letter-spacing:52.344301px;}
.ls43{letter-spacing:58.333320px;}
.ls45{letter-spacing:58.333380px;}
.ls47{letter-spacing:58.333560px;}
.ls38{letter-spacing:58.423980px;}
.ls27{letter-spacing:59.431020px;}
.ls1e{letter-spacing:60.155445px;}
.ls30{letter-spacing:61.604850px;}
.ls34{letter-spacing:61.605090px;}
.ls44{letter-spacing:67.827360px;}
.ls21{letter-spacing:73.333320px;}
.ls69{letter-spacing:100.082280px;}
.ls92{letter-spacing:102.510000px;}
.lsd{letter-spacing:105.358620px;}
.lse{letter-spacing:105.358680px;}
.ls85{letter-spacing:116.507220px;}
.ls4b{letter-spacing:121.572720px;}
.ls8c{letter-spacing:173.639400px;}
.ls46{letter-spacing:177.293580px;}
.ls18{letter-spacing:186.041700px;}
.ls16{letter-spacing:186.041940px;}
.ls1b{letter-spacing:186.042000px;}
.ls7b{letter-spacing:189.428010px;}
.ls4e{letter-spacing:189.428610px;}
.ls2b{letter-spacing:386.525522px;}
.ls68{letter-spacing:503.414760px;}
.ls53{letter-spacing:2053.544400px;}
.ls17{letter-spacing:2611.719660px;}
.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;}
}
.ws49{word-spacing:-92.880000px;}
.ws1{word-spacing:-91.951200px;}
.ws46{word-spacing:-88.236000px;}
.ws50{word-spacing:-85.140000px;}
.ws4c{word-spacing:-80.805600px;}
.ws18{word-spacing:-78.948000px;}
.wse{word-spacing:-77.090400px;}
.ws14{word-spacing:-76.161600px;}
.ws48{word-spacing:-72.349200px;}
.ws47{word-spacing:-69.426000px;}
.ws25{word-spacing:-63.384000px;}
.ws4b{word-spacing:-51.991200px;}
.ws24{word-spacing:-50.040000px;}
.ws4d{word-spacing:-46.737600px;}
.ws8{word-spacing:-43.368000px;}
.ws22{word-spacing:-41.730000px;}
.ws36{word-spacing:-37.530000px;}
.ws4f{word-spacing:-33.360000px;}
.ws61{word-spacing:-31.214040px;}
.ws60{word-spacing:-31.191600px;}
.ws3c{word-spacing:-1.291800px;}
.ws4a{word-spacing:-0.434860px;}
.ws19{word-spacing:-0.369631px;}
.wsf{word-spacing:-0.360934px;}
.ws15{word-spacing:-0.356585px;}
.ws4e{word-spacing:-0.356400px;}
.ws10{word-spacing:-0.298800px;}
.ws12{word-spacing:-0.264000px;}
.ws1a{word-spacing:-0.262438px;}
.ws17{word-spacing:-0.256263px;}
.ws16{word-spacing:-0.253175px;}
.ws26{word-spacing:-0.228000px;}
.ws3f{word-spacing:-0.217430px;}
.ws2d{word-spacing:-0.216000px;}
.ws2a{word-spacing:-0.210000px;}
.ws3{word-spacing:-0.188439px;}
.ws13{word-spacing:-0.187440px;}
.ws27{word-spacing:-0.185409px;}
.ws2f{word-spacing:-0.183277px;}
.ws20{word-spacing:-0.181192px;}
.ws9{word-spacing:-0.180000px;}
.ws3d{word-spacing:-0.168614px;}
.ws5a{word-spacing:-0.168000px;}
.ws37{word-spacing:-0.163072px;}
.ws2e{word-spacing:-0.153360px;}
.ws5d{word-spacing:-0.151411px;}
.ws2b{word-spacing:-0.149100px;}
.ws1c{word-spacing:-0.144000px;}
.ws55{word-spacing:-0.138000px;}
.ws7{word-spacing:-0.133815px;}
.ws5{word-spacing:-0.133792px;}
.ws32{word-spacing:-0.130193px;}
.ws31{word-spacing:-0.130126px;}
.ws21{word-spacing:-0.128646px;}
.wsa{word-spacing:-0.127800px;}
.ws3e{word-spacing:-0.119716px;}
.ws5b{word-spacing:-0.119280px;}
.ws3b{word-spacing:-0.115781px;}
.ws51{word-spacing:-0.109966px;}
.ws5e{word-spacing:-0.107502px;}
.ws1e{word-spacing:-0.102240px;}
.ws6{word-spacing:-0.100578px;}
.ws56{word-spacing:-0.097980px;}
.ws57{word-spacing:-0.083142px;}
.ws53{word-spacing:-0.078076px;}
.ws59{word-spacing:-0.059031px;}
.ws0{word-spacing:0.000000px;}
.ws23{word-spacing:8.631000px;}
.ws4{word-spacing:18.164817px;}
.wsb{word-spacing:19.872240px;}
.ws30{word-spacing:20.233940px;}
.ws58{word-spacing:23.011964px;}
.ws1f{word-spacing:26.722200px;}
.ws45{word-spacing:27.069818px;}
.ws40{word-spacing:27.069998px;}
.ws42{word-spacing:27.070418px;}
.ws34{word-spacing:29.880000px;}
.ws52{word-spacing:30.436111px;}
.ws39{word-spacing:33.271389px;}
.ws44{word-spacing:36.074906px;}
.ws38{word-spacing:36.075248px;}
.ws35{word-spacing:38.880000px;}
.ws1d{word-spacing:39.888000px;}
.ws28{word-spacing:40.581482px;}
.ws54{word-spacing:41.706660px;}
.ws5c{word-spacing:41.907311px;}
.ws2c{word-spacing:43.519980px;}
.ws43{word-spacing:45.134786px;}
.ws3a{word-spacing:45.182157px;}
.ws2{word-spacing:52.155801px;}
.ws5f{word-spacing:60.131760px;}
.ws29{word-spacing:63.466800px;}
.ws11{word-spacing:73.069320px;}
.ws41{word-spacing:88.382769px;}
.ws33{word-spacing:97.281840px;}
.wsc{word-spacing:116.772600px;}
.ws1b{word-spacing:147.680135px;}
.wsd{word-spacing:152.300820px;}
._11{margin-left:-97.896000px;}
._14{margin-left:-67.128600px;}
._27{margin-left:-64.331400px;}
._1{margin-left:-14.904000px;}
._e{margin-left:-13.276200px;}
._9{margin-left:-11.544000px;}
._2a{margin-left:-10.299960px;}
._b{margin-left:-9.276240px;}
._33{margin-left:-8.255340px;}
._3{margin-left:-7.128000px;}
._6{margin-left:-6.113253px;}
._4{margin-left:-4.368000px;}
._2{margin-left:-2.916000px;}
._0{margin-left:-1.122000px;}
._12{width:1.858200px;}
._8{width:3.564000px;}
._29{width:4.986300px;}
._15{width:6.035520px;}
._16{width:10.293420px;}
._2f{width:11.446320px;}
._2d{width:15.251100px;}
._2e{width:16.823880px;}
._22{width:17.946000px;}
._21{width:19.098000px;}
._23{width:20.106000px;}
._2c{width:22.093473px;}
._2b{width:23.113200px;}
._30{width:25.929420px;}
._24{width:28.814400px;}
._32{width:42.793625px;}
._31{width:43.948740px;}
._1c{width:45.681588px;}
._17{width:76.410000px;}
._d{width:80.064000px;}
._26{width:95.619180px;}
._13{width:99.776520px;}
._1d{width:131.815920px;}
._10{width:145.507800px;}
._28{width:200.356440px;}
._25{width:350.106600px;}
._f{width:418.099680px;}
._1a{width:611.031000px;}
._1e{width:626.235000px;}
._19{width:903.027600px;}
._5{width:914.251800px;}
._20{width:1042.098540px;}
._7{width:1137.231000px;}
._18{width:1264.267800px;}
._1f{width:1444.218600px;}
._1b{width:1669.503000px;}
._c{width:1794.103653px;}
._a{width:1875.991053px;}
.fc8{color:rgb(255,149,202);}
.fc4{color:transparent;}
.fc7{color:rgb(146,146,146);}
.fc6{color:rgb(169,169,169);}
.fc5{color:rgb(192,192,192);}
.fc3{color:rgb(146,146,146);}
.fc2{color:rgb(94,94,94);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs3e{font-size:59.031093px;}
.fs3b{font-size:78.075840px;}
.fs3d{font-size:83.142375px;}
.fs3c{font-size:97.980000px;}
.fs7{font-size:100.578341px;}
.fs1a{font-size:102.240000px;}
.fs41{font-size:107.501970px;}
.fs27{font-size:108.000000px;}
.fs3a{font-size:109.965960px;}
.fs42{font-size:112.200000px;}
.fs2c{font-size:115.781400px;}
.fs3f{font-size:119.280000px;}
.fs2e{font-size:119.716260px;}
.fs21{font-size:120.000000px;}
.fsc{font-size:127.800000px;}
.fs1d{font-size:128.646000px;}
.fs29{font-size:130.126380px;}
.fs20{font-size:131.640213px;}
.fs5{font-size:133.791840px;}
.fs2a{font-size:135.000000px;}
.fs14{font-size:138.000000px;}
.fs6{font-size:141.659606px;}
.fs19{font-size:144.000000px;}
.fs22{font-size:146.621280px;}
.fs24{font-size:149.100000px;}
.fs1b{font-size:150.000000px;}
.fs40{font-size:151.411239px;}
.fs26{font-size:153.360000px;}
.fs32{font-size:154.375260px;}
.fs3{font-size:156.000000px;}
.fs1{font-size:162.000000px;}
.fs2b{font-size:163.072440px;}
.fs38{font-size:168.000000px;}
.fs2d{font-size:168.614460px;}
.fsb{font-size:180.000000px;}
.fs1c{font-size:181.191600px;}
.fs28{font-size:183.276600px;}
.fs1f{font-size:185.408779px;}
.fs10{font-size:187.440000px;}
.fs4{font-size:188.439240px;}
.fs9{font-size:191.880000px;}
.fs8{font-size:198.000000px;}
.fs39{font-size:205.269780px;}
.fs23{font-size:210.000000px;}
.fs25{font-size:216.000000px;}
.fs31{font-size:217.429920px;}
.fs30{font-size:221.400000px;}
.fs1e{font-size:228.000000px;}
.fs2f{font-size:240.000000px;}
.fs13{font-size:253.175400px;}
.fs15{font-size:256.262880px;}
.fs18{font-size:262.437900px;}
.fsf{font-size:264.000000px;}
.fs11{font-size:295.200000px;}
.fsd{font-size:298.800000px;}
.fsa{font-size:300.000000px;}
.fs16{font-size:306.000000px;}
.fs36{font-size:308.750460px;}
.fs37{font-size:313.200000px;}
.fs0{font-size:330.000000px;}
.fs33{font-size:342.000000px;}
.fs2{font-size:356.400000px;}
.fs12{font-size:356.585040px;}
.fs34{font-size:360.000000px;}
.fse{font-size:360.933660px;}
.fs17{font-size:369.630840px;}
.fs35{font-size:434.859840px;}
.y16e{bottom:-3.098505px;}
.y170{bottom:-3.098355px;}
.y134{bottom:-2.925180px;}
.y12e{bottom:-2.925165px;}
.y0{bottom:0.000000px;}
.y21{bottom:0.276681px;}
.y11b{bottom:0.405240px;}
.yae{bottom:0.513165px;}
.y118{bottom:0.529995px;}
.ya4{bottom:0.649003px;}
.y140{bottom:0.659550px;}
.y5b{bottom:0.696225px;}
.y106{bottom:0.760995px;}
.y3c{bottom:1.177800px;}
.yc5{bottom:1.729950px;}
.y74{bottom:1.781130px;}
.yb6{bottom:1.835475px;}
.yc8{bottom:1.895910px;}
.yb9{bottom:2.077500px;}
.y45{bottom:2.089650px;}
.y1e{bottom:2.089695px;}
.y97{bottom:2.089800px;}
.y13c{bottom:2.399400px;}
.y7d{bottom:3.669210px;}
.y139{bottom:6.701520px;}
.yd5{bottom:6.701550px;}
.y156{bottom:7.236135px;}
.y14a{bottom:7.236150px;}
.y15f{bottom:7.277199px;}
.y158{bottom:7.277244px;}
.y15d{bottom:8.081700px;}
.ya8{bottom:8.204338px;}
.y31{bottom:8.929350px;}
.yc2{bottom:8.952060px;}
.y144{bottom:9.624990px;}
.y162{bottom:9.839462px;}
.y115{bottom:10.510425px;}
.yf5{bottom:10.597125px;}
.yde{bottom:10.597275px;}
.yc4{bottom:10.729950px;}
.yed{bottom:10.867629px;}
.y11f{bottom:10.867635px;}
.yff{bottom:10.867665px;}
.ye9{bottom:10.957365px;}
.y7a{bottom:11.678160px;}
.y164{bottom:11.736150px;}
.y20{bottom:11.811545px;}
.y23{bottom:12.145350px;}
.y40{bottom:12.245700px;}
.y12{bottom:12.245730px;}
.y18{bottom:12.245850px;}
.yb3{bottom:12.367500px;}
.yce{bottom:12.959400px;}
.yd1{bottom:12.959550px;}
.y6a{bottom:13.450005px;}
.y108{bottom:14.013945px;}
.y112{bottom:14.757975px;}
.yea{bottom:14.874427px;}
.yb5{bottom:14.960475px;}
.ye1{bottom:16.125825px;}
.yac{bottom:16.312650px;}
.y60{bottom:16.559250px;}
.y8b{bottom:16.559280px;}
.y66{bottom:16.559325px;}
.y5e{bottom:16.559400px;}
.yf8{bottom:16.840785px;}
.ye3{bottom:16.840875px;}
.y76{bottom:17.999250px;}
.y81{bottom:17.999400px;}
.y137{bottom:18.112770px;}
.y138{bottom:18.156297px;}
.yd4{bottom:18.156405px;}
.ybb{bottom:18.362400px;}
.y54{bottom:18.497820px;}
.y27{bottom:18.634290px;}
.y2c{bottom:18.634350px;}
.y14{bottom:18.667740px;}
.y41{bottom:18.667800px;}
.y71{bottom:18.773130px;}
.y15c{bottom:19.331706px;}
.y3a{bottom:19.564350px;}
.y90{bottom:19.801815px;}
.y132{bottom:20.159175px;}
.y11d{bottom:20.225940px;}
.yeb{bottom:20.225948px;}
.yfd{bottom:20.226000px;}
.ye7{bottom:20.338200px;}
.y1a{bottom:20.757450px;}
.y136{bottom:20.757585px;}
.yb{bottom:20.757600px;}
.y8e{bottom:21.599100px;}
.yfb{bottom:21.599130px;}
.y123{bottom:21.599250px;}
.y119{bottom:21.715275px;}
.ybd{bottom:21.741900px;}
.y2e{bottom:22.541100px;}
.ya6{bottom:22.715085px;}
.ya2{bottom:22.715100px;}
.y12c{bottom:22.837740px;}
.y13e{bottom:22.916850px;}
.y57{bottom:23.951100px;}
.yec{bottom:24.232755px;}
.y15b{bottom:24.438150px;}
.y16{bottom:26.505600px;}
.y73{bottom:27.017130px;}
.yf2{bottom:27.990510px;}
.y128{bottom:28.027740px;}
.y155{bottom:28.287420px;}
.y102{bottom:28.798800px;}
.y5a{bottom:29.731995px;}
.y35{bottom:30.909750px;}
.y11c{bottom:32.474805px;}
.y154{bottom:32.519850px;}
.y47{bottom:33.284700px;}
.y25{bottom:34.491225px;}
.y2a{bottom:34.491300px;}
.y3e{bottom:34.533000px;}
.y10{bottom:34.533045px;}
.ybf{bottom:35.952060px;}
.y69{bottom:36.551985px;}
.yaa{bottom:36.575160px;}
.yf{bottom:36.925500px;}
.y49{bottom:40.800150px;}
.y9c{bottom:40.800300px;}
.y11e{bottom:41.833125px;}
.yd0{bottom:42.659550px;}
.y11a{bottom:42.855027px;}
.y3{bottom:43.223850px;}
.y153{bottom:43.769856px;}
.y70{bottom:45.773130px;}
.yab{bottom:48.712650px;}
.yb0{bottom:51.742500px;}
.yad{bottom:52.374630px;}
.y13{bottom:52.790805px;}
.y87{bottom:54.359250px;}
.y83{bottom:54.359280px;}
.y65{bottom:54.359325px;}
.y5d{bottom:54.359400px;}
.y39{bottom:55.718910px;}
.y160{bottom:59.098740px;}
.y11{bottom:59.212815px;}
.y117{bottom:59.847570px;}
.yc7{bottom:60.585300px;}
.yf9{bottom:60.700485px;}
.yc1{bottom:61.332060px;}
.y88{bottom:62.338215px;}
.y8c{bottom:62.338260px;}
.y1c{bottom:64.066770px;}
.y43{bottom:64.066800px;}
.y131{bottom:67.987725px;}
.y1b{bottom:68.309235px;}
.ye5{bottom:70.199100px;}
.yfa{bottom:70.199130px;}
.y122{bottom:70.199250px;}
.yc0{bottom:70.719450px;}
.y130{bottom:81.316260px;}
.y135{bottom:84.546555px;}
.yd7{bottom:85.940120px;}
.y72{bottom:86.795130px;}
.y1d{bottom:86.977110px;}
.yb8{bottom:87.666150px;}
.yd2{bottom:87.725160px;}
.yb2{bottom:88.755000px;}
.yf7{bottom:92.250330px;}
.y101{bottom:93.598800px;}
.y64{bottom:93.616845px;}
.y157{bottom:100.005510px;}
.ya5{bottom:100.649880px;}
.yb1{bottom:102.444900px;}
.y34{bottom:108.146550px;}
.yf1{bottom:109.091115px;}
.ya7{bottom:115.160625px;}
.y82{bottom:119.624970px;}
.y161{bottom:130.316100px;}
.y24{bottom:134.068725px;}
.y110{bottom:135.321150px;}
.y2{bottom:139.223850px;}
.y8a{bottom:139.657020px;}
.y38{bottom:142.337310px;}
.y12b{bottom:146.822010px;}
.y26{bottom:149.925675px;}
.yd6{bottom:151.415115px;}
.y133{bottom:152.229150px;}
.y116{bottom:160.319850px;}
.y15e{bottom:163.709100px;}
.y12d{bottom:172.584900px;}
.y13d{bottom:175.659750px;}
.ya1{bottom:176.011650px;}
.y86{bottom:179.175750px;}
.yf6{bottom:179.901150px;}
.y33{bottom:185.383350px;}
.y10f{bottom:191.425950px;}
.yf0{bottom:196.026900px;}
.y182{bottom:196.848300px;}
.y13f{bottom:197.917050px;}
.ya3{bottom:198.077700px;}
.y16c{bottom:201.207900px;}
.yba{bottom:208.326150px;}
.y89{bottom:216.975750px;}
.y84{bottom:219.448200px;}
.yca{bottom:220.515450px;}
.y150{bottom:226.262400px;}
.y181{bottom:229.848300px;}
.y3b{bottom:231.316500px;}
.y37{bottom:232.494300px;}
.y14f{bottom:234.887400px;}
.y8{bottom:238.072800px;}
.yfc{bottom:238.204950px;}
.y121{bottom:243.592950px;}
.y16b{bottom:246.063600px;}
.yfe{bottom:247.563300px;}
.y16f{bottom:253.966800px;}
.y63{bottom:257.056950px;}
.ya0{bottom:258.212100px;}
.y13a{bottom:259.603500px;}
.y32{bottom:262.620150px;}
.y180{bottom:269.448300px;}
.y163{bottom:274.806300px;}
.y36{bottom:274.896000px;}
.y114{bottom:281.109300px;}
.y12f{bottom:283.000050px;}
.y7{bottom:287.572800px;}
.y10e{bottom:291.619800px;}
.yf4{bottom:303.900450px;}
.y14e{bottom:308.837070px;}
.y17f{bottom:309.048300px;}
.y1f{bottom:311.949750px;}
.yef{bottom:314.497650px;}
.y30{bottom:332.231850px;}
.y152{bottom:334.521270px;}
.y14b{bottom:334.712070px;}
.y6{bottom:337.072800px;}
.y7b{bottom:342.964800px;}
.y17e{bottom:348.648300px;}
.y7c{bottom:354.433050px;}
.y16a{bottom:356.187450px;}
.y14d{bottom:359.034570px;}
.y13b{bottom:359.339400px;}
.y14c{bottom:368.030700px;}
.y10d{bottom:370.609050px;}
.y61{bottom:370.915800px;}
.ycb{bottom:378.611550px;}
.ye{bottom:382.582800px;}
.yf3{bottom:385.826550px;}
.y17d{bottom:388.248300px;}
.y151{bottom:390.765300px;}
.yee{bottom:396.423750px;}
.ycc{bottom:404.494950px;}
.y169{bottom:404.913450px;}
.y125{bottom:412.875000px;}
.y15a{bottom:424.511370px;}
.y17c{bottom:427.848300px;}
.y5{bottom:434.572800px;}
.y159{bottom:435.011370px;}
.y28{bottom:444.257850px;}
.y62{bottom:446.974500px;}
.y168{bottom:449.769150px;}
.y7f{bottom:455.467200px;}
.y16d{bottom:457.672350px;}
.y17b{bottom:467.448300px;}
.ydc{bottom:476.592600px;}
.y15{bottom:477.220650px;}
.y10c{bottom:479.698050px;}
.y4{bottom:484.072800px;}
.y22{bottom:490.164000px;}
.y79{bottom:490.494450px;}
.y17{bottom:491.480400px;}
.y17a{bottom:507.048300px;}
.ye4{bottom:513.450000px;}
.ye2{bottom:540.852300px;}
.y113{bottom:544.166100px;}
.y109{bottom:546.133770px;}
.y179{bottom:546.648300px;}
.y78{bottom:549.938400px;}
.y167{bottom:556.242300px;}
.ydb{bottom:557.693100px;}
.y10b{bottom:558.924150px;}
.y7e{bottom:561.657600px;}
.y5c{bottom:569.378250px;}
.y1{bottom:578.135700px;}
.yd{bottom:585.003300px;}
.y178{bottom:586.248300px;}
.y146{bottom:588.744750px;}
.y2d{bottom:592.693650px;}
.y2f{bottom:598.658850px;}
.y4f{bottom:606.043320px;}
.y50{bottom:609.450270px;}
.y4e{bottom:620.700270px;}
.y177{bottom:625.848300px;}
.ye0{bottom:628.503150px;}
.y111{bottom:629.871000px;}
.yb4{bottom:634.926300px;}
.y10a{bottom:641.353950px;}
.y145{bottom:643.233300px;}
.yc9{bottom:644.613525px;}
.yda{bottom:644.629050px;}
.y166{bottom:652.968300px;}
.y176{bottom:665.448300px;}
.y77{bottom:672.030900px;}
.y80{bottom:675.106950px;}
.y5f{bottom:683.237100px;}
.y4d{bottom:685.114920px;}
.y19{bottom:686.213550px;}
.y4c{bottom:688.521870px;}
.y143{bottom:697.592400px;}
.y4b{bottom:699.771870px;}
.y175{bottom:705.048300px;}
.y93{bottom:705.662700px;}
.y48{bottom:738.076800px;}
.y9b{bottom:739.414200px;}
.y4a{bottom:740.796150px;}
.y174{bottom:744.648300px;}
.y42{bottom:746.539500px;}
.y104{bottom:747.758100px;}
.y95{bottom:747.877050px;}
.y165{bottom:749.694300px;}
.ydf{bottom:752.502450px;}
.yaf{bottom:753.699450px;}
.y46{bottom:759.321600px;}
.y98{bottom:760.659150px;}
.yd9{bottom:763.099650px;}
.y44{bottom:765.207450px;}
.y96{bottom:766.544850px;}
.y56{bottom:783.565200px;}
.y173{bottom:784.248300px;}
.yc{bottom:787.423650px;}
.y6f{bottom:790.725750px;}
.yb7{bottom:803.651100px;}
.y91{bottom:805.485900px;}
.yd3{bottom:817.994850px;}
.y172{bottom:823.848300px;}
.ybc{bottom:830.596200px;}
.ydd{bottom:834.428550px;}
.ycf{bottom:836.991300px;}
.y107{bottom:837.977700px;}
.yd8{bottom:845.025900px;}
.y103{bottom:846.106200px;}
.y105{bottom:851.230650px;}
.y129{bottom:853.000050px;}
.y171{bottom:863.448300px;}
.y3d{bottom:873.029550px;}
.y29{bottom:873.037800px;}
.y9d{bottom:888.191850px;}
.y99{bottom:888.233550px;}
.y2b{bottom:888.894750px;}
.y3f{bottom:895.316850px;}
.y124{bottom:902.573100px;}
.y55{bottom:904.031580px;}
.y9f{bottom:904.057050px;}
.y9a{bottom:904.090500px;}
.y92{bottom:905.309100px;}
.y9e{bottom:910.479150px;}
.ya{bottom:911.046450px;}
.yc3{bottom:919.601400px;}
.ycd{bottom:920.187750px;}
.y85{bottom:924.135000px;}
.y75{bottom:932.721600px;}
.y149{bottom:947.104500px;}
.y100{bottom:956.599950px;}
.y148{bottom:958.982820px;}
.y142{bottom:959.753250px;}
.y147{bottom:970.232820px;}
.ya9{bottom:970.812150px;}
.y51{bottom:970.950900px;}
.y127{bottom:977.561100px;}
.y68{bottom:983.492850px;}
.y6c{bottom:987.662700px;}
.y59{bottom:988.589250px;}
.y53{bottom:998.162700px;}
.ybe{bottom:1000.807950px;}
.y126{bottom:1005.588900px;}
.y6d{bottom:1005.859950px;}
.y6b{bottom:1006.160550px;}
.y9{bottom:1006.418850px;}
.y8f{bottom:1006.557450px;}
.y120{bottom:1010.033250px;}
.y52{bottom:1016.660550px;}
.y12a{bottom:1017.261900px;}
.y58{bottom:1018.321350px;}
.y67{bottom:1020.044850px;}
.y94{bottom:1031.060550px;}
.y8d{bottom:1034.250750px;}
.yc6{bottom:1035.023100px;}
.y6e{bottom:1041.466500px;}
.y141{bottom:1041.831900px;}
.ye6{bottom:1064.661150px;}
.ye8{bottom:1074.042000px;}
.h97{height:20.116440px;}
.hb5{height:21.253770px;}
.had{height:21.473805px;}
.h4f{height:25.292175px;}
.ha0{height:28.401735px;}
.h88{height:28.489155px;}
.h70{height:28.575990px;}
.h43{height:28.869135px;}
.h7a{height:29.457375px;}
.h77{height:29.547150px;}
.h9c{height:31.500000px;}
.hb2{height:35.692935px;}
.h81{height:37.985550px;}
.h6e{height:38.156505px;}
.h4b{height:39.862890px;}
.h49{height:40.046445px;}
.h9e{height:40.701000px;}
.h1b{height:41.486790px;}
.h11{height:41.686530px;}
.h14{height:42.908085px;}
.hd{height:43.008435px;}
.h41{height:43.047045px;}
.h5f{height:43.135320px;}
.h71{height:43.685070px;}
.h8{height:44.421720px;}
.h65{height:46.500000px;}
.h7f{height:46.962690px;}
.h86{height:50.144775px;}
.h16{height:50.480520px;}
.ha{height:50.843730px;}
.h73{height:52.227495px;}
.h18{height:55.500000px;}
.h68{height:56.807955px;}
.hb1{height:58.792350px;}
.h30{height:59.250000px;}
.h55{height:61.530675px;}
.h5a{height:62.548065px;}
.hae{height:63.188205px;}
.h79{height:63.649950px;}
.h3e{height:63.750000px;}
.h76{height:63.784635px;}
.ha9{height:66.920340px;}
.h13{height:68.695007px;}
.h3a{height:69.829920px;}
.h3c{height:70.341120px;}
.h5{height:70.717365px;}
.ha3{height:72.000000px;}
.h5c{height:72.342960px;}
.h95{height:75.214245px;}
.h92{height:75.971100px;}
.h17{height:76.142160px;}
.h67{height:76.200000px;}
.h46{height:76.500000px;}
.h48{height:78.592365px;}
.h9d{height:79.555665px;}
.h66{height:79.576172px;}
.h8e{height:79.657603px;}
.h28{height:80.212350px;}
.h25{height:80.984490px;}
.hb7{height:82.670801px;}
.ha1{height:83.574130px;}
.hc{height:83.862150px;}
.h10{height:84.000000px;}
.h4d{height:85.313235px;}
.h61{height:86.133360px;}
.h8a{height:87.692205px;}
.h4e{height:88.417969px;}
.h15{height:93.444990px;}
.h7{height:93.495165px;}
.ha7{height:94.254000px;}
.h31{height:94.616055px;}
.h1d{height:95.885730px;}
.h2e{height:97.050000px;}
.h39{height:98.352000px;}
.h85{height:98.685000px;}
.h5d{height:98.715360px;}
.h50{height:100.875441px;}
.h2f{height:101.680664px;}
.h57{height:101.835300px;}
.ha5{height:104.880000px;}
.h2b{height:104.933175px;}
.h37{height:104.985840px;}
.h6d{height:106.110000px;}
.h5b{height:108.468000px;}
.h8c{height:108.856965px;}
.h5e{height:109.440000px;}
.h3f{height:110.522461px;}
.h89{height:111.378477px;}
.h72{height:112.193839px;}
.hf{height:114.026565px;}
.h34{height:114.504240px;}
.hb3{height:115.072541px;}
.h78{height:116.006748px;}
.h40{height:117.900000px;}
.ha8{height:118.470240px;}
.h99{height:120.364260px;}
.h12{height:121.109338px;}
.h84{height:122.550000px;}
.h6{height:122.616000px;}
.h6b{height:122.940000px;}
.h60{height:123.621120px;}
.h96{height:123.785156px;}
.h6f{height:123.935054px;}
.h58{height:124.236150px;}
.h3d{height:124.992000px;}
.h75{height:125.100000px;}
.h42{height:125.475204px;}
.h3{height:127.332000px;}
.h4c{height:127.561240px;}
.he{height:128.704001px;}
.hb{height:129.646197px;}
.h47{height:132.626953px;}
.h1e{height:136.200045px;}
.h44{height:137.705616px;}
.h29{height:141.480000px;}
.h74{height:141.546761px;}
.h7b{height:141.546881px;}
.h8f{height:141.546893px;}
.h87{height:141.547361px;}
.h51{height:142.584900px;}
.h9{height:143.213822px;}
.h54{height:143.430000px;}
.haf{height:143.628240px;}
.h63{height:147.528000px;}
.h82{height:148.504635px;}
.h1a{height:150.817680px;}
.hab{height:153.887377px;}
.h20{height:153.887400px;}
.h19{height:155.628000px;}
.h98{height:156.005033px;}
.h83{height:156.240000px;}
.h69{height:156.688618px;}
.h9a{height:156.688690px;}
.hb0{height:157.584000px;}
.h4a{height:159.169817px;}
.h52{height:159.600000px;}
.h1c{height:161.771066px;}
.hb4{height:161.843400px;}
.hb6{height:165.246739px;}
.h45{height:166.668000px;}
.h7c{height:166.800000px;}
.ha2{height:168.840000px;}
.hac{height:168.840023px;}
.h9b{height:171.913409px;}
.h6a{height:171.913721px;}
.h7e{height:174.020400px;}
.h7d{height:176.835938px;}
.h56{height:180.280800px;}
.h22{height:182.467800px;}
.h80{height:186.659499px;}
.ha4{height:192.984000px;}
.haa{height:198.444000px;}
.h21{height:198.887400px;}
.h38{height:200.592000px;}
.h27{height:200.640000px;}
.ha6{height:206.862000px;}
.h62{height:207.072000px;}
.h23{height:212.515200px;}
.h2a{height:215.791200px;}
.h3b{height:215.856000px;}
.h24{height:218.422800px;}
.h1f{height:219.300000px;}
.h33{height:223.686000px;}
.h94{height:228.949200px;}
.h1{height:238.084050px;}
.h2{height:240.249023px;}
.h9f{height:241.230000px;}
.h26{height:249.946745px;}
.h90{height:250.002000px;}
.h4{height:260.528400px;}
.h91{height:263.160000px;}
.h8b{height:263.851241px;}
.h8d{height:265.397095px;}
.h6c{height:291.239982px;}
.h93{height:297.009271px;}
.h59{height:301.980000px;}
.h2c{height:304.855738px;}
.h32{height:308.573327px;}
.h53{height:314.790000px;}
.h35{height:316.008486px;}
.h36{height:346.713938px;}
.h2d{height:361.473588px;}
.h64{height:463.821600px;}
.h0{height:1152.000000px;}
.w49{width:26.337210px;}
.w45{width:35.116275px;}
.wc{width:42.548400px;}
.w61{width:42.724980px;}
.w8{width:48.656190px;}
.w35{width:59.250000px;}
.wb{width:69.016920px;}
.w5c{width:72.249360px;}
.w53{width:75.128745px;}
.w50{width:76.778280px;}
.w2a{width:77.547225px;}
.w60{width:79.273995px;}
.w29{width:82.368315px;}
.w5a{width:83.714610px;}
.w18{width:86.400045px;}
.w44{width:92.136465px;}
.we{width:92.673705px;}
.w2c{width:104.121465px;}
.w42{width:126.181590px;}
.w23{width:130.815210px;}
.w40{width:134.422590px;}
.w33{width:135.506010px;}
.w25{width:145.292730px;}
.w3c{width:148.967055px;}
.w47{width:149.058225px;}
.w5d{width:159.344550px;}
.w34{width:160.684200px;}
.w26{width:181.187100px;}
.w32{width:184.090050px;}
.w2e{width:194.795400px;}
.w41{width:208.984800px;}
.w3f{width:209.029800px;}
.w5b{width:210.759900px;}
.w3b{width:223.350000px;}
.w5{width:224.888400px;}
.w5f{width:225.654750px;}
.w2f{width:232.956000px;}
.w6{width:237.328650px;}
.w4a{width:252.819450px;}
.w11{width:265.514400px;}
.w2d{width:266.620050px;}
.w58{width:272.758200px;}
.w13{width:278.008200px;}
.w39{width:279.001500px;}
.w37{width:279.178800px;}
.w36{width:279.910800px;}
.w27{width:285.320850px;}
.w24{width:289.122000px;}
.w2b{width:298.026600px;}
.w22{width:307.817100px;}
.w3a{width:313.885500px;}
.w28{width:335.734050px;}
.w4e{width:337.272150px;}
.w4c{width:342.522150px;}
.w48{width:352.371000px;}
.w5e{width:357.443550px;}
.w56{width:360.895500px;}
.w4f{width:364.159800px;}
.w4d{width:369.409800px;}
.w12{width:393.503400px;}
.wa{width:395.597400px;}
.w3d{width:408.692100px;}
.w16{width:410.047200px;}
.w38{width:417.236550px;}
.w30{width:441.175500px;}
.w1d{width:444.247800px;}
.w1b{width:452.356500px;}
.w1c{width:455.455800px;}
.w1e{width:455.455950px;}
.w51{width:460.705800px;}
.w4b{width:472.138500px;}
.w19{width:472.893750px;}
.w21{width:474.662850px;}
.w20{width:475.679550px;}
.w1a{width:475.794750px;}
.w14{width:486.166500px;}
.w7{width:491.804250px;}
.w46{width:517.081350px;}
.w3e{width:519.970350px;}
.w31{width:538.497150px;}
.w55{width:564.211350px;}
.w9{width:570.780150px;}
.w10{width:570.936900px;}
.wd{width:621.449400px;}
.wf{width:626.398650px;}
.w1f{width:659.552250px;}
.w43{width:708.554550px;}
.w3{width:722.120400px;}
.w4{width:795.981750px;}
.w15{width:802.314150px;}
.w17{width:808.729800px;}
.w52{width:905.401350px;}
.w59{width:920.448150px;}
.w57{width:935.941050px;}
.w54{width:1213.803150px;}
.w2{width:1404.416250px;}
.w1{width:1459.913100px;}
.w0{width:1536.000000px;}
.x2f{left:-5.229150px;}
.xba{left:-2.822550px;}
.x13{left:-1.413300px;}
.x0{left:0.000000px;}
.x91{left:1.100700px;}
.x5b{left:3.397350px;}
.x86{left:5.100000px;}
.x46{left:6.767550px;}
.xa8{left:8.773627px;}
.x58{left:10.125000px;}
.x67{left:12.000000px;}
.x6d{left:13.503930px;}
.x35{left:17.330250px;}
.xd3{left:18.620160px;}
.x1e{left:20.017367px;}
.x39{left:22.350015px;}
.x21{left:23.778150px;}
.x50{left:24.956235px;}
.x25{left:26.252700px;}
.x71{left:28.781100px;}
.x43{left:29.873805px;}
.x2{left:35.252565px;}
.x1{left:38.043450px;}
.x19{left:39.300000px;}
.x4f{left:40.774365px;}
.x31{left:45.504000px;}
.x29{left:47.285085px;}
.xf{left:49.021200px;}
.x72{left:50.463375px;}
.xbb{left:51.550410px;}
.x2a{left:52.610205px;}
.x70{left:53.987730px;}
.xc5{left:56.442750px;}
.x1a{left:58.071195px;}
.x9f{left:59.905515px;}
.xaf{left:62.152500px;}
.x65{left:63.975780px;}
.x2b{left:67.927965px;}
.x38{left:69.608400px;}
.x3b{left:72.642585px;}
.x28{left:74.887950px;}
.xa{left:77.595315px;}
.x1b{left:79.316685px;}
.x11{left:80.552100px;}
.xbd{left:84.352350px;}
.x68{left:86.446530px;}
.x9{left:88.500000px;}
.xb1{left:89.651250px;}
.x36{left:91.157250px;}
.x16{left:92.271705px;}
.xad{left:95.029215px;}
.x23{left:96.114885px;}
.x4d{left:103.103400px;}
.x82{left:105.354075px;}
.x83{left:108.754965px;}
.x1c{left:111.121155px;}
.xa0{left:112.490910px;}
.x48{left:113.694525px;}
.x60{left:116.622300px;}
.x7f{left:121.500000px;}
.x4c{left:123.864000px;}
.x8d{left:129.030750px;}
.x49{left:130.842375px;}
.xd7{left:133.500000px;}
.x53{left:135.437475px;}
.x6e{left:142.035405px;}
.x44{left:143.943855px;}
.x76{left:146.154240px;}
.xbc{left:147.246465px;}
.x7b{left:152.484150px;}
.xb7{left:153.780300px;}
.xd{left:155.179200px;}
.x34{left:156.607500px;}
.x7c{left:160.188150px;}
.xa9{left:161.773800px;}
.xa4{left:162.874500px;}
.x97{left:166.999110px;}
.x55{left:168.299850px;}
.x5c{left:169.358100px;}
.x77{left:172.038750px;}
.xd8{left:178.500000px;}
.x47{left:192.079500px;}
.x7a{left:195.639150px;}
.xe{left:198.196200px;}
.x56{left:201.711900px;}
.x32{left:205.521600px;}
.xd4{left:209.832060px;}
.xc0{left:212.035800px;}
.x3c{left:215.506500px;}
.x75{left:221.190000px;}
.x73{left:229.412700px;}
.x78{left:235.808400px;}
.x8{left:238.442250px;}
.x8a{left:239.929800px;}
.xaa{left:249.058950px;}
.x57{left:254.223900px;}
.xd6{left:260.434650px;}
.xb4{left:272.699400px;}
.xab{left:276.441450px;}
.xa6{left:285.568800px;}
.x5{left:297.734250px;}
.x4b{left:302.215950px;}
.x93{left:309.356100px;}
.x9d{left:314.176200px;}
.x90{left:322.603800px;}
.x9a{left:327.423900px;}
.x7{left:331.430250px;}
.x5d{left:340.302900px;}
.x3f{left:366.508350px;}
.xb9{left:367.643700px;}
.x3{left:376.894350px;}
.x8f{left:400.920450px;}
.xb{left:405.866685px;}
.x40{left:422.093445px;}
.x80{left:455.792100px;}
.xa7{left:494.954100px;}
.x88{left:500.679450px;}
.x52{left:504.901950px;}
.xb2{left:512.334300px;}
.x33{left:521.192850px;}
.xae{left:527.377350px;}
.x6f{left:540.776700px;}
.xc1{left:553.876800px;}
.xc4{left:561.623250px;}
.x64{left:565.448250px;}
.xc2{left:571.399500px;}
.x3a{left:576.046800px;}
.x41{left:609.006600px;}
.x4{left:613.836750px;}
.x6c{left:623.022450px;}
.x6{left:625.116000px;}
.xcf{left:630.519750px;}
.x4e{left:638.338650px;}
.x8e{left:641.161200px;}
.x9c{left:643.808100px;}
.xd0{left:644.888220px;}
.xd9{left:666.460050px;}
.x92{left:677.969250px;}
.x9b{left:682.789350px;}
.x37{left:684.408750px;}
.xb6{left:690.161850px;}
.x42{left:708.162150px;}
.x69{left:715.558650px;}
.x8c{left:729.232350px;}
.xa5{left:730.518000px;}
.x4a{left:736.144950px;}
.x10{left:740.018250px;}
.xbe{left:751.522200px;}
.xc{left:765.115050px;}
.xc6{left:768.256200px;}
.x51{left:775.711800px;}
.x15{left:792.828600px;}
.x7e{left:812.523900px;}
.x20{left:815.450550px;}
.xb5{left:825.020550px;}
.x27{left:834.285150px;}
.x17{left:835.641300px;}
.xbf{left:850.362150px;}
.xda{left:852.220050px;}
.xcc{left:853.548300px;}
.x18{left:855.785250px;}
.x6a{left:870.373200px;}
.x24{left:874.742550px;}
.x45{left:896.128350px;}
.xc3{left:897.248700px;}
.x12{left:910.084650px;}
.xa1{left:915.787650px;}
.x5e{left:926.680650px;}
.x5f{left:941.972550px;}
.x74{left:945.906900px;}
.xb3{left:952.316100px;}
.xb8{left:954.513900px;}
.xce{left:957.127470px;}
.x2c{left:968.173350px;}
.xb0{left:969.405300px;}
.xcd{left:982.391040px;}
.x54{left:984.408900px;}
.x30{left:993.756600px;}
.xa3{left:996.000000px;}
.x9e{left:1001.672850px;}
.x2d{left:1013.173350px;}
.x61{left:1025.961300px;}
.xd2{left:1037.290650px;}
.x85{left:1053.788400px;}
.x63{left:1066.920600px;}
.x3d{left:1070.346825px;}
.x62{left:1107.223500px;}
.x7d{left:1126.649400px;}
.x59{left:1132.506150px;}
.xcb{left:1134.736050px;}
.xd5{left:1147.768950px;}
.x66{left:1151.988150px;}
.x79{left:1164.857400px;}
.x3e{left:1169.502300px;}
.xc7{left:1195.429050px;}
.x2e{left:1201.195500px;}
.x8b{left:1205.911350px;}
.x5a{left:1207.037700px;}
.x94{left:1217.594100px;}
.x96{left:1223.100000px;}
.x14{left:1225.755900px;}
.x89{left:1239.039000px;}
.x95{left:1253.939400px;}
.xac{left:1258.464000px;}
.x98{left:1263.947400px;}
.xc9{left:1267.496100px;}
.x84{left:1268.815050px;}
.xd1{left:1277.083875px;}
.xc8{left:1283.060100px;}
.x99{left:1290.319650px;}
.x87{left:1292.010600px;}
.x81{left:1294.969350px;}
.xa2{left:1299.186450px;}
.x22{left:1318.186950px;}
.x6b{left:1375.584150px;}
.x26{left:1379.953500px;}
.x1d{left:1396.848000px;}
.x1f{left:1409.043750px;}
.xca{left:1410.360015px;}
@media print{
.v2d{vertical-align:-96.635413pt;}
.v2b{vertical-align:-88.783883pt;}
.vc{vertical-align:-58.666667pt;}
.v27{vertical-align:-48.317440pt;}
.v17{vertical-align:-47.360000pt;}
.v1{vertical-align:-41.875408pt;}
.v8{vertical-align:-40.000000pt;}
.v22{vertical-align:-37.469867pt;}
.v1f{vertical-align:-36.238507pt;}
.v35{vertical-align:-33.646978pt;}
.v13{vertical-align:-32.000000pt;}
.v31{vertical-align:-30.666667pt;}
.v21{vertical-align:-28.700853pt;}
.v2e{vertical-align:-24.436747pt;}
.v33{vertical-align:-18.476077pt;}
.v0{vertical-align:0.000000pt;}
.v14{vertical-align:6.656000pt;}
.v4{vertical-align:8.760533pt;}
.v25{vertical-align:12.979733pt;}
.v37{vertical-align:17.083733pt;}
.v34{vertical-align:18.476077pt;}
.v24{vertical-align:20.925867pt;}
.v2f{vertical-align:24.436747pt;}
.v15{vertical-align:25.344000pt;}
.v28{vertical-align:28.700853pt;}
.v1e{vertical-align:31.680000pt;}
.v36{vertical-align:33.646978pt;}
.v20{vertical-align:36.238507pt;}
.v23{vertical-align:37.469867pt;}
.v7{vertical-align:40.000000pt;}
.v2{vertical-align:41.875408pt;}
.v30{vertical-align:45.386667pt;}
.v3{vertical-align:46.590517pt;}
.va{vertical-align:52.113600pt;}
.v29{vertical-align:53.632853pt;}
.v6{vertical-align:59.200000pt;}
.v18{vertical-align:60.978978pt;}
.v5{vertical-align:61.975360pt;}
.v19{vertical-align:69.066667pt;}
.v26{vertical-align:71.510507pt;}
.v16{vertical-align:72.704000pt;}
.v11{vertical-align:82.140373pt;}
.v12{vertical-align:90.240000pt;}
.v32{vertical-align:92.000000pt;}
.v1b{vertical-align:96.000000pt;}
.v9{vertical-align:99.200000pt;}
.v1c{vertical-align:101.005973pt;}
.ve{vertical-align:103.238293pt;}
.v2a{vertical-align:108.714987pt;}
.vb{vertical-align:111.313600pt;}
.vd{vertical-align:117.277280pt;}
.vf{vertical-align:118.707360pt;}
.v1d{vertical-align:119.999984pt;}
.v10{vertical-align:121.567467pt;}
.v1a{vertical-align:140.000000pt;}
.v2c{vertical-align:165.101771pt;}
.ls76{letter-spacing:-31.180800pt;}
.ls73{letter-spacing:-23.760000pt;}
.ls72{letter-spacing:-22.800000pt;}
.ls74{letter-spacing:-6.400000pt;}
.lsc{letter-spacing:-6.336000pt;}
.ls71{letter-spacing:-6.080000pt;}
.ls81{letter-spacing:-5.866667pt;}
.ls77{letter-spacing:-5.568000pt;}
.ls36{letter-spacing:-5.440000pt;}
.ls24{letter-spacing:-5.312000pt;}
.ls2c{letter-spacing:-5.248000pt;}
.ls94{letter-spacing:-0.019947pt;}
.ls1{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.000001pt;}
.ls4{letter-spacing:0.000010pt;}
.lsa{letter-spacing:0.000012pt;}
.ls1c{letter-spacing:0.000014pt;}
.ls1d{letter-spacing:0.000016pt;}
.lsb{letter-spacing:0.000020pt;}
.ls3{letter-spacing:0.000023pt;}
.ls2f{letter-spacing:0.000034pt;}
.ls26{letter-spacing:0.000046pt;}
.ls8f{letter-spacing:0.000052pt;}
.ls57{letter-spacing:0.000055pt;}
.ls50{letter-spacing:0.000059pt;}
.ls62{letter-spacing:0.000101pt;}
.ls22{letter-spacing:0.000107pt;}
.ls91{letter-spacing:0.000149pt;}
.ls5f{letter-spacing:0.000160pt;}
.ls6d{letter-spacing:0.000267pt;}
.ls6f{letter-spacing:0.000424pt;}
.ls6{letter-spacing:0.000427pt;}
.ls54{letter-spacing:0.019200pt;}
.ls93{letter-spacing:0.019947pt;}
.ls41{letter-spacing:0.021333pt;}
.ls2e{letter-spacing:0.024533pt;}
.ls7e{letter-spacing:0.026048pt;}
.ls3d{letter-spacing:0.026667pt;}
.ls75{letter-spacing:0.029867pt;}
.ls63{letter-spacing:0.032000pt;}
.ls67{letter-spacing:0.042667pt;}
.ls0{letter-spacing:0.058667pt;}
.ls61{letter-spacing:0.629493pt;}
.ls6a{letter-spacing:0.853227pt;}
.ls52{letter-spacing:0.853333pt;}
.ls3a{letter-spacing:0.895893pt;}
.ls6b{letter-spacing:1.823677pt;}
.ls37{letter-spacing:6.157707pt;}
.ls9{letter-spacing:6.547854pt;}
.ls39{letter-spacing:6.656000pt;}
.ls8b{letter-spacing:7.765333pt;}
.ls15{letter-spacing:8.320000pt;}
.ls4d{letter-spacing:8.471435pt;}
.ls8{letter-spacing:9.305503pt;}
.ls87{letter-spacing:12.317389pt;}
.ls80{letter-spacing:16.291120pt;}
.ls7f{letter-spacing:16.291280pt;}
.ls2a{letter-spacing:16.482436pt;}
.ls8a{letter-spacing:16.592533pt;}
.ls89{letter-spacing:16.592587pt;}
.ls2d{letter-spacing:16.683303pt;}
.ls33{letter-spacing:17.084990pt;}
.ls35{letter-spacing:17.085428pt;}
.ls19{letter-spacing:17.777600pt;}
.ls13{letter-spacing:17.777760pt;}
.ls14{letter-spacing:17.777813pt;}
.ls1a{letter-spacing:17.778133pt;}
.ls3f{letter-spacing:17.895456pt;}
.ls3e{letter-spacing:17.895497pt;}
.ls79{letter-spacing:18.101173pt;}
.ls4c{letter-spacing:18.101429pt;}
.ls7a{letter-spacing:18.101589pt;}
.ls86{letter-spacing:20.528971pt;}
.ls6e{letter-spacing:21.743085pt;}
.ls90{letter-spacing:22.431295pt;}
.ls5d{letter-spacing:24.158853pt;}
.ls70{letter-spacing:24.207198pt;}
.ls58{letter-spacing:24.207358pt;}
.ls8d{letter-spacing:24.888533pt;}
.ls88{letter-spacing:24.888907pt;}
.ls12{letter-spacing:26.666667pt;}
.ls4f{letter-spacing:27.151867pt;}
.ls7d{letter-spacing:27.152107pt;}
.ls78{letter-spacing:27.152133pt;}
.ls7c{letter-spacing:27.152400pt;}
.ls5{letter-spacing:27.917147pt;}
.ls5a{letter-spacing:32.211537pt;}
.ls56{letter-spacing:32.211643pt;}
.ls6c{letter-spacing:32.211669pt;}
.ls5c{letter-spacing:32.211893pt;}
.ls59{letter-spacing:32.212000pt;}
.ls60{letter-spacing:32.212070pt;}
.ls83{letter-spacing:34.074080pt;}
.ls28{letter-spacing:35.218027pt;}
.ls29{letter-spacing:35.218300pt;}
.ls49{letter-spacing:35.555573pt;}
.ls3b{letter-spacing:35.555627pt;}
.ls3c{letter-spacing:35.555733pt;}
.ls82{letter-spacing:35.629867pt;}
.ls20{letter-spacing:35.647492pt;}
.ls1f{letter-spacing:35.647973pt;}
.ls42{letter-spacing:36.202807pt;}
.ls31{letter-spacing:36.506827pt;}
.ls32{letter-spacing:36.506961pt;}
.ls48{letter-spacing:36.700693pt;}
.ls11{letter-spacing:37.222477pt;}
.ls10{letter-spacing:37.222560pt;}
.ls8e{letter-spacing:37.385478pt;}
.ls23{letter-spacing:39.111467pt;}
.ls5b{letter-spacing:40.264763pt;}
.ls5e{letter-spacing:40.264810pt;}
.ls55{letter-spacing:40.492863pt;}
.ls66{letter-spacing:41.633169pt;}
.ls64{letter-spacing:41.633200pt;}
.ls65{letter-spacing:41.633222pt;}
.ls84{letter-spacing:43.448747pt;}
.ls51{letter-spacing:44.444480pt;}
.ls40{letter-spacing:44.738647pt;}
.ls4a{letter-spacing:44.859520pt;}
.ls7{letter-spacing:46.528213pt;}
.ls2{letter-spacing:46.528218pt;}
.lsf{letter-spacing:46.528267pt;}
.ls43{letter-spacing:51.851840pt;}
.ls45{letter-spacing:51.851893pt;}
.ls47{letter-spacing:51.852053pt;}
.ls38{letter-spacing:51.932427pt;}
.ls27{letter-spacing:52.827573pt;}
.ls1e{letter-spacing:53.471507pt;}
.ls30{letter-spacing:54.759867pt;}
.ls34{letter-spacing:54.760080pt;}
.ls44{letter-spacing:60.290987pt;}
.ls21{letter-spacing:65.185173pt;}
.ls69{letter-spacing:88.962027pt;}
.ls92{letter-spacing:91.120000pt;}
.lsd{letter-spacing:93.652107pt;}
.lse{letter-spacing:93.652160pt;}
.ls85{letter-spacing:103.561973pt;}
.ls4b{letter-spacing:108.064640pt;}
.ls8c{letter-spacing:154.346133pt;}
.ls46{letter-spacing:157.594293pt;}
.ls18{letter-spacing:165.370400pt;}
.ls16{letter-spacing:165.370613pt;}
.ls1b{letter-spacing:165.370667pt;}
.ls7b{letter-spacing:168.380453pt;}
.ls4e{letter-spacing:168.380987pt;}
.ls2b{letter-spacing:343.578242pt;}
.ls68{letter-spacing:447.479787pt;}
.ls53{letter-spacing:1825.372800pt;}
.ls17{letter-spacing:2321.528587pt;}
.ws49{word-spacing:-82.560000pt;}
.ws1{word-spacing:-81.734400pt;}
.ws46{word-spacing:-78.432000pt;}
.ws50{word-spacing:-75.680000pt;}
.ws4c{word-spacing:-71.827200pt;}
.ws18{word-spacing:-70.176000pt;}
.wse{word-spacing:-68.524800pt;}
.ws14{word-spacing:-67.699200pt;}
.ws48{word-spacing:-64.310400pt;}
.ws47{word-spacing:-61.712000pt;}
.ws25{word-spacing:-56.341333pt;}
.ws4b{word-spacing:-46.214400pt;}
.ws24{word-spacing:-44.480000pt;}
.ws4d{word-spacing:-41.544533pt;}
.ws8{word-spacing:-38.549333pt;}
.ws22{word-spacing:-37.093333pt;}
.ws36{word-spacing:-33.360000pt;}
.ws4f{word-spacing:-29.653333pt;}
.ws61{word-spacing:-27.745813pt;}
.ws60{word-spacing:-27.725867pt;}
.ws3c{word-spacing:-1.148267pt;}
.ws4a{word-spacing:-0.386542pt;}
.ws19{word-spacing:-0.328561pt;}
.wsf{word-spacing:-0.320830pt;}
.ws15{word-spacing:-0.316964pt;}
.ws4e{word-spacing:-0.316800pt;}
.ws10{word-spacing:-0.265600pt;}
.ws12{word-spacing:-0.234667pt;}
.ws1a{word-spacing:-0.233278pt;}
.ws17{word-spacing:-0.227789pt;}
.ws16{word-spacing:-0.225045pt;}
.ws26{word-spacing:-0.202667pt;}
.ws3f{word-spacing:-0.193271pt;}
.ws2d{word-spacing:-0.192000pt;}
.ws2a{word-spacing:-0.186667pt;}
.ws3{word-spacing:-0.167502pt;}
.ws13{word-spacing:-0.166613pt;}
.ws27{word-spacing:-0.164808pt;}
.ws2f{word-spacing:-0.162913pt;}
.ws20{word-spacing:-0.161059pt;}
.ws9{word-spacing:-0.160000pt;}
.ws3d{word-spacing:-0.149880pt;}
.ws5a{word-spacing:-0.149333pt;}
.ws37{word-spacing:-0.144953pt;}
.ws2e{word-spacing:-0.136320pt;}
.ws5d{word-spacing:-0.134588pt;}
.ws2b{word-spacing:-0.132533pt;}
.ws1c{word-spacing:-0.128000pt;}
.ws55{word-spacing:-0.122667pt;}
.ws7{word-spacing:-0.118947pt;}
.ws5{word-spacing:-0.118926pt;}
.ws32{word-spacing:-0.115727pt;}
.ws31{word-spacing:-0.115668pt;}
.ws21{word-spacing:-0.114352pt;}
.wsa{word-spacing:-0.113600pt;}
.ws3e{word-spacing:-0.106414pt;}
.ws5b{word-spacing:-0.106027pt;}
.ws3b{word-spacing:-0.102917pt;}
.ws51{word-spacing:-0.097748pt;}
.ws5e{word-spacing:-0.095557pt;}
.ws1e{word-spacing:-0.090880pt;}
.ws6{word-spacing:-0.089403pt;}
.ws56{word-spacing:-0.087093pt;}
.ws57{word-spacing:-0.073904pt;}
.ws53{word-spacing:-0.069401pt;}
.ws59{word-spacing:-0.052472pt;}
.ws0{word-spacing:0.000000pt;}
.ws23{word-spacing:7.672000pt;}
.ws4{word-spacing:16.146504pt;}
.wsb{word-spacing:17.664213pt;}
.ws30{word-spacing:17.985724pt;}
.ws58{word-spacing:20.455079pt;}
.ws1f{word-spacing:23.753067pt;}
.ws45{word-spacing:24.062060pt;}
.ws40{word-spacing:24.062220pt;}
.ws42{word-spacing:24.062593pt;}
.ws34{word-spacing:26.560000pt;}
.ws52{word-spacing:27.054321pt;}
.ws39{word-spacing:29.574568pt;}
.ws44{word-spacing:32.066583pt;}
.ws38{word-spacing:32.066887pt;}
.ws35{word-spacing:34.560000pt;}
.ws1d{word-spacing:35.456000pt;}
.ws28{word-spacing:36.072428pt;}
.ws54{word-spacing:37.072587pt;}
.ws5c{word-spacing:37.250943pt;}
.ws2c{word-spacing:38.684427pt;}
.ws43{word-spacing:40.119810pt;}
.ws3a{word-spacing:40.161917pt;}
.ws2{word-spacing:46.360712pt;}
.ws5f{word-spacing:53.450453pt;}
.ws29{word-spacing:56.414933pt;}
.ws11{word-spacing:64.950507pt;}
.ws41{word-spacing:78.562462pt;}
.ws33{word-spacing:86.472747pt;}
.wsc{word-spacing:103.797867pt;}
.ws1b{word-spacing:131.271231pt;}
.wsd{word-spacing:135.378507pt;}
._11{margin-left:-87.018667pt;}
._14{margin-left:-59.669867pt;}
._27{margin-left:-57.183467pt;}
._1{margin-left:-13.248000pt;}
._e{margin-left:-11.801067pt;}
._9{margin-left:-10.261333pt;}
._2a{margin-left:-9.155520pt;}
._b{margin-left:-8.245547pt;}
._33{margin-left:-7.338080pt;}
._3{margin-left:-6.336000pt;}
._6{margin-left:-5.434002pt;}
._4{margin-left:-3.882667pt;}
._2{margin-left:-2.592000pt;}
._0{margin-left:-0.997333pt;}
._12{width:1.651733pt;}
._8{width:3.168000pt;}
._29{width:4.432267pt;}
._15{width:5.364907pt;}
._16{width:9.149707pt;}
._2f{width:10.174507pt;}
._2d{width:13.556533pt;}
._2e{width:14.954560pt;}
._22{width:15.952000pt;}
._21{width:16.976000pt;}
._23{width:17.872000pt;}
._2c{width:19.638642pt;}
._2b{width:20.545067pt;}
._30{width:23.048373pt;}
._24{width:25.612800pt;}
._32{width:38.038778pt;}
._31{width:39.065547pt;}
._1c{width:40.605856pt;}
._17{width:67.920000pt;}
._d{width:71.168000pt;}
._26{width:84.994827pt;}
._13{width:88.690240pt;}
._1d{width:117.169707pt;}
._10{width:129.340267pt;}
._28{width:178.094613pt;}
._25{width:311.205867pt;}
._f{width:371.644160pt;}
._1a{width:543.138667pt;}
._1e{width:556.653333pt;}
._19{width:802.691200pt;}
._5{width:812.668267pt;}
._20{width:926.309813pt;}
._7{width:1010.872000pt;}
._18{width:1123.793600pt;}
._1f{width:1283.749867pt;}
._1b{width:1484.002667pt;}
._c{width:1594.758802pt;}
._a{width:1667.547602pt;}
.fs3e{font-size:52.472082pt;}
.fs3b{font-size:69.400747pt;}
.fs3d{font-size:73.904333pt;}
.fs3c{font-size:87.093333pt;}
.fs7{font-size:89.402970pt;}
.fs1a{font-size:90.880000pt;}
.fs41{font-size:95.557307pt;}
.fs27{font-size:96.000000pt;}
.fs3a{font-size:97.747520pt;}
.fs42{font-size:99.733333pt;}
.fs2c{font-size:102.916800pt;}
.fs3f{font-size:106.026667pt;}
.fs2e{font-size:106.414453pt;}
.fs21{font-size:106.666667pt;}
.fsc{font-size:113.600000pt;}
.fs1d{font-size:114.352000pt;}
.fs29{font-size:115.667893pt;}
.fs20{font-size:117.013523pt;}
.fs5{font-size:118.926080pt;}
.fs2a{font-size:120.000000pt;}
.fs14{font-size:122.666667pt;}
.fs6{font-size:125.919650pt;}
.fs19{font-size:128.000000pt;}
.fs22{font-size:130.330027pt;}
.fs24{font-size:132.533333pt;}
.fs1b{font-size:133.333333pt;}
.fs40{font-size:134.587768pt;}
.fs26{font-size:136.320000pt;}
.fs32{font-size:137.222453pt;}
.fs3{font-size:138.666667pt;}
.fs1{font-size:144.000000pt;}
.fs2b{font-size:144.953280pt;}
.fs38{font-size:149.333333pt;}
.fs2d{font-size:149.879520pt;}
.fsb{font-size:160.000000pt;}
.fs1c{font-size:161.059200pt;}
.fs28{font-size:162.912533pt;}
.fs1f{font-size:164.807804pt;}
.fs10{font-size:166.613333pt;}
.fs4{font-size:167.501547pt;}
.fs9{font-size:170.560000pt;}
.fs8{font-size:176.000000pt;}
.fs39{font-size:182.462027pt;}
.fs23{font-size:186.666667pt;}
.fs25{font-size:192.000000pt;}
.fs31{font-size:193.271040pt;}
.fs30{font-size:196.800000pt;}
.fs1e{font-size:202.666667pt;}
.fs2f{font-size:213.333333pt;}
.fs13{font-size:225.044800pt;}
.fs15{font-size:227.789227pt;}
.fs18{font-size:233.278133pt;}
.fsf{font-size:234.666667pt;}
.fs11{font-size:262.400000pt;}
.fsd{font-size:265.600000pt;}
.fsa{font-size:266.666667pt;}
.fs16{font-size:272.000000pt;}
.fs36{font-size:274.444853pt;}
.fs37{font-size:278.400000pt;}
.fs0{font-size:293.333333pt;}
.fs33{font-size:304.000000pt;}
.fs2{font-size:316.800000pt;}
.fs12{font-size:316.964480pt;}
.fs34{font-size:320.000000pt;}
.fse{font-size:320.829920pt;}
.fs17{font-size:328.560747pt;}
.fs35{font-size:386.542080pt;}
.y16e{bottom:-2.754227pt;}
.y170{bottom:-2.754093pt;}
.y134{bottom:-2.600160pt;}
.y12e{bottom:-2.600147pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:0.245939pt;}
.y11b{bottom:0.360213pt;}
.yae{bottom:0.456147pt;}
.y118{bottom:0.471107pt;}
.ya4{bottom:0.576892pt;}
.y140{bottom:0.586267pt;}
.y5b{bottom:0.618867pt;}
.y106{bottom:0.676440pt;}
.y3c{bottom:1.046933pt;}
.yc5{bottom:1.537733pt;}
.y74{bottom:1.583227pt;}
.yb6{bottom:1.631533pt;}
.yc8{bottom:1.685253pt;}
.yb9{bottom:1.846667pt;}
.y45{bottom:1.857467pt;}
.y1e{bottom:1.857507pt;}
.y97{bottom:1.857600pt;}
.y13c{bottom:2.132800pt;}
.y7d{bottom:3.261520pt;}
.y139{bottom:5.956907pt;}
.yd5{bottom:5.956933pt;}
.y156{bottom:6.432120pt;}
.y14a{bottom:6.432133pt;}
.y15f{bottom:6.468621pt;}
.y158{bottom:6.468661pt;}
.y15d{bottom:7.183733pt;}
.ya8{bottom:7.292745pt;}
.y31{bottom:7.937200pt;}
.yc2{bottom:7.957387pt;}
.y144{bottom:8.555547pt;}
.y162{bottom:8.746189pt;}
.y115{bottom:9.342600pt;}
.yf5{bottom:9.419667pt;}
.yde{bottom:9.419800pt;}
.yc4{bottom:9.537733pt;}
.yed{bottom:9.660115pt;}
.y11f{bottom:9.660120pt;}
.yff{bottom:9.660147pt;}
.ye9{bottom:9.739880pt;}
.y7a{bottom:10.380587pt;}
.y164{bottom:10.432133pt;}
.y20{bottom:10.499151pt;}
.y23{bottom:10.795867pt;}
.y40{bottom:10.885067pt;}
.y12{bottom:10.885093pt;}
.y18{bottom:10.885200pt;}
.yb3{bottom:10.993333pt;}
.yce{bottom:11.519467pt;}
.yd1{bottom:11.519600pt;}
.y6a{bottom:11.955560pt;}
.y108{bottom:12.456840pt;}
.y112{bottom:13.118200pt;}
.yea{bottom:13.221713pt;}
.yb5{bottom:13.298200pt;}
.ye1{bottom:14.334067pt;}
.yac{bottom:14.500133pt;}
.y60{bottom:14.719333pt;}
.y8b{bottom:14.719360pt;}
.y66{bottom:14.719400pt;}
.y5e{bottom:14.719467pt;}
.yf8{bottom:14.969587pt;}
.ye3{bottom:14.969667pt;}
.y76{bottom:15.999333pt;}
.y81{bottom:15.999467pt;}
.y137{bottom:16.100240pt;}
.y138{bottom:16.138931pt;}
.yd4{bottom:16.139027pt;}
.ybb{bottom:16.322133pt;}
.y54{bottom:16.442507pt;}
.y27{bottom:16.563813pt;}
.y2c{bottom:16.563867pt;}
.y14{bottom:16.593547pt;}
.y41{bottom:16.593600pt;}
.y71{bottom:16.687227pt;}
.y15c{bottom:17.183739pt;}
.y3a{bottom:17.390533pt;}
.y90{bottom:17.601613pt;}
.y132{bottom:17.919267pt;}
.y11d{bottom:17.978613pt;}
.yeb{bottom:17.978620pt;}
.yfd{bottom:17.978667pt;}
.ye7{bottom:18.078400pt;}
.y1a{bottom:18.451067pt;}
.y136{bottom:18.451187pt;}
.yb{bottom:18.451200pt;}
.y8e{bottom:19.199200pt;}
.yfb{bottom:19.199227pt;}
.y123{bottom:19.199333pt;}
.y119{bottom:19.302467pt;}
.ybd{bottom:19.326133pt;}
.y2e{bottom:20.036533pt;}
.ya6{bottom:20.191187pt;}
.ya2{bottom:20.191200pt;}
.y12c{bottom:20.300213pt;}
.y13e{bottom:20.370533pt;}
.y57{bottom:21.289867pt;}
.yec{bottom:21.540227pt;}
.y15b{bottom:21.722800pt;}
.y16{bottom:23.560533pt;}
.y73{bottom:24.015227pt;}
.yf2{bottom:24.880453pt;}
.y128{bottom:24.913547pt;}
.y155{bottom:25.144373pt;}
.y102{bottom:25.598933pt;}
.y5a{bottom:26.428440pt;}
.y35{bottom:27.475333pt;}
.y11c{bottom:28.866493pt;}
.y154{bottom:28.906533pt;}
.y47{bottom:29.586400pt;}
.y25{bottom:30.658867pt;}
.y2a{bottom:30.658933pt;}
.y3e{bottom:30.696000pt;}
.y10{bottom:30.696040pt;}
.ybf{bottom:31.957387pt;}
.y69{bottom:32.490653pt;}
.yaa{bottom:32.511253pt;}
.yf{bottom:32.822667pt;}
.y49{bottom:36.266800pt;}
.y9c{bottom:36.266933pt;}
.y11e{bottom:37.185000pt;}
.yd0{bottom:37.919600pt;}
.y11a{bottom:38.093357pt;}
.y3{bottom:38.421200pt;}
.y153{bottom:38.906539pt;}
.y70{bottom:40.687227pt;}
.yab{bottom:43.300133pt;}
.yb0{bottom:45.993333pt;}
.yad{bottom:46.555227pt;}
.y13{bottom:46.925160pt;}
.y87{bottom:48.319333pt;}
.y83{bottom:48.319360pt;}
.y65{bottom:48.319400pt;}
.y5d{bottom:48.319467pt;}
.y39{bottom:49.527920pt;}
.y160{bottom:52.532213pt;}
.y11{bottom:52.633613pt;}
.y117{bottom:53.197840pt;}
.yc7{bottom:53.853600pt;}
.yf9{bottom:53.955987pt;}
.yc1{bottom:54.517387pt;}
.y88{bottom:55.411747pt;}
.y8c{bottom:55.411787pt;}
.y1c{bottom:56.948240pt;}
.y43{bottom:56.948267pt;}
.y131{bottom:60.433533pt;}
.y1b{bottom:60.719320pt;}
.ye5{bottom:62.399200pt;}
.yfa{bottom:62.399227pt;}
.y122{bottom:62.399333pt;}
.yc0{bottom:62.861733pt;}
.y130{bottom:72.281120pt;}
.y135{bottom:75.152493pt;}
.yd7{bottom:76.391217pt;}
.y72{bottom:77.151227pt;}
.y1d{bottom:77.312987pt;}
.yb8{bottom:77.925467pt;}
.yd2{bottom:77.977920pt;}
.yb2{bottom:78.893333pt;}
.yf7{bottom:82.000293pt;}
.y101{bottom:83.198933pt;}
.y64{bottom:83.214973pt;}
.y157{bottom:88.893787pt;}
.ya5{bottom:89.466560pt;}
.yb1{bottom:91.062133pt;}
.y34{bottom:96.130267pt;}
.yf1{bottom:96.969880pt;}
.ya7{bottom:102.365000pt;}
.y82{bottom:106.333307pt;}
.y161{bottom:115.836533pt;}
.y24{bottom:119.172200pt;}
.y110{bottom:120.285467pt;}
.y2{bottom:123.754533pt;}
.y8a{bottom:124.139573pt;}
.y38{bottom:126.522053pt;}
.y12b{bottom:130.508453pt;}
.y26{bottom:133.267267pt;}
.yd6{bottom:134.591213pt;}
.y133{bottom:135.314800pt;}
.y116{bottom:142.506533pt;}
.y15e{bottom:145.519200pt;}
.y12d{bottom:153.408800pt;}
.y13d{bottom:156.142000pt;}
.ya1{bottom:156.454800pt;}
.y86{bottom:159.267333pt;}
.yf6{bottom:159.912133pt;}
.y33{bottom:164.785200pt;}
.y10f{bottom:170.156400pt;}
.yf0{bottom:174.246133pt;}
.y182{bottom:174.976267pt;}
.y13f{bottom:175.926267pt;}
.ya3{bottom:176.069067pt;}
.y16c{bottom:178.851467pt;}
.yba{bottom:185.178800pt;}
.y89{bottom:192.867333pt;}
.y84{bottom:195.065067pt;}
.yca{bottom:196.013733pt;}
.y150{bottom:201.122133pt;}
.y181{bottom:204.309600pt;}
.y3b{bottom:205.614667pt;}
.y37{bottom:206.661600pt;}
.y14f{bottom:208.788800pt;}
.y8{bottom:211.620267pt;}
.yfc{bottom:211.737733pt;}
.y121{bottom:216.527067pt;}
.y16b{bottom:218.723200pt;}
.yfe{bottom:220.056267pt;}
.y16f{bottom:225.748267pt;}
.y63{bottom:228.495067pt;}
.ya0{bottom:229.521867pt;}
.y13a{bottom:230.758667pt;}
.y32{bottom:233.440133pt;}
.y180{bottom:239.509600pt;}
.y163{bottom:244.272267pt;}
.y36{bottom:244.352000pt;}
.y114{bottom:249.874933pt;}
.y12f{bottom:251.555600pt;}
.y7{bottom:255.620267pt;}
.y10e{bottom:259.217600pt;}
.yf4{bottom:270.133733pt;}
.y14e{bottom:274.521840pt;}
.y17f{bottom:274.709600pt;}
.y1f{bottom:277.288667pt;}
.yef{bottom:279.553467pt;}
.y30{bottom:295.317200pt;}
.y152{bottom:297.352240pt;}
.y14b{bottom:297.521840pt;}
.y6{bottom:299.620267pt;}
.y7b{bottom:304.857600pt;}
.y17e{bottom:309.909600pt;}
.y7c{bottom:315.051600pt;}
.y16a{bottom:316.611067pt;}
.y14d{bottom:319.141840pt;}
.y13b{bottom:319.412800pt;}
.y14c{bottom:327.138400pt;}
.y10d{bottom:329.430267pt;}
.y61{bottom:329.702933pt;}
.ycb{bottom:336.543600pt;}
.ye{bottom:340.073600pt;}
.yf3{bottom:342.956933pt;}
.y17d{bottom:345.109600pt;}
.y151{bottom:347.346933pt;}
.yee{bottom:352.376667pt;}
.ycc{bottom:359.551067pt;}
.y169{bottom:359.923067pt;}
.y125{bottom:367.000000pt;}
.y15a{bottom:377.343440pt;}
.y17c{bottom:380.309600pt;}
.y5{bottom:386.286933pt;}
.y159{bottom:386.676773pt;}
.y28{bottom:394.895867pt;}
.y62{bottom:397.310667pt;}
.y168{bottom:399.794800pt;}
.y7f{bottom:404.859733pt;}
.y16d{bottom:406.819867pt;}
.y17b{bottom:415.509600pt;}
.ydc{bottom:423.637867pt;}
.y15{bottom:424.196133pt;}
.y10c{bottom:426.398267pt;}
.y4{bottom:430.286933pt;}
.y22{bottom:435.701333pt;}
.y79{bottom:435.995067pt;}
.y17{bottom:436.871467pt;}
.y17a{bottom:450.709600pt;}
.ye4{bottom:456.400000pt;}
.ye2{bottom:480.757600pt;}
.y113{bottom:483.703200pt;}
.y109{bottom:485.452240pt;}
.y179{bottom:485.909600pt;}
.y78{bottom:488.834133pt;}
.y167{bottom:494.437600pt;}
.ydb{bottom:495.727200pt;}
.y10b{bottom:496.821467pt;}
.y7e{bottom:499.251200pt;}
.y5c{bottom:506.114000pt;}
.y1{bottom:513.898400pt;}
.yd{bottom:520.002933pt;}
.y178{bottom:521.109600pt;}
.y146{bottom:523.328667pt;}
.y2d{bottom:526.838800pt;}
.y2f{bottom:532.141200pt;}
.y4f{bottom:538.705173pt;}
.y50{bottom:541.733573pt;}
.y4e{bottom:551.733573pt;}
.y177{bottom:556.309600pt;}
.ye0{bottom:558.669467pt;}
.y111{bottom:559.885333pt;}
.yb4{bottom:564.378933pt;}
.y10a{bottom:570.092400pt;}
.y145{bottom:571.762933pt;}
.yc9{bottom:572.989800pt;}
.yda{bottom:573.003600pt;}
.y166{bottom:580.416267pt;}
.y176{bottom:591.509600pt;}
.y77{bottom:597.360800pt;}
.y80{bottom:600.095067pt;}
.y5f{bottom:607.321867pt;}
.y4d{bottom:608.991040pt;}
.y19{bottom:609.967600pt;}
.y4c{bottom:612.019440pt;}
.y143{bottom:620.082133pt;}
.y4b{bottom:622.019440pt;}
.y175{bottom:626.709600pt;}
.y93{bottom:627.255733pt;}
.y48{bottom:656.068267pt;}
.y9b{bottom:657.257067pt;}
.y4a{bottom:658.485467pt;}
.y174{bottom:661.909600pt;}
.y42{bottom:663.590667pt;}
.y104{bottom:664.673867pt;}
.y95{bottom:664.779600pt;}
.y165{bottom:666.394933pt;}
.ydf{bottom:668.891067pt;}
.yaf{bottom:669.955067pt;}
.y46{bottom:674.952533pt;}
.y98{bottom:676.141467pt;}
.yd9{bottom:678.310800pt;}
.y44{bottom:680.184400pt;}
.y96{bottom:681.373200pt;}
.y56{bottom:696.502400pt;}
.y173{bottom:697.109600pt;}
.yc{bottom:699.932133pt;}
.y6f{bottom:702.867333pt;}
.yb7{bottom:714.356533pt;}
.y91{bottom:715.987467pt;}
.yd3{bottom:727.106533pt;}
.y172{bottom:732.309600pt;}
.ybc{bottom:738.307733pt;}
.ydd{bottom:741.714267pt;}
.ycf{bottom:743.992267pt;}
.y107{bottom:744.869067pt;}
.yd8{bottom:751.134133pt;}
.y103{bottom:752.094400pt;}
.y105{bottom:756.649467pt;}
.y129{bottom:758.222267pt;}
.y171{bottom:767.509600pt;}
.y3d{bottom:776.026267pt;}
.y29{bottom:776.033600pt;}
.y9d{bottom:789.503867pt;}
.y99{bottom:789.540933pt;}
.y2b{bottom:790.128667pt;}
.y3f{bottom:795.837200pt;}
.y124{bottom:802.287200pt;}
.y55{bottom:803.583627pt;}
.y9f{bottom:803.606267pt;}
.y9a{bottom:803.636000pt;}
.y92{bottom:804.719200pt;}
.y9e{bottom:809.314800pt;}
.ya{bottom:809.819067pt;}
.yc3{bottom:817.423467pt;}
.ycd{bottom:817.944667pt;}
.y85{bottom:821.453333pt;}
.y75{bottom:829.085867pt;}
.y149{bottom:841.870667pt;}
.y100{bottom:850.311067pt;}
.y148{bottom:852.429173pt;}
.y142{bottom:853.114000pt;}
.y147{bottom:862.429173pt;}
.ya9{bottom:862.944133pt;}
.y51{bottom:863.067467pt;}
.y127{bottom:868.943200pt;}
.y68{bottom:874.215867pt;}
.y6c{bottom:877.922400pt;}
.y59{bottom:878.746000pt;}
.y53{bottom:887.255733pt;}
.ybe{bottom:889.607067pt;}
.y126{bottom:893.856800pt;}
.y6d{bottom:894.097733pt;}
.y6b{bottom:894.364933pt;}
.y9{bottom:894.594533pt;}
.y8f{bottom:894.717733pt;}
.y120{bottom:897.807333pt;}
.y52{bottom:903.698267pt;}
.y12a{bottom:904.232800pt;}
.y58{bottom:905.174533pt;}
.y67{bottom:906.706533pt;}
.y94{bottom:916.498267pt;}
.y8d{bottom:919.334000pt;}
.yc6{bottom:920.020533pt;}
.y6e{bottom:925.748000pt;}
.y141{bottom:926.072800pt;}
.ye6{bottom:946.365467pt;}
.ye8{bottom:954.704000pt;}
.h97{height:17.881280pt;}
.hb5{height:18.892240pt;}
.had{height:19.087827pt;}
.h4f{height:22.481933pt;}
.ha0{height:25.245987pt;}
.h88{height:25.323693pt;}
.h70{height:25.400880pt;}
.h43{height:25.661453pt;}
.h7a{height:26.184333pt;}
.h77{height:26.264133pt;}
.h9c{height:28.000000pt;}
.hb2{height:31.727053pt;}
.h81{height:33.764933pt;}
.h6e{height:33.916893pt;}
.h4b{height:35.433680pt;}
.h49{height:35.596840pt;}
.h9e{height:36.178667pt;}
.h1b{height:36.877147pt;}
.h11{height:37.054693pt;}
.h14{height:38.140520pt;}
.hd{height:38.229720pt;}
.h41{height:38.264040pt;}
.h5f{height:38.342507pt;}
.h71{height:38.831173pt;}
.h8{height:39.485973pt;}
.h65{height:41.333333pt;}
.h7f{height:41.744613pt;}
.h86{height:44.573133pt;}
.h16{height:44.871573pt;}
.ha{height:45.194427pt;}
.h73{height:46.424440pt;}
.h18{height:49.333333pt;}
.h68{height:50.495960pt;}
.hb1{height:52.259867pt;}
.h30{height:52.666667pt;}
.h55{height:54.693933pt;}
.h5a{height:55.598280pt;}
.hae{height:56.167293pt;}
.h79{height:56.577733pt;}
.h3e{height:56.666667pt;}
.h76{height:56.697453pt;}
.ha9{height:59.484747pt;}
.h13{height:61.062228pt;}
.h3a{height:62.071040pt;}
.h3c{height:62.525440pt;}
.h5{height:62.859880pt;}
.ha3{height:64.000000pt;}
.h5c{height:64.304853pt;}
.h95{height:66.857107pt;}
.h92{height:67.529867pt;}
.h17{height:67.681920pt;}
.h67{height:67.733333pt;}
.h46{height:68.000000pt;}
.h48{height:69.859880pt;}
.h9d{height:70.716147pt;}
.h66{height:70.734375pt;}
.h8e{height:70.806758pt;}
.h28{height:71.299867pt;}
.h25{height:71.986213pt;}
.hb7{height:73.485156pt;}
.ha1{height:74.288115pt;}
.hc{height:74.544133pt;}
.h10{height:74.666667pt;}
.h4d{height:75.833987pt;}
.h61{height:76.562987pt;}
.h8a{height:77.948627pt;}
.h4e{height:78.593750pt;}
.h15{height:83.062213pt;}
.h7{height:83.106813pt;}
.ha7{height:83.781333pt;}
.h31{height:84.103160pt;}
.h1d{height:85.231760pt;}
.h2e{height:86.266667pt;}
.h39{height:87.424000pt;}
.h85{height:87.720000pt;}
.h5d{height:87.746987pt;}
.h50{height:89.667058pt;}
.h2f{height:90.382812pt;}
.h57{height:90.520267pt;}
.ha5{height:93.226667pt;}
.h2b{height:93.273933pt;}
.h37{height:93.320747pt;}
.h6d{height:94.320000pt;}
.h5b{height:96.416000pt;}
.h8c{height:96.761747pt;}
.h5e{height:97.280000pt;}
.h3f{height:98.242188pt;}
.h89{height:99.003090pt;}
.h72{height:99.727857pt;}
.hf{height:101.356947pt;}
.h34{height:101.781547pt;}
.hb3{height:102.286703pt;}
.h78{height:103.117110pt;}
.h40{height:104.800000pt;}
.ha8{height:105.306880pt;}
.h99{height:106.990453pt;}
.h12{height:107.652745pt;}
.h84{height:108.933333pt;}
.h6{height:108.992000pt;}
.h6b{height:109.280000pt;}
.h60{height:109.885440pt;}
.h96{height:110.031250pt;}
.h6f{height:110.164493pt;}
.h58{height:110.432133pt;}
.h3d{height:111.104000pt;}
.h75{height:111.200000pt;}
.h42{height:111.533515pt;}
.h3{height:113.184000pt;}
.h4c{height:113.387769pt;}
.he{height:114.403556pt;}
.hb{height:115.241064pt;}
.h47{height:117.890625pt;}
.h1e{height:121.066707pt;}
.h44{height:122.404992pt;}
.h29{height:125.760000pt;}
.h74{height:125.819343pt;}
.h7b{height:125.819450pt;}
.h8f{height:125.819460pt;}
.h87{height:125.819876pt;}
.h51{height:126.742133pt;}
.h9{height:127.301175pt;}
.h54{height:127.493333pt;}
.haf{height:127.669547pt;}
.h63{height:131.136000pt;}
.h82{height:132.004120pt;}
.h1a{height:134.060160pt;}
.hab{height:136.788779pt;}
.h20{height:136.788800pt;}
.h19{height:138.336000pt;}
.h98{height:138.671140pt;}
.h83{height:138.880000pt;}
.h69{height:139.278771pt;}
.h9a{height:139.278835pt;}
.hb0{height:140.074667pt;}
.h4a{height:141.484282pt;}
.h52{height:141.866667pt;}
.h1c{height:143.796503pt;}
.hb4{height:143.860800pt;}
.hb6{height:146.885990pt;}
.h45{height:148.149333pt;}
.h7c{height:148.266667pt;}
.ha2{height:150.080000pt;}
.hac{height:150.080021pt;}
.h9b{height:152.811919pt;}
.h6a{height:152.812196pt;}
.h7e{height:154.684800pt;}
.h7d{height:157.187500pt;}
.h56{height:160.249600pt;}
.h22{height:162.193600pt;}
.h80{height:165.919555pt;}
.ha4{height:171.541333pt;}
.haa{height:176.394667pt;}
.h21{height:176.788800pt;}
.h38{height:178.304000pt;}
.h27{height:178.346667pt;}
.ha6{height:183.877333pt;}
.h62{height:184.064000pt;}
.h23{height:188.902400pt;}
.h2a{height:191.814400pt;}
.h3b{height:191.872000pt;}
.h24{height:194.153600pt;}
.h1f{height:194.933333pt;}
.h33{height:198.832000pt;}
.h94{height:203.510400pt;}
.h1{height:211.630267pt;}
.h2{height:213.554688pt;}
.h9f{height:214.426667pt;}
.h26{height:222.174885pt;}
.h90{height:222.224000pt;}
.h4{height:231.580800pt;}
.h91{height:233.920000pt;}
.h8b{height:234.534436pt;}
.h8d{height:235.908529pt;}
.h6c{height:258.879984pt;}
.h93{height:264.008241pt;}
.h59{height:268.426667pt;}
.h2c{height:270.982878pt;}
.h32{height:274.287402pt;}
.h53{height:279.813333pt;}
.h35{height:280.896432pt;}
.h36{height:308.190167pt;}
.h2d{height:321.309856pt;}
.h64{height:412.285867pt;}
.h0{height:1024.000000pt;}
.w49{width:23.410853pt;}
.w45{width:31.214467pt;}
.wc{width:37.820800pt;}
.w61{width:37.977760pt;}
.w8{width:43.249947pt;}
.w35{width:52.666667pt;}
.wb{width:61.348373pt;}
.w5c{width:64.221653pt;}
.w53{width:66.781107pt;}
.w50{width:68.247360pt;}
.w2a{width:68.930867pt;}
.w60{width:70.465773pt;}
.w29{width:73.216280pt;}
.w5a{width:74.412987pt;}
.w18{width:76.800040pt;}
.w44{width:81.899080pt;}
.we{width:82.376627pt;}
.w2c{width:92.552413pt;}
.w42{width:112.161413pt;}
.w23{width:116.280187pt;}
.w40{width:119.486747pt;}
.w33{width:120.449787pt;}
.w25{width:129.149093pt;}
.w3c{width:132.415160pt;}
.w47{width:132.496200pt;}
.w5d{width:141.639600pt;}
.w34{width:142.830400pt;}
.w26{width:161.055200pt;}
.w32{width:163.635600pt;}
.w2e{width:173.151467pt;}
.w41{width:185.764267pt;}
.w3f{width:185.804267pt;}
.w5b{width:187.342133pt;}
.w3b{width:198.533333pt;}
.w5{width:199.900800pt;}
.w5f{width:200.582000pt;}
.w2f{width:207.072000pt;}
.w6{width:210.958800pt;}
.w4a{width:224.728400pt;}
.w11{width:236.012800pt;}
.w2d{width:236.995600pt;}
.w58{width:242.451733pt;}
.w13{width:247.118400pt;}
.w39{width:248.001333pt;}
.w37{width:248.158933pt;}
.w36{width:248.809600pt;}
.w27{width:253.618533pt;}
.w24{width:256.997333pt;}
.w2b{width:264.912533pt;}
.w22{width:273.615200pt;}
.w3a{width:279.009333pt;}
.w28{width:298.430267pt;}
.w4e{width:299.797467pt;}
.w4c{width:304.464133pt;}
.w48{width:313.218667pt;}
.w5e{width:317.727600pt;}
.w56{width:320.796000pt;}
.w4f{width:323.697600pt;}
.w4d{width:328.364267pt;}
.w12{width:349.780800pt;}
.wa{width:351.642133pt;}
.w3d{width:363.281867pt;}
.w16{width:364.486400pt;}
.w38{width:370.876933pt;}
.w30{width:392.156000pt;}
.w1d{width:394.886933pt;}
.w1b{width:402.094667pt;}
.w1c{width:404.849600pt;}
.w1e{width:404.849733pt;}
.w51{width:409.516267pt;}
.w4b{width:419.678667pt;}
.w19{width:420.350000pt;}
.w21{width:421.922533pt;}
.w20{width:422.826267pt;}
.w1a{width:422.928667pt;}
.w14{width:432.148000pt;}
.w7{width:437.159333pt;}
.w46{width:459.627867pt;}
.w3e{width:462.195867pt;}
.w31{width:478.664133pt;}
.w55{width:501.521200pt;}
.w9{width:507.360133pt;}
.w10{width:507.499467pt;}
.wd{width:552.399467pt;}
.wf{width:556.798800pt;}
.w1f{width:586.268667pt;}
.w43{width:629.826267pt;}
.w3{width:641.884800pt;}
.w4{width:707.539333pt;}
.w15{width:713.168133pt;}
.w17{width:718.870933pt;}
.w52{width:804.801200pt;}
.w59{width:818.176133pt;}
.w57{width:831.947600pt;}
.w54{width:1078.936133pt;}
.w2{width:1248.370000pt;}
.w1{width:1297.700533pt;}
.w0{width:1365.333333pt;}
.x2f{left:-4.648133pt;}
.xba{left:-2.508933pt;}
.x13{left:-1.256267pt;}
.x0{left:0.000000pt;}
.x91{left:0.978400pt;}
.x5b{left:3.019867pt;}
.x86{left:4.533333pt;}
.x46{left:6.015600pt;}
.xa8{left:7.798780pt;}
.x58{left:9.000000pt;}
.x67{left:10.666667pt;}
.x6d{left:12.003493pt;}
.x35{left:15.404667pt;}
.xd3{left:16.551253pt;}
.x1e{left:17.793215pt;}
.x39{left:19.866680pt;}
.x21{left:21.136133pt;}
.x50{left:22.183320pt;}
.x25{left:23.335733pt;}
.x71{left:25.583200pt;}
.x43{left:26.554493pt;}
.x2{left:31.335613pt;}
.x1{left:33.816400pt;}
.x19{left:34.933333pt;}
.x4f{left:36.243880pt;}
.x31{left:40.448000pt;}
.x29{left:42.031187pt;}
.xf{left:43.574400pt;}
.x72{left:44.856333pt;}
.xbb{left:45.822587pt;}
.x2a{left:46.764627pt;}
.x70{left:47.989093pt;}
.xc5{left:50.171333pt;}
.x1a{left:51.618840pt;}
.x9f{left:53.249347pt;}
.xaf{left:55.246667pt;}
.x65{left:56.867360pt;}
.x2b{left:60.380413pt;}
.x38{left:61.874133pt;}
.x3b{left:64.571187pt;}
.x28{left:66.567067pt;}
.xa{left:68.973613pt;}
.x1b{left:70.503720pt;}
.x11{left:71.601867pt;}
.xbd{left:74.979867pt;}
.x68{left:76.841360pt;}
.x9{left:78.666667pt;}
.xb1{left:79.690000pt;}
.x36{left:81.028667pt;}
.x16{left:82.019293pt;}
.xad{left:84.470413pt;}
.x23{left:85.435453pt;}
.x4d{left:91.647467pt;}
.x82{left:93.648067pt;}
.x83{left:96.671080pt;}
.x1c{left:98.774360pt;}
.xa0{left:99.991920pt;}
.x48{left:101.061800pt;}
.x60{left:103.664267pt;}
.x7f{left:108.000000pt;}
.x4c{left:110.101333pt;}
.x8d{left:114.694000pt;}
.x49{left:116.304333pt;}
.xd7{left:118.666667pt;}
.x53{left:120.388867pt;}
.x6e{left:126.253693pt;}
.x44{left:127.950093pt;}
.x76{left:129.914880pt;}
.xbc{left:130.885747pt;}
.x7b{left:135.541467pt;}
.xb7{left:136.693600pt;}
.xd{left:137.937067pt;}
.x34{left:139.206667pt;}
.x7c{left:142.389467pt;}
.xa9{left:143.798933pt;}
.xa4{left:144.777333pt;}
.x97{left:148.443653pt;}
.x55{left:149.599867pt;}
.x5c{left:150.540533pt;}
.x77{left:152.923333pt;}
.xd8{left:158.666667pt;}
.x47{left:170.737333pt;}
.x7a{left:173.901467pt;}
.xe{left:176.174400pt;}
.x56{left:179.299467pt;}
.x32{left:182.685867pt;}
.xd4{left:186.517387pt;}
.xc0{left:188.476267pt;}
.x3c{left:191.561333pt;}
.x75{left:196.613333pt;}
.x73{left:203.922400pt;}
.x78{left:209.607467pt;}
.x8{left:211.948667pt;}
.x8a{left:213.270933pt;}
.xaa{left:221.385733pt;}
.x57{left:225.976800pt;}
.xd6{left:231.497467pt;}
.xb4{left:242.399467pt;}
.xab{left:245.725733pt;}
.xa6{left:253.838933pt;}
.x5{left:264.652667pt;}
.x4b{left:268.636400pt;}
.x93{left:274.983200pt;}
.x9d{left:279.267733pt;}
.x90{left:286.758933pt;}
.x9a{left:291.043467pt;}
.x7{left:294.604667pt;}
.x5d{left:302.491467pt;}
.x3f{left:325.785200pt;}
.xb9{left:326.794400pt;}
.x3{left:335.017200pt;}
.x8f{left:356.373733pt;}
.xb{left:360.770387pt;}
.x40{left:375.194173pt;}
.x80{left:405.148533pt;}
.xa7{left:439.959200pt;}
.x88{left:445.048400pt;}
.x52{left:448.801733pt;}
.xb2{left:455.408267pt;}
.x33{left:463.282533pt;}
.xae{left:468.779867pt;}
.x6f{left:480.690400pt;}
.xc1{left:492.334933pt;}
.xc4{left:499.220667pt;}
.x64{left:502.620667pt;}
.xc2{left:507.910667pt;}
.x3a{left:512.041600pt;}
.x41{left:541.339200pt;}
.x4{left:545.632667pt;}
.x6c{left:553.797733pt;}
.x6{left:555.658667pt;}
.xcf{left:560.462000pt;}
.x4e{left:567.412133pt;}
.x8e{left:569.921067pt;}
.x9c{left:572.273867pt;}
.xd0{left:573.233973pt;}
.xd9{left:592.408933pt;}
.x92{left:602.639333pt;}
.x9b{left:606.923867pt;}
.x37{left:608.363333pt;}
.xb6{left:613.477200pt;}
.x42{left:629.477467pt;}
.x69{left:636.052133pt;}
.x8c{left:648.206533pt;}
.xa5{left:649.349333pt;}
.x4a{left:654.351067pt;}
.x10{left:657.794000pt;}
.xbe{left:668.019733pt;}
.xc{left:680.102267pt;}
.xc6{left:682.894400pt;}
.x51{left:689.521600pt;}
.x15{left:704.736533pt;}
.x7e{left:722.243467pt;}
.x20{left:724.844933pt;}
.xb5{left:733.351600pt;}
.x27{left:741.586800pt;}
.x17{left:742.792267pt;}
.xbf{left:755.877467pt;}
.xda{left:757.528933pt;}
.xcc{left:758.709600pt;}
.x18{left:760.698000pt;}
.x6a{left:773.665067pt;}
.x24{left:777.548933pt;}
.x45{left:796.558533pt;}
.xc3{left:797.554400pt;}
.x12{left:808.964133pt;}
.xa1{left:814.033467pt;}
.x5e{left:823.716133pt;}
.x5f{left:837.308933pt;}
.x74{left:840.806133pt;}
.xb3{left:846.503200pt;}
.xb8{left:848.456800pt;}
.xce{left:850.779973pt;}
.x2c{left:860.598533pt;}
.xb0{left:861.693600pt;}
.xcd{left:873.236480pt;}
.x54{left:875.030133pt;}
.x30{left:883.339200pt;}
.xa3{left:885.333333pt;}
.x9e{left:890.375867pt;}
.x2d{left:900.598533pt;}
.x61{left:911.965600pt;}
.xd2{left:922.036133pt;}
.x85{left:936.700800pt;}
.x63{left:948.373867pt;}
.x3d{left:951.419400pt;}
.x62{left:984.198667pt;}
.x7d{left:1001.466133pt;}
.x59{left:1006.672133pt;}
.xcb{left:1008.654267pt;}
.xd5{left:1020.239067pt;}
.x66{left:1023.989467pt;}
.x79{left:1035.428800pt;}
.x3e{left:1039.557600pt;}
.xc7{left:1062.603600pt;}
.x2e{left:1067.729333pt;}
.x8b{left:1071.921200pt;}
.x5a{left:1072.922400pt;}
.x94{left:1082.305867pt;}
.x96{left:1087.200000pt;}
.x14{left:1089.560800pt;}
.x89{left:1101.368000pt;}
.x95{left:1114.612800pt;}
.xac{left:1118.634667pt;}
.x98{left:1123.508800pt;}
.xc9{left:1126.663200pt;}
.x84{left:1127.835600pt;}
.xd1{left:1135.185667pt;}
.xc8{left:1140.497867pt;}
.x99{left:1146.950800pt;}
.x87{left:1148.453867pt;}
.x81{left:1151.083867pt;}
.xa2{left:1154.832400pt;}
.x22{left:1171.721733pt;}
.x6b{left:1222.741467pt;}
.x26{left:1226.625333pt;}
.x1d{left:1241.642667pt;}
.x1f{left:1252.483333pt;}
.xca{left:1253.653347pt;}
}




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