
    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_9f42e841d00476b5ab39f9f4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.912000;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_90b22c38f78bdbebd4b607ff.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936000;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_e445b43e7b1c5329dbb44dac.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904000;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_21d1f87f0e1fb366d96381c1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.912000;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_071bd805dd45b5aafb30f92e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927000;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_1603c97eab975f7246452b64.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.991699;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_b7726b906f24eba539823b82.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941000;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_e870ebf629225c45a4325283.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.765065;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_b2441d7e3933b16971660e5f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.936000;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_e445b43e7b1c5329dbb44dac.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.904000;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_b116c418dcc79dab43fbe793.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.761000;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_c3d3f675b74c739d9037c124.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ba7ee5300edf9bf828d891a0.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f047786a90e4b4a1d97a17cd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.707031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_bbb4b1fe214217a7376b47d2.woff2')format("woff");}.fff{font-family:fff;line-height:0.969000;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:ff10;src:url('chunks/assets/font_0836f6c6060ae7d4ba07830f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.679000;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:ff11;src:url('chunks/assets/font_83a2478d8628f68c54389699.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.871053;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:ff12;src:url('chunks/assets/font_9864699634f7bd22760aa322.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.841000;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:ff13;src:url('chunks/assets/font_c80550f179da6d9098e14a0d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.941000;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:ff14;src:url('chunks/assets/font_770cc1e8bcc72857ec85b9e4.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.722000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v9{vertical-align:-21.600000px;}
.v7{vertical-align:-6.000000px;}
.v5{vertical-align:-2.928000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:6.000000px;}
.v6{vertical-align:18.665400px;}
.v4{vertical-align:21.600000px;}
.v3{vertical-align:24.276000px;}
.v2{vertical-align:27.000000px;}
.v1{vertical-align:29.700000px;}
.lsb{letter-spacing:-5.128200px;}
.lse{letter-spacing:-2.400000px;}
.ls4{letter-spacing:-1.776000px;}
.ls5{letter-spacing:-0.221202px;}
.ls6{letter-spacing:-0.072346px;}
.ls7{letter-spacing:-0.031651px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000456px;}
.ls1{letter-spacing:0.000552px;}
.lsf{letter-spacing:0.225000px;}
.ls0{letter-spacing:3.780000px;}
.ls2{letter-spacing:24.492600px;}
.lsa{letter-spacing:175.744800px;}
.lsd{letter-spacing:191.175600px;}
.lsc{letter-spacing:431.138400px;}
.ls8{letter-spacing:1407.433800px;}
.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;}
}
.ws9{word-spacing:-18.348000px;}
.ws2{word-spacing:-15.600000px;}
.ws26{word-spacing:-14.400000px;}
.wsc0{word-spacing:-13.344000px;}
.ws4{word-spacing:-12.960000px;}
.wsd6{word-spacing:-12.843600px;}
.wsf6{word-spacing:-12.510000px;}
.ws0{word-spacing:-12.164724px;}
.ws6{word-spacing:-11.880000px;}
.ws1{word-spacing:-11.520000px;}
.ws3{word-spacing:-10.342800px;}
.wsbb{word-spacing:-8.847072px;}
.ws5{word-spacing:-8.592480px;}
.wsdd{word-spacing:-7.637760px;}
.wsd8{word-spacing:-7.068600px;}
.wse0{word-spacing:-5.820000px;}
.ws47{word-spacing:-5.340000px;}
.wsed{word-spacing:-5.220000px;}
.ws64{word-spacing:-5.160000px;}
.wsd3{word-spacing:-4.500000px;}
.ws80{word-spacing:-4.200000px;}
.ws4f{word-spacing:-4.140000px;}
.ws41{word-spacing:-3.840000px;}
.wsd{word-spacing:-3.360000px;}
.wsa9{word-spacing:-3.000000px;}
.ws69{word-spacing:-2.880000px;}
.wsf1{word-spacing:-2.700000px;}
.wse2{word-spacing:-2.640000px;}
.ws8a{word-spacing:-2.580000px;}
.ws62{word-spacing:-2.340000px;}
.ws9f{word-spacing:-2.160000px;}
.ws1c{word-spacing:-2.106000px;}
.wse5{word-spacing:-2.040000px;}
.ws23{word-spacing:-1.998000px;}
.wsa6{word-spacing:-1.860000px;}
.ws34{word-spacing:-1.740000px;}
.ws8b{word-spacing:-1.680000px;}
.ws3e{word-spacing:-1.620000px;}
.wsc2{word-spacing:-1.560000px;}
.ws58{word-spacing:-1.500000px;}
.ws15{word-spacing:-1.458000px;}
.wsa1{word-spacing:-1.380000px;}
.ws77{word-spacing:-1.320000px;}
.ws31{word-spacing:-1.260000px;}
.ws5a{word-spacing:-1.140000px;}
.ws88{word-spacing:-1.080000px;}
.ws5c{word-spacing:-0.960000px;}
.ws63{word-spacing:-0.720000px;}
.wse3{word-spacing:-0.420000px;}
.ws83{word-spacing:-0.360000px;}
.wse7{word-spacing:-0.240000px;}
.wsf7{word-spacing:-0.225000px;}
.ws5f{word-spacing:-0.180000px;}
.ws27{word-spacing:-0.060000px;}
.wsba{word-spacing:-0.048000px;}
.ws7{word-spacing:0.000000px;}
.ws25{word-spacing:0.027130px;}
.ws35{word-spacing:0.060000px;}
.ws13{word-spacing:0.120000px;}
.wse9{word-spacing:0.180000px;}
.ws24{word-spacing:0.248688px;}
.ws57{word-spacing:0.360000px;}
.wsc1{word-spacing:0.480000px;}
.ws45{word-spacing:0.540000px;}
.ws49{word-spacing:0.600000px;}
.wsa4{word-spacing:0.660000px;}
.wsdf{word-spacing:0.720000px;}
.wsce{word-spacing:0.755820px;}
.wsaa{word-spacing:0.780000px;}
.wsb2{word-spacing:0.840000px;}
.ws14{word-spacing:0.972000px;}
.wsb6{word-spacing:1.080000px;}
.ws61{word-spacing:1.140000px;}
.ws6b{word-spacing:1.260000px;}
.ws60{word-spacing:1.272960px;}
.ws37{word-spacing:1.440000px;}
.wsa5{word-spacing:1.560000px;}
.ws92{word-spacing:1.680000px;}
.ws1d{word-spacing:1.728000px;}
.ws8{word-spacing:1.776000px;}
.wsae{word-spacing:1.800000px;}
.ws55{word-spacing:1.920000px;}
.wsd2{word-spacing:2.040000px;}
.wsf3{word-spacing:2.100000px;}
.ws76{word-spacing:2.160000px;}
.wsac{word-spacing:2.280000px;}
.ws1a{word-spacing:2.321995px;}
.ws74{word-spacing:2.340000px;}
.wsea{word-spacing:2.400000px;}
.ws66{word-spacing:2.460000px;}
.ws4b{word-spacing:2.580000px;}
.ws46{word-spacing:2.640000px;}
.wscb{word-spacing:2.700000px;}
.ws32{word-spacing:2.760000px;}
.wsee{word-spacing:2.820000px;}
.wse{word-spacing:2.880000px;}
.ws93{word-spacing:3.060000px;}
.ws56{word-spacing:3.180000px;}
.ws6f{word-spacing:3.360000px;}
.ws21{word-spacing:3.402000px;}
.ws53{word-spacing:3.480000px;}
.ws75{word-spacing:3.540000px;}
.ws18{word-spacing:3.564000px;}
.wsa3{word-spacing:3.660000px;}
.ws78{word-spacing:3.780000px;}
.ws7f{word-spacing:3.840000px;}
.ws43{word-spacing:3.900000px;}
.ws40{word-spacing:3.960000px;}
.ws3b{word-spacing:4.020000px;}
.ws97{word-spacing:4.200000px;}
.ws22{word-spacing:4.212000px;}
.wsc3{word-spacing:4.260000px;}
.ws36{word-spacing:4.320000px;}
.ws29{word-spacing:4.560000px;}
.ws81{word-spacing:4.620000px;}
.ws95{word-spacing:4.680000px;}
.ws8f{word-spacing:4.860000px;}
.ws39{word-spacing:4.920000px;}
.wsc6{word-spacing:5.040000px;}
.ws7c{word-spacing:5.160000px;}
.wsec{word-spacing:5.280000px;}
.ws90{word-spacing:5.580000px;}
.wsa{word-spacing:5.640000px;}
.ws3c{word-spacing:5.700000px;}
.wsa0{word-spacing:5.760000px;}
.ws6a{word-spacing:5.880000px;}
.wsc5{word-spacing:5.940000px;}
.ws4a{word-spacing:6.000000px;}
.ws9c{word-spacing:6.060000px;}
.wsca{word-spacing:6.120000px;}
.ws2e{word-spacing:6.126120px;}
.ws8c{word-spacing:6.240000px;}
.wsaf{word-spacing:6.360000px;}
.ws38{word-spacing:6.420000px;}
.ws16{word-spacing:6.480000px;}
.ws98{word-spacing:6.540000px;}
.wsdb{word-spacing:6.600000px;}
.wsb3{word-spacing:6.660000px;}
.ws2f{word-spacing:6.720000px;}
.ws50{word-spacing:6.780000px;}
.ws94{word-spacing:6.840000px;}
.ws2a{word-spacing:6.960000px;}
.wsf{word-spacing:7.020000px;}
.ws28{word-spacing:7.140000px;}
.wsf4{word-spacing:7.200000px;}
.wsb1{word-spacing:7.200180px;}
.ws52{word-spacing:7.380000px;}
.ws65{word-spacing:7.440000px;}
.wsdc{word-spacing:7.500000px;}
.ws33{word-spacing:7.560000px;}
.ws5b{word-spacing:7.620000px;}
.ws7a{word-spacing:7.740000px;}
.wsd5{word-spacing:7.836660px;}
.ws87{word-spacing:7.860000px;}
.ws51{word-spacing:7.920000px;}
.wsc{word-spacing:7.980000px;}
.ws42{word-spacing:8.100000px;}
.ws99{word-spacing:8.160000px;}
.ws12{word-spacing:8.280000px;}
.ws19{word-spacing:8.316000px;}
.ws3a{word-spacing:8.340000px;}
.ws3f{word-spacing:8.400000px;}
.ws86{word-spacing:8.460000px;}
.wsc9{word-spacing:8.580000px;}
.wsab{word-spacing:8.640000px;}
.wse1{word-spacing:8.760000px;}
.ws17{word-spacing:8.802000px;}
.ws82{word-spacing:8.820000px;}
.wsa2{word-spacing:8.880000px;}
.wsa7{word-spacing:8.940000px;}
.wsc7{word-spacing:9.120000px;}
.ws2d{word-spacing:9.240000px;}
.ws1f{word-spacing:9.342000px;}
.wse8{word-spacing:9.420000px;}
.ws9b{word-spacing:9.480000px;}
.wse4{word-spacing:9.540000px;}
.ws44{word-spacing:9.660000px;}
.ws59{word-spacing:9.840000px;}
.wse6{word-spacing:10.020000px;}
.wscc{word-spacing:10.080000px;}
.wsf2{word-spacing:10.140000px;}
.ws85{word-spacing:10.320000px;}
.ws7e{word-spacing:10.440000px;}
.ws6c{word-spacing:10.560000px;}
.wsf0{word-spacing:10.680000px;}
.wsc8{word-spacing:10.740000px;}
.ws54{word-spacing:10.800000px;}
.wsb0{word-spacing:10.860000px;}
.wsb5{word-spacing:10.920000px;}
.wseb{word-spacing:11.040000px;}
.wsb{word-spacing:11.100000px;}
.ws96{word-spacing:11.160000px;}
.ws3d{word-spacing:11.280000px;}
.wsa8{word-spacing:11.340000px;}
.ws67{word-spacing:11.400000px;}
.wsd1{word-spacing:11.700000px;}
.ws5e{word-spacing:11.760000px;}
.wsd4{word-spacing:11.820000px;}
.ws1e{word-spacing:11.934000px;}
.wscd{word-spacing:12.093120px;}
.ws30{word-spacing:12.300000px;}
.ws2c{word-spacing:12.360000px;}
.wsb9{word-spacing:12.420000px;}
.ws7d{word-spacing:12.480000px;}
.wsb4{word-spacing:12.660000px;}
.ws1b{word-spacing:12.906000px;}
.ws9e{word-spacing:13.260000px;}
.ws2b{word-spacing:13.320000px;}
.ws8d{word-spacing:13.560000px;}
.wsde{word-spacing:13.620000px;}
.ws4e{word-spacing:13.680000px;}
.ws6e{word-spacing:13.800000px;}
.ws11{word-spacing:13.920000px;}
.ws89{word-spacing:14.760000px;}
.ws4c{word-spacing:14.880000px;}
.ws73{word-spacing:15.180000px;}
.ws5d{word-spacing:15.300000px;}
.wsb8{word-spacing:15.660000px;}
.ws79{word-spacing:15.840000px;}
.ws8e{word-spacing:15.960000px;}
.ws10{word-spacing:16.920000px;}
.ws91{word-spacing:17.280000px;}
.ws68{word-spacing:17.700000px;}
.ws4d{word-spacing:17.880000px;}
.ws70{word-spacing:18.240000px;}
.wsef{word-spacing:18.300000px;}
.wsad{word-spacing:18.600000px;}
.wsd0{word-spacing:18.720000px;}
.ws20{word-spacing:18.900000px;}
.wscf{word-spacing:19.140000px;}
.wsc4{word-spacing:19.500000px;}
.ws7b{word-spacing:19.680000px;}
.ws84{word-spacing:20.280000px;}
.ws72{word-spacing:20.700000px;}
.ws6d{word-spacing:22.020000px;}
.ws48{word-spacing:22.320000px;}
.wsb7{word-spacing:24.480000px;}
.ws9a{word-spacing:24.720000px;}
.ws71{word-spacing:24.900000px;}
.ws9d{word-spacing:28.500000px;}
.wsd9{word-spacing:33.356400px;}
.wsda{word-spacing:65.234400px;}
.wsbc{word-spacing:311.904000px;}
.wsbf{word-spacing:315.216000px;}
.wsbe{word-spacing:333.216000px;}
.wsbd{word-spacing:359.904000px;}
.wsd7{word-spacing:595.240800px;}
.wsf5{word-spacing:1364.233800px;}
._e{margin-left:-59.040000px;}
._14{margin-left:-30.960000px;}
._d{margin-left:-29.580000px;}
._16{margin-left:-26.100000px;}
._18{margin-left:-24.420000px;}
._13{margin-left:-22.860000px;}
._12{margin-left:-21.300000px;}
._10{margin-left:-19.860000px;}
._6{margin-left:-18.348000px;}
._15{margin-left:-16.603800px;}
._11{margin-left:-15.600000px;}
._b{margin-left:-13.826400px;}
._53{margin-left:-12.537600px;}
._9{margin-left:-11.520000px;}
._3c{margin-left:-7.344000px;}
._c{margin-left:-5.887200px;}
._19{margin-left:-4.830000px;}
._8{margin-left:-3.552000px;}
._2{margin-left:-1.780800px;}
._a{width:1.063800px;}
._8e{width:2.406000px;}
._73{width:5.128200px;}
._f{width:6.720000px;}
._0{width:11.880000px;}
._1b{width:13.339200px;}
._7{width:14.652180px;}
._3{width:18.341400px;}
._8f{width:20.404800px;}
._7e{width:25.225200px;}
._4{width:33.006600px;}
._4e{width:34.656000px;}
._5{width:35.661600px;}
._54{width:37.094400px;}
._1a{width:38.881200px;}
._55{width:43.041600px;}
._7f{width:46.739400px;}
._24{width:48.000000px;}
._89{width:51.928800px;}
._60{width:54.700800px;}
._1{width:57.480000px;}
._88{width:58.858800px;}
._62{width:60.706800px;}
._5e{width:64.402800px;}
._38{width:68.160000px;}
._6e{width:69.189600px;}
._5a{width:70.732200px;}
._2f{width:73.536000px;}
._75{width:74.674200px;}
._58{width:77.277600px;}
._59{width:80.388000px;}
._3f{width:83.232000px;}
._77{width:88.286400px;}
._4a{width:95.664000px;}
._80{width:96.742800px;}
._4d{width:102.912000px;}
._74{width:107.240400px;}
._5b{width:114.114000px;}
._83{width:118.316400px;}
._34{width:127.440000px;}
._3b{width:129.600000px;}
._42{width:137.568000px;}
._78{width:139.660800px;}
._87{width:144.003600px;}
._41{width:149.568000px;}
._4c{width:150.912000px;}
._4b{width:162.912000px;}
._20{width:168.624000px;}
._86{width:169.690800px;}
._3a{width:176.688000px;}
._52{width:184.564800px;}
._56{width:186.765600px;}
._2a{width:188.256000px;}
._35{width:190.512000px;}
._5c{width:193.993800px;}
._23{width:199.632000px;}
._33{width:212.112000px;}
._22{width:217.632000px;}
._67{width:227.396400px;}
._84{width:228.595200px;}
._21{width:229.632000px;}
._61{width:233.541000px;}
._63{width:236.682600px;}
._5f{width:239.547000px;}
._76{width:241.035600px;}
._40{width:244.848000px;}
._7a{width:247.308600px;}
._32{width:249.403200px;}
._2d{width:257.328000px;}
._25{width:259.012800px;}
._46{width:263.760000px;}
._8d{width:268.375800px;}
._8b{width:270.013800px;}
._81{width:271.065600px;}
._64{width:274.751400px;}
._3d{width:275.952000px;}
._45{width:277.440000px;}
._2c{width:284.016000px;}
._51{width:285.122400px;}
._31{width:287.712000px;}
._39{width:288.960000px;}
._2e{width:298.224000px;}
._29{width:300.144000px;}
._3e{width:302.640000px;}
._44{width:304.128000px;}
._28{width:309.460800px;}
._50{width:311.810400px;}
._4f{width:324.669600px;}
._1f{width:328.560000px;}
._1e{width:346.560000px;}
._6c{width:348.856200px;}
._7d{width:352.090200px;}
._43{width:357.504000px;}
._1d{width:358.560000px;}
._8a{width:368.537400px;}
._27{width:373.248000px;}
._30{width:376.560000px;}
._7c{width:377.777400px;}
._79{width:378.793800px;}
._26{width:385.248000px;}
._37{width:386.742000px;}
._2b{width:388.560000px;}
._71{width:401.893800px;}
._36{width:421.824000px;}
._49{width:424.176000px;}
._7b{width:429.151800px;}
._82{width:431.938800px;}
._6f{width:434.280000px;}
._48{width:450.864000px;}
._8c{width:455.716800px;}
._72{width:461.445600px;}
._70{width:482.235600px;}
._17{width:486.076800px;}
._69{width:489.304200px;}
._47{width:490.896000px;}
._6b{width:526.911000px;}
._65{width:544.698000px;}
._6a{width:552.598200px;}
._6d{width:555.000600px;}
._68{width:566.966400px;}
._57{width:570.431400px;}
._5d{width:574.728000px;}
._66{width:623.284200px;}
._85{width:635.157600px;}
._1c{width:652.704000px;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(128,25,79);}
.fc2{color:rgb(9,107,101);}
.fc5{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:31.824000px;}
.fs8{font-size:35.802000px;}
.fs7{font-size:39.780000px;}
.fsd{font-size:43.080000px;}
.fs4{font-size:43.758000px;}
.fs5{font-size:44.240400px;}
.fsf{font-size:45.000000px;}
.fs9{font-size:45.216000px;}
.fsb{font-size:45.600000px;}
.fsc{font-size:46.200000px;}
.fs1{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fse{font-size:58.500000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:2.433600px;}
.y1{bottom:44.041350px;}
.y2{bottom:44.083350px;}
.y29b{bottom:79.795350px;}
.y25c{bottom:80.251350px;}
.y1ef{bottom:80.260500px;}
.y5e{bottom:80.263650px;}
.y1c0{bottom:80.265750px;}
.y14e{bottom:80.266350px;}
.yb0{bottom:80.280750px;}
.y117{bottom:80.296350px;}
.y21{bottom:80.368500px;}
.y53{bottom:86.563800px;}
.y29a{bottom:94.195350px;}
.y20{bottom:95.368500px;}
.y25b{bottom:98.251350px;}
.y5d{bottom:98.263650px;}
.y14d{bottom:98.266350px;}
.y1ee{bottom:98.275500px;}
.yaf{bottom:98.280750px;}
.y116{bottom:98.296350px;}
.y52{bottom:103.060800px;}
.y299{bottom:108.595350px;}
.y1f{bottom:110.368500px;}
.y25a{bottom:116.251350px;}
.y5c{bottom:116.263650px;}
.y14c{bottom:116.266350px;}
.yae{bottom:116.280750px;}
.y1ed{bottom:116.290500px;}
.y1bf{bottom:116.295750px;}
.y115{bottom:116.296350px;}
.y51{bottom:119.557800px;}
.y298{bottom:122.995350px;}
.y1b1{bottom:132.135450px;}
.y259{bottom:134.251350px;}
.y5b{bottom:134.263650px;}
.y14b{bottom:134.266350px;}
.yad{bottom:134.280750px;}
.y114{bottom:134.296350px;}
.y1ec{bottom:134.305500px;}
.y1be{bottom:134.310750px;}
.y50{bottom:136.054800px;}
.y297{bottom:137.395350px;}
.y1e{bottom:138.868500px;}
.y296{bottom:151.795350px;}
.y258{bottom:152.251350px;}
.y5a{bottom:152.263650px;}
.y14a{bottom:152.266350px;}
.yac{bottom:152.280750px;}
.y113{bottom:152.296350px;}
.y1bd{bottom:152.325750px;}
.y4f{bottom:152.551800px;}
.y1d{bottom:153.868500px;}
.y1b0{bottom:158.271150px;}
.y4e{bottom:169.048800px;}
.y257{bottom:170.251350px;}
.y59{bottom:170.263650px;}
.y149{bottom:170.266350px;}
.yab{bottom:170.280750px;}
.y112{bottom:170.296350px;}
.y1bc{bottom:170.340750px;}
.y295{bottom:172.195350px;}
.y1af{bottom:172.671150px;}
.y28{bottom:172.936500px;}
.y225{bottom:181.810350px;}
.y4d{bottom:185.545800px;}
.y294{bottom:186.595350px;}
.y27{bottom:187.336500px;}
.y256{bottom:188.251350px;}
.y58{bottom:188.263650px;}
.y148{bottom:188.266350px;}
.yaa{bottom:188.280750px;}
.y111{bottom:188.296350px;}
.y1bb{bottom:188.355750px;}
.y1ae{bottom:191.739150px;}
.y224{bottom:194.734350px;}
.y293{bottom:200.995350px;}
.y26{bottom:201.736500px;}
.y4c{bottom:202.042800px;}
.y255{bottom:206.251350px;}
.y57{bottom:206.263650px;}
.y147{bottom:206.266350px;}
.ya9{bottom:206.280750px;}
.y110{bottom:206.296350px;}
.y1ba{bottom:206.370750px;}
.y1ac{bottom:212.307150px;}
.y292{bottom:215.395350px;}
.y25{bottom:216.136500px;}
.y4b{bottom:218.539800px;}
.y223{bottom:220.402350px;}
.ye1{bottom:223.935750px;}
.y254{bottom:224.251350px;}
.y56{bottom:224.263650px;}
.y146{bottom:224.266350px;}
.ya8{bottom:224.280750px;}
.y10f{bottom:224.296350px;}
.y1b9{bottom:224.385750px;}
.y1ad{bottom:226.707150px;}
.y1ab{bottom:228.207150px;}
.y291{bottom:229.795350px;}
.y24{bottom:230.536500px;}
.y4a{bottom:235.036800px;}
.y222{bottom:239.148000px;}
.ye0{bottom:241.935750px;}
.y253{bottom:242.251350px;}
.y55{bottom:242.263650px;}
.y145{bottom:242.266350px;}
.ya7{bottom:242.280750px;}
.y10e{bottom:242.296350px;}
.y1b8{bottom:242.400750px;}
.y290{bottom:244.195350px;}
.y23{bottom:244.936500px;}
.y1aa{bottom:247.275150px;}
.y49{bottom:251.533800px;}
.y28f{bottom:258.595350px;}
.y22{bottom:259.336500px;}
.y221{bottom:259.395150px;}
.ydf{bottom:259.935750px;}
.y252{bottom:260.251350px;}
.y54{bottom:260.263650px;}
.y144{bottom:260.266350px;}
.ya6{bottom:260.280750px;}
.y10d{bottom:260.296350px;}
.y1b7{bottom:260.415750px;}
.y1a9{bottom:261.675150px;}
.y48{bottom:268.030800px;}
.y28e{bottom:272.995350px;}
.yde{bottom:277.935750px;}
.y251{bottom:278.251350px;}
.y143{bottom:278.266350px;}
.y10c{bottom:278.296350px;}
.y1b6{bottom:278.430750px;}
.y220{bottom:279.642300px;}
.y1a8{bottom:282.243150px;}
.y47{bottom:284.527800px;}
.y28d{bottom:287.395350px;}
.ydd{bottom:295.935750px;}
.y250{bottom:296.251350px;}
.y142{bottom:296.266350px;}
.y10b{bottom:296.296350px;}
.y1b5{bottom:296.445750px;}
.y21f{bottom:299.889450px;}
.y46{bottom:301.024800px;}
.ya5{bottom:302.205750px;}
.y1a7{bottom:302.811150px;}
.y28c{bottom:307.795350px;}
.ydc{bottom:313.935750px;}
.y24f{bottom:314.251350px;}
.y141{bottom:314.266350px;}
.y10a{bottom:314.296350px;}
.y1b4{bottom:314.460750px;}
.y45{bottom:317.521800px;}
.y21e{bottom:320.136600px;}
.ya4{bottom:320.205750px;}
.y78{bottom:320.647500px;}
.y1a6{bottom:323.379150px;}
.y28b{bottom:328.195350px;}
.ydb{bottom:331.935750px;}
.y24e{bottom:332.251350px;}
.y140{bottom:332.266350px;}
.y109{bottom:332.296350px;}
.y1b3{bottom:332.475750px;}
.y44{bottom:334.018800px;}
.y77{bottom:337.144500px;}
.y1a5{bottom:337.779150px;}
.ya3{bottom:338.205750px;}
.y21d{bottom:340.383750px;}
.y28a{bottom:342.595350px;}
.yda{bottom:349.935750px;}
.y24d{bottom:350.251350px;}
.y13f{bottom:350.266350px;}
.y1b2{bottom:350.490750px;}
.y43{bottom:350.515800px;}
.y17a{bottom:353.158800px;}
.y76{bottom:353.641500px;}
.ya2{bottom:356.205750px;}
.y1a4{bottom:358.347150px;}
.y21c{bottom:360.630900px;}
.y289{bottom:362.995350px;}
.y42{bottom:367.012800px;}
.yd9{bottom:367.935750px;}
.y108{bottom:368.236350px;}
.y24c{bottom:368.251350px;}
.y13e{bottom:368.266350px;}
.y75{bottom:370.138500px;}
.y1a3{bottom:372.747150px;}
.ya1{bottom:374.205750px;}
.y179{bottom:378.733050px;}
.y21b{bottom:380.878050px;}
.y1eb{bottom:381.905100px;}
.y41{bottom:383.509800px;}
.y288{bottom:384.583350px;}
.yd8{bottom:385.935750px;}
.y107{bottom:386.236350px;}
.y24b{bottom:386.251350px;}
.y13d{bottom:386.266350px;}
.y74{bottom:386.638500px;}
.ya0{bottom:392.205750px;}
.y1a2{bottom:393.315150px;}
.y2cd{bottom:394.372350px;}
.y304{bottom:394.563600px;}
.y178{bottom:397.801050px;}
.y287{bottom:398.983350px;}
.y40{bottom:400.006800px;}
.y21a{bottom:401.125200px;}
.y1c2{bottom:403.428600px;}
.yd7{bottom:403.935750px;}
.y106{bottom:404.236350px;}
.y24a{bottom:404.251350px;}
.y13c{bottom:404.266350px;}
.y2cc{bottom:407.118600px;}
.y1ea{bottom:407.480400px;}
.y303{bottom:407.782350px;}
.y1c{bottom:411.191790px;}
.y286{bottom:413.383350px;}
.y73{bottom:413.641500px;}
.y1a1{bottom:413.883150px;}
.y3f{bottom:416.503800px;}
.y177{bottom:418.369050px;}
.y2cb{bottom:419.864850px;}
.y1c1{bottom:419.925600px;}
.y302{bottom:421.001100px;}
.y219{bottom:421.372350px;}
.yd6{bottom:421.935750px;}
.y105{bottom:422.236350px;}
.y249{bottom:422.251350px;}
.y13b{bottom:422.266350px;}
.y1a{bottom:426.191340px;}
.y1e9{bottom:426.226050px;}
.y285{bottom:427.783350px;}
.y72{bottom:430.138500px;}
.y2ca{bottom:432.611100px;}
.y3e{bottom:433.000800px;}
.y301{bottom:434.219850px;}
.y1a0{bottom:434.451150px;}
.y176{bottom:438.937050px;}
.yd5{bottom:439.935750px;}
.y104{bottom:440.236350px;}
.y248{bottom:440.251350px;}
.y13a{bottom:440.266350px;}
.y218{bottom:441.619500px;}
.y2c9{bottom:445.357350px;}
.y1e7{bottom:446.473200px;}
.y71{bottom:446.641500px;}
.y300{bottom:447.438600px;}
.y284{bottom:448.183350px;}
.y3d{bottom:449.497800px;}
.y19f{bottom:455.019150px;}
.yd4{bottom:457.935750px;}
.y9f{bottom:458.070750px;}
.y2c8{bottom:458.103600px;}
.y103{bottom:458.236350px;}
.y247{bottom:458.251350px;}
.y139{bottom:458.266350px;}
.y175{bottom:459.505050px;}
.y1e6{bottom:460.316700px;}
.y1e8{bottom:460.333200px;}
.y2ff{bottom:460.657350px;}
.y217{bottom:461.866650px;}
.y283{bottom:462.583350px;}
.y70{bottom:463.138500px;}
.y3c{bottom:465.994800px;}
.y2c7{bottom:470.849850px;}
.y2fe{bottom:473.876100px;}
.y19e{bottom:475.587150px;}
.yd3{bottom:475.935750px;}
.y9e{bottom:476.070750px;}
.y102{bottom:476.236350px;}
.y138{bottom:476.281350px;}
.y282{bottom:476.983350px;}
.y6f{bottom:479.641500px;}
.y1e5{bottom:480.563850px;}
.y174{bottom:481.573050px;}
.y216{bottom:482.113800px;}
.y3b{bottom:482.491800px;}
.y2c6{bottom:483.596100px;}
.y2fd{bottom:487.094850px;}
.yd2{bottom:493.935750px;}
.y9d{bottom:494.070750px;}
.y137{bottom:494.281350px;}
.y6e{bottom:496.138500px;}
.y19d{bottom:496.155150px;}
.y2c5{bottom:496.342350px;}
.y281{bottom:497.383350px;}
.y3a{bottom:498.988800px;}
.y2fc{bottom:500.313600px;}
.y1e4{bottom:500.811000px;}
.y173{bottom:501.372900px;}
.y215{bottom:502.360950px;}
.y7a{bottom:506.718375px;}
.y2c4{bottom:509.088600px;}
.y280{bottom:511.783350px;}
.y246{bottom:511.831350px;}
.yd1{bottom:511.935750px;}
.y9c{bottom:512.070750px;}
.y101{bottom:512.176350px;}
.y136{bottom:512.281350px;}
.y6d{bottom:512.641500px;}
.y2fb{bottom:513.532350px;}
.y1e3{bottom:514.671000px;}
.y39{bottom:515.485800px;}
.y19c{bottom:516.723150px;}
.y2c3{bottom:521.834850px;}
.y79{bottom:521.927910px;}
.y172{bottom:521.939400px;}
.y214{bottom:522.608100px;}
.y27f{bottom:526.183350px;}
.y2fa{bottom:526.751100px;}
.y1e2{bottom:528.531000px;}
.y6c{bottom:529.138500px;}
.y245{bottom:529.831350px;}
.yd0{bottom:529.935750px;}
.y9b{bottom:530.070750px;}
.y100{bottom:530.176350px;}
.y135{bottom:530.281350px;}
.y38{bottom:531.982800px;}
.y2c2{bottom:534.581100px;}
.y171{bottom:536.339400px;}
.y213{bottom:536.468100px;}
.y19b{bottom:537.291150px;}
.y2f9{bottom:539.969850px;}
.y6b{bottom:545.638500px;}
.y27e{bottom:546.583350px;}
.y2c1{bottom:547.327350px;}
.y244{bottom:547.831350px;}
.ycf{bottom:547.935750px;}
.y9a{bottom:548.070750px;}
.yff{bottom:548.176350px;}
.y134{bottom:548.281350px;}
.y37{bottom:548.479800px;}
.y1e1{bottom:548.778150px;}
.y2f8{bottom:553.188600px;}
.y212{bottom:556.715250px;}
.y170{bottom:556.907400px;}
.y19a{bottom:557.859150px;}
.y19{bottom:560.046900px;}
.y2c0{bottom:560.073600px;}
.y27d{bottom:560.983350px;}
.y36{bottom:564.976800px;}
.y243{bottom:565.831350px;}
.yce{bottom:565.935750px;}
.y99{bottom:566.070750px;}
.yfe{bottom:566.176350px;}
.y133{bottom:566.281350px;}
.y2f7{bottom:566.407350px;}
.y1e0{bottom:569.025300px;}
.y211{bottom:570.575250px;}
.y6a{bottom:572.641500px;}
.y2bf{bottom:572.819850px;}
.y18{bottom:575.046900px;}
.y27c{bottom:575.383350px;}
.y16f{bottom:577.475400px;}
.y199{bottom:578.426550px;}
.y2f6{bottom:579.626100px;}
.y35{bottom:581.473800px;}
.y242{bottom:583.831350px;}
.ycd{bottom:583.935750px;}
.y98{bottom:584.070750px;}
.yfd{bottom:584.176350px;}
.y2be{bottom:585.566100px;}
.y69{bottom:589.138500px;}
.y1df{bottom:589.272450px;}
.y27b{bottom:589.783350px;}
.y17{bottom:590.046900px;}
.y210{bottom:590.822400px;}
.y2f5{bottom:592.844850px;}
.y34{bottom:597.970800px;}
.y16e{bottom:598.043400px;}
.y2bd{bottom:598.312350px;}
.y198{bottom:598.994550px;}
.y241{bottom:601.831350px;}
.ycc{bottom:601.935750px;}
.y97{bottom:602.070750px;}
.yfc{bottom:602.176350px;}
.y27a{bottom:604.183350px;}
.y20f{bottom:604.682400px;}
.y20c{bottom:605.098200px;}
.y68{bottom:605.641500px;}
.y2f4{bottom:606.063600px;}
.y1de{bottom:609.519600px;}
.y2bc{bottom:611.058600px;}
.y197{bottom:613.394550px;}
.y33{bottom:614.467800px;}
.y195{bottom:614.894550px;}
.y279{bottom:618.583350px;}
.y16d{bottom:618.611400px;}
.y20b{bottom:618.958200px;}
.y2f3{bottom:619.282350px;}
.y240{bottom:619.831350px;}
.ycb{bottom:619.935750px;}
.y96{bottom:620.070750px;}
.y132{bottom:620.161350px;}
.yfb{bottom:620.176350px;}
.y67{bottom:622.144500px;}
.y2bb{bottom:623.804850px;}
.y20e{bottom:624.929550px;}
.y196{bottom:627.794550px;}
.y194{bottom:629.294550px;}
.y1dd{bottom:629.766750px;}
.y32{bottom:630.964800px;}
.y2f2{bottom:632.501100px;}
.y16{bottom:632.802900px;}
.y20a{bottom:632.818200px;}
.y278{bottom:632.983350px;}
.y16c{bottom:633.011400px;}
.y2ba{bottom:636.551100px;}
.y23f{bottom:637.831350px;}
.yca{bottom:637.935750px;}
.y95{bottom:638.070750px;}
.y131{bottom:638.161350px;}
.yfa{bottom:638.176350px;}
.y66{bottom:638.641500px;}
.y1dc{bottom:643.626750px;}
.y20d{bottom:645.176700px;}
.y2f1{bottom:645.719850px;}
.y209{bottom:646.678200px;}
.y277{bottom:647.383350px;}
.y31{bottom:647.461800px;}
.y15{bottom:647.802900px;}
.y193{bottom:648.362550px;}
.y2b9{bottom:649.297350px;}
.y16b{bottom:653.579400px;}
.y65{bottom:655.138500px;}
.y23e{bottom:655.831350px;}
.yc9{bottom:655.935750px;}
.y94{bottom:656.070750px;}
.y130{bottom:656.161350px;}
.yf9{bottom:656.176350px;}
.y2f0{bottom:658.938600px;}
.y276{bottom:661.783350px;}
.y2b8{bottom:662.043600px;}
.y192{bottom:662.762550px;}
.y14{bottom:662.802900px;}
.y1db{bottom:663.873900px;}
.y30{bottom:663.958800px;}
.y208{bottom:665.423850px;}
.y16a{bottom:667.979400px;}
.y64{bottom:671.647500px;}
.y2ef{bottom:672.157350px;}
.y23d{bottom:673.831350px;}
.yc8{bottom:673.935750px;}
.y93{bottom:674.070750px;}
.y12f{bottom:674.161350px;}
.yf8{bottom:674.176350px;}
.y2b7{bottom:674.789850px;}
.y275{bottom:676.183350px;}
.y13{bottom:677.802900px;}
.y2f{bottom:680.455800px;}
.y191{bottom:683.330550px;}
.y1da{bottom:684.121050px;}
.y2ee{bottom:685.376100px;}
.y207{bottom:685.671000px;}
.y2b6{bottom:687.536100px;}
.y63{bottom:688.144500px;}
.y169{bottom:688.547400px;}
.y274{bottom:690.583350px;}
.y23c{bottom:691.831350px;}
.yc7{bottom:691.935750px;}
.y92{bottom:692.070750px;}
.y12e{bottom:692.161350px;}
.yf7{bottom:692.176350px;}
.y12{bottom:692.802900px;}
.y2e{bottom:696.952800px;}
.y2ed{bottom:698.594850px;}
.y2b5{bottom:700.282350px;}
.y190{bottom:703.898550px;}
.y1d9{bottom:704.368200px;}
.y62{bottom:704.641500px;}
.y273{bottom:704.983350px;}
.y206{bottom:705.918150px;}
.y11{bottom:707.802900px;}
.y168{bottom:709.115400px;}
.y23b{bottom:709.831350px;}
.yc6{bottom:709.935750px;}
.y91{bottom:710.070750px;}
.y12d{bottom:710.161350px;}
.yf6{bottom:710.176350px;}
.y2ec{bottom:711.813600px;}
.y2b4{bottom:713.028600px;}
.y2d{bottom:713.449800px;}
.y272{bottom:719.383350px;}
.y61{bottom:721.138500px;}
.y10{bottom:722.802900px;}
.y18f{bottom:724.467450px;}
.y1d8{bottom:724.615350px;}
.y2eb{bottom:725.032350px;}
.y2b3{bottom:725.774850px;}
.y205{bottom:726.165300px;}
.y23a{bottom:727.831350px;}
.yc5{bottom:727.935750px;}
.y90{bottom:728.070750px;}
.y12c{bottom:728.161350px;}
.yf5{bottom:728.176350px;}
.y167{bottom:729.683400px;}
.y2c{bottom:729.946800px;}
.y60{bottom:737.638500px;}
.yf{bottom:737.802900px;}
.y2ea{bottom:738.251100px;}
.y2b2{bottom:738.521100px;}
.y18e{bottom:738.867450px;}
.y271{bottom:739.783350px;}
.y1d7{bottom:744.862500px;}
.y239{bottom:745.831350px;}
.yc4{bottom:745.935750px;}
.y8f{bottom:746.070750px;}
.y12b{bottom:746.161350px;}
.yf4{bottom:746.176350px;}
.y204{bottom:746.412450px;}
.y2b{bottom:746.443800px;}
.y166{bottom:750.251400px;}
.y2b1{bottom:751.267350px;}
.y2e9{bottom:751.469850px;}
.ye{bottom:752.802900px;}
.y18d{bottom:759.435450px;}
.y2a{bottom:762.940800px;}
.y238{bottom:763.831350px;}
.yc3{bottom:763.935750px;}
.y2b0{bottom:764.013600px;}
.y8e{bottom:764.070750px;}
.y12a{bottom:764.161350px;}
.yf3{bottom:764.176350px;}
.y2e8{bottom:764.688600px;}
.y1d6{bottom:765.109650px;}
.y203{bottom:766.659600px;}
.yd{bottom:767.802900px;}
.y5f{bottom:770.440650px;}
.y165{bottom:770.819400px;}
.y2af{bottom:776.759850px;}
.y2e7{bottom:777.907350px;}
.y270{bottom:778.771200px;}
.y29{bottom:779.440800px;}
.y18c{bottom:780.003450px;}
.y237{bottom:781.831350px;}
.yc2{bottom:781.935750px;}
.y8d{bottom:782.070750px;}
.y129{bottom:782.161350px;}
.yf2{bottom:782.176350px;}
.yc{bottom:782.802900px;}
.y1d5{bottom:785.356800px;}
.y202{bottom:786.906750px;}
.y2ae{bottom:789.509850px;}
.y2e6{bottom:791.126100px;}
.y164{bottom:791.387400px;}
.y26f{bottom:794.356350px;}
.y163{bottom:797.556000px;}
.y236{bottom:799.831350px;}
.yc1{bottom:799.935750px;}
.y8c{bottom:800.070750px;}
.y128{bottom:800.161350px;}
.yf1{bottom:800.176350px;}
.y18b{bottom:800.571450px;}
.y201{bottom:800.766750px;}
.y2e5{bottom:804.344850px;}
.y26e{bottom:804.538350px;}
.y1d4{bottom:805.603950px;}
.y162{bottom:811.956000px;}
.y2e4{bottom:817.563600px;}
.y235{bottom:817.831350px;}
.yc0{bottom:817.935750px;}
.y8b{bottom:818.070750px;}
.y127{bottom:818.161350px;}
.y200{bottom:821.013900px;}
.y18a{bottom:821.139450px;}
.y26d{bottom:825.526200px;}
.y1d3{bottom:825.851100px;}
.y2e3{bottom:830.782350px;}
.y161{bottom:832.524000px;}
.y26c{bottom:835.708350px;}
.y234{bottom:835.846350px;}
.ybf{bottom:835.935750px;}
.y8a{bottom:836.070750px;}
.y126{bottom:836.161350px;}
.yb{bottom:839.440650px;}
.y1ff{bottom:841.261050px;}
.y189{bottom:841.707450px;}
.y2e2{bottom:844.001100px;}
.y2ad{bottom:844.933350px;}
.y1d2{bottom:846.098250px;}
.y160{bottom:853.092000px;}
.y233{bottom:853.861350px;}
.ybe{bottom:853.935750px;}
.y89{bottom:854.070750px;}
.yf0{bottom:854.071350px;}
.y125{bottom:854.161350px;}
.y1fe{bottom:855.121050px;}
.y188{bottom:856.107450px;}
.y26b{bottom:856.696350px;}
.y2e1{bottom:857.219850px;}
.ya{bottom:859.240650px;}
.y2ac{bottom:859.333350px;}
.y1d1{bottom:866.345400px;}
.y26a{bottom:866.878350px;}
.y1fd{bottom:868.981050px;}
.y2e0{bottom:870.438600px;}
.y232{bottom:871.876350px;}
.ybd{bottom:871.935750px;}
.y88{bottom:872.070750px;}
.yef{bottom:872.071350px;}
.y124{bottom:872.161350px;}
.y15f{bottom:873.660000px;}
.y2ab{bottom:873.733350px;}
.y187{bottom:877.408950px;}
.y9{bottom:879.040650px;}
.y2df{bottom:883.657350px;}
.y1d0{bottom:886.592550px;}
.y269{bottom:887.866350px;}
.y2aa{bottom:888.133350px;}
.y1fc{bottom:889.228200px;}
.y231{bottom:889.891350px;}
.ybc{bottom:889.935750px;}
.y87{bottom:890.070750px;}
.yee{bottom:890.071350px;}
.y123{bottom:890.161350px;}
.y15e{bottom:894.228000px;}
.y2de{bottom:896.876100px;}
.y268{bottom:898.048350px;}
.y186{bottom:898.708500px;}
.y2a9{bottom:902.533350px;}
.y1cf{bottom:906.839700px;}
.y230{bottom:907.906350px;}
.y86{bottom:908.070750px;}
.yed{bottom:908.071350px;}
.y122{bottom:908.161350px;}
.y1fb{bottom:909.475350px;}
.y2dd{bottom:910.094850px;}
.y15d{bottom:914.796000px;}
.y2a8{bottom:916.933350px;}
.y267{bottom:919.036350px;}
.y185{bottom:919.276500px;}
.y2dc{bottom:923.313600px;}
.ybb{bottom:925.590750px;}
.y22f{bottom:925.921350px;}
.y85{bottom:926.070750px;}
.yec{bottom:926.071350px;}
.y121{bottom:926.161350px;}
.y1ce{bottom:927.086850px;}
.y266{bottom:929.218350px;}
.y1fa{bottom:929.722500px;}
.y2a7{bottom:931.333350px;}
.y15c{bottom:935.364000px;}
.y2db{bottom:936.532350px;}
.y8{bottom:937.816650px;}
.y184{bottom:939.844500px;}
.yba{bottom:943.590750px;}
.y22e{bottom:943.936350px;}
.y84{bottom:944.070750px;}
.yeb{bottom:944.071350px;}
.y120{bottom:944.161350px;}
.y2a6{bottom:945.733350px;}
.y1cd{bottom:947.334000px;}
.y2da{bottom:949.751100px;}
.y1f9{bottom:949.969650px;}
.y265{bottom:950.206350px;}
.y15b{bottom:955.932000px;}
.y2a5{bottom:960.133350px;}
.y264{bottom:960.388350px;}
.y183{bottom:960.412500px;}
.yb9{bottom:961.590750px;}
.y22d{bottom:961.951350px;}
.y83{bottom:962.070750px;}
.yea{bottom:962.071350px;}
.y11f{bottom:962.161350px;}
.y1f7{bottom:962.743950px;}
.y2d9{bottom:962.969850px;}
.y1cc{bottom:967.581150px;}
.y1f8{bottom:970.216800px;}
.y2d8{bottom:976.188600px;}
.y15a{bottom:976.500000px;}
.y1f6{bottom:976.603950px;}
.y7{bottom:976.822650px;}
.yb8{bottom:979.590750px;}
.y22c{bottom:979.966350px;}
.y82{bottom:980.070750px;}
.ye9{bottom:980.071350px;}
.y182{bottom:980.981850px;}
.y263{bottom:981.376350px;}
.y1c9{bottom:983.358450px;}
.y2a4{bottom:986.533350px;}
.y1cb{bottom:987.828300px;}
.y2d7{bottom:989.407350px;}
.y1f5{bottom:990.463950px;}
.y159{bottom:990.900000px;}
.y262{bottom:991.558350px;}
.y180{bottom:994.051500px;}
.y1c8{bottom:997.218450px;}
.yb7{bottom:997.590750px;}
.y22b{bottom:997.981350px;}
.y81{bottom:998.070750px;}
.ye8{bottom:998.071350px;}
.y11e{bottom:998.086350px;}
.y156{bottom:1000.801500px;}
.y2a3{bottom:1000.933350px;}
.y181{bottom:1001.549850px;}
.y2d6{bottom:1002.626100px;}
.y1f4{bottom:1004.323950px;}
.y1ca{bottom:1006.573950px;}
.y17f{bottom:1008.451500px;}
.y158{bottom:1009.968000px;}
.y1c7{bottom:1011.078450px;}
.y261{bottom:1012.546350px;}
.y155{bottom:1015.201500px;}
.y2a2{bottom:1015.333350px;}
.yb6{bottom:1015.590750px;}
.y6{bottom:1015.828650px;}
.y2d5{bottom:1015.844850px;}
.y22a{bottom:1015.996350px;}
.y80{bottom:1016.070750px;}
.ye7{bottom:1016.071350px;}
.y11d{bottom:1016.086350px;}
.y260{bottom:1022.728350px;}
.y17e{bottom:1022.851500px;}
.y157{bottom:1025.101500px;}
.y1f0{bottom:1027.574100px;}
.y2d4{bottom:1029.063600px;}
.y154{bottom:1029.601500px;}
.y2a1{bottom:1029.733350px;}
.y1c3{bottom:1029.824100px;}
.yb5{bottom:1033.590750px;}
.y229{bottom:1034.011350px;}
.y7f{bottom:1034.070750px;}
.ye6{bottom:1034.071350px;}
.y11c{bottom:1034.086350px;}
.y2d3{bottom:1042.282350px;}
.y25f{bottom:1043.716350px;}
.y2a0{bottom:1044.133350px;}
.y17b{bottom:1046.419500px;}
.y1f1{bottom:1047.821250px;}
.y151{bottom:1048.669500px;}
.y1c4{bottom:1050.071250px;}
.yb4{bottom:1051.590750px;}
.y228{bottom:1052.026350px;}
.y7e{bottom:1052.070750px;}
.ye5{bottom:1052.071350px;}
.y11b{bottom:1052.086350px;}
.y25e{bottom:1053.901350px;}
.y5{bottom:1054.834650px;}
.y2d2{bottom:1055.501100px;}
.y29f{bottom:1058.533350px;}
.y17c{bottom:1060.819500px;}
.y1f2{bottom:1061.681250px;}
.y152{bottom:1063.069500px;}
.y1c5{bottom:1063.931250px;}
.y2d1{bottom:1068.719850px;}
.yb3{bottom:1069.590750px;}
.y227{bottom:1070.041350px;}
.y7d{bottom:1070.070750px;}
.ye4{bottom:1070.071350px;}
.y11a{bottom:1070.086350px;}
.y17d{bottom:1075.219500px;}
.y1f3{bottom:1075.541250px;}
.y153{bottom:1077.469500px;}
.y1c6{bottom:1077.791250px;}
.y29e{bottom:1078.933350px;}
.y2d0{bottom:1081.938600px;}
.y25d{bottom:1087.486350px;}
.yb2{bottom:1087.590750px;}
.y226{bottom:1088.056350px;}
.y7c{bottom:1088.070750px;}
.ye3{bottom:1088.071350px;}
.y119{bottom:1088.086350px;}
.y29d{bottom:1093.333350px;}
.y4{bottom:1093.840650px;}
.y2cf{bottom:1095.157350px;}
.y150{bottom:1098.412350px;}
.yb1{bottom:1105.590750px;}
.y7b{bottom:1106.070750px;}
.ye2{bottom:1106.071350px;}
.y118{bottom:1106.086350px;}
.y29c{bottom:1107.733350px;}
.y2ce{bottom:1108.376100px;}
.y3{bottom:1140.946200px;}
.y14f{bottom:1140.946350px;}
.h24{height:23.931648px;}
.h23{height:31.491480px;}
.h11{height:32.193792px;}
.h26{height:32.895000px;}
.h9{height:33.180300px;}
.h1f{height:33.333600px;}
.h20{height:33.772200px;}
.h21{height:33.838200px;}
.ha{height:34.944000px;}
.h14{height:35.088000px;}
.h3{height:36.096000px;}
.h13{height:39.474000px;}
.h22{height:39.778200px;}
.hc{height:40.608000px;}
.h1e{height:41.088000px;}
.h8{height:41.109000px;}
.h25{height:41.535000px;}
.h16{height:41.928744px;}
.h1a{height:41.929344px;}
.h1c{height:41.931744px;}
.h17{height:41.932344px;}
.h19{height:41.935944px;}
.h1b{height:41.937144px;}
.h1d{height:41.937744px;}
.h18{height:41.941344px;}
.h2{height:43.680000px;}
.h4{height:43.860000px;}
.hd{height:44.040000px;}
.h15{height:44.863344px;}
.hb{height:46.080000px;}
.hf{height:51.199104px;}
.h10{height:51.211104px;}
.h12{height:56.138520px;}
.he{height:56.198520px;}
.h6{height:61.687098px;}
.h7{height:61.687698px;}
.h5{height:95.906250px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:87.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x13{left:-473.104800px;}
.x0{left:0.000000px;}
.x8{left:15.733950px;}
.x6{left:60.750000px;}
.x20{left:65.250000px;}
.x3{left:66.450000px;}
.xe{left:74.250000px;}
.x25{left:84.667500px;}
.x9{left:86.710950px;}
.x7{left:89.812500px;}
.x21{left:131.250000px;}
.x14{left:155.737800px;}
.x4{left:220.379400px;}
.x2{left:240.336300px;}
.x19{left:267.232350px;}
.x22{left:298.886700px;}
.x15{left:383.209800px;}
.x1a{left:390.724350px;}
.x1b{left:398.279850px;}
.xf{left:460.320000px;}
.x10{left:473.825850px;}
.x26{left:484.132500px;}
.x16{left:496.201800px;}
.x1f{left:503.735850px;}
.x1d{left:511.247850px;}
.x23{left:513.381750px;}
.xa{left:537.407100px;}
.xb{left:546.408000px;}
.xc{left:558.284850px;}
.xd{left:564.408000px;}
.x17{left:606.193800px;}
.x1e{left:621.239850px;}
.x24{left:675.382050px;}
.x5{left:688.870650px;}
.x18{left:719.185800px;}
.x11{left:723.955500px;}
.x1c{left:769.646550px;}
.x1{left:805.739250px;}
.x12{left:824.964150px;}
@media print{
.v9{vertical-align:-19.200000pt;}
.v7{vertical-align:-5.333333pt;}
.v5{vertical-align:-2.602667pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:5.333333pt;}
.v6{vertical-align:16.591467pt;}
.v4{vertical-align:19.200000pt;}
.v3{vertical-align:21.578667pt;}
.v2{vertical-align:24.000000pt;}
.v1{vertical-align:26.400000pt;}
.lsb{letter-spacing:-4.558400pt;}
.lse{letter-spacing:-2.133333pt;}
.ls4{letter-spacing:-1.578667pt;}
.ls5{letter-spacing:-0.196624pt;}
.ls6{letter-spacing:-0.064307pt;}
.ls7{letter-spacing:-0.028134pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000405pt;}
.ls1{letter-spacing:0.000491pt;}
.lsf{letter-spacing:0.200000pt;}
.ls0{letter-spacing:3.360000pt;}
.ls2{letter-spacing:21.771200pt;}
.lsa{letter-spacing:156.217600pt;}
.lsd{letter-spacing:169.933867pt;}
.lsc{letter-spacing:383.234133pt;}
.ls8{letter-spacing:1251.052267pt;}
.ws9{word-spacing:-16.309333pt;}
.ws2{word-spacing:-13.866667pt;}
.ws26{word-spacing:-12.800000pt;}
.wsc0{word-spacing:-11.861333pt;}
.ws4{word-spacing:-11.520000pt;}
.wsd6{word-spacing:-11.416533pt;}
.wsf6{word-spacing:-11.120000pt;}
.ws0{word-spacing:-10.813088pt;}
.ws6{word-spacing:-10.560000pt;}
.ws1{word-spacing:-10.240000pt;}
.ws3{word-spacing:-9.193600pt;}
.wsbb{word-spacing:-7.864064pt;}
.ws5{word-spacing:-7.637760pt;}
.wsdd{word-spacing:-6.789120pt;}
.wsd8{word-spacing:-6.283200pt;}
.wse0{word-spacing:-5.173333pt;}
.ws47{word-spacing:-4.746667pt;}
.wsed{word-spacing:-4.640000pt;}
.ws64{word-spacing:-4.586667pt;}
.wsd3{word-spacing:-4.000000pt;}
.ws80{word-spacing:-3.733333pt;}
.ws4f{word-spacing:-3.680000pt;}
.ws41{word-spacing:-3.413333pt;}
.wsd{word-spacing:-2.986667pt;}
.wsa9{word-spacing:-2.666667pt;}
.ws69{word-spacing:-2.560000pt;}
.wsf1{word-spacing:-2.400000pt;}
.wse2{word-spacing:-2.346667pt;}
.ws8a{word-spacing:-2.293333pt;}
.ws62{word-spacing:-2.080000pt;}
.ws9f{word-spacing:-1.920000pt;}
.ws1c{word-spacing:-1.872000pt;}
.wse5{word-spacing:-1.813333pt;}
.ws23{word-spacing:-1.776000pt;}
.wsa6{word-spacing:-1.653333pt;}
.ws34{word-spacing:-1.546667pt;}
.ws8b{word-spacing:-1.493333pt;}
.ws3e{word-spacing:-1.440000pt;}
.wsc2{word-spacing:-1.386667pt;}
.ws58{word-spacing:-1.333333pt;}
.ws15{word-spacing:-1.296000pt;}
.wsa1{word-spacing:-1.226667pt;}
.ws77{word-spacing:-1.173333pt;}
.ws31{word-spacing:-1.120000pt;}
.ws5a{word-spacing:-1.013333pt;}
.ws88{word-spacing:-0.960000pt;}
.ws5c{word-spacing:-0.853333pt;}
.ws63{word-spacing:-0.640000pt;}
.wse3{word-spacing:-0.373333pt;}
.ws83{word-spacing:-0.320000pt;}
.wse7{word-spacing:-0.213333pt;}
.wsf7{word-spacing:-0.200000pt;}
.ws5f{word-spacing:-0.160000pt;}
.ws27{word-spacing:-0.053333pt;}
.wsba{word-spacing:-0.042667pt;}
.ws7{word-spacing:0.000000pt;}
.ws25{word-spacing:0.024115pt;}
.ws35{word-spacing:0.053333pt;}
.ws13{word-spacing:0.106667pt;}
.wse9{word-spacing:0.160000pt;}
.ws24{word-spacing:0.221056pt;}
.ws57{word-spacing:0.320000pt;}
.wsc1{word-spacing:0.426667pt;}
.ws45{word-spacing:0.480000pt;}
.ws49{word-spacing:0.533333pt;}
.wsa4{word-spacing:0.586667pt;}
.wsdf{word-spacing:0.640000pt;}
.wsce{word-spacing:0.671840pt;}
.wsaa{word-spacing:0.693333pt;}
.wsb2{word-spacing:0.746667pt;}
.ws14{word-spacing:0.864000pt;}
.wsb6{word-spacing:0.960000pt;}
.ws61{word-spacing:1.013333pt;}
.ws6b{word-spacing:1.120000pt;}
.ws60{word-spacing:1.131520pt;}
.ws37{word-spacing:1.280000pt;}
.wsa5{word-spacing:1.386667pt;}
.ws92{word-spacing:1.493333pt;}
.ws1d{word-spacing:1.536000pt;}
.ws8{word-spacing:1.578667pt;}
.wsae{word-spacing:1.600000pt;}
.ws55{word-spacing:1.706667pt;}
.wsd2{word-spacing:1.813333pt;}
.wsf3{word-spacing:1.866667pt;}
.ws76{word-spacing:1.920000pt;}
.wsac{word-spacing:2.026667pt;}
.ws1a{word-spacing:2.063995pt;}
.ws74{word-spacing:2.080000pt;}
.wsea{word-spacing:2.133333pt;}
.ws66{word-spacing:2.186667pt;}
.ws4b{word-spacing:2.293333pt;}
.ws46{word-spacing:2.346667pt;}
.wscb{word-spacing:2.400000pt;}
.ws32{word-spacing:2.453333pt;}
.wsee{word-spacing:2.506667pt;}
.wse{word-spacing:2.560000pt;}
.ws93{word-spacing:2.720000pt;}
.ws56{word-spacing:2.826667pt;}
.ws6f{word-spacing:2.986667pt;}
.ws21{word-spacing:3.024000pt;}
.ws53{word-spacing:3.093333pt;}
.ws75{word-spacing:3.146667pt;}
.ws18{word-spacing:3.168000pt;}
.wsa3{word-spacing:3.253333pt;}
.ws78{word-spacing:3.360000pt;}
.ws7f{word-spacing:3.413333pt;}
.ws43{word-spacing:3.466667pt;}
.ws40{word-spacing:3.520000pt;}
.ws3b{word-spacing:3.573333pt;}
.ws97{word-spacing:3.733333pt;}
.ws22{word-spacing:3.744000pt;}
.wsc3{word-spacing:3.786667pt;}
.ws36{word-spacing:3.840000pt;}
.ws29{word-spacing:4.053333pt;}
.ws81{word-spacing:4.106667pt;}
.ws95{word-spacing:4.160000pt;}
.ws8f{word-spacing:4.320000pt;}
.ws39{word-spacing:4.373333pt;}
.wsc6{word-spacing:4.480000pt;}
.ws7c{word-spacing:4.586667pt;}
.wsec{word-spacing:4.693333pt;}
.ws90{word-spacing:4.960000pt;}
.wsa{word-spacing:5.013333pt;}
.ws3c{word-spacing:5.066667pt;}
.wsa0{word-spacing:5.120000pt;}
.ws6a{word-spacing:5.226667pt;}
.wsc5{word-spacing:5.280000pt;}
.ws4a{word-spacing:5.333333pt;}
.ws9c{word-spacing:5.386667pt;}
.wsca{word-spacing:5.440000pt;}
.ws2e{word-spacing:5.445440pt;}
.ws8c{word-spacing:5.546667pt;}
.wsaf{word-spacing:5.653333pt;}
.ws38{word-spacing:5.706667pt;}
.ws16{word-spacing:5.760000pt;}
.ws98{word-spacing:5.813333pt;}
.wsdb{word-spacing:5.866667pt;}
.wsb3{word-spacing:5.920000pt;}
.ws2f{word-spacing:5.973333pt;}
.ws50{word-spacing:6.026667pt;}
.ws94{word-spacing:6.080000pt;}
.ws2a{word-spacing:6.186667pt;}
.wsf{word-spacing:6.240000pt;}
.ws28{word-spacing:6.346667pt;}
.wsf4{word-spacing:6.400000pt;}
.wsb1{word-spacing:6.400160pt;}
.ws52{word-spacing:6.560000pt;}
.ws65{word-spacing:6.613333pt;}
.wsdc{word-spacing:6.666667pt;}
.ws33{word-spacing:6.720000pt;}
.ws5b{word-spacing:6.773333pt;}
.ws7a{word-spacing:6.880000pt;}
.wsd5{word-spacing:6.965920pt;}
.ws87{word-spacing:6.986667pt;}
.ws51{word-spacing:7.040000pt;}
.wsc{word-spacing:7.093333pt;}
.ws42{word-spacing:7.200000pt;}
.ws99{word-spacing:7.253333pt;}
.ws12{word-spacing:7.360000pt;}
.ws19{word-spacing:7.392000pt;}
.ws3a{word-spacing:7.413333pt;}
.ws3f{word-spacing:7.466667pt;}
.ws86{word-spacing:7.520000pt;}
.wsc9{word-spacing:7.626667pt;}
.wsab{word-spacing:7.680000pt;}
.wse1{word-spacing:7.786667pt;}
.ws17{word-spacing:7.824000pt;}
.ws82{word-spacing:7.840000pt;}
.wsa2{word-spacing:7.893333pt;}
.wsa7{word-spacing:7.946667pt;}
.wsc7{word-spacing:8.106667pt;}
.ws2d{word-spacing:8.213333pt;}
.ws1f{word-spacing:8.304000pt;}
.wse8{word-spacing:8.373333pt;}
.ws9b{word-spacing:8.426667pt;}
.wse4{word-spacing:8.480000pt;}
.ws44{word-spacing:8.586667pt;}
.ws59{word-spacing:8.746667pt;}
.wse6{word-spacing:8.906667pt;}
.wscc{word-spacing:8.960000pt;}
.wsf2{word-spacing:9.013333pt;}
.ws85{word-spacing:9.173333pt;}
.ws7e{word-spacing:9.280000pt;}
.ws6c{word-spacing:9.386667pt;}
.wsf0{word-spacing:9.493333pt;}
.wsc8{word-spacing:9.546667pt;}
.ws54{word-spacing:9.600000pt;}
.wsb0{word-spacing:9.653333pt;}
.wsb5{word-spacing:9.706667pt;}
.wseb{word-spacing:9.813333pt;}
.wsb{word-spacing:9.866667pt;}
.ws96{word-spacing:9.920000pt;}
.ws3d{word-spacing:10.026667pt;}
.wsa8{word-spacing:10.080000pt;}
.ws67{word-spacing:10.133333pt;}
.wsd1{word-spacing:10.400000pt;}
.ws5e{word-spacing:10.453333pt;}
.wsd4{word-spacing:10.506667pt;}
.ws1e{word-spacing:10.608000pt;}
.wscd{word-spacing:10.749440pt;}
.ws30{word-spacing:10.933333pt;}
.ws2c{word-spacing:10.986667pt;}
.wsb9{word-spacing:11.040000pt;}
.ws7d{word-spacing:11.093333pt;}
.wsb4{word-spacing:11.253333pt;}
.ws1b{word-spacing:11.472000pt;}
.ws9e{word-spacing:11.786667pt;}
.ws2b{word-spacing:11.840000pt;}
.ws8d{word-spacing:12.053333pt;}
.wsde{word-spacing:12.106667pt;}
.ws4e{word-spacing:12.160000pt;}
.ws6e{word-spacing:12.266667pt;}
.ws11{word-spacing:12.373333pt;}
.ws89{word-spacing:13.120000pt;}
.ws4c{word-spacing:13.226667pt;}
.ws73{word-spacing:13.493333pt;}
.ws5d{word-spacing:13.600000pt;}
.wsb8{word-spacing:13.920000pt;}
.ws79{word-spacing:14.080000pt;}
.ws8e{word-spacing:14.186667pt;}
.ws10{word-spacing:15.040000pt;}
.ws91{word-spacing:15.360000pt;}
.ws68{word-spacing:15.733333pt;}
.ws4d{word-spacing:15.893333pt;}
.ws70{word-spacing:16.213333pt;}
.wsef{word-spacing:16.266667pt;}
.wsad{word-spacing:16.533333pt;}
.wsd0{word-spacing:16.640000pt;}
.ws20{word-spacing:16.800000pt;}
.wscf{word-spacing:17.013333pt;}
.wsc4{word-spacing:17.333333pt;}
.ws7b{word-spacing:17.493333pt;}
.ws84{word-spacing:18.026667pt;}
.ws72{word-spacing:18.400000pt;}
.ws6d{word-spacing:19.573333pt;}
.ws48{word-spacing:19.840000pt;}
.wsb7{word-spacing:21.760000pt;}
.ws9a{word-spacing:21.973333pt;}
.ws71{word-spacing:22.133333pt;}
.ws9d{word-spacing:25.333333pt;}
.wsd9{word-spacing:29.650133pt;}
.wsda{word-spacing:57.986133pt;}
.wsbc{word-spacing:277.248000pt;}
.wsbf{word-spacing:280.192000pt;}
.wsbe{word-spacing:296.192000pt;}
.wsbd{word-spacing:319.914667pt;}
.wsd7{word-spacing:529.102933pt;}
.wsf5{word-spacing:1212.652267pt;}
._e{margin-left:-52.480000pt;}
._14{margin-left:-27.520000pt;}
._d{margin-left:-26.293333pt;}
._16{margin-left:-23.200000pt;}
._18{margin-left:-21.706667pt;}
._13{margin-left:-20.320000pt;}
._12{margin-left:-18.933333pt;}
._10{margin-left:-17.653333pt;}
._6{margin-left:-16.309333pt;}
._15{margin-left:-14.758933pt;}
._11{margin-left:-13.866667pt;}
._b{margin-left:-12.290133pt;}
._53{margin-left:-11.144533pt;}
._9{margin-left:-10.240000pt;}
._3c{margin-left:-6.528000pt;}
._c{margin-left:-5.233067pt;}
._19{margin-left:-4.293333pt;}
._8{margin-left:-3.157333pt;}
._2{margin-left:-1.582933pt;}
._a{width:0.945600pt;}
._8e{width:2.138667pt;}
._73{width:4.558400pt;}
._f{width:5.973333pt;}
._0{width:10.560000pt;}
._1b{width:11.857067pt;}
._7{width:13.024160pt;}
._3{width:16.303467pt;}
._8f{width:18.137600pt;}
._7e{width:22.422400pt;}
._4{width:29.339200pt;}
._4e{width:30.805333pt;}
._5{width:31.699200pt;}
._54{width:32.972800pt;}
._1a{width:34.561067pt;}
._55{width:38.259200pt;}
._7f{width:41.546133pt;}
._24{width:42.666667pt;}
._89{width:46.158933pt;}
._60{width:48.622933pt;}
._1{width:51.093333pt;}
._88{width:52.318933pt;}
._62{width:53.961600pt;}
._5e{width:57.246933pt;}
._38{width:60.586667pt;}
._6e{width:61.501867pt;}
._5a{width:62.873067pt;}
._2f{width:65.365333pt;}
._75{width:66.377067pt;}
._58{width:68.691200pt;}
._59{width:71.456000pt;}
._3f{width:73.984000pt;}
._77{width:78.476800pt;}
._4a{width:85.034667pt;}
._80{width:85.993600pt;}
._4d{width:91.477333pt;}
._74{width:95.324800pt;}
._5b{width:101.434667pt;}
._83{width:105.170133pt;}
._34{width:113.280000pt;}
._3b{width:115.200000pt;}
._42{width:122.282667pt;}
._78{width:124.142933pt;}
._87{width:128.003200pt;}
._41{width:132.949333pt;}
._4c{width:134.144000pt;}
._4b{width:144.810667pt;}
._20{width:149.888000pt;}
._86{width:150.836267pt;}
._3a{width:157.056000pt;}
._52{width:164.057600pt;}
._56{width:166.013867pt;}
._2a{width:167.338667pt;}
._35{width:169.344000pt;}
._5c{width:172.438933pt;}
._23{width:177.450667pt;}
._33{width:188.544000pt;}
._22{width:193.450667pt;}
._67{width:202.130133pt;}
._84{width:203.195733pt;}
._21{width:204.117333pt;}
._61{width:207.592000pt;}
._63{width:210.384533pt;}
._5f{width:212.930667pt;}
._76{width:214.253867pt;}
._40{width:217.642667pt;}
._7a{width:219.829867pt;}
._32{width:221.691733pt;}
._2d{width:228.736000pt;}
._25{width:230.233600pt;}
._46{width:234.453333pt;}
._8d{width:238.556267pt;}
._8b{width:240.012267pt;}
._81{width:240.947200pt;}
._64{width:244.223467pt;}
._3d{width:245.290667pt;}
._45{width:246.613333pt;}
._2c{width:252.458667pt;}
._51{width:253.442133pt;}
._31{width:255.744000pt;}
._39{width:256.853333pt;}
._2e{width:265.088000pt;}
._29{width:266.794667pt;}
._3e{width:269.013333pt;}
._44{width:270.336000pt;}
._28{width:275.076267pt;}
._50{width:277.164800pt;}
._4f{width:288.595200pt;}
._1f{width:292.053333pt;}
._1e{width:308.053333pt;}
._6c{width:310.094400pt;}
._7d{width:312.969067pt;}
._43{width:317.781333pt;}
._1d{width:318.720000pt;}
._8a{width:327.588800pt;}
._27{width:331.776000pt;}
._30{width:334.720000pt;}
._7c{width:335.802133pt;}
._79{width:336.705600pt;}
._26{width:342.442667pt;}
._37{width:343.770667pt;}
._2b{width:345.386667pt;}
._71{width:357.238933pt;}
._36{width:374.954667pt;}
._49{width:377.045333pt;}
._7b{width:381.468267pt;}
._82{width:383.945600pt;}
._6f{width:386.026667pt;}
._48{width:400.768000pt;}
._8c{width:405.081600pt;}
._72{width:410.173867pt;}
._70{width:428.653867pt;}
._17{width:432.068267pt;}
._69{width:434.937067pt;}
._47{width:436.352000pt;}
._6b{width:468.365333pt;}
._65{width:484.176000pt;}
._6a{width:491.198400pt;}
._6d{width:493.333867pt;}
._68{width:503.970133pt;}
._57{width:507.050133pt;}
._5d{width:510.869333pt;}
._66{width:554.030400pt;}
._85{width:564.584533pt;}
._1c{width:580.181333pt;}
.fsa{font-size:28.288000pt;}
.fs8{font-size:31.824000pt;}
.fs7{font-size:35.360000pt;}
.fsd{font-size:38.293333pt;}
.fs4{font-size:38.896000pt;}
.fs5{font-size:39.324800pt;}
.fsf{font-size:40.000000pt;}
.fs9{font-size:40.192000pt;}
.fsb{font-size:40.533333pt;}
.fsc{font-size:41.066667pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fse{font-size:52.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:2.163200pt;}
.y1{bottom:39.147867pt;}
.y2{bottom:39.185200pt;}
.y29b{bottom:70.929200pt;}
.y25c{bottom:71.334533pt;}
.y1ef{bottom:71.342667pt;}
.y5e{bottom:71.345467pt;}
.y1c0{bottom:71.347333pt;}
.y14e{bottom:71.347867pt;}
.yb0{bottom:71.360667pt;}
.y117{bottom:71.374533pt;}
.y21{bottom:71.438667pt;}
.y53{bottom:76.945600pt;}
.y29a{bottom:83.729200pt;}
.y20{bottom:84.772000pt;}
.y25b{bottom:87.334533pt;}
.y5d{bottom:87.345467pt;}
.y14d{bottom:87.347867pt;}
.y1ee{bottom:87.356000pt;}
.yaf{bottom:87.360667pt;}
.y116{bottom:87.374533pt;}
.y52{bottom:91.609600pt;}
.y299{bottom:96.529200pt;}
.y1f{bottom:98.105333pt;}
.y25a{bottom:103.334533pt;}
.y5c{bottom:103.345467pt;}
.y14c{bottom:103.347867pt;}
.yae{bottom:103.360667pt;}
.y1ed{bottom:103.369333pt;}
.y1bf{bottom:103.374000pt;}
.y115{bottom:103.374533pt;}
.y51{bottom:106.273600pt;}
.y298{bottom:109.329200pt;}
.y1b1{bottom:117.453733pt;}
.y259{bottom:119.334533pt;}
.y5b{bottom:119.345467pt;}
.y14b{bottom:119.347867pt;}
.yad{bottom:119.360667pt;}
.y114{bottom:119.374533pt;}
.y1ec{bottom:119.382667pt;}
.y1be{bottom:119.387333pt;}
.y50{bottom:120.937600pt;}
.y297{bottom:122.129200pt;}
.y1e{bottom:123.438667pt;}
.y296{bottom:134.929200pt;}
.y258{bottom:135.334533pt;}
.y5a{bottom:135.345467pt;}
.y14a{bottom:135.347867pt;}
.yac{bottom:135.360667pt;}
.y113{bottom:135.374533pt;}
.y1bd{bottom:135.400667pt;}
.y4f{bottom:135.601600pt;}
.y1d{bottom:136.772000pt;}
.y1b0{bottom:140.685467pt;}
.y4e{bottom:150.265600pt;}
.y257{bottom:151.334533pt;}
.y59{bottom:151.345467pt;}
.y149{bottom:151.347867pt;}
.yab{bottom:151.360667pt;}
.y112{bottom:151.374533pt;}
.y1bc{bottom:151.414000pt;}
.y295{bottom:153.062533pt;}
.y1af{bottom:153.485467pt;}
.y28{bottom:153.721333pt;}
.y225{bottom:161.609200pt;}
.y4d{bottom:164.929600pt;}
.y294{bottom:165.862533pt;}
.y27{bottom:166.521333pt;}
.y256{bottom:167.334533pt;}
.y58{bottom:167.345467pt;}
.y148{bottom:167.347867pt;}
.yaa{bottom:167.360667pt;}
.y111{bottom:167.374533pt;}
.y1bb{bottom:167.427333pt;}
.y1ae{bottom:170.434800pt;}
.y224{bottom:173.097200pt;}
.y293{bottom:178.662533pt;}
.y26{bottom:179.321333pt;}
.y4c{bottom:179.593600pt;}
.y255{bottom:183.334533pt;}
.y57{bottom:183.345467pt;}
.y147{bottom:183.347867pt;}
.ya9{bottom:183.360667pt;}
.y110{bottom:183.374533pt;}
.y1ba{bottom:183.440667pt;}
.y1ac{bottom:188.717467pt;}
.y292{bottom:191.462533pt;}
.y25{bottom:192.121333pt;}
.y4b{bottom:194.257600pt;}
.y223{bottom:195.913200pt;}
.ye1{bottom:199.054000pt;}
.y254{bottom:199.334533pt;}
.y56{bottom:199.345467pt;}
.y146{bottom:199.347867pt;}
.ya8{bottom:199.360667pt;}
.y10f{bottom:199.374533pt;}
.y1b9{bottom:199.454000pt;}
.y1ad{bottom:201.517467pt;}
.y1ab{bottom:202.850800pt;}
.y291{bottom:204.262533pt;}
.y24{bottom:204.921333pt;}
.y4a{bottom:208.921600pt;}
.y222{bottom:212.576000pt;}
.ye0{bottom:215.054000pt;}
.y253{bottom:215.334533pt;}
.y55{bottom:215.345467pt;}
.y145{bottom:215.347867pt;}
.ya7{bottom:215.360667pt;}
.y10e{bottom:215.374533pt;}
.y1b8{bottom:215.467333pt;}
.y290{bottom:217.062533pt;}
.y23{bottom:217.721333pt;}
.y1aa{bottom:219.800133pt;}
.y49{bottom:223.585600pt;}
.y28f{bottom:229.862533pt;}
.y22{bottom:230.521333pt;}
.y221{bottom:230.573467pt;}
.ydf{bottom:231.054000pt;}
.y252{bottom:231.334533pt;}
.y54{bottom:231.345467pt;}
.y144{bottom:231.347867pt;}
.ya6{bottom:231.360667pt;}
.y10d{bottom:231.374533pt;}
.y1b7{bottom:231.480667pt;}
.y1a9{bottom:232.600133pt;}
.y48{bottom:238.249600pt;}
.y28e{bottom:242.662533pt;}
.yde{bottom:247.054000pt;}
.y251{bottom:247.334533pt;}
.y143{bottom:247.347867pt;}
.y10c{bottom:247.374533pt;}
.y1b6{bottom:247.494000pt;}
.y220{bottom:248.570933pt;}
.y1a8{bottom:250.882800pt;}
.y47{bottom:252.913600pt;}
.y28d{bottom:255.462533pt;}
.ydd{bottom:263.054000pt;}
.y250{bottom:263.334533pt;}
.y142{bottom:263.347867pt;}
.y10b{bottom:263.374533pt;}
.y1b5{bottom:263.507333pt;}
.y21f{bottom:266.568400pt;}
.y46{bottom:267.577600pt;}
.ya5{bottom:268.627333pt;}
.y1a7{bottom:269.165467pt;}
.y28c{bottom:273.595867pt;}
.ydc{bottom:279.054000pt;}
.y24f{bottom:279.334533pt;}
.y141{bottom:279.347867pt;}
.y10a{bottom:279.374533pt;}
.y1b4{bottom:279.520667pt;}
.y45{bottom:282.241600pt;}
.y21e{bottom:284.565867pt;}
.ya4{bottom:284.627333pt;}
.y78{bottom:285.020000pt;}
.y1a6{bottom:287.448133pt;}
.y28b{bottom:291.729200pt;}
.ydb{bottom:295.054000pt;}
.y24e{bottom:295.334533pt;}
.y140{bottom:295.347867pt;}
.y109{bottom:295.374533pt;}
.y1b3{bottom:295.534000pt;}
.y44{bottom:296.905600pt;}
.y77{bottom:299.684000pt;}
.y1a5{bottom:300.248133pt;}
.ya3{bottom:300.627333pt;}
.y21d{bottom:302.563333pt;}
.y28a{bottom:304.529200pt;}
.yda{bottom:311.054000pt;}
.y24d{bottom:311.334533pt;}
.y13f{bottom:311.347867pt;}
.y1b2{bottom:311.547333pt;}
.y43{bottom:311.569600pt;}
.y17a{bottom:313.918933pt;}
.y76{bottom:314.348000pt;}
.ya2{bottom:316.627333pt;}
.y1a4{bottom:318.530800pt;}
.y21c{bottom:320.560800pt;}
.y289{bottom:322.662533pt;}
.y42{bottom:326.233600pt;}
.yd9{bottom:327.054000pt;}
.y108{bottom:327.321200pt;}
.y24c{bottom:327.334533pt;}
.y13e{bottom:327.347867pt;}
.y75{bottom:329.012000pt;}
.y1a3{bottom:331.330800pt;}
.ya1{bottom:332.627333pt;}
.y179{bottom:336.651600pt;}
.y21b{bottom:338.558267pt;}
.y1eb{bottom:339.471200pt;}
.y41{bottom:340.897600pt;}
.y288{bottom:341.851867pt;}
.yd8{bottom:343.054000pt;}
.y107{bottom:343.321200pt;}
.y24b{bottom:343.334533pt;}
.y13d{bottom:343.347867pt;}
.y74{bottom:343.678667pt;}
.ya0{bottom:348.627333pt;}
.y1a2{bottom:349.613467pt;}
.y2cd{bottom:350.553200pt;}
.y304{bottom:350.723200pt;}
.y178{bottom:353.600933pt;}
.y287{bottom:354.651867pt;}
.y40{bottom:355.561600pt;}
.y21a{bottom:356.555733pt;}
.y1c2{bottom:358.603200pt;}
.yd7{bottom:359.054000pt;}
.y106{bottom:359.321200pt;}
.y24a{bottom:359.334533pt;}
.y13c{bottom:359.347867pt;}
.y2cc{bottom:361.883200pt;}
.y1ea{bottom:362.204800pt;}
.y303{bottom:362.473200pt;}
.y1c{bottom:365.503813pt;}
.y286{bottom:367.451867pt;}
.y73{bottom:367.681333pt;}
.y1a1{bottom:367.896133pt;}
.y3f{bottom:370.225600pt;}
.y177{bottom:371.883600pt;}
.y2cb{bottom:373.213200pt;}
.y1c1{bottom:373.267200pt;}
.y302{bottom:374.223200pt;}
.y219{bottom:374.553200pt;}
.yd6{bottom:375.054000pt;}
.y105{bottom:375.321200pt;}
.y249{bottom:375.334533pt;}
.y13b{bottom:375.347867pt;}
.y1a{bottom:378.836747pt;}
.y1e9{bottom:378.867600pt;}
.y285{bottom:380.251867pt;}
.y72{bottom:382.345333pt;}
.y2ca{bottom:384.543200pt;}
.y3e{bottom:384.889600pt;}
.y301{bottom:385.973200pt;}
.y1a0{bottom:386.178800pt;}
.y176{bottom:390.166267pt;}
.yd5{bottom:391.054000pt;}
.y104{bottom:391.321200pt;}
.y248{bottom:391.334533pt;}
.y13a{bottom:391.347867pt;}
.y218{bottom:392.550667pt;}
.y2c9{bottom:395.873200pt;}
.y1e7{bottom:396.865067pt;}
.y71{bottom:397.014667pt;}
.y300{bottom:397.723200pt;}
.y284{bottom:398.385200pt;}
.y3d{bottom:399.553600pt;}
.y19f{bottom:404.461467pt;}
.yd4{bottom:407.054000pt;}
.y9f{bottom:407.174000pt;}
.y2c8{bottom:407.203200pt;}
.y103{bottom:407.321200pt;}
.y247{bottom:407.334533pt;}
.y139{bottom:407.347867pt;}
.y175{bottom:408.448933pt;}
.y1e6{bottom:409.170400pt;}
.y1e8{bottom:409.185067pt;}
.y2ff{bottom:409.473200pt;}
.y217{bottom:410.548133pt;}
.y283{bottom:411.185200pt;}
.y70{bottom:411.678667pt;}
.y3c{bottom:414.217600pt;}
.y2c7{bottom:418.533200pt;}
.y2fe{bottom:421.223200pt;}
.y19e{bottom:422.744133pt;}
.yd3{bottom:423.054000pt;}
.y9e{bottom:423.174000pt;}
.y102{bottom:423.321200pt;}
.y138{bottom:423.361200pt;}
.y282{bottom:423.985200pt;}
.y6f{bottom:426.348000pt;}
.y1e5{bottom:427.167867pt;}
.y174{bottom:428.064933pt;}
.y216{bottom:428.545600pt;}
.y3b{bottom:428.881600pt;}
.y2c6{bottom:429.863200pt;}
.y2fd{bottom:432.973200pt;}
.yd2{bottom:439.054000pt;}
.y9d{bottom:439.174000pt;}
.y137{bottom:439.361200pt;}
.y6e{bottom:441.012000pt;}
.y19d{bottom:441.026800pt;}
.y2c5{bottom:441.193200pt;}
.y281{bottom:442.118533pt;}
.y3a{bottom:443.545600pt;}
.y2fc{bottom:444.723200pt;}
.y1e4{bottom:445.165333pt;}
.y173{bottom:445.664800pt;}
.y215{bottom:446.543067pt;}
.y7a{bottom:450.416333pt;}
.y2c4{bottom:452.523200pt;}
.y280{bottom:454.918533pt;}
.y246{bottom:454.961200pt;}
.yd1{bottom:455.054000pt;}
.y9c{bottom:455.174000pt;}
.y101{bottom:455.267867pt;}
.y136{bottom:455.361200pt;}
.y6d{bottom:455.681333pt;}
.y2fb{bottom:456.473200pt;}
.y1e3{bottom:457.485333pt;}
.y39{bottom:458.209600pt;}
.y19c{bottom:459.309467pt;}
.y2c3{bottom:463.853200pt;}
.y79{bottom:463.935920pt;}
.y172{bottom:463.946133pt;}
.y214{bottom:464.540533pt;}
.y27f{bottom:467.718533pt;}
.y2fa{bottom:468.223200pt;}
.y1e2{bottom:469.805333pt;}
.y6c{bottom:470.345333pt;}
.y245{bottom:470.961200pt;}
.yd0{bottom:471.054000pt;}
.y9b{bottom:471.174000pt;}
.y100{bottom:471.267867pt;}
.y135{bottom:471.361200pt;}
.y38{bottom:472.873600pt;}
.y2c2{bottom:475.183200pt;}
.y171{bottom:476.746133pt;}
.y213{bottom:476.860533pt;}
.y19b{bottom:477.592133pt;}
.y2f9{bottom:479.973200pt;}
.y6b{bottom:485.012000pt;}
.y27e{bottom:485.851867pt;}
.y2c1{bottom:486.513200pt;}
.y244{bottom:486.961200pt;}
.ycf{bottom:487.054000pt;}
.y9a{bottom:487.174000pt;}
.yff{bottom:487.267867pt;}
.y134{bottom:487.361200pt;}
.y37{bottom:487.537600pt;}
.y1e1{bottom:487.802800pt;}
.y2f8{bottom:491.723200pt;}
.y212{bottom:494.858000pt;}
.y170{bottom:495.028800pt;}
.y19a{bottom:495.874800pt;}
.y19{bottom:497.819467pt;}
.y2c0{bottom:497.843200pt;}
.y27d{bottom:498.651867pt;}
.y36{bottom:502.201600pt;}
.y243{bottom:502.961200pt;}
.yce{bottom:503.054000pt;}
.y99{bottom:503.174000pt;}
.yfe{bottom:503.267867pt;}
.y133{bottom:503.361200pt;}
.y2f7{bottom:503.473200pt;}
.y1e0{bottom:505.800267pt;}
.y211{bottom:507.178000pt;}
.y6a{bottom:509.014667pt;}
.y2bf{bottom:509.173200pt;}
.y18{bottom:511.152800pt;}
.y27c{bottom:511.451867pt;}
.y16f{bottom:513.311467pt;}
.y199{bottom:514.156933pt;}
.y2f6{bottom:515.223200pt;}
.y35{bottom:516.865600pt;}
.y242{bottom:518.961200pt;}
.ycd{bottom:519.054000pt;}
.y98{bottom:519.174000pt;}
.yfd{bottom:519.267867pt;}
.y2be{bottom:520.503200pt;}
.y69{bottom:523.678667pt;}
.y1df{bottom:523.797733pt;}
.y27b{bottom:524.251867pt;}
.y17{bottom:524.486133pt;}
.y210{bottom:525.175467pt;}
.y2f5{bottom:526.973200pt;}
.y34{bottom:531.529600pt;}
.y16e{bottom:531.594133pt;}
.y2bd{bottom:531.833200pt;}
.y198{bottom:532.439600pt;}
.y241{bottom:534.961200pt;}
.ycc{bottom:535.054000pt;}
.y97{bottom:535.174000pt;}
.yfc{bottom:535.267867pt;}
.y27a{bottom:537.051867pt;}
.y20f{bottom:537.495467pt;}
.y20c{bottom:537.865067pt;}
.y68{bottom:538.348000pt;}
.y2f4{bottom:538.723200pt;}
.y1de{bottom:541.795200pt;}
.y2bc{bottom:543.163200pt;}
.y197{bottom:545.239600pt;}
.y33{bottom:546.193600pt;}
.y195{bottom:546.572933pt;}
.y279{bottom:549.851867pt;}
.y16d{bottom:549.876800pt;}
.y20b{bottom:550.185067pt;}
.y2f3{bottom:550.473200pt;}
.y240{bottom:550.961200pt;}
.ycb{bottom:551.054000pt;}
.y96{bottom:551.174000pt;}
.y132{bottom:551.254533pt;}
.yfb{bottom:551.267867pt;}
.y67{bottom:553.017333pt;}
.y2bb{bottom:554.493200pt;}
.y20e{bottom:555.492933pt;}
.y196{bottom:558.039600pt;}
.y194{bottom:559.372933pt;}
.y1dd{bottom:559.792667pt;}
.y32{bottom:560.857600pt;}
.y2f2{bottom:562.223200pt;}
.y16{bottom:562.491467pt;}
.y20a{bottom:562.505067pt;}
.y278{bottom:562.651867pt;}
.y16c{bottom:562.676800pt;}
.y2ba{bottom:565.823200pt;}
.y23f{bottom:566.961200pt;}
.yca{bottom:567.054000pt;}
.y95{bottom:567.174000pt;}
.y131{bottom:567.254533pt;}
.yfa{bottom:567.267867pt;}
.y66{bottom:567.681333pt;}
.y1dc{bottom:572.112667pt;}
.y20d{bottom:573.490400pt;}
.y2f1{bottom:573.973200pt;}
.y209{bottom:574.825067pt;}
.y277{bottom:575.451867pt;}
.y31{bottom:575.521600pt;}
.y15{bottom:575.824800pt;}
.y193{bottom:576.322267pt;}
.y2b9{bottom:577.153200pt;}
.y16b{bottom:580.959467pt;}
.y65{bottom:582.345333pt;}
.y23e{bottom:582.961200pt;}
.yc9{bottom:583.054000pt;}
.y94{bottom:583.174000pt;}
.y130{bottom:583.254533pt;}
.yf9{bottom:583.267867pt;}
.y2f0{bottom:585.723200pt;}
.y276{bottom:588.251867pt;}
.y2b8{bottom:588.483200pt;}
.y192{bottom:589.122267pt;}
.y14{bottom:589.158133pt;}
.y1db{bottom:590.110133pt;}
.y30{bottom:590.185600pt;}
.y208{bottom:591.487867pt;}
.y16a{bottom:593.759467pt;}
.y64{bottom:597.020000pt;}
.y2ef{bottom:597.473200pt;}
.y23d{bottom:598.961200pt;}
.yc8{bottom:599.054000pt;}
.y93{bottom:599.174000pt;}
.y12f{bottom:599.254533pt;}
.yf8{bottom:599.267867pt;}
.y2b7{bottom:599.813200pt;}
.y275{bottom:601.051867pt;}
.y13{bottom:602.491467pt;}
.y2f{bottom:604.849600pt;}
.y191{bottom:607.404933pt;}
.y1da{bottom:608.107600pt;}
.y2ee{bottom:609.223200pt;}
.y207{bottom:609.485333pt;}
.y2b6{bottom:611.143200pt;}
.y63{bottom:611.684000pt;}
.y169{bottom:612.042133pt;}
.y274{bottom:613.851867pt;}
.y23c{bottom:614.961200pt;}
.yc7{bottom:615.054000pt;}
.y92{bottom:615.174000pt;}
.y12e{bottom:615.254533pt;}
.yf7{bottom:615.267867pt;}
.y12{bottom:615.824800pt;}
.y2e{bottom:619.513600pt;}
.y2ed{bottom:620.973200pt;}
.y2b5{bottom:622.473200pt;}
.y190{bottom:625.687600pt;}
.y1d9{bottom:626.105067pt;}
.y62{bottom:626.348000pt;}
.y273{bottom:626.651867pt;}
.y206{bottom:627.482800pt;}
.y11{bottom:629.158133pt;}
.y168{bottom:630.324800pt;}
.y23b{bottom:630.961200pt;}
.yc6{bottom:631.054000pt;}
.y91{bottom:631.174000pt;}
.y12d{bottom:631.254533pt;}
.yf6{bottom:631.267867pt;}
.y2ec{bottom:632.723200pt;}
.y2b4{bottom:633.803200pt;}
.y2d{bottom:634.177600pt;}
.y272{bottom:639.451867pt;}
.y61{bottom:641.012000pt;}
.y10{bottom:642.491467pt;}
.y18f{bottom:643.971067pt;}
.y1d8{bottom:644.102533pt;}
.y2eb{bottom:644.473200pt;}
.y2b3{bottom:645.133200pt;}
.y205{bottom:645.480267pt;}
.y23a{bottom:646.961200pt;}
.yc5{bottom:647.054000pt;}
.y90{bottom:647.174000pt;}
.y12c{bottom:647.254533pt;}
.yf5{bottom:647.267867pt;}
.y167{bottom:648.607467pt;}
.y2c{bottom:648.841600pt;}
.y60{bottom:655.678667pt;}
.yf{bottom:655.824800pt;}
.y2ea{bottom:656.223200pt;}
.y2b2{bottom:656.463200pt;}
.y18e{bottom:656.771067pt;}
.y271{bottom:657.585200pt;}
.y1d7{bottom:662.100000pt;}
.y239{bottom:662.961200pt;}
.yc4{bottom:663.054000pt;}
.y8f{bottom:663.174000pt;}
.y12b{bottom:663.254533pt;}
.yf4{bottom:663.267867pt;}
.y204{bottom:663.477733pt;}
.y2b{bottom:663.505600pt;}
.y166{bottom:666.890133pt;}
.y2b1{bottom:667.793200pt;}
.y2e9{bottom:667.973200pt;}
.ye{bottom:669.158133pt;}
.y18d{bottom:675.053733pt;}
.y2a{bottom:678.169600pt;}
.y238{bottom:678.961200pt;}
.yc3{bottom:679.054000pt;}
.y2b0{bottom:679.123200pt;}
.y8e{bottom:679.174000pt;}
.y12a{bottom:679.254533pt;}
.yf3{bottom:679.267867pt;}
.y2e8{bottom:679.723200pt;}
.y1d6{bottom:680.097467pt;}
.y203{bottom:681.475200pt;}
.yd{bottom:682.491467pt;}
.y5f{bottom:684.836133pt;}
.y165{bottom:685.172800pt;}
.y2af{bottom:690.453200pt;}
.y2e7{bottom:691.473200pt;}
.y270{bottom:692.241067pt;}
.y29{bottom:692.836267pt;}
.y18c{bottom:693.336400pt;}
.y237{bottom:694.961200pt;}
.yc2{bottom:695.054000pt;}
.y8d{bottom:695.174000pt;}
.y129{bottom:695.254533pt;}
.yf2{bottom:695.267867pt;}
.yc{bottom:695.824800pt;}
.y1d5{bottom:698.094933pt;}
.y202{bottom:699.472667pt;}
.y2ae{bottom:701.786533pt;}
.y2e6{bottom:703.223200pt;}
.y164{bottom:703.455467pt;}
.y26f{bottom:706.094533pt;}
.y163{bottom:708.938667pt;}
.y236{bottom:710.961200pt;}
.yc1{bottom:711.054000pt;}
.y8c{bottom:711.174000pt;}
.y128{bottom:711.254533pt;}
.yf1{bottom:711.267867pt;}
.y18b{bottom:711.619067pt;}
.y201{bottom:711.792667pt;}
.y2e5{bottom:714.973200pt;}
.y26e{bottom:715.145200pt;}
.y1d4{bottom:716.092400pt;}
.y162{bottom:721.738667pt;}
.y2e4{bottom:726.723200pt;}
.y235{bottom:726.961200pt;}
.yc0{bottom:727.054000pt;}
.y8b{bottom:727.174000pt;}
.y127{bottom:727.254533pt;}
.y200{bottom:729.790133pt;}
.y18a{bottom:729.901733pt;}
.y26d{bottom:733.801067pt;}
.y1d3{bottom:734.089867pt;}
.y2e3{bottom:738.473200pt;}
.y161{bottom:740.021333pt;}
.y26c{bottom:742.851867pt;}
.y234{bottom:742.974533pt;}
.ybf{bottom:743.054000pt;}
.y8a{bottom:743.174000pt;}
.y126{bottom:743.254533pt;}
.yb{bottom:746.169467pt;}
.y1ff{bottom:747.787600pt;}
.y189{bottom:748.184400pt;}
.y2e2{bottom:750.223200pt;}
.y2ad{bottom:751.051867pt;}
.y1d2{bottom:752.087333pt;}
.y160{bottom:758.304000pt;}
.y233{bottom:758.987867pt;}
.ybe{bottom:759.054000pt;}
.y89{bottom:759.174000pt;}
.yf0{bottom:759.174533pt;}
.y125{bottom:759.254533pt;}
.y1fe{bottom:760.107600pt;}
.y188{bottom:760.984400pt;}
.y26b{bottom:761.507867pt;}
.y2e1{bottom:761.973200pt;}
.ya{bottom:763.769467pt;}
.y2ac{bottom:763.851867pt;}
.y1d1{bottom:770.084800pt;}
.y26a{bottom:770.558533pt;}
.y1fd{bottom:772.427600pt;}
.y2e0{bottom:773.723200pt;}
.y232{bottom:775.001200pt;}
.ybd{bottom:775.054000pt;}
.y88{bottom:775.174000pt;}
.yef{bottom:775.174533pt;}
.y124{bottom:775.254533pt;}
.y15f{bottom:776.586667pt;}
.y2ab{bottom:776.651867pt;}
.y187{bottom:779.919067pt;}
.y9{bottom:781.369467pt;}
.y2df{bottom:785.473200pt;}
.y1d0{bottom:788.082267pt;}
.y269{bottom:789.214533pt;}
.y2aa{bottom:789.451867pt;}
.y1fc{bottom:790.425067pt;}
.y231{bottom:791.014533pt;}
.ybc{bottom:791.054000pt;}
.y87{bottom:791.174000pt;}
.yee{bottom:791.174533pt;}
.y123{bottom:791.254533pt;}
.y15e{bottom:794.869333pt;}
.y2de{bottom:797.223200pt;}
.y268{bottom:798.265200pt;}
.y186{bottom:798.852000pt;}
.y2a9{bottom:802.251867pt;}
.y1cf{bottom:806.079733pt;}
.y230{bottom:807.027867pt;}
.y86{bottom:807.174000pt;}
.yed{bottom:807.174533pt;}
.y122{bottom:807.254533pt;}
.y1fb{bottom:808.422533pt;}
.y2dd{bottom:808.973200pt;}
.y15d{bottom:813.152000pt;}
.y2a8{bottom:815.051867pt;}
.y267{bottom:816.921200pt;}
.y185{bottom:817.134667pt;}
.y2dc{bottom:820.723200pt;}
.ybb{bottom:822.747333pt;}
.y22f{bottom:823.041200pt;}
.y85{bottom:823.174000pt;}
.yec{bottom:823.174533pt;}
.y121{bottom:823.254533pt;}
.y1ce{bottom:824.077200pt;}
.y266{bottom:825.971867pt;}
.y1fa{bottom:826.420000pt;}
.y2a7{bottom:827.851867pt;}
.y15c{bottom:831.434667pt;}
.y2db{bottom:832.473200pt;}
.y8{bottom:833.614800pt;}
.y184{bottom:835.417333pt;}
.yba{bottom:838.747333pt;}
.y22e{bottom:839.054533pt;}
.y84{bottom:839.174000pt;}
.yeb{bottom:839.174533pt;}
.y120{bottom:839.254533pt;}
.y2a6{bottom:840.651867pt;}
.y1cd{bottom:842.074667pt;}
.y2da{bottom:844.223200pt;}
.y1f9{bottom:844.417467pt;}
.y265{bottom:844.627867pt;}
.y15b{bottom:849.717333pt;}
.y2a5{bottom:853.451867pt;}
.y264{bottom:853.678533pt;}
.y183{bottom:853.700000pt;}
.yb9{bottom:854.747333pt;}
.y22d{bottom:855.067867pt;}
.y83{bottom:855.174000pt;}
.yea{bottom:855.174533pt;}
.y11f{bottom:855.254533pt;}
.y1f7{bottom:855.772400pt;}
.y2d9{bottom:855.973200pt;}
.y1cc{bottom:860.072133pt;}
.y1f8{bottom:862.414933pt;}
.y2d8{bottom:867.723200pt;}
.y15a{bottom:868.000000pt;}
.y1f6{bottom:868.092400pt;}
.y7{bottom:868.286800pt;}
.yb8{bottom:870.747333pt;}
.y22c{bottom:871.081200pt;}
.y82{bottom:871.174000pt;}
.ye9{bottom:871.174533pt;}
.y182{bottom:871.983867pt;}
.y263{bottom:872.334533pt;}
.y1c9{bottom:874.096400pt;}
.y2a4{bottom:876.918533pt;}
.y1cb{bottom:878.069600pt;}
.y2d7{bottom:879.473200pt;}
.y1f5{bottom:880.412400pt;}
.y159{bottom:880.800000pt;}
.y262{bottom:881.385200pt;}
.y180{bottom:883.601333pt;}
.y1c8{bottom:886.416400pt;}
.yb7{bottom:886.747333pt;}
.y22b{bottom:887.094533pt;}
.y81{bottom:887.174000pt;}
.ye8{bottom:887.174533pt;}
.y11e{bottom:887.187867pt;}
.y156{bottom:889.601333pt;}
.y2a3{bottom:889.718533pt;}
.y181{bottom:890.266533pt;}
.y2d6{bottom:891.223200pt;}
.y1f4{bottom:892.732400pt;}
.y1ca{bottom:894.732400pt;}
.y17f{bottom:896.401333pt;}
.y158{bottom:897.749333pt;}
.y1c7{bottom:898.736400pt;}
.y261{bottom:900.041200pt;}
.y155{bottom:902.401333pt;}
.y2a2{bottom:902.518533pt;}
.yb6{bottom:902.747333pt;}
.y6{bottom:902.958800pt;}
.y2d5{bottom:902.973200pt;}
.y22a{bottom:903.107867pt;}
.y80{bottom:903.174000pt;}
.ye7{bottom:903.174533pt;}
.y11d{bottom:903.187867pt;}
.y260{bottom:909.091867pt;}
.y17e{bottom:909.201333pt;}
.y157{bottom:911.201333pt;}
.y1f0{bottom:913.399200pt;}
.y2d4{bottom:914.723200pt;}
.y154{bottom:915.201333pt;}
.y2a1{bottom:915.318533pt;}
.y1c3{bottom:915.399200pt;}
.yb5{bottom:918.747333pt;}
.y229{bottom:919.121200pt;}
.y7f{bottom:919.174000pt;}
.ye6{bottom:919.174533pt;}
.y11c{bottom:919.187867pt;}
.y2d3{bottom:926.473200pt;}
.y25f{bottom:927.747867pt;}
.y2a0{bottom:928.118533pt;}
.y17b{bottom:930.150667pt;}
.y1f1{bottom:931.396667pt;}
.y151{bottom:932.150667pt;}
.y1c4{bottom:933.396667pt;}
.yb4{bottom:934.747333pt;}
.y228{bottom:935.134533pt;}
.y7e{bottom:935.174000pt;}
.ye5{bottom:935.174533pt;}
.y11b{bottom:935.187867pt;}
.y25e{bottom:936.801200pt;}
.y5{bottom:937.630800pt;}
.y2d2{bottom:938.223200pt;}
.y29f{bottom:940.918533pt;}
.y17c{bottom:942.950667pt;}
.y1f2{bottom:943.716667pt;}
.y152{bottom:944.950667pt;}
.y1c5{bottom:945.716667pt;}
.y2d1{bottom:949.973200pt;}
.yb3{bottom:950.747333pt;}
.y227{bottom:951.147867pt;}
.y7d{bottom:951.174000pt;}
.ye4{bottom:951.174533pt;}
.y11a{bottom:951.187867pt;}
.y17d{bottom:955.750667pt;}
.y1f3{bottom:956.036667pt;}
.y153{bottom:957.750667pt;}
.y1c6{bottom:958.036667pt;}
.y29e{bottom:959.051867pt;}
.y2d0{bottom:961.723200pt;}
.y25d{bottom:966.654533pt;}
.yb2{bottom:966.747333pt;}
.y226{bottom:967.161200pt;}
.y7c{bottom:967.174000pt;}
.ye3{bottom:967.174533pt;}
.y119{bottom:967.187867pt;}
.y29d{bottom:971.851867pt;}
.y4{bottom:972.302800pt;}
.y2cf{bottom:973.473200pt;}
.y150{bottom:976.366533pt;}
.yb1{bottom:982.747333pt;}
.y7b{bottom:983.174000pt;}
.ye2{bottom:983.174533pt;}
.y118{bottom:983.187867pt;}
.y29c{bottom:984.651867pt;}
.y2ce{bottom:985.223200pt;}
.y3{bottom:1014.174400pt;}
.y14f{bottom:1014.174533pt;}
.h24{height:21.272576pt;}
.h23{height:27.992427pt;}
.h11{height:28.616704pt;}
.h26{height:29.240000pt;}
.h9{height:29.493600pt;}
.h1f{height:29.629867pt;}
.h20{height:30.019733pt;}
.h21{height:30.078400pt;}
.ha{height:31.061333pt;}
.h14{height:31.189333pt;}
.h3{height:32.085333pt;}
.h13{height:35.088000pt;}
.h22{height:35.358400pt;}
.hc{height:36.096000pt;}
.h1e{height:36.522667pt;}
.h8{height:36.541333pt;}
.h25{height:36.920000pt;}
.h16{height:37.269995pt;}
.h1a{height:37.270528pt;}
.h1c{height:37.272661pt;}
.h17{height:37.273195pt;}
.h19{height:37.276395pt;}
.h1b{height:37.277461pt;}
.h1d{height:37.277995pt;}
.h18{height:37.281195pt;}
.h2{height:38.826667pt;}
.h4{height:38.986667pt;}
.hd{height:39.146667pt;}
.h15{height:39.878528pt;}
.hb{height:40.960000pt;}
.hf{height:45.510315pt;}
.h10{height:45.520981pt;}
.h12{height:49.900907pt;}
.he{height:49.954240pt;}
.h6{height:54.832976pt;}
.h7{height:54.833509pt;}
.h5{height:85.250000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:77.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x13{left:-420.537600pt;}
.x0{left:0.000000pt;}
.x8{left:13.985733pt;}
.x6{left:54.000000pt;}
.x20{left:58.000000pt;}
.x3{left:59.066667pt;}
.xe{left:66.000000pt;}
.x25{left:75.260000pt;}
.x9{left:77.076400pt;}
.x7{left:79.833333pt;}
.x21{left:116.666667pt;}
.x14{left:138.433600pt;}
.x4{left:195.892800pt;}
.x2{left:213.632267pt;}
.x19{left:237.539867pt;}
.x22{left:265.677067pt;}
.x15{left:340.630933pt;}
.x1a{left:347.310533pt;}
.x1b{left:354.026533pt;}
.xf{left:409.173333pt;}
.x10{left:421.178533pt;}
.x26{left:430.340000pt;}
.x16{left:441.068267pt;}
.x1f{left:447.765200pt;}
.x1d{left:454.442533pt;}
.x23{left:456.339333pt;}
.xa{left:477.695200pt;}
.xb{left:485.696000pt;}
.xc{left:496.253200pt;}
.xd{left:501.696000pt;}
.x17{left:538.838933pt;}
.x1e{left:552.213200pt;}
.x24{left:600.339600pt;}
.x5{left:612.329467pt;}
.x18{left:639.276267pt;}
.x11{left:643.516000pt;}
.x1c{left:684.130267pt;}
.x1{left:716.212667pt;}
.x12{left:733.301467pt;}
}




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