
    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_9066d67b333330489fba74f5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_9479f3e44d0c18f2342980c1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.905762;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_dc3fefdb891edf4b91390a5a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_29bf93e0db71051960c09d7a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.890625;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_eb6ffba103f6935ae43e8f9a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_420b877d417a851014de5a2a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b4e9186b78b1bb6a45e021c0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a7bc2f93f9c758613ddabeb9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6f4dc832e400a77b10d4ddb1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.684000;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_50e2df488dfdfd5c99269cec.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.678711;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_758cf0552f2b14f5ad7e04a8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.906250;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;}
.m8{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.181341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181341,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.182681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182681,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.186035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186035,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.186411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186411,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.236547,0.000000,-0.080905,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080905,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080905,0.236547,0,0);}
.m1{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);}
.m3{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);}
.mb{transform:matrix(0.236548,0.000000,-0.080900,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080900,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080900,0.236548,0,0);}
.m6{transform:matrix(0.236549,0.000000,-0.080899,0.236549,0,0);-ms-transform:matrix(0.236549,0.000000,-0.080899,0.236549,0,0);-webkit-transform:matrix(0.236549,0.000000,-0.080899,0.236549,0,0);}
.m9{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v15{vertical-align:-67.676187px;}
.v2{vertical-align:-51.840000px;}
.v11{vertical-align:-21.229758px;}
.v9{vertical-align:-16.559400px;}
.v4{vertical-align:-14.400000px;}
.v1{vertical-align:-13.320000px;}
.v6{vertical-align:-9.000912px;}
.ve{vertical-align:-4.315658px;}
.vd{vertical-align:-3.238051px;}
.v14{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.080000px;}
.vf{vertical-align:2.165675px;}
.v8{vertical-align:3.240000px;}
.v10{vertical-align:4.315657px;}
.v5{vertical-align:7.920000px;}
.v7{vertical-align:13.680000px;}
.vb{vertical-align:14.759650px;}
.va{vertical-align:16.559400px;}
.v12{vertical-align:24.480054px;}
.v13{vertical-align:25.560139px;}
.vc{vertical-align:38.160000px;}
.ls5a{letter-spacing:-0.593739px;}
.ls7b{letter-spacing:-0.564959px;}
.ls7e{letter-spacing:-0.474784px;}
.ls8c{letter-spacing:-0.443335px;}
.ls7a{letter-spacing:-0.204013px;}
.ls59{letter-spacing:-0.162792px;}
.ls2f{letter-spacing:-0.159768px;}
.ls60{letter-spacing:-0.144288px;}
.ls2e{letter-spacing:-0.125532px;}
.ls21{letter-spacing:-0.102204px;}
.ls98{letter-spacing:-0.093600px;}
.ls32{letter-spacing:-0.091296px;}
.ls63{letter-spacing:-0.090180px;}
.ls5d{letter-spacing:-0.084168px;}
.ls68{letter-spacing:-0.078156px;}
.ls66{letter-spacing:-0.077688px;}
.ls2a{letter-spacing:-0.072144px;}
.ls30{letter-spacing:-0.072000px;}
.ls5b{letter-spacing:-0.068970px;}
.ls23{letter-spacing:-0.066132px;}
.ls22{letter-spacing:-0.060120px;}
.ls97{letter-spacing:-0.058716px;}
.ls31{letter-spacing:-0.057060px;}
.ls2b{letter-spacing:-0.054108px;}
.ls27{letter-spacing:-0.048096px;}
.ls57{letter-spacing:-0.042084px;}
.ls78{letter-spacing:-0.038304px;}
.ls29{letter-spacing:-0.036072px;}
.ls20{letter-spacing:-0.030060px;}
.ls26{letter-spacing:-0.024048px;}
.ls64{letter-spacing:-0.023940px;}
.ls2c{letter-spacing:-0.022824px;}
.ls25{letter-spacing:-0.018036px;}
.ls58{letter-spacing:-0.014364px;}
.ls90{letter-spacing:-0.012024px;}
.ls5f{letter-spacing:-0.011664px;}
.ls2d{letter-spacing:-0.011412px;}
.ls28{letter-spacing:-0.006012px;}
.ls1f{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.004788px;}
.lsf{letter-spacing:0.006012px;}
.ls96{letter-spacing:0.007200px;}
.ls42{letter-spacing:0.008568px;}
.ls37{letter-spacing:0.009576px;}
.ls3{letter-spacing:0.012024px;}
.ls92{letter-spacing:0.014364px;}
.ls18{letter-spacing:0.016776px;}
.ls6{letter-spacing:0.018036px;}
.ls48{letter-spacing:0.019152px;}
.ls1d{letter-spacing:0.022824px;}
.ls36{letter-spacing:0.023940px;}
.lsa{letter-spacing:0.024048px;}
.ls2{letter-spacing:0.028728px;}
.ls12{letter-spacing:0.030060px;}
.ls33{letter-spacing:0.033516px;}
.ls54{letter-spacing:0.033552px;}
.ls19{letter-spacing:0.036072px;}
.ls0{letter-spacing:0.038304px;}
.ls39{letter-spacing:0.038983px;}
.ls15{letter-spacing:0.041940px;}
.lse{letter-spacing:0.042084px;}
.ls35{letter-spacing:0.043092px;}
.ls69{letter-spacing:0.047880px;}
.ls24{letter-spacing:0.048096px;}
.lsb{letter-spacing:0.050328px;}
.ls94{letter-spacing:0.052668px;}
.ls53{letter-spacing:0.054000px;}
.ls13{letter-spacing:0.054108px;}
.ls1e{letter-spacing:0.057060px;}
.ls17{letter-spacing:0.058716px;}
.ls1a{letter-spacing:0.060120px;}
.ls1{letter-spacing:0.062244px;}
.ls10{letter-spacing:0.066132px;}
.ls72{letter-spacing:0.067032px;}
.ls91{letter-spacing:0.071820px;}
.ls1b{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.072144px;}
.ls8f{letter-spacing:0.075492px;}
.ls4{letter-spacing:0.078156px;}
.ls34{letter-spacing:0.081396px;}
.ls16{letter-spacing:0.083880px;}
.ls8{letter-spacing:0.084168px;}
.lsd{letter-spacing:0.090180px;}
.ls5{letter-spacing:0.096192px;}
.ls93{letter-spacing:0.100548px;}
.ls43{letter-spacing:0.102204px;}
.ls4c{letter-spacing:0.108000px;}
.ls14{letter-spacing:0.108216px;}
.lsc{letter-spacing:0.109044px;}
.ls4e{letter-spacing:0.111600px;}
.ls11{letter-spacing:0.114228px;}
.ls67{letter-spacing:0.117432px;}
.ls65{letter-spacing:0.118800px;}
.ls9{letter-spacing:0.120240px;}
.ls6d{letter-spacing:0.126252px;}
.ls8a{letter-spacing:0.129542px;}
.ls52{letter-spacing:0.129600px;}
.ls47{letter-spacing:0.132264px;}
.ls3c{letter-spacing:0.138276px;}
.ls51{letter-spacing:0.140400px;}
.ls1c{letter-spacing:0.144000px;}
.ls5e{letter-spacing:0.150300px;}
.ls46{letter-spacing:0.156312px;}
.ls79{letter-spacing:0.156933px;}
.ls45{letter-spacing:0.162324px;}
.ls3e{letter-spacing:0.174348px;}
.ls3f{letter-spacing:0.176328px;}
.ls87{letter-spacing:0.176364px;}
.ls86{letter-spacing:0.178344px;}
.ls84{letter-spacing:0.178452px;}
.ls88{letter-spacing:0.179676px;}
.ls40{letter-spacing:0.179928px;}
.ls3d{letter-spacing:0.180360px;}
.ls83{letter-spacing:0.181908px;}
.ls56{letter-spacing:0.181944px;}
.ls49{letter-spacing:0.182376px;}
.ls4a{letter-spacing:0.183240px;}
.ls8b{letter-spacing:0.275173px;}
.ls38{letter-spacing:0.398407px;}
.ls71{letter-spacing:0.483588px;}
.ls6a{letter-spacing:0.564959px;}
.ls73{letter-spacing:0.603435px;}
.ls76{letter-spacing:0.612624px;}
.ls80{letter-spacing:0.635956px;}
.ls74{letter-spacing:0.640192px;}
.ls75{letter-spacing:0.649381px;}
.ls8d{letter-spacing:0.657358px;}
.ls77{letter-spacing:0.658571px;}
.ls81{letter-spacing:0.672646px;}
.ls82{letter-spacing:0.697105px;}
.ls7f{letter-spacing:1.144684px;}
.ls95{letter-spacing:1.172340px;}
.ls8e{letter-spacing:1.636492px;}
.ls85{letter-spacing:2.248488px;}
.ls55{letter-spacing:4.412808px;}
.ls7d{letter-spacing:10.172304px;}
.ls6c{letter-spacing:10.887732px;}
.ls6b{letter-spacing:72.810000px;}
.ls4f{letter-spacing:104.400000px;}
.ls50{letter-spacing:104.760000px;}
.ls4b{letter-spacing:122.544000px;}
.ls4d{letter-spacing:122.904000px;}
.ls6e{letter-spacing:133.737912px;}
.ls5c{letter-spacing:144.488234px;}
.ls44{letter-spacing:144.964363px;}
.ls7c{letter-spacing:192.354435px;}
.ls61{letter-spacing:206.422176px;}
.ls3b{letter-spacing:312.080700px;}
.ls89{letter-spacing:338.047164px;}
.ls41{letter-spacing:343.674853px;}
.ls6f{letter-spacing:376.600032px;}
.ls62{letter-spacing:449.646970px;}
.ls70{letter-spacing:583.762963px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws62{word-spacing:-65.298782px;}
.ws1{word-spacing:-60.120000px;}
.ws0{word-spacing:-47.880000px;}
.ws2{word-spacing:-36.000000px;}
.ws5{word-spacing:-35.928000px;}
.ws6{word-spacing:-28.587060px;}
.ws3{word-spacing:-28.552824px;}
.ws4{word-spacing:-28.370232px;}
.wsd3{word-spacing:-16.335000px;}
.wsd0{word-spacing:-15.120180px;}
.wscf{word-spacing:-15.078096px;}
.wsd1{word-spacing:-15.030000px;}
.wscd{word-spacing:-15.024450px;}
.ws69{word-spacing:-14.885712px;}
.ws63{word-spacing:-13.699650px;}
.ws65{word-spacing:-13.689150px;}
.ws70{word-spacing:-13.680000px;}
.wsca{word-spacing:-13.642709px;}
.ws60{word-spacing:-13.296276px;}
.ws5f{word-spacing:-12.151944px;}
.ws110{word-spacing:-12.124142px;}
.ws61{word-spacing:-11.994600px;}
.ws76{word-spacing:-10.119600px;}
.ws64{word-spacing:-9.720000px;}
.ws68{word-spacing:-9.708336px;}
.ws114{word-spacing:-9.135750px;}
.ws4e{word-spacing:-4.856652px;}
.ws54{word-spacing:-0.150984px;}
.ws156{word-spacing:-0.142596px;}
.ws4d{word-spacing:-0.134208px;}
.wsb1{word-spacing:-0.125820px;}
.ws55{word-spacing:-0.109044px;}
.ws5e{word-spacing:-0.091296px;}
.ws5d{word-spacing:-0.068472px;}
.ws79{word-spacing:-0.062244px;}
.ws13b{word-spacing:-0.052668px;}
.wsae{word-spacing:-0.050400px;}
.ws88{word-spacing:-0.048096px;}
.wsf7{word-spacing:-0.047880px;}
.ws8{word-spacing:-0.043092px;}
.wsad{word-spacing:-0.039600px;}
.ws15a{word-spacing:-0.036072px;}
.ws98{word-spacing:-0.030060px;}
.wsd8{word-spacing:-0.028728px;}
.ws35{word-spacing:-0.024048px;}
.ws7a{word-spacing:-0.023940px;}
.ws7{word-spacing:-0.019152px;}
.ws52{word-spacing:-0.018036px;}
.ws78{word-spacing:-0.014364px;}
.ws94{word-spacing:-0.012024px;}
.ws9{word-spacing:-0.009576px;}
.ws161{word-spacing:-0.007200px;}
.wse{word-spacing:-0.006012px;}
.ws7b{word-spacing:-0.004788px;}
.wsa{word-spacing:0.000000px;}
.ws53{word-spacing:0.006012px;}
.ws84{word-spacing:0.009576px;}
.wsc{word-spacing:0.012024px;}
.ws86{word-spacing:0.014364px;}
.ws157{word-spacing:0.018036px;}
.wsac{word-spacing:0.024048px;}
.wsaf{word-spacing:0.025200px;}
.ws159{word-spacing:0.030060px;}
.ws82{word-spacing:0.033516px;}
.ws47{word-spacing:0.036072px;}
.ws1d{word-spacing:0.042084px;}
.wsa3{word-spacing:0.043092px;}
.ws163{word-spacing:0.048096px;}
.ws4c{word-spacing:0.054108px;}
.wsb0{word-spacing:0.056772px;}
.wsd7{word-spacing:0.057456px;}
.ws10c{word-spacing:0.060120px;}
.ws10{word-spacing:0.066132px;}
.wsd{word-spacing:0.072144px;}
.wsb{word-spacing:0.078156px;}
.wsf{word-spacing:0.090180px;}
.ws162{word-spacing:0.093600px;}
.ws81{word-spacing:0.120240px;}
.ws3e{word-spacing:0.126252px;}
.ws87{word-spacing:0.132264px;}
.ws158{word-spacing:0.144288px;}
.ws1e{word-spacing:0.150300px;}
.wsa8{word-spacing:0.156312px;}
.ws96{word-spacing:0.162324px;}
.ws164{word-spacing:0.174348px;}
.ws85{word-spacing:0.181944px;}
.ws146{word-spacing:0.318636px;}
.ws10b{word-spacing:0.336672px;}
.wsa7{word-spacing:0.348696px;}
.ws136{word-spacing:0.474948px;}
.ws13d{word-spacing:0.697392px;}
.wse8{word-spacing:0.703404px;}
.wsea{word-spacing:0.715428px;}
.wse7{word-spacing:0.739476px;}
.wsdd{word-spacing:0.757512px;}
.ws13c{word-spacing:0.775548px;}
.ws90{word-spacing:0.865728px;}
.wsfe{word-spacing:0.871740px;}
.ws116{word-spacing:0.889727px;}
.ws115{word-spacing:0.911129px;}
.wsfc{word-spacing:0.912810px;}
.wsf9{word-spacing:0.918936px;}
.wsf8{word-spacing:0.928125px;}
.ws118{word-spacing:0.929474px;}
.ws11a{word-spacing:0.950876px;}
.wsfb{word-spacing:0.955693px;}
.ws14b{word-spacing:0.995904px;}
.ws25{word-spacing:1.148292px;}
.ws24{word-spacing:1.160316px;}
.wsa5{word-spacing:1.226448px;}
.wsdc{word-spacing:1.238472px;}
.ws117{word-spacing:1.308601px;}
.ws119{word-spacing:1.311659px;}
.wsfa{word-spacing:1.323268px;}
.ws7f{word-spacing:1.448892px;}
.ws15b{word-spacing:1.466928px;}
.ws7d{word-spacing:1.875744px;}
.ws93{word-spacing:1.935864px;}
.ws46{word-spacing:1.941876px;}
.ws1a{word-spacing:2.176344px;}
.ws92{word-spacing:2.206404px;}
.ws7c{word-spacing:2.212416px;}
.ws149{word-spacing:2.242476px;}
.ws8d{word-spacing:2.332656px;}
.wsc1{word-spacing:2.513016px;}
.ws11f{word-spacing:2.519028px;}
.ws48{word-spacing:2.525040px;}
.wsa9{word-spacing:2.555100px;}
.wsb2{word-spacing:2.585160px;}
.ws140{word-spacing:2.651292px;}
.ws12a{word-spacing:2.675340px;}
.ws11e{word-spacing:2.885760px;}
.wsd6{word-spacing:2.897784px;}
.wsf1{word-spacing:2.927844px;}
.wsc0{word-spacing:2.957904px;}
.ws9b{word-spacing:3.030048px;}
.ws9a{word-spacing:3.174336px;}
.ws13{word-spacing:3.258504px;}
.ws11d{word-spacing:3.264516px;}
.ws109{word-spacing:3.288564px;}
.ws44{word-spacing:3.300588px;}
.ws12{word-spacing:3.312612px;}
.ws17{word-spacing:3.571128px;}
.wsa1{word-spacing:3.595176px;}
.ws124{word-spacing:3.601188px;}
.ws2e{word-spacing:3.625236px;}
.ws41{word-spacing:3.637260px;}
.ws11b{word-spacing:3.763512px;}
.ws143{word-spacing:3.950100px;}
.ws10a{word-spacing:3.967920px;}
.ws123{word-spacing:4.016016px;}
.ws40{word-spacing:4.034052px;}
.ws4f{word-spacing:4.112208px;}
.ws120{word-spacing:4.232448px;}
.ws141{word-spacing:4.304412px;}
.ws122{word-spacing:4.310604px;}
.ws3a{word-spacing:4.322628px;}
.ws121{word-spacing:4.328640px;}
.wsb9{word-spacing:4.334652px;}
.wsba{word-spacing:4.346676px;}
.ws15f{word-spacing:4.376736px;}
.ws2c{word-spacing:4.406796px;}
.ws2b{word-spacing:4.412808px;}
.ws135{word-spacing:4.460904px;}
.ws42{word-spacing:4.478940px;}
.wsb5{word-spacing:4.653288px;}
.wsb4{word-spacing:4.683348px;}
.wse4{word-spacing:4.695372px;}
.ws36{word-spacing:4.701384px;}
.wsb6{word-spacing:4.791564px;}
.ws49{word-spacing:5.020020px;}
.ws20{word-spacing:5.038056px;}
.wsbd{word-spacing:5.164308px;}
.ws34{word-spacing:5.176332px;}
.wsb7{word-spacing:5.206392px;}
.ws145{word-spacing:5.400864px;}
.wsa6{word-spacing:5.422824px;}
.ws144{word-spacing:5.429592px;}
.ws107{word-spacing:5.531040px;}
.ws160{word-spacing:5.543064px;}
.ws8e{word-spacing:5.771520px;}
.ws5b{word-spacing:5.789556px;}
.ws56{word-spacing:5.843664px;}
.ws7e{word-spacing:5.885748px;}
.ws91{word-spacing:5.903784px;}
.ws142{word-spacing:6.119064px;}
.ws14a{word-spacing:6.126228px;}
.ws3b{word-spacing:6.138252px;}
.ws5a{word-spacing:6.150276px;}
.ws108{word-spacing:6.162300px;}
.ws12b{word-spacing:6.553080px;}
.ws45{word-spacing:6.595164px;}
.ws12d{word-spacing:6.859692px;}
.wse3{word-spacing:6.931836px;}
.wsaa{word-spacing:7.003980px;}
.ws97{word-spacing:7.022016px;}
.ws16{word-spacing:7.172316px;}
.ws4b{word-spacing:7.208388px;}
.ws22{word-spacing:7.250472px;}
.ws12c{word-spacing:7.268508px;}
.wse2{word-spacing:7.292556px;}
.ws23{word-spacing:7.310592px;}
.ws152{word-spacing:7.526736px;}
.ws153{word-spacing:7.531524px;}
.ws130{word-spacing:7.551072px;}
.ws12f{word-spacing:7.581132px;}
.ws131{word-spacing:7.599168px;}
.ws57{word-spacing:7.611192px;}
.ws58{word-spacing:7.617204px;}
.ws31{word-spacing:7.635240px;}
.ws12e{word-spacing:7.659288px;}
.ws15{word-spacing:7.749468px;}
.ws13f{word-spacing:7.923816px;}
.ws18{word-spacing:7.929828px;}
.ws37{word-spacing:7.947864px;}
.ws133{word-spacing:7.971912px;}
.ws30{word-spacing:7.983936px;}
.ws132{word-spacing:8.007984px;}
.ws2d{word-spacing:8.032032px;}
.wse9{word-spacing:8.242452px;}
.ws150{word-spacing:8.254512px;}
.wsda{word-spacing:8.290548px;}
.ws3f{word-spacing:8.338644px;}
.ws100{word-spacing:8.603172px;}
.ws10f{word-spacing:8.633232px;}
.ws13e{word-spacing:8.639244px;}
.ws21{word-spacing:8.645256px;}
.ws15e{word-spacing:8.657280px;}
.ws50{word-spacing:8.663292px;}
.wseb{word-spacing:8.693352px;}
.wsff{word-spacing:8.777520px;}
.ws51{word-spacing:8.975916px;}
.ws39{word-spacing:8.993952px;}
.ws147{word-spacing:9.036036px;}
.ws125{word-spacing:9.360684px;}
.ws59{word-spacing:9.553068px;}
.wsbc{word-spacing:9.697356px;}
.ws33{word-spacing:9.739440px;}
.ws127{word-spacing:9.847656px;}
.ws1c{word-spacing:9.877716px;}
.ws148{word-spacing:9.883728px;}
.wsef{word-spacing:10.034028px;}
.ws32{word-spacing:10.076112px;}
.wsbb{word-spacing:10.082124px;}
.ws1b{word-spacing:10.148256px;}
.ws5c{word-spacing:10.232424px;}
.ws9c{word-spacing:10.454868px;}
.ws103{word-spacing:10.533024px;}
.wsee{word-spacing:10.569096px;}
.wsde{word-spacing:10.785528px;}
.wse6{word-spacing:10.791540px;}
.wsa0{word-spacing:10.797552px;}
.ws43{word-spacing:10.815588px;}
.ws102{word-spacing:10.827612px;}
.ws15d{word-spacing:10.839636px;}
.wsdf{word-spacing:10.905768px;}
.ws14f{word-spacing:11.127312px;}
.wse1{word-spacing:11.146248px;}
.ws15c{word-spacing:11.200356px;}
.ws80{word-spacing:11.290536px;}
.ws14c{word-spacing:11.500776px;}
.ws14e{word-spacing:11.524716px;}
.ws9f{word-spacing:11.525004px;}
.ws11c{word-spacing:11.645244px;}
.ws83{word-spacing:11.855088px;}
.wsbe{word-spacing:11.879712px;}
.ws8c{word-spacing:11.939832px;}
.ws26{word-spacing:12.234420px;}
.ws126{word-spacing:12.240432px;}
.wsf0{word-spacing:12.246444px;}
.ws8a{word-spacing:12.252456px;}
.wsb3{word-spacing:12.306564px;}
.ws8b{word-spacing:12.324600px;}
.ws89{word-spacing:12.516984px;}
.ws4a{word-spacing:12.985920px;}
.wsa4{word-spacing:13.328604px;}
.ws2f{word-spacing:13.436820px;}
.wsb8{word-spacing:13.472892px;}
.ws154{word-spacing:13.650588px;}
.wsd9{word-spacing:14.050044px;}
.ws10d{word-spacing:14.098140px;}
.ws10e{word-spacing:14.110164px;}
.ws155{word-spacing:14.378364px;}
.wsdb{word-spacing:14.422788px;}
.ws101{word-spacing:15.132204px;}
.ws128{word-spacing:15.841620px;}
.ws134{word-spacing:16.184304px;}
.ws19{word-spacing:16.352640px;}
.wse0{word-spacing:16.569072px;}
.ws3d{word-spacing:16.575084px;}
.ws38{word-spacing:16.917768px;}
.wsbf{word-spacing:16.935804px;}
.ws3c{word-spacing:17.013960px;}
.ws14{word-spacing:17.284500px;}
.ws9d{word-spacing:17.981892px;}
.wsab{word-spacing:18.378684px;}
.ws2a{word-spacing:19.088100px;}
.ws67{word-spacing:19.411215px;}
.ws11{word-spacing:20.999916px;}
.ws29{word-spacing:23.398704px;}
.ws1f{word-spacing:23.922576px;}
.ws129{word-spacing:23.956128px;}
.ws28{word-spacing:24.198300px;}
.ws27{word-spacing:24.210324px;}
.ws14d{word-spacing:25.558344px;}
.ws9e{word-spacing:25.719336px;}
.ws104{word-spacing:26.404704px;}
.wsec{word-spacing:28.094076px;}
.ws151{word-spacing:35.249256px;}
.ws106{word-spacing:35.290440px;}
.ws105{word-spacing:35.338536px;}
.wsfd{word-spacing:44.146044px;}
.ws71{word-spacing:88.312877px;}
.ws113{word-spacing:90.953160px;}
.ws112{word-spacing:91.675508px;}
.wsd5{word-spacing:91.692328px;}
.ws111{word-spacing:99.780617px;}
.wsd4{word-spacing:100.813579px;}
.ws75{word-spacing:110.145600px;}
.ws74{word-spacing:113.040000px;}
.wsc7{word-spacing:130.275314px;}
.ws77{word-spacing:132.782400px;}
.wsc9{word-spacing:133.168113px;}
.wscb{word-spacing:139.670370px;}
.wsc3{word-spacing:140.381800px;}
.wsc6{word-spacing:144.728844px;}
.ws6f{word-spacing:146.165633px;}
.wscc{word-spacing:146.183090px;}
.wsc4{word-spacing:148.688786px;}
.wsce{word-spacing:149.728446px;}
.wsc2{word-spacing:153.025368px;}
.wsc5{word-spacing:154.484845px;}
.ws6a{word-spacing:162.621028px;}
.wsc8{word-spacing:164.596561px;}
.wse5{word-spacing:174.889080px;}
.ws72{word-spacing:186.029343px;}
.ws66{word-spacing:192.585995px;}
.wsa2{word-spacing:240.486876px;}
.ws95{word-spacing:261.660276px;}
.ws139{word-spacing:283.689000px;}
.ws138{word-spacing:297.009216px;}
.ws137{word-spacing:297.727416px;}
.ws13a{word-spacing:298.436040px;}
.wsd2{word-spacing:380.934666px;}
.wsf3{word-spacing:430.565688px;}
.wsf5{word-spacing:431.992512px;}
.ws73{word-spacing:439.495654px;}
.wsf4{word-spacing:443.890692px;}
.wsf2{word-spacing:444.608892px;}
.wsf6{word-spacing:445.312728px;}
.wsed{word-spacing:573.436584px;}
.ws6b{word-spacing:586.078453px;}
.ws6e{word-spacing:618.476619px;}
.ws6c{word-spacing:685.539399px;}
.ws6d{word-spacing:718.610861px;}
.ws8f{word-spacing:781.499880px;}
.ws99{word-spacing:916.138620px;}
._1e{margin-left:-706.817111px;}
._11{margin-left:-599.546003px;}
._45{margin-left:-534.053090px;}
._29{margin-left:-476.330100px;}
._46{margin-left:-430.525141px;}
._47{margin-left:-421.387690px;}
._27{margin-left:-389.195783px;}
._13{margin-left:-372.077014px;}
._26{margin-left:-368.051785px;}
._2c{margin-left:-365.186019px;}
._24{margin-left:-355.198271px;}
._49{margin-left:-347.166961px;}
._48{margin-left:-337.172697px;}
._4a{margin-left:-329.310189px;}
._2b{margin-left:-327.480638px;}
._2a{margin-left:-321.532719px;}
._15{margin-left:-296.641261px;}
._43{margin-left:-291.926767px;}
._1a{margin-left:-265.568343px;}
._14{margin-left:-232.740614px;}
._12{margin-left:-223.956398px;}
._1c{margin-left:-220.263899px;}
._32{margin-left:-211.170514px;}
._4c{margin-left:-205.729524px;}
._19{margin-left:-201.115516px;}
._4e{margin-left:-179.671932px;}
._1f{margin-left:-175.196854px;}
._16{margin-left:-150.712590px;}
._1b{margin-left:-149.458140px;}
._2f{margin-left:-139.906999px;}
._38{margin-left:-134.389938px;}
._28{margin-left:-131.890500px;}
._34{margin-left:-129.465492px;}
._37{margin-left:-127.374126px;}
._36{margin-left:-123.329287px;}
._4d{margin-left:-118.245798px;}
._30{margin-left:-117.002304px;}
._33{margin-left:-109.737788px;}
._2e{margin-left:-103.101262px;}
._20{margin-left:-99.479278px;}
._39{margin-left:-91.081440px;}
._35{margin-left:-86.335864px;}
._25{margin-left:-84.837108px;}
._31{margin-left:-65.565504px;}
._22{margin-left:-48.842047px;}
._23{margin-left:-47.640906px;}
._54{margin-left:-44.280252px;}
._21{margin-left:-42.601336px;}
._1d{margin-left:-33.794628px;}
._8{margin-left:-18.000648px;}
._58{margin-left:-16.232076px;}
._4f{margin-left:-9.991944px;}
._57{margin-left:-8.116200px;}
._6{margin-left:-6.299388px;}
._7{margin-left:-3.866868px;}
._3{margin-left:-1.430856px;}
._4{width:1.202400px;}
._3a{width:3.162312px;}
._18{width:8.050068px;}
._5c{width:9.719640px;}
._4b{width:10.929816px;}
._3b{width:18.682776px;}
._5d{width:20.880468px;}
._5{width:24.123888px;}
._d{width:31.940748px;}
._5a{width:34.200684px;}
._5b{width:35.277984px;}
._62{width:45.372564px;}
._0{width:56.876652px;}
._53{width:74.419884px;}
._56{width:90.160689px;}
._55{width:101.920269px;}
._52{width:103.331236px;}
._51{width:119.049053px;}
._a{width:141.399216px;}
._3c{width:149.399964px;}
._44{width:164.455322px;}
._42{width:169.142387px;}
._41{width:170.952348px;}
._2d{width:235.569276px;}
._59{width:241.865064px;}
._17{width:294.119064px;}
._3f{width:350.998704px;}
._3e{width:357.476868px;}
._50{width:378.429156px;}
._40{width:380.516724px;}
._9{width:384.471612px;}
._3d{width:396.719316px;}
._60{width:437.739732px;}
._1{width:463.894956px;}
._65{width:478.801692px;}
._2{width:542.877804px;}
._10{width:554.868708px;}
._5e{width:616.398025px;}
._c{width:627.620616px;}
._64{width:667.067472px;}
._67{width:688.860972px;}
._61{width:719.425980px;}
._63{width:720.538200px;}
._66{width:727.199496px;}
._e{width:743.747709px;}
._5f{width:844.144920px;}
._f{width:1003.531897px;}
._b{width:1200.959676px;}
.fc2{color:rgb(31,26,23);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs19{font-size:27.119400px;}
.fsd{font-size:27.399000px;}
.fs21{font-size:29.880000px;}
.fs8{font-size:29.986800px;}
.fs2c{font-size:30.574800px;}
.fs2a{font-size:30.631200px;}
.fs2d{font-size:32.927400px;}
.fs2b{font-size:32.988000px;}
.fs20{font-size:36.000000px;}
.fs2e{font-size:36.009600px;}
.fs1a{font-size:37.967400px;}
.fs14{font-size:38.079600px;}
.fs28{font-size:38.115000px;}
.fs24{font-size:38.244000px;}
.fs16{font-size:38.303400px;}
.fs11{font-size:38.330400px;}
.fsb{font-size:38.359800px;}
.fse{font-size:38.880000px;}
.fs1c{font-size:40.126536px;}
.fs0{font-size:47.880000px;}
.fs7{font-size:47.978400px;}
.fs1e{font-size:50.602976px;}
.fs22{font-size:52.311000px;}
.fs17{font-size:54.720000px;}
.fsf{font-size:54.756600px;}
.fsc{font-size:54.798600px;}
.fs18{font-size:57.831585px;}
.fs10{font-size:57.870487px;}
.fs1b{font-size:59.662800px;}
.fs25{font-size:60.097800px;}
.fs1{font-size:60.120000px;}
.fs3{font-size:63.539045px;}
.fs13{font-size:65.279400px;}
.fs27{font-size:65.340000px;}
.fs15{font-size:68.992057px;}
.fs29{font-size:69.055609px;}
.fs6{font-size:71.968800px;}
.fs1f{font-size:72.000000px;}
.fs2f{font-size:72.019800px;}
.fs9{font-size:74.321400px;}
.fs1d{font-size:74.555400px;}
.fs2{font-size:83.880000px;}
.fs12{font-size:86.188800px;}
.fs26{font-size:86.269200px;}
.fs23{font-size:98.343600px;}
.fsa{font-size:98.640000px;}
.fs5{font-size:114.120000px;}
.fs4{font-size:144.000000px;}
.fs30{font-size:144.039000px;}
.y0{bottom:0.000000px;}
.y84{bottom:3.060450px;}
.y80{bottom:3.600450px;}
.y91{bottom:4.050450px;}
.y8e{bottom:110.550537px;}
.y8b{bottom:114.240450px;}
.y50{bottom:114.778326px;}
.y28{bottom:115.764078px;}
.yd2{bottom:116.307795px;}
.y19f{bottom:116.670162px;}
.y10f{bottom:117.388195px;}
.y10c{bottom:117.389829px;}
.y18d{bottom:120.630450px;}
.y8a{bottom:120.810450px;}
.y1d9{bottom:121.884888px;}
.y113{bottom:122.700450px;}
.y88{bottom:125.040600px;}
.y19e{bottom:130.440450px;}
.y116{bottom:131.250415px;}
.y10e{bottom:131.968817px;}
.y10b{bottom:131.970450px;}
.y4f{bottom:132.328857px;}
.y27{bottom:133.314609px;}
.y8c{bottom:133.410450px;}
.y150{bottom:133.493547px;}
.yd1{bottom:133.858326px;}
.y111{bottom:135.297889px;}
.y115{bottom:135.300437px;}
.y114{bottom:135.301269px;}
.y8d{bottom:135.750450px;}
.y1d8{bottom:139.525599px;}
.y89{bottom:139.980677px;}
.y19d{bottom:141.870600px;}
.y10a{bottom:145.560450px;}
.y18c{bottom:146.010450px;}
.y110{bottom:147.627547px;}
.y10d{bottom:147.629181px;}
.y4e{bottom:149.879388px;}
.y26{bottom:150.865140px;}
.y14f{bottom:151.044078px;}
.yd0{bottom:151.408857px;}
.y112{bottom:154.020052px;}
.y1d7{bottom:157.166310px;}
.y18b{bottom:161.670450px;}
.y87{bottom:164.370342px;}
.y4d{bottom:167.429919px;}
.y25{bottom:168.415671px;}
.y14e{bottom:168.594609px;}
.ycf{bottom:168.959388px;}
.y1d6{bottom:174.807021px;}
.y18a{bottom:177.330450px;}
.y86{bottom:181.920873px;}
.y109{bottom:182.816769px;}
.y4c{bottom:184.980450px;}
.y24{bottom:185.966202px;}
.y14d{bottom:186.145140px;}
.yce{bottom:186.509919px;}
.y1d5{bottom:192.447732px;}
.y189{bottom:192.990450px;}
.y108{bottom:200.367300px;}
.y23{bottom:203.516733px;}
.y14c{bottom:203.695671px;}
.ycd{bottom:204.060450px;}
.ycc{bottom:204.060945px;}
.y188{bottom:208.650450px;}
.y83{bottom:208.830000px;}
.y85{bottom:212.520450px;}
.y82{bottom:212.520819px;}
.y4b{bottom:212.609577px;}
.y107{bottom:217.917831px;}
.y1d4{bottom:219.267264px;}
.y22{bottom:221.067264px;}
.y14b{bottom:221.246202px;}
.yca{bottom:222.599883px;}
.ycb{bottom:222.600450px;}
.y187{bottom:224.310450px;}
.y1d3{bottom:236.817795px;}
.y21{bottom:238.617795px;}
.y14a{bottom:238.796733px;}
.y186{bottom:239.970450px;}
.y7f{bottom:240.240000px;}
.yc9{bottom:241.139388px;}
.y7e{bottom:243.840450px;}
.y7d{bottom:243.930450px;}
.y106{bottom:244.468326px;}
.y81{bottom:244.650450px;}
.y4a{bottom:246.180450px;}
.y1d2{bottom:254.368326px;}
.y185{bottom:255.630450px;}
.y20{bottom:256.168326px;}
.y149{bottom:256.347264px;}
.yc8{bottom:258.689919px;}
.y105{bottom:262.018857px;}
.y184{bottom:271.290450px;}
.y1d1{bottom:271.918857px;}
.y7c{bottom:272.548857px;}
.y1f{bottom:273.718857px;}
.y148{bottom:273.897795px;}
.yc6{bottom:276.239883px;}
.yc7{bottom:276.240450px;}
.y104{bottom:279.569388px;}
.y183{bottom:286.950450px;}
.y1d0{bottom:289.469388px;}
.y7b{bottom:290.099388px;}
.y1e{bottom:291.269388px;}
.y147{bottom:291.448326px;}
.yc5{bottom:294.779388px;}
.y49{bottom:296.667795px;}
.y103{bottom:297.119919px;}
.y182{bottom:302.610450px;}
.y1cf{bottom:307.019919px;}
.y7a{bottom:307.649919px;}
.y1d{bottom:308.819919px;}
.y146{bottom:308.998857px;}
.yc4{bottom:312.329919px;}
.y48{bottom:314.218326px;}
.y102{bottom:314.670450px;}
.y181{bottom:318.270450px;}
.y1ce{bottom:324.570450px;}
.y79{bottom:325.200774px;}
.y1c{bottom:326.370450px;}
.y145{bottom:326.549388px;}
.yc3{bottom:329.880450px;}
.y47{bottom:331.768857px;}
.y180{bottom:333.930450px;}
.y101{bottom:335.190450px;}
.yfc{bottom:338.340450px;}
.yff{bottom:338.340963px;}
.y144{bottom:344.099919px;}
.y46{bottom:349.319388px;}
.y17f{bottom:349.590450px;}
.yfb{bottom:350.220450px;}
.y100{bottom:350.580442px;}
.yfd{bottom:354.270450px;}
.y78{bottom:356.880450px;}
.y1b{bottom:357.780450px;}
.y77{bottom:360.300450px;}
.y1cd{bottom:360.750600px;}
.yc2{bottom:361.290051px;}
.y143{bottom:361.650450px;}
.y142{bottom:361.650945px;}
.y17e{bottom:365.250600px;}
.y45{bottom:366.869919px;}
.yfe{bottom:370.650450px;}
.y141{bottom:380.190450px;}
.y17d{bottom:380.910450px;}
.y44{bottom:384.420450px;}
.yc1{bottom:385.860600px;}
.y76{bottom:390.540069px;}
.y17c{bottom:396.570450px;}
.yfa{bottom:397.018857px;}
.y75{bottom:408.090600px;}
.y74{bottom:408.090945px;}
.y19c{bottom:408.450600px;}
.y1cc{bottom:408.540600px;}
.y140{bottom:411.600450px;}
.y17b{bottom:412.140450px;}
.y1a{bottom:412.769919px;}
.y17a{bottom:412.770600px;}
.yf9{bottom:414.569388px;}
.y43{bottom:415.829901px;}
.y72{bottom:426.630414px;}
.y73{bottom:426.630450px;}
.y19{bottom:430.320450px;}
.yf8{bottom:432.119919px;}
.yc0{bottom:435.630297px;}
.y1c6{bottom:436.980450px;}
.y19b{bottom:438.330450px;}
.y179{bottom:438.866733px;}
.y42{bottom:440.400450px;}
.y71{bottom:445.169919px;}
.ybf{bottom:447.060450px;}
.yf6{bottom:449.670414px;}
.yf7{bottom:449.670450px;}
.y1cb{bottom:451.649497px;}
.y19a{bottom:453.900450px;}
.y199{bottom:454.529835px;}
.yb8{bottom:455.340450px;}
.y178{bottom:456.417264px;}
.y18{bottom:461.730450px;}
.y70{bottom:462.720069px;}
.y13f{bottom:464.340600px;}
.yac{bottom:466.140450px;}
.yf5{bottom:468.209919px;}
.y1ca{bottom:472.979961px;}
.yad{bottom:473.790600px;}
.y177{bottom:473.967795px;}
.y13e{bottom:478.740450px;}
.y6f{bottom:480.270828px;}
.ybe{bottom:480.900450px;}
.yf4{bottom:485.760450px;}
.yf3{bottom:485.760918px;}
.y139{bottom:487.108622px;}
.y41{bottom:490.870794px;}
.y176{bottom:491.518326px;}
.y1c9{bottom:494.400450px;}
.yae{bottom:495.390450px;}
.y12e{bottom:497.100450px;}
.y198{bottom:497.910312px;}
.ybd{bottom:503.220450px;}
.y12f{bottom:503.580450px;}
.yf2{bottom:504.300423px;}
.y40{bottom:508.421325px;}
.y175{bottom:509.068857px;}
.y69{bottom:511.140450px;}
.y6d{bottom:511.140770px;}
.y197{bottom:511.680600px;}
.yaf{bottom:517.080450px;}
.yf1{bottom:522.839928px;}
.ybc{bottom:522.930600px;}
.y68{bottom:523.020600px;}
.y6e{bottom:524.280920px;}
.y3f{bottom:525.971856px;}
.y174{bottom:526.619388px;}
.y196{bottom:527.610450px;}
.y6a{bottom:527.700450px;}
.y67{bottom:527.790450px;}
.y1c8{bottom:528.150450px;}
.y130{bottom:528.960450px;}
.yb0{bottom:538.680450px;}
.y6b{bottom:542.910450px;}
.y17{bottom:542.999919px;}
.y3e{bottom:543.522387px;}
.y173{bottom:544.169919px;}
.y6c{bottom:545.340450px;}
.y131{bottom:554.250450px;}
.yf0{bottom:557.670450px;}
.ybb{bottom:559.200450px;}
.yb1{bottom:560.280450px;}
.y16{bottom:560.550450px;}
.y3d{bottom:561.072918px;}
.y171{bottom:561.720414px;}
.y172{bottom:561.720450px;}
.y66{bottom:568.920450px;}
.y13a{bottom:572.970450px;}
.y3c{bottom:578.623449px;}
.y1c7{bottom:578.730450px;}
.y15{bottom:579.089388px;}
.y132{bottom:579.630450px;}
.y170{bottom:580.259919px;}
.yb2{bottom:581.880450px;}
.yef{bottom:587.100450px;}
.yba{bottom:594.120450px;}
.y14{bottom:596.639919px;}
.y16f{bottom:597.810450px;}
.y13d{bottom:601.230450px;}
.y65{bottom:603.750450px;}
.yb3{bottom:604.110450px;}
.y133{bottom:604.380450px;}
.y3b{bottom:606.703998px;}
.y1c5{bottom:608.070450px;}
.y13c{bottom:610.860450px;}
.y12{bottom:614.190414px;}
.y13{bottom:614.190450px;}
.yb9{bottom:619.500450px;}
.ye0{bottom:621.390450px;}
.yee{bottom:621.842940px;}
.y3a{bottom:624.254529px;}
.yb4{bottom:625.710450px;}
.y64{bottom:627.510450px;}
.y16e{bottom:629.220450px;}
.y1c4{bottom:629.485527px;}
.y134{bottom:629.670450px;}
.y11{bottom:632.729919px;}
.y63{bottom:638.400450px;}
.y39{bottom:641.805060px;}
.yb5{bottom:647.310450px;}
.yf{bottom:650.279352px;}
.y10{bottom:650.280450px;}
.y135{bottom:655.050450px;}
.y38{bottom:659.355591px;}
.y1c3{bottom:659.816067px;}
.y1a9{bottom:662.337795px;}
.ye{bottom:668.818857px;}
.yb6{bottom:668.910450px;}
.y37{bottom:676.906122px;}
.y1c2{bottom:677.366598px;}
.ye1{bottom:677.369759px;}
.y13b{bottom:677.370450px;}
.y16d{bottom:679.707264px;}
.y1a8{bottom:679.888326px;}
.y136{bottom:680.340450px;}
.yd{bottom:686.369388px;}
.yb7{bottom:690.600450px;}
.y62{bottom:692.580450px;}
.y36{bottom:694.456653px;}
.y1c1{bottom:694.917129px;}
.y16c{bottom:697.257795px;}
.y1a7{bottom:697.438857px;}
.yab{bottom:697.530450px;}
.yc{bottom:703.919919px;}
.y137{bottom:705.090450px;}
.y35{bottom:712.007184px;}
.y1c0{bottom:712.467660px;}
.y138{bottom:713.910450px;}
.y16b{bottom:714.808326px;}
.y1a6{bottom:714.989388px;}
.y61{bottom:720.930450px;}
.yb{bottom:721.470450px;}
.y34{bottom:729.557715px;}
.y1bf{bottom:730.018191px;}
.ye7{bottom:730.469347px;}
.yaa{bottom:731.008362px;}
.ye6{bottom:731.999444px;}
.ye3{bottom:732.270153px;}
.y16a{bottom:732.358857px;}
.ye5{bottom:732.539555px;}
.y1a5{bottom:732.539919px;}
.ye2{bottom:732.810264px;}
.ye4{bottom:733.529541px;}
.y60{bottom:734.610450px;}
.y1be{bottom:747.568722px;}
.ya9{bottom:748.558893px;}
.y169{bottom:749.909388px;}
.y1a4{bottom:750.090450px;}
.ya{bottom:752.880450px;}
.y12d{bottom:755.850450px;}
.y5f{bottom:758.639766px;}
.y33{bottom:759.078138px;}
.ya8{bottom:766.109424px;}
.y168{bottom:767.459919px;}
.y1bd{bottom:771.418326px;}
.y5e{bottom:772.410054px;}
.y32{bottom:776.628669px;}
.y1a3{bottom:781.500450px;}
.ya7{bottom:783.659955px;}
.y195{bottom:784.110162px;}
.y167{bottom:785.009919px;}
.y12c{bottom:785.730450px;}
.ye8{bottom:787.709351px;}
.y1bc{bottom:788.968857px;}
.y5d{bottom:792.840450px;}
.y31{bottom:794.179200px;}
.y194{bottom:797.880450px;}
.y12b{bottom:801.390450px;}
.y166{bottom:802.560069px;}
.y1bb{bottom:806.519388px;}
.ya6{bottom:810.209919px;}
.y30{bottom:811.729731px;}
.y193{bottom:813.810450px;}
.y12a{bottom:817.050450px;}
.y165{bottom:820.109388px;}
.y9{bottom:821.367120px;}
.y1ba{bottom:824.069919px;}
.ya5{bottom:827.758857px;}
.y2f{bottom:829.280262px;}
.y129{bottom:832.710450px;}
.y164{bottom:837.659919px;}
.y1b9{bottom:841.620450px;}
.yed{bottom:843.691276px;}
.yec{bottom:844.231387px;}
.yea{bottom:844.500788px;}
.ye9{bottom:844.770190px;}
.ya4{bottom:845.309388px;}
.yeb{bottom:845.761483px;}
.y2e{bottom:846.830793px;}
.y128{bottom:848.370450px;}
.y1a2{bottom:849.270312px;}
.y163{bottom:855.210450px;}
.y8{bottom:856.917579px;}
.ya3{bottom:862.859919px;}
.y1a1{bottom:863.040600px;}
.y127{bottom:864.030450px;}
.y2d{bottom:864.381324px;}
.y1b8{bottom:866.550450px;}
.y7{bottom:874.468110px;}
.y126{bottom:879.690450px;}
.ya2{bottom:880.410450px;}
.y2c{bottom:881.931855px;}
.y1a0{bottom:883.470450px;}
.y162{bottom:885.540600px;}
.y6{bottom:892.018641px;}
.y125{bottom:895.350450px;}
.ydf{bottom:897.958857px;}
.y161{bottom:901.470450px;}
.y5{bottom:909.569172px;}
.y15d{bottom:909.840619px;}
.y2b{bottom:910.012404px;}
.ya1{bottom:910.740450px;}
.y124{bottom:911.010450px;}
.y1b7{bottom:914.789838px;}
.yde{bottom:915.509388px;}
.y151{bottom:919.830450px;}
.y152{bottom:926.310450px;}
.y123{bottom:926.670450px;}
.y4{bottom:927.119703px;}
.y2a{bottom:927.562935px;}
.y1b6{bottom:928.560126px;}
.ydd{bottom:933.059919px;}
.ya0{bottom:940.620450px;}
.y122{bottom:942.330450px;}
.y29{bottom:945.113466px;}
.y1b5{bottom:948.359703px;}
.y153{bottom:948.630450px;}
.ydc{bottom:950.610450px;}
.y121{bottom:957.990450px;}
.y9e{bottom:959.160450px;}
.y1b4{bottom:962.129991px;}
.y9f{bottom:962.130450px;}
.y154{bottom:970.950450px;}
.y120{bottom:973.650450px;}
.y1b3{bottom:975.900279px;}
.ydb{bottom:980.940450px;}
.y9d{bottom:988.856643px;}
.y11f{bottom:989.310450px;}
.y54{bottom:990.930450px;}
.y155{bottom:993.360450px;}
.y15e{bottom:995.520450px;}
.y1b2{bottom:995.699856px;}
.y11e{bottom:1004.970450px;}
.y9c{bottom:1006.407174px;}
.y1b1{bottom:1009.470144px;}
.yda{bottom:1010.820450px;}
.y156{bottom:1015.680450px;}
.y11d{bottom:1020.630450px;}
.y1b0{bottom:1023.240432px;}
.y9b{bottom:1023.957705px;}
.yd9{bottom:1026.480450px;}
.y160{bottom:1026.750450px;}
.y53{bottom:1032.330450px;}
.y15f{bottom:1035.030450px;}
.y11c{bottom:1036.290450px;}
.y1af{bottom:1037.010720px;}
.y157{bottom:1038.000450px;}
.y9a{bottom:1041.508236px;}
.yd8{bottom:1042.140450px;}
.y11b{bottom:1054.920450px;}
.y1ae{bottom:1056.810297px;}
.yd7{bottom:1057.800450px;}
.y99{bottom:1059.058767px;}
.y158{bottom:1060.320450px;}
.y192{bottom:1063.108326px;}
.y5c{bottom:1064.097831px;}
.yd6{bottom:1073.460450px;}
.y52{bottom:1073.730450px;}
.y98{bottom:1076.609298px;}
.y1ad{bottom:1076.609874px;}
.y191{bottom:1080.658857px;}
.y11a{bottom:1081.018857px;}
.y5b{bottom:1081.648362px;}
.y159{bottom:1082.730450px;}
.y1ac{bottom:1090.380162px;}
.y97{bottom:1094.159829px;}
.y190{bottom:1098.209388px;}
.y119{bottom:1098.569388px;}
.y5a{bottom:1099.198893px;}
.yd5{bottom:1099.558893px;}
.y1ab{bottom:1104.150450px;}
.y15a{bottom:1105.050450px;}
.y96{bottom:1111.710360px;}
.y51{bottom:1115.130450px;}
.y18f{bottom:1115.759919px;}
.y118{bottom:1116.119919px;}
.y59{bottom:1116.749424px;}
.yd4{bottom:1117.109424px;}
.y15b{bottom:1127.370450px;}
.y1aa{bottom:1128.720450px;}
.y90{bottom:1129.620000px;}
.y93{bottom:1130.250450px;}
.y94{bottom:1130.610000px;}
.y18e{bottom:1133.310450px;}
.y92{bottom:1133.670450px;}
.y117{bottom:1133.671035px;}
.y58{bottom:1134.299955px;}
.y95{bottom:1134.300450px;}
.y8f{bottom:1134.301212px;}
.yd3{bottom:1134.659955px;}
.y15c{bottom:1136.190450px;}
.y57{bottom:1160.850450px;}
.y3{bottom:1161.210450px;}
.y56{bottom:1184.700612px;}
.y2{bottom:1185.060162px;}
.y55{bottom:1198.650450px;}
.y1{bottom:1198.830450px;}
.h1c{height:16.740000px;}
.h25{height:17.730000px;}
.h22{height:18.829974px;}
.he{height:19.024110px;}
.h1a{height:19.890000px;}
.h1e{height:23.795684px;}
.h23{height:26.362130px;}
.h3d{height:26.554184px;}
.hf{height:26.634588px;}
.h31{height:26.786953px;}
.h4a{height:27.409830px;}
.h48{height:27.460392px;}
.h4b{height:30.499647px;}
.h49{height:30.555779px;}
.h4f{height:31.596314px;}
.h2b{height:31.912207px;}
.h2e{height:32.273438px;}
.h1f{height:33.314169px;}
.h41{height:33.443679px;}
.h3b{height:33.556869px;}
.h11{height:33.658477px;}
.h7{height:34.857949px;}
.h4d{height:35.153683px;}
.h39{height:35.424252px;}
.hc{height:35.531514px;}
.h21{height:37.167988px;}
.h10{height:38.048637px;}
.h4{height:41.743477px;}
.h47{height:41.831297px;}
.h9{height:42.098235px;}
.h1{height:42.923672px;}
.h32{height:43.769616px;}
.h44{height:45.367910px;}
.h33{height:45.899837px;}
.h2a{height:46.871995px;}
.h34{height:47.699336px;}
.h15{height:48.045708px;}
.h35{height:49.143119px;}
.h36{height:50.215495px;}
.h28{height:50.685469px;}
.hd{height:50.758274px;}
.h45{height:50.944668px;}
.h27{height:51.674063px;}
.h20{height:52.350611px;}
.h3c{height:52.732298px;}
.h2{height:52.751777px;}
.h13{height:52.753301px;}
.h14{height:52.753901px;}
.h4c{height:52.756625px;}
.h2c{height:52.758149px;}
.h37{height:53.397598px;}
.h1d{height:53.567635px;}
.h4e{height:53.573730px;}
.h16{height:53.603669px;}
.h3a{height:55.666761px;}
.h29{height:55.687324px;}
.h3e{height:56.488094px;}
.h42{height:57.332021px;}
.h5{height:58.854281px;}
.h19{height:60.466319px;}
.h40{height:60.522451px;}
.h12{height:60.671777px;}
.h8{height:63.148405px;}
.h2d{height:63.175781px;}
.h30{height:63.176381px;}
.h1b{height:63.905240px;}
.h52{height:63.949219px;}
.h43{height:63.964107px;}
.h50{height:63.966805px;}
.ha{height:68.841648px;}
.h26{height:69.058395px;}
.h17{height:69.671777px;}
.h24{height:70.392028px;}
.h2f{height:70.433438px;}
.h3{height:74.500840px;}
.h46{height:78.311917px;}
.h18{height:79.834059px;}
.h3f{height:79.908531px;}
.h38{height:91.092680px;}
.hb{height:91.367227px;}
.h6{height:127.898438px;}
.h51{height:127.933077px;}
.h0{height:1263.000000px;}
.w3{width:4.500000px;}
.w4{width:7.470000px;}
.w2{width:8.730000px;}
.w1{width:10.350000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x17{left:63.810000px;}
.x8d{left:80.910000px;}
.x1{left:85.140000px;}
.x89{left:88.380000px;}
.x87{left:93.780000px;}
.x18{left:95.670000px;}
.xb{left:97.919604px;}
.x1c{left:101.160000px;}
.x10{left:104.130000px;}
.x14{left:105.210000px;}
.x1a{left:106.380531px;}
.x86{left:111.960000px;}
.x5f{left:114.120000px;}
.x66{left:115.920836px;}
.x2{left:117.000000px;}
.xa{left:119.160000px;}
.x1e{left:124.830000px;}
.x30{left:126.450000px;}
.x6b{left:128.250000px;}
.x6c{left:134.460000px;}
.x20{left:138.510000px;}
.x21{left:141.030000px;}
.x90{left:142.290000px;}
.x98{left:144.000000px;}
.x15{left:145.350000px;}
.x8{left:148.591557px;}
.x5{left:150.300468px;}
.x6d{left:152.010000px;}
.x34{left:153.450000px;}
.x22{left:155.160000px;}
.x35{left:156.240000px;}
.x27{left:157.950429px;}
.x5d{left:159.030000px;}
.x26{left:160.650000px;}
.x2f{left:162.360000px;}
.x23{left:163.710000px;}
.x25{left:165.600000px;}
.x2a{left:168.840000px;}
.x67{left:170.011064px;}
.x4{left:171.719721px;}
.x32{left:173.700000px;}
.x5e{left:174.960000px;}
.x6{left:178.471197px;}
.x3{left:179.550351px;}
.x9d{left:183.510954px;}
.x13{left:184.680000px;}
.x74{left:192.060261px;}
.x2e{left:199.080000px;}
.x1b{left:208.800000px;}
.x72{left:211.770000px;}
.x88{left:215.279711px;}
.x7{left:216.991584px;}
.x1f{left:221.940000px;}
.x9{left:225.720000px;}
.x63{left:228.239827px;}
.x76{left:233.370000px;}
.x2b{left:239.490000px;}
.x8e{left:240.840000px;}
.x77{left:243.720000px;}
.x8f{left:245.880000px;}
.x75{left:257.759567px;}
.x6e{left:259.740000px;}
.x9b{left:261.090000px;}
.x95{left:264.779469px;}
.x73{left:265.950000px;}
.xc{left:269.190000px;}
.xd{left:275.400000px;}
.x8a{left:279.810000px;}
.x8c{left:280.980000px;}
.x65{left:282.331358px;}
.x62{left:283.410296px;}
.x24{left:287.190000px;}
.x8b{left:288.540000px;}
.x99{left:292.680000px;}
.x29{left:298.170000px;}
.x28{left:304.290189px;}
.x31{left:317.070000px;}
.x33{left:336.240000px;}
.x61{left:340.020651px;}
.x64{left:341.911399px;}
.x70{left:355.588645px;}
.x6f{left:360.000000px;}
.x69{left:364.320000px;}
.x9c{left:366.300000px;}
.x71{left:368.010000px;}
.x6a{left:370.530000px;}
.x16{left:372.240000px;}
.x1d{left:377.730000px;}
.x60{left:394.110880px;}
.x2c{left:408.600000px;}
.x2d{left:409.770000px;}
.x19{left:418.770000px;}
.xe{left:421.650000px;}
.xf{left:427.860000px;}
.x9a{left:431.100935px;}
.x68{left:442.710000px;}
.x36{left:448.560279px;}
.x47{left:449.820000px;}
.x97{left:458.370000px;}
.x94{left:463.950000px;}
.x11{left:469.889370px;}
.x7b{left:474.210000px;}
.x4c{left:476.100000px;}
.x83{left:477.720000px;}
.x46{left:480.420000px;}
.x4a{left:484.830000px;}
.x49{left:489.330000px;}
.x93{left:491.130108px;}
.x48{left:494.370000px;}
.x52{left:499.500000px;}
.x12{left:501.749964px;}
.x3c{left:505.620000px;}
.x53{left:508.950000px;}
.x45{left:511.110000px;}
.x54{left:512.730000px;}
.x7c{left:517.140000px;}
.x55{left:521.010000px;}
.x5a{left:525.690000px;}
.x44{left:531.450000px;}
.x3b{left:533.700000px;}
.x5b{left:535.140000px;}
.x3e{left:539.280000px;}
.x50{left:544.770000px;}
.x3f{left:546.930000px;}
.x5c{left:553.500000px;}
.x37{left:555.300000px;}
.x56{left:556.470000px;}
.x57{left:562.680000px;}
.x4f{left:564.480000px;}
.x7a{left:571.590000px;}
.x96{left:574.290000px;}
.x3a{left:576.360000px;}
.x91{left:577.890000px;}
.x4e{left:581.670000px;}
.x4d{left:584.190000px;}
.x7d{left:585.270000px;}
.x38{left:602.820000px;}
.x4b{left:612.900000px;}
.x39{left:617.040000px;}
.x7e{left:621.180487px;}
.x40{left:624.870000px;}
.x3d{left:629.010000px;}
.x41{left:631.530000px;}
.x80{left:664.020000px;}
.x7f{left:674.730000px;}
.x81{left:681.030000px;}
.x58{left:686.250000px;}
.x59{left:692.460000px;}
.x42{left:710.730000px;}
.x43{left:715.770000px;}
.x78{left:777.600000px;}
.x84{left:781.830000px;}
.x79{left:783.810000px;}
.x92{left:785.339850px;}
.x85{left:788.040000px;}
.x51{left:806.580000px;}
.x82{left:826.019850px;}
@media print{
.v15{vertical-align:-60.156611pt;}
.v2{vertical-align:-46.080000pt;}
.v11{vertical-align:-18.870896pt;}
.v9{vertical-align:-14.719467pt;}
.v4{vertical-align:-12.800000pt;}
.v1{vertical-align:-11.840000pt;}
.v6{vertical-align:-8.000811pt;}
.ve{vertical-align:-3.836140pt;}
.vd{vertical-align:-2.878267pt;}
.v14{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:0.960000pt;}
.vf{vertical-align:1.925045pt;}
.v8{vertical-align:2.880000pt;}
.v10{vertical-align:3.836140pt;}
.v5{vertical-align:7.040000pt;}
.v7{vertical-align:12.160000pt;}
.vb{vertical-align:13.119689pt;}
.va{vertical-align:14.719467pt;}
.v12{vertical-align:21.760048pt;}
.v13{vertical-align:22.720124pt;}
.vc{vertical-align:33.920000pt;}
.ls5a{letter-spacing:-0.527768pt;}
.ls7b{letter-spacing:-0.502186pt;}
.ls7e{letter-spacing:-0.422030pt;}
.ls8c{letter-spacing:-0.394075pt;}
.ls7a{letter-spacing:-0.181345pt;}
.ls59{letter-spacing:-0.144704pt;}
.ls2f{letter-spacing:-0.142016pt;}
.ls60{letter-spacing:-0.128256pt;}
.ls2e{letter-spacing:-0.111584pt;}
.ls21{letter-spacing:-0.090848pt;}
.ls98{letter-spacing:-0.083200pt;}
.ls32{letter-spacing:-0.081152pt;}
.ls63{letter-spacing:-0.080160pt;}
.ls5d{letter-spacing:-0.074816pt;}
.ls68{letter-spacing:-0.069472pt;}
.ls66{letter-spacing:-0.069056pt;}
.ls2a{letter-spacing:-0.064128pt;}
.ls30{letter-spacing:-0.064000pt;}
.ls5b{letter-spacing:-0.061306pt;}
.ls23{letter-spacing:-0.058784pt;}
.ls22{letter-spacing:-0.053440pt;}
.ls97{letter-spacing:-0.052192pt;}
.ls31{letter-spacing:-0.050720pt;}
.ls2b{letter-spacing:-0.048096pt;}
.ls27{letter-spacing:-0.042752pt;}
.ls57{letter-spacing:-0.037408pt;}
.ls78{letter-spacing:-0.034048pt;}
.ls29{letter-spacing:-0.032064pt;}
.ls20{letter-spacing:-0.026720pt;}
.ls26{letter-spacing:-0.021376pt;}
.ls64{letter-spacing:-0.021280pt;}
.ls2c{letter-spacing:-0.020288pt;}
.ls25{letter-spacing:-0.016032pt;}
.ls58{letter-spacing:-0.012768pt;}
.ls90{letter-spacing:-0.010688pt;}
.ls5f{letter-spacing:-0.010368pt;}
.ls2d{letter-spacing:-0.010144pt;}
.ls28{letter-spacing:-0.005344pt;}
.ls1f{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.004256pt;}
.lsf{letter-spacing:0.005344pt;}
.ls96{letter-spacing:0.006400pt;}
.ls42{letter-spacing:0.007616pt;}
.ls37{letter-spacing:0.008512pt;}
.ls3{letter-spacing:0.010688pt;}
.ls92{letter-spacing:0.012768pt;}
.ls18{letter-spacing:0.014912pt;}
.ls6{letter-spacing:0.016032pt;}
.ls48{letter-spacing:0.017024pt;}
.ls1d{letter-spacing:0.020288pt;}
.ls36{letter-spacing:0.021280pt;}
.lsa{letter-spacing:0.021376pt;}
.ls2{letter-spacing:0.025536pt;}
.ls12{letter-spacing:0.026720pt;}
.ls33{letter-spacing:0.029792pt;}
.ls54{letter-spacing:0.029824pt;}
.ls19{letter-spacing:0.032064pt;}
.ls0{letter-spacing:0.034048pt;}
.ls39{letter-spacing:0.034651pt;}
.ls15{letter-spacing:0.037280pt;}
.lse{letter-spacing:0.037408pt;}
.ls35{letter-spacing:0.038304pt;}
.ls69{letter-spacing:0.042560pt;}
.ls24{letter-spacing:0.042752pt;}
.lsb{letter-spacing:0.044736pt;}
.ls94{letter-spacing:0.046816pt;}
.ls53{letter-spacing:0.048000pt;}
.ls13{letter-spacing:0.048096pt;}
.ls1e{letter-spacing:0.050720pt;}
.ls17{letter-spacing:0.052192pt;}
.ls1a{letter-spacing:0.053440pt;}
.ls1{letter-spacing:0.055328pt;}
.ls10{letter-spacing:0.058784pt;}
.ls72{letter-spacing:0.059584pt;}
.ls91{letter-spacing:0.063840pt;}
.ls1b{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.064128pt;}
.ls8f{letter-spacing:0.067104pt;}
.ls4{letter-spacing:0.069472pt;}
.ls34{letter-spacing:0.072352pt;}
.ls16{letter-spacing:0.074560pt;}
.ls8{letter-spacing:0.074816pt;}
.lsd{letter-spacing:0.080160pt;}
.ls5{letter-spacing:0.085504pt;}
.ls93{letter-spacing:0.089376pt;}
.ls43{letter-spacing:0.090848pt;}
.ls4c{letter-spacing:0.096000pt;}
.ls14{letter-spacing:0.096192pt;}
.lsc{letter-spacing:0.096928pt;}
.ls4e{letter-spacing:0.099200pt;}
.ls11{letter-spacing:0.101536pt;}
.ls67{letter-spacing:0.104384pt;}
.ls65{letter-spacing:0.105600pt;}
.ls9{letter-spacing:0.106880pt;}
.ls6d{letter-spacing:0.112224pt;}
.ls8a{letter-spacing:0.115148pt;}
.ls52{letter-spacing:0.115200pt;}
.ls47{letter-spacing:0.117568pt;}
.ls3c{letter-spacing:0.122912pt;}
.ls51{letter-spacing:0.124800pt;}
.ls1c{letter-spacing:0.128000pt;}
.ls5e{letter-spacing:0.133600pt;}
.ls46{letter-spacing:0.138944pt;}
.ls79{letter-spacing:0.139496pt;}
.ls45{letter-spacing:0.144288pt;}
.ls3e{letter-spacing:0.154976pt;}
.ls3f{letter-spacing:0.156736pt;}
.ls87{letter-spacing:0.156768pt;}
.ls86{letter-spacing:0.158528pt;}
.ls84{letter-spacing:0.158624pt;}
.ls88{letter-spacing:0.159712pt;}
.ls40{letter-spacing:0.159936pt;}
.ls3d{letter-spacing:0.160320pt;}
.ls83{letter-spacing:0.161696pt;}
.ls56{letter-spacing:0.161728pt;}
.ls49{letter-spacing:0.162112pt;}
.ls4a{letter-spacing:0.162880pt;}
.ls8b{letter-spacing:0.244598pt;}
.ls38{letter-spacing:0.354140pt;}
.ls71{letter-spacing:0.429856pt;}
.ls6a{letter-spacing:0.502186pt;}
.ls73{letter-spacing:0.536386pt;}
.ls76{letter-spacing:0.544555pt;}
.ls80{letter-spacing:0.565294pt;}
.ls74{letter-spacing:0.569060pt;}
.ls75{letter-spacing:0.577228pt;}
.ls8d{letter-spacing:0.584318pt;}
.ls77{letter-spacing:0.585396pt;}
.ls81{letter-spacing:0.597907pt;}
.ls82{letter-spacing:0.619649pt;}
.ls7f{letter-spacing:1.017497pt;}
.ls95{letter-spacing:1.042080pt;}
.ls8e{letter-spacing:1.454659pt;}
.ls85{letter-spacing:1.998656pt;}
.ls55{letter-spacing:3.922496pt;}
.ls7d{letter-spacing:9.042048pt;}
.ls6c{letter-spacing:9.677984pt;}
.ls6b{letter-spacing:64.720000pt;}
.ls4f{letter-spacing:92.800000pt;}
.ls50{letter-spacing:93.120000pt;}
.ls4b{letter-spacing:108.928000pt;}
.ls4d{letter-spacing:109.248000pt;}
.ls6e{letter-spacing:118.878144pt;}
.ls5c{letter-spacing:128.433986pt;}
.ls44{letter-spacing:128.857212pt;}
.ls7c{letter-spacing:170.981720pt;}
.ls61{letter-spacing:183.486379pt;}
.ls3b{letter-spacing:277.405067pt;}
.ls89{letter-spacing:300.486368pt;}
.ls41{letter-spacing:305.488758pt;}
.ls6f{letter-spacing:334.755584pt;}
.ls62{letter-spacing:399.686195pt;}
.ls70{letter-spacing:518.900412pt;}
.ws62{word-spacing:-58.043362pt;}
.ws1{word-spacing:-53.440000pt;}
.ws0{word-spacing:-42.560000pt;}
.ws2{word-spacing:-32.000000pt;}
.ws5{word-spacing:-31.936000pt;}
.ws6{word-spacing:-25.410720pt;}
.ws3{word-spacing:-25.380288pt;}
.ws4{word-spacing:-25.217984pt;}
.wsd3{word-spacing:-14.520000pt;}
.wsd0{word-spacing:-13.440160pt;}
.wscf{word-spacing:-13.402752pt;}
.wsd1{word-spacing:-13.360000pt;}
.wscd{word-spacing:-13.355067pt;}
.ws69{word-spacing:-13.231744pt;}
.ws63{word-spacing:-12.177467pt;}
.ws65{word-spacing:-12.168133pt;}
.ws70{word-spacing:-12.160000pt;}
.wsca{word-spacing:-12.126852pt;}
.ws60{word-spacing:-11.818912pt;}
.ws5f{word-spacing:-10.801728pt;}
.ws110{word-spacing:-10.777015pt;}
.ws61{word-spacing:-10.661867pt;}
.ws76{word-spacing:-8.995200pt;}
.ws64{word-spacing:-8.640000pt;}
.ws68{word-spacing:-8.629632pt;}
.ws114{word-spacing:-8.120667pt;}
.ws4e{word-spacing:-4.317024pt;}
.ws54{word-spacing:-0.134208pt;}
.ws156{word-spacing:-0.126752pt;}
.ws4d{word-spacing:-0.119296pt;}
.wsb1{word-spacing:-0.111840pt;}
.ws55{word-spacing:-0.096928pt;}
.ws5e{word-spacing:-0.081152pt;}
.ws5d{word-spacing:-0.060864pt;}
.ws79{word-spacing:-0.055328pt;}
.ws13b{word-spacing:-0.046816pt;}
.wsae{word-spacing:-0.044800pt;}
.ws88{word-spacing:-0.042752pt;}
.wsf7{word-spacing:-0.042560pt;}
.ws8{word-spacing:-0.038304pt;}
.wsad{word-spacing:-0.035200pt;}
.ws15a{word-spacing:-0.032064pt;}
.ws98{word-spacing:-0.026720pt;}
.wsd8{word-spacing:-0.025536pt;}
.ws35{word-spacing:-0.021376pt;}
.ws7a{word-spacing:-0.021280pt;}
.ws7{word-spacing:-0.017024pt;}
.ws52{word-spacing:-0.016032pt;}
.ws78{word-spacing:-0.012768pt;}
.ws94{word-spacing:-0.010688pt;}
.ws9{word-spacing:-0.008512pt;}
.ws161{word-spacing:-0.006400pt;}
.wse{word-spacing:-0.005344pt;}
.ws7b{word-spacing:-0.004256pt;}
.wsa{word-spacing:0.000000pt;}
.ws53{word-spacing:0.005344pt;}
.ws84{word-spacing:0.008512pt;}
.wsc{word-spacing:0.010688pt;}
.ws86{word-spacing:0.012768pt;}
.ws157{word-spacing:0.016032pt;}
.wsac{word-spacing:0.021376pt;}
.wsaf{word-spacing:0.022400pt;}
.ws159{word-spacing:0.026720pt;}
.ws82{word-spacing:0.029792pt;}
.ws47{word-spacing:0.032064pt;}
.ws1d{word-spacing:0.037408pt;}
.wsa3{word-spacing:0.038304pt;}
.ws163{word-spacing:0.042752pt;}
.ws4c{word-spacing:0.048096pt;}
.wsb0{word-spacing:0.050464pt;}
.wsd7{word-spacing:0.051072pt;}
.ws10c{word-spacing:0.053440pt;}
.ws10{word-spacing:0.058784pt;}
.wsd{word-spacing:0.064128pt;}
.wsb{word-spacing:0.069472pt;}
.wsf{word-spacing:0.080160pt;}
.ws162{word-spacing:0.083200pt;}
.ws81{word-spacing:0.106880pt;}
.ws3e{word-spacing:0.112224pt;}
.ws87{word-spacing:0.117568pt;}
.ws158{word-spacing:0.128256pt;}
.ws1e{word-spacing:0.133600pt;}
.wsa8{word-spacing:0.138944pt;}
.ws96{word-spacing:0.144288pt;}
.ws164{word-spacing:0.154976pt;}
.ws85{word-spacing:0.161728pt;}
.ws146{word-spacing:0.283232pt;}
.ws10b{word-spacing:0.299264pt;}
.wsa7{word-spacing:0.309952pt;}
.ws136{word-spacing:0.422176pt;}
.ws13d{word-spacing:0.619904pt;}
.wse8{word-spacing:0.625248pt;}
.wsea{word-spacing:0.635936pt;}
.wse7{word-spacing:0.657312pt;}
.wsdd{word-spacing:0.673344pt;}
.ws13c{word-spacing:0.689376pt;}
.ws90{word-spacing:0.769536pt;}
.wsfe{word-spacing:0.774880pt;}
.ws116{word-spacing:0.790868pt;}
.ws115{word-spacing:0.809892pt;}
.wsfc{word-spacing:0.811386pt;}
.wsf9{word-spacing:0.816832pt;}
.wsf8{word-spacing:0.825000pt;}
.ws118{word-spacing:0.826199pt;}
.ws11a{word-spacing:0.845223pt;}
.wsfb{word-spacing:0.849505pt;}
.ws14b{word-spacing:0.885248pt;}
.ws25{word-spacing:1.020704pt;}
.ws24{word-spacing:1.031392pt;}
.wsa5{word-spacing:1.090176pt;}
.wsdc{word-spacing:1.100864pt;}
.ws117{word-spacing:1.163201pt;}
.ws119{word-spacing:1.165919pt;}
.wsfa{word-spacing:1.176238pt;}
.ws7f{word-spacing:1.287904pt;}
.ws15b{word-spacing:1.303936pt;}
.ws7d{word-spacing:1.667328pt;}
.ws93{word-spacing:1.720768pt;}
.ws46{word-spacing:1.726112pt;}
.ws1a{word-spacing:1.934528pt;}
.ws92{word-spacing:1.961248pt;}
.ws7c{word-spacing:1.966592pt;}
.ws149{word-spacing:1.993312pt;}
.ws8d{word-spacing:2.073472pt;}
.wsc1{word-spacing:2.233792pt;}
.ws11f{word-spacing:2.239136pt;}
.ws48{word-spacing:2.244480pt;}
.wsa9{word-spacing:2.271200pt;}
.wsb2{word-spacing:2.297920pt;}
.ws140{word-spacing:2.356704pt;}
.ws12a{word-spacing:2.378080pt;}
.ws11e{word-spacing:2.565120pt;}
.wsd6{word-spacing:2.575808pt;}
.wsf1{word-spacing:2.602528pt;}
.wsc0{word-spacing:2.629248pt;}
.ws9b{word-spacing:2.693376pt;}
.ws9a{word-spacing:2.821632pt;}
.ws13{word-spacing:2.896448pt;}
.ws11d{word-spacing:2.901792pt;}
.ws109{word-spacing:2.923168pt;}
.ws44{word-spacing:2.933856pt;}
.ws12{word-spacing:2.944544pt;}
.ws17{word-spacing:3.174336pt;}
.wsa1{word-spacing:3.195712pt;}
.ws124{word-spacing:3.201056pt;}
.ws2e{word-spacing:3.222432pt;}
.ws41{word-spacing:3.233120pt;}
.ws11b{word-spacing:3.345344pt;}
.ws143{word-spacing:3.511200pt;}
.ws10a{word-spacing:3.527040pt;}
.ws123{word-spacing:3.569792pt;}
.ws40{word-spacing:3.585824pt;}
.ws4f{word-spacing:3.655296pt;}
.ws120{word-spacing:3.762176pt;}
.ws141{word-spacing:3.826144pt;}
.ws122{word-spacing:3.831648pt;}
.ws3a{word-spacing:3.842336pt;}
.ws121{word-spacing:3.847680pt;}
.wsb9{word-spacing:3.853024pt;}
.wsba{word-spacing:3.863712pt;}
.ws15f{word-spacing:3.890432pt;}
.ws2c{word-spacing:3.917152pt;}
.ws2b{word-spacing:3.922496pt;}
.ws135{word-spacing:3.965248pt;}
.ws42{word-spacing:3.981280pt;}
.wsb5{word-spacing:4.136256pt;}
.wsb4{word-spacing:4.162976pt;}
.wse4{word-spacing:4.173664pt;}
.ws36{word-spacing:4.179008pt;}
.wsb6{word-spacing:4.259168pt;}
.ws49{word-spacing:4.462240pt;}
.ws20{word-spacing:4.478272pt;}
.wsbd{word-spacing:4.590496pt;}
.ws34{word-spacing:4.601184pt;}
.wsb7{word-spacing:4.627904pt;}
.ws145{word-spacing:4.800768pt;}
.wsa6{word-spacing:4.820288pt;}
.ws144{word-spacing:4.826304pt;}
.ws107{word-spacing:4.916480pt;}
.ws160{word-spacing:4.927168pt;}
.ws8e{word-spacing:5.130240pt;}
.ws5b{word-spacing:5.146272pt;}
.ws56{word-spacing:5.194368pt;}
.ws7e{word-spacing:5.231776pt;}
.ws91{word-spacing:5.247808pt;}
.ws142{word-spacing:5.439168pt;}
.ws14a{word-spacing:5.445536pt;}
.ws3b{word-spacing:5.456224pt;}
.ws5a{word-spacing:5.466912pt;}
.ws108{word-spacing:5.477600pt;}
.ws12b{word-spacing:5.824960pt;}
.ws45{word-spacing:5.862368pt;}
.ws12d{word-spacing:6.097504pt;}
.wse3{word-spacing:6.161632pt;}
.wsaa{word-spacing:6.225760pt;}
.ws97{word-spacing:6.241792pt;}
.ws16{word-spacing:6.375392pt;}
.ws4b{word-spacing:6.407456pt;}
.ws22{word-spacing:6.444864pt;}
.ws12c{word-spacing:6.460896pt;}
.wse2{word-spacing:6.482272pt;}
.ws23{word-spacing:6.498304pt;}
.ws152{word-spacing:6.690432pt;}
.ws153{word-spacing:6.694688pt;}
.ws130{word-spacing:6.712064pt;}
.ws12f{word-spacing:6.738784pt;}
.ws131{word-spacing:6.754816pt;}
.ws57{word-spacing:6.765504pt;}
.ws58{word-spacing:6.770848pt;}
.ws31{word-spacing:6.786880pt;}
.ws12e{word-spacing:6.808256pt;}
.ws15{word-spacing:6.888416pt;}
.ws13f{word-spacing:7.043392pt;}
.ws18{word-spacing:7.048736pt;}
.ws37{word-spacing:7.064768pt;}
.ws133{word-spacing:7.086144pt;}
.ws30{word-spacing:7.096832pt;}
.ws132{word-spacing:7.118208pt;}
.ws2d{word-spacing:7.139584pt;}
.wse9{word-spacing:7.326624pt;}
.ws150{word-spacing:7.337344pt;}
.wsda{word-spacing:7.369376pt;}
.ws3f{word-spacing:7.412128pt;}
.ws100{word-spacing:7.647264pt;}
.ws10f{word-spacing:7.673984pt;}
.ws13e{word-spacing:7.679328pt;}
.ws21{word-spacing:7.684672pt;}
.ws15e{word-spacing:7.695360pt;}
.ws50{word-spacing:7.700704pt;}
.wseb{word-spacing:7.727424pt;}
.wsff{word-spacing:7.802240pt;}
.ws51{word-spacing:7.978592pt;}
.ws39{word-spacing:7.994624pt;}
.ws147{word-spacing:8.032032pt;}
.ws125{word-spacing:8.320608pt;}
.ws59{word-spacing:8.491616pt;}
.wsbc{word-spacing:8.619872pt;}
.ws33{word-spacing:8.657280pt;}
.ws127{word-spacing:8.753472pt;}
.ws1c{word-spacing:8.780192pt;}
.ws148{word-spacing:8.785536pt;}
.wsef{word-spacing:8.919136pt;}
.ws32{word-spacing:8.956544pt;}
.wsbb{word-spacing:8.961888pt;}
.ws1b{word-spacing:9.020672pt;}
.ws5c{word-spacing:9.095488pt;}
.ws9c{word-spacing:9.293216pt;}
.ws103{word-spacing:9.362688pt;}
.wsee{word-spacing:9.394752pt;}
.wsde{word-spacing:9.587136pt;}
.wse6{word-spacing:9.592480pt;}
.wsa0{word-spacing:9.597824pt;}
.ws43{word-spacing:9.613856pt;}
.ws102{word-spacing:9.624544pt;}
.ws15d{word-spacing:9.635232pt;}
.wsdf{word-spacing:9.694016pt;}
.ws14f{word-spacing:9.890944pt;}
.wse1{word-spacing:9.907776pt;}
.ws15c{word-spacing:9.955872pt;}
.ws80{word-spacing:10.036032pt;}
.ws14c{word-spacing:10.222912pt;}
.ws14e{word-spacing:10.244192pt;}
.ws9f{word-spacing:10.244448pt;}
.ws11c{word-spacing:10.351328pt;}
.ws83{word-spacing:10.537856pt;}
.wsbe{word-spacing:10.559744pt;}
.ws8c{word-spacing:10.613184pt;}
.ws26{word-spacing:10.875040pt;}
.ws126{word-spacing:10.880384pt;}
.wsf0{word-spacing:10.885728pt;}
.ws8a{word-spacing:10.891072pt;}
.wsb3{word-spacing:10.939168pt;}
.ws8b{word-spacing:10.955200pt;}
.ws89{word-spacing:11.126208pt;}
.ws4a{word-spacing:11.543040pt;}
.wsa4{word-spacing:11.847648pt;}
.ws2f{word-spacing:11.943840pt;}
.wsb8{word-spacing:11.975904pt;}
.ws154{word-spacing:12.133856pt;}
.wsd9{word-spacing:12.488928pt;}
.ws10d{word-spacing:12.531680pt;}
.ws10e{word-spacing:12.542368pt;}
.ws155{word-spacing:12.780768pt;}
.wsdb{word-spacing:12.820256pt;}
.ws101{word-spacing:13.450848pt;}
.ws128{word-spacing:14.081440pt;}
.ws134{word-spacing:14.386048pt;}
.ws19{word-spacing:14.535680pt;}
.wse0{word-spacing:14.728064pt;}
.ws3d{word-spacing:14.733408pt;}
.ws38{word-spacing:15.038016pt;}
.wsbf{word-spacing:15.054048pt;}
.ws3c{word-spacing:15.123520pt;}
.ws14{word-spacing:15.364000pt;}
.ws9d{word-spacing:15.983904pt;}
.wsab{word-spacing:16.336608pt;}
.ws2a{word-spacing:16.967200pt;}
.ws67{word-spacing:17.254413pt;}
.ws11{word-spacing:18.666592pt;}
.ws29{word-spacing:20.798848pt;}
.ws1f{word-spacing:21.264512pt;}
.ws129{word-spacing:21.294336pt;}
.ws28{word-spacing:21.509600pt;}
.ws27{word-spacing:21.520288pt;}
.ws14d{word-spacing:22.718528pt;}
.ws9e{word-spacing:22.861632pt;}
.ws104{word-spacing:23.470848pt;}
.wsec{word-spacing:24.972512pt;}
.ws151{word-spacing:31.332672pt;}
.ws106{word-spacing:31.369280pt;}
.ws105{word-spacing:31.412032pt;}
.wsfd{word-spacing:39.240928pt;}
.ws71{word-spacing:78.500335pt;}
.ws113{word-spacing:80.847254pt;}
.ws112{word-spacing:81.489341pt;}
.wsd5{word-spacing:81.504292pt;}
.ws111{word-spacing:88.693882pt;}
.wsd4{word-spacing:89.612070pt;}
.ws75{word-spacing:97.907200pt;}
.ws74{word-spacing:100.480000pt;}
.wsc7{word-spacing:115.800279pt;}
.ws77{word-spacing:118.028800pt;}
.wsc9{word-spacing:118.371656pt;}
.wscb{word-spacing:124.151440pt;}
.wsc3{word-spacing:124.783822pt;}
.wsc6{word-spacing:128.647861pt;}
.ws6f{word-spacing:129.925007pt;}
.wscc{word-spacing:129.940524pt;}
.wsc4{word-spacing:132.167810pt;}
.wsce{word-spacing:133.091952pt;}
.wsc2{word-spacing:136.022550pt;}
.wsc5{word-spacing:137.319862pt;}
.ws6a{word-spacing:144.552025pt;}
.wsc8{word-spacing:146.308055pt;}
.wse5{word-spacing:155.456960pt;}
.ws72{word-spacing:165.359416pt;}
.ws66{word-spacing:171.187551pt;}
.wsa2{word-spacing:213.766112pt;}
.ws95{word-spacing:232.586912pt;}
.ws139{word-spacing:252.168000pt;}
.ws138{word-spacing:264.008192pt;}
.ws137{word-spacing:264.646592pt;}
.ws13a{word-spacing:265.276480pt;}
.wsd2{word-spacing:338.608592pt;}
.wsf3{word-spacing:382.725056pt;}
.wsf5{word-spacing:383.993344pt;}
.ws73{word-spacing:390.662803pt;}
.wsf4{word-spacing:394.569504pt;}
.wsf2{word-spacing:395.207904pt;}
.wsf6{word-spacing:395.833536pt;}
.wsed{word-spacing:509.721408pt;}
.ws6b{word-spacing:520.958625pt;}
.ws6e{word-spacing:549.756995pt;}
.ws6c{word-spacing:609.368354pt;}
.ws6d{word-spacing:638.765210pt;}
.ws8f{word-spacing:694.666560pt;}
.ws99{word-spacing:814.345440pt;}
._1e{margin-left:-628.281876pt;}
._11{margin-left:-532.929780pt;}
._45{margin-left:-474.713858pt;}
._29{margin-left:-423.404534pt;}
._46{margin-left:-382.689014pt;}
._47{margin-left:-374.566835pt;}
._27{margin-left:-345.951807pt;}
._13{margin-left:-330.735124pt;}
._26{margin-left:-327.157142pt;}
._2c{margin-left:-324.609795pt;}
._24{margin-left:-315.731797pt;}
._49{margin-left:-308.592854pt;}
._48{margin-left:-299.709064pt;}
._4a{margin-left:-292.720168pt;}
._2b{margin-left:-291.093900pt;}
._2a{margin-left:-285.806861pt;}
._15{margin-left:-263.681121pt;}
._43{margin-left:-259.490459pt;}
._1a{margin-left:-236.060750pt;}
._14{margin-left:-206.880546pt;}
._12{margin-left:-199.072354pt;}
._1c{margin-left:-195.790133pt;}
._32{margin-left:-187.707124pt;}
._4c{margin-left:-182.870688pt;}
._19{margin-left:-178.769348pt;}
._4e{margin-left:-159.708384pt;}
._1f{margin-left:-155.730537pt;}
._16{margin-left:-133.966746pt;}
._1b{margin-left:-132.851680pt;}
._2f{margin-left:-124.361777pt;}
._38{margin-left:-119.457722pt;}
._28{margin-left:-117.236000pt;}
._34{margin-left:-115.080437pt;}
._37{margin-left:-113.221446pt;}
._36{margin-left:-109.626033pt;}
._4d{margin-left:-105.107376pt;}
._30{margin-left:-104.002048pt;}
._33{margin-left:-97.544700pt;}
._2e{margin-left:-91.645566pt;}
._20{margin-left:-88.426025pt;}
._39{margin-left:-80.961280pt;}
._35{margin-left:-76.742990pt;}
._25{margin-left:-75.410763pt;}
._31{margin-left:-58.280448pt;}
._22{margin-left:-43.415153pt;}
._23{margin-left:-42.347472pt;}
._54{margin-left:-39.360224pt;}
._21{margin-left:-37.867855pt;}
._1d{margin-left:-30.039670pt;}
._8{margin-left:-16.000576pt;}
._58{margin-left:-14.428512pt;}
._4f{margin-left:-8.881728pt;}
._57{margin-left:-7.214400pt;}
._6{margin-left:-5.599456pt;}
._7{margin-left:-3.437216pt;}
._3{margin-left:-1.271872pt;}
._4{width:1.068800pt;}
._3a{width:2.810944pt;}
._18{width:7.155616pt;}
._5c{width:8.639680pt;}
._4b{width:9.715392pt;}
._3b{width:16.606912pt;}
._5d{width:18.560416pt;}
._5{width:21.443456pt;}
._d{width:28.391776pt;}
._5a{width:30.400608pt;}
._5b{width:31.358208pt;}
._62{width:40.331168pt;}
._0{width:50.557024pt;}
._53{width:66.151008pt;}
._56{width:80.142835pt;}
._55{width:90.595795pt;}
._52{width:91.849988pt;}
._51{width:105.821380pt;}
._a{width:125.688192pt;}
._3c{width:132.799968pt;}
._44{width:146.182508pt;}
._42{width:150.348789pt;}
._41{width:151.957643pt;}
._2d{width:209.394912pt;}
._59{width:214.991168pt;}
._17{width:261.439168pt;}
._3f{width:311.998848pt;}
._3e{width:317.757216pt;}
._50{width:336.381472pt;}
._40{width:338.237088pt;}
._9{width:341.752544pt;}
._3d{width:352.639392pt;}
._60{width:389.101984pt;}
._1{width:412.351072pt;}
._65{width:425.601504pt;}
._2{width:482.558048pt;}
._10{width:493.216629pt;}
._5e{width:547.909356pt;}
._c{width:557.884992pt;}
._64{width:592.948864pt;}
._67{width:612.320864pt;}
._61{width:639.489760pt;}
._63{width:640.478400pt;}
._66{width:646.399552pt;}
._e{width:661.109075pt;}
._5f{width:750.351040pt;}
._f{width:892.028353pt;}
._b{width:1067.519712pt;}
.fs19{font-size:24.106133pt;}
.fsd{font-size:24.354667pt;}
.fs21{font-size:26.560000pt;}
.fs8{font-size:26.654933pt;}
.fs2c{font-size:27.177600pt;}
.fs2a{font-size:27.227733pt;}
.fs2d{font-size:29.268800pt;}
.fs2b{font-size:29.322667pt;}
.fs20{font-size:32.000000pt;}
.fs2e{font-size:32.008533pt;}
.fs1a{font-size:33.748800pt;}
.fs14{font-size:33.848533pt;}
.fs28{font-size:33.880000pt;}
.fs24{font-size:33.994667pt;}
.fs16{font-size:34.047467pt;}
.fs11{font-size:34.071467pt;}
.fsb{font-size:34.097600pt;}
.fse{font-size:34.560000pt;}
.fs1c{font-size:35.668032pt;}
.fs0{font-size:42.560000pt;}
.fs7{font-size:42.647467pt;}
.fs1e{font-size:44.980424pt;}
.fs22{font-size:46.498667pt;}
.fs17{font-size:48.640000pt;}
.fsf{font-size:48.672533pt;}
.fsc{font-size:48.709867pt;}
.fs18{font-size:51.405853pt;}
.fs10{font-size:51.440433pt;}
.fs1b{font-size:53.033600pt;}
.fs25{font-size:53.420267pt;}
.fs1{font-size:53.440000pt;}
.fs3{font-size:56.479151pt;}
.fs13{font-size:58.026133pt;}
.fs27{font-size:58.080000pt;}
.fs15{font-size:61.326273pt;}
.fs29{font-size:61.382764pt;}
.fs6{font-size:63.972267pt;}
.fs1f{font-size:64.000000pt;}
.fs2f{font-size:64.017600pt;}
.fs9{font-size:66.063467pt;}
.fs1d{font-size:66.271467pt;}
.fs2{font-size:74.560000pt;}
.fs12{font-size:76.612267pt;}
.fs26{font-size:76.683733pt;}
.fs23{font-size:87.416533pt;}
.fsa{font-size:87.680000pt;}
.fs5{font-size:101.440000pt;}
.fs4{font-size:128.000000pt;}
.fs30{font-size:128.034667pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:2.720400pt;}
.y80{bottom:3.200400pt;}
.y91{bottom:3.600400pt;}
.y8e{bottom:98.267144pt;}
.y8b{bottom:101.547067pt;}
.y50{bottom:102.025179pt;}
.y28{bottom:102.901403pt;}
.yd2{bottom:103.384707pt;}
.y19f{bottom:103.706811pt;}
.y10f{bottom:104.345063pt;}
.y10c{bottom:104.346515pt;}
.y18d{bottom:107.227067pt;}
.y8a{bottom:107.387067pt;}
.y1d9{bottom:108.342123pt;}
.y113{bottom:109.067067pt;}
.y88{bottom:111.147200pt;}
.y19e{bottom:115.947067pt;}
.y116{bottom:116.667036pt;}
.y10e{bottom:117.305615pt;}
.y10b{bottom:117.307067pt;}
.y4f{bottom:117.625651pt;}
.y27{bottom:118.501875pt;}
.y8c{bottom:118.587067pt;}
.y150{bottom:118.660931pt;}
.yd1{bottom:118.985179pt;}
.y111{bottom:120.264791pt;}
.y115{bottom:120.267055pt;}
.y114{bottom:120.267795pt;}
.y8d{bottom:120.667067pt;}
.y1d8{bottom:124.022755pt;}
.y89{bottom:124.427269pt;}
.y19d{bottom:126.107200pt;}
.y10a{bottom:129.387067pt;}
.y18c{bottom:129.787067pt;}
.y110{bottom:131.224487pt;}
.y10d{bottom:131.225939pt;}
.y4e{bottom:133.226123pt;}
.y26{bottom:134.102347pt;}
.y14f{bottom:134.261403pt;}
.yd0{bottom:134.585651pt;}
.y112{bottom:136.906713pt;}
.y1d7{bottom:139.703387pt;}
.y18b{bottom:143.707067pt;}
.y87{bottom:146.106971pt;}
.y4d{bottom:148.826595pt;}
.y25{bottom:149.702819pt;}
.y14e{bottom:149.861875pt;}
.ycf{bottom:150.186123pt;}
.y1d6{bottom:155.384019pt;}
.y18a{bottom:157.627067pt;}
.y86{bottom:161.707443pt;}
.y109{bottom:162.503795pt;}
.y4c{bottom:164.427067pt;}
.y24{bottom:165.303291pt;}
.y14d{bottom:165.462347pt;}
.yce{bottom:165.786595pt;}
.y1d5{bottom:171.064651pt;}
.y189{bottom:171.547067pt;}
.y108{bottom:178.104267pt;}
.y23{bottom:180.903763pt;}
.y14c{bottom:181.062819pt;}
.ycd{bottom:181.387067pt;}
.ycc{bottom:181.387507pt;}
.y188{bottom:185.467067pt;}
.y83{bottom:185.626667pt;}
.y85{bottom:188.907067pt;}
.y82{bottom:188.907395pt;}
.y4b{bottom:188.986291pt;}
.y107{bottom:193.704739pt;}
.y1d4{bottom:194.904235pt;}
.y22{bottom:196.504235pt;}
.y14b{bottom:196.663291pt;}
.yca{bottom:197.866563pt;}
.ycb{bottom:197.867067pt;}
.y187{bottom:199.387067pt;}
.y1d3{bottom:210.504707pt;}
.y21{bottom:212.104707pt;}
.y14a{bottom:212.263763pt;}
.y186{bottom:213.307067pt;}
.y7f{bottom:213.546667pt;}
.yc9{bottom:214.346123pt;}
.y7e{bottom:216.747067pt;}
.y7d{bottom:216.827067pt;}
.y106{bottom:217.305179pt;}
.y81{bottom:217.467067pt;}
.y4a{bottom:218.827067pt;}
.y1d2{bottom:226.105179pt;}
.y185{bottom:227.227067pt;}
.y20{bottom:227.705179pt;}
.y149{bottom:227.864235pt;}
.yc8{bottom:229.946595pt;}
.y105{bottom:232.905651pt;}
.y184{bottom:241.147067pt;}
.y1d1{bottom:241.705651pt;}
.y7c{bottom:242.265651pt;}
.y1f{bottom:243.305651pt;}
.y148{bottom:243.464707pt;}
.yc6{bottom:245.546563pt;}
.yc7{bottom:245.547067pt;}
.y104{bottom:248.506123pt;}
.y183{bottom:255.067067pt;}
.y1d0{bottom:257.306123pt;}
.y7b{bottom:257.866123pt;}
.y1e{bottom:258.906123pt;}
.y147{bottom:259.065179pt;}
.yc5{bottom:262.026123pt;}
.y49{bottom:263.704707pt;}
.y103{bottom:264.106595pt;}
.y182{bottom:268.987067pt;}
.y1cf{bottom:272.906595pt;}
.y7a{bottom:273.466595pt;}
.y1d{bottom:274.506595pt;}
.y146{bottom:274.665651pt;}
.yc4{bottom:277.626595pt;}
.y48{bottom:279.305179pt;}
.y102{bottom:279.707067pt;}
.y181{bottom:282.907067pt;}
.y1ce{bottom:288.507067pt;}
.y79{bottom:289.067355pt;}
.y1c{bottom:290.107067pt;}
.y145{bottom:290.266123pt;}
.yc3{bottom:293.227067pt;}
.y47{bottom:294.905651pt;}
.y180{bottom:296.827067pt;}
.y101{bottom:297.947067pt;}
.yfc{bottom:300.747067pt;}
.yff{bottom:300.747522pt;}
.y144{bottom:305.866595pt;}
.y46{bottom:310.506123pt;}
.y17f{bottom:310.747067pt;}
.yfb{bottom:311.307067pt;}
.y100{bottom:311.627060pt;}
.yfd{bottom:314.907067pt;}
.y78{bottom:317.227067pt;}
.y1b{bottom:318.027067pt;}
.y77{bottom:320.267067pt;}
.y1cd{bottom:320.667200pt;}
.yc2{bottom:321.146712pt;}
.y143{bottom:321.467067pt;}
.y142{bottom:321.467507pt;}
.y17e{bottom:324.667200pt;}
.y45{bottom:326.106595pt;}
.yfe{bottom:329.467067pt;}
.y141{bottom:337.947067pt;}
.y17d{bottom:338.587067pt;}
.y44{bottom:341.707067pt;}
.yc1{bottom:342.987200pt;}
.y76{bottom:347.146728pt;}
.y17c{bottom:352.507067pt;}
.yfa{bottom:352.905651pt;}
.y75{bottom:362.747200pt;}
.y74{bottom:362.747507pt;}
.y19c{bottom:363.067200pt;}
.y1cc{bottom:363.147200pt;}
.y140{bottom:365.867067pt;}
.y17b{bottom:366.347067pt;}
.y1a{bottom:366.906595pt;}
.y17a{bottom:366.907200pt;}
.yf9{bottom:368.506123pt;}
.y43{bottom:369.626579pt;}
.y72{bottom:379.227035pt;}
.y73{bottom:379.227067pt;}
.y19{bottom:382.507067pt;}
.yf8{bottom:384.106595pt;}
.yc0{bottom:387.226931pt;}
.y1c6{bottom:388.427067pt;}
.y19b{bottom:389.627067pt;}
.y179{bottom:390.103763pt;}
.y42{bottom:391.467067pt;}
.y71{bottom:395.706595pt;}
.ybf{bottom:397.387067pt;}
.yf6{bottom:399.707035pt;}
.yf7{bottom:399.707067pt;}
.y1cb{bottom:401.466219pt;}
.y19a{bottom:403.467067pt;}
.y199{bottom:404.026520pt;}
.yb8{bottom:404.747067pt;}
.y178{bottom:405.704235pt;}
.y18{bottom:410.427067pt;}
.y70{bottom:411.306728pt;}
.y13f{bottom:412.747200pt;}
.yac{bottom:414.347067pt;}
.yf5{bottom:416.186595pt;}
.y1ca{bottom:420.426632pt;}
.yad{bottom:421.147200pt;}
.y177{bottom:421.304707pt;}
.y13e{bottom:425.547067pt;}
.y6f{bottom:426.907403pt;}
.ybe{bottom:427.467067pt;}
.yf4{bottom:431.787067pt;}
.yf3{bottom:431.787483pt;}
.y139{bottom:432.985441pt;}
.y41{bottom:436.329595pt;}
.y176{bottom:436.905179pt;}
.y1c9{bottom:439.467067pt;}
.yae{bottom:440.347067pt;}
.y12e{bottom:441.867067pt;}
.y198{bottom:442.586944pt;}
.ybd{bottom:447.307067pt;}
.y12f{bottom:447.627067pt;}
.yf2{bottom:448.267043pt;}
.y40{bottom:451.930067pt;}
.y175{bottom:452.505651pt;}
.y69{bottom:454.347067pt;}
.y6d{bottom:454.347351pt;}
.y197{bottom:454.827200pt;}
.yaf{bottom:459.627067pt;}
.yf1{bottom:464.746603pt;}
.ybc{bottom:464.827200pt;}
.y68{bottom:464.907200pt;}
.y6e{bottom:466.027484pt;}
.y3f{bottom:467.530539pt;}
.y174{bottom:468.106123pt;}
.y196{bottom:468.987067pt;}
.y6a{bottom:469.067067pt;}
.y67{bottom:469.147067pt;}
.y1c8{bottom:469.467067pt;}
.y130{bottom:470.187067pt;}
.yb0{bottom:478.827067pt;}
.y6b{bottom:482.587067pt;}
.y17{bottom:482.666595pt;}
.y3e{bottom:483.131011pt;}
.y173{bottom:483.706595pt;}
.y6c{bottom:484.747067pt;}
.y131{bottom:492.667067pt;}
.yf0{bottom:495.707067pt;}
.ybb{bottom:497.067067pt;}
.yb1{bottom:498.027067pt;}
.y16{bottom:498.267067pt;}
.y3d{bottom:498.731483pt;}
.y171{bottom:499.307035pt;}
.y172{bottom:499.307067pt;}
.y66{bottom:505.707067pt;}
.y13a{bottom:509.307067pt;}
.y3c{bottom:514.331955pt;}
.y1c7{bottom:514.427067pt;}
.y15{bottom:514.746123pt;}
.y132{bottom:515.227067pt;}
.y170{bottom:515.786595pt;}
.yb2{bottom:517.227067pt;}
.yef{bottom:521.867067pt;}
.yba{bottom:528.107067pt;}
.y14{bottom:530.346595pt;}
.y16f{bottom:531.387067pt;}
.y13d{bottom:534.427067pt;}
.y65{bottom:536.667067pt;}
.yb3{bottom:536.987067pt;}
.y133{bottom:537.227067pt;}
.y3b{bottom:539.292443pt;}
.y1c5{bottom:540.507067pt;}
.y13c{bottom:542.987067pt;}
.y12{bottom:545.947035pt;}
.y13{bottom:545.947067pt;}
.yb9{bottom:550.667067pt;}
.ye0{bottom:552.347067pt;}
.yee{bottom:552.749280pt;}
.y3a{bottom:554.892915pt;}
.yb4{bottom:556.187067pt;}
.y64{bottom:557.787067pt;}
.y16e{bottom:559.307067pt;}
.y1c4{bottom:559.542691pt;}
.y134{bottom:559.707067pt;}
.y11{bottom:562.426595pt;}
.y63{bottom:567.467067pt;}
.y39{bottom:570.493387pt;}
.yb5{bottom:575.387067pt;}
.yf{bottom:578.026091pt;}
.y10{bottom:578.027067pt;}
.y135{bottom:582.267067pt;}
.y38{bottom:586.093859pt;}
.y1c3{bottom:586.503171pt;}
.y1a9{bottom:588.744707pt;}
.ye{bottom:594.505651pt;}
.yb6{bottom:594.587067pt;}
.y37{bottom:601.694331pt;}
.y1c2{bottom:602.103643pt;}
.ye1{bottom:602.106452pt;}
.y13b{bottom:602.107067pt;}
.y16d{bottom:604.184235pt;}
.y1a8{bottom:604.345179pt;}
.y136{bottom:604.747067pt;}
.yd{bottom:610.106123pt;}
.yb7{bottom:613.867067pt;}
.y62{bottom:615.627067pt;}
.y36{bottom:617.294803pt;}
.y1c1{bottom:617.704115pt;}
.y16c{bottom:619.784707pt;}
.y1a7{bottom:619.945651pt;}
.yab{bottom:620.027067pt;}
.yc{bottom:625.706595pt;}
.y137{bottom:626.747067pt;}
.y35{bottom:632.895275pt;}
.y1c0{bottom:633.304587pt;}
.y138{bottom:634.587067pt;}
.y16b{bottom:635.385179pt;}
.y1a6{bottom:635.546123pt;}
.y61{bottom:640.827067pt;}
.yb{bottom:641.307067pt;}
.y34{bottom:648.495747pt;}
.y1bf{bottom:648.905059pt;}
.ye7{bottom:649.306086pt;}
.yaa{bottom:649.785211pt;}
.ye6{bottom:650.666172pt;}
.ye3{bottom:650.906803pt;}
.y16a{bottom:650.985651pt;}
.ye5{bottom:651.146271pt;}
.y1a5{bottom:651.146595pt;}
.ye2{bottom:651.386902pt;}
.ye4{bottom:652.026258pt;}
.y60{bottom:652.987067pt;}
.y1be{bottom:664.505531pt;}
.ya9{bottom:665.385683pt;}
.y169{bottom:666.586123pt;}
.y1a4{bottom:666.747067pt;}
.ya{bottom:669.227067pt;}
.y12d{bottom:671.867067pt;}
.y5f{bottom:674.346459pt;}
.y33{bottom:674.736123pt;}
.ya8{bottom:680.986155pt;}
.y168{bottom:682.186595pt;}
.y1bd{bottom:685.705179pt;}
.y5e{bottom:686.586715pt;}
.y32{bottom:690.336595pt;}
.y1a3{bottom:694.667067pt;}
.ya7{bottom:696.586627pt;}
.y195{bottom:696.986811pt;}
.y167{bottom:697.786595pt;}
.y12c{bottom:698.427067pt;}
.ye8{bottom:700.186090pt;}
.y1bc{bottom:701.305651pt;}
.y5d{bottom:704.747067pt;}
.y31{bottom:705.937067pt;}
.y194{bottom:709.227067pt;}
.y12b{bottom:712.347067pt;}
.y166{bottom:713.386728pt;}
.y1bb{bottom:716.906123pt;}
.ya6{bottom:720.186595pt;}
.y30{bottom:721.537539pt;}
.y193{bottom:723.387067pt;}
.y12a{bottom:726.267067pt;}
.y165{bottom:728.986123pt;}
.y9{bottom:730.104107pt;}
.y1ba{bottom:732.506595pt;}
.ya5{bottom:735.785651pt;}
.y2f{bottom:737.138011pt;}
.y129{bottom:740.187067pt;}
.y164{bottom:744.586595pt;}
.y1b9{bottom:748.107067pt;}
.yed{bottom:749.947801pt;}
.yec{bottom:750.427899pt;}
.yea{bottom:750.667367pt;}
.ye9{bottom:750.906836pt;}
.ya4{bottom:751.386123pt;}
.yeb{bottom:751.787985pt;}
.y2e{bottom:752.738483pt;}
.y128{bottom:754.107067pt;}
.y1a2{bottom:754.906944pt;}
.y163{bottom:760.187067pt;}
.y8{bottom:761.704515pt;}
.ya3{bottom:766.986595pt;}
.y1a1{bottom:767.147200pt;}
.y127{bottom:768.027067pt;}
.y2d{bottom:768.338955pt;}
.y1b8{bottom:770.267067pt;}
.y7{bottom:777.304987pt;}
.y126{bottom:781.947067pt;}
.ya2{bottom:782.587067pt;}
.y2c{bottom:783.939427pt;}
.y1a0{bottom:785.307067pt;}
.y162{bottom:787.147200pt;}
.y6{bottom:792.905459pt;}
.y125{bottom:795.867067pt;}
.ydf{bottom:798.185651pt;}
.y161{bottom:801.307067pt;}
.y5{bottom:808.505931pt;}
.y15d{bottom:808.747217pt;}
.y2b{bottom:808.899915pt;}
.ya1{bottom:809.547067pt;}
.y124{bottom:809.787067pt;}
.y1b7{bottom:813.146523pt;}
.yde{bottom:813.786123pt;}
.y151{bottom:817.627067pt;}
.y152{bottom:823.387067pt;}
.y123{bottom:823.707067pt;}
.y4{bottom:824.106403pt;}
.y2a{bottom:824.500387pt;}
.y1b6{bottom:825.386779pt;}
.ydd{bottom:829.386595pt;}
.ya0{bottom:836.107067pt;}
.y122{bottom:837.627067pt;}
.y29{bottom:840.100859pt;}
.y1b5{bottom:842.986403pt;}
.y153{bottom:843.227067pt;}
.ydc{bottom:844.987067pt;}
.y121{bottom:851.547067pt;}
.y9e{bottom:852.587067pt;}
.y1b4{bottom:855.226659pt;}
.y9f{bottom:855.227067pt;}
.y154{bottom:863.067067pt;}
.y120{bottom:865.467067pt;}
.y1b3{bottom:867.466915pt;}
.ydb{bottom:871.947067pt;}
.y9d{bottom:878.983683pt;}
.y11f{bottom:879.387067pt;}
.y54{bottom:880.827067pt;}
.y155{bottom:882.987067pt;}
.y15e{bottom:884.907067pt;}
.y1b2{bottom:885.066539pt;}
.y11e{bottom:893.307067pt;}
.y9c{bottom:894.584155pt;}
.y1b1{bottom:897.306795pt;}
.yda{bottom:898.507067pt;}
.y156{bottom:902.827067pt;}
.y11d{bottom:907.227067pt;}
.y1b0{bottom:909.547051pt;}
.y9b{bottom:910.184627pt;}
.yd9{bottom:912.427067pt;}
.y160{bottom:912.667067pt;}
.y53{bottom:917.627067pt;}
.y15f{bottom:920.027067pt;}
.y11c{bottom:921.147067pt;}
.y1af{bottom:921.787307pt;}
.y157{bottom:922.667067pt;}
.y9a{bottom:925.785099pt;}
.yd8{bottom:926.347067pt;}
.y11b{bottom:937.707067pt;}
.y1ae{bottom:939.386931pt;}
.yd7{bottom:940.267067pt;}
.y99{bottom:941.385571pt;}
.y158{bottom:942.507067pt;}
.y192{bottom:944.985179pt;}
.y5c{bottom:945.864739pt;}
.yd6{bottom:954.187067pt;}
.y52{bottom:954.427067pt;}
.y98{bottom:956.986043pt;}
.y1ad{bottom:956.986555pt;}
.y191{bottom:960.585651pt;}
.y11a{bottom:960.905651pt;}
.y5b{bottom:961.465211pt;}
.y159{bottom:962.427067pt;}
.y1ac{bottom:969.226811pt;}
.y97{bottom:972.586515pt;}
.y190{bottom:976.186123pt;}
.y119{bottom:976.506123pt;}
.y5a{bottom:977.065683pt;}
.yd5{bottom:977.385683pt;}
.y1ab{bottom:981.467067pt;}
.y15a{bottom:982.267067pt;}
.y96{bottom:988.186987pt;}
.y51{bottom:991.227067pt;}
.y18f{bottom:991.786595pt;}
.y118{bottom:992.106595pt;}
.y59{bottom:992.666155pt;}
.yd4{bottom:992.986155pt;}
.y15b{bottom:1002.107067pt;}
.y1aa{bottom:1003.307067pt;}
.y90{bottom:1004.106667pt;}
.y93{bottom:1004.667067pt;}
.y94{bottom:1004.986667pt;}
.y18e{bottom:1007.387067pt;}
.y92{bottom:1007.707067pt;}
.y117{bottom:1007.707587pt;}
.y58{bottom:1008.266627pt;}
.y95{bottom:1008.267067pt;}
.y8f{bottom:1008.267744pt;}
.yd3{bottom:1008.586627pt;}
.y15c{bottom:1009.947067pt;}
.y57{bottom:1031.867067pt;}
.y3{bottom:1032.187067pt;}
.y56{bottom:1053.067211pt;}
.y2{bottom:1053.386811pt;}
.y55{bottom:1065.467067pt;}
.y1{bottom:1065.627067pt;}
.h1c{height:14.880000pt;}
.h25{height:15.760000pt;}
.h22{height:16.737755pt;}
.he{height:16.910320pt;}
.h1a{height:17.680000pt;}
.h1e{height:21.151720pt;}
.h23{height:23.433005pt;}
.h3d{height:23.603719pt;}
.hf{height:23.675189pt;}
.h31{height:23.810625pt;}
.h4a{height:24.364294pt;}
.h48{height:24.409237pt;}
.h4b{height:27.110798pt;}
.h49{height:27.160693pt;}
.h4f{height:28.085613pt;}
.h2b{height:28.366406pt;}
.h2e{height:28.687500pt;}
.h1f{height:29.612595pt;}
.h41{height:29.727715pt;}
.h3b{height:29.828328pt;}
.h11{height:29.918646pt;}
.h7{height:30.984844pt;}
.h4d{height:31.247718pt;}
.h39{height:31.488224pt;}
.hc{height:31.583568pt;}
.h21{height:33.038211pt;}
.h10{height:33.821011pt;}
.h4{height:37.105312pt;}
.h47{height:37.183375pt;}
.h9{height:37.420653pt;}
.h1{height:38.154375pt;}
.h32{height:38.906325pt;}
.h44{height:40.327031pt;}
.h33{height:40.799855pt;}
.h2a{height:41.663996pt;}
.h34{height:42.399410pt;}
.h15{height:42.707296pt;}
.h35{height:43.682773pt;}
.h36{height:44.635995pt;}
.h28{height:45.053750pt;}
.hd{height:45.118465pt;}
.h45{height:45.284150pt;}
.h27{height:45.932500pt;}
.h20{height:46.533877pt;}
.h3c{height:46.873154pt;}
.h2{height:46.890469pt;}
.h13{height:46.891823pt;}
.h14{height:46.892357pt;}
.h4c{height:46.894778pt;}
.h2c{height:46.896133pt;}
.h37{height:47.464531pt;}
.h1d{height:47.615675pt;}
.h4e{height:47.621094pt;}
.h16{height:47.647706pt;}
.h3a{height:49.481565pt;}
.h29{height:49.499844pt;}
.h3e{height:50.211639pt;}
.h42{height:50.961797pt;}
.h5{height:52.314917pt;}
.h19{height:53.747839pt;}
.h40{height:53.797734pt;}
.h12{height:53.930469pt;}
.h8{height:56.131916pt;}
.h2d{height:56.156250pt;}
.h30{height:56.156783pt;}
.h1b{height:56.804658pt;}
.h52{height:56.843750pt;}
.h43{height:56.856984pt;}
.h50{height:56.859382pt;}
.ha{height:61.192576pt;}
.h26{height:61.385240pt;}
.h17{height:61.930469pt;}
.h24{height:62.570691pt;}
.h2f{height:62.607500pt;}
.h3{height:66.222969pt;}
.h46{height:69.610593pt;}
.h18{height:70.963608pt;}
.h3f{height:71.029806pt;}
.h38{height:80.971271pt;}
.hb{height:81.215312pt;}
.h6{height:113.687500pt;}
.h51{height:113.718290pt;}
.h0{height:1122.666667pt;}
.w3{width:4.000000pt;}
.w4{width:6.640000pt;}
.w2{width:7.760000pt;}
.w1{width:9.200000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x17{left:56.720000pt;}
.x8d{left:71.920000pt;}
.x1{left:75.680000pt;}
.x89{left:78.560000pt;}
.x87{left:83.360000pt;}
.x18{left:85.040000pt;}
.xb{left:87.039648pt;}
.x1c{left:89.920000pt;}
.x10{left:92.560000pt;}
.x14{left:93.520000pt;}
.x1a{left:94.560472pt;}
.x86{left:99.520000pt;}
.x5f{left:101.440000pt;}
.x66{left:103.040743pt;}
.x2{left:104.000000pt;}
.xa{left:105.920000pt;}
.x1e{left:110.960000pt;}
.x30{left:112.400000pt;}
.x6b{left:114.000000pt;}
.x6c{left:119.520000pt;}
.x20{left:123.120000pt;}
.x21{left:125.360000pt;}
.x90{left:126.480000pt;}
.x98{left:128.000000pt;}
.x15{left:129.200000pt;}
.x8{left:132.081384pt;}
.x5{left:133.600416pt;}
.x6d{left:135.120000pt;}
.x34{left:136.400000pt;}
.x22{left:137.920000pt;}
.x35{left:138.880000pt;}
.x27{left:140.400381pt;}
.x5d{left:141.360000pt;}
.x26{left:142.800000pt;}
.x2f{left:144.320000pt;}
.x23{left:145.520000pt;}
.x25{left:147.200000pt;}
.x2a{left:150.080000pt;}
.x67{left:151.120946pt;}
.x4{left:152.639752pt;}
.x32{left:154.400000pt;}
.x5e{left:155.520000pt;}
.x6{left:158.641064pt;}
.x3{left:159.600312pt;}
.x9d{left:163.120848pt;}
.x13{left:164.160000pt;}
.x74{left:170.720232pt;}
.x2e{left:176.960000pt;}
.x1b{left:185.600000pt;}
.x72{left:188.240000pt;}
.x88{left:191.359743pt;}
.x7{left:192.881408pt;}
.x1f{left:197.280000pt;}
.x9{left:200.640000pt;}
.x63{left:202.879846pt;}
.x76{left:207.440000pt;}
.x2b{left:212.880000pt;}
.x8e{left:214.080000pt;}
.x77{left:216.640000pt;}
.x8f{left:218.560000pt;}
.x75{left:229.119615pt;}
.x6e{left:230.880000pt;}
.x9b{left:232.080000pt;}
.x95{left:235.359528pt;}
.x73{left:236.400000pt;}
.xc{left:239.280000pt;}
.xd{left:244.800000pt;}
.x8a{left:248.720000pt;}
.x8c{left:249.760000pt;}
.x65{left:250.961207pt;}
.x62{left:251.920263pt;}
.x24{left:255.280000pt;}
.x8b{left:256.480000pt;}
.x99{left:260.160000pt;}
.x29{left:265.040000pt;}
.x28{left:270.480168pt;}
.x31{left:281.840000pt;}
.x33{left:298.880000pt;}
.x61{left:302.240579pt;}
.x64{left:303.921243pt;}
.x70{left:316.078795pt;}
.x6f{left:320.000000pt;}
.x69{left:323.840000pt;}
.x9c{left:325.600000pt;}
.x71{left:327.120000pt;}
.x6a{left:329.360000pt;}
.x16{left:330.880000pt;}
.x1d{left:335.760000pt;}
.x60{left:350.320782pt;}
.x2c{left:363.200000pt;}
.x2d{left:364.240000pt;}
.x19{left:372.240000pt;}
.xe{left:374.800000pt;}
.xf{left:380.320000pt;}
.x9a{left:383.200831pt;}
.x68{left:393.520000pt;}
.x36{left:398.720248pt;}
.x47{left:399.840000pt;}
.x97{left:407.440000pt;}
.x94{left:412.400000pt;}
.x11{left:417.679440pt;}
.x7b{left:421.520000pt;}
.x4c{left:423.200000pt;}
.x83{left:424.640000pt;}
.x46{left:427.040000pt;}
.x4a{left:430.960000pt;}
.x49{left:434.960000pt;}
.x93{left:436.560096pt;}
.x48{left:439.440000pt;}
.x52{left:444.000000pt;}
.x12{left:445.999968pt;}
.x3c{left:449.440000pt;}
.x53{left:452.400000pt;}
.x45{left:454.320000pt;}
.x54{left:455.760000pt;}
.x7c{left:459.680000pt;}
.x55{left:463.120000pt;}
.x5a{left:467.280000pt;}
.x44{left:472.400000pt;}
.x3b{left:474.400000pt;}
.x5b{left:475.680000pt;}
.x3e{left:479.360000pt;}
.x50{left:484.240000pt;}
.x3f{left:486.160000pt;}
.x5c{left:492.000000pt;}
.x37{left:493.600000pt;}
.x56{left:494.640000pt;}
.x57{left:500.160000pt;}
.x4f{left:501.760000pt;}
.x7a{left:508.080000pt;}
.x96{left:510.480000pt;}
.x3a{left:512.320000pt;}
.x91{left:513.680000pt;}
.x4e{left:517.040000pt;}
.x4d{left:519.280000pt;}
.x7d{left:520.240000pt;}
.x38{left:535.840000pt;}
.x4b{left:544.800000pt;}
.x39{left:548.480000pt;}
.x7e{left:552.160433pt;}
.x40{left:555.440000pt;}
.x3d{left:559.120000pt;}
.x41{left:561.360000pt;}
.x80{left:590.240000pt;}
.x7f{left:599.760000pt;}
.x81{left:605.360000pt;}
.x58{left:610.000000pt;}
.x59{left:615.520000pt;}
.x42{left:631.760000pt;}
.x43{left:636.240000pt;}
.x78{left:691.200000pt;}
.x84{left:694.960000pt;}
.x79{left:696.720000pt;}
.x92{left:698.079867pt;}
.x85{left:700.480000pt;}
.x51{left:716.960000pt;}
.x82{left:734.239867pt;}
}




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