
    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_d8163d9b1c4e901009b52cc7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933000;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_c8ac8aaba6b196575a52b486.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.183000;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_d58d34593057df3b7f1172c0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.177000;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_9092c09e08f44c39e9c8a6bc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.834000;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_b328814b8ebbc2eee5f5b0d2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.177000;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_b1c316dc31d8aee77dae9ba5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.834000;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_972c3d17a4e448881377f143.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.680000;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_39c1c70004c4bb57715104c5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.183000;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_c89531c2e9482028ba998750.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.154000;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_0fdac459b89138577040cf4a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.201000;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_d8163d9b1c4e901009b52cc7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.933000;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_c8ac8aaba6b196575a52b486.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.183000;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_d58d34593057df3b7f1172c0.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.177000;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_9092c09e08f44c39e9c8a6bc.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.834000;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_a3b11d09dc976cb51da477fb.woff2')format("woff");}.fff{font-family:fff;line-height:0.834000;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_08ea5a95f3737dfc906d7f0a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.837000;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_e6b73dd96d28695265707a08.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.634000;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_5ef7241ddcd5384f3517a992.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.676270;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_0d92587b5c574252908a9064.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_657c4e7f7c675447f64e0ebc.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_dce735534e1e40e266e14445.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.933000;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);}
.v4{vertical-align:-20.979600px;}
.v5{vertical-align:-16.983000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.517400px;}
.v3{vertical-align:20.978400px;}
.v2{vertical-align:31.500000px;}
.v6{vertical-align:33.017400px;}
.v1{vertical-align:144.000000px;}
.ls4{letter-spacing:-5.268000px;}
.ls1e{letter-spacing:-1.152000px;}
.ls20{letter-spacing:-0.960000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.630000px;}
.ls1c{letter-spacing:-0.504000px;}
.ls1d{letter-spacing:-0.288000px;}
.ls3{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.000600px;}
.ls50{letter-spacing:0.072600px;}
.ls31{letter-spacing:0.231600px;}
.ls9{letter-spacing:0.559200px;}
.ls39{letter-spacing:0.648000px;}
.ls3a{letter-spacing:0.650160px;}
.ls38{letter-spacing:0.650400px;}
.ls37{letter-spacing:0.651000px;}
.ls36{letter-spacing:0.651600px;}
.ls51{letter-spacing:0.663600px;}
.ls34{letter-spacing:0.695520px;}
.ls35{letter-spacing:0.696600px;}
.ls33{letter-spacing:0.697200px;}
.ls32{letter-spacing:0.702000px;}
.ls8{letter-spacing:0.887400px;}
.ls3c{letter-spacing:1.247400px;}
.ls3b{letter-spacing:1.248000px;}
.ls3d{letter-spacing:1.248600px;}
.ls4d{letter-spacing:1.269600px;}
.lsf{letter-spacing:1.687200px;}
.ls23{letter-spacing:1.695600px;}
.ls3f{letter-spacing:1.770000px;}
.ls26{letter-spacing:1.885800px;}
.ls11{letter-spacing:1.918800px;}
.ls60{letter-spacing:1.998000px;}
.ls63{letter-spacing:2.007180px;}
.ls61{letter-spacing:2.008800px;}
.ls62{letter-spacing:2.009400px;}
.ls2b{letter-spacing:2.048400px;}
.ls52{letter-spacing:2.288400px;}
.ls2f{letter-spacing:2.428800px;}
.ls5f{letter-spacing:2.511600px;}
.ls4e{letter-spacing:2.691600px;}
.ls4a{letter-spacing:2.705400px;}
.ls47{letter-spacing:2.967600px;}
.ls48{letter-spacing:2.968200px;}
.ls28{letter-spacing:3.009600px;}
.ls44{letter-spacing:3.412200px;}
.ls43{letter-spacing:3.412800px;}
.ls45{letter-spacing:3.940200px;}
.ls46{letter-spacing:3.940800px;}
.ls41{letter-spacing:4.104000px;}
.ls42{letter-spacing:4.104600px;}
.ls16{letter-spacing:4.396800px;}
.ls4b{letter-spacing:4.945800px;}
.ls65{letter-spacing:4.959000px;}
.ls5e{letter-spacing:5.185800px;}
.ls5b{letter-spacing:5.207400px;}
.ls2{letter-spacing:5.476800px;}
.ls27{letter-spacing:5.548800px;}
.ls30{letter-spacing:5.554200px;}
.ls66{letter-spacing:5.580000px;}
.ls2a{letter-spacing:6.064800px;}
.ls5c{letter-spacing:6.603000px;}
.ls53{letter-spacing:6.974400px;}
.ls54{letter-spacing:6.975000px;}
.ls55{letter-spacing:8.032800px;}
.ls56{letter-spacing:8.033400px;}
.ls4c{letter-spacing:8.074200px;}
.ls3e{letter-spacing:8.109600px;}
.ls0{letter-spacing:8.283000px;}
.ls1{letter-spacing:8.736000px;}
.ls58{letter-spacing:8.827200px;}
.ls57{letter-spacing:8.827800px;}
.ls40{letter-spacing:9.607200px;}
.ls4f{letter-spacing:10.009800px;}
.ls2e{letter-spacing:10.431000px;}
.ls64{letter-spacing:10.475400px;}
.ls2c{letter-spacing:12.135000px;}
.ls59{letter-spacing:13.005600px;}
.ls5a{letter-spacing:13.006200px;}
.ls29{letter-spacing:13.844400px;}
.ls12{letter-spacing:38.250000px;}
.ls7{letter-spacing:108.882000px;}
.ls5{letter-spacing:293.031000px;}
.ls19{letter-spacing:448.108200px;}
.ls2d{letter-spacing:449.559600px;}
.ls49{letter-spacing:450.682200px;}
.ls24{letter-spacing:450.814200px;}
.ls21{letter-spacing:452.794200px;}
.ls5d{letter-spacing:453.454200px;}
.ls6{letter-spacing:454.048200px;}
.ls14{letter-spacing:455.499600px;}
.ls15{letter-spacing:456.622200px;}
.ls22{letter-spacing:456.753600px;}
.lse{letter-spacing:456.754200px;}
.ls25{letter-spacing:457.413600px;}
.lsc{letter-spacing:458.734200px;}
.ls17{letter-spacing:459.393600px;}
.ls1f{letter-spacing:460.186200px;}
.lsd{letter-spacing:462.693600px;}
.ls10{letter-spacing:463.353600px;}
.lsb{letter-spacing:466.125600px;}
.ls1a{letter-spacing:475.966800px;}
.lsa{letter-spacing:534.499200px;}
.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;}
}
.ws19{word-spacing:-67.105200px;}
.ws3{word-spacing:-24.000000px;}
.wse4{word-spacing:-16.488000px;}
.wse2{word-spacing:-16.344000px;}
.wse3{word-spacing:-15.768000px;}
.ws1b{word-spacing:-15.750000px;}
.ws132{word-spacing:-15.498000px;}
.ws95{word-spacing:-15.120000px;}
.ws4{word-spacing:-14.250000px;}
.ws112{word-spacing:-14.202000px;}
.ws114{word-spacing:-14.148000px;}
.ws2{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.750000px;}
.wsd4{word-spacing:-12.000000px;}
.ws134{word-spacing:-11.457180px;}
.wsf1{word-spacing:-11.040000px;}
.ws1a{word-spacing:-11.025000px;}
.ws116{word-spacing:-10.697400px;}
.ws113{word-spacing:-10.145520px;}
.ws115{word-spacing:-10.100160px;}
.ws5{word-spacing:-9.975000px;}
.ws15{word-spacing:-9.450000px;}
.ws1{word-spacing:-8.925000px;}
.ws7b{word-spacing:-4.221000px;}
.wsd9{word-spacing:-3.213000px;}
.ws76{word-spacing:-3.150000px;}
.wsed{word-spacing:-3.087000px;}
.ws43{word-spacing:-3.024000px;}
.ws3b{word-spacing:-2.961000px;}
.ws87{word-spacing:-2.898000px;}
.ws35{word-spacing:-2.835000px;}
.wsa1{word-spacing:-2.709000px;}
.wsbb{word-spacing:-2.583000px;}
.ws90{word-spacing:-2.520000px;}
.ws127{word-spacing:-2.484000px;}
.ws66{word-spacing:-2.457000px;}
.ws139{word-spacing:-2.430000px;}
.ws8d{word-spacing:-2.394000px;}
.ws3d{word-spacing:-2.331000px;}
.ws7d{word-spacing:-2.268000px;}
.wsc0{word-spacing:-2.244000px;}
.wsf9{word-spacing:-2.205000px;}
.ws12a{word-spacing:-2.160000px;}
.wsb3{word-spacing:-2.142000px;}
.ws60{word-spacing:-2.079000px;}
.ws133{word-spacing:-2.052000px;}
.ws8f{word-spacing:-2.016000px;}
.ws52{word-spacing:-1.953000px;}
.ws83{word-spacing:-1.827000px;}
.wscf{word-spacing:-1.764000px;}
.ws12d{word-spacing:-1.728000px;}
.ws9a{word-spacing:-1.701000px;}
.wsa7{word-spacing:-1.638000px;}
.ws1c{word-spacing:-1.596000px;}
.wsb0{word-spacing:-1.449000px;}
.ws108{word-spacing:-1.404000px;}
.ws8e{word-spacing:-1.386000px;}
.wsa3{word-spacing:-1.323000px;}
.wsc2{word-spacing:-1.275000px;}
.ws62{word-spacing:-1.260000px;}
.ws9b{word-spacing:-1.197000px;}
.ws11c{word-spacing:-1.188000px;}
.wsec{word-spacing:-1.152000px;}
.wsc1{word-spacing:-1.122000px;}
.ws44{word-spacing:-1.071000px;}
.ws85{word-spacing:-1.008000px;}
.ws11e{word-spacing:-0.972000px;}
.wsc3{word-spacing:-0.969000px;}
.wsd0{word-spacing:-0.945000px;}
.ws41{word-spacing:-0.882000px;}
.ws128{word-spacing:-0.864000px;}
.ws74{word-spacing:-0.819000px;}
.wscc{word-spacing:-0.756000px;}
.ws11a{word-spacing:-0.702000px;}
.ws82{word-spacing:-0.693000px;}
.wsad{word-spacing:-0.630000px;}
.ws34{word-spacing:-0.567000px;}
.ws13a{word-spacing:-0.540000px;}
.ws2b{word-spacing:-0.513000px;}
.ws9d{word-spacing:-0.504000px;}
.ws3c{word-spacing:-0.441000px;}
.ws10e{word-spacing:-0.432000px;}
.ws38{word-spacing:-0.378000px;}
.wsba{word-spacing:-0.315000px;}
.ws45{word-spacing:-0.252000px;}
.ws6f{word-spacing:-0.189000px;}
.ws79{word-spacing:-0.126000px;}
.wse1{word-spacing:-0.072000px;}
.ws16{word-spacing:-0.066000px;}
.ws18{word-spacing:-0.063000px;}
.ws17{word-spacing:-0.057000px;}
.ws88{word-spacing:-0.054000px;}
.ws14{word-spacing:-0.051000px;}
.ws8a{word-spacing:-0.048000px;}
.ws93{word-spacing:-0.036729px;}
.ws96{word-spacing:-0.029733px;}
.ws7{word-spacing:-0.006000px;}
.ws6{word-spacing:0.000000px;}
.ws12e{word-spacing:0.054000px;}
.ws53{word-spacing:0.126000px;}
.ws7c{word-spacing:0.189000px;}
.ws120{word-spacing:0.216000px;}
.ws7f{word-spacing:0.252000px;}
.wsea{word-spacing:0.288000px;}
.wsf8{word-spacing:0.315000px;}
.ws23{word-spacing:0.342000px;}
.wsa6{word-spacing:0.378000px;}
.wsc{word-spacing:0.399000px;}
.wsd8{word-spacing:0.441000px;}
.ws48{word-spacing:0.504000px;}
.ws94{word-spacing:0.567000px;}
.ws1e{word-spacing:0.570000px;}
.ws9f{word-spacing:0.630000px;}
.ws130{word-spacing:0.648000px;}
.wsc6{word-spacing:0.663000px;}
.ws67{word-spacing:0.693000px;}
.ws29{word-spacing:0.741000px;}
.ws63{word-spacing:0.756000px;}
.ws25{word-spacing:0.798000px;}
.ws31{word-spacing:0.819000px;}
.wse5{word-spacing:0.864000px;}
.ws42{word-spacing:0.882000px;}
.ws1d{word-spacing:0.912000px;}
.ws2f{word-spacing:0.945000px;}
.ws124{word-spacing:0.972000px;}
.ws32{word-spacing:1.008000px;}
.ws10f{word-spacing:1.026000px;}
.ws73{word-spacing:1.071000px;}
.ws10a{word-spacing:1.080000px;}
.ws4f{word-spacing:1.134000px;}
.wseb{word-spacing:1.152000px;}
.ws55{word-spacing:1.197000px;}
.ws51{word-spacing:1.260000px;}
.ws129{word-spacing:1.296000px;}
.ws84{word-spacing:1.323000px;}
.wsc8{word-spacing:1.377000px;}
.ws103{word-spacing:1.386000px;}
.ws13b{word-spacing:1.404000px;}
.ws4a{word-spacing:1.449000px;}
.wsa8{word-spacing:1.479000px;}
.ws20{word-spacing:1.482000px;}
.wsb1{word-spacing:1.512000px;}
.wscd{word-spacing:1.575000px;}
.wsd2{word-spacing:1.638000px;}
.ws40{word-spacing:1.701000px;}
.ws64{word-spacing:1.764000px;}
.ws123{word-spacing:1.782000px;}
.ws7a{word-spacing:1.827000px;}
.ws11f{word-spacing:1.836000px;}
.wsce{word-spacing:1.890000px;}
.ws28{word-spacing:1.938000px;}
.ws71{word-spacing:1.953000px;}
.ws5c{word-spacing:2.016000px;}
.ws21{word-spacing:2.052000px;}
.wsfc{word-spacing:2.079000px;}
.ws37{word-spacing:2.142000px;}
.ws91{word-spacing:2.205000px;}
.ws92{word-spacing:2.268000px;}
.ws30{word-spacing:2.331000px;}
.ws61{word-spacing:2.394000px;}
.ws11b{word-spacing:2.430000px;}
.ws72{word-spacing:2.457000px;}
.ws12{word-spacing:2.508000px;}
.wsa2{word-spacing:2.520000px;}
.ws136{word-spacing:2.538000px;}
.wsac{word-spacing:2.583000px;}
.ws2c{word-spacing:2.646000px;}
.ws11d{word-spacing:2.700000px;}
.wsc9{word-spacing:2.703000px;}
.ws49{word-spacing:2.709000px;}
.ws11{word-spacing:2.736000px;}
.ws65{word-spacing:2.772000px;}
.ws81{word-spacing:2.835000px;}
.wse{word-spacing:2.850000px;}
.wsa5{word-spacing:2.898000px;}
.wsf7{word-spacing:2.961000px;}
.ws6a{word-spacing:3.024000px;}
.ws97{word-spacing:3.087000px;}
.ws105{word-spacing:3.150000px;}
.ws50{word-spacing:3.213000px;}
.ws1f{word-spacing:3.306000px;}
.ws13d{word-spacing:3.348000px;}
.wsdb{word-spacing:3.402000px;}
.ws77{word-spacing:3.465000px;}
.ws6d{word-spacing:3.591000px;}
.ws26{word-spacing:3.648000px;}
.wsfa{word-spacing:3.654000px;}
.wsaa{word-spacing:3.672000px;}
.ws70{word-spacing:3.717000px;}
.ws2a{word-spacing:3.762000px;}
.ws5a{word-spacing:3.780000px;}
.wsb{word-spacing:3.819000px;}
.wsbe{word-spacing:3.843000px;}
.wse9{word-spacing:3.888000px;}
.ws54{word-spacing:3.906000px;}
.ws59{word-spacing:4.032000px;}
.ws3e{word-spacing:4.095000px;}
.ws6e{word-spacing:4.158000px;}
.ws33{word-spacing:4.221000px;}
.ws5d{word-spacing:4.284000px;}
.ws68{word-spacing:4.347000px;}
.wsc7{word-spacing:4.386000px;}
.wsd6{word-spacing:4.410000px;}
.wscb{word-spacing:4.473000px;}
.wsab{word-spacing:4.536000px;}
.ws3f{word-spacing:4.599000px;}
.wsc5{word-spacing:4.641000px;}
.ws39{word-spacing:4.662000px;}
.ws22{word-spacing:4.674000px;}
.ws8c{word-spacing:4.788000px;}
.ws12f{word-spacing:4.806000px;}
.ws118{word-spacing:4.860000px;}
.wsaf{word-spacing:4.914000px;}
.ws10b{word-spacing:4.968000px;}
.wsd1{word-spacing:4.977000px;}
.ws7e{word-spacing:5.040000px;}
.wse7{word-spacing:5.112000px;}
.wsd7{word-spacing:5.166000px;}
.ws135{word-spacing:5.184000px;}
.wsfd{word-spacing:5.229000px;}
.wsca{word-spacing:5.292000px;}
.ws36{word-spacing:5.355000px;}
.wsf{word-spacing:5.415000px;}
.wsa{word-spacing:5.472000px;}
.wsbc{word-spacing:5.481000px;}
.wsc4{word-spacing:5.508000px;}
.ws6b{word-spacing:5.544000px;}
.ws107{word-spacing:5.562000px;}
.ws47{word-spacing:5.607000px;}
.ws86{word-spacing:5.670000px;}
.wse8{word-spacing:5.688000px;}
.ws2d{word-spacing:5.733000px;}
.ws57{word-spacing:5.796000px;}
.wsbf{word-spacing:5.814000px;}
.wsb4{word-spacing:5.859000px;}
.ws10{word-spacing:5.871000px;}
.ws10d{word-spacing:6.048000px;}
.ws109{word-spacing:6.102000px;}
.wsa9{word-spacing:6.171000px;}
.wsb6{word-spacing:6.174000px;}
.ws78{word-spacing:6.237000px;}
.wsb8{word-spacing:6.300000px;}
.ws10c{word-spacing:6.318000px;}
.ws99{word-spacing:6.363000px;}
.ws69{word-spacing:6.426000px;}
.ws56{word-spacing:6.489000px;}
.ws125{word-spacing:6.534000px;}
.ws131{word-spacing:6.588000px;}
.wsd{word-spacing:6.612000px;}
.ws9c{word-spacing:6.615000px;}
.ws24{word-spacing:6.669000px;}
.wsb2{word-spacing:6.678000px;}
.wsff{word-spacing:6.741000px;}
.ws126{word-spacing:6.750000px;}
.ws27{word-spacing:6.783000px;}
.ws4d{word-spacing:6.804000px;}
.wsfe{word-spacing:6.930000px;}
.ws6c{word-spacing:6.993000px;}
.ws5e{word-spacing:7.056000px;}
.ws98{word-spacing:7.119000px;}
.ws75{word-spacing:7.245000px;}
.wsa4{word-spacing:7.371000px;}
.ws4b{word-spacing:7.434000px;}
.ws121{word-spacing:7.452000px;}
.ws13{word-spacing:7.467000px;}
.ws102{word-spacing:7.497000px;}
.wsfb{word-spacing:7.560000px;}
.ws58{word-spacing:7.686000px;}
.ws4e{word-spacing:7.749000px;}
.ws100{word-spacing:7.875000px;}
.ws122{word-spacing:8.100000px;}
.ws2e{word-spacing:8.127000px;}
.ws80{word-spacing:8.253000px;}
.ws8{word-spacing:8.265000px;}
.ws5b{word-spacing:8.316000px;}
.wsb5{word-spacing:8.379000px;}
.wsbd{word-spacing:8.505000px;}
.wsa0{word-spacing:8.568000px;}
.ws104{word-spacing:8.694000px;}
.ws9{word-spacing:8.721000px;}
.wsb9{word-spacing:8.883000px;}
.ws4c{word-spacing:9.009000px;}
.ws117{word-spacing:9.018000px;}
.ws5f{word-spacing:9.072000px;}
.ws111{word-spacing:9.126000px;}
.ws46{word-spacing:9.261000px;}
.ws138{word-spacing:9.558000px;}
.ws9e{word-spacing:9.639000px;}
.ws12c{word-spacing:9.990000px;}
.wse6{word-spacing:10.008000px;}
.wsda{word-spacing:10.395000px;}
.ws119{word-spacing:10.422000px;}
.ws13c{word-spacing:10.476000px;}
.ws3a{word-spacing:12.096000px;}
.ws110{word-spacing:12.150000px;}
.wsb7{word-spacing:12.348000px;}
.wsae{word-spacing:12.411000px;}
.ws137{word-spacing:15.282000px;}
.ws12b{word-spacing:18.198000px;}
.ws101{word-spacing:20.601000px;}
.ws106{word-spacing:21.798000px;}
.wsf6{word-spacing:27.783000px;}
.ws13e{word-spacing:36.396000px;}
.wsd3{word-spacing:109.137000px;}
.ws89{word-spacing:211.036800px;}
.wsdd{word-spacing:239.786400px;}
.wsef{word-spacing:255.229800px;}
.wsdc{word-spacing:296.790000px;}
.wsd5{word-spacing:298.110600px;}
.wsdf{word-spacing:305.671200px;}
.wsde{word-spacing:322.975200px;}
.wsee{word-spacing:331.263600px;}
.wsf2{word-spacing:338.365800px;}
.wse0{word-spacing:470.959800px;}
.wsf3{word-spacing:516.514200px;}
.wsf0{word-spacing:519.101400px;}
.ws8b{word-spacing:587.169600px;}
.wsf5{word-spacing:587.401200px;}
.wsf4{word-spacing:703.348800px;}
._8{margin-left:-47.250000px;}
._35{margin-left:-15.048600px;}
._54{margin-left:-7.350026px;}
._6{margin-left:-6.295800px;}
._1{margin-left:-5.280000px;}
._3{margin-left:-3.489000px;}
._2{margin-left:-2.097000px;}
._12{margin-left:-1.059600px;}
._5{width:1.063500px;}
._4{width:2.643026px;}
._7{width:3.795000px;}
._14{width:5.045400px;}
._11{width:6.156000px;}
._53{width:7.447200px;}
._f{width:9.186000px;}
._52{width:10.417800px;}
._51{width:12.129000px;}
._50{width:14.509200px;}
._a{width:22.931400px;}
._36{width:29.592000px;}
._55{width:35.464224px;}
._10{width:36.770376px;}
._13{width:39.218490px;}
._9{width:53.539800px;}
._47{width:100.647000px;}
._b{width:115.983600px;}
._29{width:135.034800px;}
._19{width:136.351200px;}
._21{width:156.343800px;}
._18{width:162.990600px;}
._e{width:165.819600px;}
._d{width:167.967600px;}
._2d{width:187.738800px;}
._32{width:202.974600px;}
._1c{width:204.054000px;}
._2e{width:213.721200px;}
._24{width:218.982000px;}
._46{width:224.632200px;}
._1e{width:232.732800px;}
._15{width:236.935200px;}
._3a{width:241.006200px;}
._3f{width:244.368000px;}
._44{width:247.957800px;}
._40{width:253.006200px;}
._1a{width:269.265000px;}
._3b{width:271.210800px;}
._31{width:272.788800px;}
._27{width:281.452800px;}
._16{width:283.714800px;}
._2b{width:286.123800px;}
._28{width:287.676000px;}
._2c{width:290.334000px;}
._3c{width:292.941000px;}
._1d{width:296.226600px;}
._38{width:306.980400px;}
._17{width:310.507800px;}
._2f{width:313.258200px;}
._30{width:315.260400px;}
._22{width:319.516200px;}
._c{width:335.058600px;}
._37{width:338.104800px;}
._2a{width:340.878000px;}
._1f{width:350.338800px;}
._20{width:367.699800px;}
._23{width:368.944800px;}
._26{width:372.813600px;}
._3e{width:378.641400px;}
._33{width:381.896400px;}
._4f{width:388.612800px;}
._25{width:398.577600px;}
._45{width:405.227400px;}
._1b{width:412.125000px;}
._34{width:431.853600px;}
._4b{width:442.014600px;}
._4a{width:449.260800px;}
._48{width:454.544400px;}
._39{width:487.186200px;}
._3d{width:493.809600px;}
._4e{width:507.992400px;}
._49{width:519.063000px;}
._43{width:592.034400px;}
._4c{width:608.089800px;}
._0{width:620.140200px;}
._42{width:651.892200px;}
._41{width:681.265800px;}
._4d{width:771.365400px;}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:29.733000px;}
.fs1{font-size:35.700000px;}
.fsc{font-size:36.729000px;}
.fs4{font-size:37.800000px;}
.fs7{font-size:39.900000px;}
.fsb{font-size:44.100000px;}
.fs5{font-size:48.000000px;}
.fs0{font-size:51.000000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs9{font-size:63.000000px;}
.fs8{font-size:66.000000px;}
.fse{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.fsa{font-size:268.420800px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.070800px;}
.y72{bottom:109.275450px;}
.yf7{bottom:109.275600px;}
.y48{bottom:109.275750px;}
.y22{bottom:109.330200px;}
.y19a{bottom:114.097800px;}
.y19b{bottom:114.114000px;}
.y1e1{bottom:115.594650px;}
.y14b{bottom:124.275750px;}
.y25d{bottom:125.165850px;}
.y22d{bottom:125.490300px;}
.y28b{bottom:125.842050px;}
.y21{bottom:125.988450px;}
.y173{bottom:127.341750px;}
.y99{bottom:127.343100px;}
.yf6{bottom:127.589400px;}
.y71{bottom:128.224500px;}
.y47{bottom:128.472600px;}
.y120{bottom:128.521350px;}
.y199{bottom:129.847800px;}
.y204{bottom:129.917400px;}
.y1e0{bottom:136.854600px;}
.y11f{bottom:139.275750px;}
.y25c{bottom:141.056100px;}
.y22c{bottom:141.704850px;}
.y28a{bottom:142.408500px;}
.y20{bottom:142.646700px;}
.y172{bottom:145.407750px;}
.y98{bottom:145.410750px;}
.yf5{bottom:145.903350px;}
.y70{bottom:147.173400px;}
.y46{bottom:147.669450px;}
.yc2{bottom:148.183800px;}
.y203{bottom:150.559200px;}
.y11e{bottom:154.275750px;}
.y198{bottom:155.988450px;}
.y25b{bottom:156.946350px;}
.y22b{bottom:157.919550px;}
.y1df{bottom:158.111250px;}
.y289{bottom:158.974950px;}
.y1f{bottom:159.304950px;}
.y171{bottom:163.473900px;}
.y97{bottom:163.478400px;}
.y1bb{bottom:163.564950px;}
.yf4{bottom:164.217150px;}
.y6f{bottom:166.122450px;}
.yc1{bottom:166.183800px;}
.y45{bottom:166.866300px;}
.y14a{bottom:169.275750px;}
.y202{bottom:171.201150px;}
.y25a{bottom:172.836600px;}
.y11d{bottom:173.521500px;}
.y22a{bottom:174.134100px;}
.y288{bottom:175.541400px;}
.y1e{bottom:175.963200px;}
.y1de{bottom:179.390550px;}
.y170{bottom:181.539900px;}
.y96{bottom:181.546050px;}
.y1ba{bottom:181.564950px;}
.yf3{bottom:182.530950px;}
.yc0{bottom:184.183800px;}
.y149{bottom:184.275750px;}
.y6e{bottom:185.071500px;}
.y44{bottom:186.063300px;}
.y259{bottom:188.726850px;}
.y197{bottom:190.004250px;}
.y229{bottom:190.348800px;}
.y201{bottom:191.842950px;}
.y287{bottom:192.107850px;}
.y1d{bottom:192.621450px;}
.y1dd{bottom:195.064800px;}
.y148{bottom:199.275750px;}
.y1b9{bottom:199.564950px;}
.y16f{bottom:199.606050px;}
.y123{bottom:199.613700px;}
.yf2{bottom:200.844750px;}
.ybf{bottom:202.183800px;}
.y1dc{bottom:202.939800px;}
.y6d{bottom:204.020400px;}
.y258{bottom:204.617100px;}
.y43{bottom:205.260150px;}
.y11c{bottom:205.535550px;}
.y228{bottom:206.563350px;}
.y286{bottom:208.674150px;}
.y1c{bottom:209.279700px;}
.y1b8{bottom:217.564950px;}
.y16e{bottom:217.672200px;}
.y95{bottom:217.681350px;}
.y147{bottom:218.521500px;}
.yf1{bottom:219.158700px;}
.ybe{bottom:220.183800px;}
.y257{bottom:220.507350px;}
.y227{bottom:222.777900px;}
.y6c{bottom:222.969450px;}
.y11b{bottom:223.931400px;}
.y196{bottom:224.016750px;}
.y42{bottom:224.457000px;}
.y285{bottom:225.240600px;}
.y1b{bottom:225.937950px;}
.y1db{bottom:226.489200px;}
.y146{bottom:229.275600px;}
.y200{bottom:233.126550px;}
.y16d{bottom:235.738200px;}
.y122{bottom:235.749000px;}
.y256{bottom:236.397600px;}
.yf0{bottom:237.472500px;}
.ybd{bottom:238.183800px;}
.y226{bottom:238.992600px;}
.y284{bottom:241.807050px;}
.y6b{bottom:241.918350px;}
.y11a{bottom:242.327250px;}
.y1a{bottom:242.596200px;}
.y41{bottom:243.653850px;}
.y1da{bottom:243.903300px;}
.y145{bottom:244.275600px;}
.y195{bottom:250.177050px;}
.y255{bottom:252.287850px;}
.y1b7{bottom:253.564950px;}
.y16c{bottom:253.804350px;}
.y121{bottom:253.816650px;}
.y225{bottom:255.207300px;}
.yef{bottom:255.786300px;}
.ybc{bottom:256.183800px;}
.y194{bottom:258.035700px;}
.y283{bottom:258.373500px;}
.y19{bottom:259.260600px;}
.y144{bottom:259.275600px;}
.y1d9{bottom:259.653300px;}
.y119{bottom:260.723250px;}
.y6a{bottom:260.867400px;}
.y40{bottom:262.850850px;}
.y254{bottom:268.178100px;}
.y224{bottom:271.421850px;}
.y16b{bottom:271.870500px;}
.y94{bottom:271.884150px;}
.yee{bottom:274.100250px;}
.ybb{bottom:274.183800px;}
.y143{bottom:274.275600px;}
.y282{bottom:274.939950px;}
.y18{bottom:275.924850px;}
.y118{bottom:279.119100px;}
.y1d8{bottom:279.805950px;}
.y69{bottom:279.816300px;}
.y3f{bottom:282.047700px;}
.y253{bottom:284.068350px;}
.y223{bottom:287.636550px;}
.y1d7{bottom:287.680950px;}
.y16a{bottom:289.936500px;}
.y93{bottom:289.951800px;}
.y281{bottom:291.506400px;}
.y193{bottom:292.051500px;}
.yba{bottom:292.183800px;}
.yed{bottom:292.414050px;}
.y17{bottom:292.583100px;}
.y142{bottom:293.521500px;}
.y1ff{bottom:295.052100px;}
.y117{bottom:297.515100px;}
.y68{bottom:298.765350px;}
.y252{bottom:299.958600px;}
.y3e{bottom:301.244550px;}
.y222{bottom:303.851100px;}
.y1b6{bottom:307.564950px;}
.y169{bottom:308.002650px;}
.y92{bottom:308.019450px;}
.y280{bottom:308.072850px;}
.yb9{bottom:310.183800px;}
.yec{bottom:310.727850px;}
.y251{bottom:315.848850px;}
.y116{bottom:315.910950px;}
.y67{bottom:317.714250px;}
.y191{bottom:318.192300px;}
.y192{bottom:318.208500px;}
.y1fe{bottom:318.784350px;}
.y1d6{bottom:319.567500px;}
.y221{bottom:320.065800px;}
.y3d{bottom:320.441550px;}
.y27f{bottom:324.639300px;}
.y141{bottom:325.535550px;}
.y168{bottom:326.068800px;}
.y91{bottom:326.087100px;}
.yb8{bottom:328.183800px;}
.yeb{bottom:329.041650px;}
.y1b5{bottom:329.164950px;}
.y250{bottom:331.739250px;}
.y190{bottom:333.942300px;}
.y115{bottom:334.306800px;}
.y1fd{bottom:334.534350px;}
.y220{bottom:336.280350px;}
.y66{bottom:336.663300px;}
.y3b{bottom:339.638400px;}
.y1d5{bottom:340.846950px;}
.y27e{bottom:341.205750px;}
.y167{bottom:344.134800px;}
.y90{bottom:344.154750px;}
.y140{bottom:344.223750px;}
.yb7{bottom:346.183800px;}
.y16{bottom:346.340400px;}
.yea{bottom:347.355600px;}
.y24f{bottom:347.629500px;}
.y1b4{bottom:350.764950px;}
.y21f{bottom:352.495050px;}
.y114{bottom:352.702800px;}
.y1fc{bottom:352.800150px;}
.y65{bottom:355.612200px;}
.y3c{bottom:357.638400px;}
.y27d{bottom:357.772200px;}
.y18f{bottom:360.079800px;}
.y15{bottom:361.505400px;}
.y1d4{bottom:362.106750px;}
.y166{bottom:362.200950px;}
.y8f{bottom:362.222400px;}
.y13f{bottom:362.912100px;}
.y24e{bottom:363.519750px;}
.yb6{bottom:364.183800px;}
.ye9{bottom:365.669400px;}
.y1fb{bottom:368.550150px;}
.y21e{bottom:368.709600px;}
.y113{bottom:371.098650px;}
.y1b3{bottom:372.364950px;}
.y27c{bottom:374.338650px;}
.y64{bottom:374.561250px;}
.y14{bottom:376.670400px;}
.y24d{bottom:379.410000px;}
.y165{bottom:380.267100px;}
.y8e{bottom:380.290050px;}
.y13e{bottom:381.600300px;}
.yb5{bottom:382.183800px;}
.y1d3{bottom:383.366550px;}
.ye8{bottom:383.983200px;}
.y21d{bottom:384.924300px;}
.y18e{bottom:386.239950px;}
.y1fa{bottom:388.312950px;}
.y112{bottom:389.494500px;}
.y27b{bottom:390.905100px;}
.y63{bottom:393.510150px;}
.y1b2{bottom:393.964950px;}
.y18d{bottom:394.098750px;}
.y24c{bottom:395.300250px;}
.y164{bottom:398.333100px;}
.y8d{bottom:398.357550px;}
.yb4{bottom:400.183800px;}
.y13d{bottom:400.288650px;}
.y21c{bottom:401.138850px;}
.ye7{bottom:402.297150px;}
.y1d2{bottom:404.610150px;}
.y27a{bottom:407.471400px;}
.y111{bottom:407.890500px;}
.y1f9{bottom:408.075750px;}
.y24b{bottom:411.190500px;}
.y62{bottom:412.459200px;}
.y1b1{bottom:415.564950px;}
.y1f8{bottom:415.950750px;}
.y163{bottom:416.399250px;}
.y8c{bottom:416.425350px;}
.y21b{bottom:417.353550px;}
.y3a{bottom:417.632100px;}
.yb3{bottom:418.183800px;}
.y13c{bottom:418.977000px;}
.y18b{bottom:420.255750px;}
.ye6{bottom:420.610950px;}
.y279{bottom:424.038000px;}
.y13{bottom:424.404900px;}
.y1d1{bottom:425.866800px;}
.y110{bottom:426.286350px;}
.y24a{bottom:427.080750px;}
.y18a{bottom:428.114400px;}
.y61{bottom:431.408250px;}
.y21a{bottom:433.568100px;}
.y162{bottom:434.465400px;}
.y8b{bottom:434.492850px;}
.y18c{bottom:436.005750px;}
.yb2{bottom:436.183800px;}
.y1b0{bottom:437.164950px;}
.y13b{bottom:437.665200px;}
.y278{bottom:440.604300px;}
.y12{bottom:441.030900px;}
.y249{bottom:442.971000px;}
.y1f7{bottom:443.588550px;}
.y10f{bottom:444.682200px;}
.y2a8{bottom:446.934750px;}
.y1d0{bottom:447.146100px;}
.y219{bottom:449.782800px;}
.y60{bottom:450.357150px;}
.y161{bottom:452.531400px;}
.y8a{bottom:452.560500px;}
.yb1{bottom:454.183800px;}
.y189{bottom:454.271550px;}
.y13a{bottom:456.353550px;}
.y277{bottom:457.170750px;}
.y11{bottom:457.731900px;}
.y1af{bottom:458.764950px;}
.y248{bottom:458.861250px;}
.ye5{bottom:460.838700px;}
.y188{bottom:462.130200px;}
.y2a7{bottom:462.684750px;}
.y10e{bottom:463.078200px;}
.y1f6{bottom:464.848350px;}
.y218{bottom:465.997350px;}
.y1cf{bottom:468.406050px;}
.y5f{bottom:469.306200px;}
.y160{bottom:470.597550px;}
.y89{bottom:470.628150px;}
.yb0{bottom:472.183800px;}
.y276{bottom:473.737200px;}
.y247{bottom:474.751500px;}
.y139{bottom:475.041750px;}
.y39{bottom:475.222800px;}
.y2a6{bottom:478.434750px;}
.y1ae{bottom:480.364950px;}
.y10d{bottom:481.474050px;}
.y217{bottom:482.212050px;}
.y1f5{bottom:486.091950px;}
.y5e{bottom:488.255100px;}
.y15f{bottom:488.663700px;}
.y88{bottom:488.695800px;}
.y1ce{bottom:489.665850px;}
.yaf{bottom:490.183800px;}
.y275{bottom:490.303650px;}
.y246{bottom:490.641750px;}
.y10{bottom:491.060400px;}
.y38{bottom:492.919650px;}
.y138{bottom:493.730100px;}
.y2a5{bottom:494.184750px;}
.y187{bottom:496.142700px;}
.y10c{bottom:499.869900px;}
.y1ad{bottom:501.964950px;}
.ye4{bottom:503.035050px;}
.y245{bottom:506.532000px;}
.y15e{bottom:506.729700px;}
.y87{bottom:506.763450px;}
.y274{bottom:506.870100px;}
.y5d{bottom:507.204150px;}
.y1f4{bottom:507.348600px;}
.yf{bottom:507.686400px;}
.yae{bottom:508.183800px;}
.y2a4{bottom:509.934750px;}
.y1cd{bottom:510.925650px;}
.y137{bottom:512.418300px;}
.y216{bottom:516.891300px;}
.y10b{bottom:518.265900px;}
.ye3{bottom:518.785050px;}
.y185{bottom:522.283500px;}
.y244{bottom:522.422250px;}
.y273{bottom:523.436550px;}
.y1ac{bottom:523.564950px;}
.ye{bottom:524.387400px;}
.y15d{bottom:524.795850px;}
.y86{bottom:524.831100px;}
.y2a3{bottom:525.684750px;}
.y5c{bottom:526.153050px;}
.yad{bottom:526.183800px;}
.y37{bottom:528.313500px;}
.y1f3{bottom:528.627900px;}
.y184{bottom:530.158500px;}
.y1cc{bottom:530.966250px;}
.y136{bottom:531.106650px;}
.ye0{bottom:531.704400px;}
.y10a{bottom:536.661750px;}
.y186{bottom:538.033500px;}
.y243{bottom:538.312500px;}
.y272{bottom:540.003000px;}
.y2a2{bottom:541.434750px;}
.y15c{bottom:542.862000px;}
.y85{bottom:542.898750px;}
.yac{bottom:544.183800px;}
.y5b{bottom:545.102100px;}
.y1ab{bottom:545.164950px;}
.y36{bottom:546.010350px;}
.ydf{bottom:547.454400px;}
.y135{bottom:549.794850px;}
.y1f2{bottom:549.887700px;}
.y1cb{bottom:551.007000px;}
.y242{bottom:554.202750px;}
.y109{bottom:555.057750px;}
.y271{bottom:556.569450px;}
.y2a1{bottom:557.184750px;}
.yd{bottom:557.715900px;}
.y84{bottom:560.966400px;}
.yde{bottom:561.629400px;}
.yab{bottom:562.183800px;}
.y183{bottom:563.465550px;}
.y35{bottom:563.707200px;}
.y5a{bottom:564.051150px;}
.y1aa{bottom:566.764950px;}
.y134{bottom:568.483200px;}
.ye2{bottom:569.504400px;}
.y241{bottom:570.093000px;}
.y1f1{bottom:571.147500px;}
.y1ca{bottom:572.266800px;}
.y215{bottom:572.285100px;}
.y2a0{bottom:572.934750px;}
.y15b{bottom:572.994150px;}
.y270{bottom:573.135900px;}
.y108{bottom:573.453600px;}
.yc{bottom:574.341900px;}
.ydd{bottom:577.379400px;}
.y83{bottom:579.033900px;}
.yaa{bottom:580.183800px;}
.y34{bottom:581.404200px;}
.y59{bottom:583.000050px;}
.ye1{bottom:585.254400px;}
.y240{bottom:585.983250px;}
.y133{bottom:587.171400px;}
.y1a9{bottom:588.364950px;}
.y29f{bottom:588.684750px;}
.y26f{bottom:589.702350px;}
.y214{bottom:590.749800px;}
.yb{bottom:591.042900px;}
.y107{bottom:591.849450px;}
.y1f0{bottom:592.407450px;}
.ydc{bottom:593.129400px;}
.y1c9{bottom:593.526600px;}
.y82{bottom:597.101550px;}
.ya9{bottom:598.183800px;}
.y33{bottom:599.101050px;}
.y182{bottom:601.432500px;}
.y23f{bottom:601.873500px;}
.y58{bottom:601.948950px;}
.y29e{bottom:604.434750px;}
.y132{bottom:605.859750px;}
.y26e{bottom:606.268800px;}
.y213{bottom:609.214350px;}
.y106{bottom:610.245450px;}
.y1c8{bottom:611.580450px;}
.y1ef{bottom:613.667250px;}
.y81{bottom:615.169350px;}
.y15a{bottom:615.192450px;}
.ya8{bottom:616.183800px;}
.y32{bottom:616.797900px;}
.y23e{bottom:617.763750px;}
.yd9{bottom:618.968250px;}
.y1c7{bottom:619.455450px;}
.y29d{bottom:620.184750px;}
.y181{bottom:620.415900px;}
.y57{bottom:620.898000px;}
.y26d{bottom:622.835100px;}
.ya{bottom:624.371400px;}
.y131{bottom:624.548100px;}
.y212{bottom:627.679050px;}
.y105{bottom:628.641300px;}
.y80{bottom:633.236850px;}
.y159{bottom:633.258450px;}
.y23d{bottom:633.654000px;}
.ya7{bottom:634.183800px;}
.y31{bottom:634.494900px;}
.yd8{bottom:634.718250px;}
.y1ee{bottom:634.910850px;}
.y29c{bottom:635.934750px;}
.y1a8{bottom:638.262150px;}
.y180{bottom:639.399300px;}
.y26c{bottom:639.401700px;}
.y56{bottom:639.847050px;}
.ydb{bottom:642.593250px;}
.y130{bottom:643.236300px;}
.y1c6{bottom:645.384150px;}
.y211{bottom:646.143750px;}
.y104{bottom:647.037300px;}
.y23c{bottom:649.544250px;}
.yd7{bottom:650.468250px;}
.y7f{bottom:651.304500px;}
.y158{bottom:651.324600px;}
.y9{bottom:651.534900px;}
.y29b{bottom:651.684750px;}
.ya6{bottom:652.183800px;}
.y30{bottom:652.191750px;}
.y26b{bottom:655.968000px;}
.y1ed{bottom:656.170650px;}
.yda{bottom:658.343250px;}
.y17f{bottom:658.382700px;}
.y55{bottom:658.795950px;}
.y12f{bottom:661.924650px;}
.y1a5{bottom:664.402950px;}
.y1a7{bottom:664.419150px;}
.y210{bottom:664.608300px;}
.y1c5{bottom:665.274300px;}
.y103{bottom:665.433150px;}
.y23b{bottom:665.434500px;}
.yd6{bottom:666.218250px;}
.y29a{bottom:667.434750px;}
.y7e{bottom:669.372150px;}
.y157{bottom:669.390600px;}
.y2f{bottom:669.888600px;}
.ya5{bottom:670.183800px;}
.y26a{bottom:672.534450px;}
.y17e{bottom:677.366100px;}
.y1ec{bottom:677.446800px;}
.y54{bottom:677.745000px;}
.y8{bottom:678.699900px;}
.y1a4{bottom:680.152950px;}
.y1a6{bottom:680.169150px;}
.y12e{bottom:680.612850px;}
.y23a{bottom:681.324900px;}
.yd5{bottom:681.968250px;}
.y20f{bottom:683.073000px;}
.y299{bottom:683.184750px;}
.y102{bottom:683.829000px;}
.yd4{bottom:684.184500px;}
.y1c4{bottom:685.164450px;}
.y7d{bottom:687.439800px;}
.y156{bottom:687.456750px;}
.y2e{bottom:687.585450px;}
.ya4{bottom:688.183800px;}
.y269{bottom:689.100900px;}
.y17d{bottom:696.349500px;}
.y53{bottom:696.693900px;}
.y239{bottom:697.215150px;}
.y1a3{bottom:698.418600px;}
.y1eb{bottom:698.706600px;}
.y298{bottom:698.934750px;}
.y12d{bottom:699.301050px;}
.y20e{bottom:701.537550px;}
.y101{bottom:702.224850px;}
.y2d{bottom:705.282300px;}
.y7c{bottom:705.507450px;}
.y155{bottom:705.522900px;}
.y268{bottom:705.667350px;}
.ya3{bottom:706.183800px;}
.y1c3{bottom:709.162950px;}
.yd1{bottom:712.854000px;}
.y238{bottom:713.105400px;}
.y1a2{bottom:714.168600px;}
.y297{bottom:714.684750px;}
.y17c{bottom:715.332900px;}
.y52{bottom:715.642950px;}
.y1c2{bottom:717.037950px;}
.y12c{bottom:717.989400px;}
.y1ea{bottom:719.966550px;}
.y20d{bottom:720.002250px;}
.y100{bottom:720.620850px;}
.yd3{bottom:720.729000px;}
.y267{bottom:722.233800px;}
.y2c{bottom:722.979300px;}
.y7b{bottom:723.575100px;}
.y154{bottom:723.588900px;}
.ya2{bottom:724.183800px;}
.yd0{bottom:728.604000px;}
.y237{bottom:728.995650px;}
.y296{bottom:730.434750px;}
.y7{bottom:733.028400px;}
.y17b{bottom:734.316450px;}
.y51{bottom:734.591850px;}
.yd2{bottom:736.479000px;}
.y12b{bottom:736.677750px;}
.y20c{bottom:738.466800px;}
.y266{bottom:738.800250px;}
.yff{bottom:739.016700px;}
.y1a1{bottom:740.306100px;}
.y2b{bottom:740.676150px;}
.y1e9{bottom:741.226350px;}
.y7a{bottom:741.642750px;}
.y153{bottom:741.655050px;}
.ya1{bottom:742.183800px;}
.ycf{bottom:744.354000px;}
.y236{bottom:744.885900px;}
.y295{bottom:746.184750px;}
.y1c1{bottom:748.924500px;}
.y17a{bottom:753.299850px;}
.y50{bottom:753.540900px;}
.y12a{bottom:755.365950px;}
.y265{bottom:755.366700px;}
.y20b{bottom:756.931500px;}
.yfe{bottom:757.412550px;}
.y2a{bottom:758.373000px;}
.y79{bottom:759.710250px;}
.y152{bottom:759.721200px;}
.ya0{bottom:760.183800px;}
.y6{bottom:760.191900px;}
.y235{bottom:760.776150px;}
.y294{bottom:761.934750px;}
.y1e8{bottom:762.486150px;}
.y1a0{bottom:766.450200px;}
.y1c0{bottom:770.203800px;}
.yce{bottom:771.029550px;}
.y264{bottom:771.933150px;}
.y179{bottom:772.283250px;}
.y4f{bottom:772.489800px;}
.y129{bottom:774.054300px;}
.y20a{bottom:775.396050px;}
.yfd{bottom:775.808550px;}
.y234{bottom:776.666400px;}
.y293{bottom:777.684750px;}
.y78{bottom:777.777900px;}
.y151{bottom:777.787200px;}
.y9f{bottom:778.183800px;}
.ycb{bottom:778.904550px;}
.y19f{bottom:782.200200px;}
.y1e7{bottom:783.745950px;}
.yc9{bottom:786.779550px;}
.y5{bottom:787.356900px;}
.y263{bottom:788.499600px;}
.y178{bottom:791.266650px;}
.y4e{bottom:791.438850px;}
.y1bf{bottom:791.463750px;}
.y233{bottom:792.556650px;}
.y128{bottom:792.742500px;}
.y292{bottom:793.434750px;}
.y209{bottom:793.860750px;}
.yfc{bottom:794.204400px;}
.yc8{bottom:794.654550px;}
.y77{bottom:795.845550px;}
.y150{bottom:795.853350px;}
.y9e{bottom:796.183800px;}
.ycc{bottom:802.529550px;}
.y1e6{bottom:805.005750px;}
.y262{bottom:805.066050px;}
.y19e{bottom:808.341000px;}
.y232{bottom:808.446900px;}
.y291{bottom:809.184750px;}
.y177{bottom:810.250050px;}
.y4d{bottom:810.387750px;}
.yca{bottom:810.404550px;}
.y127{bottom:811.430700px;}
.y29{bottom:811.463700px;}
.y208{bottom:812.325300px;}
.yfb{bottom:812.600250px;}
.y1be{bottom:812.723550px;}
.y76{bottom:813.913200px;}
.y14f{bottom:813.919500px;}
.y9d{bottom:814.183800px;}
.y4{bottom:814.520400px;}
.ycd{bottom:818.279550px;}
.y261{bottom:821.632350px;}
.y231{bottom:824.337150px;}
.y290{bottom:824.934750px;}
.y1e5{bottom:826.265700px;}
.y28{bottom:829.160550px;}
.y176{bottom:829.233600px;}
.y4c{bottom:829.336800px;}
.y126{bottom:830.119050px;}
.y207{bottom:830.790000px;}
.yfa{bottom:830.996100px;}
.y75{bottom:831.980850px;}
.y14e{bottom:831.985500px;}
.y9c{bottom:832.183800px;}
.y1bd{bottom:833.983500px;}
.yc7{bottom:835.994850px;}
.y260{bottom:838.198950px;}
.y230{bottom:840.227400px;}
.y28f{bottom:840.684750px;}
.y19d{bottom:842.356650px;}
.yc5{bottom:843.869850px;}
.y1e4{bottom:847.525500px;}
.y175{bottom:848.217000px;}
.y4b{bottom:848.285850px;}
.y125{bottom:848.807250px;}
.y206{bottom:849.254550px;}
.yf9{bottom:849.392100px;}
.y74{bottom:850.048500px;}
.y14d{bottom:850.051650px;}
.y9b{bottom:850.183800px;}
.yc4{bottom:851.744850px;}
.y25f{bottom:854.765400px;}
.y1bc{bottom:855.223800px;}
.y22f{bottom:856.117650px;}
.y28e{bottom:856.434750px;}
.y1e3{bottom:866.446800px;}
.y174{bottom:867.200400px;}
.y4a{bottom:867.234900px;}
.yc6{bottom:867.494850px;}
.y124{bottom:867.495600px;}
.y205{bottom:867.719250px;}
.yf8{bottom:867.787950px;}
.y73{bottom:868.116150px;}
.y14c{bottom:868.117800px;}
.y9a{bottom:868.183800px;}
.y27{bottom:869.654250px;}
.y25e{bottom:871.331700px;}
.y22e{bottom:872.007900px;}
.y28d{bottom:872.184750px;}
.y19c{bottom:876.369300px;}
.y1e2{bottom:884.067300px;}
.y49{bottom:886.183800px;}
.y26{bottom:887.351100px;}
.yc3{bottom:887.898150px;}
.y28c{bottom:887.934750px;}
.y25{bottom:914.081850px;}
.y3{bottom:924.524400px;}
.y24{bottom:927.581850px;}
.y23{bottom:941.081850px;}
.y2{bottom:941.938500px;}
.h14{height:29.324400px;}
.h11{height:29.325000px;}
.h13{height:29.631000px;}
.h16{height:30.528000px;}
.h1e{height:34.322400px;}
.h7{height:43.584000px;}
.h18{height:43.872000px;}
.hf{height:44.736000px;}
.h12{height:46.308000px;}
.h2{height:46.614000px;}
.h3{height:49.032000px;}
.h6{height:49.356000px;}
.h1f{height:50.328000px;}
.h1c{height:51.264000px;}
.h9{height:51.756000px;}
.h8{height:53.124000px;}
.hc{height:57.204000px;}
.hd{height:57.582000px;}
.ha{height:58.716000px;}
.h1b{height:63.545400px;}
.h1a{height:63.546000px;}
.h10{height:75.084000px;}
.h17{height:75.148800px;}
.h15{height:75.149400px;}
.h1d{height:75.372000px;}
.he{height:76.236000px;}
.h4{height:87.168000px;}
.h5{height:87.744000px;}
.h19{height:106.648800px;}
.hb{height:243.726086px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x4{left:91.324800px;}
.x1{left:93.543300px;}
.x27{left:102.130800px;}
.x3d{left:103.179450px;}
.x39{left:104.470950px;}
.x33{left:106.126500px;}
.x3c{left:107.626800px;}
.x2d{left:110.470800px;}
.x6{left:114.803100px;}
.x31{left:117.298650px;}
.x7{left:122.678100px;}
.x38{left:123.796500px;}
.x4b{left:129.251550px;}
.x30{left:130.636650px;}
.x3{left:131.813100px;}
.x25{left:133.804650px;}
.x5{left:136.083450px;}
.x55{left:138.455250px;}
.x3a{left:139.462500px;}
.x3e{left:141.796350px;}
.x20{left:143.394750px;}
.x4e{left:144.442800px;}
.x47{left:145.497600px;}
.x48{left:146.997600px;}
.x4d{left:151.618950px;}
.x2{left:153.070800px;}
.x5c{left:156.065250px;}
.x4a{left:164.284800px;}
.x4c{left:165.622800px;}
.x53{left:169.409250px;}
.x5e{left:171.065100px;}
.x62{left:180.904950px;}
.x58{left:182.674800px;}
.x8{left:183.826350px;}
.x59{left:189.514800px;}
.x51{left:197.074950px;}
.x52{left:200.728650px;}
.x37{left:207.902100px;}
.x5b{left:211.564350px;}
.x5d{left:213.238650px;}
.x5a{left:216.562350px;}
.x50{left:218.074500px;}
.x3f{left:223.854150px;}
.x40{left:227.755200px;}
.x1f{left:238.016400px;}
.x9{left:240.331950px;}
.x26{left:241.488450px;}
.x28{left:242.706300px;}
.xe{left:244.340100px;}
.x19{left:246.829950px;}
.x17{left:249.338100px;}
.x1e{left:254.335950px;}
.x18{left:256.675950px;}
.x3b{left:267.679350px;}
.x42{left:269.252550px;}
.x35{left:276.235200px;}
.x57{left:281.977500px;}
.x2f{left:284.581350px;}
.x49{left:286.094850px;}
.x44{left:288.086400px;}
.x24{left:290.905350px;}
.x54{left:291.938850px;}
.x46{left:293.102850px;}
.x56{left:299.438850px;}
.x45{left:301.411650px;}
.x60{left:311.251950px;}
.x43{left:321.247950px;}
.x4f{left:324.073500px;}
.x61{left:328.741650px;}
.x41{left:333.073650px;}
.xc{left:336.749250px;}
.x5f{left:340.423650px;}
.xa{left:342.755250px;}
.xb{left:344.255250px;}
.x11{left:345.257250px;}
.x10{left:347.591250px;}
.x1b{left:350.087250px;}
.x1a{left:352.253100px;}
.xf{left:356.255100px;}
.x32{left:371.865150px;}
.x21{left:376.670250px;}
.x36{left:389.294400px;}
.x2a{left:393.356850px;}
.x34{left:397.070100px;}
.x29{left:400.514550px;}
.x2e{left:402.464550px;}
.x64{left:405.894450px;}
.x65{left:422.394150px;}
.xd{left:440.255100px;}
.x1c{left:442.421100px;}
.x12{left:446.248950px;}
.x67{left:464.231700px;}
.x63{left:470.573850px;}
.x66{left:488.231400px;}
.x14{left:517.923300px;}
.x13{left:524.582850px;}
.x1d{left:530.085000px;}
.x16{left:533.097150px;}
.x23{left:537.937950px;}
.x15{left:548.090850px;}
.x22{left:563.275800px;}
.x2c{left:568.165950px;}
.x2b{left:573.283800px;}
@media print{
.v4{vertical-align:-18.648533pt;}
.v5{vertical-align:-15.096000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.348800pt;}
.v3{vertical-align:18.647467pt;}
.v2{vertical-align:28.000000pt;}
.v6{vertical-align:29.348800pt;}
.v1{vertical-align:128.000000pt;}
.ls4{letter-spacing:-4.682667pt;}
.ls1e{letter-spacing:-1.024000pt;}
.ls20{letter-spacing:-0.853333pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.560000pt;}
.ls1c{letter-spacing:-0.448000pt;}
.ls1d{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.000533pt;}
.ls50{letter-spacing:0.064533pt;}
.ls31{letter-spacing:0.205867pt;}
.ls9{letter-spacing:0.497067pt;}
.ls39{letter-spacing:0.576000pt;}
.ls3a{letter-spacing:0.577920pt;}
.ls38{letter-spacing:0.578133pt;}
.ls37{letter-spacing:0.578667pt;}
.ls36{letter-spacing:0.579200pt;}
.ls51{letter-spacing:0.589867pt;}
.ls34{letter-spacing:0.618240pt;}
.ls35{letter-spacing:0.619200pt;}
.ls33{letter-spacing:0.619733pt;}
.ls32{letter-spacing:0.624000pt;}
.ls8{letter-spacing:0.788800pt;}
.ls3c{letter-spacing:1.108800pt;}
.ls3b{letter-spacing:1.109333pt;}
.ls3d{letter-spacing:1.109867pt;}
.ls4d{letter-spacing:1.128533pt;}
.lsf{letter-spacing:1.499733pt;}
.ls23{letter-spacing:1.507200pt;}
.ls3f{letter-spacing:1.573333pt;}
.ls26{letter-spacing:1.676267pt;}
.ls11{letter-spacing:1.705600pt;}
.ls60{letter-spacing:1.776000pt;}
.ls63{letter-spacing:1.784160pt;}
.ls61{letter-spacing:1.785600pt;}
.ls62{letter-spacing:1.786133pt;}
.ls2b{letter-spacing:1.820800pt;}
.ls52{letter-spacing:2.034133pt;}
.ls2f{letter-spacing:2.158933pt;}
.ls5f{letter-spacing:2.232533pt;}
.ls4e{letter-spacing:2.392533pt;}
.ls4a{letter-spacing:2.404800pt;}
.ls47{letter-spacing:2.637867pt;}
.ls48{letter-spacing:2.638400pt;}
.ls28{letter-spacing:2.675200pt;}
.ls44{letter-spacing:3.033067pt;}
.ls43{letter-spacing:3.033600pt;}
.ls45{letter-spacing:3.502400pt;}
.ls46{letter-spacing:3.502933pt;}
.ls41{letter-spacing:3.648000pt;}
.ls42{letter-spacing:3.648533pt;}
.ls16{letter-spacing:3.908267pt;}
.ls4b{letter-spacing:4.396267pt;}
.ls65{letter-spacing:4.408000pt;}
.ls5e{letter-spacing:4.609600pt;}
.ls5b{letter-spacing:4.628800pt;}
.ls2{letter-spacing:4.868267pt;}
.ls27{letter-spacing:4.932267pt;}
.ls30{letter-spacing:4.937067pt;}
.ls66{letter-spacing:4.960000pt;}
.ls2a{letter-spacing:5.390933pt;}
.ls5c{letter-spacing:5.869333pt;}
.ls53{letter-spacing:6.199467pt;}
.ls54{letter-spacing:6.200000pt;}
.ls55{letter-spacing:7.140267pt;}
.ls56{letter-spacing:7.140800pt;}
.ls4c{letter-spacing:7.177067pt;}
.ls3e{letter-spacing:7.208533pt;}
.ls0{letter-spacing:7.362667pt;}
.ls1{letter-spacing:7.765333pt;}
.ls58{letter-spacing:7.846400pt;}
.ls57{letter-spacing:7.846933pt;}
.ls40{letter-spacing:8.539733pt;}
.ls4f{letter-spacing:8.897600pt;}
.ls2e{letter-spacing:9.272000pt;}
.ls64{letter-spacing:9.311467pt;}
.ls2c{letter-spacing:10.786667pt;}
.ls59{letter-spacing:11.560533pt;}
.ls5a{letter-spacing:11.561067pt;}
.ls29{letter-spacing:12.306133pt;}
.ls12{letter-spacing:34.000000pt;}
.ls7{letter-spacing:96.784000pt;}
.ls5{letter-spacing:260.472000pt;}
.ls19{letter-spacing:398.318400pt;}
.ls2d{letter-spacing:399.608533pt;}
.ls49{letter-spacing:400.606400pt;}
.ls24{letter-spacing:400.723733pt;}
.ls21{letter-spacing:402.483733pt;}
.ls5d{letter-spacing:403.070400pt;}
.ls6{letter-spacing:403.598400pt;}
.ls14{letter-spacing:404.888533pt;}
.ls15{letter-spacing:405.886400pt;}
.ls22{letter-spacing:406.003200pt;}
.lse{letter-spacing:406.003733pt;}
.ls25{letter-spacing:406.589867pt;}
.lsc{letter-spacing:407.763733pt;}
.ls17{letter-spacing:408.349867pt;}
.ls1f{letter-spacing:409.054400pt;}
.lsd{letter-spacing:411.283200pt;}
.ls10{letter-spacing:411.869867pt;}
.lsb{letter-spacing:414.333867pt;}
.ls1a{letter-spacing:423.081600pt;}
.lsa{letter-spacing:475.110400pt;}
.ws19{word-spacing:-59.649067pt;}
.ws3{word-spacing:-21.333333pt;}
.wse4{word-spacing:-14.656000pt;}
.wse2{word-spacing:-14.528000pt;}
.wse3{word-spacing:-14.016000pt;}
.ws1b{word-spacing:-14.000000pt;}
.ws132{word-spacing:-13.776000pt;}
.ws95{word-spacing:-13.440000pt;}
.ws4{word-spacing:-12.666667pt;}
.ws112{word-spacing:-12.624000pt;}
.ws114{word-spacing:-12.576000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.333333pt;}
.wsd4{word-spacing:-10.666667pt;}
.ws134{word-spacing:-10.184160pt;}
.wsf1{word-spacing:-9.813333pt;}
.ws1a{word-spacing:-9.800000pt;}
.ws116{word-spacing:-9.508800pt;}
.ws113{word-spacing:-9.018240pt;}
.ws115{word-spacing:-8.977920pt;}
.ws5{word-spacing:-8.866667pt;}
.ws15{word-spacing:-8.400000pt;}
.ws1{word-spacing:-7.933333pt;}
.ws7b{word-spacing:-3.752000pt;}
.wsd9{word-spacing:-2.856000pt;}
.ws76{word-spacing:-2.800000pt;}
.wsed{word-spacing:-2.744000pt;}
.ws43{word-spacing:-2.688000pt;}
.ws3b{word-spacing:-2.632000pt;}
.ws87{word-spacing:-2.576000pt;}
.ws35{word-spacing:-2.520000pt;}
.wsa1{word-spacing:-2.408000pt;}
.wsbb{word-spacing:-2.296000pt;}
.ws90{word-spacing:-2.240000pt;}
.ws127{word-spacing:-2.208000pt;}
.ws66{word-spacing:-2.184000pt;}
.ws139{word-spacing:-2.160000pt;}
.ws8d{word-spacing:-2.128000pt;}
.ws3d{word-spacing:-2.072000pt;}
.ws7d{word-spacing:-2.016000pt;}
.wsc0{word-spacing:-1.994667pt;}
.wsf9{word-spacing:-1.960000pt;}
.ws12a{word-spacing:-1.920000pt;}
.wsb3{word-spacing:-1.904000pt;}
.ws60{word-spacing:-1.848000pt;}
.ws133{word-spacing:-1.824000pt;}
.ws8f{word-spacing:-1.792000pt;}
.ws52{word-spacing:-1.736000pt;}
.ws83{word-spacing:-1.624000pt;}
.wscf{word-spacing:-1.568000pt;}
.ws12d{word-spacing:-1.536000pt;}
.ws9a{word-spacing:-1.512000pt;}
.wsa7{word-spacing:-1.456000pt;}
.ws1c{word-spacing:-1.418667pt;}
.wsb0{word-spacing:-1.288000pt;}
.ws108{word-spacing:-1.248000pt;}
.ws8e{word-spacing:-1.232000pt;}
.wsa3{word-spacing:-1.176000pt;}
.wsc2{word-spacing:-1.133333pt;}
.ws62{word-spacing:-1.120000pt;}
.ws9b{word-spacing:-1.064000pt;}
.ws11c{word-spacing:-1.056000pt;}
.wsec{word-spacing:-1.024000pt;}
.wsc1{word-spacing:-0.997333pt;}
.ws44{word-spacing:-0.952000pt;}
.ws85{word-spacing:-0.896000pt;}
.ws11e{word-spacing:-0.864000pt;}
.wsc3{word-spacing:-0.861333pt;}
.wsd0{word-spacing:-0.840000pt;}
.ws41{word-spacing:-0.784000pt;}
.ws128{word-spacing:-0.768000pt;}
.ws74{word-spacing:-0.728000pt;}
.wscc{word-spacing:-0.672000pt;}
.ws11a{word-spacing:-0.624000pt;}
.ws82{word-spacing:-0.616000pt;}
.wsad{word-spacing:-0.560000pt;}
.ws34{word-spacing:-0.504000pt;}
.ws13a{word-spacing:-0.480000pt;}
.ws2b{word-spacing:-0.456000pt;}
.ws9d{word-spacing:-0.448000pt;}
.ws3c{word-spacing:-0.392000pt;}
.ws10e{word-spacing:-0.384000pt;}
.ws38{word-spacing:-0.336000pt;}
.wsba{word-spacing:-0.280000pt;}
.ws45{word-spacing:-0.224000pt;}
.ws6f{word-spacing:-0.168000pt;}
.ws79{word-spacing:-0.112000pt;}
.wse1{word-spacing:-0.064000pt;}
.ws16{word-spacing:-0.058667pt;}
.ws18{word-spacing:-0.056000pt;}
.ws17{word-spacing:-0.050667pt;}
.ws88{word-spacing:-0.048000pt;}
.ws14{word-spacing:-0.045333pt;}
.ws8a{word-spacing:-0.042667pt;}
.ws93{word-spacing:-0.032648pt;}
.ws96{word-spacing:-0.026429pt;}
.ws7{word-spacing:-0.005333pt;}
.ws6{word-spacing:0.000000pt;}
.ws12e{word-spacing:0.048000pt;}
.ws53{word-spacing:0.112000pt;}
.ws7c{word-spacing:0.168000pt;}
.ws120{word-spacing:0.192000pt;}
.ws7f{word-spacing:0.224000pt;}
.wsea{word-spacing:0.256000pt;}
.wsf8{word-spacing:0.280000pt;}
.ws23{word-spacing:0.304000pt;}
.wsa6{word-spacing:0.336000pt;}
.wsc{word-spacing:0.354667pt;}
.wsd8{word-spacing:0.392000pt;}
.ws48{word-spacing:0.448000pt;}
.ws94{word-spacing:0.504000pt;}
.ws1e{word-spacing:0.506667pt;}
.ws9f{word-spacing:0.560000pt;}
.ws130{word-spacing:0.576000pt;}
.wsc6{word-spacing:0.589333pt;}
.ws67{word-spacing:0.616000pt;}
.ws29{word-spacing:0.658667pt;}
.ws63{word-spacing:0.672000pt;}
.ws25{word-spacing:0.709333pt;}
.ws31{word-spacing:0.728000pt;}
.wse5{word-spacing:0.768000pt;}
.ws42{word-spacing:0.784000pt;}
.ws1d{word-spacing:0.810667pt;}
.ws2f{word-spacing:0.840000pt;}
.ws124{word-spacing:0.864000pt;}
.ws32{word-spacing:0.896000pt;}
.ws10f{word-spacing:0.912000pt;}
.ws73{word-spacing:0.952000pt;}
.ws10a{word-spacing:0.960000pt;}
.ws4f{word-spacing:1.008000pt;}
.wseb{word-spacing:1.024000pt;}
.ws55{word-spacing:1.064000pt;}
.ws51{word-spacing:1.120000pt;}
.ws129{word-spacing:1.152000pt;}
.ws84{word-spacing:1.176000pt;}
.wsc8{word-spacing:1.224000pt;}
.ws103{word-spacing:1.232000pt;}
.ws13b{word-spacing:1.248000pt;}
.ws4a{word-spacing:1.288000pt;}
.wsa8{word-spacing:1.314667pt;}
.ws20{word-spacing:1.317333pt;}
.wsb1{word-spacing:1.344000pt;}
.wscd{word-spacing:1.400000pt;}
.wsd2{word-spacing:1.456000pt;}
.ws40{word-spacing:1.512000pt;}
.ws64{word-spacing:1.568000pt;}
.ws123{word-spacing:1.584000pt;}
.ws7a{word-spacing:1.624000pt;}
.ws11f{word-spacing:1.632000pt;}
.wsce{word-spacing:1.680000pt;}
.ws28{word-spacing:1.722667pt;}
.ws71{word-spacing:1.736000pt;}
.ws5c{word-spacing:1.792000pt;}
.ws21{word-spacing:1.824000pt;}
.wsfc{word-spacing:1.848000pt;}
.ws37{word-spacing:1.904000pt;}
.ws91{word-spacing:1.960000pt;}
.ws92{word-spacing:2.016000pt;}
.ws30{word-spacing:2.072000pt;}
.ws61{word-spacing:2.128000pt;}
.ws11b{word-spacing:2.160000pt;}
.ws72{word-spacing:2.184000pt;}
.ws12{word-spacing:2.229333pt;}
.wsa2{word-spacing:2.240000pt;}
.ws136{word-spacing:2.256000pt;}
.wsac{word-spacing:2.296000pt;}
.ws2c{word-spacing:2.352000pt;}
.ws11d{word-spacing:2.400000pt;}
.wsc9{word-spacing:2.402667pt;}
.ws49{word-spacing:2.408000pt;}
.ws11{word-spacing:2.432000pt;}
.ws65{word-spacing:2.464000pt;}
.ws81{word-spacing:2.520000pt;}
.wse{word-spacing:2.533333pt;}
.wsa5{word-spacing:2.576000pt;}
.wsf7{word-spacing:2.632000pt;}
.ws6a{word-spacing:2.688000pt;}
.ws97{word-spacing:2.744000pt;}
.ws105{word-spacing:2.800000pt;}
.ws50{word-spacing:2.856000pt;}
.ws1f{word-spacing:2.938667pt;}
.ws13d{word-spacing:2.976000pt;}
.wsdb{word-spacing:3.024000pt;}
.ws77{word-spacing:3.080000pt;}
.ws6d{word-spacing:3.192000pt;}
.ws26{word-spacing:3.242667pt;}
.wsfa{word-spacing:3.248000pt;}
.wsaa{word-spacing:3.264000pt;}
.ws70{word-spacing:3.304000pt;}
.ws2a{word-spacing:3.344000pt;}
.ws5a{word-spacing:3.360000pt;}
.wsb{word-spacing:3.394667pt;}
.wsbe{word-spacing:3.416000pt;}
.wse9{word-spacing:3.456000pt;}
.ws54{word-spacing:3.472000pt;}
.ws59{word-spacing:3.584000pt;}
.ws3e{word-spacing:3.640000pt;}
.ws6e{word-spacing:3.696000pt;}
.ws33{word-spacing:3.752000pt;}
.ws5d{word-spacing:3.808000pt;}
.ws68{word-spacing:3.864000pt;}
.wsc7{word-spacing:3.898667pt;}
.wsd6{word-spacing:3.920000pt;}
.wscb{word-spacing:3.976000pt;}
.wsab{word-spacing:4.032000pt;}
.ws3f{word-spacing:4.088000pt;}
.wsc5{word-spacing:4.125333pt;}
.ws39{word-spacing:4.144000pt;}
.ws22{word-spacing:4.154667pt;}
.ws8c{word-spacing:4.256000pt;}
.ws12f{word-spacing:4.272000pt;}
.ws118{word-spacing:4.320000pt;}
.wsaf{word-spacing:4.368000pt;}
.ws10b{word-spacing:4.416000pt;}
.wsd1{word-spacing:4.424000pt;}
.ws7e{word-spacing:4.480000pt;}
.wse7{word-spacing:4.544000pt;}
.wsd7{word-spacing:4.592000pt;}
.ws135{word-spacing:4.608000pt;}
.wsfd{word-spacing:4.648000pt;}
.wsca{word-spacing:4.704000pt;}
.ws36{word-spacing:4.760000pt;}
.wsf{word-spacing:4.813333pt;}
.wsa{word-spacing:4.864000pt;}
.wsbc{word-spacing:4.872000pt;}
.wsc4{word-spacing:4.896000pt;}
.ws6b{word-spacing:4.928000pt;}
.ws107{word-spacing:4.944000pt;}
.ws47{word-spacing:4.984000pt;}
.ws86{word-spacing:5.040000pt;}
.wse8{word-spacing:5.056000pt;}
.ws2d{word-spacing:5.096000pt;}
.ws57{word-spacing:5.152000pt;}
.wsbf{word-spacing:5.168000pt;}
.wsb4{word-spacing:5.208000pt;}
.ws10{word-spacing:5.218667pt;}
.ws10d{word-spacing:5.376000pt;}
.ws109{word-spacing:5.424000pt;}
.wsa9{word-spacing:5.485333pt;}
.wsb6{word-spacing:5.488000pt;}
.ws78{word-spacing:5.544000pt;}
.wsb8{word-spacing:5.600000pt;}
.ws10c{word-spacing:5.616000pt;}
.ws99{word-spacing:5.656000pt;}
.ws69{word-spacing:5.712000pt;}
.ws56{word-spacing:5.768000pt;}
.ws125{word-spacing:5.808000pt;}
.ws131{word-spacing:5.856000pt;}
.wsd{word-spacing:5.877333pt;}
.ws9c{word-spacing:5.880000pt;}
.ws24{word-spacing:5.928000pt;}
.wsb2{word-spacing:5.936000pt;}
.wsff{word-spacing:5.992000pt;}
.ws126{word-spacing:6.000000pt;}
.ws27{word-spacing:6.029333pt;}
.ws4d{word-spacing:6.048000pt;}
.wsfe{word-spacing:6.160000pt;}
.ws6c{word-spacing:6.216000pt;}
.ws5e{word-spacing:6.272000pt;}
.ws98{word-spacing:6.328000pt;}
.ws75{word-spacing:6.440000pt;}
.wsa4{word-spacing:6.552000pt;}
.ws4b{word-spacing:6.608000pt;}
.ws121{word-spacing:6.624000pt;}
.ws13{word-spacing:6.637333pt;}
.ws102{word-spacing:6.664000pt;}
.wsfb{word-spacing:6.720000pt;}
.ws58{word-spacing:6.832000pt;}
.ws4e{word-spacing:6.888000pt;}
.ws100{word-spacing:7.000000pt;}
.ws122{word-spacing:7.200000pt;}
.ws2e{word-spacing:7.224000pt;}
.ws80{word-spacing:7.336000pt;}
.ws8{word-spacing:7.346667pt;}
.ws5b{word-spacing:7.392000pt;}
.wsb5{word-spacing:7.448000pt;}
.wsbd{word-spacing:7.560000pt;}
.wsa0{word-spacing:7.616000pt;}
.ws104{word-spacing:7.728000pt;}
.ws9{word-spacing:7.752000pt;}
.wsb9{word-spacing:7.896000pt;}
.ws4c{word-spacing:8.008000pt;}
.ws117{word-spacing:8.016000pt;}
.ws5f{word-spacing:8.064000pt;}
.ws111{word-spacing:8.112000pt;}
.ws46{word-spacing:8.232000pt;}
.ws138{word-spacing:8.496000pt;}
.ws9e{word-spacing:8.568000pt;}
.ws12c{word-spacing:8.880000pt;}
.wse6{word-spacing:8.896000pt;}
.wsda{word-spacing:9.240000pt;}
.ws119{word-spacing:9.264000pt;}
.ws13c{word-spacing:9.312000pt;}
.ws3a{word-spacing:10.752000pt;}
.ws110{word-spacing:10.800000pt;}
.wsb7{word-spacing:10.976000pt;}
.wsae{word-spacing:11.032000pt;}
.ws137{word-spacing:13.584000pt;}
.ws12b{word-spacing:16.176000pt;}
.ws101{word-spacing:18.312000pt;}
.ws106{word-spacing:19.376000pt;}
.wsf6{word-spacing:24.696000pt;}
.ws13e{word-spacing:32.352000pt;}
.wsd3{word-spacing:97.010667pt;}
.ws89{word-spacing:187.588267pt;}
.wsdd{word-spacing:213.143467pt;}
.wsef{word-spacing:226.870933pt;}
.wsdc{word-spacing:263.813333pt;}
.wsd5{word-spacing:264.987200pt;}
.wsdf{word-spacing:271.707733pt;}
.wsde{word-spacing:287.089067pt;}
.wsee{word-spacing:294.456533pt;}
.wsf2{word-spacing:300.769600pt;}
.wse0{word-spacing:418.630933pt;}
.wsf3{word-spacing:459.123733pt;}
.wsf0{word-spacing:461.423467pt;}
.ws8b{word-spacing:521.928533pt;}
.wsf5{word-spacing:522.134400pt;}
.wsf4{word-spacing:625.198933pt;}
._8{margin-left:-42.000000pt;}
._35{margin-left:-13.376533pt;}
._54{margin-left:-6.533357pt;}
._6{margin-left:-5.596267pt;}
._1{margin-left:-4.693333pt;}
._3{margin-left:-3.101333pt;}
._2{margin-left:-1.864000pt;}
._12{margin-left:-0.941867pt;}
._5{width:0.945333pt;}
._4{width:2.349357pt;}
._7{width:3.373333pt;}
._14{width:4.484800pt;}
._11{width:5.472000pt;}
._53{width:6.619733pt;}
._f{width:8.165333pt;}
._52{width:9.260267pt;}
._51{width:10.781333pt;}
._50{width:12.897067pt;}
._a{width:20.383467pt;}
._36{width:26.304000pt;}
._55{width:31.523755pt;}
._10{width:32.684779pt;}
._13{width:34.860880pt;}
._9{width:47.590933pt;}
._47{width:89.464000pt;}
._b{width:103.096533pt;}
._29{width:120.030933pt;}
._19{width:121.201067pt;}
._21{width:138.972267pt;}
._18{width:144.880533pt;}
._e{width:147.395200pt;}
._d{width:149.304533pt;}
._2d{width:166.878933pt;}
._32{width:180.421867pt;}
._1c{width:181.381333pt;}
._2e{width:189.974400pt;}
._24{width:194.650667pt;}
._46{width:199.673067pt;}
._1e{width:206.873600pt;}
._15{width:210.609067pt;}
._3a{width:214.227733pt;}
._3f{width:217.216000pt;}
._44{width:220.406933pt;}
._40{width:224.894400pt;}
._1a{width:239.346667pt;}
._3b{width:241.076267pt;}
._31{width:242.478933pt;}
._27{width:250.180267pt;}
._16{width:252.190933pt;}
._2b{width:254.332267pt;}
._28{width:255.712000pt;}
._2c{width:258.074667pt;}
._3c{width:260.392000pt;}
._1d{width:263.312533pt;}
._38{width:272.871467pt;}
._17{width:276.006933pt;}
._2f{width:278.451733pt;}
._30{width:280.231467pt;}
._22{width:284.014400pt;}
._c{width:297.829867pt;}
._37{width:300.537600pt;}
._2a{width:303.002667pt;}
._1f{width:311.412267pt;}
._20{width:326.844267pt;}
._23{width:327.950933pt;}
._26{width:331.389867pt;}
._3e{width:336.570133pt;}
._33{width:339.463467pt;}
._4f{width:345.433600pt;}
._25{width:354.291200pt;}
._45{width:360.202133pt;}
._1b{width:366.333333pt;}
._34{width:383.869867pt;}
._4b{width:392.901867pt;}
._4a{width:399.342933pt;}
._48{width:404.039467pt;}
._39{width:433.054400pt;}
._3d{width:438.941867pt;}
._4e{width:451.548800pt;}
._49{width:461.389333pt;}
._43{width:526.252800pt;}
._4c{width:540.524267pt;}
._0{width:551.235733pt;}
._42{width:579.459733pt;}
._41{width:605.569600pt;}
._4d{width:685.658133pt;}
.fsd{font-size:26.429333pt;}
.fs1{font-size:31.733333pt;}
.fsc{font-size:32.648000pt;}
.fs4{font-size:33.600000pt;}
.fs7{font-size:35.466667pt;}
.fsb{font-size:39.200000pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:45.333333pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs9{font-size:56.000000pt;}
.fs8{font-size:58.666667pt;}
.fse{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.fsa{font-size:238.596267pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.062933pt;}
.y72{bottom:97.133733pt;}
.yf7{bottom:97.133867pt;}
.y48{bottom:97.134000pt;}
.y22{bottom:97.182400pt;}
.y19a{bottom:101.420267pt;}
.y19b{bottom:101.434667pt;}
.y1e1{bottom:102.750800pt;}
.y14b{bottom:110.467333pt;}
.y25d{bottom:111.258533pt;}
.y22d{bottom:111.546933pt;}
.y28b{bottom:111.859600pt;}
.y21{bottom:111.989733pt;}
.y173{bottom:113.192667pt;}
.y99{bottom:113.193867pt;}
.yf6{bottom:113.412800pt;}
.y71{bottom:113.977333pt;}
.y47{bottom:114.197867pt;}
.y120{bottom:114.241200pt;}
.y199{bottom:115.420267pt;}
.y204{bottom:115.482133pt;}
.y1e0{bottom:121.648533pt;}
.y11f{bottom:123.800667pt;}
.y25c{bottom:125.383200pt;}
.y22c{bottom:125.959867pt;}
.y28a{bottom:126.585333pt;}
.y20{bottom:126.797067pt;}
.y172{bottom:129.251333pt;}
.y98{bottom:129.254000pt;}
.yf5{bottom:129.691867pt;}
.y70{bottom:130.820800pt;}
.y46{bottom:131.261733pt;}
.yc2{bottom:131.718933pt;}
.y203{bottom:133.830400pt;}
.y11e{bottom:137.134000pt;}
.y198{bottom:138.656400pt;}
.y25b{bottom:139.507867pt;}
.y22b{bottom:140.372933pt;}
.y1df{bottom:140.543333pt;}
.y289{bottom:141.311067pt;}
.y1f{bottom:141.604400pt;}
.y171{bottom:145.310133pt;}
.y97{bottom:145.314133pt;}
.y1bb{bottom:145.391067pt;}
.yf4{bottom:145.970800pt;}
.y6f{bottom:147.664400pt;}
.yc1{bottom:147.718933pt;}
.y45{bottom:148.325600pt;}
.y14a{bottom:150.467333pt;}
.y202{bottom:152.178800pt;}
.y25a{bottom:153.632533pt;}
.y11d{bottom:154.241333pt;}
.y22a{bottom:154.785867pt;}
.y288{bottom:156.036800pt;}
.y1e{bottom:156.411733pt;}
.y1de{bottom:159.458267pt;}
.y170{bottom:161.368800pt;}
.y96{bottom:161.374267pt;}
.y1ba{bottom:161.391067pt;}
.yf3{bottom:162.249733pt;}
.yc0{bottom:163.718933pt;}
.y149{bottom:163.800667pt;}
.y6e{bottom:164.508000pt;}
.y44{bottom:165.389600pt;}
.y259{bottom:167.757200pt;}
.y197{bottom:168.892667pt;}
.y229{bottom:169.198933pt;}
.y201{bottom:170.527067pt;}
.y287{bottom:170.762533pt;}
.y1d{bottom:171.219067pt;}
.y1dd{bottom:173.390933pt;}
.y148{bottom:177.134000pt;}
.y1b9{bottom:177.391067pt;}
.y16f{bottom:177.427600pt;}
.y123{bottom:177.434400pt;}
.yf2{bottom:178.528667pt;}
.ybf{bottom:179.718933pt;}
.y1dc{bottom:180.390933pt;}
.y6d{bottom:181.351467pt;}
.y258{bottom:181.881867pt;}
.y43{bottom:182.453467pt;}
.y11c{bottom:182.698267pt;}
.y228{bottom:183.611867pt;}
.y286{bottom:185.488133pt;}
.y1c{bottom:186.026400pt;}
.y1b8{bottom:193.391067pt;}
.y16e{bottom:193.486400pt;}
.y95{bottom:193.494533pt;}
.y147{bottom:194.241333pt;}
.yf1{bottom:194.807733pt;}
.ybe{bottom:195.718933pt;}
.y257{bottom:196.006533pt;}
.y227{bottom:198.024800pt;}
.y6c{bottom:198.195067pt;}
.y11b{bottom:199.050133pt;}
.y196{bottom:199.126000pt;}
.y42{bottom:199.517333pt;}
.y285{bottom:200.213867pt;}
.y1b{bottom:200.833733pt;}
.y1db{bottom:201.323733pt;}
.y146{bottom:203.800533pt;}
.y200{bottom:207.223600pt;}
.y16d{bottom:209.545067pt;}
.y122{bottom:209.554667pt;}
.y256{bottom:210.131200pt;}
.yf0{bottom:211.086667pt;}
.ybd{bottom:211.718933pt;}
.y226{bottom:212.437867pt;}
.y284{bottom:214.939600pt;}
.y6b{bottom:215.038533pt;}
.y11a{bottom:215.402000pt;}
.y1a{bottom:215.641067pt;}
.y41{bottom:216.581200pt;}
.y1da{bottom:216.802933pt;}
.y145{bottom:217.133867pt;}
.y195{bottom:222.379600pt;}
.y255{bottom:224.255867pt;}
.y1b7{bottom:225.391067pt;}
.y16c{bottom:225.603867pt;}
.y121{bottom:225.614800pt;}
.y225{bottom:226.850933pt;}
.yef{bottom:227.365600pt;}
.ybc{bottom:227.718933pt;}
.y194{bottom:229.365067pt;}
.y283{bottom:229.665333pt;}
.y19{bottom:230.453867pt;}
.y144{bottom:230.467200pt;}
.y1d9{bottom:230.802933pt;}
.y119{bottom:231.754000pt;}
.y6a{bottom:231.882133pt;}
.y40{bottom:233.645200pt;}
.y254{bottom:238.380533pt;}
.y224{bottom:241.263867pt;}
.y16b{bottom:241.662667pt;}
.y94{bottom:241.674800pt;}
.yee{bottom:243.644667pt;}
.ybb{bottom:243.718933pt;}
.y143{bottom:243.800533pt;}
.y282{bottom:244.391067pt;}
.y18{bottom:245.266533pt;}
.y118{bottom:248.105867pt;}
.y1d8{bottom:248.716400pt;}
.y69{bottom:248.725600pt;}
.y3f{bottom:250.709067pt;}
.y253{bottom:252.505200pt;}
.y223{bottom:255.676933pt;}
.y1d7{bottom:255.716400pt;}
.y16a{bottom:257.721333pt;}
.y93{bottom:257.734933pt;}
.y281{bottom:259.116800pt;}
.y193{bottom:259.601333pt;}
.yba{bottom:259.718933pt;}
.yed{bottom:259.923600pt;}
.y17{bottom:260.073867pt;}
.y142{bottom:260.908000pt;}
.y1ff{bottom:262.268533pt;}
.y117{bottom:264.457867pt;}
.y68{bottom:265.569200pt;}
.y252{bottom:266.629867pt;}
.y3e{bottom:267.772933pt;}
.y222{bottom:270.089867pt;}
.y1b6{bottom:273.391067pt;}
.y169{bottom:273.780133pt;}
.y92{bottom:273.795067pt;}
.y280{bottom:273.842533pt;}
.yb9{bottom:275.718933pt;}
.yec{bottom:276.202533pt;}
.y251{bottom:280.754533pt;}
.y116{bottom:280.809733pt;}
.y67{bottom:282.412667pt;}
.y191{bottom:282.837600pt;}
.y192{bottom:282.852000pt;}
.y1fe{bottom:283.363867pt;}
.y1d6{bottom:284.060000pt;}
.y221{bottom:284.502933pt;}
.y3d{bottom:284.836933pt;}
.y27f{bottom:288.568267pt;}
.y141{bottom:289.364933pt;}
.y168{bottom:289.838933pt;}
.y91{bottom:289.855200pt;}
.yb8{bottom:291.718933pt;}
.yeb{bottom:292.481467pt;}
.y1b5{bottom:292.591067pt;}
.y250{bottom:294.879333pt;}
.y190{bottom:296.837600pt;}
.y115{bottom:297.161600pt;}
.y1fd{bottom:297.363867pt;}
.y220{bottom:298.915867pt;}
.y66{bottom:299.256267pt;}
.y3b{bottom:301.900800pt;}
.y1d5{bottom:302.975067pt;}
.y27e{bottom:303.294000pt;}
.y167{bottom:305.897600pt;}
.y90{bottom:305.915333pt;}
.y140{bottom:305.976667pt;}
.yb7{bottom:307.718933pt;}
.y16{bottom:307.858133pt;}
.yea{bottom:308.760533pt;}
.y24f{bottom:309.004000pt;}
.y1b4{bottom:311.791067pt;}
.y21f{bottom:313.328933pt;}
.y114{bottom:313.513600pt;}
.y1fc{bottom:313.600133pt;}
.y65{bottom:316.099733pt;}
.y3c{bottom:317.900800pt;}
.y27d{bottom:318.019733pt;}
.y18f{bottom:320.070933pt;}
.y15{bottom:321.338133pt;}
.y1d4{bottom:321.872667pt;}
.y166{bottom:321.956400pt;}
.y8f{bottom:321.975467pt;}
.y13f{bottom:322.588533pt;}
.y24e{bottom:323.128667pt;}
.yb6{bottom:323.718933pt;}
.ye9{bottom:325.039467pt;}
.y1fb{bottom:327.600133pt;}
.y21e{bottom:327.741867pt;}
.y113{bottom:329.865467pt;}
.y1b3{bottom:330.991067pt;}
.y27c{bottom:332.745467pt;}
.y64{bottom:332.943333pt;}
.y14{bottom:334.818133pt;}
.y24d{bottom:337.253333pt;}
.y165{bottom:338.015200pt;}
.y8e{bottom:338.035600pt;}
.y13e{bottom:339.200267pt;}
.yb5{bottom:339.718933pt;}
.y1d3{bottom:340.770267pt;}
.ye8{bottom:341.318400pt;}
.y21d{bottom:342.154933pt;}
.y18e{bottom:343.324400pt;}
.y1fa{bottom:345.167067pt;}
.y112{bottom:346.217333pt;}
.y27b{bottom:347.471200pt;}
.y63{bottom:349.786800pt;}
.y1b2{bottom:350.191067pt;}
.y18d{bottom:350.310000pt;}
.y24c{bottom:351.378000pt;}
.y164{bottom:354.073867pt;}
.y8d{bottom:354.095600pt;}
.yb4{bottom:355.718933pt;}
.y13d{bottom:355.812133pt;}
.y21c{bottom:356.567867pt;}
.ye7{bottom:357.597467pt;}
.y1d2{bottom:359.653467pt;}
.y27a{bottom:362.196800pt;}
.y111{bottom:362.569333pt;}
.y1f9{bottom:362.734000pt;}
.y24b{bottom:365.502667pt;}
.y62{bottom:366.630400pt;}
.y1b1{bottom:369.391067pt;}
.y1f8{bottom:369.734000pt;}
.y163{bottom:370.132667pt;}
.y8c{bottom:370.155867pt;}
.y21b{bottom:370.980933pt;}
.y3a{bottom:371.228533pt;}
.yb3{bottom:371.718933pt;}
.y13c{bottom:372.424000pt;}
.y18b{bottom:373.560667pt;}
.ye6{bottom:373.876400pt;}
.y279{bottom:376.922667pt;}
.y13{bottom:377.248800pt;}
.y1d1{bottom:378.548267pt;}
.y110{bottom:378.921200pt;}
.y24a{bottom:379.627333pt;}
.y18a{bottom:380.546133pt;}
.y61{bottom:383.474000pt;}
.y21a{bottom:385.393867pt;}
.y162{bottom:386.191467pt;}
.y8b{bottom:386.215867pt;}
.y18c{bottom:387.560667pt;}
.yb2{bottom:387.718933pt;}
.y1b0{bottom:388.591067pt;}
.y13b{bottom:389.035733pt;}
.y278{bottom:391.648267pt;}
.y12{bottom:392.027467pt;}
.y249{bottom:393.752000pt;}
.y1f7{bottom:394.300933pt;}
.y10f{bottom:395.273067pt;}
.y2a8{bottom:397.275333pt;}
.y1d0{bottom:397.463200pt;}
.y219{bottom:399.806933pt;}
.y60{bottom:400.317467pt;}
.y161{bottom:402.250133pt;}
.y8a{bottom:402.276000pt;}
.yb1{bottom:403.718933pt;}
.y189{bottom:403.796933pt;}
.y13a{bottom:405.647600pt;}
.y277{bottom:406.374000pt;}
.y11{bottom:406.872800pt;}
.y1af{bottom:407.791067pt;}
.y248{bottom:407.876667pt;}
.ye5{bottom:409.634400pt;}
.y188{bottom:410.782400pt;}
.y2a7{bottom:411.275333pt;}
.y10e{bottom:411.625067pt;}
.y1f6{bottom:413.198533pt;}
.y218{bottom:414.219867pt;}
.y1cf{bottom:416.360933pt;}
.y5f{bottom:417.161067pt;}
.y160{bottom:418.308933pt;}
.y89{bottom:418.336133pt;}
.yb0{bottom:419.718933pt;}
.y276{bottom:421.099733pt;}
.y247{bottom:422.001333pt;}
.y139{bottom:422.259333pt;}
.y39{bottom:422.420267pt;}
.y2a6{bottom:425.275333pt;}
.y1ae{bottom:426.991067pt;}
.y10d{bottom:427.976933pt;}
.y217{bottom:428.632933pt;}
.y1f5{bottom:432.081733pt;}
.y5e{bottom:434.004533pt;}
.y15f{bottom:434.367733pt;}
.y88{bottom:434.396267pt;}
.y1ce{bottom:435.258533pt;}
.yaf{bottom:435.718933pt;}
.y275{bottom:435.825467pt;}
.y246{bottom:436.126000pt;}
.y10{bottom:436.498133pt;}
.y38{bottom:438.150800pt;}
.y138{bottom:438.871200pt;}
.y2a5{bottom:439.275333pt;}
.y187{bottom:441.015733pt;}
.y10c{bottom:444.328800pt;}
.y1ad{bottom:446.191067pt;}
.ye4{bottom:447.142267pt;}
.y245{bottom:450.250667pt;}
.y15e{bottom:450.426400pt;}
.y87{bottom:450.456400pt;}
.y274{bottom:450.551200pt;}
.y5d{bottom:450.848133pt;}
.y1f4{bottom:450.976533pt;}
.yf{bottom:451.276800pt;}
.yae{bottom:451.718933pt;}
.y2a4{bottom:453.275333pt;}
.y1cd{bottom:454.156133pt;}
.y137{bottom:455.482933pt;}
.y216{bottom:459.458933pt;}
.y10b{bottom:460.680800pt;}
.ye3{bottom:461.142267pt;}
.y185{bottom:464.252000pt;}
.y244{bottom:464.375333pt;}
.y273{bottom:465.276933pt;}
.y1ac{bottom:465.391067pt;}
.ye{bottom:466.122133pt;}
.y15d{bottom:466.485200pt;}
.y86{bottom:466.516533pt;}
.y2a3{bottom:467.275333pt;}
.y5c{bottom:467.691600pt;}
.yad{bottom:467.718933pt;}
.y37{bottom:469.612000pt;}
.y1f3{bottom:469.891467pt;}
.y184{bottom:471.252000pt;}
.y1cc{bottom:471.970000pt;}
.y136{bottom:472.094800pt;}
.ye0{bottom:472.626133pt;}
.y10a{bottom:477.032667pt;}
.y186{bottom:478.252000pt;}
.y243{bottom:478.500000pt;}
.y272{bottom:480.002667pt;}
.y2a2{bottom:481.275333pt;}
.y15c{bottom:482.544000pt;}
.y85{bottom:482.576667pt;}
.yac{bottom:483.718933pt;}
.y5b{bottom:484.535200pt;}
.y1ab{bottom:484.591067pt;}
.y36{bottom:485.342533pt;}
.ydf{bottom:486.626133pt;}
.y135{bottom:488.706533pt;}
.y1f2{bottom:488.789067pt;}
.y1cb{bottom:489.784000pt;}
.y242{bottom:492.624667pt;}
.y109{bottom:493.384667pt;}
.y271{bottom:494.728400pt;}
.y2a1{bottom:495.275333pt;}
.yd{bottom:495.747467pt;}
.y84{bottom:498.636800pt;}
.yde{bottom:499.226133pt;}
.yab{bottom:499.718933pt;}
.y183{bottom:500.858267pt;}
.y35{bottom:501.073067pt;}
.y5a{bottom:501.378800pt;}
.y1aa{bottom:503.791067pt;}
.y134{bottom:505.318400pt;}
.ye2{bottom:506.226133pt;}
.y241{bottom:506.749333pt;}
.y1f1{bottom:507.686667pt;}
.y1ca{bottom:508.681600pt;}
.y215{bottom:508.697867pt;}
.y2a0{bottom:509.275333pt;}
.y15b{bottom:509.328133pt;}
.y270{bottom:509.454133pt;}
.y108{bottom:509.736533pt;}
.yc{bottom:510.526133pt;}
.ydd{bottom:513.226133pt;}
.y83{bottom:514.696800pt;}
.yaa{bottom:515.718933pt;}
.y34{bottom:516.803733pt;}
.y59{bottom:518.222267pt;}
.ye1{bottom:520.226133pt;}
.y240{bottom:520.874000pt;}
.y133{bottom:521.930133pt;}
.y1a9{bottom:522.991067pt;}
.y29f{bottom:523.275333pt;}
.y26f{bottom:524.179867pt;}
.y214{bottom:525.110933pt;}
.yb{bottom:525.371467pt;}
.y107{bottom:526.088400pt;}
.y1f0{bottom:526.584400pt;}
.ydc{bottom:527.226133pt;}
.y1c9{bottom:527.579200pt;}
.y82{bottom:530.756933pt;}
.ya9{bottom:531.718933pt;}
.y33{bottom:532.534267pt;}
.y182{bottom:534.606667pt;}
.y23f{bottom:534.998667pt;}
.y58{bottom:535.065733pt;}
.y29e{bottom:537.275333pt;}
.y132{bottom:538.542000pt;}
.y26e{bottom:538.905600pt;}
.y213{bottom:541.523867pt;}
.y106{bottom:542.440400pt;}
.y1c8{bottom:543.627067pt;}
.y1ef{bottom:545.482000pt;}
.y81{bottom:546.817200pt;}
.y15a{bottom:546.837733pt;}
.ya8{bottom:547.718933pt;}
.y32{bottom:548.264800pt;}
.y23e{bottom:549.123333pt;}
.yd9{bottom:550.194000pt;}
.y1c7{bottom:550.627067pt;}
.y29d{bottom:551.275333pt;}
.y181{bottom:551.480800pt;}
.y57{bottom:551.909333pt;}
.y26d{bottom:553.631200pt;}
.ya{bottom:554.996800pt;}
.y131{bottom:555.153867pt;}
.y212{bottom:557.936933pt;}
.y105{bottom:558.792267pt;}
.y80{bottom:562.877200pt;}
.y159{bottom:562.896400pt;}
.y23d{bottom:563.248000pt;}
.ya7{bottom:563.718933pt;}
.y31{bottom:563.995467pt;}
.yd8{bottom:564.194000pt;}
.y1ee{bottom:564.365200pt;}
.y29c{bottom:565.275333pt;}
.y1a8{bottom:567.344133pt;}
.y180{bottom:568.354933pt;}
.y26c{bottom:568.357067pt;}
.y56{bottom:568.752933pt;}
.ydb{bottom:571.194000pt;}
.y130{bottom:571.765600pt;}
.y1c6{bottom:573.674800pt;}
.y211{bottom:574.350000pt;}
.y104{bottom:575.144267pt;}
.y23c{bottom:577.372667pt;}
.yd7{bottom:578.194000pt;}
.y7f{bottom:578.937333pt;}
.y158{bottom:578.955200pt;}
.y9{bottom:579.142133pt;}
.y29b{bottom:579.275333pt;}
.ya6{bottom:579.718933pt;}
.y30{bottom:579.726000pt;}
.y26b{bottom:583.082667pt;}
.y1ed{bottom:583.262800pt;}
.yda{bottom:585.194000pt;}
.y17f{bottom:585.229067pt;}
.y55{bottom:585.596400pt;}
.y12f{bottom:588.377467pt;}
.y1a5{bottom:590.580400pt;}
.y1a7{bottom:590.594800pt;}
.y210{bottom:590.762933pt;}
.y1c5{bottom:591.354933pt;}
.y103{bottom:591.496133pt;}
.y23b{bottom:591.497333pt;}
.yd6{bottom:592.194000pt;}
.y29a{bottom:593.275333pt;}
.y7e{bottom:594.997467pt;}
.y157{bottom:595.013867pt;}
.y2f{bottom:595.456533pt;}
.ya5{bottom:595.718933pt;}
.y26a{bottom:597.808400pt;}
.y17e{bottom:602.103200pt;}
.y1ec{bottom:602.174933pt;}
.y54{bottom:602.440000pt;}
.y8{bottom:603.288800pt;}
.y1a4{bottom:604.580400pt;}
.y1a6{bottom:604.594800pt;}
.y12e{bottom:604.989200pt;}
.y23a{bottom:605.622133pt;}
.yd5{bottom:606.194000pt;}
.y20f{bottom:607.176000pt;}
.y299{bottom:607.275333pt;}
.y102{bottom:607.848000pt;}
.yd4{bottom:608.164000pt;}
.y1c4{bottom:609.035067pt;}
.y7d{bottom:611.057600pt;}
.y156{bottom:611.072667pt;}
.y2e{bottom:611.187067pt;}
.ya4{bottom:611.718933pt;}
.y269{bottom:612.534133pt;}
.y17d{bottom:618.977333pt;}
.y53{bottom:619.283467pt;}
.y239{bottom:619.746800pt;}
.y1a3{bottom:620.816533pt;}
.y1eb{bottom:621.072533pt;}
.y298{bottom:621.275333pt;}
.y12d{bottom:621.600933pt;}
.y20e{bottom:623.588933pt;}
.y101{bottom:624.199867pt;}
.y2d{bottom:626.917600pt;}
.y7c{bottom:627.117733pt;}
.y155{bottom:627.131467pt;}
.y268{bottom:627.259867pt;}
.ya3{bottom:627.718933pt;}
.y1c3{bottom:630.367067pt;}
.yd1{bottom:633.648000pt;}
.y238{bottom:633.871467pt;}
.y1a2{bottom:634.816533pt;}
.y297{bottom:635.275333pt;}
.y17c{bottom:635.851467pt;}
.y52{bottom:636.127067pt;}
.y1c2{bottom:637.367067pt;}
.y12c{bottom:638.212800pt;}
.y1ea{bottom:639.970267pt;}
.y20d{bottom:640.002000pt;}
.y100{bottom:640.551867pt;}
.yd3{bottom:640.648000pt;}
.y267{bottom:641.985600pt;}
.y2c{bottom:642.648267pt;}
.y7b{bottom:643.177867pt;}
.y154{bottom:643.190133pt;}
.ya2{bottom:643.718933pt;}
.yd0{bottom:647.648000pt;}
.y237{bottom:647.996133pt;}
.y296{bottom:649.275333pt;}
.y7{bottom:651.580800pt;}
.y17b{bottom:652.725733pt;}
.y51{bottom:652.970533pt;}
.yd2{bottom:654.648000pt;}
.y12b{bottom:654.824667pt;}
.y20c{bottom:656.414933pt;}
.y266{bottom:656.711333pt;}
.yff{bottom:656.903733pt;}
.y1a1{bottom:658.049867pt;}
.y2b{bottom:658.378800pt;}
.y1e9{bottom:658.867867pt;}
.y7a{bottom:659.238000pt;}
.y153{bottom:659.248933pt;}
.ya1{bottom:659.718933pt;}
.ycf{bottom:661.648000pt;}
.y236{bottom:662.120800pt;}
.y295{bottom:663.275333pt;}
.y1c1{bottom:665.710667pt;}
.y17a{bottom:669.599867pt;}
.y50{bottom:669.814133pt;}
.y12a{bottom:671.436400pt;}
.y265{bottom:671.437067pt;}
.y20b{bottom:672.828000pt;}
.yfe{bottom:673.255600pt;}
.y2a{bottom:674.109333pt;}
.y79{bottom:675.298000pt;}
.y152{bottom:675.307733pt;}
.ya0{bottom:675.718933pt;}
.y6{bottom:675.726133pt;}
.y235{bottom:676.245467pt;}
.y294{bottom:677.275333pt;}
.y1e8{bottom:677.765467pt;}
.y1a0{bottom:681.289067pt;}
.y1c0{bottom:684.625600pt;}
.yce{bottom:685.359600pt;}
.y264{bottom:686.162800pt;}
.y179{bottom:686.474000pt;}
.y4f{bottom:686.657600pt;}
.y129{bottom:688.048267pt;}
.y20a{bottom:689.240933pt;}
.yfd{bottom:689.607600pt;}
.y234{bottom:690.370133pt;}
.y293{bottom:691.275333pt;}
.y78{bottom:691.358133pt;}
.y151{bottom:691.366400pt;}
.y9f{bottom:691.718933pt;}
.ycb{bottom:692.359600pt;}
.y19f{bottom:695.289067pt;}
.y1e7{bottom:696.663067pt;}
.yc9{bottom:699.359600pt;}
.y5{bottom:699.872800pt;}
.y263{bottom:700.888533pt;}
.y178{bottom:703.348133pt;}
.y4e{bottom:703.501200pt;}
.y1bf{bottom:703.523333pt;}
.y233{bottom:704.494800pt;}
.y128{bottom:704.660000pt;}
.y292{bottom:705.275333pt;}
.y209{bottom:705.654000pt;}
.yfc{bottom:705.959467pt;}
.yc8{bottom:706.359600pt;}
.y77{bottom:707.418267pt;}
.y150{bottom:707.425200pt;}
.y9e{bottom:707.718933pt;}
.ycc{bottom:713.359600pt;}
.y1e6{bottom:715.560667pt;}
.y262{bottom:715.614267pt;}
.y19e{bottom:718.525333pt;}
.y232{bottom:718.619467pt;}
.y291{bottom:719.275333pt;}
.y177{bottom:720.222267pt;}
.y4d{bottom:720.344667pt;}
.yca{bottom:720.359600pt;}
.y127{bottom:721.271733pt;}
.y29{bottom:721.301067pt;}
.y208{bottom:722.066933pt;}
.yfb{bottom:722.311333pt;}
.y1be{bottom:722.420933pt;}
.y76{bottom:723.478400pt;}
.y14f{bottom:723.484000pt;}
.y9d{bottom:723.718933pt;}
.y4{bottom:724.018133pt;}
.ycd{bottom:727.359600pt;}
.y261{bottom:730.339867pt;}
.y231{bottom:732.744133pt;}
.y290{bottom:733.275333pt;}
.y1e5{bottom:734.458400pt;}
.y28{bottom:737.031600pt;}
.y176{bottom:737.096533pt;}
.y4c{bottom:737.188267pt;}
.y126{bottom:737.883600pt;}
.y207{bottom:738.480000pt;}
.yfa{bottom:738.663200pt;}
.y75{bottom:739.538533pt;}
.y14e{bottom:739.542667pt;}
.y9c{bottom:739.718933pt;}
.y1bd{bottom:741.318667pt;}
.yc7{bottom:743.106533pt;}
.y260{bottom:745.065733pt;}
.y230{bottom:746.868800pt;}
.y28f{bottom:747.275333pt;}
.y19d{bottom:748.761467pt;}
.yc5{bottom:750.106533pt;}
.y1e4{bottom:753.356000pt;}
.y175{bottom:753.970667pt;}
.y4b{bottom:754.031867pt;}
.y125{bottom:754.495333pt;}
.y206{bottom:754.892933pt;}
.yf9{bottom:755.015200pt;}
.y74{bottom:755.598667pt;}
.y14d{bottom:755.601467pt;}
.y9b{bottom:755.718933pt;}
.yc4{bottom:757.106533pt;}
.y25f{bottom:759.791467pt;}
.y1bc{bottom:760.198933pt;}
.y22f{bottom:760.993467pt;}
.y28e{bottom:761.275333pt;}
.y1e3{bottom:770.174933pt;}
.y174{bottom:770.844800pt;}
.y4a{bottom:770.875467pt;}
.yc6{bottom:771.106533pt;}
.y124{bottom:771.107200pt;}
.y205{bottom:771.306000pt;}
.yf8{bottom:771.367067pt;}
.y73{bottom:771.658800pt;}
.y14c{bottom:771.660267pt;}
.y9a{bottom:771.718933pt;}
.y27{bottom:773.026000pt;}
.y25e{bottom:774.517067pt;}
.y22e{bottom:775.118133pt;}
.y28d{bottom:775.275333pt;}
.y19c{bottom:778.994933pt;}
.y1e2{bottom:785.837600pt;}
.y49{bottom:787.718933pt;}
.y26{bottom:788.756533pt;}
.yc3{bottom:789.242800pt;}
.y28c{bottom:789.275333pt;}
.y25{bottom:812.517200pt;}
.y3{bottom:821.799467pt;}
.y24{bottom:824.517200pt;}
.y23{bottom:836.517200pt;}
.y2{bottom:837.278667pt;}
.h14{height:26.066133pt;}
.h11{height:26.066667pt;}
.h13{height:26.338667pt;}
.h16{height:27.136000pt;}
.h1e{height:30.508800pt;}
.h7{height:38.741333pt;}
.h18{height:38.997333pt;}
.hf{height:39.765333pt;}
.h12{height:41.162667pt;}
.h2{height:41.434667pt;}
.h3{height:43.584000pt;}
.h6{height:43.872000pt;}
.h1f{height:44.736000pt;}
.h1c{height:45.568000pt;}
.h9{height:46.005333pt;}
.h8{height:47.221333pt;}
.hc{height:50.848000pt;}
.hd{height:51.184000pt;}
.ha{height:52.192000pt;}
.h1b{height:56.484800pt;}
.h1a{height:56.485333pt;}
.h10{height:66.741333pt;}
.h17{height:66.798933pt;}
.h15{height:66.799467pt;}
.h1d{height:66.997333pt;}
.he{height:67.765333pt;}
.h4{height:77.482667pt;}
.h5{height:77.994667pt;}
.h19{height:94.798933pt;}
.hb{height:216.645410pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x4{left:81.177600pt;}
.x1{left:83.149600pt;}
.x27{left:90.782933pt;}
.x3d{left:91.715067pt;}
.x39{left:92.863067pt;}
.x33{left:94.334667pt;}
.x3c{left:95.668267pt;}
.x2d{left:98.196267pt;}
.x6{left:102.047200pt;}
.x31{left:104.265467pt;}
.x7{left:109.047200pt;}
.x38{left:110.041333pt;}
.x4b{left:114.890267pt;}
.x30{left:116.121467pt;}
.x3{left:117.167200pt;}
.x25{left:118.937467pt;}
.x5{left:120.963067pt;}
.x55{left:123.071333pt;}
.x3a{left:123.966667pt;}
.x3e{left:126.041200pt;}
.x20{left:127.462000pt;}
.x4e{left:128.393600pt;}
.x47{left:129.331200pt;}
.x48{left:130.664533pt;}
.x4d{left:134.772400pt;}
.x2{left:136.062933pt;}
.x5c{left:138.724667pt;}
.x4a{left:146.030933pt;}
.x4c{left:147.220267pt;}
.x53{left:150.586000pt;}
.x5e{left:152.057867pt;}
.x62{left:160.804400pt;}
.x58{left:162.377600pt;}
.x8{left:163.401200pt;}
.x59{left:168.457600pt;}
.x51{left:175.177733pt;}
.x52{left:178.425467pt;}
.x37{left:184.801867pt;}
.x5b{left:188.057200pt;}
.x5d{left:189.545467pt;}
.x5a{left:192.499867pt;}
.x50{left:193.844000pt;}
.x3f{left:198.981467pt;}
.x40{left:202.449067pt;}
.x1f{left:211.570133pt;}
.x9{left:213.628400pt;}
.x26{left:214.656400pt;}
.x28{left:215.738933pt;}
.xe{left:217.191200pt;}
.x19{left:219.404400pt;}
.x17{left:221.633867pt;}
.x1e{left:226.076400pt;}
.x18{left:228.156400pt;}
.x3b{left:237.937200pt;}
.x42{left:239.335600pt;}
.x35{left:245.542400pt;}
.x57{left:250.646667pt;}
.x2f{left:252.961200pt;}
.x49{left:254.306533pt;}
.x44{left:256.076800pt;}
.x24{left:258.582533pt;}
.x54{left:259.501200pt;}
.x46{left:260.535867pt;}
.x56{left:266.167867pt;}
.x45{left:267.921467pt;}
.x60{left:276.668400pt;}
.x43{left:285.553733pt;}
.x4f{left:288.065333pt;}
.x61{left:292.214800pt;}
.x41{left:296.065467pt;}
.xc{left:299.332667pt;}
.x5f{left:302.598800pt;}
.xa{left:304.671333pt;}
.xb{left:306.004667pt;}
.x11{left:306.895333pt;}
.x10{left:308.970000pt;}
.x1b{left:311.188667pt;}
.x1a{left:313.113867pt;}
.xf{left:316.671200pt;}
.x32{left:330.546800pt;}
.x21{left:334.818000pt;}
.x36{left:346.039467pt;}
.x2a{left:349.650533pt;}
.x34{left:352.951200pt;}
.x29{left:356.012933pt;}
.x2e{left:357.746267pt;}
.x64{left:360.795067pt;}
.x65{left:375.461467pt;}
.xd{left:391.337867pt;}
.x1c{left:393.263200pt;}
.x12{left:396.665733pt;}
.x67{left:412.650400pt;}
.x63{left:418.287867pt;}
.x66{left:433.983467pt;}
.x14{left:460.376267pt;}
.x13{left:466.295867pt;}
.x1d{left:471.186667pt;}
.x16{left:473.864133pt;}
.x23{left:478.167067pt;}
.x15{left:487.191867pt;}
.x22{left:500.689600pt;}
.x2c{left:505.036400pt;}
.x2b{left:509.585600pt;}
}




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