
    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_4c7e0c2f59dbf861b70fddc4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.977500;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_47e974e360c9efcb36ad15ea.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.942000;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_db9e181ceee8585e245ae655.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2bddf31b43838514d22f22bc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_42fbb1f81ae8af33e2765f69.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ee6818d11170f880026bca33.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.977500;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_8b9e860f3fa4659a1d38f5b8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.900391;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_4182d13f7aae2dc2d6ca7fcb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.977500;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_b558c8a0ec491be39de472eb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.692871;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_7a7546a078dd2761b316fe09.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_72e502cae75d68f71b17c1bf.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_054d1edfc69436baa8ef3fd3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m3{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.441000px;}
.v2{vertical-align:6.000000px;}
.v9{vertical-align:15.984000px;}
.va{vertical-align:17.964000px;}
.v1{vertical-align:23.976000px;}
.v4{vertical-align:25.189920px;}
.v7{vertical-align:28.800000px;}
.v6{vertical-align:36.288000px;}
.v5{vertical-align:50.379840px;}
.v8{vertical-align:57.600000px;}
.ls56{letter-spacing:-4.440000px;}
.ls4f{letter-spacing:-2.220000px;}
.ls3f{letter-spacing:-1.512000px;}
.ls42{letter-spacing:-1.404000px;}
.ls37{letter-spacing:-1.188000px;}
.ls33{letter-spacing:-0.918000px;}
.ls17{letter-spacing:-0.756000px;}
.ls54{letter-spacing:-0.720000px;}
.ls4a{letter-spacing:-0.660000px;}
.ls50{letter-spacing:-0.480000px;}
.ls8{letter-spacing:-0.432000px;}
.lsb{letter-spacing:-0.378000px;}
.ls55{letter-spacing:-0.360000px;}
.ls36{letter-spacing:-0.324000px;}
.ls58{letter-spacing:-0.270000px;}
.ls4{letter-spacing:-0.252000px;}
.ls5{letter-spacing:-0.162000px;}
.ls3b{letter-spacing:-0.120000px;}
.ls34{letter-spacing:-0.060000px;}
.lsa{letter-spacing:-0.054000px;}
.ls3{letter-spacing:-0.048000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000600px;}
.ls7{letter-spacing:0.060000px;}
.ls30{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.180000px;}
.ls57{letter-spacing:0.192000px;}
.ls3a{letter-spacing:0.240000px;}
.ls6{letter-spacing:0.300000px;}
.ls47{letter-spacing:0.342000px;}
.ls35{letter-spacing:0.360000px;}
.ls4d{letter-spacing:0.420000px;}
.ls4c{letter-spacing:0.600000px;}
.ls3e{letter-spacing:1.170000px;}
.ls4b{letter-spacing:1.920000px;}
.ls45{letter-spacing:3.888000px;}
.ls46{letter-spacing:3.900000px;}
.ls40{letter-spacing:4.320000px;}
.ls41{letter-spacing:4.380000px;}
.ls43{letter-spacing:4.386000px;}
.ls38{letter-spacing:4.860000px;}
.ls49{letter-spacing:5.940000px;}
.ls3c{letter-spacing:8.220000px;}
.ls51{letter-spacing:8.268000px;}
.ls3d{letter-spacing:8.280000px;}
.ls44{letter-spacing:9.960000px;}
.ls32{letter-spacing:12.180000px;}
.ls31{letter-spacing:12.480000px;}
.ls39{letter-spacing:12.540000px;}
.ls4e{letter-spacing:12.960000px;}
.ls53{letter-spacing:14.520000px;}
.ls52{letter-spacing:20.220000px;}
.ls48{letter-spacing:39.828000px;}
.lsf{letter-spacing:74.907084px;}
.ls1{letter-spacing:87.504000px;}
.ls10{letter-spacing:106.929564px;}
.ls19{letter-spacing:116.190564px;}
.ls1f{letter-spacing:118.952400px;}
.lse{letter-spacing:178.552080px;}
.ls29{letter-spacing:206.129280px;}
.ls14{letter-spacing:207.405240px;}
.ls12{letter-spacing:210.780360px;}
.ls2d{letter-spacing:226.750440px;}
.ls13{letter-spacing:237.410880px;}
.ls2a{letter-spacing:246.507240px;}
.ls20{letter-spacing:248.890404px;}
.lsc{letter-spacing:251.816880px;}
.ls15{letter-spacing:263.341680px;}
.ls2b{letter-spacing:264.819324px;}
.ls27{letter-spacing:268.655436px;}
.ls16{letter-spacing:279.352920px;}
.ls26{letter-spacing:291.499236px;}
.ls24{letter-spacing:302.196720px;}
.ls28{letter-spacing:306.765480px;}
.ls22{letter-spacing:325.081680px;}
.ls2c{letter-spacing:336.483000px;}
.ls25{letter-spacing:339.532956px;}
.ls1b{letter-spacing:343.681884px;}
.ls21{letter-spacing:345.579360px;}
.ls2e{letter-spacing:347.925480px;}
.ls11{letter-spacing:350.148120px;}
.ls23{letter-spacing:363.936720px;}
.ls1a{letter-spacing:378.795480px;}
.ls1e{letter-spacing:381.470880px;}
.ls1d{letter-spacing:383.364240px;}
.ls18{letter-spacing:410.776800px;}
.ls1c{letter-spacing:426.788040px;}
.ls2f{letter-spacing:445.104240px;}
.lsd{letter-spacing:605.134320px;}
.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;}
}
.ws5{word-spacing:-20.748000px;}
.ws4{word-spacing:-20.496000px;}
.wsd3{word-spacing:-18.000000px;}
.ws177{word-spacing:-15.420000px;}
.ws108{word-spacing:-15.360000px;}
.ws19d{word-spacing:-15.300000px;}
.ws121{word-spacing:-15.240000px;}
.ws1a5{word-spacing:-15.060000px;}
.ws83{word-spacing:-15.000000px;}
.ws14d{word-spacing:-14.880000px;}
.ws17{word-spacing:-14.418000px;}
.ws11a{word-spacing:-14.364000px;}
.ws158{word-spacing:-14.256000px;}
.ws1f4{word-spacing:-14.148000px;}
.ws10a{word-spacing:-14.094000px;}
.ws98{word-spacing:-14.040000px;}
.ws60{word-spacing:-13.986000px;}
.wsbd{word-spacing:-13.662000px;}
.wse0{word-spacing:-13.500000px;}
.ws10c{word-spacing:-13.230000px;}
.ws147{word-spacing:-13.014000px;}
.ws136{word-spacing:-12.906000px;}
.ws1d9{word-spacing:-12.192000px;}
.ws1{word-spacing:-12.000000px;}
.ws3{word-spacing:-11.952000px;}
.ws2{word-spacing:-11.808000px;}
.ws199{word-spacing:-10.560000px;}
.ws0{word-spacing:-10.494000px;}
.wsbb{word-spacing:-10.290000px;}
.ws1f5{word-spacing:-7.870500px;}
.ws1b2{word-spacing:-6.996000px;}
.ws14e{word-spacing:-6.720000px;}
.ws14f{word-spacing:-4.620000px;}
.ws172{word-spacing:-4.440000px;}
.ws176{word-spacing:-4.320000px;}
.ws16e{word-spacing:-4.260000px;}
.wsf7{word-spacing:-4.080000px;}
.ws16d{word-spacing:-4.020000px;}
.wsb7{word-spacing:-3.600000px;}
.ws154{word-spacing:-3.480000px;}
.ws44{word-spacing:-3.420000px;}
.ws170{word-spacing:-3.360000px;}
.ws175{word-spacing:-3.300000px;}
.ws135{word-spacing:-3.240000px;}
.wsf2{word-spacing:-3.180000px;}
.ws156{word-spacing:-3.120000px;}
.wsc9{word-spacing:-3.000000px;}
.ws160{word-spacing:-2.940000px;}
.ws192{word-spacing:-2.880000px;}
.ws20a{word-spacing:-2.862000px;}
.ws42{word-spacing:-2.820000px;}
.wsf0{word-spacing:-2.760000px;}
.ws85{word-spacing:-2.700000px;}
.ws66{word-spacing:-2.640000px;}
.ws29{word-spacing:-2.580000px;}
.ws211{word-spacing:-2.538000px;}
.ws1a1{word-spacing:-2.520000px;}
.ws2c{word-spacing:-2.460000px;}
.ws25{word-spacing:-2.400000px;}
.wsaa{word-spacing:-2.340000px;}
.ws114{word-spacing:-2.280000px;}
.wsc{word-spacing:-2.268000px;}
.wsc2{word-spacing:-2.263800px;}
.ws1c2{word-spacing:-2.256000px;}
.ws181{word-spacing:-2.220000px;}
.ws81{word-spacing:-2.160000px;}
.ws20b{word-spacing:-2.106000px;}
.ws57{word-spacing:-2.100000px;}
.ws1a6{word-spacing:-2.064000px;}
.ws13e{word-spacing:-2.040000px;}
.ws5f{word-spacing:-1.998000px;}
.ws166{word-spacing:-1.980000px;}
.ws8a{word-spacing:-1.920000px;}
.wsf{word-spacing:-1.890000px;}
.wsd5{word-spacing:-1.860000px;}
.ws4a{word-spacing:-1.800000px;}
.ws20f{word-spacing:-1.782000px;}
.ws1c{word-spacing:-1.740000px;}
.ws4c{word-spacing:-1.680000px;}
.ws16{word-spacing:-1.663200px;}
.ws126{word-spacing:-1.620000px;}
.ws219{word-spacing:-1.566000px;}
.ws13d{word-spacing:-1.560000px;}
.ws119{word-spacing:-1.500000px;}
.ws1ad{word-spacing:-1.488000px;}
.ws6e{word-spacing:-1.440000px;}
.ws11e{word-spacing:-1.380000px;}
.ws1b0{word-spacing:-1.344000px;}
.wsfc{word-spacing:-1.320000px;}
.wsd{word-spacing:-1.296000px;}
.ws17a{word-spacing:-1.260000px;}
.ws1fe{word-spacing:-1.248000px;}
.ws35{word-spacing:-1.200000px;}
.ws10{word-spacing:-1.188000px;}
.ws7f{word-spacing:-1.140000px;}
.ws8{word-spacing:-1.104000px;}
.wsd4{word-spacing:-1.092000px;}
.ws73{word-spacing:-1.080000px;}
.wscd{word-spacing:-1.026000px;}
.ws8f{word-spacing:-1.020000px;}
.ws1ef{word-spacing:-1.008000px;}
.ws49{word-spacing:-0.960000px;}
.ws1df{word-spacing:-0.912000px;}
.ws91{word-spacing:-0.900000px;}
.wsd1{word-spacing:-0.864000px;}
.wsa4{word-spacing:-0.840000px;}
.ws1c5{word-spacing:-0.816000px;}
.ws78{word-spacing:-0.780000px;}
.wsc5{word-spacing:-0.740880px;}
.ws69{word-spacing:-0.720000px;}
.ws3a{word-spacing:-0.702000px;}
.ws1a{word-spacing:-0.660000px;}
.wse{word-spacing:-0.648000px;}
.ws65{word-spacing:-0.600000px;}
.ws1db{word-spacing:-0.576000px;}
.wsdf{word-spacing:-0.540000px;}
.ws1e0{word-spacing:-0.528000px;}
.ws8d{word-spacing:-0.480000px;}
.ws14c{word-spacing:-0.432000px;}
.ws77{word-spacing:-0.420000px;}
.wsff{word-spacing:-0.360000px;}
.ws1e7{word-spacing:-0.336000px;}
.ws32{word-spacing:-0.300000px;}
.ws61{word-spacing:-0.240000px;}
.ws205{word-spacing:-0.216000px;}
.ws1dc{word-spacing:-0.192000px;}
.ws92{word-spacing:-0.180000px;}
.ws1bb{word-spacing:-0.144000px;}
.ws7c{word-spacing:-0.120000px;}
.ws1b7{word-spacing:-0.096000px;}
.wsc6{word-spacing:-0.082320px;}
.ws24{word-spacing:-0.060000px;}
.ws6{word-spacing:0.000000px;}
.ws9{word-spacing:0.048000px;}
.ws96{word-spacing:0.054000px;}
.wsec{word-spacing:0.060000px;}
.ws122{word-spacing:0.120000px;}
.ws1b8{word-spacing:0.144000px;}
.wsa{word-spacing:0.162000px;}
.ws102{word-spacing:0.180000px;}
.ws40{word-spacing:0.240000px;}
.ws3f{word-spacing:0.300000px;}
.wsdc{word-spacing:0.360000px;}
.ws64{word-spacing:0.420000px;}
.ws1dd{word-spacing:0.432000px;}
.ws22{word-spacing:0.480000px;}
.ws20d{word-spacing:0.486000px;}
.wscc{word-spacing:0.540000px;}
.ws1e4{word-spacing:0.576000px;}
.ws115{word-spacing:0.600000px;}
.ws1f3{word-spacing:0.624000px;}
.ws131{word-spacing:0.660000px;}
.ws12f{word-spacing:0.720000px;}
.ws1c9{word-spacing:0.768000px;}
.ws12{word-spacing:0.780000px;}
.ws45{word-spacing:0.840000px;}
.ws207{word-spacing:0.864000px;}
.ws168{word-spacing:0.900000px;}
.ws30{word-spacing:0.960000px;}
.ws3c{word-spacing:1.020000px;}
.ws5e{word-spacing:1.080000px;}
.ws4f{word-spacing:1.134000px;}
.ws140{word-spacing:1.140000px;}
.ws1c1{word-spacing:1.152000px;}
.ws10b{word-spacing:1.188000px;}
.wsa0{word-spacing:1.200000px;}
.ws1b{word-spacing:1.260000px;}
.ws105{word-spacing:1.320000px;}
.ws1d0{word-spacing:1.344000px;}
.ws206{word-spacing:1.350000px;}
.ws62{word-spacing:1.380000px;}
.ws8e{word-spacing:1.440000px;}
.ws1ea{word-spacing:1.488000px;}
.wsee{word-spacing:1.500000px;}
.wsd0{word-spacing:1.512000px;}
.ws1f9{word-spacing:1.536000px;}
.wsf5{word-spacing:1.560000px;}
.ws1bc{word-spacing:1.584000px;}
.ws1f{word-spacing:1.620000px;}
.ws99{word-spacing:1.680000px;}
.ws1c4{word-spacing:1.728000px;}
.ws195{word-spacing:1.740000px;}
.ws1e2{word-spacing:1.776000px;}
.wsb3{word-spacing:1.800000px;}
.ws1c0{word-spacing:1.824000px;}
.ws218{word-spacing:1.836000px;}
.ws67{word-spacing:1.860000px;}
.ws9a{word-spacing:1.920000px;}
.ws125{word-spacing:1.980000px;}
.ws1f2{word-spacing:2.016000px;}
.wsed{word-spacing:2.040000px;}
.ws1e1{word-spacing:2.064000px;}
.ws9c{word-spacing:2.100000px;}
.ws97{word-spacing:2.106000px;}
.ws1da{word-spacing:2.112000px;}
.ws68{word-spacing:2.160000px;}
.ws72{word-spacing:2.220000px;}
.ws1bf{word-spacing:2.256000px;}
.ws213{word-spacing:2.268000px;}
.ws56{word-spacing:2.280000px;}
.ws2f{word-spacing:2.340000px;}
.ws1a8{word-spacing:2.352000px;}
.ws203{word-spacing:2.376000px;}
.ws4b{word-spacing:2.400000px;}
.ws208{word-spacing:2.430000px;}
.ws2d{word-spacing:2.460000px;}
.ws12e{word-spacing:2.520000px;}
.ws104{word-spacing:2.580000px;}
.ws70{word-spacing:2.640000px;}
.ws95{word-spacing:2.646000px;}
.ws46{word-spacing:2.700000px;}
.ws1ac{word-spacing:2.736000px;}
.ws210{word-spacing:2.754000px;}
.ws2b{word-spacing:2.760000px;}
.ws1ca{word-spacing:2.784000px;}
.ws9f{word-spacing:2.820000px;}
.ws1e8{word-spacing:2.832000px;}
.ws2a{word-spacing:2.880000px;}
.ws36{word-spacing:2.940000px;}
.ws1b6{word-spacing:2.976000px;}
.ws9b{word-spacing:3.000000px;}
.ws1af{word-spacing:3.024000px;}
.wsa5{word-spacing:3.060000px;}
.ws7b{word-spacing:3.120000px;}
.ws1ab{word-spacing:3.168000px;}
.wsac{word-spacing:3.180000px;}
.ws5c{word-spacing:3.240000px;}
.ws3b{word-spacing:3.300000px;}
.ws1f6{word-spacing:3.312000px;}
.ws209{word-spacing:3.348000px;}
.wsef{word-spacing:3.360000px;}
.ws200{word-spacing:3.402000px;}
.ws9e{word-spacing:3.420000px;}
.ws55{word-spacing:3.480000px;}
.ws84{word-spacing:3.540000px;}
.wsdd{word-spacing:3.600000px;}
.ws1fd{word-spacing:3.648000px;}
.ws82{word-spacing:3.660000px;}
.ws215{word-spacing:3.672000px;}
.ws6b{word-spacing:3.720000px;}
.ws1b5{word-spacing:3.744000px;}
.ws106{word-spacing:3.840000px;}
.ws1e3{word-spacing:3.888000px;}
.ws15b{word-spacing:3.900000px;}
.ws1f1{word-spacing:3.936000px;}
.wsb{word-spacing:3.942000px;}
.ws14{word-spacing:3.960000px;}
.ws1fc{word-spacing:3.984000px;}
.ws21{word-spacing:4.020000px;}
.ws1cd{word-spacing:4.032000px;}
.ws4e{word-spacing:4.050000px;}
.ws76{word-spacing:4.080000px;}
.ws41{word-spacing:4.140000px;}
.ws90{word-spacing:4.200000px;}
.wsda{word-spacing:4.260000px;}
.ws19b{word-spacing:4.320000px;}
.ws1b3{word-spacing:4.368000px;}
.wsf8{word-spacing:4.374000px;}
.ws15{word-spacing:4.380000px;}
.ws6d{word-spacing:4.440000px;}
.ws1d1{word-spacing:4.464000px;}
.ws28{word-spacing:4.500000px;}
.ws20e{word-spacing:4.536000px;}
.ws3d{word-spacing:4.560000px;}
.ws89{word-spacing:4.620000px;}
.ws137{word-spacing:4.680000px;}
.ws1cc{word-spacing:4.704000px;}
.ws26{word-spacing:4.740000px;}
.ws159{word-spacing:4.800000px;}
.ws1ff{word-spacing:4.848000px;}
.ws11f{word-spacing:4.860000px;}
.ws1ed{word-spacing:4.896000px;}
.wsd2{word-spacing:4.914000px;}
.ws18{word-spacing:4.920000px;}
.ws174{word-spacing:4.980000px;}
.ws212{word-spacing:5.022000px;}
.ws165{word-spacing:5.040000px;}
.wscb{word-spacing:5.100000px;}
.ws4d{word-spacing:5.160000px;}
.ws1fa{word-spacing:5.184000px;}
.wsae{word-spacing:5.220000px;}
.ws1b9{word-spacing:5.232000px;}
.wse8{word-spacing:5.280000px;}
.ws204{word-spacing:5.292000px;}
.ws1c8{word-spacing:5.328000px;}
.ws112{word-spacing:5.340000px;}
.ws54{word-spacing:5.400000px;}
.ws109{word-spacing:5.460000px;}
.ws20c{word-spacing:5.508000px;}
.ws116{word-spacing:5.520000px;}
.ws162{word-spacing:5.580000px;}
.ws1d3{word-spacing:5.616000px;}
.ws1e{word-spacing:5.640000px;}
.ws7{word-spacing:5.664000px;}
.wsaf{word-spacing:5.700000px;}
.ws2e{word-spacing:5.760000px;}
.ws79{word-spacing:5.820000px;}
.ws201{word-spacing:5.832000px;}
.wsb4{word-spacing:5.880000px;}
.ws38{word-spacing:5.940000px;}
.ws33{word-spacing:6.000000px;}
.ws111{word-spacing:6.060000px;}
.ws5b{word-spacing:6.120000px;}
.ws217{word-spacing:6.156000px;}
.ws13{word-spacing:6.180000px;}
.ws153{word-spacing:6.240000px;}
.ws1d4{word-spacing:6.288000px;}
.ws10e{word-spacing:6.300000px;}
.ws1ce{word-spacing:6.336000px;}
.ws80{word-spacing:6.360000px;}
.ws1de{word-spacing:6.384000px;}
.wse7{word-spacing:6.420000px;}
.ws1ba{word-spacing:6.432000px;}
.ws1a4{word-spacing:6.480000px;}
.wsf6{word-spacing:6.540000px;}
.ws1eb{word-spacing:6.576000px;}
.ws23{word-spacing:6.600000px;}
.ws1ae{word-spacing:6.624000px;}
.wsb6{word-spacing:6.660000px;}
.ws1f8{word-spacing:6.672000px;}
.ws1a2{word-spacing:6.720000px;}
.ws1f7{word-spacing:6.768000px;}
.ws5a{word-spacing:6.780000px;}
.ws1d6{word-spacing:6.816000px;}
.ws58{word-spacing:6.840000px;}
.ws1a9{word-spacing:6.864000px;}
.ws161{word-spacing:6.900000px;}
.ws71{word-spacing:6.960000px;}
.ws51{word-spacing:7.020000px;}
.ws27{word-spacing:7.080000px;}
.ws37{word-spacing:7.140000px;}
.ws103{word-spacing:7.200000px;}
.ws17c{word-spacing:7.260000px;}
.wsa9{word-spacing:7.320000px;}
.ws1d5{word-spacing:7.344000px;}
.wse2{word-spacing:7.380000px;}
.ws6a{word-spacing:7.440000px;}
.ws48{word-spacing:7.500000px;}
.ws101{word-spacing:7.560000px;}
.ws163{word-spacing:7.620000px;}
.ws10d{word-spacing:7.680000px;}
.ws74{word-spacing:7.740000px;}
.ws15c{word-spacing:7.800000px;}
.ws1d7{word-spacing:7.824000px;}
.wsde{word-spacing:7.860000px;}
.wsd9{word-spacing:7.920000px;}
.wsf1{word-spacing:7.980000px;}
.ws1cf{word-spacing:8.016000px;}
.wsd6{word-spacing:8.040000px;}
.ws75{word-spacing:8.100000px;}
.ws151{word-spacing:8.160000px;}
.ws1ee{word-spacing:8.208000px;}
.wsca{word-spacing:8.220000px;}
.ws1e9{word-spacing:8.256000px;}
.ws47{word-spacing:8.280000px;}
.ws145{word-spacing:8.340000px;}
.ws1a7{word-spacing:8.352000px;}
.wsf3{word-spacing:8.400000px;}
.wsd7{word-spacing:8.460000px;}
.ws34{word-spacing:8.520000px;}
.ws11c{word-spacing:8.580000px;}
.ws8b{word-spacing:8.640000px;}
.ws1aa{word-spacing:8.688000px;}
.ws7e{word-spacing:8.700000px;}
.ws9d{word-spacing:8.760000px;}
.ws50{word-spacing:8.820000px;}
.ws1be{word-spacing:8.832000px;}
.wsb5{word-spacing:8.880000px;}
.ws186{word-spacing:8.940000px;}
.ws214{word-spacing:8.964000px;}
.ws3e{word-spacing:9.000000px;}
.ws173{word-spacing:9.060000px;}
.ws1b1{word-spacing:9.072000px;}
.wsfe{word-spacing:9.120000px;}
.ws1b4{word-spacing:9.168000px;}
.wse5{word-spacing:9.180000px;}
.ws133{word-spacing:9.240000px;}
.ws12b{word-spacing:9.300000px;}
.ws1c3{word-spacing:9.312000px;}
.ws31{word-spacing:9.360000px;}
.ws216{word-spacing:9.450000px;}
.ws12a{word-spacing:9.480000px;}
.wsa2{word-spacing:9.540000px;}
.ws1a0{word-spacing:9.600000px;}
.ws43{word-spacing:9.660000px;}
.ws1d2{word-spacing:9.696000px;}
.ws169{word-spacing:9.720000px;}
.ws17e{word-spacing:9.780000px;}
.ws14b{word-spacing:9.840000px;}
.ws196{word-spacing:9.900000px;}
.ws149{word-spacing:9.960000px;}
.ws53{word-spacing:10.080000px;}
.ws146{word-spacing:10.140000px;}
.ws13c{word-spacing:10.200000px;}
.wsdb{word-spacing:10.380000px;}
.ws198{word-spacing:10.440000px;}
.ws15a{word-spacing:10.500000px;}
.ws167{word-spacing:10.560000px;}
.ws1e5{word-spacing:10.608000px;}
.wseb{word-spacing:10.620000px;}
.wse1{word-spacing:10.680000px;}
.ws117{word-spacing:10.740000px;}
.wse9{word-spacing:10.800000px;}
.ws1c7{word-spacing:10.848000px;}
.ws18c{word-spacing:10.860000px;}
.ws1cb{word-spacing:10.896000px;}
.ws87{word-spacing:10.920000px;}
.ws1d{word-spacing:10.980000px;}
.ws63{word-spacing:11.040000px;}
.ws8c{word-spacing:11.100000px;}
.ws17d{word-spacing:11.160000px;}
.ws100{word-spacing:11.220000px;}
.ws94{word-spacing:11.280000px;}
.wsfd{word-spacing:11.340000px;}
.ws107{word-spacing:11.400000px;}
.wsb0{word-spacing:11.520000px;}
.ws155{word-spacing:11.580000px;}
.ws13b{word-spacing:11.640000px;}
.ws1c6{word-spacing:11.712000px;}
.ws139{word-spacing:11.820000px;}
.ws150{word-spacing:11.880000px;}
.ws11d{word-spacing:11.940000px;}
.wsa1{word-spacing:12.000000px;}
.wse4{word-spacing:12.060000px;}
.ws11{word-spacing:12.120000px;}
.ws1a3{word-spacing:12.240000px;}
.ws184{word-spacing:12.420000px;}
.ws20{word-spacing:12.480000px;}
.wsab{word-spacing:12.540000px;}
.ws132{word-spacing:12.660000px;}
.ws19e{word-spacing:12.720000px;}
.ws1f0{word-spacing:12.768000px;}
.ws127{word-spacing:12.780000px;}
.wsfa{word-spacing:12.840000px;}
.ws183{word-spacing:12.900000px;}
.ws59{word-spacing:12.960000px;}
.ws15e{word-spacing:13.020000px;}
.ws17b{word-spacing:13.080000px;}
.ws88{word-spacing:13.140000px;}
.wsa3{word-spacing:13.200000px;}
.ws187{word-spacing:13.260000px;}
.wsea{word-spacing:13.380000px;}
.wsa7{word-spacing:13.440000px;}
.ws19{word-spacing:13.500000px;}
.ws202{word-spacing:13.554000px;}
.ws197{word-spacing:13.620000px;}
.ws1e6{word-spacing:13.680000px;}
.ws18b{word-spacing:13.740000px;}
.ws13f{word-spacing:13.800000px;}
.ws39{word-spacing:13.920000px;}
.wsb1{word-spacing:13.980000px;}
.ws7a{word-spacing:14.040000px;}
.ws193{word-spacing:14.100000px;}
.ws194{word-spacing:14.160000px;}
.ws12d{word-spacing:14.220000px;}
.wsf4{word-spacing:14.280000px;}
.ws13a{word-spacing:14.340000px;}
.ws1d8{word-spacing:14.352000px;}
.ws128{word-spacing:14.400000px;}
.ws190{word-spacing:14.460000px;}
.ws189{word-spacing:14.520000px;}
.ws171{word-spacing:14.700000px;}
.ws124{word-spacing:14.760000px;}
.wse3{word-spacing:14.820000px;}
.ws18d{word-spacing:14.880000px;}
.ws123{word-spacing:14.940000px;}
.ws15f{word-spacing:15.120000px;}
.ws5d{word-spacing:15.180000px;}
.ws52{word-spacing:15.360000px;}
.ws93{word-spacing:15.420000px;}
.ws180{word-spacing:15.600000px;}
.ws143{word-spacing:15.660000px;}
.ws10f{word-spacing:15.900000px;}
.ws164{word-spacing:16.080000px;}
.ws19c{word-spacing:16.140000px;}
.ws6c{word-spacing:16.260000px;}
.wsb2{word-spacing:16.320000px;}
.ws134{word-spacing:16.380000px;}
.ws12c{word-spacing:16.560000px;}
.wsf9{word-spacing:16.800000px;}
.ws7d{word-spacing:16.860000px;}
.ws185{word-spacing:16.920000px;}
.ws19a{word-spacing:16.980000px;}
.ws11b{word-spacing:17.040000px;}
.ws118{word-spacing:17.100000px;}
.ws113{word-spacing:17.160000px;}
.wsa6{word-spacing:17.220000px;}
.ws188{word-spacing:17.340000px;}
.ws86{word-spacing:17.460000px;}
.ws16a{word-spacing:17.640000px;}
.ws142{word-spacing:17.700000px;}
.ws1fb{word-spacing:17.712000px;}
.ws120{word-spacing:18.120000px;}
.ws182{word-spacing:18.180000px;}
.ws1ec{word-spacing:18.192000px;}
.ws18e{word-spacing:18.240000px;}
.ws6f{word-spacing:19.800000px;}
.wsad{word-spacing:19.920000px;}
.ws18f{word-spacing:20.220000px;}
.ws19f{word-spacing:20.520000px;}
.ws1bd{word-spacing:20.640000px;}
.wse6{word-spacing:20.880000px;}
.ws18a{word-spacing:21.000000px;}
.ws157{word-spacing:21.120000px;}
.ws191{word-spacing:22.080000px;}
.wsa8{word-spacing:22.740000px;}
.ws16f{word-spacing:22.800000px;}
.ws152{word-spacing:22.920000px;}
.ws141{word-spacing:23.940000px;}
.ws178{word-spacing:24.600000px;}
.wsfb{word-spacing:24.900000px;}
.ws16b{word-spacing:26.580000px;}
.wsd8{word-spacing:27.360000px;}
.ws17f{word-spacing:27.540000px;}
.ws16c{word-spacing:27.780000px;}
.ws15d{word-spacing:28.560000px;}
.ws144{word-spacing:29.040000px;}
.ws110{word-spacing:30.180000px;}
.ws148{word-spacing:30.480000px;}
.ws129{word-spacing:31.260000px;}
.ws138{word-spacing:32.340000px;}
.ws179{word-spacing:33.060000px;}
.ws14a{word-spacing:39.300000px;}
.ws130{word-spacing:46.200000px;}
.wsc0{word-spacing:209.586720px;}
.wsba{word-spacing:267.128400px;}
.wsc8{word-spacing:418.803000px;}
.wsb8{word-spacing:432.591600px;}
.wsbc{word-spacing:439.383000px;}
.wsc4{word-spacing:455.435400px;}
.wsc3{word-spacing:482.847960px;}
.wsc7{word-spacing:498.818040px;}
.wsb9{word-spacing:514.829280px;}
.wsbf{word-spacing:556.977120px;}
.wsbe{word-spacing:570.683400px;}
.wsc1{word-spacing:594.844320px;}
.wscf{word-spacing:630.048000px;}
.wsce{word-spacing:646.032000px;}
._a8{margin-left:-44.040000px;}
._a7{margin-left:-32.700000px;}
._ab{margin-left:-20.847000px;}
._16{margin-left:-17.064000px;}
._17{margin-left:-15.984000px;}
._19{margin-left:-14.952000px;}
._8{margin-left:-10.848000px;}
._3{margin-left:-8.053800px;}
._a6{margin-left:-7.003800px;}
._6{margin-left:-5.979600px;}
._4{margin-left:-3.976200px;}
._1{margin-left:-2.519400px;}
._0{margin-left:-1.458600px;}
._2{width:1.050600px;}
._b{width:2.937600px;}
._c{width:4.766400px;}
._a{width:5.967000px;}
._9{width:6.971400px;}
._10{width:8.106000px;}
._f{width:9.138000px;}
._e{width:10.446000px;}
._d{width:11.796000px;}
._11{width:13.320000px;}
._b2{width:14.395200px;}
._b3{width:15.454200px;}
._13{width:16.482000px;}
._15{width:17.754000px;}
._1a{width:19.290000px;}
._a5{width:20.880000px;}
._18{width:22.764000px;}
._af{width:23.892000px;}
._b0{width:26.190000px;}
._a4{width:27.300000px;}
._5{width:32.016000px;}
._39{width:37.208640px;}
._aa{width:39.840000px;}
._a1{width:49.943400px;}
._57{width:56.841960px;}
._4e{width:59.896440px;}
._4d{width:61.213560px;}
._53{width:66.729000px;}
._22{width:68.737200px;}
._2e{width:70.492560px;}
._30{width:71.494920px;}
._41{width:73.583676px;}
._6f{width:75.888636px;}
._97{width:79.271400px;}
._3e{width:80.888040px;}
._75{width:83.410884px;}
._1b{width:85.160040px;}
._7{width:87.474600px;}
._46{width:91.622160px;}
._a3{width:92.784000px;}
._7a{width:95.536476px;}
._38{width:98.751480px;}
._99{width:100.194600px;}
._6d{width:103.320240px;}
._26{width:107.333520px;}
._63{width:108.507360px;}
._3a{width:112.202160px;}
._2c{width:117.067680px;}
._74{width:122.048040px;}
._50{width:126.164040px;}
._43{width:128.172240px;}
._9d{width:129.264000px;}
._78{width:130.518360px;}
._9e{width:131.783400px;}
._5b{width:133.037760px;}
._a0{width:136.648200px;}
._37{width:140.108640px;}
._34{width:141.960840px;}
._9c{width:143.424000px;}
._9f{width:146.986800px;}
._4c{width:151.139520px;}
._96{width:153.264000px;}
._4b{width:156.179040px;}
._5d{width:158.177880px;}
._59{width:160.688640px;}
._40{width:163.208040px;}
._47{width:170.690520px;}
._64{width:176.543880px;}
._67{width:181.268640px;}
._54{width:186.332280px;}
._56{width:196.622280px;}
._69{width:201.848640px;}
._7f{width:205.440000px;}
._7e{width:212.719404px;}
._7d{width:219.021000px;}
._5a{width:220.132320px;}
._61{width:224.445480px;}
._6e{width:226.865280px;}
._58{width:232.718640px;}
._1d{width:239.823000px;}
._29{width:250.746720px;}
._3d{width:253.051680px;}
._62{width:255.630120px;}
._72{width:260.485320px;}
._91{width:269.808000px;}
._32{width:271.326720px;}
._44{width:273.590520px;}
._1e{width:277.994640px;}
._2b{width:282.810360px;}
._2f{width:285.033000px;}
._5f{width:289.901280px;}
._a2{width:291.408000px;}
._24{width:294.211680px;}
._51{width:298.369800px;}
._6b{width:304.625160px;}
._3c{width:310.058280px;}
._20{width:313.515720px;}
._35{width:318.669360px;}
._55{width:327.222000px;}
._21{width:332.161200px;}
._6c{width:335.215680px;}
._33{width:338.829120px;}
._93{width:340.368000px;}
._23{width:342.163080px;}
._89{width:346.800000px;}
._45{width:351.341760px;}
._36{width:352.841520px;}
._94{width:355.297320px;}
._31{width:357.309960px;}
._68{width:362.784240px;}
._66{width:366.818400px;}
._79{width:371.921760px;}
._5c{width:373.321200px;}
._60{width:375.840600px;}
._2a{width:377.889960px;}
._3f{width:380.409360px;}
._65{width:385.628040px;}
._8c{width:392.304000px;}
._49{width:393.901200px;}
._25{width:398.469960px;}
._71{width:409.542000px;}
._52{width:414.481200px;}
._70{width:417.691680px;}
._4f{width:419.049960px;}
._3b{width:421.569360px;}
._6a{width:429.093000px;}
._48{width:432.509280px;}
._9b{width:436.583400px;}
._1c{width:439.752960px;}
._92{width:444.096000px;}
._8b{width:445.680000px;}
._9a{width:458.112000px;}
._77{width:473.669280px;}
._98{width:476.736000px;}
._5e{width:480.378360px;}
._95{width:490.080000px;}
._27{width:491.779680px;}
._81{width:498.912000px;}
._1f{width:502.234320px;}
._28{width:506.803080px;}
._7c{width:507.832080px;}
._76{width:510.351480px;}
._7b{width:524.790000px;}
._4a{width:539.978040px;}
._8a{width:585.479400px;}
._2d{width:605.134320px;}
._86{width:619.150800px;}
._73{width:625.714320px;}
._88{width:640.476120px;}
._8f{width:669.600000px;}
._8d{width:675.312000px;}
._8e{width:704.688000px;}
._85{width:762.912000px;}
._83{width:776.592000px;}
._87{width:787.296000px;}
._90{width:798.000000px;}
._84{width:812.043720px;}
._82{width:835.296000px;}
._80{width:1124.592000px;}
._b4{width:1901.755200px;}
._ae{width:1905.454200px;}
._ad{width:1906.615200px;}
._12{width:1908.289200px;}
._14{width:1910.368200px;}
._a9{width:1911.475800px;}
._ac{width:1913.877600px;}
._b1{width:1916.145600px;}
._42{width:1917.441000px;}
.fc1{color:rgb(32,59,28);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:27.984000px;}
.fsb{font-size:31.482000px;}
.fs8{font-size:37.800000px;}
.fs9{font-size:41.160000px;}
.fs3{font-size:41.976000px;}
.fs7{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:71.007900px;}
.y50{bottom:71.016900px;}
.y6a{bottom:71.291400px;}
.y70{bottom:71.300250px;}
.y172{bottom:71.349900px;}
.y181{bottom:71.417400px;}
.y1bb{bottom:71.466900px;}
.y2a{bottom:71.493000px;}
.y1f7{bottom:71.736900px;}
.ya4{bottom:75.344550px;}
.yf5{bottom:75.383640px;}
.yb4{bottom:75.402900px;}
.yfc{bottom:75.445230px;}
.y8b{bottom:75.447450px;}
.yd5{bottom:75.652200px;}
.yd3{bottom:75.662490px;}
.y77{bottom:75.699930px;}
.y71{bottom:75.730800px;}
.y87{bottom:75.734520px;}
.y13e{bottom:82.058250px;}
.y29{bottom:84.089850px;}
.y4f{bottom:89.012400px;}
.y69{bottom:89.291400px;}
.y6f{bottom:89.295750px;}
.y171{bottom:89.345400px;}
.y180{bottom:89.412900px;}
.y1ba{bottom:89.462400px;}
.y1f6{bottom:89.732400px;}
.y13d{bottom:96.458250px;}
.y4e{bottom:107.007900px;}
.y6e{bottom:107.291250px;}
.y68{bottom:107.291400px;}
.y170{bottom:107.340900px;}
.y17f{bottom:107.408400px;}
.y1b9{bottom:107.457900px;}
.y1f5{bottom:107.727900px;}
.y13c{bottom:114.602250px;}
.y27{bottom:125.291250px;}
.y67{bottom:125.291400px;}
.y16f{bottom:125.336400px;}
.y17e{bottom:125.403900px;}
.y1b8{bottom:125.453400px;}
.y1f4{bottom:125.723400px;}
.y13b{bottom:129.002250px;}
.y26{bottom:143.291250px;}
.y66{bottom:143.291400px;}
.y16e{bottom:143.331900px;}
.y17d{bottom:143.399400px;}
.y1b7{bottom:143.448900px;}
.y1f3{bottom:143.718900px;}
.y13a{bottom:147.158250px;}
.ya8{bottom:160.370820px;}
.ya5{bottom:160.381110px;}
.ya1{bottom:160.391400px;}
.yf8{bottom:160.399620px;}
.ya0{bottom:160.401690px;}
.yf7{bottom:160.409910px;}
.y9c{bottom:160.411980px;}
.yf6{bottom:160.420200px;}
.y98{bottom:160.422270px;}
.yf3{bottom:160.430490px;}
.y94{bottom:160.432560px;}
.yb5{bottom:160.439460px;}
.yf0{bottom:160.440780px;}
.y92{bottom:160.442850px;}
.yb2{bottom:160.449750px;}
.yed{bottom:160.451070px;}
.y91{bottom:160.453140px;}
.yb0{bottom:160.460040px;}
.yec{bottom:160.461360px;}
.y8f{bottom:160.463430px;}
.ybe{bottom:160.465830px;}
.yad{bottom:160.470330px;}
.y100{bottom:160.471500px;}
.yeb{bottom:160.471650px;}
.y8d{bottom:160.473720px;}
.ybb{bottom:160.476120px;}
.yaa{bottom:160.480620px;}
.yfd{bottom:160.481790px;}
.yea{bottom:160.481940px;}
.y8c{bottom:160.484010px;}
.yb8{bottom:160.486410px;}
.yda{bottom:160.657890px;}
.yd8{bottom:160.668180px;}
.yd7{bottom:160.678470px;}
.yd6{bottom:160.688760px;}
.yd1{bottom:160.709340px;}
.ycf{bottom:160.719630px;}
.ycd{bottom:160.729920px;}
.y78{bottom:160.736490px;}
.yc8{bottom:160.740210px;}
.y75{bottom:160.746780px;}
.yc5{bottom:160.750500px;}
.y74{bottom:160.757070px;}
.y7f{bottom:160.760790px;}
.yde{bottom:160.764120px;}
.y72{bottom:160.767360px;}
.y7b{bottom:160.771080px;}
.y25{bottom:161.291250px;}
.y65{bottom:161.291400px;}
.y16d{bottom:161.327400px;}
.y17c{bottom:161.394900px;}
.y1b6{bottom:161.444400px;}
.y139{bottom:161.558250px;}
.y1f2{bottom:161.714400px;}
.y24{bottom:179.291250px;}
.y64{bottom:179.291400px;}
.y16c{bottom:179.322900px;}
.y17b{bottom:179.390400px;}
.y1b5{bottom:179.439900px;}
.y1f1{bottom:179.709900px;}
.y138{bottom:179.714250px;}
.y137{bottom:194.114250px;}
.y63{bottom:197.291400px;}
.y16b{bottom:197.318400px;}
.y17a{bottom:197.385900px;}
.y1b4{bottom:197.435400px;}
.y1f0{bottom:197.705400px;}
.y136{bottom:212.258250px;}
.y62{bottom:215.291400px;}
.y16a{bottom:215.313900px;}
.y179{bottom:215.381400px;}
.y1b3{bottom:215.430900px;}
.y1ef{bottom:215.700900px;}
.y135{bottom:219.458250px;}
.y23{bottom:233.291250px;}
.y61{bottom:233.291400px;}
.y169{bottom:233.309400px;}
.y178{bottom:233.376900px;}
.y1b2{bottom:233.426400px;}
.y1ee{bottom:233.696400px;}
.y134{bottom:244.814250px;}
.y60{bottom:251.291400px;}
.y168{bottom:251.304900px;}
.y177{bottom:251.372400px;}
.y1b1{bottom:251.421900px;}
.y1ed{bottom:251.691900px;}
.y133{bottom:259.214250px;}
.y5f{bottom:269.291400px;}
.y167{bottom:269.300400px;}
.y176{bottom:269.367900px;}
.y1b0{bottom:269.417400px;}
.y1ec{bottom:269.687400px;}
.y131{bottom:277.370250px;}
.y130{bottom:284.570250px;}
.y5e{bottom:287.291400px;}
.y101{bottom:287.295900px;}
.y175{bottom:287.363400px;}
.y1af{bottom:287.412900px;}
.y1eb{bottom:287.682900px;}
.y132{bottom:291.770250px;}
.y22{bottom:302.295600px;}
.y5d{bottom:305.291400px;}
.y166{bottom:305.295900px;}
.y174{bottom:305.358900px;}
.y1ae{bottom:305.408400px;}
.y1ea{bottom:305.678400px;}
.y12f{bottom:309.926250px;}
.y5c{bottom:323.291400px;}
.y173{bottom:323.354400px;}
.y1ad{bottom:323.403900px;}
.y1e9{bottom:323.673900px;}
.y12e{bottom:324.326250px;}
.y21{bottom:327.299550px;}
.y5b{bottom:341.291400px;}
.y1ac{bottom:341.399400px;}
.y1e8{bottom:341.669400px;}
.y12d{bottom:342.470250px;}
.y99{bottom:347.504760px;}
.yae{bottom:347.552820px;}
.ya9{bottom:347.573400px;}
.ydb{bottom:347.740380px;}
.yd9{bottom:347.750670px;}
.yc1{bottom:347.839560px;}
.ydf{bottom:347.846610px;}
.ybf{bottom:347.849850px;}
.y88{bottom:347.853570px;}
.ydc{bottom:347.856900px;}
.y12c{bottom:356.870250px;}
.y5a{bottom:359.291400px;}
.y1ab{bottom:359.394900px;}
.y1e7{bottom:359.664900px;}
.y20{bottom:365.089350px;}
.y12a{bottom:375.014250px;}
.y59{bottom:377.291400px;}
.y1aa{bottom:377.390400px;}
.y1e6{bottom:377.660400px;}
.y1f{bottom:381.586350px;}
.y129{bottom:382.214250px;}
.y12b{bottom:389.414250px;}
.y6d{bottom:395.291400px;}
.y1a9{bottom:395.385900px;}
.y1e5{bottom:395.655900px;}
.y1e{bottom:398.083350px;}
.y127{bottom:407.570250px;}
.y58{bottom:413.291400px;}
.y1a8{bottom:413.381400px;}
.y1e4{bottom:413.651400px;}
.y1d{bottom:414.580350px;}
.y126{bottom:414.770250px;}
.y128{bottom:421.970250px;}
.y1c{bottom:431.077350px;}
.y6c{bottom:431.291400px;}
.y1a7{bottom:431.376900px;}
.y1e3{bottom:431.646900px;}
.y125{bottom:440.126250px;}
.y124{bottom:447.326250px;}
.y1b{bottom:447.574350px;}
.y6b{bottom:449.291400px;}
.y1a6{bottom:449.372400px;}
.y1e2{bottom:449.642400px;}
.y1a{bottom:464.071350px;}
.y57{bottom:467.291400px;}
.y1a5{bottom:467.367900px;}
.y1e1{bottom:467.637900px;}
.y123{bottom:472.682250px;}
.y19{bottom:480.568350px;}
.y160{bottom:482.285400px;}
.y56{bottom:485.291400px;}
.y1a4{bottom:485.363400px;}
.y1e0{bottom:485.633400px;}
.y122{bottom:487.082250px;}
.y18{bottom:497.065350px;}
.y55{bottom:503.291400px;}
.y1a3{bottom:503.358900px;}
.y1df{bottom:503.628900px;}
.y121{bottom:505.226250px;}
.ya6{bottom:509.037180px;}
.ye5{bottom:509.047470px;}
.ye3{bottom:509.057760px;}
.y9d{bottom:509.068050px;}
.y95{bottom:509.088630px;}
.yb6{bottom:509.095530px;}
.ye2{bottom:509.098920px;}
.yb3{bottom:509.105820px;}
.yee{bottom:509.107140px;}
.yb1{bottom:509.116110px;}
.y90{bottom:509.119500px;}
.yaf{bottom:509.126400px;}
.y8e{bottom:509.129790px;}
.ybc{bottom:509.132190px;}
.yff{bottom:509.137860px;}
.ye7{bottom:509.146980px;}
.yf9{bottom:509.148150px;}
.ye8{bottom:509.148300px;}
.yd2{bottom:509.365410px;}
.yd0{bottom:509.375700px;}
.yce{bottom:509.385990px;}
.yc9{bottom:509.396280px;}
.yc4{bottom:509.402850px;}
.yc6{bottom:509.406570px;}
.y80{bottom:509.416860px;}
.ye0{bottom:509.420190px;}
.y7c{bottom:509.427150px;}
.ydd{bottom:509.430480px;}
.y82{bottom:509.431650px;}
.y120{bottom:512.426250px;}
.y17{bottom:513.562350px;}
.y54{bottom:521.291400px;}
.y1a2{bottom:521.354400px;}
.y1de{bottom:521.624400px;}
.y16{bottom:530.059350px;}
.y11f{bottom:537.770250px;}
.y53{bottom:539.291400px;}
.y1a1{bottom:539.349900px;}
.y1dd{bottom:539.619900px;}
.y11e{bottom:544.970250px;}
.y15{bottom:555.063300px;}
.y52{bottom:557.291400px;}
.y1a0{bottom:557.345400px;}
.y1dc{bottom:557.615400px;}
.y11d{bottom:570.326250px;}
.y51{bottom:575.291400px;}
.y19f{bottom:575.340900px;}
.y1db{bottom:575.610900px;}
.y11c{bottom:577.526250px;}
.y162{bottom:590.285400px;}
.y4b{bottom:593.291400px;}
.y19e{bottom:593.336400px;}
.y1da{bottom:593.606400px;}
.y11b{bottom:602.882250px;}
.y11a{bottom:610.082250px;}
.y4a{bottom:611.291400px;}
.y19d{bottom:611.331900px;}
.y1d9{bottom:611.601900px;}
.y14{bottom:618.207450px;}
.y15f{bottom:627.285900px;}
.y15c{bottom:627.286650px;}
.y163{bottom:629.007900px;}
.y15e{bottom:629.291250px;}
.y49{bottom:629.291400px;}
.y15b{bottom:629.295900px;}
.y19c{bottom:629.327400px;}
.y1d8{bottom:629.597400px;}
.y119{bottom:635.426250px;}
.y13{bottom:636.207450px;}
.y161{bottom:644.285400px;}
.y48{bottom:647.291400px;}
.y19b{bottom:647.322900px;}
.y1d7{bottom:647.592900px;}
.y12{bottom:654.207450px;}
.y47{bottom:665.291400px;}
.y118{bottom:665.295900px;}
.y19a{bottom:665.318400px;}
.y1d6{bottom:665.588400px;}
.yef{bottom:674.930490px;}
.ye1{bottom:674.963430px;}
.yfe{bottom:674.971500px;}
.y79{bottom:675.215910px;}
.yca{bottom:675.219630px;}
.yc7{bottom:675.229920px;}
.y81{bottom:675.240210px;}
.y7d{bottom:675.250500px;}
.y83{bottom:675.255000px;}
.y46{bottom:683.291400px;}
.y199{bottom:683.313900px;}
.y1d5{bottom:683.583900px;}
.y11{bottom:693.467250px;}
.y45{bottom:701.291400px;}
.y198{bottom:701.309400px;}
.y1d4{bottom:701.579400px;}
.y44{bottom:719.291400px;}
.y197{bottom:719.304900px;}
.y1d3{bottom:719.574900px;}
.y10{bottom:737.001450px;}
.y43{bottom:737.291400px;}
.y196{bottom:737.300400px;}
.y1d2{bottom:737.570400px;}
.y117{bottom:740.750400px;}
.y42{bottom:755.291400px;}
.y195{bottom:755.295900px;}
.y1d1{bottom:755.565900px;}
.y116{bottom:758.906400px;}
.yf{bottom:764.001450px;}
.y41{bottom:773.291400px;}
.y194{bottom:773.376900px;}
.y1d0{bottom:773.561400px;}
.y115{bottom:777.050400px;}
.y40{bottom:791.291400px;}
.y193{bottom:791.372400px;}
.y1cf{bottom:791.556900px;}
.ye{bottom:792.249450px;}
.y114{bottom:795.194400px;}
.y159{bottom:801.912000px;}
.yd{bottom:807.249450px;}
.y3f{bottom:809.291400px;}
.y192{bottom:809.367900px;}
.y1ce{bottom:809.552400px;}
.y113{bottom:813.338400px;}
.y158{bottom:816.312000px;}
.y10e{bottom:822.410400px;}
.yc{bottom:826.497450px;}
.y3e{bottom:827.291400px;}
.y191{bottom:827.363400px;}
.y206{bottom:827.367900px;}
.y1cd{bottom:827.547900px;}
.y112{bottom:831.494400px;}
.y157{bottom:834.456000px;}
.ye6{bottom:836.434110px;}
.ya2{bottom:836.444400px;}
.ye4{bottom:836.454690px;}
.y9e{bottom:836.464980px;}
.y9a{bottom:836.475270px;}
.y96{bottom:836.485560px;}
.yf1{bottom:836.493780px;}
.y93{bottom:836.495850px;}
.ybd{bottom:836.529120px;}
.yab{bottom:836.533620px;}
.yb9{bottom:836.539410px;}
.yfa{bottom:836.545080px;}
.ye9{bottom:836.545230px;}
.yb7{bottom:836.549700px;}
.ycb{bottom:836.793210px;}
.yc2{bottom:836.810070px;}
.y89{bottom:836.813790px;}
.yc0{bottom:836.820360px;}
.y84{bottom:836.824080px;}
.y85{bottom:836.828580px;}
.y156{bottom:841.656000px;}
.y3d{bottom:845.291400px;}
.y190{bottom:845.358900px;}
.y205{bottom:845.363400px;}
.y1cc{bottom:845.543400px;}
.yb{bottom:845.745450px;}
.y111{bottom:849.638400px;}
.y3c{bottom:863.291400px;}
.y18f{bottom:863.354400px;}
.y204{bottom:863.358900px;}
.y1cb{bottom:863.538900px;}
.ya{bottom:864.993450px;}
.y154{bottom:867.012000px;}
.y110{bottom:867.782400px;}
.y153{bottom:874.212000px;}
.y3b{bottom:881.291400px;}
.y18e{bottom:881.349900px;}
.y203{bottom:881.354400px;}
.y155{bottom:881.412000px;}
.y1ca{bottom:881.534400px;}
.y9{bottom:884.241450px;}
.y10f{bottom:885.938400px;}
.y8{bottom:899.241450px;}
.y3a{bottom:899.291400px;}
.y18d{bottom:899.345400px;}
.y202{bottom:899.349900px;}
.y1c9{bottom:899.529900px;}
.y151{bottom:899.556000px;}
.y10d{bottom:904.082400px;}
.y152{bottom:913.956000px;}
.y150{bottom:913.968300px;}
.y39{bottom:917.291400px;}
.y18c{bottom:917.340900px;}
.y201{bottom:917.345400px;}
.y1c8{bottom:917.525400px;}
.y7{bottom:918.489450px;}
.y10c{bottom:922.226400px;}
.y14f{bottom:932.124300px;}
.y38{bottom:935.291400px;}
.y18b{bottom:935.336400px;}
.y200{bottom:935.340900px;}
.y212{bottom:935.421900px;}
.y1c7{bottom:935.520900px;}
.y10b{bottom:940.382400px;}
.y14e{bottom:946.524300px;}
.y10a{bottom:949.454400px;}
.y6{bottom:951.487950px;}
.y37{bottom:953.291400px;}
.y18a{bottom:953.331900px;}
.y1ff{bottom:953.336400px;}
.y211{bottom:953.417400px;}
.y1c6{bottom:953.516400px;}
.y14b{bottom:953.724300px;}
.y14d{bottom:960.924300px;}
.y36{bottom:971.291400px;}
.y189{bottom:971.327400px;}
.y1fe{bottom:971.331900px;}
.y210{bottom:971.412900px;}
.y1c5{bottom:971.511900px;}
.y5{bottom:973.087950px;}
.y14c{bottom:975.324300px;}
.y109{bottom:976.682400px;}
.y108{bottom:985.754400px;}
.y164{bottom:986.285400px;}
.y35{bottom:989.291400px;}
.y188{bottom:989.322900px;}
.y1fd{bottom:989.327400px;}
.y20f{bottom:989.408400px;}
.y1c4{bottom:989.507400px;}
.y14a{bottom:993.480300px;}
.ya7{bottom:998.007690px;}
.ya3{bottom:998.017980px;}
.y9f{bottom:998.038560px;}
.y9b{bottom:998.048850px;}
.yf4{bottom:998.057070px;}
.y97{bottom:998.059140px;}
.yf2{bottom:998.067360px;}
.yac{bottom:998.107200px;}
.yba{bottom:998.112990px;}
.yfb{bottom:998.118660px;}
.yd4{bottom:998.325630px;}
.ycc{bottom:998.366790px;}
.y76{bottom:998.373360px;}
.yc3{bottom:998.383650px;}
.y8a{bottom:998.387370px;}
.y73{bottom:998.393940px;}
.y7e{bottom:998.397660px;}
.y86{bottom:998.402160px;}
.y7a{bottom:998.407950px;}
.y34{bottom:1007.291400px;}
.y187{bottom:1007.318400px;}
.y1fc{bottom:1007.322900px;}
.y20e{bottom:1007.403900px;}
.y1c3{bottom:1007.502900px;}
.y149{bottom:1007.880300px;}
.y4{bottom:1012.686600px;}
.y107{bottom:1012.982400px;}
.y33{bottom:1025.291400px;}
.y186{bottom:1025.313900px;}
.y1fb{bottom:1025.318400px;}
.y20d{bottom:1025.399400px;}
.y1c2{bottom:1025.498400px;}
.y148{bottom:1026.024300px;}
.y105{bottom:1031.126400px;}
.y15d{bottom:1040.285400px;}
.y147{bottom:1040.424300px;}
.y3{bottom:1043.286600px;}
.y32{bottom:1043.291400px;}
.y185{bottom:1043.309400px;}
.y1fa{bottom:1043.313900px;}
.y20c{bottom:1043.394900px;}
.y1c1{bottom:1043.493900px;}
.y106{bottom:1049.282400px;}
.y146{bottom:1058.568300px;}
.y31{bottom:1061.291400px;}
.y184{bottom:1061.304900px;}
.y1f9{bottom:1061.309400px;}
.y20b{bottom:1061.390400px;}
.y1c0{bottom:1061.489400px;}
.y104{bottom:1067.426400px;}
.y145{bottom:1072.968300px;}
.y2{bottom:1073.886600px;}
.y165{bottom:1076.285400px;}
.y30{bottom:1079.291400px;}
.y183{bottom:1079.300400px;}
.y1f8{bottom:1079.304900px;}
.y20a{bottom:1079.385900px;}
.y1bf{bottom:1079.484900px;}
.y144{bottom:1091.112300px;}
.y2f{bottom:1097.291400px;}
.y182{bottom:1097.295900px;}
.y103{bottom:1097.300400px;}
.y209{bottom:1097.381400px;}
.y1be{bottom:1097.480400px;}
.y141{bottom:1098.312300px;}
.y143{bottom:1105.512300px;}
.y140{bottom:1112.712300px;}
.y2e{bottom:1115.291400px;}
.y102{bottom:1115.295900px;}
.y208{bottom:1115.376900px;}
.y1bd{bottom:1115.475900px;}
.y142{bottom:1119.912300px;}
.y2d{bottom:1133.291400px;}
.y207{bottom:1133.372400px;}
.y1bc{bottom:1133.471400px;}
.y13f{bottom:1138.056300px;}
.y15a{bottom:1151.291400px;}
.y4d{bottom:1193.518650px;}
.y1{bottom:1194.378000px;}
.y2c{bottom:1194.378900px;}
.y28{bottom:1194.794700px;}
.y2b{bottom:1194.795600px;}
.h20{height:28.176914px;}
.h14{height:28.598965px;}
.h22{height:32.859375px;}
.he{height:33.167285px;}
.h6{height:33.328125px;}
.h26{height:33.351562px;}
.hd{height:34.650000px;}
.h12{height:36.115488px;}
.h1e{height:36.135648px;}
.h1a{height:36.140928px;}
.h1b{height:36.141528px;}
.h9{height:37.520508px;}
.h2{height:41.580000px;}
.hc{height:41.689453px;}
.h5{height:42.117188px;}
.hf{height:45.021000px;}
.h29{height:45.587610px;}
.h2a{height:47.363836px;}
.ha{height:47.381836px;}
.h7{height:48.117188px;}
.h28{height:49.289062px;}
.hb{height:52.646484px;}
.h10{height:52.740000px;}
.h11{height:53.366834px;}
.h15{height:53.788885px;}
.h13{height:61.305408px;}
.h1d{height:61.320768px;}
.h18{height:61.331448px;}
.h21{height:61.337688px;}
.h8{height:61.530000px;}
.h27{height:62.151563px;}
.h4{height:63.175781px;}
.h24{height:70.917188px;}
.h3{height:74.715000px;}
.h23{height:78.405187px;}
.h16{height:86.495328px;}
.h1f{height:86.506488px;}
.h19{height:86.515488px;}
.h1c{height:86.521368px;}
.h17{height:86.527248px;}
.h25{height:90.951562px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:76.535400px;}
.xab{left:80.974950px;}
.xa{left:93.543300px;}
.x51{left:95.502750px;}
.x52{left:101.800230px;}
.x3{left:106.295400px;}
.x6{left:110.551200px;}
.xae{left:114.990600px;}
.xc{left:119.911500px;}
.x98{left:126.105060px;}
.x7{left:127.561050px;}
.x78{left:129.518400px;}
.x99{left:132.402540px;}
.x79{left:135.815880px;}
.xd{left:137.907000px;}
.x54{left:144.112710px;}
.x55{left:150.410190px;}
.x7b{left:153.823380px;}
.x9a{left:156.707520px;}
.x9b{left:163.005000px;}
.x7a{left:166.418340px;}
.xe{left:173.508600px;}
.x56{left:174.715170px;}
.xf{left:179.806080px;}
.x57{left:181.012650px;}
.x7d{left:197.000220px;}
.x58{left:199.020150px;}
.x11{left:203.051190px;}
.x12{left:209.348670px;}
.x7c{left:215.902950px;}
.x7e{left:222.190140px;}
.x59{left:223.325130px;}
.x10{left:225.236430px;}
.x5a{left:229.622610px;}
.x13{left:247.411380px;}
.x14{left:253.708860px;}
.xaf{left:255.318600px;}
.x53{left:257.539380px;}
.x5b{left:260.235360px;}
.x5c{left:266.532840px;}
.x82{left:270.857940px;}
.x5d{left:272.830320px;}
.x16{left:275.894100px;}
.x80{left:277.155420px;}
.x17{left:282.191580px;}
.x81{left:283.452900px;}
.x5e{left:290.848110px;}
.x9c{left:296.239920px;}
.x1a{left:298.084560px;}
.x83{left:301.460400px;}
.x18{left:304.382040px;}
.x19{left:310.679520px;}
.x84{left:319.467900px;}
.x61{left:321.450570px;}
.x1d{left:326.567280px;}
.x5f{left:327.748050px;}
.x1b{left:332.864760px;}
.x60{left:334.045530px;}
.x1c{left:339.162240px;}
.x87{left:350.070360px;}
.x62{left:352.053030px;}
.x20{left:355.045590px;}
.x86{left:356.378130px;}
.x9d{left:357.444840px;}
.x1e{left:361.344540px;}
.x85{left:362.675610px;}
.x1f{left:367.640550px;}
.x7f{left:368.973090px;}
.x63{left:370.060530px;}
.x5{left:371.767350px;}
.x88{left:375.260280px;}
.x23{left:383.528310px;}
.x9e{left:388.057590px;}
.x21{left:389.825790px;}
.x22{left:396.123270px;}
.x89{left:399.575550px;}
.x9f{left:400.652550px;}
.x8a{left:405.873030px;}
.xad{left:409.834950px;}
.x26{left:412.009710px;}
.x24{left:418.307190px;}
.x65{left:419.565720px;}
.x25{left:424.604670px;}
.x66{left:425.863200px;}
.x15{left:429.256260px;}
.xa0{left:431.289900px;}
.x8b{left:436.475490px;}
.x4{left:440.075400px;}
.xb0{left:443.814600px;}
.x27{left:446.788440px;}
.x67{left:450.168180px;}
.x28{left:453.085920px;}
.xb{left:457.085400px;}
.x8c{left:460.780470px;}
.x8d{left:467.077950px;}
.x2b{left:468.961920px;}
.x8{left:474.091050px;}
.x2d{left:475.249110px;}
.x29{left:481.567170px;}
.xa1{left:485.312400px;}
.x2a{left:487.864650px;}
.x9{left:491.101050px;}
.x2c{left:494.151840px;}
.x8e{left:497.680410px;}
.x68{left:499.697610px;}
.x64{left:502.379640px;}
.x30{left:510.052140px;}
.x2e{left:516.348420px;}
.x6b{left:517.715400px;}
.x2f{left:522.647100px;}
.x69{left:524.012880px;}
.x6a{left:530.310360px;}
.x8f{left:533.695410px;}
.x33{left:538.524570px;}
.xa2{left:546.527610px;}
.x34{left:551.119530px;}
.x6c{left:554.615340px;}
.x37{left:557.406720px;}
.xa3{left:559.122570px;}
.x6d{left:560.912820px;}
.x31{left:563.724780px;}
.x32{left:570.022260px;}
.x35{left:576.309450px;}
.x91{left:582.315660px;}
.xa4{left:583.437840px;}
.x6e{left:585.217800px;}
.x36{left:588.904410px;}
.x6f{left:591.515280px;}
.x90{left:594.910620px;}
.xac{left:598.330950px;}
.x3c{left:604.808550px;}
.x92{left:607.527300px;}
.x3b{left:611.116320px;}
.x71{left:615.820260px;}
.x39{left:617.413800px;}
.x72{left:622.117740px;}
.x3a{left:623.711280px;}
.x94{left:625.534800px;}
.x3d{left:629.998470px;}
.xb1{left:632.322600px;}
.x95{left:638.129760px;}
.x73{left:640.143990px;}
.x93{left:644.437530px;}
.x96{left:650.724720px;}
.x3e{left:652.183710px;}
.xa5{left:656.352780px;}
.x3f{left:658.481190px;}
.x70{left:661.734240px;}
.x97{left:663.319680px;}
.x74{left:665.333910px;}
.xa6{left:668.952780px;}
.x43{left:674.378610px;}
.x42{left:680.676090px;}
.x40{left:686.973570px;}
.x75{left:689.649180px;}
.x41{left:693.271050px;}
.x76{left:695.946660px;}
.x44{left:699.568530px;}
.x38{left:707.513040px;}
.xa7{left:711.275550px;}
.x77{left:713.954160px;}
.x47{left:715.456290px;}
.x45{left:721.753770px;}
.xa8{left:723.867480px;}
.x46{left:728.051250px;}
.xa9{left:730.164960px;}
.x4b{left:743.930970px;}
.xaa{left:748.172460px;}
.x4a{left:750.238740px;}
.x48{left:756.536220px;}
.x1{left:759.534150px;}
.x49{left:762.833700px;}
.x4c{left:769.120890px;}
.x4f{left:784.998360px;}
.x4d{left:797.603610px;}
.x4e{left:803.901090px;}
.x50{left:810.188280px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.058667pt;}
.v2{vertical-align:5.333333pt;}
.v9{vertical-align:14.208000pt;}
.va{vertical-align:15.968000pt;}
.v1{vertical-align:21.312000pt;}
.v4{vertical-align:22.391040pt;}
.v7{vertical-align:25.600000pt;}
.v6{vertical-align:32.256000pt;}
.v5{vertical-align:44.782080pt;}
.v8{vertical-align:51.200000pt;}
.ls56{letter-spacing:-3.946667pt;}
.ls4f{letter-spacing:-1.973333pt;}
.ls3f{letter-spacing:-1.344000pt;}
.ls42{letter-spacing:-1.248000pt;}
.ls37{letter-spacing:-1.056000pt;}
.ls33{letter-spacing:-0.816000pt;}
.ls17{letter-spacing:-0.672000pt;}
.ls54{letter-spacing:-0.640000pt;}
.ls4a{letter-spacing:-0.586667pt;}
.ls50{letter-spacing:-0.426667pt;}
.ls8{letter-spacing:-0.384000pt;}
.lsb{letter-spacing:-0.336000pt;}
.ls55{letter-spacing:-0.320000pt;}
.ls36{letter-spacing:-0.288000pt;}
.ls58{letter-spacing:-0.240000pt;}
.ls4{letter-spacing:-0.224000pt;}
.ls5{letter-spacing:-0.144000pt;}
.ls3b{letter-spacing:-0.106667pt;}
.ls34{letter-spacing:-0.053333pt;}
.lsa{letter-spacing:-0.048000pt;}
.ls3{letter-spacing:-0.042667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000533pt;}
.ls7{letter-spacing:0.053333pt;}
.ls30{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.160000pt;}
.ls57{letter-spacing:0.170667pt;}
.ls3a{letter-spacing:0.213333pt;}
.ls6{letter-spacing:0.266667pt;}
.ls47{letter-spacing:0.304000pt;}
.ls35{letter-spacing:0.320000pt;}
.ls4d{letter-spacing:0.373333pt;}
.ls4c{letter-spacing:0.533333pt;}
.ls3e{letter-spacing:1.040000pt;}
.ls4b{letter-spacing:1.706667pt;}
.ls45{letter-spacing:3.456000pt;}
.ls46{letter-spacing:3.466667pt;}
.ls40{letter-spacing:3.840000pt;}
.ls41{letter-spacing:3.893333pt;}
.ls43{letter-spacing:3.898667pt;}
.ls38{letter-spacing:4.320000pt;}
.ls49{letter-spacing:5.280000pt;}
.ls3c{letter-spacing:7.306667pt;}
.ls51{letter-spacing:7.349333pt;}
.ls3d{letter-spacing:7.360000pt;}
.ls44{letter-spacing:8.853333pt;}
.ls32{letter-spacing:10.826667pt;}
.ls31{letter-spacing:11.093333pt;}
.ls39{letter-spacing:11.146667pt;}
.ls4e{letter-spacing:11.520000pt;}
.ls53{letter-spacing:12.906667pt;}
.ls52{letter-spacing:17.973333pt;}
.ls48{letter-spacing:35.402667pt;}
.lsf{letter-spacing:66.584075pt;}
.ls1{letter-spacing:77.781333pt;}
.ls10{letter-spacing:95.048501pt;}
.ls19{letter-spacing:103.280501pt;}
.ls1f{letter-spacing:105.735467pt;}
.lse{letter-spacing:158.712960pt;}
.ls29{letter-spacing:183.226027pt;}
.ls14{letter-spacing:184.360213pt;}
.ls12{letter-spacing:187.360320pt;}
.ls2d{letter-spacing:201.555947pt;}
.ls13{letter-spacing:211.031893pt;}
.ls2a{letter-spacing:219.117547pt;}
.ls20{letter-spacing:221.235915pt;}
.lsc{letter-spacing:223.837227pt;}
.ls15{letter-spacing:234.081493pt;}
.ls2b{letter-spacing:235.394955pt;}
.ls27{letter-spacing:238.804832pt;}
.ls16{letter-spacing:248.313707pt;}
.ls26{letter-spacing:259.110432pt;}
.ls24{letter-spacing:268.619307pt;}
.ls28{letter-spacing:272.680427pt;}
.ls22{letter-spacing:288.961493pt;}
.ls2c{letter-spacing:299.096000pt;}
.ls25{letter-spacing:301.807072pt;}
.ls1b{letter-spacing:305.495008pt;}
.ls21{letter-spacing:307.181653pt;}
.ls2e{letter-spacing:309.267093pt;}
.ls11{letter-spacing:311.242773pt;}
.ls23{letter-spacing:323.499307pt;}
.ls1a{letter-spacing:336.707093pt;}
.ls1e{letter-spacing:339.085227pt;}
.ls1d{letter-spacing:340.768213pt;}
.ls18{letter-spacing:365.134933pt;}
.ls1c{letter-spacing:379.367147pt;}
.ls2f{letter-spacing:395.648213pt;}
.lsd{letter-spacing:537.897173pt;}
.ws5{word-spacing:-18.442667pt;}
.ws4{word-spacing:-18.218667pt;}
.wsd3{word-spacing:-16.000000pt;}
.ws177{word-spacing:-13.706667pt;}
.ws108{word-spacing:-13.653333pt;}
.ws19d{word-spacing:-13.600000pt;}
.ws121{word-spacing:-13.546667pt;}
.ws1a5{word-spacing:-13.386667pt;}
.ws83{word-spacing:-13.333333pt;}
.ws14d{word-spacing:-13.226667pt;}
.ws17{word-spacing:-12.816000pt;}
.ws11a{word-spacing:-12.768000pt;}
.ws158{word-spacing:-12.672000pt;}
.ws1f4{word-spacing:-12.576000pt;}
.ws10a{word-spacing:-12.528000pt;}
.ws98{word-spacing:-12.480000pt;}
.ws60{word-spacing:-12.432000pt;}
.wsbd{word-spacing:-12.144000pt;}
.wse0{word-spacing:-12.000000pt;}
.ws10c{word-spacing:-11.760000pt;}
.ws147{word-spacing:-11.568000pt;}
.ws136{word-spacing:-11.472000pt;}
.ws1d9{word-spacing:-10.837333pt;}
.ws1{word-spacing:-10.666667pt;}
.ws3{word-spacing:-10.624000pt;}
.ws2{word-spacing:-10.496000pt;}
.ws199{word-spacing:-9.386667pt;}
.ws0{word-spacing:-9.328000pt;}
.wsbb{word-spacing:-9.146667pt;}
.ws1f5{word-spacing:-6.996000pt;}
.ws1b2{word-spacing:-6.218667pt;}
.ws14e{word-spacing:-5.973333pt;}
.ws14f{word-spacing:-4.106667pt;}
.ws172{word-spacing:-3.946667pt;}
.ws176{word-spacing:-3.840000pt;}
.ws16e{word-spacing:-3.786667pt;}
.wsf7{word-spacing:-3.626667pt;}
.ws16d{word-spacing:-3.573333pt;}
.wsb7{word-spacing:-3.200000pt;}
.ws154{word-spacing:-3.093333pt;}
.ws44{word-spacing:-3.040000pt;}
.ws170{word-spacing:-2.986667pt;}
.ws175{word-spacing:-2.933333pt;}
.ws135{word-spacing:-2.880000pt;}
.wsf2{word-spacing:-2.826667pt;}
.ws156{word-spacing:-2.773333pt;}
.wsc9{word-spacing:-2.666667pt;}
.ws160{word-spacing:-2.613333pt;}
.ws192{word-spacing:-2.560000pt;}
.ws20a{word-spacing:-2.544000pt;}
.ws42{word-spacing:-2.506667pt;}
.wsf0{word-spacing:-2.453333pt;}
.ws85{word-spacing:-2.400000pt;}
.ws66{word-spacing:-2.346667pt;}
.ws29{word-spacing:-2.293333pt;}
.ws211{word-spacing:-2.256000pt;}
.ws1a1{word-spacing:-2.240000pt;}
.ws2c{word-spacing:-2.186667pt;}
.ws25{word-spacing:-2.133333pt;}
.wsaa{word-spacing:-2.080000pt;}
.ws114{word-spacing:-2.026667pt;}
.wsc{word-spacing:-2.016000pt;}
.wsc2{word-spacing:-2.012267pt;}
.ws1c2{word-spacing:-2.005333pt;}
.ws181{word-spacing:-1.973333pt;}
.ws81{word-spacing:-1.920000pt;}
.ws20b{word-spacing:-1.872000pt;}
.ws57{word-spacing:-1.866667pt;}
.ws1a6{word-spacing:-1.834667pt;}
.ws13e{word-spacing:-1.813333pt;}
.ws5f{word-spacing:-1.776000pt;}
.ws166{word-spacing:-1.760000pt;}
.ws8a{word-spacing:-1.706667pt;}
.wsf{word-spacing:-1.680000pt;}
.wsd5{word-spacing:-1.653333pt;}
.ws4a{word-spacing:-1.600000pt;}
.ws20f{word-spacing:-1.584000pt;}
.ws1c{word-spacing:-1.546667pt;}
.ws4c{word-spacing:-1.493333pt;}
.ws16{word-spacing:-1.478400pt;}
.ws126{word-spacing:-1.440000pt;}
.ws219{word-spacing:-1.392000pt;}
.ws13d{word-spacing:-1.386667pt;}
.ws119{word-spacing:-1.333333pt;}
.ws1ad{word-spacing:-1.322667pt;}
.ws6e{word-spacing:-1.280000pt;}
.ws11e{word-spacing:-1.226667pt;}
.ws1b0{word-spacing:-1.194667pt;}
.wsfc{word-spacing:-1.173333pt;}
.wsd{word-spacing:-1.152000pt;}
.ws17a{word-spacing:-1.120000pt;}
.ws1fe{word-spacing:-1.109333pt;}
.ws35{word-spacing:-1.066667pt;}
.ws10{word-spacing:-1.056000pt;}
.ws7f{word-spacing:-1.013333pt;}
.ws8{word-spacing:-0.981333pt;}
.wsd4{word-spacing:-0.970667pt;}
.ws73{word-spacing:-0.960000pt;}
.wscd{word-spacing:-0.912000pt;}
.ws8f{word-spacing:-0.906667pt;}
.ws1ef{word-spacing:-0.896000pt;}
.ws49{word-spacing:-0.853333pt;}
.ws1df{word-spacing:-0.810667pt;}
.ws91{word-spacing:-0.800000pt;}
.wsd1{word-spacing:-0.768000pt;}
.wsa4{word-spacing:-0.746667pt;}
.ws1c5{word-spacing:-0.725333pt;}
.ws78{word-spacing:-0.693333pt;}
.wsc5{word-spacing:-0.658560pt;}
.ws69{word-spacing:-0.640000pt;}
.ws3a{word-spacing:-0.624000pt;}
.ws1a{word-spacing:-0.586667pt;}
.wse{word-spacing:-0.576000pt;}
.ws65{word-spacing:-0.533333pt;}
.ws1db{word-spacing:-0.512000pt;}
.wsdf{word-spacing:-0.480000pt;}
.ws1e0{word-spacing:-0.469333pt;}
.ws8d{word-spacing:-0.426667pt;}
.ws14c{word-spacing:-0.384000pt;}
.ws77{word-spacing:-0.373333pt;}
.wsff{word-spacing:-0.320000pt;}
.ws1e7{word-spacing:-0.298667pt;}
.ws32{word-spacing:-0.266667pt;}
.ws61{word-spacing:-0.213333pt;}
.ws205{word-spacing:-0.192000pt;}
.ws1dc{word-spacing:-0.170667pt;}
.ws92{word-spacing:-0.160000pt;}
.ws1bb{word-spacing:-0.128000pt;}
.ws7c{word-spacing:-0.106667pt;}
.ws1b7{word-spacing:-0.085333pt;}
.wsc6{word-spacing:-0.073173pt;}
.ws24{word-spacing:-0.053333pt;}
.ws6{word-spacing:0.000000pt;}
.ws9{word-spacing:0.042667pt;}
.ws96{word-spacing:0.048000pt;}
.wsec{word-spacing:0.053333pt;}
.ws122{word-spacing:0.106667pt;}
.ws1b8{word-spacing:0.128000pt;}
.wsa{word-spacing:0.144000pt;}
.ws102{word-spacing:0.160000pt;}
.ws40{word-spacing:0.213333pt;}
.ws3f{word-spacing:0.266667pt;}
.wsdc{word-spacing:0.320000pt;}
.ws64{word-spacing:0.373333pt;}
.ws1dd{word-spacing:0.384000pt;}
.ws22{word-spacing:0.426667pt;}
.ws20d{word-spacing:0.432000pt;}
.wscc{word-spacing:0.480000pt;}
.ws1e4{word-spacing:0.512000pt;}
.ws115{word-spacing:0.533333pt;}
.ws1f3{word-spacing:0.554667pt;}
.ws131{word-spacing:0.586667pt;}
.ws12f{word-spacing:0.640000pt;}
.ws1c9{word-spacing:0.682667pt;}
.ws12{word-spacing:0.693333pt;}
.ws45{word-spacing:0.746667pt;}
.ws207{word-spacing:0.768000pt;}
.ws168{word-spacing:0.800000pt;}
.ws30{word-spacing:0.853333pt;}
.ws3c{word-spacing:0.906667pt;}
.ws5e{word-spacing:0.960000pt;}
.ws4f{word-spacing:1.008000pt;}
.ws140{word-spacing:1.013333pt;}
.ws1c1{word-spacing:1.024000pt;}
.ws10b{word-spacing:1.056000pt;}
.wsa0{word-spacing:1.066667pt;}
.ws1b{word-spacing:1.120000pt;}
.ws105{word-spacing:1.173333pt;}
.ws1d0{word-spacing:1.194667pt;}
.ws206{word-spacing:1.200000pt;}
.ws62{word-spacing:1.226667pt;}
.ws8e{word-spacing:1.280000pt;}
.ws1ea{word-spacing:1.322667pt;}
.wsee{word-spacing:1.333333pt;}
.wsd0{word-spacing:1.344000pt;}
.ws1f9{word-spacing:1.365333pt;}
.wsf5{word-spacing:1.386667pt;}
.ws1bc{word-spacing:1.408000pt;}
.ws1f{word-spacing:1.440000pt;}
.ws99{word-spacing:1.493333pt;}
.ws1c4{word-spacing:1.536000pt;}
.ws195{word-spacing:1.546667pt;}
.ws1e2{word-spacing:1.578667pt;}
.wsb3{word-spacing:1.600000pt;}
.ws1c0{word-spacing:1.621333pt;}
.ws218{word-spacing:1.632000pt;}
.ws67{word-spacing:1.653333pt;}
.ws9a{word-spacing:1.706667pt;}
.ws125{word-spacing:1.760000pt;}
.ws1f2{word-spacing:1.792000pt;}
.wsed{word-spacing:1.813333pt;}
.ws1e1{word-spacing:1.834667pt;}
.ws9c{word-spacing:1.866667pt;}
.ws97{word-spacing:1.872000pt;}
.ws1da{word-spacing:1.877333pt;}
.ws68{word-spacing:1.920000pt;}
.ws72{word-spacing:1.973333pt;}
.ws1bf{word-spacing:2.005333pt;}
.ws213{word-spacing:2.016000pt;}
.ws56{word-spacing:2.026667pt;}
.ws2f{word-spacing:2.080000pt;}
.ws1a8{word-spacing:2.090667pt;}
.ws203{word-spacing:2.112000pt;}
.ws4b{word-spacing:2.133333pt;}
.ws208{word-spacing:2.160000pt;}
.ws2d{word-spacing:2.186667pt;}
.ws12e{word-spacing:2.240000pt;}
.ws104{word-spacing:2.293333pt;}
.ws70{word-spacing:2.346667pt;}
.ws95{word-spacing:2.352000pt;}
.ws46{word-spacing:2.400000pt;}
.ws1ac{word-spacing:2.432000pt;}
.ws210{word-spacing:2.448000pt;}
.ws2b{word-spacing:2.453333pt;}
.ws1ca{word-spacing:2.474667pt;}
.ws9f{word-spacing:2.506667pt;}
.ws1e8{word-spacing:2.517333pt;}
.ws2a{word-spacing:2.560000pt;}
.ws36{word-spacing:2.613333pt;}
.ws1b6{word-spacing:2.645333pt;}
.ws9b{word-spacing:2.666667pt;}
.ws1af{word-spacing:2.688000pt;}
.wsa5{word-spacing:2.720000pt;}
.ws7b{word-spacing:2.773333pt;}
.ws1ab{word-spacing:2.816000pt;}
.wsac{word-spacing:2.826667pt;}
.ws5c{word-spacing:2.880000pt;}
.ws3b{word-spacing:2.933333pt;}
.ws1f6{word-spacing:2.944000pt;}
.ws209{word-spacing:2.976000pt;}
.wsef{word-spacing:2.986667pt;}
.ws200{word-spacing:3.024000pt;}
.ws9e{word-spacing:3.040000pt;}
.ws55{word-spacing:3.093333pt;}
.ws84{word-spacing:3.146667pt;}
.wsdd{word-spacing:3.200000pt;}
.ws1fd{word-spacing:3.242667pt;}
.ws82{word-spacing:3.253333pt;}
.ws215{word-spacing:3.264000pt;}
.ws6b{word-spacing:3.306667pt;}
.ws1b5{word-spacing:3.328000pt;}
.ws106{word-spacing:3.413333pt;}
.ws1e3{word-spacing:3.456000pt;}
.ws15b{word-spacing:3.466667pt;}
.ws1f1{word-spacing:3.498667pt;}
.wsb{word-spacing:3.504000pt;}
.ws14{word-spacing:3.520000pt;}
.ws1fc{word-spacing:3.541333pt;}
.ws21{word-spacing:3.573333pt;}
.ws1cd{word-spacing:3.584000pt;}
.ws4e{word-spacing:3.600000pt;}
.ws76{word-spacing:3.626667pt;}
.ws41{word-spacing:3.680000pt;}
.ws90{word-spacing:3.733333pt;}
.wsda{word-spacing:3.786667pt;}
.ws19b{word-spacing:3.840000pt;}
.ws1b3{word-spacing:3.882667pt;}
.wsf8{word-spacing:3.888000pt;}
.ws15{word-spacing:3.893333pt;}
.ws6d{word-spacing:3.946667pt;}
.ws1d1{word-spacing:3.968000pt;}
.ws28{word-spacing:4.000000pt;}
.ws20e{word-spacing:4.032000pt;}
.ws3d{word-spacing:4.053333pt;}
.ws89{word-spacing:4.106667pt;}
.ws137{word-spacing:4.160000pt;}
.ws1cc{word-spacing:4.181333pt;}
.ws26{word-spacing:4.213333pt;}
.ws159{word-spacing:4.266667pt;}
.ws1ff{word-spacing:4.309333pt;}
.ws11f{word-spacing:4.320000pt;}
.ws1ed{word-spacing:4.352000pt;}
.wsd2{word-spacing:4.368000pt;}
.ws18{word-spacing:4.373333pt;}
.ws174{word-spacing:4.426667pt;}
.ws212{word-spacing:4.464000pt;}
.ws165{word-spacing:4.480000pt;}
.wscb{word-spacing:4.533333pt;}
.ws4d{word-spacing:4.586667pt;}
.ws1fa{word-spacing:4.608000pt;}
.wsae{word-spacing:4.640000pt;}
.ws1b9{word-spacing:4.650667pt;}
.wse8{word-spacing:4.693333pt;}
.ws204{word-spacing:4.704000pt;}
.ws1c8{word-spacing:4.736000pt;}
.ws112{word-spacing:4.746667pt;}
.ws54{word-spacing:4.800000pt;}
.ws109{word-spacing:4.853333pt;}
.ws20c{word-spacing:4.896000pt;}
.ws116{word-spacing:4.906667pt;}
.ws162{word-spacing:4.960000pt;}
.ws1d3{word-spacing:4.992000pt;}
.ws1e{word-spacing:5.013333pt;}
.ws7{word-spacing:5.034667pt;}
.wsaf{word-spacing:5.066667pt;}
.ws2e{word-spacing:5.120000pt;}
.ws79{word-spacing:5.173333pt;}
.ws201{word-spacing:5.184000pt;}
.wsb4{word-spacing:5.226667pt;}
.ws38{word-spacing:5.280000pt;}
.ws33{word-spacing:5.333333pt;}
.ws111{word-spacing:5.386667pt;}
.ws5b{word-spacing:5.440000pt;}
.ws217{word-spacing:5.472000pt;}
.ws13{word-spacing:5.493333pt;}
.ws153{word-spacing:5.546667pt;}
.ws1d4{word-spacing:5.589333pt;}
.ws10e{word-spacing:5.600000pt;}
.ws1ce{word-spacing:5.632000pt;}
.ws80{word-spacing:5.653333pt;}
.ws1de{word-spacing:5.674667pt;}
.wse7{word-spacing:5.706667pt;}
.ws1ba{word-spacing:5.717333pt;}
.ws1a4{word-spacing:5.760000pt;}
.wsf6{word-spacing:5.813333pt;}
.ws1eb{word-spacing:5.845333pt;}
.ws23{word-spacing:5.866667pt;}
.ws1ae{word-spacing:5.888000pt;}
.wsb6{word-spacing:5.920000pt;}
.ws1f8{word-spacing:5.930667pt;}
.ws1a2{word-spacing:5.973333pt;}
.ws1f7{word-spacing:6.016000pt;}
.ws5a{word-spacing:6.026667pt;}
.ws1d6{word-spacing:6.058667pt;}
.ws58{word-spacing:6.080000pt;}
.ws1a9{word-spacing:6.101333pt;}
.ws161{word-spacing:6.133333pt;}
.ws71{word-spacing:6.186667pt;}
.ws51{word-spacing:6.240000pt;}
.ws27{word-spacing:6.293333pt;}
.ws37{word-spacing:6.346667pt;}
.ws103{word-spacing:6.400000pt;}
.ws17c{word-spacing:6.453333pt;}
.wsa9{word-spacing:6.506667pt;}
.ws1d5{word-spacing:6.528000pt;}
.wse2{word-spacing:6.560000pt;}
.ws6a{word-spacing:6.613333pt;}
.ws48{word-spacing:6.666667pt;}
.ws101{word-spacing:6.720000pt;}
.ws163{word-spacing:6.773333pt;}
.ws10d{word-spacing:6.826667pt;}
.ws74{word-spacing:6.880000pt;}
.ws15c{word-spacing:6.933333pt;}
.ws1d7{word-spacing:6.954667pt;}
.wsde{word-spacing:6.986667pt;}
.wsd9{word-spacing:7.040000pt;}
.wsf1{word-spacing:7.093333pt;}
.ws1cf{word-spacing:7.125333pt;}
.wsd6{word-spacing:7.146667pt;}
.ws75{word-spacing:7.200000pt;}
.ws151{word-spacing:7.253333pt;}
.ws1ee{word-spacing:7.296000pt;}
.wsca{word-spacing:7.306667pt;}
.ws1e9{word-spacing:7.338667pt;}
.ws47{word-spacing:7.360000pt;}
.ws145{word-spacing:7.413333pt;}
.ws1a7{word-spacing:7.424000pt;}
.wsf3{word-spacing:7.466667pt;}
.wsd7{word-spacing:7.520000pt;}
.ws34{word-spacing:7.573333pt;}
.ws11c{word-spacing:7.626667pt;}
.ws8b{word-spacing:7.680000pt;}
.ws1aa{word-spacing:7.722667pt;}
.ws7e{word-spacing:7.733333pt;}
.ws9d{word-spacing:7.786667pt;}
.ws50{word-spacing:7.840000pt;}
.ws1be{word-spacing:7.850667pt;}
.wsb5{word-spacing:7.893333pt;}
.ws186{word-spacing:7.946667pt;}
.ws214{word-spacing:7.968000pt;}
.ws3e{word-spacing:8.000000pt;}
.ws173{word-spacing:8.053333pt;}
.ws1b1{word-spacing:8.064000pt;}
.wsfe{word-spacing:8.106667pt;}
.ws1b4{word-spacing:8.149333pt;}
.wse5{word-spacing:8.160000pt;}
.ws133{word-spacing:8.213333pt;}
.ws12b{word-spacing:8.266667pt;}
.ws1c3{word-spacing:8.277333pt;}
.ws31{word-spacing:8.320000pt;}
.ws216{word-spacing:8.400000pt;}
.ws12a{word-spacing:8.426667pt;}
.wsa2{word-spacing:8.480000pt;}
.ws1a0{word-spacing:8.533333pt;}
.ws43{word-spacing:8.586667pt;}
.ws1d2{word-spacing:8.618667pt;}
.ws169{word-spacing:8.640000pt;}
.ws17e{word-spacing:8.693333pt;}
.ws14b{word-spacing:8.746667pt;}
.ws196{word-spacing:8.800000pt;}
.ws149{word-spacing:8.853333pt;}
.ws53{word-spacing:8.960000pt;}
.ws146{word-spacing:9.013333pt;}
.ws13c{word-spacing:9.066667pt;}
.wsdb{word-spacing:9.226667pt;}
.ws198{word-spacing:9.280000pt;}
.ws15a{word-spacing:9.333333pt;}
.ws167{word-spacing:9.386667pt;}
.ws1e5{word-spacing:9.429333pt;}
.wseb{word-spacing:9.440000pt;}
.wse1{word-spacing:9.493333pt;}
.ws117{word-spacing:9.546667pt;}
.wse9{word-spacing:9.600000pt;}
.ws1c7{word-spacing:9.642667pt;}
.ws18c{word-spacing:9.653333pt;}
.ws1cb{word-spacing:9.685333pt;}
.ws87{word-spacing:9.706667pt;}
.ws1d{word-spacing:9.760000pt;}
.ws63{word-spacing:9.813333pt;}
.ws8c{word-spacing:9.866667pt;}
.ws17d{word-spacing:9.920000pt;}
.ws100{word-spacing:9.973333pt;}
.ws94{word-spacing:10.026667pt;}
.wsfd{word-spacing:10.080000pt;}
.ws107{word-spacing:10.133333pt;}
.wsb0{word-spacing:10.240000pt;}
.ws155{word-spacing:10.293333pt;}
.ws13b{word-spacing:10.346667pt;}
.ws1c6{word-spacing:10.410667pt;}
.ws139{word-spacing:10.506667pt;}
.ws150{word-spacing:10.560000pt;}
.ws11d{word-spacing:10.613333pt;}
.wsa1{word-spacing:10.666667pt;}
.wse4{word-spacing:10.720000pt;}
.ws11{word-spacing:10.773333pt;}
.ws1a3{word-spacing:10.880000pt;}
.ws184{word-spacing:11.040000pt;}
.ws20{word-spacing:11.093333pt;}
.wsab{word-spacing:11.146667pt;}
.ws132{word-spacing:11.253333pt;}
.ws19e{word-spacing:11.306667pt;}
.ws1f0{word-spacing:11.349333pt;}
.ws127{word-spacing:11.360000pt;}
.wsfa{word-spacing:11.413333pt;}
.ws183{word-spacing:11.466667pt;}
.ws59{word-spacing:11.520000pt;}
.ws15e{word-spacing:11.573333pt;}
.ws17b{word-spacing:11.626667pt;}
.ws88{word-spacing:11.680000pt;}
.wsa3{word-spacing:11.733333pt;}
.ws187{word-spacing:11.786667pt;}
.wsea{word-spacing:11.893333pt;}
.wsa7{word-spacing:11.946667pt;}
.ws19{word-spacing:12.000000pt;}
.ws202{word-spacing:12.048000pt;}
.ws197{word-spacing:12.106667pt;}
.ws1e6{word-spacing:12.160000pt;}
.ws18b{word-spacing:12.213333pt;}
.ws13f{word-spacing:12.266667pt;}
.ws39{word-spacing:12.373333pt;}
.wsb1{word-spacing:12.426667pt;}
.ws7a{word-spacing:12.480000pt;}
.ws193{word-spacing:12.533333pt;}
.ws194{word-spacing:12.586667pt;}
.ws12d{word-spacing:12.640000pt;}
.wsf4{word-spacing:12.693333pt;}
.ws13a{word-spacing:12.746667pt;}
.ws1d8{word-spacing:12.757333pt;}
.ws128{word-spacing:12.800000pt;}
.ws190{word-spacing:12.853333pt;}
.ws189{word-spacing:12.906667pt;}
.ws171{word-spacing:13.066667pt;}
.ws124{word-spacing:13.120000pt;}
.wse3{word-spacing:13.173333pt;}
.ws18d{word-spacing:13.226667pt;}
.ws123{word-spacing:13.280000pt;}
.ws15f{word-spacing:13.440000pt;}
.ws5d{word-spacing:13.493333pt;}
.ws52{word-spacing:13.653333pt;}
.ws93{word-spacing:13.706667pt;}
.ws180{word-spacing:13.866667pt;}
.ws143{word-spacing:13.920000pt;}
.ws10f{word-spacing:14.133333pt;}
.ws164{word-spacing:14.293333pt;}
.ws19c{word-spacing:14.346667pt;}
.ws6c{word-spacing:14.453333pt;}
.wsb2{word-spacing:14.506667pt;}
.ws134{word-spacing:14.560000pt;}
.ws12c{word-spacing:14.720000pt;}
.wsf9{word-spacing:14.933333pt;}
.ws7d{word-spacing:14.986667pt;}
.ws185{word-spacing:15.040000pt;}
.ws19a{word-spacing:15.093333pt;}
.ws11b{word-spacing:15.146667pt;}
.ws118{word-spacing:15.200000pt;}
.ws113{word-spacing:15.253333pt;}
.wsa6{word-spacing:15.306667pt;}
.ws188{word-spacing:15.413333pt;}
.ws86{word-spacing:15.520000pt;}
.ws16a{word-spacing:15.680000pt;}
.ws142{word-spacing:15.733333pt;}
.ws1fb{word-spacing:15.744000pt;}
.ws120{word-spacing:16.106667pt;}
.ws182{word-spacing:16.160000pt;}
.ws1ec{word-spacing:16.170667pt;}
.ws18e{word-spacing:16.213333pt;}
.ws6f{word-spacing:17.600000pt;}
.wsad{word-spacing:17.706667pt;}
.ws18f{word-spacing:17.973333pt;}
.ws19f{word-spacing:18.240000pt;}
.ws1bd{word-spacing:18.346667pt;}
.wse6{word-spacing:18.560000pt;}
.ws18a{word-spacing:18.666667pt;}
.ws157{word-spacing:18.773333pt;}
.ws191{word-spacing:19.626667pt;}
.wsa8{word-spacing:20.213333pt;}
.ws16f{word-spacing:20.266667pt;}
.ws152{word-spacing:20.373333pt;}
.ws141{word-spacing:21.280000pt;}
.ws178{word-spacing:21.866667pt;}
.wsfb{word-spacing:22.133333pt;}
.ws16b{word-spacing:23.626667pt;}
.wsd8{word-spacing:24.320000pt;}
.ws17f{word-spacing:24.480000pt;}
.ws16c{word-spacing:24.693333pt;}
.ws15d{word-spacing:25.386667pt;}
.ws144{word-spacing:25.813333pt;}
.ws110{word-spacing:26.826667pt;}
.ws148{word-spacing:27.093333pt;}
.ws129{word-spacing:27.786667pt;}
.ws138{word-spacing:28.746667pt;}
.ws179{word-spacing:29.386667pt;}
.ws14a{word-spacing:34.933333pt;}
.ws130{word-spacing:41.066667pt;}
.wsc0{word-spacing:186.299307pt;}
.wsba{word-spacing:237.447467pt;}
.wsc8{word-spacing:372.269333pt;}
.wsb8{word-spacing:384.525867pt;}
.wsbc{word-spacing:390.562667pt;}
.wsc4{word-spacing:404.831467pt;}
.wsc3{word-spacing:429.198187pt;}
.wsc7{word-spacing:443.393813pt;}
.wsb9{word-spacing:457.626027pt;}
.wsbf{word-spacing:495.090773pt;}
.wsbe{word-spacing:507.274133pt;}
.wsc1{word-spacing:528.750507pt;}
.wscf{word-spacing:560.042667pt;}
.wsce{word-spacing:574.250667pt;}
._a8{margin-left:-39.146667pt;}
._a7{margin-left:-29.066667pt;}
._ab{margin-left:-18.530667pt;}
._16{margin-left:-15.168000pt;}
._17{margin-left:-14.208000pt;}
._19{margin-left:-13.290667pt;}
._8{margin-left:-9.642667pt;}
._3{margin-left:-7.158933pt;}
._a6{margin-left:-6.225600pt;}
._6{margin-left:-5.315200pt;}
._4{margin-left:-3.534400pt;}
._1{margin-left:-2.239467pt;}
._0{margin-left:-1.296533pt;}
._2{width:0.933867pt;}
._b{width:2.611200pt;}
._c{width:4.236800pt;}
._a{width:5.304000pt;}
._9{width:6.196800pt;}
._10{width:7.205333pt;}
._f{width:8.122667pt;}
._e{width:9.285333pt;}
._d{width:10.485333pt;}
._11{width:11.840000pt;}
._b2{width:12.795733pt;}
._b3{width:13.737067pt;}
._13{width:14.650667pt;}
._15{width:15.781333pt;}
._1a{width:17.146667pt;}
._a5{width:18.560000pt;}
._18{width:20.234667pt;}
._af{width:21.237333pt;}
._b0{width:23.280000pt;}
._a4{width:24.266667pt;}
._5{width:28.458667pt;}
._39{width:33.074347pt;}
._aa{width:35.413333pt;}
._a1{width:44.394133pt;}
._57{width:50.526187pt;}
._4e{width:53.241280pt;}
._4d{width:54.412053pt;}
._53{width:59.314667pt;}
._22{width:61.099733pt;}
._2e{width:62.660053pt;}
._30{width:63.551040pt;}
._41{width:65.407712pt;}
._6f{width:67.456565pt;}
._97{width:70.463467pt;}
._3e{width:71.900480pt;}
._75{width:74.143008pt;}
._1b{width:75.697813pt;}
._7{width:77.755200pt;}
._46{width:81.441920pt;}
._a3{width:82.474667pt;}
._7a{width:84.921312pt;}
._38{width:87.779093pt;}
._99{width:89.061867pt;}
._6d{width:91.840213pt;}
._26{width:95.407573pt;}
._63{width:96.450987pt;}
._3a{width:99.735253pt;}
._2c{width:104.060160pt;}
._74{width:108.487147pt;}
._50{width:112.145813pt;}
._43{width:113.930880pt;}
._9d{width:114.901333pt;}
._78{width:116.016320pt;}
._9e{width:117.140800pt;}
._5b{width:118.255787pt;}
._a0{width:121.465067pt;}
._37{width:124.541013pt;}
._34{width:126.187413pt;}
._9c{width:127.488000pt;}
._9f{width:130.654933pt;}
._4c{width:134.346240pt;}
._96{width:136.234667pt;}
._4b{width:138.825813pt;}
._5d{width:140.602560pt;}
._59{width:142.834347pt;}
._40{width:145.073813pt;}
._47{width:151.724907pt;}
._64{width:156.927893pt;}
._67{width:161.127680pt;}
._54{width:165.628693pt;}
._56{width:174.775360pt;}
._69{width:179.421013pt;}
._7f{width:182.613333pt;}
._7e{width:189.083915pt;}
._7d{width:194.685333pt;}
._5a{width:195.673173pt;}
._61{width:199.507093pt;}
._6e{width:201.658027pt;}
._58{width:206.861013pt;}
._1d{width:213.176000pt;}
._29{width:222.885973pt;}
._3d{width:224.934827pt;}
._62{width:227.226773pt;}
._72{width:231.542507pt;}
._91{width:239.829333pt;}
._32{width:241.179307pt;}
._44{width:243.191573pt;}
._1e{width:247.106347pt;}
._2b{width:251.386987pt;}
._2f{width:253.362667pt;}
._5f{width:257.690027pt;}
._a2{width:259.029333pt;}
._24{width:261.521493pt;}
._51{width:265.217600pt;}
._6b{width:270.777920pt;}
._3c{width:275.607360pt;}
._20{width:278.680640pt;}
._35{width:283.261653pt;}
._55{width:290.864000pt;}
._21{width:295.254400pt;}
._6c{width:297.969493pt;}
._33{width:301.181440pt;}
._93{width:302.549333pt;}
._23{width:304.144960pt;}
._89{width:308.266667pt;}
._45{width:312.303787pt;}
._36{width:313.636907pt;}
._94{width:315.819840pt;}
._31{width:317.608853pt;}
._68{width:322.474880pt;}
._66{width:326.060800pt;}
._79{width:330.597120pt;}
._5c{width:331.841067pt;}
._60{width:334.080533pt;}
._2a{width:335.902187pt;}
._3f{width:338.141653pt;}
._65{width:342.780480pt;}
._8c{width:348.714667pt;}
._49{width:350.134400pt;}
._25{width:354.195520pt;}
._71{width:364.037333pt;}
._52{width:368.427733pt;}
._70{width:371.281493pt;}
._4f{width:372.488853pt;}
._3b{width:374.728320pt;}
._6a{width:381.416000pt;}
._48{width:384.452693pt;}
._9b{width:388.074133pt;}
._1c{width:390.891520pt;}
._92{width:394.752000pt;}
._8b{width:396.160000pt;}
._9a{width:407.210667pt;}
._77{width:421.039360pt;}
._98{width:423.765333pt;}
._5e{width:427.002987pt;}
._95{width:435.626667pt;}
._27{width:437.137493pt;}
._81{width:443.477333pt;}
._1f{width:446.430507pt;}
._28{width:450.491627pt;}
._7c{width:451.406293pt;}
._76{width:453.645760pt;}
._7b{width:466.480000pt;}
._4a{width:479.980480pt;}
._8a{width:520.426133pt;}
._2d{width:537.897173pt;}
._86{width:550.356267pt;}
._73{width:556.190507pt;}
._88{width:569.312107pt;}
._8f{width:595.200000pt;}
._8d{width:600.277333pt;}
._8e{width:626.389333pt;}
._85{width:678.144000pt;}
._83{width:690.304000pt;}
._87{width:699.818667pt;}
._90{width:709.333333pt;}
._84{width:721.816640pt;}
._82{width:742.485333pt;}
._80{width:999.637333pt;}
._b4{width:1690.449067pt;}
._ae{width:1693.737067pt;}
._ad{width:1694.769067pt;}
._12{width:1696.257067pt;}
._14{width:1698.105067pt;}
._a9{width:1699.089600pt;}
._ac{width:1701.224533pt;}
._b1{width:1703.240533pt;}
._42{width:1704.392000pt;}
.fsa{font-size:24.874667pt;}
.fsb{font-size:27.984000pt;}
.fs8{font-size:33.600000pt;}
.fs9{font-size:36.586667pt;}
.fs3{font-size:37.312000pt;}
.fs7{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:63.118133pt;}
.y50{bottom:63.126133pt;}
.y6a{bottom:63.370133pt;}
.y70{bottom:63.378000pt;}
.y172{bottom:63.422133pt;}
.y181{bottom:63.482133pt;}
.y1bb{bottom:63.526133pt;}
.y2a{bottom:63.549333pt;}
.y1f7{bottom:63.766133pt;}
.ya4{bottom:66.972933pt;}
.yf5{bottom:67.007680pt;}
.yb4{bottom:67.024800pt;}
.yfc{bottom:67.062427pt;}
.y8b{bottom:67.064400pt;}
.yd5{bottom:67.246400pt;}
.yd3{bottom:67.255547pt;}
.y77{bottom:67.288827pt;}
.y71{bottom:67.316267pt;}
.y87{bottom:67.319573pt;}
.y13e{bottom:72.940667pt;}
.y29{bottom:74.746533pt;}
.y4f{bottom:79.122133pt;}
.y69{bottom:79.370133pt;}
.y6f{bottom:79.374000pt;}
.y171{bottom:79.418133pt;}
.y180{bottom:79.478133pt;}
.y1ba{bottom:79.522133pt;}
.y1f6{bottom:79.762133pt;}
.y13d{bottom:85.740667pt;}
.y4e{bottom:95.118133pt;}
.y6e{bottom:95.370000pt;}
.y68{bottom:95.370133pt;}
.y170{bottom:95.414133pt;}
.y17f{bottom:95.474133pt;}
.y1b9{bottom:95.518133pt;}
.y1f5{bottom:95.758133pt;}
.y13c{bottom:101.868667pt;}
.y27{bottom:111.370000pt;}
.y67{bottom:111.370133pt;}
.y16f{bottom:111.410133pt;}
.y17e{bottom:111.470133pt;}
.y1b8{bottom:111.514133pt;}
.y1f4{bottom:111.754133pt;}
.y13b{bottom:114.668667pt;}
.y26{bottom:127.370000pt;}
.y66{bottom:127.370133pt;}
.y16e{bottom:127.406133pt;}
.y17d{bottom:127.466133pt;}
.y1b7{bottom:127.510133pt;}
.y1f3{bottom:127.750133pt;}
.y13a{bottom:130.807333pt;}
.ya8{bottom:142.551840pt;}
.ya5{bottom:142.560987pt;}
.ya1{bottom:142.570133pt;}
.yf8{bottom:142.577440pt;}
.ya0{bottom:142.579280pt;}
.yf7{bottom:142.586587pt;}
.y9c{bottom:142.588427pt;}
.yf6{bottom:142.595733pt;}
.y98{bottom:142.597573pt;}
.yf3{bottom:142.604880pt;}
.y94{bottom:142.606720pt;}
.yb5{bottom:142.612853pt;}
.yf0{bottom:142.614027pt;}
.y92{bottom:142.615867pt;}
.yb2{bottom:142.622000pt;}
.yed{bottom:142.623173pt;}
.y91{bottom:142.625013pt;}
.yb0{bottom:142.631147pt;}
.yec{bottom:142.632320pt;}
.y8f{bottom:142.634160pt;}
.ybe{bottom:142.636293pt;}
.yad{bottom:142.640293pt;}
.y100{bottom:142.641333pt;}
.yeb{bottom:142.641467pt;}
.y8d{bottom:142.643307pt;}
.ybb{bottom:142.645440pt;}
.yaa{bottom:142.649440pt;}
.yfd{bottom:142.650480pt;}
.yea{bottom:142.650613pt;}
.y8c{bottom:142.652453pt;}
.yb8{bottom:142.654587pt;}
.yda{bottom:142.807013pt;}
.yd8{bottom:142.816160pt;}
.yd7{bottom:142.825307pt;}
.yd6{bottom:142.834453pt;}
.yd1{bottom:142.852747pt;}
.ycf{bottom:142.861893pt;}
.ycd{bottom:142.871040pt;}
.y78{bottom:142.876880pt;}
.yc8{bottom:142.880187pt;}
.y75{bottom:142.886027pt;}
.yc5{bottom:142.889333pt;}
.y74{bottom:142.895173pt;}
.y7f{bottom:142.898480pt;}
.yde{bottom:142.901440pt;}
.y72{bottom:142.904320pt;}
.y7b{bottom:142.907627pt;}
.y25{bottom:143.370000pt;}
.y65{bottom:143.370133pt;}
.y16d{bottom:143.402133pt;}
.y17c{bottom:143.462133pt;}
.y1b6{bottom:143.506133pt;}
.y139{bottom:143.607333pt;}
.y1f2{bottom:143.746133pt;}
.y24{bottom:159.370000pt;}
.y64{bottom:159.370133pt;}
.y16c{bottom:159.398133pt;}
.y17b{bottom:159.458133pt;}
.y1b5{bottom:159.502133pt;}
.y1f1{bottom:159.742133pt;}
.y138{bottom:159.746000pt;}
.y137{bottom:172.546000pt;}
.y63{bottom:175.370133pt;}
.y16b{bottom:175.394133pt;}
.y17a{bottom:175.454133pt;}
.y1b4{bottom:175.498133pt;}
.y1f0{bottom:175.738133pt;}
.y136{bottom:188.674000pt;}
.y62{bottom:191.370133pt;}
.y16a{bottom:191.390133pt;}
.y179{bottom:191.450133pt;}
.y1b3{bottom:191.494133pt;}
.y1ef{bottom:191.734133pt;}
.y135{bottom:195.074000pt;}
.y23{bottom:207.370000pt;}
.y61{bottom:207.370133pt;}
.y169{bottom:207.386133pt;}
.y178{bottom:207.446133pt;}
.y1b2{bottom:207.490133pt;}
.y1ee{bottom:207.730133pt;}
.y134{bottom:217.612667pt;}
.y60{bottom:223.370133pt;}
.y168{bottom:223.382133pt;}
.y177{bottom:223.442133pt;}
.y1b1{bottom:223.486133pt;}
.y1ed{bottom:223.726133pt;}
.y133{bottom:230.412667pt;}
.y5f{bottom:239.370133pt;}
.y167{bottom:239.378133pt;}
.y176{bottom:239.438133pt;}
.y1b0{bottom:239.482133pt;}
.y1ec{bottom:239.722133pt;}
.y131{bottom:246.551333pt;}
.y130{bottom:252.951333pt;}
.y5e{bottom:255.370133pt;}
.y101{bottom:255.374133pt;}
.y175{bottom:255.434133pt;}
.y1af{bottom:255.478133pt;}
.y1eb{bottom:255.718133pt;}
.y132{bottom:259.351333pt;}
.y22{bottom:268.707200pt;}
.y5d{bottom:271.370133pt;}
.y166{bottom:271.374133pt;}
.y174{bottom:271.430133pt;}
.y1ae{bottom:271.474133pt;}
.y1ea{bottom:271.714133pt;}
.y12f{bottom:275.490000pt;}
.y5c{bottom:287.370133pt;}
.y173{bottom:287.426133pt;}
.y1ad{bottom:287.470133pt;}
.y1e9{bottom:287.710133pt;}
.y12e{bottom:288.290000pt;}
.y21{bottom:290.932933pt;}
.y5b{bottom:303.370133pt;}
.y1ac{bottom:303.466133pt;}
.y1e8{bottom:303.706133pt;}
.y12d{bottom:304.418000pt;}
.y99{bottom:308.893120pt;}
.yae{bottom:308.935840pt;}
.ya9{bottom:308.954133pt;}
.ydb{bottom:309.102560pt;}
.yd9{bottom:309.111707pt;}
.yc1{bottom:309.190720pt;}
.ydf{bottom:309.196987pt;}
.ybf{bottom:309.199867pt;}
.y88{bottom:309.203173pt;}
.ydc{bottom:309.206133pt;}
.y12c{bottom:317.218000pt;}
.y5a{bottom:319.370133pt;}
.y1ab{bottom:319.462133pt;}
.y1e7{bottom:319.702133pt;}
.y20{bottom:324.523867pt;}
.y12a{bottom:333.346000pt;}
.y59{bottom:335.370133pt;}
.y1aa{bottom:335.458133pt;}
.y1e6{bottom:335.698133pt;}
.y1f{bottom:339.187867pt;}
.y129{bottom:339.746000pt;}
.y12b{bottom:346.146000pt;}
.y6d{bottom:351.370133pt;}
.y1a9{bottom:351.454133pt;}
.y1e5{bottom:351.694133pt;}
.y1e{bottom:353.851867pt;}
.y127{bottom:362.284667pt;}
.y58{bottom:367.370133pt;}
.y1a8{bottom:367.450133pt;}
.y1e4{bottom:367.690133pt;}
.y1d{bottom:368.515867pt;}
.y126{bottom:368.684667pt;}
.y128{bottom:375.084667pt;}
.y1c{bottom:383.179867pt;}
.y6c{bottom:383.370133pt;}
.y1a7{bottom:383.446133pt;}
.y1e3{bottom:383.686133pt;}
.y125{bottom:391.223333pt;}
.y124{bottom:397.623333pt;}
.y1b{bottom:397.843867pt;}
.y6b{bottom:399.370133pt;}
.y1a6{bottom:399.442133pt;}
.y1e2{bottom:399.682133pt;}
.y1a{bottom:412.507867pt;}
.y57{bottom:415.370133pt;}
.y1a5{bottom:415.438133pt;}
.y1e1{bottom:415.678133pt;}
.y123{bottom:420.162000pt;}
.y19{bottom:427.171867pt;}
.y160{bottom:428.698133pt;}
.y56{bottom:431.370133pt;}
.y1a4{bottom:431.434133pt;}
.y1e0{bottom:431.674133pt;}
.y122{bottom:432.962000pt;}
.y18{bottom:441.835867pt;}
.y55{bottom:447.370133pt;}
.y1a3{bottom:447.430133pt;}
.y1df{bottom:447.670133pt;}
.y121{bottom:449.090000pt;}
.ya6{bottom:452.477493pt;}
.ye5{bottom:452.486640pt;}
.ye3{bottom:452.495787pt;}
.y9d{bottom:452.504933pt;}
.y95{bottom:452.523227pt;}
.yb6{bottom:452.529360pt;}
.ye2{bottom:452.532373pt;}
.yb3{bottom:452.538507pt;}
.yee{bottom:452.539680pt;}
.yb1{bottom:452.547653pt;}
.y90{bottom:452.550667pt;}
.yaf{bottom:452.556800pt;}
.y8e{bottom:452.559813pt;}
.ybc{bottom:452.561947pt;}
.yff{bottom:452.566987pt;}
.ye7{bottom:452.575093pt;}
.yf9{bottom:452.576133pt;}
.ye8{bottom:452.576267pt;}
.yd2{bottom:452.769253pt;}
.yd0{bottom:452.778400pt;}
.yce{bottom:452.787547pt;}
.yc9{bottom:452.796693pt;}
.yc4{bottom:452.802533pt;}
.yc6{bottom:452.805840pt;}
.y80{bottom:452.814987pt;}
.ye0{bottom:452.817947pt;}
.y7c{bottom:452.824133pt;}
.ydd{bottom:452.827093pt;}
.y82{bottom:452.828133pt;}
.y120{bottom:455.490000pt;}
.y17{bottom:456.499867pt;}
.y54{bottom:463.370133pt;}
.y1a2{bottom:463.426133pt;}
.y1de{bottom:463.666133pt;}
.y16{bottom:471.163867pt;}
.y11f{bottom:478.018000pt;}
.y53{bottom:479.370133pt;}
.y1a1{bottom:479.422133pt;}
.y1dd{bottom:479.662133pt;}
.y11e{bottom:484.418000pt;}
.y15{bottom:493.389600pt;}
.y52{bottom:495.370133pt;}
.y1a0{bottom:495.418133pt;}
.y1dc{bottom:495.658133pt;}
.y11d{bottom:506.956667pt;}
.y51{bottom:511.370133pt;}
.y19f{bottom:511.414133pt;}
.y1db{bottom:511.654133pt;}
.y11c{bottom:513.356667pt;}
.y162{bottom:524.698133pt;}
.y4b{bottom:527.370133pt;}
.y19e{bottom:527.410133pt;}
.y1da{bottom:527.650133pt;}
.y11b{bottom:535.895333pt;}
.y11a{bottom:542.295333pt;}
.y4a{bottom:543.370133pt;}
.y19d{bottom:543.406133pt;}
.y1d9{bottom:543.646133pt;}
.y14{bottom:549.517733pt;}
.y15f{bottom:557.587467pt;}
.y15c{bottom:557.588133pt;}
.y163{bottom:559.118133pt;}
.y15e{bottom:559.370000pt;}
.y49{bottom:559.370133pt;}
.y15b{bottom:559.374133pt;}
.y19c{bottom:559.402133pt;}
.y1d8{bottom:559.642133pt;}
.y119{bottom:564.823333pt;}
.y13{bottom:565.517733pt;}
.y161{bottom:572.698133pt;}
.y48{bottom:575.370133pt;}
.y19b{bottom:575.398133pt;}
.y1d7{bottom:575.638133pt;}
.y12{bottom:581.517733pt;}
.y47{bottom:591.370133pt;}
.y118{bottom:591.374133pt;}
.y19a{bottom:591.394133pt;}
.y1d6{bottom:591.634133pt;}
.yef{bottom:599.938213pt;}
.ye1{bottom:599.967493pt;}
.yfe{bottom:599.974667pt;}
.y79{bottom:600.191920pt;}
.yca{bottom:600.195227pt;}
.yc7{bottom:600.204373pt;}
.y81{bottom:600.213520pt;}
.y7d{bottom:600.222667pt;}
.y83{bottom:600.226667pt;}
.y46{bottom:607.370133pt;}
.y199{bottom:607.390133pt;}
.y1d5{bottom:607.630133pt;}
.y11{bottom:616.415333pt;}
.y45{bottom:623.370133pt;}
.y198{bottom:623.386133pt;}
.y1d4{bottom:623.626133pt;}
.y44{bottom:639.370133pt;}
.y197{bottom:639.382133pt;}
.y1d3{bottom:639.622133pt;}
.y10{bottom:655.112400pt;}
.y43{bottom:655.370133pt;}
.y196{bottom:655.378133pt;}
.y1d2{bottom:655.618133pt;}
.y117{bottom:658.444800pt;}
.y42{bottom:671.370133pt;}
.y195{bottom:671.374133pt;}
.y1d1{bottom:671.614133pt;}
.y116{bottom:674.583467pt;}
.yf{bottom:679.112400pt;}
.y41{bottom:687.370133pt;}
.y194{bottom:687.446133pt;}
.y1d0{bottom:687.610133pt;}
.y115{bottom:690.711467pt;}
.y40{bottom:703.370133pt;}
.y193{bottom:703.442133pt;}
.y1cf{bottom:703.606133pt;}
.ye{bottom:704.221733pt;}
.y114{bottom:706.839467pt;}
.y159{bottom:712.810667pt;}
.yd{bottom:717.555067pt;}
.y3f{bottom:719.370133pt;}
.y192{bottom:719.438133pt;}
.y1ce{bottom:719.602133pt;}
.y113{bottom:722.967467pt;}
.y158{bottom:725.610667pt;}
.y10e{bottom:731.031467pt;}
.yc{bottom:734.664400pt;}
.y3e{bottom:735.370133pt;}
.y191{bottom:735.434133pt;}
.y206{bottom:735.438133pt;}
.y1cd{bottom:735.598133pt;}
.y112{bottom:739.106133pt;}
.y157{bottom:741.738667pt;}
.ye6{bottom:743.496987pt;}
.ya2{bottom:743.506133pt;}
.ye4{bottom:743.515280pt;}
.y9e{bottom:743.524427pt;}
.y9a{bottom:743.533573pt;}
.y96{bottom:743.542720pt;}
.yf1{bottom:743.550027pt;}
.y93{bottom:743.551867pt;}
.ybd{bottom:743.581440pt;}
.yab{bottom:743.585440pt;}
.yb9{bottom:743.590587pt;}
.yfa{bottom:743.595627pt;}
.ye9{bottom:743.595760pt;}
.yb7{bottom:743.599733pt;}
.ycb{bottom:743.816187pt;}
.yc2{bottom:743.831173pt;}
.y89{bottom:743.834480pt;}
.yc0{bottom:743.840320pt;}
.y84{bottom:743.843627pt;}
.y85{bottom:743.847627pt;}
.y156{bottom:748.138667pt;}
.y3d{bottom:751.370133pt;}
.y190{bottom:751.430133pt;}
.y205{bottom:751.434133pt;}
.y1cc{bottom:751.594133pt;}
.yb{bottom:751.773733pt;}
.y111{bottom:755.234133pt;}
.y3c{bottom:767.370133pt;}
.y18f{bottom:767.426133pt;}
.y204{bottom:767.430133pt;}
.y1cb{bottom:767.590133pt;}
.ya{bottom:768.883067pt;}
.y154{bottom:770.677333pt;}
.y110{bottom:771.362133pt;}
.y153{bottom:777.077333pt;}
.y3b{bottom:783.370133pt;}
.y18e{bottom:783.422133pt;}
.y203{bottom:783.426133pt;}
.y155{bottom:783.477333pt;}
.y1ca{bottom:783.586133pt;}
.y9{bottom:785.992400pt;}
.y10f{bottom:787.500800pt;}
.y8{bottom:799.325733pt;}
.y3a{bottom:799.370133pt;}
.y18d{bottom:799.418133pt;}
.y202{bottom:799.422133pt;}
.y1c9{bottom:799.582133pt;}
.y151{bottom:799.605333pt;}
.y10d{bottom:803.628800pt;}
.y152{bottom:812.405333pt;}
.y150{bottom:812.416267pt;}
.y39{bottom:815.370133pt;}
.y18c{bottom:815.414133pt;}
.y201{bottom:815.418133pt;}
.y1c8{bottom:815.578133pt;}
.y7{bottom:816.435067pt;}
.y10c{bottom:819.756800pt;}
.y14f{bottom:828.554933pt;}
.y38{bottom:831.370133pt;}
.y18b{bottom:831.410133pt;}
.y200{bottom:831.414133pt;}
.y212{bottom:831.486133pt;}
.y1c7{bottom:831.574133pt;}
.y10b{bottom:835.895467pt;}
.y14e{bottom:841.354933pt;}
.y10a{bottom:843.959467pt;}
.y6{bottom:845.767067pt;}
.y37{bottom:847.370133pt;}
.y18a{bottom:847.406133pt;}
.y1ff{bottom:847.410133pt;}
.y211{bottom:847.482133pt;}
.y1c6{bottom:847.570133pt;}
.y14b{bottom:847.754933pt;}
.y14d{bottom:854.154933pt;}
.y36{bottom:863.370133pt;}
.y189{bottom:863.402133pt;}
.y1fe{bottom:863.406133pt;}
.y210{bottom:863.478133pt;}
.y1c5{bottom:863.566133pt;}
.y5{bottom:864.967067pt;}
.y14c{bottom:866.954933pt;}
.y109{bottom:868.162133pt;}
.y108{bottom:876.226133pt;}
.y164{bottom:876.698133pt;}
.y35{bottom:879.370133pt;}
.y188{bottom:879.398133pt;}
.y1fd{bottom:879.402133pt;}
.y20f{bottom:879.474133pt;}
.y1c4{bottom:879.562133pt;}
.y14a{bottom:883.093600pt;}
.ya7{bottom:887.117947pt;}
.ya3{bottom:887.127093pt;}
.y9f{bottom:887.145387pt;}
.y9b{bottom:887.154533pt;}
.yf4{bottom:887.161840pt;}
.y97{bottom:887.163680pt;}
.yf2{bottom:887.170987pt;}
.yac{bottom:887.206400pt;}
.yba{bottom:887.211547pt;}
.yfb{bottom:887.216587pt;}
.yd4{bottom:887.400560pt;}
.ycc{bottom:887.437147pt;}
.y76{bottom:887.442987pt;}
.yc3{bottom:887.452133pt;}
.y8a{bottom:887.455440pt;}
.y73{bottom:887.461280pt;}
.y7e{bottom:887.464587pt;}
.y86{bottom:887.468587pt;}
.y7a{bottom:887.473733pt;}
.y34{bottom:895.370133pt;}
.y187{bottom:895.394133pt;}
.y1fc{bottom:895.398133pt;}
.y20e{bottom:895.470133pt;}
.y1c3{bottom:895.558133pt;}
.y149{bottom:895.893600pt;}
.y4{bottom:900.165867pt;}
.y107{bottom:900.428800pt;}
.y33{bottom:911.370133pt;}
.y186{bottom:911.390133pt;}
.y1fb{bottom:911.394133pt;}
.y20d{bottom:911.466133pt;}
.y1c2{bottom:911.554133pt;}
.y148{bottom:912.021600pt;}
.y105{bottom:916.556800pt;}
.y15d{bottom:924.698133pt;}
.y147{bottom:924.821600pt;}
.y3{bottom:927.365867pt;}
.y32{bottom:927.370133pt;}
.y185{bottom:927.386133pt;}
.y1fa{bottom:927.390133pt;}
.y20c{bottom:927.462133pt;}
.y1c1{bottom:927.550133pt;}
.y106{bottom:932.695467pt;}
.y146{bottom:940.949600pt;}
.y31{bottom:943.370133pt;}
.y184{bottom:943.382133pt;}
.y1f9{bottom:943.386133pt;}
.y20b{bottom:943.458133pt;}
.y1c0{bottom:943.546133pt;}
.y104{bottom:948.823467pt;}
.y145{bottom:953.749600pt;}
.y2{bottom:954.565867pt;}
.y165{bottom:956.698133pt;}
.y30{bottom:959.370133pt;}
.y183{bottom:959.378133pt;}
.y1f8{bottom:959.382133pt;}
.y20a{bottom:959.454133pt;}
.y1bf{bottom:959.542133pt;}
.y144{bottom:969.877600pt;}
.y2f{bottom:975.370133pt;}
.y182{bottom:975.374133pt;}
.y103{bottom:975.378133pt;}
.y209{bottom:975.450133pt;}
.y1be{bottom:975.538133pt;}
.y141{bottom:976.277600pt;}
.y143{bottom:982.677600pt;}
.y140{bottom:989.077600pt;}
.y2e{bottom:991.370133pt;}
.y102{bottom:991.374133pt;}
.y208{bottom:991.446133pt;}
.y1bd{bottom:991.534133pt;}
.y142{bottom:995.477600pt;}
.y2d{bottom:1007.370133pt;}
.y207{bottom:1007.442133pt;}
.y1bc{bottom:1007.530133pt;}
.y13f{bottom:1011.605600pt;}
.y15a{bottom:1023.370133pt;}
.y4d{bottom:1060.905467pt;}
.y1{bottom:1061.669333pt;}
.y2c{bottom:1061.670133pt;}
.y28{bottom:1062.039733pt;}
.y2b{bottom:1062.040533pt;}
.h20{height:25.046146pt;}
.h14{height:25.421302pt;}
.h22{height:29.208333pt;}
.he{height:29.482031pt;}
.h6{height:29.625000pt;}
.h26{height:29.645833pt;}
.hd{height:30.800000pt;}
.h12{height:32.102656pt;}
.h1e{height:32.120576pt;}
.h1a{height:32.125270pt;}
.h1b{height:32.125803pt;}
.h9{height:33.351562pt;}
.h2{height:36.960000pt;}
.hc{height:37.057292pt;}
.h5{height:37.437500pt;}
.hf{height:40.018667pt;}
.h29{height:40.522320pt;}
.h2a{height:42.101187pt;}
.ha{height:42.117188pt;}
.h7{height:42.770833pt;}
.h28{height:43.812500pt;}
.hb{height:46.796875pt;}
.h10{height:46.880000pt;}
.h11{height:47.437186pt;}
.h15{height:47.812342pt;}
.h13{height:54.493696pt;}
.h1d{height:54.507350pt;}
.h18{height:54.516843pt;}
.h21{height:54.522390pt;}
.h8{height:54.693333pt;}
.h27{height:55.245833pt;}
.h4{height:56.156250pt;}
.h24{height:63.037500pt;}
.h3{height:66.413333pt;}
.h23{height:69.693500pt;}
.h16{height:76.884736pt;}
.h1f{height:76.894656pt;}
.h19{height:76.902656pt;}
.h1c{height:76.907883pt;}
.h17{height:76.913110pt;}
.h25{height:80.845833pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:68.031467pt;}
.xab{left:71.977733pt;}
.xa{left:83.149600pt;}
.x51{left:84.891333pt;}
.x52{left:90.489093pt;}
.x3{left:94.484800pt;}
.x6{left:98.267733pt;}
.xae{left:102.213867pt;}
.xc{left:106.588000pt;}
.x98{left:112.093387pt;}
.x7{left:113.387600pt;}
.x78{left:115.127467pt;}
.x99{left:117.691147pt;}
.x79{left:120.725227pt;}
.xd{left:122.584000pt;}
.x54{left:128.100187pt;}
.x55{left:133.697947pt;}
.x7b{left:136.731893pt;}
.x9a{left:139.295573pt;}
.x9b{left:144.893333pt;}
.x7a{left:147.927413pt;}
.xe{left:154.229867pt;}
.x56{left:155.302373pt;}
.xf{left:159.827627pt;}
.x57{left:160.900133pt;}
.x7d{left:175.111307pt;}
.x58{left:176.906800pt;}
.x11{left:180.489947pt;}
.x12{left:186.087707pt;}
.x7c{left:191.913733pt;}
.x7e{left:197.502347pt;}
.x59{left:198.511227pt;}
.x10{left:200.210160pt;}
.x5a{left:204.108987pt;}
.x13{left:219.921227pt;}
.x14{left:225.518987pt;}
.xaf{left:226.949867pt;}
.x53{left:228.923893pt;}
.x5b{left:231.320320pt;}
.x5c{left:236.918080pt;}
.x82{left:240.762613pt;}
.x5d{left:242.515840pt;}
.x16{left:245.239200pt;}
.x80{left:246.360373pt;}
.x17{left:250.836960pt;}
.x81{left:251.958133pt;}
.x5e{left:258.531653pt;}
.x9c{left:263.324373pt;}
.x1a{left:264.964053pt;}
.x83{left:267.964800pt;}
.x18{left:270.561813pt;}
.x19{left:276.159573pt;}
.x84{left:283.971467pt;}
.x61{left:285.733840pt;}
.x1d{left:290.282027pt;}
.x5f{left:291.331600pt;}
.x1b{left:295.879787pt;}
.x60{left:296.929360pt;}
.x1c{left:301.477547pt;}
.x87{left:311.173653pt;}
.x62{left:312.936027pt;}
.x20{left:315.596080pt;}
.x86{left:316.780560pt;}
.x9d{left:317.728747pt;}
.x1e{left:321.195147pt;}
.x85{left:322.378320pt;}
.x1f{left:326.791600pt;}
.x7f{left:327.976080pt;}
.x63{left:328.942693pt;}
.x5{left:330.459867pt;}
.x88{left:333.564693pt;}
.x23{left:340.914053pt;}
.x9e{left:344.940080pt;}
.x21{left:346.511813pt;}
.x22{left:352.109573pt;}
.x89{left:355.178267pt;}
.x9f{left:356.135600pt;}
.x8a{left:360.776027pt;}
.xad{left:364.297733pt;}
.x26{left:366.230853pt;}
.x24{left:371.828613pt;}
.x65{left:372.947307pt;}
.x25{left:377.426373pt;}
.x66{left:378.545067pt;}
.x15{left:381.561120pt;}
.xa0{left:383.368800pt;}
.x8b{left:387.978213pt;}
.x4{left:391.178133pt;}
.xb0{left:394.501867pt;}
.x27{left:397.145280pt;}
.x67{left:400.149493pt;}
.x28{left:402.743040pt;}
.xb{left:406.298133pt;}
.x8c{left:409.582640pt;}
.x8d{left:415.180400pt;}
.x2b{left:416.855040pt;}
.x8{left:421.414267pt;}
.x2d{left:422.443653pt;}
.x29{left:428.059707pt;}
.xa1{left:431.388800pt;}
.x2a{left:433.657467pt;}
.x9{left:436.534267pt;}
.x2c{left:439.246080pt;}
.x8e{left:442.382587pt;}
.x68{left:444.175653pt;}
.x64{left:446.559680pt;}
.x30{left:453.379680pt;}
.x2e{left:458.976373pt;}
.x6b{left:460.191467pt;}
.x2f{left:464.575200pt;}
.x69{left:465.789227pt;}
.x6a{left:471.386987pt;}
.x8f{left:474.395920pt;}
.x33{left:478.688507pt;}
.xa2{left:485.802320pt;}
.x34{left:489.884027pt;}
.x6c{left:492.991413pt;}
.x37{left:495.472640pt;}
.xa3{left:496.997840pt;}
.x6d{left:498.589173pt;}
.x31{left:501.088693pt;}
.x32{left:506.686453pt;}
.x35{left:512.275067pt;}
.x91{left:517.613920pt;}
.xa4{left:518.611413pt;}
.x6e{left:520.193600pt;}
.x36{left:523.470587pt;}
.x6f{left:525.791360pt;}
.x90{left:528.809440pt;}
.xac{left:531.849733pt;}
.x3c{left:537.607600pt;}
.x92{left:540.024267pt;}
.x3b{left:543.214507pt;}
.x71{left:547.395787pt;}
.x39{left:548.812267pt;}
.x72{left:552.993547pt;}
.x3a{left:554.410027pt;}
.x94{left:556.030933pt;}
.x3d{left:559.998640pt;}
.xb1{left:562.064533pt;}
.x95{left:567.226453pt;}
.x73{left:569.016880pt;}
.x93{left:572.833360pt;}
.x96{left:578.421973pt;}
.x3e{left:579.718853pt;}
.xa5{left:583.424693pt;}
.x3f{left:585.316613pt;}
.x70{left:588.208213pt;}
.x97{left:589.617493pt;}
.x74{left:591.407920pt;}
.xa6{left:594.624693pt;}
.x43{left:599.447653pt;}
.x42{left:605.045413pt;}
.x40{left:610.643173pt;}
.x75{left:613.021493pt;}
.x41{left:616.240933pt;}
.x76{left:618.619253pt;}
.x44{left:621.838693pt;}
.x38{left:628.900480pt;}
.xa7{left:632.244933pt;}
.x77{left:634.625920pt;}
.x47{left:635.961147pt;}
.x45{left:641.558907pt;}
.xa8{left:643.437760pt;}
.x46{left:647.156667pt;}
.xa9{left:649.035520pt;}
.x4b{left:661.271973pt;}
.xaa{left:665.042187pt;}
.x4a{left:666.878880pt;}
.x48{left:672.476640pt;}
.x1{left:675.141467pt;}
.x49{left:678.074400pt;}
.x4c{left:683.663013pt;}
.x4f{left:697.776320pt;}
.x4d{left:708.980987pt;}
.x4e{left:714.578747pt;}
.x50{left:720.167360pt;}
}




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