
    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_3281094877f8f37c9fa9a6a9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_317436b4d9496178c0f79e83.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9c06b0d49e6036fa925d38e0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_51627d9ae4cdc1d7415e76ea.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_79c64e9a2a10fe2374e0d1e9.woff2')format("woff");}.ff6{font-family:ff6;line-height:3.716797;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_1711ae9c57dfe3c1543ffed2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.926270;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f15f074bc268167593402336.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3b80eb822d5809cffe1809f8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_f064f7172a64b9b934c67392.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_11ebcca6750ff5cf4f2cbc57.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_92554bb8102e387eab42b96b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.722656;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_bab20d010a979cae81195376.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921875;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_384c164c9f5cdf9522ab1ff4.woff2')format("woff");}.fff{font-family:fff;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;}
.m2{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vd{vertical-align:-33.120000px;}
.v1a{vertical-align:-21.600000px;}
.vf{vertical-align:-19.440000px;}
.vb{vertical-align:-14.400000px;}
.v1{vertical-align:-9.360000px;}
.v19{vertical-align:-5.040000px;}
.v4{vertical-align:-2.880000px;}
.v17{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:1.440000px;}
.v8{vertical-align:2.880000px;}
.ve{vertical-align:7.920000px;}
.v2{vertical-align:9.360000px;}
.v10{vertical-align:13.680000px;}
.v11{vertical-align:21.600000px;}
.v12{vertical-align:27.360000px;}
.v18{vertical-align:31.680000px;}
.v3{vertical-align:33.120000px;}
.v13{vertical-align:40.320000px;}
.v14{vertical-align:45.360000px;}
.v9{vertical-align:48.240000px;}
.v6{vertical-align:51.840000px;}
.v7{vertical-align:54.720000px;}
.v5{vertical-align:57.600000px;}
.v16{vertical-align:62.640000px;}
.v15{vertical-align:74.880000px;}
.va{vertical-align:102.960000px;}
.ls8a{letter-spacing:-6.750000px;}
.ls37{letter-spacing:-1.656000px;}
.ls2c{letter-spacing:-1.512000px;}
.ls1d{letter-spacing:-1.440000px;}
.ls72{letter-spacing:-1.008000px;}
.ls1b{letter-spacing:-0.936000px;}
.ls2b{letter-spacing:-0.792000px;}
.lse{letter-spacing:-0.720000px;}
.ls67{letter-spacing:-0.648000px;}
.ls8d{letter-spacing:-0.576000px;}
.ls36{letter-spacing:-0.504000px;}
.ls68{letter-spacing:-0.432000px;}
.ls89{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.288000px;}
.ls79{letter-spacing:-0.264960px;}
.ls48{letter-spacing:-0.255600px;}
.ls83{letter-spacing:-0.241200px;}
.lsc{letter-spacing:-0.216000px;}
.ls8c{letter-spacing:-0.180000px;}
.ls10{letter-spacing:-0.144000px;}
.ls1c{letter-spacing:-0.072000px;}
.ls61{letter-spacing:-0.051120px;}
.ls8{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.050400px;}
.ls66{letter-spacing:0.051120px;}
.lsd{letter-spacing:0.072000px;}
.ls78{letter-spacing:0.132480px;}
.ls5{letter-spacing:0.144000px;}
.ls74{letter-spacing:0.152640px;}
.ls52{letter-spacing:0.164880px;}
.ls71{letter-spacing:0.180000px;}
.ls7e{letter-spacing:0.181440px;}
.ls1e{letter-spacing:0.216000px;}
.ls4a{letter-spacing:0.241200px;}
.ls63{letter-spacing:0.273600px;}
.lsf{letter-spacing:0.288000px;}
.ls47{letter-spacing:0.306720px;}
.ls49{letter-spacing:0.357840px;}
.ls88{letter-spacing:0.358560px;}
.ls19{letter-spacing:0.360000px;}
.ls7d{letter-spacing:0.385920px;}
.ls6e{letter-spacing:0.432000px;}
.ls3e{letter-spacing:0.504000px;}
.ls6f{letter-spacing:0.538560px;}
.ls75{letter-spacing:0.576000px;}
.ls69{letter-spacing:0.648000px;}
.ls28{letter-spacing:0.712800px;}
.ls11{letter-spacing:0.720000px;}
.ls4d{letter-spacing:1.080000px;}
.ls9{letter-spacing:1.188000px;}
.ls6d{letter-spacing:1.440000px;}
.ls3f{letter-spacing:1.656000px;}
.lsa{letter-spacing:1.728000px;}
.ls0{letter-spacing:1.836000px;}
.ls3{letter-spacing:2.160000px;}
.ls41{letter-spacing:2.232000px;}
.ls40{letter-spacing:2.669040px;}
.ls35{letter-spacing:2.880000px;}
.ls46{letter-spacing:2.887200px;}
.ls56{letter-spacing:3.165120px;}
.ls1a{letter-spacing:3.600000px;}
.ls4e{letter-spacing:4.130640px;}
.ls27{letter-spacing:4.320000px;}
.ls4c{letter-spacing:4.437360px;}
.ls5e{letter-spacing:4.450320px;}
.ls13{letter-spacing:5.040000px;}
.ls4{letter-spacing:5.760000px;}
.ls45{letter-spacing:6.480000px;}
.ls14{letter-spacing:7.200000px;}
.ls2{letter-spacing:7.920000px;}
.ls76{letter-spacing:7.927200px;}
.ls24{letter-spacing:8.640000px;}
.ls20{letter-spacing:9.360000px;}
.ls22{letter-spacing:10.072800px;}
.ls23{letter-spacing:10.080000px;}
.ls1{letter-spacing:10.800000px;}
.ls16{letter-spacing:11.520000px;}
.ls6{letter-spacing:12.240000px;}
.ls1f{letter-spacing:12.960000px;}
.ls6a{letter-spacing:13.680000px;}
.ls15{letter-spacing:14.400000px;}
.ls64{letter-spacing:14.976000px;}
.ls25{letter-spacing:15.120000px;}
.ls2f{letter-spacing:15.480000px;}
.ls53{letter-spacing:15.552000px;}
.ls30{letter-spacing:15.696000px;}
.ls6b{letter-spacing:15.840000px;}
.ls3a{letter-spacing:16.056000px;}
.ls31{letter-spacing:16.200000px;}
.ls43{letter-spacing:16.416000px;}
.ls51{letter-spacing:16.560000px;}
.ls5d{letter-spacing:16.992000px;}
.ls18{letter-spacing:17.280000px;}
.ls39{letter-spacing:17.921520px;}
.ls62{letter-spacing:18.000000px;}
.ls3b{letter-spacing:18.641520px;}
.ls5a{letter-spacing:19.005120px;}
.ls58{letter-spacing:19.152000px;}
.ls5b{letter-spacing:19.570320px;}
.ls38{letter-spacing:19.656000px;}
.ls54{letter-spacing:19.800000px;}
.ls5f{letter-spacing:19.872000px;}
.ls2a{letter-spacing:20.160000px;}
.ls57{letter-spacing:20.290320px;}
.ls2e{letter-spacing:20.376000px;}
.ls4b{letter-spacing:20.664000px;}
.ls6c{letter-spacing:20.880000px;}
.ls70{letter-spacing:21.600000px;}
.ls17{letter-spacing:23.040000px;}
.ls3d{letter-spacing:23.256000px;}
.ls29{letter-spacing:23.760000px;}
.ls73{letter-spacing:25.200000px;}
.ls50{letter-spacing:25.920000px;}
.ls77{letter-spacing:29.520000px;}
.ls55{letter-spacing:32.832000px;}
.ls7{letter-spacing:33.840000px;}
.ls33{letter-spacing:36.936000px;}
.ls21{letter-spacing:63.504000px;}
.ls12{letter-spacing:73.584000px;}
.ls81{letter-spacing:77.760000px;}
.ls84{letter-spacing:106.560000px;}
.ls2d{letter-spacing:119.952000px;}
.ls85{letter-spacing:121.680000px;}
.ls82{letter-spacing:167.760000px;}
.ls8b{letter-spacing:189.900000px;}
.ls7c{letter-spacing:195.840000px;}
.ls87{letter-spacing:196.560000px;}
.ls7b{letter-spacing:239.040000px;}
.ls80{letter-spacing:243.360000px;}
.ls32{letter-spacing:301.860000px;}
.ls7f{letter-spacing:367.380000px;}
.ls44{letter-spacing:406.980000px;}
.ls86{letter-spacing:419.040000px;}
.ls3c{letter-spacing:529.380000px;}
.ls7a{letter-spacing:652.320000px;}
.ls34{letter-spacing:736.740000px;}
.ls65{letter-spacing:1252.080000px;}
.ls59{letter-spacing:1640.340000px;}
.ls4f{letter-spacing:1646.100000px;}
.ls5c{letter-spacing:1756.260000px;}
.ls42{letter-spacing:2083.140000px;}
.ls60{letter-spacing:2098.800000px;}
.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;}
}
.ws72{word-spacing:-72.288000px;}
.ws70{word-spacing:-72.216000px;}
.ws6a{word-spacing:-72.144000px;}
.ws29{word-spacing:-72.000000px;}
.ws71{word-spacing:-71.928000px;}
.ws6b{word-spacing:-71.856000px;}
.ws6d{word-spacing:-71.784000px;}
.ws6f{word-spacing:-71.712000px;}
.ws6c{word-spacing:-71.496000px;}
.ws7a{word-spacing:-51.477840px;}
.ws78{word-spacing:-51.426720px;}
.ws8e{word-spacing:-51.171120px;}
.ws88{word-spacing:-51.068880px;}
.ws79{word-spacing:-50.864400px;}
.ws69{word-spacing:-29.880000px;}
.ws0{word-spacing:-28.188000px;}
.wsd5{word-spacing:-22.320000px;}
.wsa4{word-spacing:-19.440000px;}
.wsb0{word-spacing:-18.720000px;}
.ws90{word-spacing:-18.648000px;}
.ws87{word-spacing:-18.504000px;}
.ws4{word-spacing:-18.288000px;}
.ws44{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws95{word-spacing:-17.928000px;}
.ws2a{word-spacing:-17.856000px;}
.ws45{word-spacing:-17.784000px;}
.ws1{word-spacing:-17.712000px;}
.wsa5{word-spacing:-17.568000px;}
.ws74{word-spacing:-17.496000px;}
.wsaa{word-spacing:-17.280000px;}
.ws5e{word-spacing:-17.208000px;}
.ws43{word-spacing:-16.560000px;}
.ws73{word-spacing:-16.344000px;}
.wsca{word-spacing:-16.295040px;}
.ws6e{word-spacing:-15.552000px;}
.wsce{word-spacing:-12.445920px;}
.ws82{word-spacing:-12.301200px;}
.ws46{word-spacing:-12.060000px;}
.wscf{word-spacing:-11.818800px;}
.wscb{word-spacing:-10.440000px;}
.ws83{word-spacing:-9.720000px;}
.wsd2{word-spacing:-5.400000px;}
.wsb7{word-spacing:-3.600000px;}
.wscc{word-spacing:-0.861120px;}
.ws35{word-spacing:-0.720000px;}
.ws9{word-spacing:-0.648000px;}
.wsd9{word-spacing:-0.540000px;}
.wsa3{word-spacing:-0.432000px;}
.wsd0{word-spacing:-0.360000px;}
.ws59{word-spacing:-0.288000px;}
.ws92{word-spacing:-0.216000px;}
.ws16{word-spacing:-0.144000px;}
.wscd{word-spacing:-0.132480px;}
.ws30{word-spacing:-0.072000px;}
.ws6{word-spacing:0.000000px;}
.ws51{word-spacing:0.072000px;}
.ws8{word-spacing:0.108000px;}
.ws8c{word-spacing:0.144000px;}
.wsd1{word-spacing:0.180000px;}
.ws18{word-spacing:0.216000px;}
.wsb{word-spacing:0.288000px;}
.wsa0{word-spacing:0.432000px;}
.wsb4{word-spacing:0.504000px;}
.ws3d{word-spacing:0.576000px;}
.ws7{word-spacing:0.648000px;}
.ws1b{word-spacing:0.720000px;}
.ws4c{word-spacing:0.936000px;}
.ws3e{word-spacing:1.008000px;}
.wsd7{word-spacing:1.080000px;}
.ws93{word-spacing:1.296000px;}
.wsa{word-spacing:1.440000px;}
.ws66{word-spacing:1.512000px;}
.ws2f{word-spacing:1.728000px;}
.ws7f{word-spacing:1.872000px;}
.ws15{word-spacing:2.016000px;}
.ws14{word-spacing:2.160000px;}
.ws76{word-spacing:2.304000px;}
.ws75{word-spacing:2.376000px;}
.ws13{word-spacing:2.448000px;}
.wsad{word-spacing:2.736000px;}
.ws1f{word-spacing:2.880000px;}
.ws4d{word-spacing:3.024000px;}
.ws1e{word-spacing:3.168000px;}
.ws2c{word-spacing:3.456000px;}
.ws2d{word-spacing:3.600000px;}
.ws55{word-spacing:3.816000px;}
.ws2e{word-spacing:3.888000px;}
.ws20{word-spacing:4.176000px;}
.ws22{word-spacing:4.320000px;}
.wsb5{word-spacing:4.536000px;}
.ws21{word-spacing:4.608000px;}
.ws1c{word-spacing:4.896000px;}
.wsd{word-spacing:5.040000px;}
.ws97{word-spacing:5.256000px;}
.ws1d{word-spacing:5.328000px;}
.ws86{word-spacing:5.616000px;}
.ws1a{word-spacing:5.760000px;}
.wsb6{word-spacing:5.832000px;}
.wsae{word-spacing:5.904000px;}
.wsdb{word-spacing:5.976000px;}
.wsc{word-spacing:6.048000px;}
.ws80{word-spacing:6.336000px;}
.ws60{word-spacing:6.480000px;}
.wsba{word-spacing:6.696000px;}
.ws4b{word-spacing:6.768000px;}
.ws94{word-spacing:6.912000px;}
.ws38{word-spacing:7.056000px;}
.ws37{word-spacing:7.200000px;}
.wsd4{word-spacing:7.290000px;}
.wsa6{word-spacing:7.488000px;}
.ws77{word-spacing:7.776000px;}
.ws11{word-spacing:7.920000px;}
.ws50{word-spacing:8.136000px;}
.ws12{word-spacing:8.208000px;}
.ws23{word-spacing:8.496000px;}
.ws5f{word-spacing:8.568000px;}
.ws5b{word-spacing:8.640000px;}
.ws5c{word-spacing:8.856000px;}
.ws99{word-spacing:8.928000px;}
.ws5d{word-spacing:9.216000px;}
.ws36{word-spacing:9.360000px;}
.ws56{word-spacing:9.648000px;}
.ws53{word-spacing:10.080000px;}
.ws57{word-spacing:10.224000px;}
.ws2b{word-spacing:10.368000px;}
.wse{word-spacing:10.656000px;}
.ws33{word-spacing:10.800000px;}
.wsf{word-spacing:11.016000px;}
.ws10{word-spacing:11.088000px;}
.ws34{word-spacing:11.376000px;}
.ws42{word-spacing:11.520000px;}
.ws9d{word-spacing:11.664000px;}
.ws81{word-spacing:11.808000px;}
.wsb8{word-spacing:12.096000px;}
.ws25{word-spacing:12.240000px;}
.ws26{word-spacing:12.384000px;}
.ws8a{word-spacing:12.456000px;}
.ws24{word-spacing:12.528000px;}
.ws49{word-spacing:12.816000px;}
.ws48{word-spacing:12.960000px;}
.ws9c{word-spacing:13.176000px;}
.ws4a{word-spacing:13.248000px;}
.wsc9{word-spacing:13.536000px;}
.ws98{word-spacing:13.680000px;}
.wsac{word-spacing:13.968000px;}
.ws3f{word-spacing:14.256000px;}
.ws19{word-spacing:14.400000px;}
.ws17{word-spacing:14.688000px;}
.ws65{word-spacing:14.976000px;}
.wsab{word-spacing:15.048000px;}
.ws54{word-spacing:15.120000px;}
.ws64{word-spacing:15.408000px;}
.wsaf{word-spacing:15.624000px;}
.ws9b{word-spacing:15.696000px;}
.ws9a{word-spacing:15.840000px;}
.wsa9{word-spacing:16.128000px;}
.ws8b{word-spacing:16.416000px;}
.ws4e{word-spacing:16.560000px;}
.ws4f{word-spacing:16.848000px;}
.ws52{word-spacing:17.136000px;}
.ws40{word-spacing:17.280000px;}
.ws41{word-spacing:17.568000px;}
.ws85{word-spacing:18.000000px;}
.ws61{word-spacing:18.216000px;}
.ws91{word-spacing:18.288000px;}
.ws62{word-spacing:18.720000px;}
.ws63{word-spacing:19.008000px;}
.wsa2{word-spacing:19.296000px;}
.ws9f{word-spacing:19.440000px;}
.wsa1{word-spacing:19.728000px;}
.ws32{word-spacing:20.160000px;}
.ws31{word-spacing:20.448000px;}
.wsbf{word-spacing:20.880000px;}
.wsc0{word-spacing:21.024000px;}
.ws9e{word-spacing:21.168000px;}
.ws3a{word-spacing:21.456000px;}
.ws39{word-spacing:21.600000px;}
.ws58{word-spacing:21.888000px;}
.wsa8{word-spacing:22.320000px;}
.wsa7{word-spacing:22.896000px;}
.ws47{word-spacing:23.040000px;}
.ws96{word-spacing:23.616000px;}
.ws68{word-spacing:23.760000px;}
.ws67{word-spacing:24.048000px;}
.ws8d{word-spacing:24.336000px;}
.wsb9{word-spacing:24.480000px;}
.wsc1{word-spacing:24.768000px;}
.wsb2{word-spacing:25.200000px;}
.wsb3{word-spacing:25.416000px;}
.wsb1{word-spacing:25.488000px;}
.ws3c{word-spacing:25.776000px;}
.ws89{word-spacing:25.920000px;}
.ws3b{word-spacing:26.208000px;}
.ws84{word-spacing:28.800000px;}
.ws7e{word-spacing:29.376000px;}
.ws7d{word-spacing:29.520000px;}
.ws7c{word-spacing:30.240000px;}
.ws5a{word-spacing:31.680000px;}
.ws27{word-spacing:33.840000px;}
.ws28{word-spacing:34.128000px;}
.wsc6{word-spacing:34.560000px;}
.wsbd{word-spacing:37.008000px;}
.wsbe{word-spacing:38.160000px;}
.wsc8{word-spacing:46.800000px;}
.wsc7{word-spacing:47.088000px;}
.wsc4{word-spacing:50.976000px;}
.wsc3{word-spacing:51.120000px;}
.wsc2{word-spacing:51.408000px;}
.wsbb{word-spacing:54.720000px;}
.wsbc{word-spacing:55.440000px;}
.wsc5{word-spacing:69.120000px;}
.ws8f{word-spacing:94.480920px;}
.wsd6{word-spacing:143.820000px;}
.wsda{word-spacing:169.190208px;}
.ws7b{word-spacing:301.104000px;}
.wsd3{word-spacing:306.607680px;}
.wsd8{word-spacing:570.600000px;}
._4b{margin-left:-3069.320400px;}
._53{margin-left:-3066.505200px;}
._33{margin-left:-3064.834800px;}
._6d{margin-left:-3063.110400px;}
._34{margin-left:-3060.856800px;}
._7a{margin-left:-3059.179200px;}
._4c{margin-left:-3057.937200px;}
._74{margin-left:-3056.929200px;}
._4a{margin-left:-3055.132800px;}
._73{margin-left:-3054.099600px;}
._48{margin-left:-3052.576800px;}
._45{margin-left:-3050.632800px;}
._3a{margin-left:-3049.632000px;}
._3c{margin-left:-3047.994000px;}
._4e{margin-left:-3046.841280px;}
._35{margin-left:-3045.686400px;}
._3f{margin-left:-3044.649600px;}
._37{margin-left:-3042.504000px;}
._32{margin-left:-3041.056800px;}
._3d{margin-left:-3039.908400px;}
._23{margin-left:-3027.736800px;}
._1c{margin-left:-3024.802800px;}
._2d{margin-left:-3023.406000px;}
._22{margin-left:-3021.660000px;}
._26{margin-left:-3020.256000px;}
._21{margin-left:-3018.272400px;}
._17{margin-left:-3017.034000px;}
._1d{margin-left:-3015.417600px;}
._16{margin-left:-3014.121600px;}
._24{margin-left:-3011.353200px;}
._15{margin-left:-3008.854800px;}
._2c{margin-left:-3007.609200px;}
._13{margin-left:-3006.583200px;}
._1b{margin-left:-3004.855200px;}
._10{margin-left:-3003.768000px;}
._12{margin-left:-2986.041600px;}
._2{margin-left:-2977.984800px;}
._5{margin-left:-2973.636000px;}
._40{margin-left:-2972.217600px;}
._71{margin-left:-2970.968400px;}
._c{margin-left:-2969.064000px;}
._a{margin-left:-2967.674400px;}
._65{margin-left:-2902.752000px;}
._7b{margin-left:-2897.056800px;}
._3e{margin-left:-2889.392400px;}
._3{margin-left:-2873.764800px;}
._56{margin-left:-2859.681600px;}
._60{margin-left:-2817.640800px;}
._75{margin-left:-2802.884400px;}
._80{margin-left:-2760.760800px;}
._49{margin-left:-2696.454000px;}
._61{margin-left:-2627.640000px;}
._67{margin-left:-2607.444000px;}
._4f{margin-left:-2597.169600px;}
._6e{margin-left:-2535.562800px;}
._6f{margin-left:-2472.602400px;}
._4{margin-left:-2379.834000px;}
._27{margin-left:-2283.080400px;}
._29{margin-left:-2233.620000px;}
._19{margin-left:-2225.401200px;}
._57{margin-left:-2067.267600px;}
._36{margin-left:-1955.120400px;}
._7c{margin-left:-1925.337600px;}
._7d{margin-left:-1911.816000px;}
._18{margin-left:-1852.092000px;}
._7e{margin-left:-1787.961600px;}
._72{margin-left:-1735.419600px;}
._85{margin-left:-1731.744000px;}
._5f{margin-left:-1730.674800px;}
._76{margin-left:-1633.064400px;}
._6a{margin-left:-1517.720400px;}
._25{margin-left:-1505.736000px;}
._4d{margin-left:-1435.777200px;}
._2b{margin-left:-1397.304000px;}
._46{margin-left:-1387.162800px;}
._6b{margin-left:-1348.106400px;}
._44{margin-left:-1268.128800px;}
._43{margin-left:-1221.840000px;}
._38{margin-left:-1208.610000px;}
._31{margin-left:-1201.305600px;}
._5a{margin-left:-1183.392000px;}
._83{margin-left:-1164.344400px;}
._55{margin-left:-1139.288400px;}
._79{margin-left:-1134.144000px;}
._2a{margin-left:-1053.417600px;}
._5e{margin-left:-1051.704000px;}
._50{margin-left:-1047.600000px;}
._6{margin-left:-1012.032000px;}
._59{margin-left:-969.984000px;}
._70{margin-left:-959.288400px;}
._2f{margin-left:-933.296400px;}
._3b{margin-left:-908.096400px;}
._77{margin-left:-901.328400px;}
._69{margin-left:-899.240400px;}
._6c{margin-left:-882.072000px;}
._68{margin-left:-750.880800px;}
._78{margin-left:-732.880800px;}
._1a{margin-left:-719.208000px;}
._54{margin-left:-617.605200px;}
._7{margin-left:-582.224400px;}
._5c{margin-left:-529.984800px;}
._82{margin-left:-523.440000px;}
._51{margin-left:-437.976000px;}
._52{margin-left:-401.976000px;}
._30{margin-left:-355.568400px;}
._86{margin-left:-234.000000px;}
._bb{margin-left:-12.060000px;}
._1e{margin-left:-6.696000px;}
._62{margin-left:-4.744800px;}
._7f{margin-left:-3.578400px;}
._1{margin-left:-1.944000px;}
._0{width:1.328400px;}
._d{width:2.732400px;}
._14{width:4.503600px;}
._11{width:6.127200px;}
._b{width:7.614000px;}
._28{width:8.647200px;}
._9{width:10.224000px;}
._8{width:11.847600px;}
._f{width:13.575600px;}
._e{width:14.598000px;}
._41{width:16.056000px;}
._47{width:18.478800px;}
._2e{width:19.526400px;}
._5b{width:20.761200px;}
._1f{width:22.287600px;}
._66{width:24.206400px;}
._20{width:26.020800px;}
._42{width:28.951200px;}
._84{width:30.200400px;}
._39{width:41.580000px;}
._58{width:43.920000px;}
._8a{width:46.630800px;}
._b0{width:47.880000px;}
._88{width:50.605200px;}
._87{width:54.255600px;}
._81{width:56.160000px;}
._a4{width:64.800000px;}
._89{width:69.879600px;}
._8d{width:72.072000px;}
._9f{width:73.872000px;}
._9b{width:76.392000px;}
._98{width:78.598800px;}
._8e{width:86.544000px;}
._ab{width:89.193600px;}
._63{width:95.688000px;}
._a3{width:100.918800px;}
._5d{width:108.288000px;}
._ac{width:120.024000px;}
._b2{width:121.176000px;}
._9e{width:125.893440px;}
._9d{width:145.872000px;}
._a1{width:147.312000px;}
._99{width:148.392000px;}
._9a{width:149.832000px;}
._ad{width:160.560000px;}
._ae{width:162.576000px;}
._92{width:164.880000px;}
._9c{width:167.904000px;}
._64{width:194.400000px;}
._90{width:195.840000px;}
._91{width:208.080000px;}
._ba{width:228.225600px;}
._95{width:235.584000px;}
._96{width:237.024000px;}
._8f{width:239.040000px;}
._b6{width:247.743360px;}
._97{width:251.568000px;}
._b9{width:267.105600px;}
._b7{width:296.421120px;}
._b8{width:305.985600px;}
._a5{width:313.200000px;}
._aa{width:330.984000px;}
._b4{width:345.409920px;}
._a2{width:388.479600px;}
._a7{width:391.608000px;}
._a9{width:398.880000px;}
._a8{width:405.792000px;}
._b1{width:417.279600px;}
._a0{width:424.479600px;}
._af{width:453.279600px;}
._94{width:457.272000px;}
._a6{width:486.072000px;}
._93{width:495.367200px;}
._b5{width:615.600000px;}
._b3{width:726.120000px;}
._8b{width:846.000000px;}
._8c{width:847.408320px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(17,85,204);}
.fc1{color:transparent;}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs4{font-size:51.120000px;}
.fsb{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fsa{font-size:90.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y19a{bottom:4.500000px;}
.y1fe{bottom:6.967350px;}
.y1eb{bottom:7.727550px;}
.y162{bottom:10.440000px;}
.y164{bottom:10.620000px;}
.y173{bottom:10.980000px;}
.y17a{bottom:11.160000px;}
.y175{bottom:12.240000px;}
.y17c{bottom:12.420000px;}
.y197{bottom:14.580000px;}
.y7c{bottom:21.420000px;}
.y5b{bottom:25.020000px;}
.ya2{bottom:25.200000px;}
.y55{bottom:25.740000px;}
.y74{bottom:25.920000px;}
.yb4{bottom:26.460000px;}
.y9f{bottom:27.360000px;}
.y7b{bottom:33.480000px;}
.y6b{bottom:33.660000px;}
.y53{bottom:37.080000px;}
.y5d{bottom:37.440000px;}
.y54{bottom:37.800000px;}
.y57{bottom:37.980000px;}
.y9e{bottom:38.700000px;}
.y171{bottom:41.580000px;}
.y178{bottom:41.760000px;}
.y1{bottom:57.600000px;}
.yb0{bottom:63.180000px;}
.yb1{bottom:63.720000px;}
.y182{bottom:71.100000px;}
.y18a{bottom:71.280000px;}
.ydd{bottom:111.420000px;}
.ye7{bottom:111.420150px;}
.yc1{bottom:114.300000px;}
.y111{bottom:121.320000px;}
.y135{bottom:125.100000px;}
.ycc{bottom:129.420000px;}
.y15e{bottom:129.960000px;}
.y15{bottom:131.400000px;}
.yda{bottom:132.120000px;}
.y4e{bottom:133.380000px;}
.y3f{bottom:147.420000px;}
.y2b{bottom:150.120000px;}
.ydc{bottom:152.820000px;}
.ye6{bottom:152.820150px;}
.y134{bottom:153.360000px;}
.y83{bottom:153.720000px;}
.y15d{bottom:158.220000px;}
.y16f{bottom:159.300000px;}
.y110{bottom:162.720000px;}
.y94{bottom:170.820000px;}
.yd9{bottom:173.520000px;}
.yc0{bottom:173.700000px;}
.y14{bottom:174.060000px;}
.y4d{bottom:176.220000px;}
.yaa{bottom:177.660000px;}
.y15c{bottom:178.920000px;}
.yfa{bottom:186.120000px;}
.y3e{bottom:188.820000px;}
.y2a{bottom:191.520000px;}
.ydb{bottom:194.220000px;}
.ye5{bottom:194.220150px;}
.y133{bottom:194.760000px;}
.y82{bottom:195.120000px;}
.y15b{bottom:199.620000px;}
.y69{bottom:203.580000px;}
.y10f{bottom:204.120000px;}
.y93{bottom:212.220000px;}
.yd8{bottom:214.920000px;}
.ybf{bottom:215.100000px;}
.y4c{bottom:217.620000px;}
.ya9{bottom:219.060000px;}
.y132{bottom:223.020000px;}
.yf9{bottom:227.520000px;}
.y15a{bottom:227.700000px;}
.y3d{bottom:230.220000px;}
.y29{bottom:232.920000px;}
.y13{bottom:234.900000px;}
.y104{bottom:235.620000px;}
.ye4{bottom:235.620150px;}
.y81{bottom:236.520000px;}
.y131{bottom:243.720000px;}
.y68{bottom:244.980000px;}
.y10e{bottom:245.520000px;}
.y159{bottom:248.400000px;}
.ycb{bottom:253.620000px;}
.ybe{bottom:256.500000px;}
.y4b{bottom:259.020000px;}
.y130{bottom:264.420000px;}
.yf8{bottom:268.920000px;}
.y158{bottom:269.100000px;}
.y3c{bottom:271.620000px;}
.yd7{bottom:273.960000px;}
.y28{bottom:274.320000px;}
.y103{bottom:277.020000px;}
.ye3{bottom:277.020150px;}
.y80{bottom:277.920000px;}
.ya8{bottom:278.100000px;}
.y12{bottom:279.720000px;}
.y67{bottom:286.380000px;}
.y10d{bottom:286.920000px;}
.y12f{bottom:292.500000px;}
.yca{bottom:295.020000px;}
.y157{bottom:297.360000px;}
.ybd{bottom:297.900000px;}
.y4a{bottom:300.420000px;}
.yf7{bottom:310.320000px;}
.y3b{bottom:313.020000px;}
.y12e{bottom:313.200000px;}
.y27{bottom:315.720000px;}
.y51{bottom:316.980000px;}
.y156{bottom:318.060000px;}
.y102{bottom:318.420000px;}
.y7f{bottom:319.320000px;}
.y11{bottom:321.120000px;}
.y10c{bottom:328.320000px;}
.y66{bottom:329.040000px;}
.yd6{bottom:333.720000px;}
.y190{bottom:333.725040px;}
.y12d{bottom:333.900000px;}
.ye2{bottom:336.060150px;}
.yc9{bottom:336.420000px;}
.ya7{bottom:337.860000px;}
.y155{bottom:338.760000px;}
.ybc{bottom:339.300000px;}
.y49{bottom:341.820000px;}
.yf6{bottom:351.720000px;}
.y18f{bottom:352.620000px;}
.y3a{bottom:354.420000px;}
.y26{bottom:357.120000px;}
.y50{bottom:359.820000px;}
.y7e{bottom:360.720000px;}
.y12c{bottom:362.160000px;}
.y10{bottom:362.520000px;}
.y204{bottom:366.840150px;}
.y154{bottom:367.020000px;}
.y189{bottom:368.280000px;}
.y92{bottom:372.060000px;}
.yd5{bottom:376.380000px;}
.y18e{bottom:377.100000px;}
.yc8{bottom:377.820000px;}
.ybb{bottom:380.700000px;}
.y12b{bottom:382.860000px;}
.y48{bottom:383.220000px;}
.y10b{bottom:387.360000px;}
.y153{bottom:387.720000px;}
.y65{bottom:389.880000px;}
.y7a{bottom:394.920000px;}
.y39{bottom:395.820000px;}
.ye1{bottom:395.820150px;}
.y18d{bottom:397.800000px;}
.y1f0{bottom:398.340000px;}
.y25{bottom:398.520000px;}
.y101{bottom:401.220000px;}
.yf{bottom:403.920000px;}
.ya5{bottom:405.540000px;}
.y203{bottom:408.240150px;}
.y152{bottom:408.420000px;}
.ya6{bottom:409.140000px;}
.yf5{bottom:411.120000px;}
.y4f{bottom:418.860000px;}
.yc7{bottom:419.220000px;}
.yba{bottom:422.100000px;}
.y1c7{bottom:423.720000px;}
.y1dc{bottom:424.080000px;}
.y47{bottom:424.620000px;}
.y18b{bottom:427.140000px;}
.y7d{bottom:428.400000px;}
.y151{bottom:429.120000px;}
.y64{bottom:431.280000px;}
.y91{bottom:431.820000px;}
.y18c{bottom:435.960000px;}
.y38{bottom:437.220000px;}
.ye0{bottom:437.220150px;}
.y1ef{bottom:439.740000px;}
.y24{bottom:439.920000px;}
.y100{bottom:442.620000px;}
.ye{bottom:445.320000px;}
.y10a{bottom:447.120000px;}
.yf4{bottom:452.520000px;}
.y181{bottom:456.660000px;}
.y150{bottom:457.200000px;}
.yc6{bottom:460.620000px;}
.yd4{bottom:460.620150px;}
.y1c6{bottom:465.120000px;}
.y188{bottom:465.300000px;}
.y1db{bottom:465.480000px;}
.y46{bottom:466.020000px;}
.y202{bottom:467.460150px;}
.y16d{bottom:469.985040px;}
.y63{bottom:472.680000px;}
.y90{bottom:473.220000px;}
.y14f{bottom:477.900000px;}
.y37{bottom:478.620000px;}
.ydf{bottom:478.620150px;}
.y12a{bottom:480.600000px;}
.ya4{bottom:480.600150px;}
.y23{bottom:481.320000px;}
.yb9{bottom:481.500000px;}
.yff{bottom:484.020000px;}
.y186{bottom:486.000000px;}
.yd{bottom:486.720000px;}
.y109{bottom:488.340000px;}
.y16c{bottom:488.880000px;}
.yf3{bottom:493.920000px;}
.y187{bottom:494.640000px;}
.y14e{bottom:498.600000px;}
.y1ee{bottom:499.140000px;}
.y183{bottom:500.760000px;}
.y79{bottom:501.300000px;}
.yc5{bottom:502.020000px;}
.y16b{bottom:504.540000px;}
.y45{bottom:507.420000px;}
.y201{bottom:508.860000px;}
.y1a6{bottom:510.480150px;}
.y8f{bottom:514.620000px;}
.ya1{bottom:514.800000px;}
.y62{bottom:515.340000px;}
.y184{bottom:515.520000px;}
.y14d{bottom:519.300000px;}
.y36{bottom:520.020000px;}
.y22{bottom:522.720000px;}
.yb8{bottom:522.900000px;}
.y185{bottom:524.160000px;}
.y1c5{bottom:524.520000px;}
.y1da{bottom:524.880000px;}
.yfe{bottom:525.420000px;}
.yc{bottom:528.120000px;}
.y129{bottom:529.560000px;}
.y108{bottom:531.180000px;}
.y169{bottom:531.540000px;}
.yf2{bottom:535.320000px;}
.y16a{bottom:539.640000px;}
.ya3{bottom:540.000000px;}
.y78{bottom:542.700000px;}
.yc4{bottom:543.420000px;}
.y16e{bottom:544.860000px;}
.y1ed{bottom:547.380000px;}
.y14c{bottom:547.560000px;}
.y128{bottom:550.260000px;}
.y200{bottom:550.440000px;}
.y1a5{bottom:551.880150px;}
.y180{bottom:553.500000px;}
.y8e{bottom:555.840000px;}
.y168{bottom:559.260000px;}
.y35{bottom:561.420000px;}
.yb7{bottom:564.300000px;}
.y21{bottom:565.380000px;}
.y1c4{bottom:565.920000px;}
.y1d9{bottom:566.280000px;}
.y44{bottom:566.460000px;}
.yfd{bottom:566.820000px;}
.y14b{bottom:568.260000px;}
.yb{bottom:569.340000px;}
.y127{bottom:570.960000px;}
.y17e{bottom:574.200000px;}
.y9d{bottom:575.100000px;}
.y107{bottom:575.280000px;}
.y61{bottom:576.180000px;}
.yf1{bottom:576.720000px;}
.y17f{bottom:583.020000px;}
.y77{bottom:583.920000px;}
.yc3{bottom:584.820000px;}
.y167{bottom:586.080000px;}
.y14a{bottom:588.960000px;}
.y1b9{bottom:590.400000px;}
.y214{bottom:592.380000px;}
.y1a4{bottom:593.280150px;}
.y8d{bottom:597.240000px;}
.y126{bottom:599.220000px;}
.y34{bottom:602.820000px;}
.y177{bottom:603.720000px;}
.y1ff{bottom:605.340000px;}
.y1ae{bottom:606.240000px;}
.y1d8{bottom:607.680000px;}
.y20{bottom:608.220000px;}
.ya{bottom:610.740000px;}
.y17d{bottom:612.360000px;}
.y166{bottom:612.900000px;}
.ya0{bottom:613.800000px;}
.y149{bottom:617.220000px;}
.yf0{bottom:618.120000px;}
.y60{bottom:618.840150px;}
.y106{bottom:619.380000px;}
.y125{bottom:619.920000px;}
.y1c3{bottom:620.820000px;}
.yb6{bottom:623.340000px;}
.y76{bottom:625.320000px;}
.y43{bottom:625.860000px;}
.yc2{bottom:626.220000px;}
.y1b8{bottom:631.800000px;}
.y179{bottom:633.060000px;}
.y213{bottom:633.780000px;}
.y210{bottom:637.089000px;}
.y148{bottom:637.920000px;}
.y8c{bottom:638.640000px;}
.y1a3{bottom:639.720000px;}
.y165{bottom:639.900000px;}
.y124{bottom:640.620000px;}
.y17b{bottom:641.880000px;}
.y1d3{bottom:641.937600px;}
.y33{bottom:644.220000px;}
.y1ad{bottom:647.640000px;}
.y1f{bottom:649.620000px;}
.y9{bottom:652.140000px;}
.y1c1{bottom:657.000000px;}
.y147{bottom:658.620000px;}
.yef{bottom:659.340000px;}
.y105{bottom:662.220000px;}
.y170{bottom:662.580000px;}
.y5f{bottom:662.940150px;}
.y1ea{bottom:663.480000px;}
.y1ec{bottom:664.740000px;}
.y75{bottom:666.720000px;}
.yd3{bottom:667.620000px;}
.y123{bottom:668.700000px;}
.y1c8{bottom:669.141750px;}
.y176{bottom:671.220000px;}
.y212{bottom:675.180000px;}
.y1a2{bottom:677.340000px;}
.y146{bottom:679.140000px;}
.yb5{bottom:682.740000px;}
.y20e{bottom:684.740100px;}
.y32{bottom:685.620000px;}
.y9c{bottom:688.680000px;}
.y122{bottom:689.400000px;}
.y1e{bottom:690.840000px;}
.y172{bottom:691.920000px;}
.y8{bottom:693.540000px;}
.y163{bottom:693.720000px;}
.y20f{bottom:697.143150px;}
.y8b{bottom:698.040000px;}
.y1c0{bottom:698.400000px;}
.y1b7{bottom:699.480000px;}
.y1fc{bottom:700.411050px;}
.y174{bottom:700.560000px;}
.yee{bottom:700.740000px;}
.y73{bottom:700.920000px;}
.y1c9{bottom:703.239510px;}
.yde{bottom:703.620000px;}
.y5e{bottom:705.780150px;}
.y1ac{bottom:707.040000px;}
.y145{bottom:707.400000px;}
.y1e8{bottom:708.087600px;}
.yd2{bottom:708.840000px;}
.y121{bottom:710.100000px;}
.y205{bottom:711.132600px;}
.y1a1{bottom:714.960000px;}
.yaf{bottom:717.300000px;}
.y161{bottom:721.440000px;}
.y42{bottom:726.840000px;}
.y1f1{bottom:726.848550px;}
.y144{bottom:728.100000px;}
.y211{bottom:730.080000px;}
.y1dd{bottom:731.026800px;}
.y9b{bottom:731.520000px;}
.y1d{bottom:732.240000px;}
.y1b6{bottom:732.600000px;}
.y1ca{bottom:737.337270px;}
.y1d4{bottom:738.018300px;}
.y120{bottom:738.360000px;}
.y8a{bottom:739.440000px;}
.y5a{bottom:739.980000px;}
.yed{bottom:742.140000px;}
.y31{bottom:744.840000px;}
.y1ab{bottom:748.440000px;}
.y143{bottom:748.800000px;}
.yd1{bottom:750.240000px;}
.y206{bottom:751.025100px;}
.yb3{bottom:751.140000px;}
.y7{bottom:752.580000px;}
.y1a0{bottom:752.760000px;}
.y21f{bottom:753.982350px;}
.y1bf{bottom:757.800000px;}
.y11f{bottom:759.060000px;}
.y1f2{bottom:760.756050px;}
.y1de{bottom:764.755200px;}
.yae{bottom:766.800000px;}
.y41{bottom:768.240000px;}
.y142{bottom:769.500000px;}
.y1cb{bottom:771.435030px;}
.y9a{bottom:772.920000px;}
.y1c{bottom:773.640000px;}
.y1b5{bottom:774.000000px;}
.y160{bottom:774.180000px;}
.y5c{bottom:777.060000px;}
.yb2{bottom:777.420000px;}
.y11e{bottom:779.760000px;}
.y89{bottom:780.840000px;}
.yec{bottom:783.540000px;}
.y21d{bottom:785.279490px;}
.y30{bottom:786.240000px;}
.y19f{bottom:790.380000px;}
.y207{bottom:790.917600px;}
.y72{bottom:791.460000px;}
.yd0{bottom:791.640000px;}
.y1aa{bottom:793.980000px;}
.y1f3{bottom:794.663550px;}
.y1e9{bottom:796.431600px;}
.y1fd{bottom:797.241150px;}
.y141{bottom:797.760000px;}
.y1df{bottom:798.483600px;}
.y1be{bottom:799.200000px;}
.y11d{bottom:800.460000px;}
.y1b4{bottom:802.260000px;}
.y1cc{bottom:805.532790px;}
.y215{bottom:808.199250px;}
.y112{bottom:809.280000px;}
.y40{bottom:809.640000px;}
.y6{bottom:812.340000px;}
.y1b{bottom:815.040000px;}
.y19d{bottom:817.380000px;}
.y140{bottom:818.460000px;}
.y88{bottom:822.240000px;}
.yeb{bottom:824.940000px;}
.y2f{bottom:827.640000px;}
.y1bd{bottom:828.360000px;}
.y11c{bottom:828.540000px;}
.y1f4{bottom:828.571050px;}
.y208{bottom:830.810100px;}
.y1e0{bottom:832.212000px;}
.y99{bottom:832.320000px;}
.y71{bottom:832.860000px;}
.ycf{bottom:833.040000px;}
.y19e{bottom:835.200000px;}
.y1a9{bottom:838.980000px;}
.y1cd{bottom:839.630550px;}
.y19c{bottom:842.580000px;}
.y216{bottom:845.290770px;}
.y13f{bottom:846.540000px;}
.y59{bottom:849.060000px;}
.y11b{bottom:849.240000px;}
.yad{bottom:851.040000px;}
.y5{bottom:853.740000px;}
.y21e{bottom:861.967500px;}
.y1f5{bottom:862.478550px;}
.y87{bottom:863.640000px;}
.y1e1{bottom:865.940400px;}
.yea{bottom:866.340000px;}
.y13e{bottom:867.240000px;}
.y199{bottom:867.780000px;}
.y2e{bottom:869.040000px;}
.y11a{bottom:869.940000px;}
.y209{bottom:870.702600px;}
.y98{bottom:873.720000px;}
.y1ce{bottom:873.728310px;}
.y1a{bottom:874.080000px;}
.yce{bottom:874.440000px;}
.y1bc{bottom:874.980000px;}
.y217{bottom:882.382290px;}
.y1a8{bottom:883.800000px;}
.y19b{bottom:885.600000px;}
.y13d{bottom:887.940000px;}
.y58{bottom:890.460000px;}
.y70{bottom:892.260000px;}
.yac{bottom:892.440000px;}
.y198{bottom:892.980000px;}
.y1b3{bottom:895.680000px;}
.y1f6{bottom:896.386050px;}
.y119{bottom:898.200000px;}
.y1e2{bottom:899.668800px;}
.y86{bottom:906.300000px;}
.ye9{bottom:907.740000px;}
.y1cf{bottom:907.826070px;}
.y13c{bottom:908.640000px;}
.y2d{bottom:910.440000px;}
.y20a{bottom:910.595100px;}
.y1d7{bottom:911.897400px;}
.y4{bottom:914.400000px;}
.y97{bottom:915.120000px;}
.yfc{bottom:915.840000px;}
.y118{bottom:918.900000px;}
.y218{bottom:919.473810px;}
.y1bb{bottom:921.600000px;}
.y52{bottom:924.660000px;}
.y1a7{bottom:928.800000px;}
.y1f7{bottom:930.293550px;}
.y1e3{bottom:933.397200px;}
.ycd{bottom:933.480000px;}
.y6f{bottom:933.660000px;}
.y19{bottom:933.840000px;}
.y13b{bottom:936.900000px;}
.y194{bottom:938.520000px;}
.y117{bottom:939.600000px;}
.y1d0{bottom:941.923830px;}
.y1b2{bottom:942.300000px;}
.y1d6{bottom:948.722400px;}
.y85{bottom:949.140000px;}
.y95{bottom:949.320000px;}
.ye8{bottom:950.400000px;}
.y20b{bottom:950.487600px;}
.y2c{bottom:951.840000px;}
.y193{bottom:954.000000px;}
.y219{bottom:956.565330px;}
.y13a{bottom:957.600000px;}
.y196{bottom:959.760000px;}
.y56{bottom:961.740000px;}
.y1f8{bottom:964.201050px;}
.y1e4{bottom:967.125600px;}
.y116{bottom:967.860000px;}
.y1ba{bottom:968.400000px;}
.y195{bottom:969.480000px;}
.y96{bottom:974.340000px;}
.yfb{bottom:974.880000px;}
.y6e{bottom:975.060000px;}
.yab{bottom:975.240000px;}
.y1d1{bottom:976.021590px;}
.y1d5{bottom:985.547400px;}
.y139{bottom:985.860000px;}
.y3{bottom:987.120000px;}
.y115{bottom:988.560000px;}
.y1b0{bottom:988.920000px;}
.y20c{bottom:990.380100px;}
.y84{bottom:991.800000px;}
.y18{bottom:993.240000px;}
.y21a{bottom:993.656850px;}
.y1f9{bottom:998.108550px;}
.y1e5{bottom:1000.854000px;}
.y1af{bottom:1002.240000px;}
.y138{bottom:1006.560000px;}
.y114{bottom:1009.080000px;}
.y6a{bottom:1009.260000px;}
.y1d2{bottom:1010.119350px;}
.y1b1{bottom:1015.740000px;}
.y192{bottom:1016.640000px;}
.y137{bottom:1027.260000px;}
.y20d{bottom:1030.272600px;}
.y21b{bottom:1030.748370px;}
.y1fa{bottom:1032.016050px;}
.y1e6{bottom:1034.582400px;}
.y17{bottom:1034.640000px;}
.y6d{bottom:1042.920000px;}
.y136{bottom:1047.960000px;}
.y2{bottom:1049.220000px;}
.y6c{bottom:1049.580000px;}
.y15f{bottom:1055.340000px;}
.y113{bottom:1057.680000px;}
.y191{bottom:1058.040000px;}
.y1fb{bottom:1065.923550px;}
.y21c{bottom:1067.839890px;}
.y1e7{bottom:1068.310800px;}
.y1c2{bottom:1075.680000px;}
.y16{bottom:1076.040000px;}
.h2c{height:26.818500px;}
.h2b{height:26.820000px;}
.h2d{height:27.000000px;}
.h32{height:28.620000px;}
.h38{height:28.800000px;}
.h34{height:28.801500px;}
.h3a{height:30.961500px;}
.h36{height:33.518320px;}
.h2e{height:47.344922px;}
.h3b{height:50.400000px;}
.h25{height:50.800781px;}
.h31{height:57.960000px;}
.h33{height:58.140000px;}
.h1a{height:60.120000px;}
.h1f{height:60.300000px;}
.h2f{height:65.010937px;}
.h14{height:65.340000px;}
.h28{height:70.628906px;}
.h1{height:70.664062px;}
.h27{height:70.664663px;}
.h23{height:71.384063px;}
.h1e{height:72.104063px;}
.h20{height:72.104662px;}
.h4{height:72.562500px;}
.h1b{height:72.824062px;}
.h5{height:75.093750px;}
.h3e{height:75.424922px;}
.h3f{height:76.317188px;}
.he{height:76.533750px;}
.ha{height:78.693750px;}
.h3c{height:79.024922px;}
.h16{height:80.024063px;}
.h29{height:80.441367px;}
.h17{height:80.464922px;}
.h19{height:80.744062px;}
.h18{height:81.181500px;}
.hf{height:82.980000px;}
.h21{height:83.340000px;}
.hb{height:83.881500px;}
.h13{height:84.344062px;}
.h6{height:84.780000px;}
.h1c{height:87.120000px;}
.h35{height:87.480000px;}
.h37{height:87.660000px;}
.h40{height:88.330078px;}
.h3{height:105.996094px;}
.h24{height:108.540000px;}
.h2{height:108.843750px;}
.h11{height:109.628437px;}
.h3d{height:124.664063px;}
.h39{height:132.584063px;}
.h9{height:151.526250px;}
.h7{height:154.406250px;}
.h15{height:156.566250px;}
.h12{height:157.868437px;}
.h10{height:162.326250px;}
.h30{height:175.680000px;}
.h1d{height:199.766250px;}
.h22{height:202.646250px;}
.h8{height:206.246250px;}
.hc{height:209.126250px;}
.h26{height:217.046250px;}
.hd{height:257.366250px;}
.h42{height:427.500000px;}
.h41{height:428.760000px;}
.h2a{height:918.000000px;}
.h0{height:1188.000000px;}
.w2{width:53.100000px;}
.w10{width:63.901500px;}
.w9{width:74.520000px;}
.wa{width:84.960000px;}
.wb{width:85.140000px;}
.wc{width:95.580000px;}
.w13{width:106.198500px;}
.wd{width:116.998500px;}
.wf{width:125.098500px;}
.w12{width:148.860000px;}
.w14{width:170.100000px;}
.we{width:201.960000px;}
.w15{width:220.680000px;}
.w8{width:244.620000px;}
.w11{width:340.200000px;}
.w17{width:575.460000px;}
.w16{width:629.280000px;}
.w6{width:639.001500px;}
.w4{width:648.000000px;}
.w5{width:651.060000px;}
.w3{width:658.981500px;}
.w1{width:659.160000px;}
.w0{width:918.000000px;}
.w7{width:1188.000000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x40{left:24.300000px;}
.x43{left:28.260000px;}
.x45{left:29.700000px;}
.x49{left:40.680000px;}
.x5{left:43.560000px;}
.x23{left:51.840000px;}
.x24{left:60.840000px;}
.x27{left:71.640000px;}
.x2c{left:97.200000px;}
.x38{left:103.140000px;}
.x3b{left:104.760000px;}
.x30{left:106.200000px;}
.x4c{left:119.520000px;}
.x2{left:127.620000px;}
.x1f{left:130.860000px;}
.xe{left:133.920000px;}
.x26{left:135.720000px;}
.x5a{left:152.394150px;}
.x56{left:155.880900px;}
.x51{left:157.104300px;}
.x3{left:160.020000px;}
.x22{left:161.100000px;}
.x2e{left:163.620000px;}
.x60{left:172.832850px;}
.x62{left:176.692650px;}
.x28{left:178.200000px;}
.x4f{left:179.514870px;}
.x63{left:185.965530px;}
.x54{left:189.162300px;}
.x4e{left:194.133750px;}
.x10{left:197.100000px;}
.x37{left:203.400000px;}
.x5e{left:204.738450px;}
.xd{left:212.040000px;}
.x2b{left:213.660000px;}
.x5d{left:215.988450px;}
.xa{left:217.440000px;}
.x59{left:218.917200px;}
.x39{left:223.200000px;}
.x55{left:225.242940px;}
.x2a{left:231.660000px;}
.x5f{left:240.760950px;}
.x6{left:255.960000px;}
.x5b{left:279.243000px;}
.x25{left:281.520000px;}
.x1a{left:286.200000px;}
.xf{left:287.460000px;}
.x1b{left:295.740000px;}
.x12{left:301.320000px;}
.x57{left:307.023150px;}
.x50{left:314.100000px;}
.x29{left:328.680000px;}
.x46{left:348.300000px;}
.x31{left:350.820000px;}
.x14{left:364.860000px;}
.x21{left:370.980000px;}
.x3a{left:372.060000px;}
.x61{left:374.741700px;}
.x11{left:380.700000px;}
.x3f{left:389.340000px;}
.x64{left:393.325650px;}
.x1e{left:395.460000px;}
.x20{left:399.960000px;}
.x32{left:425.340000px;}
.x2d{left:429.120000px;}
.x47{left:444.060000px;}
.x13{left:456.840000px;}
.xb{left:459.360000px;}
.x16{left:468.180000px;}
.x1d{left:469.440000px;}
.x1{left:473.940000px;}
.x33{left:510.300000px;}
.x4d{left:518.400000px;}
.x48{left:520.920000px;}
.x4b{left:529.020000px;}
.x18{left:530.820000px;}
.x41{left:542.160000px;}
.x15{left:548.460000px;}
.x42{left:563.400000px;}
.x2f{left:590.220000px;}
.x34{left:595.440000px;}
.x52{left:597.859200px;}
.xc{left:606.780000px;}
.x17{left:623.520000px;}
.x19{left:674.640000px;}
.x9{left:688.500000px;}
.x35{left:691.020000px;}
.x58{left:703.620000px;}
.x1c{left:705.240000px;}
.x3c{left:712.260000px;}
.x7{left:715.680000px;}
.x4a{left:730.980000px;}
.x44{left:733.500000px;}
.x53{left:757.620000px;}
.x8{left:786.780000px;}
.x5c{left:791.280000px;}
.x36{left:808.020000px;}
.x3d{left:861.120000px;}
.x3e{left:935.640000px;}
@media print{
.vd{vertical-align:-29.440000pt;}
.v1a{vertical-align:-19.200000pt;}
.vf{vertical-align:-17.280000pt;}
.vb{vertical-align:-12.800000pt;}
.v1{vertical-align:-8.320000pt;}
.v19{vertical-align:-4.480000pt;}
.v4{vertical-align:-2.560000pt;}
.v17{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:1.280000pt;}
.v8{vertical-align:2.560000pt;}
.ve{vertical-align:7.040000pt;}
.v2{vertical-align:8.320000pt;}
.v10{vertical-align:12.160000pt;}
.v11{vertical-align:19.200000pt;}
.v12{vertical-align:24.320000pt;}
.v18{vertical-align:28.160000pt;}
.v3{vertical-align:29.440000pt;}
.v13{vertical-align:35.840000pt;}
.v14{vertical-align:40.320000pt;}
.v9{vertical-align:42.880000pt;}
.v6{vertical-align:46.080000pt;}
.v7{vertical-align:48.640000pt;}
.v5{vertical-align:51.200000pt;}
.v16{vertical-align:55.680000pt;}
.v15{vertical-align:66.560000pt;}
.va{vertical-align:91.520000pt;}
.ls8a{letter-spacing:-6.000000pt;}
.ls37{letter-spacing:-1.472000pt;}
.ls2c{letter-spacing:-1.344000pt;}
.ls1d{letter-spacing:-1.280000pt;}
.ls72{letter-spacing:-0.896000pt;}
.ls1b{letter-spacing:-0.832000pt;}
.ls2b{letter-spacing:-0.704000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls67{letter-spacing:-0.576000pt;}
.ls8d{letter-spacing:-0.512000pt;}
.ls36{letter-spacing:-0.448000pt;}
.ls68{letter-spacing:-0.384000pt;}
.ls89{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls79{letter-spacing:-0.235520pt;}
.ls48{letter-spacing:-0.227200pt;}
.ls83{letter-spacing:-0.214400pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls8c{letter-spacing:-0.160000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls1c{letter-spacing:-0.064000pt;}
.ls61{letter-spacing:-0.045440pt;}
.ls8{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.044800pt;}
.ls66{letter-spacing:0.045440pt;}
.lsd{letter-spacing:0.064000pt;}
.ls78{letter-spacing:0.117760pt;}
.ls5{letter-spacing:0.128000pt;}
.ls74{letter-spacing:0.135680pt;}
.ls52{letter-spacing:0.146560pt;}
.ls71{letter-spacing:0.160000pt;}
.ls7e{letter-spacing:0.161280pt;}
.ls1e{letter-spacing:0.192000pt;}
.ls4a{letter-spacing:0.214400pt;}
.ls63{letter-spacing:0.243200pt;}
.lsf{letter-spacing:0.256000pt;}
.ls47{letter-spacing:0.272640pt;}
.ls49{letter-spacing:0.318080pt;}
.ls88{letter-spacing:0.318720pt;}
.ls19{letter-spacing:0.320000pt;}
.ls7d{letter-spacing:0.343040pt;}
.ls6e{letter-spacing:0.384000pt;}
.ls3e{letter-spacing:0.448000pt;}
.ls6f{letter-spacing:0.478720pt;}
.ls75{letter-spacing:0.512000pt;}
.ls69{letter-spacing:0.576000pt;}
.ls28{letter-spacing:0.633600pt;}
.ls11{letter-spacing:0.640000pt;}
.ls4d{letter-spacing:0.960000pt;}
.ls9{letter-spacing:1.056000pt;}
.ls6d{letter-spacing:1.280000pt;}
.ls3f{letter-spacing:1.472000pt;}
.lsa{letter-spacing:1.536000pt;}
.ls0{letter-spacing:1.632000pt;}
.ls3{letter-spacing:1.920000pt;}
.ls41{letter-spacing:1.984000pt;}
.ls40{letter-spacing:2.372480pt;}
.ls35{letter-spacing:2.560000pt;}
.ls46{letter-spacing:2.566400pt;}
.ls56{letter-spacing:2.813440pt;}
.ls1a{letter-spacing:3.200000pt;}
.ls4e{letter-spacing:3.671680pt;}
.ls27{letter-spacing:3.840000pt;}
.ls4c{letter-spacing:3.944320pt;}
.ls5e{letter-spacing:3.955840pt;}
.ls13{letter-spacing:4.480000pt;}
.ls4{letter-spacing:5.120000pt;}
.ls45{letter-spacing:5.760000pt;}
.ls14{letter-spacing:6.400000pt;}
.ls2{letter-spacing:7.040000pt;}
.ls76{letter-spacing:7.046400pt;}
.ls24{letter-spacing:7.680000pt;}
.ls20{letter-spacing:8.320000pt;}
.ls22{letter-spacing:8.953600pt;}
.ls23{letter-spacing:8.960000pt;}
.ls1{letter-spacing:9.600000pt;}
.ls16{letter-spacing:10.240000pt;}
.ls6{letter-spacing:10.880000pt;}
.ls1f{letter-spacing:11.520000pt;}
.ls6a{letter-spacing:12.160000pt;}
.ls15{letter-spacing:12.800000pt;}
.ls64{letter-spacing:13.312000pt;}
.ls25{letter-spacing:13.440000pt;}
.ls2f{letter-spacing:13.760000pt;}
.ls53{letter-spacing:13.824000pt;}
.ls30{letter-spacing:13.952000pt;}
.ls6b{letter-spacing:14.080000pt;}
.ls3a{letter-spacing:14.272000pt;}
.ls31{letter-spacing:14.400000pt;}
.ls43{letter-spacing:14.592000pt;}
.ls51{letter-spacing:14.720000pt;}
.ls5d{letter-spacing:15.104000pt;}
.ls18{letter-spacing:15.360000pt;}
.ls39{letter-spacing:15.930240pt;}
.ls62{letter-spacing:16.000000pt;}
.ls3b{letter-spacing:16.570240pt;}
.ls5a{letter-spacing:16.893440pt;}
.ls58{letter-spacing:17.024000pt;}
.ls5b{letter-spacing:17.395840pt;}
.ls38{letter-spacing:17.472000pt;}
.ls54{letter-spacing:17.600000pt;}
.ls5f{letter-spacing:17.664000pt;}
.ls2a{letter-spacing:17.920000pt;}
.ls57{letter-spacing:18.035840pt;}
.ls2e{letter-spacing:18.112000pt;}
.ls4b{letter-spacing:18.368000pt;}
.ls6c{letter-spacing:18.560000pt;}
.ls70{letter-spacing:19.200000pt;}
.ls17{letter-spacing:20.480000pt;}
.ls3d{letter-spacing:20.672000pt;}
.ls29{letter-spacing:21.120000pt;}
.ls73{letter-spacing:22.400000pt;}
.ls50{letter-spacing:23.040000pt;}
.ls77{letter-spacing:26.240000pt;}
.ls55{letter-spacing:29.184000pt;}
.ls7{letter-spacing:30.080000pt;}
.ls33{letter-spacing:32.832000pt;}
.ls21{letter-spacing:56.448000pt;}
.ls12{letter-spacing:65.408000pt;}
.ls81{letter-spacing:69.120000pt;}
.ls84{letter-spacing:94.720000pt;}
.ls2d{letter-spacing:106.624000pt;}
.ls85{letter-spacing:108.160000pt;}
.ls82{letter-spacing:149.120000pt;}
.ls8b{letter-spacing:168.800000pt;}
.ls7c{letter-spacing:174.080000pt;}
.ls87{letter-spacing:174.720000pt;}
.ls7b{letter-spacing:212.480000pt;}
.ls80{letter-spacing:216.320000pt;}
.ls32{letter-spacing:268.320000pt;}
.ls7f{letter-spacing:326.560000pt;}
.ls44{letter-spacing:361.760000pt;}
.ls86{letter-spacing:372.480000pt;}
.ls3c{letter-spacing:470.560000pt;}
.ls7a{letter-spacing:579.840000pt;}
.ls34{letter-spacing:654.880000pt;}
.ls65{letter-spacing:1112.960000pt;}
.ls59{letter-spacing:1458.080000pt;}
.ls4f{letter-spacing:1463.200000pt;}
.ls5c{letter-spacing:1561.120000pt;}
.ls42{letter-spacing:1851.680000pt;}
.ls60{letter-spacing:1865.600000pt;}
.ws72{word-spacing:-64.256000pt;}
.ws70{word-spacing:-64.192000pt;}
.ws6a{word-spacing:-64.128000pt;}
.ws29{word-spacing:-64.000000pt;}
.ws71{word-spacing:-63.936000pt;}
.ws6b{word-spacing:-63.872000pt;}
.ws6d{word-spacing:-63.808000pt;}
.ws6f{word-spacing:-63.744000pt;}
.ws6c{word-spacing:-63.552000pt;}
.ws7a{word-spacing:-45.758080pt;}
.ws78{word-spacing:-45.712640pt;}
.ws8e{word-spacing:-45.485440pt;}
.ws88{word-spacing:-45.394560pt;}
.ws79{word-spacing:-45.212800pt;}
.ws69{word-spacing:-26.560000pt;}
.ws0{word-spacing:-25.056000pt;}
.wsd5{word-spacing:-19.840000pt;}
.wsa4{word-spacing:-17.280000pt;}
.wsb0{word-spacing:-16.640000pt;}
.ws90{word-spacing:-16.576000pt;}
.ws87{word-spacing:-16.448000pt;}
.ws4{word-spacing:-16.256000pt;}
.ws44{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws95{word-spacing:-15.936000pt;}
.ws2a{word-spacing:-15.872000pt;}
.ws45{word-spacing:-15.808000pt;}
.ws1{word-spacing:-15.744000pt;}
.wsa5{word-spacing:-15.616000pt;}
.ws74{word-spacing:-15.552000pt;}
.wsaa{word-spacing:-15.360000pt;}
.ws5e{word-spacing:-15.296000pt;}
.ws43{word-spacing:-14.720000pt;}
.ws73{word-spacing:-14.528000pt;}
.wsca{word-spacing:-14.484480pt;}
.ws6e{word-spacing:-13.824000pt;}
.wsce{word-spacing:-11.063040pt;}
.ws82{word-spacing:-10.934400pt;}
.ws46{word-spacing:-10.720000pt;}
.wscf{word-spacing:-10.505600pt;}
.wscb{word-spacing:-9.280000pt;}
.ws83{word-spacing:-8.640000pt;}
.wsd2{word-spacing:-4.800000pt;}
.wsb7{word-spacing:-3.200000pt;}
.wscc{word-spacing:-0.765440pt;}
.ws35{word-spacing:-0.640000pt;}
.ws9{word-spacing:-0.576000pt;}
.wsd9{word-spacing:-0.480000pt;}
.wsa3{word-spacing:-0.384000pt;}
.wsd0{word-spacing:-0.320000pt;}
.ws59{word-spacing:-0.256000pt;}
.ws92{word-spacing:-0.192000pt;}
.ws16{word-spacing:-0.128000pt;}
.wscd{word-spacing:-0.117760pt;}
.ws30{word-spacing:-0.064000pt;}
.ws6{word-spacing:0.000000pt;}
.ws51{word-spacing:0.064000pt;}
.ws8{word-spacing:0.096000pt;}
.ws8c{word-spacing:0.128000pt;}
.wsd1{word-spacing:0.160000pt;}
.ws18{word-spacing:0.192000pt;}
.wsb{word-spacing:0.256000pt;}
.wsa0{word-spacing:0.384000pt;}
.wsb4{word-spacing:0.448000pt;}
.ws3d{word-spacing:0.512000pt;}
.ws7{word-spacing:0.576000pt;}
.ws1b{word-spacing:0.640000pt;}
.ws4c{word-spacing:0.832000pt;}
.ws3e{word-spacing:0.896000pt;}
.wsd7{word-spacing:0.960000pt;}
.ws93{word-spacing:1.152000pt;}
.wsa{word-spacing:1.280000pt;}
.ws66{word-spacing:1.344000pt;}
.ws2f{word-spacing:1.536000pt;}
.ws7f{word-spacing:1.664000pt;}
.ws15{word-spacing:1.792000pt;}
.ws14{word-spacing:1.920000pt;}
.ws76{word-spacing:2.048000pt;}
.ws75{word-spacing:2.112000pt;}
.ws13{word-spacing:2.176000pt;}
.wsad{word-spacing:2.432000pt;}
.ws1f{word-spacing:2.560000pt;}
.ws4d{word-spacing:2.688000pt;}
.ws1e{word-spacing:2.816000pt;}
.ws2c{word-spacing:3.072000pt;}
.ws2d{word-spacing:3.200000pt;}
.ws55{word-spacing:3.392000pt;}
.ws2e{word-spacing:3.456000pt;}
.ws20{word-spacing:3.712000pt;}
.ws22{word-spacing:3.840000pt;}
.wsb5{word-spacing:4.032000pt;}
.ws21{word-spacing:4.096000pt;}
.ws1c{word-spacing:4.352000pt;}
.wsd{word-spacing:4.480000pt;}
.ws97{word-spacing:4.672000pt;}
.ws1d{word-spacing:4.736000pt;}
.ws86{word-spacing:4.992000pt;}
.ws1a{word-spacing:5.120000pt;}
.wsb6{word-spacing:5.184000pt;}
.wsae{word-spacing:5.248000pt;}
.wsdb{word-spacing:5.312000pt;}
.wsc{word-spacing:5.376000pt;}
.ws80{word-spacing:5.632000pt;}
.ws60{word-spacing:5.760000pt;}
.wsba{word-spacing:5.952000pt;}
.ws4b{word-spacing:6.016000pt;}
.ws94{word-spacing:6.144000pt;}
.ws38{word-spacing:6.272000pt;}
.ws37{word-spacing:6.400000pt;}
.wsd4{word-spacing:6.480000pt;}
.wsa6{word-spacing:6.656000pt;}
.ws77{word-spacing:6.912000pt;}
.ws11{word-spacing:7.040000pt;}
.ws50{word-spacing:7.232000pt;}
.ws12{word-spacing:7.296000pt;}
.ws23{word-spacing:7.552000pt;}
.ws5f{word-spacing:7.616000pt;}
.ws5b{word-spacing:7.680000pt;}
.ws5c{word-spacing:7.872000pt;}
.ws99{word-spacing:7.936000pt;}
.ws5d{word-spacing:8.192000pt;}
.ws36{word-spacing:8.320000pt;}
.ws56{word-spacing:8.576000pt;}
.ws53{word-spacing:8.960000pt;}
.ws57{word-spacing:9.088000pt;}
.ws2b{word-spacing:9.216000pt;}
.wse{word-spacing:9.472000pt;}
.ws33{word-spacing:9.600000pt;}
.wsf{word-spacing:9.792000pt;}
.ws10{word-spacing:9.856000pt;}
.ws34{word-spacing:10.112000pt;}
.ws42{word-spacing:10.240000pt;}
.ws9d{word-spacing:10.368000pt;}
.ws81{word-spacing:10.496000pt;}
.wsb8{word-spacing:10.752000pt;}
.ws25{word-spacing:10.880000pt;}
.ws26{word-spacing:11.008000pt;}
.ws8a{word-spacing:11.072000pt;}
.ws24{word-spacing:11.136000pt;}
.ws49{word-spacing:11.392000pt;}
.ws48{word-spacing:11.520000pt;}
.ws9c{word-spacing:11.712000pt;}
.ws4a{word-spacing:11.776000pt;}
.wsc9{word-spacing:12.032000pt;}
.ws98{word-spacing:12.160000pt;}
.wsac{word-spacing:12.416000pt;}
.ws3f{word-spacing:12.672000pt;}
.ws19{word-spacing:12.800000pt;}
.ws17{word-spacing:13.056000pt;}
.ws65{word-spacing:13.312000pt;}
.wsab{word-spacing:13.376000pt;}
.ws54{word-spacing:13.440000pt;}
.ws64{word-spacing:13.696000pt;}
.wsaf{word-spacing:13.888000pt;}
.ws9b{word-spacing:13.952000pt;}
.ws9a{word-spacing:14.080000pt;}
.wsa9{word-spacing:14.336000pt;}
.ws8b{word-spacing:14.592000pt;}
.ws4e{word-spacing:14.720000pt;}
.ws4f{word-spacing:14.976000pt;}
.ws52{word-spacing:15.232000pt;}
.ws40{word-spacing:15.360000pt;}
.ws41{word-spacing:15.616000pt;}
.ws85{word-spacing:16.000000pt;}
.ws61{word-spacing:16.192000pt;}
.ws91{word-spacing:16.256000pt;}
.ws62{word-spacing:16.640000pt;}
.ws63{word-spacing:16.896000pt;}
.wsa2{word-spacing:17.152000pt;}
.ws9f{word-spacing:17.280000pt;}
.wsa1{word-spacing:17.536000pt;}
.ws32{word-spacing:17.920000pt;}
.ws31{word-spacing:18.176000pt;}
.wsbf{word-spacing:18.560000pt;}
.wsc0{word-spacing:18.688000pt;}
.ws9e{word-spacing:18.816000pt;}
.ws3a{word-spacing:19.072000pt;}
.ws39{word-spacing:19.200000pt;}
.ws58{word-spacing:19.456000pt;}
.wsa8{word-spacing:19.840000pt;}
.wsa7{word-spacing:20.352000pt;}
.ws47{word-spacing:20.480000pt;}
.ws96{word-spacing:20.992000pt;}
.ws68{word-spacing:21.120000pt;}
.ws67{word-spacing:21.376000pt;}
.ws8d{word-spacing:21.632000pt;}
.wsb9{word-spacing:21.760000pt;}
.wsc1{word-spacing:22.016000pt;}
.wsb2{word-spacing:22.400000pt;}
.wsb3{word-spacing:22.592000pt;}
.wsb1{word-spacing:22.656000pt;}
.ws3c{word-spacing:22.912000pt;}
.ws89{word-spacing:23.040000pt;}
.ws3b{word-spacing:23.296000pt;}
.ws84{word-spacing:25.600000pt;}
.ws7e{word-spacing:26.112000pt;}
.ws7d{word-spacing:26.240000pt;}
.ws7c{word-spacing:26.880000pt;}
.ws5a{word-spacing:28.160000pt;}
.ws27{word-spacing:30.080000pt;}
.ws28{word-spacing:30.336000pt;}
.wsc6{word-spacing:30.720000pt;}
.wsbd{word-spacing:32.896000pt;}
.wsbe{word-spacing:33.920000pt;}
.wsc8{word-spacing:41.600000pt;}
.wsc7{word-spacing:41.856000pt;}
.wsc4{word-spacing:45.312000pt;}
.wsc3{word-spacing:45.440000pt;}
.wsc2{word-spacing:45.696000pt;}
.wsbb{word-spacing:48.640000pt;}
.wsbc{word-spacing:49.280000pt;}
.wsc5{word-spacing:61.440000pt;}
.ws8f{word-spacing:83.983040pt;}
.wsd6{word-spacing:127.840000pt;}
.wsda{word-spacing:150.391296pt;}
.ws7b{word-spacing:267.648000pt;}
.wsd3{word-spacing:272.540160pt;}
.wsd8{word-spacing:507.200000pt;}
._4b{margin-left:-2728.284800pt;}
._53{margin-left:-2725.782400pt;}
._33{margin-left:-2724.297600pt;}
._6d{margin-left:-2722.764800pt;}
._34{margin-left:-2720.761600pt;}
._7a{margin-left:-2719.270400pt;}
._4c{margin-left:-2718.166400pt;}
._74{margin-left:-2717.270400pt;}
._4a{margin-left:-2715.673600pt;}
._73{margin-left:-2714.755200pt;}
._48{margin-left:-2713.401600pt;}
._45{margin-left:-2711.673600pt;}
._3a{margin-left:-2710.784000pt;}
._3c{margin-left:-2709.328000pt;}
._4e{margin-left:-2708.303360pt;}
._35{margin-left:-2707.276800pt;}
._3f{margin-left:-2706.355200pt;}
._37{margin-left:-2704.448000pt;}
._32{margin-left:-2703.161600pt;}
._3d{margin-left:-2702.140800pt;}
._23{margin-left:-2691.321600pt;}
._1c{margin-left:-2688.713600pt;}
._2d{margin-left:-2687.472000pt;}
._22{margin-left:-2685.920000pt;}
._26{margin-left:-2684.672000pt;}
._21{margin-left:-2682.908800pt;}
._17{margin-left:-2681.808000pt;}
._1d{margin-left:-2680.371200pt;}
._16{margin-left:-2679.219200pt;}
._24{margin-left:-2676.758400pt;}
._15{margin-left:-2674.537600pt;}
._2c{margin-left:-2673.430400pt;}
._13{margin-left:-2672.518400pt;}
._1b{margin-left:-2670.982400pt;}
._10{margin-left:-2670.016000pt;}
._12{margin-left:-2654.259200pt;}
._2{margin-left:-2647.097600pt;}
._5{margin-left:-2643.232000pt;}
._40{margin-left:-2641.971200pt;}
._71{margin-left:-2640.860800pt;}
._c{margin-left:-2639.168000pt;}
._a{margin-left:-2637.932800pt;}
._65{margin-left:-2580.224000pt;}
._7b{margin-left:-2575.161600pt;}
._3e{margin-left:-2568.348800pt;}
._3{margin-left:-2554.457600pt;}
._56{margin-left:-2541.939200pt;}
._60{margin-left:-2504.569600pt;}
._75{margin-left:-2491.452800pt;}
._80{margin-left:-2454.009600pt;}
._49{margin-left:-2396.848000pt;}
._61{margin-left:-2335.680000pt;}
._67{margin-left:-2317.728000pt;}
._4f{margin-left:-2308.595200pt;}
._6e{margin-left:-2253.833600pt;}
._6f{margin-left:-2197.868800pt;}
._4{margin-left:-2115.408000pt;}
._27{margin-left:-2029.404800pt;}
._29{margin-left:-1985.440000pt;}
._19{margin-left:-1978.134400pt;}
._57{margin-left:-1837.571200pt;}
._36{margin-left:-1737.884800pt;}
._7c{margin-left:-1711.411200pt;}
._7d{margin-left:-1699.392000pt;}
._18{margin-left:-1646.304000pt;}
._7e{margin-left:-1589.299200pt;}
._72{margin-left:-1542.595200pt;}
._85{margin-left:-1539.328000pt;}
._5f{margin-left:-1538.377600pt;}
._76{margin-left:-1451.612800pt;}
._6a{margin-left:-1349.084800pt;}
._25{margin-left:-1338.432000pt;}
._4d{margin-left:-1276.246400pt;}
._2b{margin-left:-1242.048000pt;}
._46{margin-left:-1233.033600pt;}
._6b{margin-left:-1198.316800pt;}
._44{margin-left:-1127.225600pt;}
._43{margin-left:-1086.080000pt;}
._38{margin-left:-1074.320000pt;}
._31{margin-left:-1067.827200pt;}
._5a{margin-left:-1051.904000pt;}
._83{margin-left:-1034.972800pt;}
._55{margin-left:-1012.700800pt;}
._79{margin-left:-1008.128000pt;}
._2a{margin-left:-936.371200pt;}
._5e{margin-left:-934.848000pt;}
._50{margin-left:-931.200000pt;}
._6{margin-left:-899.584000pt;}
._59{margin-left:-862.208000pt;}
._70{margin-left:-852.700800pt;}
._2f{margin-left:-829.596800pt;}
._3b{margin-left:-807.196800pt;}
._77{margin-left:-801.180800pt;}
._69{margin-left:-799.324800pt;}
._6c{margin-left:-784.064000pt;}
._68{margin-left:-667.449600pt;}
._78{margin-left:-651.449600pt;}
._1a{margin-left:-639.296000pt;}
._54{margin-left:-548.982400pt;}
._7{margin-left:-517.532800pt;}
._5c{margin-left:-471.097600pt;}
._82{margin-left:-465.280000pt;}
._51{margin-left:-389.312000pt;}
._52{margin-left:-357.312000pt;}
._30{margin-left:-316.060800pt;}
._86{margin-left:-208.000000pt;}
._bb{margin-left:-10.720000pt;}
._1e{margin-left:-5.952000pt;}
._62{margin-left:-4.217600pt;}
._7f{margin-left:-3.180800pt;}
._1{margin-left:-1.728000pt;}
._0{width:1.180800pt;}
._d{width:2.428800pt;}
._14{width:4.003200pt;}
._11{width:5.446400pt;}
._b{width:6.768000pt;}
._28{width:7.686400pt;}
._9{width:9.088000pt;}
._8{width:10.531200pt;}
._f{width:12.067200pt;}
._e{width:12.976000pt;}
._41{width:14.272000pt;}
._47{width:16.425600pt;}
._2e{width:17.356800pt;}
._5b{width:18.454400pt;}
._1f{width:19.811200pt;}
._66{width:21.516800pt;}
._20{width:23.129600pt;}
._42{width:25.734400pt;}
._84{width:26.844800pt;}
._39{width:36.960000pt;}
._58{width:39.040000pt;}
._8a{width:41.449600pt;}
._b0{width:42.560000pt;}
._88{width:44.982400pt;}
._87{width:48.227200pt;}
._81{width:49.920000pt;}
._a4{width:57.600000pt;}
._89{width:62.115200pt;}
._8d{width:64.064000pt;}
._9f{width:65.664000pt;}
._9b{width:67.904000pt;}
._98{width:69.865600pt;}
._8e{width:76.928000pt;}
._ab{width:79.283200pt;}
._63{width:85.056000pt;}
._a3{width:89.705600pt;}
._5d{width:96.256000pt;}
._ac{width:106.688000pt;}
._b2{width:107.712000pt;}
._9e{width:111.905280pt;}
._9d{width:129.664000pt;}
._a1{width:130.944000pt;}
._99{width:131.904000pt;}
._9a{width:133.184000pt;}
._ad{width:142.720000pt;}
._ae{width:144.512000pt;}
._92{width:146.560000pt;}
._9c{width:149.248000pt;}
._64{width:172.800000pt;}
._90{width:174.080000pt;}
._91{width:184.960000pt;}
._ba{width:202.867200pt;}
._95{width:209.408000pt;}
._96{width:210.688000pt;}
._8f{width:212.480000pt;}
._b6{width:220.216320pt;}
._97{width:223.616000pt;}
._b9{width:237.427200pt;}
._b7{width:263.485440pt;}
._b8{width:271.987200pt;}
._a5{width:278.400000pt;}
._aa{width:294.208000pt;}
._b4{width:307.031040pt;}
._a2{width:345.315200pt;}
._a7{width:348.096000pt;}
._a9{width:354.560000pt;}
._a8{width:360.704000pt;}
._b1{width:370.915200pt;}
._a0{width:377.315200pt;}
._af{width:402.915200pt;}
._94{width:406.464000pt;}
._a6{width:432.064000pt;}
._93{width:440.326400pt;}
._b5{width:547.200000pt;}
._b3{width:645.440000pt;}
._8b{width:752.000000pt;}
._8c{width:753.251840pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:45.440000pt;}
.fsb{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fsa{font-size:80.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y19a{bottom:4.000000pt;}
.y1fe{bottom:6.193200pt;}
.y1eb{bottom:6.868933pt;}
.y162{bottom:9.280000pt;}
.y164{bottom:9.440000pt;}
.y173{bottom:9.760000pt;}
.y17a{bottom:9.920000pt;}
.y175{bottom:10.880000pt;}
.y17c{bottom:11.040000pt;}
.y197{bottom:12.960000pt;}
.y7c{bottom:19.040000pt;}
.y5b{bottom:22.240000pt;}
.ya2{bottom:22.400000pt;}
.y55{bottom:22.880000pt;}
.y74{bottom:23.040000pt;}
.yb4{bottom:23.520000pt;}
.y9f{bottom:24.320000pt;}
.y7b{bottom:29.760000pt;}
.y6b{bottom:29.920000pt;}
.y53{bottom:32.960000pt;}
.y5d{bottom:33.280000pt;}
.y54{bottom:33.600000pt;}
.y57{bottom:33.760000pt;}
.y9e{bottom:34.400000pt;}
.y171{bottom:36.960000pt;}
.y178{bottom:37.120000pt;}
.y1{bottom:51.200000pt;}
.yb0{bottom:56.160000pt;}
.yb1{bottom:56.640000pt;}
.y182{bottom:63.200000pt;}
.y18a{bottom:63.360000pt;}
.ydd{bottom:99.040000pt;}
.ye7{bottom:99.040133pt;}
.yc1{bottom:101.600000pt;}
.y111{bottom:107.840000pt;}
.y135{bottom:111.200000pt;}
.ycc{bottom:115.040000pt;}
.y15e{bottom:115.520000pt;}
.y15{bottom:116.800000pt;}
.yda{bottom:117.440000pt;}
.y4e{bottom:118.560000pt;}
.y3f{bottom:131.040000pt;}
.y2b{bottom:133.440000pt;}
.ydc{bottom:135.840000pt;}
.ye6{bottom:135.840133pt;}
.y134{bottom:136.320000pt;}
.y83{bottom:136.640000pt;}
.y15d{bottom:140.640000pt;}
.y16f{bottom:141.600000pt;}
.y110{bottom:144.640000pt;}
.y94{bottom:151.840000pt;}
.yd9{bottom:154.240000pt;}
.yc0{bottom:154.400000pt;}
.y14{bottom:154.720000pt;}
.y4d{bottom:156.640000pt;}
.yaa{bottom:157.920000pt;}
.y15c{bottom:159.040000pt;}
.yfa{bottom:165.440000pt;}
.y3e{bottom:167.840000pt;}
.y2a{bottom:170.240000pt;}
.ydb{bottom:172.640000pt;}
.ye5{bottom:172.640133pt;}
.y133{bottom:173.120000pt;}
.y82{bottom:173.440000pt;}
.y15b{bottom:177.440000pt;}
.y69{bottom:180.960000pt;}
.y10f{bottom:181.440000pt;}
.y93{bottom:188.640000pt;}
.yd8{bottom:191.040000pt;}
.ybf{bottom:191.200000pt;}
.y4c{bottom:193.440000pt;}
.ya9{bottom:194.720000pt;}
.y132{bottom:198.240000pt;}
.yf9{bottom:202.240000pt;}
.y15a{bottom:202.400000pt;}
.y3d{bottom:204.640000pt;}
.y29{bottom:207.040000pt;}
.y13{bottom:208.800000pt;}
.y104{bottom:209.440000pt;}
.ye4{bottom:209.440133pt;}
.y81{bottom:210.240000pt;}
.y131{bottom:216.640000pt;}
.y68{bottom:217.760000pt;}
.y10e{bottom:218.240000pt;}
.y159{bottom:220.800000pt;}
.ycb{bottom:225.440000pt;}
.ybe{bottom:228.000000pt;}
.y4b{bottom:230.240000pt;}
.y130{bottom:235.040000pt;}
.yf8{bottom:239.040000pt;}
.y158{bottom:239.200000pt;}
.y3c{bottom:241.440000pt;}
.yd7{bottom:243.520000pt;}
.y28{bottom:243.840000pt;}
.y103{bottom:246.240000pt;}
.ye3{bottom:246.240133pt;}
.y80{bottom:247.040000pt;}
.ya8{bottom:247.200000pt;}
.y12{bottom:248.640000pt;}
.y67{bottom:254.560000pt;}
.y10d{bottom:255.040000pt;}
.y12f{bottom:260.000000pt;}
.yca{bottom:262.240000pt;}
.y157{bottom:264.320000pt;}
.ybd{bottom:264.800000pt;}
.y4a{bottom:267.040000pt;}
.yf7{bottom:275.840000pt;}
.y3b{bottom:278.240000pt;}
.y12e{bottom:278.400000pt;}
.y27{bottom:280.640000pt;}
.y51{bottom:281.760000pt;}
.y156{bottom:282.720000pt;}
.y102{bottom:283.040000pt;}
.y7f{bottom:283.840000pt;}
.y11{bottom:285.440000pt;}
.y10c{bottom:291.840000pt;}
.y66{bottom:292.480000pt;}
.yd6{bottom:296.640000pt;}
.y190{bottom:296.644480pt;}
.y12d{bottom:296.800000pt;}
.ye2{bottom:298.720133pt;}
.yc9{bottom:299.040000pt;}
.ya7{bottom:300.320000pt;}
.y155{bottom:301.120000pt;}
.ybc{bottom:301.600000pt;}
.y49{bottom:303.840000pt;}
.yf6{bottom:312.640000pt;}
.y18f{bottom:313.440000pt;}
.y3a{bottom:315.040000pt;}
.y26{bottom:317.440000pt;}
.y50{bottom:319.840000pt;}
.y7e{bottom:320.640000pt;}
.y12c{bottom:321.920000pt;}
.y10{bottom:322.240000pt;}
.y204{bottom:326.080133pt;}
.y154{bottom:326.240000pt;}
.y189{bottom:327.360000pt;}
.y92{bottom:330.720000pt;}
.yd5{bottom:334.560000pt;}
.y18e{bottom:335.200000pt;}
.yc8{bottom:335.840000pt;}
.ybb{bottom:338.400000pt;}
.y12b{bottom:340.320000pt;}
.y48{bottom:340.640000pt;}
.y10b{bottom:344.320000pt;}
.y153{bottom:344.640000pt;}
.y65{bottom:346.560000pt;}
.y7a{bottom:351.040000pt;}
.y39{bottom:351.840000pt;}
.ye1{bottom:351.840133pt;}
.y18d{bottom:353.600000pt;}
.y1f0{bottom:354.080000pt;}
.y25{bottom:354.240000pt;}
.y101{bottom:356.640000pt;}
.yf{bottom:359.040000pt;}
.ya5{bottom:360.480000pt;}
.y203{bottom:362.880133pt;}
.y152{bottom:363.040000pt;}
.ya6{bottom:363.680000pt;}
.yf5{bottom:365.440000pt;}
.y4f{bottom:372.320000pt;}
.yc7{bottom:372.640000pt;}
.yba{bottom:375.200000pt;}
.y1c7{bottom:376.640000pt;}
.y1dc{bottom:376.960000pt;}
.y47{bottom:377.440000pt;}
.y18b{bottom:379.680000pt;}
.y7d{bottom:380.800000pt;}
.y151{bottom:381.440000pt;}
.y64{bottom:383.360000pt;}
.y91{bottom:383.840000pt;}
.y18c{bottom:387.520000pt;}
.y38{bottom:388.640000pt;}
.ye0{bottom:388.640133pt;}
.y1ef{bottom:390.880000pt;}
.y24{bottom:391.040000pt;}
.y100{bottom:393.440000pt;}
.ye{bottom:395.840000pt;}
.y10a{bottom:397.440000pt;}
.yf4{bottom:402.240000pt;}
.y181{bottom:405.920000pt;}
.y150{bottom:406.400000pt;}
.yc6{bottom:409.440000pt;}
.yd4{bottom:409.440133pt;}
.y1c6{bottom:413.440000pt;}
.y188{bottom:413.600000pt;}
.y1db{bottom:413.760000pt;}
.y46{bottom:414.240000pt;}
.y202{bottom:415.520133pt;}
.y16d{bottom:417.764480pt;}
.y63{bottom:420.160000pt;}
.y90{bottom:420.640000pt;}
.y14f{bottom:424.800000pt;}
.y37{bottom:425.440000pt;}
.ydf{bottom:425.440133pt;}
.y12a{bottom:427.200000pt;}
.ya4{bottom:427.200133pt;}
.y23{bottom:427.840000pt;}
.yb9{bottom:428.000000pt;}
.yff{bottom:430.240000pt;}
.y186{bottom:432.000000pt;}
.yd{bottom:432.640000pt;}
.y109{bottom:434.080000pt;}
.y16c{bottom:434.560000pt;}
.yf3{bottom:439.040000pt;}
.y187{bottom:439.680000pt;}
.y14e{bottom:443.200000pt;}
.y1ee{bottom:443.680000pt;}
.y183{bottom:445.120000pt;}
.y79{bottom:445.600000pt;}
.yc5{bottom:446.240000pt;}
.y16b{bottom:448.480000pt;}
.y45{bottom:451.040000pt;}
.y201{bottom:452.320000pt;}
.y1a6{bottom:453.760133pt;}
.y8f{bottom:457.440000pt;}
.ya1{bottom:457.600000pt;}
.y62{bottom:458.080000pt;}
.y184{bottom:458.240000pt;}
.y14d{bottom:461.600000pt;}
.y36{bottom:462.240000pt;}
.y22{bottom:464.640000pt;}
.yb8{bottom:464.800000pt;}
.y185{bottom:465.920000pt;}
.y1c5{bottom:466.240000pt;}
.y1da{bottom:466.560000pt;}
.yfe{bottom:467.040000pt;}
.yc{bottom:469.440000pt;}
.y129{bottom:470.720000pt;}
.y108{bottom:472.160000pt;}
.y169{bottom:472.480000pt;}
.yf2{bottom:475.840000pt;}
.y16a{bottom:479.680000pt;}
.ya3{bottom:480.000000pt;}
.y78{bottom:482.400000pt;}
.yc4{bottom:483.040000pt;}
.y16e{bottom:484.320000pt;}
.y1ed{bottom:486.560000pt;}
.y14c{bottom:486.720000pt;}
.y128{bottom:489.120000pt;}
.y200{bottom:489.280000pt;}
.y1a5{bottom:490.560133pt;}
.y180{bottom:492.000000pt;}
.y8e{bottom:494.080000pt;}
.y168{bottom:497.120000pt;}
.y35{bottom:499.040000pt;}
.yb7{bottom:501.600000pt;}
.y21{bottom:502.560000pt;}
.y1c4{bottom:503.040000pt;}
.y1d9{bottom:503.360000pt;}
.y44{bottom:503.520000pt;}
.yfd{bottom:503.840000pt;}
.y14b{bottom:505.120000pt;}
.yb{bottom:506.080000pt;}
.y127{bottom:507.520000pt;}
.y17e{bottom:510.400000pt;}
.y9d{bottom:511.200000pt;}
.y107{bottom:511.360000pt;}
.y61{bottom:512.160000pt;}
.yf1{bottom:512.640000pt;}
.y17f{bottom:518.240000pt;}
.y77{bottom:519.040000pt;}
.yc3{bottom:519.840000pt;}
.y167{bottom:520.960000pt;}
.y14a{bottom:523.520000pt;}
.y1b9{bottom:524.800000pt;}
.y214{bottom:526.560000pt;}
.y1a4{bottom:527.360133pt;}
.y8d{bottom:530.880000pt;}
.y126{bottom:532.640000pt;}
.y34{bottom:535.840000pt;}
.y177{bottom:536.640000pt;}
.y1ff{bottom:538.080000pt;}
.y1ae{bottom:538.880000pt;}
.y1d8{bottom:540.160000pt;}
.y20{bottom:540.640000pt;}
.ya{bottom:542.880000pt;}
.y17d{bottom:544.320000pt;}
.y166{bottom:544.800000pt;}
.ya0{bottom:545.600000pt;}
.y149{bottom:548.640000pt;}
.yf0{bottom:549.440000pt;}
.y60{bottom:550.080133pt;}
.y106{bottom:550.560000pt;}
.y125{bottom:551.040000pt;}
.y1c3{bottom:551.840000pt;}
.yb6{bottom:554.080000pt;}
.y76{bottom:555.840000pt;}
.y43{bottom:556.320000pt;}
.yc2{bottom:556.640000pt;}
.y1b8{bottom:561.600000pt;}
.y179{bottom:562.720000pt;}
.y213{bottom:563.360000pt;}
.y210{bottom:566.301333pt;}
.y148{bottom:567.040000pt;}
.y8c{bottom:567.680000pt;}
.y1a3{bottom:568.640000pt;}
.y165{bottom:568.800000pt;}
.y124{bottom:569.440000pt;}
.y17b{bottom:570.560000pt;}
.y1d3{bottom:570.611200pt;}
.y33{bottom:572.640000pt;}
.y1ad{bottom:575.680000pt;}
.y1f{bottom:577.440000pt;}
.y9{bottom:579.680000pt;}
.y1c1{bottom:584.000000pt;}
.y147{bottom:585.440000pt;}
.yef{bottom:586.080000pt;}
.y105{bottom:588.640000pt;}
.y170{bottom:588.960000pt;}
.y5f{bottom:589.280133pt;}
.y1ea{bottom:589.760000pt;}
.y1ec{bottom:590.880000pt;}
.y75{bottom:592.640000pt;}
.yd3{bottom:593.440000pt;}
.y123{bottom:594.400000pt;}
.y1c8{bottom:594.792667pt;}
.y176{bottom:596.640000pt;}
.y212{bottom:600.160000pt;}
.y1a2{bottom:602.080000pt;}
.y146{bottom:603.680000pt;}
.yb5{bottom:606.880000pt;}
.y20e{bottom:608.657867pt;}
.y32{bottom:609.440000pt;}
.y9c{bottom:612.160000pt;}
.y122{bottom:612.800000pt;}
.y1e{bottom:614.080000pt;}
.y172{bottom:615.040000pt;}
.y8{bottom:616.480000pt;}
.y163{bottom:616.640000pt;}
.y20f{bottom:619.682800pt;}
.y8b{bottom:620.480000pt;}
.y1c0{bottom:620.800000pt;}
.y1b7{bottom:621.760000pt;}
.y1fc{bottom:622.587600pt;}
.y174{bottom:622.720000pt;}
.yee{bottom:622.880000pt;}
.y73{bottom:623.040000pt;}
.y1c9{bottom:625.101787pt;}
.yde{bottom:625.440000pt;}
.y5e{bottom:627.360133pt;}
.y1ac{bottom:628.480000pt;}
.y145{bottom:628.800000pt;}
.y1e8{bottom:629.411200pt;}
.yd2{bottom:630.080000pt;}
.y121{bottom:631.200000pt;}
.y205{bottom:632.117867pt;}
.y1a1{bottom:635.520000pt;}
.yaf{bottom:637.600000pt;}
.y161{bottom:641.280000pt;}
.y42{bottom:646.080000pt;}
.y1f1{bottom:646.087600pt;}
.y144{bottom:647.200000pt;}
.y211{bottom:648.960000pt;}
.y1dd{bottom:649.801600pt;}
.y9b{bottom:650.240000pt;}
.y1d{bottom:650.880000pt;}
.y1b6{bottom:651.200000pt;}
.y1ca{bottom:655.410907pt;}
.y1d4{bottom:656.016267pt;}
.y120{bottom:656.320000pt;}
.y8a{bottom:657.280000pt;}
.y5a{bottom:657.760000pt;}
.yed{bottom:659.680000pt;}
.y31{bottom:662.080000pt;}
.y1ab{bottom:665.280000pt;}
.y143{bottom:665.600000pt;}
.yd1{bottom:666.880000pt;}
.y206{bottom:667.577867pt;}
.yb3{bottom:667.680000pt;}
.y7{bottom:668.960000pt;}
.y1a0{bottom:669.120000pt;}
.y21f{bottom:670.206533pt;}
.y1bf{bottom:673.600000pt;}
.y11f{bottom:674.720000pt;}
.y1f2{bottom:676.227600pt;}
.y1de{bottom:679.782400pt;}
.yae{bottom:681.600000pt;}
.y41{bottom:682.880000pt;}
.y142{bottom:684.000000pt;}
.y1cb{bottom:685.720027pt;}
.y9a{bottom:687.040000pt;}
.y1c{bottom:687.680000pt;}
.y1b5{bottom:688.000000pt;}
.y160{bottom:688.160000pt;}
.y5c{bottom:690.720000pt;}
.yb2{bottom:691.040000pt;}
.y11e{bottom:693.120000pt;}
.y89{bottom:694.080000pt;}
.yec{bottom:696.480000pt;}
.y21d{bottom:698.026213pt;}
.y30{bottom:698.880000pt;}
.y19f{bottom:702.560000pt;}
.y207{bottom:703.037867pt;}
.y72{bottom:703.520000pt;}
.yd0{bottom:703.680000pt;}
.y1aa{bottom:705.760000pt;}
.y1f3{bottom:706.367600pt;}
.y1e9{bottom:707.939200pt;}
.y1fd{bottom:708.658800pt;}
.y141{bottom:709.120000pt;}
.y1df{bottom:709.763200pt;}
.y1be{bottom:710.400000pt;}
.y11d{bottom:711.520000pt;}
.y1b4{bottom:713.120000pt;}
.y1cc{bottom:716.029147pt;}
.y215{bottom:718.399333pt;}
.y112{bottom:719.360000pt;}
.y40{bottom:719.680000pt;}
.y6{bottom:722.080000pt;}
.y1b{bottom:724.480000pt;}
.y19d{bottom:726.560000pt;}
.y140{bottom:727.520000pt;}
.y88{bottom:730.880000pt;}
.yeb{bottom:733.280000pt;}
.y2f{bottom:735.680000pt;}
.y1bd{bottom:736.320000pt;}
.y11c{bottom:736.480000pt;}
.y1f4{bottom:736.507600pt;}
.y208{bottom:738.497867pt;}
.y1e0{bottom:739.744000pt;}
.y99{bottom:739.840000pt;}
.y71{bottom:740.320000pt;}
.ycf{bottom:740.480000pt;}
.y19e{bottom:742.400000pt;}
.y1a9{bottom:745.760000pt;}
.y1cd{bottom:746.338267pt;}
.y19c{bottom:748.960000pt;}
.y216{bottom:751.369573pt;}
.y13f{bottom:752.480000pt;}
.y59{bottom:754.720000pt;}
.y11b{bottom:754.880000pt;}
.yad{bottom:756.480000pt;}
.y5{bottom:758.880000pt;}
.y21e{bottom:766.193333pt;}
.y1f5{bottom:766.647600pt;}
.y87{bottom:767.680000pt;}
.y1e1{bottom:769.724800pt;}
.yea{bottom:770.080000pt;}
.y13e{bottom:770.880000pt;}
.y199{bottom:771.360000pt;}
.y2e{bottom:772.480000pt;}
.y11a{bottom:773.280000pt;}
.y209{bottom:773.957867pt;}
.y98{bottom:776.640000pt;}
.y1ce{bottom:776.647387pt;}
.y1a{bottom:776.960000pt;}
.yce{bottom:777.280000pt;}
.y1bc{bottom:777.760000pt;}
.y217{bottom:784.339813pt;}
.y1a8{bottom:785.600000pt;}
.y19b{bottom:787.200000pt;}
.y13d{bottom:789.280000pt;}
.y58{bottom:791.520000pt;}
.y70{bottom:793.120000pt;}
.yac{bottom:793.280000pt;}
.y198{bottom:793.760000pt;}
.y1b3{bottom:796.160000pt;}
.y1f6{bottom:796.787600pt;}
.y119{bottom:798.400000pt;}
.y1e2{bottom:799.705600pt;}
.y86{bottom:805.600000pt;}
.ye9{bottom:806.880000pt;}
.y1cf{bottom:806.956507pt;}
.y13c{bottom:807.680000pt;}
.y2d{bottom:809.280000pt;}
.y20a{bottom:809.417867pt;}
.y1d7{bottom:810.575467pt;}
.y4{bottom:812.800000pt;}
.y97{bottom:813.440000pt;}
.yfc{bottom:814.080000pt;}
.y118{bottom:816.800000pt;}
.y218{bottom:817.310053pt;}
.y1bb{bottom:819.200000pt;}
.y52{bottom:821.920000pt;}
.y1a7{bottom:825.600000pt;}
.y1f7{bottom:826.927600pt;}
.y1e3{bottom:829.686400pt;}
.ycd{bottom:829.760000pt;}
.y6f{bottom:829.920000pt;}
.y19{bottom:830.080000pt;}
.y13b{bottom:832.800000pt;}
.y194{bottom:834.240000pt;}
.y117{bottom:835.200000pt;}
.y1d0{bottom:837.265627pt;}
.y1b2{bottom:837.600000pt;}
.y1d6{bottom:843.308800pt;}
.y85{bottom:843.680000pt;}
.y95{bottom:843.840000pt;}
.ye8{bottom:844.800000pt;}
.y20b{bottom:844.877867pt;}
.y2c{bottom:846.080000pt;}
.y193{bottom:848.000000pt;}
.y219{bottom:850.280293pt;}
.y13a{bottom:851.200000pt;}
.y196{bottom:853.120000pt;}
.y56{bottom:854.880000pt;}
.y1f8{bottom:857.067600pt;}
.y1e4{bottom:859.667200pt;}
.y116{bottom:860.320000pt;}
.y1ba{bottom:860.800000pt;}
.y195{bottom:861.760000pt;}
.y96{bottom:866.080000pt;}
.yfb{bottom:866.560000pt;}
.y6e{bottom:866.720000pt;}
.yab{bottom:866.880000pt;}
.y1d1{bottom:867.574747pt;}
.y1d5{bottom:876.042133pt;}
.y139{bottom:876.320000pt;}
.y3{bottom:877.440000pt;}
.y115{bottom:878.720000pt;}
.y1b0{bottom:879.040000pt;}
.y20c{bottom:880.337867pt;}
.y84{bottom:881.600000pt;}
.y18{bottom:882.880000pt;}
.y21a{bottom:883.250533pt;}
.y1f9{bottom:887.207600pt;}
.y1e5{bottom:889.648000pt;}
.y1af{bottom:890.880000pt;}
.y138{bottom:894.720000pt;}
.y114{bottom:896.960000pt;}
.y6a{bottom:897.120000pt;}
.y1d2{bottom:897.883867pt;}
.y1b1{bottom:902.880000pt;}
.y192{bottom:903.680000pt;}
.y137{bottom:913.120000pt;}
.y20d{bottom:915.797867pt;}
.y21b{bottom:916.220773pt;}
.y1fa{bottom:917.347600pt;}
.y1e6{bottom:919.628800pt;}
.y17{bottom:919.680000pt;}
.y6d{bottom:927.040000pt;}
.y136{bottom:931.520000pt;}
.y2{bottom:932.640000pt;}
.y6c{bottom:932.960000pt;}
.y15f{bottom:938.080000pt;}
.y113{bottom:940.160000pt;}
.y191{bottom:940.480000pt;}
.y1fb{bottom:947.487600pt;}
.y21c{bottom:949.191013pt;}
.y1e7{bottom:949.609600pt;}
.y1c2{bottom:956.160000pt;}
.y16{bottom:956.480000pt;}
.h2c{height:23.838667pt;}
.h2b{height:23.840000pt;}
.h2d{height:24.000000pt;}
.h32{height:25.440000pt;}
.h38{height:25.600000pt;}
.h34{height:25.601333pt;}
.h3a{height:27.521333pt;}
.h36{height:29.794062pt;}
.h2e{height:42.084375pt;}
.h3b{height:44.800000pt;}
.h25{height:45.156250pt;}
.h31{height:51.520000pt;}
.h33{height:51.680000pt;}
.h1a{height:53.440000pt;}
.h1f{height:53.600000pt;}
.h2f{height:57.787500pt;}
.h14{height:58.080000pt;}
.h28{height:62.781250pt;}
.h1{height:62.812500pt;}
.h27{height:62.813033pt;}
.h23{height:63.452500pt;}
.h1e{height:64.092500pt;}
.h20{height:64.093033pt;}
.h4{height:64.500000pt;}
.h1b{height:64.732500pt;}
.h5{height:66.750000pt;}
.h3e{height:67.044375pt;}
.h3f{height:67.837500pt;}
.he{height:68.030000pt;}
.ha{height:69.950000pt;}
.h3c{height:70.244375pt;}
.h16{height:71.132500pt;}
.h29{height:71.503437pt;}
.h17{height:71.524375pt;}
.h19{height:71.772500pt;}
.h18{height:72.161333pt;}
.hf{height:73.760000pt;}
.h21{height:74.080000pt;}
.hb{height:74.561333pt;}
.h13{height:74.972500pt;}
.h6{height:75.360000pt;}
.h1c{height:77.440000pt;}
.h35{height:77.760000pt;}
.h37{height:77.920000pt;}
.h40{height:78.515625pt;}
.h3{height:94.218750pt;}
.h24{height:96.480000pt;}
.h2{height:96.750000pt;}
.h11{height:97.447500pt;}
.h3d{height:110.812500pt;}
.h39{height:117.852500pt;}
.h9{height:134.690000pt;}
.h7{height:137.250000pt;}
.h15{height:139.170000pt;}
.h12{height:140.327500pt;}
.h10{height:144.290000pt;}
.h30{height:156.160000pt;}
.h1d{height:177.570000pt;}
.h22{height:180.130000pt;}
.h8{height:183.330000pt;}
.hc{height:185.890000pt;}
.h26{height:192.930000pt;}
.hd{height:228.770000pt;}
.h42{height:380.000000pt;}
.h41{height:381.120000pt;}
.h2a{height:816.000000pt;}
.h0{height:1056.000000pt;}
.w2{width:47.200000pt;}
.w10{width:56.801333pt;}
.w9{width:66.240000pt;}
.wa{width:75.520000pt;}
.wb{width:75.680000pt;}
.wc{width:84.960000pt;}
.w13{width:94.398667pt;}
.wd{width:103.998667pt;}
.wf{width:111.198667pt;}
.w12{width:132.320000pt;}
.w14{width:151.200000pt;}
.we{width:179.520000pt;}
.w15{width:196.160000pt;}
.w8{width:217.440000pt;}
.w11{width:302.400000pt;}
.w17{width:511.520000pt;}
.w16{width:559.360000pt;}
.w6{width:568.001333pt;}
.w4{width:576.000000pt;}
.w5{width:578.720000pt;}
.w3{width:585.761333pt;}
.w1{width:585.920000pt;}
.w0{width:816.000000pt;}
.w7{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x40{left:21.600000pt;}
.x43{left:25.120000pt;}
.x45{left:26.400000pt;}
.x49{left:36.160000pt;}
.x5{left:38.720000pt;}
.x23{left:46.080000pt;}
.x24{left:54.080000pt;}
.x27{left:63.680000pt;}
.x2c{left:86.400000pt;}
.x38{left:91.680000pt;}
.x3b{left:93.120000pt;}
.x30{left:94.400000pt;}
.x4c{left:106.240000pt;}
.x2{left:113.440000pt;}
.x1f{left:116.320000pt;}
.xe{left:119.040000pt;}
.x26{left:120.640000pt;}
.x5a{left:135.461467pt;}
.x56{left:138.560800pt;}
.x51{left:139.648267pt;}
.x3{left:142.240000pt;}
.x22{left:143.200000pt;}
.x2e{left:145.440000pt;}
.x60{left:153.629200pt;}
.x62{left:157.060133pt;}
.x28{left:158.400000pt;}
.x4f{left:159.568773pt;}
.x63{left:165.302693pt;}
.x54{left:168.144267pt;}
.x4e{left:172.563333pt;}
.x10{left:175.200000pt;}
.x37{left:180.800000pt;}
.x5e{left:181.989733pt;}
.xd{left:188.480000pt;}
.x2b{left:189.920000pt;}
.x5d{left:191.989733pt;}
.xa{left:193.280000pt;}
.x59{left:194.593067pt;}
.x39{left:198.400000pt;}
.x55{left:200.215947pt;}
.x2a{left:205.920000pt;}
.x5f{left:214.009733pt;}
.x6{left:227.520000pt;}
.x5b{left:248.216000pt;}
.x25{left:250.240000pt;}
.x1a{left:254.400000pt;}
.xf{left:255.520000pt;}
.x1b{left:262.880000pt;}
.x12{left:267.840000pt;}
.x57{left:272.909467pt;}
.x50{left:279.200000pt;}
.x29{left:292.160000pt;}
.x46{left:309.600000pt;}
.x31{left:311.840000pt;}
.x14{left:324.320000pt;}
.x21{left:329.760000pt;}
.x3a{left:330.720000pt;}
.x61{left:333.103733pt;}
.x11{left:338.400000pt;}
.x3f{left:346.080000pt;}
.x64{left:349.622800pt;}
.x1e{left:351.520000pt;}
.x20{left:355.520000pt;}
.x32{left:378.080000pt;}
.x2d{left:381.440000pt;}
.x47{left:394.720000pt;}
.x13{left:406.080000pt;}
.xb{left:408.320000pt;}
.x16{left:416.160000pt;}
.x1d{left:417.280000pt;}
.x1{left:421.280000pt;}
.x33{left:453.600000pt;}
.x4d{left:460.800000pt;}
.x48{left:463.040000pt;}
.x4b{left:470.240000pt;}
.x18{left:471.840000pt;}
.x41{left:481.920000pt;}
.x15{left:487.520000pt;}
.x42{left:500.800000pt;}
.x2f{left:524.640000pt;}
.x34{left:529.280000pt;}
.x52{left:531.430400pt;}
.xc{left:539.360000pt;}
.x17{left:554.240000pt;}
.x19{left:599.680000pt;}
.x9{left:612.000000pt;}
.x35{left:614.240000pt;}
.x58{left:625.440000pt;}
.x1c{left:626.880000pt;}
.x3c{left:633.120000pt;}
.x7{left:636.160000pt;}
.x4a{left:649.760000pt;}
.x44{left:652.000000pt;}
.x53{left:673.440000pt;}
.x8{left:699.360000pt;}
.x5c{left:703.360000pt;}
.x36{left:718.240000pt;}
.x3d{left:765.440000pt;}
.x3e{left:831.680000pt;}
}




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