
    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_c618f6772d8a7d92ed02820d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_9ca035429ef7756eb1b80001.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.273926;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_21ce359f24456a9bf1d6c435.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.912598;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_0a6ce8d4584b5e8251835c7c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_607a602754dd38af8b3c89b8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.727000;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_f70b0544d498d7b8ecf64630.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.079102;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_1f02232d9a9780cecd42e00e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.687500;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_d00730a51cc1d96d4203e034.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_652f0c4f3d59d82dbff2b17b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.740723;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_9fc6154e607d74706a441a95.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.912598;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);}
.v7{vertical-align:-64.688400px;}
.v5{vertical-align:-21.978000px;}
.v3{vertical-align:-19.980000px;}
.v6{vertical-align:-13.980000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:6.000000px;}
.v2{vertical-align:21.978000px;}
.v9{vertical-align:42.519600px;}
.v1{vertical-align:48.000000px;}
.v8{vertical-align:64.630200px;}
.lse{letter-spacing:-8.745000px;}
.ls10{letter-spacing:-5.610000px;}
.ls13{letter-spacing:-4.950000px;}
.ls17{letter-spacing:-3.828000px;}
.ls1c{letter-spacing:-2.640000px;}
.ls25{letter-spacing:-2.400000px;}
.ls27{letter-spacing:-2.310000px;}
.ls3{letter-spacing:-1.980000px;}
.ls1a{letter-spacing:-1.650000px;}
.ls1d{letter-spacing:-1.539120px;}
.ls2{letter-spacing:-1.500000px;}
.ls26{letter-spacing:-1.452000px;}
.ls9{letter-spacing:-1.440000px;}
.ls16{letter-spacing:-1.423686px;}
.ls5{letter-spacing:-1.320000px;}
.ls15{letter-spacing:-1.294260px;}
.ls23{letter-spacing:-1.200000px;}
.ls1b{letter-spacing:-1.154340px;}
.lsb{letter-spacing:-0.960000px;}
.ls1f{letter-spacing:-0.858000px;}
.ls11{letter-spacing:-0.769560px;}
.ls8{letter-spacing:-0.660000px;}
.ls24{letter-spacing:-0.600000px;}
.ls1e{letter-spacing:-0.384780px;}
.ls14{letter-spacing:-0.330000px;}
.ls18{letter-spacing:-0.198000px;}
.ls20{letter-spacing:-0.192390px;}
.ls38{letter-spacing:-0.132000px;}
.ls19{letter-spacing:-0.115434px;}
.lsd{letter-spacing:-0.060000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.024600px;}
.ls4a{letter-spacing:0.198000px;}
.ls37{letter-spacing:0.216000px;}
.ls51{letter-spacing:0.264000px;}
.ls33{letter-spacing:0.277200px;}
.lsf{letter-spacing:0.330000px;}
.ls21{letter-spacing:0.385200px;}
.ls32{letter-spacing:0.396000px;}
.ls3d{letter-spacing:0.462000px;}
.ls4e{letter-spacing:0.488400px;}
.ls45{letter-spacing:0.515400px;}
.ls2c{letter-spacing:0.517800px;}
.ls50{letter-spacing:0.528000px;}
.ls6{letter-spacing:0.660000px;}
.ls4c{letter-spacing:0.726000px;}
.ls31{letter-spacing:0.824400px;}
.ls52{letter-spacing:0.990000px;}
.ls22{letter-spacing:1.200000px;}
.lsa{letter-spacing:1.260000px;}
.ls39{letter-spacing:1.320000px;}
.ls12{letter-spacing:1.380000px;}
.ls2d{letter-spacing:1.414800px;}
.ls2e{letter-spacing:1.584000px;}
.ls7{letter-spacing:1.650000px;}
.ls4{letter-spacing:1.680000px;}
.ls34{letter-spacing:1.755000px;}
.ls30{letter-spacing:1.791600px;}
.ls29{letter-spacing:1.960800px;}
.ls3a{letter-spacing:1.986600px;}
.lsc{letter-spacing:2.280000px;}
.ls35{letter-spacing:2.688000px;}
.ls3c{letter-spacing:3.669600px;}
.ls2b{letter-spacing:3.799200px;}
.ls43{letter-spacing:4.002600px;}
.ls4f{letter-spacing:4.692000px;}
.ls2f{letter-spacing:4.959600px;}
.ls41{letter-spacing:5.504400px;}
.ls44{letter-spacing:5.982600px;}
.ls4b{letter-spacing:6.666000px;}
.ls47{letter-spacing:6.753600px;}
.ls2a{letter-spacing:7.443600px;}
.ls3b{letter-spacing:8.028000px;}
.ls48{letter-spacing:8.493600px;}
.ls46{letter-spacing:8.653800px;}
.ls42{letter-spacing:8.714400px;}
.ls28{letter-spacing:9.904800px;}
.ls3e{letter-spacing:12.149400px;}
.ls4d{letter-spacing:12.236400px;}
.ls49{letter-spacing:12.246600px;}
.ls36{letter-spacing:14.424000px;}
.ls40{letter-spacing:22.831800px;}
.ls3f{letter-spacing:22.832400px;}
.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;}
}
.ws0{word-spacing:-34.179600px;}
.ws1{word-spacing:-31.968000px;}
.ws2{word-spacing:-22.377600px;}
.ws94{word-spacing:-18.084000px;}
.wsc2{word-spacing:-17.226000px;}
.ws97{word-spacing:-17.160000px;}
.wsa4{word-spacing:-16.962000px;}
.ws96{word-spacing:-16.896000px;}
.ws3b{word-spacing:-16.830000px;}
.wscc{word-spacing:-16.764000px;}
.wsb5{word-spacing:-16.698000px;}
.wsc{word-spacing:-16.500000px;}
.ws95{word-spacing:-16.368000px;}
.ws65{word-spacing:-15.840000px;}
.ws44{word-spacing:-15.180000px;}
.ws5{word-spacing:-15.000000px;}
.ws41{word-spacing:-14.520000px;}
.ws8c{word-spacing:-14.190000px;}
.ws6f{word-spacing:-13.860000px;}
.wsd{word-spacing:-9.619500px;}
.ws5a{word-spacing:-9.504066px;}
.ws7a{word-spacing:-9.427110px;}
.ws74{word-spacing:-9.234720px;}
.ws45{word-spacing:-8.849940px;}
.ws13{word-spacing:-8.745000px;}
.ws69{word-spacing:-8.465160px;}
.ws53{word-spacing:-8.195814px;}
.ws70{word-spacing:-8.080380px;}
.wsba{word-spacing:-6.798000px;}
.wsa7{word-spacing:-6.336000px;}
.wsbf{word-spacing:-6.204000px;}
.wsa3{word-spacing:-5.478000px;}
.ws2f{word-spacing:-3.102000px;}
.ws52{word-spacing:-3.036000px;}
.ws46{word-spacing:-2.970000px;}
.ws6e{word-spacing:-2.904000px;}
.ws8b{word-spacing:-2.838000px;}
.ws49{word-spacing:-2.772000px;}
.ws47{word-spacing:-2.706000px;}
.wsc5{word-spacing:-2.640000px;}
.ws58{word-spacing:-2.574000px;}
.wsc4{word-spacing:-2.508000px;}
.wsa6{word-spacing:-2.442000px;}
.ws72{word-spacing:-2.310000px;}
.ws37{word-spacing:-2.280000px;}
.ws7c{word-spacing:-2.244000px;}
.wsb8{word-spacing:-2.112000px;}
.ws7{word-spacing:-1.980000px;}
.ws67{word-spacing:-1.848000px;}
.ws9d{word-spacing:-1.782000px;}
.ws6{word-spacing:-1.680000px;}
.wsa{word-spacing:-1.650000px;}
.ws4a{word-spacing:-1.584000px;}
.wsc1{word-spacing:-1.518000px;}
.ws1d{word-spacing:-1.452000px;}
.ws1a{word-spacing:-1.440000px;}
.ws4c{word-spacing:-1.380000px;}
.ws14{word-spacing:-1.320000px;}
.ws75{word-spacing:-1.296000px;}
.ws1b{word-spacing:-1.260000px;}
.ws33{word-spacing:-1.254000px;}
.ws84{word-spacing:-1.200000px;}
.wsf{word-spacing:-1.188000px;}
.ws68{word-spacing:-1.122000px;}
.ws32{word-spacing:-1.056000px;}
.ws81{word-spacing:-0.990000px;}
.ws2b{word-spacing:-0.960000px;}
.ws31{word-spacing:-0.924000px;}
.ws89{word-spacing:-0.858000px;}
.wsc6{word-spacing:-0.792000px;}
.ws5b{word-spacing:-0.726000px;}
.ws9{word-spacing:-0.660000px;}
.ws48{word-spacing:-0.528000px;}
.wsb3{word-spacing:-0.462000px;}
.wsa2{word-spacing:-0.396000px;}
.ws3d{word-spacing:-0.330000px;}
.ws60{word-spacing:-0.264000px;}
.ws22{word-spacing:-0.198000px;}
.ws25{word-spacing:-0.132000px;}
.ws79{word-spacing:-0.120000px;}
.ws55{word-spacing:-0.072000px;}
.ws92{word-spacing:-0.066000px;}
.ws39{word-spacing:-0.060000px;}
.ws26{word-spacing:-0.038478px;}
.ws27{word-spacing:-0.034980px;}
.ws3{word-spacing:0.000000px;}
.ws38{word-spacing:0.060000px;}
.wsb1{word-spacing:0.066000px;}
.ws1f{word-spacing:0.132000px;}
.ws5f{word-spacing:0.198000px;}
.ws2d{word-spacing:0.330000px;}
.ws76{word-spacing:0.384780px;}
.ws4e{word-spacing:0.396000px;}
.ws35{word-spacing:0.462000px;}
.ws8e{word-spacing:0.528000px;}
.ws9e{word-spacing:0.594000px;}
.ws85{word-spacing:0.600000px;}
.ws11{word-spacing:0.660000px;}
.ws30{word-spacing:0.726000px;}
.ws7f{word-spacing:0.769560px;}
.ws40{word-spacing:0.792000px;}
.ws77{word-spacing:0.858000px;}
.ws73{word-spacing:0.900000px;}
.ws99{word-spacing:0.924000px;}
.ws2c{word-spacing:0.960000px;}
.ws62{word-spacing:0.990000px;}
.ws51{word-spacing:1.056000px;}
.ws50{word-spacing:1.122000px;}
.ws6c{word-spacing:1.188000px;}
.ws83{word-spacing:1.200000px;}
.wscf{word-spacing:1.254000px;}
.ws1c{word-spacing:1.260000px;}
.ws54{word-spacing:1.294260px;}
.ws8{word-spacing:1.320000px;}
.ws4b{word-spacing:1.380000px;}
.ws88{word-spacing:1.386000px;}
.ws19{word-spacing:1.440000px;}
.ws8a{word-spacing:1.452000px;}
.ws6a{word-spacing:1.518000px;}
.ws82{word-spacing:1.584000px;}
.ws61{word-spacing:1.650000px;}
.ws8d{word-spacing:1.716000px;}
.wsb2{word-spacing:1.848000px;}
.ws7d{word-spacing:1.914000px;}
.ws4{word-spacing:1.980000px;}
.ws57{word-spacing:2.046000px;}
.ws20{word-spacing:2.112000px;}
.ws36{word-spacing:2.280000px;}
.ws28{word-spacing:2.310000px;}
.wsc3{word-spacing:2.376000px;}
.ws86{word-spacing:2.400000px;}
.ws15{word-spacing:2.442000px;}
.ws3c{word-spacing:2.508000px;}
.ws71{word-spacing:2.640000px;}
.ws9a{word-spacing:2.706000px;}
.ws59{word-spacing:2.772000px;}
.ws7e{word-spacing:2.838000px;}
.ws63{word-spacing:2.970000px;}
.ws3f{word-spacing:3.036000px;}
.ws90{word-spacing:3.168000px;}
.wsc0{word-spacing:3.234000px;}
.ws21{word-spacing:3.300000px;}
.ws9f{word-spacing:3.366000px;}
.ws5c{word-spacing:3.432000px;}
.ws17{word-spacing:3.498000px;}
.ws23{word-spacing:3.630000px;}
.ws64{word-spacing:3.696000px;}
.ws80{word-spacing:3.762000px;}
.ws5d{word-spacing:3.828000px;}
.wsa8{word-spacing:3.960000px;}
.wsae{word-spacing:4.026000px;}
.ws16{word-spacing:4.092000px;}
.wsbd{word-spacing:4.158000px;}
.ws78{word-spacing:4.224000px;}
.ws6b{word-spacing:4.290000px;}
.ws2a{word-spacing:4.320000px;}
.wsbe{word-spacing:4.356000px;}
.ws4d{word-spacing:4.422000px;}
.wsab{word-spacing:4.488000px;}
.wsc8{word-spacing:4.686000px;}
.wsb0{word-spacing:4.752000px;}
.ws12{word-spacing:4.818000px;}
.wsca{word-spacing:4.884000px;}
.ws4f{word-spacing:4.950000px;}
.ws18{word-spacing:5.148000px;}
.ws66{word-spacing:5.214000px;}
.ws1e{word-spacing:5.280000px;}
.wsad{word-spacing:5.478000px;}
.ws42{word-spacing:5.610000px;}
.wsaf{word-spacing:5.742000px;}
.wscd{word-spacing:5.874000px;}
.ws43{word-spacing:6.006000px;}
.ws7b{word-spacing:6.138000px;}
.ws87{word-spacing:6.270000px;}
.wsa0{word-spacing:6.402000px;}
.ws34{word-spacing:6.468000px;}
.wsa5{word-spacing:6.600000px;}
.ws9c{word-spacing:6.666000px;}
.wscb{word-spacing:6.798000px;}
.ws2e{word-spacing:6.930000px;}
.wsb6{word-spacing:7.062000px;}
.ws5e{word-spacing:7.128000px;}
.wsac{word-spacing:7.260000px;}
.ws3e{word-spacing:7.392000px;}
.ws93{word-spacing:7.458000px;}
.ws91{word-spacing:7.788000px;}
.ws6d{word-spacing:7.800000px;}
.wsa1{word-spacing:8.052000px;}
.wsb{word-spacing:8.160000px;}
.ws29{word-spacing:8.448000px;}
.wsb7{word-spacing:8.514000px;}
.ws24{word-spacing:8.580000px;}
.wsb4{word-spacing:8.646000px;}
.ws3a{word-spacing:8.745000px;}
.wsce{word-spacing:9.306000px;}
.ws8f{word-spacing:9.900000px;}
.wsb9{word-spacing:11.616000px;}
.wsa9{word-spacing:12.144000px;}
.wsc7{word-spacing:12.276000px;}
.wsbb{word-spacing:13.266000px;}
.wsc9{word-spacing:13.332000px;}
.ws9b{word-spacing:14.454000px;}
.ws98{word-spacing:16.896000px;}
.wsaa{word-spacing:22.836000px;}
.wsbc{word-spacing:26.466000px;}
.ws10{word-spacing:104.148000px;}
.wse{word-spacing:133.518000px;}
.ws56{word-spacing:211.464000px;}
._3b{margin-left:-5262.104400px;}
._27{margin-left:-1165.503600px;}
._24{margin-left:-744.048000px;}
._22{margin-left:-16.581600px;}
._4{margin-left:-15.300000px;}
._42{margin-left:-12.505800px;}
._23{margin-left:-11.213400px;}
._46{margin-left:-10.014000px;}
._21{margin-left:-8.487600px;}
._8{margin-left:-7.306200px;}
._7{margin-left:-6.045600px;}
._3{margin-left:-4.271400px;}
._1{margin-left:-2.905200px;}
._0{margin-left:-1.825800px;}
._5{width:1.217400px;}
._2{width:2.288400px;}
._6{width:3.663000px;}
._9{width:4.983000px;}
._b{width:6.045600px;}
._a{width:7.154400px;}
._c{width:8.243400px;}
._d{width:9.556800px;}
._14{width:10.929600px;}
._18{width:12.883200px;}
._13{width:14.605800px;}
._17{width:17.562600px;}
._16{width:18.836400px;}
._f{width:19.918800px;}
._e{width:21.067200px;}
._10{width:22.849200px;}
._11{width:23.857800px;}
._12{width:25.271400px;}
._4e{width:26.344800px;}
._15{width:29.838600px;}
._39{width:32.438400px;}
._38{width:35.200200px;}
._3d{width:36.997800px;}
._4f{width:43.824000px;}
._31{width:65.008200px;}
._3e{width:70.901400px;}
._29{width:86.267400px;}
._2e{width:94.771800px;}
._20{width:104.789400px;}
._43{width:114.702000px;}
._19{width:117.018000px;}
._26{width:126.726000px;}
._47{width:129.028200px;}
._1d{width:133.518000px;}
._1f{width:134.706000px;}
._1a{width:137.789400px;}
._1c{width:141.000000px;}
._1b{width:143.905200px;}
._2f{width:171.756000px;}
._32{width:185.076000px;}
._40{width:187.085400px;}
._4b{width:188.176800px;}
._1e{width:201.000000px;}
._49{width:207.186000px;}
._2b{width:228.065400px;}
._48{width:235.133400px;}
._2d{width:297.125400px;}
._3f{width:299.183400px;}
._30{width:339.535200px;}
._37{width:343.480200px;}
._44{width:352.421400px;}
._4c{width:364.520400px;}
._2a{width:430.769400px;}
._45{width:432.464400px;}
._25{width:443.448000px;}
._3c{width:456.829800px;}
._3a{width:463.662000px;}
._34{width:518.780400px;}
._4a{width:699.097200px;}
._28{width:991.690800px;}
._4d{width:1082.250600px;}
._2c{width:1918.313400px;}
._41{width:2455.027200px;}
._36{width:3280.532400px;}
._33{width:4039.910400px;}
._35{width:4593.354600px;}
.fcc{color:rgb(255,0,0);}
.fc8{color:transparent;}
.fca{color:rgb(6,7,7);}
.fc7{color:rgb(239,239,236);}
.fc6{color:rgb(13,13,13);}
.fc5{color:rgb(227,227,227);}
.fc4{color:rgb(75,75,75);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(108,89,62);}
.fcb{color:rgb(4,6,6);}
.fc9{color:rgb(236,237,234);}
.fc0{color:rgb(135,110,81);}
.fsb{font-size:34.980000px;}
.fsa{font-size:38.478000px;}
.fs1{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:75.600000px;}
.fs9{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.fs7{font-size:102.000000px;}
.fs3{font-size:108.000000px;}
.fs5{font-size:109.200000px;}
.fs4{font-size:156.000000px;}
.fsc{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y23{bottom:50.013450px;}
.y2b7{bottom:86.786550px;}
.y168{bottom:87.371250px;}
.y1d0{bottom:88.646850px;}
.y1b3{bottom:95.095050px;}
.y1d1{bottom:95.360850px;}
.yb5{bottom:96.442050px;}
.y14a{bottom:97.493250px;}
.y123{bottom:97.776750px;}
.ybd{bottom:97.942050px;}
.y195{bottom:97.986600px;}
.y167{bottom:98.001150px;}
.y159{bottom:99.937050px;}
.y1d7{bottom:99.961200px;}
.y18e{bottom:101.437050px;}
.y94{bottom:102.922500px;}
.ybe{bottom:102.937050px;}
.y1cf{bottom:104.804400px;}
.y4c{bottom:107.166600px;}
.y6e{bottom:107.192250px;}
.y21{bottom:107.630550px;}
.y2b6{bottom:109.292550px;}
.y2de{bottom:109.991850px;}
.y252{bottom:110.078850px;}
.y214{bottom:110.091750px;}
.y293{bottom:110.203050px;}
.y11{bottom:112.962450px;}
.y166{bottom:114.158700px;}
.y18d{bottom:114.442050px;}
.y149{bottom:115.493250px;}
.y122{bottom:115.776750px;}
.y14b{bottom:115.942050px;}
.y1d6{bottom:116.064000px;}
.y170{bottom:117.937050px;}
.y93{bottom:119.422500px;}
.yb4{bottom:119.437050px;}
.y1ce{bottom:120.961800px;}
.y1d8{bottom:124.345050px;}
.y15d{bottom:125.094900px;}
.yde{bottom:125.095050px;}
.y169{bottom:125.360850px;}
.y6{bottom:127.536600px;}
.y4b{bottom:129.666600px;}
.y6d{bottom:129.692250px;}
.y11b{bottom:130.942050px;}
.y2b5{bottom:131.798550px;}
.y92{bottom:132.427500px;}
.y193{bottom:132.442050px;}
.y2dd{bottom:132.497850px;}
.y251{bottom:132.578850px;}
.y213{bottom:132.591750px;}
.y292{bottom:132.709050px;}
.y148{bottom:133.493250px;}
.y121{bottom:133.776750px;}
.yb7{bottom:135.937050px;}
.yb6{bottom:148.942050px;}
.y10{bottom:148.962450px;}
.y147{bottom:151.493250px;}
.y91{bottom:153.922500px;}
.y152{bottom:153.937050px;}
.y2b4{bottom:154.304550px;}
.y72{bottom:154.319250px;}
.y156{bottom:154.345050px;}
.y2dc{bottom:155.003850px;}
.y250{bottom:155.078850px;}
.yb3{bottom:155.079000px;}
.y212{bottom:155.091750px;}
.y15c{bottom:155.094900px;}
.ydd{bottom:155.095050px;}
.y16f{bottom:155.335200px;}
.y10a{bottom:155.360850px;}
.y120{bottom:156.771750px;}
.y90{bottom:166.927500px;}
.ybc{bottom:166.942050px;}
.yf{bottom:166.962450px;}
.y1d5{bottom:167.142300px;}
.y146{bottom:169.493250px;}
.y2b3{bottom:176.810550px;}
.y26e{bottom:176.819250px;}
.y1f0{bottom:176.845050px;}
.y2db{bottom:177.509850px;}
.y258{bottom:177.578850px;}
.y291{bottom:177.704550px;}
.y1c4{bottom:177.938250px;}
.y4a{bottom:184.319250px;}
.y6c{bottom:184.345050px;}
.yb2{bottom:185.079000px;}
.y15b{bottom:185.094900px;}
.ydc{bottom:185.095050px;}
.y16e{bottom:185.335200px;}
.y109{bottom:185.360850px;}
.y8f{bottom:188.422500px;}
.y145{bottom:192.488250px;}
.ye{bottom:193.962450px;}
.y1ef{bottom:199.345050px;}
.y2da{bottom:200.015850px;}
.y234{bottom:200.053200px;}
.y24f{bottom:200.078850px;}
.y211{bottom:200.091750px;}
.y290{bottom:200.210550px;}
.y144{bottom:205.493250px;}
.y11f{bottom:205.776750px;}
.y20{bottom:209.630550px;}
.y49{bottom:214.319250px;}
.y6b{bottom:214.345050px;}
.ybb{bottom:215.078850px;}
.yb1{bottom:215.079000px;}
.y11a{bottom:215.094900px;}
.ydb{bottom:215.095050px;}
.y16d{bottom:215.335200px;}
.y108{bottom:215.360850px;}
.y2b2{bottom:221.806050px;}
.y26d{bottom:221.819250px;}
.y1ee{bottom:221.845050px;}
.y233{bottom:222.553200px;}
.y24e{bottom:222.578850px;}
.y210{bottom:222.591750px;}
.y143{bottom:228.488250px;}
.y5{bottom:234.074700px;}
.y142{bottom:241.493250px;}
.y2b1{bottom:244.312050px;}
.y48{bottom:244.319250px;}
.y6a{bottom:244.345050px;}
.y2d9{bottom:245.011350px;}
.y232{bottom:245.053200px;}
.y8e{bottom:245.078850px;}
.yb0{bottom:245.079000px;}
.y119{bottom:245.094900px;}
.y11e{bottom:245.095050px;}
.y28f{bottom:245.206050px;}
.y16c{bottom:245.335200px;}
.y107{bottom:245.360850px;}
.y1cd{bottom:251.698050px;}
.y4{bottom:252.074700px;}
.y141{bottom:259.493250px;}
.y2b0{bottom:266.818050px;}
.y1ed{bottom:266.845050px;}
.y2d8{bottom:267.517350px;}
.y257{bottom:267.578850px;}
.y20f{bottom:267.591750px;}
.y28e{bottom:267.712050px;}
.y313{bottom:267.863700px;}
.y151{bottom:269.111400px;}
.y1be{bottom:269.698050px;}
.y3{bottom:270.074700px;}
.y47{bottom:274.319250px;}
.y69{bottom:274.345050px;}
.y8d{bottom:275.078850px;}
.yaf{bottom:275.079000px;}
.y118{bottom:275.094900px;}
.yda{bottom:275.095050px;}
.y18c{bottom:275.146050px;}
.y13e{bottom:275.335200px;}
.y106{bottom:275.360850px;}
.y140{bottom:282.488250px;}
.y1b2{bottom:287.698050px;}
.y2{bottom:288.074700px;}
.y26c{bottom:289.319250px;}
.y2af{bottom:289.324050px;}
.y1ec{bottom:289.345050px;}
.y2d7{bottom:290.023350px;}
.y231{bottom:290.053200px;}
.y24d{bottom:290.078850px;}
.y20e{bottom:290.091750px;}
.y13f{bottom:295.493250px;}
.y303{bottom:297.545400px;}
.y312{bottom:297.863700px;}
.y1f{bottom:299.630550px;}
.y46{bottom:304.319250px;}
.y68{bottom:304.345050px;}
.y1a4{bottom:304.480800px;}
.y8c{bottom:305.078850px;}
.yae{bottom:305.079000px;}
.y117{bottom:305.094900px;}
.yd9{bottom:305.095050px;}
.y18b{bottom:305.143050px;}
.y16b{bottom:305.335200px;}
.y105{bottom:305.360850px;}
.y1b1{bottom:305.698050px;}
.y1{bottom:311.024400px;}
.y28d{bottom:311.816550px;}
.y26b{bottom:311.819250px;}
.y2ae{bottom:311.830050px;}
.y2d6{bottom:312.529350px;}
.y230{bottom:312.553200px;}
.y24c{bottom:312.578850px;}
.y1e{bottom:317.630550px;}
.y2fa{bottom:318.129750px;}
.y1a2{bottom:325.056300px;}
.y300{bottom:327.460350px;}
.y302{bottom:327.545400px;}
.y150{bottom:334.163400px;}
.y45{bottom:334.319250px;}
.y67{bottom:334.345050px;}
.y2d5{bottom:335.035350px;}
.y22f{bottom:335.053200px;}
.yba{bottom:335.078850px;}
.y155{bottom:335.079000px;}
.y20d{bottom:335.091750px;}
.y116{bottom:335.094900px;}
.yd8{bottom:335.095050px;}
.y18a{bottom:335.140050px;}
.y13d{bottom:335.335200px;}
.y104{bottom:335.360850px;}
.y1a7{bottom:338.874600px;}
.y1c0{bottom:352.991700px;}
.y28c{bottom:356.812050px;}
.y26a{bottom:356.819250px;}
.y2ad{bottom:356.825550px;}
.y1eb{bottom:356.845050px;}
.y2ff{bottom:357.460350px;}
.y301{bottom:357.545400px;}
.y22e{bottom:357.553200px;}
.y256{bottom:357.578850px;}
.y20c{bottom:357.591750px;}
.y2f5{bottom:358.326750px;}
.y44{bottom:364.319250px;}
.y66{bottom:364.345050px;}
.y8b{bottom:365.078850px;}
.yad{bottom:365.079000px;}
.y115{bottom:365.094900px;}
.yd7{bottom:365.095050px;}
.y189{bottom:365.137050px;}
.y13c{bottom:365.335200px;}
.y158{bottom:365.360850px;}
.y1a6{bottom:368.874600px;}
.y1d{bottom:371.630550px;}
.y28b{bottom:379.318050px;}
.y269{bottom:379.319250px;}
.y2ac{bottom:379.331550px;}
.y1ea{bottom:379.345050px;}
.y2d4{bottom:380.030850px;}
.y24b{bottom:380.078850px;}
.y20b{bottom:380.091750px;}
.y1c{bottom:389.630550px;}
.y1c2{bottom:392.024850px;}
.y43{bottom:394.319250px;}
.y65{bottom:394.345050px;}
.y8a{bottom:395.078850px;}
.yac{bottom:395.079000px;}
.y114{bottom:395.094900px;}
.yd6{bottom:395.095050px;}
.y188{bottom:395.134050px;}
.y13b{bottom:395.335200px;}
.y103{bottom:395.360850px;}
.ya{bottom:397.975950px;}
.y1a5{bottom:398.874600px;}
.y2ab{bottom:401.837550px;}
.y2d3{bottom:402.536850px;}
.y22d{bottom:402.553200px;}
.y24a{bottom:402.578850px;}
.y20a{bottom:402.591750px;}
.y1b{bottom:407.630550px;}
.y198{bottom:412.731900px;}
.y163{bottom:415.882350px;}
.y305{bottom:418.008450px;}
.y2f4{bottom:418.789650px;}
.y1aa{bottom:420.300450px;}
.y28a{bottom:424.313550px;}
.y71{bottom:424.319250px;}
.y2aa{bottom:424.343550px;}
.y64{bottom:424.345050px;}
.y22c{bottom:425.053200px;}
.y89{bottom:425.078850px;}
.yab{bottom:425.079000px;}
.y15a{bottom:425.094900px;}
.yd5{bottom:425.095050px;}
.y187{bottom:425.131050px;}
.y13a{bottom:425.335200px;}
.y102{bottom:425.360850px;}
.y9{bottom:433.980450px;}
.y1a{bottom:443.630550px;}
.y268{bottom:446.819250px;}
.y289{bottom:446.819550px;}
.y1e9{bottom:446.845050px;}
.y2d2{bottom:447.532350px;}
.y22b{bottom:447.553200px;}
.y255{bottom:447.578850px;}
.y209{bottom:447.591750px;}
.y42{bottom:454.319250px;}
.y63{bottom:454.345050px;}
.y88{bottom:455.078850px;}
.yaa{bottom:455.079000px;}
.y113{bottom:455.094900px;}
.yd4{bottom:455.095050px;}
.y186{bottom:455.128050px;}
.y139{bottom:455.335200px;}
.y101{bottom:455.360850px;}
.y19{bottom:461.630550px;}
.y288{bottom:469.325550px;}
.y2a9{bottom:469.339050px;}
.y1e8{bottom:469.345050px;}
.y2d1{bottom:470.038350px;}
.y249{bottom:470.078850px;}
.y208{bottom:470.091750px;}
.y8{bottom:474.480450px;}
.y1c1{bottom:476.001150px;}
.y41{bottom:484.319250px;}
.y62{bottom:484.345050px;}
.y2f3{bottom:484.357950px;}
.y87{bottom:485.078850px;}
.ya9{bottom:485.079000px;}
.y112{bottom:485.094900px;}
.yd3{bottom:485.095050px;}
.y185{bottom:485.125050px;}
.y138{bottom:485.335200px;}
.y2a{bottom:485.360850px;}
.y1d4{bottom:489.228900px;}
.y2a8{bottom:491.765550px;}
.y267{bottom:491.819250px;}
.y2d0{bottom:492.544350px;}
.y22a{bottom:492.553200px;}
.y248{bottom:492.578850px;}
.y18{bottom:497.630550px;}
.y1bf{bottom:497.686200px;}
.y199{bottom:502.363350px;}
.y29{bottom:503.360850px;}
.y1d2{bottom:510.488700px;}
.y2a7{bottom:514.271550px;}
.y40{bottom:514.319250px;}
.y287{bottom:514.321050px;}
.y61{bottom:514.345050px;}
.y2cf{bottom:515.050350px;}
.y229{bottom:515.053200px;}
.y86{bottom:515.078850px;}
.ya8{bottom:515.079000px;}
.y207{bottom:515.091750px;}
.y111{bottom:515.094900px;}
.yd2{bottom:515.095050px;}
.y184{bottom:515.122050px;}
.y137{bottom:515.335200px;}
.y100{bottom:515.360850px;}
.y17{bottom:515.630550px;}
.y1b0{bottom:520.564200px;}
.y2f9{bottom:529.599000px;}
.y310{bottom:531.331650px;}
.y2a6{bottom:536.777550px;}
.y266{bottom:536.819250px;}
.y1e7{bottom:536.845050px;}
.y247{bottom:537.578850px;}
.y206{bottom:537.591750px;}
.y1af{bottom:538.564200px;}
.y3f{bottom:544.319250px;}
.y60{bottom:544.345050px;}
.y85{bottom:545.078850px;}
.ya7{bottom:545.079000px;}
.y110{bottom:545.094900px;}
.yd1{bottom:545.095050px;}
.y183{bottom:545.119050px;}
.y136{bottom:545.335200px;}
.yff{bottom:545.360850px;}
.y1cc{bottom:549.985500px;}
.y16{bottom:551.630550px;}
.y1c3{bottom:553.918500px;}
.y28{bottom:555.860850px;}
.y1ae{bottom:556.564200px;}
.y1b6{bottom:558.489450px;}
.y2a5{bottom:559.283550px;}
.y286{bottom:559.316550px;}
.y2f8{bottom:559.599000px;}
.y307{bottom:559.788000px;}
.y2ce{bottom:560.045850px;}
.y228{bottom:560.053200px;}
.y246{bottom:560.078850px;}
.y30f{bottom:561.331650px;}
.y19e{bottom:565.398900px;}
.y15{bottom:569.630550px;}
.y1ca{bottom:570.820050px;}
.y27{bottom:573.860850px;}
.y3e{bottom:574.319250px;}
.y5f{bottom:574.345050px;}
.y2f2{bottom:574.357950px;}
.y84{bottom:575.078850px;}
.ya6{bottom:575.079000px;}
.y10f{bottom:575.094900px;}
.yd0{bottom:575.095050px;}
.y182{bottom:575.116050px;}
.y135{bottom:575.335200px;}
.yfe{bottom:575.360850px;}
.y2d{bottom:578.095050px;}
.y2a4{bottom:581.789550px;}
.y265{bottom:581.819250px;}
.y285{bottom:581.822550px;}
.y1e6{bottom:581.845050px;}
.y2cd{bottom:582.551850px;}
.y227{bottom:582.553200px;}
.y254{bottom:582.578850px;}
.y205{bottom:582.591750px;}
.y22{bottom:586.962450px;}
.y306{bottom:589.788000px;}
.y2fe{bottom:589.976850px;}
.yd{bottom:594.462450px;}
.y162{bottom:597.441450px;}
.y7{bottom:598.125750px;}
.y1b8{bottom:600.371250px;}
.y2a3{bottom:604.295550px;}
.y3d{bottom:604.319250px;}
.y5e{bottom:604.345050px;}
.y2f1{bottom:604.357950px;}
.yc{bottom:604.962450px;}
.y226{bottom:605.053200px;}
.yb9{bottom:605.078850px;}
.ya5{bottom:605.079000px;}
.y204{bottom:605.091750px;}
.y10e{bottom:605.094900px;}
.ycf{bottom:605.095050px;}
.y181{bottom:605.113050px;}
.y134{bottom:605.335200px;}
.y26{bottom:605.360850px;}
.y14{bottom:605.630550px;}
.y164{bottom:612.323400px;}
.y1a9{bottom:612.489450px;}
.y2c{bottom:614.095050px;}
.y2fd{bottom:619.976850px;}
.y13{bottom:623.630550px;}
.y284{bottom:626.818050px;}
.y264{bottom:626.819250px;}
.y2cc{bottom:627.547350px;}
.y245{bottom:627.578850px;}
.y203{bottom:627.591750px;}
.yb{bottom:630.462450px;}
.y3c{bottom:634.319250px;}
.y5d{bottom:634.345050px;}
.y83{bottom:635.078850px;}
.y154{bottom:635.079000px;}
.y10d{bottom:635.094900px;}
.yce{bottom:635.095050px;}
.y133{bottom:635.335200px;}
.yfd{bottom:635.360850px;}
.y2b{bottom:636.595050px;}
.y25{bottom:641.360850px;}
.y12{bottom:641.630550px;}
.y19a{bottom:643.953900px;}
.y1b7{bottom:644.379150px;}
.y2a2{bottom:649.291050px;}
.y283{bottom:649.324050px;}
.y1e5{bottom:649.345050px;}
.y14f{bottom:649.667400px;}
.y225{bottom:650.053200px;}
.y2cb{bottom:650.053350px;}
.y244{bottom:650.078850px;}
.y202{bottom:650.091750px;}
.y30a{bottom:650.250900px;}
.y304{bottom:650.498100px;}
.y3b{bottom:664.319250px;}
.y5c{bottom:664.345050px;}
.y2f0{bottom:664.357950px;}
.y82{bottom:665.078850px;}
.ya4{bottom:665.079000px;}
.y10c{bottom:665.094900px;}
.ycd{bottom:665.095050px;}
.y180{bottom:665.107050px;}
.y132{bottom:665.335200px;}
.yfc{bottom:665.360850px;}
.y18f{bottom:670.632000px;}
.y2a1{bottom:671.797050px;}
.y263{bottom:671.819250px;}
.y282{bottom:671.830050px;}
.y1e4{bottom:671.845050px;}
.y224{bottom:672.553200px;}
.y2ca{bottom:672.559350px;}
.y243{bottom:672.578850px;}
.y24{bottom:677.360850px;}
.y2a0{bottom:694.303050px;}
.y70{bottom:694.319250px;}
.y5b{bottom:694.345050px;}
.y223{bottom:695.053200px;}
.y81{bottom:695.078850px;}
.ya3{bottom:695.079000px;}
.y201{bottom:695.091750px;}
.yed{bottom:695.094900px;}
.y11d{bottom:695.095050px;}
.y17f{bottom:695.104050px;}
.y131{bottom:695.335200px;}
.yfb{bottom:695.360850px;}
.y19c{bottom:715.472100px;}
.y29f{bottom:716.809050px;}
.y281{bottom:716.825550px;}
.y1e3{bottom:716.845050px;}
.y165{bottom:716.921700px;}
.y2c9{bottom:717.554850px;}
.y242{bottom:717.578850px;}
.y200{bottom:717.591750px;}
.y3a{bottom:724.319250px;}
.y5a{bottom:724.345050px;}
.y2ef{bottom:724.357950px;}
.y80{bottom:725.078850px;}
.ya2{bottom:725.079000px;}
.yec{bottom:725.094900px;}
.ycc{bottom:725.095050px;}
.y17e{bottom:725.101050px;}
.y130{bottom:725.335200px;}
.yfa{bottom:725.360850px;}
.y1c9{bottom:725.591700px;}
.y1c6{bottom:728.780700px;}
.y1b4{bottom:737.072100px;}
.y262{bottom:739.319250px;}
.y1e2{bottom:739.345050px;}
.y1a8{bottom:740.048400px;}
.y222{bottom:740.053200px;}
.y2c8{bottom:740.060850px;}
.y241{bottom:740.078850px;}
.y1ff{bottom:740.091750px;}
.y1ac{bottom:740.095050px;}
.y39{bottom:754.319250px;}
.y59{bottom:754.345050px;}
.y2ee{bottom:754.357950px;}
.y7f{bottom:755.078850px;}
.ya1{bottom:755.079000px;}
.yeb{bottom:755.094900px;}
.ycb{bottom:755.095050px;}
.y17d{bottom:755.098050px;}
.y16a{bottom:755.335200px;}
.yf9{bottom:755.360850px;}
.y29e{bottom:761.804550px;}
.y261{bottom:761.819250px;}
.y280{bottom:761.821050px;}
.y315{bottom:762.115500px;}
.y221{bottom:762.553200px;}
.y2c7{bottom:762.566850px;}
.y240{bottom:762.578850px;}
.y1fe{bottom:762.591750px;}
.y30e{bottom:779.654850px;}
.y1a3{bottom:783.677700px;}
.y29d{bottom:784.310550px;}
.y38{bottom:784.319250px;}
.y27f{bottom:784.327050px;}
.y58{bottom:784.345050px;}
.y2ed{bottom:784.357950px;}
.y220{bottom:785.053200px;}
.y2c6{bottom:785.072850px;}
.y7e{bottom:785.078850px;}
.ya0{bottom:785.079000px;}
.yea{bottom:785.094900px;}
.yca{bottom:785.095050px;}
.y17c{bottom:785.104050px;}
.y12f{bottom:785.335200px;}
.y157{bottom:785.360850px;}
.y1bd{bottom:787.837650px;}
.y314{bottom:792.115500px;}
.y1c5{bottom:794.261100px;}
.y1ad{bottom:805.837650px;}
.y29c{bottom:806.816550px;}
.y27e{bottom:806.833050px;}
.y1e1{bottom:806.845050px;}
.y2c5{bottom:807.505350px;}
.y23f{bottom:807.578850px;}
.y1fd{bottom:807.591750px;}
.y1a1{bottom:808.717800px;}
.y30d{bottom:809.654850px;}
.y37{bottom:814.319250px;}
.y57{bottom:814.345050px;}
.y2ec{bottom:814.357950px;}
.y7d{bottom:815.078850px;}
.y9f{bottom:815.079000px;}
.ye9{bottom:815.094900px;}
.yc9{bottom:815.095050px;}
.y17b{bottom:815.101050px;}
.y12e{bottom:815.335200px;}
.yf8{bottom:815.360850px;}
.y161{bottom:815.992650px;}
.y2f7{bottom:822.115500px;}
.y1b9{bottom:827.851650px;}
.y260{bottom:829.319250px;}
.y29b{bottom:829.322550px;}
.y27d{bottom:829.339050px;}
.y1e0{bottom:829.345050px;}
.y2c4{bottom:830.011350px;}
.y21f{bottom:830.053200px;}
.y23e{bottom:830.078850px;}
.y1fc{bottom:830.091750px;}
.y1bb{bottom:835.505100px;}
.y309{bottom:837.210000px;}
.y30c{bottom:839.654850px;}
.y36{bottom:844.319250px;}
.y56{bottom:844.345050px;}
.y2eb{bottom:844.357950px;}
.y9e{bottom:845.079000px;}
.ye8{bottom:845.094900px;}
.yc8{bottom:845.095050px;}
.y17a{bottom:845.098050px;}
.y12d{bottom:845.335200px;}
.yf7{bottom:845.360850px;}
.y25f{bottom:851.819250px;}
.y29a{bottom:851.828550px;}
.y27c{bottom:851.845050px;}
.y2c3{bottom:852.517350px;}
.y2fc{bottom:852.535950px;}
.y21e{bottom:852.553200px;}
.y23d{bottom:852.578850px;}
.y1fb{bottom:852.591750px;}
.y2e4{bottom:853.495050px;}
.y192{bottom:856.127250px;}
.y15f{bottom:870.843000px;}
.y19f{bottom:871.434300px;}
.y35{bottom:874.319250px;}
.y55{bottom:874.345050px;}
.y2ea{bottom:874.357950px;}
.y2c2{bottom:875.023350px;}
.y21d{bottom:875.053200px;}
.y7c{bottom:875.078850px;}
.y9d{bottom:875.079000px;}
.y1fa{bottom:875.091750px;}
.ye7{bottom:875.094900px;}
.yc7{bottom:875.095050px;}
.y179{bottom:875.122050px;}
.y12c{bottom:875.335200px;}
.yf6{bottom:875.360850px;}
.y2e3{bottom:875.995050px;}
.y2fb{bottom:882.535950px;}
.y2f6{bottom:882.578400px;}
.y1d3{bottom:896.354850px;}
.y299{bottom:896.824050px;}
.y27b{bottom:896.840550px;}
.y1df{bottom:896.845050px;}
.y2c1{bottom:897.529350px;}
.y21c{bottom:897.553200px;}
.y253{bottom:897.578850px;}
.y30b{bottom:897.673050px;}
.y2e2{bottom:898.495050px;}
.y274{bottom:899.395050px;}
.y311{bottom:900.117900px;}
.y6f{bottom:904.319250px;}
.y54{bottom:904.345050px;}
.y7b{bottom:905.078850px;}
.y9c{bottom:905.079000px;}
.ye6{bottom:905.094900px;}
.yc6{bottom:905.095050px;}
.y178{bottom:905.119050px;}
.y12b{bottom:905.335200px;}
.yf5{bottom:905.360850px;}
.y1cb{bottom:919.056300px;}
.y25e{bottom:919.319250px;}
.y298{bottom:919.330050px;}
.y1de{bottom:919.345050px;}
.y27a{bottom:919.346550px;}
.y2c0{bottom:920.035350px;}
.y23c{bottom:920.078850px;}
.y1f9{bottom:920.091750px;}
.y2e1{bottom:920.995050px;}
.y1c7{bottom:929.686200px;}
.y160{bottom:930.795750px;}
.y1c8{bottom:932.662650px;}
.y34{bottom:934.319250px;}
.y53{bottom:934.345050px;}
.y7a{bottom:935.078850px;}
.y9b{bottom:935.079000px;}
.ye5{bottom:935.094900px;}
.yc5{bottom:935.095050px;}
.y177{bottom:935.116050px;}
.y12a{bottom:935.335200px;}
.yf4{bottom:935.360850px;}
.y196{bottom:940.358700px;}
.y14e{bottom:941.357400px;}
.y25d{bottom:941.819250px;}
.y297{bottom:941.836050px;}
.y1ba{bottom:941.910600px;}
.y21b{bottom:942.553200px;}
.y23b{bottom:942.578850px;}
.y1f8{bottom:942.591750px;}
.y2e0{bottom:943.495050px;}
.y33{bottom:964.319250px;}
.y279{bottom:964.342050px;}
.y52{bottom:964.345050px;}
.y2bf{bottom:965.030850px;}
.y21a{bottom:965.053200px;}
.y79{bottom:965.078850px;}
.y9a{bottom:965.079000px;}
.y1f7{bottom:965.091750px;}
.ye4{bottom:965.094900px;}
.yc4{bottom:965.095050px;}
.y176{bottom:965.113050px;}
.y129{bottom:965.335200px;}
.yf3{bottom:965.360850px;}
.y191{bottom:973.906800px;}
.y296{bottom:986.831550px;}
.y1dd{bottom:986.845050px;}
.y278{bottom:986.848050px;}
.y2be{bottom:987.536850px;}
.y23a{bottom:987.578850px;}
.y273{bottom:987.595050px;}
.y32{bottom:994.319250px;}
.y51{bottom:994.345050px;}
.y2e9{bottom:994.357950px;}
.y78{bottom:995.078850px;}
.y99{bottom:995.079000px;}
.ye3{bottom:995.094900px;}
.yc3{bottom:995.095050px;}
.y175{bottom:995.110050px;}
.y128{bottom:995.335200px;}
.yf2{bottom:995.360850px;}
.y14d{bottom:1001.315400px;}
.y25c{bottom:1009.319250px;}
.y295{bottom:1009.337550px;}
.y1dc{bottom:1009.345050px;}
.y2bd{bottom:1010.042850px;}
.y219{bottom:1010.053200px;}
.y239{bottom:1010.078850px;}
.y1f6{bottom:1010.091750px;}
.y272{bottom:1010.095050px;}
.y190{bottom:1010.898900px;}
.y1bc{bottom:1014.087900px;}
.y31{bottom:1024.319250px;}
.y50{bottom:1024.345050px;}
.y2e8{bottom:1024.357950px;}
.y77{bottom:1025.078850px;}
.y98{bottom:1025.079000px;}
.y10b{bottom:1025.094900px;}
.y11c{bottom:1025.095050px;}
.y174{bottom:1025.107050px;}
.y127{bottom:1025.335200px;}
.yf1{bottom:1025.360850px;}
.y19b{bottom:1027.481550px;}
.y25b{bottom:1031.819250px;}
.y277{bottom:1031.843550px;}
.y1db{bottom:1031.845050px;}
.y2bc{bottom:1032.548850px;}
.y218{bottom:1032.553200px;}
.y238{bottom:1032.578850px;}
.y1f5{bottom:1032.591750px;}
.y2df{bottom:1032.595050px;}
.y15e{bottom:1037.520300px;}
.y1ab{bottom:1051.551600px;}
.y197{bottom:1054.162650px;}
.y30{bottom:1054.319250px;}
.y4f{bottom:1054.345050px;}
.y276{bottom:1054.349550px;}
.y2e7{bottom:1054.357950px;}
.y2bb{bottom:1055.054850px;}
.y76{bottom:1055.078850px;}
.y153{bottom:1055.079000px;}
.ye2{bottom:1055.094900px;}
.yc2{bottom:1055.095050px;}
.y173{bottom:1055.104050px;}
.y126{bottom:1055.335200px;}
.yf0{bottom:1055.360850px;}
.y14c{bottom:1061.273400px;}
.y1a0{bottom:1063.410600px;}
.y1b5{bottom:1070.851650px;}
.y25a{bottom:1076.819250px;}
.y294{bottom:1076.839050px;}
.y1da{bottom:1076.845050px;}
.y217{bottom:1077.553200px;}
.y2ba{bottom:1077.560850px;}
.y237{bottom:1077.578850px;}
.y1f4{bottom:1077.591750px;}
.y271{bottom:1077.595050px;}
.y2f{bottom:1084.319250px;}
.y4e{bottom:1084.345050px;}
.y2e6{bottom:1084.357950px;}
.y308{bottom:1084.632000px;}
.y75{bottom:1085.078850px;}
.y97{bottom:1085.079000px;}
.ye1{bottom:1085.094900px;}
.yc1{bottom:1085.095050px;}
.y172{bottom:1085.101050px;}
.y125{bottom:1085.335200px;}
.yef{bottom:1085.360850px;}
.y259{bottom:1099.319250px;}
.y1d9{bottom:1099.345050px;}
.y216{bottom:1100.053200px;}
.y2b9{bottom:1100.066850px;}
.y236{bottom:1100.078850px;}
.y1f3{bottom:1100.091750px;}
.y270{bottom:1100.095050px;}
.y194{bottom:1114.319250px;}
.yb8{bottom:1114.345050px;}
.y74{bottom:1115.078850px;}
.y96{bottom:1115.079000px;}
.ye0{bottom:1115.094900px;}
.yc0{bottom:1115.095050px;}
.y171{bottom:1115.098050px;}
.y19d{bottom:1115.360850px;}
.y2b8{bottom:1122.572850px;}
.y235{bottom:1122.578850px;}
.y1f2{bottom:1122.591750px;}
.y26f{bottom:1122.595050px;}
.y2e{bottom:1144.319250px;}
.y275{bottom:1144.341450px;}
.y4d{bottom:1144.345050px;}
.y2e5{bottom:1144.357950px;}
.y215{bottom:1145.053200px;}
.y73{bottom:1145.078850px;}
.y95{bottom:1145.079000px;}
.y1f1{bottom:1145.091750px;}
.ydf{bottom:1145.094900px;}
.ybf{bottom:1145.095050px;}
.y124{bottom:1145.335200px;}
.yee{bottom:1145.360850px;}
.h14{height:30.692900px;}
.h13{height:32.666484px;}
.h12{height:38.666484px;}
.h1b{height:40.546875px;}
.h3{height:45.585938px;}
.h11{height:45.987305px;}
.h10{height:50.167969px;}
.he{height:51.264000px;}
.h16{height:52.453125px;}
.hb{height:52.646484px;}
.h2{height:54.703125px;}
.hf{height:56.976562px;}
.ha{height:57.911133px;}
.h1e{height:58.205133px;}
.h1d{height:58.229133px;}
.h15{height:58.646484px;}
.h8{height:71.071289px;}
.hc{height:73.705078px;}
.h4{height:93.328125px;}
.h19{height:95.166084px;}
.h5{height:104.994141px;}
.h7{height:105.012141px;}
.h9{height:105.911133px;}
.hd{height:106.529297px;}
.h18{height:117.276684px;}
.h1a{height:117.956484px;}
.h6{height:118.523438px;}
.h1c{height:122.540733px;}
.h17{height:128.160000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:890.787000px;}
.w1{width:891.000000px;}
.w2{width:892.914000px;}
.w3{width:893.250000px;}
.w5{width:1785.750000px;}
.w4{width:1785.825000px;}
.x0{left:0.000000px;}
.xa{left:127.559100px;}
.x3{left:141.581250px;}
.x8{left:151.293450px;}
.x35{left:153.496050px;}
.x40{left:183.897600px;}
.x50{left:187.086600px;}
.x47{left:212.768400px;}
.x4c{left:215.787450px;}
.x52{left:217.576350px;}
.x54{left:221.008500px;}
.x2{left:224.156250px;}
.x9{left:227.760000px;}
.x53{left:237.959700px;}
.x34{left:257.244000px;}
.x7{left:261.895050px;}
.x42{left:263.664600px;}
.x11{left:270.518100px;}
.x6{left:272.825700px;}
.x38{left:297.637650px;}
.x30{left:306.358650px;}
.x1b{left:308.496150px;}
.x1e{left:310.587300px;}
.x2a{left:314.256000px;}
.x5{left:339.279000px;}
.x4{left:341.141250px;}
.x1a{left:342.557850px;}
.x36{left:346.535400px;}
.x3f{left:357.803100px;}
.x71{left:362.799150px;}
.x29{left:374.790000px;}
.xb{left:383.843100px;}
.x73{left:408.188850px;}
.xd{left:420.128100px;}
.xc{left:430.043100px;}
.x1{left:441.433650px;}
.x32{left:443.043750px;}
.x2f{left:448.514550px;}
.x31{left:452.610600px;}
.x25{left:475.356000px;}
.x16{left:477.368100px;}
.x27{left:481.368000px;}
.x28{left:497.694000px;}
.x1f{left:504.645000px;}
.x13{left:529.973100px;}
.x70{left:533.303100px;}
.x49{left:536.279550px;}
.x55{left:560.409450px;}
.x37{left:572.952750px;}
.x26{left:575.832000px;}
.x2b{left:595.938000px;}
.x19{left:612.473100px;}
.x2e{left:624.566850px;}
.x17{left:634.538100px;}
.xf{left:650.363100px;}
.x6e{left:655.122000px;}
.x2d{left:657.770250px;}
.x18{left:659.003100px;}
.x2c{left:661.386000px;}
.x5b{left:667.558950px;}
.x59{left:668.622000px;}
.x33{left:675.729600px;}
.x15{left:689.543100px;}
.x14{left:695.378100px;}
.x10{left:706.163100px;}
.x43{left:716.137800px;}
.xe{left:724.508100px;}
.x12{left:728.078100px;}
.x21{left:740.424900px;}
.x1d{left:746.940900px;}
.x23{left:748.074450px;}
.x20{left:752.700600px;}
.x22{left:756.714450px;}
.x1c{left:759.216450px;}
.x24{left:765.354300px;}
.x5a{left:768.755850px;}
.x56{left:777.259800px;}
.x4e{left:781.511700px;}
.x3c{left:784.275450px;}
.x76{left:792.779550px;}
.x68{left:816.165300px;}
.x74{left:819.566850px;}
.x6c{left:831.514950px;}
.x58{left:845.291250px;}
.x62{left:850.606350px;}
.x6b{left:863.787300px;}
.x64{left:896.102400px;}
.x63{left:902.055150px;}
.x66{left:908.645550px;}
.x72{left:931.181100px;}
.x4f{left:970.299150px;}
.x44{left:973.807050px;}
.x77{left:981.779550px;}
.x3d{left:986.881800px;}
.x5e{left:994.960650px;}
.x57{left:1014.732300px;}
.x61{left:1033.653600px;}
.x6a{left:1057.995900px;}
.x65{left:1072.346400px;}
.x51{left:1127.293950px;}
.x6d{left:1128.897450px;}
.x4d{left:1131.236250px;}
.x69{left:1155.855000px;}
.x3a{left:1185.873900px;}
.x60{left:1217.338500px;}
.x75{left:1220.314950px;}
.x3e{left:1233.921150px;}
.x5d{left:1237.747950px;}
.x67{left:1249.440900px;}
.x78{left:1276.440900px;}
.x4b{left:1279.417200px;}
.x45{left:1285.476450px;}
.x39{left:1309.606200px;}
.x3b{left:1337.669250px;}
.x6f{left:1377.212550px;}
.x4a{left:1378.488150px;}
.x41{left:1384.015650px;}
.x48{left:1391.669250px;}
.x5f{left:1414.842450px;}
.x46{left:1417.287450px;}
.x5c{left:1441.028250px;}
@media print{
.v7{vertical-align:-57.500800pt;}
.v5{vertical-align:-19.536000pt;}
.v3{vertical-align:-17.760000pt;}
.v6{vertical-align:-12.426667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.333333pt;}
.v2{vertical-align:19.536000pt;}
.v9{vertical-align:37.795200pt;}
.v1{vertical-align:42.666667pt;}
.v8{vertical-align:57.449067pt;}
.lse{letter-spacing:-7.773333pt;}
.ls10{letter-spacing:-4.986667pt;}
.ls13{letter-spacing:-4.400000pt;}
.ls17{letter-spacing:-3.402667pt;}
.ls1c{letter-spacing:-2.346667pt;}
.ls25{letter-spacing:-2.133333pt;}
.ls27{letter-spacing:-2.053333pt;}
.ls3{letter-spacing:-1.760000pt;}
.ls1a{letter-spacing:-1.466667pt;}
.ls1d{letter-spacing:-1.368107pt;}
.ls2{letter-spacing:-1.333333pt;}
.ls26{letter-spacing:-1.290667pt;}
.ls9{letter-spacing:-1.280000pt;}
.ls16{letter-spacing:-1.265499pt;}
.ls5{letter-spacing:-1.173333pt;}
.ls15{letter-spacing:-1.150453pt;}
.ls23{letter-spacing:-1.066667pt;}
.ls1b{letter-spacing:-1.026080pt;}
.lsb{letter-spacing:-0.853333pt;}
.ls1f{letter-spacing:-0.762667pt;}
.ls11{letter-spacing:-0.684053pt;}
.ls8{letter-spacing:-0.586667pt;}
.ls24{letter-spacing:-0.533333pt;}
.ls1e{letter-spacing:-0.342027pt;}
.ls14{letter-spacing:-0.293333pt;}
.ls18{letter-spacing:-0.176000pt;}
.ls20{letter-spacing:-0.171013pt;}
.ls38{letter-spacing:-0.117333pt;}
.ls19{letter-spacing:-0.102608pt;}
.lsd{letter-spacing:-0.053333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.021867pt;}
.ls4a{letter-spacing:0.176000pt;}
.ls37{letter-spacing:0.192000pt;}
.ls51{letter-spacing:0.234667pt;}
.ls33{letter-spacing:0.246400pt;}
.lsf{letter-spacing:0.293333pt;}
.ls21{letter-spacing:0.342400pt;}
.ls32{letter-spacing:0.352000pt;}
.ls3d{letter-spacing:0.410667pt;}
.ls4e{letter-spacing:0.434133pt;}
.ls45{letter-spacing:0.458133pt;}
.ls2c{letter-spacing:0.460267pt;}
.ls50{letter-spacing:0.469333pt;}
.ls6{letter-spacing:0.586667pt;}
.ls4c{letter-spacing:0.645333pt;}
.ls31{letter-spacing:0.732800pt;}
.ls52{letter-spacing:0.880000pt;}
.ls22{letter-spacing:1.066667pt;}
.lsa{letter-spacing:1.120000pt;}
.ls39{letter-spacing:1.173333pt;}
.ls12{letter-spacing:1.226667pt;}
.ls2d{letter-spacing:1.257600pt;}
.ls2e{letter-spacing:1.408000pt;}
.ls7{letter-spacing:1.466667pt;}
.ls4{letter-spacing:1.493333pt;}
.ls34{letter-spacing:1.560000pt;}
.ls30{letter-spacing:1.592533pt;}
.ls29{letter-spacing:1.742933pt;}
.ls3a{letter-spacing:1.765867pt;}
.lsc{letter-spacing:2.026667pt;}
.ls35{letter-spacing:2.389333pt;}
.ls3c{letter-spacing:3.261867pt;}
.ls2b{letter-spacing:3.377067pt;}
.ls43{letter-spacing:3.557867pt;}
.ls4f{letter-spacing:4.170667pt;}
.ls2f{letter-spacing:4.408533pt;}
.ls41{letter-spacing:4.892800pt;}
.ls44{letter-spacing:5.317867pt;}
.ls4b{letter-spacing:5.925333pt;}
.ls47{letter-spacing:6.003200pt;}
.ls2a{letter-spacing:6.616533pt;}
.ls3b{letter-spacing:7.136000pt;}
.ls48{letter-spacing:7.549867pt;}
.ls46{letter-spacing:7.692267pt;}
.ls42{letter-spacing:7.746133pt;}
.ls28{letter-spacing:8.804267pt;}
.ls3e{letter-spacing:10.799467pt;}
.ls4d{letter-spacing:10.876800pt;}
.ls49{letter-spacing:10.885867pt;}
.ls36{letter-spacing:12.821333pt;}
.ls40{letter-spacing:20.294933pt;}
.ls3f{letter-spacing:20.295467pt;}
.ws0{word-spacing:-30.381867pt;}
.ws1{word-spacing:-28.416000pt;}
.ws2{word-spacing:-19.891200pt;}
.ws94{word-spacing:-16.074667pt;}
.wsc2{word-spacing:-15.312000pt;}
.ws97{word-spacing:-15.253333pt;}
.wsa4{word-spacing:-15.077333pt;}
.ws96{word-spacing:-15.018667pt;}
.ws3b{word-spacing:-14.960000pt;}
.wscc{word-spacing:-14.901333pt;}
.wsb5{word-spacing:-14.842667pt;}
.wsc{word-spacing:-14.666667pt;}
.ws95{word-spacing:-14.549333pt;}
.ws65{word-spacing:-14.080000pt;}
.ws44{word-spacing:-13.493333pt;}
.ws5{word-spacing:-13.333333pt;}
.ws41{word-spacing:-12.906667pt;}
.ws8c{word-spacing:-12.613333pt;}
.ws6f{word-spacing:-12.320000pt;}
.wsd{word-spacing:-8.550667pt;}
.ws5a{word-spacing:-8.448059pt;}
.ws7a{word-spacing:-8.379653pt;}
.ws74{word-spacing:-8.208640pt;}
.ws45{word-spacing:-7.866613pt;}
.ws13{word-spacing:-7.773333pt;}
.ws69{word-spacing:-7.524587pt;}
.ws53{word-spacing:-7.285168pt;}
.ws70{word-spacing:-7.182560pt;}
.wsba{word-spacing:-6.042667pt;}
.wsa7{word-spacing:-5.632000pt;}
.wsbf{word-spacing:-5.514667pt;}
.wsa3{word-spacing:-4.869333pt;}
.ws2f{word-spacing:-2.757333pt;}
.ws52{word-spacing:-2.698667pt;}
.ws46{word-spacing:-2.640000pt;}
.ws6e{word-spacing:-2.581333pt;}
.ws8b{word-spacing:-2.522667pt;}
.ws49{word-spacing:-2.464000pt;}
.ws47{word-spacing:-2.405333pt;}
.wsc5{word-spacing:-2.346667pt;}
.ws58{word-spacing:-2.288000pt;}
.wsc4{word-spacing:-2.229333pt;}
.wsa6{word-spacing:-2.170667pt;}
.ws72{word-spacing:-2.053333pt;}
.ws37{word-spacing:-2.026667pt;}
.ws7c{word-spacing:-1.994667pt;}
.wsb8{word-spacing:-1.877333pt;}
.ws7{word-spacing:-1.760000pt;}
.ws67{word-spacing:-1.642667pt;}
.ws9d{word-spacing:-1.584000pt;}
.ws6{word-spacing:-1.493333pt;}
.wsa{word-spacing:-1.466667pt;}
.ws4a{word-spacing:-1.408000pt;}
.wsc1{word-spacing:-1.349333pt;}
.ws1d{word-spacing:-1.290667pt;}
.ws1a{word-spacing:-1.280000pt;}
.ws4c{word-spacing:-1.226667pt;}
.ws14{word-spacing:-1.173333pt;}
.ws75{word-spacing:-1.152000pt;}
.ws1b{word-spacing:-1.120000pt;}
.ws33{word-spacing:-1.114667pt;}
.ws84{word-spacing:-1.066667pt;}
.wsf{word-spacing:-1.056000pt;}
.ws68{word-spacing:-0.997333pt;}
.ws32{word-spacing:-0.938667pt;}
.ws81{word-spacing:-0.880000pt;}
.ws2b{word-spacing:-0.853333pt;}
.ws31{word-spacing:-0.821333pt;}
.ws89{word-spacing:-0.762667pt;}
.wsc6{word-spacing:-0.704000pt;}
.ws5b{word-spacing:-0.645333pt;}
.ws9{word-spacing:-0.586667pt;}
.ws48{word-spacing:-0.469333pt;}
.wsb3{word-spacing:-0.410667pt;}
.wsa2{word-spacing:-0.352000pt;}
.ws3d{word-spacing:-0.293333pt;}
.ws60{word-spacing:-0.234667pt;}
.ws22{word-spacing:-0.176000pt;}
.ws25{word-spacing:-0.117333pt;}
.ws79{word-spacing:-0.106667pt;}
.ws55{word-spacing:-0.064000pt;}
.ws92{word-spacing:-0.058667pt;}
.ws39{word-spacing:-0.053333pt;}
.ws26{word-spacing:-0.034203pt;}
.ws27{word-spacing:-0.031093pt;}
.ws3{word-spacing:0.000000pt;}
.ws38{word-spacing:0.053333pt;}
.wsb1{word-spacing:0.058667pt;}
.ws1f{word-spacing:0.117333pt;}
.ws5f{word-spacing:0.176000pt;}
.ws2d{word-spacing:0.293333pt;}
.ws76{word-spacing:0.342027pt;}
.ws4e{word-spacing:0.352000pt;}
.ws35{word-spacing:0.410667pt;}
.ws8e{word-spacing:0.469333pt;}
.ws9e{word-spacing:0.528000pt;}
.ws85{word-spacing:0.533333pt;}
.ws11{word-spacing:0.586667pt;}
.ws30{word-spacing:0.645333pt;}
.ws7f{word-spacing:0.684053pt;}
.ws40{word-spacing:0.704000pt;}
.ws77{word-spacing:0.762667pt;}
.ws73{word-spacing:0.800000pt;}
.ws99{word-spacing:0.821333pt;}
.ws2c{word-spacing:0.853333pt;}
.ws62{word-spacing:0.880000pt;}
.ws51{word-spacing:0.938667pt;}
.ws50{word-spacing:0.997333pt;}
.ws6c{word-spacing:1.056000pt;}
.ws83{word-spacing:1.066667pt;}
.wscf{word-spacing:1.114667pt;}
.ws1c{word-spacing:1.120000pt;}
.ws54{word-spacing:1.150453pt;}
.ws8{word-spacing:1.173333pt;}
.ws4b{word-spacing:1.226667pt;}
.ws88{word-spacing:1.232000pt;}
.ws19{word-spacing:1.280000pt;}
.ws8a{word-spacing:1.290667pt;}
.ws6a{word-spacing:1.349333pt;}
.ws82{word-spacing:1.408000pt;}
.ws61{word-spacing:1.466667pt;}
.ws8d{word-spacing:1.525333pt;}
.wsb2{word-spacing:1.642667pt;}
.ws7d{word-spacing:1.701333pt;}
.ws4{word-spacing:1.760000pt;}
.ws57{word-spacing:1.818667pt;}
.ws20{word-spacing:1.877333pt;}
.ws36{word-spacing:2.026667pt;}
.ws28{word-spacing:2.053333pt;}
.wsc3{word-spacing:2.112000pt;}
.ws86{word-spacing:2.133333pt;}
.ws15{word-spacing:2.170667pt;}
.ws3c{word-spacing:2.229333pt;}
.ws71{word-spacing:2.346667pt;}
.ws9a{word-spacing:2.405333pt;}
.ws59{word-spacing:2.464000pt;}
.ws7e{word-spacing:2.522667pt;}
.ws63{word-spacing:2.640000pt;}
.ws3f{word-spacing:2.698667pt;}
.ws90{word-spacing:2.816000pt;}
.wsc0{word-spacing:2.874667pt;}
.ws21{word-spacing:2.933333pt;}
.ws9f{word-spacing:2.992000pt;}
.ws5c{word-spacing:3.050667pt;}
.ws17{word-spacing:3.109333pt;}
.ws23{word-spacing:3.226667pt;}
.ws64{word-spacing:3.285333pt;}
.ws80{word-spacing:3.344000pt;}
.ws5d{word-spacing:3.402667pt;}
.wsa8{word-spacing:3.520000pt;}
.wsae{word-spacing:3.578667pt;}
.ws16{word-spacing:3.637333pt;}
.wsbd{word-spacing:3.696000pt;}
.ws78{word-spacing:3.754667pt;}
.ws6b{word-spacing:3.813333pt;}
.ws2a{word-spacing:3.840000pt;}
.wsbe{word-spacing:3.872000pt;}
.ws4d{word-spacing:3.930667pt;}
.wsab{word-spacing:3.989333pt;}
.wsc8{word-spacing:4.165333pt;}
.wsb0{word-spacing:4.224000pt;}
.ws12{word-spacing:4.282667pt;}
.wsca{word-spacing:4.341333pt;}
.ws4f{word-spacing:4.400000pt;}
.ws18{word-spacing:4.576000pt;}
.ws66{word-spacing:4.634667pt;}
.ws1e{word-spacing:4.693333pt;}
.wsad{word-spacing:4.869333pt;}
.ws42{word-spacing:4.986667pt;}
.wsaf{word-spacing:5.104000pt;}
.wscd{word-spacing:5.221333pt;}
.ws43{word-spacing:5.338667pt;}
.ws7b{word-spacing:5.456000pt;}
.ws87{word-spacing:5.573333pt;}
.wsa0{word-spacing:5.690667pt;}
.ws34{word-spacing:5.749333pt;}
.wsa5{word-spacing:5.866667pt;}
.ws9c{word-spacing:5.925333pt;}
.wscb{word-spacing:6.042667pt;}
.ws2e{word-spacing:6.160000pt;}
.wsb6{word-spacing:6.277333pt;}
.ws5e{word-spacing:6.336000pt;}
.wsac{word-spacing:6.453333pt;}
.ws3e{word-spacing:6.570667pt;}
.ws93{word-spacing:6.629333pt;}
.ws91{word-spacing:6.922667pt;}
.ws6d{word-spacing:6.933333pt;}
.wsa1{word-spacing:7.157333pt;}
.wsb{word-spacing:7.253333pt;}
.ws29{word-spacing:7.509333pt;}
.wsb7{word-spacing:7.568000pt;}
.ws24{word-spacing:7.626667pt;}
.wsb4{word-spacing:7.685333pt;}
.ws3a{word-spacing:7.773333pt;}
.wsce{word-spacing:8.272000pt;}
.ws8f{word-spacing:8.800000pt;}
.wsb9{word-spacing:10.325333pt;}
.wsa9{word-spacing:10.794667pt;}
.wsc7{word-spacing:10.912000pt;}
.wsbb{word-spacing:11.792000pt;}
.wsc9{word-spacing:11.850667pt;}
.ws9b{word-spacing:12.848000pt;}
.ws98{word-spacing:15.018667pt;}
.wsaa{word-spacing:20.298667pt;}
.wsbc{word-spacing:23.525333pt;}
.ws10{word-spacing:92.576000pt;}
.wse{word-spacing:118.682667pt;}
.ws56{word-spacing:187.968000pt;}
._3b{margin-left:-4677.426133pt;}
._27{margin-left:-1036.003200pt;}
._24{margin-left:-661.376000pt;}
._22{margin-left:-14.739200pt;}
._4{margin-left:-13.600000pt;}
._42{margin-left:-11.116267pt;}
._23{margin-left:-9.967467pt;}
._46{margin-left:-8.901333pt;}
._21{margin-left:-7.544533pt;}
._8{margin-left:-6.494400pt;}
._7{margin-left:-5.373867pt;}
._3{margin-left:-3.796800pt;}
._1{margin-left:-2.582400pt;}
._0{margin-left:-1.622933pt;}
._5{width:1.082133pt;}
._2{width:2.034133pt;}
._6{width:3.256000pt;}
._9{width:4.429333pt;}
._b{width:5.373867pt;}
._a{width:6.359467pt;}
._c{width:7.327467pt;}
._d{width:8.494933pt;}
._14{width:9.715200pt;}
._18{width:11.451733pt;}
._13{width:12.982933pt;}
._17{width:15.611200pt;}
._16{width:16.743467pt;}
._f{width:17.705600pt;}
._e{width:18.726400pt;}
._10{width:20.310400pt;}
._11{width:21.206933pt;}
._12{width:22.463467pt;}
._4e{width:23.417600pt;}
._15{width:26.523200pt;}
._39{width:28.834133pt;}
._38{width:31.289067pt;}
._3d{width:32.886933pt;}
._4f{width:38.954667pt;}
._31{width:57.785067pt;}
._3e{width:63.023467pt;}
._29{width:76.682133pt;}
._2e{width:84.241600pt;}
._20{width:93.146133pt;}
._43{width:101.957333pt;}
._19{width:104.016000pt;}
._26{width:112.645333pt;}
._47{width:114.691733pt;}
._1d{width:118.682667pt;}
._1f{width:119.738667pt;}
._1a{width:122.479467pt;}
._1c{width:125.333333pt;}
._1b{width:127.915733pt;}
._2f{width:152.672000pt;}
._32{width:164.512000pt;}
._40{width:166.298133pt;}
._4b{width:167.268267pt;}
._1e{width:178.666667pt;}
._49{width:184.165333pt;}
._2b{width:202.724800pt;}
._48{width:209.007467pt;}
._2d{width:264.111467pt;}
._3f{width:265.940800pt;}
._30{width:301.809067pt;}
._37{width:305.315733pt;}
._44{width:313.263467pt;}
._4c{width:324.018133pt;}
._2a{width:382.906133pt;}
._45{width:384.412800pt;}
._25{width:394.176000pt;}
._3c{width:406.070933pt;}
._3a{width:412.144000pt;}
._34{width:461.138133pt;}
._4a{width:621.419733pt;}
._28{width:881.502933pt;}
._4d{width:962.000533pt;}
._2c{width:1705.167467pt;}
._41{width:2182.246400pt;}
._36{width:2916.028800pt;}
._33{width:3591.031467pt;}
._35{width:4082.981867pt;}
.fsb{font-size:31.093333pt;}
.fsa{font-size:34.202667pt;}
.fs1{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:67.200000pt;}
.fs9{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.fs7{font-size:90.666667pt;}
.fs3{font-size:96.000000pt;}
.fs5{font-size:97.066667pt;}
.fs4{font-size:138.666667pt;}
.fsc{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:44.456400pt;}
.y2b7{bottom:77.143600pt;}
.y168{bottom:77.663333pt;}
.y1d0{bottom:78.797200pt;}
.y1b3{bottom:84.528933pt;}
.y1d1{bottom:84.765200pt;}
.yb5{bottom:85.726267pt;}
.y14a{bottom:86.660667pt;}
.y123{bottom:86.912667pt;}
.ybd{bottom:87.059600pt;}
.y195{bottom:87.099200pt;}
.y167{bottom:87.112133pt;}
.y159{bottom:88.832933pt;}
.y1d7{bottom:88.854400pt;}
.y18e{bottom:90.166267pt;}
.y94{bottom:91.486667pt;}
.ybe{bottom:91.499600pt;}
.y1cf{bottom:93.159467pt;}
.y4c{bottom:95.259200pt;}
.y6e{bottom:95.282000pt;}
.y21{bottom:95.671600pt;}
.y2b6{bottom:97.148933pt;}
.y2de{bottom:97.770533pt;}
.y252{bottom:97.847867pt;}
.y214{bottom:97.859333pt;}
.y293{bottom:97.958267pt;}
.y11{bottom:100.411067pt;}
.y166{bottom:101.474400pt;}
.y18d{bottom:101.726267pt;}
.y149{bottom:102.660667pt;}
.y122{bottom:102.912667pt;}
.y14b{bottom:103.059600pt;}
.y1d6{bottom:103.168000pt;}
.y170{bottom:104.832933pt;}
.y93{bottom:106.153333pt;}
.yb4{bottom:106.166267pt;}
.y1ce{bottom:107.521600pt;}
.y1d8{bottom:110.528933pt;}
.y15d{bottom:111.195467pt;}
.yde{bottom:111.195600pt;}
.y169{bottom:111.431867pt;}
.y6{bottom:113.365867pt;}
.y4b{bottom:115.259200pt;}
.y6d{bottom:115.282000pt;}
.y11b{bottom:116.392933pt;}
.y2b5{bottom:117.154267pt;}
.y92{bottom:117.713333pt;}
.y193{bottom:117.726267pt;}
.y2dd{bottom:117.775867pt;}
.y251{bottom:117.847867pt;}
.y213{bottom:117.859333pt;}
.y292{bottom:117.963600pt;}
.y148{bottom:118.660667pt;}
.y121{bottom:118.912667pt;}
.yb7{bottom:120.832933pt;}
.yb6{bottom:132.392933pt;}
.y10{bottom:132.411067pt;}
.y147{bottom:134.660667pt;}
.y91{bottom:136.820000pt;}
.y152{bottom:136.832933pt;}
.y2b4{bottom:137.159600pt;}
.y72{bottom:137.172667pt;}
.y156{bottom:137.195600pt;}
.y2dc{bottom:137.781200pt;}
.y250{bottom:137.847867pt;}
.yb3{bottom:137.848000pt;}
.y212{bottom:137.859333pt;}
.y15c{bottom:137.862133pt;}
.ydd{bottom:137.862267pt;}
.y16f{bottom:138.075733pt;}
.y10a{bottom:138.098533pt;}
.y120{bottom:139.352667pt;}
.y90{bottom:148.380000pt;}
.ybc{bottom:148.392933pt;}
.yf{bottom:148.411067pt;}
.y1d5{bottom:148.570933pt;}
.y146{bottom:150.660667pt;}
.y2b3{bottom:157.164933pt;}
.y26e{bottom:157.172667pt;}
.y1f0{bottom:157.195600pt;}
.y2db{bottom:157.786533pt;}
.y258{bottom:157.847867pt;}
.y291{bottom:157.959600pt;}
.y1c4{bottom:158.167333pt;}
.y4a{bottom:163.839333pt;}
.y6c{bottom:163.862267pt;}
.yb2{bottom:164.514667pt;}
.y15b{bottom:164.528800pt;}
.ydc{bottom:164.528933pt;}
.y16e{bottom:164.742400pt;}
.y109{bottom:164.765200pt;}
.y8f{bottom:167.486667pt;}
.y145{bottom:171.100667pt;}
.ye{bottom:172.411067pt;}
.y1ef{bottom:177.195600pt;}
.y2da{bottom:177.791867pt;}
.y234{bottom:177.825067pt;}
.y24f{bottom:177.847867pt;}
.y211{bottom:177.859333pt;}
.y290{bottom:177.964933pt;}
.y144{bottom:182.660667pt;}
.y11f{bottom:182.912667pt;}
.y20{bottom:186.338267pt;}
.y49{bottom:190.506000pt;}
.y6b{bottom:190.528933pt;}
.ybb{bottom:191.181200pt;}
.yb1{bottom:191.181333pt;}
.y11a{bottom:191.195467pt;}
.ydb{bottom:191.195600pt;}
.y16d{bottom:191.409067pt;}
.y108{bottom:191.431867pt;}
.y2b2{bottom:197.160933pt;}
.y26d{bottom:197.172667pt;}
.y1ee{bottom:197.195600pt;}
.y233{bottom:197.825067pt;}
.y24e{bottom:197.847867pt;}
.y210{bottom:197.859333pt;}
.y143{bottom:203.100667pt;}
.y5{bottom:208.066400pt;}
.y142{bottom:214.660667pt;}
.y2b1{bottom:217.166267pt;}
.y48{bottom:217.172667pt;}
.y6a{bottom:217.195600pt;}
.y2d9{bottom:217.787867pt;}
.y232{bottom:217.825067pt;}
.y8e{bottom:217.847867pt;}
.yb0{bottom:217.848000pt;}
.y119{bottom:217.862133pt;}
.y11e{bottom:217.862267pt;}
.y28f{bottom:217.960933pt;}
.y16c{bottom:218.075733pt;}
.y107{bottom:218.098533pt;}
.y1cd{bottom:223.731600pt;}
.y4{bottom:224.066400pt;}
.y141{bottom:230.660667pt;}
.y2b0{bottom:237.171600pt;}
.y1ed{bottom:237.195600pt;}
.y2d8{bottom:237.793200pt;}
.y257{bottom:237.847867pt;}
.y20f{bottom:237.859333pt;}
.y28e{bottom:237.966267pt;}
.y313{bottom:238.101067pt;}
.y151{bottom:239.210133pt;}
.y1be{bottom:239.731600pt;}
.y3{bottom:240.066400pt;}
.y47{bottom:243.839333pt;}
.y69{bottom:243.862267pt;}
.y8d{bottom:244.514533pt;}
.yaf{bottom:244.514667pt;}
.y118{bottom:244.528800pt;}
.yda{bottom:244.528933pt;}
.y18c{bottom:244.574267pt;}
.y13e{bottom:244.742400pt;}
.y106{bottom:244.765200pt;}
.y140{bottom:251.100667pt;}
.y1b2{bottom:255.731600pt;}
.y2{bottom:256.066400pt;}
.y26c{bottom:257.172667pt;}
.y2af{bottom:257.176933pt;}
.y1ec{bottom:257.195600pt;}
.y2d7{bottom:257.798533pt;}
.y231{bottom:257.825067pt;}
.y24d{bottom:257.847867pt;}
.y20e{bottom:257.859333pt;}
.y13f{bottom:262.660667pt;}
.y303{bottom:264.484800pt;}
.y312{bottom:264.767733pt;}
.y1f{bottom:266.338267pt;}
.y46{bottom:270.506000pt;}
.y68{bottom:270.528933pt;}
.y1a4{bottom:270.649600pt;}
.y8c{bottom:271.181200pt;}
.yae{bottom:271.181333pt;}
.y117{bottom:271.195467pt;}
.yd9{bottom:271.195600pt;}
.y18b{bottom:271.238267pt;}
.y16b{bottom:271.409067pt;}
.y105{bottom:271.431867pt;}
.y1b1{bottom:271.731600pt;}
.y1{bottom:276.466133pt;}
.y28d{bottom:277.170267pt;}
.y26b{bottom:277.172667pt;}
.y2ae{bottom:277.182267pt;}
.y2d6{bottom:277.803867pt;}
.y230{bottom:277.825067pt;}
.y24c{bottom:277.847867pt;}
.y1e{bottom:282.338267pt;}
.y2fa{bottom:282.782000pt;}
.y1a2{bottom:288.938933pt;}
.y300{bottom:291.075867pt;}
.y302{bottom:291.151467pt;}
.y150{bottom:297.034133pt;}
.y45{bottom:297.172667pt;}
.y67{bottom:297.195600pt;}
.y2d5{bottom:297.809200pt;}
.y22f{bottom:297.825067pt;}
.yba{bottom:297.847867pt;}
.y155{bottom:297.848000pt;}
.y20d{bottom:297.859333pt;}
.y116{bottom:297.862133pt;}
.yd8{bottom:297.862267pt;}
.y18a{bottom:297.902267pt;}
.y13d{bottom:298.075733pt;}
.y104{bottom:298.098533pt;}
.y1a7{bottom:301.221867pt;}
.y1c0{bottom:313.770400pt;}
.y28c{bottom:317.166267pt;}
.y26a{bottom:317.172667pt;}
.y2ad{bottom:317.178267pt;}
.y1eb{bottom:317.195600pt;}
.y2ff{bottom:317.742533pt;}
.y301{bottom:317.818133pt;}
.y22e{bottom:317.825067pt;}
.y256{bottom:317.847867pt;}
.y20c{bottom:317.859333pt;}
.y2f5{bottom:318.512667pt;}
.y44{bottom:323.839333pt;}
.y66{bottom:323.862267pt;}
.y8b{bottom:324.514533pt;}
.yad{bottom:324.514667pt;}
.y115{bottom:324.528800pt;}
.yd7{bottom:324.528933pt;}
.y189{bottom:324.566267pt;}
.y13c{bottom:324.742400pt;}
.y158{bottom:324.765200pt;}
.y1a6{bottom:327.888533pt;}
.y1d{bottom:330.338267pt;}
.y28b{bottom:337.171600pt;}
.y269{bottom:337.172667pt;}
.y2ac{bottom:337.183600pt;}
.y1ea{bottom:337.195600pt;}
.y2d4{bottom:337.805200pt;}
.y24b{bottom:337.847867pt;}
.y20b{bottom:337.859333pt;}
.y1c{bottom:346.338267pt;}
.y1c2{bottom:348.466533pt;}
.y43{bottom:350.506000pt;}
.y65{bottom:350.528933pt;}
.y8a{bottom:351.181200pt;}
.yac{bottom:351.181333pt;}
.y114{bottom:351.195467pt;}
.yd6{bottom:351.195600pt;}
.y188{bottom:351.230267pt;}
.y13b{bottom:351.409067pt;}
.y103{bottom:351.431867pt;}
.ya{bottom:353.756400pt;}
.y1a5{bottom:354.555200pt;}
.y2ab{bottom:357.188933pt;}
.y2d3{bottom:357.810533pt;}
.y22d{bottom:357.825067pt;}
.y24a{bottom:357.847867pt;}
.y20a{bottom:357.859333pt;}
.y1b{bottom:362.338267pt;}
.y198{bottom:366.872800pt;}
.y163{bottom:369.673200pt;}
.y305{bottom:371.563067pt;}
.y2f4{bottom:372.257467pt;}
.y1aa{bottom:373.600400pt;}
.y28a{bottom:377.167600pt;}
.y71{bottom:377.172667pt;}
.y2aa{bottom:377.194267pt;}
.y64{bottom:377.195600pt;}
.y22c{bottom:377.825067pt;}
.y89{bottom:377.847867pt;}
.yab{bottom:377.848000pt;}
.y15a{bottom:377.862133pt;}
.yd5{bottom:377.862267pt;}
.y187{bottom:377.894267pt;}
.y13a{bottom:378.075733pt;}
.y102{bottom:378.098533pt;}
.y9{bottom:385.760400pt;}
.y1a{bottom:394.338267pt;}
.y268{bottom:397.172667pt;}
.y289{bottom:397.172933pt;}
.y1e9{bottom:397.195600pt;}
.y2d2{bottom:397.806533pt;}
.y22b{bottom:397.825067pt;}
.y255{bottom:397.847867pt;}
.y209{bottom:397.859333pt;}
.y42{bottom:403.839333pt;}
.y63{bottom:403.862267pt;}
.y88{bottom:404.514533pt;}
.yaa{bottom:404.514667pt;}
.y113{bottom:404.528800pt;}
.yd4{bottom:404.528933pt;}
.y186{bottom:404.558267pt;}
.y139{bottom:404.742400pt;}
.y101{bottom:404.765200pt;}
.y19{bottom:410.338267pt;}
.y288{bottom:417.178267pt;}
.y2a9{bottom:417.190267pt;}
.y1e8{bottom:417.195600pt;}
.y2d1{bottom:417.811867pt;}
.y249{bottom:417.847867pt;}
.y208{bottom:417.859333pt;}
.y8{bottom:421.760400pt;}
.y1c1{bottom:423.112133pt;}
.y41{bottom:430.506000pt;}
.y62{bottom:430.528933pt;}
.y2f3{bottom:430.540400pt;}
.y87{bottom:431.181200pt;}
.ya9{bottom:431.181333pt;}
.y112{bottom:431.195467pt;}
.yd3{bottom:431.195600pt;}
.y185{bottom:431.222267pt;}
.y138{bottom:431.409067pt;}
.y2a{bottom:431.431867pt;}
.y1d4{bottom:434.870133pt;}
.y2a8{bottom:437.124933pt;}
.y267{bottom:437.172667pt;}
.y2d0{bottom:437.817200pt;}
.y22a{bottom:437.825067pt;}
.y248{bottom:437.847867pt;}
.y18{bottom:442.338267pt;}
.y1bf{bottom:442.387733pt;}
.y199{bottom:446.545200pt;}
.y29{bottom:447.431867pt;}
.y1d2{bottom:453.767733pt;}
.y2a7{bottom:457.130267pt;}
.y40{bottom:457.172667pt;}
.y287{bottom:457.174267pt;}
.y61{bottom:457.195600pt;}
.y2cf{bottom:457.822533pt;}
.y229{bottom:457.825067pt;}
.y86{bottom:457.847867pt;}
.ya8{bottom:457.848000pt;}
.y207{bottom:457.859333pt;}
.y111{bottom:457.862133pt;}
.yd2{bottom:457.862267pt;}
.y184{bottom:457.886267pt;}
.y137{bottom:458.075733pt;}
.y100{bottom:458.098533pt;}
.y17{bottom:458.338267pt;}
.y1b0{bottom:462.723733pt;}
.y2f9{bottom:470.754667pt;}
.y310{bottom:472.294800pt;}
.y2a6{bottom:477.135600pt;}
.y266{bottom:477.172667pt;}
.y1e7{bottom:477.195600pt;}
.y247{bottom:477.847867pt;}
.y206{bottom:477.859333pt;}
.y1af{bottom:478.723733pt;}
.y3f{bottom:483.839333pt;}
.y60{bottom:483.862267pt;}
.y85{bottom:484.514533pt;}
.ya7{bottom:484.514667pt;}
.y110{bottom:484.528800pt;}
.yd1{bottom:484.528933pt;}
.y183{bottom:484.550267pt;}
.y136{bottom:484.742400pt;}
.yff{bottom:484.765200pt;}
.y1cc{bottom:488.876000pt;}
.y16{bottom:490.338267pt;}
.y1c3{bottom:492.372000pt;}
.y28{bottom:494.098533pt;}
.y1ae{bottom:494.723733pt;}
.y1b6{bottom:496.435067pt;}
.y2a5{bottom:497.140933pt;}
.y286{bottom:497.170267pt;}
.y2f8{bottom:497.421333pt;}
.y307{bottom:497.589333pt;}
.y2ce{bottom:497.818533pt;}
.y228{bottom:497.825067pt;}
.y246{bottom:497.847867pt;}
.y30f{bottom:498.961467pt;}
.y19e{bottom:502.576800pt;}
.y15{bottom:506.338267pt;}
.y1ca{bottom:507.395600pt;}
.y27{bottom:510.098533pt;}
.y3e{bottom:510.506000pt;}
.y5f{bottom:510.528933pt;}
.y2f2{bottom:510.540400pt;}
.y84{bottom:511.181200pt;}
.ya6{bottom:511.181333pt;}
.y10f{bottom:511.195467pt;}
.yd0{bottom:511.195600pt;}
.y182{bottom:511.214267pt;}
.y135{bottom:511.409067pt;}
.yfe{bottom:511.431867pt;}
.y2d{bottom:513.862267pt;}
.y2a4{bottom:517.146267pt;}
.y265{bottom:517.172667pt;}
.y285{bottom:517.175600pt;}
.y1e6{bottom:517.195600pt;}
.y2cd{bottom:517.823867pt;}
.y227{bottom:517.825067pt;}
.y254{bottom:517.847867pt;}
.y205{bottom:517.859333pt;}
.y22{bottom:521.744400pt;}
.y306{bottom:524.256000pt;}
.y2fe{bottom:524.423867pt;}
.yd{bottom:528.411067pt;}
.y162{bottom:531.059067pt;}
.y7{bottom:531.667333pt;}
.y1b8{bottom:533.663333pt;}
.y2a3{bottom:537.151600pt;}
.y3d{bottom:537.172667pt;}
.y5e{bottom:537.195600pt;}
.y2f1{bottom:537.207067pt;}
.yc{bottom:537.744400pt;}
.y226{bottom:537.825067pt;}
.yb9{bottom:537.847867pt;}
.ya5{bottom:537.848000pt;}
.y204{bottom:537.859333pt;}
.y10e{bottom:537.862133pt;}
.ycf{bottom:537.862267pt;}
.y181{bottom:537.878267pt;}
.y134{bottom:538.075733pt;}
.y26{bottom:538.098533pt;}
.y14{bottom:538.338267pt;}
.y164{bottom:544.287467pt;}
.y1a9{bottom:544.435067pt;}
.y2c{bottom:545.862267pt;}
.y2fd{bottom:551.090533pt;}
.y13{bottom:554.338267pt;}
.y284{bottom:557.171600pt;}
.y264{bottom:557.172667pt;}
.y2cc{bottom:557.819867pt;}
.y245{bottom:557.847867pt;}
.y203{bottom:557.859333pt;}
.yb{bottom:560.411067pt;}
.y3c{bottom:563.839333pt;}
.y5d{bottom:563.862267pt;}
.y83{bottom:564.514533pt;}
.y154{bottom:564.514667pt;}
.y10d{bottom:564.528800pt;}
.yce{bottom:564.528933pt;}
.y133{bottom:564.742400pt;}
.yfd{bottom:564.765200pt;}
.y2b{bottom:565.862267pt;}
.y25{bottom:570.098533pt;}
.y12{bottom:570.338267pt;}
.y19a{bottom:572.403467pt;}
.y1b7{bottom:572.781467pt;}
.y2a2{bottom:577.147600pt;}
.y283{bottom:577.176933pt;}
.y1e5{bottom:577.195600pt;}
.y14f{bottom:577.482133pt;}
.y225{bottom:577.825067pt;}
.y2cb{bottom:577.825200pt;}
.y244{bottom:577.847867pt;}
.y202{bottom:577.859333pt;}
.y30a{bottom:578.000800pt;}
.y304{bottom:578.220533pt;}
.y3b{bottom:590.506000pt;}
.y5c{bottom:590.528933pt;}
.y2f0{bottom:590.540400pt;}
.y82{bottom:591.181200pt;}
.ya4{bottom:591.181333pt;}
.y10c{bottom:591.195467pt;}
.ycd{bottom:591.195600pt;}
.y180{bottom:591.206267pt;}
.y132{bottom:591.409067pt;}
.yfc{bottom:591.431867pt;}
.y18f{bottom:596.117333pt;}
.y2a1{bottom:597.152933pt;}
.y263{bottom:597.172667pt;}
.y282{bottom:597.182267pt;}
.y1e4{bottom:597.195600pt;}
.y224{bottom:597.825067pt;}
.y2ca{bottom:597.830533pt;}
.y243{bottom:597.847867pt;}
.y24{bottom:602.098533pt;}
.y2a0{bottom:617.158267pt;}
.y70{bottom:617.172667pt;}
.y5b{bottom:617.195600pt;}
.y223{bottom:617.825067pt;}
.y81{bottom:617.847867pt;}
.ya3{bottom:617.848000pt;}
.y201{bottom:617.859333pt;}
.yed{bottom:617.862133pt;}
.y11d{bottom:617.862267pt;}
.y17f{bottom:617.870267pt;}
.y131{bottom:618.075733pt;}
.yfb{bottom:618.098533pt;}
.y19c{bottom:635.975200pt;}
.y29f{bottom:637.163600pt;}
.y281{bottom:637.178267pt;}
.y1e3{bottom:637.195600pt;}
.y165{bottom:637.263733pt;}
.y2c9{bottom:637.826533pt;}
.y242{bottom:637.847867pt;}
.y200{bottom:637.859333pt;}
.y3a{bottom:643.839333pt;}
.y5a{bottom:643.862267pt;}
.y2ef{bottom:643.873733pt;}
.y80{bottom:644.514533pt;}
.ya2{bottom:644.514667pt;}
.yec{bottom:644.528800pt;}
.ycc{bottom:644.528933pt;}
.y17e{bottom:644.534267pt;}
.y130{bottom:644.742400pt;}
.yfa{bottom:644.765200pt;}
.y1c9{bottom:644.970400pt;}
.y1c6{bottom:647.805067pt;}
.y1b4{bottom:655.175200pt;}
.y262{bottom:657.172667pt;}
.y1e2{bottom:657.195600pt;}
.y1a8{bottom:657.820800pt;}
.y222{bottom:657.825067pt;}
.y2c8{bottom:657.831867pt;}
.y241{bottom:657.847867pt;}
.y1ff{bottom:657.859333pt;}
.y1ac{bottom:657.862267pt;}
.y39{bottom:670.506000pt;}
.y59{bottom:670.528933pt;}
.y2ee{bottom:670.540400pt;}
.y7f{bottom:671.181200pt;}
.ya1{bottom:671.181333pt;}
.yeb{bottom:671.195467pt;}
.ycb{bottom:671.195600pt;}
.y17d{bottom:671.198267pt;}
.y16a{bottom:671.409067pt;}
.yf9{bottom:671.431867pt;}
.y29e{bottom:677.159600pt;}
.y261{bottom:677.172667pt;}
.y280{bottom:677.174267pt;}
.y315{bottom:677.436000pt;}
.y221{bottom:677.825067pt;}
.y2c7{bottom:677.837200pt;}
.y240{bottom:677.847867pt;}
.y1fe{bottom:677.859333pt;}
.y30e{bottom:693.026533pt;}
.y1a3{bottom:696.602400pt;}
.y29d{bottom:697.164933pt;}
.y38{bottom:697.172667pt;}
.y27f{bottom:697.179600pt;}
.y58{bottom:697.195600pt;}
.y2ed{bottom:697.207067pt;}
.y220{bottom:697.825067pt;}
.y2c6{bottom:697.842533pt;}
.y7e{bottom:697.847867pt;}
.ya0{bottom:697.848000pt;}
.yea{bottom:697.862133pt;}
.yca{bottom:697.862267pt;}
.y17c{bottom:697.870267pt;}
.y12f{bottom:698.075733pt;}
.y157{bottom:698.098533pt;}
.y1bd{bottom:700.300133pt;}
.y314{bottom:704.102667pt;}
.y1c5{bottom:706.009867pt;}
.y1ad{bottom:716.300133pt;}
.y29c{bottom:717.170267pt;}
.y27e{bottom:717.184933pt;}
.y1e1{bottom:717.195600pt;}
.y2c5{bottom:717.782533pt;}
.y23f{bottom:717.847867pt;}
.y1fd{bottom:717.859333pt;}
.y1a1{bottom:718.860267pt;}
.y30d{bottom:719.693200pt;}
.y37{bottom:723.839333pt;}
.y57{bottom:723.862267pt;}
.y2ec{bottom:723.873733pt;}
.y7d{bottom:724.514533pt;}
.y9f{bottom:724.514667pt;}
.ye9{bottom:724.528800pt;}
.yc9{bottom:724.528933pt;}
.y17b{bottom:724.534267pt;}
.y12e{bottom:724.742400pt;}
.yf8{bottom:724.765200pt;}
.y161{bottom:725.326800pt;}
.y2f7{bottom:730.769333pt;}
.y1b9{bottom:735.868133pt;}
.y260{bottom:737.172667pt;}
.y29b{bottom:737.175600pt;}
.y27d{bottom:737.190267pt;}
.y1e0{bottom:737.195600pt;}
.y2c4{bottom:737.787867pt;}
.y21f{bottom:737.825067pt;}
.y23e{bottom:737.847867pt;}
.y1fc{bottom:737.859333pt;}
.y1bb{bottom:742.671200pt;}
.y309{bottom:744.186667pt;}
.y30c{bottom:746.359867pt;}
.y36{bottom:750.506000pt;}
.y56{bottom:750.528933pt;}
.y2eb{bottom:750.540400pt;}
.y9e{bottom:751.181333pt;}
.ye8{bottom:751.195467pt;}
.yc8{bottom:751.195600pt;}
.y17a{bottom:751.198267pt;}
.y12d{bottom:751.409067pt;}
.yf7{bottom:751.431867pt;}
.y25f{bottom:757.172667pt;}
.y29a{bottom:757.180933pt;}
.y27c{bottom:757.195600pt;}
.y2c3{bottom:757.793200pt;}
.y2fc{bottom:757.809733pt;}
.y21e{bottom:757.825067pt;}
.y23d{bottom:757.847867pt;}
.y1fb{bottom:757.859333pt;}
.y2e4{bottom:758.662267pt;}
.y192{bottom:761.002000pt;}
.y15f{bottom:774.082667pt;}
.y19f{bottom:774.608267pt;}
.y35{bottom:777.172667pt;}
.y55{bottom:777.195600pt;}
.y2ea{bottom:777.207067pt;}
.y2c2{bottom:777.798533pt;}
.y21d{bottom:777.825067pt;}
.y7c{bottom:777.847867pt;}
.y9d{bottom:777.848000pt;}
.y1fa{bottom:777.859333pt;}
.ye7{bottom:777.862133pt;}
.yc7{bottom:777.862267pt;}
.y179{bottom:777.886267pt;}
.y12c{bottom:778.075733pt;}
.yf6{bottom:778.098533pt;}
.y2e3{bottom:778.662267pt;}
.y2fb{bottom:784.476400pt;}
.y2f6{bottom:784.514133pt;}
.y1d3{bottom:796.759867pt;}
.y299{bottom:797.176933pt;}
.y27b{bottom:797.191600pt;}
.y1df{bottom:797.195600pt;}
.y2c1{bottom:797.803867pt;}
.y21c{bottom:797.825067pt;}
.y253{bottom:797.847867pt;}
.y30b{bottom:797.931600pt;}
.y2e2{bottom:798.662267pt;}
.y274{bottom:799.462267pt;}
.y311{bottom:800.104800pt;}
.y6f{bottom:803.839333pt;}
.y54{bottom:803.862267pt;}
.y7b{bottom:804.514533pt;}
.y9c{bottom:804.514667pt;}
.ye6{bottom:804.528800pt;}
.yc6{bottom:804.528933pt;}
.y178{bottom:804.550267pt;}
.y12b{bottom:804.742400pt;}
.yf5{bottom:804.765200pt;}
.y1cb{bottom:816.938933pt;}
.y25e{bottom:817.172667pt;}
.y298{bottom:817.182267pt;}
.y1de{bottom:817.195600pt;}
.y27a{bottom:817.196933pt;}
.y2c0{bottom:817.809200pt;}
.y23c{bottom:817.847867pt;}
.y1f9{bottom:817.859333pt;}
.y2e1{bottom:818.662267pt;}
.y1c7{bottom:826.387733pt;}
.y160{bottom:827.374000pt;}
.y1c8{bottom:829.033467pt;}
.y34{bottom:830.506000pt;}
.y53{bottom:830.528933pt;}
.y7a{bottom:831.181200pt;}
.y9b{bottom:831.181333pt;}
.ye5{bottom:831.195467pt;}
.yc5{bottom:831.195600pt;}
.y177{bottom:831.214267pt;}
.y12a{bottom:831.409067pt;}
.yf4{bottom:831.431867pt;}
.y196{bottom:835.874400pt;}
.y14e{bottom:836.762133pt;}
.y25d{bottom:837.172667pt;}
.y297{bottom:837.187600pt;}
.y1ba{bottom:837.253867pt;}
.y21b{bottom:837.825067pt;}
.y23b{bottom:837.847867pt;}
.y1f8{bottom:837.859333pt;}
.y2e0{bottom:838.662267pt;}
.y33{bottom:857.172667pt;}
.y279{bottom:857.192933pt;}
.y52{bottom:857.195600pt;}
.y2bf{bottom:857.805200pt;}
.y21a{bottom:857.825067pt;}
.y79{bottom:857.847867pt;}
.y9a{bottom:857.848000pt;}
.y1f7{bottom:857.859333pt;}
.ye4{bottom:857.862133pt;}
.yc4{bottom:857.862267pt;}
.y176{bottom:857.878267pt;}
.y129{bottom:858.075733pt;}
.yf3{bottom:858.098533pt;}
.y191{bottom:865.694933pt;}
.y296{bottom:877.183600pt;}
.y1dd{bottom:877.195600pt;}
.y278{bottom:877.198267pt;}
.y2be{bottom:877.810533pt;}
.y23a{bottom:877.847867pt;}
.y273{bottom:877.862267pt;}
.y32{bottom:883.839333pt;}
.y51{bottom:883.862267pt;}
.y2e9{bottom:883.873733pt;}
.y78{bottom:884.514533pt;}
.y99{bottom:884.514667pt;}
.ye3{bottom:884.528800pt;}
.yc3{bottom:884.528933pt;}
.y175{bottom:884.542267pt;}
.y128{bottom:884.742400pt;}
.yf2{bottom:884.765200pt;}
.y14d{bottom:890.058133pt;}
.y25c{bottom:897.172667pt;}
.y295{bottom:897.188933pt;}
.y1dc{bottom:897.195600pt;}
.y2bd{bottom:897.815867pt;}
.y219{bottom:897.825067pt;}
.y239{bottom:897.847867pt;}
.y1f6{bottom:897.859333pt;}
.y272{bottom:897.862267pt;}
.y190{bottom:898.576800pt;}
.y1bc{bottom:901.411467pt;}
.y31{bottom:910.506000pt;}
.y50{bottom:910.528933pt;}
.y2e8{bottom:910.540400pt;}
.y77{bottom:911.181200pt;}
.y98{bottom:911.181333pt;}
.y10b{bottom:911.195467pt;}
.y11c{bottom:911.195600pt;}
.y174{bottom:911.206267pt;}
.y127{bottom:911.409067pt;}
.yf1{bottom:911.431867pt;}
.y19b{bottom:913.316933pt;}
.y25b{bottom:917.172667pt;}
.y277{bottom:917.194267pt;}
.y1db{bottom:917.195600pt;}
.y2bc{bottom:917.821200pt;}
.y218{bottom:917.825067pt;}
.y238{bottom:917.847867pt;}
.y1f5{bottom:917.859333pt;}
.y2df{bottom:917.862267pt;}
.y15e{bottom:922.240267pt;}
.y1ab{bottom:934.712533pt;}
.y197{bottom:937.033467pt;}
.y30{bottom:937.172667pt;}
.y4f{bottom:937.195600pt;}
.y276{bottom:937.199600pt;}
.y2e7{bottom:937.207067pt;}
.y2bb{bottom:937.826533pt;}
.y76{bottom:937.847867pt;}
.y153{bottom:937.848000pt;}
.ye2{bottom:937.862133pt;}
.yc2{bottom:937.862267pt;}
.y173{bottom:937.870267pt;}
.y126{bottom:938.075733pt;}
.yf0{bottom:938.098533pt;}
.y14c{bottom:943.354133pt;}
.y1a0{bottom:945.253867pt;}
.y1b5{bottom:951.868133pt;}
.y25a{bottom:957.172667pt;}
.y294{bottom:957.190267pt;}
.y1da{bottom:957.195600pt;}
.y217{bottom:957.825067pt;}
.y2ba{bottom:957.831867pt;}
.y237{bottom:957.847867pt;}
.y1f4{bottom:957.859333pt;}
.y271{bottom:957.862267pt;}
.y2f{bottom:963.839333pt;}
.y4e{bottom:963.862267pt;}
.y2e6{bottom:963.873733pt;}
.y308{bottom:964.117333pt;}
.y75{bottom:964.514533pt;}
.y97{bottom:964.514667pt;}
.ye1{bottom:964.528800pt;}
.yc1{bottom:964.528933pt;}
.y172{bottom:964.534267pt;}
.y125{bottom:964.742400pt;}
.yef{bottom:964.765200pt;}
.y259{bottom:977.172667pt;}
.y1d9{bottom:977.195600pt;}
.y216{bottom:977.825067pt;}
.y2b9{bottom:977.837200pt;}
.y236{bottom:977.847867pt;}
.y1f3{bottom:977.859333pt;}
.y270{bottom:977.862267pt;}
.y194{bottom:990.506000pt;}
.yb8{bottom:990.528933pt;}
.y74{bottom:991.181200pt;}
.y96{bottom:991.181333pt;}
.ye0{bottom:991.195467pt;}
.yc0{bottom:991.195600pt;}
.y171{bottom:991.198267pt;}
.y19d{bottom:991.431867pt;}
.y2b8{bottom:997.842533pt;}
.y235{bottom:997.847867pt;}
.y1f2{bottom:997.859333pt;}
.y26f{bottom:997.862267pt;}
.y2e{bottom:1017.172667pt;}
.y275{bottom:1017.192400pt;}
.y4d{bottom:1017.195600pt;}
.y2e5{bottom:1017.207067pt;}
.y215{bottom:1017.825067pt;}
.y73{bottom:1017.847867pt;}
.y95{bottom:1017.848000pt;}
.y1f1{bottom:1017.859333pt;}
.ydf{bottom:1017.862133pt;}
.ybf{bottom:1017.862267pt;}
.y124{bottom:1018.075733pt;}
.yee{bottom:1018.098533pt;}
.h14{height:27.282578pt;}
.h13{height:29.036875pt;}
.h12{height:34.370208pt;}
.h1b{height:36.041667pt;}
.h3{height:40.520833pt;}
.h11{height:40.877604pt;}
.h10{height:44.593750pt;}
.he{height:45.568000pt;}
.h16{height:46.625000pt;}
.hb{height:46.796875pt;}
.h2{height:48.625000pt;}
.hf{height:50.645833pt;}
.ha{height:51.476562pt;}
.h1e{height:51.737896pt;}
.h1d{height:51.759229pt;}
.h15{height:52.130208pt;}
.h8{height:63.174479pt;}
.hc{height:65.515625pt;}
.h4{height:82.958333pt;}
.h19{height:84.592075pt;}
.h5{height:93.328125pt;}
.h7{height:93.344125pt;}
.h9{height:94.143229pt;}
.hd{height:94.692708pt;}
.h18{height:104.245942pt;}
.h1a{height:104.850208pt;}
.h6{height:105.354167pt;}
.h1c{height:108.925096pt;}
.h17{height:113.920000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:791.810667pt;}
.w1{width:792.000000pt;}
.w2{width:793.701333pt;}
.w3{width:794.000000pt;}
.w5{width:1587.333333pt;}
.w4{width:1587.400000pt;}
.x0{left:0.000000pt;}
.xa{left:113.385867pt;}
.x3{left:125.850000pt;}
.x8{left:134.483067pt;}
.x35{left:136.440933pt;}
.x40{left:163.464533pt;}
.x50{left:166.299200pt;}
.x47{left:189.127467pt;}
.x4c{left:191.811067pt;}
.x52{left:193.401200pt;}
.x54{left:196.452000pt;}
.x2{left:199.250000pt;}
.x9{left:202.453333pt;}
.x53{left:211.519733pt;}
.x34{left:228.661333pt;}
.x7{left:232.795600pt;}
.x42{left:234.368533pt;}
.x11{left:240.460533pt;}
.x6{left:242.511733pt;}
.x38{left:264.566800pt;}
.x30{left:272.318800pt;}
.x1b{left:274.218800pt;}
.x1e{left:276.077600pt;}
.x2a{left:279.338667pt;}
.x5{left:301.581333pt;}
.x4{left:303.236667pt;}
.x1a{left:304.495867pt;}
.x36{left:308.031467pt;}
.x3f{left:318.047200pt;}
.x71{left:322.488133pt;}
.x29{left:333.146667pt;}
.xb{left:341.193867pt;}
.x73{left:362.834533pt;}
.xd{left:373.447200pt;}
.xc{left:382.260533pt;}
.x1{left:392.385467pt;}
.x32{left:393.816667pt;}
.x2f{left:398.679600pt;}
.x31{left:402.320533pt;}
.x25{left:422.538667pt;}
.x16{left:424.327200pt;}
.x27{left:427.882667pt;}
.x28{left:442.394667pt;}
.x1f{left:448.573333pt;}
.x13{left:471.087200pt;}
.x70{left:474.047200pt;}
.x49{left:476.692933pt;}
.x55{left:498.141733pt;}
.x37{left:509.291333pt;}
.x26{left:511.850667pt;}
.x2b{left:529.722667pt;}
.x19{left:544.420533pt;}
.x2e{left:555.170533pt;}
.x17{left:564.033867pt;}
.xf{left:578.100533pt;}
.x6e{left:582.330667pt;}
.x2d{left:584.684667pt;}
.x18{left:585.780533pt;}
.x2c{left:587.898667pt;}
.x5b{left:593.385733pt;}
.x59{left:594.330667pt;}
.x33{left:600.648533pt;}
.x15{left:612.927200pt;}
.x14{left:618.113867pt;}
.x10{left:627.700533pt;}
.x43{left:636.566933pt;}
.xe{left:644.007200pt;}
.x12{left:647.180533pt;}
.x21{left:658.155467pt;}
.x1d{left:663.947467pt;}
.x23{left:664.955067pt;}
.x20{left:669.067200pt;}
.x22{left:672.635067pt;}
.x1c{left:674.859067pt;}
.x24{left:680.314933pt;}
.x5a{left:683.338533pt;}
.x56{left:690.897600pt;}
.x4e{left:694.677067pt;}
.x3c{left:697.133733pt;}
.x76{left:704.692933pt;}
.x68{left:725.480267pt;}
.x74{left:728.503867pt;}
.x6c{left:739.124400pt;}
.x58{left:751.370000pt;}
.x62{left:756.094533pt;}
.x6b{left:767.810933pt;}
.x64{left:796.535467pt;}
.x63{left:801.826800pt;}
.x66{left:807.684933pt;}
.x72{left:827.716533pt;}
.x4f{left:862.488133pt;}
.x44{left:865.606267pt;}
.x77{left:872.692933pt;}
.x3d{left:877.228267pt;}
.x5e{left:884.409467pt;}
.x57{left:901.984267pt;}
.x61{left:918.803200pt;}
.x6a{left:940.440800pt;}
.x65{left:953.196800pt;}
.x51{left:1002.039067pt;}
.x6d{left:1003.464400pt;}
.x4d{left:1005.543333pt;}
.x69{left:1027.426667pt;}
.x3a{left:1054.110133pt;}
.x60{left:1082.078667pt;}
.x75{left:1084.724400pt;}
.x3e{left:1096.818800pt;}
.x5d{left:1100.220400pt;}
.x67{left:1110.614133pt;}
.x78{left:1134.614133pt;}
.x4b{left:1137.259733pt;}
.x45{left:1142.645733pt;}
.x39{left:1164.094400pt;}
.x3b{left:1189.039333pt;}
.x6f{left:1224.188933pt;}
.x4a{left:1225.322800pt;}
.x41{left:1230.236133pt;}
.x48{left:1237.039333pt;}
.x5f{left:1257.637733pt;}
.x46{left:1259.811067pt;}
.x5c{left:1280.914000pt;}
}




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