
    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_d83bbe1bcca050dd9a3947fd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.100000;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_177f9c9f4b6f23c7be58d4d3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.108000;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_7f7ebc3d6c4043c4ab66055f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.108000;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_7f7ebc3d6c4043c4ab66055f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.108000;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_4bad9919aca8f42aeac11bf7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.148000;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_61460bf094a6a97ec11f74a3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.008000;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_d83bbe1bcca050dd9a3947fd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.100000;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_74223ca447e2ebe6f66ef604.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.105000;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_95354e5409872f32dbfb0139.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.105000;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_a2bf5f970ad595dcd454c125.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.996000;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_1b2e2e01a844b5d14e8d0ae9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.108500;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_61c33ad021acee41bc24737f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.930000;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_b16a77d8a61aba563f56bfe9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.694000;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_2e0b4f725471093db2bf1352.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.949000;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_d83bbe1bcca050dd9a3947fd.woff2')format("woff");}.fff{font-family:fff;line-height:1.100000;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_230563e2b15074957f03f332.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.158000;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_540c97127b4e33ddec3a1a3f.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.158000;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_04b040cbd8c0bf5caf569d8a.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.158000;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_8cf60df7b834d37419611106.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.150000;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;}
.m5{transform:matrix(0.242574,0.000000,-0.060481,0.242574,0,0);-ms-transform:matrix(0.242574,0.000000,-0.060481,0.242574,0,0);-webkit-transform:matrix(0.242574,0.000000,-0.060481,0.242574,0,0);}
.m7{transform:matrix(0.246202,0.000000,-0.043413,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043413,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043413,0.246202,0,0);}
.m3{transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);}
.m4{transform:matrix(0.246202,0.000000,-0.043411,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043411,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043411,0.246202,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);}
.m6{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v4{vertical-align:-23.976000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.914800px;}
.v5{vertical-align:36.000000px;}
.v2{vertical-align:39.959400px;}
.v6{vertical-align:48.000000px;}
.v1{vertical-align:66.000000px;}
.lsb{letter-spacing:-6.264000px;}
.ls22{letter-spacing:-2.736000px;}
.ls25{letter-spacing:-2.193321px;}
.ls26{letter-spacing:-1.944000px;}
.ls1e{letter-spacing:-1.721016px;}
.ls24{letter-spacing:-1.595088px;}
.ls12{letter-spacing:-1.368000px;}
.ls10{letter-spacing:-1.152000px;}
.ls1d{letter-spacing:-1.080000px;}
.ls21{letter-spacing:-1.049400px;}
.ls16{letter-spacing:-0.965448px;}
.lsc{letter-spacing:-0.950439px;}
.lsa{letter-spacing:-0.936000px;}
.ls20{letter-spacing:-0.881496px;}
.ls8{letter-spacing:-0.792000px;}
.ls18{letter-spacing:-0.755568px;}
.ls6{letter-spacing:-0.731107px;}
.ls1b{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.657996px;}
.ls9{letter-spacing:-0.648000px;}
.ls1a{letter-spacing:-0.587664px;}
.ls11{letter-spacing:-0.576000px;}
.ls23{letter-spacing:-0.511775px;}
.ls17{letter-spacing:-0.504000px;}
.lse{letter-spacing:-0.480000px;}
.ls5{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.219332px;}
.lsf{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.209880px;}
.ls7{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.435720px;}
.lsd{letter-spacing:0.480000px;}
.ls19{letter-spacing:0.671616px;}
.ls27{letter-spacing:0.839520px;}
.ls3{letter-spacing:1.161720px;}
.ls13{letter-spacing:1.245720px;}
.ls28{letter-spacing:2.040000px;}
.ls29{letter-spacing:2.340000px;}
.ls2{letter-spacing:2.364864px;}
.ls2a{letter-spacing:2.376100px;}
.ls0{letter-spacing:3.300000px;}
.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;}
}
.ws37{word-spacing:-20.397883px;}
.ws2d{word-spacing:-20.088000px;}
.wsef{word-spacing:-19.886108px;}
.ws102{word-spacing:-19.739887px;}
.wsd1{word-spacing:-19.728000px;}
.ws43{word-spacing:-19.666776px;}
.wse4{word-spacing:-19.584000px;}
.ws58{word-spacing:-19.447444px;}
.ws51{word-spacing:-19.296000px;}
.ws9e{word-spacing:-19.152000px;}
.wsb9{word-spacing:-19.008000px;}
.wsfa{word-spacing:-18.144000px;}
.ws11b{word-spacing:-16.500000px;}
.ws0{word-spacing:-15.763800px;}
.ws2{word-spacing:-15.000000px;}
.ws6a{word-spacing:-14.580000px;}
.ws4{word-spacing:-13.597968px;}
.wsbc{word-spacing:-12.690000px;}
.wsfb{word-spacing:-12.550824px;}
.wsaa{word-spacing:-12.382920px;}
.ws6e{word-spacing:-12.288000px;}
.wsbb{word-spacing:-11.921184px;}
.ws6d{word-spacing:-11.808000px;}
.ws36{word-spacing:-11.711304px;}
.wsab{word-spacing:-11.123640px;}
.wsa9{word-spacing:-10.955736px;}
.wsca{word-spacing:-10.829808px;}
.ws9a{word-spacing:-10.745856px;}
.wsd2{word-spacing:-10.661904px;}
.wsf0{word-spacing:-10.116216px;}
.wsba{word-spacing:-9.990288px;}
.ws3d{word-spacing:-9.216000px;}
.wsbe{word-spacing:-7.056000px;}
.ws10{word-spacing:-6.600000px;}
.wsbd{word-spacing:-6.506852px;}
.wsb4{word-spacing:-6.120000px;}
.ws106{word-spacing:-5.616000px;}
.wsa7{word-spacing:-5.544000px;}
.ws136{word-spacing:-5.070000px;}
.wsa8{word-spacing:-5.040000px;}
.ws82{word-spacing:-4.968000px;}
.ws116{word-spacing:-4.818000px;}
.ws11d{word-spacing:-4.620000px;}
.wse0{word-spacing:-4.176000px;}
.wsd4{word-spacing:-4.050000px;}
.wse7{word-spacing:-3.960000px;}
.ws35{word-spacing:-3.816000px;}
.ws114{word-spacing:-3.762000px;}
.wseb{word-spacing:-3.744000px;}
.ws117{word-spacing:-3.696000px;}
.wsa2{word-spacing:-3.672000px;}
.ws53{word-spacing:-3.600000px;}
.ws68{word-spacing:-3.510000px;}
.wsee{word-spacing:-3.456000px;}
.wsc4{word-spacing:-3.384000px;}
.wsdc{word-spacing:-3.348000px;}
.wsf9{word-spacing:-3.294000px;}
.ws9c{word-spacing:-3.240000px;}
.ws87{word-spacing:-3.216870px;}
.ws54{word-spacing:-3.168000px;}
.ws67{word-spacing:-3.132000px;}
.ws61{word-spacing:-2.952000px;}
.ws115{word-spacing:-2.838000px;}
.wsb6{word-spacing:-2.808000px;}
.ws89{word-spacing:-2.778206px;}
.ws2a{word-spacing:-2.772000px;}
.ws88{word-spacing:-2.736000px;}
.ws81{word-spacing:-2.592000px;}
.wsfd{word-spacing:-2.376000px;}
.wsb5{word-spacing:-2.304000px;}
.ws1b{word-spacing:-2.244000px;}
.wscb{word-spacing:-2.106000px;}
.ws133{word-spacing:-2.040000px;}
.wsae{word-spacing:-1.998000px;}
.ws34{word-spacing:-1.944000px;}
.ws2b{word-spacing:-1.848000px;}
.wsa0{word-spacing:-1.656000px;}
.ws11c{word-spacing:-1.650000px;}
.ws2c{word-spacing:-1.500000px;}
.ws96{word-spacing:-1.440000px;}
.ws50{word-spacing:-1.404000px;}
.ws7e{word-spacing:-1.392000px;}
.wsd6{word-spacing:-1.296000px;}
.ws3c{word-spacing:-1.152000px;}
.wscf{word-spacing:-1.080000px;}
.ws127{word-spacing:-1.056000px;}
.ws4e{word-spacing:-1.008000px;}
.ws62{word-spacing:-0.864000px;}
.wsd7{word-spacing:-0.792000px;}
.ws40{word-spacing:-0.720000px;}
.wsc5{word-spacing:-0.702000px;}
.wsd0{word-spacing:-0.648000px;}
.ws38{word-spacing:-0.576000px;}
.wsc9{word-spacing:-0.540000px;}
.ws125{word-spacing:-0.528000px;}
.wsf6{word-spacing:-0.504000px;}
.ws131{word-spacing:-0.462000px;}
.ws57{word-spacing:-0.432000px;}
.ws137{word-spacing:-0.390000px;}
.wsc2{word-spacing:-0.288000px;}
.ws78{word-spacing:-0.240000px;}
.ws7a{word-spacing:-0.192000px;}
.ws104{word-spacing:-0.144000px;}
.wse9{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
.ws12c{word-spacing:0.066000px;}
.wsfe{word-spacing:0.072000px;}
.ws80{word-spacing:0.144000px;}
.ws8f{word-spacing:0.216000px;}
.ws1f{word-spacing:0.330000px;}
.ws52{word-spacing:0.360000px;}
.wsa3{word-spacing:0.432000px;}
.ws79{word-spacing:0.480000px;}
.wsa4{word-spacing:0.504000px;}
.wsf5{word-spacing:0.511775px;}
.ws90{word-spacing:0.576000px;}
.ws11a{word-spacing:0.594000px;}
.ws55{word-spacing:0.648000px;}
.ws3b{word-spacing:0.720000px;}
.ws132{word-spacing:0.726000px;}
.wsce{word-spacing:0.792000px;}
.ws4b{word-spacing:0.864000px;}
.ws64{word-spacing:0.877328px;}
.ws4f{word-spacing:0.918000px;}
.wsbf{word-spacing:0.936000px;}
.wsc3{word-spacing:0.950439px;}
.wsde{word-spacing:0.972000px;}
.ws65{word-spacing:1.008000px;}
.ws91{word-spacing:1.080000px;}
.ws139{word-spacing:1.092000px;}
.ws26{word-spacing:1.122000px;}
.ws85{word-spacing:1.152000px;}
.wse6{word-spacing:1.296000px;}
.wsc8{word-spacing:1.350000px;}
.ws3a{word-spacing:1.368000px;}
.ws25{word-spacing:1.386000px;}
.wsff{word-spacing:1.584000px;}
.ws124{word-spacing:1.782000px;}
.wsdb{word-spacing:1.800000px;}
.wsa6{word-spacing:1.872000px;}
.ws2f{word-spacing:1.944000px;}
.ws121{word-spacing:1.980000px;}
.wsb1{word-spacing:1.998000px;}
.ws3e{word-spacing:2.016000px;}
.ws12e{word-spacing:2.112000px;}
.ws110{word-spacing:2.178000px;}
.wsf4{word-spacing:2.193321px;}
.wsad{word-spacing:2.268000px;}
.ws103{word-spacing:2.304000px;}
.wse8{word-spacing:2.376000px;}
.ws31{word-spacing:2.520000px;}
.wsaf{word-spacing:2.538000px;}
.ws12d{word-spacing:2.574000px;}
.wsb0{word-spacing:2.646000px;}
.wsec{word-spacing:2.736000px;}
.wsb2{word-spacing:2.808000px;}
.wse5{word-spacing:2.880000px;}
.ws101{word-spacing:2.970000px;}
.ws13{word-spacing:3.036000px;}
.ws45{word-spacing:3.070649px;}
.ws3f{word-spacing:3.096000px;}
.ws17{word-spacing:3.102000px;}
.ws69{word-spacing:3.186000px;}
.ws138{word-spacing:3.198000px;}
.ws8e{word-spacing:3.240000px;}
.ws111{word-spacing:3.366000px;}
.ws97{word-spacing:3.384000px;}
.wsa1{word-spacing:3.456000px;}
.ws92{word-spacing:3.528000px;}
.ws12b{word-spacing:3.564000px;}
.ws94{word-spacing:3.582424px;}
.wsc7{word-spacing:3.618000px;}
.ws5d{word-spacing:3.744000px;}
.ws112{word-spacing:3.762000px;}
.ws4d{word-spacing:3.816000px;}
.ws56{word-spacing:3.960000px;}
.wsdf{word-spacing:4.032000px;}
.ws5c{word-spacing:4.104000px;}
.ws123{word-spacing:4.158000px;}
.ws84{word-spacing:4.176000px;}
.ws9f{word-spacing:4.248000px;}
.ws20{word-spacing:4.290000px;}
.wscc{word-spacing:4.320000px;}
.ws99{word-spacing:4.536000px;}
.wsf1{word-spacing:4.608000px;}
.ws1e{word-spacing:4.818000px;}
.ws11e{word-spacing:4.950000px;}
.ws118{word-spacing:5.016000px;}
.ws30{word-spacing:5.040000px;}
.wsf7{word-spacing:5.112000px;}
.ws49{word-spacing:5.184000px;}
.ws86{word-spacing:5.190859px;}
.wsb3{word-spacing:5.256000px;}
.wsf8{word-spacing:5.454000px;}
.ws60{word-spacing:5.472000px;}
.ws8{word-spacing:5.478000px;}
.ws5{word-spacing:5.544000px;}
.ws42{word-spacing:5.616000px;}
.ws4a{word-spacing:5.688000px;}
.wsed{word-spacing:5.760000px;}
.ws48{word-spacing:6.048000px;}
.ws28{word-spacing:6.138000px;}
.ws12{word-spacing:6.270000px;}
.ws140{word-spacing:6.396000px;}
.ws5e{word-spacing:6.408000px;}
.ws100{word-spacing:6.426000px;}
.ws11f{word-spacing:6.468000px;}
.wsac{word-spacing:6.534000px;}
.ws107{word-spacing:6.552000px;}
.ws5a{word-spacing:6.696000px;}
.wsfc{word-spacing:6.840000px;}
.ws108{word-spacing:6.912000px;}
.ws128{word-spacing:6.930000px;}
.ws1d{word-spacing:6.996000px;}
.wsf2{word-spacing:7.128000px;}
.ws5b{word-spacing:7.344000px;}
.ws113{word-spacing:7.392000px;}
.ws4c{word-spacing:7.416000px;}
.ws7f{word-spacing:7.488000px;}
.ws9d{word-spacing:7.560000px;}
.ws29{word-spacing:7.590000px;}
.ws66{word-spacing:7.632000px;}
.wsd3{word-spacing:7.668000px;}
.ws41{word-spacing:7.776000px;}
.wse3{word-spacing:7.992000px;}
.ws12a{word-spacing:8.052000px;}
.ws47{word-spacing:8.064000px;}
.ws59{word-spacing:8.280000px;}
.ws13f{word-spacing:8.346000px;}
.wsd8{word-spacing:8.352000px;}
.ws7c{word-spacing:8.370000px;}
.ws7d{word-spacing:8.499114px;}
.ws32{word-spacing:8.568000px;}
.wsdd{word-spacing:8.586000px;}
.wsc1{word-spacing:8.640000px;}
.ws33{word-spacing:8.700172px;}
.ws21{word-spacing:8.712000px;}
.wsb{word-spacing:8.778000px;}
.ws129{word-spacing:8.844000px;}
.wsc6{word-spacing:8.856000px;}
.wsf{word-spacing:8.910000px;}
.ws93{word-spacing:8.928000px;}
.ws95{word-spacing:9.144000px;}
.ws8a{word-spacing:9.211947px;}
.wsda{word-spacing:9.288000px;}
.ws10d{word-spacing:9.306000px;}
.wse1{word-spacing:9.360000px;}
.ws46{word-spacing:9.720000px;}
.ws13d{word-spacing:9.750000px;}
.ws119{word-spacing:9.834000px;}
.wsd9{word-spacing:9.864000px;}
.ws13e{word-spacing:9.900416px;}
.wsa5{word-spacing:9.936000px;}
.ws109{word-spacing:10.008000px;}
.ws44{word-spacing:10.016165px;}
.ws10b{word-spacing:10.098000px;}
.ws12f{word-spacing:10.164000px;}
.wsb7{word-spacing:10.296000px;}
.wscd{word-spacing:10.368000px;}
.wsd5{word-spacing:10.512000px;}
.ws83{word-spacing:10.728000px;}
.ws10e{word-spacing:10.758000px;}
.ws39{word-spacing:10.872000px;}
.ws10a{word-spacing:10.890000px;}
.wsb8{word-spacing:10.908000px;}
.wsf3{word-spacing:10.944000px;}
.wsc0{word-spacing:11.160000px;}
.ws5f{word-spacing:11.232000px;}
.ws13a{word-spacing:11.622000px;}
.ws11{word-spacing:11.748000px;}
.ws2e{word-spacing:12.024000px;}
.ws9{word-spacing:12.276000px;}
.ws22{word-spacing:12.474000px;}
.ws24{word-spacing:12.738000px;}
.wsea{word-spacing:13.104000px;}
.ws126{word-spacing:14.058000px;}
.ws27{word-spacing:14.124000px;}
.ws16{word-spacing:14.256000px;}
.ws130{word-spacing:14.652000px;}
.wse2{word-spacing:14.760000px;}
.ws63{word-spacing:15.264000px;}
.ws122{word-spacing:15.312000px;}
.ws18{word-spacing:15.510000px;}
.ws9b{word-spacing:15.552000px;}
.ws14{word-spacing:15.576000px;}
.ws13b{word-spacing:17.082000px;}
.wsd{word-spacing:17.160000px;}
.ws13c{word-spacing:17.345529px;}
.ws23{word-spacing:17.490000px;}
.ws10f{word-spacing:18.150000px;}
.ws98{word-spacing:18.504000px;}
.ws10c{word-spacing:18.810000px;}
.wsa{word-spacing:19.272000px;}
.ws120{word-spacing:19.866000px;}
.ws105{word-spacing:20.808000px;}
.ws15{word-spacing:21.186000px;}
.wse{word-spacing:21.780000px;}
.ws135{word-spacing:23.478000px;}
.ws1c{word-spacing:23.628000px;}
.ws134{word-spacing:29.406000px;}
.wsc{word-spacing:30.690000px;}
.ws6{word-spacing:37.092000px;}
.ws7{word-spacing:38.478000px;}
.ws1a{word-spacing:43.362000px;}
.ws8b{word-spacing:51.120000px;}
.ws19{word-spacing:51.942000px;}
.ws8c{word-spacing:52.684993px;}
.ws8d{word-spacing:58.992352px;}
.ws6b{word-spacing:135.180000px;}
.ws6f{word-spacing:288.000000px;}
.ws6c{word-spacing:302.520000px;}
.ws70{word-spacing:306.048000px;}
.ws73{word-spacing:393.408000px;}
.ws74{word-spacing:409.152000px;}
.ws76{word-spacing:411.168000px;}
.ws77{word-spacing:417.739200px;}
.ws71{word-spacing:564.480000px;}
.ws75{word-spacing:608.616000px;}
.ws72{word-spacing:650.112000px;}
.ws1{word-spacing:1211.112000px;}
.ws7b{word-spacing:1314.048000px;}
._15{margin-left:-12.064526px;}
._18{margin-left:-10.933387px;}
._e{margin-left:-9.533839px;}
._d{margin-left:-8.285121px;}
._4{margin-left:-7.143440px;}
._3{margin-left:-5.920147px;}
._6{margin-left:-4.648061px;}
._1{margin-left:-3.561600px;}
._0{margin-left:-1.851960px;}
._2{width:1.918448px;}
._16{width:3.070050px;}
._5{width:4.086750px;}
._14{width:5.125230px;}
._b{width:6.609600px;}
._c{width:7.826400px;}
._f{width:9.073560px;}
._1b{width:10.150440px;}
._11{width:11.232000px;}
._12{width:12.636000px;}
._10{width:13.716000px;}
._13{width:14.919960px;}
._17{width:15.943320px;}
._3c{width:17.131080px;}
._a{width:18.135960px;}
._1c{width:21.259080px;}
._19{width:23.140800px;}
._1a{width:24.940800px;}
._8{width:64.074000px;}
._7{width:65.115960px;}
._2e{width:107.047920px;}
._32{width:161.967840px;}
._29{width:187.019947px;}
._2b{width:202.347960px;}
._31{width:236.291880px;}
._1d{width:244.063920px;}
._27{width:254.599920px;}
._28{width:275.719920px;}
._2f{width:278.187960px;}
._2c{width:301.861560px;}
._1f{width:316.663920px;}
._39{width:324.171941px;}
._34{width:333.051960px;}
._35{width:335.499960px;}
._33{width:341.555880px;}
._26{width:383.280000px;}
._36{width:396.144000px;}
._2a{width:408.919920px;}
._23{width:415.015920px;}
._24{width:464.715960px;}
._3a{width:484.203960px;}
._20{width:488.311920px;}
._37{width:515.835960px;}
._22{width:523.467960px;}
._25{width:543.051960px;}
._30{width:560.523960px;}
._38{width:576.288000px;}
._9{width:822.517432px;}
._3b{width:1078.704000px;}
._2d{width:1126.128000px;}
._21{width:1168.251960px;}
._1e{width:1242.699960px;}
.fc6{color:rgb(172,43,40);}
.fc3{color:rgb(184,76,63);}
.fc2{color:rgb(119,24,20);}
.fc5{color:transparent;}
.fc1{color:rgb(113,104,105);}
.fc4{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs11{font-size:41.976000px;}
.fs12{font-size:48.000000px;}
.fs10{font-size:54.000000px;}
.fs13{font-size:54.832992px;}
.fsa{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs8{font-size:67.080000px;}
.fsd{font-size:69.960000px;}
.fse{font-size:72.000000px;}
.fs6{font-size:72.240000px;}
.fsf{font-size:73.110691px;}
.fs7{font-size:77.400000px;}
.fs16{font-size:78.000000px;}
.fs17{font-size:79.203327px;}
.fs5{font-size:82.770000px;}
.fsb{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.fs0{font-size:105.840000px;}
.fs4{font-size:118.243200px;}
.fsc{font-size:120.000000px;}
.fs14{font-size:123.673694px;}
.fs15{font-size:204.000000px;}
.fs3{font-size:234.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:16.103700px;}
.y3d{bottom:50.936850px;}
.y2{bottom:54.000000px;}
.y3c{bottom:67.436850px;}
.y161{bottom:75.811650px;}
.y22d{bottom:77.054700px;}
.y2b6{bottom:84.283050px;}
.yea{bottom:85.228650px;}
.y3e{bottom:86.834700px;}
.y40{bottom:88.322850px;}
.y26b{bottom:89.051250px;}
.y22c{bottom:92.053200px;}
.ybd{bottom:92.597850px;}
.y240{bottom:93.286050px;}
.y317{bottom:93.428550px;}
.y1e7{bottom:93.543300px;}
.y63{bottom:93.543750px;}
.y87{bottom:93.544800px;}
.y26e{bottom:93.546300px;}
.yaa{bottom:93.546750px;}
.y132{bottom:95.061300px;}
.y2b5{bottom:96.284550px;}
.y36d{bottom:96.586350px;}
.y33a{bottom:97.585500px;}
.y2d7{bottom:97.675650px;}
.y182{bottom:97.809900px;}
.y1c5{bottom:97.855650px;}
.y21e{bottom:97.927650px;}
.y1a4{bottom:97.981500px;}
.y397{bottom:98.331000px;}
.ye9{bottom:101.482650px;}
.y26a{bottom:104.049750px;}
.y160{bottom:105.817650px;}
.y22b{bottom:107.051700px;}
.y2b4{bottom:108.286050px;}
.y316{bottom:108.427050px;}
.y86{bottom:108.543300px;}
.y26d{bottom:108.544800px;}
.y281{bottom:108.545250px;}
.y23f{bottom:109.540050px;}
.ye8{bottom:113.484150px;}
.y27{bottom:116.581350px;}
.y131{bottom:116.721300px;}
.y62{bottom:117.047250px;}
.ya9{bottom:117.050250px;}
.y269{bottom:119.048250px;}
.y36c{bottom:119.224350px;}
.y396{bottom:120.837000px;}
.y22a{bottom:122.050200px;}
.y130{bottom:122.721300px;}
.y315{bottom:123.425550px;}
.y26c{bottom:123.543300px;}
.yb9{bottom:124.218900px;}
.y2b3{bottom:124.540050px;}
.y1e6{bottom:125.221950px;}
.y23e{bottom:125.794050px;}
.y223{bottom:126.867450px;}
.y339{bottom:127.807500px;}
.y21d{bottom:128.005650px;}
.y2d6{bottom:128.293650px;}
.y181{bottom:128.301900px;}
.y2e1{bottom:128.725650px;}
.ye7{bottom:129.738150px;}
.ya8{bottom:132.048750px;}
.y268{bottom:134.046750px;}
.y15f{bottom:135.823650px;}
.y1a3{bottom:136.843500px;}
.y229{bottom:137.048700px;}
.y1c4{bottom:137.221650px;}
.y314{bottom:138.424050px;}
.y85{bottom:140.198550px;}
.y26{bottom:140.588850px;}
.y2b2{bottom:140.794050px;}
.y222{bottom:143.121450px;}
.ya7{bottom:147.047250px;}
.y61{bottom:148.651500px;}
.y206{bottom:148.691700px;}
.ye1{bottom:148.702050px;}
.ye0{bottom:148.702500px;}
.y267{bottom:149.045250px;}
.y36b{bottom:150.359850px;}
.y12f{bottom:150.381300px;}
.y395{bottom:151.840500px;}
.y228{bottom:152.047200px;}
.y280{bottom:153.630600px;}
.yb8{bottom:155.844900px;}
.y1e5{bottom:155.929950px;}
.y12e{bottom:156.381300px;}
.y338{bottom:158.029500px;}
.y21c{bottom:158.083650px;}
.y180{bottom:158.793900px;}
.y2d5{bottom:158.911650px;}
.y2e0{bottom:159.595650px;}
.y25{bottom:164.596350px;}
.y15e{bottom:165.829650px;}
.y1a2{bottom:167.191500px;}
.y1c3{bottom:168.091650px;}
.y27f{bottom:169.884600px;}
.y313{bottom:170.114250px;}
.y84{bottom:170.708550px;}
.y83{bottom:170.740350px;}
.y266{bottom:172.548750px;}
.y36a{bottom:172.997850px;}
.y394{bottom:174.346500px;}
.y227{bottom:175.550700px;}
.y2a1{bottom:178.693200px;}
.y205{bottom:179.093700px;}
.y60{bottom:179.287500px;}
.ydf{bottom:179.482500px;}
.ya6{bottom:183.693000px;}
.y12d{bottom:184.041300px;}
.y27e{bottom:186.138600px;}
.y1e4{bottom:186.637950px;}
.yb7{bottom:187.470900px;}
.y265{bottom:187.547250px;}
.y21b{bottom:188.161650px;}
.y337{bottom:188.251500px;}
.y3b{bottom:188.438850px;}
.y24{bottom:188.603850px;}
.y17f{bottom:189.285900px;}
.y2d4{bottom:189.529650px;}
.y2df{bottom:190.465650px;}
.y226{bottom:190.549200px;}
.y15d{bottom:195.835650px;}
.y12c{bottom:196.041300px;}
.y393{bottom:196.852500px;}
.y1a1{bottom:197.539500px;}
.y1c2{bottom:198.961650px;}
.y82{bottom:201.250350px;}
.y369{bottom:204.133350px;}
.y312{bottom:208.832250px;}
.y2a0{bottom:209.221200px;}
.y204{bottom:209.495700px;}
.y5f{bottom:209.923500px;}
.y264{bottom:210.703200px;}
.y3a{bottom:212.446350px;}
.y23{bottom:212.611350px;}
.y225{bottom:214.052700px;}
.y1e3{bottom:217.345950px;}
.y12b{bottom:217.701300px;}
.y21a{bottom:218.239650px;}
.y336{bottom:218.473500px;}
.yde{bottom:218.739750px;}
.yb6{bottom:219.096900px;}
.y2de{bottom:221.335650px;}
.ya5{bottom:222.195000px;}
.y15c{bottom:225.841650px;}
.y368{bottom:226.771350px;}
.y392{bottom:227.856000px;}
.y1a0{bottom:227.887500px;}
.y17e{bottom:228.273900px;}
.y2d3{bottom:228.643650px;}
.y224{bottom:229.051200px;}
.y12a{bottom:229.701300px;}
.y1c1{bottom:229.831650px;}
.y81{bottom:231.760350px;}
.y39{bottom:236.453850px;}
.y22{bottom:236.618850px;}
.y311{bottom:239.036250px;}
.y29f{bottom:239.785200px;}
.y203{bottom:239.897700px;}
.y5e{bottom:240.559500px;}
.y263{bottom:241.120650px;}
.y129{bottom:241.701300px;}
.y219{bottom:248.317650px;}
.ydd{bottom:249.519750px;}
.y391{bottom:250.362000px;}
.yb5{bottom:250.722900px;}
.ya4{bottom:252.201000px;}
.y239{bottom:252.202200px;}
.y2dd{bottom:252.205650px;}
.y128{bottom:253.701300px;}
.y15b{bottom:255.847650px;}
.y1e2{bottom:256.567950px;}
.y335{bottom:257.191500px;}
.y367{bottom:257.906850px;}
.y19f{bottom:258.235500px;}
.y17d{bottom:258.765900px;}
.y2d2{bottom:259.261650px;}
.y38{bottom:260.461350px;}
.y21{bottom:260.626350px;}
.y1c0{bottom:260.701650px;}
.y127{bottom:265.701300px;}
.y310{bottom:269.240250px;}
.y29e{bottom:270.349200px;}
.y80{bottom:270.766350px;}
.y5d{bottom:271.195500px;}
.y262{bottom:271.522650px;}
.y218{bottom:278.395650px;}
.y202{bottom:278.794500px;}
.ydc{bottom:280.299750px;}
.y366{bottom:280.544850px;}
.y390{bottom:281.365500px;}
.ya3{bottom:282.207000px;}
.yb4{bottom:282.348900px;}
.y238{bottom:283.252200px;}
.y37{bottom:284.468850px;}
.y20{bottom:284.633850px;}
.y15a{bottom:285.853650px;}
.y1e1{bottom:287.275950px;}
.y126{bottom:287.361300px;}
.y334{bottom:287.413500px;}
.y17c{bottom:289.257900px;}
.y2d1{bottom:289.879650px;}
.y1bf{bottom:291.571650px;}
.y19e{bottom:297.097500px;}
.y30f{bottom:299.444250px;}
.y29d{bottom:300.913200px;}
.y7f{bottom:301.276350px;}
.y5c{bottom:301.831500px;}
.y261{bottom:301.924650px;}
.y38f{bottom:303.871500px;}
.y217{bottom:308.473650px;}
.y36{bottom:308.476350px;}
.y1f{bottom:308.641350px;}
.y125{bottom:309.021300px;}
.y201{bottom:309.196500px;}
.ydb{bottom:311.079750px;}
.y365{bottom:311.680350px;}
.ya2{bottom:312.213000px;}
.yb3{bottom:313.974900px;}
.y237{bottom:314.293200px;}
.y159{bottom:315.859650px;}
.y333{bottom:317.635500px;}
.y1e0{bottom:317.983950px;}
.y17b{bottom:319.749900px;}
.y2d0{bottom:320.497650px;}
.y123{bottom:321.021300px;}
.y1be{bottom:322.441650px;}
.y38e{bottom:326.377500px;}
.y19d{bottom:327.445500px;}
.y30e{bottom:329.648250px;}
.y29c{bottom:331.477200px;}
.y7e{bottom:331.786350px;}
.y260{bottom:332.326650px;}
.y35{bottom:332.483850px;}
.y1e{bottom:332.648850px;}
.y124{bottom:333.021300px;}
.y364{bottom:334.318350px;}
.y216{bottom:338.551650px;}
.y5b{bottom:340.963500px;}
.yda{bottom:341.859750px;}
.ya1{bottom:342.219000px;}
.y236{bottom:345.324450px;}
.yb2{bottom:345.600900px;}
.y332{bottom:347.839500px;}
.y200{bottom:348.019650px;}
.y1df{bottom:348.691950px;}
.y17a{bottom:350.241900px;}
.y2cf{bottom:351.115650px;}
.y1bd{bottom:353.311650px;}
.y158{bottom:354.361650px;}
.y122{bottom:354.681300px;}
.y34{bottom:356.491350px;}
.y1d{bottom:356.656350px;}
.y38d{bottom:357.381000px;}
.y19c{bottom:357.793500px;}
.y30d{bottom:359.998800px;}
.y120{bottom:360.681300px;}
.y29b{bottom:362.023200px;}
.y7d{bottom:362.296350px;}
.y363{bottom:365.453850px;}
.y11f{bottom:366.681300px;}
.y215{bottom:368.629650px;}
.y25f{bottom:371.237700px;}
.y25e{bottom:371.320050px;}
.y5a{bottom:371.599500px;}
.ya0{bottom:372.225000px;}
.yd8{bottom:372.620850px;}
.yd9{bottom:372.639750px;}
.y235{bottom:376.374450px;}
.yb1{bottom:377.226900px;}
.y331{bottom:378.061500px;}
.y1ff{bottom:378.421650px;}
.y121{bottom:378.681300px;}
.y38c{bottom:379.887000px;}
.y33{bottom:380.498850px;}
.y1c{bottom:380.663850px;}
.y179{bottom:380.733900px;}
.y2ce{bottom:381.733650px;}
.y1bc{bottom:384.181650px;}
.y157{bottom:384.367650px;}
.y1de{bottom:387.993600px;}
.y362{bottom:388.091850px;}
.y19b{bottom:388.141500px;}
.y30c{bottom:390.202800px;}
.y7c{bottom:392.806350px;}
.y214{bottom:398.707650px;}
.y11e{bottom:400.341300px;}
.y29a{bottom:401.083200px;}
.y25d{bottom:401.722050px;}
.y9f{bottom:402.231000px;}
.y59{bottom:402.235500px;}
.y38b{bottom:402.393000px;}
.yd7{bottom:403.400850px;}
.y32{bottom:404.506350px;}
.y1b{bottom:404.671350px;}
.y330{bottom:408.283500px;}
.y1fe{bottom:408.823650px;}
.yb0{bottom:408.842100px;}
.y361{bottom:410.729850px;}
.y11d{bottom:412.341300px;}
.y2cd{bottom:412.351650px;}
.y156{bottom:414.373650px;}
.y1bb{bottom:415.051650px;}
.y234{bottom:415.920450px;}
.y19a{bottom:418.489500px;}
.y1dd{bottom:418.701600px;}
.y178{bottom:419.721900px;}
.y30b{bottom:420.406800px;}
.y7b{bottom:423.316350px;}
.y31{bottom:428.513850px;}
.y1a{bottom:428.678850px;}
.y213{bottom:428.785650px;}
.y299{bottom:431.503500px;}
.y25c{bottom:432.124050px;}
.y9e{bottom:432.237000px;}
.y58{bottom:432.871500px;}
.y38a{bottom:433.396500px;}
.yd6{bottom:434.180850px;}
.y32f{bottom:438.505500px;}
.y1fd{bottom:439.225650px;}
.yaf{bottom:440.468100px;}
.y360{bottom:441.865350px;}
.y2cc{bottom:442.969650px;}
.y155{bottom:444.379650px;}
.y3a7{bottom:445.878450px;}
.y1ba{bottom:445.921650px;}
.y11c{bottom:446.001300px;}
.y233{bottom:446.952450px;}
.y199{bottom:448.837500px;}
.y1dc{bottom:449.409600px;}
.y177{bottom:450.213900px;}
.y30{bottom:452.521350px;}
.y19{bottom:452.686350px;}
.y7a{bottom:453.826350px;}
.y2dc{bottom:454.417650px;}
.y389{bottom:455.902500px;}
.y11b{bottom:458.001300px;}
.y212{bottom:458.863650px;}
.y30a{bottom:459.124800px;}
.y298{bottom:462.067500px;}
.y25b{bottom:462.526050px;}
.y57{bottom:463.507500px;}
.yd5{bottom:464.960850px;}
.y32e{bottom:468.727500px;}
.y1fc{bottom:469.627650px;}
.y9d{bottom:470.739000px;}
.yae{bottom:472.094100px;}
.y35f{bottom:473.000850px;}
.y2cb{bottom:473.587650px;}
.y154{bottom:474.385650px;}
.y3a6{bottom:475.869450px;}
.y2f{bottom:476.528850px;}
.y18{bottom:476.693850px;}
.y232{bottom:478.002450px;}
.y388{bottom:478.408500px;}
.y198{bottom:479.185500px;}
.y11a{bottom:479.661300px;}
.y1db{bottom:480.117600px;}
.y176{bottom:480.705900px;}
.y79{bottom:484.336350px;}
.y1b9{bottom:485.287650px;}
.y211{bottom:488.941650px;}
.y309{bottom:489.328800px;}
.y119{bottom:491.661300px;}
.y297{bottom:492.631500px;}
.y56{bottom:494.143500px;}
.y35e{bottom:495.638850px;}
.yd4{bottom:495.740850px;}
.y32d{bottom:498.949500px;}
.y2e{bottom:500.536350px;}
.y17{bottom:500.701350px;}
.y9c{bottom:500.745000px;}
.y25a{bottom:501.442050px;}
.y153{bottom:504.391650px;}
.y3a5{bottom:505.860450px;}
.y1fb{bottom:508.525650px;}
.y231{bottom:509.043600px;}
.y387{bottom:509.412000px;}
.y1da{bottom:510.825600px;}
.y175{bottom:511.197900px;}
.yad{bottom:512.216100px;}
.y2ca{bottom:512.701650px;}
.y118{bottom:513.321300px;}
.y78{bottom:514.846350px;}
.y1b8{bottom:516.157650px;}
.y197{bottom:518.047500px;}
.y308{bottom:519.532800px;}
.y2d{bottom:524.543850px;}
.y16{bottom:524.708850px;}
.y54{bottom:524.715900px;}
.y55{bottom:524.779500px;}
.yd3{bottom:526.510050px;}
.y35d{bottom:526.774350px;}
.y210{bottom:527.533650px;}
.y32c{bottom:529.171500px;}
.y9b{bottom:530.751000px;}
.y296{bottom:531.691500px;}
.y259{bottom:531.844050px;}
.y386{bottom:531.918000px;}
.y152{bottom:534.397650px;}
.y117{bottom:534.981300px;}
.y3a4{bottom:535.851450px;}
.y3a3{bottom:535.860450px;}
.y1fa{bottom:538.927650px;}
.y230{bottom:540.075600px;}
.y1d9{bottom:541.533600px;}
.y2c9{bottom:543.319650px;}
.yac{bottom:543.842100px;}
.y116{bottom:546.981300px;}
.y1b7{bottom:547.027650px;}
.y196{bottom:548.395500px;}
.y2c{bottom:548.551350px;}
.y15{bottom:548.716350px;}
.y307{bottom:549.736800px;}
.y174{bottom:551.199600px;}
.y113{bottom:552.981300px;}
.y77{bottom:553.852350px;}
.y53{bottom:555.351900px;}
.y20f{bottom:557.611650px;}
.y35c{bottom:557.909850px;}
.y115{bottom:558.981300px;}
.y32b{bottom:559.393500px;}
.y9a{bottom:560.733000px;}
.y295{bottom:562.237500px;}
.y258{bottom:562.246050px;}
.y385{bottom:562.921500px;}
.y151{bottom:564.403650px;}
.yd2{bottom:565.786050px;}
.y3a2{bottom:565.851450px;}
.y3a1{bottom:565.914450px;}
.y1f9{bottom:569.329650px;}
.y114{bottom:570.981300px;}
.y22f{bottom:571.125600px;}
.y2b{bottom:572.558850px;}
.y14{bottom:572.723850px;}
.y2c8{bottom:573.937650px;}
.yab{bottom:575.468100px;}
.y1b6{bottom:577.897650px;}
.y195{bottom:578.743500px;}
.y306{bottom:579.940800px;}
.y35b{bottom:580.547850px;}
.y1d8{bottom:580.755600px;}
.y76{bottom:584.362350px;}
.y384{bottom:585.427500px;}
.y52{bottom:585.987900px;}
.y173{bottom:587.199600px;}
.y20e{bottom:587.689650px;}
.y32a{bottom:589.615500px;}
.y99{bottom:590.739000px;}
.y112{bottom:592.641300px;}
.y257{bottom:592.648050px;}
.y294{bottom:592.801500px;}
.y150{bottom:594.409650px;}
.y3a0{bottom:595.905450px;}
.yd1{bottom:596.566050px;}
.y2a{bottom:596.566350px;}
.y13{bottom:596.731350px;}
.y1f8{bottom:599.731650px;}
.y22e{bottom:602.157600px;}
.y35a{bottom:603.185850px;}
.y2c7{bottom:604.555650px;}
.y111{bottom:604.641300px;}
.y383{bottom:607.933500px;}
.y1b5{bottom:608.767650px;}
.y194{bottom:609.091500px;}
.y305{bottom:610.144800px;}
.y10e{bottom:610.641300px;}
.ybc{bottom:610.960500px;}
.y1d7{bottom:611.463600px;}
.y75{bottom:614.872350px;}
.y347{bottom:614.959650px;}
.y10d{bottom:616.641300px;}
.y2db{bottom:617.263650px;}
.y20d{bottom:617.767650px;}
.ye6{bottom:618.327000px;}
.y329{bottom:619.837500px;}
.y29{bottom:620.573850px;}
.y12{bottom:620.738850px;}
.y98{bottom:620.745000px;}
.y256{bottom:623.050050px;}
.y172{bottom:623.199600px;}
.y2f3{bottom:623.523750px;}
.y14f{bottom:624.415650px;}
.y51{bottom:625.119900px;}
.y39f{bottom:625.896450px;}
.ybb{bottom:627.214500px;}
.yd0{bottom:627.346050px;}
.y110{bottom:628.641300px;}
.ye5{bottom:630.328500px;}
.y293{bottom:631.861500px;}
.y359{bottom:634.321350px;}
.y1f7{bottom:638.629650px;}
.y382{bottom:638.937000px;}
.y23d{bottom:639.148500px;}
.y193{bottom:639.439500px;}
.y304{bottom:640.348800px;}
.y10f{bottom:640.641300px;}
.y1d6{bottom:642.171600px;}
.ye4{bottom:642.330000px;}
.yba{bottom:643.468500px;}
.y2c6{bottom:643.669650px;}
.y28{bottom:644.581350px;}
.y11{bottom:644.746350px;}
.y346{bottom:644.965650px;}
.y74{bottom:645.382350px;}
.y221{bottom:646.650000px;}
.y20c{bottom:647.845650px;}
.y1b4{bottom:648.133650px;}
.y243{bottom:649.591950px;}
.y328{bottom:650.059500px;}
.y97{bottom:650.751000px;}
.y23c{bottom:651.150000px;}
.y255{bottom:653.452050px;}
.y2f2{bottom:653.529750px;}
.y14e{bottom:654.421650px;}
.y50{bottom:655.755900px;}
.y39e{bottom:655.887450px;}
.y358{bottom:656.959350px;}
.ycf{bottom:658.126050px;}
.ye3{bottom:658.584000px;}
.y381{bottom:661.443000px;}
.y10c{bottom:662.301300px;}
.y292{bottom:662.425500px;}
.y220{bottom:662.904000px;}
.y242{bottom:665.845950px;}
.y23b{bottom:667.404000px;}
.y1f6{bottom:669.031650px;}
.y192{bottom:669.787500px;}
.y303{bottom:670.552800px;}
.ye2{bottom:672.705000px;}
.y1d5{bottom:672.879600px;}
.y2c5{bottom:674.287650px;}
.y345{bottom:674.971650px;}
.y3f{bottom:675.189000px;}
.y20b{bottom:677.923650px;}
.y1b3{bottom:679.003650px;}
.y21f{bottom:679.158000px;}
.y327{bottom:680.281500px;}
.y95{bottom:680.751000px;}
.y96{bottom:680.757000px;}
.y241{bottom:682.099950px;}
.y2f1{bottom:683.535750px;}
.y23a{bottom:683.658000px;}
.y380{bottom:683.949000px;}
.y109{bottom:683.961300px;}
.y73{bottom:684.403650px;}
.y14d{bottom:684.427650px;}
.y39d{bottom:685.878450px;}
.y4f{bottom:686.391900px;}
.y357{bottom:688.094850px;}
.ycd{bottom:688.857450px;}
.yce{bottom:688.906050px;}
.y10b{bottom:689.961300px;}
.y254{bottom:692.368050px;}
.y2b1{bottom:692.887650px;}
.y291{bottom:692.989500px;}
.y27d{bottom:694.547700px;}
.y108{bottom:695.961300px;}
.y1f5{bottom:699.433650px;}
.y302{bottom:700.756800px;}
.y10a{bottom:701.961300px;}
.y1d4{bottom:703.587600px;}
.y2c4{bottom:704.905650px;}
.y344{bottom:704.977650px;}
.y20a{bottom:708.001650px;}
.y191{bottom:708.649500px;}
.y1b2{bottom:709.873650px;}
.y326{bottom:710.503500px;}
.y356{bottom:710.732850px;}
.y94{bottom:710.757000px;}
.y2ef{bottom:713.535750px;}
.y2f0{bottom:713.541750px;}
.y14c{bottom:714.433650px;}
.y72{bottom:714.913650px;}
.y37f{bottom:714.952500px;}
.y39c{bottom:715.869450px;}
.y4e{bottom:717.027900px;}
.ycc{bottom:719.637450px;}
.y170{bottom:722.039700px;}
.y171{bottom:722.045700px;}
.y253{bottom:722.770050px;}
.y2b0{bottom:722.965650px;}
.y290{bottom:723.553500px;}
.y27c{bottom:724.949700px;}
.y107{bottom:729.621300px;}
.y301{bottom:730.960800px;}
.y1d3{bottom:734.295600px;}
.y343{bottom:734.983650px;}
.y2c3{bottom:735.523650px;}
.y37e{bottom:737.458500px;}
.y209{bottom:738.079650px;}
.y1f4{bottom:738.331650px;}
.y190{bottom:738.997500px;}
.y1b1{bottom:740.743650px;}
.y106{bottom:741.621300px;}
.y355{bottom:741.868350px;}
.y2ed{bottom:743.537700px;}
.y2ee{bottom:743.541750px;}
.y71{bottom:745.423650px;}
.y39b{bottom:745.860450px;}
.y4d{bottom:747.663900px;}
.y325{bottom:749.221500px;}
.ycb{bottom:750.417450px;}
.y93{bottom:750.758550px;}
.y16f{bottom:752.045700px;}
.y14b{bottom:752.935650px;}
.y2af{bottom:753.043650px;}
.y252{bottom:753.172050px;}
.y28f{bottom:754.117500px;}
.y27b{bottom:755.351700px;}
.y300{bottom:761.164800px;}
.y354{bottom:764.506350px;}
.y342{bottom:764.989650px;}
.y1d2{bottom:765.003600px;}
.y2c2{bottom:766.141650px;}
.y37d{bottom:768.462000px;}
.y1f3{bottom:768.733650px;}
.y18f{bottom:769.345500px;}
.y1b0{bottom:771.613650px;}
.y2ec{bottom:773.543700px;}
.y103{bottom:775.281300px;}
.y39a{bottom:775.851450px;}
.y70{bottom:775.933650px;}
.y207{bottom:778.110300px;}
.y4c{bottom:778.299900px;}
.y324{bottom:779.443500px;}
.yca{bottom:781.197450px;}
.y105{bottom:781.281300px;}
.y16e{bottom:782.039700px;}
.y14a{bottom:782.941650px;}
.y251{bottom:783.574050px;}
.y28e{bottom:784.681500px;}
.y27a{bottom:785.753700px;}
.y102{bottom:787.281300px;}
.y37c{bottom:790.968000px;}
.y2ae{bottom:791.617650px;}
.y104{bottom:793.281300px;}
.y341{bottom:794.995650px;}
.y353{bottom:795.641850px;}
.y1f2{bottom:799.135650px;}
.y18e{bottom:799.693500px;}
.y2ff{bottom:799.882800px;}
.y1af{bottom:802.483650px;}
.y1d1{bottom:804.225600px;}
.y2c1{bottom:805.255650px;}
.y6f{bottom:806.443650px;}
.y4b{bottom:808.935900px;}
.y323{bottom:809.665500px;}
.yc9{bottom:811.977450px;}
.y2eb{bottom:812.015700px;}
.y16c{bottom:812.039700px;}
.y16d{bottom:812.045700px;}
.y149{bottom:812.947650px;}
.y37b{bottom:813.474000px;}
.y250{bottom:813.976050px;}
.y28d{bottom:815.245500px;}
.y279{bottom:816.155700px;}
.y352{bottom:818.279850px;}
.y101{bottom:820.941300px;}
.y2ad{bottom:821.695650px;}
.y399{bottom:823.233150px;}
.y340{bottom:825.001650px;}
.y1f1{bottom:829.537650px;}
.y2fe{bottom:830.086800px;}
.yfe{bottom:832.941300px;}
.y2da{bottom:833.353650px;}
.y1d0{bottom:834.933600px;}
.y2c0{bottom:835.873650px;}
.y37a{bottom:835.980000px;}
.y6e{bottom:836.953650px;}
.y18d{bottom:838.555500px;}
.y322{bottom:839.887500px;}
.y1ae{bottom:841.849650px;}
.y16a{bottom:842.015700px;}
.y2ea{bottom:842.021700px;}
.y16b{bottom:842.045700px;}
.yc8{bottom:842.757450px;}
.y148{bottom:842.953650px;}
.y24f{bottom:844.378050px;}
.yfd{bottom:844.941300px;}
.y278{bottom:846.557700px;}
.yc{bottom:847.703400px;}
.y4a{bottom:848.067900px;}
.y351{bottom:849.415350px;}
.y2ac{bottom:851.773650px;}
.y28c{bottom:854.305500px;}
.y33f{bottom:855.007650px;}
.y100{bottom:856.941300px;}
.y2fd{bottom:860.290800px;}
.y2d9{bottom:864.223650px;}
.y1cf{bottom:865.641600px;}
.yb{bottom:865.763550px;}
.y2bf{bottom:866.491650px;}
.y379{bottom:866.983500px;}
.y6d{bottom:867.463650px;}
.y1f0{bottom:868.435650px;}
.y18c{bottom:868.903500px;}
.yff{bottom:868.941300px;}
.y321{bottom:870.109500px;}
.y92{bottom:872.015700px;}
.y169{bottom:872.021700px;}
.y2e9{bottom:872.027700px;}
.y350{bottom:872.053350px;}
.y1ad{bottom:872.719650px;}
.y147{bottom:872.959650px;}
.yc7{bottom:873.537450px;}
.y24e{bottom:874.780050px;}
.y277{bottom:876.959700px;}
.y49{bottom:878.703900px;}
.y2ab{bottom:881.851650px;}
.ya{bottom:883.823400px;}
.y398{bottom:884.433150px;}
.y28b{bottom:884.869500px;}
.y33e{bottom:885.013650px;}
.y378{bottom:889.489500px;}
.y2fc{bottom:890.494800px;}
.yfa{bottom:890.601300px;}
.y34f{bottom:894.691350px;}
.y2d8{bottom:895.093650px;}
.y1ce{bottom:896.349600px;}
.yfc{bottom:896.601300px;}
.y2be{bottom:897.109650px;}
.y6c{bottom:897.973650px;}
.y1ef{bottom:898.837650px;}
.y18b{bottom:899.251500px;}
.y137{bottom:900.956250px;}
.y91{bottom:902.021700px;}
.y168{bottom:902.027700px;}
.y2e8{bottom:902.033700px;}
.yf9{bottom:902.601300px;}
.y9{bottom:903.323400px;}
.y1ac{bottom:903.589650px;}
.yc6{bottom:904.317450px;}
.y24d{bottom:905.182050px;}
.y276{bottom:907.361700px;}
.yfb{bottom:908.601300px;}
.y320{bottom:908.827500px;}
.y48{bottom:909.339900px;}
.y2aa{bottom:911.929650px;}
.y28a{bottom:915.433500px;}
.y136{bottom:917.206800px;}
.y377{bottom:920.493000px;}
.y2fb{bottom:920.698800px;}
.y33d{bottom:923.515650px;}
.y34e{bottom:925.826850px;}
.y1cd{bottom:927.057600px;}
.y2bd{bottom:927.727650px;}
.y6b{bottom:928.483650px;}
.y134{bottom:929.206200px;}
.y135{bottom:929.208300px;}
.y1ee{bottom:929.239650px;}
.y18a{bottom:929.599500px;}
.y90{bottom:932.027700px;}
.y167{bottom:932.033700px;}
.y2e7{bottom:932.039700px;}
.y1ab{bottom:934.459650px;}
.yc5{bottom:935.097450px;}
.y24c{bottom:935.584050px;}
.yf8{bottom:936.261300px;}
.y275{bottom:937.763700px;}
.y31f{bottom:939.049500px;}
.y47{bottom:939.975900px;}
.y2a9{bottom:942.007650px;}
.yf7{bottom:942.261300px;}
.y376{bottom:942.999000px;}
.y133{bottom:945.460200px;}
.y289{bottom:945.997500px;}
.y34d{bottom:948.464850px;}
.y2fa{bottom:950.902800px;}
.y33c{bottom:953.521650px;}
.y1ed{bottom:959.641650px;}
.y189{bottom:959.947500px;}
.y2e5{bottom:962.017650px;}
.y8f{bottom:962.033700px;}
.y166{bottom:962.039700px;}
.y2e6{bottom:962.045700px;}
.y1aa{bottom:965.329650px;}
.y375{bottom:965.505000px;}
.yc4{bottom:965.877450px;}
.y24b{bottom:965.986050px;}
.y1cc{bottom:966.279600px;}
.y2bc{bottom:966.841650px;}
.y6a{bottom:967.489650px;}
.y274{bottom:968.137650px;}
.y31e{bottom:969.271500px;}
.yf6{bottom:969.921300px;}
.y46{bottom:970.611900px;}
.y145{bottom:970.855650px;}
.y8{bottom:972.746550px;}
.y288{bottom:976.561500px;}
.y34c{bottom:979.600350px;}
.y2a8{bottom:980.581650px;}
.y2f9{bottom:981.106800px;}
.yf5{bottom:981.921300px;}
.y143{bottom:982.855650px;}
.y33b{bottom:983.527650px;}
.yf2{bottom:987.921300px;}
.y146{bottom:988.855650px;}
.y1ec{bottom:990.043650px;}
.y188{bottom:990.295500px;}
.y208{bottom:992.023650px;}
.y8e{bottom:992.039700px;}
.y165{bottom:992.045700px;}
.yf4{bottom:993.921300px;}
.y142{bottom:994.855650px;}
.y1a9{bottom:996.199650px;}
.y24a{bottom:996.388050px;}
.y249{bottom:996.403500px;}
.y374{bottom:996.508500px;}
.yc3{bottom:996.657450px;}
.y1cb{bottom:996.987600px;}
.y2bb{bottom:997.459650px;}
.y69{bottom:997.999650px;}
.y273{bottom:998.539650px;}
.y31c{bottom:999.439650px;}
.y31d{bottom:999.484650px;}
.y2e4{bottom:1000.519650px;}
.y34b{bottom:1002.238350px;}
.yf3{bottom:1005.921300px;}
.y144{bottom:1006.855650px;}
.y287{bottom:1007.125500px;}
.y45{bottom:1009.743900px;}
.y2a7{bottom:1010.659650px;}
.y2f8{bottom:1011.310800px;}
.y7{bottom:1011.448505px;}
.y373{bottom:1019.014500px;}
.y1eb{bottom:1020.445650px;}
.y187{bottom:1020.643500px;}
.y164{bottom:1022.029650px;}
.y8c{bottom:1022.039700px;}
.y8d{bottom:1022.045700px;}
.y248{bottom:1026.805500px;}
.y1a8{bottom:1027.069650px;}
.yc2{bottom:1027.437450px;}
.yf1{bottom:1027.581300px;}
.y1ca{bottom:1027.695600px;}
.y1c9{bottom:1027.717650px;}
.y2ba{bottom:1028.077650px;}
.y68{bottom:1028.509650px;}
.y141{bottom:1028.515650px;}
.y272{bottom:1028.941650px;}
.y31b{bottom:1029.661650px;}
.y2e3{bottom:1030.525650px;}
.y34a{bottom:1033.373850px;}
.y286{bottom:1037.689500px;}
.yf0{bottom:1039.581300px;}
.y44{bottom:1040.379900px;}
.y140{bottom:1040.515650px;}
.y2a6{bottom:1040.737650px;}
.y2f7{bottom:1041.514800px;}
.y2f6{bottom:1041.529950px;}
.y372{bottom:1050.018000px;}
.y6{bottom:1050.439200px;}
.y1ea{bottom:1050.847650px;}
.y8a{bottom:1052.035650px;}
.y8b{bottom:1052.045700px;}
.y349{bottom:1056.011850px;}
.y247{bottom:1057.207500px;}
.y1a7{bottom:1057.939650px;}
.yc1{bottom:1058.217450px;}
.y1c8{bottom:1058.425650px;}
.y2b9{bottom:1058.695650px;}
.y67{bottom:1059.019650px;}
.y271{bottom:1059.343650px;}
.y186{bottom:1059.505500px;}
.y31a{bottom:1059.883650px;}
.y2e2{bottom:1060.531650px;}
.y13f{bottom:1062.175650px;}
.y285{bottom:1068.253500px;}
.y2a5{bottom:1070.815650px;}
.y43{bottom:1071.015900px;}
.y2f5{bottom:1071.733950px;}
.y371{bottom:1072.524000px;}
.yef{bottom:1073.241300px;}
.y1e9{bottom:1081.249650px;}
.y89{bottom:1082.041650px;}
.y13e{bottom:1083.835650px;}
.y1a6{bottom:1088.809650px;}
.y1c7{bottom:1089.133650px;}
.y2b8{bottom:1089.313650px;}
.y66{bottom:1089.529650px;}
.y270{bottom:1089.745650px;}
.y185{bottom:1089.853500px;}
.y319{bottom:1090.105650px;}
.y163{bottom:1090.537650px;}
.yee{bottom:1094.901300px;}
.y370{bottom:1095.030000px;}
.y13d{bottom:1095.835650px;}
.y246{bottom:1096.123500px;}
.yc0{bottom:1097.493450px;}
.y284{bottom:1098.799500px;}
.y348{bottom:1100.435700px;}
.y2a4{bottom:1100.893650px;}
.y42{bottom:1101.651900px;}
.y13a{bottom:1101.835650px;}
.y2f4{bottom:1101.937950px;}
.y13c{bottom:1107.835650px;}
.y10{bottom:1111.085850px;}
.y1e8{bottom:1111.651650px;}
.y88{bottom:1112.047650px;}
.yed{bottom:1116.561300px;}
.y1a5{bottom:1119.679650px;}
.y13b{bottom:1119.835650px;}
.y1c6{bottom:1119.841650px;}
.y2b7{bottom:1119.931650px;}
.y65{bottom:1120.039650px;}
.y26f{bottom:1120.147650px;}
.y184{bottom:1120.201500px;}
.y318{bottom:1120.327650px;}
.y162{bottom:1120.543650px;}
.y36f{bottom:1126.033500px;}
.y245{bottom:1126.525500px;}
.ybf{bottom:1128.273450px;}
.yf{bottom:1129.087350px;}
.y283{bottom:1129.363500px;}
.y2a3{bottom:1130.971650px;}
.yec{bottom:1138.221150px;}
.y139{bottom:1141.495500px;}
.y41{bottom:1141.939800px;}
.ye{bottom:1147.088850px;}
.y36e{bottom:1148.539500px;}
.y183{bottom:1150.549500px;}
.y64{bottom:1150.549650px;}
.yeb{bottom:1156.221150px;}
.y244{bottom:1156.927500px;}
.ybe{bottom:1159.053450px;}
.y138{bottom:1159.495500px;}
.y282{bottom:1159.927500px;}
.y2a2{bottom:1161.049650px;}
.yd{bottom:1165.090350px;}
.y4{bottom:1192.731000px;}
.y3{bottom:1208.834700px;}
.y1{bottom:1213.317000px;}
.h1e{height:36.792000px;}
.h1c{height:44.448000px;}
.h10{height:45.360000px;}
.h15{height:48.708000px;}
.h19{height:49.140000px;}
.h22{height:49.898023px;}
.he{height:55.080000px;}
.hc{height:59.532000px;}
.h2b{height:59.928000px;}
.hb{height:60.506160px;}
.hd{height:60.588000px;}
.h1f{height:60.792000px;}
.h11{height:63.504000px;}
.h7{height:63.567360px;}
.h9{height:65.160480px;}
.h13{height:66.096000px;}
.h26{height:66.099000px;}
.h25{height:66.100800px;}
.h18{height:66.139200px;}
.h1a{height:66.171000px;}
.h17{height:66.192000px;}
.h27{height:66.208200px;}
.h2a{height:66.216000px;}
.h29{height:66.240000px;}
.h24{height:66.395400px;}
.h28{height:66.670800px;}
.h16{height:66.672000px;}
.h14{height:67.115615px;}
.h21{height:68.448000px;}
.ha{height:69.814800px;}
.h5{height:70.104000px;}
.h2d{height:70.356000px;}
.h2e{height:71.441401px;}
.h20{height:84.792000px;}
.h8{height:86.592000px;}
.h1b{height:91.080000px;}
.h1d{height:92.448000px;}
.h3{height:92.820000px;}
.h2{height:95.467680px;}
.h6{height:107.364826px;}
.h12{height:108.240000px;}
.h23{height:111.553672px;}
.hf{height:121.080000px;}
.h2c{height:156.672000px;}
.h4{height:212.940000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:209.687130px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:3.507870px;}
.x5{left:13.500030px;}
.x3{left:17.007900px;}
.x6{left:52.902750px;}
.x7e{left:54.005400px;}
.x25{left:60.885150px;}
.xf{left:62.504100px;}
.x11{left:66.755850px;}
.x13{left:68.031450px;}
.x55{left:75.835200px;}
.x4d{left:77.095200px;}
.x4f{left:78.679200px;}
.x5a{left:79.891200px;}
.x3c{left:85.939200px;}
.x4c{left:89.755200px;}
.x27{left:98.875200px;}
.x60{left:100.881300px;}
.x52{left:105.595200px;}
.x32{left:110.143200px;}
.x5c{left:113.611200px;}
.x37{left:115.411200px;}
.x28{left:117.223200px;}
.x6e{left:118.324350px;}
.x5f{left:121.243200px;}
.x29{left:123.271200px;}
.x26{left:126.187200px;}
.x2f{left:128.119200px;}
.x19{left:133.993650px;}
.x50{left:140.407200px;}
.x24{left:143.670150px;}
.x5b{left:147.367200px;}
.x17{left:150.817050px;}
.x43{left:155.719200px;}
.x4e{left:157.747200px;}
.x73{left:185.824350px;}
.x1a{left:208.881300px;}
.x77{left:211.041000px;}
.x18{left:221.781300px;}
.x1c{left:251.219100px;}
.x6f{left:252.897750px;}
.x23{left:254.720550px;}
.x1f{left:277.969500px;}
.x6b{left:299.281950px;}
.x81{left:311.081550px;}
.x49{left:312.991200px;}
.x63{left:314.301300px;}
.x3d{left:316.315200px;}
.x33{left:317.935200px;}
.x58{left:319.315200px;}
.x56{left:320.983200px;}
.x41{left:322.615200px;}
.x64{left:324.453300px;}
.x48{left:325.495200px;}
.x5e{left:328.075200px;}
.x57{left:331.915200px;}
.x1{left:335.921250px;}
.x78{left:343.662300px;}
.x4a{left:355.039200px;}
.x65{left:356.121300px;}
.x5d{left:358.051200px;}
.x59{left:360.007200px;}
.x70{left:366.376500px;}
.x44{left:367.855200px;}
.x34{left:368.863200px;}
.x20{left:370.262400px;}
.x53{left:372.319200px;}
.x7d{left:375.033900px;}
.x7c{left:382.677150px;}
.x6a{left:391.566600px;}
.x21{left:397.032900px;}
.x15{left:400.150500px;}
.x2{left:422.886750px;}
.x10{left:458.570100px;}
.x12{left:461.195850px;}
.x39{left:463.087200px;}
.x3a{left:465.883200px;}
.x2a{left:468.115200px;}
.x2b{left:471.151200px;}
.x35{left:474.547200px;}
.x38{left:476.575200px;}
.x3f{left:479.275200px;}
.x54{left:484.171200px;}
.x3e{left:487.459200px;}
.x42{left:495.283200px;}
.x22{left:500.057400px;}
.x4b{left:503.863200px;}
.x66{left:506.541300px;}
.x36{left:507.943200px;}
.x7f{left:511.168500px;}
.x72{left:514.068900px;}
.x16{left:530.034450px;}
.x51{left:539.683200px;}
.x30{left:543.859200px;}
.x40{left:546.079200px;}
.x3b{left:547.255200px;}
.x7{left:552.248250px;}
.x74{left:567.448200px;}
.xe{left:573.525600px;}
.x9{left:590.241150px;}
.x71{left:611.610150px;}
.x14{left:620.657550px;}
.x68{left:633.557400px;}
.x1d{left:641.492850px;}
.x69{left:643.113300px;}
.x75{left:652.838700px;}
.x79{left:653.850150px;}
.x8{left:656.220450px;}
.xd{left:658.962600px;}
.xc{left:666.882600px;}
.x1b{left:686.358600px;}
.xb{left:689.487600px;}
.xa{left:692.534400px;}
.x46{left:694.363200px;}
.x45{left:696.391200px;}
.x7a{left:697.841700px;}
.x2d{left:700.327200px;}
.x61{left:703.521300px;}
.x2c{left:705.259200px;}
.x1e{left:706.824600px;}
.x62{left:709.365300px;}
.x47{left:722.947200px;}
.x6c{left:726.949350px;}
.x2e{left:730.447200px;}
.x67{left:741.540750px;}
.x31{left:743.299200px;}
.x7b{left:775.090350px;}
.x76{left:782.221950px;}
.x6d{left:826.157550px;}
.x80{left:834.662700px;}
@media print{
.v4{vertical-align:-21.312000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.257600pt;}
.v5{vertical-align:32.000000pt;}
.v2{vertical-align:35.519467pt;}
.v6{vertical-align:42.666667pt;}
.v1{vertical-align:58.666667pt;}
.lsb{letter-spacing:-5.568000pt;}
.ls22{letter-spacing:-2.432000pt;}
.ls25{letter-spacing:-1.949618pt;}
.ls26{letter-spacing:-1.728000pt;}
.ls1e{letter-spacing:-1.529792pt;}
.ls24{letter-spacing:-1.417856pt;}
.ls12{letter-spacing:-1.216000pt;}
.ls10{letter-spacing:-1.024000pt;}
.ls1d{letter-spacing:-0.960000pt;}
.ls21{letter-spacing:-0.932800pt;}
.ls16{letter-spacing:-0.858176pt;}
.lsc{letter-spacing:-0.844835pt;}
.lsa{letter-spacing:-0.832000pt;}
.ls20{letter-spacing:-0.783552pt;}
.ls8{letter-spacing:-0.704000pt;}
.ls18{letter-spacing:-0.671616pt;}
.ls6{letter-spacing:-0.649873pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.584886pt;}
.ls9{letter-spacing:-0.576000pt;}
.ls1a{letter-spacing:-0.522368pt;}
.ls11{letter-spacing:-0.512000pt;}
.ls23{letter-spacing:-0.454911pt;}
.ls17{letter-spacing:-0.448000pt;}
.lse{letter-spacing:-0.426667pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.194962pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.186560pt;}
.ls7{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.387307pt;}
.lsd{letter-spacing:0.426667pt;}
.ls19{letter-spacing:0.596992pt;}
.ls27{letter-spacing:0.746240pt;}
.ls3{letter-spacing:1.032640pt;}
.ls13{letter-spacing:1.107307pt;}
.ls28{letter-spacing:1.813333pt;}
.ls29{letter-spacing:2.080000pt;}
.ls2{letter-spacing:2.102101pt;}
.ls2a{letter-spacing:2.112089pt;}
.ls0{letter-spacing:2.933333pt;}
.ws37{word-spacing:-18.131451pt;}
.ws2d{word-spacing:-17.856000pt;}
.wsef{word-spacing:-17.676540pt;}
.ws102{word-spacing:-17.546566pt;}
.wsd1{word-spacing:-17.536000pt;}
.ws43{word-spacing:-17.481579pt;}
.wse4{word-spacing:-17.408000pt;}
.ws58{word-spacing:-17.286617pt;}
.ws51{word-spacing:-17.152000pt;}
.ws9e{word-spacing:-17.024000pt;}
.wsb9{word-spacing:-16.896000pt;}
.wsfa{word-spacing:-16.128000pt;}
.ws11b{word-spacing:-14.666667pt;}
.ws0{word-spacing:-14.012267pt;}
.ws2{word-spacing:-13.333333pt;}
.ws6a{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.087083pt;}
.wsbc{word-spacing:-11.280000pt;}
.wsfb{word-spacing:-11.156288pt;}
.wsaa{word-spacing:-11.007040pt;}
.ws6e{word-spacing:-10.922667pt;}
.wsbb{word-spacing:-10.596608pt;}
.ws6d{word-spacing:-10.496000pt;}
.ws36{word-spacing:-10.410048pt;}
.wsab{word-spacing:-9.887680pt;}
.wsa9{word-spacing:-9.738432pt;}
.wsca{word-spacing:-9.626496pt;}
.ws9a{word-spacing:-9.551872pt;}
.wsd2{word-spacing:-9.477248pt;}
.wsf0{word-spacing:-8.992192pt;}
.wsba{word-spacing:-8.880256pt;}
.ws3d{word-spacing:-8.192000pt;}
.wsbe{word-spacing:-6.272000pt;}
.ws10{word-spacing:-5.866667pt;}
.wsbd{word-spacing:-5.783868pt;}
.wsb4{word-spacing:-5.440000pt;}
.ws106{word-spacing:-4.992000pt;}
.wsa7{word-spacing:-4.928000pt;}
.ws136{word-spacing:-4.506667pt;}
.wsa8{word-spacing:-4.480000pt;}
.ws82{word-spacing:-4.416000pt;}
.ws116{word-spacing:-4.282667pt;}
.ws11d{word-spacing:-4.106667pt;}
.wse0{word-spacing:-3.712000pt;}
.wsd4{word-spacing:-3.600000pt;}
.wse7{word-spacing:-3.520000pt;}
.ws35{word-spacing:-3.392000pt;}
.ws114{word-spacing:-3.344000pt;}
.wseb{word-spacing:-3.328000pt;}
.ws117{word-spacing:-3.285333pt;}
.wsa2{word-spacing:-3.264000pt;}
.ws53{word-spacing:-3.200000pt;}
.ws68{word-spacing:-3.120000pt;}
.wsee{word-spacing:-3.072000pt;}
.wsc4{word-spacing:-3.008000pt;}
.wsdc{word-spacing:-2.976000pt;}
.wsf9{word-spacing:-2.928000pt;}
.ws9c{word-spacing:-2.880000pt;}
.ws87{word-spacing:-2.859440pt;}
.ws54{word-spacing:-2.816000pt;}
.ws67{word-spacing:-2.784000pt;}
.ws61{word-spacing:-2.624000pt;}
.ws115{word-spacing:-2.522667pt;}
.wsb6{word-spacing:-2.496000pt;}
.ws89{word-spacing:-2.469517pt;}
.ws2a{word-spacing:-2.464000pt;}
.ws88{word-spacing:-2.432000pt;}
.ws81{word-spacing:-2.304000pt;}
.wsfd{word-spacing:-2.112000pt;}
.wsb5{word-spacing:-2.048000pt;}
.ws1b{word-spacing:-1.994667pt;}
.wscb{word-spacing:-1.872000pt;}
.ws133{word-spacing:-1.813333pt;}
.wsae{word-spacing:-1.776000pt;}
.ws34{word-spacing:-1.728000pt;}
.ws2b{word-spacing:-1.642667pt;}
.wsa0{word-spacing:-1.472000pt;}
.ws11c{word-spacing:-1.466667pt;}
.ws2c{word-spacing:-1.333333pt;}
.ws96{word-spacing:-1.280000pt;}
.ws50{word-spacing:-1.248000pt;}
.ws7e{word-spacing:-1.237333pt;}
.wsd6{word-spacing:-1.152000pt;}
.ws3c{word-spacing:-1.024000pt;}
.wscf{word-spacing:-0.960000pt;}
.ws127{word-spacing:-0.938667pt;}
.ws4e{word-spacing:-0.896000pt;}
.ws62{word-spacing:-0.768000pt;}
.wsd7{word-spacing:-0.704000pt;}
.ws40{word-spacing:-0.640000pt;}
.wsc5{word-spacing:-0.624000pt;}
.wsd0{word-spacing:-0.576000pt;}
.ws38{word-spacing:-0.512000pt;}
.wsc9{word-spacing:-0.480000pt;}
.ws125{word-spacing:-0.469333pt;}
.wsf6{word-spacing:-0.448000pt;}
.ws131{word-spacing:-0.410667pt;}
.ws57{word-spacing:-0.384000pt;}
.ws137{word-spacing:-0.346667pt;}
.wsc2{word-spacing:-0.256000pt;}
.ws78{word-spacing:-0.213333pt;}
.ws7a{word-spacing:-0.170667pt;}
.ws104{word-spacing:-0.128000pt;}
.wse9{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
.ws12c{word-spacing:0.058667pt;}
.wsfe{word-spacing:0.064000pt;}
.ws80{word-spacing:0.128000pt;}
.ws8f{word-spacing:0.192000pt;}
.ws1f{word-spacing:0.293333pt;}
.ws52{word-spacing:0.320000pt;}
.wsa3{word-spacing:0.384000pt;}
.ws79{word-spacing:0.426667pt;}
.wsa4{word-spacing:0.448000pt;}
.wsf5{word-spacing:0.454911pt;}
.ws90{word-spacing:0.512000pt;}
.ws11a{word-spacing:0.528000pt;}
.ws55{word-spacing:0.576000pt;}
.ws3b{word-spacing:0.640000pt;}
.ws132{word-spacing:0.645333pt;}
.wsce{word-spacing:0.704000pt;}
.ws4b{word-spacing:0.768000pt;}
.ws64{word-spacing:0.779847pt;}
.ws4f{word-spacing:0.816000pt;}
.wsbf{word-spacing:0.832000pt;}
.wsc3{word-spacing:0.844835pt;}
.wsde{word-spacing:0.864000pt;}
.ws65{word-spacing:0.896000pt;}
.ws91{word-spacing:0.960000pt;}
.ws139{word-spacing:0.970667pt;}
.ws26{word-spacing:0.997333pt;}
.ws85{word-spacing:1.024000pt;}
.wse6{word-spacing:1.152000pt;}
.wsc8{word-spacing:1.200000pt;}
.ws3a{word-spacing:1.216000pt;}
.ws25{word-spacing:1.232000pt;}
.wsff{word-spacing:1.408000pt;}
.ws124{word-spacing:1.584000pt;}
.wsdb{word-spacing:1.600000pt;}
.wsa6{word-spacing:1.664000pt;}
.ws2f{word-spacing:1.728000pt;}
.ws121{word-spacing:1.760000pt;}
.wsb1{word-spacing:1.776000pt;}
.ws3e{word-spacing:1.792000pt;}
.ws12e{word-spacing:1.877333pt;}
.ws110{word-spacing:1.936000pt;}
.wsf4{word-spacing:1.949618pt;}
.wsad{word-spacing:2.016000pt;}
.ws103{word-spacing:2.048000pt;}
.wse8{word-spacing:2.112000pt;}
.ws31{word-spacing:2.240000pt;}
.wsaf{word-spacing:2.256000pt;}
.ws12d{word-spacing:2.288000pt;}
.wsb0{word-spacing:2.352000pt;}
.wsec{word-spacing:2.432000pt;}
.wsb2{word-spacing:2.496000pt;}
.wse5{word-spacing:2.560000pt;}
.ws101{word-spacing:2.640000pt;}
.ws13{word-spacing:2.698667pt;}
.ws45{word-spacing:2.729466pt;}
.ws3f{word-spacing:2.752000pt;}
.ws17{word-spacing:2.757333pt;}
.ws69{word-spacing:2.832000pt;}
.ws138{word-spacing:2.842667pt;}
.ws8e{word-spacing:2.880000pt;}
.ws111{word-spacing:2.992000pt;}
.ws97{word-spacing:3.008000pt;}
.wsa1{word-spacing:3.072000pt;}
.ws92{word-spacing:3.136000pt;}
.ws12b{word-spacing:3.168000pt;}
.ws94{word-spacing:3.184377pt;}
.wsc7{word-spacing:3.216000pt;}
.ws5d{word-spacing:3.328000pt;}
.ws112{word-spacing:3.344000pt;}
.ws4d{word-spacing:3.392000pt;}
.ws56{word-spacing:3.520000pt;}
.wsdf{word-spacing:3.584000pt;}
.ws5c{word-spacing:3.648000pt;}
.ws123{word-spacing:3.696000pt;}
.ws84{word-spacing:3.712000pt;}
.ws9f{word-spacing:3.776000pt;}
.ws20{word-spacing:3.813333pt;}
.wscc{word-spacing:3.840000pt;}
.ws99{word-spacing:4.032000pt;}
.wsf1{word-spacing:4.096000pt;}
.ws1e{word-spacing:4.282667pt;}
.ws11e{word-spacing:4.400000pt;}
.ws118{word-spacing:4.458667pt;}
.ws30{word-spacing:4.480000pt;}
.wsf7{word-spacing:4.544000pt;}
.ws49{word-spacing:4.608000pt;}
.ws86{word-spacing:4.614097pt;}
.wsb3{word-spacing:4.672000pt;}
.wsf8{word-spacing:4.848000pt;}
.ws60{word-spacing:4.864000pt;}
.ws8{word-spacing:4.869333pt;}
.ws5{word-spacing:4.928000pt;}
.ws42{word-spacing:4.992000pt;}
.ws4a{word-spacing:5.056000pt;}
.wsed{word-spacing:5.120000pt;}
.ws48{word-spacing:5.376000pt;}
.ws28{word-spacing:5.456000pt;}
.ws12{word-spacing:5.573333pt;}
.ws140{word-spacing:5.685333pt;}
.ws5e{word-spacing:5.696000pt;}
.ws100{word-spacing:5.712000pt;}
.ws11f{word-spacing:5.749333pt;}
.wsac{word-spacing:5.808000pt;}
.ws107{word-spacing:5.824000pt;}
.ws5a{word-spacing:5.952000pt;}
.wsfc{word-spacing:6.080000pt;}
.ws108{word-spacing:6.144000pt;}
.ws128{word-spacing:6.160000pt;}
.ws1d{word-spacing:6.218667pt;}
.wsf2{word-spacing:6.336000pt;}
.ws5b{word-spacing:6.528000pt;}
.ws113{word-spacing:6.570667pt;}
.ws4c{word-spacing:6.592000pt;}
.ws7f{word-spacing:6.656000pt;}
.ws9d{word-spacing:6.720000pt;}
.ws29{word-spacing:6.746667pt;}
.ws66{word-spacing:6.784000pt;}
.wsd3{word-spacing:6.816000pt;}
.ws41{word-spacing:6.912000pt;}
.wse3{word-spacing:7.104000pt;}
.ws12a{word-spacing:7.157333pt;}
.ws47{word-spacing:7.168000pt;}
.ws59{word-spacing:7.360000pt;}
.ws13f{word-spacing:7.418667pt;}
.wsd8{word-spacing:7.424000pt;}
.ws7c{word-spacing:7.440000pt;}
.ws7d{word-spacing:7.554768pt;}
.ws32{word-spacing:7.616000pt;}
.wsdd{word-spacing:7.632000pt;}
.wsc1{word-spacing:7.680000pt;}
.ws33{word-spacing:7.733486pt;}
.ws21{word-spacing:7.744000pt;}
.wsb{word-spacing:7.802667pt;}
.ws129{word-spacing:7.861333pt;}
.wsc6{word-spacing:7.872000pt;}
.wsf{word-spacing:7.920000pt;}
.ws93{word-spacing:7.936000pt;}
.ws95{word-spacing:8.128000pt;}
.ws8a{word-spacing:8.188397pt;}
.wsda{word-spacing:8.256000pt;}
.ws10d{word-spacing:8.272000pt;}
.wse1{word-spacing:8.320000pt;}
.ws46{word-spacing:8.640000pt;}
.ws13d{word-spacing:8.666667pt;}
.ws119{word-spacing:8.741333pt;}
.wsd9{word-spacing:8.768000pt;}
.ws13e{word-spacing:8.800370pt;}
.wsa5{word-spacing:8.832000pt;}
.ws109{word-spacing:8.896000pt;}
.ws44{word-spacing:8.903258pt;}
.ws10b{word-spacing:8.976000pt;}
.ws12f{word-spacing:9.034667pt;}
.wsb7{word-spacing:9.152000pt;}
.wscd{word-spacing:9.216000pt;}
.wsd5{word-spacing:9.344000pt;}
.ws83{word-spacing:9.536000pt;}
.ws10e{word-spacing:9.562667pt;}
.ws39{word-spacing:9.664000pt;}
.ws10a{word-spacing:9.680000pt;}
.wsb8{word-spacing:9.696000pt;}
.wsf3{word-spacing:9.728000pt;}
.wsc0{word-spacing:9.920000pt;}
.ws5f{word-spacing:9.984000pt;}
.ws13a{word-spacing:10.330667pt;}
.ws11{word-spacing:10.442667pt;}
.ws2e{word-spacing:10.688000pt;}
.ws9{word-spacing:10.912000pt;}
.ws22{word-spacing:11.088000pt;}
.ws24{word-spacing:11.322667pt;}
.wsea{word-spacing:11.648000pt;}
.ws126{word-spacing:12.496000pt;}
.ws27{word-spacing:12.554667pt;}
.ws16{word-spacing:12.672000pt;}
.ws130{word-spacing:13.024000pt;}
.wse2{word-spacing:13.120000pt;}
.ws63{word-spacing:13.568000pt;}
.ws122{word-spacing:13.610667pt;}
.ws18{word-spacing:13.786667pt;}
.ws9b{word-spacing:13.824000pt;}
.ws14{word-spacing:13.845333pt;}
.ws13b{word-spacing:15.184000pt;}
.wsd{word-spacing:15.253333pt;}
.ws13c{word-spacing:15.418248pt;}
.ws23{word-spacing:15.546667pt;}
.ws10f{word-spacing:16.133333pt;}
.ws98{word-spacing:16.448000pt;}
.ws10c{word-spacing:16.720000pt;}
.wsa{word-spacing:17.130667pt;}
.ws120{word-spacing:17.658667pt;}
.ws105{word-spacing:18.496000pt;}
.ws15{word-spacing:18.832000pt;}
.wse{word-spacing:19.360000pt;}
.ws135{word-spacing:20.869333pt;}
.ws1c{word-spacing:21.002667pt;}
.ws134{word-spacing:26.138667pt;}
.wsc{word-spacing:27.280000pt;}
.ws6{word-spacing:32.970667pt;}
.ws7{word-spacing:34.202667pt;}
.ws1a{word-spacing:38.544000pt;}
.ws8b{word-spacing:45.440000pt;}
.ws19{word-spacing:46.170667pt;}
.ws8c{word-spacing:46.831105pt;}
.ws8d{word-spacing:52.437646pt;}
.ws6b{word-spacing:120.160000pt;}
.ws6f{word-spacing:256.000000pt;}
.ws6c{word-spacing:268.906667pt;}
.ws70{word-spacing:272.042667pt;}
.ws73{word-spacing:349.696000pt;}
.ws74{word-spacing:363.690667pt;}
.ws76{word-spacing:365.482667pt;}
.ws77{word-spacing:371.323733pt;}
.ws71{word-spacing:501.760000pt;}
.ws75{word-spacing:540.992000pt;}
.ws72{word-spacing:577.877333pt;}
.ws1{word-spacing:1076.544000pt;}
.ws7b{word-spacing:1168.042667pt;}
._15{margin-left:-10.724023pt;}
._18{margin-left:-9.718566pt;}
._e{margin-left:-8.474523pt;}
._d{margin-left:-7.364552pt;}
._4{margin-left:-6.349724pt;}
._3{margin-left:-5.262353pt;}
._6{margin-left:-4.131610pt;}
._1{margin-left:-3.165867pt;}
._0{margin-left:-1.646187pt;}
._2{width:1.705287pt;}
._16{width:2.728933pt;}
._5{width:3.632667pt;}
._14{width:4.555760pt;}
._b{width:5.875200pt;}
._c{width:6.956800pt;}
._f{width:8.065387pt;}
._1b{width:9.022613pt;}
._11{width:9.984000pt;}
._12{width:11.232000pt;}
._10{width:12.192000pt;}
._13{width:13.262187pt;}
._17{width:14.171840pt;}
._3c{width:15.227627pt;}
._a{width:16.120853pt;}
._1c{width:18.896960pt;}
._19{width:20.569600pt;}
._1a{width:22.169600pt;}
._8{width:56.954667pt;}
._7{width:57.880853pt;}
._2e{width:95.153707pt;}
._32{width:143.971413pt;}
._29{width:166.239953pt;}
._2b{width:179.864853pt;}
._31{width:210.037227pt;}
._1d{width:216.945707pt;}
._27{width:226.311040pt;}
._28{width:245.084373pt;}
._2f{width:247.278187pt;}
._2c{width:268.321387pt;}
._1f{width:281.479040pt;}
._39{width:288.152836pt;}
._34{width:296.046187pt;}
._35{width:298.222187pt;}
._33{width:303.605227pt;}
._26{width:340.693333pt;}
._36{width:352.128000pt;}
._2a{width:363.484373pt;}
._23{width:368.903040pt;}
._24{width:413.080853pt;}
._3a{width:430.403520pt;}
._20{width:434.055040pt;}
._37{width:458.520853pt;}
._22{width:465.304853pt;}
._25{width:482.712853pt;}
._30{width:498.243520pt;}
._38{width:512.256000pt;}
._9{width:731.126607pt;}
._3b{width:958.848000pt;}
._2d{width:1001.002667pt;}
._21{width:1038.446187pt;}
._1e{width:1104.622187pt;}
.fs11{font-size:37.312000pt;}
.fs12{font-size:42.666667pt;}
.fs10{font-size:48.000000pt;}
.fs13{font-size:48.740438pt;}
.fsa{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs8{font-size:59.626667pt;}
.fsd{font-size:62.186667pt;}
.fse{font-size:64.000000pt;}
.fs6{font-size:64.213333pt;}
.fsf{font-size:64.987281pt;}
.fs7{font-size:68.800000pt;}
.fs16{font-size:69.333333pt;}
.fs17{font-size:70.402957pt;}
.fs5{font-size:73.573333pt;}
.fsb{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.fs0{font-size:94.080000pt;}
.fs4{font-size:105.105067pt;}
.fsc{font-size:106.666667pt;}
.fs14{font-size:109.932172pt;}
.fs15{font-size:181.333333pt;}
.fs3{font-size:208.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:14.314400pt;}
.y3d{bottom:45.277200pt;}
.y2{bottom:48.000000pt;}
.y3c{bottom:59.943867pt;}
.y161{bottom:67.388133pt;}
.y22d{bottom:68.493067pt;}
.y2b6{bottom:74.918267pt;}
.yea{bottom:75.758800pt;}
.y3e{bottom:77.186400pt;}
.y40{bottom:78.509200pt;}
.y26b{bottom:79.156667pt;}
.y22c{bottom:81.825067pt;}
.ybd{bottom:82.309200pt;}
.y240{bottom:82.920933pt;}
.y317{bottom:83.047600pt;}
.y1e7{bottom:83.149600pt;}
.y63{bottom:83.150000pt;}
.y87{bottom:83.150933pt;}
.y26e{bottom:83.152267pt;}
.yaa{bottom:83.152667pt;}
.y132{bottom:84.498933pt;}
.y2b5{bottom:85.586267pt;}
.y36d{bottom:85.854533pt;}
.y33a{bottom:86.742667pt;}
.y2d7{bottom:86.822800pt;}
.y182{bottom:86.942133pt;}
.y1c5{bottom:86.982800pt;}
.y21e{bottom:87.046800pt;}
.y1a4{bottom:87.094667pt;}
.y397{bottom:87.405333pt;}
.ye9{bottom:90.206800pt;}
.y26a{bottom:92.488667pt;}
.y160{bottom:94.060133pt;}
.y22b{bottom:95.157067pt;}
.y2b4{bottom:96.254267pt;}
.y316{bottom:96.379600pt;}
.y86{bottom:96.482933pt;}
.y26d{bottom:96.484267pt;}
.y281{bottom:96.484667pt;}
.y23f{bottom:97.368933pt;}
.ye8{bottom:100.874800pt;}
.y27{bottom:103.627867pt;}
.y131{bottom:103.752267pt;}
.y62{bottom:104.042000pt;}
.ya9{bottom:104.044667pt;}
.y269{bottom:105.820667pt;}
.y36c{bottom:105.977200pt;}
.y396{bottom:107.410667pt;}
.y22a{bottom:108.489067pt;}
.y130{bottom:109.085600pt;}
.y315{bottom:109.711600pt;}
.y26c{bottom:109.816267pt;}
.yb9{bottom:110.416800pt;}
.y2b3{bottom:110.702267pt;}
.y1e6{bottom:111.308400pt;}
.y23e{bottom:111.816933pt;}
.y223{bottom:112.771067pt;}
.y339{bottom:113.606667pt;}
.y21d{bottom:113.782800pt;}
.y2d6{bottom:114.038800pt;}
.y181{bottom:114.046133pt;}
.y2e1{bottom:114.422800pt;}
.ye7{bottom:115.322800pt;}
.ya8{bottom:117.376667pt;}
.y268{bottom:119.152667pt;}
.y15f{bottom:120.732133pt;}
.y1a3{bottom:121.638667pt;}
.y229{bottom:121.821067pt;}
.y1c4{bottom:121.974800pt;}
.y314{bottom:123.043600pt;}
.y85{bottom:124.620933pt;}
.y26{bottom:124.967867pt;}
.y2b2{bottom:125.150267pt;}
.y222{bottom:127.219067pt;}
.ya7{bottom:130.708667pt;}
.y61{bottom:132.134667pt;}
.y206{bottom:132.170400pt;}
.ye1{bottom:132.179600pt;}
.ye0{bottom:132.180000pt;}
.y267{bottom:132.484667pt;}
.y36b{bottom:133.653200pt;}
.y12f{bottom:133.672267pt;}
.y395{bottom:134.969333pt;}
.y228{bottom:135.153067pt;}
.y280{bottom:136.560533pt;}
.yb8{bottom:138.528800pt;}
.y1e5{bottom:138.604400pt;}
.y12e{bottom:139.005600pt;}
.y338{bottom:140.470667pt;}
.y21c{bottom:140.518800pt;}
.y180{bottom:141.150133pt;}
.y2d5{bottom:141.254800pt;}
.y2e0{bottom:141.862800pt;}
.y25{bottom:146.307867pt;}
.y15e{bottom:147.404133pt;}
.y1a2{bottom:148.614667pt;}
.y1c3{bottom:149.414800pt;}
.y27f{bottom:151.008533pt;}
.y313{bottom:151.212667pt;}
.y84{bottom:151.740933pt;}
.y83{bottom:151.769200pt;}
.y266{bottom:153.376667pt;}
.y36a{bottom:153.775867pt;}
.y394{bottom:154.974667pt;}
.y227{bottom:156.045067pt;}
.y2a1{bottom:158.838400pt;}
.y205{bottom:159.194400pt;}
.y60{bottom:159.366667pt;}
.ydf{bottom:159.540000pt;}
.ya6{bottom:163.282667pt;}
.y12d{bottom:163.592267pt;}
.y27e{bottom:165.456533pt;}
.y1e4{bottom:165.900400pt;}
.yb7{bottom:166.640800pt;}
.y265{bottom:166.708667pt;}
.y21b{bottom:167.254800pt;}
.y337{bottom:167.334667pt;}
.y3b{bottom:167.501200pt;}
.y24{bottom:167.647867pt;}
.y17f{bottom:168.254133pt;}
.y2d4{bottom:168.470800pt;}
.y2df{bottom:169.302800pt;}
.y226{bottom:169.377067pt;}
.y15d{bottom:174.076133pt;}
.y12c{bottom:174.258933pt;}
.y393{bottom:174.980000pt;}
.y1a1{bottom:175.590667pt;}
.y1c2{bottom:176.854800pt;}
.y82{bottom:178.889200pt;}
.y369{bottom:181.451867pt;}
.y312{bottom:185.628667pt;}
.y2a0{bottom:185.974400pt;}
.y204{bottom:186.218400pt;}
.y5f{bottom:186.598667pt;}
.y264{bottom:187.291733pt;}
.y3a{bottom:188.841200pt;}
.y23{bottom:188.987867pt;}
.y225{bottom:190.269067pt;}
.y1e3{bottom:193.196400pt;}
.y12b{bottom:193.512267pt;}
.y21a{bottom:193.990800pt;}
.y336{bottom:194.198667pt;}
.yde{bottom:194.435333pt;}
.yb6{bottom:194.752800pt;}
.y2de{bottom:196.742800pt;}
.ya5{bottom:197.506667pt;}
.y15c{bottom:200.748133pt;}
.y368{bottom:201.574533pt;}
.y392{bottom:202.538667pt;}
.y1a0{bottom:202.566667pt;}
.y17e{bottom:202.910133pt;}
.y2d3{bottom:203.238800pt;}
.y224{bottom:203.601067pt;}
.y12a{bottom:204.178933pt;}
.y1c1{bottom:204.294800pt;}
.y81{bottom:206.009200pt;}
.y39{bottom:210.181200pt;}
.y22{bottom:210.327867pt;}
.y311{bottom:212.476667pt;}
.y29f{bottom:213.142400pt;}
.y203{bottom:213.242400pt;}
.y5e{bottom:213.830667pt;}
.y263{bottom:214.329467pt;}
.y129{bottom:214.845600pt;}
.y219{bottom:220.726800pt;}
.ydd{bottom:221.795333pt;}
.y391{bottom:222.544000pt;}
.yb5{bottom:222.864800pt;}
.ya4{bottom:224.178667pt;}
.y239{bottom:224.179733pt;}
.y2dd{bottom:224.182800pt;}
.y128{bottom:225.512267pt;}
.y15b{bottom:227.420133pt;}
.y1e2{bottom:228.060400pt;}
.y335{bottom:228.614667pt;}
.y367{bottom:229.250533pt;}
.y19f{bottom:229.542667pt;}
.y17d{bottom:230.014133pt;}
.y2d2{bottom:230.454800pt;}
.y38{bottom:231.521200pt;}
.y21{bottom:231.667867pt;}
.y1c0{bottom:231.734800pt;}
.y127{bottom:236.178933pt;}
.y310{bottom:239.324667pt;}
.y29e{bottom:240.310400pt;}
.y80{bottom:240.681200pt;}
.y5d{bottom:241.062667pt;}
.y262{bottom:241.353467pt;}
.y218{bottom:247.462800pt;}
.y202{bottom:247.817333pt;}
.ydc{bottom:249.155333pt;}
.y366{bottom:249.373200pt;}
.y390{bottom:250.102667pt;}
.ya3{bottom:250.850667pt;}
.yb4{bottom:250.976800pt;}
.y238{bottom:251.779733pt;}
.y37{bottom:252.861200pt;}
.y20{bottom:253.007867pt;}
.y15a{bottom:254.092133pt;}
.y1e1{bottom:255.356400pt;}
.y126{bottom:255.432267pt;}
.y334{bottom:255.478667pt;}
.y17c{bottom:257.118133pt;}
.y2d1{bottom:257.670800pt;}
.y1bf{bottom:259.174800pt;}
.y19e{bottom:264.086667pt;}
.y30f{bottom:266.172667pt;}
.y29d{bottom:267.478400pt;}
.y7f{bottom:267.801200pt;}
.y5c{bottom:268.294667pt;}
.y261{bottom:268.377467pt;}
.y38f{bottom:270.108000pt;}
.y217{bottom:274.198800pt;}
.y36{bottom:274.201200pt;}
.y1f{bottom:274.347867pt;}
.y125{bottom:274.685600pt;}
.y201{bottom:274.841333pt;}
.ydb{bottom:276.515333pt;}
.y365{bottom:277.049200pt;}
.ya2{bottom:277.522667pt;}
.yb3{bottom:279.088800pt;}
.y237{bottom:279.371733pt;}
.y159{bottom:280.764133pt;}
.y333{bottom:282.342667pt;}
.y1e0{bottom:282.652400pt;}
.y17b{bottom:284.222133pt;}
.y2d0{bottom:284.886800pt;}
.y123{bottom:285.352267pt;}
.y1be{bottom:286.614800pt;}
.y38e{bottom:290.113333pt;}
.y19d{bottom:291.062667pt;}
.y30e{bottom:293.020667pt;}
.y29c{bottom:294.646400pt;}
.y7e{bottom:294.921200pt;}
.y260{bottom:295.401467pt;}
.y35{bottom:295.541200pt;}
.y1e{bottom:295.687867pt;}
.y124{bottom:296.018933pt;}
.y364{bottom:297.171867pt;}
.y216{bottom:300.934800pt;}
.y5b{bottom:303.078667pt;}
.yda{bottom:303.875333pt;}
.ya1{bottom:304.194667pt;}
.y236{bottom:306.955067pt;}
.yb2{bottom:307.200800pt;}
.y332{bottom:309.190667pt;}
.y200{bottom:309.350800pt;}
.y1df{bottom:309.948400pt;}
.y17a{bottom:311.326133pt;}
.y2cf{bottom:312.102800pt;}
.y1bd{bottom:314.054800pt;}
.y158{bottom:314.988133pt;}
.y122{bottom:315.272267pt;}
.y34{bottom:316.881200pt;}
.y1d{bottom:317.027867pt;}
.y38d{bottom:317.672000pt;}
.y19c{bottom:318.038667pt;}
.y30d{bottom:319.998933pt;}
.y120{bottom:320.605600pt;}
.y29b{bottom:321.798400pt;}
.y7d{bottom:322.041200pt;}
.y363{bottom:324.847867pt;}
.y11f{bottom:325.938933pt;}
.y215{bottom:327.670800pt;}
.y25f{bottom:329.989067pt;}
.y25e{bottom:330.062267pt;}
.y5a{bottom:330.310667pt;}
.ya0{bottom:330.866667pt;}
.yd8{bottom:331.218533pt;}
.yd9{bottom:331.235333pt;}
.y235{bottom:334.555067pt;}
.yb1{bottom:335.312800pt;}
.y331{bottom:336.054667pt;}
.y1ff{bottom:336.374800pt;}
.y121{bottom:336.605600pt;}
.y38c{bottom:337.677333pt;}
.y33{bottom:338.221200pt;}
.y1c{bottom:338.367867pt;}
.y179{bottom:338.430133pt;}
.y2ce{bottom:339.318800pt;}
.y1bc{bottom:341.494800pt;}
.y157{bottom:341.660133pt;}
.y1de{bottom:344.883200pt;}
.y362{bottom:344.970533pt;}
.y19b{bottom:345.014667pt;}
.y30c{bottom:346.846933pt;}
.y7c{bottom:349.161200pt;}
.y214{bottom:354.406800pt;}
.y11e{bottom:355.858933pt;}
.y29a{bottom:356.518400pt;}
.y25d{bottom:357.086267pt;}
.y9f{bottom:357.538667pt;}
.y59{bottom:357.542667pt;}
.y38b{bottom:357.682667pt;}
.yd7{bottom:358.578533pt;}
.y32{bottom:359.561200pt;}
.y1b{bottom:359.707867pt;}
.y330{bottom:362.918667pt;}
.y1fe{bottom:363.398800pt;}
.yb0{bottom:363.415200pt;}
.y361{bottom:365.093200pt;}
.y11d{bottom:366.525600pt;}
.y2cd{bottom:366.534800pt;}
.y156{bottom:368.332133pt;}
.y1bb{bottom:368.934800pt;}
.y234{bottom:369.707067pt;}
.y19a{bottom:371.990667pt;}
.y1dd{bottom:372.179200pt;}
.y178{bottom:373.086133pt;}
.y30b{bottom:373.694933pt;}
.y7b{bottom:376.281200pt;}
.y31{bottom:380.901200pt;}
.y1a{bottom:381.047867pt;}
.y213{bottom:381.142800pt;}
.y299{bottom:383.558667pt;}
.y25c{bottom:384.110267pt;}
.y9e{bottom:384.210667pt;}
.y58{bottom:384.774667pt;}
.y38a{bottom:385.241333pt;}
.yd6{bottom:385.938533pt;}
.y32f{bottom:389.782667pt;}
.y1fd{bottom:390.422800pt;}
.yaf{bottom:391.527200pt;}
.y360{bottom:392.769200pt;}
.y2cc{bottom:393.750800pt;}
.y155{bottom:395.004133pt;}
.y3a7{bottom:396.336400pt;}
.y1ba{bottom:396.374800pt;}
.y11c{bottom:396.445600pt;}
.y233{bottom:397.291067pt;}
.y199{bottom:398.966667pt;}
.y1dc{bottom:399.475200pt;}
.y177{bottom:400.190133pt;}
.y30{bottom:402.241200pt;}
.y19{bottom:402.387867pt;}
.y7a{bottom:403.401200pt;}
.y2dc{bottom:403.926800pt;}
.y389{bottom:405.246667pt;}
.y11b{bottom:407.112267pt;}
.y212{bottom:407.878800pt;}
.y30a{bottom:408.110933pt;}
.y298{bottom:410.726667pt;}
.y25b{bottom:411.134267pt;}
.y57{bottom:412.006667pt;}
.yd5{bottom:413.298533pt;}
.y32e{bottom:416.646667pt;}
.y1fc{bottom:417.446800pt;}
.y9d{bottom:418.434667pt;}
.yae{bottom:419.639200pt;}
.y35f{bottom:420.445200pt;}
.y2cb{bottom:420.966800pt;}
.y154{bottom:421.676133pt;}
.y3a6{bottom:422.995067pt;}
.y2f{bottom:423.581200pt;}
.y18{bottom:423.727867pt;}
.y232{bottom:424.891067pt;}
.y388{bottom:425.252000pt;}
.y198{bottom:425.942667pt;}
.y11a{bottom:426.365600pt;}
.y1db{bottom:426.771200pt;}
.y176{bottom:427.294133pt;}
.y79{bottom:430.521200pt;}
.y1b9{bottom:431.366800pt;}
.y211{bottom:434.614800pt;}
.y309{bottom:434.958933pt;}
.y119{bottom:437.032267pt;}
.y297{bottom:437.894667pt;}
.y56{bottom:439.238667pt;}
.y35e{bottom:440.567867pt;}
.yd4{bottom:440.658533pt;}
.y32d{bottom:443.510667pt;}
.y2e{bottom:444.921200pt;}
.y17{bottom:445.067867pt;}
.y9c{bottom:445.106667pt;}
.y25a{bottom:445.726267pt;}
.y153{bottom:448.348133pt;}
.y3a5{bottom:449.653733pt;}
.y1fb{bottom:452.022800pt;}
.y231{bottom:452.483200pt;}
.y387{bottom:452.810667pt;}
.y1da{bottom:454.067200pt;}
.y175{bottom:454.398133pt;}
.yad{bottom:455.303200pt;}
.y2ca{bottom:455.734800pt;}
.y118{bottom:456.285600pt;}
.y78{bottom:457.641200pt;}
.y1b8{bottom:458.806800pt;}
.y197{bottom:460.486667pt;}
.y308{bottom:461.806933pt;}
.y2d{bottom:466.261200pt;}
.y16{bottom:466.407867pt;}
.y54{bottom:466.414133pt;}
.y55{bottom:466.470667pt;}
.yd3{bottom:468.008933pt;}
.y35d{bottom:468.243867pt;}
.y210{bottom:468.918800pt;}
.y32c{bottom:470.374667pt;}
.y9b{bottom:471.778667pt;}
.y296{bottom:472.614667pt;}
.y259{bottom:472.750267pt;}
.y386{bottom:472.816000pt;}
.y152{bottom:475.020133pt;}
.y117{bottom:475.538933pt;}
.y3a4{bottom:476.312400pt;}
.y3a3{bottom:476.320400pt;}
.y1fa{bottom:479.046800pt;}
.y230{bottom:480.067200pt;}
.y1d9{bottom:481.363200pt;}
.y2c9{bottom:482.950800pt;}
.yac{bottom:483.415200pt;}
.y116{bottom:486.205600pt;}
.y1b7{bottom:486.246800pt;}
.y196{bottom:487.462667pt;}
.y2c{bottom:487.601200pt;}
.y15{bottom:487.747867pt;}
.y307{bottom:488.654933pt;}
.y174{bottom:489.955200pt;}
.y113{bottom:491.538933pt;}
.y77{bottom:492.313200pt;}
.y53{bottom:493.646133pt;}
.y20f{bottom:495.654800pt;}
.y35c{bottom:495.919867pt;}
.y115{bottom:496.872267pt;}
.y32b{bottom:497.238667pt;}
.y9a{bottom:498.429333pt;}
.y295{bottom:499.766667pt;}
.y258{bottom:499.774267pt;}
.y385{bottom:500.374667pt;}
.y151{bottom:501.692133pt;}
.yd2{bottom:502.920933pt;}
.y3a2{bottom:502.979067pt;}
.y3a1{bottom:503.035067pt;}
.y1f9{bottom:506.070800pt;}
.y114{bottom:507.538933pt;}
.y22f{bottom:507.667200pt;}
.y2b{bottom:508.941200pt;}
.y14{bottom:509.087867pt;}
.y2c8{bottom:510.166800pt;}
.yab{bottom:511.527200pt;}
.y1b6{bottom:513.686800pt;}
.y195{bottom:514.438667pt;}
.y306{bottom:515.502933pt;}
.y35b{bottom:516.042533pt;}
.y1d8{bottom:516.227200pt;}
.y76{bottom:519.433200pt;}
.y384{bottom:520.380000pt;}
.y52{bottom:520.878133pt;}
.y173{bottom:521.955200pt;}
.y20e{bottom:522.390800pt;}
.y32a{bottom:524.102667pt;}
.y99{bottom:525.101333pt;}
.y112{bottom:526.792267pt;}
.y257{bottom:526.798267pt;}
.y294{bottom:526.934667pt;}
.y150{bottom:528.364133pt;}
.y3a0{bottom:529.693733pt;}
.yd1{bottom:530.280933pt;}
.y2a{bottom:530.281200pt;}
.y13{bottom:530.427867pt;}
.y1f8{bottom:533.094800pt;}
.y22e{bottom:535.251200pt;}
.y35a{bottom:536.165200pt;}
.y2c7{bottom:537.382800pt;}
.y111{bottom:537.458933pt;}
.y383{bottom:540.385333pt;}
.y1b5{bottom:541.126800pt;}
.y194{bottom:541.414667pt;}
.y305{bottom:542.350933pt;}
.y10e{bottom:542.792267pt;}
.ybc{bottom:543.076000pt;}
.y1d7{bottom:543.523200pt;}
.y75{bottom:546.553200pt;}
.y347{bottom:546.630800pt;}
.y10d{bottom:548.125600pt;}
.y2db{bottom:548.678800pt;}
.y20d{bottom:549.126800pt;}
.ye6{bottom:549.624000pt;}
.y329{bottom:550.966667pt;}
.y29{bottom:551.621200pt;}
.y12{bottom:551.767867pt;}
.y98{bottom:551.773333pt;}
.y256{bottom:553.822267pt;}
.y172{bottom:553.955200pt;}
.y2f3{bottom:554.243333pt;}
.y14f{bottom:555.036133pt;}
.y51{bottom:555.662133pt;}
.y39f{bottom:556.352400pt;}
.ybb{bottom:557.524000pt;}
.yd0{bottom:557.640933pt;}
.y110{bottom:558.792267pt;}
.ye5{bottom:560.292000pt;}
.y293{bottom:561.654667pt;}
.y359{bottom:563.841200pt;}
.y1f7{bottom:567.670800pt;}
.y382{bottom:567.944000pt;}
.y23d{bottom:568.132000pt;}
.y193{bottom:568.390667pt;}
.y304{bottom:569.198933pt;}
.y10f{bottom:569.458933pt;}
.y1d6{bottom:570.819200pt;}
.ye4{bottom:570.960000pt;}
.yba{bottom:571.972000pt;}
.y2c6{bottom:572.150800pt;}
.y28{bottom:572.961200pt;}
.y11{bottom:573.107867pt;}
.y346{bottom:573.302800pt;}
.y74{bottom:573.673200pt;}
.y221{bottom:574.800000pt;}
.y20c{bottom:575.862800pt;}
.y1b4{bottom:576.118800pt;}
.y243{bottom:577.415067pt;}
.y328{bottom:577.830667pt;}
.y97{bottom:578.445333pt;}
.y23c{bottom:578.800000pt;}
.y255{bottom:580.846267pt;}
.y2f2{bottom:580.915333pt;}
.y14e{bottom:581.708133pt;}
.y50{bottom:582.894133pt;}
.y39e{bottom:583.011067pt;}
.y358{bottom:583.963867pt;}
.ycf{bottom:585.000933pt;}
.ye3{bottom:585.408000pt;}
.y381{bottom:587.949333pt;}
.y10c{bottom:588.712267pt;}
.y292{bottom:588.822667pt;}
.y220{bottom:589.248000pt;}
.y242{bottom:591.863067pt;}
.y23b{bottom:593.248000pt;}
.y1f6{bottom:594.694800pt;}
.y192{bottom:595.366667pt;}
.y303{bottom:596.046933pt;}
.ye2{bottom:597.960000pt;}
.y1d5{bottom:598.115200pt;}
.y2c5{bottom:599.366800pt;}
.y345{bottom:599.974800pt;}
.y3f{bottom:600.168000pt;}
.y20b{bottom:602.598800pt;}
.y1b3{bottom:603.558800pt;}
.y21f{bottom:603.696000pt;}
.y327{bottom:604.694667pt;}
.y95{bottom:605.112000pt;}
.y96{bottom:605.117333pt;}
.y241{bottom:606.311067pt;}
.y2f1{bottom:607.587333pt;}
.y23a{bottom:607.696000pt;}
.y380{bottom:607.954667pt;}
.y109{bottom:607.965600pt;}
.y73{bottom:608.358800pt;}
.y14d{bottom:608.380133pt;}
.y39d{bottom:609.669733pt;}
.y4f{bottom:610.126133pt;}
.y357{bottom:611.639867pt;}
.ycd{bottom:612.317733pt;}
.yce{bottom:612.360933pt;}
.y10b{bottom:613.298933pt;}
.y254{bottom:615.438267pt;}
.y2b1{bottom:615.900133pt;}
.y291{bottom:615.990667pt;}
.y27d{bottom:617.375733pt;}
.y108{bottom:618.632267pt;}
.y1f5{bottom:621.718800pt;}
.y302{bottom:622.894933pt;}
.y10a{bottom:623.965600pt;}
.y1d4{bottom:625.411200pt;}
.y2c4{bottom:626.582800pt;}
.y344{bottom:626.646800pt;}
.y20a{bottom:629.334800pt;}
.y191{bottom:629.910667pt;}
.y1b2{bottom:630.998800pt;}
.y326{bottom:631.558667pt;}
.y356{bottom:631.762533pt;}
.y94{bottom:631.784000pt;}
.y2ef{bottom:634.254000pt;}
.y2f0{bottom:634.259333pt;}
.y14c{bottom:635.052133pt;}
.y72{bottom:635.478800pt;}
.y37f{bottom:635.513333pt;}
.y39c{bottom:636.328400pt;}
.y4e{bottom:637.358133pt;}
.ycc{bottom:639.677733pt;}
.y170{bottom:641.813067pt;}
.y171{bottom:641.818400pt;}
.y253{bottom:642.462267pt;}
.y2b0{bottom:642.636133pt;}
.y290{bottom:643.158667pt;}
.y27c{bottom:644.399733pt;}
.y107{bottom:648.552267pt;}
.y301{bottom:649.742933pt;}
.y1d3{bottom:652.707200pt;}
.y343{bottom:653.318800pt;}
.y2c3{bottom:653.798800pt;}
.y37e{bottom:655.518667pt;}
.y209{bottom:656.070800pt;}
.y1f4{bottom:656.294800pt;}
.y190{bottom:656.886667pt;}
.y1b1{bottom:658.438800pt;}
.y106{bottom:659.218933pt;}
.y355{bottom:659.438533pt;}
.y2ed{bottom:660.922400pt;}
.y2ee{bottom:660.926000pt;}
.y71{bottom:662.598800pt;}
.y39b{bottom:662.987067pt;}
.y4d{bottom:664.590133pt;}
.y325{bottom:665.974667pt;}
.ycb{bottom:667.037733pt;}
.y93{bottom:667.340933pt;}
.y16f{bottom:668.485067pt;}
.y14b{bottom:669.276133pt;}
.y2af{bottom:669.372133pt;}
.y252{bottom:669.486267pt;}
.y28f{bottom:670.326667pt;}
.y27b{bottom:671.423733pt;}
.y300{bottom:676.590933pt;}
.y354{bottom:679.561200pt;}
.y342{bottom:679.990800pt;}
.y1d2{bottom:680.003200pt;}
.y2c2{bottom:681.014800pt;}
.y37d{bottom:683.077333pt;}
.y1f3{bottom:683.318800pt;}
.y18f{bottom:683.862667pt;}
.y1b0{bottom:685.878800pt;}
.y2ec{bottom:687.594400pt;}
.y103{bottom:689.138933pt;}
.y39a{bottom:689.645733pt;}
.y70{bottom:689.718800pt;}
.y207{bottom:691.653600pt;}
.y4c{bottom:691.822133pt;}
.y324{bottom:692.838667pt;}
.yca{bottom:694.397733pt;}
.y105{bottom:694.472267pt;}
.y16e{bottom:695.146400pt;}
.y14a{bottom:695.948133pt;}
.y251{bottom:696.510267pt;}
.y28e{bottom:697.494667pt;}
.y27a{bottom:698.447733pt;}
.y102{bottom:699.805600pt;}
.y37c{bottom:703.082667pt;}
.y2ae{bottom:703.660133pt;}
.y104{bottom:705.138933pt;}
.y341{bottom:706.662800pt;}
.y353{bottom:707.237200pt;}
.y1f2{bottom:710.342800pt;}
.y18e{bottom:710.838667pt;}
.y2ff{bottom:711.006933pt;}
.y1af{bottom:713.318800pt;}
.y1d1{bottom:714.867200pt;}
.y2c1{bottom:715.782800pt;}
.y6f{bottom:716.838800pt;}
.y4b{bottom:719.054133pt;}
.y323{bottom:719.702667pt;}
.yc9{bottom:721.757733pt;}
.y2eb{bottom:721.791733pt;}
.y16c{bottom:721.813067pt;}
.y16d{bottom:721.818400pt;}
.y149{bottom:722.620133pt;}
.y37b{bottom:723.088000pt;}
.y250{bottom:723.534267pt;}
.y28d{bottom:724.662667pt;}
.y279{bottom:725.471733pt;}
.y352{bottom:727.359867pt;}
.y101{bottom:729.725600pt;}
.y2ad{bottom:730.396133pt;}
.y399{bottom:731.762800pt;}
.y340{bottom:733.334800pt;}
.y1f1{bottom:737.366800pt;}
.y2fe{bottom:737.854933pt;}
.yfe{bottom:740.392267pt;}
.y2da{bottom:740.758800pt;}
.y1d0{bottom:742.163200pt;}
.y2c0{bottom:742.998800pt;}
.y37a{bottom:743.093333pt;}
.y6e{bottom:743.958800pt;}
.y18d{bottom:745.382667pt;}
.y322{bottom:746.566667pt;}
.y1ae{bottom:748.310800pt;}
.y16a{bottom:748.458400pt;}
.y2ea{bottom:748.463733pt;}
.y16b{bottom:748.485067pt;}
.yc8{bottom:749.117733pt;}
.y148{bottom:749.292133pt;}
.y24f{bottom:750.558267pt;}
.yfd{bottom:751.058933pt;}
.y278{bottom:752.495733pt;}
.yc{bottom:753.514133pt;}
.y4a{bottom:753.838133pt;}
.y351{bottom:755.035867pt;}
.y2ac{bottom:757.132133pt;}
.y28c{bottom:759.382667pt;}
.y33f{bottom:760.006800pt;}
.y100{bottom:761.725600pt;}
.y2fd{bottom:764.702933pt;}
.y2d9{bottom:768.198800pt;}
.y1cf{bottom:769.459200pt;}
.yb{bottom:769.567600pt;}
.y2bf{bottom:770.214800pt;}
.y379{bottom:770.652000pt;}
.y6d{bottom:771.078800pt;}
.y1f0{bottom:771.942800pt;}
.y18c{bottom:772.358667pt;}
.yff{bottom:772.392267pt;}
.y321{bottom:773.430667pt;}
.y92{bottom:775.125067pt;}
.y169{bottom:775.130400pt;}
.y2e9{bottom:775.135733pt;}
.y350{bottom:775.158533pt;}
.y1ad{bottom:775.750800pt;}
.y147{bottom:775.964133pt;}
.yc7{bottom:776.477733pt;}
.y24e{bottom:777.582267pt;}
.y277{bottom:779.519733pt;}
.y49{bottom:781.070133pt;}
.y2ab{bottom:783.868133pt;}
.ya{bottom:785.620800pt;}
.y398{bottom:786.162800pt;}
.y28b{bottom:786.550667pt;}
.y33e{bottom:786.678800pt;}
.y378{bottom:790.657333pt;}
.y2fc{bottom:791.550933pt;}
.yfa{bottom:791.645600pt;}
.y34f{bottom:795.281200pt;}
.y2d8{bottom:795.638800pt;}
.y1ce{bottom:796.755200pt;}
.yfc{bottom:796.978933pt;}
.y2be{bottom:797.430800pt;}
.y6c{bottom:798.198800pt;}
.y1ef{bottom:798.966800pt;}
.y18b{bottom:799.334667pt;}
.y137{bottom:800.850000pt;}
.y91{bottom:801.797067pt;}
.y168{bottom:801.802400pt;}
.y2e8{bottom:801.807733pt;}
.yf9{bottom:802.312267pt;}
.y9{bottom:802.954133pt;}
.y1ac{bottom:803.190800pt;}
.yc6{bottom:803.837733pt;}
.y24d{bottom:804.606267pt;}
.y276{bottom:806.543733pt;}
.yfb{bottom:807.645600pt;}
.y320{bottom:807.846667pt;}
.y48{bottom:808.302133pt;}
.y2aa{bottom:810.604133pt;}
.y28a{bottom:813.718667pt;}
.y136{bottom:815.294933pt;}
.y377{bottom:818.216000pt;}
.y2fb{bottom:818.398933pt;}
.y33d{bottom:820.902800pt;}
.y34e{bottom:822.957200pt;}
.y1cd{bottom:824.051200pt;}
.y2bd{bottom:824.646800pt;}
.y6b{bottom:825.318800pt;}
.y134{bottom:825.961067pt;}
.y135{bottom:825.962933pt;}
.y1ee{bottom:825.990800pt;}
.y18a{bottom:826.310667pt;}
.y90{bottom:828.469067pt;}
.y167{bottom:828.474400pt;}
.y2e7{bottom:828.479733pt;}
.y1ab{bottom:830.630800pt;}
.yc5{bottom:831.197733pt;}
.y24c{bottom:831.630267pt;}
.yf8{bottom:832.232267pt;}
.y275{bottom:833.567733pt;}
.y31f{bottom:834.710667pt;}
.y47{bottom:835.534133pt;}
.y2a9{bottom:837.340133pt;}
.yf7{bottom:837.565600pt;}
.y376{bottom:838.221333pt;}
.y133{bottom:840.409067pt;}
.y289{bottom:840.886667pt;}
.y34d{bottom:843.079867pt;}
.y2fa{bottom:845.246933pt;}
.y33c{bottom:847.574800pt;}
.y1ed{bottom:853.014800pt;}
.y189{bottom:853.286667pt;}
.y2e5{bottom:855.126800pt;}
.y8f{bottom:855.141067pt;}
.y166{bottom:855.146400pt;}
.y2e6{bottom:855.151733pt;}
.y1aa{bottom:858.070800pt;}
.y375{bottom:858.226667pt;}
.yc4{bottom:858.557733pt;}
.y24b{bottom:858.654267pt;}
.y1cc{bottom:858.915200pt;}
.y2bc{bottom:859.414800pt;}
.y6a{bottom:859.990800pt;}
.y274{bottom:860.566800pt;}
.y31e{bottom:861.574667pt;}
.yf6{bottom:862.152267pt;}
.y46{bottom:862.766133pt;}
.y145{bottom:862.982800pt;}
.y8{bottom:864.663600pt;}
.y288{bottom:868.054667pt;}
.y34c{bottom:870.755867pt;}
.y2a8{bottom:871.628133pt;}
.y2f9{bottom:872.094933pt;}
.yf5{bottom:872.818933pt;}
.y143{bottom:873.649467pt;}
.y33b{bottom:874.246800pt;}
.yf2{bottom:878.152267pt;}
.y146{bottom:878.982800pt;}
.y1ec{bottom:880.038800pt;}
.y188{bottom:880.262667pt;}
.y208{bottom:881.798800pt;}
.y8e{bottom:881.813067pt;}
.y165{bottom:881.818400pt;}
.yf4{bottom:883.485600pt;}
.y142{bottom:884.316133pt;}
.y1a9{bottom:885.510800pt;}
.y24a{bottom:885.678267pt;}
.y249{bottom:885.692000pt;}
.y374{bottom:885.785333pt;}
.yc3{bottom:885.917733pt;}
.y1cb{bottom:886.211200pt;}
.y2bb{bottom:886.630800pt;}
.y69{bottom:887.110800pt;}
.y273{bottom:887.590800pt;}
.y31c{bottom:888.390800pt;}
.y31d{bottom:888.430800pt;}
.y2e4{bottom:889.350800pt;}
.y34b{bottom:890.878533pt;}
.yf3{bottom:894.152267pt;}
.y144{bottom:894.982800pt;}
.y287{bottom:895.222667pt;}
.y45{bottom:897.550133pt;}
.y2a7{bottom:898.364133pt;}
.y2f8{bottom:898.942933pt;}
.y7{bottom:899.065338pt;}
.y373{bottom:905.790667pt;}
.y1eb{bottom:907.062800pt;}
.y187{bottom:907.238667pt;}
.y164{bottom:908.470800pt;}
.y8c{bottom:908.479733pt;}
.y8d{bottom:908.485067pt;}
.y248{bottom:912.716000pt;}
.y1a8{bottom:912.950800pt;}
.yc2{bottom:913.277733pt;}
.yf1{bottom:913.405600pt;}
.y1ca{bottom:913.507200pt;}
.y1c9{bottom:913.526800pt;}
.y2ba{bottom:913.846800pt;}
.y68{bottom:914.230800pt;}
.y141{bottom:914.236133pt;}
.y272{bottom:914.614800pt;}
.y31b{bottom:915.254800pt;}
.y2e3{bottom:916.022800pt;}
.y34a{bottom:918.554533pt;}
.y286{bottom:922.390667pt;}
.yf0{bottom:924.072267pt;}
.y44{bottom:924.782133pt;}
.y140{bottom:924.902800pt;}
.y2a6{bottom:925.100133pt;}
.y2f7{bottom:925.790933pt;}
.y2f6{bottom:925.804400pt;}
.y372{bottom:933.349333pt;}
.y6{bottom:933.723733pt;}
.y1ea{bottom:934.086800pt;}
.y8a{bottom:935.142800pt;}
.y8b{bottom:935.151733pt;}
.y349{bottom:938.677200pt;}
.y247{bottom:939.740000pt;}
.y1a7{bottom:940.390800pt;}
.yc1{bottom:940.637733pt;}
.y1c8{bottom:940.822800pt;}
.y2b9{bottom:941.062800pt;}
.y67{bottom:941.350800pt;}
.y271{bottom:941.638800pt;}
.y186{bottom:941.782667pt;}
.y31a{bottom:942.118800pt;}
.y2e2{bottom:942.694800pt;}
.y13f{bottom:944.156133pt;}
.y285{bottom:949.558667pt;}
.y2a5{bottom:951.836133pt;}
.y43{bottom:952.014133pt;}
.y2f5{bottom:952.652400pt;}
.y371{bottom:953.354667pt;}
.yef{bottom:953.992267pt;}
.y1e9{bottom:961.110800pt;}
.y89{bottom:961.814800pt;}
.y13e{bottom:963.409467pt;}
.y1a6{bottom:967.830800pt;}
.y1c7{bottom:968.118800pt;}
.y2b8{bottom:968.278800pt;}
.y66{bottom:968.470800pt;}
.y270{bottom:968.662800pt;}
.y185{bottom:968.758667pt;}
.y319{bottom:968.982800pt;}
.y163{bottom:969.366800pt;}
.yee{bottom:973.245600pt;}
.y370{bottom:973.360000pt;}
.y13d{bottom:974.076133pt;}
.y246{bottom:974.332000pt;}
.yc0{bottom:975.549733pt;}
.y284{bottom:976.710667pt;}
.y348{bottom:978.165067pt;}
.y2a4{bottom:978.572133pt;}
.y42{bottom:979.246133pt;}
.y13a{bottom:979.409467pt;}
.y2f4{bottom:979.500400pt;}
.y13c{bottom:984.742800pt;}
.y10{bottom:987.631867pt;}
.y1e8{bottom:988.134800pt;}
.y88{bottom:988.486800pt;}
.yed{bottom:992.498933pt;}
.y1a5{bottom:995.270800pt;}
.y13b{bottom:995.409467pt;}
.y1c6{bottom:995.414800pt;}
.y2b7{bottom:995.494800pt;}
.y65{bottom:995.590800pt;}
.y26f{bottom:995.686800pt;}
.y184{bottom:995.734667pt;}
.y318{bottom:995.846800pt;}
.y162{bottom:996.038800pt;}
.y36f{bottom:1000.918667pt;}
.y245{bottom:1001.356000pt;}
.ybf{bottom:1002.909733pt;}
.yf{bottom:1003.633200pt;}
.y283{bottom:1003.878667pt;}
.y2a3{bottom:1005.308133pt;}
.yec{bottom:1011.752133pt;}
.y139{bottom:1014.662667pt;}
.y41{bottom:1015.057600pt;}
.ye{bottom:1019.634533pt;}
.y36e{bottom:1020.924000pt;}
.y183{bottom:1022.710667pt;}
.y64{bottom:1022.710800pt;}
.yeb{bottom:1027.752133pt;}
.y244{bottom:1028.380000pt;}
.ybe{bottom:1030.269733pt;}
.y138{bottom:1030.662667pt;}
.y282{bottom:1031.046667pt;}
.y2a2{bottom:1032.044133pt;}
.yd{bottom:1035.635867pt;}
.y4{bottom:1060.205333pt;}
.y3{bottom:1074.519733pt;}
.y1{bottom:1078.504000pt;}
.h1e{height:32.704000pt;}
.h1c{height:39.509333pt;}
.h10{height:40.320000pt;}
.h15{height:43.296000pt;}
.h19{height:43.680000pt;}
.h22{height:44.353798pt;}
.he{height:48.960000pt;}
.hc{height:52.917333pt;}
.h2b{height:53.269333pt;}
.hb{height:53.783253pt;}
.hd{height:53.856000pt;}
.h1f{height:54.037333pt;}
.h11{height:56.448000pt;}
.h7{height:56.504320pt;}
.h9{height:57.920427pt;}
.h13{height:58.752000pt;}
.h26{height:58.754667pt;}
.h25{height:58.756267pt;}
.h18{height:58.790400pt;}
.h1a{height:58.818667pt;}
.h17{height:58.837333pt;}
.h27{height:58.851733pt;}
.h2a{height:58.858667pt;}
.h29{height:58.880000pt;}
.h24{height:59.018133pt;}
.h28{height:59.262933pt;}
.h16{height:59.264000pt;}
.h14{height:59.658324pt;}
.h21{height:60.842667pt;}
.ha{height:62.057600pt;}
.h5{height:62.314667pt;}
.h2d{height:62.538667pt;}
.h2e{height:63.503468pt;}
.h20{height:75.370667pt;}
.h8{height:76.970667pt;}
.h1b{height:80.960000pt;}
.h1d{height:82.176000pt;}
.h3{height:82.506667pt;}
.h2{height:84.860160pt;}
.h6{height:95.435401pt;}
.h12{height:96.213333pt;}
.h23{height:99.158819pt;}
.hf{height:107.626667pt;}
.h2c{height:139.264000pt;}
.h4{height:189.280000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:186.388560pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:3.118107pt;}
.x5{left:12.000027pt;}
.x3{left:15.118133pt;}
.x6{left:47.024667pt;}
.x7e{left:48.004800pt;}
.x25{left:54.120133pt;}
.xf{left:55.559200pt;}
.x11{left:59.338533pt;}
.x13{left:60.472400pt;}
.x55{left:67.409067pt;}
.x4d{left:68.529067pt;}
.x4f{left:69.937067pt;}
.x5a{left:71.014400pt;}
.x3c{left:76.390400pt;}
.x4c{left:79.782400pt;}
.x27{left:87.889067pt;}
.x60{left:89.672267pt;}
.x52{left:93.862400pt;}
.x32{left:97.905067pt;}
.x5c{left:100.987733pt;}
.x37{left:102.587733pt;}
.x28{left:104.198400pt;}
.x6e{left:105.177200pt;}
.x5f{left:107.771733pt;}
.x29{left:109.574400pt;}
.x26{left:112.166400pt;}
.x2f{left:113.883733pt;}
.x19{left:119.105467pt;}
.x50{left:124.806400pt;}
.x24{left:127.706800pt;}
.x5b{left:130.993067pt;}
.x17{left:134.059600pt;}
.x43{left:138.417067pt;}
.x4e{left:140.219733pt;}
.x73{left:165.177200pt;}
.x1a{left:185.672267pt;}
.x77{left:187.592000pt;}
.x18{left:197.138933pt;}
.x1c{left:223.305867pt;}
.x6f{left:224.798000pt;}
.x23{left:226.418267pt;}
.x1f{left:247.084000pt;}
.x6b{left:266.028400pt;}
.x81{left:276.516933pt;}
.x49{left:278.214400pt;}
.x63{left:279.378933pt;}
.x3d{left:281.169067pt;}
.x33{left:282.609067pt;}
.x58{left:283.835733pt;}
.x56{left:285.318400pt;}
.x41{left:286.769067pt;}
.x64{left:288.402933pt;}
.x48{left:289.329067pt;}
.x5e{left:291.622400pt;}
.x57{left:295.035733pt;}
.x1{left:298.596667pt;}
.x78{left:305.477600pt;}
.x4a{left:315.590400pt;}
.x65{left:316.552267pt;}
.x5d{left:318.267733pt;}
.x59{left:320.006400pt;}
.x70{left:325.668000pt;}
.x44{left:326.982400pt;}
.x34{left:327.878400pt;}
.x20{left:329.122133pt;}
.x53{left:330.950400pt;}
.x7d{left:333.363467pt;}
.x7c{left:340.157467pt;}
.x6a{left:348.059200pt;}
.x21{left:352.918133pt;}
.x15{left:355.689333pt;}
.x2{left:375.899333pt;}
.x10{left:407.617867pt;}
.x12{left:409.951867pt;}
.x39{left:411.633067pt;}
.x3a{left:414.118400pt;}
.x2a{left:416.102400pt;}
.x2b{left:418.801067pt;}
.x35{left:421.819733pt;}
.x38{left:423.622400pt;}
.x3f{left:426.022400pt;}
.x54{left:430.374400pt;}
.x3e{left:433.297067pt;}
.x42{left:440.251733pt;}
.x22{left:444.495467pt;}
.x4b{left:447.878400pt;}
.x66{left:450.258933pt;}
.x36{left:451.505067pt;}
.x7f{left:454.372000pt;}
.x72{left:456.950133pt;}
.x16{left:471.141733pt;}
.x51{left:479.718400pt;}
.x30{left:483.430400pt;}
.x40{left:485.403733pt;}
.x3b{left:486.449067pt;}
.x7{left:490.887333pt;}
.x74{left:504.398400pt;}
.xe{left:509.800533pt;}
.x9{left:524.658800pt;}
.x71{left:543.653467pt;}
.x14{left:551.695600pt;}
.x68{left:563.162133pt;}
.x1d{left:570.215867pt;}
.x69{left:571.656267pt;}
.x75{left:580.301067pt;}
.x79{left:581.200133pt;}
.x8{left:583.307067pt;}
.xd{left:585.744533pt;}
.xc{left:592.784533pt;}
.x1b{left:610.096533pt;}
.xb{left:612.877867pt;}
.xa{left:615.586133pt;}
.x46{left:617.211733pt;}
.x45{left:619.014400pt;}
.x7a{left:620.303733pt;}
.x2d{left:622.513067pt;}
.x61{left:625.352267pt;}
.x2c{left:626.897067pt;}
.x1e{left:628.288533pt;}
.x62{left:630.546933pt;}
.x47{left:642.619733pt;}
.x6c{left:646.177200pt;}
.x2e{left:649.286400pt;}
.x67{left:659.147333pt;}
.x31{left:660.710400pt;}
.x7b{left:688.969200pt;}
.x76{left:695.308400pt;}
.x6d{left:734.362267pt;}
.x80{left:741.922400pt;}
}




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