
    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_e9b375b8641e1b6c3f5335db.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.930000;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_1e94ed6ffc9d7630410171a7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;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_f3f0d844253547ae4b4f1bfd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_5c3524f9bc2754deadba3aa8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941000;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_812874a8d5561f0cfd4e794b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.457000;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_1554dc7d9793b0a8ca2cb4b4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.697000;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_1fa99642d2e534a195b75e94.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941000;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_c96fb14aa3211b1384dec4d0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.969000;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_80c6f0c2df7a499427dbf596.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.251000;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_3b8b7c4489752db69500c18b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.804000;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_326cb2167dfc0eb134f78ab3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.131000;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_50dbca8cd64268d8c11d3495.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_88cc08114828da4e24feb73f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.729000;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_8d52f28c346c95dedb0e52e8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.697000;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_3d0baee370bc4baa0ba70e1b.woff2')format("woff");}.fff{font-family:fff;line-height:0.837000;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_4aa260d8f940df2ff92e71e9.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.222000;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_2fa3f7edb7aeb8396cc8a1b1.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.669000;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_dde7d6ff51ad70de0f31ec0c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.264000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_97d43df4bc11e5248dfca989.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.279000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-1.326013px;}
.ls12{letter-spacing:-1.302013px;}
.lsd{letter-spacing:-1.290007px;}
.lsb{letter-spacing:-1.278013px;}
.ls9{letter-spacing:-1.272013px;}
.ls11{letter-spacing:-1.266013px;}
.lsa{letter-spacing:-1.260013px;}
.lsc{letter-spacing:-1.254007px;}
.ls8{letter-spacing:-1.248012px;}
.lsf{letter-spacing:-1.242012px;}
.ls10{letter-spacing:-1.188012px;}
.ls31{letter-spacing:-1.134828px;}
.ls14{letter-spacing:-1.117189px;}
.ls53{letter-spacing:-1.105429px;}
.ls51{letter-spacing:-1.099549px;}
.ls35{letter-spacing:-1.087789px;}
.ls2e{letter-spacing:-1.081909px;}
.ls13{letter-spacing:-1.076029px;}
.ls15{letter-spacing:-1.070149px;}
.ls32{letter-spacing:-1.052509px;}
.ls2d{letter-spacing:-1.046629px;}
.ls52{letter-spacing:-1.040749px;}
.ls34{letter-spacing:-1.034869px;}
.ls2f{letter-spacing:-1.017230px;}
.ls16{letter-spacing:-0.905511px;}
.ls33{letter-spacing:-0.876111px;}
.ls30{letter-spacing:-0.829072px;}
.ls7{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.000038px;}
.ls58{letter-spacing:0.000041px;}
.ls73{letter-spacing:0.044968px;}
.ls77{letter-spacing:0.045032px;}
.ls2a{letter-spacing:0.047944px;}
.ls28{letter-spacing:0.048004px;}
.ls7c{letter-spacing:0.089937px;}
.ls7b{letter-spacing:0.090000px;}
.ls57{letter-spacing:0.095976px;}
.ls62{letter-spacing:0.117553px;}
.ls5{letter-spacing:0.117613px;}
.ls7d{letter-spacing:0.135032px;}
.ls4{letter-spacing:0.176400px;}
.ls29{letter-spacing:0.191980px;}
.ls2b{letter-spacing:0.192040px;}
.ls20{letter-spacing:0.216000px;}
.ls23{letter-spacing:0.352778px;}
.ls4e{letter-spacing:0.352798px;}
.ls1c{letter-spacing:0.352838px;}
.ls4f{letter-spacing:0.535075px;}
.ls6d{letter-spacing:0.535493px;}
.ls82{letter-spacing:0.544493px;}
.ls6b{letter-spacing:0.564474px;}
.ls70{letter-spacing:0.566992px;}
.ls6e{letter-spacing:0.571492px;}
.ls3b{letter-spacing:0.582114px;}
.ls69{letter-spacing:0.587994px;}
.ls71{letter-spacing:0.593992px;}
.ls3d{letter-spacing:0.605634px;}
.ls42{letter-spacing:0.611514px;}
.ls3e{letter-spacing:0.617394px;}
.ls36{letter-spacing:0.629154px;}
.ls6a{letter-spacing:0.635034px;}
.ls41{letter-spacing:0.640913px;}
.ls76{letter-spacing:0.643491px;}
.ls67{letter-spacing:0.646793px;}
.ls37{letter-spacing:0.646798px;}
.ls65{letter-spacing:0.652673px;}
.ls38{letter-spacing:0.658553px;}
.ls68{letter-spacing:0.664433px;}
.ls3c{letter-spacing:0.670313px;}
.ls6f{letter-spacing:0.674980px;}
.ls74{letter-spacing:0.674991px;}
.ls66{letter-spacing:0.687953px;}
.ls3f{letter-spacing:0.705593px;}
.ls3a{letter-spacing:0.729113px;}
.ls75{letter-spacing:0.764969px;}
.ls7a{letter-spacing:1.003487px;}
.ls7f{letter-spacing:1.088985px;}
.ls80{letter-spacing:1.120481px;}
.ls79{letter-spacing:1.124969px;}
.ls78{letter-spacing:1.165484px;}
.ls7e{letter-spacing:1.174484px;}
.ls81{letter-spacing:1.295983px;}
.ls55{letter-spacing:9.455882px;}
.ls2{letter-spacing:10.320101px;}
.ls4d{letter-spacing:10.525057px;}
.ls4b{letter-spacing:10.525117px;}
.ls54{letter-spacing:10.619172px;}
.ls4c{letter-spacing:10.819057px;}
.ls44{letter-spacing:11.524657px;}
.ls47{letter-spacing:11.759851px;}
.ls72{letter-spacing:13.499777px;}
.ls5b{letter-spacing:14.111854px;}
.ls56{letter-spacing:14.207836px;}
.ls59{letter-spacing:14.255815px;}
.ls5a{letter-spacing:14.303766px;}
.ls5d{letter-spacing:14.395020px;}
.ls5c{letter-spacing:14.495858px;}
.ls2c{letter-spacing:14.591802px;}
.ls3{letter-spacing:15.240140px;}
.ls1{letter-spacing:15.240142px;}
.ls4a{letter-spacing:16.993078px;}
.ls21{letter-spacing:18.133735px;}
.ls1a{letter-spacing:18.169031px;}
.ls22{letter-spacing:18.463031px;}
.ls83{letter-spacing:18.515280px;}
.ls46{letter-spacing:18.815811px;}
.ls0{letter-spacing:19.806780px;}
.ls50{letter-spacing:20.609190px;}
.ls27{letter-spacing:20.873771px;}
.ls39{letter-spacing:22.108558px;}
.ls1d{letter-spacing:23.519738px;}
.ls1e{letter-spacing:23.813738px;}
.ls63{letter-spacing:23.813758px;}
.ls64{letter-spacing:23.931371px;}
.ls1f{letter-spacing:24.107758px;}
.ls17{letter-spacing:24.460558px;}
.ls61{letter-spacing:24.930971px;}
.ls18{letter-spacing:25.518938px;}
.ls19{letter-spacing:25.636511px;}
.ls6{letter-spacing:27.635711px;}
.ls40{letter-spacing:28.694111px;}
.ls43{letter-spacing:29.576098px;}
.ls25{letter-spacing:32.457231px;}
.ls26{letter-spacing:32.516071px;}
.ls5f{letter-spacing:33.339278px;}
.ls5e{letter-spacing:33.456851px;}
.ls6c{letter-spacing:34.215371px;}
.ls48{letter-spacing:35.867691px;}
.ls49{letter-spacing:35.926411px;}
.ls60{letter-spacing:36.749618px;}
.ls45{letter-spacing:41.806378px;}
.ls24{letter-spacing:57.564671px;}
.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;}
}
.ws1ac{word-spacing:-34.274170px;}
.ws14c{word-spacing:-20.667989px;}
.ws5{word-spacing:-19.872781px;}
.ws1e3{word-spacing:-18.577080px;}
.ws9d{word-spacing:-18.192534px;}
.ws16e{word-spacing:-14.443019px;}
.ws15e{word-spacing:-10.677971px;}
.ws1de{word-spacing:-1.048486px;}
.ws1d6{word-spacing:-0.719990px;}
.ws1d7{word-spacing:-0.688491px;}
.ws11e{word-spacing:-0.593874px;}
.ws1ce{word-spacing:-0.580492px;}
.ws23{word-spacing:-0.061800px;}
.ws13{word-spacing:-0.060001px;}
.ws2a{word-spacing:-0.058799px;}
.ws142{word-spacing:-0.055201px;}
.ws57{word-spacing:-0.047999px;}
.ws4c{word-spacing:-0.044999px;}
.ws47{word-spacing:-0.041999px;}
.ws58{word-spacing:0.000000px;}
.wsff{word-spacing:0.770272px;}
.ws12{word-spacing:1.212012px;}
.ws1b{word-spacing:1.266013px;}
.ws16d{word-spacing:9.263884px;}
.ws148{word-spacing:10.760290px;}
.ws1ba{word-spacing:10.901409px;}
.ws13a{word-spacing:11.583482px;}
.ws12f{word-spacing:11.642281px;}
.ws4b{word-spacing:11.879842px;}
.ws48{word-spacing:12.305824px;}
.ws43{word-spacing:12.431822px;}
.ws17e{word-spacing:12.473804px;}
.ws179{word-spacing:12.473822px;}
.ws178{word-spacing:12.473833px;}
.ws49{word-spacing:12.515821px;}
.ws17f{word-spacing:12.557784px;}
.ws172{word-spacing:12.557821px;}
.ws4a{word-spacing:12.599820px;}
.ws15a{word-spacing:12.635991px;}
.ws177{word-spacing:12.641785px;}
.ws46{word-spacing:12.683819px;}
.ws17d{word-spacing:12.683821px;}
.ws17c{word-spacing:12.767773px;}
.ws17a{word-spacing:12.767814px;}
.ws171{word-spacing:12.809809px;}
.ws45{word-spacing:12.809817px;}
.ws17b{word-spacing:12.893807px;}
.ws44{word-spacing:12.893816px;}
.ws1d4{word-spacing:13.139825px;}
.ws14{word-spacing:13.140131px;}
.ws1e1{word-spacing:13.184824px;}
.ws1d3{word-spacing:13.229824px;}
.ws50{word-spacing:13.274823px;}
.ws54{word-spacing:13.319822px;}
.ws52{word-spacing:13.364822px;}
.ws1d2{word-spacing:13.409821px;}
.ws1c6{word-spacing:13.454821px;}
.ws53{word-spacing:13.499820px;}
.ws4f{word-spacing:13.544819px;}
.ws51{word-spacing:13.589819px;}
.ws1c7{word-spacing:13.634818px;}
.ws4d{word-spacing:13.679818px;}
.wsce{word-spacing:13.679829px;}
.ws1ca{word-spacing:13.724817px;}
.ws1c8{word-spacing:13.769778px;}
.ws4e{word-spacing:13.769816px;}
.ws1c9{word-spacing:13.814816px;}
.ws55{word-spacing:13.823813px;}
.ws10c{word-spacing:13.823824px;}
.wscf{word-spacing:13.823827px;}
.ws7e{word-spacing:13.823873px;}
.ws1d1{word-spacing:13.859815px;}
.ws170{word-spacing:13.871827px;}
.ws113{word-spacing:13.919826px;}
.wscd{word-spacing:13.967825px;}
.ws114{word-spacing:13.967833px;}
.ws10f{word-spacing:14.015816px;}
.ws10b{word-spacing:14.015825px;}
.ws108{word-spacing:14.063816px;}
.ws56{word-spacing:14.063824px;}
.ws109{word-spacing:14.111815px;}
.ws10d{word-spacing:14.111819px;}
.ws112{word-spacing:14.111824px;}
.wscc{word-spacing:14.159823px;}
.ws110{word-spacing:14.207795px;}
.ws7d{word-spacing:14.207822px;}
.ws7f{word-spacing:14.255822px;}
.ws115{word-spacing:14.303821px;}
.ws111{word-spacing:14.351821px;}
.ws10a{word-spacing:14.351837px;}
.ws10e{word-spacing:14.399820px;}
.ws16f{word-spacing:14.447819px;}
.ws8e{word-spacing:14.523452px;}
.ws78{word-spacing:14.699857px;}
.ws65{word-spacing:14.817449px;}
.ws94{word-spacing:14.876248px;}
.ws8b{word-spacing:14.993847px;}
.ws199{word-spacing:15.287844px;}
.ws14b{word-spacing:15.346643px;}
.ws74{word-spacing:15.405443px;}
.ws1a6{word-spacing:15.464242px;}
.ws5b{word-spacing:15.523042px;}
.ws90{word-spacing:15.581841px;}
.ws198{word-spacing:15.875838px;}
.wscb{word-spacing:15.984000px;}
.wsca{word-spacing:16.038000px;}
.wsc9{word-spacing:16.092000px;}
.ws19c{word-spacing:16.169835px;}
.ws16c{word-spacing:16.200000px;}
.ws19b{word-spacing:16.228634px;}
.ws79{word-spacing:16.339378px;}
.ws75{word-spacing:16.394578px;}
.ws1dd{word-spacing:16.433781px;}
.ws145{word-spacing:16.449779px;}
.ws11c{word-spacing:16.504992px;}
.ws93{word-spacing:16.522631px;}
.wsb4{word-spacing:16.560180px;}
.ws87{word-spacing:16.581431px;}
.ws95{word-spacing:16.615381px;}
.wsb3{word-spacing:16.670581px;}
.ws1d9{word-spacing:16.699277px;}
.ws2f{word-spacing:16.769589px;}
.wsdb{word-spacing:16.780982px;}
.ws1db{word-spacing:16.789281px;}
.ws15d{word-spacing:16.863668px;}
.ws15c{word-spacing:16.910707px;}
.ws120{word-spacing:16.969507px;}
.ws1d8{word-spacing:17.005273px;}
.ws1dc{word-spacing:17.059273px;}
.ws73{word-spacing:17.110625px;}
.ws17{word-spacing:17.154166px;}
.ws143{word-spacing:17.222587px;}
.ws1da{word-spacing:17.225770px;}
.ws14a{word-spacing:17.228224px;}
.ws11{word-spacing:17.232172px;}
.ws15{word-spacing:17.268173px;}
.ws1a{word-spacing:17.274167px;}
.ws18{word-spacing:17.310167px;}
.ws1d5{word-spacing:17.311269px;}
.ws1d0{word-spacing:17.315769px;}
.ws22{word-spacing:17.328173px;}
.ws1cf{word-spacing:17.342769px;}
.wsc8{word-spacing:17.345823px;}
.ws20{word-spacing:17.346173px;}
.ws1cb{word-spacing:17.360769px;}
.ws21{word-spacing:17.400216px;}
.ws19{word-spacing:17.412174px;}
.ws1cc{word-spacing:17.419268px;}
.ws42{word-spacing:17.463422px;}
.ws1d{word-spacing:17.496161px;}
.ws10{word-spacing:17.508175px;}
.wsfc{word-spacing:17.510461px;}
.ws1cd{word-spacing:17.518266px;}
.ws60{word-spacing:17.522221px;}
.ws1df{word-spacing:17.545266px;}
.ws1c{word-spacing:17.562176px;}
.ws5f{word-spacing:17.581021px;}
.ws197{word-spacing:17.639820px;}
.ws1f{word-spacing:17.646176px;}
.ws16{word-spacing:17.658177px;}
.ws1e{word-spacing:17.670171px;}
.ws1c4{word-spacing:17.698619px;}
.ws83{word-spacing:17.757419px;}
.wsaa{word-spacing:17.816194px;}
.wsb2{word-spacing:17.816218px;}
.wse{word-spacing:17.820178px;}
.ws70{word-spacing:17.875018px;}
.ws144{word-spacing:17.933848px;}
.wsb{word-spacing:18.000180px;}
.ws9a{word-spacing:18.051416px;}
.wsd{word-spacing:18.060181px;}
.wsdd{word-spacing:18.110215px;}
.wsa{word-spacing:18.120181px;}
.ws140{word-spacing:18.169015px;}
.wsc{word-spacing:18.180170px;}
.ws38{word-spacing:18.227814px;}
.ws9c{word-spacing:18.227827px;}
.ws15b{word-spacing:18.298373px;}
.wsf{word-spacing:18.300187px;}
.wse5{word-spacing:18.345413px;}
.ws196{word-spacing:18.404212px;}
.wsd4{word-spacing:18.463039px;}
.ws1c5{word-spacing:18.478200px;}
.wsac{word-spacing:18.521811px;}
.ws30{word-spacing:18.580610px;}
.ws9{word-spacing:18.600220px;}
.ws1e0{word-spacing:18.629752px;}
.wsd6{word-spacing:18.639410px;}
.ws9b{word-spacing:18.698209px;}
.wsd5{word-spacing:18.757002px;}
.ws124{word-spacing:18.815808px;}
.ws76{word-spacing:18.874607px;}
.ws139{word-spacing:18.933407px;}
.ws19d{word-spacing:19.051006px;}
.wsc5{word-spacing:19.109805px;}
.ws184{word-spacing:19.168604px;}
.ws157{word-spacing:19.180364px;}
.ws156{word-spacing:19.209764px;}
.ws59{word-spacing:19.227404px;}
.wsd3{word-spacing:19.345003px;}
.wsaf{word-spacing:19.403802px;}
.wsc6{word-spacing:19.521401px;}
.ws2b{word-spacing:19.580200px;}
.ws158{word-spacing:19.591958px;}
.ws8{word-spacing:19.602178px;}
.ws167{word-spacing:19.639000px;}
.ws7{word-spacing:19.668179px;}
.ws15f{word-spacing:19.697799px;}
.ws6{word-spacing:19.734179px;}
.ws159{word-spacing:19.756598px;}
.ws4{word-spacing:19.800180px;}
.wsc2{word-spacing:19.815398px;}
.ws11b{word-spacing:19.833038px;}
.wsbd{word-spacing:19.874197px;}
.ws92{word-spacing:19.932997px;}
.wsfa{word-spacing:20.050595px;}
.ws27{word-spacing:20.109395px;}
.ws1c0{word-spacing:20.168194px;}
.ws18d{word-spacing:20.226994px;}
.wsdf{word-spacing:20.285793px;}
.ws136{word-spacing:20.403392px;}
.ws116{word-spacing:20.438654px;}
.ws28{word-spacing:20.462191px;}
.ws118{word-spacing:20.497471px;}
.ws3a{word-spacing:20.520991px;}
.ws3c{word-spacing:20.579790px;}
.ws117{word-spacing:20.626830px;}
.wsd8{word-spacing:20.638589px;}
.wsc1{word-spacing:20.697389px;}
.wsf9{word-spacing:20.814988px;}
.ws126{word-spacing:20.873787px;}
.ws25{word-spacing:20.932586px;}
.wsf5{word-spacing:20.991386px;}
.wsbc{word-spacing:21.108985px;}
.ws104{word-spacing:21.144264px;}
.ws103{word-spacing:21.161904px;}
.ws6a{word-spacing:21.167784px;}
.wsa9{word-spacing:21.226583px;}
.ws11a{word-spacing:21.261863px;}
.ws125{word-spacing:21.285383px;}
.ws1c2{word-spacing:21.344182px;}
.wse7{word-spacing:21.461781px;}
.ws26{word-spacing:21.520580px;}
.ws180{word-spacing:21.638179px;}
.ws121{word-spacing:21.696979px;}
.wse6{word-spacing:21.755778px;}
.ws102{word-spacing:21.867497px;}
.ws18c{word-spacing:21.873377px;}
.ws6d{word-spacing:21.932176px;}
.ws19a{word-spacing:22.049775px;}
.ws98{word-spacing:22.108574px;}
.ws183{word-spacing:22.226173px;}
.ws8f{word-spacing:22.284973px;}
.ws146{word-spacing:22.343772px;}
.ws8d{word-spacing:22.461371px;}
.ws181{word-spacing:22.520170px;}
.ws14d{word-spacing:22.531930px;}
.ws127{word-spacing:22.578970px;}
.wsfe{word-spacing:22.655409px;}
.ws8c{word-spacing:22.696568px;}
.ws100{word-spacing:22.773008px;}
.ws91{word-spacing:22.814167px;}
.wsc4{word-spacing:22.872967px;}
.ws2c{word-spacing:22.931766px;}
.ws168{word-spacing:22.990565px;}
.ws40{word-spacing:23.166964px;}
.ws24{word-spacing:23.225763px;}
.ws19e{word-spacing:23.284562px;}
.wsfd{word-spacing:23.308082px;}
.ws12d{word-spacing:23.343362px;}
.ws1bb{word-spacing:23.402161px;}
.ws134{word-spacing:23.460961px;}
.ws133{word-spacing:23.519760px;}
.ws1b3{word-spacing:23.531520px;}
.wsa0{word-spacing:23.578559px;}
.ws0{word-spacing:23.634000px;}
.ws35{word-spacing:23.637359px;}
.ws1b5{word-spacing:23.836325px;}
.ws1a7{word-spacing:23.866676px;}
.wsf7{word-spacing:23.872556px;}
.ws1b6{word-spacing:23.884316px;}
.ws64{word-spacing:23.931356px;}
.ws101{word-spacing:23.954876px;}
.wsdc{word-spacing:23.990155px;}
.ws89{word-spacing:24.048955px;}
.wsa8{word-spacing:24.048982px;}
.ws12a{word-spacing:24.107754px;}
.ws3f{word-spacing:24.225353px;}
.ws151{word-spacing:24.266512px;}
.ws34{word-spacing:24.284152px;}
.ws150{word-spacing:24.295912px;}
.ws63{word-spacing:24.342952px;}
.ws41{word-spacing:24.460550px;}
.ws18b{word-spacing:24.578149px;}
.ws191{word-spacing:24.636949px;}
.ws190{word-spacing:24.695748px;}
.ws1a9{word-spacing:25.030905px;}
.ws61{word-spacing:25.048544px;}
.ws80{word-spacing:25.107344px;}
.wsa7{word-spacing:25.224943px;}
.ws69{word-spacing:25.283742px;}
.ws68{word-spacing:25.342541px;}
.ws84{word-spacing:25.401341px;}
.ws99{word-spacing:25.460140px;}
.ws169{word-spacing:25.518940px;}
.ws1c1{word-spacing:25.577739px;}
.ws164{word-spacing:25.636538px;}
.ws105{word-spacing:25.648298px;}
.wsb6{word-spacing:25.695338px;}
.ws6f{word-spacing:25.754137px;}
.wsf0{word-spacing:25.812937px;}
.wsb8{word-spacing:25.989335px;}
.ws106{word-spacing:26.018735px;}
.wsc0{word-spacing:26.048134px;}
.ws1af{word-spacing:26.136333px;}
.ws88{word-spacing:26.165733px;}
.ws155{word-spacing:26.242172px;}
.ws18a{word-spacing:26.342131px;}
.ws154{word-spacing:26.447970px;}
.ws19f{word-spacing:26.577329px;}
.wsb1{word-spacing:26.636128px;}
.wsa6{word-spacing:26.694928px;}
.ws1a1{word-spacing:26.753727px;}
.ws1a8{word-spacing:26.794887px;}
.ws11d{word-spacing:26.841926px;}
.wse1{word-spacing:26.871326px;}
.wsba{word-spacing:26.988925px;}
.ws29{word-spacing:27.047724px;}
.ws1aa{word-spacing:27.065364px;}
.ws1a2{word-spacing:27.106523px;}
.ws1a0{word-spacing:27.106526px;}
.ws31{word-spacing:27.165323px;}
.ws3d{word-spacing:27.224122px;}
.wse2{word-spacing:27.282922px;}
.wse9{word-spacing:27.341721px;}
.ws11f{word-spacing:27.347601px;}
.wsab{word-spacing:27.400520px;}
.wsd7{word-spacing:27.518119px;}
.wsa4{word-spacing:27.576919px;}
.ws3e{word-spacing:27.694517px;}
.ws8a{word-spacing:27.753317px;}
.wsae{word-spacing:27.812116px;}
.ws16b{word-spacing:27.870916px;}
.ws9e{word-spacing:27.929715px;}
.ws128{word-spacing:27.988514px;}
.ws122{word-spacing:28.047314px;}
.ws1bd{word-spacing:28.106113px;}
.wsf8{word-spacing:28.164913px;}
.ws1b9{word-spacing:28.206072px;}
.ws9f{word-spacing:28.223712px;}
.wsbb{word-spacing:28.341311px;}
.wsa1{word-spacing:28.458910px;}
.ws85{word-spacing:28.576508px;}
.ws1bc{word-spacing:28.635308px;}
.ws14f{word-spacing:28.647068px;}
.wsb0{word-spacing:28.694107px;}
.ws86{word-spacing:28.752907px;}
.ws14e{word-spacing:28.776426px;}
.wsfb{word-spacing:28.811706px;}
.ws32{word-spacing:29.046904px;}
.wsd1{word-spacing:29.105703px;}
.ws5e{word-spacing:29.223302px;}
.wsd2{word-spacing:29.340901px;}
.wsad{word-spacing:29.399700px;}
.wsc7{word-spacing:29.458499px;}
.ws12c{word-spacing:29.576098px;}
.ws129{word-spacing:29.634898px;}
.wsa2{word-spacing:29.693697px;}
.wsbf{word-spacing:29.752496px;}
.ws5d{word-spacing:29.811296px;}
.ws12b{word-spacing:29.870095px;}
.ws5c{word-spacing:29.987694px;}
.ws7a{word-spacing:30.046493px;}
.ws13c{word-spacing:30.105293px;}
.wsd0{word-spacing:30.281691px;}
.wsbe{word-spacing:30.340490px;}
.ws97{word-spacing:30.458089px;}
.wsde{word-spacing:30.516889px;}
.ws5a{word-spacing:30.634487px;}
.wsb5{word-spacing:30.810886px;}
.wsb7{word-spacing:30.987284px;}
.wsa3{word-spacing:31.046083px;}
.ws160{word-spacing:31.104883px;}
.ws1ae{word-spacing:31.122522px;}
.ws1b1{word-spacing:31.234241px;}
.ws7b{word-spacing:31.281281px;}
.ws194{word-spacing:31.340080px;}
.ws6b{word-spacing:31.457679px;}
.ws1b7{word-spacing:31.575278px;}
.ws1be{word-spacing:31.634077px;}
.wse0{word-spacing:31.751676px;}
.ws1b8{word-spacing:31.792836px;}
.wseb{word-spacing:31.810475px;}
.ws81{word-spacing:31.869275px;}
.ws163{word-spacing:31.928074px;}
.wsec{word-spacing:32.045673px;}
.wsf4{word-spacing:32.163272px;}
.ws82{word-spacing:32.457269px;}
.wsda{word-spacing:32.516068px;}
.ws1ab{word-spacing:32.557228px;}
.ws1b0{word-spacing:32.780666px;}
.wsa5{word-spacing:32.810065px;}
.ws166{word-spacing:32.868865px;}
.ws6c{word-spacing:33.104062px;}
.wse4{word-spacing:33.162862px;}
.wse3{word-spacing:33.280460px;}
.ws37{word-spacing:33.339260px;}
.ws36{word-spacing:33.398059px;}
.ws96{word-spacing:33.515658px;}
.ws186{word-spacing:33.574457px;}
.ws192{word-spacing:33.633257px;}
.ws185{word-spacing:33.692056px;}
.ws16a{word-spacing:33.809655px;}
.wsb9{word-spacing:34.397649px;}
.ws162{word-spacing:34.515248px;}
.wsf3{word-spacing:34.574047px;}
.ws33{word-spacing:34.691646px;}
.ws132{word-spacing:34.868044px;}
.ws72{word-spacing:35.103242px;}
.ws67{word-spacing:35.162041px;}
.ws1a3{word-spacing:35.220841px;}
.ws193{word-spacing:35.397239px;}
.ws153{word-spacing:35.467798px;}
.ws152{word-spacing:35.591277px;}
.ws13d{word-spacing:35.808835px;}
.ws13e{word-spacing:35.985233px;}
.ws149{word-spacing:36.102832px;}
.ws1b2{word-spacing:36.255710px;}
.ws62{word-spacing:36.396829px;}
.ws131{word-spacing:36.573227px;}
.ws189{word-spacing:36.632026px;}
.ws1bf{word-spacing:36.690826px;}
.ws188{word-spacing:36.867226px;}
.wsd9{word-spacing:36.926023px;}
.ws161{word-spacing:37.043622px;}
.ws39{word-spacing:37.278820px;}
.wsf6{word-spacing:37.690415px;}
.ws1c3{word-spacing:37.749215px;}
.ws165{word-spacing:37.866814px;}
.ws7c{word-spacing:38.219610px;}
.ws182{word-spacing:38.278409px;}
.wsf1{word-spacing:38.984002px;}
.ws18f{word-spacing:39.101601px;}
.ws18e{word-spacing:39.513197px;}
.ws187{word-spacing:39.571996px;}
.ws3b{word-spacing:39.807194px;}
.ws141{word-spacing:39.983592px;}
.ws66{word-spacing:40.101191px;}
.ws1ad{word-spacing:40.254069px;}
.ws147{word-spacing:40.336388px;}
.ws77{word-spacing:40.453987px;}
.ws123{word-spacing:40.512787px;}
.wsc3{word-spacing:40.806784px;}
.ws12e{word-spacing:41.277179px;}
.ws6e{word-spacing:41.512376px;}
.ws135{word-spacing:41.571176px;}
.ws137{word-spacing:41.865173px;}
.wsef{word-spacing:42.041571px;}
.ws119{word-spacing:42.047451px;}
.ws2{word-spacing:43.056179px;}
.ws3{word-spacing:43.200180px;}
.ws71{word-spacing:43.276358px;}
.ws1{word-spacing:43.344181px;}
.ws1b4{word-spacing:43.923152px;}
.ws1e2{word-spacing:44.131720px;}
.ws138{word-spacing:44.511146px;}
.ws1a4{word-spacing:44.746343px;}
.ws195{word-spacing:45.040340px;}
.ws1a5{word-spacing:45.099140px;}
.ws130{word-spacing:45.451936px;}
.wse8{word-spacing:46.686724px;}
.wsf2{word-spacing:48.274307px;}
.ws2d{word-spacing:50.114729px;}
.ws2e{word-spacing:50.391086px;}
.ws13b{word-spacing:50.861481px;}
.ws13f{word-spacing:51.743472px;}
.wsee{word-spacing:55.859430px;}
.wsed{word-spacing:55.977029px;}
.wsea{word-spacing:57.976208px;}
.ws174{word-spacing:309.212135px;}
.ws175{word-spacing:311.228110px;}
.ws176{word-spacing:312.188098px;}
.ws173{word-spacing:317.708018px;}
.ws107{word-spacing:842.965477px;}
._4e{margin-left:-34.703474px;}
._4d{margin-left:-33.433316px;}
._24{margin-left:-21.755778px;}
._5{margin-left:-19.800180px;}
._1b{margin-left:-17.546282px;}
._29{margin-left:-14.399820px;}
._26{margin-left:-11.877479px;}
._25{margin-left:-10.643106px;}
._16{margin-left:-2.116778px;}
._9{margin-left:-1.080011px;}
._6{width:1.200012px;}
._0{width:8.970000px;}
._14{width:10.153315px;}
._b{width:11.184106px;}
._8{width:12.360124px;}
._12{width:14.045801px;}
._a{width:15.828169px;}
._c{width:17.141983px;}
._13{width:18.150033px;}
._7{width:19.260193px;}
._19{width:21.167784px;}
._d{width:22.285013px;}
._18{width:23.872556px;}
._f{width:25.283752px;}
._15{width:26.459730px;}
._1c{width:28.164913px;}
._4{width:29.232122px;}
._4b{width:30.434065px;}
._1a{width:31.575278px;}
._1{width:32.682000px;}
._10{width:34.432424px;}
._e{width:36.407580px;}
._11{width:38.430784px;}
._1f{width:39.513197px;}
._22{width:41.453577px;}
._20{width:43.369933px;}
._3{width:44.928187px;}
._21{width:45.935456px;}
._4c{width:47.039520px;}
._23{width:52.189843px;}
._4f{width:65.879122px;}
._1e{width:174.381820px;}
._1d{width:239.853002px;}
._43{width:279.788499px;}
._4a{width:317.612030px;}
._49{width:330.379886px;}
._45{width:336.187781px;}
._46{width:351.835548px;}
._48{width:392.107099px;}
._47{width:424.122698px;}
._28{width:452.574401px;}
._2f{width:455.322246px;}
._37{width:475.002046px;}
._27{width:491.945851px;}
._2e{width:497.045729px;}
._42{width:498.185756px;}
._44{width:524.633372px;}
._2a{width:538.361270px;}
._33{width:552.425032px;}
._3b{width:624.424132px;}
._40{width:687.639402px;}
._31{width:700.647239px;}
._3f{width:718.599015px;}
._30{width:749.282526px;}
._2c{width:751.490511px;}
._3a{width:753.686576px;}
._41{width:762.518497px;}
._3e{width:774.434224px;}
._32{width:786.614165px;}
._2b{width:791.606105px;}
._38{width:792.614030px;}
._35{width:799.009921px;}
._2d{width:810.613867px;}
._39{width:839.605442px;}
._36{width:856.549231px;}
._34{width:862.453247px;}
._3c{width:866.533166px;}
._3d{width:875.029060px;}
._2{width:1602.275940px;}
._17{width:1737.194258px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(19,20,19);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsf{font-size:27.996600px;}
.fs9{font-size:29.995200px;}
.fs10{font-size:31.995000px;}
.fse{font-size:35.995200px;}
.fsd{font-size:39.194400px;}
.fs7{font-size:41.999400px;}
.fs3{font-size:43.996200px;}
.fs8{font-size:44.999400px;}
.fsa{font-size:47.999400px;}
.fsc{font-size:54.000000px;}
.fsb{font-size:55.200600px;}
.fs6{font-size:58.799400px;}
.fs5{font-size:60.000600px;}
.fs4{font-size:61.800000px;}
.fs2{font-size:66.000600px;}
.fs0{font-size:78.000000px;}
.fs1{font-size:144.000600px;}
.y0{bottom:0.000000px;}
.y38{bottom:65.394090px;}
.y37{bottom:77.384925px;}
.y202{bottom:89.285715px;}
.y24b{bottom:89.292075px;}
.y292{bottom:89.295225px;}
.y138{bottom:89.305035px;}
.ydb{bottom:89.337090px;}
.y167{bottom:89.342280px;}
.yfa{bottom:89.349735px;}
.y36{bottom:89.375745px;}
.yb2{bottom:89.381625px;}
.y1cf{bottom:89.418915px;}
.y199{bottom:90.649110px;}
.ybb{bottom:97.032525px;}
.y66{bottom:98.645550px;}
.y35{bottom:101.366580px;}
.y201{bottom:102.808035px;}
.y24a{bottom:102.814395px;}
.y291{bottom:102.817530px;}
.y198{bottom:103.406430px;}
.y137{bottom:107.327055px;}
.yda{bottom:107.359110px;}
.y166{bottom:107.364300px;}
.yf9{bottom:107.371755px;}
.yb1{bottom:107.403645px;}
.y1ce{bottom:107.440920px;}
.yba{bottom:110.556360px;}
.y34{bottom:113.357400px;}
.y197{bottom:116.163750px;}
.y200{bottom:116.330355px;}
.y249{bottom:116.336715px;}
.y290{bottom:116.339850px;}
.y196{bottom:120.840900px;}
.y136{bottom:125.275575px;}
.yd9{bottom:125.307630px;}
.y165{bottom:125.312820px;}
.yf8{bottom:125.320260px;}
.yb0{bottom:125.352165px;}
.y1cd{bottom:125.462940px;}
.y1ff{bottom:129.762675px;}
.y248{bottom:129.769035px;}
.y28f{bottom:130.120920px;}
.yb9{bottom:131.556090px;}
.y195{bottom:135.904230px;}
.y41{bottom:138.782160px;}
.y1fe{bottom:143.284995px;}
.y247{bottom:143.291355px;}
.y135{bottom:143.297580px;}
.yd8{bottom:143.329635px;}
.y164{bottom:143.334825px;}
.yf7{bottom:143.342280px;}
.yaf{bottom:143.374170px;}
.y1cc{bottom:143.411460px;}
.y28e{bottom:143.643240px;}
.yb8{bottom:144.995925px;}
.y40{bottom:152.304480px;}
.y33{bottom:153.562672px;}
.y1fd{bottom:156.807315px;}
.y246{bottom:156.813675px;}
.y194{bottom:156.903960px;}
.y28d{bottom:157.503060px;}
.y134{bottom:161.319600px;}
.yd7{bottom:161.351655px;}
.y163{bottom:161.356845px;}
.yf6{bottom:161.364300px;}
.yae{bottom:161.396190px;}
.y1cb{bottom:161.433465px;}
.y3f{bottom:165.826800px;}
.yb7{bottom:165.995655px;}
.y1fc{bottom:170.329635px;}
.y245{bottom:170.335995px;}
.y3e{bottom:170.844150px;}
.y28c{bottom:171.025380px;}
.y32{bottom:171.584692px;}
.y193{bottom:177.903705px;}
.y133{bottom:179.262900px;}
.yd6{bottom:179.300175px;}
.y162{bottom:179.305365px;}
.yf5{bottom:179.312820px;}
.yad{bottom:179.344710px;}
.y3d{bottom:179.350860px;}
.y1ca{bottom:179.455485px;}
.yb6{bottom:179.519490px;}
.y244{bottom:183.768315px;}
.y28b{bottom:184.885185px;}
.y31{bottom:189.533212px;}
.y3c{bottom:192.783180px;}
.y243{bottom:197.290635px;}
.yd5{bottom:197.322195px;}
.y161{bottom:197.327370px;}
.yf4{bottom:197.334825px;}
.yac{bottom:197.366730px;}
.y1c9{bottom:197.404005px;}
.y192{bottom:197.631450px;}
.y190{bottom:197.632740px;}
.y28a{bottom:198.317520px;}
.yb5{bottom:199.247250px;}
.y191{bottom:202.903800px;}
.y3b{bottom:206.305500px;}
.y30{bottom:207.555217px;}
.y242{bottom:210.812955px;}
.y1fb{bottom:210.896580px;}
.y3a{bottom:211.322850px;}
.y289{bottom:212.177325px;}
.y132{bottom:215.341965px;}
.yd4{bottom:215.344200px;}
.y160{bottom:215.349390px;}
.yf3{bottom:215.356845px;}
.yab{bottom:215.388735px;}
.y1c8{bottom:215.426025px;}
.y18e{bottom:217.360500px;}
.yb4{bottom:218.976900px;}
.y39{bottom:219.826785px;}
.y18f{bottom:222.633000px;}
.y241{bottom:224.335275px;}
.y1fa{bottom:224.418900px;}
.y2f{bottom:225.577237px;}
.y288{bottom:225.699645px;}
.y131{bottom:233.290485px;}
.yd3{bottom:233.292720px;}
.y15f{bottom:233.297910px;}
.yf2{bottom:233.305365px;}
.yaa{bottom:233.337255px;}
.y1c7{bottom:233.448030px;}
.yb3{bottom:235.473900px;}
.y18d{bottom:237.089700px;}
.y240{bottom:237.767595px;}
.y287{bottom:239.559465px;}
.y2e{bottom:243.525757px;}
.y23f{bottom:251.289915px;}
.y130{bottom:251.312490px;}
.yd2{bottom:251.314740px;}
.y15e{bottom:251.319930px;}
.yf1{bottom:251.327370px;}
.ya9{bottom:251.359275px;}
.y1c6{bottom:251.396550px;}
.y286{bottom:252.991785px;}
.y1f9{bottom:257.839365px;}
.y22{bottom:261.518362px;}
.y2d{bottom:261.547777px;}
.y23e{bottom:264.812235px;}
.y285{bottom:266.851605px;}
.y12f{bottom:269.334510px;}
.yd1{bottom:269.336745px;}
.y15d{bottom:269.341935px;}
.yf0{bottom:269.349390px;}
.y80{bottom:269.358975px;}
.ya8{bottom:269.381280px;}
.y1c5{bottom:269.418570px;}
.y23d{bottom:278.334555px;}
.y21{bottom:279.540382px;}
.y2c{bottom:279.569782px;}
.y284{bottom:280.373925px;}
.y12e{bottom:287.283030px;}
.yd0{bottom:287.285265px;}
.y15c{bottom:287.290455px;}
.yef{bottom:287.297910px;}
.y7f{bottom:287.307495px;}
.ya7{bottom:287.329800px;}
.y16c{bottom:287.350185px;}
.y1c4{bottom:287.440575px;}
.y23c{bottom:291.766875px;}
.y283{bottom:293.896245px;}
.y20{bottom:297.488902px;}
.y2b{bottom:297.518302px;}
.y1f8{bottom:299.603370px;}
.y23b{bottom:305.289195px;}
.y16b{bottom:305.298690px;}
.y16d{bottom:305.298705px;}
.y12d{bottom:305.305035px;}
.ycf{bottom:305.307285px;}
.y15b{bottom:305.312475px;}
.yee{bottom:305.319930px;}
.y7e{bottom:305.329500px;}
.ya6{bottom:305.351820px;}
.y1c3{bottom:305.389095px;}
.y282{bottom:307.756050px;}
.y1f{bottom:315.510922px;}
.y2a{bottom:315.540322px;}
.y1f7{bottom:317.551890px;}
.y23a{bottom:318.811515px;}
.y281{bottom:321.188370px;}
.y16a{bottom:323.320710px;}
.y12c{bottom:323.327055px;}
.yce{bottom:323.329305px;}
.y15a{bottom:323.334480px;}
.yed{bottom:323.341935px;}
.y7d{bottom:323.351520px;}
.ya5{bottom:323.373840px;}
.y1c2{bottom:323.411115px;}
.y239{bottom:332.333835px;}
.y1e{bottom:333.532927px;}
.y29{bottom:333.562327px;}
.y280{bottom:334.710690px;}
.y1f6{bottom:335.573910px;}
.y169{bottom:341.269230px;}
.y12b{bottom:341.275575px;}
.ycd{bottom:341.277810px;}
.y159{bottom:341.283000px;}
.yec{bottom:341.290455px;}
.y7c{bottom:341.300040px;}
.ya4{bottom:341.322345px;}
.y1c1{bottom:341.359635px;}
.y238{bottom:345.769965px;}
.y27f{bottom:348.570510px;}
.y1d{bottom:351.481447px;}
.y28{bottom:351.510847px;}
.y1f5{bottom:353.595930px;}
.y168{bottom:359.291250px;}
.y12a{bottom:359.297580px;}
.ycc{bottom:359.299830px;}
.y158{bottom:359.305020px;}
.yeb{bottom:359.312475px;}
.y7b{bottom:359.322045px;}
.ya3{bottom:359.344365px;}
.y1c0{bottom:359.381640px;}
.y27e{bottom:362.112225px;}
.y1c{bottom:369.503467px;}
.y27{bottom:369.532867px;}
.y1f4{bottom:371.544435px;}
.y27d{bottom:375.904545px;}
.y129{bottom:377.319600px;}
.ycb{bottom:377.321850px;}
.y157{bottom:377.327040px;}
.yea{bottom:377.334480px;}
.y7a{bottom:377.344065px;}
.ya2{bottom:377.366385px;}
.y1bf{bottom:377.403660px;}
.y1b{bottom:387.525472px;}
.y26{bottom:387.554887px;}
.y27c{bottom:389.426865px;}
.y237{bottom:389.478045px;}
.y1f3{bottom:389.566455px;}
.y128{bottom:395.262915px;}
.yca{bottom:395.270355px;}
.y156{bottom:395.275545px;}
.ye9{bottom:395.283000px;}
.y79{bottom:395.292585px;}
.ya1{bottom:395.314890px;}
.y1be{bottom:395.352180px;}
.y18c{bottom:397.814115px;}
.y18b{bottom:402.406215px;}
.y27b{bottom:403.286670px;}
.y1a{bottom:405.473992px;}
.y25{bottom:405.503392px;}
.y1f2{bottom:407.588475px;}
.yc9{bottom:413.292375px;}
.y155{bottom:413.297565px;}
.ye8{bottom:413.305020px;}
.y78{bottom:413.314605px;}
.ya0{bottom:413.336910px;}
.y1bd{bottom:413.374185px;}
.y234{bottom:416.521695px;}
.y236{bottom:416.522685px;}
.y27a{bottom:416.808990px;}
.y18a{bottom:417.594420px;}
.y235{bottom:421.540050px;}
.y19{bottom:423.496012px;}
.y24{bottom:423.525412px;}
.y1f1{bottom:425.536980px;}
.y233{bottom:430.044015px;}
.y231{bottom:430.046760px;}
.y279{bottom:430.331310px;}
.yc8{bottom:431.314395px;}
.y154{bottom:431.319585px;}
.y127{bottom:431.320710px;}
.ye7{bottom:431.327040px;}
.y77{bottom:431.336610px;}
.y9f{bottom:431.358930px;}
.y1bc{bottom:431.396205px;}
.y232{bottom:434.976285px;}
.y189{bottom:438.594165px;}
.y18{bottom:441.524212px;}
.y23{bottom:441.547432px;}
.y230{bottom:443.479080px;}
.y1f0{bottom:443.565330px;}
.y278{bottom:444.112380px;}
.yc7{bottom:449.262915px;}
.y126{bottom:449.269230px;}
.ye6{bottom:449.275545px;}
.y76{bottom:449.285130px;}
.y9e{bottom:449.307450px;}
.y1bb{bottom:449.344725px;}
.y22d{bottom:457.000365px;}
.y22f{bottom:457.001400px;}
.y277{bottom:457.634700px;}
.y188{bottom:459.593895px;}
.y22e{bottom:462.018765px;}
.yc6{bottom:467.291250px;}
.ye5{bottom:467.297565px;}
.y75{bottom:467.307150px;}
.y9d{bottom:467.329455px;}
.y1ba{bottom:467.366745px;}
.y22a{bottom:470.521695px;}
.y22c{bottom:470.522685px;}
.y276{bottom:471.494520px;}
.y22b{bottom:475.540050px;}
.y187{bottom:480.593625px;}
.y229{bottom:484.044015px;}
.y227{bottom:484.046760px;}
.y275{bottom:485.016840px;}
.ye4{bottom:485.319585px;}
.y74{bottom:485.329155px;}
.y9c{bottom:485.351475px;}
.y1ef{bottom:485.351490px;}
.y153{bottom:485.357835px;}
.y1b9{bottom:485.388750px;}
.y17{bottom:487.192282px;}
.y228{bottom:488.976285px;}
.y226{bottom:497.479080px;}
.y274{bottom:498.876645px;}
.y186{bottom:501.593370px;}
.ye3{bottom:503.262915px;}
.y73{bottom:503.277675px;}
.yc5{bottom:503.290455px;}
.y9b{bottom:503.299995px;}
.y1ee{bottom:503.300010px;}
.y152{bottom:503.306355px;}
.y1b8{bottom:503.337270px;}
.y223{bottom:510.999375px;}
.y225{bottom:511.001400px;}
.y273{bottom:512.308965px;}
.y16{bottom:512.707537px;}
.y224{bottom:516.018765px;}
.y72{bottom:521.299695px;}
.yc4{bottom:521.312475px;}
.y9a{bottom:521.322000px;}
.y1ed{bottom:521.322015px;}
.y151{bottom:521.328375px;}
.y125{bottom:521.342190px;}
.y1b7{bottom:521.359290px;}
.y185{bottom:522.593100px;}
.y222{bottom:524.521695px;}
.y272{bottom:526.168785px;}
.y15{bottom:530.647717px;}
.y221{bottom:538.044015px;}
.y71{bottom:539.321715px;}
.yc3{bottom:539.334480px;}
.y99{bottom:539.344020px;}
.y1ec{bottom:539.344035px;}
.y150{bottom:539.350380px;}
.y124{bottom:539.364210px;}
.ye2{bottom:539.372985px;}
.y1b6{bottom:539.381295px;}
.y271{bottom:539.691105px;}
.y220{bottom:542.976285px;}
.y184{bottom:543.592845px;}
.y21f{bottom:551.464290px;}
.y14{bottom:553.177942px;}
.y270{bottom:553.213425px;}
.y70{bottom:557.270220px;}
.yc2{bottom:557.283000px;}
.y98{bottom:557.292540px;}
.y1eb{bottom:557.292555px;}
.y14f{bottom:557.298900px;}
.y123{bottom:557.312715px;}
.ye1{bottom:557.321505px;}
.y1b5{bottom:557.329815px;}
.y183{bottom:564.592575px;}
.y26f{bottom:566.994495px;}
.y13{bottom:571.208122px;}
.y6f{bottom:575.292240px;}
.yc1{bottom:575.305020px;}
.y97{bottom:575.314560px;}
.y1ea{bottom:575.314575px;}
.y14e{bottom:575.320920px;}
.y122{bottom:575.334735px;}
.ye0{bottom:575.343525px;}
.y1b4{bottom:575.351835px;}
.y21e{bottom:578.508930px;}
.y26e{bottom:580.516815px;}
.y182{bottom:585.592320px;}
.y12{bottom:589.148302px;}
.y21d{bottom:592.031250px;}
.y6e{bottom:593.314260px;}
.yc0{bottom:593.327040px;}
.y96{bottom:593.336565px;}
.y1e9{bottom:593.336580px;}
.y14d{bottom:593.342940px;}
.y121{bottom:593.356755px;}
.ydf{bottom:593.365530px;}
.y1b3{bottom:593.373855px;}
.y26d{bottom:594.039135px;}
.y181{bottom:606.592050px;}
.y11{bottom:607.178482px;}
.y26c{bottom:607.898940px;}
.y6d{bottom:611.262765px;}
.ybf{bottom:611.275545px;}
.y95{bottom:611.285085px;}
.y1e8{bottom:611.285100px;}
.y14c{bottom:611.291445px;}
.y120{bottom:611.305275px;}
.yde{bottom:611.314050px;}
.y1b2{bottom:611.322360px;}
.y26b{bottom:621.331260px;}
.y21c{bottom:622.225845px;}
.y10{bottom:625.208662px;}
.y180{bottom:627.591795px;}
.y6c{bottom:629.291250px;}
.ybe{bottom:629.297565px;}
.y94{bottom:629.307105px;}
.y1e7{bottom:629.307120px;}
.y14b{bottom:629.313465px;}
.y11f{bottom:629.327280px;}
.ydd{bottom:629.336070px;}
.y1b1{bottom:629.344380px;}
.y26a{bottom:635.191080px;}
.y21b{bottom:635.748165px;}
.yf{bottom:643.148842px;}
.ybd{bottom:647.319585px;}
.y93{bottom:647.329110px;}
.y1e6{bottom:647.329125px;}
.y14a{bottom:647.335485px;}
.y11e{bottom:647.349300px;}
.ydc{bottom:647.358075px;}
.y1b0{bottom:647.366400px;}
.y17f{bottom:648.591525px;}
.y269{bottom:648.713400px;}
.y268{bottom:662.235720px;}
.y92{bottom:665.277630px;}
.y1e5{bottom:665.277645px;}
.y149{bottom:665.283990px;}
.y11d{bottom:665.297820px;}
.y6b{bottom:665.314890px;}
.y1af{bottom:665.314905px;}
.ye{bottom:665.679067px;}
.y21a{bottom:665.942760px;}
.y17e{bottom:669.591270px;}
.y267{bottom:676.095540px;}
.y219{bottom:679.465080px;}
.y91{bottom:683.299650px;}
.y1e4{bottom:683.299665px;}
.y148{bottom:683.306010px;}
.y11c{bottom:683.319825px;}
.y6a{bottom:683.336910px;}
.y1ae{bottom:683.336925px;}
.yd{bottom:683.709247px;}
.y110{bottom:687.723045px;}
.y266{bottom:689.527860px;}
.y17d{bottom:690.591000px;}
.y218{bottom:692.987400px;}
.y10f{bottom:701.246880px;}
.y90{bottom:701.321655px;}
.y1e3{bottom:701.321670px;}
.y147{bottom:701.328030px;}
.y11b{bottom:701.341845px;}
.y69{bottom:701.358930px;}
.y1ad{bottom:701.358945px;}
.yc{bottom:701.649427px;}
.y265{bottom:703.050180px;}
.y217{bottom:706.419720px;}
.y17c{bottom:711.590745px;}
.y264{bottom:716.572500px;}
.y8f{bottom:719.270175px;}
.y1e2{bottom:719.270190px;}
.y146{bottom:719.276550px;}
.y11a{bottom:719.290365px;}
.y68{bottom:719.307450px;}
.y1ac{bottom:719.307465px;}
.yb{bottom:719.679607px;}
.y10e{bottom:722.246610px;}
.y263{bottom:730.432305px;}
.y17b{bottom:732.590475px;}
.y216{bottom:736.693065px;}
.y65{bottom:737.292195px;}
.y1e1{bottom:737.292210px;}
.y145{bottom:737.298555px;}
.y119{bottom:737.312385px;}
.y55{bottom:737.329455px;}
.y1ab{bottom:737.329470px;}
.ya{bottom:737.709787px;}
.y10d{bottom:743.246355px;}
.y262{bottom:743.864625px;}
.y215{bottom:750.125385px;}
.y2a1{bottom:750.811365px;}
.y17a{bottom:753.590220px;}
.y64{bottom:755.314215px;}
.y144{bottom:755.320575px;}
.y118{bottom:755.334390px;}
.y54{bottom:755.351475px;}
.y1aa{bottom:755.351490px;}
.y1e0{bottom:755.425080px;}
.y10c{bottom:756.770175px;}
.y261{bottom:757.386945px;}
.y9{bottom:760.165012px;}
.y214{bottom:763.647705px;}
.y2a0{bottom:764.333685px;}
.y10b{bottom:770.210010px;}
.y260{bottom:770.909265px;}
.y63{bottom:773.262720px;}
.y143{bottom:773.269095px;}
.y117{bottom:773.282910px;}
.y53{bottom:773.299995px;}
.y1a9{bottom:773.300010px;}
.y1df{bottom:773.373600px;}
.y179{bottom:774.589950px;}
.y29f{bottom:777.769770px;}
.y8{bottom:778.195192px;}
.y25f{bottom:784.769085px;}
.y10a{bottom:791.209740px;}
.y62{bottom:791.291100px;}
.y8e{bottom:791.296500px;}
.y116{bottom:791.304930px;}
.y52{bottom:791.322000px;}
.y1a8{bottom:791.322015px;}
.y1de{bottom:791.439720px;}
.y213{bottom:793.842300px;}
.y178{bottom:795.505695px;}
.y25e{bottom:798.291405px;}
.y7{bottom:805.152532px;}
.y212{bottom:807.364620px;}
.y8d{bottom:809.319495px;}
.y115{bottom:809.326935px;}
.y51{bottom:809.344020px;}
.y1a7{bottom:809.344035px;}
.y1dd{bottom:809.461725px;}
.y25d{bottom:811.723725px;}
.y109{bottom:812.209485px;}
.y29e{bottom:813.833280px;}
.y177{bottom:816.505425px;}
.y211{bottom:820.886940px;}
.y25c{bottom:825.583545px;}
.y108{bottom:825.733320px;}
.y29d{bottom:827.265600px;}
.y61{bottom:827.275455px;}
.y50{bottom:827.292540px;}
.y1a6{bottom:827.292555px;}
.y1dc{bottom:827.410245px;}
.y176{bottom:837.505170px;}
.y25b{bottom:839.105865px;}
.y107{bottom:839.257140px;}
.y29c{bottom:840.787920px;}
.y142{bottom:845.292195px;}
.y60{bottom:845.297475px;}
.y4f{bottom:845.314560px;}
.y1a5{bottom:845.314575px;}
.y8c{bottom:845.357925px;}
.y1db{bottom:845.432265px;}
.y210{bottom:851.081535px;}
.y25a{bottom:852.965670px;}
.y29b{bottom:854.310240px;}
.y175{bottom:858.504900px;}
.y106{bottom:860.256885px;}
.y5{bottom:862.894207px;}
.y141{bottom:863.314215px;}
.y5f{bottom:863.319495px;}
.y4e{bottom:863.336565px;}
.y1a4{bottom:863.336580px;}
.y8b{bottom:863.379945px;}
.y1da{bottom:863.454270px;}
.y20f{bottom:864.603855px;}
.y259{bottom:866.397990px;}
.y29a{bottom:867.832560px;}
.y6{bottom:870.292672px;}
.y105{bottom:873.696720px;}
.y20e{bottom:878.126175px;}
.y174{bottom:879.504645px;}
.y258{bottom:880.257810px;}
.y5e{bottom:881.262720px;}
.y299{bottom:881.264880px;}
.y4d{bottom:881.285085px;}
.y1a3{bottom:881.285100px;}
.y8a{bottom:881.328465px;}
.y1d9{bottom:881.402790px;}
.y104{bottom:887.220540px;}
.y20d{bottom:891.558495px;}
.y257{bottom:893.780130px;}
.y298{bottom:894.787200px;}
.y4{bottom:898.955692px;}
.y5d{bottom:899.291100px;}
.y140{bottom:899.296500px;}
.y4c{bottom:899.307105px;}
.y1a2{bottom:899.307120px;}
.y89{bottom:899.350470px;}
.y1d8{bottom:899.424810px;}
.y173{bottom:900.504375px;}
.y103{bottom:900.744375px;}
.y20c{bottom:905.080815px;}
.y256{bottom:907.302450px;}
.y297{bottom:908.309520px;}
.y102{bottom:914.268210px;}
.y114{bottom:917.314215px;}
.y13f{bottom:917.319495px;}
.y4b{bottom:917.329110px;}
.y1a1{bottom:917.329125px;}
.y88{bottom:917.372490px;}
.y1d7{bottom:917.446830px;}
.y20b{bottom:918.603135px;}
.y255{bottom:920.734770px;}
.y172{bottom:921.504120px;}
.y296{bottom:921.831840px;}
.y101{bottom:927.708030px;}
.y20a{bottom:932.125455px;}
.y254{bottom:934.594590px;}
.y113{bottom:935.262720px;}
.y295{bottom:935.264160px;}
.y4a{bottom:935.277630px;}
.y1a0{bottom:935.277645px;}
.y5c{bottom:935.307030px;}
.y87{bottom:935.321010px;}
.y1d6{bottom:935.395335px;}
.y3{bottom:937.907857px;}
.y112{bottom:941.810670px;}
.y171{bottom:942.503850px;}
.y209{bottom:945.557775px;}
.y253{bottom:948.116910px;}
.y100{bottom:948.707775px;}
.y294{bottom:948.786480px;}
.y49{bottom:953.299650px;}
.y19f{bottom:953.299665px;}
.y13e{bottom:953.303490px;}
.y5b{bottom:953.329050px;}
.y86{bottom:953.343030px;}
.y1d5{bottom:953.417355px;}
.y252{bottom:961.639230px;}
.y293{bottom:962.308800px;}
.y170{bottom:963.503580px;}
.yff{bottom:969.707505px;}
.y48{bottom:971.321655px;}
.y19e{bottom:971.321670px;}
.y13d{bottom:971.325495px;}
.y5a{bottom:971.351055px;}
.y85{bottom:971.365035px;}
.y1d4{bottom:971.439375px;}
.y251{bottom:975.499035px;}
.y208{bottom:975.831120px;}
.y2{bottom:976.932007px;}
.yfe{bottom:983.231340px;}
.y16f{bottom:984.503325px;}
.y250{bottom:988.931355px;}
.y207{bottom:989.263440px;}
.y47{bottom:989.270175px;}
.y19d{bottom:989.270190px;}
.y13c{bottom:989.274015px;}
.y59{bottom:989.299575px;}
.y84{bottom:989.313555px;}
.y1d3{bottom:989.387880px;}
.y24f{bottom:1002.453675px;}
.y206{bottom:1002.785760px;}
.yfd{bottom:1004.231085px;}
.y46{bottom:1007.292195px;}
.y19c{bottom:1007.292210px;}
.y13b{bottom:1007.296035px;}
.y58{bottom:1007.321595px;}
.y83{bottom:1007.335575px;}
.y1d2{bottom:1007.409900px;}
.y205{bottom:1016.308080px;}
.y24e{bottom:1016.313495px;}
.yfc{bottom:1023.958830px;}
.y45{bottom:1025.314215px;}
.y19b{bottom:1025.314230px;}
.y13a{bottom:1025.318055px;}
.y57{bottom:1025.343615px;}
.y82{bottom:1025.357580px;}
.y1d1{bottom:1025.431920px;}
.y204{bottom:1029.830400px;}
.y24d{bottom:1029.835815px;}
.y1{bottom:1033.908330px;}
.y44{bottom:1043.262720px;}
.y19a{bottom:1043.262735px;}
.y139{bottom:1043.266560px;}
.y24c{bottom:1043.268135px;}
.y56{bottom:1043.292120px;}
.y81{bottom:1043.306100px;}
.y1d0{bottom:1043.380440px;}
.yfb{bottom:1043.687985px;}
.y16e{bottom:1049.640570px;}
.y43{bottom:1112.827995px;}
.ybc{bottom:1127.783655px;}
.y67{bottom:1127.788680px;}
.y2a2{bottom:1127.791811px;}
.y42{bottom:1127.791815px;}
.y203{bottom:1127.791830px;}
.y111{bottom:1127.793540px;}
.h14{height:20.185549px;}
.hb{height:21.626539px;}
.h15{height:23.068395px;}
.h13{height:25.952539px;}
.h11{height:26.636128px;}
.h12{height:28.376746px;}
.h9{height:30.281567px;}
.h5{height:31.721260px;}
.ha{height:32.444567px;}
.hd{height:34.607567px;}
.h10{height:34.943563px;}
.hf{height:38.934000px;}
.he{height:39.799633px;}
.hc{height:42.287471px;}
.h8{height:42.570766px;}
.h7{height:43.260433px;}
.h6{height:44.557800px;}
.h4{height:47.586433px;}
.h2{height:56.238000px;}
.h3{height:103.824433px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039410px;}
.x13{left:89.036250px;}
.x1{left:91.077180px;}
.x17{left:92.097600px;}
.x10{left:94.818960px;}
.x14{left:97.029900px;}
.x28{left:107.578980px;}
.x25{left:115.993650px;}
.x1a{left:118.885050px;}
.x26{left:119.990550px;}
.x3{left:153.411060px;}
.x4{left:174.245760px;}
.x15{left:183.090120px;}
.x1b{left:192.954300px;}
.x5{left:216.765345px;}
.x27{left:221.187450px;}
.x6{left:222.377925px;}
.x12{left:270.510150px;}
.x24{left:297.807750px;}
.x7{left:301.889760px;}
.x1c{left:310.480830px;}
.x8{left:319.662960px;}
.x23{left:326.380950px;}
.x19{left:329.782650px;}
.x22{left:332.844000px;}
.x16{left:342.112140px;}
.x20{left:347.130585px;}
.x21{left:351.127515px;}
.x9{left:395.007810px;}
.xa{left:408.188895px;}
.x11{left:457.092630px;}
.xb{left:463.379445px;}
.x1f{left:464.995200px;}
.xc{left:468.991995px;}
.x29{left:479.626995px;}
.x18{left:544.081785px;}
.xd{left:546.462945px;}
.xe{left:564.406275px;}
.xf{left:643.322775px;}
.x1d{left:736.610865px;}
.x1e{left:740.947950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-1.178678pt;}
.ls12{letter-spacing:-1.157345pt;}
.lsd{letter-spacing:-1.146673pt;}
.lsb{letter-spacing:-1.136011pt;}
.ls9{letter-spacing:-1.130678pt;}
.ls11{letter-spacing:-1.125345pt;}
.lsa{letter-spacing:-1.120011pt;}
.lsc{letter-spacing:-1.114672pt;}
.ls8{letter-spacing:-1.109344pt;}
.lsf{letter-spacing:-1.104011pt;}
.ls10{letter-spacing:-1.056011pt;}
.ls31{letter-spacing:-1.008736pt;}
.ls14{letter-spacing:-0.993057pt;}
.ls53{letter-spacing:-0.982603pt;}
.ls51{letter-spacing:-0.977377pt;}
.ls35{letter-spacing:-0.966923pt;}
.ls2e{letter-spacing:-0.961697pt;}
.ls13{letter-spacing:-0.956470pt;}
.ls15{letter-spacing:-0.951244pt;}
.ls32{letter-spacing:-0.935564pt;}
.ls2d{letter-spacing:-0.930337pt;}
.ls52{letter-spacing:-0.925111pt;}
.ls34{letter-spacing:-0.919884pt;}
.ls2f{letter-spacing:-0.904204pt;}
.ls16{letter-spacing:-0.804898pt;}
.ls33{letter-spacing:-0.778765pt;}
.ls30{letter-spacing:-0.736952pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.000034pt;}
.ls58{letter-spacing:0.000036pt;}
.ls73{letter-spacing:0.039972pt;}
.ls77{letter-spacing:0.040028pt;}
.ls2a{letter-spacing:0.042617pt;}
.ls28{letter-spacing:0.042670pt;}
.ls7c{letter-spacing:0.079944pt;}
.ls7b{letter-spacing:0.080000pt;}
.ls57{letter-spacing:0.085312pt;}
.ls62{letter-spacing:0.104492pt;}
.ls5{letter-spacing:0.104545pt;}
.ls7d{letter-spacing:0.120028pt;}
.ls4{letter-spacing:0.156800pt;}
.ls29{letter-spacing:0.170649pt;}
.ls2b{letter-spacing:0.170702pt;}
.ls20{letter-spacing:0.192000pt;}
.ls23{letter-spacing:0.313581pt;}
.ls4e{letter-spacing:0.313598pt;}
.ls1c{letter-spacing:0.313634pt;}
.ls4f{letter-spacing:0.475622pt;}
.ls6d{letter-spacing:0.475994pt;}
.ls82{letter-spacing:0.483994pt;}
.ls6b{letter-spacing:0.501754pt;}
.ls70{letter-spacing:0.503993pt;}
.ls6e{letter-spacing:0.507993pt;}
.ls3b{letter-spacing:0.517435pt;}
.ls69{letter-spacing:0.522661pt;}
.ls71{letter-spacing:0.527993pt;}
.ls3d{letter-spacing:0.538341pt;}
.ls42{letter-spacing:0.543568pt;}
.ls3e{letter-spacing:0.548794pt;}
.ls36{letter-spacing:0.559248pt;}
.ls6a{letter-spacing:0.564474pt;}
.ls41{letter-spacing:0.569701pt;}
.ls76{letter-spacing:0.571992pt;}
.ls67{letter-spacing:0.574927pt;}
.ls37{letter-spacing:0.574932pt;}
.ls65{letter-spacing:0.580154pt;}
.ls38{letter-spacing:0.585381pt;}
.ls68{letter-spacing:0.590607pt;}
.ls3c{letter-spacing:0.595834pt;}
.ls6f{letter-spacing:0.599982pt;}
.ls74{letter-spacing:0.599992pt;}
.ls66{letter-spacing:0.611514pt;}
.ls3f{letter-spacing:0.627194pt;}
.ls3a{letter-spacing:0.648100pt;}
.ls75{letter-spacing:0.679972pt;}
.ls7a{letter-spacing:0.891988pt;}
.ls7f{letter-spacing:0.967987pt;}
.ls80{letter-spacing:0.995983pt;}
.ls79{letter-spacing:0.999973pt;}
.ls78{letter-spacing:1.035986pt;}
.ls7e{letter-spacing:1.043986pt;}
.ls81{letter-spacing:1.151985pt;}
.ls55{letter-spacing:8.405229pt;}
.ls2{letter-spacing:9.173423pt;}
.ls4d{letter-spacing:9.355606pt;}
.ls4b{letter-spacing:9.355660pt;}
.ls54{letter-spacing:9.439264pt;}
.ls4c{letter-spacing:9.616940pt;}
.ls44{letter-spacing:10.244140pt;}
.ls47{letter-spacing:10.453201pt;}
.ls72{letter-spacing:11.999802pt;}
.ls5b{letter-spacing:12.543870pt;}
.ls56{letter-spacing:12.629188pt;}
.ls59{letter-spacing:12.671835pt;}
.ls5a{letter-spacing:12.714459pt;}
.ls5d{letter-spacing:12.795573pt;}
.ls5c{letter-spacing:12.885207pt;}
.ls2c{letter-spacing:12.970491pt;}
.ls3{letter-spacing:13.546791pt;}
.ls1{letter-spacing:13.546793pt;}
.ls4a{letter-spacing:15.104958pt;}
.ls21{letter-spacing:16.118876pt;}
.ls1a{letter-spacing:16.150250pt;}
.ls22{letter-spacing:16.411583pt;}
.ls83{letter-spacing:16.458027pt;}
.ls46{letter-spacing:16.725165pt;}
.ls0{letter-spacing:17.606027pt;}
.ls50{letter-spacing:18.319280pt;}
.ls27{letter-spacing:18.554463pt;}
.ls39{letter-spacing:19.652052pt;}
.ls1d{letter-spacing:20.906434pt;}
.ls1e{letter-spacing:21.167767pt;}
.ls63{letter-spacing:21.167785pt;}
.ls64{letter-spacing:21.272330pt;}
.ls1f{letter-spacing:21.429118pt;}
.ls17{letter-spacing:21.742718pt;}
.ls61{letter-spacing:22.160863pt;}
.ls18{letter-spacing:22.683501pt;}
.ls19{letter-spacing:22.788010pt;}
.ls6{letter-spacing:24.565076pt;}
.ls40{letter-spacing:25.505876pt;}
.ls43{letter-spacing:26.289865pt;}
.ls25{letter-spacing:28.850872pt;}
.ls26{letter-spacing:28.903174pt;}
.ls5f{letter-spacing:29.634914pt;}
.ls5e{letter-spacing:29.739423pt;}
.ls6c{letter-spacing:30.413663pt;}
.ls48{letter-spacing:31.882392pt;}
.ls49{letter-spacing:31.934588pt;}
.ls60{letter-spacing:32.666327pt;}
.ls45{letter-spacing:37.161225pt;}
.ls24{letter-spacing:51.168596pt;}
.ws1ac{word-spacing:-30.465929pt;}
.ws14c{word-spacing:-18.371546pt;}
.ws5{word-spacing:-17.664694pt;}
.ws1e3{word-spacing:-16.512960pt;}
.ws9d{word-spacing:-16.171142pt;}
.ws16e{word-spacing:-12.838240pt;}
.ws15e{word-spacing:-9.491530pt;}
.ws1de{word-spacing:-0.931988pt;}
.ws1d6{word-spacing:-0.639991pt;}
.ws1d7{word-spacing:-0.611992pt;}
.ws11e{word-spacing:-0.527888pt;}
.ws1ce{word-spacing:-0.515993pt;}
.ws23{word-spacing:-0.054933pt;}
.ws13{word-spacing:-0.053334pt;}
.ws2a{word-spacing:-0.052266pt;}
.ws142{word-spacing:-0.049067pt;}
.ws57{word-spacing:-0.042666pt;}
.ws4c{word-spacing:-0.039999pt;}
.ws47{word-spacing:-0.037333pt;}
.ws58{word-spacing:0.000000pt;}
.wsff{word-spacing:0.684686pt;}
.ws12{word-spacing:1.077344pt;}
.ws1b{word-spacing:1.125345pt;}
.ws16d{word-spacing:8.234564pt;}
.ws148{word-spacing:9.564702pt;}
.ws1ba{word-spacing:9.690142pt;}
.ws13a{word-spacing:10.296428pt;}
.ws12f{word-spacing:10.348694pt;}
.ws4b{word-spacing:10.559859pt;}
.ws48{word-spacing:10.938510pt;}
.ws43{word-spacing:11.050509pt;}
.ws17e{word-spacing:11.087826pt;}
.ws179{word-spacing:11.087842pt;}
.ws178{word-spacing:11.087851pt;}
.ws49{word-spacing:11.125174pt;}
.ws17f{word-spacing:11.162475pt;}
.ws172{word-spacing:11.162507pt;}
.ws4a{word-spacing:11.199840pt;}
.ws15a{word-spacing:11.231992pt;}
.ws177{word-spacing:11.237142pt;}
.ws46{word-spacing:11.274506pt;}
.ws17d{word-spacing:11.274508pt;}
.ws17c{word-spacing:11.349131pt;}
.ws17a{word-spacing:11.349168pt;}
.ws171{word-spacing:11.386497pt;}
.ws45{word-spacing:11.386504pt;}
.ws17b{word-spacing:11.461162pt;}
.ws44{word-spacing:11.461170pt;}
.ws1d4{word-spacing:11.679844pt;}
.ws14{word-spacing:11.680117pt;}
.ws1e1{word-spacing:11.719844pt;}
.ws1d3{word-spacing:11.759843pt;}
.ws50{word-spacing:11.799843pt;}
.ws54{word-spacing:11.839842pt;}
.ws52{word-spacing:11.879842pt;}
.ws1d2{word-spacing:11.919841pt;}
.ws1c6{word-spacing:11.959841pt;}
.ws53{word-spacing:11.999840pt;}
.ws4f{word-spacing:12.039839pt;}
.ws51{word-spacing:12.079839pt;}
.ws1c7{word-spacing:12.119838pt;}
.ws4d{word-spacing:12.159838pt;}
.wsce{word-spacing:12.159848pt;}
.ws1ca{word-spacing:12.199837pt;}
.ws1c8{word-spacing:12.239803pt;}
.ws4e{word-spacing:12.239837pt;}
.ws1c9{word-spacing:12.279836pt;}
.ws55{word-spacing:12.287834pt;}
.ws10c{word-spacing:12.287844pt;}
.wscf{word-spacing:12.287846pt;}
.ws7e{word-spacing:12.287887pt;}
.ws1d1{word-spacing:12.319836pt;}
.ws170{word-spacing:12.330513pt;}
.ws113{word-spacing:12.373179pt;}
.wscd{word-spacing:12.415845pt;}
.ws114{word-spacing:12.415852pt;}
.ws10f{word-spacing:12.458503pt;}
.ws10b{word-spacing:12.458511pt;}
.ws108{word-spacing:12.501170pt;}
.ws56{word-spacing:12.501177pt;}
.ws109{word-spacing:12.543836pt;}
.ws10d{word-spacing:12.543839pt;}
.ws112{word-spacing:12.543843pt;}
.wscc{word-spacing:12.586509pt;}
.ws110{word-spacing:12.629151pt;}
.ws7d{word-spacing:12.629175pt;}
.ws7f{word-spacing:12.671842pt;}
.ws115{word-spacing:12.714508pt;}
.ws111{word-spacing:12.757174pt;}
.ws10a{word-spacing:12.757188pt;}
.ws10e{word-spacing:12.799840pt;}
.ws16f{word-spacing:12.842506pt;}
.ws8e{word-spacing:12.909735pt;}
.ws78{word-spacing:13.066540pt;}
.ws65{word-spacing:13.171066pt;}
.ws94{word-spacing:13.223332pt;}
.ws8b{word-spacing:13.327864pt;}
.ws199{word-spacing:13.589195pt;}
.ws14b{word-spacing:13.641461pt;}
.ws74{word-spacing:13.693727pt;}
.ws1a6{word-spacing:13.745993pt;}
.ws5b{word-spacing:13.798259pt;}
.ws90{word-spacing:13.850525pt;}
.ws198{word-spacing:14.111856pt;}
.wscb{word-spacing:14.208000pt;}
.wsca{word-spacing:14.256000pt;}
.wsc9{word-spacing:14.304000pt;}
.ws19c{word-spacing:14.373187pt;}
.ws16c{word-spacing:14.400000pt;}
.ws19b{word-spacing:14.425453pt;}
.ws79{word-spacing:14.523891pt;}
.ws75{word-spacing:14.572958pt;}
.ws1dd{word-spacing:14.607805pt;}
.ws145{word-spacing:14.622026pt;}
.ws11c{word-spacing:14.671104pt;}
.ws93{word-spacing:14.686783pt;}
.wsb4{word-spacing:14.720160pt;}
.ws87{word-spacing:14.739050pt;}
.ws95{word-spacing:14.769227pt;}
.wsb3{word-spacing:14.818294pt;}
.ws1d9{word-spacing:14.843802pt;}
.ws2f{word-spacing:14.906301pt;}
.wsdb{word-spacing:14.916429pt;}
.ws1db{word-spacing:14.923805pt;}
.ws15d{word-spacing:14.989927pt;}
.ws15c{word-spacing:15.031740pt;}
.ws120{word-spacing:15.084006pt;}
.ws1d8{word-spacing:15.115798pt;}
.ws1dc{word-spacing:15.163798pt;}
.ws73{word-spacing:15.209445pt;}
.ws17{word-spacing:15.248147pt;}
.ws143{word-spacing:15.308966pt;}
.ws1da{word-spacing:15.311796pt;}
.ws14a{word-spacing:15.313977pt;}
.ws11{word-spacing:15.317487pt;}
.ws15{word-spacing:15.349487pt;}
.ws1a{word-spacing:15.354815pt;}
.ws18{word-spacing:15.386815pt;}
.ws1d5{word-spacing:15.387795pt;}
.ws1d0{word-spacing:15.391795pt;}
.ws22{word-spacing:15.402821pt;}
.ws1cf{word-spacing:15.415794pt;}
.wsc8{word-spacing:15.418509pt;}
.ws20{word-spacing:15.418821pt;}
.ws1cb{word-spacing:15.431794pt;}
.ws21{word-spacing:15.466859pt;}
.ws19{word-spacing:15.477488pt;}
.ws1cc{word-spacing:15.483794pt;}
.ws42{word-spacing:15.523042pt;}
.ws1d{word-spacing:15.552143pt;}
.ws10{word-spacing:15.562822pt;}
.wsfc{word-spacing:15.564855pt;}
.ws1cd{word-spacing:15.571792pt;}
.ws60{word-spacing:15.575308pt;}
.ws1df{word-spacing:15.595792pt;}
.ws1c{word-spacing:15.610823pt;}
.ws5f{word-spacing:15.627574pt;}
.ws197{word-spacing:15.679840pt;}
.ws1f{word-spacing:15.685490pt;}
.ws16{word-spacing:15.696157pt;}
.ws1e{word-spacing:15.706818pt;}
.ws1c4{word-spacing:15.732106pt;}
.ws83{word-spacing:15.784372pt;}
.wsaa{word-spacing:15.836617pt;}
.wsb2{word-spacing:15.836638pt;}
.wse{word-spacing:15.840158pt;}
.ws70{word-spacing:15.888905pt;}
.ws144{word-spacing:15.941198pt;}
.wsb{word-spacing:16.000160pt;}
.ws9a{word-spacing:16.045703pt;}
.wsd{word-spacing:16.053494pt;}
.wsdd{word-spacing:16.097969pt;}
.wsa{word-spacing:16.106828pt;}
.ws140{word-spacing:16.150235pt;}
.wsc{word-spacing:16.160151pt;}
.ws38{word-spacing:16.202501pt;}
.ws9c{word-spacing:16.202513pt;}
.ws15b{word-spacing:16.265221pt;}
.wsf{word-spacing:16.266833pt;}
.wse5{word-spacing:16.307034pt;}
.ws196{word-spacing:16.359300pt;}
.wsd4{word-spacing:16.411590pt;}
.ws1c5{word-spacing:16.425067pt;}
.wsac{word-spacing:16.463832pt;}
.ws30{word-spacing:16.516098pt;}
.ws9{word-spacing:16.533529pt;}
.ws1e0{word-spacing:16.559779pt;}
.wsd6{word-spacing:16.568364pt;}
.ws9b{word-spacing:16.620630pt;}
.wsd5{word-spacing:16.672891pt;}
.ws124{word-spacing:16.725163pt;}
.ws76{word-spacing:16.777429pt;}
.ws139{word-spacing:16.829695pt;}
.ws19d{word-spacing:16.934227pt;}
.wsc5{word-spacing:16.986493pt;}
.ws184{word-spacing:17.038759pt;}
.ws157{word-spacing:17.049213pt;}
.ws156{word-spacing:17.075346pt;}
.ws59{word-spacing:17.091026pt;}
.wsd3{word-spacing:17.195558pt;}
.wsaf{word-spacing:17.247824pt;}
.wsc6{word-spacing:17.352356pt;}
.ws2b{word-spacing:17.404622pt;}
.ws158{word-spacing:17.415074pt;}
.ws8{word-spacing:17.424158pt;}
.ws167{word-spacing:17.456889pt;}
.ws7{word-spacing:17.482826pt;}
.ws15f{word-spacing:17.509155pt;}
.ws6{word-spacing:17.541493pt;}
.ws159{word-spacing:17.561421pt;}
.ws4{word-spacing:17.600160pt;}
.wsc2{word-spacing:17.613687pt;}
.ws11b{word-spacing:17.629367pt;}
.wsbd{word-spacing:17.665953pt;}
.ws92{word-spacing:17.718219pt;}
.wsfa{word-spacing:17.822751pt;}
.ws27{word-spacing:17.875018pt;}
.ws1c0{word-spacing:17.927284pt;}
.ws18d{word-spacing:17.979550pt;}
.wsdf{word-spacing:18.031816pt;}
.ws136{word-spacing:18.136348pt;}
.ws116{word-spacing:18.167692pt;}
.ws28{word-spacing:18.188614pt;}
.ws118{word-spacing:18.219974pt;}
.ws3a{word-spacing:18.240881pt;}
.ws3c{word-spacing:18.293147pt;}
.ws117{word-spacing:18.334960pt;}
.wsd8{word-spacing:18.345413pt;}
.wsc1{word-spacing:18.397679pt;}
.wsf9{word-spacing:18.502211pt;}
.ws126{word-spacing:18.554477pt;}
.ws25{word-spacing:18.606743pt;}
.wsf5{word-spacing:18.659010pt;}
.wsbc{word-spacing:18.763542pt;}
.ws104{word-spacing:18.794902pt;}
.ws103{word-spacing:18.810581pt;}
.ws6a{word-spacing:18.815808pt;}
.wsa9{word-spacing:18.868074pt;}
.ws11a{word-spacing:18.899434pt;}
.ws125{word-spacing:18.920340pt;}
.ws1c2{word-spacing:18.972606pt;}
.wse7{word-spacing:19.077139pt;}
.ws26{word-spacing:19.129405pt;}
.ws180{word-spacing:19.233937pt;}
.ws121{word-spacing:19.286203pt;}
.wse6{word-spacing:19.338469pt;}
.ws102{word-spacing:19.437775pt;}
.ws18c{word-spacing:19.443002pt;}
.ws6d{word-spacing:19.495268pt;}
.ws19a{word-spacing:19.599800pt;}
.ws98{word-spacing:19.652066pt;}
.ws183{word-spacing:19.756598pt;}
.ws8f{word-spacing:19.808865pt;}
.ws146{word-spacing:19.861131pt;}
.ws8d{word-spacing:19.965663pt;}
.ws181{word-spacing:20.017929pt;}
.ws14d{word-spacing:20.028382pt;}
.ws127{word-spacing:20.070195pt;}
.wsfe{word-spacing:20.138141pt;}
.ws8c{word-spacing:20.174727pt;}
.ws100{word-spacing:20.242673pt;}
.ws91{word-spacing:20.279260pt;}
.wsc4{word-spacing:20.331526pt;}
.ws2c{word-spacing:20.383792pt;}
.ws168{word-spacing:20.436058pt;}
.ws40{word-spacing:20.592857pt;}
.ws24{word-spacing:20.645123pt;}
.ws19e{word-spacing:20.697389pt;}
.wsfd{word-spacing:20.718295pt;}
.ws12d{word-spacing:20.749655pt;}
.ws1bb{word-spacing:20.801921pt;}
.ws134{word-spacing:20.854187pt;}
.ws133{word-spacing:20.906453pt;}
.ws1b3{word-spacing:20.916907pt;}
.wsa0{word-spacing:20.958719pt;}
.ws0{word-spacing:21.008000pt;}
.ws35{word-spacing:21.010986pt;}
.ws1b5{word-spacing:21.187844pt;}
.ws1a7{word-spacing:21.214824pt;}
.wsf7{word-spacing:21.220050pt;}
.ws1b6{word-spacing:21.230503pt;}
.ws64{word-spacing:21.272316pt;}
.ws101{word-spacing:21.293223pt;}
.wsdc{word-spacing:21.324582pt;}
.ws89{word-spacing:21.376849pt;}
.wsa8{word-spacing:21.376873pt;}
.ws12a{word-spacing:21.429115pt;}
.ws3f{word-spacing:21.533647pt;}
.ws151{word-spacing:21.570233pt;}
.ws34{word-spacing:21.585913pt;}
.ws150{word-spacing:21.596366pt;}
.ws63{word-spacing:21.638179pt;}
.ws41{word-spacing:21.742711pt;}
.ws18b{word-spacing:21.847244pt;}
.ws191{word-spacing:21.899510pt;}
.ws190{word-spacing:21.951776pt;}
.ws1a9{word-spacing:22.249693pt;}
.ws61{word-spacing:22.265373pt;}
.ws80{word-spacing:22.317639pt;}
.wsa7{word-spacing:22.422171pt;}
.ws69{word-spacing:22.474437pt;}
.ws68{word-spacing:22.526703pt;}
.ws84{word-spacing:22.578970pt;}
.ws99{word-spacing:22.631236pt;}
.ws169{word-spacing:22.683502pt;}
.ws1c1{word-spacing:22.735768pt;}
.ws164{word-spacing:22.788034pt;}
.ws105{word-spacing:22.798487pt;}
.wsb6{word-spacing:22.840300pt;}
.ws6f{word-spacing:22.892566pt;}
.wsf0{word-spacing:22.944833pt;}
.wsb8{word-spacing:23.101631pt;}
.ws106{word-spacing:23.127764pt;}
.wsc0{word-spacing:23.153897pt;}
.ws1af{word-spacing:23.232296pt;}
.ws88{word-spacing:23.258429pt;}
.ws155{word-spacing:23.326375pt;}
.ws18a{word-spacing:23.415228pt;}
.ws154{word-spacing:23.509307pt;}
.ws19f{word-spacing:23.624292pt;}
.wsb1{word-spacing:23.676558pt;}
.wsa6{word-spacing:23.728825pt;}
.ws1a1{word-spacing:23.781091pt;}
.ws1a8{word-spacing:23.817677pt;}
.ws11d{word-spacing:23.859490pt;}
.wse1{word-spacing:23.885623pt;}
.wsba{word-spacing:23.990155pt;}
.ws29{word-spacing:24.042421pt;}
.ws1aa{word-spacing:24.058101pt;}
.ws1a2{word-spacing:24.094687pt;}
.ws1a0{word-spacing:24.094690pt;}
.ws31{word-spacing:24.146954pt;}
.ws3d{word-spacing:24.199220pt;}
.wse2{word-spacing:24.251486pt;}
.wse9{word-spacing:24.303752pt;}
.ws11f{word-spacing:24.308979pt;}
.wsab{word-spacing:24.356018pt;}
.wsd7{word-spacing:24.460550pt;}
.wsa4{word-spacing:24.512817pt;}
.ws3e{word-spacing:24.617349pt;}
.ws8a{word-spacing:24.669615pt;}
.wsae{word-spacing:24.721881pt;}
.ws16b{word-spacing:24.774147pt;}
.ws9e{word-spacing:24.826413pt;}
.ws128{word-spacing:24.878679pt;}
.ws122{word-spacing:24.930946pt;}
.ws1bd{word-spacing:24.983212pt;}
.wsf8{word-spacing:25.035478pt;}
.ws1b9{word-spacing:25.072064pt;}
.ws9f{word-spacing:25.087744pt;}
.wsbb{word-spacing:25.192276pt;}
.wsa1{word-spacing:25.296809pt;}
.ws85{word-spacing:25.401341pt;}
.ws1bc{word-spacing:25.453607pt;}
.ws14f{word-spacing:25.464060pt;}
.wsb0{word-spacing:25.505873pt;}
.ws86{word-spacing:25.558139pt;}
.ws14e{word-spacing:25.579046pt;}
.wsfb{word-spacing:25.610405pt;}
.ws32{word-spacing:25.819470pt;}
.wsd1{word-spacing:25.871736pt;}
.ws5e{word-spacing:25.976268pt;}
.wsd2{word-spacing:26.080801pt;}
.wsad{word-spacing:26.133067pt;}
.wsc7{word-spacing:26.185333pt;}
.ws12c{word-spacing:26.289865pt;}
.ws129{word-spacing:26.342131pt;}
.wsa2{word-spacing:26.394397pt;}
.wsbf{word-spacing:26.446663pt;}
.ws5d{word-spacing:26.498930pt;}
.ws12b{word-spacing:26.551196pt;}
.ws5c{word-spacing:26.655728pt;}
.ws7a{word-spacing:26.707994pt;}
.ws13c{word-spacing:26.760260pt;}
.wsd0{word-spacing:26.917059pt;}
.wsbe{word-spacing:26.969325pt;}
.ws97{word-spacing:27.073857pt;}
.wsde{word-spacing:27.126123pt;}
.ws5a{word-spacing:27.230655pt;}
.wsb5{word-spacing:27.387454pt;}
.wsb7{word-spacing:27.544252pt;}
.wsa3{word-spacing:27.596518pt;}
.ws160{word-spacing:27.648785pt;}
.ws1ae{word-spacing:27.664464pt;}
.ws1b1{word-spacing:27.763770pt;}
.ws7b{word-spacing:27.805583pt;}
.ws194{word-spacing:27.857849pt;}
.ws6b{word-spacing:27.962381pt;}
.ws1b7{word-spacing:28.066914pt;}
.ws1be{word-spacing:28.119180pt;}
.wse0{word-spacing:28.223712pt;}
.ws1b8{word-spacing:28.260298pt;}
.wseb{word-spacing:28.275978pt;}
.ws81{word-spacing:28.328244pt;}
.ws163{word-spacing:28.380510pt;}
.wsec{word-spacing:28.485043pt;}
.wsf4{word-spacing:28.589575pt;}
.ws82{word-spacing:28.850906pt;}
.wsda{word-spacing:28.903172pt;}
.ws1ab{word-spacing:28.939758pt;}
.ws1b0{word-spacing:29.138369pt;}
.wsa5{word-spacing:29.164502pt;}
.ws166{word-spacing:29.216769pt;}
.ws6c{word-spacing:29.425833pt;}
.wse4{word-spacing:29.478099pt;}
.wse3{word-spacing:29.582631pt;}
.ws37{word-spacing:29.634898pt;}
.ws36{word-spacing:29.687164pt;}
.ws96{word-spacing:29.791696pt;}
.ws186{word-spacing:29.843962pt;}
.ws192{word-spacing:29.896228pt;}
.ws185{word-spacing:29.948494pt;}
.ws16a{word-spacing:30.053027pt;}
.wsb9{word-spacing:30.575688pt;}
.ws162{word-spacing:30.680220pt;}
.wsf3{word-spacing:30.732486pt;}
.ws33{word-spacing:30.837019pt;}
.ws132{word-spacing:30.993817pt;}
.ws72{word-spacing:31.202882pt;}
.ws67{word-spacing:31.255148pt;}
.ws1a3{word-spacing:31.307414pt;}
.ws193{word-spacing:31.464212pt;}
.ws153{word-spacing:31.526932pt;}
.ws152{word-spacing:31.636691pt;}
.ws13d{word-spacing:31.830075pt;}
.ws13e{word-spacing:31.986874pt;}
.ws149{word-spacing:32.091406pt;}
.ws1b2{word-spacing:32.227298pt;}
.ws62{word-spacing:32.352737pt;}
.ws131{word-spacing:32.509535pt;}
.ws189{word-spacing:32.561801pt;}
.ws1bf{word-spacing:32.614067pt;}
.ws188{word-spacing:32.770868pt;}
.wsd9{word-spacing:32.823132pt;}
.ws161{word-spacing:32.927664pt;}
.ws39{word-spacing:33.136729pt;}
.wsf6{word-spacing:33.502591pt;}
.ws1c3{word-spacing:33.554858pt;}
.ws165{word-spacing:33.659390pt;}
.ws7c{word-spacing:33.972987pt;}
.ws182{word-spacing:34.025253pt;}
.wsf1{word-spacing:34.652446pt;}
.ws18f{word-spacing:34.756979pt;}
.ws18e{word-spacing:35.122842pt;}
.ws187{word-spacing:35.175108pt;}
.ws3b{word-spacing:35.384172pt;}
.ws141{word-spacing:35.540971pt;}
.ws66{word-spacing:35.645503pt;}
.ws1ad{word-spacing:35.781395pt;}
.ws147{word-spacing:35.854567pt;}
.ws77{word-spacing:35.959100pt;}
.ws123{word-spacing:36.011366pt;}
.wsc3{word-spacing:36.272697pt;}
.ws12e{word-spacing:36.690826pt;}
.ws6e{word-spacing:36.899890pt;}
.ws135{word-spacing:36.952156pt;}
.ws137{word-spacing:37.213487pt;}
.wsef{word-spacing:37.370285pt;}
.ws119{word-spacing:37.375512pt;}
.ws2{word-spacing:38.272159pt;}
.ws3{word-spacing:38.400160pt;}
.ws71{word-spacing:38.467874pt;}
.ws1{word-spacing:38.528161pt;}
.ws1b4{word-spacing:39.042802pt;}
.ws1e2{word-spacing:39.228196pt;}
.ws138{word-spacing:39.565463pt;}
.ws1a4{word-spacing:39.774527pt;}
.ws195{word-spacing:40.035858pt;}
.ws1a5{word-spacing:40.088124pt;}
.ws130{word-spacing:40.401721pt;}
.wse8{word-spacing:41.499310pt;}
.wsf2{word-spacing:42.910495pt;}
.ws2d{word-spacing:44.546425pt;}
.ws2e{word-spacing:44.792076pt;}
.ws13b{word-spacing:45.210205pt;}
.ws13f{word-spacing:45.994197pt;}
.wsee{word-spacing:49.652827pt;}
.wsed{word-spacing:49.757359pt;}
.wsea{word-spacing:51.534407pt;}
.ws174{word-spacing:274.855231pt;}
.ws175{word-spacing:276.647209pt;}
.ws176{word-spacing:277.500531pt;}
.ws173{word-spacing:282.407127pt;}
.ws107{word-spacing:749.302646pt;}
._4e{margin-left:-30.847533pt;}
._4d{margin-left:-29.718503pt;}
._24{margin-left:-19.338469pt;}
._5{margin-left:-17.600160pt;}
._1b{margin-left:-15.596695pt;}
._29{margin-left:-12.799840pt;}
._26{margin-left:-10.557759pt;}
._25{margin-left:-9.460538pt;}
._16{margin-left:-1.881581pt;}
._9{margin-left:-0.960010pt;}
._6{width:1.066677pt;}
._0{width:7.973333pt;}
._14{width:9.025169pt;}
._b{width:9.941428pt;}
._8{width:10.986777pt;}
._12{width:12.485156pt;}
._a{width:14.069484pt;}
._c{width:15.237318pt;}
._13{width:16.133363pt;}
._7{width:17.120171pt;}
._19{width:18.815808pt;}
._d{width:19.808900pt;}
._18{width:21.220050pt;}
._f{width:22.474446pt;}
._15{width:23.519760pt;}
._1c{width:25.035478pt;}
._4{width:25.984108pt;}
._4b{width:27.052502pt;}
._1a{width:28.066914pt;}
._1{width:29.050667pt;}
._10{width:30.606599pt;}
._e{width:32.362293pt;}
._11{width:34.160697pt;}
._1f{width:35.122842pt;}
._22{width:36.847624pt;}
._20{width:38.551052pt;}
._3{width:39.936166pt;}
._21{width:40.831516pt;}
._4c{width:41.812907pt;}
._23{width:46.390972pt;}
._4f{width:58.559219pt;}
._1e{width:155.006062pt;}
._1d{width:213.202668pt;}
._43{width:248.700888pt;}
._4a{width:282.321804pt;}
._49{width:293.671010pt;}
._45{width:298.833583pt;}
._46{width:312.742709pt;}
._48{width:348.539643pt;}
._47{width:376.997954pt;}
._28{width:402.288356pt;}
._2f{width:404.730885pt;}
._37{width:422.224041pt;}
._27{width:437.285201pt;}
._2e{width:441.818426pt;}
._42{width:442.831783pt;}
._44{width:466.340775pt;}
._2a{width:478.543351pt;}
._33{width:491.044473pt;}
._3b{width:555.043673pt;}
._40{width:611.235024pt;}
._31{width:622.797546pt;}
._3f{width:638.754680pt;}
._30{width:666.028912pt;}
._2c{width:667.991565pt;}
._3a{width:669.943623pt;}
._41{width:677.794219pt;}
._3e{width:688.385977pt;}
._32{width:699.212591pt;}
._2b{width:703.649871pt;}
._38{width:704.545804pt;}
._35{width:710.231041pt;}
._2d{width:720.545660pt;}
._39{width:746.315949pt;}
._36{width:761.377094pt;}
._34{width:766.625109pt;}
._3c{width:770.251703pt;}
._3d{width:777.803609pt;}
._2{width:1424.245280pt;}
._17{width:1544.172674pt;}
.fsf{font-size:24.885867pt;}
.fs9{font-size:26.662400pt;}
.fs10{font-size:28.440000pt;}
.fse{font-size:31.995733pt;}
.fsd{font-size:34.839467pt;}
.fs7{font-size:37.332800pt;}
.fs3{font-size:39.107733pt;}
.fs8{font-size:39.999467pt;}
.fsa{font-size:42.666133pt;}
.fsc{font-size:48.000000pt;}
.fsb{font-size:49.067200pt;}
.fs6{font-size:52.266133pt;}
.fs5{font-size:53.333867pt;}
.fs4{font-size:54.933333pt;}
.fs2{font-size:58.667200pt;}
.fs0{font-size:69.333333pt;}
.fs1{font-size:128.000533pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:58.128080pt;}
.y37{bottom:68.786600pt;}
.y202{bottom:79.365080pt;}
.y24b{bottom:79.370733pt;}
.y292{bottom:79.373533pt;}
.y138{bottom:79.382253pt;}
.ydb{bottom:79.410747pt;}
.y167{bottom:79.415360pt;}
.yfa{bottom:79.421987pt;}
.y36{bottom:79.445107pt;}
.yb2{bottom:79.450333pt;}
.y1cf{bottom:79.483480pt;}
.y199{bottom:80.576987pt;}
.ybb{bottom:86.251133pt;}
.y66{bottom:87.684933pt;}
.y35{bottom:90.103627pt;}
.y201{bottom:91.384920pt;}
.y24a{bottom:91.390573pt;}
.y291{bottom:91.393360pt;}
.y198{bottom:91.916827pt;}
.y137{bottom:95.401827pt;}
.yda{bottom:95.430320pt;}
.y166{bottom:95.434933pt;}
.yf9{bottom:95.441560pt;}
.yb1{bottom:95.469907pt;}
.y1ce{bottom:95.503040pt;}
.yba{bottom:98.272320pt;}
.y34{bottom:100.762133pt;}
.y197{bottom:103.256667pt;}
.y200{bottom:103.404760pt;}
.y249{bottom:103.410413pt;}
.y290{bottom:103.413200pt;}
.y196{bottom:107.414133pt;}
.y136{bottom:111.356067pt;}
.yd9{bottom:111.384560pt;}
.y165{bottom:111.389173pt;}
.yf8{bottom:111.395787pt;}
.yb0{bottom:111.424147pt;}
.y1cd{bottom:111.522613pt;}
.y1ff{bottom:115.344600pt;}
.y248{bottom:115.350253pt;}
.y28f{bottom:115.663040pt;}
.yb9{bottom:116.938747pt;}
.y195{bottom:120.803760pt;}
.y41{bottom:123.361920pt;}
.y1fe{bottom:127.364440pt;}
.y247{bottom:127.370093pt;}
.y135{bottom:127.375627pt;}
.yd8{bottom:127.404120pt;}
.y164{bottom:127.408733pt;}
.yf7{bottom:127.415360pt;}
.yaf{bottom:127.443707pt;}
.y1cc{bottom:127.476853pt;}
.y28e{bottom:127.682880pt;}
.yb8{bottom:128.885267pt;}
.y40{bottom:135.381760pt;}
.y33{bottom:136.500153pt;}
.y1fd{bottom:139.384280pt;}
.y246{bottom:139.389933pt;}
.y194{bottom:139.470187pt;}
.y28d{bottom:140.002720pt;}
.y134{bottom:143.395200pt;}
.yd7{bottom:143.423693pt;}
.y163{bottom:143.428307pt;}
.yf6{bottom:143.434933pt;}
.yae{bottom:143.463280pt;}
.y1cb{bottom:143.496413pt;}
.y3f{bottom:147.401600pt;}
.yb7{bottom:147.551693pt;}
.y1fc{bottom:151.404120pt;}
.y245{bottom:151.409773pt;}
.y3e{bottom:151.861467pt;}
.y28c{bottom:152.022560pt;}
.y32{bottom:152.519726pt;}
.y193{bottom:158.136627pt;}
.y133{bottom:159.344800pt;}
.yd6{bottom:159.377933pt;}
.y162{bottom:159.382547pt;}
.yf5{bottom:159.389173pt;}
.yad{bottom:159.417520pt;}
.y3d{bottom:159.422987pt;}
.y1ca{bottom:159.515987pt;}
.yb6{bottom:159.572880pt;}
.y244{bottom:163.349613pt;}
.y28b{bottom:164.342387pt;}
.y31{bottom:168.473966pt;}
.y3c{bottom:171.362827pt;}
.y243{bottom:175.369453pt;}
.yd5{bottom:175.397507pt;}
.y161{bottom:175.402107pt;}
.yf4{bottom:175.408733pt;}
.yac{bottom:175.437093pt;}
.y1c9{bottom:175.470227pt;}
.y192{bottom:175.672400pt;}
.y190{bottom:175.673547pt;}
.y28a{bottom:176.282240pt;}
.yb5{bottom:177.108667pt;}
.y191{bottom:180.358933pt;}
.y3b{bottom:183.382667pt;}
.y30{bottom:184.493526pt;}
.y242{bottom:187.389293pt;}
.y1fb{bottom:187.463627pt;}
.y3a{bottom:187.842533pt;}
.y289{bottom:188.602067pt;}
.y132{bottom:191.415080pt;}
.yd4{bottom:191.417067pt;}
.y160{bottom:191.421680pt;}
.yf3{bottom:191.428307pt;}
.yab{bottom:191.456653pt;}
.y1c8{bottom:191.489800pt;}
.y18e{bottom:193.209333pt;}
.yb4{bottom:194.646133pt;}
.y39{bottom:195.401587pt;}
.y18f{bottom:197.896000pt;}
.y241{bottom:199.409133pt;}
.y1fa{bottom:199.483467pt;}
.y2f{bottom:200.513099pt;}
.y288{bottom:200.621907pt;}
.y131{bottom:207.369320pt;}
.yd3{bottom:207.371307pt;}
.y15f{bottom:207.375920pt;}
.yf2{bottom:207.382547pt;}
.yaa{bottom:207.410893pt;}
.y1c7{bottom:207.509360pt;}
.yb3{bottom:209.310133pt;}
.y18d{bottom:210.746400pt;}
.y240{bottom:211.348973pt;}
.y287{bottom:212.941747pt;}
.y2e{bottom:216.467339pt;}
.y23f{bottom:223.368813pt;}
.y130{bottom:223.388880pt;}
.yd2{bottom:223.390880pt;}
.y15e{bottom:223.395493pt;}
.yf1{bottom:223.402107pt;}
.ya9{bottom:223.430467pt;}
.y1c6{bottom:223.463600pt;}
.y286{bottom:224.881587pt;}
.y1f9{bottom:229.190547pt;}
.y22{bottom:232.460766pt;}
.y2d{bottom:232.486913pt;}
.y23e{bottom:235.388653pt;}
.y285{bottom:237.201427pt;}
.y12f{bottom:239.408453pt;}
.yd1{bottom:239.410440pt;}
.y15d{bottom:239.415053pt;}
.yf0{bottom:239.421680pt;}
.y80{bottom:239.430200pt;}
.ya8{bottom:239.450027pt;}
.y1c5{bottom:239.483173pt;}
.y23d{bottom:247.408493pt;}
.y21{bottom:248.480339pt;}
.y2c{bottom:248.506473pt;}
.y284{bottom:249.221267pt;}
.y12e{bottom:255.362693pt;}
.yd0{bottom:255.364680pt;}
.y15c{bottom:255.369293pt;}
.yef{bottom:255.375920pt;}
.y7f{bottom:255.384440pt;}
.ya7{bottom:255.404267pt;}
.y16c{bottom:255.422387pt;}
.y1c4{bottom:255.502733pt;}
.y23c{bottom:259.348333pt;}
.y283{bottom:261.241107pt;}
.y20{bottom:264.434579pt;}
.y2b{bottom:264.460713pt;}
.y1f8{bottom:266.314107pt;}
.y23b{bottom:271.368173pt;}
.y16b{bottom:271.376613pt;}
.y16d{bottom:271.376627pt;}
.y12d{bottom:271.382253pt;}
.ycf{bottom:271.384253pt;}
.y15b{bottom:271.388867pt;}
.yee{bottom:271.395493pt;}
.y7e{bottom:271.404000pt;}
.ya6{bottom:271.423840pt;}
.y1c3{bottom:271.456973pt;}
.y282{bottom:273.560933pt;}
.y1f{bottom:280.454153pt;}
.y2a{bottom:280.480286pt;}
.y1f7{bottom:282.268347pt;}
.y23a{bottom:283.388013pt;}
.y281{bottom:285.500773pt;}
.y16a{bottom:287.396187pt;}
.y12c{bottom:287.401827pt;}
.yce{bottom:287.403827pt;}
.y15a{bottom:287.408427pt;}
.yed{bottom:287.415053pt;}
.y7d{bottom:287.423573pt;}
.ya5{bottom:287.443413pt;}
.y1c2{bottom:287.476547pt;}
.y239{bottom:295.407853pt;}
.y1e{bottom:296.473713pt;}
.y29{bottom:296.499846pt;}
.y280{bottom:297.520613pt;}
.y1f6{bottom:298.287920pt;}
.y169{bottom:303.350427pt;}
.y12b{bottom:303.356067pt;}
.ycd{bottom:303.358053pt;}
.y159{bottom:303.362667pt;}
.yec{bottom:303.369293pt;}
.y7c{bottom:303.377813pt;}
.ya4{bottom:303.397640pt;}
.y1c1{bottom:303.430787pt;}
.y238{bottom:307.351080pt;}
.y27f{bottom:309.840453pt;}
.y1d{bottom:312.427953pt;}
.y28{bottom:312.454086pt;}
.y1f5{bottom:314.307493pt;}
.y168{bottom:319.370000pt;}
.y12a{bottom:319.375627pt;}
.ycc{bottom:319.377627pt;}
.y158{bottom:319.382240pt;}
.yeb{bottom:319.388867pt;}
.y7b{bottom:319.397373pt;}
.ya3{bottom:319.417213pt;}
.y1c0{bottom:319.450347pt;}
.y27e{bottom:321.877533pt;}
.y1c{bottom:328.447526pt;}
.y27{bottom:328.473659pt;}
.y1f4{bottom:330.261720pt;}
.y27d{bottom:334.137373pt;}
.y129{bottom:335.395200pt;}
.ycb{bottom:335.397200pt;}
.y157{bottom:335.401813pt;}
.yea{bottom:335.408427pt;}
.y7a{bottom:335.416947pt;}
.ya2{bottom:335.436787pt;}
.y1bf{bottom:335.469920pt;}
.y1b{bottom:344.467086pt;}
.y26{bottom:344.493233pt;}
.y27c{bottom:346.157213pt;}
.y237{bottom:346.202707pt;}
.y1f3{bottom:346.281293pt;}
.y128{bottom:351.344813pt;}
.yca{bottom:351.351427pt;}
.y156{bottom:351.356040pt;}
.ye9{bottom:351.362667pt;}
.y79{bottom:351.371187pt;}
.ya1{bottom:351.391013pt;}
.y1be{bottom:351.424160pt;}
.y18c{bottom:353.612547pt;}
.y18b{bottom:357.694413pt;}
.y27b{bottom:358.477040pt;}
.y1a{bottom:360.421326pt;}
.y25{bottom:360.447459pt;}
.y1f2{bottom:362.300867pt;}
.yc9{bottom:367.371000pt;}
.y155{bottom:367.375613pt;}
.ye8{bottom:367.382240pt;}
.y78{bottom:367.390760pt;}
.ya0{bottom:367.410587pt;}
.y1bd{bottom:367.443720pt;}
.y234{bottom:370.241507pt;}
.y236{bottom:370.242387pt;}
.y27a{bottom:370.496880pt;}
.y18a{bottom:371.195040pt;}
.y235{bottom:374.702267pt;}
.y19{bottom:376.440899pt;}
.y24{bottom:376.467033pt;}
.y1f1{bottom:378.255093pt;}
.y233{bottom:382.261347pt;}
.y231{bottom:382.263787pt;}
.y279{bottom:382.516720pt;}
.yc8{bottom:383.390573pt;}
.y154{bottom:383.395187pt;}
.y127{bottom:383.396187pt;}
.ye7{bottom:383.401813pt;}
.y77{bottom:383.410320pt;}
.y9f{bottom:383.430160pt;}
.y1bc{bottom:383.463293pt;}
.y232{bottom:386.645587pt;}
.y189{bottom:389.861480pt;}
.y18{bottom:392.465966pt;}
.y23{bottom:392.486606pt;}
.y230{bottom:394.203627pt;}
.y1f0{bottom:394.280293pt;}
.y278{bottom:394.766560pt;}
.yc7{bottom:399.344813pt;}
.y126{bottom:399.350427pt;}
.ye6{bottom:399.356040pt;}
.y76{bottom:399.364560pt;}
.y9e{bottom:399.384400pt;}
.y1bb{bottom:399.417533pt;}
.y22d{bottom:406.222547pt;}
.y22f{bottom:406.223467pt;}
.y277{bottom:406.786400pt;}
.y188{bottom:408.527907pt;}
.y22e{bottom:410.683347pt;}
.yc6{bottom:415.370000pt;}
.ye5{bottom:415.375613pt;}
.y75{bottom:415.384133pt;}
.y9d{bottom:415.403960pt;}
.y1ba{bottom:415.437107pt;}
.y22a{bottom:418.241507pt;}
.y22c{bottom:418.242387pt;}
.y276{bottom:419.106240pt;}
.y22b{bottom:422.702267pt;}
.y187{bottom:427.194333pt;}
.y229{bottom:430.261347pt;}
.y227{bottom:430.263787pt;}
.y275{bottom:431.126080pt;}
.ye4{bottom:431.395187pt;}
.y74{bottom:431.403693pt;}
.y9c{bottom:431.423533pt;}
.y1ef{bottom:431.423547pt;}
.y153{bottom:431.429187pt;}
.y1b9{bottom:431.456667pt;}
.y17{bottom:433.059806pt;}
.y228{bottom:434.645587pt;}
.y226{bottom:442.203627pt;}
.y274{bottom:443.445907pt;}
.y186{bottom:445.860773pt;}
.ye3{bottom:447.344813pt;}
.y73{bottom:447.357933pt;}
.yc5{bottom:447.369293pt;}
.y9b{bottom:447.377773pt;}
.y1ee{bottom:447.377787pt;}
.y152{bottom:447.383427pt;}
.y1b8{bottom:447.410907pt;}
.y223{bottom:454.221667pt;}
.y225{bottom:454.223467pt;}
.y273{bottom:455.385747pt;}
.y16{bottom:455.740033pt;}
.y224{bottom:458.683347pt;}
.y72{bottom:463.377507pt;}
.yc4{bottom:463.388867pt;}
.y9a{bottom:463.397333pt;}
.y1ed{bottom:463.397347pt;}
.y151{bottom:463.403000pt;}
.y125{bottom:463.415280pt;}
.y1b7{bottom:463.430480pt;}
.y185{bottom:464.527200pt;}
.y222{bottom:466.241507pt;}
.y272{bottom:467.705587pt;}
.y15{bottom:471.686859pt;}
.y221{bottom:478.261347pt;}
.y71{bottom:479.397080pt;}
.yc3{bottom:479.408427pt;}
.y99{bottom:479.416907pt;}
.y1ec{bottom:479.416920pt;}
.y150{bottom:479.422560pt;}
.y124{bottom:479.434853pt;}
.ye2{bottom:479.442653pt;}
.y1b6{bottom:479.450040pt;}
.y271{bottom:479.725427pt;}
.y220{bottom:482.645587pt;}
.y184{bottom:483.193640pt;}
.y21f{bottom:490.190480pt;}
.y14{bottom:491.713726pt;}
.y270{bottom:491.745267pt;}
.y70{bottom:495.351307pt;}
.yc2{bottom:495.362667pt;}
.y98{bottom:495.371147pt;}
.y1eb{bottom:495.371160pt;}
.y14f{bottom:495.376800pt;}
.y123{bottom:495.389080pt;}
.ye1{bottom:495.396893pt;}
.y1b5{bottom:495.404280pt;}
.y183{bottom:501.860067pt;}
.y26f{bottom:503.995107pt;}
.y13{bottom:507.740553pt;}
.y6f{bottom:511.370880pt;}
.yc1{bottom:511.382240pt;}
.y97{bottom:511.390720pt;}
.y1ea{bottom:511.390733pt;}
.y14e{bottom:511.396373pt;}
.y122{bottom:511.408653pt;}
.ye0{bottom:511.416467pt;}
.y1b4{bottom:511.423853pt;}
.y21e{bottom:514.230160pt;}
.y26e{bottom:516.014947pt;}
.y182{bottom:520.526507pt;}
.y12{bottom:523.687379pt;}
.y21d{bottom:526.250000pt;}
.y6e{bottom:527.390453pt;}
.yc0{bottom:527.401813pt;}
.y96{bottom:527.410280pt;}
.y1e9{bottom:527.410293pt;}
.y14d{bottom:527.415947pt;}
.y121{bottom:527.428227pt;}
.ydf{bottom:527.436027pt;}
.y1b3{bottom:527.443427pt;}
.y26d{bottom:528.034787pt;}
.y181{bottom:539.192933pt;}
.y11{bottom:539.714206pt;}
.y26c{bottom:540.354613pt;}
.y6d{bottom:543.344680pt;}
.ybf{bottom:543.356040pt;}
.y95{bottom:543.364520pt;}
.y1e8{bottom:543.364533pt;}
.y14c{bottom:543.370173pt;}
.y120{bottom:543.382467pt;}
.yde{bottom:543.390267pt;}
.y1b2{bottom:543.397653pt;}
.y26b{bottom:552.294453pt;}
.y21c{bottom:553.089640pt;}
.y10{bottom:555.741033pt;}
.y180{bottom:557.859373pt;}
.y6c{bottom:559.370000pt;}
.ybe{bottom:559.375613pt;}
.y94{bottom:559.384093pt;}
.y1e7{bottom:559.384107pt;}
.y14b{bottom:559.389747pt;}
.y11f{bottom:559.402027pt;}
.ydd{bottom:559.409840pt;}
.y1b1{bottom:559.417227pt;}
.y26a{bottom:564.614293pt;}
.y21b{bottom:565.109480pt;}
.yf{bottom:571.687859pt;}
.ybd{bottom:575.395187pt;}
.y93{bottom:575.403653pt;}
.y1e6{bottom:575.403667pt;}
.y14a{bottom:575.409320pt;}
.y11e{bottom:575.421600pt;}
.ydc{bottom:575.429400pt;}
.y1b0{bottom:575.436800pt;}
.y17f{bottom:576.525800pt;}
.y269{bottom:576.634133pt;}
.y268{bottom:588.653973pt;}
.y92{bottom:591.357893pt;}
.y1e5{bottom:591.357907pt;}
.y149{bottom:591.363547pt;}
.y11d{bottom:591.375840pt;}
.y6b{bottom:591.391013pt;}
.y1af{bottom:591.391027pt;}
.ye{bottom:591.714726pt;}
.y21a{bottom:591.949120pt;}
.y17e{bottom:595.192240pt;}
.y267{bottom:600.973813pt;}
.y219{bottom:603.968960pt;}
.y91{bottom:607.377467pt;}
.y1e4{bottom:607.377480pt;}
.y148{bottom:607.383120pt;}
.y11c{bottom:607.395400pt;}
.y6a{bottom:607.410587pt;}
.y1ae{bottom:607.410600pt;}
.yd{bottom:607.741553pt;}
.y110{bottom:611.309373pt;}
.y266{bottom:612.913653pt;}
.y17d{bottom:613.858667pt;}
.y218{bottom:615.988800pt;}
.y10f{bottom:623.330560pt;}
.y90{bottom:623.397027pt;}
.y1e3{bottom:623.397040pt;}
.y147{bottom:623.402693pt;}
.y11b{bottom:623.414973pt;}
.y69{bottom:623.430160pt;}
.y1ad{bottom:623.430173pt;}
.yc{bottom:623.688379pt;}
.y265{bottom:624.933493pt;}
.y217{bottom:627.928640pt;}
.y17c{bottom:632.525107pt;}
.y264{bottom:636.953333pt;}
.y8f{bottom:639.351267pt;}
.y1e2{bottom:639.351280pt;}
.y146{bottom:639.356933pt;}
.y11a{bottom:639.369213pt;}
.y68{bottom:639.384400pt;}
.y1ac{bottom:639.384413pt;}
.yb{bottom:639.715206pt;}
.y10e{bottom:641.996987pt;}
.y263{bottom:649.273160pt;}
.y17b{bottom:651.191533pt;}
.y216{bottom:654.838280pt;}
.y65{bottom:655.370840pt;}
.y1e1{bottom:655.370853pt;}
.y145{bottom:655.376493pt;}
.y119{bottom:655.388787pt;}
.y55{bottom:655.403960pt;}
.y1ab{bottom:655.403973pt;}
.ya{bottom:655.742033pt;}
.y10d{bottom:660.663427pt;}
.y262{bottom:661.213000pt;}
.y215{bottom:666.778120pt;}
.y2a1{bottom:667.387880pt;}
.y17a{bottom:669.857973pt;}
.y64{bottom:671.390413pt;}
.y144{bottom:671.396067pt;}
.y118{bottom:671.408347pt;}
.y54{bottom:671.423533pt;}
.y1aa{bottom:671.423547pt;}
.y1e0{bottom:671.488960pt;}
.y10c{bottom:672.684600pt;}
.y261{bottom:673.232840pt;}
.y9{bottom:675.702233pt;}
.y214{bottom:678.797960pt;}
.y2a0{bottom:679.407720pt;}
.y10b{bottom:684.631120pt;}
.y260{bottom:685.252680pt;}
.y63{bottom:687.344640pt;}
.y143{bottom:687.350307pt;}
.y117{bottom:687.362587pt;}
.y53{bottom:687.377773pt;}
.y1a9{bottom:687.377787pt;}
.y1df{bottom:687.443200pt;}
.y179{bottom:688.524400pt;}
.y29f{bottom:691.350907pt;}
.y8{bottom:691.729059pt;}
.y25f{bottom:697.572520pt;}
.y10a{bottom:703.297547pt;}
.y62{bottom:703.369867pt;}
.y8e{bottom:703.374667pt;}
.y116{bottom:703.382160pt;}
.y52{bottom:703.397333pt;}
.y1a8{bottom:703.397347pt;}
.y1de{bottom:703.501973pt;}
.y213{bottom:705.637600pt;}
.y178{bottom:707.116173pt;}
.y25e{bottom:709.592360pt;}
.y7{bottom:715.691139pt;}
.y212{bottom:717.657440pt;}
.y8d{bottom:719.395107pt;}
.y115{bottom:719.401720pt;}
.y51{bottom:719.416907pt;}
.y1a7{bottom:719.416920pt;}
.y1dd{bottom:719.521533pt;}
.y25d{bottom:721.532200pt;}
.y109{bottom:721.963987pt;}
.y29e{bottom:723.407360pt;}
.y177{bottom:725.782600pt;}
.y211{bottom:729.677280pt;}
.y25c{bottom:733.852040pt;}
.y108{bottom:733.985173pt;}
.y29d{bottom:735.347200pt;}
.y61{bottom:735.355960pt;}
.y50{bottom:735.371147pt;}
.y1a6{bottom:735.371160pt;}
.y1dc{bottom:735.475773pt;}
.y176{bottom:744.449040pt;}
.y25b{bottom:745.871880pt;}
.y107{bottom:746.006347pt;}
.y29c{bottom:747.367040pt;}
.y142{bottom:751.370840pt;}
.y60{bottom:751.375533pt;}
.y4f{bottom:751.390720pt;}
.y1a5{bottom:751.390733pt;}
.y8c{bottom:751.429267pt;}
.y1db{bottom:751.495347pt;}
.y210{bottom:756.516920pt;}
.y25a{bottom:758.191707pt;}
.y29b{bottom:759.386880pt;}
.y175{bottom:763.115467pt;}
.y106{bottom:764.672787pt;}
.y5{bottom:767.017073pt;}
.y141{bottom:767.390413pt;}
.y5f{bottom:767.395107pt;}
.y4e{bottom:767.410280pt;}
.y1a4{bottom:767.410293pt;}
.y8b{bottom:767.448840pt;}
.y1da{bottom:767.514907pt;}
.y20f{bottom:768.536760pt;}
.y259{bottom:770.131547pt;}
.y29a{bottom:771.406720pt;}
.y6{bottom:773.593486pt;}
.y105{bottom:776.619307pt;}
.y20e{bottom:780.556600pt;}
.y174{bottom:781.781907pt;}
.y258{bottom:782.451387pt;}
.y5e{bottom:783.344640pt;}
.y299{bottom:783.346560pt;}
.y4d{bottom:783.364520pt;}
.y1a3{bottom:783.364533pt;}
.y8a{bottom:783.403080pt;}
.y1d9{bottom:783.469147pt;}
.y104{bottom:788.640480pt;}
.y20d{bottom:792.496440pt;}
.y257{bottom:794.471227pt;}
.y298{bottom:795.366400pt;}
.y4{bottom:799.071726pt;}
.y5d{bottom:799.369867pt;}
.y140{bottom:799.374667pt;}
.y4c{bottom:799.384093pt;}
.y1a2{bottom:799.384107pt;}
.y89{bottom:799.422640pt;}
.y1d8{bottom:799.488720pt;}
.y173{bottom:800.448333pt;}
.y103{bottom:800.661667pt;}
.y20c{bottom:804.516280pt;}
.y256{bottom:806.491067pt;}
.y297{bottom:807.386240pt;}
.y102{bottom:812.682853pt;}
.y114{bottom:815.390413pt;}
.y13f{bottom:815.395107pt;}
.y4b{bottom:815.403653pt;}
.y1a1{bottom:815.403667pt;}
.y88{bottom:815.442213pt;}
.y1d7{bottom:815.508293pt;}
.y20b{bottom:816.536120pt;}
.y255{bottom:818.430907pt;}
.y172{bottom:819.114773pt;}
.y296{bottom:819.406080pt;}
.y101{bottom:824.629360pt;}
.y20a{bottom:828.555960pt;}
.y254{bottom:830.750747pt;}
.y113{bottom:831.344640pt;}
.y295{bottom:831.345920pt;}
.y4a{bottom:831.357893pt;}
.y1a0{bottom:831.357907pt;}
.y5c{bottom:831.384027pt;}
.y87{bottom:831.396453pt;}
.y1d6{bottom:831.462520pt;}
.y3{bottom:833.695873pt;}
.y112{bottom:837.165040pt;}
.y171{bottom:837.781200pt;}
.y209{bottom:840.495800pt;}
.y253{bottom:842.770587pt;}
.y100{bottom:843.295800pt;}
.y294{bottom:843.365760pt;}
.y49{bottom:847.377467pt;}
.y19f{bottom:847.377480pt;}
.y13e{bottom:847.380880pt;}
.y5b{bottom:847.403600pt;}
.y86{bottom:847.416027pt;}
.y1d5{bottom:847.482093pt;}
.y252{bottom:854.790427pt;}
.y293{bottom:855.385600pt;}
.y170{bottom:856.447627pt;}
.yff{bottom:861.962227pt;}
.y48{bottom:863.397027pt;}
.y19e{bottom:863.397040pt;}
.y13d{bottom:863.400440pt;}
.y5a{bottom:863.423160pt;}
.y85{bottom:863.435587pt;}
.y1d4{bottom:863.501667pt;}
.y251{bottom:867.110253pt;}
.y208{bottom:867.405440pt;}
.y2{bottom:868.384006pt;}
.yfe{bottom:873.983413pt;}
.y16f{bottom:875.114067pt;}
.y250{bottom:879.050093pt;}
.y207{bottom:879.345280pt;}
.y47{bottom:879.351267pt;}
.y19d{bottom:879.351280pt;}
.y13c{bottom:879.354680pt;}
.y59{bottom:879.377400pt;}
.y84{bottom:879.389827pt;}
.y1d3{bottom:879.455893pt;}
.y24f{bottom:891.069933pt;}
.y206{bottom:891.365120pt;}
.yfd{bottom:892.649853pt;}
.y46{bottom:895.370840pt;}
.y19c{bottom:895.370853pt;}
.y13b{bottom:895.374253pt;}
.y58{bottom:895.396973pt;}
.y83{bottom:895.409400pt;}
.y1d2{bottom:895.475467pt;}
.y205{bottom:903.384960pt;}
.y24e{bottom:903.389773pt;}
.yfc{bottom:910.185627pt;}
.y45{bottom:911.390413pt;}
.y19b{bottom:911.390427pt;}
.y13a{bottom:911.393827pt;}
.y57{bottom:911.416547pt;}
.y82{bottom:911.428960pt;}
.y1d1{bottom:911.495040pt;}
.y204{bottom:915.404800pt;}
.y24d{bottom:915.409613pt;}
.y1{bottom:919.029627pt;}
.y44{bottom:927.344640pt;}
.y19a{bottom:927.344653pt;}
.y139{bottom:927.348053pt;}
.y24c{bottom:927.349453pt;}
.y56{bottom:927.370773pt;}
.y81{bottom:927.383200pt;}
.y1d0{bottom:927.449280pt;}
.yfb{bottom:927.722653pt;}
.y16e{bottom:933.013840pt;}
.y43{bottom:989.180440pt;}
.ybc{bottom:1002.474360pt;}
.y67{bottom:1002.478827pt;}
.y2a2{bottom:1002.481610pt;}
.y42{bottom:1002.481613pt;}
.y203{bottom:1002.481627pt;}
.y111{bottom:1002.483147pt;}
.h14{height:17.942710pt;}
.hb{height:19.223590pt;}
.h15{height:20.505240pt;}
.h13{height:23.068924pt;}
.h11{height:23.676558pt;}
.h12{height:25.223774pt;}
.h9{height:26.916949pt;}
.h5{height:28.196676pt;}
.ha{height:28.839615pt;}
.hd{height:30.762282pt;}
.h10{height:31.060945pt;}
.hf{height:34.608000pt;}
.he{height:35.377451pt;}
.hc{height:37.588863pt;}
.h8{height:37.840681pt;}
.h7{height:38.453718pt;}
.h6{height:39.606933pt;}
.h4{height:42.299051pt;}
.h2{height:49.989333pt;}
.h3{height:92.288385pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590587pt;}
.x13{left:79.143333pt;}
.x1{left:80.957493pt;}
.x17{left:81.864533pt;}
.x10{left:84.283520pt;}
.x14{left:86.248800pt;}
.x28{left:95.625760pt;}
.x25{left:103.105467pt;}
.x1a{left:105.675600pt;}
.x26{left:106.658267pt;}
.x3{left:136.365387pt;}
.x4{left:154.885120pt;}
.x15{left:162.746773pt;}
.x1b{left:171.514933pt;}
.x5{left:192.680307pt;}
.x27{left:196.611067pt;}
.x6{left:197.669267pt;}
.x12{left:240.453467pt;}
.x24{left:264.718000pt;}
.x7{left:268.346453pt;}
.x1c{left:275.982960pt;}
.x8{left:284.144853pt;}
.x23{left:290.116400pt;}
.x19{left:293.140133pt;}
.x22{left:295.861333pt;}
.x16{left:304.099680pt;}
.x20{left:308.560520pt;}
.x21{left:312.113347pt;}
.x9{left:351.118053pt;}
.xa{left:362.834573pt;}
.x11{left:406.304560pt;}
.xb{left:411.892840pt;}
.x1f{left:413.329067pt;}
.xc{left:416.881773pt;}
.x29{left:426.335107pt;}
.x18{left:483.628253pt;}
.xd{left:485.744840pt;}
.xe{left:501.694467pt;}
.xf{left:571.842467pt;}
.x1d{left:654.765213pt;}
.x1e{left:658.620400pt;}
}




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