
    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_1592b047d3357f87605faec3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_66ef1441810b8a08e1af7158.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_f63991f9e00365ac173f2097.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_ee9b49d434cb6b9df32ac044.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_aa87d29f0c2ed67327c2a7cd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a76ec9eb446b05599b70849b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_b976c9e4bb4a0b61a2b83bfa.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.142090;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_9f26385cab8c8c1902e42853.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.281250;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_7322f1ee63e176a27cd093ee.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893066;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_8c9ca08016371f3362f1d260.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.688965;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_a1032b55699e4ebf156ea362.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.908691;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;}
.md{transform:matrix(0.145370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145370,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.150822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150822,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.151002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151002,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.157495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157495,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.179532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179532,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);}
.m7{transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);}
.m8{transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);}
.m9{transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);}
.m2{transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v1{vertical-align:-69.119964px;}
.v15{vertical-align:-44.997885px;}
.v11{vertical-align:-37.797451px;}
.v17{vertical-align:-36.357696px;}
.v14{vertical-align:-25.918988px;}
.vf{vertical-align:-23.759741px;}
.v3{vertical-align:-20.880000px;}
.v13{vertical-align:-16.202340px;}
.v9{vertical-align:-12.240000px;}
.ve{vertical-align:-11.158200px;}
.v4{vertical-align:-6.124860px;}
.v6{vertical-align:-2.880000px;}
.v1a{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v12{vertical-align:2.880000px;}
.v19{vertical-align:5.040000px;}
.v5{vertical-align:6.120000px;}
.v8{vertical-align:12.240000px;}
.v16{vertical-align:14.400612px;}
.vc{vertical-align:16.201200px;}
.v2{vertical-align:20.873988px;}
.v7{vertical-align:21.954708px;}
.va{vertical-align:26.638200px;}
.v18{vertical-align:28.440000px;}
.vd{vertical-align:36.001800px;}
.vb{vertical-align:41.040000px;}
.v10{vertical-align:46.439401px;}
.ls2b{letter-spacing:-0.685368px;}
.ls4b{letter-spacing:-0.619236px;}
.ls56{letter-spacing:-0.541080px;}
.ls2a{letter-spacing:-0.505008px;}
.ls68{letter-spacing:-0.402804px;}
.ls55{letter-spacing:-0.361584px;}
.lsf{letter-spacing:-0.356400px;}
.ls69{letter-spacing:-0.312624px;}
.ls6e{letter-spacing:-0.300600px;}
.ls6c{letter-spacing:-0.275400px;}
.ls51{letter-spacing:-0.270540px;}
.ls9c{letter-spacing:-0.258516px;}
.ls29{letter-spacing:-0.252504px;}
.ls8f{letter-spacing:-0.246492px;}
.ls9d{letter-spacing:-0.240480px;}
.ls8d{letter-spacing:-0.234468px;}
.ls4e{letter-spacing:-0.222444px;}
.ls8e{letter-spacing:-0.210420px;}
.ls32{letter-spacing:-0.198396px;}
.ls67{letter-spacing:-0.192384px;}
.ls8c{letter-spacing:-0.186372px;}
.ls4f{letter-spacing:-0.180360px;}
.ls9b{letter-spacing:-0.174468px;}
.ls6d{letter-spacing:-0.174348px;}
.ls94{letter-spacing:-0.168336px;}
.ls42{letter-spacing:-0.162324px;}
.ls54{letter-spacing:-0.156312px;}
.ls3b{letter-spacing:-0.150300px;}
.ls34{letter-spacing:-0.144288px;}
.lsd{letter-spacing:-0.140292px;}
.ls2c{letter-spacing:-0.138276px;}
.ls35{letter-spacing:-0.132264px;}
.ls73{letter-spacing:-0.129600px;}
.ls2e{letter-spacing:-0.126252px;}
.ls31{letter-spacing:-0.120240px;}
.ls39{letter-spacing:-0.114228px;}
.lsb{letter-spacing:-0.109116px;}
.ls4c{letter-spacing:-0.108216px;}
.ls33{letter-spacing:-0.102204px;}
.ls3a{letter-spacing:-0.096192px;}
.ls3d{letter-spacing:-0.090180px;}
.ls11{letter-spacing:-0.086400px;}
.ls36{letter-spacing:-0.084168px;}
.ls38{letter-spacing:-0.078156px;}
.ls9e{letter-spacing:-0.072144px;}
.ls72{letter-spacing:-0.070200px;}
.ls6f{letter-spacing:-0.066132px;}
.ls52{letter-spacing:-0.063539px;}
.ls41{letter-spacing:-0.060120px;}
.ls4a{letter-spacing:-0.054108px;}
.ls28{letter-spacing:-0.048096px;}
.ls75{letter-spacing:-0.043200px;}
.ls37{letter-spacing:-0.042084px;}
.ls3c{letter-spacing:-0.036072px;}
.ls40{letter-spacing:-0.030060px;}
.ls74{letter-spacing:-0.027000px;}
.ls43{letter-spacing:-0.024048px;}
.lse{letter-spacing:-0.021600px;}
.ls2d{letter-spacing:-0.018036px;}
.ls71{letter-spacing:-0.016200px;}
.ls2f{letter-spacing:-0.012024px;}
.ls76{letter-spacing:-0.010800px;}
.ls30{letter-spacing:-0.006012px;}
.ls53{letter-spacing:-0.003888px;}
.ls9{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.000600px;}
.ls1c{letter-spacing:0.006012px;}
.ls4{letter-spacing:0.010800px;}
.ls1d{letter-spacing:0.012024px;}
.ls45{letter-spacing:0.012960px;}
.lsc{letter-spacing:0.015588px;}
.ls50{letter-spacing:0.018036px;}
.ls95{letter-spacing:0.023328px;}
.ls14{letter-spacing:0.024048px;}
.ls46{letter-spacing:0.030060px;}
.ls3{letter-spacing:0.031176px;}
.ls20{letter-spacing:0.036072px;}
.ls44{letter-spacing:0.042084px;}
.ls60{letter-spacing:0.043200px;}
.ls13{letter-spacing:0.048096px;}
.ls7{letter-spacing:0.054000px;}
.ls17{letter-spacing:0.054108px;}
.ls12{letter-spacing:0.057672px;}
.ls16{letter-spacing:0.060120px;}
.ls0{letter-spacing:0.062352px;}
.ls19{letter-spacing:0.066132px;}
.ls57{letter-spacing:0.067248px;}
.ls1a{letter-spacing:0.072144px;}
.ls8{letter-spacing:0.075600px;}
.ls23{letter-spacing:0.078156px;}
.ls70{letter-spacing:0.081000px;}
.ls27{letter-spacing:0.084168px;}
.ls5{letter-spacing:0.086400px;}
.ls21{letter-spacing:0.090000px;}
.ls1e{letter-spacing:0.090180px;}
.ls3e{letter-spacing:0.096192px;}
.ls61{letter-spacing:0.097200px;}
.ls18{letter-spacing:0.102204px;}
.ls6{letter-spacing:0.108000px;}
.ls1f{letter-spacing:0.108216px;}
.ls1{letter-spacing:0.109116px;}
.ls6b{letter-spacing:0.109512px;}
.ls3f{letter-spacing:0.114228px;}
.ls1b{letter-spacing:0.120240px;}
.ls97{letter-spacing:0.126252px;}
.ls5c{letter-spacing:0.132264px;}
.ls7a{letter-spacing:0.136152px;}
.ls4d{letter-spacing:0.138276px;}
.ls78{letter-spacing:0.140616px;}
.ls82{letter-spacing:0.141588px;}
.ls47{letter-spacing:0.144288px;}
.ls77{letter-spacing:0.147708px;}
.ls24{letter-spacing:0.150300px;}
.ls58{letter-spacing:0.156312px;}
.ls10{letter-spacing:0.162000px;}
.ls99{letter-spacing:0.162324px;}
.ls9a{letter-spacing:0.180000px;}
.ls25{letter-spacing:0.180360px;}
.ls79{letter-spacing:0.246492px;}
.lsa{letter-spacing:0.249408px;}
.ls7b{letter-spacing:0.372960px;}
.ls96{letter-spacing:0.373248px;}
.ls2{letter-spacing:0.420876px;}
.ls5d{letter-spacing:1.790748px;}
.ls5a{letter-spacing:1.793016px;}
.ls63{letter-spacing:2.248200px;}
.ls5b{letter-spacing:2.336040px;}
.ls5f{letter-spacing:3.097800px;}
.ls8b{letter-spacing:4.052088px;}
.ls64{letter-spacing:4.980960px;}
.ls48{letter-spacing:10.092960px;}
.ls62{letter-spacing:11.863800px;}
.ls59{letter-spacing:11.880000px;}
.ls65{letter-spacing:14.736600px;}
.ls66{letter-spacing:15.822000px;}
.ls6a{letter-spacing:16.599132px;}
.ls5e{letter-spacing:19.256040px;}
.ls7f{letter-spacing:25.380000px;}
.ls86{letter-spacing:33.594541px;}
.ls98{letter-spacing:63.564876px;}
.ls49{letter-spacing:77.849388px;}
.ls22{letter-spacing:85.165992px;}
.ls93{letter-spacing:110.454402px;}
.ls87{letter-spacing:160.694888px;}
.ls92{letter-spacing:165.936446px;}
.ls90{letter-spacing:182.297134px;}
.ls81{letter-spacing:220.411944px;}
.ls91{letter-spacing:254.364516px;}
.ls83{letter-spacing:271.892700px;}
.ls80{letter-spacing:303.480000px;}
.ls7d{letter-spacing:343.509817px;}
.ls85{letter-spacing:406.291950px;}
.ls8a{letter-spacing:418.188836px;}
.ls89{letter-spacing:459.005738px;}
.ls88{letter-spacing:590.147064px;}
.ls7c{letter-spacing:680.817160px;}
.ls84{letter-spacing:705.597277px;}
.ls7e{letter-spacing:1005.849687px;}
.ls15{letter-spacing:1429.647588px;}
.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;}
}
.ws11d{word-spacing:-295.350111px;}
.ws10b{word-spacing:-175.068548px;}
.ws9{word-spacing:-108.000000px;}
.wsda{word-spacing:-68.736600px;}
.wsd5{word-spacing:-60.198156px;}
.wsd2{word-spacing:-60.120000px;}
.ws59{word-spacing:-60.059880px;}
.wsd3{word-spacing:-54.086400px;}
.wsd7{word-spacing:-54.081000px;}
.wsdb{word-spacing:-54.000000px;}
.wsd6{word-spacing:-53.724600px;}
.wsd4{word-spacing:-42.229512px;}
.wsd9{word-spacing:-38.761200px;}
.ws10e{word-spacing:-35.148877px;}
.ws10f{word-spacing:-33.257542px;}
.ws109{word-spacing:-33.005880px;}
.ws11b{word-spacing:-33.003005px;}
.ws15{word-spacing:-32.945760px;}
.ws122{word-spacing:-31.937983px;}
.ws11a{word-spacing:-31.227120px;}
.ws115{word-spacing:-30.718526px;}
.ws116{word-spacing:-28.911038px;}
.ws10a{word-spacing:-21.345120px;}
.ws111{word-spacing:-16.232383px;}
.ws11c{word-spacing:-15.168276px;}
.ws10d{word-spacing:-15.144600px;}
.ws12{word-spacing:-15.120180px;}
.ws13{word-spacing:-15.066072px;}
.ws14{word-spacing:-15.030000px;}
.ws124{word-spacing:-15.005952px;}
.ws169{word-spacing:-14.945832px;}
.ws5a{word-spacing:-14.927796px;}
.ws168{word-spacing:-14.873688px;}
.ws5b{word-spacing:-14.849640px;}
.ws110{word-spacing:-14.807556px;}
.ws119{word-spacing:-14.220000px;}
.ws114{word-spacing:-13.988400px;}
.ws121{word-spacing:-13.761150px;}
.ws125{word-spacing:-9.743328px;}
.ws11{word-spacing:-9.720000px;}
.ws97{word-spacing:-9.716112px;}
.ws10c{word-spacing:-9.086850px;}
.wsd8{word-spacing:-9.000000px;}
.ws11e{word-spacing:-8.256450px;}
.ws117{word-spacing:-7.110000px;}
.ws112{word-spacing:-6.994050px;}
.ws129{word-spacing:-3.613212px;}
.ws176{word-spacing:-3.186360px;}
.ws178{word-spacing:-3.114216px;}
.ws17f{word-spacing:-3.054096px;}
.ws133{word-spacing:-2.897784px;}
.wse8{word-spacing:-2.855700px;}
.ws9a{word-spacing:-2.519028px;}
.ws14e{word-spacing:-2.494980px;}
.ws187{word-spacing:-2.164320px;}
.ws16b{word-spacing:-2.152296px;}
.ws196{word-spacing:-1.965924px;}
.ws16c{word-spacing:-1.959912px;}
.ws25{word-spacing:-1.941876px;}
.ws197{word-spacing:-1.929852px;}
.ws1a1{word-spacing:-1.893780px;}
.wsdc{word-spacing:-1.821636px;}
.ws188{word-spacing:-1.809612px;}
.ws58{word-spacing:-1.791576px;}
.wsde{word-spacing:-1.725444px;}
.ws177{word-spacing:-1.711963px;}
.ws24{word-spacing:-1.683360px;}
.wsdd{word-spacing:-1.665324px;}
.ws12c{word-spacing:-1.659312px;}
.ws69{word-spacing:-1.557108px;}
.ws12d{word-spacing:-1.521036px;}
.wsb4{word-spacing:-1.430856px;}
.ws50{word-spacing:-1.424844px;}
.wsb6{word-spacing:-1.352700px;}
.ws19f{word-spacing:-1.208412px;}
.wsb5{word-spacing:-1.172340px;}
.wsac{word-spacing:-1.076148px;}
.wsf7{word-spacing:-1.070136px;}
.ws20{word-spacing:-1.064124px;}
.ws131{word-spacing:-1.052100px;}
.wscf{word-spacing:-1.010016px;}
.ws38{word-spacing:-0.949896px;}
.ws195{word-spacing:-0.889776px;}
.ws130{word-spacing:-0.871740px;}
.ws33{word-spacing:-0.865728px;}
.wsb9{word-spacing:-0.739476px;}
.wsf6{word-spacing:-0.727452px;}
.ws15a{word-spacing:-0.709416px;}
.ws13f{word-spacing:-0.703404px;}
.ws37{word-spacing:-0.655308px;}
.ws52{word-spacing:-0.643284px;}
.ws35{word-spacing:-0.631260px;}
.ws36{word-spacing:-0.619236px;}
.ws51{word-spacing:-0.601200px;}
.ws1a7{word-spacing:-0.583164px;}
.ws199{word-spacing:-0.571140px;}
.ws34{word-spacing:-0.492984px;}
.ws17e{word-spacing:-0.432864px;}
.wse5{word-spacing:-0.426852px;}
.wsa8{word-spacing:-0.408816px;}
.ws1{word-spacing:-0.405288px;}
.ws60{word-spacing:-0.384768px;}
.ws101{word-spacing:-0.378756px;}
.ws86{word-spacing:-0.372744px;}
.ws1b{word-spacing:-0.360720px;}
.ws4e{word-spacing:-0.354708px;}
.ws21{word-spacing:-0.348696px;}
.ws159{word-spacing:-0.342684px;}
.ws5f{word-spacing:-0.312624px;}
.ws18{word-spacing:-0.294588px;}
.ws9b{word-spacing:-0.282564px;}
.ws7f{word-spacing:-0.276552px;}
.ws99{word-spacing:-0.270540px;}
.wsd{word-spacing:-0.270000px;}
.ws23{word-spacing:-0.252504px;}
.ws4{word-spacing:-0.218232px;}
.ws8{word-spacing:-0.216000px;}
.ws19a{word-spacing:-0.192384px;}
.ws5{word-spacing:-0.187056px;}
.wse{word-spacing:-0.183600px;}
.ws3{word-spacing:-0.171468px;}
.ws1a0{word-spacing:-0.156312px;}
.ws0{word-spacing:-0.155880px;}
.wsba{word-spacing:-0.150300px;}
.ws22{word-spacing:-0.132264px;}
.ws8c{word-spacing:-0.126252px;}
.ws7{word-spacing:-0.118800px;}
.wsb{word-spacing:-0.108000px;}
.ws142{word-spacing:-0.090180px;}
.wsa{word-spacing:-0.086400px;}
.ws2c{word-spacing:-0.072144px;}
.wsdf{word-spacing:-0.066132px;}
.ws138{word-spacing:-0.060120px;}
.wsa4{word-spacing:-0.048096px;}
.ws2{word-spacing:-0.046764px;}
.wse1{word-spacing:-0.030060px;}
.wsa6{word-spacing:-0.024048px;}
.wsf{word-spacing:-0.021600px;}
.ws31{word-spacing:-0.018036px;}
.ws6{word-spacing:-0.015588px;}
.ws1d{word-spacing:-0.012024px;}
.ws95{word-spacing:-0.006012px;}
.ws10{word-spacing:0.000000px;}
.ws5e{word-spacing:0.006012px;}
.ws3c{word-spacing:0.012024px;}
.ws83{word-spacing:0.018036px;}
.ws70{word-spacing:0.024048px;}
.ws19{word-spacing:0.030060px;}
.ws1c{word-spacing:0.036072px;}
.ws139{word-spacing:0.042084px;}
.wse4{word-spacing:0.066132px;}
.ws128{word-spacing:0.072144px;}
.ws19b{word-spacing:0.078156px;}
.ws105{word-spacing:0.081000px;}
.ws2b{word-spacing:0.084168px;}
.wsa5{word-spacing:0.090180px;}
.ws94{word-spacing:0.096192px;}
.ws26{word-spacing:0.102204px;}
.wsb8{word-spacing:0.108216px;}
.wsd1{word-spacing:0.114228px;}
.ws67{word-spacing:0.120240px;}
.ws49{word-spacing:0.126252px;}
.ws93{word-spacing:0.132264px;}
.ws17{word-spacing:0.138276px;}
.ws104{word-spacing:0.167400px;}
.ws39{word-spacing:0.168336px;}
.ws30{word-spacing:0.174348px;}
.ws48{word-spacing:0.180360px;}
.ws3b{word-spacing:0.186372px;}
.ws2d{word-spacing:0.192384px;}
.ws106{word-spacing:0.194400px;}
.ws7e{word-spacing:0.198396px;}
.ws3a{word-spacing:0.204408px;}
.ws107{word-spacing:0.205200px;}
.ws186{word-spacing:0.216432px;}
.ws108{word-spacing:0.221400px;}
.ws17a{word-spacing:0.240480px;}
.ws1a3{word-spacing:0.246492px;}
.wsc{word-spacing:0.248400px;}
.ws198{word-spacing:0.252504px;}
.wse0{word-spacing:0.282564px;}
.ws96{word-spacing:0.312624px;}
.ws15e{word-spacing:0.336672px;}
.ws1a{word-spacing:0.342684px;}
.wsbf{word-spacing:0.366732px;}
.wsfa{word-spacing:0.625248px;}
.ws29{word-spacing:0.691380px;}
.wse9{word-spacing:0.709416px;}
.ws40{word-spacing:0.733464px;}
.wsfb{word-spacing:0.751500px;}
.ws1e{word-spacing:0.775548px;}
.ws157{word-spacing:0.799596px;}
.ws28{word-spacing:0.817632px;}
.ws12f{word-spacing:1.082160px;}
.ws6d{word-spacing:1.088172px;}
.ws81{word-spacing:1.142280px;}
.ws6c{word-spacing:1.190376px;}
.ws12e{word-spacing:1.268532px;}
.ws82{word-spacing:1.286568px;}
.ws5c{word-spacing:1.424844px;}
.wse3{word-spacing:1.484964px;}
.ws6e{word-spacing:1.545084px;}
.ws2e{word-spacing:1.797588px;}
.ws7a{word-spacing:1.881756px;}
.wsab{word-spacing:1.887768px;}
.wse2{word-spacing:1.929852px;}
.ws79{word-spacing:1.995984px;}
.ws77{word-spacing:2.014020px;}
.ws2f{word-spacing:2.020032px;}
.ws4b{word-spacing:2.068128px;}
.ws9e{word-spacing:2.161728px;}
.ws4a{word-spacing:2.194380px;}
.ws87{word-spacing:2.200392px;}
.wsbd{word-spacing:2.260512px;}
.wsaa{word-spacing:2.350692px;}
.ws14d{word-spacing:2.531052px;}
.wsd0{word-spacing:2.657304px;}
.wsc8{word-spacing:2.885760px;}
.ws32{word-spacing:2.903796px;}
.ws9d{word-spacing:3.150288px;}
.ws8e{word-spacing:3.186360px;}
.ws9f{word-spacing:3.258504px;}
.ws9c{word-spacing:3.264516px;}
.ws92{word-spacing:3.306600px;}
.ws19c{word-spacing:3.450888px;}
.wsed{word-spacing:3.600000px;}
.ws91{word-spacing:3.613212px;}
.ws156{word-spacing:3.643272px;}
.ws13c{word-spacing:3.661308px;}
.ws8d{word-spacing:3.667320px;}
.ws148{word-spacing:3.709404px;}
.ws147{word-spacing:3.727440px;}
.wsc1{word-spacing:3.781548px;}
.ws171{word-spacing:3.961908px;}
.wsbb{word-spacing:3.979944px;}
.ws1a4{word-spacing:4.064112px;}
.ws15c{word-spacing:4.220424px;}
.ws15b{word-spacing:4.226436px;}
.ws84{word-spacing:4.274532px;}
.ws4c{word-spacing:4.310604px;}
.ws183{word-spacing:4.319568px;}
.wsae{word-spacing:4.322628px;}
.wsad{word-spacing:4.400784px;}
.ws13e{word-spacing:4.418820px;}
.ws13d{word-spacing:4.436856px;}
.ws1a5{word-spacing:4.448880px;}
.ws5d{word-spacing:4.545072px;}
.wsca{word-spacing:4.659300px;}
.wsa1{word-spacing:4.755492px;}
.ws74{word-spacing:5.050080px;}
.ws12b{word-spacing:5.116212px;}
.ws7d{word-spacing:5.122224px;}
.ws18e{word-spacing:5.128236px;}
.ws143{word-spacing:5.398776px;}
.ws3d{word-spacing:5.464908px;}
.ws16d{word-spacing:5.567112px;}
.ws44{word-spacing:5.729436px;}
.wsec{word-spacing:5.753484px;}
.wsee{word-spacing:5.771520px;}
.ws152{word-spacing:5.801580px;}
.ws16a{word-spacing:5.987952px;}
.ws43{word-spacing:6.228432px;}
.ws14b{word-spacing:6.559092px;}
.ws57{word-spacing:6.595164px;}
.ws56{word-spacing:6.685344px;}
.ws181{word-spacing:6.751476px;}
.ws68{word-spacing:6.811596px;}
.ws184{word-spacing:6.841656px;}
.wsbc{word-spacing:6.877728px;}
.ws63{word-spacing:6.925824px;}
.ws144{word-spacing:6.937848px;}
.ws100{word-spacing:6.997968px;}
.wsff{word-spacing:7.009992px;}
.ws182{word-spacing:7.112196px;}
.wsfd{word-spacing:7.226424px;}
.ws55{word-spacing:7.454880px;}
.wsc4{word-spacing:7.587144px;}
.ws1a6{word-spacing:7.707384px;}
.ws155{word-spacing:8.013996px;}
.ws73{word-spacing:8.110188px;}
.ws3e{word-spacing:8.122212px;}
.ws8f{word-spacing:8.278524px;}
.wsb0{word-spacing:8.446860px;}
.ws6f{word-spacing:8.506980px;}
.ws141{word-spacing:8.639244px;}
.wsf4{word-spacing:8.645256px;}
.ws18f{word-spacing:8.651268px;}
.wsf5{word-spacing:8.717400px;}
.ws180{word-spacing:9.408780px;}
.wsb3{word-spacing:9.727416px;}
.ws41{word-spacing:9.751464px;}
.wsc0{word-spacing:10.100160px;}
.ws46{word-spacing:10.208376px;}
.ws4d{word-spacing:10.256472px;}
.wscd{word-spacing:10.539036px;}
.wscb{word-spacing:10.551060px;}
.ws134{word-spacing:10.557072px;}
.ws72{word-spacing:10.791540px;}
.wsce{word-spacing:10.815588px;}
.wscc{word-spacing:11.068092px;}
.ws3f{word-spacing:11.170296px;}
.ws64{word-spacing:11.512980px;}
.ws42{word-spacing:11.549052px;}
.wsb2{word-spacing:11.627208px;}
.ws65{word-spacing:11.651256px;}
.ws2a{word-spacing:12.090132px;}
.wsf0{word-spacing:12.198348px;}
.wsb1{word-spacing:12.264480px;}
.wsa3{word-spacing:12.432816px;}
.ws17d{word-spacing:12.510972px;}
.ws1f{word-spacing:12.625200px;}
.ws135{word-spacing:12.685320px;}
.ws17c{word-spacing:12.697344px;}
.ws136{word-spacing:12.871692px;}
.ws137{word-spacing:12.925800px;}
.ws14c{word-spacing:12.949848px;}
.ws174{word-spacing:12.967884px;}
.ws153{word-spacing:13.316580px;}
.wsbe{word-spacing:13.659264px;}
.ws13a{word-spacing:13.689324px;}
.ws170{word-spacing:13.701348px;}
.ws7c{word-spacing:13.773492px;}
.ws189{word-spacing:14.032008px;}
.wsc7{word-spacing:14.038020px;}
.ws45{word-spacing:14.116176px;}
.ws13b{word-spacing:14.242428px;}
.wse6{word-spacing:14.350644px;}
.wse7{word-spacing:14.380704px;}
.wsf1{word-spacing:14.428800px;}
.ws8a{word-spacing:15.354648px;}
.wseb{word-spacing:15.547032px;}
.wsc6{word-spacing:15.853644px;}
.ws175{word-spacing:16.202340px;}
.wsa7{word-spacing:16.226388px;}
.wsf3{word-spacing:16.827588px;}
.ws98{word-spacing:16.911756px;}
.wsf2{word-spacing:16.917768px;}
.ws17b{word-spacing:17.374680px;}
.ws62{word-spacing:18.504936px;}
.ws61{word-spacing:18.601128px;}
.wsfc{word-spacing:18.805536px;}
.ws90{word-spacing:18.811548px;}
.ws47{word-spacing:18.931788px;}
.ws89{word-spacing:19.088100px;}
.ws53{word-spacing:19.172268px;}
.ws154{word-spacing:20.512944px;}
.ws132{word-spacing:20.615148px;}
.ws6a{word-spacing:20.717352px;}
.ws54{word-spacing:20.897712px;}
.ws88{word-spacing:20.987892px;}
.wsfe{word-spacing:21.240396px;}
.ws27{word-spacing:21.276468px;}
.ws158{word-spacing:21.444804px;}
.wsb7{word-spacing:21.589092px;}
.ws145{word-spacing:21.817548px;}
.ws146{word-spacing:21.985884px;}
.ws4f{word-spacing:22.653216px;}
.ws71{word-spacing:23.062032px;}
.ws12a{word-spacing:23.128164px;}
.ws190{word-spacing:23.729364px;}
.ws16f{word-spacing:24.498900px;}
.wsaf{word-spacing:25.557012px;}
.wsa2{word-spacing:25.737372px;}
.ws127{word-spacing:25.917732px;}
.ws16{word-spacing:25.959816px;}
.ws140{word-spacing:26.134164px;}
.ws18d{word-spacing:26.290476px;}
.wsc9{word-spacing:27.017928px;}
.wsea{word-spacing:27.066024px;}
.ws14a{word-spacing:27.240372px;}
.wsa9{word-spacing:28.082052px;}
.ws193{word-spacing:28.671228px;}
.wsf9{word-spacing:30.252384px;}
.wsf8{word-spacing:30.673224px;}
.ws75{word-spacing:30.709296px;}
.ws76{word-spacing:30.715308px;}
.ws18c{word-spacing:31.045968px;}
.ws126{word-spacing:31.334544px;}
.ws149{word-spacing:31.827528px;}
.ws179{word-spacing:32.386644px;}
.wsa0{word-spacing:32.741352px;}
.ws192{word-spacing:34.310484px;}
.ws102{word-spacing:34.581024px;}
.ws191{word-spacing:34.635132px;}
.ws173{word-spacing:34.659180px;}
.ws172{word-spacing:34.785432px;}
.ws6b{word-spacing:36.937728px;}
.wsef{word-spacing:37.328508px;}
.ws18a{word-spacing:39.240324px;}
.ws18b{word-spacing:42.504840px;}
.ws19e{word-spacing:44.458740px;}
.ws66{word-spacing:44.771364px;}
.ws16e{word-spacing:45.348516px;}
.ws7b{word-spacing:45.480780px;}
.ws8b{word-spacing:45.799416px;}
.wsc5{word-spacing:46.995804px;}
.ws14f{word-spacing:47.194200px;}
.wsc2{word-spacing:48.456720px;}
.wsc3{word-spacing:48.510828px;}
.ws163{word-spacing:49.677156px;}
.ws166{word-spacing:50.230260px;}
.ws167{word-spacing:50.254308px;}
.ws162{word-spacing:50.308416px;}
.ws80{word-spacing:51.222240px;}
.ws194{word-spacing:54.198180px;}
.ws151{word-spacing:54.486756px;}
.ws150{word-spacing:54.498780px;}
.ws85{word-spacing:55.791360px;}
.ws15d{word-spacing:56.879532px;}
.ws78{word-spacing:58.412592px;}
.ws185{word-spacing:75.324348px;}
.ws1a2{word-spacing:75.402504px;}
.ws19d{word-spacing:76.695084px;}
.ws164{word-spacing:79.869420px;}
.ws165{word-spacing:79.881444px;}
.ws161{word-spacing:80.188056px;}
.ws160{word-spacing:110.067696px;}
.ws15f{word-spacing:140.308056px;}
.ws103{word-spacing:507.735000px;}
.ws118{word-spacing:728.191620px;}
.ws123{word-spacing:759.776114px;}
.ws113{word-spacing:769.366186px;}
.ws120{word-spacing:829.479722px;}
.ws11f{word-spacing:1026.796343px;}
._c{margin-left:-508.113000px;}
._33{margin-left:-445.501529px;}
._39{margin-left:-425.858052px;}
._25{margin-left:-413.553058px;}
._2a{margin-left:-391.459536px;}
._2c{margin-left:-381.960576px;}
._2b{margin-left:-371.426400px;}
._17{margin-left:-360.859471px;}
._12{margin-left:-336.325219px;}
._13{margin-left:-326.572097px;}
._1f{margin-left:-316.912877px;}
._37{margin-left:-273.417298px;}
._3c{margin-left:-209.136453px;}
._14{margin-left:-193.372311px;}
._35{margin-left:-191.324021px;}
._15{margin-left:-186.526951px;}
._24{margin-left:-185.312728px;}
._16{margin-left:-180.520537px;}
._36{margin-left:-170.434380px;}
._11{margin-left:-157.704099px;}
._10{margin-left:-137.905670px;}
._20{margin-left:-129.098973px;}
._27{margin-left:-126.347544px;}
._38{margin-left:-125.221328px;}
._3a{margin-left:-124.180618px;}
._22{margin-left:-120.154761px;}
._34{margin-left:-100.391827px;}
._2f{margin-left:-99.253822px;}
._2e{margin-left:-94.115673px;}
._3b{margin-left:-89.849301px;}
._30{margin-left:-84.218305px;}
._29{margin-left:-71.501004px;}
._21{margin-left:-70.368536px;}
._32{margin-left:-62.655807px;}
._28{margin-left:-60.827472px;}
._2d{margin-left:-58.398696px;}
._31{margin-left:-53.904711px;}
._23{margin-left:-48.136882px;}
._49{margin-left:-45.095112px;}
._26{margin-left:-43.948332px;}
._3f{margin-left:-29.879640px;}
._46{margin-left:-27.961524px;}
._18{margin-left:-25.779204px;}
._3{margin-left:-19.953828px;}
._f{margin-left:-14.504400px;}
._47{margin-left:-11.344644px;}
._2{margin-left:-7.917228px;}
._b{margin-left:-3.636636px;}
._0{margin-left:-1.460916px;}
._1{width:1.238184px;}
._a{width:2.257704px;}
._48{width:4.364712px;}
._9{width:8.381772px;}
._3e{width:29.074032px;}
._6{width:43.202232px;}
._41{width:47.302416px;}
._3d{width:50.144544px;}
._40{width:58.076208px;}
._8{width:69.216156px;}
._7{width:76.989672px;}
._45{width:78.083856px;}
._42{width:83.218104px;}
._5{width:88.425144px;}
._43{width:112.129812px;}
._44{width:142.460640px;}
._e{width:203.056200px;}
._1a{width:212.928912px;}
._19{width:230.217516px;}
._d{width:251.278200px;}
._1c{width:277.321536px;}
._1b{width:291.870576px;}
._1e{width:294.960744px;}
._1d{width:296.722260px;}
._4{width:382.405896px;}
.fc2{color:rgb(46,116,181);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs11{font-size:27.976200px;}
.fs14{font-size:28.440000px;}
.fsf{font-size:29.567181px;}
.fs1a{font-size:33.025800px;}
.fs9{font-size:36.000000px;}
.fsc{font-size:36.347400px;}
.fs5{font-size:38.880000px;}
.fsa{font-size:42.120000px;}
.fs6{font-size:47.880000px;}
.fs1d{font-size:51.120000px;}
.fs8{font-size:54.000000px;}
.fs1b{font-size:55.044600px;}
.fs12{font-size:55.953600px;}
.fs15{font-size:56.880000px;}
.fs1c{font-size:58.174833px;}
.fs10{font-size:59.135498px;}
.fs16{font-size:60.114763px;}
.fs4{font-size:60.120000px;}
.fsd{font-size:60.578400px;}
.fs7{font-size:63.539045px;}
.fse{font-size:64.023456px;}
.fs0{font-size:65.880000px;}
.fs17{font-size:74.655000px;}
.fs18{font-size:88.759800px;}
.fs13{font-size:88.875000px;}
.fs19{font-size:92.199000px;}
.fs3{font-size:96.120000px;}
.fsb{font-size:97.683600px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:155.880000px;}
.y0{bottom:0.000000px;}
.ybe{bottom:1.890600px;}
.yb5{bottom:1.980450px;}
.y1d5{bottom:3.240450px;}
.y14e{bottom:9.180450px;}
.y144{bottom:22.230450px;}
.y18{bottom:88.861143px;}
.yd6{bottom:111.990459px;}
.y226{bottom:117.660450px;}
.y8a{bottom:118.651260px;}
.y1ea{bottom:119.190450px;}
.y58{bottom:124.050450px;}
.yac{bottom:126.660666px;}
.y116{bottom:126.660855px;}
.yd5{bottom:127.740450px;}
.yd3{bottom:129.269811px;}
.yd4{bottom:129.270450px;}
.y106{bottom:131.160864px;}
.y225{bottom:134.940450px;}
.y89{bottom:135.931251px;}
.y13d{bottom:137.730330px;}
.y187{bottom:138.270837px;}
.y57{bottom:141.330450px;}
.y51{bottom:142.500450px;}
.y115{bottom:143.850666px;}
.yab{bottom:143.940657px;}
.yd2{bottom:147.630459px;}
.y105{bottom:148.440855px;}
.y224{bottom:152.222025px;}
.y88{bottom:153.121062px;}
.y13c{bottom:154.920141px;}
.y186{bottom:155.460648px;}
.y56{bottom:158.610450px;}
.y50{bottom:159.690450px;}
.yaa{bottom:161.130468px;}
.y114{bottom:161.130657px;}
.yd1{bottom:164.910405px;}
.y1e9{bottom:165.720450px;}
.y104{bottom:165.720846px;}
.y223{bottom:169.411836px;}
.y87{bottom:170.401053px;}
.y13b{bottom:172.200132px;}
.y185{bottom:172.740639px;}
.y55{bottom:175.800450px;}
.y4f{bottom:176.970450px;}
.ya9{bottom:178.410459px;}
.y113{bottom:178.410648px;}
.yd0{bottom:182.190396px;}
.y103{bottom:182.910657px;}
.y222{bottom:186.691827px;}
.y86{bottom:187.681044px;}
.y1e8{bottom:188.940450px;}
.y13a{bottom:189.480123px;}
.y184{bottom:189.931521px;}
.y54{bottom:193.080450px;}
.y4e{bottom:194.250450px;}
.y112{bottom:195.600459px;}
.ya8{bottom:195.690639px;}
.ycf{bottom:195.960882px;}
.y16{bottom:198.570450px;}
.y102{bottom:200.190648px;}
.y221{bottom:203.881638px;}
.y85{bottom:204.870855px;}
.y139{bottom:206.669934px;}
.y183{bottom:208.380846px;}
.y4d{bottom:211.440450px;}
.y1e7{bottom:212.250450px;}
.y111{bottom:212.880459px;}
.ya7{bottom:212.881845px;}
.y101{bottom:217.470639px;}
.y138{bottom:220.530600px;}
.y220{bottom:221.161629px;}
.y84{bottom:222.150846px;}
.y182{bottom:225.570657px;}
.y4c{bottom:228.720450px;}
.y110{bottom:230.160063px;}
.ya6{bottom:230.161836px;}
.y100{bottom:234.660873px;}
.y1e6{bottom:235.470450px;}
.y21f{bottom:238.441620px;}
.y83{bottom:239.160297px;}
.y181{bottom:242.850648px;}
.y15{bottom:243.211350px;}
.y4b{bottom:246.000450px;}
.y10f{bottom:247.349874px;}
.ya5{bottom:247.441827px;}
.yff{bottom:251.940864px;}
.y21e{bottom:255.631431px;}
.y82{bottom:256.620648px;}
.y1e5{bottom:258.690450px;}
.y180{bottom:260.130639px;}
.y10e{bottom:261.210540px;}
.y4a{bottom:263.190450px;}
.ya4{bottom:264.631638px;}
.yfe{bottom:269.220855px;}
.y21d{bottom:272.731062px;}
.y81{bottom:273.900639px;}
.y17f{bottom:277.320450px;}
.y1e3{bottom:277.590000px;}
.y49{bottom:280.470450px;}
.y1e4{bottom:280.830450px;}
.ya3{bottom:281.911629px;}
.yfd{bottom:286.410666px;}
.y21c{bottom:290.011053px;}
.y14{bottom:290.820450px;}
.y80{bottom:291.091023px;}
.y48{bottom:297.660450px;}
.ya2{bottom:299.191620px;}
.y17e{bottom:299.370711px;}
.y1e2{bottom:300.000846px;}
.yfc{bottom:303.690657px;}
.y21b{bottom:307.381224px;}
.y7f{bottom:308.371014px;}
.y47{bottom:314.940450px;}
.ya1{bottom:316.381431px;}
.y1e1{bottom:317.190657px;}
.y17d{bottom:319.530540px;}
.yfb{bottom:320.970648px;}
.y21a{bottom:324.661215px;}
.y7e{bottom:325.651005px;}
.y46{bottom:332.220450px;}
.ya0{bottom:333.661422px;}
.y1e0{bottom:334.470648px;}
.yfa{bottom:338.160459px;}
.y219{bottom:341.941206px;}
.y17c{bottom:342.030450px;}
.y13{bottom:342.650235px;}
.y7d{bottom:342.840816px;}
.y45{bottom:349.230315px;}
.y53{bottom:349.410450px;}
.y9f{bottom:350.941413px;}
.y1df{bottom:351.750639px;}
.yf9{bottom:355.440450px;}
.y218{bottom:359.131017px;}
.y7c{bottom:360.120807px;}
.y17b{bottom:362.100450px;}
.y44{bottom:366.510306px;}
.y52{bottom:366.690450px;}
.y9e{bottom:368.131224px;}
.y1de{bottom:368.940450px;}
.yf8{bottom:372.721467px;}
.y217{bottom:376.411008px;}
.y7b{bottom:377.400798px;}
.y17a{bottom:383.790600px;}
.y43{bottom:383.970657px;}
.y9d{bottom:385.411215px;}
.yf7{bottom:389.911278px;}
.y1dd{bottom:392.250600px;}
.y216{bottom:393.690999px;}
.y7a{bottom:394.590609px;}
.y42{bottom:401.160468px;}
.y9c{bottom:402.691206px;}
.y179{bottom:403.320675px;}
.y12{bottom:406.011558px;}
.yf6{bottom:407.191269px;}
.y215{bottom:410.700450px;}
.y79{bottom:411.870600px;}
.yce{bottom:413.130855px;}
.y1dc{bottom:415.470450px;}
.y41{bottom:418.440459px;}
.y9b{bottom:419.881017px;}
.y178{bottom:420.600666px;}
.yf5{bottom:424.381080px;}
.y78{bottom:428.250600px;}
.y214{bottom:429.061098px;}
.ycd{bottom:430.410846px;}
.y9a{bottom:433.651503px;}
.y40{bottom:435.721005px;}
.y137{bottom:436.171071px;}
.y177{bottom:437.880657px;}
.y1db{bottom:438.690450px;}
.ybd{bottom:440.220000px;}
.yf4{bottom:441.661071px;}
.ybf{bottom:443.640450px;}
.ybc{bottom:443.640459px;}
.y213{bottom:447.600603px;}
.ycc{bottom:447.600657px;}
.y3f{bottom:452.730456px;}
.y136{bottom:453.451062px;}
.y176{bottom:455.070468px;}
.yf3{bottom:458.941062px;}
.yc0{bottom:460.920441px;}
.ybb{bottom:460.920450px;}
.y1da{bottom:462.000450px;}
.y212{bottom:464.790414px;}
.ycb{bottom:464.880648px;}
.y11{bottom:469.372881px;}
.y3e{bottom:470.190807px;}
.y135{bottom:470.731053px;}
.y175{bottom:472.350459px;}
.yb4{bottom:475.410000px;}
.yf2{bottom:476.130873px;}
.y10d{bottom:476.850459px;}
.yb6{bottom:478.920450px;}
.yb3{bottom:478.920609px;}
.y211{bottom:482.070405px;}
.yca{bottom:482.160639px;}
.y1d9{bottom:485.220450px;}
.y3d{bottom:487.470798px;}
.y134{bottom:487.920864px;}
.y174{bottom:489.630846px;}
.yf1{bottom:493.410864px;}
.y10c{bottom:494.130459px;}
.yb9{bottom:496.200441px;}
.yb2{bottom:496.200639px;}
.y210{bottom:499.260216px;}
.yc9{bottom:499.349982px;}
.y3c{bottom:504.660609px;}
.y133{bottom:505.200855px;}
.y173{bottom:506.820657px;}
.y1d8{bottom:508.440600px;}
.yf0{bottom:510.690855px;}
.y10b{bottom:511.410054px;}
.yb8{bottom:513.390252px;}
.yb1{bottom:513.390459px;}
.y20f{bottom:516.540207px;}
.yc8{bottom:516.629973px;}
.y3b{bottom:521.941485px;}
.y132{bottom:522.480846px;}
.y172{bottom:524.100648px;}
.yef{bottom:527.880666px;}
.y10a{bottom:528.599865px;}
.yba{bottom:530.489883px;}
.yb7{bottom:530.670243px;}
.yb0{bottom:530.670450px;}
.y1d7{bottom:531.750450px;}
.y10{bottom:532.734204px;}
.yc7{bottom:533.909964px;}
.y20e{bottom:534.900855px;}
.y3a{bottom:539.221476px;}
.y131{bottom:539.670657px;}
.y171{bottom:541.290459px;}
.y109{bottom:542.370351px;}
.yee{bottom:545.160657px;}
.y1d4{bottom:550.560000px;}
.yc6{bottom:551.099775px;}
.yaf{bottom:551.550450px;}
.y20d{bottom:552.090666px;}
.y1d6{bottom:553.800450px;}
.y39{bottom:556.411287px;}
.y130{bottom:556.950648px;}
.y170{bottom:558.571476px;}
.yed{bottom:562.440648px;}
.yc5{bottom:564.870261px;}
.y20c{bottom:569.370657px;}
.yae{bottom:572.340450px;}
.y1d3{bottom:572.970648px;}
.y38{bottom:573.691278px;}
.y12f{bottom:574.230639px;}
.y16f{bottom:575.671107px;}
.yec{bottom:579.630459px;}
.y20b{bottom:586.650648px;}
.y1d2{bottom:590.250639px;}
.yad{bottom:590.340450px;}
.y37{bottom:590.971269px;}
.y12e{bottom:591.420450px;}
.y168{bottom:593.130600px;}
.yf{bottom:596.185158px;}
.yeb{bottom:596.910225px;}
.y165{bottom:600.960182px;}
.y20a{bottom:603.840459px;}
.y16b{bottom:604.740450px;}
.y163{bottom:604.830450px;}
.y1d1{bottom:607.440801px;}
.y36{bottom:608.161080px;}
.y12d{bottom:608.700648px;}
.y167{bottom:610.680385px;}
.yea{bottom:610.680711px;}
.y169{bottom:611.580450px;}
.y166{bottom:612.480490px;}
.y164{bottom:612.570450px;}
.y16e{bottom:614.099813px;}
.y16d{bottom:614.460254px;}
.y16c{bottom:616.350300px;}
.y77{bottom:617.611269px;}
.y209{bottom:621.120009px;}
.y16a{bottom:623.100758px;}
.y1d0{bottom:624.720792px;}
.y35{bottom:625.441071px;}
.y12c{bottom:625.980639px;}
.y76{bottom:634.801080px;}
.y162{bottom:636.870279px;}
.y208{bottom:639.480657px;}
.y1cf{bottom:642.000783px;}
.y34{bottom:642.450522px;}
.y12b{bottom:643.170459px;}
.y75{bottom:652.081071px;}
.y161{bottom:654.239802px;}
.y207{bottom:656.670468px;}
.y1ce{bottom:659.190594px;}
.ye{bottom:659.546481px;}
.y33{bottom:659.730513px;}
.y12a{bottom:660.449154px;}
.y74{bottom:669.361062px;}
.y160{bottom:672.601512px;}
.y206{bottom:673.950459px;}
.y99{bottom:675.661557px;}
.y1cd{bottom:676.470585px;}
.y129{bottom:677.999685px;}
.y73{bottom:686.550873px;}
.y15f{bottom:691.050837px;}
.y205{bottom:691.230180px;}
.y98{bottom:692.941548px;}
.y1cc{bottom:693.660396px;}
.y128{bottom:694.110450px;}
.y32{bottom:694.380675px;}
.y127{bottom:697.171431px;}
.y72{bottom:703.830864px;}
.y15e{bottom:708.240648px;}
.y204{bottom:708.419991px;}
.y97{bottom:710.131359px;}
.y1cb{bottom:710.940387px;}
.y31{bottom:711.660666px;}
.y126{bottom:714.810639px;}
.y71{bottom:721.110855px;}
.yd{bottom:722.907804px;}
.y96{bottom:723.901845px;}
.y15d{bottom:725.520639px;}
.y203{bottom:725.699982px;}
.y1ca{bottom:728.220378px;}
.y30{bottom:728.940657px;}
.y125{bottom:732.001773px;}
.y70{bottom:738.300666px;}
.y15c{bottom:742.709730px;}
.y202{bottom:743.970459px;}
.y1c9{bottom:745.410189px;}
.y2f{bottom:746.130468px;}
.y108{bottom:747.121035px;}
.y124{bottom:749.640981px;}
.y6f{bottom:755.580657px;}
.y15b{bottom:761.070378px;}
.y201{bottom:761.250159px;}
.y1c8{bottom:762.690180px;}
.y2e{bottom:763.410459px;}
.y14d{bottom:764.130000px;}
.y150{bottom:767.100000px;}
.y6e{bottom:772.590108px;}
.y14c{bottom:776.100000px;}
.y14f{bottom:776.100450px;}
.y200{bottom:778.530150px;}
.y15a{bottom:779.431026px;}
.y1c7{bottom:779.970171px;}
.y2d{bottom:780.691665px;}
.y14a{bottom:785.370450px;}
.yc{bottom:786.269127px;}
.y6d{bottom:790.050459px;}
.y23b{bottom:794.640864px;}
.y1ff{bottom:796.800618px;}
.y1c6{bottom:797.159982px;}
.y2c{bottom:797.881476px;}
.y159{bottom:797.881854px;}
.y14b{bottom:800.400000px;}
.y149{bottom:800.940000px;}
.y6c{bottom:807.330450px;}
.y23a{bottom:811.920855px;}
.y1fe{bottom:814.080609px;}
.y1c5{bottom:814.439973px;}
.y2b{bottom:815.161467px;}
.y158{bottom:815.161845px;}
.y148{bottom:816.420600px;}
.y6b{bottom:826.410450px;}
.y143{bottom:828.660000px;}
.y239{bottom:829.110666px;}
.y1fd{bottom:831.361026px;}
.y1c4{bottom:831.719964px;}
.y147{bottom:831.720150px;}
.y157{bottom:832.351656px;}
.ye9{bottom:832.440846px;}
.y2a{bottom:832.441458px;}
.yc4{bottom:842.880171px;}
.y146{bottom:844.680150px;}
.y238{bottom:846.390657px;}
.y142{bottom:847.020900px;}
.y1fc{bottom:848.550837px;}
.y1bc{bottom:848.640971px;}
.y6a{bottom:849.180600px;}
.yb{bottom:849.630450px;}
.ye8{bottom:849.630657px;}
.y29{bottom:849.631269px;}
.y156{bottom:849.631647px;}
.y145{bottom:853.680600px;}
.y1c0{bottom:855.030216px;}
.y1ba{bottom:855.840174px;}
.y1c3{bottom:859.259865px;}
.y1b6{bottom:859.260450px;}
.y1b7{bottom:859.350450px;}
.yc3{bottom:860.160162px;}
.y141{bottom:862.590450px;}
.y237{bottom:863.670648px;}
.y1bf{bottom:865.470497px;}
.y1bb{bottom:866.280455px;}
.y1b9{bottom:866.370450px;}
.ye7{bottom:866.910648px;}
.y28{bottom:866.911260px;}
.y1fb{bottom:866.911485px;}
.y155{bottom:866.911638px;}
.y69{bottom:867.180600px;}
.y1c2{bottom:869.700450px;}
.y1c1{bottom:869.701035px;}
.y1b8{bottom:869.790600px;}
.y1be{bottom:875.910778px;}
.yc2{bottom:877.349973px;}
.y140{bottom:878.070900px;}
.y1bd{bottom:878.790628px;}
.y236{bottom:880.860459px;}
.y1fa{bottom:884.011116px;}
.y154{bottom:884.101449px;}
.ye6{bottom:884.190639px;}
.y27{bottom:884.191251px;}
.y68{bottom:884.371341px;}
.yc1{bottom:891.120459px;}
.y1ac{bottom:891.570774px;}
.y13f{bottom:893.640450px;}
.y235{bottom:898.140450px;}
.y1b3{bottom:898.860189px;}
.y1a9{bottom:898.860297px;}
.y26{bottom:901.381062px;}
.ye5{bottom:901.381269px;}
.y1f9{bottom:901.381287px;}
.y153{bottom:901.381440px;}
.y67{bottom:901.651332px;}
.y1ad{bottom:902.460450px;}
.y1a7{bottom:902.640450px;}
.y1b5{bottom:903.270450px;}
.ya{bottom:904.888902px;}
.y1ab{bottom:907.950432px;}
.y1af{bottom:908.850450px;}
.y1aa{bottom:909.390207px;}
.y13e{bottom:909.930450px;}
.y1b0{bottom:910.110342px;}
.y1a8{bottom:910.110450px;}
.y1ae{bottom:911.549874px;}
.y1b4{bottom:912.990360px;}
.y234{bottom:915.060450px;}
.y25{bottom:918.661053px;}
.ye4{bottom:918.661260px;}
.y1f8{bottom:918.661278px;}
.y152{bottom:918.661431px;}
.y66{bottom:918.931323px;}
.y1b2{bottom:919.380360px;}
.y1b1{bottom:921.630675px;}
.y233{bottom:933.690450px;}
.y1a6{bottom:934.140279px;}
.y24{bottom:935.760684px;}
.y151{bottom:935.851242px;}
.y123{bottom:935.940837px;}
.ye3{bottom:935.941251px;}
.y1f7{bottom:935.941269px;}
.y65{bottom:936.121134px;}
.y9{bottom:938.639226px;}
.y232{bottom:950.970450px;}
.y1a5{bottom:951.510450px;}
.y107{bottom:951.871719px;}
.y122{bottom:953.130648px;}
.y23{bottom:953.130855px;}
.ye2{bottom:953.131062px;}
.y1f6{bottom:953.131080px;}
.y64{bottom:953.401125px;}
.y1a3{bottom:956.370010px;}
.y19a{bottom:958.259609px;}
.y194{bottom:961.770931px;}
.y1a1{bottom:965.370146px;}
.y19f{bottom:968.069762px;}
.y231{bottom:968.250450px;}
.y198{bottom:968.970297px;}
.y121{bottom:970.410639px;}
.y22{bottom:970.410846px;}
.ye1{bottom:970.411053px;}
.y1f5{bottom:970.411071px;}
.y95{bottom:970.411881px;}
.y63{bottom:970.681116px;}
.y8{bottom:972.389550px;}
.y192{bottom:972.480450px;}
.y1a2{bottom:974.820709px;}
.y19c{bottom:977.880018px;}
.y191{bottom:978.600450px;}
.y19d{bottom:978.780450px;}
.y19b{bottom:978.959899px;}
.y1a0{bottom:978.960197px;}
.y199{bottom:979.320093px;}
.y197{bottom:980.310450px;}
.y196{bottom:981.391061px;}
.y195{bottom:982.470965px;}
.y193{bottom:982.830467px;}
.y1a4{bottom:983.729921px;}
.y21{bottom:987.600657px;}
.ye0{bottom:987.600864px;}
.y1f4{bottom:987.600882px;}
.y120{bottom:987.601071px;}
.y94{bottom:987.601692px;}
.y62{bottom:987.870927px;}
.y230{bottom:988.140450px;}
.y19e{bottom:989.130245px;}
.y190{bottom:1003.621584px;}
.y22f{bottom:1004.880450px;}
.y20{bottom:1004.880648px;}
.ydf{bottom:1004.880855px;}
.y1f3{bottom:1004.880873px;}
.y11f{bottom:1004.881062px;}
.y93{bottom:1004.881683px;}
.y61{bottom:1005.150918px;}
.y7{bottom:1006.139874px;}
.y18f{bottom:1020.991755px;}
.y22e{bottom:1022.160450px;}
.y1f{bottom:1022.160639px;}
.yde{bottom:1022.160846px;}
.y1f2{bottom:1022.160864px;}
.y11e{bottom:1022.161053px;}
.y92{bottom:1022.161674px;}
.y60{bottom:1022.430909px;}
.y18e{bottom:1038.271746px;}
.y22d{bottom:1039.350450px;}
.ydd{bottom:1039.350657px;}
.y1f1{bottom:1039.350675px;}
.y11d{bottom:1039.350864px;}
.y91{bottom:1039.351485px;}
.y5f{bottom:1039.620720px;}
.y6{bottom:1039.890198px;}
.y1e{bottom:1044.570450px;}
.y18d{bottom:1055.551737px;}
.ydc{bottom:1056.630648px;}
.y1f0{bottom:1056.630666px;}
.y1d{bottom:1056.630819px;}
.y11c{bottom:1056.630855px;}
.y22c{bottom:1056.631143px;}
.y90{bottom:1056.631476px;}
.y5e{bottom:1056.720351px;}
.y18c{bottom:1072.741548px;}
.y5{bottom:1073.549937px;}
.y8f{bottom:1073.731107px;}
.y1c{bottom:1073.731953px;}
.ydb{bottom:1073.910639px;}
.y1ef{bottom:1073.910657px;}
.y11b{bottom:1073.910846px;}
.y22b{bottom:1073.911134px;}
.y5d{bottom:1074.000342px;}
.y18b{bottom:1089.931359px;}
.yda{bottom:1091.100459px;}
.y1ee{bottom:1091.100468px;}
.y11a{bottom:1091.100657px;}
.y22a{bottom:1091.100945px;}
.y8e{bottom:1091.101278px;}
.y5c{bottom:1092.090450px;}
.y4{bottom:1107.300261px;}
.y1b{bottom:1108.201755px;}
.yd9{bottom:1108.380261px;}
.y5b{bottom:1108.380450px;}
.y1ed{bottom:1108.380459px;}
.y119{bottom:1108.380648px;}
.y18a{bottom:1108.380684px;}
.y229{bottom:1108.380936px;}
.y8d{bottom:1108.381269px;}
.y8c{bottom:1125.480900px;}
.y1a{bottom:1125.481746px;}
.yd8{bottom:1125.660252px;}
.y5a{bottom:1125.660450px;}
.y1ec{bottom:1125.660603px;}
.y118{bottom:1125.660639px;}
.y189{bottom:1125.660675px;}
.y228{bottom:1125.660927px;}
.y3{bottom:1141.050585px;}
.y8b{bottom:1142.670711px;}
.y19{bottom:1142.671557px;}
.yd7{bottom:1142.850063px;}
.y1eb{bottom:1142.850414px;}
.y59{bottom:1142.850450px;}
.y188{bottom:1142.850486px;}
.y227{bottom:1142.850738px;}
.y117{bottom:1142.851179px;}
.y17{bottom:1163.910450px;}
.y2{bottom:1174.081170px;}
.y1{bottom:1194.240450px;}
.h11{height:10.620000px;}
.h10{height:10.710000px;}
.h4f{height:18.180000px;}
.h34{height:19.424881px;}
.h37{height:19.438541px;}
.h3b{height:19.746914px;}
.h41{height:19.760801px;}
.h46{height:22.931000px;}
.h4a{height:22.947126px;}
.h2b{height:25.237306px;}
.h2e{height:25.255054px;}
.h38{height:25.909127px;}
.h3e{height:26.343105px;}
.h8{height:27.014766px;}
.h23{height:27.166641px;}
.h32{height:27.387179px;}
.h54{height:35.519414px;}
.h20{height:37.518708px;}
.h1f{height:37.520508px;}
.h26{height:37.731445px;}
.h48{height:38.219444px;}
.h4c{height:38.246321px;}
.h35{height:38.850595px;}
.h36{height:38.877916px;}
.h3d{height:39.493828px;}
.h27{height:39.510000px;}
.h40{height:39.521602px;}
.h19{height:41.743441px;}
.hc{height:41.743477px;}
.h13{height:41.743657px;}
.h17{height:41.744377px;}
.h1a{height:41.745025px;}
.h18{height:41.745061px;}
.h6{height:41.772832px;}
.h16{height:41.773588px;}
.h51{height:41.773912px;}
.h50{height:41.773996px;}
.h12{height:41.774704px;}
.h1e{height:42.007676px;}
.h2d{height:42.091339px;}
.h1{height:43.909277px;}
.h53{height:43.929844px;}
.h22{height:46.170000px;}
.h15{height:47.863477px;}
.h31{height:47.892232px;}
.hd{height:48.250499px;}
.he{height:48.254063px;}
.h1b{height:51.385235px;}
.h1c{height:51.386603px;}
.h49{height:51.387126px;}
.h52{height:51.519375px;}
.h39{height:51.828115px;}
.h47{height:51.900549px;}
.h3f{height:52.686211px;}
.h4d{height:53.885575px;}
.h3c{height:53.894440px;}
.h1d{height:54.247676px;}
.h33{height:54.775410px;}
.h4b{height:55.167257px;}
.h42{height:55.682473px;}
.ha{height:55.687324px;}
.h29{height:55.689916px;}
.h28{height:55.690204px;}
.h30{height:56.111926px;}
.h14{height:58.854281px;}
.hb{height:58.975137px;}
.h2f{height:59.302977px;}
.hf{height:59.868248px;}
.h7{height:60.589687px;}
.h9{height:62.703281px;}
.h5{height:64.064355px;}
.h21{height:64.369645px;}
.h4e{height:65.629688px;}
.h43{height:69.150652px;}
.h25{height:73.733245px;}
.h24{height:78.771445px;}
.h44{height:82.215498px;}
.h3a{height:82.322205px;}
.h45{height:85.401125px;}
.h2c{height:88.530741px;}
.h4{height:89.068359px;}
.h2a{height:90.481342px;}
.h2{height:103.894629px;}
.h3{height:128.555332px;}
.h0{height:1263.000000px;}
.w2{width:2.700000px;}
.w3{width:3.780000px;}
.w4{width:15.750000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.xf{left:59.578812px;}
.x8{left:85.050000px;}
.x1b{left:90.000000px;}
.x12{left:95.580000px;}
.x35{left:98.460890px;}
.x11{left:103.049928px;}
.x1c{left:105.750000px;}
.x3a{left:112.139857px;}
.x76{left:117.000972px;}
.x15{left:123.120000px;}
.x39{left:125.639753px;}
.x2{left:127.618637px;}
.x34{left:134.731297px;}
.x73{left:139.049451px;}
.x2e{left:142.921149px;}
.x16{left:146.160000px;}
.x17{left:148.860000px;}
.x38{left:152.909120px;}
.x37{left:165.509427px;}
.x3{left:167.129151px;}
.x30{left:174.329763px;}
.xa{left:176.040000px;}
.x75{left:201.241116px;}
.x33{left:208.170237px;}
.x2f{left:213.660289px;}
.x2d{left:220.950838px;}
.x28{left:230.760000px;}
.x9{left:250.739217px;}
.x74{left:254.970360px;}
.x2c{left:256.140574px;}
.x2b{left:268.740400px;}
.x36{left:277.740000px;}
.x32{left:288.090000px;}
.x6{left:292.051370px;}
.x31{left:297.450000px;}
.xb{left:306.449748px;}
.x18{left:311.669469px;}
.x5{left:317.610000px;}
.x2a{left:330.120254px;}
.x4{left:338.849447px;}
.x29{left:342.900000px;}
.xc{left:362.519163px;}
.x19{left:367.199307px;}
.xe{left:405.358803px;}
.xd{left:408.778497px;}
.x1a{left:425.339721px;}
.x1{left:446.490000px;}
.x10{left:467.460000px;}
.x5f{left:468.990054px;}
.x1f{left:471.330000px;}
.x40{left:480.058592px;}
.x49{left:483.118118px;}
.x53{left:485.639586px;}
.x46{left:488.067854px;}
.x77{left:499.409793px;}
.x57{left:502.740666px;}
.x4d{left:504.540357px;}
.x58{left:510.300018px;}
.x5e{left:511.380099px;}
.x6f{left:517.680000px;}
.x52{left:519.389334px;}
.x71{left:520.740000px;}
.x6a{left:523.978350px;}
.x70{left:526.860000px;}
.x48{left:528.658753px;}
.x72{left:529.920000px;}
.x3f{left:538.198618px;}
.x5d{left:541.440413px;}
.x3e{left:545.038964px;}
.x54{left:548.639784px;}
.x4b{left:552.868500px;}
.x45{left:554.668695px;}
.x7{left:556.740000px;}
.x5b{left:558.270072px;}
.x4f{left:566.730000px;}
.x4c{left:570.960078px;}
.x3d{left:590.849410px;}
.x47{left:593.549542px;}
.x44{left:600.299276px;}
.x5a{left:602.910207px;}
.x51{left:606.869352px;}
.x56{left:614.790000px;}
.x6e{left:626.940621px;}
.x43{left:633.599347px;}
.x69{left:635.399143px;}
.x5c{left:640.260000px;}
.x20{left:641.430000px;}
.x42{left:644.579306px;}
.x6c{left:645.659878px;}
.x59{left:649.170000px;}
.x67{left:653.309878px;}
.x3c{left:666.000000px;}
.x21{left:672.300000px;}
.x4a{left:675.000000px;}
.x1d{left:678.060000px;}
.x22{left:679.680000px;}
.x65{left:684.899268px;}
.x24{left:688.319550px;}
.x23{left:693.540450px;}
.x55{left:694.800000px;}
.x50{left:698.850000px;}
.x6b{left:704.159903px;}
.x41{left:705.689818px;}
.x60{left:711.090000px;}
.x6d{left:713.520000px;}
.x25{left:716.220000px;}
.x66{left:718.290029px;}
.x3b{left:719.460000px;}
.x26{left:723.510000px;}
.x64{left:725.219641px;}
.x4e{left:727.470000px;}
.x68{left:735.299711px;}
.x27{left:736.649550px;}
.x61{left:744.030000px;}
.x63{left:767.069935px;}
.x62{left:781.650000px;}
.x14{left:801.449046px;}
.x13{left:807.210045px;}
.x1e{left:811.710000px;}
@media print{
.v1{vertical-align:-61.439968pt;}
.v15{vertical-align:-39.998120pt;}
.v11{vertical-align:-33.597734pt;}
.v17{vertical-align:-32.317952pt;}
.v14{vertical-align:-23.039101pt;}
.vf{vertical-align:-21.119770pt;}
.v3{vertical-align:-18.560000pt;}
.v13{vertical-align:-14.402080pt;}
.v9{vertical-align:-10.880000pt;}
.ve{vertical-align:-9.918400pt;}
.v4{vertical-align:-5.444320pt;}
.v6{vertical-align:-2.560000pt;}
.v1a{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v12{vertical-align:2.560000pt;}
.v19{vertical-align:4.480000pt;}
.v5{vertical-align:5.440000pt;}
.v8{vertical-align:10.880000pt;}
.v16{vertical-align:12.800544pt;}
.vc{vertical-align:14.401067pt;}
.v2{vertical-align:18.554656pt;}
.v7{vertical-align:19.515296pt;}
.va{vertical-align:23.678400pt;}
.v18{vertical-align:25.280000pt;}
.vd{vertical-align:32.001600pt;}
.vb{vertical-align:36.480000pt;}
.v10{vertical-align:41.279468pt;}
.ls2b{letter-spacing:-0.609216pt;}
.ls4b{letter-spacing:-0.550432pt;}
.ls56{letter-spacing:-0.480960pt;}
.ls2a{letter-spacing:-0.448896pt;}
.ls68{letter-spacing:-0.358048pt;}
.ls55{letter-spacing:-0.321408pt;}
.lsf{letter-spacing:-0.316800pt;}
.ls69{letter-spacing:-0.277888pt;}
.ls6e{letter-spacing:-0.267200pt;}
.ls6c{letter-spacing:-0.244800pt;}
.ls51{letter-spacing:-0.240480pt;}
.ls9c{letter-spacing:-0.229792pt;}
.ls29{letter-spacing:-0.224448pt;}
.ls8f{letter-spacing:-0.219104pt;}
.ls9d{letter-spacing:-0.213760pt;}
.ls8d{letter-spacing:-0.208416pt;}
.ls4e{letter-spacing:-0.197728pt;}
.ls8e{letter-spacing:-0.187040pt;}
.ls32{letter-spacing:-0.176352pt;}
.ls67{letter-spacing:-0.171008pt;}
.ls8c{letter-spacing:-0.165664pt;}
.ls4f{letter-spacing:-0.160320pt;}
.ls9b{letter-spacing:-0.155082pt;}
.ls6d{letter-spacing:-0.154976pt;}
.ls94{letter-spacing:-0.149632pt;}
.ls42{letter-spacing:-0.144288pt;}
.ls54{letter-spacing:-0.138944pt;}
.ls3b{letter-spacing:-0.133600pt;}
.ls34{letter-spacing:-0.128256pt;}
.lsd{letter-spacing:-0.124704pt;}
.ls2c{letter-spacing:-0.122912pt;}
.ls35{letter-spacing:-0.117568pt;}
.ls73{letter-spacing:-0.115200pt;}
.ls2e{letter-spacing:-0.112224pt;}
.ls31{letter-spacing:-0.106880pt;}
.ls39{letter-spacing:-0.101536pt;}
.lsb{letter-spacing:-0.096992pt;}
.ls4c{letter-spacing:-0.096192pt;}
.ls33{letter-spacing:-0.090848pt;}
.ls3a{letter-spacing:-0.085504pt;}
.ls3d{letter-spacing:-0.080160pt;}
.ls11{letter-spacing:-0.076800pt;}
.ls36{letter-spacing:-0.074816pt;}
.ls38{letter-spacing:-0.069472pt;}
.ls9e{letter-spacing:-0.064128pt;}
.ls72{letter-spacing:-0.062400pt;}
.ls6f{letter-spacing:-0.058784pt;}
.ls52{letter-spacing:-0.056479pt;}
.ls41{letter-spacing:-0.053440pt;}
.ls4a{letter-spacing:-0.048096pt;}
.ls28{letter-spacing:-0.042752pt;}
.ls75{letter-spacing:-0.038400pt;}
.ls37{letter-spacing:-0.037408pt;}
.ls3c{letter-spacing:-0.032064pt;}
.ls40{letter-spacing:-0.026720pt;}
.ls74{letter-spacing:-0.024000pt;}
.ls43{letter-spacing:-0.021376pt;}
.lse{letter-spacing:-0.019200pt;}
.ls2d{letter-spacing:-0.016032pt;}
.ls71{letter-spacing:-0.014400pt;}
.ls2f{letter-spacing:-0.010688pt;}
.ls76{letter-spacing:-0.009600pt;}
.ls30{letter-spacing:-0.005344pt;}
.ls53{letter-spacing:-0.003456pt;}
.ls9{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.000533pt;}
.ls1c{letter-spacing:0.005344pt;}
.ls4{letter-spacing:0.009600pt;}
.ls1d{letter-spacing:0.010688pt;}
.ls45{letter-spacing:0.011520pt;}
.lsc{letter-spacing:0.013856pt;}
.ls50{letter-spacing:0.016032pt;}
.ls95{letter-spacing:0.020736pt;}
.ls14{letter-spacing:0.021376pt;}
.ls46{letter-spacing:0.026720pt;}
.ls3{letter-spacing:0.027712pt;}
.ls20{letter-spacing:0.032064pt;}
.ls44{letter-spacing:0.037408pt;}
.ls60{letter-spacing:0.038400pt;}
.ls13{letter-spacing:0.042752pt;}
.ls7{letter-spacing:0.048000pt;}
.ls17{letter-spacing:0.048096pt;}
.ls12{letter-spacing:0.051264pt;}
.ls16{letter-spacing:0.053440pt;}
.ls0{letter-spacing:0.055424pt;}
.ls19{letter-spacing:0.058784pt;}
.ls57{letter-spacing:0.059776pt;}
.ls1a{letter-spacing:0.064128pt;}
.ls8{letter-spacing:0.067200pt;}
.ls23{letter-spacing:0.069472pt;}
.ls70{letter-spacing:0.072000pt;}
.ls27{letter-spacing:0.074816pt;}
.ls5{letter-spacing:0.076800pt;}
.ls21{letter-spacing:0.080000pt;}
.ls1e{letter-spacing:0.080160pt;}
.ls3e{letter-spacing:0.085504pt;}
.ls61{letter-spacing:0.086400pt;}
.ls18{letter-spacing:0.090848pt;}
.ls6{letter-spacing:0.096000pt;}
.ls1f{letter-spacing:0.096192pt;}
.ls1{letter-spacing:0.096992pt;}
.ls6b{letter-spacing:0.097344pt;}
.ls3f{letter-spacing:0.101536pt;}
.ls1b{letter-spacing:0.106880pt;}
.ls97{letter-spacing:0.112224pt;}
.ls5c{letter-spacing:0.117568pt;}
.ls7a{letter-spacing:0.121024pt;}
.ls4d{letter-spacing:0.122912pt;}
.ls78{letter-spacing:0.124992pt;}
.ls82{letter-spacing:0.125856pt;}
.ls47{letter-spacing:0.128256pt;}
.ls77{letter-spacing:0.131296pt;}
.ls24{letter-spacing:0.133600pt;}
.ls58{letter-spacing:0.138944pt;}
.ls10{letter-spacing:0.144000pt;}
.ls99{letter-spacing:0.144288pt;}
.ls9a{letter-spacing:0.160000pt;}
.ls25{letter-spacing:0.160320pt;}
.ls79{letter-spacing:0.219104pt;}
.lsa{letter-spacing:0.221696pt;}
.ls7b{letter-spacing:0.331520pt;}
.ls96{letter-spacing:0.331776pt;}
.ls2{letter-spacing:0.374112pt;}
.ls5d{letter-spacing:1.591776pt;}
.ls5a{letter-spacing:1.593792pt;}
.ls63{letter-spacing:1.998400pt;}
.ls5b{letter-spacing:2.076480pt;}
.ls5f{letter-spacing:2.753600pt;}
.ls8b{letter-spacing:3.601856pt;}
.ls64{letter-spacing:4.427520pt;}
.ls48{letter-spacing:8.971520pt;}
.ls62{letter-spacing:10.545600pt;}
.ls59{letter-spacing:10.560000pt;}
.ls65{letter-spacing:13.099200pt;}
.ls66{letter-spacing:14.064000pt;}
.ls6a{letter-spacing:14.754784pt;}
.ls5e{letter-spacing:17.116480pt;}
.ls7f{letter-spacing:22.560000pt;}
.ls86{letter-spacing:29.861815pt;}
.ls98{letter-spacing:56.502112pt;}
.ls49{letter-spacing:69.199456pt;}
.ls22{letter-spacing:75.703104pt;}
.ls93{letter-spacing:98.181691pt;}
.ls87{letter-spacing:142.839900pt;}
.ls92{letter-spacing:147.499063pt;}
.ls90{letter-spacing:162.041897pt;}
.ls81{letter-spacing:195.921728pt;}
.ls91{letter-spacing:226.101792pt;}
.ls83{letter-spacing:241.682400pt;}
.ls80{letter-spacing:269.760000pt;}
.ls7d{letter-spacing:305.342060pt;}
.ls85{letter-spacing:361.148400pt;}
.ls8a{letter-spacing:371.723410pt;}
.ls89{letter-spacing:408.005100pt;}
.ls88{letter-spacing:524.575168pt;}
.ls7c{letter-spacing:605.170809pt;}
.ls84{letter-spacing:627.197580pt;}
.ls7e{letter-spacing:894.088610pt;}
.ls15{letter-spacing:1270.797856pt;}
.ws11d{word-spacing:-262.533432pt;}
.ws10b{word-spacing:-155.616487pt;}
.ws9{word-spacing:-96.000000pt;}
.wsda{word-spacing:-61.099200pt;}
.wsd5{word-spacing:-53.509472pt;}
.wsd2{word-spacing:-53.440000pt;}
.ws59{word-spacing:-53.386560pt;}
.wsd3{word-spacing:-48.076800pt;}
.wsd7{word-spacing:-48.072000pt;}
.wsdb{word-spacing:-48.000000pt;}
.wsd6{word-spacing:-47.755200pt;}
.wsd4{word-spacing:-37.537344pt;}
.wsd9{word-spacing:-34.454400pt;}
.ws10e{word-spacing:-31.243447pt;}
.ws10f{word-spacing:-29.562259pt;}
.ws109{word-spacing:-29.338560pt;}
.ws11b{word-spacing:-29.336004pt;}
.ws15{word-spacing:-29.285120pt;}
.ws122{word-spacing:-28.389319pt;}
.ws11a{word-spacing:-27.757440pt;}
.ws115{word-spacing:-27.305357pt;}
.ws116{word-spacing:-25.698700pt;}
.ws10a{word-spacing:-18.973440pt;}
.ws111{word-spacing:-14.428785pt;}
.ws11c{word-spacing:-13.482912pt;}
.ws10d{word-spacing:-13.461867pt;}
.ws12{word-spacing:-13.440160pt;}
.ws13{word-spacing:-13.392064pt;}
.ws14{word-spacing:-13.360000pt;}
.ws124{word-spacing:-13.338624pt;}
.ws169{word-spacing:-13.285184pt;}
.ws5a{word-spacing:-13.269152pt;}
.ws168{word-spacing:-13.221056pt;}
.ws5b{word-spacing:-13.199680pt;}
.ws110{word-spacing:-13.162272pt;}
.ws119{word-spacing:-12.640000pt;}
.ws114{word-spacing:-12.434133pt;}
.ws121{word-spacing:-12.232133pt;}
.ws125{word-spacing:-8.660736pt;}
.ws11{word-spacing:-8.640000pt;}
.ws97{word-spacing:-8.636544pt;}
.ws10c{word-spacing:-8.077200pt;}
.wsd8{word-spacing:-8.000000pt;}
.ws11e{word-spacing:-7.339067pt;}
.ws117{word-spacing:-6.320000pt;}
.ws112{word-spacing:-6.216933pt;}
.ws129{word-spacing:-3.211744pt;}
.ws176{word-spacing:-2.832320pt;}
.ws178{word-spacing:-2.768192pt;}
.ws17f{word-spacing:-2.714752pt;}
.ws133{word-spacing:-2.575808pt;}
.wse8{word-spacing:-2.538400pt;}
.ws9a{word-spacing:-2.239136pt;}
.ws14e{word-spacing:-2.217760pt;}
.ws187{word-spacing:-1.923840pt;}
.ws16b{word-spacing:-1.913152pt;}
.ws196{word-spacing:-1.747488pt;}
.ws16c{word-spacing:-1.742144pt;}
.ws25{word-spacing:-1.726112pt;}
.ws197{word-spacing:-1.715424pt;}
.ws1a1{word-spacing:-1.683360pt;}
.wsdc{word-spacing:-1.619232pt;}
.ws188{word-spacing:-1.608544pt;}
.ws58{word-spacing:-1.592512pt;}
.wsde{word-spacing:-1.533728pt;}
.ws177{word-spacing:-1.521744pt;}
.ws24{word-spacing:-1.496320pt;}
.wsdd{word-spacing:-1.480288pt;}
.ws12c{word-spacing:-1.474944pt;}
.ws69{word-spacing:-1.384096pt;}
.ws12d{word-spacing:-1.352032pt;}
.wsb4{word-spacing:-1.271872pt;}
.ws50{word-spacing:-1.266528pt;}
.wsb6{word-spacing:-1.202400pt;}
.ws19f{word-spacing:-1.074144pt;}
.wsb5{word-spacing:-1.042080pt;}
.wsac{word-spacing:-0.956576pt;}
.wsf7{word-spacing:-0.951232pt;}
.ws20{word-spacing:-0.945888pt;}
.ws131{word-spacing:-0.935200pt;}
.wscf{word-spacing:-0.897792pt;}
.ws38{word-spacing:-0.844352pt;}
.ws195{word-spacing:-0.790912pt;}
.ws130{word-spacing:-0.774880pt;}
.ws33{word-spacing:-0.769536pt;}
.wsb9{word-spacing:-0.657312pt;}
.wsf6{word-spacing:-0.646624pt;}
.ws15a{word-spacing:-0.630592pt;}
.ws13f{word-spacing:-0.625248pt;}
.ws37{word-spacing:-0.582496pt;}
.ws52{word-spacing:-0.571808pt;}
.ws35{word-spacing:-0.561120pt;}
.ws36{word-spacing:-0.550432pt;}
.ws51{word-spacing:-0.534400pt;}
.ws1a7{word-spacing:-0.518368pt;}
.ws199{word-spacing:-0.507680pt;}
.ws34{word-spacing:-0.438208pt;}
.ws17e{word-spacing:-0.384768pt;}
.wse5{word-spacing:-0.379424pt;}
.wsa8{word-spacing:-0.363392pt;}
.ws1{word-spacing:-0.360256pt;}
.ws60{word-spacing:-0.342016pt;}
.ws101{word-spacing:-0.336672pt;}
.ws86{word-spacing:-0.331328pt;}
.ws1b{word-spacing:-0.320640pt;}
.ws4e{word-spacing:-0.315296pt;}
.ws21{word-spacing:-0.309952pt;}
.ws159{word-spacing:-0.304608pt;}
.ws5f{word-spacing:-0.277888pt;}
.ws18{word-spacing:-0.261856pt;}
.ws9b{word-spacing:-0.251168pt;}
.ws7f{word-spacing:-0.245824pt;}
.ws99{word-spacing:-0.240480pt;}
.wsd{word-spacing:-0.240000pt;}
.ws23{word-spacing:-0.224448pt;}
.ws4{word-spacing:-0.193984pt;}
.ws8{word-spacing:-0.192000pt;}
.ws19a{word-spacing:-0.171008pt;}
.ws5{word-spacing:-0.166272pt;}
.wse{word-spacing:-0.163200pt;}
.ws3{word-spacing:-0.152416pt;}
.ws1a0{word-spacing:-0.138944pt;}
.ws0{word-spacing:-0.138560pt;}
.wsba{word-spacing:-0.133600pt;}
.ws22{word-spacing:-0.117568pt;}
.ws8c{word-spacing:-0.112224pt;}
.ws7{word-spacing:-0.105600pt;}
.wsb{word-spacing:-0.096000pt;}
.ws142{word-spacing:-0.080160pt;}
.wsa{word-spacing:-0.076800pt;}
.ws2c{word-spacing:-0.064128pt;}
.wsdf{word-spacing:-0.058784pt;}
.ws138{word-spacing:-0.053440pt;}
.wsa4{word-spacing:-0.042752pt;}
.ws2{word-spacing:-0.041568pt;}
.wse1{word-spacing:-0.026720pt;}
.wsa6{word-spacing:-0.021376pt;}
.wsf{word-spacing:-0.019200pt;}
.ws31{word-spacing:-0.016032pt;}
.ws6{word-spacing:-0.013856pt;}
.ws1d{word-spacing:-0.010688pt;}
.ws95{word-spacing:-0.005344pt;}
.ws10{word-spacing:0.000000pt;}
.ws5e{word-spacing:0.005344pt;}
.ws3c{word-spacing:0.010688pt;}
.ws83{word-spacing:0.016032pt;}
.ws70{word-spacing:0.021376pt;}
.ws19{word-spacing:0.026720pt;}
.ws1c{word-spacing:0.032064pt;}
.ws139{word-spacing:0.037408pt;}
.wse4{word-spacing:0.058784pt;}
.ws128{word-spacing:0.064128pt;}
.ws19b{word-spacing:0.069472pt;}
.ws105{word-spacing:0.072000pt;}
.ws2b{word-spacing:0.074816pt;}
.wsa5{word-spacing:0.080160pt;}
.ws94{word-spacing:0.085504pt;}
.ws26{word-spacing:0.090848pt;}
.wsb8{word-spacing:0.096192pt;}
.wsd1{word-spacing:0.101536pt;}
.ws67{word-spacing:0.106880pt;}
.ws49{word-spacing:0.112224pt;}
.ws93{word-spacing:0.117568pt;}
.ws17{word-spacing:0.122912pt;}
.ws104{word-spacing:0.148800pt;}
.ws39{word-spacing:0.149632pt;}
.ws30{word-spacing:0.154976pt;}
.ws48{word-spacing:0.160320pt;}
.ws3b{word-spacing:0.165664pt;}
.ws2d{word-spacing:0.171008pt;}
.ws106{word-spacing:0.172800pt;}
.ws7e{word-spacing:0.176352pt;}
.ws3a{word-spacing:0.181696pt;}
.ws107{word-spacing:0.182400pt;}
.ws186{word-spacing:0.192384pt;}
.ws108{word-spacing:0.196800pt;}
.ws17a{word-spacing:0.213760pt;}
.ws1a3{word-spacing:0.219104pt;}
.wsc{word-spacing:0.220800pt;}
.ws198{word-spacing:0.224448pt;}
.wse0{word-spacing:0.251168pt;}
.ws96{word-spacing:0.277888pt;}
.ws15e{word-spacing:0.299264pt;}
.ws1a{word-spacing:0.304608pt;}
.wsbf{word-spacing:0.325984pt;}
.wsfa{word-spacing:0.555776pt;}
.ws29{word-spacing:0.614560pt;}
.wse9{word-spacing:0.630592pt;}
.ws40{word-spacing:0.651968pt;}
.wsfb{word-spacing:0.668000pt;}
.ws1e{word-spacing:0.689376pt;}
.ws157{word-spacing:0.710752pt;}
.ws28{word-spacing:0.726784pt;}
.ws12f{word-spacing:0.961920pt;}
.ws6d{word-spacing:0.967264pt;}
.ws81{word-spacing:1.015360pt;}
.ws6c{word-spacing:1.058112pt;}
.ws12e{word-spacing:1.127584pt;}
.ws82{word-spacing:1.143616pt;}
.ws5c{word-spacing:1.266528pt;}
.wse3{word-spacing:1.319968pt;}
.ws6e{word-spacing:1.373408pt;}
.ws2e{word-spacing:1.597856pt;}
.ws7a{word-spacing:1.672672pt;}
.wsab{word-spacing:1.678016pt;}
.wse2{word-spacing:1.715424pt;}
.ws79{word-spacing:1.774208pt;}
.ws77{word-spacing:1.790240pt;}
.ws2f{word-spacing:1.795584pt;}
.ws4b{word-spacing:1.838336pt;}
.ws9e{word-spacing:1.921536pt;}
.ws4a{word-spacing:1.950560pt;}
.ws87{word-spacing:1.955904pt;}
.wsbd{word-spacing:2.009344pt;}
.wsaa{word-spacing:2.089504pt;}
.ws14d{word-spacing:2.249824pt;}
.wsd0{word-spacing:2.362048pt;}
.wsc8{word-spacing:2.565120pt;}
.ws32{word-spacing:2.581152pt;}
.ws9d{word-spacing:2.800256pt;}
.ws8e{word-spacing:2.832320pt;}
.ws9f{word-spacing:2.896448pt;}
.ws9c{word-spacing:2.901792pt;}
.ws92{word-spacing:2.939200pt;}
.ws19c{word-spacing:3.067456pt;}
.wsed{word-spacing:3.200000pt;}
.ws91{word-spacing:3.211744pt;}
.ws156{word-spacing:3.238464pt;}
.ws13c{word-spacing:3.254496pt;}
.ws8d{word-spacing:3.259840pt;}
.ws148{word-spacing:3.297248pt;}
.ws147{word-spacing:3.313280pt;}
.wsc1{word-spacing:3.361376pt;}
.ws171{word-spacing:3.521696pt;}
.wsbb{word-spacing:3.537728pt;}
.ws1a4{word-spacing:3.612544pt;}
.ws15c{word-spacing:3.751488pt;}
.ws15b{word-spacing:3.756832pt;}
.ws84{word-spacing:3.799584pt;}
.ws4c{word-spacing:3.831648pt;}
.ws183{word-spacing:3.839616pt;}
.wsae{word-spacing:3.842336pt;}
.wsad{word-spacing:3.911808pt;}
.ws13e{word-spacing:3.927840pt;}
.ws13d{word-spacing:3.943872pt;}
.ws1a5{word-spacing:3.954560pt;}
.ws5d{word-spacing:4.040064pt;}
.wsca{word-spacing:4.141600pt;}
.wsa1{word-spacing:4.227104pt;}
.ws74{word-spacing:4.488960pt;}
.ws12b{word-spacing:4.547744pt;}
.ws7d{word-spacing:4.553088pt;}
.ws18e{word-spacing:4.558432pt;}
.ws143{word-spacing:4.798912pt;}
.ws3d{word-spacing:4.857696pt;}
.ws16d{word-spacing:4.948544pt;}
.ws44{word-spacing:5.092832pt;}
.wsec{word-spacing:5.114208pt;}
.wsee{word-spacing:5.130240pt;}
.ws152{word-spacing:5.156960pt;}
.ws16a{word-spacing:5.322624pt;}
.ws43{word-spacing:5.536384pt;}
.ws14b{word-spacing:5.830304pt;}
.ws57{word-spacing:5.862368pt;}
.ws56{word-spacing:5.942528pt;}
.ws181{word-spacing:6.001312pt;}
.ws68{word-spacing:6.054752pt;}
.ws184{word-spacing:6.081472pt;}
.wsbc{word-spacing:6.113536pt;}
.ws63{word-spacing:6.156288pt;}
.ws144{word-spacing:6.166976pt;}
.ws100{word-spacing:6.220416pt;}
.wsff{word-spacing:6.231104pt;}
.ws182{word-spacing:6.321952pt;}
.wsfd{word-spacing:6.423488pt;}
.ws55{word-spacing:6.626560pt;}
.wsc4{word-spacing:6.744128pt;}
.ws1a6{word-spacing:6.851008pt;}
.ws155{word-spacing:7.123552pt;}
.ws73{word-spacing:7.209056pt;}
.ws3e{word-spacing:7.219744pt;}
.ws8f{word-spacing:7.358688pt;}
.wsb0{word-spacing:7.508320pt;}
.ws6f{word-spacing:7.561760pt;}
.ws141{word-spacing:7.679328pt;}
.wsf4{word-spacing:7.684672pt;}
.ws18f{word-spacing:7.690016pt;}
.wsf5{word-spacing:7.748800pt;}
.ws180{word-spacing:8.363360pt;}
.wsb3{word-spacing:8.646592pt;}
.ws41{word-spacing:8.667968pt;}
.wsc0{word-spacing:8.977920pt;}
.ws46{word-spacing:9.074112pt;}
.ws4d{word-spacing:9.116864pt;}
.wscd{word-spacing:9.368032pt;}
.wscb{word-spacing:9.378720pt;}
.ws134{word-spacing:9.384064pt;}
.ws72{word-spacing:9.592480pt;}
.wsce{word-spacing:9.613856pt;}
.wscc{word-spacing:9.838304pt;}
.ws3f{word-spacing:9.929152pt;}
.ws64{word-spacing:10.233760pt;}
.ws42{word-spacing:10.265824pt;}
.wsb2{word-spacing:10.335296pt;}
.ws65{word-spacing:10.356672pt;}
.ws2a{word-spacing:10.746784pt;}
.wsf0{word-spacing:10.842976pt;}
.wsb1{word-spacing:10.901760pt;}
.wsa3{word-spacing:11.051392pt;}
.ws17d{word-spacing:11.120864pt;}
.ws1f{word-spacing:11.222400pt;}
.ws135{word-spacing:11.275840pt;}
.ws17c{word-spacing:11.286528pt;}
.ws136{word-spacing:11.441504pt;}
.ws137{word-spacing:11.489600pt;}
.ws14c{word-spacing:11.510976pt;}
.ws174{word-spacing:11.527008pt;}
.ws153{word-spacing:11.836960pt;}
.wsbe{word-spacing:12.141568pt;}
.ws13a{word-spacing:12.168288pt;}
.ws170{word-spacing:12.178976pt;}
.ws7c{word-spacing:12.243104pt;}
.ws189{word-spacing:12.472896pt;}
.wsc7{word-spacing:12.478240pt;}
.ws45{word-spacing:12.547712pt;}
.ws13b{word-spacing:12.659936pt;}
.wse6{word-spacing:12.756128pt;}
.wse7{word-spacing:12.782848pt;}
.wsf1{word-spacing:12.825600pt;}
.ws8a{word-spacing:13.648576pt;}
.wseb{word-spacing:13.819584pt;}
.wsc6{word-spacing:14.092128pt;}
.ws175{word-spacing:14.402080pt;}
.wsa7{word-spacing:14.423456pt;}
.wsf3{word-spacing:14.957856pt;}
.ws98{word-spacing:15.032672pt;}
.wsf2{word-spacing:15.038016pt;}
.ws17b{word-spacing:15.444160pt;}
.ws62{word-spacing:16.448832pt;}
.ws61{word-spacing:16.534336pt;}
.wsfc{word-spacing:16.716032pt;}
.ws90{word-spacing:16.721376pt;}
.ws47{word-spacing:16.828256pt;}
.ws89{word-spacing:16.967200pt;}
.ws53{word-spacing:17.042016pt;}
.ws154{word-spacing:18.233728pt;}
.ws132{word-spacing:18.324576pt;}
.ws6a{word-spacing:18.415424pt;}
.ws54{word-spacing:18.575744pt;}
.ws88{word-spacing:18.655904pt;}
.wsfe{word-spacing:18.880352pt;}
.ws27{word-spacing:18.912416pt;}
.ws158{word-spacing:19.062048pt;}
.wsb7{word-spacing:19.190304pt;}
.ws145{word-spacing:19.393376pt;}
.ws146{word-spacing:19.543008pt;}
.ws4f{word-spacing:20.136192pt;}
.ws71{word-spacing:20.499584pt;}
.ws12a{word-spacing:20.558368pt;}
.ws190{word-spacing:21.092768pt;}
.ws16f{word-spacing:21.776800pt;}
.wsaf{word-spacing:22.717344pt;}
.wsa2{word-spacing:22.877664pt;}
.ws127{word-spacing:23.037984pt;}
.ws16{word-spacing:23.075392pt;}
.ws140{word-spacing:23.230368pt;}
.ws18d{word-spacing:23.369312pt;}
.wsc9{word-spacing:24.015936pt;}
.wsea{word-spacing:24.058688pt;}
.ws14a{word-spacing:24.213664pt;}
.wsa9{word-spacing:24.961824pt;}
.ws193{word-spacing:25.485536pt;}
.wsf9{word-spacing:26.891008pt;}
.wsf8{word-spacing:27.265088pt;}
.ws75{word-spacing:27.297152pt;}
.ws76{word-spacing:27.302496pt;}
.ws18c{word-spacing:27.596416pt;}
.ws126{word-spacing:27.852928pt;}
.ws149{word-spacing:28.291136pt;}
.ws179{word-spacing:28.788128pt;}
.wsa0{word-spacing:29.103424pt;}
.ws192{word-spacing:30.498208pt;}
.ws102{word-spacing:30.738688pt;}
.ws191{word-spacing:30.786784pt;}
.ws173{word-spacing:30.808160pt;}
.ws172{word-spacing:30.920384pt;}
.ws6b{word-spacing:32.833536pt;}
.wsef{word-spacing:33.180896pt;}
.ws18a{word-spacing:34.880288pt;}
.ws18b{word-spacing:37.782080pt;}
.ws19e{word-spacing:39.518880pt;}
.ws66{word-spacing:39.796768pt;}
.ws16e{word-spacing:40.309792pt;}
.ws7b{word-spacing:40.427360pt;}
.ws8b{word-spacing:40.710592pt;}
.wsc5{word-spacing:41.774048pt;}
.ws14f{word-spacing:41.950400pt;}
.wsc2{word-spacing:43.072640pt;}
.wsc3{word-spacing:43.120736pt;}
.ws163{word-spacing:44.157472pt;}
.ws166{word-spacing:44.649120pt;}
.ws167{word-spacing:44.670496pt;}
.ws162{word-spacing:44.718592pt;}
.ws80{word-spacing:45.530880pt;}
.ws194{word-spacing:48.176160pt;}
.ws151{word-spacing:48.432672pt;}
.ws150{word-spacing:48.443360pt;}
.ws85{word-spacing:49.592320pt;}
.ws15d{word-spacing:50.559584pt;}
.ws78{word-spacing:51.922304pt;}
.ws185{word-spacing:66.954976pt;}
.ws1a2{word-spacing:67.024448pt;}
.ws19d{word-spacing:68.173408pt;}
.ws164{word-spacing:70.995040pt;}
.ws165{word-spacing:71.005728pt;}
.ws161{word-spacing:71.278272pt;}
.ws160{word-spacing:97.837952pt;}
.ws15f{word-spacing:124.718272pt;}
.ws103{word-spacing:451.320000pt;}
.ws118{word-spacing:647.281440pt;}
.ws123{word-spacing:675.356545pt;}
.ws113{word-spacing:683.881054pt;}
.ws120{word-spacing:737.315308pt;}
.ws11f{word-spacing:912.707860pt;}
._c{margin-left:-451.656000pt;}
._33{margin-left:-396.001359pt;}
._39{margin-left:-378.540491pt;}
._25{margin-left:-367.602718pt;}
._2a{margin-left:-347.964032pt;}
._2c{margin-left:-339.520512pt;}
._2b{margin-left:-330.156800pt;}
._17{margin-left:-320.763974pt;}
._12{margin-left:-298.955750pt;}
._13{margin-left:-290.286308pt;}
._1f{margin-left:-281.700335pt;}
._37{margin-left:-243.037599pt;}
._3c{margin-left:-185.899070pt;}
._14{margin-left:-171.886498pt;}
._35{margin-left:-170.065796pt;}
._15{margin-left:-165.801735pt;}
._24{margin-left:-164.722425pt;}
._16{margin-left:-160.462699pt;}
._36{margin-left:-151.497227pt;}
._11{margin-left:-140.181421pt;}
._10{margin-left:-122.582818pt;}
._20{margin-left:-114.754642pt;}
._27{margin-left:-112.308928pt;}
._38{margin-left:-111.307847pt;}
._3a{margin-left:-110.382771pt;}
._22{margin-left:-106.804232pt;}
._34{margin-left:-89.237179pt;}
._2f{margin-left:-88.225620pt;}
._2e{margin-left:-83.658376pt;}
._3b{margin-left:-79.866045pt;}
._30{margin-left:-74.860716pt;}
._29{margin-left:-63.556448pt;}
._21{margin-left:-62.549810pt;}
._32{margin-left:-55.694051pt;}
._28{margin-left:-54.068864pt;}
._2d{margin-left:-51.909952pt;}
._31{margin-left:-47.915298pt;}
._23{margin-left:-42.788340pt;}
._49{margin-left:-40.084544pt;}
._26{margin-left:-39.065184pt;}
._3f{margin-left:-26.559680pt;}
._46{margin-left:-24.854688pt;}
._18{margin-left:-22.914848pt;}
._3{margin-left:-17.736736pt;}
._f{margin-left:-12.892800pt;}
._47{margin-left:-10.084128pt;}
._2{margin-left:-7.037536pt;}
._b{margin-left:-3.232565pt;}
._0{margin-left:-1.298592pt;}
._1{width:1.100608pt;}
._a{width:2.006848pt;}
._48{width:3.879744pt;}
._9{width:7.450464pt;}
._3e{width:25.843584pt;}
._6{width:38.401984pt;}
._41{width:42.046592pt;}
._3d{width:44.572928pt;}
._40{width:51.623296pt;}
._8{width:61.525472pt;}
._7{width:68.435264pt;}
._45{width:69.407872pt;}
._42{width:73.971648pt;}
._5{width:78.600128pt;}
._43{width:99.670944pt;}
._44{width:126.631680pt;}
._e{width:180.494400pt;}
._1a{width:189.270144pt;}
._19{width:204.637792pt;}
._d{width:223.358400pt;}
._1c{width:246.508032pt;}
._1b{width:259.440512pt;}
._1e{width:262.187328pt;}
._1d{width:263.753120pt;}
._4{width:339.916352pt;}
.fs11{font-size:24.867733pt;}
.fs14{font-size:25.280000pt;}
.fsf{font-size:26.281939pt;}
.fs1a{font-size:29.356267pt;}
.fs9{font-size:32.000000pt;}
.fsc{font-size:32.308800pt;}
.fs5{font-size:34.560000pt;}
.fsa{font-size:37.440000pt;}
.fs6{font-size:42.560000pt;}
.fs1d{font-size:45.440000pt;}
.fs8{font-size:48.000000pt;}
.fs1b{font-size:48.928533pt;}
.fs12{font-size:49.736533pt;}
.fs15{font-size:50.560000pt;}
.fs1c{font-size:51.710963pt;}
.fs10{font-size:52.564887pt;}
.fs16{font-size:53.435345pt;}
.fs4{font-size:53.440000pt;}
.fsd{font-size:53.847467pt;}
.fs7{font-size:56.479151pt;}
.fse{font-size:56.909739pt;}
.fs0{font-size:58.560000pt;}
.fs17{font-size:66.360000pt;}
.fs18{font-size:78.897600pt;}
.fs13{font-size:79.000000pt;}
.fs19{font-size:81.954667pt;}
.fs3{font-size:85.440000pt;}
.fsb{font-size:86.829867pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:138.560000pt;}
.y0{bottom:0.000000pt;}
.ybe{bottom:1.680533pt;}
.yb5{bottom:1.760400pt;}
.y1d5{bottom:2.880400pt;}
.y14e{bottom:8.160400pt;}
.y144{bottom:19.760400pt;}
.y18{bottom:78.987683pt;}
.yd6{bottom:99.547075pt;}
.y226{bottom:104.587067pt;}
.y8a{bottom:105.467787pt;}
.y1ea{bottom:105.947067pt;}
.y58{bottom:110.267067pt;}
.yac{bottom:112.587259pt;}
.y116{bottom:112.587427pt;}
.yd5{bottom:113.547067pt;}
.yd3{bottom:114.906499pt;}
.yd4{bottom:114.907067pt;}
.y106{bottom:116.587435pt;}
.y225{bottom:119.947067pt;}
.y89{bottom:120.827779pt;}
.y13d{bottom:122.426960pt;}
.y187{bottom:122.907411pt;}
.y57{bottom:125.627067pt;}
.y51{bottom:126.667067pt;}
.y115{bottom:127.867259pt;}
.yab{bottom:127.947251pt;}
.yd2{bottom:131.227075pt;}
.y105{bottom:131.947427pt;}
.y224{bottom:135.308467pt;}
.y88{bottom:136.107611pt;}
.y13c{bottom:137.706792pt;}
.y186{bottom:138.187243pt;}
.y56{bottom:140.987067pt;}
.y50{bottom:141.947067pt;}
.yaa{bottom:143.227083pt;}
.y114{bottom:143.227251pt;}
.yd1{bottom:146.587027pt;}
.y1e9{bottom:147.307067pt;}
.y104{bottom:147.307419pt;}
.y223{bottom:150.588299pt;}
.y87{bottom:151.467603pt;}
.y13b{bottom:153.066784pt;}
.y185{bottom:153.547235pt;}
.y55{bottom:156.267067pt;}
.y4f{bottom:157.307067pt;}
.ya9{bottom:158.587075pt;}
.y113{bottom:158.587243pt;}
.yd0{bottom:161.947019pt;}
.y103{bottom:162.587251pt;}
.y222{bottom:165.948291pt;}
.y86{bottom:166.827595pt;}
.y1e8{bottom:167.947067pt;}
.y13a{bottom:168.426776pt;}
.y184{bottom:168.828019pt;}
.y54{bottom:171.627067pt;}
.y4e{bottom:172.667067pt;}
.y112{bottom:173.867075pt;}
.ya8{bottom:173.947235pt;}
.ycf{bottom:174.187451pt;}
.y16{bottom:176.507067pt;}
.y102{bottom:177.947243pt;}
.y221{bottom:181.228123pt;}
.y85{bottom:182.107427pt;}
.y139{bottom:183.706608pt;}
.y183{bottom:185.227419pt;}
.y4d{bottom:187.947067pt;}
.y1e7{bottom:188.667067pt;}
.y111{bottom:189.227075pt;}
.ya7{bottom:189.228307pt;}
.y101{bottom:193.307235pt;}
.y138{bottom:196.027200pt;}
.y220{bottom:196.588115pt;}
.y84{bottom:197.467419pt;}
.y182{bottom:200.507251pt;}
.y4c{bottom:203.307067pt;}
.y110{bottom:204.586723pt;}
.ya6{bottom:204.588299pt;}
.y100{bottom:208.587443pt;}
.y1e6{bottom:209.307067pt;}
.y21f{bottom:211.948107pt;}
.y83{bottom:212.586931pt;}
.y181{bottom:215.867243pt;}
.y15{bottom:216.187867pt;}
.y4b{bottom:218.667067pt;}
.y10f{bottom:219.866555pt;}
.ya5{bottom:219.948291pt;}
.yff{bottom:223.947435pt;}
.y21e{bottom:227.227939pt;}
.y82{bottom:228.107243pt;}
.y1e5{bottom:229.947067pt;}
.y180{bottom:231.227235pt;}
.y10e{bottom:232.187147pt;}
.y4a{bottom:233.947067pt;}
.ya4{bottom:235.228123pt;}
.yfe{bottom:239.307427pt;}
.y21d{bottom:242.427611pt;}
.y81{bottom:243.467235pt;}
.y17f{bottom:246.507067pt;}
.y1e3{bottom:246.746667pt;}
.y49{bottom:249.307067pt;}
.y1e4{bottom:249.627067pt;}
.ya3{bottom:250.588115pt;}
.yfd{bottom:254.587259pt;}
.y21c{bottom:257.787603pt;}
.y14{bottom:258.507067pt;}
.y80{bottom:258.747576pt;}
.y48{bottom:264.587067pt;}
.ya2{bottom:265.948107pt;}
.y17e{bottom:266.107299pt;}
.y1e2{bottom:266.667419pt;}
.yfc{bottom:269.947251pt;}
.y21b{bottom:273.227755pt;}
.y7f{bottom:274.107568pt;}
.y47{bottom:279.947067pt;}
.ya1{bottom:281.227939pt;}
.y1e1{bottom:281.947251pt;}
.y17d{bottom:284.027147pt;}
.yfb{bottom:285.307243pt;}
.y21a{bottom:288.587747pt;}
.y7e{bottom:289.467560pt;}
.y46{bottom:295.307067pt;}
.ya0{bottom:296.587931pt;}
.y1e0{bottom:297.307243pt;}
.yfa{bottom:300.587075pt;}
.y219{bottom:303.947739pt;}
.y17c{bottom:304.027067pt;}
.y13{bottom:304.577987pt;}
.y7d{bottom:304.747392pt;}
.y45{bottom:310.426947pt;}
.y53{bottom:310.587067pt;}
.y9f{bottom:311.947923pt;}
.y1df{bottom:312.667235pt;}
.yf9{bottom:315.947067pt;}
.y218{bottom:319.227571pt;}
.y7c{bottom:320.107384pt;}
.y17b{bottom:321.867067pt;}
.y44{bottom:325.786939pt;}
.y52{bottom:325.947067pt;}
.y9e{bottom:327.227755pt;}
.y1de{bottom:327.947067pt;}
.yf8{bottom:331.307971pt;}
.y217{bottom:334.587563pt;}
.y7b{bottom:335.467376pt;}
.y17a{bottom:341.147200pt;}
.y43{bottom:341.307251pt;}
.y9d{bottom:342.587747pt;}
.yf7{bottom:346.587803pt;}
.y1dd{bottom:348.667200pt;}
.y216{bottom:349.947555pt;}
.y7a{bottom:350.747208pt;}
.y42{bottom:356.587083pt;}
.y9c{bottom:357.947739pt;}
.y179{bottom:358.507267pt;}
.y12{bottom:360.899163pt;}
.yf6{bottom:361.947795pt;}
.y215{bottom:365.067067pt;}
.y79{bottom:366.107200pt;}
.yce{bottom:367.227427pt;}
.y1dc{bottom:369.307067pt;}
.y41{bottom:371.947075pt;}
.y9b{bottom:373.227571pt;}
.y178{bottom:373.867259pt;}
.yf5{bottom:377.227627pt;}
.y78{bottom:380.667200pt;}
.y214{bottom:381.387643pt;}
.ycd{bottom:382.587419pt;}
.y9a{bottom:385.468003pt;}
.y40{bottom:387.307560pt;}
.y137{bottom:387.707619pt;}
.y177{bottom:389.227251pt;}
.y1db{bottom:389.947067pt;}
.ybd{bottom:391.306667pt;}
.yf4{bottom:392.587619pt;}
.ybf{bottom:394.347067pt;}
.ybc{bottom:394.347075pt;}
.y213{bottom:397.867203pt;}
.ycc{bottom:397.867251pt;}
.y3f{bottom:402.427072pt;}
.y136{bottom:403.067611pt;}
.y176{bottom:404.507083pt;}
.yf3{bottom:407.947611pt;}
.yc0{bottom:409.707059pt;}
.ybb{bottom:409.707067pt;}
.y1da{bottom:410.667067pt;}
.y212{bottom:413.147035pt;}
.ycb{bottom:413.227243pt;}
.y11{bottom:417.220339pt;}
.y3e{bottom:417.947384pt;}
.y135{bottom:418.427603pt;}
.y175{bottom:419.867075pt;}
.yb4{bottom:422.586667pt;}
.yf2{bottom:423.227443pt;}
.y10d{bottom:423.867075pt;}
.yb6{bottom:425.707067pt;}
.yb3{bottom:425.707208pt;}
.y211{bottom:428.507027pt;}
.yca{bottom:428.587235pt;}
.y1d9{bottom:431.307067pt;}
.y3d{bottom:433.307376pt;}
.y134{bottom:433.707435pt;}
.y174{bottom:435.227419pt;}
.yf1{bottom:438.587435pt;}
.y10c{bottom:439.227075pt;}
.yb9{bottom:441.067059pt;}
.yb2{bottom:441.067235pt;}
.y210{bottom:443.786859pt;}
.yc9{bottom:443.866651pt;}
.y3c{bottom:448.587208pt;}
.y133{bottom:449.067427pt;}
.y173{bottom:450.507251pt;}
.y1d8{bottom:451.947200pt;}
.yf0{bottom:453.947427pt;}
.y10b{bottom:454.586715pt;}
.yb8{bottom:456.346891pt;}
.yb1{bottom:456.347075pt;}
.y20f{bottom:459.146851pt;}
.yc8{bottom:459.226643pt;}
.y3b{bottom:463.947987pt;}
.y132{bottom:464.427419pt;}
.y172{bottom:465.867243pt;}
.yef{bottom:469.227259pt;}
.y10a{bottom:469.866547pt;}
.yba{bottom:471.546563pt;}
.yb7{bottom:471.706883pt;}
.yb0{bottom:471.707067pt;}
.y1d7{bottom:472.667067pt;}
.y10{bottom:473.541515pt;}
.yc7{bottom:474.586635pt;}
.y20e{bottom:475.467427pt;}
.y3a{bottom:479.307979pt;}
.y131{bottom:479.707251pt;}
.y171{bottom:481.147075pt;}
.y109{bottom:482.106979pt;}
.yee{bottom:484.587251pt;}
.y1d4{bottom:489.386667pt;}
.yc6{bottom:489.866467pt;}
.yaf{bottom:490.267067pt;}
.y20d{bottom:490.747259pt;}
.y1d6{bottom:492.267067pt;}
.y39{bottom:494.587811pt;}
.y130{bottom:495.067243pt;}
.y170{bottom:496.507979pt;}
.yed{bottom:499.947243pt;}
.yc5{bottom:502.106899pt;}
.y20c{bottom:506.107251pt;}
.yae{bottom:508.747067pt;}
.y1d3{bottom:509.307243pt;}
.y38{bottom:509.947803pt;}
.y12f{bottom:510.427235pt;}
.y16f{bottom:511.707651pt;}
.yec{bottom:515.227075pt;}
.y20b{bottom:521.467243pt;}
.y1d2{bottom:524.667235pt;}
.yad{bottom:524.747067pt;}
.y37{bottom:525.307795pt;}
.y12e{bottom:525.707067pt;}
.y168{bottom:527.227200pt;}
.yf{bottom:529.942363pt;}
.yeb{bottom:530.586867pt;}
.y165{bottom:534.186828pt;}
.y20a{bottom:536.747075pt;}
.y16b{bottom:537.547067pt;}
.y163{bottom:537.627067pt;}
.y1d1{bottom:539.947379pt;}
.y36{bottom:540.587627pt;}
.y12d{bottom:541.067243pt;}
.y167{bottom:542.827009pt;}
.yea{bottom:542.827299pt;}
.y169{bottom:543.627067pt;}
.y166{bottom:544.427102pt;}
.y164{bottom:544.507067pt;}
.y16e{bottom:545.866500pt;}
.y16d{bottom:546.186893pt;}
.y16c{bottom:547.866934pt;}
.y77{bottom:548.987795pt;}
.y209{bottom:552.106675pt;}
.y16a{bottom:553.867341pt;}
.y1d0{bottom:555.307371pt;}
.y35{bottom:555.947619pt;}
.y12c{bottom:556.427235pt;}
.y76{bottom:564.267627pt;}
.y162{bottom:566.106915pt;}
.y208{bottom:568.427251pt;}
.y1cf{bottom:570.667363pt;}
.y34{bottom:571.067131pt;}
.y12b{bottom:571.707075pt;}
.y75{bottom:579.627619pt;}
.y161{bottom:581.546491pt;}
.y207{bottom:583.707083pt;}
.y1ce{bottom:585.947195pt;}
.ye{bottom:586.263539pt;}
.y33{bottom:586.427123pt;}
.y12a{bottom:587.065915pt;}
.y74{bottom:594.987611pt;}
.y160{bottom:597.868011pt;}
.y206{bottom:599.067075pt;}
.y99{bottom:600.588051pt;}
.y1cd{bottom:601.307187pt;}
.y129{bottom:602.666387pt;}
.y73{bottom:610.267443pt;}
.y15f{bottom:614.267411pt;}
.y205{bottom:614.426827pt;}
.y98{bottom:615.948043pt;}
.y1cc{bottom:616.587019pt;}
.y128{bottom:616.987067pt;}
.y32{bottom:617.227267pt;}
.y127{bottom:619.707939pt;}
.y72{bottom:625.627435pt;}
.y15e{bottom:629.547243pt;}
.y204{bottom:629.706659pt;}
.y97{bottom:631.227875pt;}
.y1cb{bottom:631.947011pt;}
.y31{bottom:632.587259pt;}
.y126{bottom:635.387235pt;}
.y71{bottom:640.987427pt;}
.yd{bottom:642.584715pt;}
.y96{bottom:643.468307pt;}
.y15d{bottom:644.907235pt;}
.y203{bottom:645.066651pt;}
.y1ca{bottom:647.307003pt;}
.y30{bottom:647.947251pt;}
.y125{bottom:650.668243pt;}
.y70{bottom:656.267259pt;}
.y15c{bottom:660.186427pt;}
.y202{bottom:661.307075pt;}
.y1c9{bottom:662.586835pt;}
.y2f{bottom:663.227083pt;}
.y108{bottom:664.107587pt;}
.y124{bottom:666.347539pt;}
.y6f{bottom:671.627251pt;}
.y15b{bottom:676.507003pt;}
.y201{bottom:676.666808pt;}
.y1c8{bottom:677.946827pt;}
.y2e{bottom:678.587075pt;}
.y14d{bottom:679.226667pt;}
.y150{bottom:681.866667pt;}
.y6e{bottom:686.746763pt;}
.y14c{bottom:689.866667pt;}
.y14f{bottom:689.867067pt;}
.y200{bottom:692.026800pt;}
.y15a{bottom:692.827579pt;}
.y1c7{bottom:693.306819pt;}
.y2d{bottom:693.948147pt;}
.y14a{bottom:698.107067pt;}
.yc{bottom:698.905891pt;}
.y6d{bottom:702.267075pt;}
.y23b{bottom:706.347435pt;}
.y1ff{bottom:708.267216pt;}
.y1c6{bottom:708.586651pt;}
.y2c{bottom:709.227979pt;}
.y159{bottom:709.228315pt;}
.y14b{bottom:711.466667pt;}
.y149{bottom:711.946667pt;}
.y6c{bottom:717.627067pt;}
.y23a{bottom:721.707427pt;}
.y1fe{bottom:723.627208pt;}
.y1c5{bottom:723.946643pt;}
.y2b{bottom:724.587971pt;}
.y158{bottom:724.588307pt;}
.y148{bottom:725.707200pt;}
.y6b{bottom:734.587067pt;}
.y143{bottom:736.586667pt;}
.y239{bottom:736.987259pt;}
.y1fd{bottom:738.987579pt;}
.y1c4{bottom:739.306635pt;}
.y147{bottom:739.306800pt;}
.y157{bottom:739.868139pt;}
.ye9{bottom:739.947419pt;}
.y2a{bottom:739.947963pt;}
.yc4{bottom:749.226819pt;}
.y146{bottom:750.826800pt;}
.y238{bottom:752.347251pt;}
.y142{bottom:752.907467pt;}
.y1fc{bottom:754.267411pt;}
.y1bc{bottom:754.347529pt;}
.y6a{bottom:754.827200pt;}
.yb{bottom:755.227067pt;}
.ye8{bottom:755.227251pt;}
.y29{bottom:755.227795pt;}
.y156{bottom:755.228131pt;}
.y145{bottom:758.827200pt;}
.y1c0{bottom:760.026859pt;}
.y1ba{bottom:760.746821pt;}
.y1c3{bottom:763.786547pt;}
.y1b6{bottom:763.787067pt;}
.y1b7{bottom:763.867067pt;}
.yc3{bottom:764.586811pt;}
.y141{bottom:766.747067pt;}
.y237{bottom:767.707243pt;}
.y1bf{bottom:769.307108pt;}
.y1bb{bottom:770.027071pt;}
.y1b9{bottom:770.107067pt;}
.ye7{bottom:770.587243pt;}
.y28{bottom:770.587787pt;}
.y1fb{bottom:770.587987pt;}
.y155{bottom:770.588123pt;}
.y69{bottom:770.827200pt;}
.y1c2{bottom:773.067067pt;}
.y1c1{bottom:773.067586pt;}
.y1b8{bottom:773.147200pt;}
.y1be{bottom:778.587358pt;}
.yc2{bottom:779.866643pt;}
.y140{bottom:780.507467pt;}
.y1bd{bottom:781.147225pt;}
.y236{bottom:782.987075pt;}
.y1fa{bottom:785.787659pt;}
.y154{bottom:785.867955pt;}
.ye6{bottom:785.947235pt;}
.y27{bottom:785.947779pt;}
.y68{bottom:786.107859pt;}
.yc1{bottom:792.107075pt;}
.y1ac{bottom:792.507355pt;}
.y13f{bottom:794.347067pt;}
.y235{bottom:798.347067pt;}
.y1b3{bottom:798.986835pt;}
.y1a9{bottom:798.986931pt;}
.y26{bottom:801.227611pt;}
.ye5{bottom:801.227795pt;}
.y1f9{bottom:801.227811pt;}
.y153{bottom:801.227947pt;}
.y67{bottom:801.467851pt;}
.y1ad{bottom:802.187067pt;}
.y1a7{bottom:802.347067pt;}
.y1b5{bottom:802.907067pt;}
.ya{bottom:804.345691pt;}
.y1ab{bottom:807.067051pt;}
.y1af{bottom:807.867067pt;}
.y1aa{bottom:808.346851pt;}
.y13e{bottom:808.827067pt;}
.y1b0{bottom:808.986971pt;}
.y1a8{bottom:808.987067pt;}
.y1ae{bottom:810.266555pt;}
.y1b4{bottom:811.546987pt;}
.y234{bottom:813.387067pt;}
.y25{bottom:816.587603pt;}
.ye4{bottom:816.587787pt;}
.y1f8{bottom:816.587803pt;}
.y152{bottom:816.587939pt;}
.y66{bottom:816.827843pt;}
.y1b2{bottom:817.226987pt;}
.y1b1{bottom:819.227267pt;}
.y233{bottom:829.947067pt;}
.y1a6{bottom:830.346915pt;}
.y24{bottom:831.787275pt;}
.y151{bottom:831.867771pt;}
.y123{bottom:831.947411pt;}
.ye3{bottom:831.947779pt;}
.y1f7{bottom:831.947795pt;}
.y65{bottom:832.107675pt;}
.y9{bottom:834.345979pt;}
.y232{bottom:845.307067pt;}
.y1a5{bottom:845.787067pt;}
.y107{bottom:846.108195pt;}
.y122{bottom:847.227243pt;}
.y23{bottom:847.227427pt;}
.ye2{bottom:847.227611pt;}
.y1f6{bottom:847.227627pt;}
.y64{bottom:847.467667pt;}
.y1a3{bottom:850.106675pt;}
.y19a{bottom:851.786319pt;}
.y194{bottom:854.907494pt;}
.y1a1{bottom:858.106797pt;}
.y19f{bottom:860.506455pt;}
.y231{bottom:860.667067pt;}
.y198{bottom:861.306931pt;}
.y121{bottom:862.587235pt;}
.y22{bottom:862.587419pt;}
.ye1{bottom:862.587603pt;}
.y1f5{bottom:862.587619pt;}
.y95{bottom:862.588339pt;}
.y63{bottom:862.827659pt;}
.y8{bottom:864.346267pt;}
.y192{bottom:864.427067pt;}
.y1a2{bottom:866.507297pt;}
.y19c{bottom:869.226682pt;}
.y191{bottom:869.867067pt;}
.y19d{bottom:870.027067pt;}
.y19b{bottom:870.186577pt;}
.y1a0{bottom:870.186842pt;}
.y199{bottom:870.506749pt;}
.y197{bottom:871.387067pt;}
.y196{bottom:872.347610pt;}
.y195{bottom:873.307525pt;}
.y193{bottom:873.627082pt;}
.y1a4{bottom:874.426597pt;}
.y21{bottom:877.867251pt;}
.ye0{bottom:877.867435pt;}
.y1f4{bottom:877.867451pt;}
.y120{bottom:877.867619pt;}
.y94{bottom:877.868171pt;}
.y62{bottom:878.107491pt;}
.y230{bottom:878.347067pt;}
.y19e{bottom:879.226885pt;}
.y190{bottom:892.108075pt;}
.y22f{bottom:893.227067pt;}
.y20{bottom:893.227243pt;}
.ydf{bottom:893.227427pt;}
.y1f3{bottom:893.227443pt;}
.y11f{bottom:893.227611pt;}
.y93{bottom:893.228163pt;}
.y61{bottom:893.467483pt;}
.y7{bottom:894.346555pt;}
.y18f{bottom:907.548227pt;}
.y22e{bottom:908.587067pt;}
.y1f{bottom:908.587235pt;}
.yde{bottom:908.587419pt;}
.y1f2{bottom:908.587435pt;}
.y11e{bottom:908.587603pt;}
.y92{bottom:908.588155pt;}
.y60{bottom:908.827475pt;}
.y18e{bottom:922.908219pt;}
.y22d{bottom:923.867067pt;}
.ydd{bottom:923.867251pt;}
.y1f1{bottom:923.867267pt;}
.y11d{bottom:923.867435pt;}
.y91{bottom:923.867987pt;}
.y5f{bottom:924.107307pt;}
.y6{bottom:924.346843pt;}
.y1e{bottom:928.507067pt;}
.y18d{bottom:938.268211pt;}
.ydc{bottom:939.227243pt;}
.y1f0{bottom:939.227259pt;}
.y1d{bottom:939.227395pt;}
.y11c{bottom:939.227427pt;}
.y22c{bottom:939.227683pt;}
.y90{bottom:939.227979pt;}
.y5e{bottom:939.306979pt;}
.y18c{bottom:953.548043pt;}
.y5{bottom:954.266611pt;}
.y8f{bottom:954.427651pt;}
.y1c{bottom:954.428403pt;}
.ydb{bottom:954.587235pt;}
.y1ef{bottom:954.587251pt;}
.y11b{bottom:954.587419pt;}
.y22b{bottom:954.587675pt;}
.y5d{bottom:954.666971pt;}
.y18b{bottom:968.827875pt;}
.yda{bottom:969.867075pt;}
.y1ee{bottom:969.867083pt;}
.y11a{bottom:969.867251pt;}
.y22a{bottom:969.867507pt;}
.y8e{bottom:969.867803pt;}
.y5c{bottom:970.747067pt;}
.y4{bottom:984.266899pt;}
.y1b{bottom:985.068227pt;}
.yd9{bottom:985.226899pt;}
.y5b{bottom:985.227067pt;}
.y1ed{bottom:985.227075pt;}
.y119{bottom:985.227243pt;}
.y18a{bottom:985.227275pt;}
.y229{bottom:985.227499pt;}
.y8d{bottom:985.227795pt;}
.y8c{bottom:1000.427467pt;}
.y1a{bottom:1000.428219pt;}
.yd8{bottom:1000.586891pt;}
.y5a{bottom:1000.587067pt;}
.y1ec{bottom:1000.587203pt;}
.y118{bottom:1000.587235pt;}
.y189{bottom:1000.587267pt;}
.y228{bottom:1000.587491pt;}
.y3{bottom:1014.267187pt;}
.y8b{bottom:1015.707299pt;}
.y19{bottom:1015.708051pt;}
.yd7{bottom:1015.866723pt;}
.y1eb{bottom:1015.867035pt;}
.y59{bottom:1015.867067pt;}
.y188{bottom:1015.867099pt;}
.y227{bottom:1015.867323pt;}
.y117{bottom:1015.867715pt;}
.y17{bottom:1034.587067pt;}
.y2{bottom:1043.627707pt;}
.y1{bottom:1061.547067pt;}
.h11{height:9.440000pt;}
.h10{height:9.520000pt;}
.h4f{height:16.160000pt;}
.h34{height:17.266561pt;}
.h37{height:17.278703pt;}
.h3b{height:17.552812pt;}
.h41{height:17.565156pt;}
.h46{height:20.383111pt;}
.h4a{height:20.397445pt;}
.h2b{height:22.433161pt;}
.h2e{height:22.448937pt;}
.h38{height:23.030335pt;}
.h3e{height:23.416094pt;}
.h8{height:24.013125pt;}
.h23{height:24.148125pt;}
.h32{height:24.344159pt;}
.h54{height:31.572812pt;}
.h20{height:33.349962pt;}
.h1f{height:33.351562pt;}
.h26{height:33.539062pt;}
.h48{height:33.972839pt;}
.h4c{height:33.996730pt;}
.h35{height:34.533863pt;}
.h36{height:34.558148pt;}
.h3d{height:35.105625pt;}
.h27{height:35.120000pt;}
.h40{height:35.130313pt;}
.h19{height:37.105280pt;}
.hc{height:37.105312pt;}
.h13{height:37.105473pt;}
.h17{height:37.106113pt;}
.h1a{height:37.106689pt;}
.h18{height:37.106721pt;}
.h6{height:37.131406pt;}
.h16{height:37.132078pt;}
.h51{height:37.132366pt;}
.h50{height:37.132441pt;}
.h12{height:37.133070pt;}
.h1e{height:37.340156pt;}
.h2d{height:37.414524pt;}
.h1{height:39.030469pt;}
.h53{height:39.048750pt;}
.h22{height:41.040000pt;}
.h15{height:42.545313pt;}
.h31{height:42.570873pt;}
.hd{height:42.889332pt;}
.he{height:42.892500pt;}
.h1b{height:45.675765pt;}
.h1c{height:45.676981pt;}
.h49{height:45.677445pt;}
.h52{height:45.795000pt;}
.h39{height:46.069435pt;}
.h47{height:46.133822pt;}
.h3f{height:46.832187pt;}
.h4d{height:47.898289pt;}
.h3c{height:47.906169pt;}
.h1d{height:48.220156pt;}
.h33{height:48.689254pt;}
.h4b{height:49.037562pt;}
.h42{height:49.495532pt;}
.ha{height:49.499844pt;}
.h29{height:49.502148pt;}
.h28{height:49.502404pt;}
.h30{height:49.877268pt;}
.h14{height:52.314917pt;}
.hb{height:52.422344pt;}
.h2f{height:52.713757pt;}
.hf{height:53.216220pt;}
.h7{height:53.857500pt;}
.h9{height:55.736250pt;}
.h5{height:56.946094pt;}
.h21{height:57.217463pt;}
.h4e{height:58.337500pt;}
.h43{height:61.467246pt;}
.h25{height:65.540662pt;}
.h24{height:70.019062pt;}
.h44{height:73.080443pt;}
.h3a{height:73.175293pt;}
.h45{height:75.912111pt;}
.h2c{height:78.693992pt;}
.h4{height:79.171875pt;}
.h2a{height:80.427860pt;}
.h2{height:92.350781pt;}
.h3{height:114.271406pt;}
.h0{height:1122.666667pt;}
.w2{width:2.400000pt;}
.w3{width:3.360000pt;}
.w4{width:14.000000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.xf{left:52.958944pt;}
.x8{left:75.600000pt;}
.x1b{left:80.000000pt;}
.x12{left:84.960000pt;}
.x35{left:87.520791pt;}
.x11{left:91.599936pt;}
.x1c{left:94.000000pt;}
.x3a{left:99.679873pt;}
.x76{left:104.000864pt;}
.x15{left:109.440000pt;}
.x39{left:111.679781pt;}
.x2{left:113.438789pt;}
.x34{left:119.761153pt;}
.x73{left:123.599512pt;}
.x2e{left:127.041021pt;}
.x16{left:129.920000pt;}
.x17{left:132.320000pt;}
.x38{left:135.919218pt;}
.x37{left:147.119491pt;}
.x3{left:148.559245pt;}
.x30{left:154.959789pt;}
.xa{left:156.480000pt;}
.x75{left:178.880992pt;}
.x33{left:185.040211pt;}
.x2f{left:189.920257pt;}
.x2d{left:196.400745pt;}
.x28{left:205.120000pt;}
.x9{left:222.879304pt;}
.x74{left:226.640320pt;}
.x2c{left:227.680510pt;}
.x2b{left:238.880355pt;}
.x36{left:246.880000pt;}
.x32{left:256.080000pt;}
.x6{left:259.601217pt;}
.x31{left:264.400000pt;}
.xb{left:272.399776pt;}
.x18{left:277.039528pt;}
.x5{left:282.320000pt;}
.x2a{left:293.440226pt;}
.x4{left:301.199509pt;}
.x29{left:304.800000pt;}
.xc{left:322.239256pt;}
.x19{left:326.399384pt;}
.xe{left:360.318936pt;}
.xd{left:363.358664pt;}
.x1a{left:378.079752pt;}
.x1{left:396.880000pt;}
.x10{left:415.520000pt;}
.x5f{left:416.880048pt;}
.x1f{left:418.960000pt;}
.x40{left:426.718749pt;}
.x49{left:429.438327pt;}
.x53{left:431.679632pt;}
.x46{left:433.838092pt;}
.x77{left:443.919816pt;}
.x57{left:446.880592pt;}
.x4d{left:448.480317pt;}
.x58{left:453.600016pt;}
.x5e{left:454.560088pt;}
.x6f{left:460.160000pt;}
.x52{left:461.679408pt;}
.x71{left:462.880000pt;}
.x6a{left:465.758533pt;}
.x70{left:468.320000pt;}
.x48{left:469.918892pt;}
.x72{left:471.040000pt;}
.x3f{left:478.398772pt;}
.x5d{left:481.280367pt;}
.x3e{left:484.479079pt;}
.x54{left:487.679808pt;}
.x4b{left:491.438667pt;}
.x45{left:493.038840pt;}
.x7{left:494.880000pt;}
.x5b{left:496.240064pt;}
.x4f{left:503.760000pt;}
.x4c{left:507.520069pt;}
.x3d{left:525.199476pt;}
.x47{left:527.599593pt;}
.x44{left:533.599356pt;}
.x5a{left:535.920184pt;}
.x51{left:539.439424pt;}
.x56{left:546.480000pt;}
.x6e{left:557.280552pt;}
.x43{left:563.199419pt;}
.x69{left:564.799238pt;}
.x5c{left:569.120000pt;}
.x20{left:570.160000pt;}
.x42{left:572.959383pt;}
.x6c{left:573.919892pt;}
.x59{left:577.040000pt;}
.x67{left:580.719892pt;}
.x3c{left:592.000000pt;}
.x21{left:597.600000pt;}
.x4a{left:600.000000pt;}
.x1d{left:602.720000pt;}
.x22{left:604.160000pt;}
.x65{left:608.799349pt;}
.x24{left:611.839600pt;}
.x23{left:616.480400pt;}
.x55{left:617.600000pt;}
.x50{left:621.200000pt;}
.x6b{left:625.919914pt;}
.x41{left:627.279838pt;}
.x60{left:632.080000pt;}
.x6d{left:634.240000pt;}
.x25{left:636.640000pt;}
.x66{left:638.480026pt;}
.x3b{left:639.520000pt;}
.x26{left:643.120000pt;}
.x64{left:644.639681pt;}
.x4e{left:646.640000pt;}
.x68{left:653.599743pt;}
.x27{left:654.799600pt;}
.x61{left:661.360000pt;}
.x63{left:681.839942pt;}
.x62{left:694.800000pt;}
.x14{left:712.399152pt;}
.x13{left:717.520040pt;}
.x1e{left:721.520000pt;}
}




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