
    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_ebfc2d6f89a7fbda472d252f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.115723;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_b4ae583e511f9db8114429fc.woff')format("woff");}.ff2{font-family:ff2;line-height:1.025879;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_364df249f2d27b36121228fd.woff')format("woff");}.ff3{font-family:ff3;line-height:1.292969;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_f8ab807252253973d5d60b0c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.907715;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_b64beb814f9beeede79b4f45.woff')format("woff");}.ff5{font-family:ff5;line-height:1.115723;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_de40b8f3412fa7e253dad611.woff')format("woff");}.ff6{font-family:ff6;line-height:1.025879;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_76d3edacc09d7b0279789ded.woff')format("woff");}.ff7{font-family:ff7;line-height:0.905273;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_4486bed2e1db1cf221c2c338.woff')format("woff");}.ff8{font-family:ff8;line-height:1.082031;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_d626e97357883f48aa712ea3.woff')format("woff");}.ff9{font-family:ff9;line-height:1.115723;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_4a32e7146df5a134ea5015da.woff')format("woff");}.ffa{font-family:ffa;line-height:1.025879;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_7805b63d1435d15bd1098a63.woff')format("woff");}.ffb{font-family:ffb;line-height:1.055664;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_436647182932aef9894862a6.woff')format("woff");}.ffc{font-family:ffc;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_54037a431b39aa7f4d4fc61e.woff')format("woff");}.ffd{font-family:ffd;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c22881b9d26238f244deb426.woff')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_fe58ccf33d46aca3e1332887.woff')format("woff");}.fff{font-family:fff;line-height:0.922852;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;}
