
    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_d5ad16329c6dfce4f960de41.woff')format("woff");}.ff1{font-family:ff1;line-height:0.934200;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_e77988f2376902b6048533d4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_341e3a04f226bceda59217a3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.886000;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_02a14d81dd68401cc5a77d6f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.913413;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_c0fa78eadaf5c460aef0b1d8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.846000;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_192eeaff4bb84ebe0aa9b281.woff')format("woff");}.ff6{font-family:ff6;line-height:1.094000;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_69e71ad0030c50aafdd701b2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.929000;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_ed9c360f7399f3bc4f70789c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910000;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_189f6d127a4bacecec7d343d.woff')format("woff");}.ff9{font-family:ff9;line-height:1.094000;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_d1442880c569323d618a2b4b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.710000;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_08c8ad06671fd8e84ee23a86.woff')format("woff");}.ffb{font-family:ffb;line-height:1.102000;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_8b6705879069bb00696d0dc4.woff')format("woff");}.ffc{font-family:ffc;line-height:0.700000;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_ba030c24c5785f4f504735aa.woff')format("woff");}.ffd{font-family:ffd;line-height:0.919000;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_c0375f645be0a792d26b97b0.woff')format("woff");}.ffe{font-family:ffe;line-height:0.965048;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_ba2c1cd477756a2e4b29bb2a.woff')format("woff");}.fff{font-family:fff;line-height:1.102000;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_1418140e866b2d6595752219.woff')format("woff");}.ff10{font-family:ff10;line-height:0.971000;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_d69679ba5efb0ed9e2a0ad6c.woff')format("woff");}.ff11{font-family:ff11;line-height:0.912000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_1ffdbf9b093e3a4b1c5bce77.woff')format("woff");}.ff12{font-family:ff12;line-height:0.910000;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_aff4c3c6eb877e7dd366453c.woff')format("woff");}.ff13{font-family:ff13;line-height:0.916000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_c73ddbe6172229470b4a3377.woff')format("woff");}.ff14{font-family:ff14;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-18.591600px;}
.v0{vertical-align:0.000000px;}
.ls17{letter-spacing:-5.076000px;}
.ls8{letter-spacing:-4.620000px;}
.ls31{letter-spacing:-4.590000px;}
.ls9{letter-spacing:-4.356000px;}
.ls6{letter-spacing:-3.930000px;}
.ls7{letter-spacing:-3.924000px;}
.ls26{letter-spacing:-3.726000px;}
.ls1d{letter-spacing:-2.430000px;}
.ls27{letter-spacing:-2.106000px;}
.ls28{letter-spacing:-2.052000px;}
.ls33{letter-spacing:-2.040000px;}
.ls2f{letter-spacing:-1.890000px;}
.ls2c{letter-spacing:-1.728000px;}
.ls29{letter-spacing:-1.350000px;}
.ls23{letter-spacing:-1.296000px;}
.ls2b{letter-spacing:-1.242000px;}
.ls1f{letter-spacing:-1.188000px;}
.ls24{letter-spacing:-1.080000px;}
.lsc{letter-spacing:-0.990000px;}
.ls1e{letter-spacing:-0.840000px;}
.ls20{letter-spacing:-0.756000px;}
.ls11{letter-spacing:-0.660000px;}
.ls2a{letter-spacing:-0.594000px;}
.lsd{letter-spacing:-0.528000px;}
.ls21{letter-spacing:-0.486000px;}
.ls1c{letter-spacing:-0.420000px;}
.ls14{letter-spacing:-0.396000px;}
.ls12{letter-spacing:-0.330000px;}
.lsa{letter-spacing:-0.324000px;}
.ls1b{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.198000px;}
.ls25{letter-spacing:-0.162000px;}
.ls15{letter-spacing:-0.108000px;}
.ls0{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.054000px;}
.lsf{letter-spacing:0.264000px;}
.ls32{letter-spacing:0.270000px;}
.lse{letter-spacing:0.594000px;}
.ls19{letter-spacing:0.660000px;}
.ls10{letter-spacing:0.726000px;}
.ls30{letter-spacing:0.756000px;}
.ls18{letter-spacing:0.858000px;}
.ls2e{letter-spacing:0.918000px;}
.ls16{letter-spacing:1.254000px;}
.ls5{letter-spacing:3.540000px;}
.ls4{letter-spacing:3.546000px;}
.ls2d{letter-spacing:3.888000px;}
.ls1{letter-spacing:3.930000px;}
.ls2{letter-spacing:3.936000px;}
.ls3{letter-spacing:3.942000px;}
.lsb{letter-spacing:5.610000px;}
.ls1a{letter-spacing:31.050000px;}
.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;}
}
.wse5{word-spacing:-120.000000px;}
.wse4{word-spacing:-84.012000px;}
.wse3{word-spacing:-84.000000px;}
.wsf{word-spacing:-24.000000px;}
.ws4{word-spacing:-14.400000px;}
.wsc1{word-spacing:-13.662000px;}
.wsc2{word-spacing:-13.464000px;}
.ws63{word-spacing:-13.398000px;}
.ws10{word-spacing:-13.200000px;}
.ws64{word-spacing:-13.068000px;}
.ws2c{word-spacing:-12.804000px;}
.ws94{word-spacing:-12.606000px;}
.ws84{word-spacing:-12.474000px;}
.ws9f{word-spacing:-12.408000px;}
.ws83{word-spacing:-12.144000px;}
.ws3{word-spacing:-12.000000px;}
.ws13a{word-spacing:-11.718000px;}
.wse6{word-spacing:-11.640000px;}
.ws13b{word-spacing:-11.232000px;}
.wse9{word-spacing:-11.220000px;}
.ws13c{word-spacing:-11.070000px;}
.ws92{word-spacing:-10.800000px;}
.ws5{word-spacing:-10.476000px;}
.ws12f{word-spacing:-10.314000px;}
.wse0{word-spacing:-10.260000px;}
.ws134{word-spacing:-10.206000px;}
.ws123{word-spacing:-10.044000px;}
.ws129{word-spacing:-9.720000px;}
.ws122{word-spacing:-9.612000px;}
.ws0{word-spacing:-9.600000px;}
.ws11{word-spacing:-8.580000px;}
.ws1{word-spacing:-8.400000px;}
.ws68{word-spacing:-8.382000px;}
.wsef{word-spacing:-8.370000px;}
.wsa6{word-spacing:-6.336000px;}
.ws5b{word-spacing:-5.742000px;}
.wsb5{word-spacing:-5.724000px;}
.ws25{word-spacing:-5.082000px;}
.ws43{word-spacing:-4.686000px;}
.ws2a{word-spacing:-4.620000px;}
.ws13f{word-spacing:-4.590000px;}
.ws65{word-spacing:-4.488000px;}
.ws140{word-spacing:-4.428000px;}
.ws7e{word-spacing:-4.356000px;}
.wsb7{word-spacing:-4.290000px;}
.wsb2{word-spacing:-4.092000px;}
.ws7c{word-spacing:-3.762000px;}
.ws53{word-spacing:-3.630000px;}
.ws10a{word-spacing:-3.540000px;}
.wsd6{word-spacing:-3.498000px;}
.ws45{word-spacing:-3.432000px;}
.ws10b{word-spacing:-3.420000px;}
.ws1d{word-spacing:-3.366000px;}
.wsc3{word-spacing:-3.300000px;}
.ws9e{word-spacing:-3.234000px;}
.wsb8{word-spacing:-3.102000px;}
.ws3e{word-spacing:-3.036000px;}
.ws9b{word-spacing:-2.970000px;}
.ws8c{word-spacing:-2.838000px;}
.wsaa{word-spacing:-2.706000px;}
.ws37{word-spacing:-2.640000px;}
.ws9c{word-spacing:-2.508000px;}
.ws6f{word-spacing:-2.442000px;}
.ws87{word-spacing:-2.376000px;}
.wsaf{word-spacing:-2.310000px;}
.ws4e{word-spacing:-2.244000px;}
.ws3a{word-spacing:-2.178000px;}
.ws9d{word-spacing:-2.112000px;}
.ws10f{word-spacing:-2.040000px;}
.ws110{word-spacing:-1.980000px;}
.ws8{word-spacing:-1.944000px;}
.ws11f{word-spacing:-1.920000px;}
.ws24{word-spacing:-1.914000px;}
.ws10e{word-spacing:-1.860000px;}
.wsd5{word-spacing:-1.848000px;}
.ws104{word-spacing:-1.800000px;}
.ws67{word-spacing:-1.782000px;}
.ws103{word-spacing:-1.740000px;}
.ws90{word-spacing:-1.716000px;}
.wsc8{word-spacing:-1.650000px;}
.ws112{word-spacing:-1.620000px;}
.wsbe{word-spacing:-1.584000px;}
.ws111{word-spacing:-1.560000px;}
.ws118{word-spacing:-1.500000px;}
.ws4a{word-spacing:-1.452000px;}
.ws31{word-spacing:-1.320000px;}
.wsd{word-spacing:-1.296000px;}
.ws22{word-spacing:-1.254000px;}
.wsec{word-spacing:-1.200000px;}
.wsed{word-spacing:-1.140000px;}
.ws71{word-spacing:-1.122000px;}
.ws7b{word-spacing:-1.056000px;}
.ws81{word-spacing:-0.990000px;}
.ws2e{word-spacing:-0.924000px;}
.ws97{word-spacing:-0.858000px;}
.ws74{word-spacing:-0.726000px;}
.ws1c{word-spacing:-0.660000px;}
.ws6c{word-spacing:-0.594000px;}
.wsff{word-spacing:-0.540000px;}
.ws82{word-spacing:-0.528000px;}
.ws7d{word-spacing:-0.462000px;}
.wse2{word-spacing:-0.432000px;}
.ws20{word-spacing:-0.396000px;}
.ws21{word-spacing:-0.390000px;}
.ws2d{word-spacing:-0.330000px;}
.ws12a{word-spacing:-0.270000px;}
.ws34{word-spacing:-0.264000px;}
.wsfc{word-spacing:-0.240000px;}
.ws136{word-spacing:-0.216000px;}
.ws132{word-spacing:-0.162000px;}
.ws2{word-spacing:-0.150000px;}
.ws19{word-spacing:-0.132000px;}
.ws6{word-spacing:0.000000px;}
.wsd1{word-spacing:0.132000px;}
.ws114{word-spacing:0.180000px;}
.wsa3{word-spacing:0.198000px;}
.wsa4{word-spacing:0.264000px;}
.ws8d{word-spacing:0.330000px;}
.ws2b{word-spacing:0.396000px;}
.ws6b{word-spacing:0.462000px;}
.ws57{word-spacing:0.528000px;}
.ws73{word-spacing:0.594000px;}
.ws113{word-spacing:0.600000px;}
.ws46{word-spacing:0.660000px;}
.ws54{word-spacing:0.726000px;}
.wseb{word-spacing:0.780000px;}
.ws42{word-spacing:0.858000px;}
.ws117{word-spacing:0.960000px;}
.ws52{word-spacing:0.990000px;}
.ws27{word-spacing:1.122000px;}
.ws99{word-spacing:1.188000px;}
.wsf8{word-spacing:1.200000px;}
.ws8e{word-spacing:1.254000px;}
.ws41{word-spacing:1.320000px;}
.ws80{word-spacing:1.386000px;}
.ws7a{word-spacing:1.452000px;}
.ws107{word-spacing:1.500000px;}
.wscc{word-spacing:1.518000px;}
.wscf{word-spacing:1.584000px;}
.wsf7{word-spacing:1.620000px;}
.ws33{word-spacing:1.650000px;}
.wsf6{word-spacing:1.680000px;}
.ws1e{word-spacing:1.716000px;}
.wscb{word-spacing:1.782000px;}
.ws3f{word-spacing:1.848000px;}
.ws10c{word-spacing:1.860000px;}
.ws13e{word-spacing:1.890000px;}
.ws10d{word-spacing:1.920000px;}
.ws60{word-spacing:1.980000px;}
.ws139{word-spacing:2.052000px;}
.ws16{word-spacing:2.106000px;}
.wsa2{word-spacing:2.112000px;}
.ws5e{word-spacing:2.178000px;}
.wsee{word-spacing:2.280000px;}
.ws11d{word-spacing:2.340000px;}
.ws1f{word-spacing:2.376000px;}
.ws100{word-spacing:2.400000px;}
.ws28{word-spacing:2.442000px;}
.ws101{word-spacing:2.460000px;}
.ws7f{word-spacing:2.574000px;}
.wsea{word-spacing:2.760000px;}
.ws6a{word-spacing:2.772000px;}
.ws11b{word-spacing:2.820000px;}
.wsab{word-spacing:2.904000px;}
.wsf5{word-spacing:2.940000px;}
.ws89{word-spacing:2.970000px;}
.wsf4{word-spacing:3.060000px;}
.wsce{word-spacing:3.102000px;}
.ws11a{word-spacing:3.120000px;}
.ws32{word-spacing:3.168000px;}
.ws119{word-spacing:3.240000px;}
.wsc7{word-spacing:3.300000px;}
.wsf9{word-spacing:3.360000px;}
.wsba{word-spacing:3.366000px;}
.ws12{word-spacing:3.564000px;}
.ws35{word-spacing:3.696000px;}
.wsfb{word-spacing:3.720000px;}
.wsfa{word-spacing:3.780000px;}
.ws11e{word-spacing:3.840000px;}
.ws38{word-spacing:3.960000px;}
.ws2f{word-spacing:4.026000px;}
.ws98{word-spacing:4.158000px;}
.wsc4{word-spacing:4.224000px;}
.ws11c{word-spacing:4.260000px;}
.ws15{word-spacing:4.482000px;}
.wsbc{word-spacing:4.554000px;}
.ws141{word-spacing:4.590000px;}
.wsd0{word-spacing:4.620000px;}
.ws88{word-spacing:4.686000px;}
.ws93{word-spacing:4.752000px;}
.ws3b{word-spacing:4.818000px;}
.wscd{word-spacing:4.950000px;}
.ws102{word-spacing:5.160000px;}
.ws86{word-spacing:5.214000px;}
.wse8{word-spacing:5.220000px;}
.ws29{word-spacing:5.346000px;}
.wse7{word-spacing:5.400000px;}
.ws14{word-spacing:5.508000px;}
.ws85{word-spacing:5.610000px;}
.ws48{word-spacing:5.676000px;}
.ws30{word-spacing:5.742000px;}
.wsfe{word-spacing:5.820000px;}
.ws55{word-spacing:5.874000px;}
.ws4f{word-spacing:5.940000px;}
.wsfd{word-spacing:6.000000px;}
.wsa8{word-spacing:6.006000px;}
.wsb9{word-spacing:6.072000px;}
.wse{word-spacing:6.102000px;}
.ws39{word-spacing:6.138000px;}
.wsb6{word-spacing:6.204000px;}
.ws49{word-spacing:6.468000px;}
.wsc5{word-spacing:6.534000px;}
.wsb{word-spacing:6.642000px;}
.wsc9{word-spacing:6.732000px;}
.ws1a{word-spacing:6.798000px;}
.wsa{word-spacing:6.858000px;}
.ws59{word-spacing:6.864000px;}
.ws61{word-spacing:6.996000px;}
.wsd3{word-spacing:7.128000px;}
.wsac{word-spacing:7.260000px;}
.ws23{word-spacing:7.326000px;}
.ws8b{word-spacing:7.392000px;}
.ws13{word-spacing:7.452000px;}
.ws8a{word-spacing:7.458000px;}
.ws4b{word-spacing:7.524000px;}
.ws1b{word-spacing:7.590000px;}
.wsbd{word-spacing:7.788000px;}
.wsca{word-spacing:7.986000px;}
.ws72{word-spacing:8.052000px;}
.ws75{word-spacing:8.118000px;}
.wsad{word-spacing:8.184000px;}
.wsb4{word-spacing:8.316000px;}
.ws5a{word-spacing:8.382000px;}
.ws4d{word-spacing:8.448000px;}
.ws9{word-spacing:8.532000px;}
.wsf3{word-spacing:8.820000px;}
.wsbb{word-spacing:8.844000px;}
.wsa9{word-spacing:8.910000px;}
.ws5d{word-spacing:8.976000px;}
.wsf2{word-spacing:9.120000px;}
.ws70{word-spacing:9.174000px;}
.wsc{word-spacing:9.180000px;}
.ws7{word-spacing:9.234000px;}
.ws4c{word-spacing:9.570000px;}
.ws18{word-spacing:9.636000px;}
.wsa1{word-spacing:9.900000px;}
.ws36{word-spacing:9.966000px;}
.ws44{word-spacing:10.032000px;}
.ws5c{word-spacing:10.428000px;}
.ws95{word-spacing:10.560000px;}
.wsf1{word-spacing:10.740000px;}
.ws50{word-spacing:10.956000px;}
.wsa5{word-spacing:11.022000px;}
.wsf0{word-spacing:11.040000px;}
.ws76{word-spacing:11.088000px;}
.ws51{word-spacing:11.154000px;}
.wsb1{word-spacing:11.286000px;}
.ws91{word-spacing:11.484000px;}
.ws116{word-spacing:11.580000px;}
.ws26{word-spacing:11.814000px;}
.ws115{word-spacing:11.940000px;}
.wsb0{word-spacing:12.078000px;}
.ws96{word-spacing:12.144000px;}
.wsd2{word-spacing:12.276000px;}
.ws6d{word-spacing:12.738000px;}
.ws62{word-spacing:13.068000px;}
.ws121{word-spacing:13.260000px;}
.wsb3{word-spacing:13.464000px;}
.ws106{word-spacing:13.560000px;}
.wsd8{word-spacing:13.662000px;}
.ws120{word-spacing:13.680000px;}
.ws105{word-spacing:13.980000px;}
.wsbf{word-spacing:14.190000px;}
.wsd9{word-spacing:14.322000px;}
.ws78{word-spacing:14.520000px;}
.ws3d{word-spacing:14.586000px;}
.ws108{word-spacing:16.560000px;}
.ws3c{word-spacing:16.566000px;}
.ws66{word-spacing:16.632000px;}
.ws109{word-spacing:17.040000px;}
.ws9a{word-spacing:18.216000px;}
.wsae{word-spacing:18.282000px;}
.ws40{word-spacing:18.612000px;}
.ws56{word-spacing:18.744000px;}
.wsc0{word-spacing:19.536000px;}
.wsd4{word-spacing:19.932000px;}
.ws6e{word-spacing:20.526000px;}
.ws69{word-spacing:20.856000px;}
.wsa7{word-spacing:22.572000px;}
.wsd7{word-spacing:22.638000px;}
.ws5f{word-spacing:22.770000px;}
.ws8f{word-spacing:25.212000px;}
.wsc6{word-spacing:26.136000px;}
.ws79{word-spacing:27.192000px;}
.ws47{word-spacing:28.380000px;}
.ws77{word-spacing:31.746000px;}
.ws17{word-spacing:36.000000px;}
.ws58{word-spacing:38.082000px;}
.ws138{word-spacing:51.948000px;}
.ws131{word-spacing:52.218000px;}
.ws12c{word-spacing:52.326000px;}
.ws13d{word-spacing:52.849200px;}
.ws12b{word-spacing:52.974000px;}
.ws125{word-spacing:56.754000px;}
.wsda{word-spacing:58.482000px;}
.ws128{word-spacing:60.102000px;}
.ws135{word-spacing:60.156000px;}
.ws12d{word-spacing:60.318000px;}
.ws133{word-spacing:60.480000px;}
.ws137{word-spacing:61.128000px;}
.ws124{word-spacing:62.586000px;}
.ws130{word-spacing:65.826000px;}
.ws12e{word-spacing:90.666000px;}
.wsde{word-spacing:91.476000px;}
.ws127{word-spacing:100.170000px;}
.wsdd{word-spacing:101.304000px;}
.wse1{word-spacing:172.746000px;}
.wsdc{word-spacing:180.684000px;}
.wsdf{word-spacing:182.142000px;}
.wsdb{word-spacing:194.670000px;}
.wsa0{word-spacing:328.374000px;}
.ws126{word-spacing:391.662000px;}
._13{margin-left:-58.410000px;}
._34{margin-left:-47.790000px;}
._37{margin-left:-24.000000px;}
._2{margin-left:-7.344600px;}
._3{margin-left:-5.358000px;}
._6{margin-left:-3.930006px;}
._1{margin-left:-2.860200px;}
._0{margin-left:-1.092000px;}
._5{width:1.007964px;}
._4{width:2.008188px;}
._7{width:3.016830px;}
._19{width:4.036824px;}
._8{width:5.155122px;}
._b{width:7.087356px;}
._12{width:8.484576px;}
._11{width:9.893400px;}
._15{width:11.084400px;}
._26{width:12.121800px;}
._38{width:13.427400px;}
._9{width:14.526600px;}
._a{width:15.534606px;}
._16{width:16.950594px;}
._e{width:18.612000px;}
._1a{width:20.400600px;}
._2e{width:21.970800px;}
._2f{width:23.279400px;}
._17{width:24.400200px;}
._1b{width:27.192000px;}
._18{width:32.400000px;}
._c{width:36.000000px;}
._62{width:50.904000px;}
._f{width:52.140000px;}
._10{width:53.526000px;}
._73{width:57.696000px;}
._4d{width:61.638000px;}
._56{width:63.180000px;}
._d{width:64.416000px;}
._1f{width:65.760006px;}
._4c{width:67.878000px;}
._51{width:69.012000px;}
._14{width:73.854000px;}
._41{width:75.870000px;}
._47{width:77.220000px;}
._3f{width:80.352000px;}
._2c{width:83.430000px;}
._23{width:85.374000px;}
._6d{width:86.508000px;}
._44{width:88.398000px;}
._4e{width:90.288000px;}
._33{width:95.958000px;}
._36{width:97.806000px;}
._50{width:99.090000px;}
._59{width:100.344000px;}
._45{width:101.412000px;}
._40{width:102.438000px;}
._46{width:104.112000px;}
._2d{width:109.134000px;}
._43{width:112.224000px;}
._53{width:113.680200px;}
._71{width:119.134194px;}
._20{width:125.208000px;}
._66{width:131.880000px;}
._60{width:133.446000px;}
._63{width:137.766000px;}
._55{width:139.308036px;}
._24{width:152.388000px;}
._35{width:159.462000px;}
._4b{width:169.950000px;}
._1c{width:174.474000px;}
._29{width:179.022000px;}
._21{width:185.652000px;}
._39{width:186.732000px;}
._6e{width:189.432000px;}
._5d{width:191.268000px;}
._1e{width:193.764000px;}
._3d{width:196.302000px;}
._5a{width:197.868000px;}
._25{width:205.630200px;}
._3a{width:209.466000px;}
._6c{width:217.470000px;}
._72{width:218.976000px;}
._3e{width:222.036006px;}
._1d{width:225.516000px;}
._6a{width:229.840200px;}
._5f{width:231.306000px;}
._2a{width:232.684200px;}
._2b{width:240.096000px;}
._48{width:250.098000px;}
._27{width:253.458000px;}
._6f{width:254.706006px;}
._5b{width:259.806000px;}
._49{width:265.408200px;}
._64{width:267.606000px;}
._28{width:269.982000px;}
._30{width:272.322000px;}
._54{width:273.600000px;}
._3b{width:275.346000px;}
._58{width:281.574000px;}
._42{width:287.736000px;}
._65{width:288.750000px;}
._67{width:295.974000px;}
._70{width:305.628006px;}
._4a{width:307.086006px;}
._3c{width:319.950000px;}
._52{width:323.730000px;}
._57{width:326.322000px;}
._5e{width:361.260000px;}
._74{width:381.144000px;}
._4f{width:383.778000px;}
._68{width:390.204000px;}
._6b{width:393.798000px;}
._61{width:396.846000px;}
._5c{width:418.902000px;}
._69{width:449.334000px;}
._31{width:532.062000px;}
._32{width:544.266000px;}
._22{width:1215.216000px;}
.fc5{color:rgb(68,65,65);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(35,31,32);}
.fc6{color:rgb(238,76,168);}
.fc1{color:rgb(123,121,121);}
.fc3{color:rgb(214,218,1);}
.fc0{color:rgb(233,17,141);}
.fs1{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:108.000000px;}
.fs4{font-size:120.000000px;}
.fs3{font-size:150.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:40.541100px;}
.y5{bottom:55.545600px;}
.y7{bottom:61.919250px;}
.y4{bottom:70.550100px;}
.y3{bottom:85.554600px;}
.y2{bottom:100.559100px;}
.y1{bottom:115.559100px;}
.y425{bottom:157.322850px;}
.y1fb{bottom:158.978400px;}
.y1e7{bottom:159.026400px;}
.y1c8{bottom:160.436400px;}
.y1b1{bottom:160.765650px;}
.y167{bottom:160.937250px;}
.y93{bottom:161.937900px;}
.y282{bottom:166.535400px;}
.y264{bottom:168.034950px;}
.y322{bottom:168.406950px;}
.y3dc{bottom:170.944950px;}
.yd4{bottom:170.949900px;}
.y10b{bottom:173.910900px;}
.y1fa{bottom:179.982900px;}
.yf5{bottom:180.026400px;}
.y1e6{bottom:180.030900px;}
.y1c7{bottom:181.440900px;}
.y166{bottom:181.941750px;}
.y92{bottom:182.942400px;}
.y1e{bottom:183.122100px;}
.y321{bottom:184.903950px;}
.y294{bottom:186.035400px;}
.y424{bottom:187.222650px;}
.y3db{bottom:187.441950px;}
.y263{bottom:187.534950px;}
.y1b0{bottom:187.585050px;}
.y44{bottom:191.655900px;}
.yd3{bottom:191.954400px;}
.y10a{bottom:194.915400px;}
.yb6{bottom:196.433400px;}
.y34e{bottom:200.658450px;}
.y1f9{bottom:200.987400px;}
.yf4{bottom:201.030900px;}
.y1e5{bottom:201.035400px;}
.y1d{bottom:201.117600px;}
.y320{bottom:201.400950px;}
.y165{bottom:202.946250px;}
.y3da{bottom:203.938950px;}
.y1a7{bottom:204.055050px;}
.y1ab{bottom:204.068550px;}
.y1af{bottom:204.082050px;}
.y281{bottom:205.535400px;}
.y2cf{bottom:208.678950px;}
.y43{bottom:212.660400px;}
.yd2{bottom:212.958900px;}
.y109{bottom:215.919900px;}
.y34d{bottom:217.155450px;}
.yb5{bottom:217.437900px;}
.y1c{bottom:219.113100px;}
.y37e{bottom:219.895950px;}
.y418{bottom:220.368300px;}
.y1a6{bottom:220.552050px;}
.y1aa{bottom:220.565550px;}
.y1ae{bottom:220.579050px;}
.y1f8{bottom:221.991900px;}
.yf3{bottom:222.035400px;}
.y1c6{bottom:223.433400px;}
.y164{bottom:223.950750px;}
.y91{bottom:224.934900px;}
.y28d{bottom:225.035400px;}
.y2ce{bottom:225.175950px;}
.y262{bottom:226.534950px;}
.y6c{bottom:231.825900px;}
.y31f{bottom:231.910950px;}
.y34c{bottom:233.652450px;}
.y42{bottom:233.664900px;}
.y350{bottom:233.665950px;}
.y3d9{bottom:234.448950px;}
.y37d{bottom:236.392950px;}
.y417{bottom:236.865300px;}
.y108{bottom:236.924400px;}
.y1a5{bottom:237.049050px;}
.y1a9{bottom:237.062550px;}
.y1ad{bottom:237.076050px;}
.y1b{bottom:237.108600px;}
.yb4{bottom:238.442400px;}
.y254{bottom:239.214450px;}
.y2cd{bottom:241.672950px;}
.y2d1{bottom:241.686450px;}
.y1f7{bottom:242.996400px;}
.y1e4{bottom:243.035400px;}
.y1c5{bottom:244.437900px;}
.y280{bottom:244.535400px;}
.y90{bottom:245.939400px;}
.y261{bottom:246.034950px;}
.y31e{bottom:248.407950px;}
.y34b{bottom:250.149450px;}
.y34f{bottom:250.162950px;}
.y3d8{bottom:250.945950px;}
.y6b{bottom:252.830400px;}
.y416{bottom:253.362300px;}
.y41a{bottom:253.375800px;}
.y1a4{bottom:253.546050px;}
.y1a8{bottom:253.559550px;}
.y1ac{bottom:253.573050px;}
.y41{bottom:254.669400px;}
.yd1{bottom:254.951400px;}
.y1a{bottom:255.104100px;}
.y107{bottom:257.928900px;}
.y2cc{bottom:258.169950px;}
.y2d0{bottom:258.183450px;}
.yb3{bottom:259.446900px;}
.y1f6{bottom:264.000900px;}
.yf2{bottom:264.035400px;}
.y31d{bottom:264.904950px;}
.y1c4{bottom:265.442400px;}
.y163{bottom:265.950750px;}
.y146{bottom:265.980900px;}
.y253{bottom:266.038950px;}
.y415{bottom:269.859300px;}
.y419{bottom:269.872800px;}
.y423{bottom:271.355400px;}
.y19{bottom:273.099600px;}
.y6a{bottom:273.834900px;}
.y40{bottom:275.673900px;}
.yd0{bottom:275.955900px;}
.y106{bottom:278.933400px;}
.y34a{bottom:280.659450px;}
.y37c{bottom:281.023950px;}
.y3d4{bottom:281.442450px;}
.y252{bottom:282.535950px;}
.y292{bottom:283.535400px;}
.y19f{bottom:284.042550px;}
.y1f5{bottom:285.005400px;}
.y1c3{bottom:286.446900px;}
.y260{bottom:286.534950px;}
.y8f{bottom:287.931900px;}
.y2c8{bottom:288.679950px;}
.y422{bottom:289.350900px;}
.y18{bottom:291.095100px;}
.y69{bottom:294.839400px;}
.y316{bottom:295.387950px;}
.y31a{bottom:295.401450px;}
.ycf{bottom:296.960400px;}
.y349{bottom:297.156450px;}
.y37b{bottom:297.520950px;}
.y3d3{bottom:297.939450px;}
.y3d7{bottom:297.952950px;}
.y145{bottom:298.191900px;}
.y3a5{bottom:298.290450px;}
.y251{bottom:299.032950px;}
.y105{bottom:299.937900px;}
.y19a{bottom:300.526050px;}
.y19e{bottom:300.539550px;}
.y1a3{bottom:300.553050px;}
.yb2{bottom:301.439400px;}
.y27f{bottom:303.035400px;}
.y2c7{bottom:305.176950px;}
.y2cb{bottom:305.190450px;}
.y1f4{bottom:306.009900px;}
.y421{bottom:307.346400px;}
.y1c2{bottom:307.451400px;}
.y8e{bottom:308.936400px;}
.y17{bottom:309.090600px;}
.y315{bottom:311.884950px;}
.y319{bottom:311.898450px;}
.y348{bottom:313.653450px;}
.y37a{bottom:314.017950px;}
.y3d2{bottom:314.436450px;}
.y3d6{bottom:314.449950px;}
.y3a4{bottom:314.787450px;}
.y40e{bottom:314.841300px;}
.y412{bottom:314.854800px;}
.y24c{bottom:315.516450px;}
.y250{bottom:315.529950px;}
.y68{bottom:315.843900px;}
.y199{bottom:317.023050px;}
.y19d{bottom:317.036550px;}
.y1a2{bottom:317.050050px;}
.y3f{bottom:317.666400px;}
.yce{bottom:317.964900px;}
.y1e3{bottom:320.925900px;}
.y104{bottom:320.942400px;}
.y2c6{bottom:321.673950px;}
.y2ca{bottom:321.687450px;}
.yb1{bottom:322.443900px;}
.y27e{bottom:322.535400px;}
.y1f3{bottom:327.014400px;}
.y16{bottom:327.086100px;}
.y314{bottom:328.381950px;}
.y318{bottom:328.395450px;}
.y31c{bottom:328.408950px;}
.y8d{bottom:329.940900px;}
.y144{bottom:330.402900px;}
.y3d1{bottom:330.933450px;}
.y3d5{bottom:330.946950px;}
.y3a3{bottom:331.284450px;}
.y40d{bottom:331.338300px;}
.y411{bottom:331.351800px;}
.y24b{bottom:332.013450px;}
.y24f{bottom:332.026950px;}
.y198{bottom:333.520050px;}
.y19c{bottom:333.533550px;}
.y1a1{bottom:333.547050px;}
.y67{bottom:336.848400px;}
.y2c5{bottom:338.170950px;}
.y2c9{bottom:338.184450px;}
.y3e{bottom:338.670900px;}
.ycd{bottom:338.969400px;}
.y202{bottom:341.913900px;}
.y1e2{bottom:341.930400px;}
.y103{bottom:341.946900px;}
.y28c{bottom:342.035400px;}
.yb0{bottom:343.448400px;}
.y347{bottom:344.163450px;}
.y377{bottom:344.514450px;}
.y313{bottom:344.878950px;}
.y317{bottom:344.892450px;}
.y31b{bottom:344.905950px;}
.yf1{bottom:344.949900px;}
.y162{bottom:346.910250px;}
.y40c{bottom:347.835300px;}
.y410{bottom:347.848800px;}
.y414{bottom:347.862300px;}
.y24a{bottom:348.510450px;}
.y24e{bottom:348.523950px;}
.y15{bottom:349.338150px;}
.y1c1{bottom:349.443900px;}
.y197{bottom:350.017050px;}
.y19b{bottom:350.030550px;}
.y1a0{bottom:350.044050px;}
.y8c{bottom:350.945400px;}
.y66{bottom:357.852900px;}
.y3d{bottom:359.675400px;}
.ycc{bottom:359.973900px;}
.y346{bottom:360.660450px;}
.y376{bottom:361.011450px;}
.y27d{bottom:361.535400px;}
.y3d0{bottom:361.686450px;}
.y39f{bottom:361.794450px;}
.y143{bottom:362.613900px;}
.y201{bottom:362.918400px;}
.y1e1{bottom:362.934900px;}
.y40b{bottom:364.332300px;}
.y40f{bottom:364.345800px;}
.y413{bottom:364.359300px;}
.yaf{bottom:364.452900px;}
.y25f{bottom:364.534950px;}
.y249{bottom:365.007450px;}
.y24d{bottom:365.020950px;}
.yf0{bottom:365.954400px;}
.y161{bottom:367.914750px;}
.y1f2{bottom:369.006900px;}
.y1c0{bottom:370.448400px;}
.y375{bottom:377.508450px;}
.y379{bottom:377.521950px;}
.y3cf{bottom:378.183450px;}
.y39e{bottom:378.291450px;}
.y3a2{bottom:378.304950px;}
.y65{bottom:378.857400px;}
.y192{bottom:380.513550px;}
.y196{bottom:380.527050px;}
.y3c{bottom:380.679900px;}
.ycb{bottom:380.978400px;}
.y27c{bottom:381.035400px;}
.y2c1{bottom:382.423950px;}
.y200{bottom:383.922900px;}
.y102{bottom:383.939400px;}
.yae{bottom:385.457400px;}
.yef{bottom:386.958900px;}
.y160{bottom:388.919250px;}
.y1f1{bottom:390.011400px;}
.y345{bottom:391.170450px;}
.y1bf{bottom:391.452900px;}
.y8b{bottom:392.937900px;}
.y374{bottom:394.005450px;}
.y378{bottom:394.018950px;}
.y39d{bottom:394.788450px;}
.y3a1{bottom:394.801950px;}
.y142{bottom:394.824900px;}
.y243{bottom:395.503950px;}
.y248{bottom:395.517450px;}
.y191{bottom:397.010550px;}
.y195{bottom:397.024050px;}
.y2c0{bottom:398.920950px;}
.y64{bottom:399.861900px;}
.y291{bottom:400.535400px;}
.y3b{bottom:401.684400px;}
.yca{bottom:401.982900px;}
.y14{bottom:403.938150px;}
.y30f{bottom:404.494950px;}
.y1e0{bottom:404.927400px;}
.y101{bottom:404.943900px;}
.y25e{bottom:406.534950px;}
.y344{bottom:407.667450px;}
.yee{bottom:407.963400px;}
.y3ce{bottom:408.693450px;}
.y15f{bottom:409.923750px;}
.y1f0{bottom:411.015900px;}
.y39c{bottom:411.285450px;}
.y3a0{bottom:411.298950px;}
.y242{bottom:412.000950px;}
.y247{bottom:412.014450px;}
.y1be{bottom:412.457400px;}
.y190{bottom:413.507550px;}
.y194{bottom:413.521050px;}
.y2bf{bottom:415.417950px;}
.y2c4{bottom:415.431450px;}
.y27b{bottom:420.035400px;}
.y63{bottom:420.866400px;}
.y30e{bottom:420.991950px;}
.y312{bottom:421.005450px;}
.y3a{bottom:422.688900px;}
.y373{bottom:424.515450px;}
.y13{bottom:424.938150px;}
.y3cd{bottom:425.190450px;}
.y1df{bottom:425.931900px;}
.y100{bottom:425.948400px;}
.y141{bottom:427.035900px;}
.yad{bottom:427.449900px;}
.y241{bottom:428.497950px;}
.y246{bottom:428.511450px;}
.yed{bottom:428.967900px;}
.y18f{bottom:430.004550px;}
.y193{bottom:430.018050px;}
.y15e{bottom:430.928250px;}
.y2be{bottom:431.914950px;}
.y2c3{bottom:431.928450px;}
.y1ef{bottom:432.020400px;}
.y8a{bottom:433.445400px;}
.y1bd{bottom:433.461900px;}
.y30d{bottom:437.488950px;}
.y311{bottom:437.502450px;}
.y343{bottom:438.177450px;}
.y408{bottom:438.204300px;}
.y27a{bottom:439.535400px;}
.y372{bottom:441.012450px;}
.y3cc{bottom:441.687450px;}
.y39b{bottom:441.795450px;}
.y62{bottom:441.870900px;}
.y39{bottom:443.693400px;}
.yc9{bottom:443.975400px;}
.y240{bottom:444.994950px;}
.y245{bottom:445.008450px;}
.y12{bottom:445.938150px;}
.y1de{bottom:446.936400px;}
.yff{bottom:446.952900px;}
.y2bd{bottom:448.411950px;}
.y2c2{bottom:448.425450px;}
.yac{bottom:448.454400px;}
.y15d{bottom:451.932750px;}
.y1ee{bottom:453.024900px;}
.y30c{bottom:453.985950px;}
.y310{bottom:453.999450px;}
.y89{bottom:454.449900px;}
.y1bc{bottom:454.466400px;}
.y342{bottom:454.674450px;}
.y407{bottom:454.701300px;}
.y39a{bottom:458.292450px;}
.y290{bottom:459.035400px;}
.y140{bottom:459.246900px;}
.y18e{bottom:460.514550px;}
.y23f{bottom:461.491950px;}
.y244{bottom:461.505450px;}
.y38{bottom:464.697900px;}
.yc8{bottom:464.979900px;}
.y11{bottom:466.938150px;}
.y1dd{bottom:467.940900px;}
.yfe{bottom:467.957400px;}
.yab{bottom:469.458900px;}
.yec{bottom:470.960400px;}
.y406{bottom:471.198300px;}
.y371{bottom:471.522450px;}
.y3c9{bottom:472.197450px;}
.y15c{bottom:472.937250px;}
.y88{bottom:475.454400px;}
.y1bb{bottom:475.470900px;}
.y18d{bottom:477.011550px;}
.y279{bottom:478.535400px;}
.y2bb{bottom:478.921950px;}
.y61{bottom:479.886900px;}
.y309{bottom:484.482450px;}
.y25d{bottom:484.534950px;}
.y37{bottom:485.702400px;}
.yc7{bottom:485.984400px;}
.y405{bottom:487.695300px;}
.y370{bottom:488.019450px;}
.y3c8{bottom:488.694450px;}
.y1dc{bottom:488.945400px;}
.yfd{bottom:488.961900px;}
.yaa{bottom:490.463400px;}
.y13f{bottom:491.457900px;}
.yeb{bottom:491.964900px;}
.y23e{bottom:492.001950px;}
.y18c{bottom:493.508550px;}
.y15b{bottom:493.941750px;}
.y1ed{bottom:495.017400px;}
.y2b6{bottom:495.405450px;}
.y2ba{bottom:495.418950px;}
.y87{bottom:496.458900px;}
.y1ba{bottom:496.475400px;}
.y278{bottom:498.035400px;}
.y33f{bottom:499.669950px;}
.y60{bottom:500.891400px;}
.y308{bottom:500.979450px;}
.y399{bottom:502.923450px;}
.y404{bottom:504.192300px;}
.y40a{bottom:504.205800px;}
.y3c7{bottom:505.191450px;}
.y3cb{bottom:505.204950px;}
.y10{bottom:506.238150px;}
.y36{bottom:506.706900px;}
.yc6{bottom:506.988900px;}
.y237{bottom:508.485450px;}
.y23d{bottom:508.498950px;}
.y1db{bottom:509.949900px;}
.yfc{bottom:509.966400px;}
.y18b{bottom:510.005550px;}
.y2b5{bottom:511.902450px;}
.y2b9{bottom:511.915950px;}
.yea{bottom:512.969400px;}
.y15a{bottom:514.946250px;}
.y1ec{bottom:516.021900px;}
.y33e{bottom:516.166950px;}
.y86{bottom:517.463400px;}
.y307{bottom:517.476450px;}
.y1b9{bottom:517.479900px;}
.y30b{bottom:517.489950px;}
.y28f{bottom:517.535400px;}
.y36f{bottom:518.529450px;}
.y398{bottom:519.420450px;}
.y403{bottom:520.689300px;}
.y409{bottom:520.702800px;}
.y3c6{bottom:521.688450px;}
.y3ca{bottom:521.701950px;}
.y5f{bottom:521.895900px;}
.y13e{bottom:523.668900px;}
.y236{bottom:524.982450px;}
.y23c{bottom:524.995950px;}
.y18a{bottom:526.502550px;}
.y25c{bottom:526.534950px;}
.yf{bottom:527.238150px;}
.y35{bottom:527.711400px;}
.yc5{bottom:527.993400px;}
.y2b4{bottom:528.399450px;}
.y2b8{bottom:528.412950px;}
.y1da{bottom:530.954400px;}
.yfb{bottom:530.970900px;}
.ya9{bottom:532.455900px;}
.y33d{bottom:532.663950px;}
.y341{bottom:532.677450px;}
.y306{bottom:533.973450px;}
.ye9{bottom:533.973900px;}
.y30a{bottom:533.986950px;}
.y36e{bottom:535.026450px;}
.y397{bottom:535.917450px;}
.y159{bottom:535.950750px;}
.y1eb{bottom:537.026400px;}
.y277{bottom:537.035400px;}
.y85{bottom:538.467900px;}
.y235{bottom:541.479450px;}
.y23b{bottom:541.492950px;}
.y5e{bottom:542.900400px;}
.y2b3{bottom:544.896450px;}
.y2b7{bottom:544.909950px;}
.y2bc{bottom:544.923450px;}
.ye{bottom:548.238150px;}
.y34{bottom:548.715900px;}
.yc4{bottom:548.997900px;}
.y33c{bottom:549.160950px;}
.y340{bottom:549.174450px;}
.y1d9{bottom:551.958900px;}
.yfa{bottom:551.975400px;}
.y3c5{bottom:552.198450px;}
.ya8{bottom:553.460400px;}
.ye8{bottom:554.978400px;}
.y13d{bottom:555.879900px;}
.y276{bottom:556.535400px;}
.y181{bottom:556.985550px;}
.y185{bottom:556.999050px;}
.y189{bottom:557.012550px;}
.y234{bottom:557.976450px;}
.y23a{bottom:557.989950px;}
.y1ea{bottom:558.030900px;}
.y84{bottom:559.472400px;}
.y25b{bottom:562.534950px;}
.y5d{bottom:563.904900px;}
.y305{bottom:564.483450px;}
.y36d{bottom:565.536450px;}
.y393{bottom:566.427450px;}
.y3c4{bottom:568.695450px;}
.yd{bottom:569.238150px;}
.y33{bottom:569.720400px;}
.y1ff{bottom:572.963400px;}
.yf9{bottom:572.979900px;}
.y180{bottom:573.482550px;}
.y184{bottom:573.496050px;}
.y188{bottom:573.509550px;}
.ya7{bottom:574.464900px;}
.y233{bottom:574.473450px;}
.y239{bottom:574.486950px;}
.y2b0{bottom:575.392950px;}
.ye7{bottom:575.982900px;}
.y28b{bottom:576.035400px;}
.y158{bottom:577.950750px;}
.y1e9{bottom:579.035400px;}
.y83{bottom:580.476900px;}
.y304{bottom:580.980450px;}
.y36c{bottom:582.033450px;}
.y392{bottom:582.924450px;}
.y396{bottom:582.937950px;}
.y3c3{bottom:585.192450px;}
.y13c{bottom:588.088500px;}
.y17f{bottom:589.979550px;}
.y183{bottom:589.993050px;}
.y187{bottom:590.006550px;}
.y32{bottom:590.724900px;}
.y232{bottom:590.970450px;}
.y238{bottom:590.983950px;}
.yc3{bottom:590.990400px;}
.y2af{bottom:591.889950px;}
.y339{bottom:593.022450px;}
.y3fc{bottom:593.805300px;}
.y1d8{bottom:593.951400px;}
.y1fe{bottom:593.967900px;}
.y275{bottom:595.535400px;}
.y303{bottom:597.477450px;}
.y36b{bottom:598.530450px;}
.y391{bottom:599.421450px;}
.y395{bottom:599.434950px;}
.y1b8{bottom:601.481400px;}
.y5c{bottom:601.920900px;}
.y17e{bottom:606.476550px;}
.y182{bottom:606.490050px;}
.y186{bottom:606.503550px;}
.y2ae{bottom:608.386950px;}
.y2b2{bottom:608.400450px;}
.y338{bottom:609.519450px;}
.y3fb{bottom:610.302300px;}
.y31{bottom:611.729400px;}
.yc2{bottom:611.994900px;}
.y1d7{bottom:614.955900px;}
.ya6{bottom:614.972400px;}
.y274{bottom:615.035400px;}
.y3c2{bottom:615.702450px;}
.y390{bottom:615.918450px;}
.y394{bottom:615.931950px;}
.yc{bottom:617.042100px;}
.ye6{bottom:617.975400px;}
.y1e8{bottom:621.035400px;}
.y231{bottom:621.480450px;}
.y82{bottom:622.469400px;}
.y1b7{bottom:622.485900px;}
.y5b{bottom:622.925400px;}
.y2ad{bottom:624.883950px;}
.y2b1{bottom:624.897450px;}
.y337{bottom:626.016450px;}
.y33b{bottom:626.029950px;}
.y3fa{bottom:626.799300px;}
.y36a{bottom:629.040450px;}
.y3c1{bottom:632.199450px;}
.y30{bottom:632.733900px;}
.yc1{bottom:632.999400px;}
.y13b{bottom:633.442800px;}
.y295{bottom:634.535400px;}
.y1d6{bottom:635.960400px;}
.ya5{bottom:635.976900px;}
.y17d{bottom:636.986550px;}
.y22b{bottom:637.963950px;}
.y230{bottom:637.977450px;}
.ye5{bottom:638.979900px;}
.y25a{bottom:640.534950px;}
.y336{bottom:642.513450px;}
.y33a{bottom:642.526950px;}
.y3f9{bottom:643.296300px;}
.y400{bottom:643.309800px;}
.y81{bottom:643.473900px;}
.y1b6{bottom:643.490400px;}
.y5a{bottom:643.929900px;}
.y369{bottom:645.537450px;}
.yb{bottom:653.042100px;}
.y17c{bottom:653.483550px;}
.y2f{bottom:653.738400px;}
.yc0{bottom:654.003900px;}
.y273{bottom:654.035400px;}
.y22a{bottom:654.460950px;}
.y22f{bottom:654.474450px;}
.y2ac{bottom:655.393950px;}
.y2fb{bottom:656.337450px;}
.y300{bottom:656.350950px;}
.y1d5{bottom:656.964900px;}
.ya4{bottom:656.981400px;}
.y157{bottom:658.919250px;}
.y38d{bottom:659.779950px;}
.y3f8{bottom:659.793300px;}
.y3ff{bottom:659.806800px;}
.ye4{bottom:659.984400px;}
.y12f{bottom:661.028100px;}
.y3c0{bottom:662.952450px;}
.y80{bottom:664.478400px;}
.y1b5{bottom:664.494900px;}
.y59{bottom:664.934400px;}
.y17b{bottom:669.980550px;}
.y229{bottom:670.957950px;}
.y22e{bottom:670.971450px;}
.y2ab{bottom:671.890950px;}
.y2fa{bottom:672.834450px;}
.y2ff{bottom:672.847950px;}
.y335{bottom:673.023450px;}
.y272{bottom:673.535400px;}
.y2e{bottom:674.742900px;}
.ybf{bottom:675.008400px;}
.y365{bottom:676.047450px;}
.y38c{bottom:676.276950px;}
.y3f7{bottom:676.290300px;}
.y3fe{bottom:676.303800px;}
.y402{bottom:676.317300px;}
.y12a{bottom:677.511600px;}
.y12e{bottom:677.525100px;}
.y133{bottom:677.538600px;}
.y137{bottom:677.552100px;}
.y1d4{bottom:677.969400px;}
.ya3{bottom:677.985900px;}
.y3bf{bottom:679.449450px;}
.y156{bottom:679.923750px;}
.ye3{bottom:680.988900px;}
.y259{bottom:682.534950px;}
.y7f{bottom:685.482900px;}
.y58{bottom:685.938900px;}
.y17a{bottom:686.477550px;}
.y228{bottom:687.454950px;}
.y22d{bottom:687.468450px;}
.y2aa{bottom:688.387950px;}
.y2f9{bottom:689.331450px;}
.y2fe{bottom:689.344950px;}
.y334{bottom:689.520450px;}
.y364{bottom:692.544450px;}
.y38b{bottom:692.773950px;}
.y3f6{bottom:692.787300px;}
.y38f{bottom:692.787450px;}
.y3fd{bottom:692.800800px;}
.y401{bottom:692.814300px;}
.y28a{bottom:693.035400px;}
.y129{bottom:694.008600px;}
.y12d{bottom:694.022100px;}
.y132{bottom:694.035600px;}
.y136{bottom:694.049100px;}
.y13a{bottom:694.062600px;}
.ybe{bottom:696.012900px;}
.ya{bottom:697.545900px;}
.y1d3{bottom:698.973900px;}
.ya2{bottom:698.990400px;}
.y155{bottom:700.928250px;}
.ye2{bottom:701.993400px;}
.y179{bottom:702.974550px;}
.y227{bottom:703.951950px;}
.y22c{bottom:703.965450px;}
.y2f8{bottom:705.828450px;}
.y2fd{bottom:705.841950px;}
.y302{bottom:705.855450px;}
.y333{bottom:706.017450px;}
.y7e{bottom:706.487400px;}
.y57{bottom:706.943400px;}
.y363{bottom:709.041450px;}
.y368{bottom:709.054950px;}
.y38a{bottom:709.270950px;}
.y38e{bottom:709.284450px;}
.y128{bottom:710.505600px;}
.y12c{bottom:710.519100px;}
.y131{bottom:710.532600px;}
.y135{bottom:710.546100px;}
.y139{bottom:710.559600px;}
.y271{bottom:712.535400px;}
.y2d{bottom:715.538400px;}
.ybd{bottom:717.017400px;}
.y2a9{bottom:718.897950px;}
.y1d2{bottom:719.978400px;}
.ya1{bottom:719.994900px;}
.y154{bottom:721.932750px;}
.y2f7{bottom:722.325450px;}
.y2fc{bottom:722.338950px;}
.y301{bottom:722.352450px;}
.ye1{bottom:722.997900px;}
.y3f5{bottom:723.297300px;}
.y3bb{bottom:723.310950px;}
.y362{bottom:725.538450px;}
.y367{bottom:725.551950px;}
.y127{bottom:727.002600px;}
.y12b{bottom:727.016100px;}
.y130{bottom:727.029600px;}
.y134{bottom:727.043100px;}
.y138{bottom:727.056600px;}
.y7d{bottom:727.491900px;}
.y56{bottom:727.947900px;}
.y293{bottom:732.035400px;}
.y170{bottom:733.457550px;}
.y174{bottom:733.471050px;}
.y178{bottom:733.484550px;}
.y226{bottom:734.461950px;}
.y2a8{bottom:735.394950px;}
.y330{bottom:736.527450px;}
.ybc{bottom:738.021900px;}
.y389{bottom:739.780950px;}
.y3f4{bottom:739.794300px;}
.y3ba{bottom:739.807950px;}
.y3be{bottom:739.821450px;}
.y1d1{bottom:740.982900px;}
.ya0{bottom:740.999400px;}
.y361{bottom:742.035450px;}
.y366{bottom:742.048950px;}
.y9{bottom:742.545900px;}
.y153{bottom:742.937250px;}
.ye0{bottom:744.002400px;}
.y7c{bottom:748.496400px;}
.y16f{bottom:749.954550px;}
.y173{bottom:749.968050px;}
.y177{bottom:749.981550px;}
.y220{bottom:750.945450px;}
.y225{bottom:750.958950px;}
.y270{bottom:751.535400px;}
.y2a7{bottom:751.891950px;}
.y2f1{bottom:752.821950px;}
.y2f5{bottom:752.835450px;}
.y32f{bottom:753.024450px;}
.y388{bottom:756.277950px;}
.y3f3{bottom:756.291300px;}
.y3b9{bottom:756.304950px;}
.y3bd{bottom:756.318450px;}
.ybb{bottom:759.026400px;}
.y11b{bottom:759.173100px;}
.y11f{bottom:759.186600px;}
.y123{bottom:759.200100px;}
.y258{bottom:760.534950px;}
.yf8{bottom:761.987400px;}
.y9f{bottom:762.003900px;}
.y152{bottom:763.941750px;}
.ydf{bottom:765.006900px;}
.y55{bottom:765.963900px;}
.y16e{bottom:766.451550px;}
.y172{bottom:766.465050px;}
.y176{bottom:766.478550px;}
.y21f{bottom:767.442450px;}
.y224{bottom:767.455950px;}
.y2f0{bottom:769.318950px;}
.y2f4{bottom:769.332450px;}
.y7b{bottom:769.500900px;}
.y32e{bottom:769.521450px;}
.y289{bottom:771.035400px;}
.y35d{bottom:772.531950px;}
.y387{bottom:772.774950px;}
.y3b8{bottom:772.801950px;}
.y3bc{bottom:772.815450px;}
.y11a{bottom:775.670100px;}
.y11e{bottom:775.683600px;}
.y122{bottom:775.697100px;}
.y126{bottom:775.710600px;}
.yba{bottom:780.030900px;}
.y16d{bottom:782.948550px;}
.y171{bottom:782.962050px;}
.y1d0{bottom:782.975400px;}
.y175{bottom:782.975550px;}
.yf7{bottom:782.991900px;}
.y9e{bottom:783.008400px;}
.y21e{bottom:783.939450px;}
.y223{bottom:783.952950px;}
.y151{bottom:784.946250px;}
.y2ef{bottom:785.815950px;}
.y2f3{bottom:785.829450px;}
.yde{bottom:786.011400px;}
.y32d{bottom:786.018450px;}
.y332{bottom:786.031950px;}
.y3ef{bottom:786.787800px;}
.y54{bottom:786.968400px;}
.y8{bottom:787.545900px;}
.y35c{bottom:789.028950px;}
.y360{bottom:789.042450px;}
.y7a{bottom:790.505400px;}
.y26f{bottom:790.535400px;}
.y119{bottom:792.167100px;}
.y11d{bottom:792.180600px;}
.y121{bottom:792.194100px;}
.y125{bottom:792.207600px;}
.y2a6{bottom:797.643450px;}
.y21d{bottom:800.436450px;}
.y222{bottom:800.449950px;}
.yb9{bottom:801.035400px;}
.y2ee{bottom:802.312950px;}
.y2f2{bottom:802.326450px;}
.y2f6{bottom:802.339950px;}
.y32c{bottom:802.515450px;}
.y331{bottom:802.528950px;}
.y257{bottom:802.534950px;}
.y3ee{bottom:803.284800px;}
.y386{bottom:803.284950px;}
.y3f2{bottom:803.298300px;}
.y3b5{bottom:803.311950px;}
.y1cf{bottom:803.979900px;}
.yf6{bottom:803.996400px;}
.y35b{bottom:805.525950px;}
.y35f{bottom:805.539450px;}
.y150{bottom:805.950750px;}
.y53{bottom:807.972900px;}
.y118{bottom:808.664100px;}
.y11c{bottom:808.677600px;}
.y120{bottom:808.691100px;}
.y124{bottom:808.704600px;}
.y26e{bottom:810.035400px;}
.y79{bottom:811.509900px;}
.y16c{bottom:812.176050px;}
.y2a5{bottom:814.140450px;}
.y21c{bottom:816.933450px;}
.y221{bottom:816.946950px;}
.y3ed{bottom:819.781800px;}
.y385{bottom:819.781950px;}
.y3f1{bottom:819.795300px;}
.y3b4{bottom:819.808950px;}
.y35a{bottom:822.022950px;}
.y35e{bottom:822.036450px;}
.y1ce{bottom:824.984400px;}
.y9d{bottom:825.000900px;}
.ydd{bottom:828.003900px;}
.y52{bottom:828.977400px;}
.y288{bottom:829.535400px;}
.y2a4{bottom:830.637450px;}
.y78{bottom:832.514400px;}
.y2ec{bottom:832.822950px;}
.y329{bottom:833.025450px;}
.y3ec{bottom:836.278800px;}
.y384{bottom:836.278950px;}
.y3f0{bottom:836.292300px;}
.y3b3{bottom:836.305950px;}
.y3b7{bottom:836.319450px;}
.y2c{bottom:836.577900px;}
.y111{bottom:840.848100px;}
.y115{bottom:840.861600px;}
.yb8{bottom:843.035400px;}
.y1cd{bottom:845.988900px;}
.y9c{bottom:846.005400px;}
.y16b{bottom:846.035400px;}
.y420{bottom:847.159950px;}
.y21b{bottom:847.443450px;}
.y14f{bottom:847.950750px;}
.ydc{bottom:849.008400px;}
.y26d{bottom:849.035400px;}
.y2e7{bottom:849.306450px;}
.y2eb{bottom:849.319950px;}
.y328{bottom:849.522450px;}
.y51{bottom:849.981900px;}
.y359{bottom:852.532950px;}
.y3b2{bottom:852.802950px;}
.y3b6{bottom:852.816450px;}
.y77{bottom:853.518900px;}
.y110{bottom:857.345100px;}
.y114{bottom:857.358600px;}
.y2b{bottom:858.830400px;}
.y2a3{bottom:861.147450px;}
.y41f{bottom:863.656950px;}
.y21a{bottom:863.940450px;}
.y2e6{bottom:865.803450px;}
.y2ea{bottom:865.816950px;}
.y327{bottom:866.019450px;}
.y32b{bottom:866.032950px;}
.y383{bottom:866.788950px;}
.y1cc{bottom:866.993400px;}
.y9b{bottom:867.009900px;}
.y26c{bottom:868.535400px;}
.y358{bottom:869.029950px;}
.ydb{bottom:870.012900px;}
.y50{bottom:870.986400px;}
.y10f{bottom:873.842100px;}
.y113{bottom:873.855600px;}
.y117{bottom:873.869100px;}
.y76{bottom:874.523400px;}
.y2a2{bottom:877.644450px;}
.y3e9{bottom:880.140300px;}
.y219{bottom:880.437450px;}
.y256{bottom:880.534950px;}
.y2e5{bottom:882.300450px;}
.y2e9{bottom:882.313950px;}
.y326{bottom:882.516450px;}
.y32a{bottom:882.529950px;}
.y382{bottom:883.285950px;}
.y1cb{bottom:887.997900px;}
.y9a{bottom:888.014400px;}
.y287{bottom:888.035400px;}
.y10e{bottom:890.339100px;}
.y112{bottom:890.352600px;}
.y116{bottom:890.366100px;}
.yda{bottom:891.017400px;}
.y4f{bottom:891.990900px;}
.yb7{bottom:894.035400px;}
.y41c{bottom:894.153450px;}
.y75{bottom:895.527900px;}
.y3e8{bottom:896.637300px;}
.y214{bottom:896.920950px;}
.y218{bottom:896.934450px;}
.y3ae{bottom:897.042450px;}
.y2e4{bottom:898.797450px;}
.y2e8{bottom:898.810950px;}
.y2ed{bottom:898.824450px;}
.y357{bottom:899.539950px;}
.y381{bottom:899.782950px;}
.y26b{bottom:907.535400px;}
.y2a0{bottom:908.154450px;}
.y16a{bottom:909.002400px;}
.y99{bottom:909.018900px;}
.y41b{bottom:910.650450px;}
.yd9{bottom:912.021900px;}
.y3e7{bottom:913.134300px;}
.y3eb{bottom:913.147800px;}
.y213{bottom:913.417950px;}
.y217{bottom:913.431450px;}
.y3ad{bottom:913.539450px;}
.y2a{bottom:915.257400px;}
.y356{bottom:916.036950px;}
.y1b4{bottom:916.515900px;}
.y74{bottom:916.532400px;}
.y14e{bottom:919.951650px;}
.y255{bottom:922.534950px;}
.y10d{bottom:922.550100px;}
.y29f{bottom:924.651450px;}
.y286{bottom:927.035400px;}
.y325{bottom:927.147450px;}
.y41e{bottom:927.160950px;}
.y3e6{bottom:929.631300px;}
.y3ea{bottom:929.644800px;}
.y212{bottom:929.914950px;}
.y216{bottom:929.928450px;}
.y4e{bottom:930.006900px;}
.y98{bottom:930.023400px;}
.y3ac{bottom:930.036450px;}
.y3b1{bottom:930.049950px;}
.y380{bottom:930.292950px;}
.yd8{bottom:933.026400px;}
.y29{bottom:933.252900px;}
.y1b3{bottom:937.520400px;}
.y29e{bottom:941.148450px;}
.y2dd{bottom:941.160450px;}
.y324{bottom:943.644450px;}
.y41d{bottom:943.657950px;}
.y211{bottom:946.411950px;}
.y215{bottom:946.425450px;}
.y3ab{bottom:946.533450px;}
.y26a{bottom:946.535400px;}
.y3b0{bottom:946.546950px;}
.y14d{bottom:946.571850px;}
.y355{bottom:946.789950px;}
.y1fd{bottom:950.994900px;}
.y4d{bottom:951.011400px;}
.y97{bottom:951.027900px;}
.y28{bottom:951.248400px;}
.yd7{bottom:954.030900px;}
.y29d{bottom:957.645450px;}
.y2dc{bottom:957.657450px;}
.y2a1{bottom:957.658950px;}
.y73{bottom:958.524900px;}
.y10c{bottom:958.535400px;}
.y3e5{bottom:960.141300px;}
.y323{bottom:960.141450px;}
.y3aa{bottom:963.030450px;}
.y3af{bottom:963.043950px;}
.y354{bottom:963.286950px;}
.y269{bottom:966.035400px;}
.y27{bottom:969.243900px;}
.y1fc{bottom:971.999400px;}
.y4c{bottom:972.015900px;}
.y96{bottom:972.032400px;}
.y2db{bottom:974.154450px;}
.y2e1{bottom:974.167950px;}
.yd6{bottom:975.035400px;}
.y3e4{bottom:976.638300px;}
.y210{bottom:976.921950px;}
.y14c{bottom:977.081850px;}
.y37f{bottom:977.299950px;}
.y1b2{bottom:979.512900px;}
.y285{bottom:985.535400px;}
.y26{bottom:987.239400px;}
.y29b{bottom:988.155450px;}
.y2da{bottom:990.651450px;}
.y2e0{bottom:990.664950px;}
.y1ca{bottom:993.003900px;}
.y4b{bottom:993.020400px;}
.y3e3{bottom:993.135300px;}
.y20f{bottom:993.418950px;}
.y353{bottom:993.796950px;}
.y72{bottom:1000.517400px;}
.y29a{bottom:1004.652450px;}
.y3a8{bottom:1004.664450px;}
.y268{bottom:1005.035400px;}
.y25{bottom:1005.234900px;}
.y2d9{bottom:1007.148450px;}
.y2df{bottom:1007.161950px;}
.y2e3{bottom:1007.175450px;}
.y14b{bottom:1007.591850px;}
.y209{bottom:1009.902450px;}
.y20e{bottom:1009.915950px;}
.y352{bottom:1010.293950px;}
.y1c9{bottom:1014.008400px;}
.y4a{bottom:1014.024900px;}
.yd5{bottom:1017.035400px;}
.y299{bottom:1021.149450px;}
.y3a7{bottom:1021.161450px;}
.y71{bottom:1021.521900px;}
.y24{bottom:1023.231000px;}
.y3e2{bottom:1023.645300px;}
.y2d8{bottom:1023.645450px;}
.y2de{bottom:1023.658950px;}
.y2e2{bottom:1023.672450px;}
.y267{bottom:1024.535400px;}
.y208{bottom:1026.399450px;}
.y20d{bottom:1026.412950px;}
.y169{bottom:1035.012900px;}
.y49{bottom:1035.029400px;}
.y298{bottom:1037.646450px;}
.y3a6{bottom:1037.658450px;}
.y29c{bottom:1037.659950px;}
.y14a{bottom:1038.101850px;}
.y3e1{bottom:1040.142300px;}
.y23{bottom:1041.226500px;}
.y70{bottom:1042.526400px;}
.y207{bottom:1042.896450px;}
.y20c{bottom:1042.909950px;}
.y284{bottom:1044.035400px;}
.y2d6{bottom:1054.155450px;}
.y168{bottom:1056.017400px;}
.y48{bottom:1056.033900px;}
.y206{bottom:1059.393450px;}
.y20b{bottom:1059.406950px;}
.y22{bottom:1061.683500px;}
.y6f{bottom:1063.530900px;}
.y266{bottom:1063.535400px;}
.y297{bottom:1068.156450px;}
.y149{bottom:1068.611850px;}
.y3e0{bottom:1070.652300px;}
.y2d5{bottom:1070.652450px;}
.y3a9{bottom:1070.665950px;}
.y205{bottom:1075.890450px;}
.y20a{bottom:1075.903950px;}
.y95{bottom:1077.021900px;}
.y47{bottom:1077.038400px;}
.y283{bottom:1083.035400px;}
.y6e{bottom:1084.535400px;}
.y3df{bottom:1087.149300px;}
.y2d4{bottom:1087.149450px;}
.y351{bottom:1087.162950px;}
.y94{bottom:1098.026400px;}
.y148{bottom:1099.972350px;}
.y265{bottom:1102.535400px;}
.y3de{bottom:1103.646300px;}
.y2d3{bottom:1103.646450px;}
.y2d7{bottom:1103.659950px;}
.y204{bottom:1106.400450px;}
.y21{bottom:1116.283500px;}
.y46{bottom:1119.030900px;}
.y28e{bottom:1122.035400px;}
.y6d{bottom:1126.535400px;}
.y296{bottom:1129.535400px;}
.y147{bottom:1132.181100px;}
.y3dd{bottom:1134.156300px;}
.y2d2{bottom:1134.156450px;}
.y20{bottom:1138.536000px;}
.y45{bottom:1140.035400px;}
.y203{bottom:1141.535400px;}
.y1f{bottom:1198.796700px;}
.h3{height:31.920000px;}
.h2{height:35.040000px;}
.hc{height:37.548000px;}
.h11{height:38.718000px;}
.h4{height:41.040000px;}
.h13{height:41.202000px;}
.h12{height:42.912000px;}
.h14{height:43.800000px;}
.h15{height:45.600000px;}
.hb{height:48.276000px;}
.ha{height:52.560000px;}
.h9{height:53.640000px;}
.h8{height:54.780000px;}
.he{height:59.004000px;}
.hf{height:77.436000px;}
.h10{height:82.080000px;}
.h7{height:85.200000px;}
.hd{height:87.600000px;}
.h6{height:105.000000px;}
.h5{height:109.500000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.xa{left:91.780950px;}
.x22{left:93.375000px;}
.x2b{left:94.711500px;}
.x2a{left:95.845500px;}
.x3{left:97.245300px;}
.x23{left:99.126000px;}
.x1b{left:105.409950px;}
.x6{left:114.805350px;}
.x24{left:123.304500px;}
.x8{left:126.107850px;}
.x21{left:127.564350px;}
.x20{left:135.559350px;}
.x16{left:137.052750px;}
.x13{left:140.053800px;}
.x7{left:144.571350px;}
.x4{left:147.755850px;}
.xb{left:181.069950px;}
.x14{left:232.110300px;}
.x17{left:239.166750px;}
.x12{left:247.290000px;}
.x15{left:248.931900px;}
.x25{left:250.866000px;}
.x9{left:267.840000px;}
.x26{left:299.236500px;}
.xc{left:304.378950px;}
.x1a{left:305.458950px;}
.x1c{left:309.381450px;}
.x1d{left:317.143950px;}
.x18{left:419.877750px;}
.xd{left:431.940450px;}
.x27{left:439.555500px;}
.xe{left:546.744450px;}
.x1e{left:568.756950px;}
.x1f{left:576.519450px;}
.x28{left:579.874500px;}
.x19{left:600.588750px;}
.xf{left:670.053450px;}
.x29{left:707.436000px;}
.x11{left:710.351400px;}
.x10{left:733.827450px;}
.x2{left:781.274550px;}
.x5{left:782.617800px;}
@media print{
.v1{vertical-align:-16.525867pt;}
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-4.512000pt;}
.ls8{letter-spacing:-4.106667pt;}
.ls31{letter-spacing:-4.080000pt;}
.ls9{letter-spacing:-3.872000pt;}
.ls6{letter-spacing:-3.493333pt;}
.ls7{letter-spacing:-3.488000pt;}
.ls26{letter-spacing:-3.312000pt;}
.ls1d{letter-spacing:-2.160000pt;}
.ls27{letter-spacing:-1.872000pt;}
.ls28{letter-spacing:-1.824000pt;}
.ls33{letter-spacing:-1.813333pt;}
.ls2f{letter-spacing:-1.680000pt;}
.ls2c{letter-spacing:-1.536000pt;}
.ls29{letter-spacing:-1.200000pt;}
.ls23{letter-spacing:-1.152000pt;}
.ls2b{letter-spacing:-1.104000pt;}
.ls1f{letter-spacing:-1.056000pt;}
.ls24{letter-spacing:-0.960000pt;}
.lsc{letter-spacing:-0.880000pt;}
.ls1e{letter-spacing:-0.746667pt;}
.ls20{letter-spacing:-0.672000pt;}
.ls11{letter-spacing:-0.586667pt;}
.ls2a{letter-spacing:-0.528000pt;}
.lsd{letter-spacing:-0.469333pt;}
.ls21{letter-spacing:-0.432000pt;}
.ls1c{letter-spacing:-0.373333pt;}
.ls14{letter-spacing:-0.352000pt;}
.ls12{letter-spacing:-0.293333pt;}
.lsa{letter-spacing:-0.288000pt;}
.ls1b{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.176000pt;}
.ls25{letter-spacing:-0.144000pt;}
.ls15{letter-spacing:-0.096000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.048000pt;}
.lsf{letter-spacing:0.234667pt;}
.ls32{letter-spacing:0.240000pt;}
.lse{letter-spacing:0.528000pt;}
.ls19{letter-spacing:0.586667pt;}
.ls10{letter-spacing:0.645333pt;}
.ls30{letter-spacing:0.672000pt;}
.ls18{letter-spacing:0.762667pt;}
.ls2e{letter-spacing:0.816000pt;}
.ls16{letter-spacing:1.114667pt;}
.ls5{letter-spacing:3.146667pt;}
.ls4{letter-spacing:3.152000pt;}
.ls2d{letter-spacing:3.456000pt;}
.ls1{letter-spacing:3.493333pt;}
.ls2{letter-spacing:3.498667pt;}
.ls3{letter-spacing:3.504000pt;}
.lsb{letter-spacing:4.986667pt;}
.ls1a{letter-spacing:27.600000pt;}
.wse5{word-spacing:-106.666667pt;}
.wse4{word-spacing:-74.677333pt;}
.wse3{word-spacing:-74.666667pt;}
.wsf{word-spacing:-21.333333pt;}
.ws4{word-spacing:-12.800000pt;}
.wsc1{word-spacing:-12.144000pt;}
.wsc2{word-spacing:-11.968000pt;}
.ws63{word-spacing:-11.909333pt;}
.ws10{word-spacing:-11.733333pt;}
.ws64{word-spacing:-11.616000pt;}
.ws2c{word-spacing:-11.381333pt;}
.ws94{word-spacing:-11.205333pt;}
.ws84{word-spacing:-11.088000pt;}
.ws9f{word-spacing:-11.029333pt;}
.ws83{word-spacing:-10.794667pt;}
.ws3{word-spacing:-10.666667pt;}
.ws13a{word-spacing:-10.416000pt;}
.wse6{word-spacing:-10.346667pt;}
.ws13b{word-spacing:-9.984000pt;}
.wse9{word-spacing:-9.973333pt;}
.ws13c{word-spacing:-9.840000pt;}
.ws92{word-spacing:-9.600000pt;}
.ws5{word-spacing:-9.312000pt;}
.ws12f{word-spacing:-9.168000pt;}
.wse0{word-spacing:-9.120000pt;}
.ws134{word-spacing:-9.072000pt;}
.ws123{word-spacing:-8.928000pt;}
.ws129{word-spacing:-8.640000pt;}
.ws122{word-spacing:-8.544000pt;}
.ws0{word-spacing:-8.533333pt;}
.ws11{word-spacing:-7.626667pt;}
.ws1{word-spacing:-7.466667pt;}
.ws68{word-spacing:-7.450667pt;}
.wsef{word-spacing:-7.440000pt;}
.wsa6{word-spacing:-5.632000pt;}
.ws5b{word-spacing:-5.104000pt;}
.wsb5{word-spacing:-5.088000pt;}
.ws25{word-spacing:-4.517333pt;}
.ws43{word-spacing:-4.165333pt;}
.ws2a{word-spacing:-4.106667pt;}
.ws13f{word-spacing:-4.080000pt;}
.ws65{word-spacing:-3.989333pt;}
.ws140{word-spacing:-3.936000pt;}
.ws7e{word-spacing:-3.872000pt;}
.wsb7{word-spacing:-3.813333pt;}
.wsb2{word-spacing:-3.637333pt;}
.ws7c{word-spacing:-3.344000pt;}
.ws53{word-spacing:-3.226667pt;}
.ws10a{word-spacing:-3.146667pt;}
.wsd6{word-spacing:-3.109333pt;}
.ws45{word-spacing:-3.050667pt;}
.ws10b{word-spacing:-3.040000pt;}
.ws1d{word-spacing:-2.992000pt;}
.wsc3{word-spacing:-2.933333pt;}
.ws9e{word-spacing:-2.874667pt;}
.wsb8{word-spacing:-2.757333pt;}
.ws3e{word-spacing:-2.698667pt;}
.ws9b{word-spacing:-2.640000pt;}
.ws8c{word-spacing:-2.522667pt;}
.wsaa{word-spacing:-2.405333pt;}
.ws37{word-spacing:-2.346667pt;}
.ws9c{word-spacing:-2.229333pt;}
.ws6f{word-spacing:-2.170667pt;}
.ws87{word-spacing:-2.112000pt;}
.wsaf{word-spacing:-2.053333pt;}
.ws4e{word-spacing:-1.994667pt;}
.ws3a{word-spacing:-1.936000pt;}
.ws9d{word-spacing:-1.877333pt;}
.ws10f{word-spacing:-1.813333pt;}
.ws110{word-spacing:-1.760000pt;}
.ws8{word-spacing:-1.728000pt;}
.ws11f{word-spacing:-1.706667pt;}
.ws24{word-spacing:-1.701333pt;}
.ws10e{word-spacing:-1.653333pt;}
.wsd5{word-spacing:-1.642667pt;}
.ws104{word-spacing:-1.600000pt;}
.ws67{word-spacing:-1.584000pt;}
.ws103{word-spacing:-1.546667pt;}
.ws90{word-spacing:-1.525333pt;}
.wsc8{word-spacing:-1.466667pt;}
.ws112{word-spacing:-1.440000pt;}
.wsbe{word-spacing:-1.408000pt;}
.ws111{word-spacing:-1.386667pt;}
.ws118{word-spacing:-1.333333pt;}
.ws4a{word-spacing:-1.290667pt;}
.ws31{word-spacing:-1.173333pt;}
.wsd{word-spacing:-1.152000pt;}
.ws22{word-spacing:-1.114667pt;}
.wsec{word-spacing:-1.066667pt;}
.wsed{word-spacing:-1.013333pt;}
.ws71{word-spacing:-0.997333pt;}
.ws7b{word-spacing:-0.938667pt;}
.ws81{word-spacing:-0.880000pt;}
.ws2e{word-spacing:-0.821333pt;}
.ws97{word-spacing:-0.762667pt;}
.ws74{word-spacing:-0.645333pt;}
.ws1c{word-spacing:-0.586667pt;}
.ws6c{word-spacing:-0.528000pt;}
.wsff{word-spacing:-0.480000pt;}
.ws82{word-spacing:-0.469333pt;}
.ws7d{word-spacing:-0.410667pt;}
.wse2{word-spacing:-0.384000pt;}
.ws20{word-spacing:-0.352000pt;}
.ws21{word-spacing:-0.346667pt;}
.ws2d{word-spacing:-0.293333pt;}
.ws12a{word-spacing:-0.240000pt;}
.ws34{word-spacing:-0.234667pt;}
.wsfc{word-spacing:-0.213333pt;}
.ws136{word-spacing:-0.192000pt;}
.ws132{word-spacing:-0.144000pt;}
.ws2{word-spacing:-0.133333pt;}
.ws19{word-spacing:-0.117333pt;}
.ws6{word-spacing:0.000000pt;}
.wsd1{word-spacing:0.117333pt;}
.ws114{word-spacing:0.160000pt;}
.wsa3{word-spacing:0.176000pt;}
.wsa4{word-spacing:0.234667pt;}
.ws8d{word-spacing:0.293333pt;}
.ws2b{word-spacing:0.352000pt;}
.ws6b{word-spacing:0.410667pt;}
.ws57{word-spacing:0.469333pt;}
.ws73{word-spacing:0.528000pt;}
.ws113{word-spacing:0.533333pt;}
.ws46{word-spacing:0.586667pt;}
.ws54{word-spacing:0.645333pt;}
.wseb{word-spacing:0.693333pt;}
.ws42{word-spacing:0.762667pt;}
.ws117{word-spacing:0.853333pt;}
.ws52{word-spacing:0.880000pt;}
.ws27{word-spacing:0.997333pt;}
.ws99{word-spacing:1.056000pt;}
.wsf8{word-spacing:1.066667pt;}
.ws8e{word-spacing:1.114667pt;}
.ws41{word-spacing:1.173333pt;}
.ws80{word-spacing:1.232000pt;}
.ws7a{word-spacing:1.290667pt;}
.ws107{word-spacing:1.333333pt;}
.wscc{word-spacing:1.349333pt;}
.wscf{word-spacing:1.408000pt;}
.wsf7{word-spacing:1.440000pt;}
.ws33{word-spacing:1.466667pt;}
.wsf6{word-spacing:1.493333pt;}
.ws1e{word-spacing:1.525333pt;}
.wscb{word-spacing:1.584000pt;}
.ws3f{word-spacing:1.642667pt;}
.ws10c{word-spacing:1.653333pt;}
.ws13e{word-spacing:1.680000pt;}
.ws10d{word-spacing:1.706667pt;}
.ws60{word-spacing:1.760000pt;}
.ws139{word-spacing:1.824000pt;}
.ws16{word-spacing:1.872000pt;}
.wsa2{word-spacing:1.877333pt;}
.ws5e{word-spacing:1.936000pt;}
.wsee{word-spacing:2.026667pt;}
.ws11d{word-spacing:2.080000pt;}
.ws1f{word-spacing:2.112000pt;}
.ws100{word-spacing:2.133333pt;}
.ws28{word-spacing:2.170667pt;}
.ws101{word-spacing:2.186667pt;}
.ws7f{word-spacing:2.288000pt;}
.wsea{word-spacing:2.453333pt;}
.ws6a{word-spacing:2.464000pt;}
.ws11b{word-spacing:2.506667pt;}
.wsab{word-spacing:2.581333pt;}
.wsf5{word-spacing:2.613333pt;}
.ws89{word-spacing:2.640000pt;}
.wsf4{word-spacing:2.720000pt;}
.wsce{word-spacing:2.757333pt;}
.ws11a{word-spacing:2.773333pt;}
.ws32{word-spacing:2.816000pt;}
.ws119{word-spacing:2.880000pt;}
.wsc7{word-spacing:2.933333pt;}
.wsf9{word-spacing:2.986667pt;}
.wsba{word-spacing:2.992000pt;}
.ws12{word-spacing:3.168000pt;}
.ws35{word-spacing:3.285333pt;}
.wsfb{word-spacing:3.306667pt;}
.wsfa{word-spacing:3.360000pt;}
.ws11e{word-spacing:3.413333pt;}
.ws38{word-spacing:3.520000pt;}
.ws2f{word-spacing:3.578667pt;}
.ws98{word-spacing:3.696000pt;}
.wsc4{word-spacing:3.754667pt;}
.ws11c{word-spacing:3.786667pt;}
.ws15{word-spacing:3.984000pt;}
.wsbc{word-spacing:4.048000pt;}
.ws141{word-spacing:4.080000pt;}
.wsd0{word-spacing:4.106667pt;}
.ws88{word-spacing:4.165333pt;}
.ws93{word-spacing:4.224000pt;}
.ws3b{word-spacing:4.282667pt;}
.wscd{word-spacing:4.400000pt;}
.ws102{word-spacing:4.586667pt;}
.ws86{word-spacing:4.634667pt;}
.wse8{word-spacing:4.640000pt;}
.ws29{word-spacing:4.752000pt;}
.wse7{word-spacing:4.800000pt;}
.ws14{word-spacing:4.896000pt;}
.ws85{word-spacing:4.986667pt;}
.ws48{word-spacing:5.045333pt;}
.ws30{word-spacing:5.104000pt;}
.wsfe{word-spacing:5.173333pt;}
.ws55{word-spacing:5.221333pt;}
.ws4f{word-spacing:5.280000pt;}
.wsfd{word-spacing:5.333333pt;}
.wsa8{word-spacing:5.338667pt;}
.wsb9{word-spacing:5.397333pt;}
.wse{word-spacing:5.424000pt;}
.ws39{word-spacing:5.456000pt;}
.wsb6{word-spacing:5.514667pt;}
.ws49{word-spacing:5.749333pt;}
.wsc5{word-spacing:5.808000pt;}
.wsb{word-spacing:5.904000pt;}
.wsc9{word-spacing:5.984000pt;}
.ws1a{word-spacing:6.042667pt;}
.wsa{word-spacing:6.096000pt;}
.ws59{word-spacing:6.101333pt;}
.ws61{word-spacing:6.218667pt;}
.wsd3{word-spacing:6.336000pt;}
.wsac{word-spacing:6.453333pt;}
.ws23{word-spacing:6.512000pt;}
.ws8b{word-spacing:6.570667pt;}
.ws13{word-spacing:6.624000pt;}
.ws8a{word-spacing:6.629333pt;}
.ws4b{word-spacing:6.688000pt;}
.ws1b{word-spacing:6.746667pt;}
.wsbd{word-spacing:6.922667pt;}
.wsca{word-spacing:7.098667pt;}
.ws72{word-spacing:7.157333pt;}
.ws75{word-spacing:7.216000pt;}
.wsad{word-spacing:7.274667pt;}
.wsb4{word-spacing:7.392000pt;}
.ws5a{word-spacing:7.450667pt;}
.ws4d{word-spacing:7.509333pt;}
.ws9{word-spacing:7.584000pt;}
.wsf3{word-spacing:7.840000pt;}
.wsbb{word-spacing:7.861333pt;}
.wsa9{word-spacing:7.920000pt;}
.ws5d{word-spacing:7.978667pt;}
.wsf2{word-spacing:8.106667pt;}
.ws70{word-spacing:8.154667pt;}
.wsc{word-spacing:8.160000pt;}
.ws7{word-spacing:8.208000pt;}
.ws4c{word-spacing:8.506667pt;}
.ws18{word-spacing:8.565333pt;}
.wsa1{word-spacing:8.800000pt;}
.ws36{word-spacing:8.858667pt;}
.ws44{word-spacing:8.917333pt;}
.ws5c{word-spacing:9.269333pt;}
.ws95{word-spacing:9.386667pt;}
.wsf1{word-spacing:9.546667pt;}
.ws50{word-spacing:9.738667pt;}
.wsa5{word-spacing:9.797333pt;}
.wsf0{word-spacing:9.813333pt;}
.ws76{word-spacing:9.856000pt;}
.ws51{word-spacing:9.914667pt;}
.wsb1{word-spacing:10.032000pt;}
.ws91{word-spacing:10.208000pt;}
.ws116{word-spacing:10.293333pt;}
.ws26{word-spacing:10.501333pt;}
.ws115{word-spacing:10.613333pt;}
.wsb0{word-spacing:10.736000pt;}
.ws96{word-spacing:10.794667pt;}
.wsd2{word-spacing:10.912000pt;}
.ws6d{word-spacing:11.322667pt;}
.ws62{word-spacing:11.616000pt;}
.ws121{word-spacing:11.786667pt;}
.wsb3{word-spacing:11.968000pt;}
.ws106{word-spacing:12.053333pt;}
.wsd8{word-spacing:12.144000pt;}
.ws120{word-spacing:12.160000pt;}
.ws105{word-spacing:12.426667pt;}
.wsbf{word-spacing:12.613333pt;}
.wsd9{word-spacing:12.730667pt;}
.ws78{word-spacing:12.906667pt;}
.ws3d{word-spacing:12.965333pt;}
.ws108{word-spacing:14.720000pt;}
.ws3c{word-spacing:14.725333pt;}
.ws66{word-spacing:14.784000pt;}
.ws109{word-spacing:15.146667pt;}
.ws9a{word-spacing:16.192000pt;}
.wsae{word-spacing:16.250667pt;}
.ws40{word-spacing:16.544000pt;}
.ws56{word-spacing:16.661333pt;}
.wsc0{word-spacing:17.365333pt;}
.wsd4{word-spacing:17.717333pt;}
.ws6e{word-spacing:18.245333pt;}
.ws69{word-spacing:18.538667pt;}
.wsa7{word-spacing:20.064000pt;}
.wsd7{word-spacing:20.122667pt;}
.ws5f{word-spacing:20.240000pt;}
.ws8f{word-spacing:22.410667pt;}
.wsc6{word-spacing:23.232000pt;}
.ws79{word-spacing:24.170667pt;}
.ws47{word-spacing:25.226667pt;}
.ws77{word-spacing:28.218667pt;}
.ws17{word-spacing:32.000000pt;}
.ws58{word-spacing:33.850667pt;}
.ws138{word-spacing:46.176000pt;}
.ws131{word-spacing:46.416000pt;}
.ws12c{word-spacing:46.512000pt;}
.ws13d{word-spacing:46.977067pt;}
.ws12b{word-spacing:47.088000pt;}
.ws125{word-spacing:50.448000pt;}
.wsda{word-spacing:51.984000pt;}
.ws128{word-spacing:53.424000pt;}
.ws135{word-spacing:53.472000pt;}
.ws12d{word-spacing:53.616000pt;}
.ws133{word-spacing:53.760000pt;}
.ws137{word-spacing:54.336000pt;}
.ws124{word-spacing:55.632000pt;}
.ws130{word-spacing:58.512000pt;}
.ws12e{word-spacing:80.592000pt;}
.wsde{word-spacing:81.312000pt;}
.ws127{word-spacing:89.040000pt;}
.wsdd{word-spacing:90.048000pt;}
.wse1{word-spacing:153.552000pt;}
.wsdc{word-spacing:160.608000pt;}
.wsdf{word-spacing:161.904000pt;}
.wsdb{word-spacing:173.040000pt;}
.wsa0{word-spacing:291.888000pt;}
.ws126{word-spacing:348.144000pt;}
._13{margin-left:-51.920000pt;}
._34{margin-left:-42.480000pt;}
._37{margin-left:-21.333333pt;}
._2{margin-left:-6.528533pt;}
._3{margin-left:-4.762667pt;}
._6{margin-left:-3.493339pt;}
._1{margin-left:-2.542400pt;}
._0{margin-left:-0.970667pt;}
._5{width:0.895968pt;}
._4{width:1.785056pt;}
._7{width:2.681627pt;}
._19{width:3.588288pt;}
._8{width:4.582331pt;}
._b{width:6.299872pt;}
._12{width:7.541845pt;}
._11{width:8.794133pt;}
._15{width:9.852800pt;}
._26{width:10.774933pt;}
._38{width:11.935467pt;}
._9{width:12.912533pt;}
._a{width:13.808539pt;}
._16{width:15.067195pt;}
._e{width:16.544000pt;}
._1a{width:18.133867pt;}
._2e{width:19.529600pt;}
._2f{width:20.692800pt;}
._17{width:21.689067pt;}
._1b{width:24.170667pt;}
._18{width:28.800000pt;}
._c{width:32.000000pt;}
._62{width:45.248000pt;}
._f{width:46.346667pt;}
._10{width:47.578667pt;}
._73{width:51.285333pt;}
._4d{width:54.789333pt;}
._56{width:56.160000pt;}
._d{width:57.258667pt;}
._1f{width:58.453339pt;}
._4c{width:60.336000pt;}
._51{width:61.344000pt;}
._14{width:65.648000pt;}
._41{width:67.440000pt;}
._47{width:68.640000pt;}
._3f{width:71.424000pt;}
._2c{width:74.160000pt;}
._23{width:75.888000pt;}
._6d{width:76.896000pt;}
._44{width:78.576000pt;}
._4e{width:80.256000pt;}
._33{width:85.296000pt;}
._36{width:86.938667pt;}
._50{width:88.080000pt;}
._59{width:89.194667pt;}
._45{width:90.144000pt;}
._40{width:91.056000pt;}
._46{width:92.544000pt;}
._2d{width:97.008000pt;}
._43{width:99.754667pt;}
._53{width:101.049067pt;}
._71{width:105.897061pt;}
._20{width:111.296000pt;}
._66{width:117.226667pt;}
._60{width:118.618667pt;}
._63{width:122.458667pt;}
._55{width:123.829365pt;}
._24{width:135.456000pt;}
._35{width:141.744000pt;}
._4b{width:151.066667pt;}
._1c{width:155.088000pt;}
._29{width:159.130667pt;}
._21{width:165.024000pt;}
._39{width:165.984000pt;}
._6e{width:168.384000pt;}
._5d{width:170.016000pt;}
._1e{width:172.234667pt;}
._3d{width:174.490667pt;}
._5a{width:175.882667pt;}
._25{width:182.782400pt;}
._3a{width:186.192000pt;}
._6c{width:193.306667pt;}
._72{width:194.645333pt;}
._3e{width:197.365339pt;}
._1d{width:200.458667pt;}
._6a{width:204.302400pt;}
._5f{width:205.605333pt;}
._2a{width:206.830400pt;}
._2b{width:213.418667pt;}
._48{width:222.309333pt;}
._27{width:225.296000pt;}
._6f{width:226.405339pt;}
._5b{width:230.938667pt;}
._49{width:235.918400pt;}
._64{width:237.872000pt;}
._28{width:239.984000pt;}
._30{width:242.064000pt;}
._54{width:243.200000pt;}
._3b{width:244.752000pt;}
._58{width:250.288000pt;}
._42{width:255.765333pt;}
._65{width:256.666667pt;}
._67{width:263.088000pt;}
._70{width:271.669339pt;}
._4a{width:272.965339pt;}
._3c{width:284.400000pt;}
._52{width:287.760000pt;}
._57{width:290.064000pt;}
._5e{width:321.120000pt;}
._74{width:338.794667pt;}
._4f{width:341.136000pt;}
._68{width:346.848000pt;}
._6b{width:350.042667pt;}
._61{width:352.752000pt;}
._5c{width:372.357333pt;}
._69{width:399.408000pt;}
._31{width:472.944000pt;}
._32{width:483.792000pt;}
._22{width:1080.192000pt;}
.fs1{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:96.000000pt;}
.fs4{font-size:106.666667pt;}
.fs3{font-size:133.333333pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:36.036533pt;}
.y5{bottom:49.373867pt;}
.y7{bottom:55.039333pt;}
.y4{bottom:62.711200pt;}
.y3{bottom:76.048533pt;}
.y2{bottom:89.385867pt;}
.y1{bottom:102.719200pt;}
.y425{bottom:139.842533pt;}
.y1fb{bottom:141.314133pt;}
.y1e7{bottom:141.356800pt;}
.y1c8{bottom:142.610133pt;}
.y1b1{bottom:142.902800pt;}
.y167{bottom:143.055333pt;}
.y93{bottom:143.944800pt;}
.y282{bottom:148.031467pt;}
.y264{bottom:149.364400pt;}
.y322{bottom:149.695067pt;}
.y3dc{bottom:151.951067pt;}
.yd4{bottom:151.955467pt;}
.y10b{bottom:154.587467pt;}
.y1fa{bottom:159.984800pt;}
.yf5{bottom:160.023467pt;}
.y1e6{bottom:160.027467pt;}
.y1c7{bottom:161.280800pt;}
.y166{bottom:161.726000pt;}
.y92{bottom:162.615467pt;}
.y1e{bottom:162.775200pt;}
.y321{bottom:164.359067pt;}
.y294{bottom:165.364800pt;}
.y424{bottom:166.420133pt;}
.y3db{bottom:166.615067pt;}
.y263{bottom:166.697733pt;}
.y1b0{bottom:166.742267pt;}
.y44{bottom:170.360800pt;}
.yd3{bottom:170.626133pt;}
.y10a{bottom:173.258133pt;}
.yb6{bottom:174.607467pt;}
.y34e{bottom:178.363067pt;}
.y1f9{bottom:178.655467pt;}
.yf4{bottom:178.694133pt;}
.y1e5{bottom:178.698133pt;}
.y1d{bottom:178.771200pt;}
.y320{bottom:179.023067pt;}
.y165{bottom:180.396667pt;}
.y3da{bottom:181.279067pt;}
.y1a7{bottom:181.382267pt;}
.y1ab{bottom:181.394267pt;}
.y1af{bottom:181.406267pt;}
.y281{bottom:182.698133pt;}
.y2cf{bottom:185.492400pt;}
.y43{bottom:189.031467pt;}
.yd2{bottom:189.296800pt;}
.y109{bottom:191.928800pt;}
.y34d{bottom:193.027067pt;}
.yb5{bottom:193.278133pt;}
.y1c{bottom:194.767200pt;}
.y37e{bottom:195.463067pt;}
.y418{bottom:195.882933pt;}
.y1a6{bottom:196.046267pt;}
.y1aa{bottom:196.058267pt;}
.y1ae{bottom:196.070267pt;}
.y1f8{bottom:197.326133pt;}
.yf3{bottom:197.364800pt;}
.y1c6{bottom:198.607467pt;}
.y164{bottom:199.067333pt;}
.y91{bottom:199.942133pt;}
.y28d{bottom:200.031467pt;}
.y2ce{bottom:200.156400pt;}
.y262{bottom:201.364400pt;}
.y6c{bottom:206.067467pt;}
.y31f{bottom:206.143067pt;}
.y34c{bottom:207.691067pt;}
.y42{bottom:207.702133pt;}
.y350{bottom:207.703067pt;}
.y3d9{bottom:208.399067pt;}
.y37d{bottom:210.127067pt;}
.y417{bottom:210.546933pt;}
.y108{bottom:210.599467pt;}
.y1a5{bottom:210.710267pt;}
.y1a9{bottom:210.722267pt;}
.y1ad{bottom:210.734267pt;}
.y1b{bottom:210.763200pt;}
.yb4{bottom:211.948800pt;}
.y254{bottom:212.635067pt;}
.y2cd{bottom:214.820400pt;}
.y2d1{bottom:214.832400pt;}
.y1f7{bottom:215.996800pt;}
.y1e4{bottom:216.031467pt;}
.y1c5{bottom:217.278133pt;}
.y280{bottom:217.364800pt;}
.y90{bottom:218.612800pt;}
.y261{bottom:218.697733pt;}
.y31e{bottom:220.807067pt;}
.y34b{bottom:222.355067pt;}
.y34f{bottom:222.367067pt;}
.y3d8{bottom:223.063067pt;}
.y6b{bottom:224.738133pt;}
.y416{bottom:225.210933pt;}
.y41a{bottom:225.222933pt;}
.y1a4{bottom:225.374267pt;}
.y1a8{bottom:225.386267pt;}
.y1ac{bottom:225.398267pt;}
.y41{bottom:226.372800pt;}
.yd1{bottom:226.623467pt;}
.y1a{bottom:226.759200pt;}
.y107{bottom:229.270133pt;}
.y2cc{bottom:229.484400pt;}
.y2d0{bottom:229.496400pt;}
.yb3{bottom:230.619467pt;}
.y1f6{bottom:234.667467pt;}
.yf2{bottom:234.698133pt;}
.y31d{bottom:235.471067pt;}
.y1c4{bottom:235.948800pt;}
.y163{bottom:236.400667pt;}
.y146{bottom:236.427467pt;}
.y253{bottom:236.479067pt;}
.y415{bottom:239.874933pt;}
.y419{bottom:239.886933pt;}
.y423{bottom:241.204800pt;}
.y19{bottom:242.755200pt;}
.y6a{bottom:243.408800pt;}
.y40{bottom:245.043467pt;}
.yd0{bottom:245.294133pt;}
.y106{bottom:247.940800pt;}
.y34a{bottom:249.475067pt;}
.y37c{bottom:249.799067pt;}
.y3d4{bottom:250.171067pt;}
.y252{bottom:251.143067pt;}
.y292{bottom:252.031467pt;}
.y19f{bottom:252.482267pt;}
.y1f5{bottom:253.338133pt;}
.y1c3{bottom:254.619467pt;}
.y260{bottom:254.697733pt;}
.y8f{bottom:255.939467pt;}
.y2c8{bottom:256.604400pt;}
.y422{bottom:257.200800pt;}
.y18{bottom:258.751200pt;}
.y69{bottom:262.079467pt;}
.y316{bottom:262.567067pt;}
.y31a{bottom:262.579067pt;}
.ycf{bottom:263.964800pt;}
.y349{bottom:264.139067pt;}
.y37b{bottom:264.463067pt;}
.y3d3{bottom:264.835067pt;}
.y3d7{bottom:264.847067pt;}
.y145{bottom:265.059467pt;}
.y3a5{bottom:265.147067pt;}
.y251{bottom:265.807067pt;}
.y105{bottom:266.611467pt;}
.y19a{bottom:267.134267pt;}
.y19e{bottom:267.146267pt;}
.y1a3{bottom:267.158267pt;}
.yb2{bottom:267.946133pt;}
.y27f{bottom:269.364800pt;}
.y2c7{bottom:271.268400pt;}
.y2cb{bottom:271.280400pt;}
.y1f4{bottom:272.008800pt;}
.y421{bottom:273.196800pt;}
.y1c2{bottom:273.290133pt;}
.y8e{bottom:274.610133pt;}
.y17{bottom:274.747200pt;}
.y315{bottom:277.231067pt;}
.y319{bottom:277.243067pt;}
.y348{bottom:278.803067pt;}
.y37a{bottom:279.127067pt;}
.y3d2{bottom:279.499067pt;}
.y3d6{bottom:279.511067pt;}
.y3a4{bottom:279.811067pt;}
.y40e{bottom:279.858933pt;}
.y412{bottom:279.870933pt;}
.y24c{bottom:280.459067pt;}
.y250{bottom:280.471067pt;}
.y68{bottom:280.750133pt;}
.y199{bottom:281.798267pt;}
.y19d{bottom:281.810267pt;}
.y1a2{bottom:281.822267pt;}
.y3f{bottom:282.370133pt;}
.yce{bottom:282.635467pt;}
.y1e3{bottom:285.267467pt;}
.y104{bottom:285.282133pt;}
.y2c6{bottom:285.932400pt;}
.y2ca{bottom:285.944400pt;}
.yb1{bottom:286.616800pt;}
.y27e{bottom:286.698133pt;}
.y1f3{bottom:290.679467pt;}
.y16{bottom:290.743200pt;}
.y314{bottom:291.895067pt;}
.y318{bottom:291.907067pt;}
.y31c{bottom:291.919067pt;}
.y8d{bottom:293.280800pt;}
.y144{bottom:293.691467pt;}
.y3d1{bottom:294.163067pt;}
.y3d5{bottom:294.175067pt;}
.y3a3{bottom:294.475067pt;}
.y40d{bottom:294.522933pt;}
.y411{bottom:294.534933pt;}
.y24b{bottom:295.123067pt;}
.y24f{bottom:295.135067pt;}
.y198{bottom:296.462267pt;}
.y19c{bottom:296.474267pt;}
.y1a1{bottom:296.486267pt;}
.y67{bottom:299.420800pt;}
.y2c5{bottom:300.596400pt;}
.y2c9{bottom:300.608400pt;}
.y3e{bottom:301.040800pt;}
.ycd{bottom:301.306133pt;}
.y202{bottom:303.923467pt;}
.y1e2{bottom:303.938133pt;}
.y103{bottom:303.952800pt;}
.y28c{bottom:304.031467pt;}
.yb0{bottom:305.287467pt;}
.y347{bottom:305.923067pt;}
.y377{bottom:306.235067pt;}
.y313{bottom:306.559067pt;}
.y317{bottom:306.571067pt;}
.y31b{bottom:306.583067pt;}
.yf1{bottom:306.622133pt;}
.y162{bottom:308.364667pt;}
.y40c{bottom:309.186933pt;}
.y410{bottom:309.198933pt;}
.y414{bottom:309.210933pt;}
.y24a{bottom:309.787067pt;}
.y24e{bottom:309.799067pt;}
.y15{bottom:310.522800pt;}
.y1c1{bottom:310.616800pt;}
.y197{bottom:311.126267pt;}
.y19b{bottom:311.138267pt;}
.y1a0{bottom:311.150267pt;}
.y8c{bottom:311.951467pt;}
.y66{bottom:318.091467pt;}
.y3d{bottom:319.711467pt;}
.ycc{bottom:319.976800pt;}
.y346{bottom:320.587067pt;}
.y376{bottom:320.899067pt;}
.y27d{bottom:321.364800pt;}
.y3d0{bottom:321.499067pt;}
.y39f{bottom:321.595067pt;}
.y143{bottom:322.323467pt;}
.y201{bottom:322.594133pt;}
.y1e1{bottom:322.608800pt;}
.y40b{bottom:323.850933pt;}
.y40f{bottom:323.862933pt;}
.y413{bottom:323.874933pt;}
.yaf{bottom:323.958133pt;}
.y25f{bottom:324.031067pt;}
.y249{bottom:324.451067pt;}
.y24d{bottom:324.463067pt;}
.yf0{bottom:325.292800pt;}
.y161{bottom:327.035333pt;}
.y1f2{bottom:328.006133pt;}
.y1c0{bottom:329.287467pt;}
.y375{bottom:335.563067pt;}
.y379{bottom:335.575067pt;}
.y3cf{bottom:336.163067pt;}
.y39e{bottom:336.259067pt;}
.y3a2{bottom:336.271067pt;}
.y65{bottom:336.762133pt;}
.y192{bottom:338.234267pt;}
.y196{bottom:338.246267pt;}
.y3c{bottom:338.382133pt;}
.ycb{bottom:338.647467pt;}
.y27c{bottom:338.698133pt;}
.y2c1{bottom:339.932400pt;}
.y200{bottom:341.264800pt;}
.y102{bottom:341.279467pt;}
.yae{bottom:342.628800pt;}
.yef{bottom:343.963467pt;}
.y160{bottom:345.706000pt;}
.y1f1{bottom:346.676800pt;}
.y345{bottom:347.707067pt;}
.y1bf{bottom:347.958133pt;}
.y8b{bottom:349.278133pt;}
.y374{bottom:350.227067pt;}
.y378{bottom:350.239067pt;}
.y39d{bottom:350.923067pt;}
.y3a1{bottom:350.935067pt;}
.y142{bottom:350.955467pt;}
.y243{bottom:351.559067pt;}
.y248{bottom:351.571067pt;}
.y191{bottom:352.898267pt;}
.y195{bottom:352.910267pt;}
.y2c0{bottom:354.596400pt;}
.y64{bottom:355.432800pt;}
.y291{bottom:356.031467pt;}
.y3b{bottom:357.052800pt;}
.yca{bottom:357.318133pt;}
.y14{bottom:359.056133pt;}
.y30f{bottom:359.551067pt;}
.y1e0{bottom:359.935467pt;}
.y101{bottom:359.950133pt;}
.y25e{bottom:361.364400pt;}
.y344{bottom:362.371067pt;}
.yee{bottom:362.634133pt;}
.y3ce{bottom:363.283067pt;}
.y15f{bottom:364.376667pt;}
.y1f0{bottom:365.347467pt;}
.y39c{bottom:365.587067pt;}
.y3a0{bottom:365.599067pt;}
.y242{bottom:366.223067pt;}
.y247{bottom:366.235067pt;}
.y1be{bottom:366.628800pt;}
.y190{bottom:367.562267pt;}
.y194{bottom:367.574267pt;}
.y2bf{bottom:369.260400pt;}
.y2c4{bottom:369.272400pt;}
.y27b{bottom:373.364800pt;}
.y63{bottom:374.103467pt;}
.y30e{bottom:374.215067pt;}
.y312{bottom:374.227067pt;}
.y3a{bottom:375.723467pt;}
.y373{bottom:377.347067pt;}
.y13{bottom:377.722800pt;}
.y3cd{bottom:377.947067pt;}
.y1df{bottom:378.606133pt;}
.y100{bottom:378.620800pt;}
.y141{bottom:379.587467pt;}
.yad{bottom:379.955467pt;}
.y241{bottom:380.887067pt;}
.y246{bottom:380.899067pt;}
.yed{bottom:381.304800pt;}
.y18f{bottom:382.226267pt;}
.y193{bottom:382.238267pt;}
.y15e{bottom:383.047333pt;}
.y2be{bottom:383.924400pt;}
.y2c3{bottom:383.936400pt;}
.y1ef{bottom:384.018133pt;}
.y8a{bottom:385.284800pt;}
.y1bd{bottom:385.299467pt;}
.y30d{bottom:388.879067pt;}
.y311{bottom:388.891067pt;}
.y343{bottom:389.491067pt;}
.y408{bottom:389.514933pt;}
.y27a{bottom:390.698133pt;}
.y372{bottom:392.011067pt;}
.y3cc{bottom:392.611067pt;}
.y39b{bottom:392.707067pt;}
.y62{bottom:392.774133pt;}
.y39{bottom:394.394133pt;}
.yc9{bottom:394.644800pt;}
.y240{bottom:395.551067pt;}
.y245{bottom:395.563067pt;}
.y12{bottom:396.389467pt;}
.y1de{bottom:397.276800pt;}
.yff{bottom:397.291467pt;}
.y2bd{bottom:398.588400pt;}
.y2c2{bottom:398.600400pt;}
.yac{bottom:398.626133pt;}
.y15d{bottom:401.718000pt;}
.y1ee{bottom:402.688800pt;}
.y30c{bottom:403.543067pt;}
.y310{bottom:403.555067pt;}
.y89{bottom:403.955467pt;}
.y1bc{bottom:403.970133pt;}
.y342{bottom:404.155067pt;}
.y407{bottom:404.178933pt;}
.y39a{bottom:407.371067pt;}
.y290{bottom:408.031467pt;}
.y140{bottom:408.219467pt;}
.y18e{bottom:409.346267pt;}
.y23f{bottom:410.215067pt;}
.y244{bottom:410.227067pt;}
.y38{bottom:413.064800pt;}
.yc8{bottom:413.315467pt;}
.y11{bottom:415.056133pt;}
.y1dd{bottom:415.947467pt;}
.yfe{bottom:415.962133pt;}
.yab{bottom:417.296800pt;}
.yec{bottom:418.631467pt;}
.y406{bottom:418.842933pt;}
.y371{bottom:419.131067pt;}
.y3c9{bottom:419.731067pt;}
.y15c{bottom:420.388667pt;}
.y88{bottom:422.626133pt;}
.y1bb{bottom:422.640800pt;}
.y18d{bottom:424.010267pt;}
.y279{bottom:425.364800pt;}
.y2bb{bottom:425.708400pt;}
.y61{bottom:426.566133pt;}
.y309{bottom:430.651067pt;}
.y25d{bottom:430.697733pt;}
.y37{bottom:431.735467pt;}
.yc7{bottom:431.986133pt;}
.y405{bottom:433.506933pt;}
.y370{bottom:433.795067pt;}
.y3c8{bottom:434.395067pt;}
.y1dc{bottom:434.618133pt;}
.yfd{bottom:434.632800pt;}
.yaa{bottom:435.967467pt;}
.y13f{bottom:436.851467pt;}
.yeb{bottom:437.302133pt;}
.y23e{bottom:437.335067pt;}
.y18c{bottom:438.674267pt;}
.y15b{bottom:439.059333pt;}
.y1ed{bottom:440.015467pt;}
.y2b6{bottom:440.360400pt;}
.y2ba{bottom:440.372400pt;}
.y87{bottom:441.296800pt;}
.y1ba{bottom:441.311467pt;}
.y278{bottom:442.698133pt;}
.y33f{bottom:444.151067pt;}
.y60{bottom:445.236800pt;}
.y308{bottom:445.315067pt;}
.y399{bottom:447.043067pt;}
.y404{bottom:448.170933pt;}
.y40a{bottom:448.182933pt;}
.y3c7{bottom:449.059067pt;}
.y3cb{bottom:449.071067pt;}
.y10{bottom:449.989467pt;}
.y36{bottom:450.406133pt;}
.yc6{bottom:450.656800pt;}
.y237{bottom:451.987067pt;}
.y23d{bottom:451.999067pt;}
.y1db{bottom:453.288800pt;}
.yfc{bottom:453.303467pt;}
.y18b{bottom:453.338267pt;}
.y2b5{bottom:455.024400pt;}
.y2b9{bottom:455.036400pt;}
.yea{bottom:455.972800pt;}
.y15a{bottom:457.730000pt;}
.y1ec{bottom:458.686133pt;}
.y33e{bottom:458.815067pt;}
.y86{bottom:459.967467pt;}
.y307{bottom:459.979067pt;}
.y1b9{bottom:459.982133pt;}
.y30b{bottom:459.991067pt;}
.y28f{bottom:460.031467pt;}
.y36f{bottom:460.915067pt;}
.y398{bottom:461.707067pt;}
.y403{bottom:462.834933pt;}
.y409{bottom:462.846933pt;}
.y3c6{bottom:463.723067pt;}
.y3ca{bottom:463.735067pt;}
.y5f{bottom:463.907467pt;}
.y13e{bottom:465.483467pt;}
.y236{bottom:466.651067pt;}
.y23c{bottom:466.663067pt;}
.y18a{bottom:468.002267pt;}
.y25c{bottom:468.031067pt;}
.yf{bottom:468.656133pt;}
.y35{bottom:469.076800pt;}
.yc5{bottom:469.327467pt;}
.y2b4{bottom:469.688400pt;}
.y2b8{bottom:469.700400pt;}
.y1da{bottom:471.959467pt;}
.yfb{bottom:471.974133pt;}
.ya9{bottom:473.294133pt;}
.y33d{bottom:473.479067pt;}
.y341{bottom:473.491067pt;}
.y306{bottom:474.643067pt;}
.ye9{bottom:474.643467pt;}
.y30a{bottom:474.655067pt;}
.y36e{bottom:475.579067pt;}
.y397{bottom:476.371067pt;}
.y159{bottom:476.400667pt;}
.y1eb{bottom:477.356800pt;}
.y277{bottom:477.364800pt;}
.y85{bottom:478.638133pt;}
.y235{bottom:481.315067pt;}
.y23b{bottom:481.327067pt;}
.y5e{bottom:482.578133pt;}
.y2b3{bottom:484.352400pt;}
.y2b7{bottom:484.364400pt;}
.y2bc{bottom:484.376400pt;}
.ye{bottom:487.322800pt;}
.y34{bottom:487.747467pt;}
.yc4{bottom:487.998133pt;}
.y33c{bottom:488.143067pt;}
.y340{bottom:488.155067pt;}
.y1d9{bottom:490.630133pt;}
.yfa{bottom:490.644800pt;}
.y3c5{bottom:490.843067pt;}
.ya8{bottom:491.964800pt;}
.ye8{bottom:493.314133pt;}
.y13d{bottom:494.115467pt;}
.y276{bottom:494.698133pt;}
.y181{bottom:495.098267pt;}
.y185{bottom:495.110267pt;}
.y189{bottom:495.122267pt;}
.y234{bottom:495.979067pt;}
.y23a{bottom:495.991067pt;}
.y1ea{bottom:496.027467pt;}
.y84{bottom:497.308800pt;}
.y25b{bottom:500.031067pt;}
.y5d{bottom:501.248800pt;}
.y305{bottom:501.763067pt;}
.y36d{bottom:502.699067pt;}
.y393{bottom:503.491067pt;}
.y3c4{bottom:505.507067pt;}
.yd{bottom:505.989467pt;}
.y33{bottom:506.418133pt;}
.y1ff{bottom:509.300800pt;}
.yf9{bottom:509.315467pt;}
.y180{bottom:509.762267pt;}
.y184{bottom:509.774267pt;}
.y188{bottom:509.786267pt;}
.ya7{bottom:510.635467pt;}
.y233{bottom:510.643067pt;}
.y239{bottom:510.655067pt;}
.y2b0{bottom:511.460400pt;}
.ye7{bottom:511.984800pt;}
.y28b{bottom:512.031467pt;}
.y158{bottom:513.734000pt;}
.y1e9{bottom:514.698133pt;}
.y83{bottom:515.979467pt;}
.y304{bottom:516.427067pt;}
.y36c{bottom:517.363067pt;}
.y392{bottom:518.155067pt;}
.y396{bottom:518.167067pt;}
.y3c3{bottom:520.171067pt;}
.y13c{bottom:522.745333pt;}
.y17f{bottom:524.426267pt;}
.y183{bottom:524.438267pt;}
.y187{bottom:524.450267pt;}
.y32{bottom:525.088800pt;}
.y232{bottom:525.307067pt;}
.y238{bottom:525.319067pt;}
.yc3{bottom:525.324800pt;}
.y2af{bottom:526.124400pt;}
.y339{bottom:527.131067pt;}
.y3fc{bottom:527.826933pt;}
.y1d8{bottom:527.956800pt;}
.y1fe{bottom:527.971467pt;}
.y275{bottom:529.364800pt;}
.y303{bottom:531.091067pt;}
.y36b{bottom:532.027067pt;}
.y391{bottom:532.819067pt;}
.y395{bottom:532.831067pt;}
.y1b8{bottom:534.650133pt;}
.y5c{bottom:535.040800pt;}
.y17e{bottom:539.090267pt;}
.y182{bottom:539.102267pt;}
.y186{bottom:539.114267pt;}
.y2ae{bottom:540.788400pt;}
.y2b2{bottom:540.800400pt;}
.y338{bottom:541.795067pt;}
.y3fb{bottom:542.490933pt;}
.y31{bottom:543.759467pt;}
.yc2{bottom:543.995467pt;}
.y1d7{bottom:546.627467pt;}
.ya6{bottom:546.642133pt;}
.y274{bottom:546.698133pt;}
.y3c2{bottom:547.291067pt;}
.y390{bottom:547.483067pt;}
.y394{bottom:547.495067pt;}
.yc{bottom:548.481867pt;}
.ye6{bottom:549.311467pt;}
.y1e8{bottom:552.031467pt;}
.y231{bottom:552.427067pt;}
.y82{bottom:553.306133pt;}
.y1b7{bottom:553.320800pt;}
.y5b{bottom:553.711467pt;}
.y2ad{bottom:555.452400pt;}
.y2b1{bottom:555.464400pt;}
.y337{bottom:556.459067pt;}
.y33b{bottom:556.471067pt;}
.y3fa{bottom:557.154933pt;}
.y36a{bottom:559.147067pt;}
.y3c1{bottom:561.955067pt;}
.y30{bottom:562.430133pt;}
.yc1{bottom:562.666133pt;}
.y13b{bottom:563.060267pt;}
.y295{bottom:564.031467pt;}
.y1d6{bottom:565.298133pt;}
.ya5{bottom:565.312800pt;}
.y17d{bottom:566.210267pt;}
.y22b{bottom:567.079067pt;}
.y230{bottom:567.091067pt;}
.ye5{bottom:567.982133pt;}
.y25a{bottom:569.364400pt;}
.y336{bottom:571.123067pt;}
.y33a{bottom:571.135067pt;}
.y3f9{bottom:571.818933pt;}
.y400{bottom:571.830933pt;}
.y81{bottom:571.976800pt;}
.y1b6{bottom:571.991467pt;}
.y5a{bottom:572.382133pt;}
.y369{bottom:573.811067pt;}
.yb{bottom:580.481867pt;}
.y17c{bottom:580.874267pt;}
.y2f{bottom:581.100800pt;}
.yc0{bottom:581.336800pt;}
.y273{bottom:581.364800pt;}
.y22a{bottom:581.743067pt;}
.y22f{bottom:581.755067pt;}
.y2ac{bottom:582.572400pt;}
.y2fb{bottom:583.411067pt;}
.y300{bottom:583.423067pt;}
.y1d5{bottom:583.968800pt;}
.ya4{bottom:583.983467pt;}
.y157{bottom:585.706000pt;}
.y38d{bottom:586.471067pt;}
.y3f8{bottom:586.482933pt;}
.y3ff{bottom:586.494933pt;}
.ye4{bottom:586.652800pt;}
.y12f{bottom:587.580533pt;}
.y3c0{bottom:589.291067pt;}
.y80{bottom:590.647467pt;}
.y1b5{bottom:590.662133pt;}
.y59{bottom:591.052800pt;}
.y17b{bottom:595.538267pt;}
.y229{bottom:596.407067pt;}
.y22e{bottom:596.419067pt;}
.y2ab{bottom:597.236400pt;}
.y2fa{bottom:598.075067pt;}
.y2ff{bottom:598.087067pt;}
.y335{bottom:598.243067pt;}
.y272{bottom:598.698133pt;}
.y2e{bottom:599.771467pt;}
.ybf{bottom:600.007467pt;}
.y365{bottom:600.931067pt;}
.y38c{bottom:601.135067pt;}
.y3f7{bottom:601.146933pt;}
.y3fe{bottom:601.158933pt;}
.y402{bottom:601.170933pt;}
.y12a{bottom:602.232533pt;}
.y12e{bottom:602.244533pt;}
.y133{bottom:602.256533pt;}
.y137{bottom:602.268533pt;}
.y1d4{bottom:602.639467pt;}
.ya3{bottom:602.654133pt;}
.y3bf{bottom:603.955067pt;}
.y156{bottom:604.376667pt;}
.ye3{bottom:605.323467pt;}
.y259{bottom:606.697733pt;}
.y7f{bottom:609.318133pt;}
.y58{bottom:609.723467pt;}
.y17a{bottom:610.202267pt;}
.y228{bottom:611.071067pt;}
.y22d{bottom:611.083067pt;}
.y2aa{bottom:611.900400pt;}
.y2f9{bottom:612.739067pt;}
.y2fe{bottom:612.751067pt;}
.y334{bottom:612.907067pt;}
.y364{bottom:615.595067pt;}
.y38b{bottom:615.799067pt;}
.y3f6{bottom:615.810933pt;}
.y38f{bottom:615.811067pt;}
.y3fd{bottom:615.822933pt;}
.y401{bottom:615.834933pt;}
.y28a{bottom:616.031467pt;}
.y129{bottom:616.896533pt;}
.y12d{bottom:616.908533pt;}
.y132{bottom:616.920533pt;}
.y136{bottom:616.932533pt;}
.y13a{bottom:616.944533pt;}
.ybe{bottom:618.678133pt;}
.ya{bottom:620.040800pt;}
.y1d3{bottom:621.310133pt;}
.ya2{bottom:621.324800pt;}
.y155{bottom:623.047333pt;}
.ye2{bottom:623.994133pt;}
.y179{bottom:624.866267pt;}
.y227{bottom:625.735067pt;}
.y22c{bottom:625.747067pt;}
.y2f8{bottom:627.403067pt;}
.y2fd{bottom:627.415067pt;}
.y302{bottom:627.427067pt;}
.y333{bottom:627.571067pt;}
.y7e{bottom:627.988800pt;}
.y57{bottom:628.394133pt;}
.y363{bottom:630.259067pt;}
.y368{bottom:630.271067pt;}
.y38a{bottom:630.463067pt;}
.y38e{bottom:630.475067pt;}
.y128{bottom:631.560533pt;}
.y12c{bottom:631.572533pt;}
.y131{bottom:631.584533pt;}
.y135{bottom:631.596533pt;}
.y139{bottom:631.608533pt;}
.y271{bottom:633.364800pt;}
.y2d{bottom:636.034133pt;}
.ybd{bottom:637.348800pt;}
.y2a9{bottom:639.020400pt;}
.y1d2{bottom:639.980800pt;}
.ya1{bottom:639.995467pt;}
.y154{bottom:641.718000pt;}
.y2f7{bottom:642.067067pt;}
.y2fc{bottom:642.079067pt;}
.y301{bottom:642.091067pt;}
.ye1{bottom:642.664800pt;}
.y3f5{bottom:642.930933pt;}
.y3bb{bottom:642.943067pt;}
.y362{bottom:644.923067pt;}
.y367{bottom:644.935067pt;}
.y127{bottom:646.224533pt;}
.y12b{bottom:646.236533pt;}
.y130{bottom:646.248533pt;}
.y134{bottom:646.260533pt;}
.y138{bottom:646.272533pt;}
.y7d{bottom:646.659467pt;}
.y56{bottom:647.064800pt;}
.y293{bottom:650.698133pt;}
.y170{bottom:651.962267pt;}
.y174{bottom:651.974267pt;}
.y178{bottom:651.986267pt;}
.y226{bottom:652.855067pt;}
.y2a8{bottom:653.684400pt;}
.y330{bottom:654.691067pt;}
.ybc{bottom:656.019467pt;}
.y389{bottom:657.583067pt;}
.y3f4{bottom:657.594933pt;}
.y3ba{bottom:657.607067pt;}
.y3be{bottom:657.619067pt;}
.y1d1{bottom:658.651467pt;}
.ya0{bottom:658.666133pt;}
.y361{bottom:659.587067pt;}
.y366{bottom:659.599067pt;}
.y9{bottom:660.040800pt;}
.y153{bottom:660.388667pt;}
.ye0{bottom:661.335467pt;}
.y7c{bottom:665.330133pt;}
.y16f{bottom:666.626267pt;}
.y173{bottom:666.638267pt;}
.y177{bottom:666.650267pt;}
.y220{bottom:667.507067pt;}
.y225{bottom:667.519067pt;}
.y270{bottom:668.031467pt;}
.y2a7{bottom:668.348400pt;}
.y2f1{bottom:669.175067pt;}
.y2f5{bottom:669.187067pt;}
.y32f{bottom:669.355067pt;}
.y388{bottom:672.247067pt;}
.y3f3{bottom:672.258933pt;}
.y3b9{bottom:672.271067pt;}
.y3bd{bottom:672.283067pt;}
.ybb{bottom:674.690133pt;}
.y11b{bottom:674.820533pt;}
.y11f{bottom:674.832533pt;}
.y123{bottom:674.844533pt;}
.y258{bottom:676.031067pt;}
.yf8{bottom:677.322133pt;}
.y9f{bottom:677.336800pt;}
.y152{bottom:679.059333pt;}
.ydf{bottom:680.006133pt;}
.y55{bottom:680.856800pt;}
.y16e{bottom:681.290267pt;}
.y172{bottom:681.302267pt;}
.y176{bottom:681.314267pt;}
.y21f{bottom:682.171067pt;}
.y224{bottom:682.183067pt;}
.y2f0{bottom:683.839067pt;}
.y2f4{bottom:683.851067pt;}
.y7b{bottom:684.000800pt;}
.y32e{bottom:684.019067pt;}
.y289{bottom:685.364800pt;}
.y35d{bottom:686.695067pt;}
.y387{bottom:686.911067pt;}
.y3b8{bottom:686.935067pt;}
.y3bc{bottom:686.947067pt;}
.y11a{bottom:689.484533pt;}
.y11e{bottom:689.496533pt;}
.y122{bottom:689.508533pt;}
.y126{bottom:689.520533pt;}
.yba{bottom:693.360800pt;}
.y16d{bottom:695.954267pt;}
.y171{bottom:695.966267pt;}
.y1d0{bottom:695.978133pt;}
.y175{bottom:695.978267pt;}
.yf7{bottom:695.992800pt;}
.y9e{bottom:696.007467pt;}
.y21e{bottom:696.835067pt;}
.y223{bottom:696.847067pt;}
.y151{bottom:697.730000pt;}
.y2ef{bottom:698.503067pt;}
.y2f3{bottom:698.515067pt;}
.yde{bottom:698.676800pt;}
.y32d{bottom:698.683067pt;}
.y332{bottom:698.695067pt;}
.y3ef{bottom:699.366933pt;}
.y54{bottom:699.527467pt;}
.y8{bottom:700.040800pt;}
.y35c{bottom:701.359067pt;}
.y360{bottom:701.371067pt;}
.y7a{bottom:702.671467pt;}
.y26f{bottom:702.698133pt;}
.y119{bottom:704.148533pt;}
.y11d{bottom:704.160533pt;}
.y121{bottom:704.172533pt;}
.y125{bottom:704.184533pt;}
.y2a6{bottom:709.016400pt;}
.y21d{bottom:711.499067pt;}
.y222{bottom:711.511067pt;}
.yb9{bottom:712.031467pt;}
.y2ee{bottom:713.167067pt;}
.y2f2{bottom:713.179067pt;}
.y2f6{bottom:713.191067pt;}
.y32c{bottom:713.347067pt;}
.y331{bottom:713.359067pt;}
.y257{bottom:713.364400pt;}
.y3ee{bottom:714.030933pt;}
.y386{bottom:714.031067pt;}
.y3f2{bottom:714.042933pt;}
.y3b5{bottom:714.055067pt;}
.y1cf{bottom:714.648800pt;}
.yf6{bottom:714.663467pt;}
.y35b{bottom:716.023067pt;}
.y35f{bottom:716.035067pt;}
.y150{bottom:716.400667pt;}
.y53{bottom:718.198133pt;}
.y118{bottom:718.812533pt;}
.y11c{bottom:718.824533pt;}
.y120{bottom:718.836533pt;}
.y124{bottom:718.848533pt;}
.y26e{bottom:720.031467pt;}
.y79{bottom:721.342133pt;}
.y16c{bottom:721.934267pt;}
.y2a5{bottom:723.680400pt;}
.y21c{bottom:726.163067pt;}
.y221{bottom:726.175067pt;}
.y3ed{bottom:728.694933pt;}
.y385{bottom:728.695067pt;}
.y3f1{bottom:728.706933pt;}
.y3b4{bottom:728.719067pt;}
.y35a{bottom:730.687067pt;}
.y35e{bottom:730.699067pt;}
.y1ce{bottom:733.319467pt;}
.y9d{bottom:733.334133pt;}
.ydd{bottom:736.003467pt;}
.y52{bottom:736.868800pt;}
.y288{bottom:737.364800pt;}
.y2a4{bottom:738.344400pt;}
.y78{bottom:740.012800pt;}
.y2ec{bottom:740.287067pt;}
.y329{bottom:740.467067pt;}
.y3ec{bottom:743.358933pt;}
.y384{bottom:743.359067pt;}
.y3f0{bottom:743.370933pt;}
.y3b3{bottom:743.383067pt;}
.y3b7{bottom:743.395067pt;}
.y2c{bottom:743.624800pt;}
.y111{bottom:747.420533pt;}
.y115{bottom:747.432533pt;}
.yb8{bottom:749.364800pt;}
.y1cd{bottom:751.990133pt;}
.y9c{bottom:752.004800pt;}
.y16b{bottom:752.031467pt;}
.y420{bottom:753.031067pt;}
.y21b{bottom:753.283067pt;}
.y14f{bottom:753.734000pt;}
.ydc{bottom:754.674133pt;}
.y26d{bottom:754.698133pt;}
.y2e7{bottom:754.939067pt;}
.y2eb{bottom:754.951067pt;}
.y328{bottom:755.131067pt;}
.y51{bottom:755.539467pt;}
.y359{bottom:757.807067pt;}
.y3b2{bottom:758.047067pt;}
.y3b6{bottom:758.059067pt;}
.y77{bottom:758.683467pt;}
.y110{bottom:762.084533pt;}
.y114{bottom:762.096533pt;}
.y2b{bottom:763.404800pt;}
.y2a3{bottom:765.464400pt;}
.y41f{bottom:767.695067pt;}
.y21a{bottom:767.947067pt;}
.y2e6{bottom:769.603067pt;}
.y2ea{bottom:769.615067pt;}
.y327{bottom:769.795067pt;}
.y32b{bottom:769.807067pt;}
.y383{bottom:770.479067pt;}
.y1cc{bottom:770.660800pt;}
.y9b{bottom:770.675467pt;}
.y26c{bottom:772.031467pt;}
.y358{bottom:772.471067pt;}
.ydb{bottom:773.344800pt;}
.y50{bottom:774.210133pt;}
.y10f{bottom:776.748533pt;}
.y113{bottom:776.760533pt;}
.y117{bottom:776.772533pt;}
.y76{bottom:777.354133pt;}
.y2a2{bottom:780.128400pt;}
.y3e9{bottom:782.346933pt;}
.y219{bottom:782.611067pt;}
.y256{bottom:782.697733pt;}
.y2e5{bottom:784.267067pt;}
.y2e9{bottom:784.279067pt;}
.y326{bottom:784.459067pt;}
.y32a{bottom:784.471067pt;}
.y382{bottom:785.143067pt;}
.y1cb{bottom:789.331467pt;}
.y9a{bottom:789.346133pt;}
.y287{bottom:789.364800pt;}
.y10e{bottom:791.412533pt;}
.y112{bottom:791.424533pt;}
.y116{bottom:791.436533pt;}
.yda{bottom:792.015467pt;}
.y4f{bottom:792.880800pt;}
.yb7{bottom:794.698133pt;}
.y41c{bottom:794.803067pt;}
.y75{bottom:796.024800pt;}
.y3e8{bottom:797.010933pt;}
.y214{bottom:797.263067pt;}
.y218{bottom:797.275067pt;}
.y3ae{bottom:797.371067pt;}
.y2e4{bottom:798.931067pt;}
.y2e8{bottom:798.943067pt;}
.y2ed{bottom:798.955067pt;}
.y357{bottom:799.591067pt;}
.y381{bottom:799.807067pt;}
.y26b{bottom:806.698133pt;}
.y2a0{bottom:807.248400pt;}
.y16a{bottom:808.002133pt;}
.y99{bottom:808.016800pt;}
.y41b{bottom:809.467067pt;}
.yd9{bottom:810.686133pt;}
.y3e7{bottom:811.674933pt;}
.y3eb{bottom:811.686933pt;}
.y213{bottom:811.927067pt;}
.y217{bottom:811.939067pt;}
.y3ad{bottom:812.035067pt;}
.y2a{bottom:813.562133pt;}
.y356{bottom:814.255067pt;}
.y1b4{bottom:814.680800pt;}
.y74{bottom:814.695467pt;}
.y14e{bottom:817.734800pt;}
.y255{bottom:820.031067pt;}
.y10d{bottom:820.044533pt;}
.y29f{bottom:821.912400pt;}
.y286{bottom:824.031467pt;}
.y325{bottom:824.131067pt;}
.y41e{bottom:824.143067pt;}
.y3e6{bottom:826.338933pt;}
.y3ea{bottom:826.350933pt;}
.y212{bottom:826.591067pt;}
.y216{bottom:826.603067pt;}
.y4e{bottom:826.672800pt;}
.y98{bottom:826.687467pt;}
.y3ac{bottom:826.699067pt;}
.y3b1{bottom:826.711067pt;}
.y380{bottom:826.927067pt;}
.yd8{bottom:829.356800pt;}
.y29{bottom:829.558133pt;}
.y1b3{bottom:833.351467pt;}
.y29e{bottom:836.576400pt;}
.y2dd{bottom:836.587067pt;}
.y324{bottom:838.795067pt;}
.y41d{bottom:838.807067pt;}
.y211{bottom:841.255067pt;}
.y215{bottom:841.267067pt;}
.y3ab{bottom:841.363067pt;}
.y26a{bottom:841.364800pt;}
.y3b0{bottom:841.375067pt;}
.y14d{bottom:841.397200pt;}
.y355{bottom:841.591067pt;}
.y1fd{bottom:845.328800pt;}
.y4d{bottom:845.343467pt;}
.y97{bottom:845.358133pt;}
.y28{bottom:845.554133pt;}
.yd7{bottom:848.027467pt;}
.y29d{bottom:851.240400pt;}
.y2dc{bottom:851.251067pt;}
.y2a1{bottom:851.252400pt;}
.y73{bottom:852.022133pt;}
.y10c{bottom:852.031467pt;}
.y3e5{bottom:853.458933pt;}
.y323{bottom:853.459067pt;}
.y3aa{bottom:856.027067pt;}
.y3af{bottom:856.039067pt;}
.y354{bottom:856.255067pt;}
.y269{bottom:858.698133pt;}
.y27{bottom:861.550133pt;}
.y1fc{bottom:863.999467pt;}
.y4c{bottom:864.014133pt;}
.y96{bottom:864.028800pt;}
.y2db{bottom:865.915067pt;}
.y2e1{bottom:865.927067pt;}
.yd6{bottom:866.698133pt;}
.y3e4{bottom:868.122933pt;}
.y210{bottom:868.375067pt;}
.y14c{bottom:868.517200pt;}
.y37f{bottom:868.711067pt;}
.y1b2{bottom:870.678133pt;}
.y285{bottom:876.031467pt;}
.y26{bottom:877.546133pt;}
.y29b{bottom:878.360400pt;}
.y2da{bottom:880.579067pt;}
.y2e0{bottom:880.591067pt;}
.y1ca{bottom:882.670133pt;}
.y4b{bottom:882.684800pt;}
.y3e3{bottom:882.786933pt;}
.y20f{bottom:883.039067pt;}
.y353{bottom:883.375067pt;}
.y72{bottom:889.348800pt;}
.y29a{bottom:893.024400pt;}
.y3a8{bottom:893.035067pt;}
.y268{bottom:893.364800pt;}
.y25{bottom:893.542133pt;}
.y2d9{bottom:895.243067pt;}
.y2df{bottom:895.255067pt;}
.y2e3{bottom:895.267067pt;}
.y14b{bottom:895.637200pt;}
.y209{bottom:897.691067pt;}
.y20e{bottom:897.703067pt;}
.y352{bottom:898.039067pt;}
.y1c9{bottom:901.340800pt;}
.y4a{bottom:901.355467pt;}
.yd5{bottom:904.031467pt;}
.y299{bottom:907.688400pt;}
.y3a7{bottom:907.699067pt;}
.y71{bottom:908.019467pt;}
.y24{bottom:909.538667pt;}
.y3e2{bottom:909.906933pt;}
.y2d8{bottom:909.907067pt;}
.y2de{bottom:909.919067pt;}
.y2e2{bottom:909.931067pt;}
.y267{bottom:910.698133pt;}
.y208{bottom:912.355067pt;}
.y20d{bottom:912.367067pt;}
.y169{bottom:920.011467pt;}
.y49{bottom:920.026133pt;}
.y298{bottom:922.352400pt;}
.y3a6{bottom:922.363067pt;}
.y29c{bottom:922.364400pt;}
.y14a{bottom:922.757200pt;}
.y3e1{bottom:924.570933pt;}
.y23{bottom:925.534667pt;}
.y70{bottom:926.690133pt;}
.y207{bottom:927.019067pt;}
.y20c{bottom:927.031067pt;}
.y284{bottom:928.031467pt;}
.y2d6{bottom:937.027067pt;}
.y168{bottom:938.682133pt;}
.y48{bottom:938.696800pt;}
.y206{bottom:941.683067pt;}
.y20b{bottom:941.695067pt;}
.y22{bottom:943.718667pt;}
.y6f{bottom:945.360800pt;}
.y266{bottom:945.364800pt;}
.y297{bottom:949.472400pt;}
.y149{bottom:949.877200pt;}
.y3e0{bottom:951.690933pt;}
.y2d5{bottom:951.691067pt;}
.y3a9{bottom:951.703067pt;}
.y205{bottom:956.347067pt;}
.y20a{bottom:956.359067pt;}
.y95{bottom:957.352800pt;}
.y47{bottom:957.367467pt;}
.y283{bottom:962.698133pt;}
.y6e{bottom:964.031467pt;}
.y3df{bottom:966.354933pt;}
.y2d4{bottom:966.355067pt;}
.y351{bottom:966.367067pt;}
.y94{bottom:976.023467pt;}
.y148{bottom:977.753200pt;}
.y265{bottom:980.031467pt;}
.y3de{bottom:981.018933pt;}
.y2d3{bottom:981.019067pt;}
.y2d7{bottom:981.031067pt;}
.y204{bottom:983.467067pt;}
.y21{bottom:992.252000pt;}
.y46{bottom:994.694133pt;}
.y28e{bottom:997.364800pt;}
.y6d{bottom:1001.364800pt;}
.y296{bottom:1004.031467pt;}
.y147{bottom:1006.383200pt;}
.y3dd{bottom:1008.138933pt;}
.y2d2{bottom:1008.139067pt;}
.y20{bottom:1012.032000pt;}
.y45{bottom:1013.364800pt;}
.y203{bottom:1014.698133pt;}
.y1f{bottom:1065.597067pt;}
.h3{height:28.373333pt;}
.h2{height:31.146667pt;}
.hc{height:33.376000pt;}
.h11{height:34.416000pt;}
.h4{height:36.480000pt;}
.h13{height:36.624000pt;}
.h12{height:38.144000pt;}
.h14{height:38.933333pt;}
.h15{height:40.533333pt;}
.hb{height:42.912000pt;}
.ha{height:46.720000pt;}
.h9{height:47.680000pt;}
.h8{height:48.693333pt;}
.he{height:52.448000pt;}
.hf{height:68.832000pt;}
.h10{height:72.960000pt;}
.h7{height:75.733333pt;}
.hd{height:77.866667pt;}
.h6{height:93.333333pt;}
.h5{height:97.333333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.xa{left:81.583067pt;}
.x22{left:83.000000pt;}
.x2b{left:84.188000pt;}
.x2a{left:85.196000pt;}
.x3{left:86.440267pt;}
.x23{left:88.112000pt;}
.x1b{left:93.697733pt;}
.x6{left:102.049200pt;}
.x24{left:109.604000pt;}
.x8{left:112.095867pt;}
.x21{left:113.390533pt;}
.x20{left:120.497200pt;}
.x16{left:121.824667pt;}
.x13{left:124.492267pt;}
.x7{left:128.507867pt;}
.x4{left:131.338533pt;}
.xb{left:160.951067pt;}
.x14{left:206.320267pt;}
.x17{left:212.592667pt;}
.x12{left:219.813333pt;}
.x15{left:221.272800pt;}
.x25{left:222.992000pt;}
.x9{left:238.080000pt;}
.x26{left:265.988000pt;}
.xc{left:270.559067pt;}
.x1a{left:271.519067pt;}
.x1c{left:275.005733pt;}
.x1d{left:281.905733pt;}
.x18{left:373.224667pt;}
.xd{left:383.947067pt;}
.x27{left:390.716000pt;}
.xe{left:485.995067pt;}
.x1e{left:505.561733pt;}
.x1f{left:512.461733pt;}
.x28{left:515.444000pt;}
.x19{left:533.856667pt;}
.xf{left:595.603067pt;}
.x29{left:628.832000pt;}
.x11{left:631.423467pt;}
.x10{left:652.291067pt;}
.x2{left:694.466267pt;}
.x5{left:695.660267pt;}
}




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