
    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_3eac9f052db6c2206d6f06c5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.110000;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_fae5797c6d61f56924075404.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.115000;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_3eac9f052db6c2206d6f06c5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.110000;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_fe171ca7a6efdb88a618c9e2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.045000;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_5a30d6b422acd726df24d607.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.099000;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_8b5a10028e4e51066fc2f582.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.984000;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_33081f5443ac029bb54ac4d9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.881836;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_5a30d6b422acd726df24d607.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.099000;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_3eac9f052db6c2206d6f06c5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.110000;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_3eac9f052db6c2206d6f06c5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.110000;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_556c7d244aae34ac784e4753.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.851000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-51.496723px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.800000px;}
.v4{vertical-align:41.777876px;}
.v5{vertical-align:44.408100px;}
.v2{vertical-align:63.000000px;}
.ls3e{letter-spacing:-4.260000px;}
.ls32{letter-spacing:-0.924000px;}
.ls34{letter-spacing:-0.792000px;}
.ls33{letter-spacing:-0.726000px;}
.ls2d{letter-spacing:-0.660000px;}
.ls58{letter-spacing:-0.600000px;}
.ls35{letter-spacing:-0.594000px;}
.lsa{letter-spacing:-0.570000px;}
.ls6c{letter-spacing:-0.540000px;}
.ls2c{letter-spacing:-0.528000px;}
.ls2b{letter-spacing:-0.462000px;}
.ls4c{letter-spacing:-0.420000px;}
.ls9{letter-spacing:-0.399000px;}
.ls2e{letter-spacing:-0.396000px;}
.ls5a{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.342000px;}
.ls21{letter-spacing:-0.330000px;}
.ls4d{letter-spacing:-0.300000px;}
.ls8{letter-spacing:-0.285000px;}
.ls24{letter-spacing:-0.264000px;}
.ls59{letter-spacing:-0.240000px;}
.lsb{letter-spacing:-0.228000px;}
.ls23{letter-spacing:-0.198000px;}
.ls7{letter-spacing:-0.171000px;}
.ls20{letter-spacing:-0.132000px;}
.ls1f{letter-spacing:-0.066000px;}
.ls6a{letter-spacing:-0.060000px;}
.ls6{letter-spacing:-0.057000px;}
.ls51{letter-spacing:-0.041797px;}
.ls5{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.028500px;}
.ls46{letter-spacing:0.033000px;}
.ls50{letter-spacing:0.060000px;}
.ls2f{letter-spacing:0.066000px;}
.ls3d{letter-spacing:0.099000px;}
.lse{letter-spacing:0.114000px;}
.ls48{letter-spacing:0.120000px;}
.ls15{letter-spacing:0.132000px;}
.lsf{letter-spacing:0.142500px;}
.ls52{letter-spacing:0.165000px;}
.ls4{letter-spacing:0.171000px;}
.ls63{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.198000px;}
.ls5f{letter-spacing:0.210000px;}
.lsc{letter-spacing:0.228000px;}
.ls45{letter-spacing:0.231000px;}
.ls69{letter-spacing:0.240000px;}
.ls27{letter-spacing:0.264000px;}
.ls6b{letter-spacing:0.270000px;}
.ls61{letter-spacing:0.277800px;}
.ls3{letter-spacing:0.285000px;}
.ls60{letter-spacing:0.300000px;}
.ls19{letter-spacing:0.330000px;}
.ls0{letter-spacing:0.342000px;}
.ls17{letter-spacing:0.396000px;}
.ls68{letter-spacing:0.420000px;}
.ls36{letter-spacing:0.429000px;}
.lsd{letter-spacing:0.456000px;}
.ls2a{letter-spacing:0.462000px;}
.ls4f{letter-spacing:0.480000px;}
.ls40{letter-spacing:0.495000px;}
.ls11{letter-spacing:0.513000px;}
.ls37{letter-spacing:0.528000px;}
.ls57{letter-spacing:0.540000px;}
.ls3b{letter-spacing:0.561000px;}
.ls10{letter-spacing:0.570000px;}
.ls30{letter-spacing:0.594000px;}
.ls5e{letter-spacing:0.599400px;}
.ls5b{letter-spacing:0.600000px;}
.ls2{letter-spacing:0.627000px;}
.ls22{letter-spacing:0.660000px;}
.ls43{letter-spacing:0.686400px;}
.ls65{letter-spacing:0.690000px;}
.ls54{letter-spacing:0.691800px;}
.ls53{letter-spacing:0.693000px;}
.ls16{letter-spacing:0.726000px;}
.ls5c{letter-spacing:0.750000px;}
.ls5d{letter-spacing:0.750600px;}
.ls4e{letter-spacing:0.759000px;}
.ls56{letter-spacing:0.780000px;}
.ls1c{letter-spacing:0.792000px;}
.ls1{letter-spacing:0.855000px;}
.ls14{letter-spacing:0.858000px;}
.ls3f{letter-spacing:0.891000px;}
.ls1d{letter-spacing:0.924000px;}
.ls41{letter-spacing:0.957000px;}
.ls62{letter-spacing:0.960000px;}
.ls44{letter-spacing:0.973200px;}
.ls25{letter-spacing:0.990000px;}
.ls3a{letter-spacing:1.056000px;}
.ls26{letter-spacing:1.122000px;}
.ls49{letter-spacing:1.140000px;}
.ls1b{letter-spacing:1.155000px;}
.ls55{letter-spacing:1.188000px;}
.ls1e{letter-spacing:1.254000px;}
.ls28{letter-spacing:1.320000px;}
.ls31{letter-spacing:1.327800px;}
.ls64{letter-spacing:1.380000px;}
.ls18{letter-spacing:1.386000px;}
.ls3c{letter-spacing:1.452000px;}
.ls42{letter-spacing:1.518000px;}
.ls29{letter-spacing:1.584000px;}
.ls66{letter-spacing:1.740000px;}
.ls67{letter-spacing:1.860000px;}
.ls39{letter-spacing:1.914000px;}
.ls4b{letter-spacing:1.980000px;}
.ls38{letter-spacing:2.112000px;}
.ls47{letter-spacing:2.400000px;}
.ls4a{letter-spacing:2.580000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws49{word-spacing:-60.000000px;}
.ws4a{word-spacing:-55.740000px;}
.ws22{word-spacing:-16.632000px;}
.ws11{word-spacing:-16.500000px;}
.ws72{word-spacing:-16.380000px;}
.ws35{word-spacing:-16.368000px;}
.ws73{word-spacing:-16.320000px;}
.ws10{word-spacing:-16.302000px;}
.ws2f{word-spacing:-16.170000px;}
.ws21{word-spacing:-16.038000px;}
.ws2e{word-spacing:-15.840000px;}
.ws6d{word-spacing:-15.750000px;}
.ws70{word-spacing:-15.600000px;}
.ws65{word-spacing:-15.480000px;}
.ws6f{word-spacing:-15.240000px;}
.ws6e{word-spacing:-15.210000px;}
.ws71{word-spacing:-15.180000px;}
.ws66{word-spacing:-15.000000px;}
.ws74{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.478000px;}
.ws63{word-spacing:-13.770000px;}
.wsb{word-spacing:-12.240000px;}
.ws4b{word-spacing:-10.500000px;}
.ws61{word-spacing:-10.449300px;}
.ws60{word-spacing:-7.183800px;}
.ws7f{word-spacing:-3.660000px;}
.ws7c{word-spacing:-2.460000px;}
.ws80{word-spacing:-1.380000px;}
.ws6c{word-spacing:-1.260000px;}
.ws16{word-spacing:-0.858000px;}
.ws9{word-spacing:-0.855000px;}
.ws13{word-spacing:-0.792000px;}
.ws5f{word-spacing:-0.780000px;}
.wsa{word-spacing:-0.741000px;}
.ws41{word-spacing:-0.726000px;}
.ws58{word-spacing:-0.720000px;}
.ws2{word-spacing:-0.684000px;}
.ws15{word-spacing:-0.660000px;}
.ws75{word-spacing:-0.600000px;}
.ws1f{word-spacing:-0.594000px;}
.ws8{word-spacing:-0.570000px;}
.ws68{word-spacing:-0.540000px;}
.ws19{word-spacing:-0.528000px;}
.ws29{word-spacing:-0.462000px;}
.ws4{word-spacing:-0.456000px;}
.ws76{word-spacing:-0.420000px;}
.ws23{word-spacing:-0.396000px;}
.ws6b{word-spacing:-0.360000px;}
.ws3e{word-spacing:-0.330000px;}
.ws57{word-spacing:-0.264000px;}
.ws67{word-spacing:-0.240000px;}
.ws3c{word-spacing:-0.198000px;}
.ws37{word-spacing:-0.132000px;}
.ws77{word-spacing:-0.120000px;}
.ws5{word-spacing:-0.114000px;}
.ws2d{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
.ws64{word-spacing:0.041797px;}
.ws6a{word-spacing:0.060000px;}
.ws44{word-spacing:0.066000px;}
.ws1c{word-spacing:0.132000px;}
.ws7b{word-spacing:0.180000px;}
.ws1d{word-spacing:0.198000px;}
.wsf{word-spacing:0.228000px;}
.ws33{word-spacing:0.264000px;}
.ws3{word-spacing:0.285000px;}
.ws3f{word-spacing:0.330000px;}
.ws82{word-spacing:0.360000px;}
.ws12{word-spacing:0.396000px;}
.ws27{word-spacing:0.462000px;}
.ws31{word-spacing:0.594000px;}
.ws7a{word-spacing:0.600000px;}
.ws1a{word-spacing:0.660000px;}
.ws56{word-spacing:0.726000px;}
.ws78{word-spacing:0.780000px;}
.ws3a{word-spacing:0.792000px;}
.ws36{word-spacing:0.858000px;}
.ws2a{word-spacing:0.924000px;}
.ws54{word-spacing:0.990000px;}
.ws39{word-spacing:1.056000px;}
.ws38{word-spacing:1.122000px;}
.ws1{word-spacing:1.140000px;}
.ws1e{word-spacing:1.188000px;}
.ws7d{word-spacing:1.260000px;}
.wse{word-spacing:1.311000px;}
.ws25{word-spacing:1.320000px;}
.ws24{word-spacing:1.386000px;}
.ws6{word-spacing:1.425000px;}
.ws3b{word-spacing:1.452000px;}
.ws5a{word-spacing:1.500000px;}
.ws3d{word-spacing:1.518000px;}
.ws69{word-spacing:1.560000px;}
.ws30{word-spacing:1.584000px;}
.ws79{word-spacing:1.620000px;}
.ws18{word-spacing:1.650000px;}
.ws14{word-spacing:1.716000px;}
.ws7{word-spacing:1.767000px;}
.ws17{word-spacing:1.782000px;}
.ws20{word-spacing:1.848000px;}
.ws55{word-spacing:1.914000px;}
.ws47{word-spacing:1.980000px;}
.ws26{word-spacing:2.046000px;}
.ws51{word-spacing:2.112000px;}
.ws43{word-spacing:2.178000px;}
.ws5b{word-spacing:2.220000px;}
.ws34{word-spacing:2.244000px;}
.ws28{word-spacing:2.310000px;}
.ws5d{word-spacing:2.340000px;}
.ws32{word-spacing:2.376000px;}
.wsd{word-spacing:2.451000px;}
.ws42{word-spacing:2.508000px;}
.ws45{word-spacing:2.574000px;}
.ws7e{word-spacing:2.580000px;}
.ws2b{word-spacing:2.640000px;}
.ws1b{word-spacing:2.772000px;}
.ws46{word-spacing:2.838000px;}
.ws2c{word-spacing:3.102000px;}
.ws5e{word-spacing:3.960000px;}
.ws40{word-spacing:4.290000px;}
.ws59{word-spacing:4.800000px;}
.ws5c{word-spacing:5.100000px;}
.ws4c{word-spacing:62.763000px;}
.ws4d{word-spacing:74.930400px;}
.ws81{word-spacing:75.000000px;}
.ws4e{word-spacing:115.592400px;}
.ws52{word-spacing:216.817200px;}
.ws48{word-spacing:307.696800px;}
.ws53{word-spacing:373.533000px;}
.ws4f{word-spacing:423.351000px;}
.ws50{word-spacing:519.831000px;}
.ws62{word-spacing:1741.993578px;}
._1b{margin-left:-38.297376px;}
._23{margin-left:-36.106157px;}
._27{margin-left:-32.952768px;}
._1f{margin-left:-31.433395px;}
._22{margin-left:-29.633213px;}
._1e{margin-left:-28.350336px;}
._1d{margin-left:-25.916966px;}
._26{margin-left:-22.695043px;}
._b{margin-left:-20.916000px;}
._c{margin-left:-19.662000px;}
._a{margin-left:-18.606000px;}
._8{margin-left:-16.497000px;}
._d{margin-left:-12.043200px;}
._5a{margin-left:-10.596600px;}
._25{margin-left:-8.911968px;}
._1c{margin-left:-7.803994px;}
._59{margin-left:-6.511650px;}
._24{margin-left:-5.491699px;}
._31{margin-left:-4.266000px;}
._2{margin-left:-2.931600px;}
._3{margin-left:-1.516800px;}
._6{width:1.287000px;}
._7{width:2.518200px;}
._32{width:4.260000px;}
._21{width:21.388723px;}
._10{width:25.820621px;}
._20{width:33.208848px;}
._0{width:35.996400px;}
._55{width:40.194000px;}
._57{width:41.934000px;}
._56{width:43.506000px;}
._29{width:44.752531px;}
._54{width:46.807469px;}
._43{width:50.563800px;}
._19{width:52.074797px;}
._1a{width:53.134598px;}
._2c{width:59.397062px;}
._2d{width:60.408691px;}
._50{width:61.915903px;}
._51{width:65.464973px;}
._12{width:66.767501px;}
._52{width:68.831143px;}
._53{width:70.454049px;}
._4f{width:73.641574px;}
._9{width:80.377200px;}
._44{width:84.051000px;}
._34{width:117.142800px;}
._11{width:123.033331px;}
._2b{width:130.933670px;}
._30{width:145.129800px;}
._2e{width:149.817408px;}
._3a{width:151.384800px;}
._39{width:160.592400px;}
._35{width:173.104800px;}
._36{width:184.157400px;}
._49{width:186.607800px;}
._37{width:190.790400px;}
._38{width:200.113800px;}
._2a{width:205.456992px;}
._3d{width:214.157400px;}
._3b{width:220.790400px;}
._15{width:227.568307px;}
._28{width:231.855686px;}
._3e{width:239.344800px;}
._33{width:250.368000px;}
._e{width:262.300896px;}
._13{width:265.432128px;}
._f{width:274.873997px;}
._2f{width:279.760200px;}
._48{width:298.250400px;}
._4c{width:303.879600px;}
._47{width:313.723800px;}
._5{width:335.183400px;}
._41{width:344.203800px;}
._14{width:361.103309px;}
._17{width:364.282714px;}
._16{width:368.799638px;}
._18{width:386.297683px;}
._4b{width:388.533000px;}
._4e{width:391.839600px;}
._1{width:408.282000px;}
._4a{width:424.100400px;}
._3c{width:463.684800px;}
._40{width:473.503800px;}
._3f{width:490.851000px;}
._42{width:496.251000px;}
._46{width:534.831000px;}
._4d{width:541.179600px;}
._45{width:743.794800px;}
._4{width:1259.658000px;}
._58{width:1656.874637px;}
.fc2{color:rgb(5,3,1);}
.fc1{color:transparent;}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:28.735200px;}
.fsd{font-size:41.797200px;}
.fs1{font-size:42.000000px;}
.fsa{font-size:47.762400px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:48.172200px;}
.fs7{font-size:48.172800px;}
.fsb{font-size:48.323400px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs9{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.y1d5{bottom:-9.417750px;}
.yf4{bottom:-1.543350px;}
.y207{bottom:-1.327200px;}
.y101{bottom:-1.311150px;}
.y106{bottom:-0.261900px;}
.y0{bottom:0.000000px;}
.y10e{bottom:0.265500px;}
.y10c{bottom:0.791700px;}
.y124{bottom:1.315050px;}
.y117{bottom:2.368050px;}
.y109{bottom:2.628900px;}
.yff{bottom:2.631600px;}
.y110{bottom:3.418800px;}
.y10b{bottom:4.207500px;}
.y119{bottom:4.993050px;}
.y114{bottom:4.994700px;}
.y126{bottom:6.571500px;}
.yf6{bottom:8.937600px;}
.y111{bottom:25.754550px;}
.yfb{bottom:26.805600px;}
.y127{bottom:30.220800px;}
.y11f{bottom:39.678900px;}
.y2{bottom:51.852750px;}
.yf2{bottom:89.630550px;}
.y2c5{bottom:89.946300px;}
.y26{bottom:90.874650px;}
.y1d3{bottom:91.859850px;}
.y284{bottom:92.487300px;}
.y285{bottom:92.487450px;}
.y295{bottom:93.139350px;}
.y206{bottom:93.375300px;}
.ya3{bottom:94.146300px;}
.ye7{bottom:94.509450px;}
.y1ba{bottom:94.670400px;}
.y7a{bottom:94.872750px;}
.y193{bottom:100.596300px;}
.y24d{bottom:103.242150px;}
.y16e{bottom:104.443050px;}
.y2c4{bottom:105.846450px;}
.y25{bottom:105.874650px;}
.yf8{bottom:106.019400px;}
.y282{bottom:106.625700px;}
.yf1{bottom:106.880550px;}
.y294{bottom:108.889350px;}
.y1d2{bottom:109.109850px;}
.y205{bottom:110.625300px;}
.ya2{bottom:111.396150px;}
.yb9{bottom:111.396300px;}
.ye6{bottom:111.759450px;}
.y1b9{bottom:111.920400px;}
.y79{bottom:112.122600px;}
.y23b{bottom:117.512700px;}
.y278{bottom:119.043750px;}
.y24c{bottom:120.492150px;}
.y24{bottom:120.874650px;}
.y16d{bottom:121.693050px;}
.y2c3{bottom:121.746450px;}
.y192{bottom:121.977150px;}
.yf0{bottom:124.130550px;}
.y293{bottom:124.639350px;}
.y1d1{bottom:126.359850px;}
.y204{bottom:127.875300px;}
.ya1{bottom:128.646150px;}
.yb8{bottom:128.646300px;}
.ye5{bottom:129.009450px;}
.y1b8{bottom:129.170400px;}
.y78{bottom:129.372600px;}
.y23a{bottom:133.262700px;}
.y23{bottom:135.874650px;}
.y2c2{bottom:137.646450px;}
.y24b{bottom:137.742150px;}
.y16c{bottom:138.943050px;}
.y271{bottom:139.013550px;}
.y292{bottom:140.389350px;}
.yef{bottom:141.380550px;}
.y1d0{bottom:143.609850px;}
.y203{bottom:145.125300px;}
.ya0{bottom:145.896150px;}
.yb7{bottom:145.896300px;}
.ye4{bottom:146.259450px;}
.y1b7{bottom:146.420400px;}
.y77{bottom:146.622600px;}
.y239{bottom:149.012700px;}
.y22{bottom:150.874650px;}
.y2c1{bottom:153.546450px;}
.y24a{bottom:154.992150px;}
.y291{bottom:156.139350px;}
.y16b{bottom:156.193050px;}
.y191{bottom:157.196250px;}
.yee{bottom:158.630550px;}
.y1cf{bottom:160.859850px;}
.y202{bottom:162.375300px;}
.y9f{bottom:163.146150px;}
.yb6{bottom:163.146300px;}
.ye3{bottom:163.509450px;}
.y1b6{bottom:163.670400px;}
.y76{bottom:163.872600px;}
.y238{bottom:168.481650px;}
.y2c0{bottom:169.446450px;}
.y290{bottom:171.889350px;}
.y249{bottom:172.242150px;}
.y16a{bottom:173.443050px;}
.y4f{bottom:175.442550px;}
.yed{bottom:175.880550px;}
.y1ce{bottom:178.109850px;}
.y190{bottom:178.456050px;}
.y201{bottom:179.625300px;}
.y9e{bottom:180.396150px;}
.yb5{bottom:180.396300px;}
.ye2{bottom:180.759450px;}
.y21{bottom:180.874650px;}
.y1b5{bottom:180.920400px;}
.y75{bottom:181.122600px;}
.y237{bottom:184.231650px;}
.y2bf{bottom:185.346450px;}
.y28f{bottom:187.639350px;}
.y248{bottom:189.492150px;}
.y4e{bottom:190.442550px;}
.y169{bottom:190.693050px;}
.yec{bottom:193.130550px;}
.y1cd{bottom:195.359850px;}
.y20{bottom:195.874650px;}
.y200{bottom:196.875300px;}
.y9d{bottom:197.646150px;}
.yb4{bottom:197.646300px;}
.ye1{bottom:198.009450px;}
.y1b4{bottom:198.170400px;}
.y74{bottom:198.372600px;}
.y18f{bottom:199.715850px;}
.y2be{bottom:201.246450px;}
.y28e{bottom:203.389350px;}
.y236{bottom:203.700600px;}
.y247{bottom:206.742150px;}
.y168{bottom:207.943050px;}
.yeb{bottom:210.380550px;}
.y4d{bottom:211.442550px;}
.y1cc{bottom:212.609850px;}
.y1ff{bottom:214.125300px;}
.y9c{bottom:214.896150px;}
.yb3{bottom:214.896300px;}
.ye0{bottom:215.259450px;}
.y1b3{bottom:215.420400px;}
.y18e{bottom:215.465850px;}
.y73{bottom:215.622600px;}
.y2bd{bottom:217.146450px;}
.y28d{bottom:219.139350px;}
.y235{bottom:219.450600px;}
.y246{bottom:223.992150px;}
.y167{bottom:225.193050px;}
.y4c{bottom:226.442550px;}
.yea{bottom:227.630550px;}
.y27c{bottom:228.108750px;}
.y1cb{bottom:229.859850px;}
.y27a{bottom:230.712150px;}
.y1fe{bottom:231.375300px;}
.y1f{bottom:231.874650px;}
.y9b{bottom:232.146150px;}
.yb2{bottom:232.146300px;}
.ydf{bottom:232.509450px;}
.y1b2{bottom:232.670400px;}
.y72{bottom:232.872600px;}
.y2bc{bottom:233.046450px;}
.y28c{bottom:234.889350px;}
.y18d{bottom:234.934800px;}
.y51{bottom:235.442550px;}
.y234{bottom:238.679550px;}
.y245{bottom:241.242150px;}
.y4b{bottom:241.442550px;}
.ye9{bottom:244.880550px;}
.y1e{bottom:246.874650px;}
.y1ca{bottom:247.109850px;}
.y1fd{bottom:248.625300px;}
.y2bb{bottom:248.946450px;}
.y9a{bottom:249.396150px;}
.yb1{bottom:249.396300px;}
.yde{bottom:249.759450px;}
.y1b1{bottom:249.920400px;}
.y71{bottom:250.122600px;}
.y28b{bottom:250.639350px;}
.y166{bottom:251.068050px;}
.y233{bottom:254.429550px;}
.y18c{bottom:256.194750px;}
.y50{bottom:256.442550px;}
.y26f{bottom:257.879400px;}
.y244{bottom:258.492150px;}
.ye8{bottom:262.130550px;}
.y4a{bottom:262.442550px;}
.y1c9{bottom:264.359850px;}
.y2ba{bottom:264.846450px;}
.y1fc{bottom:265.875300px;}
.y28a{bottom:266.389350px;}
.y99{bottom:266.646150px;}
.yb0{bottom:266.646300px;}
.ydd{bottom:267.009450px;}
.y1b0{bottom:267.170400px;}
.y70{bottom:267.372600px;}
.y1d{bottom:267.874650px;}
.y232{bottom:270.179550px;}
.y26b{bottom:273.163800px;}
.y243{bottom:275.742150px;}
.y49{bottom:277.442550px;}
.y18b{bottom:277.454550px;}
.y2b9{bottom:280.746450px;}
.y1c8{bottom:281.609850px;}
.y289{bottom:282.139350px;}
.y1c{bottom:282.874650px;}
.y1fb{bottom:283.125300px;}
.y98{bottom:283.896150px;}
.yaf{bottom:283.896300px;}
.ydc{bottom:284.259450px;}
.y1af{bottom:284.420400px;}
.y6f{bottom:284.622600px;}
.y231{bottom:289.648500px;}
.y48{bottom:292.442550px;}
.y242{bottom:292.992150px;}
.y275{bottom:293.987400px;}
.y165{bottom:294.193050px;}
.y2b8{bottom:296.646450px;}
.y1b{bottom:297.874650px;}
.y288{bottom:297.889350px;}
.y1c7{bottom:298.859850px;}
.y1fa{bottom:300.375300px;}
.y97{bottom:301.146150px;}
.yae{bottom:301.146300px;}
.ydb{bottom:301.509450px;}
.y1ae{bottom:301.670400px;}
.y6e{bottom:301.872600px;}
.y27f{bottom:304.518368px;}
.y12b{bottom:305.378850px;}
.y230{bottom:305.398500px;}
.y2b7{bottom:312.546450px;}
.y18a{bottom:312.673500px;}
.y164{bottom:312.694950px;}
.y1a{bottom:312.874650px;}
.y47{bottom:313.442550px;}
.y287{bottom:313.639350px;}
.y1c6{bottom:316.109850px;}
.y1f9{bottom:317.625300px;}
.y96{bottom:318.396150px;}
.yad{bottom:318.396300px;}
.yda{bottom:318.759450px;}
.y241{bottom:318.867150px;}
.y1ad{bottom:318.920400px;}
.y6d{bottom:319.122600px;}
.y12a{bottom:323.880750px;}
.y22f{bottom:324.867450px;}
.y19{bottom:327.874650px;}
.y2b6{bottom:328.446450px;}
.y266{bottom:330.641400px;}
.y1c5{bottom:333.359850px;}
.y1f8{bottom:334.875300px;}
.y95{bottom:335.646150px;}
.yac{bottom:335.646300px;}
.yd9{bottom:336.009450px;}
.y1ac{bottom:336.170400px;}
.y6c{bottom:336.372600px;}
.y46{bottom:338.245800px;}
.y189{bottom:338.517450px;}
.y22e{bottom:340.617450px;}
.y18{bottom:342.874650px;}
.y286{bottom:344.271150px;}
.y2b5{bottom:344.346450px;}
.yf3{bottom:344.410500px;}
.y161{bottom:348.684750px;}
.y163{bottom:350.184750px;}
.y1c4{bottom:350.609850px;}
.y1f7{bottom:352.125300px;}
.y94{bottom:352.896150px;}
.yab{bottom:352.896300px;}
.yd8{bottom:353.259450px;}
.y1ab{bottom:353.420400px;}
.y10a{bottom:356.266500px;}
.y22d{bottom:356.367450px;}
.y17{bottom:357.874650px;}
.y2b4{bottom:360.246450px;}
.y264{bottom:361.330950px;}
.y131{bottom:361.715700px;}
.y240{bottom:361.992150px;}
.y6b{bottom:364.252650px;}
.y160{bottom:364.434750px;}
.y274{bottom:365.909250px;}
.y162{bottom:365.934750px;}
.y1c3{bottom:367.859850px;}
.y1f6{bottom:369.375300px;}
.y93{bottom:370.146150px;}
.yaa{bottom:370.146300px;}
.yd7{bottom:370.509450px;}
.y1aa{bottom:370.670400px;}
.y188{bottom:371.517450px;}
.y16{bottom:372.874650px;}
.y22c{bottom:375.596400px;}
.y2b3{bottom:376.146450px;}
.y23f{bottom:379.242150px;}
.y277{bottom:379.618650px;}
.y27b{bottom:380.923650px;}
.y6a{bottom:381.502650px;}
.y15f{bottom:384.684750px;}
.y1c2{bottom:385.109850px;}
.y45{bottom:385.146150px;}
.y1f5{bottom:386.625300px;}
.ybe{bottom:387.396150px;}
.ya9{bottom:387.396300px;}
.yd6{bottom:387.759450px;}
.y15{bottom:387.874650px;}
.y1a9{bottom:387.920400px;}
.y187{bottom:388.767450px;}
.y108{bottom:390.688500px;}
.y22b{bottom:391.346400px;}
.y2b2{bottom:392.046450px;}
.y130{bottom:395.726250px;}
.y92{bottom:396.021150px;}
.y23e{bottom:396.492150px;}
.y44{bottom:400.146150px;}
.y15e{bottom:400.434750px;}
.y1c1{bottom:402.359850px;}
.y14{bottom:402.874650px;}
.y1f4{bottom:403.875300px;}
.ybd{bottom:404.646150px;}
.ya8{bottom:404.646300px;}
.yd5{bottom:405.009450px;}
.y186{bottom:406.017450px;}
.y22a{bottom:407.096400px;}
.y26e{bottom:407.428500px;}
.y2b1{bottom:407.946450px;}
.y26a{bottom:408.735600px;}
.y91{bottom:413.271150px;}
.y23d{bottom:413.742150px;}
.y265{bottom:415.537950px;}
.y15d{bottom:416.184750px;}
.y13{bottom:417.874650px;}
.y1c0{bottom:419.609850px;}
.y1f3{bottom:421.125300px;}
.y43{bottom:421.146150px;}
.ybc{bottom:421.896150px;}
.ya7{bottom:421.896300px;}
.yd4{bottom:422.259450px;}
.y1a8{bottom:422.420400px;}
.y185{bottom:423.267450px;}
.y2b0{bottom:423.846450px;}
.y100{bottom:425.371500px;}
.y229{bottom:426.565350px;}
.y268{bottom:426.639450px;}
.y12f{bottom:426.760500px;}
.y69{bottom:428.516400px;}
.y23c{bottom:430.992150px;}
.y15c{bottom:431.934750px;}
.y12{bottom:432.874650px;}
.y42{bottom:436.146150px;}
.y1bf{bottom:436.859850px;}
.y1f2{bottom:438.375300px;}
.ybb{bottom:439.146150px;}
.ya6{bottom:439.146300px;}
.yd3{bottom:439.509450px;}
.y2af{bottom:439.746450px;}
.y184{bottom:440.517450px;}
.y228{bottom:442.315350px;}
.y1a7{bottom:443.801400px;}
.y270{bottom:445.582950px;}
.y68{bottom:445.766400px;}
.y15b{bottom:447.684750px;}
.y11{bottom:447.874650px;}
.y41{bottom:451.146150px;}
.y1be{bottom:454.109850px;}
.y123{bottom:455.329500px;}
.y1f1{bottom:455.625300px;}
.y2ae{bottom:455.646450px;}
.y90{bottom:456.396150px;}
.ya5{bottom:456.396300px;}
.yd2{bottom:456.759450px;}
.y281{bottom:457.333500px;}
.y147{bottom:457.486200px;}
.y183{bottom:457.767450px;}
.y227{bottom:461.784300px;}
.yf5{bottom:461.895000px;}
.y10{bottom:462.874650px;}
.y67{bottom:463.016400px;}
.y1a6{bottom:463.270350px;}
.y15a{bottom:463.434750px;}
.y40{bottom:466.146150px;}
.y143{bottom:468.858750px;}
.y122{bottom:469.518600px;}
.y146{bottom:470.986200px;}
.y1bd{bottom:471.359850px;}
.y2ad{bottom:471.546450px;}
.y1f0{bottom:472.875300px;}
.y8f{bottom:473.646150px;}
.ya4{bottom:473.646300px;}
.yd1{bottom:474.009450px;}
.y182{bottom:475.017450px;}
.y226{bottom:477.534300px;}
.yf{bottom:477.874650px;}
.y1a5{bottom:479.020350px;}
.y159{bottom:479.184750px;}
.y66{bottom:480.266400px;}
.y3f{bottom:481.146150px;}
.y145{bottom:484.486200px;}
.y263{bottom:485.821050px;}
.y2ac{bottom:487.446450px;}
.y1bc{bottom:488.609850px;}
.y1ef{bottom:490.125300px;}
.y8e{bottom:490.896300px;}
.yd0{bottom:491.259450px;}
.y181{bottom:492.267450px;}
.y158{bottom:494.934750px;}
.y3e{bottom:496.146300px;}
.y225{bottom:496.763100px;}
.y65{bottom:497.516400px;}
.y1a4{bottom:498.489300px;}
.yba{bottom:499.521300px;}
.y2ab{bottom:503.346450px;}
.yf7{bottom:504.729000px;}
.y272{bottom:505.010100px;}
.y1bb{bottom:505.859850px;}
.y262{bottom:507.201900px;}
.y1ee{bottom:507.375300px;}
.ye{bottom:507.874650px;}
.y8d{bottom:508.146300px;}
.ycf{bottom:508.509450px;}
.y10f{bottom:509.193000px;}
.y180{bottom:509.517450px;}
.y157{bottom:510.684750px;}
.y129{bottom:510.773960px;}
.y3d{bottom:511.146300px;}
.y224{bottom:512.513100px;}
.y142{bottom:513.083250px;}
.y13b{bottom:514.038600px;}
.y64{bottom:514.766400px;}
.y1a3{bottom:517.958250px;}
.y2aa{bottom:519.246300px;}
.y128{bottom:524.960850px;}
.y8c{bottom:525.396300px;}
.yce{bottom:525.759450px;}
.y3c{bottom:526.146300px;}
.y261{bottom:526.430850px;}
.y156{bottom:526.434750px;}
.y17f{bottom:526.767450px;}
.y13a{bottom:527.538600px;}
.y223{bottom:531.982200px;}
.y63{bottom:532.016400px;}
.y125{bottom:534.418500px;}
.y2a9{bottom:535.146450px;}
.y1a2{bottom:537.427200px;}
.y144{bottom:539.229000px;}
.y139{bottom:541.038600px;}
.y136{bottom:541.048950px;}
.y3b{bottom:541.146300px;}
.y260{bottom:542.180850px;}
.y155{bottom:542.184750px;}
.y8b{bottom:542.646300px;}
.y1ed{bottom:542.818050px;}
.ycd{bottom:543.009450px;}
.y17e{bottom:544.017450px;}
.y118{bottom:544.404000px;}
.y222{bottom:547.732200px;}
.y141{bottom:547.946850px;}
.y62{bottom:549.266400px;}
.y2a8{bottom:551.046450px;}
.y276{bottom:555.953250px;}
.y3a{bottom:556.146300px;}
.y154{bottom:557.934750px;}
.y8a{bottom:559.896300px;}
.ycc{bottom:560.259450px;}
.y17d{bottom:561.267450px;}
.y1ec{bottom:561.320100px;}
.y25f{bottom:561.649800px;}
.y11e{bottom:564.636000px;}
.y61{bottom:566.516400px;}
.y2a7{bottom:566.946450px;}
.y221{bottom:567.201150px;}
.y11d{bottom:567.793130px;}
.y28{bottom:569.045700px;}
.y39{bottom:571.146300px;}
.y153{bottom:573.684750px;}
.y121{bottom:575.675660px;}
.y13e{bottom:576.542550px;}
.y116{bottom:576.985500px;}
.y1eb{bottom:577.070100px;}
.y89{bottom:577.146300px;}
.y25e{bottom:577.399800px;}
.ycb{bottom:577.509450px;}
.y27e{bottom:578.156100px;}
.y17c{bottom:578.517450px;}
.y140{bottom:578.558250px;}
.y1a1{bottom:579.021300px;}
.y138{bottom:579.465750px;}
.y279{bottom:581.419950px;}
.y11c{bottom:581.980020px;}
.y2a6{bottom:582.846450px;}
.y220{bottom:582.951150px;}
.y60{bottom:583.766400px;}
.y27{bottom:584.045700px;}
.y38{bottom:586.146300px;}
.y120{bottom:589.862550px;}
.y13d{bottom:590.042550px;}
.y1ea{bottom:592.820100px;}
.y137{bottom:592.965750px;}
.y88{bottom:594.396300px;}
.y1a0{bottom:594.771300px;}
.y17b{bottom:595.767450px;}
.y152{bottom:596.054250px;}
.y11b{bottom:596.431860px;}
.y25d{bottom:596.868750px;}
.y2a5{bottom:598.746300px;}
.y5f{bottom:601.016400px;}
.y37{bottom:601.146300px;}
.y21f{bottom:602.179950px;}
.y13c{bottom:603.542550px;}
.yca{bottom:607.515300px;}
.y113{bottom:608.517000px;}
.y273{bottom:609.883500px;}
.y11a{bottom:610.883700px;}
.y87{bottom:611.646300px;}
.y13f{bottom:611.726250px;}
.y151{bottom:611.804250px;}
.y25c{bottom:612.618750px;}
.y1d4{bottom:612.660000px;}
.y17a{bottom:613.017450px;}
.y115{bottom:613.511700px;}
.y2a4{bottom:614.646450px;}
.y36{bottom:616.146300px;}
.y21e{bottom:617.929950px;}
.y5e{bottom:618.266400px;}
.y1d9{bottom:620.576034px;}
.y150{bottom:627.554250px;}
.y25b{bottom:628.368750px;}
.y86{bottom:628.896300px;}
.y179{bottom:630.267450px;}
.y2a3{bottom:630.546450px;}
.y5d{bottom:635.516400px;}
.y21d{bottom:637.398900px;}
.y19f{bottom:637.521300px;}
.y1e4{bottom:639.872044px;}
.y14f{bottom:643.304250px;}
.yd{bottom:644.894400px;}
.y35{bottom:646.146300px;}
.y2a2{bottom:646.446450px;}
.y25a{bottom:647.597700px;}
.y10d{bottom:650.296500px;}
.y107{bottom:650.562000px;}
.yc9{bottom:650.640300px;}
.y20c{bottom:651.585693px;}
.y135{bottom:652.121250px;}
.y5c{bottom:652.766400px;}
.y21c{bottom:653.148900px;}
.y19e{bottom:654.771300px;}
.y14e{bottom:659.054250px;}
.yc{bottom:659.144400px;}
.y267{bottom:659.788500px;}
.y1e0{bottom:660.672569px;}
.y1dc{bottom:660.684509px;}
.y1d6{bottom:660.696450px;}
.y34{bottom:661.146300px;}
.y2a1{bottom:662.346450px;}
.y259{bottom:663.347700px;}
.y85{bottom:663.396300px;}
.y178{bottom:664.767450px;}
.yc8{bottom:667.890300px;}
.y5b{bottom:670.016400px;}
.y19d{bottom:672.021300px;}
.y208{bottom:672.147300px;}
.y21b{bottom:672.618000px;}
.yb{bottom:673.394400px;}
.y2a0{bottom:678.246300px;}
.y258{bottom:679.097700px;}
.y2cf{bottom:679.896300px;}
.y84{bottom:680.646300px;}
.y283{bottom:683.945700px;}
.yc7{bottom:685.140300px;}
.y177{bottom:686.148450px;}
.y5a{bottom:687.266400px;}
.y21a{bottom:688.368000px;}
.y19c{bottom:689.271300px;}
.y1e5{bottom:690.750940px;}
.ya{bottom:691.394400px;}
.y29f{bottom:694.146450px;}
.y2ce{bottom:695.646300px;}
.yfa{bottom:696.015000px;}
.y14a{bottom:696.873300px;}
.y33{bottom:697.146300px;}
.y83{bottom:697.896300px;}
.y14d{bottom:698.148900px;}
.y257{bottom:698.566650px;}
.y20d{bottom:699.788285px;}
.yc6{bottom:702.390300px;}
.y134{bottom:703.623300px;}
.y59{bottom:704.516400px;}
.y176{bottom:705.654900px;}
.y19b{bottom:706.521300px;}
.y26d{bottom:707.463150px;}
.y112{bottom:707.581050px;}
.y219{bottom:707.596800px;}
.y9{bottom:709.394400px;}
.y26c{bottom:709.424250px;}
.yfc{bottom:709.682250px;}
.y29e{bottom:710.046450px;}
.y149{bottom:710.373300px;}
.y2cd{bottom:711.396300px;}
.y14c{bottom:711.648900px;}
.y32{bottom:712.146300px;}
.y1e1{bottom:712.423129px;}
.y1dd{bottom:712.435070px;}
.y1db{bottom:712.447010px;}
.y256{bottom:714.316650px;}
.y82{bottom:715.146300px;}
.y133{bottom:717.123300px;}
.yc5{bottom:719.640300px;}
.y175{bottom:721.404900px;}
.y58{bottom:721.766400px;}
.y209{bottom:721.835836px;}
.y218{bottom:723.346800px;}
.y19a{bottom:723.771300px;}
.y148{bottom:723.873300px;}
.y14b{bottom:725.148900px;}
.y29d{bottom:725.946450px;}
.y2cc{bottom:727.146300px;}
.y8{bottom:731.646300px;}
.y81{bottom:732.396300px;}
.y31{bottom:733.146300px;}
.y255{bottom:733.785600px;}
.yc4{bottom:736.890300px;}
.y57{bottom:739.016400px;}
.y174{bottom:740.941500px;}
.y199{bottom:741.021300px;}
.y1e6{bottom:741.629837px;}
.y29c{bottom:741.846450px;}
.y217{bottom:742.815750px;}
.y2cb{bottom:742.896300px;}
.y7{bottom:745.896300px;}
.y20e{bottom:747.990876px;}
.y30{bottom:748.146300px;}
.y254{bottom:749.535600px;}
.y80{bottom:749.646300px;}
.yc3{bottom:754.140300px;}
.y56{bottom:756.266400px;}
.y29b{bottom:757.746300px;}
.y198{bottom:758.271300px;}
.y216{bottom:758.565750px;}
.y2ca{bottom:758.646300px;}
.y6{bottom:760.146300px;}
.y173{bottom:760.447950px;}
.y1e2{bottom:763.003511px;}
.y1de{bottom:763.015451px;}
.y1d7{bottom:763.027392px;}
.y2f{bottom:763.146300px;}
.y7f{bottom:766.896300px;}
.yf9{bottom:768.278100px;}
.y105{bottom:768.540000px;}
.y253{bottom:768.764400px;}
.y20a{bottom:770.171317px;}
.y132{bottom:771.177750px;}
.yc2{bottom:771.390300px;}
.y55{bottom:773.516400px;}
.y29a{bottom:773.646450px;}
.y2c9{bottom:774.396300px;}
.y197{bottom:775.521300px;}
.y27d{bottom:777.340350px;}
.y215{bottom:778.034700px;}
.y2e{bottom:778.146300px;}
.y170{bottom:779.954250px;}
.y280{bottom:781.260150px;}
.y7e{bottom:784.146300px;}
.y252{bottom:784.514400px;}
.yc1{bottom:788.640300px;}
.y299{bottom:789.546450px;}
.y2c8{bottom:790.146300px;}
.y104{bottom:790.613100px;}
.y54{bottom:790.766400px;}
.y12e{bottom:792.434850px;}
.y1e7{bottom:792.508733px;}
.y196{bottom:792.771300px;}
.y2d{bottom:793.146300px;}
.y214{bottom:793.784700px;}
.y172{bottom:795.704250px;}
.y20f{bottom:796.193468px;}
.y7d{bottom:801.396300px;}
.y251{bottom:803.983350px;}
.y5{bottom:805.146300px;}
.y269{bottom:805.394550px;}
.y298{bottom:805.446300px;}
.yc0{bottom:805.890300px;}
.y2c7{bottom:805.896300px;}
.y53{bottom:808.016400px;}
.y2c{bottom:808.146300px;}
.y195{bottom:810.021300px;}
.y171{bottom:811.454250px;}
.y1e3{bottom:813.440605px;}
.y1df{bottom:813.452546px;}
.y1da{bottom:813.464486px;}
.y1e9{bottom:813.470722px;}
.y1d8{bottom:813.667477px;}
.y20b{bottom:818.373908px;}
.y7c{bottom:818.646300px;}
.y250{bottom:819.733350px;}
.y297{bottom:821.346300px;}
.y2c6{bottom:821.646300px;}
.yfe{bottom:822.930000px;}
.ybf{bottom:823.140300px;}
.y2b{bottom:823.146300px;}
.y52{bottom:825.266400px;}
.y103{bottom:826.350451px;}
.y194{bottom:827.271300px;}
.y213{bottom:828.132600px;}
.y12d{bottom:828.205950px;}
.y4{bottom:829.146300px;}
.y7b{bottom:835.896300px;}
.y296{bottom:837.246300px;}
.y16f{bottom:837.396300px;}
.y1e8{bottom:837.507150px;}
.y2a{bottom:838.146300px;}
.y24f{bottom:839.202450px;}
.y12c{bottom:841.705950px;}
.y102{bottom:842.115000px;}
.yfd{bottom:842.640300px;}
.y212{bottom:843.882600px;}
.y210{bottom:850.152000px;}
.y3{bottom:853.146300px;}
.y24e{bottom:854.952450px;}
.y211{bottom:859.632600px;}
.y29{bottom:897.669750px;}
.y1{bottom:897.961050px;}
.h18{height:9.459000px;}
.h14{height:9.724500px;}
.h15{height:10.773000px;}
.h1b{height:12.351000px;}
.h19{height:13.402500px;}
.h16{height:13.663500px;}
.h1a{height:14.979000px;}
.h17{height:15.241500px;}
.h1e{height:16.557000px;}
.hf{height:16.816500px;}
.h2b{height:24.166303px;}
.h13{height:31.795500px;}
.h2c{height:35.151445px;}
.h3{height:35.322000px;}
.h12{height:35.998500px;}
.h1d{height:36.525000px;}
.h28{height:40.168178px;}
.h21{height:40.368000px;}
.h1f{height:40.465500px;}
.h11{height:40.512820px;}
.he{height:40.513325px;}
.h2{height:40.608000px;}
.h29{height:40.639979px;}
.h23{height:42.900000px;}
.h9{height:43.320000px;}
.h6{height:45.414000px;}
.h2a{height:45.600000px;}
.h2f{height:45.684000px;}
.h8{height:47.937000px;}
.h7{height:48.222000px;}
.h1c{height:49.924500px;}
.hc{height:50.160000px;}
.h24{height:50.460000px;}
.h20{height:50.760000px;}
.h25{height:55.122000px;}
.hb{height:55.506000px;}
.ha{height:55.836000px;}
.h5{height:60.552000px;}
.h2d{height:76.929322px;}
.h2e{height:79.559545px;}
.h4{height:80.736000px;}
.h26{height:113.460000px;}
.h22{height:113.760000px;}
.h10{height:126.124500px;}
.h27{height:249.802500px;}
.hd{height:517.678500px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.wf{width:-217.830000px;}
.wd{width:-110.886000px;}
.w4{width:14.188500px;}
.w3{width:74.098500px;}
.w15{width:94.068000px;}
.w14{width:101.163000px;}
.w13{width:106.681500px;}
.wc{width:108.783000px;}
.w8{width:113.248500px;}
.w12{width:113.775000px;}
.wb{width:119.031000px;}
.w11{width:127.176000px;}
.we{width:127.702500px;}
.w5{width:137.949000px;}
.w10{width:150.034500px;}
.w6{width:278.263500px;}
.w9{width:442.227000px;}
.wa{width:443.014500px;}
.w7{width:443.541000px;}
.w2{width:480.099000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x32{left:-125.082150px;}
.x2e{left:-83.035200px;}
.x0{left:0.000000px;}
.x18{left:9.855300px;}
.x1b{left:59.123700px;}
.x16{left:65.702400px;}
.x34{left:70.404450px;}
.x43{left:73.032150px;}
.x26{left:75.669900px;}
.x2a{left:78.833850px;}
.x3d{left:82.234200px;}
.x36{left:83.542950px;}
.x38{left:85.916400px;}
.x39{left:87.766350px;}
.x2c{left:89.338350px;}
.x28{left:91.703400px;}
.x30{left:93.543750px;}
.x80{left:94.543950px;}
.x2{left:95.669250px;}
.x3{left:97.171350px;}
.x23{left:99.049350px;}
.x97{left:100.394850px;}
.x68{left:101.421900px;}
.x70{left:103.047000px;}
.x13{left:104.173500px;}
.x20{left:105.365400px;}
.xe{left:107.625750px;}
.x8c{left:108.706701px;}
.xb{left:110.670300px;}
.x95{left:111.854250px;}
.x12{left:113.999550px;}
.x25{left:115.429500px;}
.xa{left:117.085800px;}
.x7{left:118.607400px;}
.x4{left:119.672850px;}
.x7e{left:121.836409px;}
.xf{left:123.270450px;}
.x8a{left:125.752780px;}
.x89{left:126.767571px;}
.x5f{left:128.947350px;}
.x90{left:130.214250px;}
.x42{left:132.772500px;}
.x45{left:134.123250px;}
.xd{left:135.196200px;}
.xb0{left:137.849550px;}
.x46{left:139.781100px;}
.x8b{left:141.119621px;}
.x33{left:142.756500px;}
.x4f{left:144.009750px;}
.x8f{left:145.813350px;}
.x10{left:151.042950px;}
.xb2{left:155.478187px;}
.xc{left:158.805900px;}
.x27{left:160.360500px;}
.xb1{left:162.666637px;}
.x5{left:163.701750px;}
.x44{left:167.192236px;}
.x4d{left:170.213550px;}
.x7f{left:171.348300px;}
.x72{left:176.978100px;}
.x4c{left:181.295550px;}
.x24{left:186.382350px;}
.x73{left:188.333611px;}
.x9c{left:191.402700px;}
.x49{left:192.411750px;}
.x4b{left:200.785950px;}
.x75{left:205.468372px;}
.x3e{left:207.147450px;}
.x91{left:208.317150px;}
.x35{left:214.236000px;}
.x3f{left:217.661164px;}
.xb4{left:219.478650px;}
.x48{left:221.733600px;}
.xae{left:222.747150px;}
.x64{left:229.451400px;}
.x4a{left:232.317300px;}
.xa5{left:235.152600px;}
.x1f{left:236.484000px;}
.x21{left:239.192860px;}
.x9{left:240.315600px;}
.x60{left:242.667450px;}
.xb5{left:244.295737px;}
.x74{left:245.744015px;}
.x41{left:248.386500px;}
.x77{left:249.779938px;}
.x47{left:251.403150px;}
.x6e{left:252.954750px;}
.x51{left:255.968100px;}
.xa4{left:257.364600px;}
.x99{left:259.122600px;}
.x96{left:260.591550px;}
.x92{left:264.851400px;}
.x94{left:267.993600px;}
.x6d{left:269.374650px;}
.x9d{left:270.422700px;}
.x76{left:272.276029px;}
.x50{left:274.627650px;}
.x3b{left:276.504491px;}
.x98{left:279.776850px;}
.xb6{left:280.865969px;}
.x78{left:282.150905px;}
.x1e{left:283.333500px;}
.x8e{left:284.801100px;}
.x9a{left:286.096650px;}
.xb8{left:287.403218px;}
.x8d{left:292.410600px;}
.xa1{left:296.544600px;}
.x83{left:298.496854px;}
.x69{left:300.282300px;}
.x7b{left:302.629034px;}
.x22{left:303.829500px;}
.xb7{left:305.693506px;}
.x29{left:306.718500px;}
.xa2{left:314.832000px;}
.x8{left:316.281900px;}
.xb3{left:318.093869px;}
.x81{left:322.030350px;}
.x93{left:323.552700px;}
.x5a{left:326.004300px;}
.x3c{left:328.531115px;}
.x2d{left:330.631500px;}
.x82{left:332.274911px;}
.x5d{left:334.484550px;}
.x3a{left:336.913182px;}
.x59{left:342.342150px;}
.x65{left:344.724900px;}
.xac{left:347.482650px;}
.xa8{left:352.060950px;}
.x11{left:353.657400px;}
.x79{left:359.442409px;}
.x61{left:362.049900px;}
.xa9{left:364.464269px;}
.xaa{left:366.433568px;}
.x5e{left:368.338950px;}
.x6a{left:370.800450px;}
.x2b{left:373.473300px;}
.xa6{left:374.915250px;}
.xab{left:378.836887px;}
.x2f{left:380.817000px;}
.x40{left:381.868500px;}
.xa7{left:387.318569px;}
.x9f{left:389.280600px;}
.x58{left:392.770800px;}
.x7a{left:399.073260px;}
.x56{left:400.300800px;}
.x57{left:408.844500px;}
.x9b{left:410.183100px;}
.x9e{left:412.141950px;}
.x53{left:414.079200px;}
.x52{left:415.291050px;}
.xa3{left:417.366900px;}
.x54{left:422.395050px;}
.x1{left:424.291050px;}
.xaf{left:425.863487px;}
.x1a{left:427.329000px;}
.xa0{left:430.427250px;}
.x7c{left:435.742843px;}
.x6b{left:446.016450px;}
.x86{left:447.369169px;}
.x1d{left:450.973950px;}
.x87{left:453.337109px;}
.x7d{left:459.015072px;}
.x1c{left:461.749050px;}
.xad{left:463.080300px;}
.x6{left:466.037250px;}
.x5b{left:467.072850px;}
.x66{left:468.502200px;}
.x14{left:469.861650px;}
.x5c{left:471.296850px;}
.x84{left:474.635647px;}
.x67{left:477.006150px;}
.x37{left:480.930450px;}
.x63{left:483.075000px;}
.x71{left:484.337100px;}
.x6f{left:485.693550px;}
.x62{left:487.192350px;}
.x85{left:488.274927px;}
.x88{left:490.727339px;}
.x15{left:494.592000px;}
.x55{left:508.719750px;}
.xb9{left:523.327650px;}
.x6c{left:524.711550px;}
.x17{left:527.701500px;}
.x4e{left:539.708850px;}
.x19{left:540.838650px;}
.xba{left:557.579550px;}
.x31{left:562.912500px;}
.xbb{left:576.081600px;}
@media print{
.v1{vertical-align:-45.774865pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.600000pt;}
.v4{vertical-align:37.135890pt;}
.v5{vertical-align:39.473867pt;}
.v2{vertical-align:56.000000pt;}
.ls3e{letter-spacing:-3.786667pt;}
.ls32{letter-spacing:-0.821333pt;}
.ls34{letter-spacing:-0.704000pt;}
.ls33{letter-spacing:-0.645333pt;}
.ls2d{letter-spacing:-0.586667pt;}
.ls58{letter-spacing:-0.533333pt;}
.ls35{letter-spacing:-0.528000pt;}
.lsa{letter-spacing:-0.506667pt;}
.ls6c{letter-spacing:-0.480000pt;}
.ls2c{letter-spacing:-0.469333pt;}
.ls2b{letter-spacing:-0.410667pt;}
.ls4c{letter-spacing:-0.373333pt;}
.ls9{letter-spacing:-0.354667pt;}
.ls2e{letter-spacing:-0.352000pt;}
.ls5a{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.304000pt;}
.ls21{letter-spacing:-0.293333pt;}
.ls4d{letter-spacing:-0.266667pt;}
.ls8{letter-spacing:-0.253333pt;}
.ls24{letter-spacing:-0.234667pt;}
.ls59{letter-spacing:-0.213333pt;}
.lsb{letter-spacing:-0.202667pt;}
.ls23{letter-spacing:-0.176000pt;}
.ls7{letter-spacing:-0.152000pt;}
.ls20{letter-spacing:-0.117333pt;}
.ls1f{letter-spacing:-0.058667pt;}
.ls6a{letter-spacing:-0.053333pt;}
.ls6{letter-spacing:-0.050667pt;}
.ls51{letter-spacing:-0.037153pt;}
.ls5{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.025333pt;}
.ls46{letter-spacing:0.029333pt;}
.ls50{letter-spacing:0.053333pt;}
.ls2f{letter-spacing:0.058667pt;}
.ls3d{letter-spacing:0.088000pt;}
.lse{letter-spacing:0.101333pt;}
.ls48{letter-spacing:0.106667pt;}
.ls15{letter-spacing:0.117333pt;}
.lsf{letter-spacing:0.126667pt;}
.ls52{letter-spacing:0.146667pt;}
.ls4{letter-spacing:0.152000pt;}
.ls63{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.176000pt;}
.ls5f{letter-spacing:0.186667pt;}
.lsc{letter-spacing:0.202667pt;}
.ls45{letter-spacing:0.205333pt;}
.ls69{letter-spacing:0.213333pt;}
.ls27{letter-spacing:0.234667pt;}
.ls6b{letter-spacing:0.240000pt;}
.ls61{letter-spacing:0.246933pt;}
.ls3{letter-spacing:0.253333pt;}
.ls60{letter-spacing:0.266667pt;}
.ls19{letter-spacing:0.293333pt;}
.ls0{letter-spacing:0.304000pt;}
.ls17{letter-spacing:0.352000pt;}
.ls68{letter-spacing:0.373333pt;}
.ls36{letter-spacing:0.381333pt;}
.lsd{letter-spacing:0.405333pt;}
.ls2a{letter-spacing:0.410667pt;}
.ls4f{letter-spacing:0.426667pt;}
.ls40{letter-spacing:0.440000pt;}
.ls11{letter-spacing:0.456000pt;}
.ls37{letter-spacing:0.469333pt;}
.ls57{letter-spacing:0.480000pt;}
.ls3b{letter-spacing:0.498667pt;}
.ls10{letter-spacing:0.506667pt;}
.ls30{letter-spacing:0.528000pt;}
.ls5e{letter-spacing:0.532800pt;}
.ls5b{letter-spacing:0.533333pt;}
.ls2{letter-spacing:0.557333pt;}
.ls22{letter-spacing:0.586667pt;}
.ls43{letter-spacing:0.610133pt;}
.ls65{letter-spacing:0.613333pt;}
.ls54{letter-spacing:0.614933pt;}
.ls53{letter-spacing:0.616000pt;}
.ls16{letter-spacing:0.645333pt;}
.ls5c{letter-spacing:0.666667pt;}
.ls5d{letter-spacing:0.667200pt;}
.ls4e{letter-spacing:0.674667pt;}
.ls56{letter-spacing:0.693333pt;}
.ls1c{letter-spacing:0.704000pt;}
.ls1{letter-spacing:0.760000pt;}
.ls14{letter-spacing:0.762667pt;}
.ls3f{letter-spacing:0.792000pt;}
.ls1d{letter-spacing:0.821333pt;}
.ls41{letter-spacing:0.850667pt;}
.ls62{letter-spacing:0.853333pt;}
.ls44{letter-spacing:0.865067pt;}
.ls25{letter-spacing:0.880000pt;}
.ls3a{letter-spacing:0.938667pt;}
.ls26{letter-spacing:0.997333pt;}
.ls49{letter-spacing:1.013333pt;}
.ls1b{letter-spacing:1.026667pt;}
.ls55{letter-spacing:1.056000pt;}
.ls1e{letter-spacing:1.114667pt;}
.ls28{letter-spacing:1.173333pt;}
.ls31{letter-spacing:1.180267pt;}
.ls64{letter-spacing:1.226667pt;}
.ls18{letter-spacing:1.232000pt;}
.ls3c{letter-spacing:1.290667pt;}
.ls42{letter-spacing:1.349333pt;}
.ls29{letter-spacing:1.408000pt;}
.ls66{letter-spacing:1.546667pt;}
.ls67{letter-spacing:1.653333pt;}
.ls39{letter-spacing:1.701333pt;}
.ls4b{letter-spacing:1.760000pt;}
.ls38{letter-spacing:1.877333pt;}
.ls47{letter-spacing:2.133333pt;}
.ls4a{letter-spacing:2.293333pt;}
.ws49{word-spacing:-53.333333pt;}
.ws4a{word-spacing:-49.546667pt;}
.ws22{word-spacing:-14.784000pt;}
.ws11{word-spacing:-14.666667pt;}
.ws72{word-spacing:-14.560000pt;}
.ws35{word-spacing:-14.549333pt;}
.ws73{word-spacing:-14.506667pt;}
.ws10{word-spacing:-14.490667pt;}
.ws2f{word-spacing:-14.373333pt;}
.ws21{word-spacing:-14.256000pt;}
.ws2e{word-spacing:-14.080000pt;}
.ws6d{word-spacing:-14.000000pt;}
.ws70{word-spacing:-13.866667pt;}
.ws65{word-spacing:-13.760000pt;}
.ws6f{word-spacing:-13.546667pt;}
.ws6e{word-spacing:-13.520000pt;}
.ws71{word-spacing:-13.493333pt;}
.ws66{word-spacing:-13.333333pt;}
.ws74{word-spacing:-13.280000pt;}
.wsc{word-spacing:-12.869333pt;}
.ws63{word-spacing:-12.240000pt;}
.wsb{word-spacing:-10.880000pt;}
.ws4b{word-spacing:-9.333333pt;}
.ws61{word-spacing:-9.288267pt;}
.ws60{word-spacing:-6.385600pt;}
.ws7f{word-spacing:-3.253333pt;}
.ws7c{word-spacing:-2.186667pt;}
.ws80{word-spacing:-1.226667pt;}
.ws6c{word-spacing:-1.120000pt;}
.ws16{word-spacing:-0.762667pt;}
.ws9{word-spacing:-0.760000pt;}
.ws13{word-spacing:-0.704000pt;}
.ws5f{word-spacing:-0.693333pt;}
.wsa{word-spacing:-0.658667pt;}
.ws41{word-spacing:-0.645333pt;}
.ws58{word-spacing:-0.640000pt;}
.ws2{word-spacing:-0.608000pt;}
.ws15{word-spacing:-0.586667pt;}
.ws75{word-spacing:-0.533333pt;}
.ws1f{word-spacing:-0.528000pt;}
.ws8{word-spacing:-0.506667pt;}
.ws68{word-spacing:-0.480000pt;}
.ws19{word-spacing:-0.469333pt;}
.ws29{word-spacing:-0.410667pt;}
.ws4{word-spacing:-0.405333pt;}
.ws76{word-spacing:-0.373333pt;}
.ws23{word-spacing:-0.352000pt;}
.ws6b{word-spacing:-0.320000pt;}
.ws3e{word-spacing:-0.293333pt;}
.ws57{word-spacing:-0.234667pt;}
.ws67{word-spacing:-0.213333pt;}
.ws3c{word-spacing:-0.176000pt;}
.ws37{word-spacing:-0.117333pt;}
.ws77{word-spacing:-0.106667pt;}
.ws5{word-spacing:-0.101333pt;}
.ws2d{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
.ws64{word-spacing:0.037153pt;}
.ws6a{word-spacing:0.053333pt;}
.ws44{word-spacing:0.058667pt;}
.ws1c{word-spacing:0.117333pt;}
.ws7b{word-spacing:0.160000pt;}
.ws1d{word-spacing:0.176000pt;}
.wsf{word-spacing:0.202667pt;}
.ws33{word-spacing:0.234667pt;}
.ws3{word-spacing:0.253333pt;}
.ws3f{word-spacing:0.293333pt;}
.ws82{word-spacing:0.320000pt;}
.ws12{word-spacing:0.352000pt;}
.ws27{word-spacing:0.410667pt;}
.ws31{word-spacing:0.528000pt;}
.ws7a{word-spacing:0.533333pt;}
.ws1a{word-spacing:0.586667pt;}
.ws56{word-spacing:0.645333pt;}
.ws78{word-spacing:0.693333pt;}
.ws3a{word-spacing:0.704000pt;}
.ws36{word-spacing:0.762667pt;}
.ws2a{word-spacing:0.821333pt;}
.ws54{word-spacing:0.880000pt;}
.ws39{word-spacing:0.938667pt;}
.ws38{word-spacing:0.997333pt;}
.ws1{word-spacing:1.013333pt;}
.ws1e{word-spacing:1.056000pt;}
.ws7d{word-spacing:1.120000pt;}
.wse{word-spacing:1.165333pt;}
.ws25{word-spacing:1.173333pt;}
.ws24{word-spacing:1.232000pt;}
.ws6{word-spacing:1.266667pt;}
.ws3b{word-spacing:1.290667pt;}
.ws5a{word-spacing:1.333333pt;}
.ws3d{word-spacing:1.349333pt;}
.ws69{word-spacing:1.386667pt;}
.ws30{word-spacing:1.408000pt;}
.ws79{word-spacing:1.440000pt;}
.ws18{word-spacing:1.466667pt;}
.ws14{word-spacing:1.525333pt;}
.ws7{word-spacing:1.570667pt;}
.ws17{word-spacing:1.584000pt;}
.ws20{word-spacing:1.642667pt;}
.ws55{word-spacing:1.701333pt;}
.ws47{word-spacing:1.760000pt;}
.ws26{word-spacing:1.818667pt;}
.ws51{word-spacing:1.877333pt;}
.ws43{word-spacing:1.936000pt;}
.ws5b{word-spacing:1.973333pt;}
.ws34{word-spacing:1.994667pt;}
.ws28{word-spacing:2.053333pt;}
.ws5d{word-spacing:2.080000pt;}
.ws32{word-spacing:2.112000pt;}
.wsd{word-spacing:2.178667pt;}
.ws42{word-spacing:2.229333pt;}
.ws45{word-spacing:2.288000pt;}
.ws7e{word-spacing:2.293333pt;}
.ws2b{word-spacing:2.346667pt;}
.ws1b{word-spacing:2.464000pt;}
.ws46{word-spacing:2.522667pt;}
.ws2c{word-spacing:2.757333pt;}
.ws5e{word-spacing:3.520000pt;}
.ws40{word-spacing:3.813333pt;}
.ws59{word-spacing:4.266667pt;}
.ws5c{word-spacing:4.533333pt;}
.ws4c{word-spacing:55.789333pt;}
.ws4d{word-spacing:66.604800pt;}
.ws81{word-spacing:66.666667pt;}
.ws4e{word-spacing:102.748800pt;}
.ws52{word-spacing:192.726400pt;}
.ws48{word-spacing:273.508267pt;}
.ws53{word-spacing:332.029333pt;}
.ws4f{word-spacing:376.312000pt;}
.ws50{word-spacing:462.072000pt;}
.ws62{word-spacing:1548.438736pt;}
._1b{margin-left:-34.042112pt;}
._23{margin-left:-32.094362pt;}
._27{margin-left:-29.291349pt;}
._1f{margin-left:-27.940796pt;}
._22{margin-left:-26.340634pt;}
._1e{margin-left:-25.200299pt;}
._1d{margin-left:-23.037303pt;}
._26{margin-left:-20.173372pt;}
._b{margin-left:-18.592000pt;}
._c{margin-left:-17.477333pt;}
._a{margin-left:-16.538667pt;}
._8{margin-left:-14.664000pt;}
._d{margin-left:-10.705067pt;}
._5a{margin-left:-9.419200pt;}
._25{margin-left:-7.921749pt;}
._1c{margin-left:-6.936883pt;}
._59{margin-left:-5.788133pt;}
._24{margin-left:-4.881510pt;}
._31{margin-left:-3.792000pt;}
._2{margin-left:-2.605867pt;}
._3{margin-left:-1.348267pt;}
._6{width:1.144000pt;}
._7{width:2.238400pt;}
._32{width:3.786667pt;}
._21{width:19.012198pt;}
._10{width:22.951663pt;}
._20{width:29.518976pt;}
._0{width:31.996800pt;}
._55{width:35.728000pt;}
._57{width:37.274667pt;}
._56{width:38.672000pt;}
._29{width:39.780028pt;}
._54{width:41.606639pt;}
._43{width:44.945600pt;}
._19{width:46.288708pt;}
._1a{width:47.230754pt;}
._2c{width:52.797389pt;}
._2d{width:53.696614pt;}
._50{width:55.036358pt;}
._51{width:58.191087pt;}
._12{width:59.348890pt;}
._52{width:61.183238pt;}
._53{width:62.625821pt;}
._4f{width:65.459177pt;}
._9{width:71.446400pt;}
._44{width:74.712000pt;}
._34{width:104.126933pt;}
._11{width:109.362961pt;}
._2b{width:116.385485pt;}
._30{width:129.004267pt;}
._2e{width:133.171029pt;}
._3a{width:134.564267pt;}
._39{width:142.748800pt;}
._35{width:153.870933pt;}
._36{width:163.695467pt;}
._49{width:165.873600pt;}
._37{width:169.591467pt;}
._38{width:177.878933pt;}
._2a{width:182.628437pt;}
._3d{width:190.362133pt;}
._3b{width:196.258133pt;}
._15{width:202.282940pt;}
._28{width:206.093943pt;}
._3e{width:212.750933pt;}
._33{width:222.549333pt;}
._e{width:233.156352pt;}
._13{width:235.939669pt;}
._f{width:244.332442pt;}
._2f{width:248.675733pt;}
._48{width:265.111467pt;}
._4c{width:270.115200pt;}
._47{width:278.865600pt;}
._5{width:297.940800pt;}
._41{width:305.958933pt;}
._14{width:320.980719pt;}
._17{width:323.806857pt;}
._16{width:327.821901pt;}
._18{width:343.375718pt;}
._4b{width:345.362667pt;}
._4e{width:348.301867pt;}
._1{width:362.917333pt;}
._4a{width:376.978133pt;}
._3c{width:412.164267pt;}
._40{width:420.892267pt;}
._3f{width:436.312000pt;}
._42{width:441.112000pt;}
._46{width:475.405333pt;}
._4d{width:481.048533pt;}
._45{width:661.150933pt;}
._4{width:1119.696000pt;}
._58{width:1472.777455pt;}
.fsc{font-size:25.542400pt;}
.fsd{font-size:37.153067pt;}
.fs1{font-size:37.333333pt;}
.fsa{font-size:42.455467pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:42.819733pt;}
.fs7{font-size:42.820267pt;}
.fsb{font-size:42.954133pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs9{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.y1d5{bottom:-8.371333pt;}
.yf4{bottom:-1.371867pt;}
.y207{bottom:-1.179733pt;}
.y101{bottom:-1.165467pt;}
.y106{bottom:-0.232800pt;}
.y0{bottom:0.000000pt;}
.y10e{bottom:0.236000pt;}
.y10c{bottom:0.703733pt;}
.y124{bottom:1.168933pt;}
.y117{bottom:2.104933pt;}
.y109{bottom:2.336800pt;}
.yff{bottom:2.339200pt;}
.y110{bottom:3.038933pt;}
.y10b{bottom:3.740000pt;}
.y119{bottom:4.438267pt;}
.y114{bottom:4.439733pt;}
.y126{bottom:5.841333pt;}
.yf6{bottom:7.944533pt;}
.y111{bottom:22.892933pt;}
.yfb{bottom:23.827200pt;}
.y127{bottom:26.862933pt;}
.y11f{bottom:35.270133pt;}
.y2{bottom:46.091333pt;}
.yf2{bottom:79.671600pt;}
.y2c5{bottom:79.952267pt;}
.y26{bottom:80.777467pt;}
.y1d3{bottom:81.653200pt;}
.y284{bottom:82.210933pt;}
.y285{bottom:82.211067pt;}
.y295{bottom:82.790533pt;}
.y206{bottom:83.000267pt;}
.ya3{bottom:83.685600pt;}
.ye7{bottom:84.008400pt;}
.y1ba{bottom:84.151467pt;}
.y7a{bottom:84.331333pt;}
.y193{bottom:89.418933pt;}
.y24d{bottom:91.770800pt;}
.y16e{bottom:92.838267pt;}
.y2c4{bottom:94.085733pt;}
.y25{bottom:94.110800pt;}
.yf8{bottom:94.239467pt;}
.y282{bottom:94.778400pt;}
.yf1{bottom:95.004933pt;}
.y294{bottom:96.790533pt;}
.y1d2{bottom:96.986533pt;}
.y205{bottom:98.333600pt;}
.ya2{bottom:99.018800pt;}
.yb9{bottom:99.018933pt;}
.ye6{bottom:99.341733pt;}
.y1b9{bottom:99.484800pt;}
.y79{bottom:99.664533pt;}
.y23b{bottom:104.455733pt;}
.y278{bottom:105.816667pt;}
.y24c{bottom:107.104133pt;}
.y24{bottom:107.444133pt;}
.y16d{bottom:108.171600pt;}
.y2c3{bottom:108.219067pt;}
.y192{bottom:108.424133pt;}
.yf0{bottom:110.338267pt;}
.y293{bottom:110.790533pt;}
.y1d1{bottom:112.319867pt;}
.y204{bottom:113.666933pt;}
.ya1{bottom:114.352133pt;}
.yb8{bottom:114.352267pt;}
.ye5{bottom:114.675067pt;}
.y1b8{bottom:114.818133pt;}
.y78{bottom:114.997867pt;}
.y23a{bottom:118.455733pt;}
.y23{bottom:120.777467pt;}
.y2c2{bottom:122.352400pt;}
.y24b{bottom:122.437467pt;}
.y16c{bottom:123.504933pt;}
.y271{bottom:123.567600pt;}
.y292{bottom:124.790533pt;}
.yef{bottom:125.671600pt;}
.y1d0{bottom:127.653200pt;}
.y203{bottom:129.000267pt;}
.ya0{bottom:129.685467pt;}
.yb7{bottom:129.685600pt;}
.ye4{bottom:130.008400pt;}
.y1b7{bottom:130.151467pt;}
.y77{bottom:130.331200pt;}
.y239{bottom:132.455733pt;}
.y22{bottom:134.110800pt;}
.y2c1{bottom:136.485733pt;}
.y24a{bottom:137.770800pt;}
.y291{bottom:138.790533pt;}
.y16b{bottom:138.838267pt;}
.y191{bottom:139.730000pt;}
.yee{bottom:141.004933pt;}
.y1cf{bottom:142.986533pt;}
.y202{bottom:144.333600pt;}
.y9f{bottom:145.018800pt;}
.yb6{bottom:145.018933pt;}
.ye3{bottom:145.341733pt;}
.y1b6{bottom:145.484800pt;}
.y76{bottom:145.664533pt;}
.y238{bottom:149.761467pt;}
.y2c0{bottom:150.619067pt;}
.y290{bottom:152.790533pt;}
.y249{bottom:153.104133pt;}
.y16a{bottom:154.171600pt;}
.y4f{bottom:155.948933pt;}
.yed{bottom:156.338267pt;}
.y1ce{bottom:158.319867pt;}
.y190{bottom:158.627600pt;}
.y201{bottom:159.666933pt;}
.y9e{bottom:160.352133pt;}
.yb5{bottom:160.352267pt;}
.ye2{bottom:160.675067pt;}
.y21{bottom:160.777467pt;}
.y1b5{bottom:160.818133pt;}
.y75{bottom:160.997867pt;}
.y237{bottom:163.761467pt;}
.y2bf{bottom:164.752400pt;}
.y28f{bottom:166.790533pt;}
.y248{bottom:168.437467pt;}
.y4e{bottom:169.282267pt;}
.y169{bottom:169.504933pt;}
.yec{bottom:171.671600pt;}
.y1cd{bottom:173.653200pt;}
.y20{bottom:174.110800pt;}
.y200{bottom:175.000267pt;}
.y9d{bottom:175.685467pt;}
.yb4{bottom:175.685600pt;}
.ye1{bottom:176.008400pt;}
.y1b4{bottom:176.151467pt;}
.y74{bottom:176.331200pt;}
.y18f{bottom:177.525200pt;}
.y2be{bottom:178.885733pt;}
.y28e{bottom:180.790533pt;}
.y236{bottom:181.067200pt;}
.y247{bottom:183.770800pt;}
.y168{bottom:184.838267pt;}
.yeb{bottom:187.004933pt;}
.y4d{bottom:187.948933pt;}
.y1cc{bottom:188.986533pt;}
.y1ff{bottom:190.333600pt;}
.y9c{bottom:191.018800pt;}
.yb3{bottom:191.018933pt;}
.ye0{bottom:191.341733pt;}
.y1b3{bottom:191.484800pt;}
.y18e{bottom:191.525200pt;}
.y73{bottom:191.664533pt;}
.y2bd{bottom:193.019067pt;}
.y28d{bottom:194.790533pt;}
.y235{bottom:195.067200pt;}
.y246{bottom:199.104133pt;}
.y167{bottom:200.171600pt;}
.y4c{bottom:201.282267pt;}
.yea{bottom:202.338267pt;}
.y27c{bottom:202.763333pt;}
.y1cb{bottom:204.319867pt;}
.y27a{bottom:205.077467pt;}
.y1fe{bottom:205.666933pt;}
.y1f{bottom:206.110800pt;}
.y9b{bottom:206.352133pt;}
.yb2{bottom:206.352267pt;}
.ydf{bottom:206.675067pt;}
.y1b2{bottom:206.818133pt;}
.y72{bottom:206.997867pt;}
.y2bc{bottom:207.152400pt;}
.y28c{bottom:208.790533pt;}
.y18d{bottom:208.830933pt;}
.y51{bottom:209.282267pt;}
.y234{bottom:212.159600pt;}
.y245{bottom:214.437467pt;}
.y4b{bottom:214.615600pt;}
.ye9{bottom:217.671600pt;}
.y1e{bottom:219.444133pt;}
.y1ca{bottom:219.653200pt;}
.y1fd{bottom:221.000267pt;}
.y2bb{bottom:221.285733pt;}
.y9a{bottom:221.685467pt;}
.yb1{bottom:221.685600pt;}
.yde{bottom:222.008400pt;}
.y1b1{bottom:222.151467pt;}
.y71{bottom:222.331200pt;}
.y28b{bottom:222.790533pt;}
.y166{bottom:223.171600pt;}
.y233{bottom:226.159600pt;}
.y18c{bottom:227.728667pt;}
.y50{bottom:227.948933pt;}
.y26f{bottom:229.226133pt;}
.y244{bottom:229.770800pt;}
.ye8{bottom:233.004933pt;}
.y4a{bottom:233.282267pt;}
.y1c9{bottom:234.986533pt;}
.y2ba{bottom:235.419067pt;}
.y1fc{bottom:236.333600pt;}
.y28a{bottom:236.790533pt;}
.y99{bottom:237.018800pt;}
.yb0{bottom:237.018933pt;}
.ydd{bottom:237.341733pt;}
.y1b0{bottom:237.484800pt;}
.y70{bottom:237.664533pt;}
.y1d{bottom:238.110800pt;}
.y232{bottom:240.159600pt;}
.y26b{bottom:242.812267pt;}
.y243{bottom:245.104133pt;}
.y49{bottom:246.615600pt;}
.y18b{bottom:246.626267pt;}
.y2b9{bottom:249.552400pt;}
.y1c8{bottom:250.319867pt;}
.y289{bottom:250.790533pt;}
.y1c{bottom:251.444133pt;}
.y1fb{bottom:251.666933pt;}
.y98{bottom:252.352133pt;}
.yaf{bottom:252.352267pt;}
.ydc{bottom:252.675067pt;}
.y1af{bottom:252.818133pt;}
.y6f{bottom:252.997867pt;}
.y231{bottom:257.465333pt;}
.y48{bottom:259.948933pt;}
.y242{bottom:260.437467pt;}
.y275{bottom:261.322133pt;}
.y165{bottom:261.504933pt;}
.y2b8{bottom:263.685733pt;}
.y1b{bottom:264.777467pt;}
.y288{bottom:264.790533pt;}
.y1c7{bottom:265.653200pt;}
.y1fa{bottom:267.000267pt;}
.y97{bottom:267.685467pt;}
.yae{bottom:267.685600pt;}
.ydb{bottom:268.008400pt;}
.y1ae{bottom:268.151467pt;}
.y6e{bottom:268.331200pt;}
.y27f{bottom:270.682994pt;}
.y12b{bottom:271.447867pt;}
.y230{bottom:271.465333pt;}
.y2b7{bottom:277.819067pt;}
.y18a{bottom:277.932000pt;}
.y164{bottom:277.951067pt;}
.y1a{bottom:278.110800pt;}
.y47{bottom:278.615600pt;}
.y287{bottom:278.790533pt;}
.y1c6{bottom:280.986533pt;}
.y1f9{bottom:282.333600pt;}
.y96{bottom:283.018800pt;}
.yad{bottom:283.018933pt;}
.yda{bottom:283.341733pt;}
.y241{bottom:283.437467pt;}
.y1ad{bottom:283.484800pt;}
.y6d{bottom:283.664533pt;}
.y12a{bottom:287.894000pt;}
.y22f{bottom:288.771067pt;}
.y19{bottom:291.444133pt;}
.y2b6{bottom:291.952400pt;}
.y266{bottom:293.903467pt;}
.y1c5{bottom:296.319867pt;}
.y1f8{bottom:297.666933pt;}
.y95{bottom:298.352133pt;}
.yac{bottom:298.352267pt;}
.yd9{bottom:298.675067pt;}
.y1ac{bottom:298.818133pt;}
.y6c{bottom:298.997867pt;}
.y46{bottom:300.662933pt;}
.y189{bottom:300.904400pt;}
.y22e{bottom:302.771067pt;}
.y18{bottom:304.777467pt;}
.y286{bottom:306.018800pt;}
.y2b5{bottom:306.085733pt;}
.yf3{bottom:306.142667pt;}
.y161{bottom:309.942000pt;}
.y163{bottom:311.275333pt;}
.y1c4{bottom:311.653200pt;}
.y1f7{bottom:313.000267pt;}
.y94{bottom:313.685467pt;}
.yab{bottom:313.685600pt;}
.yd8{bottom:314.008400pt;}
.y1ab{bottom:314.151467pt;}
.y10a{bottom:316.681333pt;}
.y22d{bottom:316.771067pt;}
.y17{bottom:318.110800pt;}
.y2b4{bottom:320.219067pt;}
.y264{bottom:321.183067pt;}
.y131{bottom:321.525067pt;}
.y240{bottom:321.770800pt;}
.y6b{bottom:323.780133pt;}
.y160{bottom:323.942000pt;}
.y274{bottom:325.252667pt;}
.y162{bottom:325.275333pt;}
.y1c3{bottom:326.986533pt;}
.y1f6{bottom:328.333600pt;}
.y93{bottom:329.018800pt;}
.yaa{bottom:329.018933pt;}
.yd7{bottom:329.341733pt;}
.y1aa{bottom:329.484800pt;}
.y188{bottom:330.237733pt;}
.y16{bottom:331.444133pt;}
.y22c{bottom:333.863467pt;}
.y2b3{bottom:334.352400pt;}
.y23f{bottom:337.104133pt;}
.y277{bottom:337.438800pt;}
.y27b{bottom:338.598800pt;}
.y6a{bottom:339.113467pt;}
.y15f{bottom:341.942000pt;}
.y1c2{bottom:342.319867pt;}
.y45{bottom:342.352133pt;}
.y1f5{bottom:343.666933pt;}
.ybe{bottom:344.352133pt;}
.ya9{bottom:344.352267pt;}
.yd6{bottom:344.675067pt;}
.y15{bottom:344.777467pt;}
.y1a9{bottom:344.818133pt;}
.y187{bottom:345.571067pt;}
.y108{bottom:347.278667pt;}
.y22b{bottom:347.863467pt;}
.y2b2{bottom:348.485733pt;}
.y130{bottom:351.756667pt;}
.y92{bottom:352.018800pt;}
.y23e{bottom:352.437467pt;}
.y44{bottom:355.685467pt;}
.y15e{bottom:355.942000pt;}
.y1c1{bottom:357.653200pt;}
.y14{bottom:358.110800pt;}
.y1f4{bottom:359.000267pt;}
.ybd{bottom:359.685467pt;}
.ya8{bottom:359.685600pt;}
.yd5{bottom:360.008400pt;}
.y186{bottom:360.904400pt;}
.y22a{bottom:361.863467pt;}
.y26e{bottom:362.158667pt;}
.y2b1{bottom:362.619067pt;}
.y26a{bottom:363.320533pt;}
.y91{bottom:367.352133pt;}
.y23d{bottom:367.770800pt;}
.y265{bottom:369.367067pt;}
.y15d{bottom:369.942000pt;}
.y13{bottom:371.444133pt;}
.y1c0{bottom:372.986533pt;}
.y1f3{bottom:374.333600pt;}
.y43{bottom:374.352133pt;}
.ybc{bottom:375.018800pt;}
.ya7{bottom:375.018933pt;}
.yd4{bottom:375.341733pt;}
.y1a8{bottom:375.484800pt;}
.y185{bottom:376.237733pt;}
.y2b0{bottom:376.752400pt;}
.y100{bottom:378.108000pt;}
.y229{bottom:379.169200pt;}
.y268{bottom:379.235067pt;}
.y12f{bottom:379.342667pt;}
.y69{bottom:380.903467pt;}
.y23c{bottom:383.104133pt;}
.y15c{bottom:383.942000pt;}
.y12{bottom:384.777467pt;}
.y42{bottom:387.685467pt;}
.y1bf{bottom:388.319867pt;}
.y1f2{bottom:389.666933pt;}
.ybb{bottom:390.352133pt;}
.ya6{bottom:390.352267pt;}
.yd3{bottom:390.675067pt;}
.y2af{bottom:390.885733pt;}
.y184{bottom:391.571067pt;}
.y228{bottom:393.169200pt;}
.y1a7{bottom:394.490133pt;}
.y270{bottom:396.073733pt;}
.y68{bottom:396.236800pt;}
.y15b{bottom:397.942000pt;}
.y11{bottom:398.110800pt;}
.y41{bottom:401.018800pt;}
.y1be{bottom:403.653200pt;}
.y123{bottom:404.737333pt;}
.y1f1{bottom:405.000267pt;}
.y2ae{bottom:405.019067pt;}
.y90{bottom:405.685467pt;}
.ya5{bottom:405.685600pt;}
.yd2{bottom:406.008400pt;}
.y281{bottom:406.518667pt;}
.y147{bottom:406.654400pt;}
.y183{bottom:406.904400pt;}
.y227{bottom:410.474933pt;}
.yf5{bottom:410.573333pt;}
.y10{bottom:411.444133pt;}
.y67{bottom:411.570133pt;}
.y1a6{bottom:411.795867pt;}
.y15a{bottom:411.942000pt;}
.y40{bottom:414.352133pt;}
.y143{bottom:416.763333pt;}
.y122{bottom:417.349867pt;}
.y146{bottom:418.654400pt;}
.y1bd{bottom:418.986533pt;}
.y2ad{bottom:419.152400pt;}
.y1f0{bottom:420.333600pt;}
.y8f{bottom:421.018800pt;}
.ya4{bottom:421.018933pt;}
.yd1{bottom:421.341733pt;}
.y182{bottom:422.237733pt;}
.y226{bottom:424.474933pt;}
.yf{bottom:424.777467pt;}
.y1a5{bottom:425.795867pt;}
.y159{bottom:425.942000pt;}
.y66{bottom:426.903467pt;}
.y3f{bottom:427.685467pt;}
.y145{bottom:430.654400pt;}
.y263{bottom:431.840933pt;}
.y2ac{bottom:433.285733pt;}
.y1bc{bottom:434.319867pt;}
.y1ef{bottom:435.666933pt;}
.y8e{bottom:436.352267pt;}
.yd0{bottom:436.675067pt;}
.y181{bottom:437.571067pt;}
.y158{bottom:439.942000pt;}
.y3e{bottom:441.018933pt;}
.y225{bottom:441.567200pt;}
.y65{bottom:442.236800pt;}
.y1a4{bottom:443.101600pt;}
.yba{bottom:444.018933pt;}
.y2ab{bottom:447.419067pt;}
.yf7{bottom:448.648000pt;}
.y272{bottom:448.897867pt;}
.y1bb{bottom:449.653200pt;}
.y262{bottom:450.846133pt;}
.y1ee{bottom:451.000267pt;}
.ye{bottom:451.444133pt;}
.y8d{bottom:451.685600pt;}
.ycf{bottom:452.008400pt;}
.y10f{bottom:452.616000pt;}
.y180{bottom:452.904400pt;}
.y157{bottom:453.942000pt;}
.y129{bottom:454.021298pt;}
.y3d{bottom:454.352267pt;}
.y224{bottom:455.567200pt;}
.y142{bottom:456.074000pt;}
.y13b{bottom:456.923200pt;}
.y64{bottom:457.570133pt;}
.y1a3{bottom:460.407333pt;}
.y2aa{bottom:461.552267pt;}
.y128{bottom:466.631867pt;}
.y8c{bottom:467.018933pt;}
.yce{bottom:467.341733pt;}
.y3c{bottom:467.685600pt;}
.y261{bottom:467.938533pt;}
.y156{bottom:467.942000pt;}
.y17f{bottom:468.237733pt;}
.y13a{bottom:468.923200pt;}
.y223{bottom:472.873067pt;}
.y63{bottom:472.903467pt;}
.y125{bottom:475.038667pt;}
.y2a9{bottom:475.685733pt;}
.y1a2{bottom:477.713067pt;}
.y144{bottom:479.314667pt;}
.y139{bottom:480.923200pt;}
.y136{bottom:480.932400pt;}
.y3b{bottom:481.018933pt;}
.y260{bottom:481.938533pt;}
.y155{bottom:481.942000pt;}
.y8b{bottom:482.352267pt;}
.y1ed{bottom:482.504933pt;}
.ycd{bottom:482.675067pt;}
.y17e{bottom:483.571067pt;}
.y118{bottom:483.914667pt;}
.y222{bottom:486.873067pt;}
.y141{bottom:487.063867pt;}
.y62{bottom:488.236800pt;}
.y2a8{bottom:489.819067pt;}
.y276{bottom:494.180667pt;}
.y3a{bottom:494.352267pt;}
.y154{bottom:495.942000pt;}
.y8a{bottom:497.685600pt;}
.ycc{bottom:498.008400pt;}
.y17d{bottom:498.904400pt;}
.y1ec{bottom:498.951200pt;}
.y25f{bottom:499.244267pt;}
.y11e{bottom:501.898667pt;}
.y61{bottom:503.570133pt;}
.y2a7{bottom:503.952400pt;}
.y221{bottom:504.178800pt;}
.y11d{bottom:504.705005pt;}
.y28{bottom:505.818400pt;}
.y39{bottom:507.685600pt;}
.y153{bottom:509.942000pt;}
.y121{bottom:511.711698pt;}
.y13e{bottom:512.482267pt;}
.y116{bottom:512.876000pt;}
.y1eb{bottom:512.951200pt;}
.y89{bottom:513.018933pt;}
.y25e{bottom:513.244267pt;}
.ycb{bottom:513.341733pt;}
.y27e{bottom:513.916533pt;}
.y17c{bottom:514.237733pt;}
.y140{bottom:514.274000pt;}
.y1a1{bottom:514.685600pt;}
.y138{bottom:515.080667pt;}
.y279{bottom:516.817733pt;}
.y11c{bottom:517.315573pt;}
.y2a6{bottom:518.085733pt;}
.y220{bottom:518.178800pt;}
.y60{bottom:518.903467pt;}
.y27{bottom:519.151733pt;}
.y38{bottom:521.018933pt;}
.y120{bottom:524.322267pt;}
.y13d{bottom:524.482267pt;}
.y1ea{bottom:526.951200pt;}
.y137{bottom:527.080667pt;}
.y88{bottom:528.352267pt;}
.y1a0{bottom:528.685600pt;}
.y17b{bottom:529.571067pt;}
.y152{bottom:529.826000pt;}
.y11b{bottom:530.161653pt;}
.y25d{bottom:530.550000pt;}
.y2a5{bottom:532.218933pt;}
.y5f{bottom:534.236800pt;}
.y37{bottom:534.352267pt;}
.y21f{bottom:535.271067pt;}
.y13c{bottom:536.482267pt;}
.yca{bottom:540.013600pt;}
.y113{bottom:540.904000pt;}
.y273{bottom:542.118667pt;}
.y11a{bottom:543.007733pt;}
.y87{bottom:543.685600pt;}
.y13f{bottom:543.756667pt;}
.y151{bottom:543.826000pt;}
.y25c{bottom:544.550000pt;}
.y1d4{bottom:544.586667pt;}
.y17a{bottom:544.904400pt;}
.y115{bottom:545.343733pt;}
.y2a4{bottom:546.352400pt;}
.y36{bottom:547.685600pt;}
.y21e{bottom:549.271067pt;}
.y5e{bottom:549.570133pt;}
.y1d9{bottom:551.623141pt;}
.y150{bottom:557.826000pt;}
.y25b{bottom:558.550000pt;}
.y86{bottom:559.018933pt;}
.y179{bottom:560.237733pt;}
.y2a3{bottom:560.485733pt;}
.y5d{bottom:564.903467pt;}
.y21d{bottom:566.576800pt;}
.y19f{bottom:566.685600pt;}
.y1e4{bottom:568.775150pt;}
.y14f{bottom:571.826000pt;}
.yd{bottom:573.239467pt;}
.y35{bottom:574.352267pt;}
.y2a2{bottom:574.619067pt;}
.y25a{bottom:575.642400pt;}
.y10d{bottom:578.041333pt;}
.y107{bottom:578.277333pt;}
.yc9{bottom:578.346933pt;}
.y20c{bottom:579.187283pt;}
.y135{bottom:579.663333pt;}
.y5c{bottom:580.236800pt;}
.y21c{bottom:580.576800pt;}
.y19e{bottom:582.018933pt;}
.y14e{bottom:585.826000pt;}
.yc{bottom:585.906133pt;}
.y267{bottom:586.478667pt;}
.y1e0{bottom:587.264506pt;}
.y1dc{bottom:587.275119pt;}
.y1d6{bottom:587.285733pt;}
.y34{bottom:587.685600pt;}
.y2a1{bottom:588.752400pt;}
.y259{bottom:589.642400pt;}
.y85{bottom:589.685600pt;}
.y178{bottom:590.904400pt;}
.yc8{bottom:593.680267pt;}
.y5b{bottom:595.570133pt;}
.y19d{bottom:597.352267pt;}
.y208{bottom:597.464267pt;}
.y21b{bottom:597.882667pt;}
.yb{bottom:598.572800pt;}
.y2a0{bottom:602.885600pt;}
.y258{bottom:603.642400pt;}
.y2cf{bottom:604.352267pt;}
.y84{bottom:605.018933pt;}
.y283{bottom:607.951733pt;}
.yc7{bottom:609.013600pt;}
.y177{bottom:609.909733pt;}
.y5a{bottom:610.903467pt;}
.y21a{bottom:611.882667pt;}
.y19c{bottom:612.685600pt;}
.y1e5{bottom:614.000836pt;}
.ya{bottom:614.572800pt;}
.y29f{bottom:617.019067pt;}
.y2ce{bottom:618.352267pt;}
.yfa{bottom:618.680000pt;}
.y14a{bottom:619.442933pt;}
.y33{bottom:619.685600pt;}
.y83{bottom:620.352267pt;}
.y14d{bottom:620.576800pt;}
.y257{bottom:620.948133pt;}
.y20d{bottom:622.034031pt;}
.yc6{bottom:624.346933pt;}
.y134{bottom:625.442933pt;}
.y59{bottom:626.236800pt;}
.y176{bottom:627.248800pt;}
.y19b{bottom:628.018933pt;}
.y26d{bottom:628.856133pt;}
.y112{bottom:628.960933pt;}
.y219{bottom:628.974933pt;}
.y9{bottom:630.572800pt;}
.y26c{bottom:630.599333pt;}
.yfc{bottom:630.828667pt;}
.y29e{bottom:631.152400pt;}
.y149{bottom:631.442933pt;}
.y2cd{bottom:632.352267pt;}
.y14c{bottom:632.576800pt;}
.y32{bottom:633.018933pt;}
.y1e1{bottom:633.265004pt;}
.y1dd{bottom:633.275618pt;}
.y1db{bottom:633.286231pt;}
.y256{bottom:634.948133pt;}
.y82{bottom:635.685600pt;}
.y133{bottom:637.442933pt;}
.yc5{bottom:639.680267pt;}
.y175{bottom:641.248800pt;}
.y58{bottom:641.570133pt;}
.y209{bottom:641.631854pt;}
.y218{bottom:642.974933pt;}
.y19a{bottom:643.352267pt;}
.y148{bottom:643.442933pt;}
.y14b{bottom:644.576800pt;}
.y29d{bottom:645.285733pt;}
.y2cc{bottom:646.352267pt;}
.y8{bottom:650.352267pt;}
.y81{bottom:651.018933pt;}
.y31{bottom:651.685600pt;}
.y255{bottom:652.253867pt;}
.yc4{bottom:655.013600pt;}
.y57{bottom:656.903467pt;}
.y174{bottom:658.614667pt;}
.y199{bottom:658.685600pt;}
.y1e6{bottom:659.226522pt;}
.y29c{bottom:659.419067pt;}
.y217{bottom:660.280667pt;}
.y2cb{bottom:660.352267pt;}
.y7{bottom:663.018933pt;}
.y20e{bottom:664.880779pt;}
.y30{bottom:665.018933pt;}
.y254{bottom:666.253867pt;}
.y80{bottom:666.352267pt;}
.yc3{bottom:670.346933pt;}
.y56{bottom:672.236800pt;}
.y29b{bottom:673.552267pt;}
.y198{bottom:674.018933pt;}
.y216{bottom:674.280667pt;}
.y2ca{bottom:674.352267pt;}
.y6{bottom:675.685600pt;}
.y173{bottom:675.953733pt;}
.y1e2{bottom:678.225343pt;}
.y1de{bottom:678.235957pt;}
.y1d7{bottom:678.246571pt;}
.y2f{bottom:678.352267pt;}
.y7f{bottom:681.685600pt;}
.yf9{bottom:682.913867pt;}
.y105{bottom:683.146667pt;}
.y253{bottom:683.346133pt;}
.y20a{bottom:684.596726pt;}
.y132{bottom:685.491333pt;}
.yc2{bottom:685.680267pt;}
.y55{bottom:687.570133pt;}
.y29a{bottom:687.685733pt;}
.y2c9{bottom:688.352267pt;}
.y197{bottom:689.352267pt;}
.y27d{bottom:690.969200pt;}
.y215{bottom:691.586400pt;}
.y2e{bottom:691.685600pt;}
.y170{bottom:693.292667pt;}
.y280{bottom:694.453467pt;}
.y7e{bottom:697.018933pt;}
.y252{bottom:697.346133pt;}
.yc1{bottom:701.013600pt;}
.y299{bottom:701.819067pt;}
.y2c8{bottom:702.352267pt;}
.y104{bottom:702.767200pt;}
.y54{bottom:702.903467pt;}
.y12e{bottom:704.386533pt;}
.y1e7{bottom:704.452207pt;}
.y196{bottom:704.685600pt;}
.y2d{bottom:705.018933pt;}
.y214{bottom:705.586400pt;}
.y172{bottom:707.292667pt;}
.y20f{bottom:707.727527pt;}
.y7d{bottom:712.352267pt;}
.y251{bottom:714.651867pt;}
.y5{bottom:715.685600pt;}
.y269{bottom:715.906267pt;}
.y298{bottom:715.952267pt;}
.yc0{bottom:716.346933pt;}
.y2c7{bottom:716.352267pt;}
.y53{bottom:718.236800pt;}
.y2c{bottom:718.352267pt;}
.y195{bottom:720.018933pt;}
.y171{bottom:721.292667pt;}
.y1e3{bottom:723.058316pt;}
.y1df{bottom:723.068930pt;}
.y1da{bottom:723.079543pt;}
.y1e9{bottom:723.085086pt;}
.y1d8{bottom:723.259979pt;}
.y20b{bottom:727.443474pt;}
.y7c{bottom:727.685600pt;}
.y250{bottom:728.651867pt;}
.y297{bottom:730.085600pt;}
.y2c6{bottom:730.352267pt;}
.yfe{bottom:731.493333pt;}
.ybf{bottom:731.680267pt;}
.y2b{bottom:731.685600pt;}
.y52{bottom:733.570133pt;}
.y103{bottom:734.533734pt;}
.y194{bottom:735.352267pt;}
.y213{bottom:736.117867pt;}
.y12d{bottom:736.183067pt;}
.y4{bottom:737.018933pt;}
.y7b{bottom:743.018933pt;}
.y296{bottom:744.218933pt;}
.y16f{bottom:744.352267pt;}
.y1e8{bottom:744.450800pt;}
.y2a{bottom:745.018933pt;}
.y24f{bottom:745.957733pt;}
.y12c{bottom:748.183067pt;}
.y102{bottom:748.546667pt;}
.yfd{bottom:749.013600pt;}
.y212{bottom:750.117867pt;}
.y210{bottom:755.690667pt;}
.y3{bottom:758.352267pt;}
.y24e{bottom:759.957733pt;}
.y211{bottom:764.117867pt;}
.y29{bottom:797.928667pt;}
.y1{bottom:798.187600pt;}
.h18{height:8.408000pt;}
.h14{height:8.644000pt;}
.h15{height:9.576000pt;}
.h1b{height:10.978667pt;}
.h19{height:11.913333pt;}
.h16{height:12.145333pt;}
.h1a{height:13.314667pt;}
.h17{height:13.548000pt;}
.h1e{height:14.717333pt;}
.hf{height:14.948000pt;}
.h2b{height:21.481158pt;}
.h13{height:28.262667pt;}
.h2c{height:31.245729pt;}
.h3{height:31.397333pt;}
.h12{height:31.998667pt;}
.h1d{height:32.466667pt;}
.h28{height:35.705047pt;}
.h21{height:35.882667pt;}
.h1f{height:35.969333pt;}
.h11{height:36.011396pt;}
.he{height:36.011844pt;}
.h2{height:36.096000pt;}
.h29{height:36.124426pt;}
.h23{height:38.133333pt;}
.h9{height:38.506667pt;}
.h6{height:40.368000pt;}
.h2a{height:40.533333pt;}
.h2f{height:40.608000pt;}
.h8{height:42.610667pt;}
.h7{height:42.864000pt;}
.h1c{height:44.377333pt;}
.hc{height:44.586667pt;}
.h24{height:44.853333pt;}
.h20{height:45.120000pt;}
.h25{height:48.997333pt;}
.hb{height:49.338667pt;}
.ha{height:49.632000pt;}
.h5{height:53.824000pt;}
.h2d{height:68.381619pt;}
.h2e{height:70.719596pt;}
.h4{height:71.765333pt;}
.h26{height:100.853333pt;}
.h22{height:101.120000pt;}
.h10{height:112.110667pt;}
.h27{height:222.046667pt;}
.hd{height:460.158667pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.wf{width:-193.626667pt;}
.wd{width:-98.565333pt;}
.w4{width:12.612000pt;}
.w3{width:65.865333pt;}
.w15{width:83.616000pt;}
.w14{width:89.922667pt;}
.w13{width:94.828000pt;}
.wc{width:96.696000pt;}
.w8{width:100.665333pt;}
.w12{width:101.133333pt;}
.wb{width:105.805333pt;}
.w11{width:113.045333pt;}
.we{width:113.513333pt;}
.w5{width:122.621333pt;}
.w10{width:133.364000pt;}
.w6{width:247.345333pt;}
.w9{width:393.090667pt;}
.wa{width:393.790667pt;}
.w7{width:394.258667pt;}
.w2{width:426.754667pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x32{left:-111.184133pt;}
.x2e{left:-73.809067pt;}
.x0{left:0.000000pt;}
.x18{left:8.760267pt;}
.x1b{left:52.554400pt;}
.x16{left:58.402133pt;}
.x34{left:62.581733pt;}
.x43{left:64.917467pt;}
.x26{left:67.262133pt;}
.x2a{left:70.074533pt;}
.x3d{left:73.097067pt;}
.x36{left:74.260400pt;}
.x38{left:76.370133pt;}
.x39{left:78.014533pt;}
.x2c{left:79.411867pt;}
.x28{left:81.514133pt;}
.x30{left:83.150000pt;}
.x80{left:84.039067pt;}
.x2{left:85.039333pt;}
.x3{left:86.374533pt;}
.x23{left:88.043867pt;}
.x97{left:89.239867pt;}
.x68{left:90.152800pt;}
.x70{left:91.597333pt;}
.x13{left:92.598667pt;}
.x20{left:93.658133pt;}
.xe{left:95.667333pt;}
.x8c{left:96.628178pt;}
.xb{left:98.373600pt;}
.x95{left:99.426000pt;}
.x12{left:101.332933pt;}
.x25{left:102.604000pt;}
.xa{left:104.076267pt;}
.x7{left:105.428800pt;}
.x4{left:106.375867pt;}
.x7e{left:108.299030pt;}
.xf{left:109.573733pt;}
.x8a{left:111.780249pt;}
.x89{left:112.682286pt;}
.x5f{left:114.619867pt;}
.x90{left:115.746000pt;}
.x42{left:118.020000pt;}
.x45{left:119.220667pt;}
.xd{left:120.174400pt;}
.xb0{left:122.532933pt;}
.x46{left:124.249867pt;}
.x8b{left:125.439663pt;}
.x33{left:126.894667pt;}
.x4f{left:128.008667pt;}
.x8f{left:129.611867pt;}
.x10{left:134.260400pt;}
.xb2{left:138.202833pt;}
.xc{left:141.160800pt;}
.x27{left:142.542667pt;}
.xb1{left:144.592567pt;}
.x5{left:145.512667pt;}
.x44{left:148.615321pt;}
.x4d{left:151.300933pt;}
.x7f{left:152.309600pt;}
.x72{left:157.313867pt;}
.x4c{left:161.151600pt;}
.x24{left:165.673200pt;}
.x73{left:167.407654pt;}
.x9c{left:170.135733pt;}
.x49{left:171.032667pt;}
.x4b{left:178.476400pt;}
.x75{left:182.638553pt;}
.x3e{left:184.131067pt;}
.x91{left:185.170800pt;}
.x35{left:190.432000pt;}
.x3f{left:193.476590pt;}
.xb4{left:195.092133pt;}
.x48{left:197.096533pt;}
.xae{left:197.997467pt;}
.x64{left:203.956800pt;}
.x4a{left:206.504267pt;}
.xa5{left:209.024533pt;}
.x1f{left:210.208000pt;}
.x21{left:212.615875pt;}
.x9{left:213.613867pt;}
.x60{left:215.704400pt;}
.xb5{left:217.151767pt;}
.x74{left:218.439125pt;}
.x41{left:220.788000pt;}
.x77{left:222.026612pt;}
.x47{left:223.469467pt;}
.x6e{left:224.848667pt;}
.x51{left:227.527200pt;}
.xa4{left:228.768533pt;}
.x99{left:230.331200pt;}
.x96{left:231.636933pt;}
.x92{left:235.423467pt;}
.x94{left:238.216533pt;}
.x6d{left:239.444133pt;}
.x9d{left:240.375733pt;}
.x76{left:242.023137pt;}
.x50{left:244.113467pt;}
.x3b{left:245.781770pt;}
.x98{left:248.690533pt;}
.xb6{left:249.658639pt;}
.x78{left:250.800804pt;}
.x1e{left:251.852000pt;}
.x8e{left:253.156533pt;}
.x9a{left:254.308133pt;}
.xb8{left:255.469527pt;}
.x8d{left:259.920533pt;}
.xa1{left:263.595200pt;}
.x83{left:265.330537pt;}
.x69{left:266.917600pt;}
.x7b{left:269.003586pt;}
.x22{left:270.070667pt;}
.xb7{left:271.727561pt;}
.x29{left:272.638667pt;}
.xa2{left:279.850667pt;}
.x8{left:281.139467pt;}
.xb3{left:282.750106pt;}
.x81{left:286.249200pt;}
.x93{left:287.602400pt;}
.x5a{left:289.781600pt;}
.x3c{left:292.027658pt;}
.x2d{left:293.894667pt;}
.x82{left:295.355476pt;}
.x5d{left:297.319600pt;}
.x3a{left:299.478384pt;}
.x59{left:304.304133pt;}
.x65{left:306.422133pt;}
.xac{left:308.873467pt;}
.xa8{left:312.943067pt;}
.x11{left:314.362133pt;}
.x79{left:319.504363pt;}
.x61{left:321.822133pt;}
.xa9{left:323.968239pt;}
.xaa{left:325.718727pt;}
.x5e{left:327.412400pt;}
.x6a{left:329.600400pt;}
.x2b{left:331.976267pt;}
.xa6{left:333.258000pt;}
.xab{left:336.743900pt;}
.x2f{left:338.504000pt;}
.x40{left:339.438667pt;}
.xa7{left:344.283173pt;}
.x9f{left:346.027200pt;}
.x58{left:349.129600pt;}
.x7a{left:354.731787pt;}
.x56{left:355.822933pt;}
.x57{left:363.417333pt;}
.x9b{left:364.607200pt;}
.x9e{left:366.348400pt;}
.x53{left:368.070400pt;}
.x52{left:369.147600pt;}
.xa3{left:370.992800pt;}
.x54{left:375.462267pt;}
.x1{left:377.147600pt;}
.xaf{left:378.545322pt;}
.x1a{left:379.848000pt;}
.xa0{left:382.602000pt;}
.x7c{left:387.326971pt;}
.x6b{left:396.459067pt;}
.x86{left:397.661483pt;}
.x1d{left:400.865733pt;}
.x87{left:402.966319pt;}
.x7d{left:408.013397pt;}
.x1c{left:410.443600pt;}
.xad{left:411.626933pt;}
.x6{left:414.255333pt;}
.x5b{left:415.175867pt;}
.x66{left:416.446400pt;}
.x14{left:417.654800pt;}
.x5c{left:418.930533pt;}
.x84{left:421.898353pt;}
.x67{left:424.005467pt;}
.x37{left:427.493733pt;}
.x63{left:429.400000pt;}
.x71{left:430.521867pt;}
.x6f{left:431.727600pt;}
.x62{left:433.059867pt;}
.x85{left:434.022157pt;}
.x88{left:436.202079pt;}
.x15{left:439.637333pt;}
.x55{left:452.195333pt;}
.xb9{left:465.180133pt;}
.x6c{left:466.410267pt;}
.x17{left:469.068000pt;}
.x4e{left:479.741200pt;}
.x19{left:480.745467pt;}
.xba{left:495.626267pt;}
.x31{left:500.366667pt;}
.xbb{left:512.072533pt;}
}




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