.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);}
.v6{vertical-align:-45.480000px;}
.v2{vertical-align:-16.976400px;}
.v3{vertical-align:-11.982000px;}
.v4{vertical-align:-5.958000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:11.988000px;}
.v1{vertical-align:17.001600px;}
.ls22{letter-spacing:-7.371000px;}
.ls78{letter-spacing:-7.107000px;}
.ls77{letter-spacing:-6.555000px;}
.ls123{letter-spacing:-6.003000px;}
.ls145{letter-spacing:-5.985000px;}
.lse6{letter-spacing:-5.727000px;}
.ls2a{letter-spacing:-5.175000px;}
.lsd9{letter-spacing:-4.968000px;}
.ls79{letter-spacing:-4.830000px;}
.ls110{letter-spacing:-4.416000px;}
.ls7a{letter-spacing:-4.347000px;}
.lse3{letter-spacing:-4.278000px;}
.ls101{letter-spacing:-4.248000px;}
.lsa8{letter-spacing:-4.200000px;}
.ls28{letter-spacing:-3.933000px;}
.ls72{letter-spacing:-3.900000px;}
.ls11a{letter-spacing:-3.726000px;}
.ls5d{letter-spacing:-3.519000px;}
.ls34{letter-spacing:-3.402000px;}
.ls131{letter-spacing:-3.339000px;}
.ls124{letter-spacing:-3.312000px;}
.lse{letter-spacing:-3.300000px;}
.ls3f{letter-spacing:-3.240000px;}
.lsa1{letter-spacing:-3.174000px;}
.lse7{letter-spacing:-3.105000px;}
.lsae{letter-spacing:-3.078000px;}
.lsd7{letter-spacing:-3.036000px;}
.lsb6{letter-spacing:-2.970000px;}
.lsbf{letter-spacing:-2.967000px;}
.ls7c{letter-spacing:-2.898000px;}
.ls3d{letter-spacing:-2.862000px;}
.ls136{letter-spacing:-2.772000px;}
.ls76{letter-spacing:-2.760000px;}
.lseb{letter-spacing:-2.700000px;}
.lsaa{letter-spacing:-2.691000px;}
.lsa2{letter-spacing:-2.553000px;}
.ls134{letter-spacing:-2.520000px;}
.ls49{letter-spacing:-2.484000px;}
.ls1e{letter-spacing:-2.475000px;}
.ls69{letter-spacing:-2.346000px;}
.ls75{letter-spacing:-2.277000px;}
.lsb3{letter-spacing:-2.268000px;}
.lsd8{letter-spacing:-2.208000px;}
.ls6c{letter-spacing:-2.139000px;}
.ls4a{letter-spacing:-2.070000px;}
.ls88{letter-spacing:-2.001000px;}
.lsb1{letter-spacing:-1.998000px;}
.ls138{letter-spacing:-1.953000px;}
.ls2d{letter-spacing:-1.932000px;}
.ls3e{letter-spacing:-1.890000px;}
.ls46{letter-spacing:-1.863000px;}
.ls14d{letter-spacing:-1.800000px;}
.ls59{letter-spacing:-1.794000px;}
.ls9a{letter-spacing:-1.782000px;}
.ls14b{letter-spacing:-1.740000px;}
.ls6a{letter-spacing:-1.725000px;}
.ls130{letter-spacing:-1.701000px;}
.ls48{letter-spacing:-1.656000px;}
.ls11{letter-spacing:-1.620000px;}
.ls5c{letter-spacing:-1.587000px;}
.ls13a{letter-spacing:-1.575000px;}
.lsc5{letter-spacing:-1.560000px;}
.ls58{letter-spacing:-1.518000px;}
.ls52{letter-spacing:-1.512000px;}
.ls30{letter-spacing:-1.449000px;}
.ls135{letter-spacing:-1.386000px;}
.ls45{letter-spacing:-1.380000px;}
.ls29{letter-spacing:-1.311000px;}
.ls143{letter-spacing:-1.260000px;}
.ls4e{letter-spacing:-1.242000px;}
.ls154{letter-spacing:-1.200000px;}
.lsf5{letter-spacing:-1.188000px;}
.ls68{letter-spacing:-1.173000px;}
.ls151{letter-spacing:-1.140000px;}
.ls4c{letter-spacing:-1.104000px;}
.ls149{letter-spacing:-1.092000px;}
.ls85{letter-spacing:-1.086129px;}
.lsb0{letter-spacing:-1.080000px;}
.ls5b{letter-spacing:-1.035000px;}
.ls3c{letter-spacing:-1.026000px;}
.ls100{letter-spacing:-1.008000px;}
.ls11c{letter-spacing:-1.005675px;}
.ls7f{letter-spacing:-0.972000px;}
.ls2b{letter-spacing:-0.966000px;}
.ls14c{letter-spacing:-0.960000px;}
.ls137{letter-spacing:-0.945000px;}
.ls6d{letter-spacing:-0.925221px;}
.ls23{letter-spacing:-0.897000px;}
.ls70{letter-spacing:-0.864000px;}
.ls21{letter-spacing:-0.855000px;}
.lsc2{letter-spacing:-0.840000px;}
.ls25{letter-spacing:-0.828000px;}
.lsef{letter-spacing:-0.825000px;}
.ls146{letter-spacing:-0.819000px;}
.lsad{letter-spacing:-0.810000px;}
.lsb{letter-spacing:-0.780000px;}
.ls27{letter-spacing:-0.759000px;}
.ls8a{letter-spacing:-0.724086px;}
.ls12{letter-spacing:-0.720000px;}
.ls26{letter-spacing:-0.690000px;}
.ls89{letter-spacing:-0.683859px;}
.ls11e{letter-spacing:-0.661122px;}
.ls5{letter-spacing:-0.648000px;}
.lsac{letter-spacing:-0.643632px;}
.ls141{letter-spacing:-0.630000px;}
.lsa9{letter-spacing:-0.627000px;}
.ls31{letter-spacing:-0.621000px;}
.ls87{letter-spacing:-0.603405px;}
.ls10{letter-spacing:-0.600000px;}
.ls6f{letter-spacing:-0.598158px;}
.ls3b{letter-spacing:-0.594000px;}
.ls126{letter-spacing:-0.570000px;}
.ls12e{letter-spacing:-0.567000px;}
.ls2c{letter-spacing:-0.552000px;}
.lsa{letter-spacing:-0.540000px;}
.ls12a{letter-spacing:-0.504000px;}
.ls39{letter-spacing:-0.486000px;}
.ls66{letter-spacing:-0.483000px;}
.ls7{letter-spacing:-0.480000px;}
.ls93{letter-spacing:-0.442497px;}
.ls139{letter-spacing:-0.441000px;}
.ls40{letter-spacing:-0.432000px;}
.ls14e{letter-spacing:-0.420000px;}
.lsa3{letter-spacing:-0.414000px;}
.ls8d{letter-spacing:-0.409266px;}
.lsaf{letter-spacing:-0.378000px;}
.lsc4{letter-spacing:-0.360000px;}
.ls8c{letter-spacing:-0.346302px;}
.ls2f{letter-spacing:-0.345000px;}
.lsb5{letter-spacing:-0.324000px;}
.lsc1{letter-spacing:-0.300000px;}
.ls96{letter-spacing:-0.276000px;}
.ls3a{letter-spacing:-0.270000px;}
.ls2{letter-spacing:-0.252000px;}
.ls65{letter-spacing:-0.243000px;}
.ls6b{letter-spacing:-0.241362px;}
.lsc0{letter-spacing:-0.240000px;}
.ls98{letter-spacing:-0.220374px;}
.ls35{letter-spacing:-0.216000px;}
.ls24{letter-spacing:-0.207000px;}
.ls74{letter-spacing:-0.201135px;}
.ls14f{letter-spacing:-0.180000px;}
.lsc8{letter-spacing:-0.171000px;}
.ls60{letter-spacing:-0.162000px;}
.ls4d{letter-spacing:-0.138000px;}
.lsc3{letter-spacing:-0.120000px;}
.ls33{letter-spacing:-0.108000px;}
.ls5f{letter-spacing:-0.069000px;}
.ls12d{letter-spacing:-0.063000px;}
.ls6e{letter-spacing:-0.062964px;}
.ls4f{letter-spacing:-0.054000px;}
.ls86{letter-spacing:-0.040227px;}
.ls1{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000300px;}
.ls8f{letter-spacing:0.001200px;}
.ls94{letter-spacing:0.040227px;}
.ls9c{letter-spacing:0.054000px;}
.lsd0{letter-spacing:0.069000px;}
.ls8b{letter-spacing:0.094446px;}
.ls53{letter-spacing:0.108000px;}
.ls99{letter-spacing:0.125928px;}
.ls5e{letter-spacing:0.138000px;}
.ls7e{letter-spacing:0.162000px;}
.ls57{letter-spacing:0.207000px;}
.ls1c{letter-spacing:0.216000px;}
.ls153{letter-spacing:0.240000px;}
.ls50{letter-spacing:0.270000px;}
.lse2{letter-spacing:0.276000px;}
.lsda{letter-spacing:0.281589px;}
.ls51{letter-spacing:0.314820px;}
.ls144{letter-spacing:0.315000px;}
.lsf0{letter-spacing:0.321816px;}
.ls37{letter-spacing:0.324000px;}
.lsf3{letter-spacing:0.345000px;}
.lsf4{letter-spacing:0.377784px;}
.ls10a{letter-spacing:0.378000px;}
.lsf6{letter-spacing:0.432000px;}
.lsfb{letter-spacing:0.483000px;}
.ls36{letter-spacing:0.540000px;}
.ls119{letter-spacing:0.545400px;}
.lsdb{letter-spacing:0.552000px;}
.ls73{letter-spacing:0.563178px;}
.ls7d{letter-spacing:0.566676px;}
.lsb4{letter-spacing:0.594000px;}
.ls10b{letter-spacing:0.598158px;}
.lse5{letter-spacing:0.603405px;}
.lse8{letter-spacing:0.621000px;}
.ls108{letter-spacing:0.643632px;}
.lsca{letter-spacing:0.690000px;}
.lsd2{letter-spacing:0.755568px;}
.ls132{letter-spacing:0.756000px;}
.lsc9{letter-spacing:0.759000px;}
.ls16{letter-spacing:0.828000px;}
.ls152{letter-spacing:0.840000px;}
.lsd1{letter-spacing:0.844767px;}
.ls90{letter-spacing:0.850200px;}
.ls83{letter-spacing:0.865800px;}
.lsdc{letter-spacing:0.881496px;}
.ls84{letter-spacing:0.897000px;}
.ls82{letter-spacing:0.904200px;}
.lse0{letter-spacing:0.907200px;}
.lse1{letter-spacing:0.918000px;}
.ls140{letter-spacing:0.945000px;}
.lse9{letter-spacing:0.965448px;}
.ls14{letter-spacing:0.966000px;}
.ls38{letter-spacing:0.972000px;}
.ls10d{letter-spacing:1.035000px;}
.ls109{letter-spacing:1.038906px;}
.ls2e{letter-spacing:1.104000px;}
.ls9b{letter-spacing:1.133352px;}
.ls8{letter-spacing:1.140000px;}
.ls4b{letter-spacing:1.173000px;}
.ls133{letter-spacing:1.197000px;}
.ls107{letter-spacing:1.206810px;}
.lsf2{letter-spacing:1.242000px;}
.ls4{letter-spacing:1.260000px;}
.ls95{letter-spacing:1.287264px;}
.ls11d{letter-spacing:1.290762px;}
.ls15{letter-spacing:1.311000px;}
.ls1f{letter-spacing:1.344000px;}
.lsd3{letter-spacing:1.350000px;}
.lsf1{letter-spacing:1.380000px;}
.lsb2{letter-spacing:1.404000px;}
.lsf{letter-spacing:1.440000px;}
.ls81{letter-spacing:1.449000px;}
.ls127{letter-spacing:1.458000px;}
.ls11b{letter-spacing:1.488399px;}
.ls10f{letter-spacing:1.518000px;}
.ls9{letter-spacing:1.560000px;}
.ls32{letter-spacing:1.587000px;}
.ls1a{letter-spacing:1.635300px;}
.ls125{letter-spacing:1.656000px;}
.lsea{letter-spacing:1.782000px;}
.ls5a{letter-spacing:1.794000px;}
.lsa7{letter-spacing:1.836000px;}
.ls150{letter-spacing:1.860000px;}
.lsfa{letter-spacing:1.863000px;}
.lsdd{letter-spacing:1.932000px;}
.ls56{letter-spacing:2.007900px;}
.ls43{letter-spacing:2.049300px;}
.ls9f{letter-spacing:2.070000px;}
.lsee{letter-spacing:2.277000px;}
.ls18{letter-spacing:2.360100px;}
.ls1d{letter-spacing:2.400000px;}
.ls116{letter-spacing:2.415000px;}
.ls148{letter-spacing:2.460000px;}
.ls19{letter-spacing:2.493600px;}
.ls91{letter-spacing:2.496000px;}
.lscb{letter-spacing:2.553000px;}
.ls1b{letter-spacing:2.592000px;}
.lscf{letter-spacing:2.622000px;}
.lsce{letter-spacing:2.829000px;}
.ls63{letter-spacing:2.898000px;}
.ls104{letter-spacing:2.967000px;}
.ls62{letter-spacing:3.105000px;}
.ls113{letter-spacing:3.139500px;}
.ls103{letter-spacing:3.270600px;}
.ls7b{letter-spacing:3.312000px;}
.ls42{letter-spacing:3.519000px;}
.ls92{letter-spacing:3.588000px;}
.ls20{letter-spacing:3.696000px;}
.lsf8{letter-spacing:3.795000px;}
.ls114{letter-spacing:3.933000px;}
.ls120{letter-spacing:4.071000px;}
.ls9e{letter-spacing:4.140000px;}
.lsc{letter-spacing:4.200000px;}
.ls112{letter-spacing:4.347000px;}
.ls13b{letter-spacing:4.473000px;}
.lsb7{letter-spacing:4.554000px;}
.ls106{letter-spacing:4.579200px;}
.ls105{letter-spacing:4.590000px;}
.lsfe{letter-spacing:4.629900px;}
.lsdf{letter-spacing:4.644000px;}
.lsab{letter-spacing:4.692000px;}
.ls67{letter-spacing:4.761000px;}
.lsf7{letter-spacing:4.795500px;}
.ls121{letter-spacing:5.244000px;}
.lse4{letter-spacing:5.382000px;}
.ls97{letter-spacing:5.451000px;}
.lsc7{letter-spacing:5.658000px;}
.ls6{letter-spacing:5.760000px;}
.ls55{letter-spacing:5.865000px;}
.lsd{letter-spacing:5.880000px;}
.ls142{letter-spacing:5.985000px;}
.ls3{letter-spacing:6.000000px;}
.lsde{letter-spacing:6.003000px;}
.ls13f{letter-spacing:6.111000px;}
.ls115{letter-spacing:6.279000px;}
.ls12c{letter-spacing:6.300000px;}
.ls122{letter-spacing:6.313500px;}
.ls128{letter-spacing:6.348000px;}
.ls44{letter-spacing:6.480000px;}
.ls13c{letter-spacing:6.489000px;}
.ls10e{letter-spacing:6.624000px;}
.lsa0{letter-spacing:6.969000px;}
.lscd{letter-spacing:7.107000px;}
.ls13e{letter-spacing:7.497000px;}
.ls47{letter-spacing:7.521000px;}
.lsd5{letter-spacing:7.659000px;}
.lsed{letter-spacing:7.900500px;}
.ls117{letter-spacing:8.142000px;}
.ls64{letter-spacing:8.160156px;}
.lsa5{letter-spacing:8.160756px;}
.lscc{letter-spacing:8.162700px;}
.ls118{letter-spacing:8.191638px;}
.ls129{letter-spacing:8.316000px;}
.ls13d{letter-spacing:8.631000px;}
.ls14a{letter-spacing:8.640000px;}
.ls12b{letter-spacing:8.820000px;}
.lsd6{letter-spacing:9.660000px;}
.lsf9{letter-spacing:9.798000px;}
.lsff{letter-spacing:10.143000px;}
.ls102{letter-spacing:10.281000px;}
.lsa6{letter-spacing:59.185158px;}
.lsfd{letter-spacing:89.176800px;}
.lsbe{letter-spacing:369.540000px;}
.lsbd{letter-spacing:370.260000px;}
.lsb8{letter-spacing:401.040000px;}
.lsbb{letter-spacing:415.320000px;}
.lsb9{letter-spacing:415.980000px;}
.lsba{letter-spacing:463.440000px;}
.lsec{letter-spacing:474.016800px;}
.ls11f{letter-spacing:474.219000px;}
.ls13{letter-spacing:474.639000px;}
.ls10c{letter-spacing:474.654000px;}
.ls111{letter-spacing:474.684000px;}
.ls54{letter-spacing:474.826800px;}
.lsfc{letter-spacing:474.954000px;}
.ls12f{letter-spacing:475.224000px;}
.ls147{letter-spacing:477.916800px;}
.ls8e{letter-spacing:478.599000px;}
.ls71{letter-spacing:480.226800px;}
.lsd4{letter-spacing:480.639000px;}
.lsc6{letter-spacing:481.006800px;}
.lsa4{letter-spacing:481.966800px;}
.lsbc{letter-spacing:515.400000px;}
.ls61{letter-spacing:952.522800px;}
.ls9d{letter-spacing:953.017800px;}
.ls0{letter-spacing:955.642800px;}
.ls41{letter-spacing:959.692800px;}
.ls80{letter-spacing:961.672800px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws113{word-spacing:-72.000000px;}
.ws112{word-spacing:-50.400000px;}
.ws139{word-spacing:-26.523000px;}
.ws138{word-spacing:-26.019000px;}
.ws15d{word-spacing:-25.500000px;}
.ws134{word-spacing:-24.219000px;}
.ws3{word-spacing:-22.740000px;}
.ws0{word-spacing:-22.620000px;}
.wsf9{word-spacing:-20.976000px;}
.ws5f{word-spacing:-20.700000px;}
.wsa1{word-spacing:-20.493000px;}
.ws110{word-spacing:-20.355000px;}
.ws102{word-spacing:-20.250000px;}
.ws105{word-spacing:-20.010000px;}
.ws10d{word-spacing:-19.872000px;}
.ws104{word-spacing:-19.734000px;}
.ws12a{word-spacing:-19.665000px;}
.ws64{word-spacing:-19.527000px;}
.wse1{word-spacing:-19.458000px;}
.ws16{word-spacing:-19.389000px;}
.wsaf{word-spacing:-19.320000px;}
.ws49{word-spacing:-19.251000px;}
.wsea{word-spacing:-19.182000px;}
.wsb1{word-spacing:-19.113000px;}
.wsb0{word-spacing:-19.044000px;}
.wsb3{word-spacing:-18.975000px;}
.wsa2{word-spacing:-18.906000px;}
.wsad{word-spacing:-18.837000px;}
.ws4a{word-spacing:-18.768000px;}
.wseb{word-spacing:-18.699000px;}
.wsae{word-spacing:-18.630000px;}
.ws13{word-spacing:-18.600000px;}
.wsed{word-spacing:-18.561000px;}
.ws4c{word-spacing:-18.492000px;}
.wsac{word-spacing:-18.423000px;}
.ws11b{word-spacing:-18.354000px;}
.wse0{word-spacing:-18.285000px;}
.ws4b{word-spacing:-18.147000px;}
.wse2{word-spacing:-17.871000px;}
.ws106{word-spacing:-17.802000px;}
.ws48{word-spacing:-17.526000px;}
.ws150{word-spacing:-17.451000px;}
.wsb2{word-spacing:-17.388000px;}
.ws153{word-spacing:-17.262000px;}
.ws80{word-spacing:-17.175000px;}
.ws17{word-spacing:-17.043000px;}
.wsfa{word-spacing:-16.956000px;}
.wsb6{word-spacing:-16.875000px;}
.wsdb{word-spacing:-16.767000px;}
.ws115{word-spacing:-16.704000px;}
.ws137{word-spacing:-16.698000px;}
.wse3{word-spacing:-16.629000px;}
.ws9e{word-spacing:-16.560000px;}
.wsfb{word-spacing:-16.524000px;}
.ws1c{word-spacing:-16.491000px;}
.ws60{word-spacing:-16.422000px;}
.ws1a{word-spacing:-16.353000px;}
.ws19{word-spacing:-16.284000px;}
.ws18{word-spacing:-16.215000px;}
.ws1e{word-spacing:-16.146000px;}
.ws143{word-spacing:-16.128000px;}
.ws71{word-spacing:-16.077000px;}
.ws8e{word-spacing:-16.008000px;}
.wse4{word-spacing:-15.939000px;}
.ws63{word-spacing:-15.870000px;}
.ws11f{word-spacing:-15.768000px;}
.ws1b{word-spacing:-15.732000px;}
.ws46{word-spacing:-15.663000px;}
.ws107{word-spacing:-15.606000px;}
.ws20{word-spacing:-15.594000px;}
.ws121{word-spacing:-15.552000px;}
.ws91{word-spacing:-15.525000px;}
.ws120{word-spacing:-15.498000px;}
.wsd4{word-spacing:-15.480000px;}
.ws61{word-spacing:-15.456000px;}
.ws15{word-spacing:-15.390000px;}
.ws92{word-spacing:-15.387000px;}
.wsd2{word-spacing:-15.360000px;}
.ws122{word-spacing:-15.336000px;}
.ws72{word-spacing:-15.318000px;}
.ws11e{word-spacing:-15.282000px;}
.ws5e{word-spacing:-15.249000px;}
.ws47{word-spacing:-15.180000px;}
.ws25{word-spacing:-15.174000px;}
.ws1d{word-spacing:-15.111000px;}
.ws144{word-spacing:-15.057000px;}
.ws95{word-spacing:-15.042000px;}
.ws145{word-spacing:-14.994000px;}
.wsf8{word-spacing:-14.973000px;}
.ws142{word-spacing:-14.931000px;}
.ws90{word-spacing:-14.904000px;}
.ws11d{word-spacing:-14.850000px;}
.ws15e{word-spacing:-14.820000px;}
.ws151{word-spacing:-14.742000px;}
.ws15f{word-spacing:-14.700000px;}
.ws70{word-spacing:-14.697000px;}
.wsd3{word-spacing:-14.640000px;}
.ws152{word-spacing:-14.616000px;}
.ws163{word-spacing:-14.580000px;}
.ws62{word-spacing:-14.559000px;}
.wsd0{word-spacing:-14.460000px;}
.ws111{word-spacing:-14.421000px;}
.wsce{word-spacing:-14.340000px;}
.ws1{word-spacing:-14.280000px;}
.ws141{word-spacing:-14.175000px;}
.wsbb{word-spacing:-14.148000px;}
.ws5{word-spacing:-14.100000px;}
.ws2{word-spacing:-14.040000px;}
.ws162{word-spacing:-13.980000px;}
.ws24{word-spacing:-13.878000px;}
.ws140{word-spacing:-13.860000px;}
.ws160{word-spacing:-13.740000px;}
.ws4f{word-spacing:-13.662000px;}
.ws16b{word-spacing:-13.620000px;}
.ws26{word-spacing:-13.554000px;}
.wsb9{word-spacing:-13.500000px;}
.wsa3{word-spacing:-13.392000px;}
.ws97{word-spacing:-13.338000px;}
.wsba{word-spacing:-13.284000px;}
.ws21{word-spacing:-13.230000px;}
.ws4{word-spacing:-13.200000px;}
.ws65{word-spacing:-13.176000px;}
.ws14{word-spacing:-13.146000px;}
.ws23{word-spacing:-13.122000px;}
.ws28{word-spacing:-13.068000px;}
.ws161{word-spacing:-13.020000px;}
.wsbc{word-spacing:-13.014000px;}
.wsb8{word-spacing:-12.960000px;}
.ws2d{word-spacing:-12.906000px;}
.ws27{word-spacing:-12.852000px;}
.ws4d{word-spacing:-12.798000px;}
.ws12c{word-spacing:-12.792186px;}
.ws29{word-spacing:-12.744000px;}
.ws2a{word-spacing:-12.690000px;}
.wsa0{word-spacing:-12.591051px;}
.ws11c{word-spacing:-12.510597px;}
.ws75{word-spacing:-12.474000px;}
.ws84{word-spacing:-12.366000px;}
.ws2b{word-spacing:-12.312000px;}
.wsf7{word-spacing:-12.269235px;}
.wse5{word-spacing:-12.148554px;}
.wsf6{word-spacing:-11.907192px;}
.ws81{word-spacing:-11.866965px;}
.ws22{word-spacing:-11.772000px;}
.ws103{word-spacing:-11.625603px;}
.wsec{word-spacing:-11.585376px;}
.ws2c{word-spacing:-11.448000px;}
.ws9f{word-spacing:-11.344014px;}
.ws1f{word-spacing:-11.303787px;}
.ws93{word-spacing:-11.263560px;}
.ws82{word-spacing:-11.102652px;}
.ws73{word-spacing:-11.062425px;}
.ws94{word-spacing:-10.700382px;}
.wsb7{word-spacing:-10.660155px;}
.ws96{word-spacing:-10.619928px;}
.ws83{word-spacing:-10.488000px;}
.ws74{word-spacing:-10.378566px;}
.ws119{word-spacing:-10.281000px;}
.ws8f{word-spacing:-10.217658px;}
.ws11a{word-spacing:-10.143000px;}
.ws4e{word-spacing:-9.161262px;}
.ws12b{word-spacing:-8.142000px;}
.ws50{word-spacing:-7.521000px;}
.ws154{word-spacing:-7.497000px;}
.ws14f{word-spacing:-6.489000px;}
.ws13a{word-spacing:-6.348000px;}
.ws13d{word-spacing:-6.300000px;}
.ws155{word-spacing:-6.111000px;}
.ws8{word-spacing:-6.000000px;}
.ws158{word-spacing:-5.985000px;}
.ws16e{word-spacing:-5.880000px;}
.ws68{word-spacing:-5.865000px;}
.wsa6{word-spacing:-5.451000px;}
.wsfe{word-spacing:-5.382000px;}
.ws79{word-spacing:-4.761000px;}
.wsc0{word-spacing:-4.692000px;}
.ws14e{word-spacing:-4.473000px;}
.wse{word-spacing:-4.200000px;}
.ws108{word-spacing:-4.140000px;}
.ws2f{word-spacing:-3.696000px;}
.ws8a{word-spacing:-3.312000px;}
.ws45{word-spacing:-3.240000px;}
.ws2e{word-spacing:-2.400000px;}
.ws12f{word-spacing:-2.208000px;}
.ws169{word-spacing:-1.860000px;}
.ws6a{word-spacing:-1.794000px;}
.ws12e{word-spacing:-1.656000px;}
.ws3b{word-spacing:-1.587000px;}
.wsd{word-spacing:-1.560000px;}
.ws14a{word-spacing:-1.449000px;}
.ws10{word-spacing:-1.440000px;}
.wsc7{word-spacing:-1.404000px;}
.ws109{word-spacing:-1.380000px;}
.wse9{word-spacing:-1.350000px;}
.ws69{word-spacing:-1.311000px;}
.ws131{word-spacing:-1.290762px;}
.ws9{word-spacing:-1.260000px;}
.ws10a{word-spacing:-1.242000px;}
.ws148{word-spacing:-1.197000px;}
.ws56{word-spacing:-1.173000px;}
.wsc{word-spacing:-1.140000px;}
.wsaa{word-spacing:-1.133352px;}
.ws38{word-spacing:-1.104000px;}
.ws124{word-spacing:-1.038906px;}
.ws3e{word-spacing:-0.972000px;}
.ws57{word-spacing:-0.966000px;}
.ws156{word-spacing:-0.945000px;}
.ws13b{word-spacing:-0.882000px;}
.wsf5{word-spacing:-0.881496px;}
.ws16c{word-spacing:-0.840000px;}
.wsde{word-spacing:-0.759000px;}
.ws147{word-spacing:-0.756000px;}
.wse7{word-spacing:-0.755568px;}
.ws123{word-spacing:-0.643632px;}
.ws101{word-spacing:-0.621000px;}
.ws125{word-spacing:-0.598158px;}
.wsc9{word-spacing:-0.594000px;}
.ws8c{word-spacing:-0.566676px;}
.wsf2{word-spacing:-0.552000px;}
.ws10b{word-spacing:-0.377784px;}
.ws3d{word-spacing:-0.324000px;}
.ws15a{word-spacing:-0.315000px;}
.wsf4{word-spacing:-0.314820px;}
.wsfc{word-spacing:-0.276000px;}
.ws5c{word-spacing:-0.270000px;}
.ws16d{word-spacing:-0.240000px;}
.ws8d{word-spacing:-0.162000px;}
.wsdd{word-spacing:-0.138000px;}
.wsa9{word-spacing:-0.125928px;}
.ws5d{word-spacing:-0.108000px;}
.ws9b{word-spacing:-0.094446px;}
.ws114{word-spacing:-0.072000px;}
.ws116{word-spacing:-0.069000px;}
.wsab{word-spacing:-0.054000px;}
.ws6{word-spacing:0.000000px;}
.ws5b{word-spacing:0.054000px;}
.ws7e{word-spacing:0.062964px;}
.ws13e{word-spacing:0.063000px;}
.ws6c{word-spacing:0.069000px;}
.ws3f{word-spacing:0.108000px;}
.wsd9{word-spacing:0.120000px;}
.ws7c{word-spacing:0.138000px;}
.ws6e{word-spacing:0.162000px;}
.wsdc{word-spacing:0.171000px;}
.ws168{word-spacing:0.180000px;}
.ws32{word-spacing:0.207000px;}
.wsc6{word-spacing:0.216000px;}
.wsa8{word-spacing:0.220374px;}
.wsd7{word-spacing:0.240000px;}
.ws76{word-spacing:0.243000px;}
.ws7{word-spacing:0.252000px;}
.ws6f{word-spacing:0.270000px;}
.wsa5{word-spacing:0.276000px;}
.wsd8{word-spacing:0.300000px;}
.wsca{word-spacing:0.324000px;}
.ws39{word-spacing:0.345000px;}
.ws9c{word-spacing:0.346302px;}
.wsda{word-spacing:0.360000px;}
.wscb{word-spacing:0.378000px;}
.ws9d{word-spacing:0.409266px;}
.wsdf{word-spacing:0.414000px;}
.ws167{word-spacing:0.420000px;}
.ws14d{word-spacing:0.441000px;}
.wsa4{word-spacing:0.442497px;}
.wsb{word-spacing:0.480000px;}
.ws77{word-spacing:0.483000px;}
.ws40{word-spacing:0.486000px;}
.ws13c{word-spacing:0.504000px;}
.ws12{word-spacing:0.540000px;}
.ws6d{word-spacing:0.552000px;}
.ws13f{word-spacing:0.567000px;}
.ws136{word-spacing:0.570000px;}
.ws43{word-spacing:0.594000px;}
.ws7f{word-spacing:0.598158px;}
.ws11{word-spacing:0.600000px;}
.ws3a{word-spacing:0.621000px;}
.wsbd{word-spacing:0.627000px;}
.ws157{word-spacing:0.630000px;}
.wsa{word-spacing:0.648000px;}
.ws132{word-spacing:0.661122px;}
.ws33{word-spacing:0.690000px;}
.ws9a{word-spacing:0.724086px;}
.wsa7{word-spacing:0.759000px;}
.wsc1{word-spacing:0.810000px;}
.ws52{word-spacing:0.828000px;}
.ws165{word-spacing:0.840000px;}
.ws30{word-spacing:0.855000px;}
.wsc4{word-spacing:0.864000px;}
.ws31{word-spacing:0.897000px;}
.ws14b{word-spacing:0.945000px;}
.ws37{word-spacing:0.966000px;}
.ws130{word-spacing:1.005675px;}
.ws117{word-spacing:1.008000px;}
.ws41{word-spacing:1.026000px;}
.ws6b{word-spacing:1.035000px;}
.ws126{word-spacing:1.080000px;}
.ws164{word-spacing:1.092000px;}
.ws58{word-spacing:1.104000px;}
.ws133{word-spacing:1.134000px;}
.ws16a{word-spacing:1.140000px;}
.ws99{word-spacing:1.173000px;}
.ws10c{word-spacing:1.188000px;}
.wsc2{word-spacing:1.242000px;}
.ws159{word-spacing:1.260000px;}
.ws35{word-spacing:1.311000px;}
.ws53{word-spacing:1.380000px;}
.ws59{word-spacing:1.449000px;}
.ws66{word-spacing:1.518000px;}
.ws15c{word-spacing:1.575000px;}
.ws78{word-spacing:1.587000px;}
.ws51{word-spacing:1.656000px;}
.ws166{word-spacing:1.740000px;}
.ws7a{word-spacing:1.794000px;}
.ws127{word-spacing:1.890000px;}
.ws98{word-spacing:1.932000px;}
.ws14c{word-spacing:1.953000px;}
.wsc5{word-spacing:1.998000px;}
.ws55{word-spacing:2.070000px;}
.ws7d{word-spacing:2.139000px;}
.wsef{word-spacing:2.208000px;}
.wsc8{word-spacing:2.268000px;}
.ws85{word-spacing:2.277000px;}
.wsbe{word-spacing:2.346000px;}
.ws54{word-spacing:2.484000px;}
.ws149{word-spacing:2.520000px;}
.wsb5{word-spacing:2.553000px;}
.wsbf{word-spacing:2.691000px;}
.ws86{word-spacing:2.760000px;}
.ws42{word-spacing:2.862000px;}
.ws8b{word-spacing:2.898000px;}
.ws128{word-spacing:2.967000px;}
.wscc{word-spacing:2.970000px;}
.wsee{word-spacing:3.036000px;}
.wsc3{word-spacing:3.078000px;}
.ws100{word-spacing:3.105000px;}
.wsb4{word-spacing:3.174000px;}
.ws44{word-spacing:3.240000px;}
.wsf{word-spacing:3.300000px;}
.ws146{word-spacing:3.339000px;}
.ws12d{word-spacing:3.726000px;}
.ws34{word-spacing:3.933000px;}
.ws7b{word-spacing:4.071000px;}
.ws118{word-spacing:4.248000px;}
.wsfd{word-spacing:4.278000px;}
.ws89{word-spacing:4.347000px;}
.ws129{word-spacing:4.416000px;}
.ws88{word-spacing:4.830000px;}
.wsf1{word-spacing:4.968000px;}
.ws36{word-spacing:5.175000px;}
.wsff{word-spacing:5.727000px;}
.ws15b{word-spacing:5.985000px;}
.wse8{word-spacing:5.994000px;}
.ws135{word-spacing:6.003000px;}
.ws10f{word-spacing:6.417000px;}
.wsf3{word-spacing:6.555000px;}
.ws87{word-spacing:7.107000px;}
.ws67{word-spacing:8.280000px;}
.wse6{word-spacing:8.556000px;}
.ws10e{word-spacing:8.625000px;}
.wsf0{word-spacing:11.040000px;}
.ws5a{word-spacing:43.445160px;}
.ws3c{word-spacing:59.186160px;}
.wsd5{word-spacing:204.018000px;}
.wscd{word-spacing:249.798000px;}
.wscf{word-spacing:464.484000px;}
.wsd1{word-spacing:502.524000px;}
.wsd6{word-spacing:616.884000px;}
._44{margin-left:-16.236900px;}
._45{margin-left:-15.227400px;}
._42{margin-left:-13.407900px;}
._1c{margin-left:-11.891700px;}
._43{margin-left:-10.548600px;}
._13{margin-left:-9.092700px;}
._12{margin-left:-7.398300px;}
._9{margin-left:-6.158400px;}
._3{margin-left:-4.668300px;}
._a{margin-left:-3.658800px;}
._2{margin-left:-1.839300px;}
._4{width:1.304400px;}
._1{width:2.400000px;}
._d{width:3.720300px;}
._7{width:4.972800px;}
._5{width:6.262800px;}
._6{width:7.840800px;}
._8{width:9.747600px;}
._10{width:10.809000px;}
._14{width:12.697200px;}
._1a{width:13.765200px;}
._16{width:14.880300px;}
._15{width:16.423800px;}
._18{width:18.214500px;}
._49{width:19.335000px;}
._17{width:20.873700px;}
._1b{width:23.388000px;}
._f{width:24.723600px;}
._c{width:26.368800px;}
._19{width:27.767124px;}
._46{width:30.631200px;}
._11{width:43.445160px;}
._48{width:47.821800px;}
._b{width:71.400000px;}
._47{width:113.184000px;}
._34{width:196.989300px;}
._3a{width:198.527400px;}
._37{width:200.188800px;}
._35{width:205.591800px;}
._3b{width:210.167400px;}
._38{width:216.211800px;}
._33{width:228.278400px;}
._2c{width:244.247400px;}
._29{width:245.908800px;}
._32{width:251.415000px;}
._e{width:253.008000px;}
._2d{width:255.887400px;}
._3c{width:259.915500px;}
._2a{width:261.931800px;}
._1f{width:265.365000px;}
._20{width:266.366400px;}
._24{width:269.152200px;}
._22{width:272.263200px;}
._25{width:277.077900px;}
._1d{width:279.456000px;}
._40{width:290.487600px;}
._3f{width:299.618100px;}
._26{width:305.685900px;}
._27{width:310.068600px;}
._2e{width:317.583900px;}
._1e{width:319.899300px;}
._23{width:321.798600px;}
._30{width:336.267600px;}
._2f{width:345.158100px;}
._2b{width:349.887600px;}
._21{width:360.378600px;}
._28{width:394.548300px;}
._39{width:464.247600px;}
._31{width:476.160000px;}
._36{width:508.908300px;}
._0{width:578.400000px;}
._3e{width:579.660000px;}
._41{width:589.560000px;}
._3d{width:629.214900px;}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:31.482000px;}
.fsb{font-size:40.227000px;}
.fs6{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fse{font-size:50.400000px;}
.fsd{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fsa{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fs9{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y2fe{bottom:106.071600px;}
.y2be{bottom:106.153350px;}
.y13c{bottom:106.165350px;}
.y2dd{bottom:106.216500px;}
.y262{bottom:106.251150px;}
.y1f{bottom:106.264800px;}
.y24f{bottom:106.268850px;}
.y1cc{bottom:106.284300px;}
.y163{bottom:106.287300px;}
.y70{bottom:106.293300px;}
.y48{bottom:106.296300px;}
.y339{bottom:106.314300px;}
.y1a8{bottom:106.329900px;}
.yb5{bottom:109.294800px;}
.y185{bottom:113.097600px;}
.y1cb{bottom:123.537300px;}
.y162{bottom:123.540300px;}
.y6f{bottom:123.546300px;}
.y338{bottom:126.189300px;}
.y1e{bottom:126.469800px;}
.y2bd{bottom:126.525600px;}
.y47{bottom:126.544800px;}
.y13b{bottom:126.589350px;}
.y261{bottom:126.675150px;}
.y2dc{bottom:126.959250px;}
.y1a7{bottom:127.167900px;}
.y24e{bottom:127.227600px;}
.y2fd{bottom:127.664850px;}
.yb4{bottom:127.792200px;}
.y184{bottom:135.822600px;}
.y1ca{bottom:140.790300px;}
.y161{bottom:140.793300px;}
.y6e{bottom:143.794800px;}
.y46{bottom:145.030200px;}
.yb3{bottom:145.045200px;}
.yf5{bottom:145.048200px;}
.y337{bottom:146.064300px;}
.y1d{bottom:146.674800px;}
.y2bc{bottom:146.897850px;}
.y13a{bottom:147.013350px;}
.y260{bottom:147.099150px;}
.y2db{bottom:147.702000px;}
.y1a6{bottom:148.005900px;}
.y24d{bottom:148.186350px;}
.y2fc{bottom:149.258100px;}
.y1c9{bottom:158.043300px;}
.y160{bottom:158.046300px;}
.y183{bottom:158.547600px;}
.y45{bottom:162.283200px;}
.y6d{bottom:162.295200px;}
.yb2{bottom:162.298200px;}
.yf4{bottom:165.296700px;}
.y336{bottom:165.939300px;}
.y1c{bottom:166.879800px;}
.y2bb{bottom:167.270100px;}
.y139{bottom:167.437350px;}
.y25f{bottom:167.523150px;}
.y2da{bottom:168.444750px;}
.y1a5{bottom:168.843900px;}
.y24c{bottom:169.145100px;}
.y1c8{bottom:175.296300px;}
.y15f{bottom:178.294800px;}
.y2fb{bottom:179.356350px;}
.y44{bottom:179.536200px;}
.y6c{bottom:179.548200px;}
.y182{bottom:181.272600px;}
.yb1{bottom:182.546700px;}
.yf3{bottom:183.800250px;}
.y335{bottom:185.814300px;}
.y1b{bottom:187.084800px;}
.y2ba{bottom:187.642350px;}
.y22a{bottom:187.858650px;}
.y138{bottom:187.861350px;}
.y25e{bottom:187.947150px;}
.y1a4{bottom:189.681900px;}
.y24b{bottom:190.103850px;}
.y15e{bottom:192.528300px;}
.y1c7{bottom:195.544800px;}
.y43{bottom:196.789200px;}
.y6b{bottom:196.795200px;}
.y2d9{bottom:197.692500px;}
.y8f{bottom:199.796700px;}
.y2fa{bottom:200.949600px;}
.y115{bottom:201.047250px;}
.y181{bottom:203.997600px;}
.yf2{bottom:204.048750px;}
.y334{bottom:205.689300px;}
.y1a{bottom:207.289800px;}
.y2b9{bottom:208.014600px;}
.y229{bottom:208.282650px;}
.y137{bottom:208.285350px;}
.y25d{bottom:208.371150px;}
.y29a{bottom:209.325750px;}
.y15d{bottom:209.781300px;}
.y1a3{bottom:210.519900px;}
.y24a{bottom:211.062600px;}
.y42{bottom:214.042200px;}
.y6a{bottom:214.048200px;}
.y20b{bottom:217.046700px;}
.y114{bottom:218.300250px;}
.y2d8{bottom:218.435250px;}
.y2f9{bottom:222.542850px;}
.yf1{bottom:222.549150px;}
.y333{bottom:225.564300px;}
.yd6{bottom:226.460550px;}
.y1eb{bottom:226.557000px;}
.yb0{bottom:226.563750px;}
.y180{bottom:226.722600px;}
.y15c{bottom:227.034300px;}
.y19{bottom:227.494800px;}
.y2b8{bottom:228.386850px;}
.y228{bottom:228.706650px;}
.y136{bottom:228.709350px;}
.y25c{bottom:228.795150px;}
.y299{bottom:230.129250px;}
.y41{bottom:231.295200px;}
.y1a2{bottom:231.357900px;}
.y249{bottom:232.021350px;}
.y69{bottom:234.296700px;}
.y113{bottom:238.548750px;}
.yf0{bottom:239.802150px;}
.y8e{bottom:243.704550px;}
.y15b{bottom:244.287300px;}
.y332{bottom:245.439300px;}
.yaf{bottom:246.849750px;}
.yd5{bottom:246.953550px;}
.y1ea{bottom:247.050000px;}
.y2d7{bottom:247.683000px;}
.y18{bottom:247.699800px;}
.y40{bottom:248.548200px;}
.y2b7{bottom:248.759100px;}
.y227{bottom:249.130650px;}
.y135{bottom:249.133350px;}
.y25b{bottom:249.219150px;}
.y17f{bottom:249.447600px;}
.y298{bottom:250.932750px;}
.y1a1{bottom:252.195900px;}
.y2f8{bottom:252.641100px;}
.y68{bottom:252.797250px;}
.y248{bottom:252.980100px;}
.yef{bottom:260.050650px;}
.y1c6{bottom:260.449350px;}
.y20a{bottom:261.034200px;}
.y15a{bottom:261.540300px;}
.y8d{bottom:264.301050px;}
.y331{bottom:265.314300px;}
.y3f{bottom:265.801200px;}
.yae{bottom:267.117600px;}
.yd4{bottom:267.446550px;}
.y1e9{bottom:267.494700px;}
.y17{bottom:267.904800px;}
.y3e{bottom:268.796700px;}
.y2b6{bottom:269.131350px;}
.y226{bottom:269.554650px;}
.y134{bottom:269.557350px;}
.y25a{bottom:269.643150px;}
.y67{bottom:270.050250px;}
.y17e{bottom:272.172600px;}
.y1a0{bottom:273.033900px;}
.y247{bottom:273.938850px;}
.y2f7{bottom:274.234350px;}
.y159{bottom:278.793300px;}
.y1c5{bottom:281.166600px;}
.y209{bottom:281.734200px;}
.y112{bottom:282.719100px;}
.y3d{bottom:283.045200px;}
.y8c{bottom:284.897550px;}
.y330{bottom:285.189300px;}
.y66{bottom:287.303250px;}
.yad{bottom:287.403600px;}
.yd3{bottom:287.939550px;}
.y1e8{bottom:287.987700px;}
.y2b5{bottom:289.503600px;}
.y133{bottom:289.981350px;}
.y259{bottom:290.067150px;}
.y17d{bottom:290.172600px;}
.y65{bottom:290.298750px;}
.y297{bottom:292.557000px;}
.y158{bottom:293.049300px;}
.y19f{bottom:293.871900px;}
.y246{bottom:294.897600px;}
.y2f6{bottom:295.827600px;}
.y157{bottom:299.044800px;}
.y3c{bottom:300.298200px;}
.y16{bottom:300.859800px;}
.y1c4{bottom:301.883850px;}
.y208{bottom:302.434200px;}
.y111{bottom:303.384600px;}
.yee{bottom:304.068450px;}
.y32f{bottom:305.064300px;}
.y8b{bottom:305.494050px;}
.yac{bottom:307.689600px;}
.yd2{bottom:308.432550px;}
.y1e7{bottom:308.480700px;}
.y2b4{bottom:309.875850px;}
.y225{bottom:310.402650px;}
.y132{bottom:310.405350px;}
.y258{bottom:310.491150px;}
.y27c{bottom:312.846600px;}
.y156{bottom:313.296300px;}
.y296{bottom:313.445700px;}
.y19e{bottom:314.709900px;}
.y17c{bottom:314.922600px;}
.y245{bottom:315.856350px;}
.y2f5{bottom:317.420850px;}
.y3b{bottom:317.551200px;}
.y3a{bottom:320.546700px;}
.y17b{bottom:321.672600px;}
.y1c3{bottom:322.601100px;}
.y207{bottom:323.134200px;}
.y110{bottom:324.050100px;}
.y32e{bottom:324.939300px;}
.y8a{bottom:326.090550px;}
.yab{bottom:327.975600px;}
.y2d6{bottom:328.181250px;}
.yd1{bottom:328.925550px;}
.y1e6{bottom:328.973700px;}
.yed{bottom:329.007150px;}
.y2b3{bottom:330.248100px;}
.y224{bottom:330.826650px;}
.y131{bottom:330.829350px;}
.y257{bottom:330.915150px;}
.y155{bottom:333.544800px;}
.y27b{bottom:334.219350px;}
.y295{bottom:334.249200px;}
.y64{bottom:334.271250px;}
.y39{bottom:334.795200px;}
.y19d{bottom:335.547900px;}
.y244{bottom:336.815100px;}
.y2f4{bottom:339.014100px;}
.y17a{bottom:339.672600px;}
.y1c2{bottom:343.318350px;}
.y206{bottom:343.834200px;}
.y10f{bottom:344.715600px;}
.y32d{bottom:344.814300px;}
.y89{bottom:346.687050px;}
.yaa{bottom:348.261600px;}
.y2d5{bottom:348.924000px;}
.yd0{bottom:349.418550px;}
.y1e5{bottom:349.466700px;}
.y2b2{bottom:350.620350px;}
.y15{bottom:350.824800px;}
.y223{bottom:351.250650px;}
.y130{bottom:351.253350px;}
.y256{bottom:351.339150px;}
.y38{bottom:352.048200px;}
.yec{bottom:353.950650px;}
.y63{bottom:354.574500px;}
.y294{bottom:355.052700px;}
.y27a{bottom:355.592100px;}
.y19c{bottom:356.385900px;}
.y243{bottom:357.773850px;}
.y1c1{bottom:364.035600px;}
.y205{bottom:364.534200px;}
.y32c{bottom:364.689300px;}
.y10e{bottom:365.381100px;}
.y88{bottom:367.283550px;}
.ya9{bottom:368.547600px;}
.y2f3{bottom:369.112350px;}
.y2d4{bottom:369.666750px;}
.ycf{bottom:369.911550px;}
.y1e4{bottom:369.959700px;}
.y2b1{bottom:370.992600px;}
.y179{bottom:371.657850px;}
.y222{bottom:371.674650px;}
.y12f{bottom:371.677350px;}
.y255{bottom:371.763150px;}
.y37{bottom:372.296700px;}
.y14{bottom:372.529800px;}
.y293{bottom:375.856200px;}
.y279{bottom:376.964850px;}
.y19b{bottom:377.223900px;}
.y154{bottom:377.570700px;}
.y242{bottom:378.732600px;}
.yeb{bottom:378.894150px;}
.y32b{bottom:384.564300px;}
.y1c0{bottom:384.752850px;}
.y313{bottom:384.799350px;}
.y204{bottom:385.234200px;}
.y10d{bottom:386.046600px;}
.y87{bottom:387.880050px;}
.ya8{bottom:388.833600px;}
.yce{bottom:390.404550px;}
.y2d3{bottom:390.409500px;}
.y1e3{bottom:390.452700px;}
.y2f2{bottom:390.705600px;}
.y2b0{bottom:391.364850px;}
.y221{bottom:392.098650px;}
.y12e{bottom:392.101350px;}
.y254{bottom:392.187150px;}
.y36{bottom:393.798750px;}
.y13{bottom:394.204650px;}
.y62{bottom:395.181000px;}
.y19a{bottom:398.061900px;}
.y153{bottom:398.322450px;}
.y278{bottom:398.337600px;}
.y241{bottom:399.691350px;}
.yea{bottom:403.837650px;}
.y32a{bottom:404.439300px;}
.y312{bottom:405.053850px;}
.y1bf{bottom:405.470100px;}
.y203{bottom:405.934200px;}
.y86{bottom:408.476550px;}
.ya7{bottom:409.119600px;}
.ycd{bottom:410.897550px;}
.y1e2{bottom:410.945700px;}
.y2af{bottom:411.737100px;}
.y35{bottom:412.290150px;}
.y2f1{bottom:412.298850px;}
.y220{bottom:412.522650px;}
.y12d{bottom:412.525350px;}
.y12{bottom:414.409650px;}
.y61{bottom:415.484250px;}
.y199{bottom:418.899900px;}
.y152{bottom:419.150250px;}
.y2d2{bottom:419.657250px;}
.y277{bottom:419.710350px;}
.y240{bottom:420.650100px;}
.y329{bottom:424.314300px;}
.y1be{bottom:426.187350px;}
.y202{bottom:426.634200px;}
.y10c{bottom:427.394850px;}
.ye9{bottom:428.781150px;}
.y85{bottom:429.073050px;}
.ya6{bottom:429.405600px;}
.y34{bottom:429.543150px;}
.y292{bottom:431.194200px;}
.ycc{bottom:431.390550px;}
.y1e1{bottom:431.438700px;}
.y2ae{bottom:432.109350px;}
.y21f{bottom:432.946650px;}
.y12c{bottom:432.949350px;}
.y253{bottom:433.028250px;}
.y311{bottom:433.813350px;}
.y11{bottom:434.614650px;}
.y60{bottom:435.787500px;}
.y198{bottom:439.737900px;}
.y151{bottom:439.902000px;}
.y2d1{bottom:440.400000px;}
.y178{bottom:440.990700px;}
.y276{bottom:441.083100px;}
.y23f{bottom:441.608850px;}
.y2f0{bottom:442.397100px;}
.y328{bottom:444.189300px;}
.y33{bottom:446.796150px;}
.y1bd{bottom:446.904600px;}
.y201{bottom:447.334200px;}
.y10b{bottom:448.060350px;}
.y84{bottom:449.669550px;}
.ya5{bottom:449.691600px;}
.ycb{bottom:451.883550px;}
.y1e0{bottom:451.931700px;}
.y291{bottom:451.997700px;}
.y2ad{bottom:452.481600px;}
.y21e{bottom:453.370650px;}
.y12b{bottom:453.373350px;}
.y252{bottom:453.448950px;}
.ye8{bottom:453.724650px;}
.y310{bottom:454.067850px;}
.y10{bottom:454.819650px;}
.y5f{bottom:456.090750px;}
.y197{bottom:460.575900px;}
.y150{bottom:460.653750px;}
.y2d0{bottom:461.142750px;}
.y275{bottom:462.455850px;}
.y27d{bottom:462.567600px;}
.y177{bottom:463.715700px;}
.y2ef{bottom:463.990350px;}
.y32{bottom:464.049150px;}
.y327{bottom:464.064300px;}
.y1bc{bottom:467.621850px;}
.y200{bottom:468.034200px;}
.y10a{bottom:468.725850px;}
.ya4{bottom:469.977600px;}
.y83{bottom:470.266050px;}
.yca{bottom:472.376550px;}
.y1df{bottom:472.424700px;}
.y290{bottom:472.801200px;}
.y2ac{bottom:472.853850px;}
.y21d{bottom:473.794650px;}
.y12a{bottom:473.797350px;}
.y251{bottom:473.869500px;}
.yf{bottom:475.024650px;}
.y5e{bottom:476.394000px;}
.ye7{bottom:478.668150px;}
.y31{bottom:481.302150px;}
.y14f{bottom:481.405500px;}
.y196{bottom:481.413900px;}
.y30f{bottom:482.827350px;}
.y23e{bottom:483.526350px;}
.y326{bottom:483.939300px;}
.y176{bottom:486.440700px;}
.y1bb{bottom:488.339100px;}
.y1ff{bottom:488.734200px;}
.y109{bottom:489.391350px;}
.ya3{bottom:490.263600px;}
.y2cf{bottom:490.390500px;}
.y82{bottom:490.862550px;}
.yc9{bottom:492.869550px;}
.y1de{bottom:492.917700px;}
.y2ab{bottom:493.226100px;}
.y28f{bottom:493.604700px;}
.y2ee{bottom:494.088600px;}
.y21c{bottom:494.218650px;}
.y129{bottom:494.221350px;}
.y250{bottom:494.290050px;}
.ye{bottom:495.229650px;}
.y5d{bottom:496.697250px;}
.y30{bottom:501.550650px;}
.y14e{bottom:502.157250px;}
.y195{bottom:502.251900px;}
.ye6{bottom:503.611650px;}
.y325{bottom:503.814300px;}
.y23d{bottom:504.485100px;}
.y1ba{bottom:509.056350px;}
.y175{bottom:509.165700px;}
.y1fe{bottom:509.434200px;}
.y108{bottom:510.056850px;}
.ya2{bottom:510.549600px;}
.y2ce{bottom:511.133250px;}
.y30e{bottom:511.586850px;}
.y1dd{bottom:513.334350px;}
.yc8{bottom:513.362550px;}
.y28e{bottom:514.408200px;}
.y21b{bottom:514.642650px;}
.y128{bottom:514.645350px;}
.yd{bottom:515.434650px;}
.y2ed{bottom:515.681850px;}
.y5c{bottom:517.000500px;}
.y274{bottom:517.949100px;}
.y14d{bottom:522.909000px;}
.y194{bottom:523.089900px;}
.y324{bottom:523.689300px;}
.y23c{bottom:525.443850px;}
.ye5{bottom:528.555150px;}
.y1b9{bottom:529.773600px;}
.y1fd{bottom:530.134200px;}
.y107{bottom:530.722350px;}
.ya1{bottom:530.835600px;}
.y174{bottom:531.890700px;}
.y81{bottom:532.038300px;}
.y1dc{bottom:533.827350px;}
.yc7{bottom:533.855550px;}
.y2aa{bottom:534.850500px;}
.y21a{bottom:535.066650px;}
.y127{bottom:535.069350px;}
.y28d{bottom:535.211700px;}
.yc{bottom:535.639650px;}
.y2ec{bottom:537.275100px;}
.y5b{bottom:537.303750px;}
.y273{bottom:539.321850px;}
.y30d{bottom:540.346350px;}
.y2cd{bottom:540.381000px;}
.y323{bottom:543.564300px;}
.y14c{bottom:543.660750px;}
.y193{bottom:543.927900px;}
.y2f{bottom:545.564850px;}
.y23b{bottom:546.402600px;}
.y1b8{bottom:550.490850px;}
.y1fc{bottom:550.834200px;}
.ya0{bottom:551.121600px;}
.y106{bottom:551.387850px;}
.y80{bottom:552.634800px;}
.ye4{bottom:553.498650px;}
.y1db{bottom:554.320350px;}
.yc6{bottom:554.348550px;}
.y173{bottom:554.615700px;}
.y219{bottom:555.490650px;}
.y126{bottom:555.493350px;}
.y28c{bottom:556.015200px;}
.y2eb{bottom:558.868350px;}
.y30c{bottom:560.600850px;}
.y272{bottom:560.737350px;}
.y322{bottom:563.439300px;}
.y14b{bottom:564.412500px;}
.y192{bottom:564.765900px;}
.y2e{bottom:566.609850px;}
.y23a{bottom:567.361350px;}
.yb{bottom:568.594650px;}
.y1b7{bottom:571.208100px;}
.y9f{bottom:571.407600px;}
.y1fb{bottom:571.513650px;}
.y105{bottom:572.053350px;}
.y7f{bottom:573.231300px;}
.yc5{bottom:574.841550px;}
.y125{bottom:575.917350px;}
.y28b{bottom:576.917850px;}
.y172{bottom:577.340700px;}
.y5a{bottom:577.891200px;}
.ye3{bottom:578.435850px;}
.y271{bottom:582.110100px;}
.y321{bottom:583.314300px;}
.y14a{bottom:585.164250px;}
.y191{bottom:585.603900px;}
.y2d{bottom:587.648700px;}
.y239{bottom:588.320100px;}
.y2ea{bottom:588.966600px;}
.y30b{bottom:589.360350px;}
.y9e{bottom:591.693600px;}
.y1b6{bottom:591.925350px;}
.y1fa{bottom:592.213650px;}
.y104{bottom:592.718850px;}
.y7e{bottom:593.827800px;}
.y1da{bottom:595.306350px;}
.yc4{bottom:595.334550px;}
.y218{bottom:596.338650px;}
.y124{bottom:596.341350px;}
.y2a9{bottom:597.117600px;}
.y28a{bottom:597.721350px;}
.y59{bottom:598.194450px;}
.y171{bottom:600.065700px;}
.y320{bottom:603.189300px;}
.ye2{bottom:603.379350px;}
.y270{bottom:603.482850px;}
.y149{bottom:605.916000px;}
.y190{bottom:606.441900px;}
.y2c{bottom:608.693700px;}
.y238{bottom:609.278850px;}
.y30a{bottom:609.614850px;}
.y2e9{bottom:610.559850px;}
.y9d{bottom:611.979600px;}
.y2cc{bottom:612.418350px;}
.y1b5{bottom:612.642600px;}
.y1f9{bottom:612.913650px;}
.y103{bottom:613.384350px;}
.y7d{bottom:614.424300px;}
.y1d9{bottom:615.799350px;}
.yc3{bottom:615.827550px;}
.y217{bottom:616.762650px;}
.y123{bottom:616.765350px;}
.y2a8{bottom:617.489850px;}
.y58{bottom:618.497700px;}
.y289{bottom:618.524850px;}
.y170{bottom:622.790700px;}
.y31f{bottom:623.064300px;}
.y26f{bottom:624.855600px;}
.y148{bottom:626.667750px;}
.ya{bottom:627.065400px;}
.ye1{bottom:628.322850px;}
.y2b{bottom:629.738700px;}
.y237{bottom:630.237600px;}
.y2e8{bottom:632.153100px;}
.y9c{bottom:632.265600px;}
.y346{bottom:632.442750px;}
.y2cb{bottom:633.152850px;}
.y1b4{bottom:633.359850px;}
.y1f8{bottom:633.613650px;}
.y102{bottom:634.049850px;}
.y7c{bottom:635.020800px;}
.y1d8{bottom:636.292350px;}
.yc2{bottom:636.320550px;}
.y216{bottom:637.186650px;}
.y122{bottom:637.189350px;}
.y2a7{bottom:637.862100px;}
.y309{bottom:638.374350px;}
.y57{bottom:638.800950px;}
.y31e{bottom:642.939300px;}
.y16f{bottom:645.515700px;}
.y26e{bottom:646.228350px;}
.y147{bottom:647.419500px;}
.y18f{bottom:648.546750px;}
.y2a{bottom:650.781600px;}
.y236{bottom:651.196350px;}
.y9b{bottom:652.551600px;}
.y345{bottom:652.692750px;}
.ye0{bottom:653.266350px;}
.y2ca{bottom:653.887350px;}
.y1b3{bottom:654.077100px;}
.y1f7{bottom:654.313650px;}
.y101{bottom:654.715350px;}
.y9{bottom:654.764400px;}
.y7b{bottom:655.617300px;}
.y1d7{bottom:656.785350px;}
.yc1{bottom:656.813550px;}
.y215{bottom:657.610650px;}
.y121{bottom:657.613350px;}
.y2a6{bottom:658.234350px;}
.y308{bottom:658.628850px;}
.y56{bottom:659.104200px;}
.y2e7{bottom:662.251350px;}
.y31d{bottom:662.814300px;}
.y26d{bottom:667.601100px;}
.y146{bottom:668.171250px;}
.y16e{bottom:668.240700px;}
.y29{bottom:671.824500px;}
.y235{bottom:672.155100px;}
.y9a{bottom:672.837600px;}
.y344{bottom:672.942750px;}
.y18e{bottom:673.130250px;}
.y288{bottom:673.862850px;}
.y2c9{bottom:674.621850px;}
.y1b2{bottom:674.794350px;}
.y1f6{bottom:675.013650px;}
.y100{bottom:675.380850px;}
.y7a{bottom:676.213800px;}
.y1d6{bottom:677.278350px;}
.yc0{bottom:677.306550px;}
.y214{bottom:678.034650px;}
.y120{bottom:678.037350px;}
.ydf{bottom:678.209850px;}
.y2a5{bottom:678.606600px;}
.y55{bottom:679.380900px;}
.y31c{bottom:682.689300px;}
.y2e6{bottom:683.844600px;}
.y307{bottom:687.388350px;}
.y145{bottom:688.923000px;}
.y26c{bottom:688.973850px;}
.y16d{bottom:690.965700px;}
.y28{bottom:692.867550px;}
.y234{bottom:693.113850px;}
.y99{bottom:693.123600px;}
.y343{bottom:693.192750px;}
.y16b{bottom:693.335700px;}
.y287{bottom:694.666350px;}
.y2c8{bottom:695.356350px;}
.y1f5{bottom:695.713650px;}
.yff{bottom:696.046350px;}
.y1d5{bottom:697.771350px;}
.ybf{bottom:697.799550px;}
.y213{bottom:698.458650px;}
.y11f{bottom:698.461350px;}
.y2a4{bottom:698.978850px;}
.y54{bottom:699.684150px;}
.y31b{bottom:702.564300px;}
.yde{bottom:703.153350px;}
.y8{bottom:703.705200px;}
.y2e5{bottom:705.437850px;}
.y306{bottom:707.642850px;}
.y144{bottom:709.674750px;}
.y26b{bottom:710.346600px;}
.y16a{bottom:711.335700px;}
.y98{bottom:713.409600px;}
.y16c{bottom:713.705700px;}
.y27{bottom:713.906250px;}
.y233{bottom:714.072600px;}
.y286{bottom:715.469850px;}
.y2c7{bottom:716.090850px;}
.y1b1{bottom:716.246100px;}
.y1f4{bottom:716.413650px;}
.yfe{bottom:716.711850px;}
.y79{bottom:717.376950px;}
.y1d4{bottom:718.264350px;}
.ybe{bottom:718.292550px;}
.y212{bottom:718.882650px;}
.y11e{bottom:718.885350px;}
.y2a3{bottom:719.351100px;}
.y53{bottom:719.987400px;}
.y31a{bottom:722.439300px;}
.y342{bottom:726.192750px;}
.y2e4{bottom:727.031100px;}
.ydd{bottom:728.096850px;}
.y143{bottom:730.426500px;}
.y26a{bottom:731.719350px;}
.y97{bottom:733.695600px;}
.y26{bottom:734.951250px;}
.y232{bottom:735.031350px;}
.y7{bottom:735.916200px;}
.y18d{bottom:735.997350px;}
.y285{bottom:736.273350px;}
.y305{bottom:736.402350px;}
.y2c6{bottom:736.825350px;}
.y1b0{bottom:736.963350px;}
.y1f3{bottom:737.113650px;}
.yfd{bottom:737.377350px;}
.y78{bottom:737.973450px;}
.y1d3{bottom:738.757350px;}
.ybd{bottom:738.785550px;}
.y211{bottom:739.306650px;}
.y11d{bottom:739.309350px;}
.y2a2{bottom:739.723350px;}
.y52{bottom:740.290650px;}
.y319{bottom:742.314300px;}
.y169{bottom:745.686600px;}
.y142{bottom:751.178250px;}
.ydc{bottom:753.040350px;}
.y269{bottom:753.092100px;}
.y96{bottom:753.981600px;}
.y231{bottom:755.990100px;}
.y25{bottom:755.996250px;}
.y304{bottom:756.656850px;}
.y18c{bottom:756.835350px;}
.y284{bottom:757.076850px;}
.y2e3{bottom:757.129350px;}
.y2c5{bottom:757.559850px;}
.y1af{bottom:757.680600px;}
.y1f2{bottom:757.813650px;}
.yfc{bottom:758.042850px;}
.y77{bottom:758.525850px;}
.y1d2{bottom:759.250350px;}
.ybc{bottom:759.254400px;}
.y210{bottom:759.730650px;}
.y11c{bottom:759.733350px;}
.y2a1{bottom:760.095600px;}
.y51{bottom:760.593900px;}
.y318{bottom:762.189300px;}
.y341{bottom:767.697750px;}
.y6{bottom:768.127200px;}
.y141{bottom:771.930000px;}
.y95{bottom:774.267600px;}
.y268{bottom:774.464850px;}
.y230{bottom:776.948850px;}
.y24{bottom:777.041250px;}
.y18b{bottom:777.673350px;}
.y283{bottom:777.880350px;}
.ydb{bottom:777.983850px;}
.y2c4{bottom:778.294350px;}
.y1ae{bottom:778.397850px;}
.y1f1{bottom:778.501350px;}
.yfb{bottom:778.708350px;}
.y76{bottom:779.122350px;}
.y1d1{bottom:779.743350px;}
.ybb{bottom:779.747400px;}
.y20f{bottom:780.154650px;}
.y11b{bottom:780.157350px;}
.y2a0{bottom:780.467850px;}
.y50{bottom:780.897150px;}
.y317{bottom:782.064300px;}
.y303{bottom:785.416350px;}
.y340{bottom:787.197750px;}
.y2e2{bottom:787.227600px;}
.y168{bottom:788.937600px;}
.y140{bottom:792.681750px;}
.y94{bottom:794.553600px;}
.y267{bottom:795.837600px;}
.y22f{bottom:797.907600px;}
.y18a{bottom:798.511350px;}
.y282{bottom:798.683850px;}
.y2c3{bottom:799.028850px;}
.y1ad{bottom:799.115100px;}
.y1f0{bottom:799.201350px;}
.yfa{bottom:799.373850px;}
.y75{bottom:799.718850px;}
.y1d0{bottom:800.236350px;}
.yba{bottom:800.240400px;}
.y20e{bottom:800.578650px;}
.y11a{bottom:800.581350px;}
.y29f{bottom:800.840100px;}
.y4f{bottom:801.200400px;}
.yda{bottom:802.927350px;}
.y302{bottom:805.670850px;}
.y33f{bottom:806.697750px;}
.y2e1{bottom:808.820850px;}
.y167{bottom:811.690350px;}
.y13f{bottom:813.433500px;}
.y316{bottom:814.689300px;}
.y93{bottom:814.839600px;}
.y266{bottom:817.210350px;}
.y22e{bottom:818.866350px;}
.y23{bottom:819.344100px;}
.y189{bottom:819.349350px;}
.y281{bottom:819.487350px;}
.y2c2{bottom:819.763350px;}
.y1ac{bottom:819.832350px;}
.y1ef{bottom:819.901350px;}
.yf9{bottom:820.039350px;}
.y74{bottom:820.315350px;}
.y1cf{bottom:820.729350px;}
.yb9{bottom:820.733400px;}
.y20d{bottom:821.002650px;}
.y119{bottom:821.005350px;}
.y29e{bottom:821.212350px;}
.y4e{bottom:821.488350px;}
.y33e{bottom:826.197750px;}
.yd9{bottom:827.870850px;}
.y5{bottom:830.082900px;}
.y2e0{bottom:830.414100px;}
.y13e{bottom:834.185250px;}
.y301{bottom:834.430350px;}
.y166{bottom:834.443100px;}
.y92{bottom:835.125600px;}
.y265{bottom:838.583100px;}
.y22d{bottom:839.825100px;}
.y188{bottom:840.187350px;}
.y280{bottom:840.290850px;}
.y2c1{bottom:840.497850px;}
.y1ab{bottom:840.549600px;}
.y1ee{bottom:840.601350px;}
.yf8{bottom:840.704850px;}
.y73{bottom:840.911850px;}
.y1ce{bottom:841.222350px;}
.yb8{bottom:841.226400px;}
.y20c{bottom:841.426650px;}
.y118{bottom:841.429350px;}
.y29d{bottom:841.584600px;}
.y4d{bottom:841.791600px;}
.y33d{bottom:845.697750px;}
.y4{bottom:851.787900px;}
.yd8{bottom:852.814350px;}
.y300{bottom:854.684850px;}
.y165{bottom:857.195850px;}
.y264{bottom:859.955850px;}
.y2df{bottom:860.512350px;}
.y22c{bottom:860.783850px;}
.y187{bottom:861.025350px;}
.y27f{bottom:861.094350px;}
.y2c0{bottom:861.232350px;}
.y1aa{bottom:861.266850px;}
.y1ed{bottom:861.301350px;}
.yf7{bottom:861.370350px;}
.y72{bottom:861.508350px;}
.y1cd{bottom:861.715350px;}
.yb7{bottom:861.719400px;}
.y117{bottom:861.853350px;}
.y29c{bottom:861.956850px;}
.y4c{bottom:862.094850px;}
.y33c{bottom:865.197750px;}
.y315{bottom:872.823450px;}
.y13d{bottom:876.203700px;}
.y91{bottom:876.669450px;}
.yd7{bottom:877.757850px;}
.y164{bottom:879.948600px;}
.y263{bottom:881.328600px;}
.y22b{bottom:881.742600px;}
.y186{bottom:881.863350px;}
.y27e{bottom:881.897850px;}
.y2bf{bottom:881.966850px;}
.y1a9{bottom:881.984100px;}
.y3{bottom:881.997900px;}
.y1ec{bottom:882.001350px;}
.yf6{bottom:882.035850px;}
.y71{bottom:882.104850px;}
.y2de{bottom:882.105600px;}
.yb6{bottom:882.208350px;}
.y116{bottom:882.277350px;}
.y29b{bottom:882.329100px;}
.y4b{bottom:882.398100px;}
.y22{bottom:882.402750px;}
.y2ff{bottom:883.444350px;}
.y33b{bottom:884.697750px;}
.y314{bottom:900.207450px;}
.y90{bottom:900.706200px;}
.y4a{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y21{bottom:904.193550px;}
.y33a{bottom:904.197750px;}
.y20{bottom:948.189000px;}
.y49{bottom:966.189000px;}
.h12{height:24.964242px;}
.hf{height:33.870539px;}
.h8{height:40.757812px;}
.h13{height:43.942805px;}
.h10{height:45.852539px;}
.h4{height:50.947266px;}
.h9{height:50.964066px;}
.h20{height:52.119141px;}
.h3{height:53.494629px;}
.h1e{height:54.714844px;}
.h11{height:55.924805px;}
.h15{height:55.948805px;}
.he{height:58.589355px;}
.h18{height:58.594155px;}
.h1a{height:58.685955px;}
.h14{height:58.695555px;}
.h16{height:58.765755px;}
.h21{height:58.894755px;}
.h22{height:61.136719px;}
.h7{height:62.138672px;}
.h2{height:63.684082px;}
.h24{height:65.245605px;}
.h1f{height:67.912805px;}
.ha{height:68.778809px;}
.h6{height:71.326172px;}
.hb{height:71.459473px;}
.h1d{height:71.461273px;}
.hc{height:71.467273px;}
.hd{height:71.467873px;}
.h19{height:71.475673px;}
.h1c{height:71.478673px;}
.h1b{height:71.484673px;}
.h17{height:71.509873px;}
.h23{height:74.566406px;}
.h5{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:82.214250px;}
.xb{left:83.655450px;}
.x1{left:85.039350px;}
.x11{left:92.094300px;}
.x12{left:93.954300px;}
.x8{left:102.438300px;}
.x9{left:103.723650px;}
.x5{left:105.029250px;}
.x4{left:106.050600px;}
.x18{left:107.284650px;}
.xd{left:116.184300px;}
.xe{left:127.704300px;}
.x17{left:129.858450px;}
.x19{left:131.281650px;}
.xa{left:132.945150px;}
.xc{left:134.015400px;}
.x13{left:144.861000px;}
.x7{left:212.663850px;}
.x3{left:232.352400px;}
.x2{left:233.415450px;}
.x10{left:260.694300px;}
.xf{left:279.654300px;}
.x16{left:282.771000px;}
.x15{left:289.311000px;}
.x14{left:302.541000px;}
@media print{
.v6{vertical-align:-40.426667pt;}
.v2{vertical-align:-15.090133pt;}
.v3{vertical-align:-10.650667pt;}
.v4{vertical-align:-5.296000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.656000pt;}
.v1{vertical-align:15.112533pt;}
.ls22{letter-spacing:-6.552000pt;}
.ls78{letter-spacing:-6.317333pt;}
.ls77{letter-spacing:-5.826667pt;}
.ls123{letter-spacing:-5.336000pt;}
.ls145{letter-spacing:-5.320000pt;}
.lse6{letter-spacing:-5.090667pt;}
.ls2a{letter-spacing:-4.600000pt;}
.lsd9{letter-spacing:-4.416000pt;}
.ls79{letter-spacing:-4.293333pt;}
.ls110{letter-spacing:-3.925333pt;}
.ls7a{letter-spacing:-3.864000pt;}
.lse3{letter-spacing:-3.802667pt;}
.ls101{letter-spacing:-3.776000pt;}
.lsa8{letter-spacing:-3.733333pt;}
.ls28{letter-spacing:-3.496000pt;}
.ls72{letter-spacing:-3.466667pt;}
.ls11a{letter-spacing:-3.312000pt;}
.ls5d{letter-spacing:-3.128000pt;}
.ls34{letter-spacing:-3.024000pt;}
.ls131{letter-spacing:-2.968000pt;}
.ls124{letter-spacing:-2.944000pt;}
.lse{letter-spacing:-2.933333pt;}
.ls3f{letter-spacing:-2.880000pt;}
.lsa1{letter-spacing:-2.821333pt;}
.lse7{letter-spacing:-2.760000pt;}
.lsae{letter-spacing:-2.736000pt;}
.lsd7{letter-spacing:-2.698667pt;}
.lsb6{letter-spacing:-2.640000pt;}
.lsbf{letter-spacing:-2.637333pt;}
.ls7c{letter-spacing:-2.576000pt;}
.ls3d{letter-spacing:-2.544000pt;}
.ls136{letter-spacing:-2.464000pt;}
.ls76{letter-spacing:-2.453333pt;}
.lseb{letter-spacing:-2.400000pt;}
.lsaa{letter-spacing:-2.392000pt;}
.lsa2{letter-spacing:-2.269333pt;}
.ls134{letter-spacing:-2.240000pt;}
.ls49{letter-spacing:-2.208000pt;}
.ls1e{letter-spacing:-2.200000pt;}
.ls69{letter-spacing:-2.085333pt;}
.ls75{letter-spacing:-2.024000pt;}
.lsb3{letter-spacing:-2.016000pt;}
.lsd8{letter-spacing:-1.962667pt;}
.ls6c{letter-spacing:-1.901333pt;}
.ls4a{letter-spacing:-1.840000pt;}
.ls88{letter-spacing:-1.778667pt;}
.lsb1{letter-spacing:-1.776000pt;}
.ls138{letter-spacing:-1.736000pt;}
.ls2d{letter-spacing:-1.717333pt;}
.ls3e{letter-spacing:-1.680000pt;}
.ls46{letter-spacing:-1.656000pt;}
.ls14d{letter-spacing:-1.600000pt;}
.ls59{letter-spacing:-1.594667pt;}
.ls9a{letter-spacing:-1.584000pt;}
.ls14b{letter-spacing:-1.546667pt;}
.ls6a{letter-spacing:-1.533333pt;}
.ls130{letter-spacing:-1.512000pt;}
.ls48{letter-spacing:-1.472000pt;}
.ls11{letter-spacing:-1.440000pt;}
.ls5c{letter-spacing:-1.410667pt;}
.ls13a{letter-spacing:-1.400000pt;}
.lsc5{letter-spacing:-1.386667pt;}
.ls58{letter-spacing:-1.349333pt;}
.ls52{letter-spacing:-1.344000pt;}
.ls30{letter-spacing:-1.288000pt;}
.ls135{letter-spacing:-1.232000pt;}
.ls45{letter-spacing:-1.226667pt;}
.ls29{letter-spacing:-1.165333pt;}
.ls143{letter-spacing:-1.120000pt;}
.ls4e{letter-spacing:-1.104000pt;}
.ls154{letter-spacing:-1.066667pt;}
.lsf5{letter-spacing:-1.056000pt;}
.ls68{letter-spacing:-1.042667pt;}
.ls151{letter-spacing:-1.013333pt;}
.ls4c{letter-spacing:-0.981333pt;}
.ls149{letter-spacing:-0.970667pt;}
.ls85{letter-spacing:-0.965448pt;}
.lsb0{letter-spacing:-0.960000pt;}
.ls5b{letter-spacing:-0.920000pt;}
.ls3c{letter-spacing:-0.912000pt;}
.ls100{letter-spacing:-0.896000pt;}
.ls11c{letter-spacing:-0.893933pt;}
.ls7f{letter-spacing:-0.864000pt;}
.ls2b{letter-spacing:-0.858667pt;}
.ls14c{letter-spacing:-0.853333pt;}
.ls137{letter-spacing:-0.840000pt;}
.ls6d{letter-spacing:-0.822419pt;}
.ls23{letter-spacing:-0.797333pt;}
.ls70{letter-spacing:-0.768000pt;}
.ls21{letter-spacing:-0.760000pt;}
.lsc2{letter-spacing:-0.746667pt;}
.ls25{letter-spacing:-0.736000pt;}
.lsef{letter-spacing:-0.733333pt;}
.ls146{letter-spacing:-0.728000pt;}
.lsad{letter-spacing:-0.720000pt;}
.lsb{letter-spacing:-0.693333pt;}
.ls27{letter-spacing:-0.674667pt;}
.ls8a{letter-spacing:-0.643632pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls26{letter-spacing:-0.613333pt;}
.ls89{letter-spacing:-0.607875pt;}
.ls11e{letter-spacing:-0.587664pt;}
.ls5{letter-spacing:-0.576000pt;}
.lsac{letter-spacing:-0.572117pt;}
.ls141{letter-spacing:-0.560000pt;}
.lsa9{letter-spacing:-0.557333pt;}
.ls31{letter-spacing:-0.552000pt;}
.ls87{letter-spacing:-0.536360pt;}
.ls10{letter-spacing:-0.533333pt;}
.ls6f{letter-spacing:-0.531696pt;}
.ls3b{letter-spacing:-0.528000pt;}
.ls126{letter-spacing:-0.506667pt;}
.ls12e{letter-spacing:-0.504000pt;}
.ls2c{letter-spacing:-0.490667pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls12a{letter-spacing:-0.448000pt;}
.ls39{letter-spacing:-0.432000pt;}
.ls66{letter-spacing:-0.429333pt;}
.ls7{letter-spacing:-0.426667pt;}
.ls93{letter-spacing:-0.393331pt;}
.ls139{letter-spacing:-0.392000pt;}
.ls40{letter-spacing:-0.384000pt;}
.ls14e{letter-spacing:-0.373333pt;}
.lsa3{letter-spacing:-0.368000pt;}
.ls8d{letter-spacing:-0.363792pt;}
.lsaf{letter-spacing:-0.336000pt;}
.lsc4{letter-spacing:-0.320000pt;}
.ls8c{letter-spacing:-0.307824pt;}
.ls2f{letter-spacing:-0.306667pt;}
.lsb5{letter-spacing:-0.288000pt;}
.lsc1{letter-spacing:-0.266667pt;}
.ls96{letter-spacing:-0.245333pt;}
.ls3a{letter-spacing:-0.240000pt;}
.ls2{letter-spacing:-0.224000pt;}
.ls65{letter-spacing:-0.216000pt;}
.ls6b{letter-spacing:-0.214544pt;}
.lsc0{letter-spacing:-0.213333pt;}
.ls98{letter-spacing:-0.195888pt;}
.ls35{letter-spacing:-0.192000pt;}
.ls24{letter-spacing:-0.184000pt;}
.ls74{letter-spacing:-0.178787pt;}
.ls14f{letter-spacing:-0.160000pt;}
.lsc8{letter-spacing:-0.152000pt;}
.ls60{letter-spacing:-0.144000pt;}
.ls4d{letter-spacing:-0.122667pt;}
.lsc3{letter-spacing:-0.106667pt;}
.ls33{letter-spacing:-0.096000pt;}
.ls5f{letter-spacing:-0.061333pt;}
.ls12d{letter-spacing:-0.056000pt;}
.ls6e{letter-spacing:-0.055968pt;}
.ls4f{letter-spacing:-0.048000pt;}
.ls86{letter-spacing:-0.035757pt;}
.ls1{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000267pt;}
.ls8f{letter-spacing:0.001067pt;}
.ls94{letter-spacing:0.035757pt;}
.ls9c{letter-spacing:0.048000pt;}
.lsd0{letter-spacing:0.061333pt;}
.ls8b{letter-spacing:0.083952pt;}
.ls53{letter-spacing:0.096000pt;}
.ls99{letter-spacing:0.111936pt;}
.ls5e{letter-spacing:0.122667pt;}
.ls7e{letter-spacing:0.144000pt;}
.ls57{letter-spacing:0.184000pt;}
.ls1c{letter-spacing:0.192000pt;}
.ls153{letter-spacing:0.213333pt;}
.ls50{letter-spacing:0.240000pt;}
.lse2{letter-spacing:0.245333pt;}
.lsda{letter-spacing:0.250301pt;}
.ls51{letter-spacing:0.279840pt;}
.ls144{letter-spacing:0.280000pt;}
.lsf0{letter-spacing:0.286059pt;}
.ls37{letter-spacing:0.288000pt;}
.lsf3{letter-spacing:0.306667pt;}
.lsf4{letter-spacing:0.335808pt;}
.ls10a{letter-spacing:0.336000pt;}
.lsf6{letter-spacing:0.384000pt;}
.lsfb{letter-spacing:0.429333pt;}
.ls36{letter-spacing:0.480000pt;}
.ls119{letter-spacing:0.484800pt;}
.lsdb{letter-spacing:0.490667pt;}
.ls73{letter-spacing:0.500603pt;}
.ls7d{letter-spacing:0.503712pt;}
.lsb4{letter-spacing:0.528000pt;}
.ls10b{letter-spacing:0.531696pt;}
.lse5{letter-spacing:0.536360pt;}
.lse8{letter-spacing:0.552000pt;}
.ls108{letter-spacing:0.572117pt;}
.lsca{letter-spacing:0.613333pt;}
.lsd2{letter-spacing:0.671616pt;}
.ls132{letter-spacing:0.672000pt;}
.lsc9{letter-spacing:0.674667pt;}
.ls16{letter-spacing:0.736000pt;}
.ls152{letter-spacing:0.746667pt;}
.lsd1{letter-spacing:0.750904pt;}
.ls90{letter-spacing:0.755733pt;}
.ls83{letter-spacing:0.769600pt;}
.lsdc{letter-spacing:0.783552pt;}
.ls84{letter-spacing:0.797333pt;}
.ls82{letter-spacing:0.803733pt;}
.lse0{letter-spacing:0.806400pt;}
.lse1{letter-spacing:0.816000pt;}
.ls140{letter-spacing:0.840000pt;}
.lse9{letter-spacing:0.858176pt;}
.ls14{letter-spacing:0.858667pt;}
.ls38{letter-spacing:0.864000pt;}
.ls10d{letter-spacing:0.920000pt;}
.ls109{letter-spacing:0.923472pt;}
.ls2e{letter-spacing:0.981333pt;}
.ls9b{letter-spacing:1.007424pt;}
.ls8{letter-spacing:1.013333pt;}
.ls4b{letter-spacing:1.042667pt;}
.ls133{letter-spacing:1.064000pt;}
.ls107{letter-spacing:1.072720pt;}
.lsf2{letter-spacing:1.104000pt;}
.ls4{letter-spacing:1.120000pt;}
.ls95{letter-spacing:1.144235pt;}
.ls11d{letter-spacing:1.147344pt;}
.ls15{letter-spacing:1.165333pt;}
.ls1f{letter-spacing:1.194667pt;}
.lsd3{letter-spacing:1.200000pt;}
.lsf1{letter-spacing:1.226667pt;}
.lsb2{letter-spacing:1.248000pt;}
.lsf{letter-spacing:1.280000pt;}
.ls81{letter-spacing:1.288000pt;}
.ls127{letter-spacing:1.296000pt;}
.ls11b{letter-spacing:1.323021pt;}
.ls10f{letter-spacing:1.349333pt;}
.ls9{letter-spacing:1.386667pt;}
.ls32{letter-spacing:1.410667pt;}
.ls1a{letter-spacing:1.453600pt;}
.ls125{letter-spacing:1.472000pt;}
.lsea{letter-spacing:1.584000pt;}
.ls5a{letter-spacing:1.594667pt;}
.lsa7{letter-spacing:1.632000pt;}
.ls150{letter-spacing:1.653333pt;}
.lsfa{letter-spacing:1.656000pt;}
.lsdd{letter-spacing:1.717333pt;}
.ls56{letter-spacing:1.784800pt;}
.ls43{letter-spacing:1.821600pt;}
.ls9f{letter-spacing:1.840000pt;}
.lsee{letter-spacing:2.024000pt;}
.ls18{letter-spacing:2.097867pt;}
.ls1d{letter-spacing:2.133333pt;}
.ls116{letter-spacing:2.146667pt;}
.ls148{letter-spacing:2.186667pt;}
.ls19{letter-spacing:2.216533pt;}
.ls91{letter-spacing:2.218667pt;}
.lscb{letter-spacing:2.269333pt;}
.ls1b{letter-spacing:2.304000pt;}
.lscf{letter-spacing:2.330667pt;}
.lsce{letter-spacing:2.514667pt;}
.ls63{letter-spacing:2.576000pt;}
.ls104{letter-spacing:2.637333pt;}
.ls62{letter-spacing:2.760000pt;}
.ls113{letter-spacing:2.790667pt;}
.ls103{letter-spacing:2.907200pt;}
.ls7b{letter-spacing:2.944000pt;}
.ls42{letter-spacing:3.128000pt;}
.ls92{letter-spacing:3.189333pt;}
.ls20{letter-spacing:3.285333pt;}
.lsf8{letter-spacing:3.373333pt;}
.ls114{letter-spacing:3.496000pt;}
.ls120{letter-spacing:3.618667pt;}
.ls9e{letter-spacing:3.680000pt;}
.lsc{letter-spacing:3.733333pt;}
.ls112{letter-spacing:3.864000pt;}
.ls13b{letter-spacing:3.976000pt;}
.lsb7{letter-spacing:4.048000pt;}
.ls106{letter-spacing:4.070400pt;}
.ls105{letter-spacing:4.080000pt;}
.lsfe{letter-spacing:4.115467pt;}
.lsdf{letter-spacing:4.128000pt;}
.lsab{letter-spacing:4.170667pt;}
.ls67{letter-spacing:4.232000pt;}
.lsf7{letter-spacing:4.262667pt;}
.ls121{letter-spacing:4.661333pt;}
.lse4{letter-spacing:4.784000pt;}
.ls97{letter-spacing:4.845333pt;}
.lsc7{letter-spacing:5.029333pt;}
.ls6{letter-spacing:5.120000pt;}
.ls55{letter-spacing:5.213333pt;}
.lsd{letter-spacing:5.226667pt;}
.ls142{letter-spacing:5.320000pt;}
.ls3{letter-spacing:5.333333pt;}
.lsde{letter-spacing:5.336000pt;}
.ls13f{letter-spacing:5.432000pt;}
.ls115{letter-spacing:5.581333pt;}
.ls12c{letter-spacing:5.600000pt;}
.ls122{letter-spacing:5.612000pt;}
.ls128{letter-spacing:5.642667pt;}
.ls44{letter-spacing:5.760000pt;}
.ls13c{letter-spacing:5.768000pt;}
.ls10e{letter-spacing:5.888000pt;}
.lsa0{letter-spacing:6.194667pt;}
.lscd{letter-spacing:6.317333pt;}
.ls13e{letter-spacing:6.664000pt;}
.ls47{letter-spacing:6.685333pt;}
.lsd5{letter-spacing:6.808000pt;}
.lsed{letter-spacing:7.022667pt;}
.ls117{letter-spacing:7.237333pt;}
.ls64{letter-spacing:7.253472pt;}
.lsa5{letter-spacing:7.254005pt;}
.lscc{letter-spacing:7.255733pt;}
.ls118{letter-spacing:7.281456pt;}
.ls129{letter-spacing:7.392000pt;}
.ls13d{letter-spacing:7.672000pt;}
.ls14a{letter-spacing:7.680000pt;}
.ls12b{letter-spacing:7.840000pt;}
.lsd6{letter-spacing:8.586667pt;}
.lsf9{letter-spacing:8.709333pt;}
.lsff{letter-spacing:9.016000pt;}
.ls102{letter-spacing:9.138667pt;}
.lsa6{letter-spacing:52.609029pt;}
.lsfd{letter-spacing:79.268267pt;}
.lsbe{letter-spacing:328.480000pt;}
.lsbd{letter-spacing:329.120000pt;}
.lsb8{letter-spacing:356.480000pt;}
.lsbb{letter-spacing:369.173333pt;}
.lsb9{letter-spacing:369.760000pt;}
.lsba{letter-spacing:411.946667pt;}
.lsec{letter-spacing:421.348267pt;}
.ls11f{letter-spacing:421.528000pt;}
.ls13{letter-spacing:421.901333pt;}
.ls10c{letter-spacing:421.914667pt;}
.ls111{letter-spacing:421.941333pt;}
.ls54{letter-spacing:422.068267pt;}
.lsfc{letter-spacing:422.181333pt;}
.ls12f{letter-spacing:422.421333pt;}
.ls147{letter-spacing:424.814933pt;}
.ls8e{letter-spacing:425.421333pt;}
.ls71{letter-spacing:426.868267pt;}
.lsd4{letter-spacing:427.234667pt;}
.lsc6{letter-spacing:427.561600pt;}
.lsa4{letter-spacing:428.414933pt;}
.lsbc{letter-spacing:458.133333pt;}
.ls61{letter-spacing:846.686933pt;}
.ls9d{letter-spacing:847.126933pt;}
.ls0{letter-spacing:849.460267pt;}
.ls41{letter-spacing:853.060267pt;}
.ls80{letter-spacing:854.820267pt;}
.ws113{word-spacing:-64.000000pt;}
.ws112{word-spacing:-44.800000pt;}
.ws139{word-spacing:-23.576000pt;}
.ws138{word-spacing:-23.128000pt;}
.ws15d{word-spacing:-22.666667pt;}
.ws134{word-spacing:-21.528000pt;}
.ws3{word-spacing:-20.213333pt;}
.ws0{word-spacing:-20.106667pt;}
.wsf9{word-spacing:-18.645333pt;}
.ws5f{word-spacing:-18.400000pt;}
.wsa1{word-spacing:-18.216000pt;}
.ws110{word-spacing:-18.093333pt;}
.ws102{word-spacing:-18.000000pt;}
.ws105{word-spacing:-17.786667pt;}
.ws10d{word-spacing:-17.664000pt;}
.ws104{word-spacing:-17.541333pt;}
.ws12a{word-spacing:-17.480000pt;}
.ws64{word-spacing:-17.357333pt;}
.wse1{word-spacing:-17.296000pt;}
.ws16{word-spacing:-17.234667pt;}
.wsaf{word-spacing:-17.173333pt;}
.ws49{word-spacing:-17.112000pt;}
.wsea{word-spacing:-17.050667pt;}
.wsb1{word-spacing:-16.989333pt;}
.wsb0{word-spacing:-16.928000pt;}
.wsb3{word-spacing:-16.866667pt;}
.wsa2{word-spacing:-16.805333pt;}
.wsad{word-spacing:-16.744000pt;}
.ws4a{word-spacing:-16.682667pt;}
.wseb{word-spacing:-16.621333pt;}
.wsae{word-spacing:-16.560000pt;}
.ws13{word-spacing:-16.533333pt;}
.wsed{word-spacing:-16.498667pt;}
.ws4c{word-spacing:-16.437333pt;}
.wsac{word-spacing:-16.376000pt;}
.ws11b{word-spacing:-16.314667pt;}
.wse0{word-spacing:-16.253333pt;}
.ws4b{word-spacing:-16.130667pt;}
.wse2{word-spacing:-15.885333pt;}
.ws106{word-spacing:-15.824000pt;}
.ws48{word-spacing:-15.578667pt;}
.ws150{word-spacing:-15.512000pt;}
.wsb2{word-spacing:-15.456000pt;}
.ws153{word-spacing:-15.344000pt;}
.ws80{word-spacing:-15.266667pt;}
.ws17{word-spacing:-15.149333pt;}
.wsfa{word-spacing:-15.072000pt;}
.wsb6{word-spacing:-15.000000pt;}
.wsdb{word-spacing:-14.904000pt;}
.ws115{word-spacing:-14.848000pt;}
.ws137{word-spacing:-14.842667pt;}
.wse3{word-spacing:-14.781333pt;}
.ws9e{word-spacing:-14.720000pt;}
.wsfb{word-spacing:-14.688000pt;}
.ws1c{word-spacing:-14.658667pt;}
.ws60{word-spacing:-14.597333pt;}
.ws1a{word-spacing:-14.536000pt;}
.ws19{word-spacing:-14.474667pt;}
.ws18{word-spacing:-14.413333pt;}
.ws1e{word-spacing:-14.352000pt;}
.ws143{word-spacing:-14.336000pt;}
.ws71{word-spacing:-14.290667pt;}
.ws8e{word-spacing:-14.229333pt;}
.wse4{word-spacing:-14.168000pt;}
.ws63{word-spacing:-14.106667pt;}
.ws11f{word-spacing:-14.016000pt;}
.ws1b{word-spacing:-13.984000pt;}
.ws46{word-spacing:-13.922667pt;}
.ws107{word-spacing:-13.872000pt;}
.ws20{word-spacing:-13.861333pt;}
.ws121{word-spacing:-13.824000pt;}
.ws91{word-spacing:-13.800000pt;}
.ws120{word-spacing:-13.776000pt;}
.wsd4{word-spacing:-13.760000pt;}
.ws61{word-spacing:-13.738667pt;}
.ws15{word-spacing:-13.680000pt;}
.ws92{word-spacing:-13.677333pt;}
.wsd2{word-spacing:-13.653333pt;}
.ws122{word-spacing:-13.632000pt;}
.ws72{word-spacing:-13.616000pt;}
.ws11e{word-spacing:-13.584000pt;}
.ws5e{word-spacing:-13.554667pt;}
.ws47{word-spacing:-13.493333pt;}
.ws25{word-spacing:-13.488000pt;}
.ws1d{word-spacing:-13.432000pt;}
.ws144{word-spacing:-13.384000pt;}
.ws95{word-spacing:-13.370667pt;}
.ws145{word-spacing:-13.328000pt;}
.wsf8{word-spacing:-13.309333pt;}
.ws142{word-spacing:-13.272000pt;}
.ws90{word-spacing:-13.248000pt;}
.ws11d{word-spacing:-13.200000pt;}
.ws15e{word-spacing:-13.173333pt;}
.ws151{word-spacing:-13.104000pt;}
.ws15f{word-spacing:-13.066667pt;}
.ws70{word-spacing:-13.064000pt;}
.wsd3{word-spacing:-13.013333pt;}
.ws152{word-spacing:-12.992000pt;}
.ws163{word-spacing:-12.960000pt;}
.ws62{word-spacing:-12.941333pt;}
.wsd0{word-spacing:-12.853333pt;}
.ws111{word-spacing:-12.818667pt;}
.wsce{word-spacing:-12.746667pt;}
.ws1{word-spacing:-12.693333pt;}
.ws141{word-spacing:-12.600000pt;}
.wsbb{word-spacing:-12.576000pt;}
.ws5{word-spacing:-12.533333pt;}
.ws2{word-spacing:-12.480000pt;}
.ws162{word-spacing:-12.426667pt;}
.ws24{word-spacing:-12.336000pt;}
.ws140{word-spacing:-12.320000pt;}
.ws160{word-spacing:-12.213333pt;}
.ws4f{word-spacing:-12.144000pt;}
.ws16b{word-spacing:-12.106667pt;}
.ws26{word-spacing:-12.048000pt;}
.wsb9{word-spacing:-12.000000pt;}
.wsa3{word-spacing:-11.904000pt;}
.ws97{word-spacing:-11.856000pt;}
.wsba{word-spacing:-11.808000pt;}
.ws21{word-spacing:-11.760000pt;}
.ws4{word-spacing:-11.733333pt;}
.ws65{word-spacing:-11.712000pt;}
.ws14{word-spacing:-11.685333pt;}
.ws23{word-spacing:-11.664000pt;}
.ws28{word-spacing:-11.616000pt;}
.ws161{word-spacing:-11.573333pt;}
.wsbc{word-spacing:-11.568000pt;}
.wsb8{word-spacing:-11.520000pt;}
.ws2d{word-spacing:-11.472000pt;}
.ws27{word-spacing:-11.424000pt;}
.ws4d{word-spacing:-11.376000pt;}
.ws12c{word-spacing:-11.370832pt;}
.ws29{word-spacing:-11.328000pt;}
.ws2a{word-spacing:-11.280000pt;}
.wsa0{word-spacing:-11.192045pt;}
.ws11c{word-spacing:-11.120531pt;}
.ws75{word-spacing:-11.088000pt;}
.ws84{word-spacing:-10.992000pt;}
.ws2b{word-spacing:-10.944000pt;}
.wsf7{word-spacing:-10.905987pt;}
.wse5{word-spacing:-10.798715pt;}
.wsf6{word-spacing:-10.584171pt;}
.ws81{word-spacing:-10.548413pt;}
.ws22{word-spacing:-10.464000pt;}
.ws103{word-spacing:-10.333869pt;}
.wsec{word-spacing:-10.298112pt;}
.ws2c{word-spacing:-10.176000pt;}
.ws9f{word-spacing:-10.083568pt;}
.ws1f{word-spacing:-10.047811pt;}
.ws93{word-spacing:-10.012053pt;}
.ws82{word-spacing:-9.869024pt;}
.ws73{word-spacing:-9.833267pt;}
.ws94{word-spacing:-9.511451pt;}
.wsb7{word-spacing:-9.475693pt;}
.ws96{word-spacing:-9.439936pt;}
.ws83{word-spacing:-9.322667pt;}
.ws74{word-spacing:-9.225392pt;}
.ws119{word-spacing:-9.138667pt;}
.ws8f{word-spacing:-9.082363pt;}
.ws11a{word-spacing:-9.016000pt;}
.ws4e{word-spacing:-8.143344pt;}
.ws12b{word-spacing:-7.237333pt;}
.ws50{word-spacing:-6.685333pt;}
.ws154{word-spacing:-6.664000pt;}
.ws14f{word-spacing:-5.768000pt;}
.ws13a{word-spacing:-5.642667pt;}
.ws13d{word-spacing:-5.600000pt;}
.ws155{word-spacing:-5.432000pt;}
.ws8{word-spacing:-5.333333pt;}
.ws158{word-spacing:-5.320000pt;}
.ws16e{word-spacing:-5.226667pt;}
.ws68{word-spacing:-5.213333pt;}
.wsa6{word-spacing:-4.845333pt;}
.wsfe{word-spacing:-4.784000pt;}
.ws79{word-spacing:-4.232000pt;}
.wsc0{word-spacing:-4.170667pt;}
.ws14e{word-spacing:-3.976000pt;}
.wse{word-spacing:-3.733333pt;}
.ws108{word-spacing:-3.680000pt;}
.ws2f{word-spacing:-3.285333pt;}
.ws8a{word-spacing:-2.944000pt;}
.ws45{word-spacing:-2.880000pt;}
.ws2e{word-spacing:-2.133333pt;}
.ws12f{word-spacing:-1.962667pt;}
.ws169{word-spacing:-1.653333pt;}
.ws6a{word-spacing:-1.594667pt;}
.ws12e{word-spacing:-1.472000pt;}
.ws3b{word-spacing:-1.410667pt;}
.wsd{word-spacing:-1.386667pt;}
.ws14a{word-spacing:-1.288000pt;}
.ws10{word-spacing:-1.280000pt;}
.wsc7{word-spacing:-1.248000pt;}
.ws109{word-spacing:-1.226667pt;}
.wse9{word-spacing:-1.200000pt;}
.ws69{word-spacing:-1.165333pt;}
.ws131{word-spacing:-1.147344pt;}
.ws9{word-spacing:-1.120000pt;}
.ws10a{word-spacing:-1.104000pt;}
.ws148{word-spacing:-1.064000pt;}
.ws56{word-spacing:-1.042667pt;}
.wsc{word-spacing:-1.013333pt;}
.wsaa{word-spacing:-1.007424pt;}
.ws38{word-spacing:-0.981333pt;}
.ws124{word-spacing:-0.923472pt;}
.ws3e{word-spacing:-0.864000pt;}
.ws57{word-spacing:-0.858667pt;}
.ws156{word-spacing:-0.840000pt;}
.ws13b{word-spacing:-0.784000pt;}
.wsf5{word-spacing:-0.783552pt;}
.ws16c{word-spacing:-0.746667pt;}
.wsde{word-spacing:-0.674667pt;}
.ws147{word-spacing:-0.672000pt;}
.wse7{word-spacing:-0.671616pt;}
.ws123{word-spacing:-0.572117pt;}
.ws101{word-spacing:-0.552000pt;}
.ws125{word-spacing:-0.531696pt;}
.wsc9{word-spacing:-0.528000pt;}
.ws8c{word-spacing:-0.503712pt;}
.wsf2{word-spacing:-0.490667pt;}
.ws10b{word-spacing:-0.335808pt;}
.ws3d{word-spacing:-0.288000pt;}
.ws15a{word-spacing:-0.280000pt;}
.wsf4{word-spacing:-0.279840pt;}
.wsfc{word-spacing:-0.245333pt;}
.ws5c{word-spacing:-0.240000pt;}
.ws16d{word-spacing:-0.213333pt;}
.ws8d{word-spacing:-0.144000pt;}
.wsdd{word-spacing:-0.122667pt;}
.wsa9{word-spacing:-0.111936pt;}
.ws5d{word-spacing:-0.096000pt;}
.ws9b{word-spacing:-0.083952pt;}
.ws114{word-spacing:-0.064000pt;}
.ws116{word-spacing:-0.061333pt;}
.wsab{word-spacing:-0.048000pt;}
.ws6{word-spacing:0.000000pt;}
.ws5b{word-spacing:0.048000pt;}
.ws7e{word-spacing:0.055968pt;}
.ws13e{word-spacing:0.056000pt;}
.ws6c{word-spacing:0.061333pt;}
.ws3f{word-spacing:0.096000pt;}
.wsd9{word-spacing:0.106667pt;}
.ws7c{word-spacing:0.122667pt;}
.ws6e{word-spacing:0.144000pt;}
.wsdc{word-spacing:0.152000pt;}
.ws168{word-spacing:0.160000pt;}
.ws32{word-spacing:0.184000pt;}
.wsc6{word-spacing:0.192000pt;}
.wsa8{word-spacing:0.195888pt;}
.wsd7{word-spacing:0.213333pt;}
.ws76{word-spacing:0.216000pt;}
.ws7{word-spacing:0.224000pt;}
.ws6f{word-spacing:0.240000pt;}
.wsa5{word-spacing:0.245333pt;}
.wsd8{word-spacing:0.266667pt;}
.wsca{word-spacing:0.288000pt;}
.ws39{word-spacing:0.306667pt;}
.ws9c{word-spacing:0.307824pt;}
.wsda{word-spacing:0.320000pt;}
.wscb{word-spacing:0.336000pt;}
.ws9d{word-spacing:0.363792pt;}
.wsdf{word-spacing:0.368000pt;}
.ws167{word-spacing:0.373333pt;}
.ws14d{word-spacing:0.392000pt;}
.wsa4{word-spacing:0.393331pt;}
.wsb{word-spacing:0.426667pt;}
.ws77{word-spacing:0.429333pt;}
.ws40{word-spacing:0.432000pt;}
.ws13c{word-spacing:0.448000pt;}
.ws12{word-spacing:0.480000pt;}
.ws6d{word-spacing:0.490667pt;}
.ws13f{word-spacing:0.504000pt;}
.ws136{word-spacing:0.506667pt;}
.ws43{word-spacing:0.528000pt;}
.ws7f{word-spacing:0.531696pt;}
.ws11{word-spacing:0.533333pt;}
.ws3a{word-spacing:0.552000pt;}
.wsbd{word-spacing:0.557333pt;}
.ws157{word-spacing:0.560000pt;}
.wsa{word-spacing:0.576000pt;}
.ws132{word-spacing:0.587664pt;}
.ws33{word-spacing:0.613333pt;}
.ws9a{word-spacing:0.643632pt;}
.wsa7{word-spacing:0.674667pt;}
.wsc1{word-spacing:0.720000pt;}
.ws52{word-spacing:0.736000pt;}
.ws165{word-spacing:0.746667pt;}
.ws30{word-spacing:0.760000pt;}
.wsc4{word-spacing:0.768000pt;}
.ws31{word-spacing:0.797333pt;}
.ws14b{word-spacing:0.840000pt;}
.ws37{word-spacing:0.858667pt;}
.ws130{word-spacing:0.893933pt;}
.ws117{word-spacing:0.896000pt;}
.ws41{word-spacing:0.912000pt;}
.ws6b{word-spacing:0.920000pt;}
.ws126{word-spacing:0.960000pt;}
.ws164{word-spacing:0.970667pt;}
.ws58{word-spacing:0.981333pt;}
.ws133{word-spacing:1.008000pt;}
.ws16a{word-spacing:1.013333pt;}
.ws99{word-spacing:1.042667pt;}
.ws10c{word-spacing:1.056000pt;}
.wsc2{word-spacing:1.104000pt;}
.ws159{word-spacing:1.120000pt;}
.ws35{word-spacing:1.165333pt;}
.ws53{word-spacing:1.226667pt;}
.ws59{word-spacing:1.288000pt;}
.ws66{word-spacing:1.349333pt;}
.ws15c{word-spacing:1.400000pt;}
.ws78{word-spacing:1.410667pt;}
.ws51{word-spacing:1.472000pt;}
.ws166{word-spacing:1.546667pt;}
.ws7a{word-spacing:1.594667pt;}
.ws127{word-spacing:1.680000pt;}
.ws98{word-spacing:1.717333pt;}
.ws14c{word-spacing:1.736000pt;}
.wsc5{word-spacing:1.776000pt;}
.ws55{word-spacing:1.840000pt;}
.ws7d{word-spacing:1.901333pt;}
.wsef{word-spacing:1.962667pt;}
.wsc8{word-spacing:2.016000pt;}
.ws85{word-spacing:2.024000pt;}
.wsbe{word-spacing:2.085333pt;}
.ws54{word-spacing:2.208000pt;}
.ws149{word-spacing:2.240000pt;}
.wsb5{word-spacing:2.269333pt;}
.wsbf{word-spacing:2.392000pt;}
.ws86{word-spacing:2.453333pt;}
.ws42{word-spacing:2.544000pt;}
.ws8b{word-spacing:2.576000pt;}
.ws128{word-spacing:2.637333pt;}
.wscc{word-spacing:2.640000pt;}
.wsee{word-spacing:2.698667pt;}
.wsc3{word-spacing:2.736000pt;}
.ws100{word-spacing:2.760000pt;}
.wsb4{word-spacing:2.821333pt;}
.ws44{word-spacing:2.880000pt;}
.wsf{word-spacing:2.933333pt;}
.ws146{word-spacing:2.968000pt;}
.ws12d{word-spacing:3.312000pt;}
.ws34{word-spacing:3.496000pt;}
.ws7b{word-spacing:3.618667pt;}
.ws118{word-spacing:3.776000pt;}
.wsfd{word-spacing:3.802667pt;}
.ws89{word-spacing:3.864000pt;}
.ws129{word-spacing:3.925333pt;}
.ws88{word-spacing:4.293333pt;}
.wsf1{word-spacing:4.416000pt;}
.ws36{word-spacing:4.600000pt;}
.wsff{word-spacing:5.090667pt;}
.ws15b{word-spacing:5.320000pt;}
.wse8{word-spacing:5.328000pt;}
.ws135{word-spacing:5.336000pt;}
.ws10f{word-spacing:5.704000pt;}
.wsf3{word-spacing:5.826667pt;}
.ws87{word-spacing:6.317333pt;}
.ws67{word-spacing:7.360000pt;}
.wse6{word-spacing:7.605333pt;}
.ws10e{word-spacing:7.666667pt;}
.wsf0{word-spacing:9.813333pt;}
.ws5a{word-spacing:38.617920pt;}
.ws3c{word-spacing:52.609920pt;}
.wsd5{word-spacing:181.349333pt;}
.wscd{word-spacing:222.042667pt;}
.wscf{word-spacing:412.874667pt;}
.wsd1{word-spacing:446.688000pt;}
.wsd6{word-spacing:548.341333pt;}
._44{margin-left:-14.432800pt;}
._45{margin-left:-13.535467pt;}
._42{margin-left:-11.918133pt;}
._1c{margin-left:-10.570400pt;}
._43{margin-left:-9.376533pt;}
._13{margin-left:-8.082400pt;}
._12{margin-left:-6.576267pt;}
._9{margin-left:-5.474133pt;}
._3{margin-left:-4.149600pt;}
._a{margin-left:-3.252267pt;}
._2{margin-left:-1.634933pt;}
._4{width:1.159467pt;}
._1{width:2.133333pt;}
._d{width:3.306933pt;}
._7{width:4.420267pt;}
._5{width:5.566933pt;}
._6{width:6.969600pt;}
._8{width:8.664533pt;}
._10{width:9.608000pt;}
._14{width:11.286400pt;}
._1a{width:12.235733pt;}
._16{width:13.226933pt;}
._15{width:14.598933pt;}
._18{width:16.190667pt;}
._49{width:17.186667pt;}
._17{width:18.554400pt;}
._1b{width:20.789333pt;}
._f{width:21.976533pt;}
._c{width:23.438933pt;}
._19{width:24.681888pt;}
._46{width:27.227733pt;}
._11{width:38.617920pt;}
._48{width:42.508267pt;}
._b{width:63.466667pt;}
._47{width:100.608000pt;}
._34{width:175.101600pt;}
._3a{width:176.468800pt;}
._37{width:177.945600pt;}
._35{width:182.748267pt;}
._3b{width:186.815467pt;}
._38{width:192.188267pt;}
._33{width:202.914133pt;}
._2c{width:217.108800pt;}
._29{width:218.585600pt;}
._32{width:223.480000pt;}
._e{width:224.896000pt;}
._2d{width:227.455467pt;}
._3c{width:231.036000pt;}
._2a{width:232.828267pt;}
._1f{width:235.880000pt;}
._20{width:236.770133pt;}
._24{width:239.246400pt;}
._22{width:242.011733pt;}
._25{width:246.291467pt;}
._1d{width:248.405333pt;}
._40{width:258.211200pt;}
._3f{width:266.327200pt;}
._26{width:271.720800pt;}
._27{width:275.616533pt;}
._2e{width:282.296800pt;}
._1e{width:284.354933pt;}
._23{width:286.043200pt;}
._30{width:298.904533pt;}
._2f{width:306.807200pt;}
._2b{width:311.011200pt;}
._21{width:320.336533pt;}
._28{width:350.709600pt;}
._39{width:412.664533pt;}
._31{width:423.253333pt;}
._36{width:452.362933pt;}
._0{width:514.133333pt;}
._3e{width:515.253333pt;}
._41{width:524.053333pt;}
._3d{width:559.302133pt;}
.fsc{font-size:27.984000pt;}
.fsb{font-size:35.757333pt;}
.fs6{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fse{font-size:44.800000pt;}
.fsd{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fsa{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fs9{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y2fe{bottom:94.285867pt;}
.y2be{bottom:94.358533pt;}
.y13c{bottom:94.369200pt;}
.y2dd{bottom:94.414667pt;}
.y262{bottom:94.445467pt;}
.y1f{bottom:94.457600pt;}
.y24f{bottom:94.461200pt;}
.y1cc{bottom:94.474933pt;}
.y163{bottom:94.477600pt;}
.y70{bottom:94.482933pt;}
.y48{bottom:94.485600pt;}
.y339{bottom:94.501600pt;}
.y1a8{bottom:94.515467pt;}
.yb5{bottom:97.150933pt;}
.y185{bottom:100.531200pt;}
.y1cb{bottom:109.810933pt;}
.y162{bottom:109.813600pt;}
.y6f{bottom:109.818933pt;}
.y338{bottom:112.168267pt;}
.y1e{bottom:112.417600pt;}
.y2bd{bottom:112.467200pt;}
.y47{bottom:112.484267pt;}
.y13b{bottom:112.523867pt;}
.y261{bottom:112.600133pt;}
.y2dc{bottom:112.852667pt;}
.y1a7{bottom:113.038133pt;}
.y24e{bottom:113.091200pt;}
.y2fd{bottom:113.479867pt;}
.yb4{bottom:113.593067pt;}
.y184{bottom:120.731200pt;}
.y1ca{bottom:125.146933pt;}
.y161{bottom:125.149600pt;}
.y6e{bottom:127.817600pt;}
.y46{bottom:128.915733pt;}
.yb3{bottom:128.929067pt;}
.yf5{bottom:128.931733pt;}
.y337{bottom:129.834933pt;}
.y1d{bottom:130.377600pt;}
.y2bc{bottom:130.575867pt;}
.y13a{bottom:130.678533pt;}
.y260{bottom:130.754800pt;}
.y2db{bottom:131.290667pt;}
.y1a6{bottom:131.560800pt;}
.y24d{bottom:131.721200pt;}
.y2fc{bottom:132.673867pt;}
.y1c9{bottom:140.482933pt;}
.y160{bottom:140.485600pt;}
.y183{bottom:140.931200pt;}
.y45{bottom:144.251733pt;}
.y6d{bottom:144.262400pt;}
.yb2{bottom:144.265067pt;}
.yf4{bottom:146.930400pt;}
.y336{bottom:147.501600pt;}
.y1c{bottom:148.337600pt;}
.y2bb{bottom:148.684533pt;}
.y139{bottom:148.833200pt;}
.y25f{bottom:148.909467pt;}
.y2da{bottom:149.728667pt;}
.y1a5{bottom:150.083467pt;}
.y24c{bottom:150.351200pt;}
.y1c8{bottom:155.818933pt;}
.y15f{bottom:158.484267pt;}
.y2fb{bottom:159.427867pt;}
.y44{bottom:159.587733pt;}
.y6c{bottom:159.598400pt;}
.y182{bottom:161.131200pt;}
.yb1{bottom:162.263733pt;}
.yf3{bottom:163.378000pt;}
.y335{bottom:165.168267pt;}
.y1b{bottom:166.297600pt;}
.y2ba{bottom:166.793200pt;}
.y22a{bottom:166.985467pt;}
.y138{bottom:166.987867pt;}
.y25e{bottom:167.064133pt;}
.y1a4{bottom:168.606133pt;}
.y24b{bottom:168.981200pt;}
.y15e{bottom:171.136267pt;}
.y1c7{bottom:173.817600pt;}
.y43{bottom:174.923733pt;}
.y6b{bottom:174.929067pt;}
.y2d9{bottom:175.726667pt;}
.y8f{bottom:177.597067pt;}
.y2fa{bottom:178.621867pt;}
.y115{bottom:178.708667pt;}
.y181{bottom:181.331200pt;}
.yf2{bottom:181.376667pt;}
.y334{bottom:182.834933pt;}
.y1a{bottom:184.257600pt;}
.y2b9{bottom:184.901867pt;}
.y229{bottom:185.140133pt;}
.y137{bottom:185.142533pt;}
.y25d{bottom:185.218800pt;}
.y29a{bottom:186.067333pt;}
.y15d{bottom:186.472267pt;}
.y1a3{bottom:187.128800pt;}
.y24a{bottom:187.611200pt;}
.y42{bottom:190.259733pt;}
.y6a{bottom:190.265067pt;}
.y20b{bottom:192.930400pt;}
.y114{bottom:194.044667pt;}
.y2d8{bottom:194.164667pt;}
.y2f9{bottom:197.815867pt;}
.yf1{bottom:197.821467pt;}
.y333{bottom:200.501600pt;}
.yd6{bottom:201.298267pt;}
.y1eb{bottom:201.384000pt;}
.yb0{bottom:201.390000pt;}
.y180{bottom:201.531200pt;}
.y15c{bottom:201.808267pt;}
.y19{bottom:202.217600pt;}
.y2b8{bottom:203.010533pt;}
.y228{bottom:203.294800pt;}
.y136{bottom:203.297200pt;}
.y25c{bottom:203.373467pt;}
.y299{bottom:204.559333pt;}
.y41{bottom:205.595733pt;}
.y1a2{bottom:205.651467pt;}
.y249{bottom:206.241200pt;}
.y69{bottom:208.263733pt;}
.y113{bottom:212.043333pt;}
.yf0{bottom:213.157467pt;}
.y8e{bottom:216.626267pt;}
.y15b{bottom:217.144267pt;}
.y332{bottom:218.168267pt;}
.yaf{bottom:219.422000pt;}
.yd5{bottom:219.514267pt;}
.y1ea{bottom:219.600000pt;}
.y2d7{bottom:220.162667pt;}
.y18{bottom:220.177600pt;}
.y40{bottom:220.931733pt;}
.y2b7{bottom:221.119200pt;}
.y227{bottom:221.449467pt;}
.y135{bottom:221.451867pt;}
.y25b{bottom:221.528133pt;}
.y17f{bottom:221.731200pt;}
.y298{bottom:223.051333pt;}
.y1a1{bottom:224.174133pt;}
.y2f8{bottom:224.569867pt;}
.y68{bottom:224.708667pt;}
.y248{bottom:224.871200pt;}
.yef{bottom:231.156133pt;}
.y1c6{bottom:231.510533pt;}
.y20a{bottom:232.030400pt;}
.y15a{bottom:232.480267pt;}
.y8d{bottom:234.934267pt;}
.y331{bottom:235.834933pt;}
.y3f{bottom:236.267733pt;}
.yae{bottom:237.437867pt;}
.yd4{bottom:237.730267pt;}
.y1e9{bottom:237.773067pt;}
.y17{bottom:238.137600pt;}
.y3e{bottom:238.930400pt;}
.y2b6{bottom:239.227867pt;}
.y226{bottom:239.604133pt;}
.y134{bottom:239.606533pt;}
.y25a{bottom:239.682800pt;}
.y67{bottom:240.044667pt;}
.y17e{bottom:241.931200pt;}
.y1a0{bottom:242.696800pt;}
.y247{bottom:243.501200pt;}
.y2f7{bottom:243.763867pt;}
.y159{bottom:247.816267pt;}
.y1c5{bottom:249.925867pt;}
.y209{bottom:250.430400pt;}
.y112{bottom:251.305867pt;}
.y3d{bottom:251.595733pt;}
.y8c{bottom:253.242267pt;}
.y330{bottom:253.501600pt;}
.y66{bottom:255.380667pt;}
.yad{bottom:255.469867pt;}
.yd3{bottom:255.946267pt;}
.y1e8{bottom:255.989067pt;}
.y2b5{bottom:257.336533pt;}
.y133{bottom:257.761200pt;}
.y259{bottom:257.837467pt;}
.y17d{bottom:257.931200pt;}
.y65{bottom:258.043333pt;}
.y297{bottom:260.050667pt;}
.y158{bottom:260.488267pt;}
.y19f{bottom:261.219467pt;}
.y246{bottom:262.131200pt;}
.y2f6{bottom:262.957867pt;}
.y157{bottom:265.817600pt;}
.y3c{bottom:266.931733pt;}
.y16{bottom:267.430933pt;}
.y1c4{bottom:268.341200pt;}
.y208{bottom:268.830400pt;}
.y111{bottom:269.675200pt;}
.yee{bottom:270.283067pt;}
.y32f{bottom:271.168267pt;}
.y8b{bottom:271.550267pt;}
.yac{bottom:273.501867pt;}
.yd2{bottom:274.162267pt;}
.y1e7{bottom:274.205067pt;}
.y2b4{bottom:275.445200pt;}
.y225{bottom:275.913467pt;}
.y132{bottom:275.915867pt;}
.y258{bottom:275.992133pt;}
.y27c{bottom:278.085867pt;}
.y156{bottom:278.485600pt;}
.y296{bottom:278.618400pt;}
.y19e{bottom:279.742133pt;}
.y17c{bottom:279.931200pt;}
.y245{bottom:280.761200pt;}
.y2f5{bottom:282.151867pt;}
.y3b{bottom:282.267733pt;}
.y3a{bottom:284.930400pt;}
.y17b{bottom:285.931200pt;}
.y1c3{bottom:286.756533pt;}
.y207{bottom:287.230400pt;}
.y110{bottom:288.044533pt;}
.y32e{bottom:288.834933pt;}
.y8a{bottom:289.858267pt;}
.yab{bottom:291.533867pt;}
.y2d6{bottom:291.716667pt;}
.yd1{bottom:292.378267pt;}
.y1e6{bottom:292.421067pt;}
.yed{bottom:292.450800pt;}
.y2b3{bottom:293.553867pt;}
.y224{bottom:294.068133pt;}
.y131{bottom:294.070533pt;}
.y257{bottom:294.146800pt;}
.y155{bottom:296.484267pt;}
.y27b{bottom:297.083867pt;}
.y295{bottom:297.110400pt;}
.y64{bottom:297.130000pt;}
.y39{bottom:297.595733pt;}
.y19d{bottom:298.264800pt;}
.y244{bottom:299.391200pt;}
.y2f4{bottom:301.345867pt;}
.y17a{bottom:301.931200pt;}
.y1c2{bottom:305.171867pt;}
.y206{bottom:305.630400pt;}
.y10f{bottom:306.413867pt;}
.y32d{bottom:306.501600pt;}
.y89{bottom:308.166267pt;}
.yaa{bottom:309.565867pt;}
.y2d5{bottom:310.154667pt;}
.yd0{bottom:310.594267pt;}
.y1e5{bottom:310.637067pt;}
.y2b2{bottom:311.662533pt;}
.y15{bottom:311.844267pt;}
.y223{bottom:312.222800pt;}
.y130{bottom:312.225200pt;}
.y256{bottom:312.301467pt;}
.y38{bottom:312.931733pt;}
.yec{bottom:314.622800pt;}
.y63{bottom:315.177333pt;}
.y294{bottom:315.602400pt;}
.y27a{bottom:316.081867pt;}
.y19c{bottom:316.787467pt;}
.y243{bottom:318.021200pt;}
.y1c1{bottom:323.587200pt;}
.y205{bottom:324.030400pt;}
.y32c{bottom:324.168267pt;}
.y10e{bottom:324.783200pt;}
.y88{bottom:326.474267pt;}
.ya9{bottom:327.597867pt;}
.y2f3{bottom:328.099867pt;}
.y2d4{bottom:328.592667pt;}
.ycf{bottom:328.810267pt;}
.y1e4{bottom:328.853067pt;}
.y2b1{bottom:329.771200pt;}
.y179{bottom:330.362533pt;}
.y222{bottom:330.377467pt;}
.y12f{bottom:330.379867pt;}
.y255{bottom:330.456133pt;}
.y37{bottom:330.930400pt;}
.y14{bottom:331.137600pt;}
.y293{bottom:334.094400pt;}
.y279{bottom:335.079867pt;}
.y19b{bottom:335.310133pt;}
.y154{bottom:335.618400pt;}
.y242{bottom:336.651200pt;}
.yeb{bottom:336.794800pt;}
.y32b{bottom:341.834933pt;}
.y1c0{bottom:342.002533pt;}
.y313{bottom:342.043867pt;}
.y204{bottom:342.430400pt;}
.y10d{bottom:343.152533pt;}
.y87{bottom:344.782267pt;}
.ya8{bottom:345.629867pt;}
.yce{bottom:347.026267pt;}
.y2d3{bottom:347.030667pt;}
.y1e3{bottom:347.069067pt;}
.y2f2{bottom:347.293867pt;}
.y2b0{bottom:347.879867pt;}
.y221{bottom:348.532133pt;}
.y12e{bottom:348.534533pt;}
.y254{bottom:348.610800pt;}
.y36{bottom:350.043333pt;}
.y13{bottom:350.404133pt;}
.y62{bottom:351.272000pt;}
.y19a{bottom:353.832800pt;}
.y153{bottom:354.064400pt;}
.y278{bottom:354.077867pt;}
.y241{bottom:355.281200pt;}
.yea{bottom:358.966800pt;}
.y32a{bottom:359.501600pt;}
.y312{bottom:360.047867pt;}
.y1bf{bottom:360.417867pt;}
.y203{bottom:360.830400pt;}
.y86{bottom:363.090267pt;}
.ya7{bottom:363.661867pt;}
.ycd{bottom:365.242267pt;}
.y1e2{bottom:365.285067pt;}
.y2af{bottom:365.988533pt;}
.y35{bottom:366.480133pt;}
.y2f1{bottom:366.487867pt;}
.y220{bottom:366.686800pt;}
.y12d{bottom:366.689200pt;}
.y12{bottom:368.364133pt;}
.y61{bottom:369.319333pt;}
.y199{bottom:372.355467pt;}
.y152{bottom:372.578000pt;}
.y2d2{bottom:373.028667pt;}
.y277{bottom:373.075867pt;}
.y240{bottom:373.911200pt;}
.y329{bottom:377.168267pt;}
.y1be{bottom:378.833200pt;}
.y202{bottom:379.230400pt;}
.y10c{bottom:379.906533pt;}
.ye9{bottom:381.138800pt;}
.y85{bottom:381.398267pt;}
.ya6{bottom:381.693867pt;}
.y34{bottom:381.816133pt;}
.y292{bottom:383.283733pt;}
.ycc{bottom:383.458267pt;}
.y1e1{bottom:383.501067pt;}
.y2ae{bottom:384.097200pt;}
.y21f{bottom:384.841467pt;}
.y12c{bottom:384.843867pt;}
.y253{bottom:384.914000pt;}
.y311{bottom:385.611867pt;}
.y11{bottom:386.324133pt;}
.y60{bottom:387.366667pt;}
.y198{bottom:390.878133pt;}
.y151{bottom:391.024000pt;}
.y2d1{bottom:391.466667pt;}
.y178{bottom:391.991733pt;}
.y276{bottom:392.073867pt;}
.y23f{bottom:392.541200pt;}
.y2f0{bottom:393.241867pt;}
.y328{bottom:394.834933pt;}
.y33{bottom:397.152133pt;}
.y1bd{bottom:397.248533pt;}
.y201{bottom:397.630400pt;}
.y10b{bottom:398.275867pt;}
.y84{bottom:399.706267pt;}
.ya5{bottom:399.725867pt;}
.ycb{bottom:401.674267pt;}
.y1e0{bottom:401.717067pt;}
.y291{bottom:401.775733pt;}
.y2ad{bottom:402.205867pt;}
.y21e{bottom:402.996133pt;}
.y12b{bottom:402.998533pt;}
.y252{bottom:403.065733pt;}
.ye8{bottom:403.310800pt;}
.y310{bottom:403.615867pt;}
.y10{bottom:404.284133pt;}
.y5f{bottom:405.414000pt;}
.y197{bottom:409.400800pt;}
.y150{bottom:409.470000pt;}
.y2d0{bottom:409.904667pt;}
.y275{bottom:411.071867pt;}
.y27d{bottom:411.171200pt;}
.y177{bottom:412.191733pt;}
.y2ef{bottom:412.435867pt;}
.y32{bottom:412.488133pt;}
.y327{bottom:412.501600pt;}
.y1bc{bottom:415.663867pt;}
.y200{bottom:416.030400pt;}
.y10a{bottom:416.645200pt;}
.ya4{bottom:417.757867pt;}
.y83{bottom:418.014267pt;}
.yca{bottom:419.890267pt;}
.y1df{bottom:419.933067pt;}
.y290{bottom:420.267733pt;}
.y2ac{bottom:420.314533pt;}
.y21d{bottom:421.150800pt;}
.y12a{bottom:421.153200pt;}
.y251{bottom:421.217333pt;}
.yf{bottom:422.244133pt;}
.y5e{bottom:423.461333pt;}
.ye7{bottom:425.482800pt;}
.y31{bottom:427.824133pt;}
.y14f{bottom:427.916000pt;}
.y196{bottom:427.923467pt;}
.y30f{bottom:429.179867pt;}
.y23e{bottom:429.801200pt;}
.y326{bottom:430.168267pt;}
.y176{bottom:432.391733pt;}
.y1bb{bottom:434.079200pt;}
.y1ff{bottom:434.430400pt;}
.y109{bottom:435.014533pt;}
.ya3{bottom:435.789867pt;}
.y2cf{bottom:435.902667pt;}
.y82{bottom:436.322267pt;}
.yc9{bottom:438.106267pt;}
.y1de{bottom:438.149067pt;}
.y2ab{bottom:438.423200pt;}
.y28f{bottom:438.759733pt;}
.y2ee{bottom:439.189867pt;}
.y21c{bottom:439.305467pt;}
.y129{bottom:439.307867pt;}
.y250{bottom:439.368933pt;}
.ye{bottom:440.204133pt;}
.y5d{bottom:441.508667pt;}
.y30{bottom:445.822800pt;}
.y14e{bottom:446.362000pt;}
.y195{bottom:446.446133pt;}
.ye6{bottom:447.654800pt;}
.y325{bottom:447.834933pt;}
.y23d{bottom:448.431200pt;}
.y1ba{bottom:452.494533pt;}
.y175{bottom:452.591733pt;}
.y1fe{bottom:452.830400pt;}
.y108{bottom:453.383867pt;}
.ya2{bottom:453.821867pt;}
.y2ce{bottom:454.340667pt;}
.y30e{bottom:454.743867pt;}
.y1dd{bottom:456.297200pt;}
.yc8{bottom:456.322267pt;}
.y28e{bottom:457.251733pt;}
.y21b{bottom:457.460133pt;}
.y128{bottom:457.462533pt;}
.yd{bottom:458.164133pt;}
.y2ed{bottom:458.383867pt;}
.y5c{bottom:459.556000pt;}
.y274{bottom:460.399200pt;}
.y14d{bottom:464.808000pt;}
.y194{bottom:464.968800pt;}
.y324{bottom:465.501600pt;}
.y23c{bottom:467.061200pt;}
.ye5{bottom:469.826800pt;}
.y1b9{bottom:470.909867pt;}
.y1fd{bottom:471.230400pt;}
.y107{bottom:471.753200pt;}
.ya1{bottom:471.853867pt;}
.y174{bottom:472.791733pt;}
.y81{bottom:472.922933pt;}
.y1dc{bottom:474.513200pt;}
.yc7{bottom:474.538267pt;}
.y2aa{bottom:475.422667pt;}
.y21a{bottom:475.614800pt;}
.y127{bottom:475.617200pt;}
.y28d{bottom:475.743733pt;}
.yc{bottom:476.124133pt;}
.y2ec{bottom:477.577867pt;}
.y5b{bottom:477.603333pt;}
.y273{bottom:479.397200pt;}
.y30d{bottom:480.307867pt;}
.y2cd{bottom:480.338667pt;}
.y323{bottom:483.168267pt;}
.y14c{bottom:483.254000pt;}
.y193{bottom:483.491467pt;}
.y2f{bottom:484.946533pt;}
.y23b{bottom:485.691200pt;}
.y1b8{bottom:489.325200pt;}
.y1fc{bottom:489.630400pt;}
.ya0{bottom:489.885867pt;}
.y106{bottom:490.122533pt;}
.y80{bottom:491.230933pt;}
.ye4{bottom:491.998800pt;}
.y1db{bottom:492.729200pt;}
.yc6{bottom:492.754267pt;}
.y173{bottom:492.991733pt;}
.y219{bottom:493.769467pt;}
.y126{bottom:493.771867pt;}
.y28c{bottom:494.235733pt;}
.y2eb{bottom:496.771867pt;}
.y30c{bottom:498.311867pt;}
.y272{bottom:498.433200pt;}
.y322{bottom:500.834933pt;}
.y14b{bottom:501.700000pt;}
.y192{bottom:502.014133pt;}
.y2e{bottom:503.653200pt;}
.y23a{bottom:504.321200pt;}
.yb{bottom:505.417467pt;}
.y1b7{bottom:507.740533pt;}
.y9f{bottom:507.917867pt;}
.y1fb{bottom:508.012133pt;}
.y105{bottom:508.491867pt;}
.y7f{bottom:509.538933pt;}
.yc5{bottom:510.970267pt;}
.y125{bottom:511.926533pt;}
.y28b{bottom:512.815867pt;}
.y172{bottom:513.191733pt;}
.y5a{bottom:513.681067pt;}
.ye3{bottom:514.165200pt;}
.y271{bottom:517.431200pt;}
.y321{bottom:518.501600pt;}
.y14a{bottom:520.146000pt;}
.y191{bottom:520.536800pt;}
.y2d{bottom:522.354400pt;}
.y239{bottom:522.951200pt;}
.y2ea{bottom:523.525867pt;}
.y30b{bottom:523.875867pt;}
.y9e{bottom:525.949867pt;}
.y1b6{bottom:526.155867pt;}
.y1fa{bottom:526.412133pt;}
.y104{bottom:526.861200pt;}
.y7e{bottom:527.846933pt;}
.y1da{bottom:529.161200pt;}
.yc4{bottom:529.186267pt;}
.y218{bottom:530.078800pt;}
.y124{bottom:530.081200pt;}
.y2a9{bottom:530.771200pt;}
.y28a{bottom:531.307867pt;}
.y59{bottom:531.728400pt;}
.y171{bottom:533.391733pt;}
.y320{bottom:536.168267pt;}
.ye2{bottom:536.337200pt;}
.y270{bottom:536.429200pt;}
.y149{bottom:538.592000pt;}
.y190{bottom:539.059467pt;}
.y2c{bottom:541.061067pt;}
.y238{bottom:541.581200pt;}
.y30a{bottom:541.879867pt;}
.y2e9{bottom:542.719867pt;}
.y9d{bottom:543.981867pt;}
.y2cc{bottom:544.371867pt;}
.y1b5{bottom:544.571200pt;}
.y1f9{bottom:544.812133pt;}
.y103{bottom:545.230533pt;}
.y7d{bottom:546.154933pt;}
.y1d9{bottom:547.377200pt;}
.yc3{bottom:547.402267pt;}
.y217{bottom:548.233467pt;}
.y123{bottom:548.235867pt;}
.y2a8{bottom:548.879867pt;}
.y58{bottom:549.775733pt;}
.y289{bottom:549.799867pt;}
.y170{bottom:553.591733pt;}
.y31f{bottom:553.834933pt;}
.y26f{bottom:555.427200pt;}
.y148{bottom:557.038000pt;}
.ya{bottom:557.391467pt;}
.ye1{bottom:558.509200pt;}
.y2b{bottom:559.767733pt;}
.y237{bottom:560.211200pt;}
.y2e8{bottom:561.913867pt;}
.y9c{bottom:562.013867pt;}
.y346{bottom:562.171333pt;}
.y2cb{bottom:562.802533pt;}
.y1b4{bottom:562.986533pt;}
.y1f8{bottom:563.212133pt;}
.y102{bottom:563.599867pt;}
.y7c{bottom:564.462933pt;}
.y1d8{bottom:565.593200pt;}
.yc2{bottom:565.618267pt;}
.y216{bottom:566.388133pt;}
.y122{bottom:566.390533pt;}
.y2a7{bottom:566.988533pt;}
.y309{bottom:567.443867pt;}
.y57{bottom:567.823067pt;}
.y31e{bottom:571.501600pt;}
.y16f{bottom:573.791733pt;}
.y26e{bottom:574.425200pt;}
.y147{bottom:575.484000pt;}
.y18f{bottom:576.486000pt;}
.y2a{bottom:578.472533pt;}
.y236{bottom:578.841200pt;}
.y9b{bottom:580.045867pt;}
.y345{bottom:580.171333pt;}
.ye0{bottom:580.681200pt;}
.y2ca{bottom:581.233200pt;}
.y1b3{bottom:581.401867pt;}
.y1f7{bottom:581.612133pt;}
.y101{bottom:581.969200pt;}
.y9{bottom:582.012800pt;}
.y7b{bottom:582.770933pt;}
.y1d7{bottom:583.809200pt;}
.yc1{bottom:583.834267pt;}
.y215{bottom:584.542800pt;}
.y121{bottom:584.545200pt;}
.y2a6{bottom:585.097200pt;}
.y308{bottom:585.447867pt;}
.y56{bottom:585.870400pt;}
.y2e7{bottom:588.667867pt;}
.y31d{bottom:589.168267pt;}
.y26d{bottom:593.423200pt;}
.y146{bottom:593.930000pt;}
.y16e{bottom:593.991733pt;}
.y29{bottom:597.177333pt;}
.y235{bottom:597.471200pt;}
.y9a{bottom:598.077867pt;}
.y344{bottom:598.171333pt;}
.y18e{bottom:598.338000pt;}
.y288{bottom:598.989200pt;}
.y2c9{bottom:599.663867pt;}
.y1b2{bottom:599.817200pt;}
.y1f6{bottom:600.012133pt;}
.y100{bottom:600.338533pt;}
.y7a{bottom:601.078933pt;}
.y1d6{bottom:602.025200pt;}
.yc0{bottom:602.050267pt;}
.y214{bottom:602.697467pt;}
.y120{bottom:602.699867pt;}
.ydf{bottom:602.853200pt;}
.y2a5{bottom:603.205867pt;}
.y55{bottom:603.894133pt;}
.y31c{bottom:606.834933pt;}
.y2e6{bottom:607.861867pt;}
.y307{bottom:611.011867pt;}
.y145{bottom:612.376000pt;}
.y26c{bottom:612.421200pt;}
.y16d{bottom:614.191733pt;}
.y28{bottom:615.882267pt;}
.y234{bottom:616.101200pt;}
.y99{bottom:616.109867pt;}
.y343{bottom:616.171333pt;}
.y16b{bottom:616.298400pt;}
.y287{bottom:617.481200pt;}
.y2c8{bottom:618.094533pt;}
.y1f5{bottom:618.412133pt;}
.yff{bottom:618.707867pt;}
.y1d5{bottom:620.241200pt;}
.ybf{bottom:620.266267pt;}
.y213{bottom:620.852133pt;}
.y11f{bottom:620.854533pt;}
.y2a4{bottom:621.314533pt;}
.y54{bottom:621.941467pt;}
.y31b{bottom:624.501600pt;}
.yde{bottom:625.025200pt;}
.y8{bottom:625.515733pt;}
.y2e5{bottom:627.055867pt;}
.y306{bottom:629.015867pt;}
.y144{bottom:630.822000pt;}
.y26b{bottom:631.419200pt;}
.y16a{bottom:632.298400pt;}
.y98{bottom:634.141867pt;}
.y16c{bottom:634.405067pt;}
.y27{bottom:634.583333pt;}
.y233{bottom:634.731200pt;}
.y286{bottom:635.973200pt;}
.y2c7{bottom:636.525200pt;}
.y1b1{bottom:636.663200pt;}
.y1f4{bottom:636.812133pt;}
.yfe{bottom:637.077200pt;}
.y79{bottom:637.668400pt;}
.y1d4{bottom:638.457200pt;}
.ybe{bottom:638.482267pt;}
.y212{bottom:639.006800pt;}
.y11e{bottom:639.009200pt;}
.y2a3{bottom:639.423200pt;}
.y53{bottom:639.988800pt;}
.y31a{bottom:642.168267pt;}
.y342{bottom:645.504667pt;}
.y2e4{bottom:646.249867pt;}
.ydd{bottom:647.197200pt;}
.y143{bottom:649.268000pt;}
.y26a{bottom:650.417200pt;}
.y97{bottom:652.173867pt;}
.y26{bottom:653.290000pt;}
.y232{bottom:653.361200pt;}
.y7{bottom:654.147733pt;}
.y18d{bottom:654.219867pt;}
.y285{bottom:654.465200pt;}
.y305{bottom:654.579867pt;}
.y2c6{bottom:654.955867pt;}
.y1b0{bottom:655.078533pt;}
.y1f3{bottom:655.212133pt;}
.yfd{bottom:655.446533pt;}
.y78{bottom:655.976400pt;}
.y1d3{bottom:656.673200pt;}
.ybd{bottom:656.698267pt;}
.y211{bottom:657.161467pt;}
.y11d{bottom:657.163867pt;}
.y2a2{bottom:657.531867pt;}
.y52{bottom:658.036133pt;}
.y319{bottom:659.834933pt;}
.y169{bottom:662.832533pt;}
.y142{bottom:667.714000pt;}
.ydc{bottom:669.369200pt;}
.y269{bottom:669.415200pt;}
.y96{bottom:670.205867pt;}
.y231{bottom:671.991200pt;}
.y25{bottom:671.996667pt;}
.y304{bottom:672.583867pt;}
.y18c{bottom:672.742533pt;}
.y284{bottom:672.957200pt;}
.y2e3{bottom:673.003867pt;}
.y2c5{bottom:673.386533pt;}
.y1af{bottom:673.493867pt;}
.y1f2{bottom:673.612133pt;}
.yfc{bottom:673.815867pt;}
.y77{bottom:674.245200pt;}
.y1d2{bottom:674.889200pt;}
.ybc{bottom:674.892800pt;}
.y210{bottom:675.316133pt;}
.y11c{bottom:675.318533pt;}
.y2a1{bottom:675.640533pt;}
.y51{bottom:676.083467pt;}
.y318{bottom:677.501600pt;}
.y341{bottom:682.398000pt;}
.y6{bottom:682.779733pt;}
.y141{bottom:686.160000pt;}
.y95{bottom:688.237867pt;}
.y268{bottom:688.413200pt;}
.y230{bottom:690.621200pt;}
.y24{bottom:690.703333pt;}
.y18b{bottom:691.265200pt;}
.y283{bottom:691.449200pt;}
.ydb{bottom:691.541200pt;}
.y2c4{bottom:691.817200pt;}
.y1ae{bottom:691.909200pt;}
.y1f1{bottom:692.001200pt;}
.yfb{bottom:692.185200pt;}
.y76{bottom:692.553200pt;}
.y1d1{bottom:693.105200pt;}
.ybb{bottom:693.108800pt;}
.y20f{bottom:693.470800pt;}
.y11b{bottom:693.473200pt;}
.y2a0{bottom:693.749200pt;}
.y50{bottom:694.130800pt;}
.y317{bottom:695.168267pt;}
.y303{bottom:698.147867pt;}
.y340{bottom:699.731333pt;}
.y2e2{bottom:699.757867pt;}
.y168{bottom:701.277867pt;}
.y140{bottom:704.606000pt;}
.y94{bottom:706.269867pt;}
.y267{bottom:707.411200pt;}
.y22f{bottom:709.251200pt;}
.y18a{bottom:709.787867pt;}
.y282{bottom:709.941200pt;}
.y2c3{bottom:710.247867pt;}
.y1ad{bottom:710.324533pt;}
.y1f0{bottom:710.401200pt;}
.yfa{bottom:710.554533pt;}
.y75{bottom:710.861200pt;}
.y1d0{bottom:711.321200pt;}
.yba{bottom:711.324800pt;}
.y20e{bottom:711.625467pt;}
.y11a{bottom:711.627867pt;}
.y29f{bottom:711.857867pt;}
.y4f{bottom:712.178133pt;}
.yda{bottom:713.713200pt;}
.y302{bottom:716.151867pt;}
.y33f{bottom:717.064667pt;}
.y2e1{bottom:718.951867pt;}
.y167{bottom:721.502533pt;}
.y13f{bottom:723.052000pt;}
.y316{bottom:724.168267pt;}
.y93{bottom:724.301867pt;}
.y266{bottom:726.409200pt;}
.y22e{bottom:727.881200pt;}
.y23{bottom:728.305867pt;}
.y189{bottom:728.310533pt;}
.y281{bottom:728.433200pt;}
.y2c2{bottom:728.678533pt;}
.y1ac{bottom:728.739867pt;}
.y1ef{bottom:728.801200pt;}
.yf9{bottom:728.923867pt;}
.y74{bottom:729.169200pt;}
.y1cf{bottom:729.537200pt;}
.yb9{bottom:729.540800pt;}
.y20d{bottom:729.780133pt;}
.y119{bottom:729.782533pt;}
.y29e{bottom:729.966533pt;}
.y4e{bottom:730.211867pt;}
.y33e{bottom:734.398000pt;}
.yd9{bottom:735.885200pt;}
.y5{bottom:737.851467pt;}
.y2e0{bottom:738.145867pt;}
.y13e{bottom:741.498000pt;}
.y301{bottom:741.715867pt;}
.y166{bottom:741.727200pt;}
.y92{bottom:742.333867pt;}
.y265{bottom:745.407200pt;}
.y22d{bottom:746.511200pt;}
.y188{bottom:746.833200pt;}
.y280{bottom:746.925200pt;}
.y2c1{bottom:747.109200pt;}
.y1ab{bottom:747.155200pt;}
.y1ee{bottom:747.201200pt;}
.yf8{bottom:747.293200pt;}
.y73{bottom:747.477200pt;}
.y1ce{bottom:747.753200pt;}
.yb8{bottom:747.756800pt;}
.y20c{bottom:747.934800pt;}
.y118{bottom:747.937200pt;}
.y29d{bottom:748.075200pt;}
.y4d{bottom:748.259200pt;}
.y33d{bottom:751.731333pt;}
.y4{bottom:757.144800pt;}
.yd8{bottom:758.057200pt;}
.y300{bottom:759.719867pt;}
.y165{bottom:761.951867pt;}
.y264{bottom:764.405200pt;}
.y2df{bottom:764.899867pt;}
.y22c{bottom:765.141200pt;}
.y187{bottom:765.355867pt;}
.y27f{bottom:765.417200pt;}
.y2c0{bottom:765.539867pt;}
.y1aa{bottom:765.570533pt;}
.y1ed{bottom:765.601200pt;}
.yf7{bottom:765.662533pt;}
.y72{bottom:765.785200pt;}
.y1cd{bottom:765.969200pt;}
.yb7{bottom:765.972800pt;}
.y117{bottom:766.091867pt;}
.y29c{bottom:766.183867pt;}
.y4c{bottom:766.306533pt;}
.y33c{bottom:769.064667pt;}
.y315{bottom:775.843067pt;}
.y13d{bottom:778.847733pt;}
.y91{bottom:779.261733pt;}
.yd7{bottom:780.229200pt;}
.y164{bottom:782.176533pt;}
.y263{bottom:783.403200pt;}
.y22b{bottom:783.771200pt;}
.y186{bottom:783.878533pt;}
.y27e{bottom:783.909200pt;}
.y2bf{bottom:783.970533pt;}
.y1a9{bottom:783.985867pt;}
.y3{bottom:783.998133pt;}
.y1ec{bottom:784.001200pt;}
.yf6{bottom:784.031867pt;}
.y71{bottom:784.093200pt;}
.y2de{bottom:784.093867pt;}
.yb6{bottom:784.185200pt;}
.y116{bottom:784.246533pt;}
.y29b{bottom:784.292533pt;}
.y4b{bottom:784.353867pt;}
.y22{bottom:784.358000pt;}
.y2ff{bottom:785.283867pt;}
.y33b{bottom:786.398000pt;}
.y314{bottom:800.184400pt;}
.y90{bottom:800.627733pt;}
.y4a{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y21{bottom:803.727600pt;}
.y33a{bottom:803.731333pt;}
.y20{bottom:842.834667pt;}
.y49{bottom:858.834667pt;}
.h12{height:22.190437pt;}
.hf{height:30.107146pt;}
.h8{height:36.229167pt;}
.h13{height:39.060271pt;}
.h10{height:40.757812pt;}
.h4{height:45.286458pt;}
.h9{height:45.301392pt;}
.h20{height:46.328125pt;}
.h3{height:47.550781pt;}
.h1e{height:48.635417pt;}
.h11{height:49.710938pt;}
.h15{height:49.732271pt;}
.he{height:52.079427pt;}
.h18{height:52.083694pt;}
.h1a{height:52.165294pt;}
.h14{height:52.173827pt;}
.h16{height:52.236227pt;}
.h21{height:52.350894pt;}
.h22{height:54.343750pt;}
.h7{height:55.234375pt;}
.h2{height:56.608073pt;}
.h24{height:57.996094pt;}
.h1f{height:60.366938pt;}
.ha{height:61.136719pt;}
.h6{height:63.401042pt;}
.hb{height:63.519531pt;}
.h1d{height:63.521131pt;}
.hc{height:63.526465pt;}
.hd{height:63.526998pt;}
.h19{height:63.533931pt;}
.h1c{height:63.536598pt;}
.h1b{height:63.541931pt;}
.h17{height:63.564331pt;}
.h23{height:66.281250pt;}
.h5{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:73.079333pt;}
.xb{left:74.360400pt;}
.x1{left:75.590533pt;}
.x11{left:81.861600pt;}
.x12{left:83.514933pt;}
.x8{left:91.056267pt;}
.x9{left:92.198800pt;}
.x5{left:93.359333pt;}
.x4{left:94.267200pt;}
.x18{left:95.364133pt;}
.xd{left:103.274933pt;}
.xe{left:113.514933pt;}
.x17{left:115.429733pt;}
.x19{left:116.694800pt;}
.xa{left:118.173467pt;}
.xc{left:119.124800pt;}
.x13{left:128.765333pt;}
.x7{left:189.034533pt;}
.x3{left:206.535467pt;}
.x2{left:207.480400pt;}
.x10{left:231.728267pt;}
.xf{left:248.581600pt;}
.x16{left:251.352000pt;}
.x15{left:257.165333pt;}
.x14{left:268.925333pt;}
}




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