
    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_0bbfa4ce458cb6ff005d66e6.woff')format("woff");}.ff1{font-family:ff1;line-height:0.974000;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_5509d91d73a0cf142eba950b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.905762;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_0cb8af2d859deeb79235ec65.woff')format("woff");}.ff3{font-family:ff3;line-height:1.113281;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_a3b294f8677772d2264f1dda.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_2cb86d69ecaa416a8d6bca2b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_55b0b67c223f1cd703c39daf.woff')format("woff");}.ff6{font-family:ff6;line-height:0.939453;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_d60f0416c31d2083e1d36f8e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.106934;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_4dfaf8bfd32b328a16dcb9ec.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_0bbfa4ce458cb6ff005d66e6.woff')format("woff");}.ff9{font-family:ff9;line-height:0.974000;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_e4735c340be29e10d04f636f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.905762;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_0bbfa4ce458cb6ff005d66e6.woff')format("woff");}.ffb{font-family:ffb;line-height:0.974000;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_b0a181b7d110f93d39ea1648.woff')format("woff");}.ffc{font-family:ffc;line-height:0.905762;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_6482aa8c9ca4fa7447410fb2.woff')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-51.504000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:28.800000px;}
.ls6{letter-spacing:-1.152000px;}
.ls2{letter-spacing:-1.080000px;}
.ls5{letter-spacing:-0.972000px;}
.ls4{letter-spacing:-0.960000px;}
.lsa{letter-spacing:-0.570000px;}
.ls3{letter-spacing:-0.540000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.270000px;}
.ls1{letter-spacing:2.400000px;}
.ls7{letter-spacing:7.128000px;}
.ls9{letter-spacing:7.535400px;}
.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;}
}
.ws11e{word-spacing:-15.846000px;}
.ws0{word-spacing:-15.012000px;}
.ws84{word-spacing:-13.344000px;}
.wsae{word-spacing:-12.192000px;}
.ws1{word-spacing:-11.988000px;}
.ws117{word-spacing:-7.290000px;}
.ws116{word-spacing:-6.858000px;}
.wsfd{word-spacing:-6.426000px;}
.ws102{word-spacing:-5.670000px;}
.ws118{word-spacing:-5.238000px;}
.wse2{word-spacing:-4.374000px;}
.wsd4{word-spacing:-4.266000px;}
.ws10d{word-spacing:-4.158000px;}
.ws10e{word-spacing:-3.888000px;}
.ws6d{word-spacing:-3.876000px;}
.ws10c{word-spacing:-3.834000px;}
.wsad{word-spacing:-3.363000px;}
.wsd3{word-spacing:-3.240000px;}
.wsca{word-spacing:-3.135000px;}
.wsc1{word-spacing:-3.078000px;}
.wsb7{word-spacing:-3.021000px;}
.ws9e{word-spacing:-2.964000px;}
.wsda{word-spacing:-2.916000px;}
.ws9d{word-spacing:-2.907000px;}
.ws36{word-spacing:-2.850000px;}
.ws123{word-spacing:-2.793000px;}
.ws40{word-spacing:-2.679000px;}
.ws69{word-spacing:-2.622000px;}
.ws1d{word-spacing:-2.592000px;}
.ws126{word-spacing:-2.565000px;}
.ws6c{word-spacing:-2.508000px;}
.ws71{word-spacing:-2.451000px;}
.wsa6{word-spacing:-2.394000px;}
.ws103{word-spacing:-2.376000px;}
.wsc0{word-spacing:-2.337000px;}
.wsed{word-spacing:-2.322000px;}
.ws76{word-spacing:-2.280000px;}
.wsdc{word-spacing:-2.268000px;}
.ws99{word-spacing:-2.223000px;}
.ws43{word-spacing:-2.166000px;}
.ws77{word-spacing:-2.109000px;}
.wsa{word-spacing:-2.052000px;}
.ws52{word-spacing:-1.995000px;}
.ws2d{word-spacing:-1.944000px;}
.wsbc{word-spacing:-1.938000px;}
.ws75{word-spacing:-1.881000px;}
.ws8a{word-spacing:-1.824000px;}
.ws1c{word-spacing:-1.782000px;}
.wsdd{word-spacing:-1.728000px;}
.ws96{word-spacing:-1.710000px;}
.ws54{word-spacing:-1.596000px;}
.wsac{word-spacing:-1.539000px;}
.ws4a{word-spacing:-1.482000px;}
.ws7f{word-spacing:-1.368000px;}
.wsec{word-spacing:-1.350000px;}
.ws60{word-spacing:-1.311000px;}
.wsf{word-spacing:-1.296000px;}
.wsa5{word-spacing:-1.254000px;}
.ws64{word-spacing:-1.197000px;}
.ws8c{word-spacing:-1.083000px;}
.ws10a{word-spacing:-1.080000px;}
.wsb5{word-spacing:-0.969000px;}
.ws92{word-spacing:-0.912000px;}
.ws51{word-spacing:-0.855000px;}
.ws5d{word-spacing:-0.798000px;}
.ws80{word-spacing:-0.741000px;}
.wse6{word-spacing:-0.702000px;}
.wsb8{word-spacing:-0.684000px;}
.ws91{word-spacing:-0.627000px;}
.ws39{word-spacing:-0.570000px;}
.ws27{word-spacing:-0.540000px;}
.wsc2{word-spacing:-0.513000px;}
.ws48{word-spacing:-0.456000px;}
.ws4f{word-spacing:-0.399000px;}
.wsc7{word-spacing:-0.342000px;}
.wsf5{word-spacing:-0.324000px;}
.ws8f{word-spacing:-0.285000px;}
.ws49{word-spacing:-0.228000px;}
.wsd2{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.ws120{word-spacing:0.057000px;}
.wse5{word-spacing:0.108000px;}
.ws124{word-spacing:0.114000px;}
.ws42{word-spacing:0.228000px;}
.wsfc{word-spacing:0.270000px;}
.ws70{word-spacing:0.285000px;}
.ws112{word-spacing:0.324000px;}
.ws3d{word-spacing:0.342000px;}
.wsea{word-spacing:0.378000px;}
.ws9b{word-spacing:0.456000px;}
.wsab{word-spacing:0.513000px;}
.ws12{word-spacing:0.540000px;}
.ws89{word-spacing:0.570000px;}
.ws11a{word-spacing:0.594000px;}
.ws37{word-spacing:0.627000px;}
.ws10{word-spacing:0.702000px;}
.ws3c{word-spacing:0.741000px;}
.ws68{word-spacing:0.798000px;}
.ws47{word-spacing:0.855000px;}
.ws78{word-spacing:0.912000px;}
.ws72{word-spacing:0.969000px;}
.ws85{word-spacing:0.972000px;}
.ws41{word-spacing:1.026000px;}
.ws9{word-spacing:1.080000px;}
.ws6a{word-spacing:1.083000px;}
.ws81{word-spacing:1.140000px;}
.ws35{word-spacing:1.197000px;}
.ws106{word-spacing:1.242000px;}
.ws6b{word-spacing:1.254000px;}
.ws57{word-spacing:1.311000px;}
.wsc8{word-spacing:1.368000px;}
.wsbf{word-spacing:1.425000px;}
.ws104{word-spacing:1.458000px;}
.wsa0{word-spacing:1.482000px;}
.ws55{word-spacing:1.596000px;}
.wsc4{word-spacing:1.653000px;}
.ws58{word-spacing:1.710000px;}
.wsd6{word-spacing:1.728000px;}
.ws9a{word-spacing:1.824000px;}
.wsd7{word-spacing:1.836000px;}
.wsbb{word-spacing:1.881000px;}
.wsf6{word-spacing:1.890000px;}
.wsa7{word-spacing:1.938000px;}
.ws6e{word-spacing:1.995000px;}
.wsc3{word-spacing:2.052000px;}
.ws59{word-spacing:2.109000px;}
.ws79{word-spacing:2.223000px;}
.wsd{word-spacing:2.268000px;}
.ws4c{word-spacing:2.280000px;}
.wsff{word-spacing:2.322000px;}
.ws46{word-spacing:2.337000px;}
.ws95{word-spacing:2.394000px;}
.ws53{word-spacing:2.451000px;}
.wsf7{word-spacing:2.484000px;}
.ws82{word-spacing:2.508000px;}
.ws5b{word-spacing:2.565000px;}
.ws11{word-spacing:2.592000px;}
.wsa3{word-spacing:2.679000px;}
.wsee{word-spacing:2.754000px;}
.ws93{word-spacing:2.850000px;}
.ws5f{word-spacing:2.907000px;}
.ws121{word-spacing:2.964000px;}
.ws110{word-spacing:2.970000px;}
.ws17{word-spacing:3.078000px;}
.ws119{word-spacing:3.132000px;}
.ws98{word-spacing:3.135000px;}
.ws74{word-spacing:3.192000px;}
.ws113{word-spacing:3.294000px;}
.wsdb{word-spacing:3.348000px;}
.wsa9{word-spacing:3.363000px;}
.ws38{word-spacing:3.420000px;}
.ws73{word-spacing:3.477000px;}
.wsde{word-spacing:3.510000px;}
.wsb6{word-spacing:3.591000px;}
.ws107{word-spacing:3.618000px;}
.ws2e{word-spacing:3.672000px;}
.wsce{word-spacing:3.705000px;}
.ws108{word-spacing:3.726000px;}
.ws94{word-spacing:3.762000px;}
.wsd8{word-spacing:3.780000px;}
.wsb3{word-spacing:3.819000px;}
.wscd{word-spacing:3.876000px;}
.ws67{word-spacing:3.933000px;}
.ws15{word-spacing:3.942000px;}
.ws44{word-spacing:3.990000px;}
.wsd5{word-spacing:3.996000px;}
.wsaa{word-spacing:4.047000px;}
.ws4e{word-spacing:4.104000px;}
.ws5e{word-spacing:4.218000px;}
.ws7d{word-spacing:4.332000px;}
.wsdf{word-spacing:4.374000px;}
.wsb1{word-spacing:4.389000px;}
.ws4b{word-spacing:4.446000px;}
.wsbd{word-spacing:4.503000px;}
.wsbe{word-spacing:4.560000px;}
.wsd1{word-spacing:4.590000px;}
.ws3a{word-spacing:4.617000px;}
.ws3b{word-spacing:4.731000px;}
.wsf0{word-spacing:4.752000px;}
.ws50{word-spacing:4.845000px;}
.ws8b{word-spacing:4.902000px;}
.wsf4{word-spacing:4.968000px;}
.ws9c{word-spacing:5.016000px;}
.wsb2{word-spacing:5.073000px;}
.ws100{word-spacing:5.076000px;}
.ws8e{word-spacing:5.187000px;}
.wsa1{word-spacing:5.301000px;}
.ws115{word-spacing:5.346000px;}
.ws3e{word-spacing:5.358000px;}
.wscf{word-spacing:5.415000px;}
.ws8d{word-spacing:5.472000px;}
.ws1a{word-spacing:5.508000px;}
.ws88{word-spacing:5.529000px;}
.ws11b{word-spacing:5.586000px;}
.wsd0{word-spacing:5.643000px;}
.ws66{word-spacing:5.700000px;}
.ws62{word-spacing:5.757000px;}
.ws19{word-spacing:5.778000px;}
.ws90{word-spacing:5.814000px;}
.ws14{word-spacing:5.940000px;}
.wsfe{word-spacing:5.994000px;}
.ws61{word-spacing:6.042000px;}
.ws32{word-spacing:6.264000px;}
.ws45{word-spacing:6.327000px;}
.ws9f{word-spacing:6.498000px;}
.ws6f{word-spacing:6.555000px;}
.wsc{word-spacing:6.588000px;}
.ws7b{word-spacing:6.612000px;}
.ws7c{word-spacing:6.669000px;}
.ws30{word-spacing:6.696000px;}
.wsb9{word-spacing:6.726000px;}
.wse4{word-spacing:6.804000px;}
.ws7e{word-spacing:6.840000px;}
.ws29{word-spacing:6.912000px;}
.ws5c{word-spacing:7.011000px;}
.wse{word-spacing:7.074000px;}
.ws34{word-spacing:7.125000px;}
.ws6{word-spacing:7.182000px;}
.wsc5{word-spacing:7.239000px;}
.ws3f{word-spacing:7.296000px;}
.ws125{word-spacing:7.410000px;}
.ws16{word-spacing:7.668000px;}
.ws1b{word-spacing:7.722000px;}
.ws87{word-spacing:7.752000px;}
.wse1{word-spacing:7.830000px;}
.ws28{word-spacing:7.884000px;}
.ws65{word-spacing:7.923000px;}
.ws4d{word-spacing:8.094000px;}
.wsb4{word-spacing:8.151000px;}
.ws18{word-spacing:8.154000px;}
.wsba{word-spacing:8.208000px;}
.wscc{word-spacing:8.265000px;}
.ws5a{word-spacing:8.322000px;}
.ws63{word-spacing:8.436000px;}
.wsf8{word-spacing:8.478000px;}
.wsf9{word-spacing:8.532000px;}
.ws86{word-spacing:8.664000px;}
.wsa2{word-spacing:8.721000px;}
.ws8{word-spacing:8.748000px;}
.ws56{word-spacing:8.778000px;}
.ws11c{word-spacing:8.835000px;}
.ws83{word-spacing:8.892000px;}
.wsa4{word-spacing:8.949000px;}
.wsc6{word-spacing:9.063000px;}
.ws101{word-spacing:9.126000px;}
.wscb{word-spacing:9.462000px;}
.ws3{word-spacing:10.260000px;}
.ws1e{word-spacing:10.368000px;}
.ws105{word-spacing:10.476000px;}
.ws2c{word-spacing:10.638000px;}
.ws2a{word-spacing:10.746000px;}
.wsc9{word-spacing:11.400000px;}
.ws10f{word-spacing:12.096000px;}
.ws11f{word-spacing:12.768000px;}
.wsd9{word-spacing:13.068000px;}
.ws97{word-spacing:13.281000px;}
.ws24{word-spacing:13.608000px;}
.ws10b{word-spacing:13.716000px;}
.wsf2{word-spacing:13.986000px;}
.ws122{word-spacing:14.079000px;}
.wse3{word-spacing:14.202000px;}
.ws4{word-spacing:14.364000px;}
.wsfb{word-spacing:14.850000px;}
.ws13{word-spacing:15.174000px;}
.wsef{word-spacing:15.390000px;}
.wse7{word-spacing:15.552000px;}
.wsf1{word-spacing:15.876000px;}
.ws5{word-spacing:16.902000px;}
.ws1f{word-spacing:17.118000px;}
.wse0{word-spacing:17.226000px;}
.ws26{word-spacing:17.334000px;}
.wsfa{word-spacing:17.712000px;}
.wsb{word-spacing:18.036000px;}
.ws2f{word-spacing:18.090000px;}
.ws7{word-spacing:18.522000px;}
.ws127{word-spacing:19.836000px;}
.ws114{word-spacing:20.196000px;}
.ws33{word-spacing:20.358000px;}
.wse9{word-spacing:21.168000px;}
.ws109{word-spacing:21.870000px;}
.ws31{word-spacing:27.594000px;}
.wseb{word-spacing:28.782000px;}
.ws21{word-spacing:33.102000px;}
.ws20{word-spacing:34.182000px;}
.ws11d{word-spacing:35.169000px;}
.ws111{word-spacing:35.262000px;}
.ws25{word-spacing:36.882000px;}
.ws23{word-spacing:43.632000px;}
.ws2b{word-spacing:46.656000px;}
.wsf3{word-spacing:53.244000px;}
.ws22{word-spacing:59.184000px;}
.wse8{word-spacing:83.970000px;}
.ws7a{word-spacing:479.472000px;}
.wsaf{word-spacing:998.928000px;}
.wsb0{word-spacing:1012.272000px;}
.wsa8{word-spacing:1019.040000px;}
._3e{margin-left:-63.504000px;}
._11{margin-left:-34.827000px;}
._45{margin-left:-29.925000px;}
._40{margin-left:-28.614000px;}
._46{margin-left:-23.256000px;}
._44{margin-left:-18.810000px;}
._43{margin-left:-15.846000px;}
._42{margin-left:-13.908000px;}
._47{margin-left:-12.589200px;}
._4{margin-left:-9.936000px;}
._39{margin-left:-8.611200px;}
._b{margin-left:-6.327000px;}
._1{margin-left:-5.320800px;}
._3{margin-left:-3.888000px;}
._2{margin-left:-2.656800px;}
._0{margin-left:-1.512000px;}
._5{width:1.074600px;}
._6{width:2.646000px;}
._8{width:4.179600px;}
._a{width:5.275200px;}
._d{width:6.820200px;}
._10{width:7.953600px;}
._c{width:9.171300px;}
._3a{width:10.745700px;}
._e{width:11.856600px;}
._f{width:13.051200px;}
._3c{width:16.837200px;}
._3b{width:18.732600px;}
._3f{width:23.997000px;}
._7{width:25.585200px;}
._41{width:27.885000px;}
._12{width:32.034000px;}
._21{width:45.024000px;}
._3d{width:52.498800px;}
._2e{width:67.488000px;}
._2d{width:72.048000px;}
._14{width:74.832000px;}
._13{width:82.032000px;}
._23{width:84.864000px;}
._22{width:96.912000px;}
._31{width:129.552000px;}
._17{width:130.800000px;}
._30{width:175.728000px;}
._34{width:177.504000px;}
._24{width:187.968000px;}
._35{width:189.072000px;}
._33{width:190.848000px;}
._16{width:192.672000px;}
._1c{width:199.344000px;}
._29{width:200.832000px;}
._1e{width:207.792000px;}
._38{width:209.088000px;}
._1b{width:214.464000px;}
._20{width:219.360000px;}
._37{width:222.432000px;}
._19{width:226.032000px;}
._2c{width:227.520000px;}
._25{width:229.296000px;}
._27{width:240.864000px;}
._18{width:307.632000px;}
._15{width:354.336000px;}
._28{width:410.784000px;}
._26{width:437.472000px;}
._32{width:451.920000px;}
._2f{width:505.296000px;}
._1f{width:751.920000px;}
._2b{width:754.896000px;}
._2a{width:778.896000px;}
._36{width:784.128000px;}
._1a{width:811.920000px;}
._1d{width:850.608000px;}
._9{width:1004.128800px;}
.fc2{color:rgb(101,98,99);}
.fc1{color:rgb(33,154,58);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:34.980000px;}
.fs3{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:276.000000px;}
.y0{bottom:0.000000px;}
.y52{bottom:21.257550px;}
.y1{bottom:44.880750px;}
.y51{bottom:73.907550px;}
.y17f{bottom:85.039650px;}
.y322{bottom:87.491850px;}
.y50{bottom:88.303050px;}
.y2b8{bottom:89.013600px;}
.y1f0{bottom:90.450450px;}
.y135{bottom:93.314700px;}
.y2e0{bottom:95.487900px;}
.y303{bottom:95.995650px;}
.y204{bottom:98.444700px;}
.yb4{bottom:98.957700px;}
.y15f{bottom:99.931800px;}
.y83{bottom:99.974700px;}
.y4f{bottom:102.707550px;}
.y321{bottom:103.991850px;}
.y2b7{bottom:105.513600px;}
.y26a{bottom:105.668700px;}
.y1ef{bottom:106.951950px;}
.yc4{bottom:109.500750px;}
.y2df{bottom:111.987900px;}
.y302{bottom:112.495650px;}
.y203{bottom:114.946200px;}
.yb3{bottom:115.459200px;}
.y15e{bottom:116.433300px;}
.y82{bottom:116.476200px;}
.y21e{bottom:117.980700px;}
.y134{bottom:118.323450px;}
.y17e{bottom:120.714450px;}
.y2b6{bottom:122.013600px;}
.y269{bottom:122.165700px;}
.y287{bottom:122.678700px;}
.y11d{bottom:123.164850px;}
.y1ee{bottom:123.453450px;}
.yc3{bottom:126.002250px;}
.y2f{bottom:126.793050px;}
.y4e{bottom:127.386150px;}
.y1dd{bottom:127.916850px;}
.y320{bottom:128.989350px;}
.y202{bottom:131.447700px;}
.yb2{bottom:131.960700px;}
.yf1{bottom:132.835950px;}
.y81{bottom:132.977700px;}
.y21d{bottom:134.482200px;}
.y2de{bottom:136.985550px;}
.y17d{bottom:137.215950px;}
.y301{bottom:137.494950px;}
.y2b5{bottom:138.513600px;}
.y268{bottom:138.662700px;}
.y286{bottom:139.175700px;}
.y11c{bottom:139.666350px;}
.y1ed{bottom:139.954950px;}
.y23e{bottom:141.001800px;}
.y15d{bottom:141.442050px;}
.y4d{bottom:142.384650px;}
.yc2{bottom:142.503750px;}
.y2e{bottom:142.993050px;}
.y133{bottom:143.332200px;}
.y1dc{bottom:144.418350px;}
.y31f{bottom:145.490850px;}
.yf0{bottom:147.235950px;}
.y201{bottom:147.949200px;}
.yb1{bottom:148.462200px;}
.y80{bottom:149.479200px;}
.y21c{bottom:150.983700px;}
.y1bc{bottom:151.457100px;}
.y2dd{bottom:153.487050px;}
.y17c{bottom:153.717450px;}
.y2b4{bottom:155.013600px;}
.y285{bottom:155.672700px;}
.y11b{bottom:156.167850px;}
.y1ec{bottom:156.456450px;}
.y4c{bottom:157.383150px;}
.y23d{bottom:157.498800px;}
.y15c{bottom:157.943550px;}
.y2d{bottom:159.193050px;}
.y1db{bottom:160.919850px;}
.yef{bottom:161.635950px;}
.y300{bottom:162.503700px;}
.y267{bottom:163.664700px;}
.yb0{bottom:164.963700px;}
.y21b{bottom:167.485200px;}
.yc1{bottom:167.512500px;}
.y1bb{bottom:167.958600px;}
.y132{bottom:168.340950px;}
.y17b{bottom:170.218950px;}
.y31e{bottom:170.499600px;}
.y2b3{bottom:171.513600px;}
.y4b{bottom:172.381650px;}
.y11a{bottom:172.669350px;}
.y1eb{bottom:172.957950px;}
.y23c{bottom:173.995800px;}
.y15b{bottom:174.445050px;}
.y7f{bottom:174.487950px;}
.yee{bottom:176.035950px;}
.y1da{bottom:177.421350px;}
.y2dc{bottom:178.495800px;}
.y2ff{bottom:179.003550px;}
.y266{bottom:180.161700px;}
.y284{bottom:180.674700px;}
.yaf{bottom:181.465200px;}
.ye9{bottom:183.235950px;}
.y2c{bottom:183.898050px;}
.y21a{bottom:183.986700px;}
.y1ba{bottom:184.460100px;}
.y17a{bottom:186.720450px;}
.y31d{bottom:186.999600px;}
.y2b2{bottom:188.013600px;}
.y119{bottom:189.170850px;}
.y200{bottom:189.459450px;}
.yed{bottom:190.435950px;}
.y15a{bottom:190.946550px;}
.y7e{bottom:190.989450px;}
.yc0{bottom:192.521250px;}
.y131{bottom:193.349700px;}
.y1d9{bottom:193.922850px;}
.y2db{bottom:194.995800px;}
.y4a{bottom:195.885150px;}
.y265{bottom:196.658700px;}
.y283{bottom:197.171700px;}
.yae{bottom:197.966700px;}
.y2b{bottom:200.098050px;}
.y219{bottom:200.488200px;}
.y1b9{bottom:200.961600px;}
.y179{bottom:203.221950px;}
.y23b{bottom:203.251650px;}
.y2fe{bottom:204.002700px;}
.y2b1{bottom:204.513600px;}
.yec{bottom:204.835950px;}
.y118{bottom:205.672350px;}
.y1ff{bottom:205.960950px;}
.y159{bottom:207.448050px;}
.y7d{bottom:207.490950px;}
.ybf{bottom:209.022750px;}
.y1d8{bottom:210.424350px;}
.y49{bottom:210.883650px;}
.y31c{bottom:211.997250px;}
.y282{bottom:213.668700px;}
.yad{bottom:214.468200px;}
.y2a{bottom:216.298050px;}
.y218{bottom:216.989700px;}
.y1b8{bottom:217.463100px;}
.y130{bottom:218.358450px;}
.yeb{bottom:219.235950px;}
.y2da{bottom:219.993300px;}
.y264{bottom:221.660700px;}
.y191{bottom:221.949450px;}
.y117{bottom:222.173850px;}
.y1fe{bottom:222.462450px;}
.y158{bottom:223.949550px;}
.y7c{bottom:223.992450px;}
.ybe{bottom:225.524250px;}
.y48{bottom:225.882150px;}
.y1d7{bottom:226.925850px;}
.y178{bottom:228.230700px;}
.y31b{bottom:228.498750px;}
.y2fd{bottom:229.011450px;}
.y2b0{bottom:229.512750px;}
.y281{bottom:230.165700px;}
.yac{bottom:230.969700px;}
.y29{bottom:232.498050px;}
.y217{bottom:233.491200px;}
.yea{bottom:233.635950px;}
.y1b7{bottom:233.964600px;}
.y2d9{bottom:236.494800px;}
.y263{bottom:238.157700px;}
.y190{bottom:238.450950px;}
.y116{bottom:238.675350px;}
.y1fd{bottom:238.963950px;}
.y157{bottom:240.451050px;}
.y7b{bottom:240.493950px;}
.y47{bottom:240.880650px;}
.ybd{bottom:242.025750px;}
.y12f{bottom:243.367200px;}
.y1d6{bottom:243.427350px;}
.y177{bottom:244.732200px;}
.y2fc{bottom:245.511450px;}
.y280{bottom:246.662700px;}
.yab{bottom:247.471200px;}
.y28{bottom:248.698050px;}
.y216{bottom:249.992700px;}
.y1b6{bottom:250.466100px;}
.y31a{bottom:253.507500px;}
.y23a{bottom:253.926450px;}
.y2af{bottom:254.521500px;}
.y18f{bottom:254.952450px;}
.y28f{bottom:255.063300px;}
.y1fc{bottom:255.465450px;}
.y46{bottom:255.879150px;}
.y7a{bottom:256.995450px;}
.ybc{bottom:258.527250px;}
.ye7{bottom:259.375950px;}
.y176{bottom:261.233700px;}
.y2d8{bottom:261.503550px;}
.y2fb{bottom:262.011450px;}
.y262{bottom:263.159700px;}
.y115{bottom:263.684100px;}
.yaa{bottom:263.972700px;}
.y27{bottom:264.898050px;}
.y156{bottom:265.459800px;}
.y215{bottom:266.494200px;}
.ye6{bottom:266.575950px;}
.y1b5{bottom:266.967600px;}
.y12e{bottom:268.375950px;}
.y319{bottom:270.007500px;}
.y239{bottom:270.427950px;}
.y45{bottom:270.877650px;}
.y2ae{bottom:271.021500px;}
.y28e{bottom:271.564800px;}
.y1e6{bottom:272.479950px;}
.y1d5{bottom:272.683200px;}
.y79{bottom:273.496950px;}
.ye8{bottom:273.775950px;}
.y175{bottom:277.735200px;}
.y2d7{bottom:278.003550px;}
.y2fa{bottom:278.511450px;}
.y261{bottom:279.656700px;}
.y18e{bottom:279.961200px;}
.y114{bottom:280.185600px;}
.y1ea{bottom:280.474200px;}
.y26{bottom:281.098050px;}
.y155{bottom:281.961300px;}
.y44{bottom:285.876150px;}
.y318{bottom:286.507500px;}
.y238{bottom:286.929450px;}
.ybb{bottom:287.783100px;}
.y28d{bottom:288.066300px;}
.y27f{bottom:288.161700px;}
.ya9{bottom:288.981450px;}
.y78{bottom:289.998450px;}
.y214{bottom:291.502950px;}
.y1b4{bottom:291.976350px;}
.y12d{bottom:293.384700px;}
.y174{bottom:294.236700px;}
.y2ad{bottom:296.015850px;}
.y27a{bottom:296.153700px;}
.y18d{bottom:296.462700px;}
.y113{bottom:296.687100px;}
.y1e9{bottom:296.975700px;}
.y25{bottom:297.298050px;}
.y154{bottom:298.462800px;}
.ye5{bottom:299.515950px;}
.y43{bottom:300.874650px;}
.y2d6{bottom:303.001200px;}
.y317{bottom:303.007500px;}
.y2f9{bottom:303.509100px;}
.y28c{bottom:304.567800px;}
.y260{bottom:304.658700px;}
.ya8{bottom:305.482950px;}
.y77{bottom:306.499950px;}
.y213{bottom:308.004450px;}
.y1b3{bottom:308.477850px;}
.y173{bottom:310.738200px;}
.y237{bottom:311.938200px;}
.y18c{bottom:312.964200px;}
.y112{bottom:313.188600px;}
.y1e8{bottom:313.477200px;}
.y24{bottom:313.498050px;}
.ye4{bottom:313.915950px;}
.y153{bottom:314.964300px;}
.y42{bottom:315.873150px;}
.y12c{bottom:318.393450px;}
.y2d5{bottom:319.502700px;}
.y2f8{bottom:320.010600px;}
.y2ac{bottom:321.024600px;}
.y28b{bottom:321.069300px;}
.y25f{bottom:321.155700px;}
.ya7{bottom:321.984450px;}
.y76{bottom:323.001450px;}
.y1d4{bottom:323.443950px;}
.y212{bottom:324.505950px;}
.y1b2{bottom:324.979350px;}
.y316{bottom:328.005150px;}
.y18b{bottom:329.465700px;}
.y111{bottom:329.690100px;}
.y23{bottom:329.698050px;}
.y1e7{bottom:329.978700px;}
.y41{bottom:330.871650px;}
.y172{bottom:335.746950px;}
.y236{bottom:336.946950px;}
.y25e{bottom:337.652700px;}
.ya6{bottom:338.485950px;}
.y75{bottom:339.502950px;}
.y1d3{bottom:339.945450px;}
.y152{bottom:339.973050px;}
.y211{bottom:341.007450px;}
.y1b1{bottom:341.480850px;}
.y12b{bottom:343.402200px;}
.y315{bottom:344.506650px;}
.y2d4{bottom:344.511450px;}
.y2f7{bottom:345.019350px;}
.y40{bottom:345.870150px;}
.y22{bottom:345.898050px;}
.y18a{bottom:345.967200px;}
.y2ab{bottom:346.033350px;}
.ye3{bottom:346.035150px;}
.y28a{bottom:346.157700px;}
.y110{bottom:346.191600px;}
.y1fb{bottom:346.480200px;}
.y235{bottom:353.448450px;}
.y279{bottom:354.149700px;}
.ya5{bottom:354.987450px;}
.y74{bottom:356.004450px;}
.y1d2{bottom:356.446950px;}
.y151{bottom:356.474550px;}
.y210{bottom:357.508950px;}
.y1b0{bottom:357.982350px;}
.y171{bottom:360.747600px;}
.y3f{bottom:360.868650px;}
.y2d3{bottom:361.011450px;}
.y2f6{bottom:361.519350px;}
.y21{bottom:362.098050px;}
.y189{bottom:362.468700px;}
.y2aa{bottom:362.533350px;}
.y25d{bottom:362.654700px;}
.y1fa{bottom:362.981700px;}
.y12a{bottom:368.410950px;}
.y314{bottom:369.515400px;}
.y234{bottom:369.949950px;}
.y278{bottom:370.646700px;}
.ye2{bottom:370.975950px;}
.y10f{bottom:371.200350px;}
.ya4{bottom:371.488950px;}
.y73{bottom:372.505950px;}
.y150{bottom:372.976050px;}
.y20f{bottom:374.010450px;}
.y1af{bottom:374.483850px;}
.y3e{bottom:375.867150px;}
.y2f5{bottom:378.019350px;}
.y20{bottom:378.298050px;}
.y188{bottom:378.970200px;}
.y2a9{bottom:379.033350px;}
.y25c{bottom:379.151700px;}
.y1f9{bottom:379.483200px;}
.y1d1{bottom:381.447600px;}
.y2d2{bottom:386.010600px;}
.y313{bottom:386.015400px;}
.y233{bottom:386.451450px;}
.ye1{bottom:387.477450px;}
.y10e{bottom:387.701850px;}
.ya3{bottom:387.990450px;}
.y170{bottom:388.635600px;}
.y14f{bottom:389.477550px;}
.y20e{bottom:390.511950px;}
.y3d{bottom:390.865650px;}
.y129{bottom:393.419700px;}
.y1f{bottom:394.498050px;}
.y2f4{bottom:394.519350px;}
.y187{bottom:395.471700px;}
.y2a8{bottom:395.533350px;}
.y277{bottom:395.648700px;}
.y1f8{bottom:395.984700px;}
.y72{bottom:397.514700px;}
.y1ae{bottom:399.492600px;}
.y16f{bottom:403.035600px;}
.ye0{bottom:403.978950px;}
.y25b{bottom:404.153700px;}
.y10d{bottom:404.203350px;}
.ya2{bottom:404.491950px;}
.y3c{bottom:405.864150px;}
.y14e{bottom:405.979050px;}
.y20d{bottom:407.013450px;}
.y1d0{bottom:409.335600px;}
.y1e{bottom:410.698050px;}
.y312{bottom:411.008250px;}
.y2d1{bottom:411.019350px;}
.y232{bottom:411.460200px;}
.y186{bottom:411.973200px;}
.y2a7{bottom:412.033350px;}
.y276{bottom:412.145700px;}
.y1f7{bottom:412.486200px;}
.y71{bottom:414.016200px;}
.y16e{bottom:415.911600px;}
.y1ad{bottom:415.994100px;}
.y128{bottom:418.428450px;}
.ydf{bottom:420.480450px;}
.y25a{bottom:420.650700px;}
.y10c{bottom:420.704850px;}
.y3b{bottom:420.862650px;}
.y1e5{bottom:420.993450px;}
.y14d{bottom:422.480550px;}
.y20c{bottom:423.514950px;}
.y1cf{bottom:423.735600px;}
.y1d{bottom:426.898050px;}
.y311{bottom:427.509750px;}
.y2d0{bottom:427.519350px;}
.y2a6{bottom:428.533350px;}
.y275{bottom:428.642700px;}
.y16d{bottom:428.787600px;}
.y1f6{bottom:428.987700px;}
.ya1{bottom:429.500700px;}
.y70{bottom:430.517700px;}
.y1ac{bottom:432.495600px;}
.y3a{bottom:435.861150px;}
.y231{bottom:436.468950px;}
.y1ce{bottom:436.611600px;}
.yde{bottom:436.981950px;}
.y259{bottom:437.147700px;}
.y10b{bottom:437.206350px;}
.y1e4{bottom:437.494950px;}
.y14c{bottom:438.982050px;}
.y1c{bottom:443.098050px;}
.y16c{bottom:443.187600px;}
.y127{bottom:443.437200px;}
.y2f3{bottom:444.019350px;}
.ya0{bottom:446.002200px;}
.y6f{bottom:447.019200px;}
.y20b{bottom:448.523700px;}
.y1ab{bottom:448.997100px;}
.y1cd{bottom:449.487600px;}
.y39{bottom:450.859650px;}
.y2cf{bottom:452.517000px;}
.y310{bottom:452.518500px;}
.y230{bottom:452.970450px;}
.ydd{bottom:453.483450px;}
.y2a5{bottom:453.532500px;}
.y274{bottom:453.644700px;}
.y1e3{bottom:453.996450px;}
.y14b{bottom:455.483550px;}
.y1b{bottom:459.298050px;}
.y2f2{bottom:460.519350px;}
.y258{bottom:462.149700px;}
.y10a{bottom:462.215100px;}
.y9f{bottom:462.503700px;}
.y6e{bottom:463.520700px;}
.y1cc{bottom:463.887600px;}
.y20a{bottom:465.025200px;}
.y1aa{bottom:465.498600px;}
.y38{bottom:465.858150px;}
.y126{bottom:468.445950px;}
.y16b{bottom:468.927600px;}
.y2ce{bottom:469.018500px;}
.y22f{bottom:469.471950px;}
.ydc{bottom:469.984950px;}
.y273{bottom:470.141700px;}
.y1e2{bottom:470.497950px;}
.y14a{bottom:471.985050px;}
.y1a{bottom:475.498050px;}
.y2f1{bottom:477.019350px;}
.y30f{bottom:477.527250px;}
.y2a4{bottom:478.541250px;}
.y257{bottom:478.646700px;}
.y9e{bottom:479.005200px;}
.y6d{bottom:480.022200px;}
.y37{bottom:480.856650px;}
.y209{bottom:481.526700px;}
.y1a9{bottom:482.000100px;}
.y22e{bottom:485.973450px;}
.ydb{bottom:486.486450px;}
.y272{bottom:486.638700px;}
.y1f5{bottom:486.999450px;}
.y109{bottom:487.223850px;}
.y1cb{bottom:489.627600px;}
.y19{bottom:491.698050px;}
.y125{bottom:493.454700px;}
.y2f0{bottom:493.519350px;}
.y2cd{bottom:494.027250px;}
.y16a{bottom:494.667600px;}
.y2a3{bottom:495.041250px;}
.y256{bottom:495.143700px;}
.y9d{bottom:495.506700px;}
.y36{bottom:495.855150px;}
.y6c{bottom:496.523700px;}
.y149{bottom:496.993800px;}
.y208{bottom:498.028200px;}
.y22d{bottom:502.474950px;}
.yda{bottom:502.987950px;}
.y1f4{bottom:503.500950px;}
.y1ca{bottom:504.027600px;}
.y1a8{bottom:507.008850px;}
.y18{bottom:507.898050px;}
.y169{bottom:509.067600px;}
.y2cc{bottom:510.527250px;}
.y35{bottom:510.853650px;}
.y2a2{bottom:511.541250px;}
.y255{bottom:511.640700px;}
.y9c{bottom:512.008200px;}
.y108{bottom:512.232600px;}
.y6b{bottom:513.025200px;}
.y148{bottom:513.495300px;}
.y207{bottom:514.529700px;}
.y124{bottom:518.463450px;}
.y2ef{bottom:518.518500px;}
.y22c{bottom:518.976450px;}
.y30e{bottom:519.023400px;}
.y185{bottom:519.489450px;}
.y1f3{bottom:520.002450px;}
.y289{bottom:520.145700px;}
.y168{bottom:521.943600px;}
.y17{bottom:524.098050px;}
.y34{bottom:525.852150px;}
.y32e{bottom:527.014650px;}
.y2cb{bottom:527.027250px;}
.yd9{bottom:527.996700px;}
.y2a1{bottom:528.041250px;}
.y254{bottom:528.137700px;}
.yba{bottom:528.509700px;}
.y6a{bottom:529.526700px;}
.y1c9{bottom:529.767600px;}
.y147{bottom:529.996800px;}
.y206{bottom:531.031200px;}
.y1a7{bottom:532.009500px;}
.y167{bottom:534.819600px;}
.y30d{bottom:535.524900px;}
.y184{bottom:535.990950px;}
.y1f2{bottom:536.503950px;}
.y288{bottom:536.642700px;}
.y9b{bottom:537.016950px;}
.y107{bottom:537.241350px;}
.y16{bottom:540.298050px;}
.y33{bottom:540.850650px;}
.y123{bottom:543.472200px;}
.y32d{bottom:543.516150px;}
.y2ca{bottom:543.527250px;}
.y22b{bottom:543.985200px;}
.y1c8{bottom:544.167600px;}
.yd8{bottom:544.498200px;}
.y2a0{bottom:544.541250px;}
.y271{bottom:544.634700px;}
.yb9{bottom:545.011200px;}
.y69{bottom:546.028200px;}
.y146{bottom:546.498300px;}
.y166{bottom:549.219600px;}
.y30c{bottom:552.026400px;}
.y1f1{bottom:553.005450px;}
.y253{bottom:553.139700px;}
.y9a{bottom:553.518450px;}
.y32{bottom:555.849150px;}
.y15{bottom:556.498050px;}
.y1c7{bottom:557.043600px;}
.y1a6{bottom:559.897500px;}
.y2c9{bottom:560.027250px;}
.y205{bottom:560.287050px;}
.yd7{bottom:560.999700px;}
.y29f{bottom:561.041250px;}
.y270{bottom:561.131700px;}
.yb8{bottom:561.512700px;}
.y106{bottom:562.250100px;}
.y68{bottom:562.529700px;}
.y122{bottom:568.480950px;}
.y32c{bottom:568.524900px;}
.y22a{bottom:568.993950px;}
.y252{bottom:569.636700px;}
.y1c6{bottom:569.919600px;}
.y99{bottom:570.019950px;}
.y31{bottom:570.847650px;}
.y145{bottom:571.507050px;}
.y14{bottom:572.698050px;}
.y1a5{bottom:574.297500px;}
.y165{bottom:574.959600px;}
.y30b{bottom:577.035150px;}
.yd6{bottom:577.501200px;}
.y29e{bottom:577.541250px;}
.yb7{bottom:578.014200px;}
.y1c5{bottom:584.319600px;}
.y2ee{bottom:585.024900px;}
.y2c8{bottom:585.026400px;}
.y229{bottom:585.495450px;}
.y30{bottom:585.846150px;}
.y251{bottom:586.133700px;}
.y98{bottom:586.521450px;}
.y1a4{bottom:587.173500px;}
.y105{bottom:587.258850px;}
.y67{bottom:587.538450px;}
.y13{bottom:588.898050px;}
.y121{bottom:593.489700px;}
.y30a{bottom:593.535150px;}
.yd5{bottom:594.002700px;}
.y29d{bottom:594.041250px;}
.yb6{bottom:594.515700px;}
.y27e{bottom:594.638700px;}
.y144{bottom:596.515800px;}
.y1a3{bottom:600.049500px;}
.y164{bottom:600.699600px;}
.y2ed{bottom:601.526400px;}
.y228{bottom:601.996950px;}
.y26f{bottom:602.630700px;}
.y97{bottom:603.022950px;}
.y104{bottom:603.760350px;}
.y66{bottom:604.039950px;}
.y12{bottom:609.349950px;}
.y2c7{bottom:610.035150px;}
.y1c4{bottom:610.059600px;}
.yd4{bottom:610.504200px;}
.y29c{bottom:610.541250px;}
.yb5{bottom:611.017200px;}
.y250{bottom:611.135700px;}
.y143{bottom:613.017300px;}
.y1a2{bottom:614.449500px;}
.y120{bottom:618.498450px;}
.y309{bottom:618.532650px;}
.y183{bottom:619.011450px;}
.y96{bottom:619.524450px;}
.y65{bottom:620.541450px;}
.y1c3{bottom:624.459600px;}
.y163{bottom:626.451600px;}
.y2c6{bottom:626.535150px;}
.yd3{bottom:627.005700px;}
.y29b{bottom:627.041250px;}
.y1e1{bottom:627.518700px;}
.y24f{bottom:627.632700px;}
.y103{bottom:628.769100px;}
.y142{bottom:629.518800px;}
.y10{bottom:632.736300px;}
.y227{bottom:634.999950px;}
.y308{bottom:635.034150px;}
.y182{bottom:635.512950px;}
.y95{bottom:636.025950px;}
.y64{bottom:637.042950px;}
.y1a1{bottom:640.189500px;}
.y2ec{bottom:643.035150px;}
.yd2{bottom:643.507200px;}
.y29a{bottom:643.541250px;}
.y1e0{bottom:644.020200px;}
.y24e{bottom:644.129700px;}
.y102{bottom:645.270600px;}
.y141{bottom:646.020300px;}
.y1c2{bottom:650.199600px;}
.yf{bottom:651.392850px;}
.y32b{bottom:651.532650px;}
.y2c5{bottom:651.534150px;}
.y181{bottom:652.014450px;}
.y162{bottom:652.191600px;}
.y94{bottom:652.527450px;}
.y63{bottom:653.544450px;}
.y1a0{bottom:654.589500px;}
.y226{bottom:660.008700px;}
.y299{bottom:660.041250px;}
.y307{bottom:660.042900px;}
.y1df{bottom:660.521700px;}
.y26e{bottom:660.626700px;}
.y101{bottom:661.772100px;}
.y140{bottom:662.521800px;}
.y2eb{bottom:668.029350px;}
.y32a{bottom:668.034150px;}
.yd1{bottom:668.515950px;}
.y93{bottom:669.028950px;}
.y24d{bottom:669.131700px;}
.ye{bottom:669.388350px;}
.y62{bottom:670.045950px;}
.y1c1{bottom:675.951600px;}
.y2c4{bottom:676.542900px;}
.y1de{bottom:677.023200px;}
.y26d{bottom:677.123700px;}
.y161{bottom:677.931600px;}
.y100{bottom:678.273600px;}
.y13f{bottom:679.023300px;}
.y19f{bottom:680.329500px;}
.y180{bottom:685.017450px;}
.y298{bottom:685.040400px;}
.y92{bottom:685.530450px;}
.y24c{bottom:685.628700px;}
.y61{bottom:686.547450px;}
.yd{bottom:687.388350px;}
.y2ea{bottom:693.038100px;}
.y2c3{bottom:693.042900px;}
.yd0{bottom:693.524700px;}
.y19e{bottom:694.729500px;}
.yff{bottom:694.775100px;}
.y225{bottom:701.518950px;}
.y306{bottom:701.539050px;}
.y1c0{bottom:701.691600px;}
.y91{bottom:702.031950px;}
.y24b{bottom:702.125700px;}
.y60{bottom:703.048950px;}
.y19d{bottom:707.605500px;}
.y13e{bottom:708.279150px;}
.y2c2{bottom:709.542900px;}
.yc{bottom:709.640250px;}
.ycf{bottom:710.026200px;}
.y297{bottom:710.049150px;}
.y160{bottom:710.050800px;}
.yfe{bottom:711.276600px;}
.y224{bottom:718.020450px;}
.y305{bottom:718.040550px;}
.y2e9{bottom:718.046850px;}
.y90{bottom:718.533450px;}
.y24a{bottom:718.622700px;}
.y5f{bottom:719.550450px;}
.y19c{bottom:720.481500px;}
.y2c1{bottom:726.042900px;}
.yce{bottom:726.527700px;}
.y296{bottom:726.549150px;}
.y1bf{bottom:727.431600px;}
.yfd{bottom:727.778100px;}
.yb{bottom:728.296800px;}
.y223{bottom:734.521950px;}
.y329{bottom:734.539050px;}
.y304{bottom:734.542050px;}
.y2e8{bottom:734.546850px;}
.y19b{bottom:734.881500px;}
.y8f{bottom:735.034950px;}
.y249{bottom:735.119700px;}
.y5e{bottom:736.051950px;}
.ycd{bottom:743.029200px;}
.y295{bottom:743.049150px;}
.y27d{bottom:743.624700px;}
.ya{bottom:746.292300px;}
.y222{bottom:751.023450px;}
.y328{bottom:751.040550px;}
.y2c0{bottom:751.042050px;}
.y2e7{bottom:751.046850px;}
.y11f{bottom:751.536450px;}
.yfc{bottom:752.786850px;}
.y13d{bottom:759.017700px;}
.ycc{bottom:759.530700px;}
.y1be{bottom:759.550800px;}
.y8e{bottom:760.043700px;}
.y248{bottom:760.121700px;}
.y19a{bottom:760.621500px;}
.y5d{bottom:761.060700px;}
.y11{bottom:764.292300px;}
.y9{bottom:764.308200px;}
.y221{bottom:767.524950px;}
.y327{bottom:767.542050px;}
.y2e6{bottom:767.546850px;}
.y294{bottom:768.028950px;}
.y11e{bottom:768.037950px;}
.y199{bottom:775.021500px;}
.y13c{bottom:775.519200px;}
.y1bd{bottom:776.050800px;}
.y8d{bottom:776.545200px;}
.y247{bottom:776.618700px;}
.y5c{bottom:777.562200px;}
.yfb{bottom:777.789750px;}
.y220{bottom:784.026450px;}
.y2e5{bottom:784.046850px;}
.ycb{bottom:784.539450px;}
.y8{bottom:790.804200px;}
.y13b{bottom:792.020700px;}
.y2bf{bottom:792.550800px;}
.y293{bottom:793.037700px;}
.y8c{bottom:793.046700px;}
.y246{bottom:793.115700px;}
.y5b{bottom:794.063700px;}
.y198{bottom:800.761500px;}
.yca{bottom:801.040950px;}
.y27c{bottom:801.620700px;}
.yfa{bottom:805.677750px;}
.y13a{bottom:808.522200px;}
.y21f{bottom:809.035200px;}
.y2e4{bottom:809.044500px;}
.y2be{bottom:809.050800px;}
.y8b{bottom:809.548200px;}
.y245{bottom:809.612700px;}
.y5a{bottom:810.565200px;}
.y7{bottom:812.404200px;}
.y197{bottom:815.161500px;}
.yc9{bottom:817.542450px;}
.y292{bottom:818.046450px;}
.y26c{bottom:818.117700px;}
.yf9{bottom:820.077750px;}
.y196{bottom:820.837500px;}
.y139{bottom:825.023700px;}
.y2e3{bottom:825.546000px;}
.y2bd{bottom:825.550800px;}
.y8a{bottom:826.049700px;}
.y59{bottom:827.066700px;}
.yc8{bottom:834.043950px;}
.y326{bottom:834.048450px;}
.yf8{bottom:834.477750px;}
.y244{bottom:834.614700px;}
.y195{bottom:840.913500px;}
.yf4{bottom:841.677750px;}
.y2bc{bottom:842.050800px;}
.y6{bottom:842.500200px;}
.y89{bottom:842.551200px;}
.y291{bottom:843.055200px;}
.y58{bottom:843.568200px;}
.yf7{bottom:848.877750px;}
.y138{bottom:850.032450px;}
.yc7{bottom:850.545450px;}
.y325{bottom:850.549950px;}
.y2e2{bottom:850.554750px;}
.y243{bottom:851.111700px;}
.y88{bottom:859.052700px;}
.y27b{bottom:859.616700px;}
.y57{bottom:860.069700px;}
.yf6{bottom:863.277750px;}
.y5{bottom:864.100200px;}
.y194{bottom:866.653500px;}
.yc6{bottom:867.046950px;}
.y2bb{bottom:867.048450px;}
.y2e1{bottom:867.054750px;}
.y242{bottom:867.608700px;}
.y290{bottom:868.063950px;}
.y137{bottom:875.041200px;}
.y87{bottom:875.554200px;}
.y324{bottom:875.558700px;}
.y26b{bottom:876.113700px;}
.y56{bottom:876.571200px;}
.yf5{bottom:877.677750px;}
.yc5{bottom:883.548450px;}
.y2ba{bottom:883.549950px;}
.y86{bottom:892.055700px;}
.y323{bottom:892.058700px;}
.y193{bottom:892.393500px;}
.y241{bottom:892.610700px;}
.y55{bottom:893.072700px;}
.y4{bottom:900.023550px;}
.y136{bottom:900.049950px;}
.yf3{bottom:903.417750px;}
.y85{bottom:908.557200px;}
.y2b9{bottom:908.558700px;}
.y240{bottom:909.107700px;}
.yf2{bottom:917.817750px;}
.y3{bottom:919.263300px;}
.y54{bottom:922.328550px;}
.y192{bottom:924.512700px;}
.y84{bottom:925.058700px;}
.y23f{bottom:925.604700px;}
.y2{bottom:945.232950px;}
.y53{bottom:968.712900px;}
.h5{height:32.976562px;}
.h12{height:34.945312px;}
.h10{height:36.960000px;}
.he{height:39.313477px;}
.h9{height:39.366211px;}
.hd{height:41.497559px;}
.h2{height:41.580000px;}
.hf{height:41.598000px;}
.h15{height:43.031250px;}
.h13{height:43.335938px;}
.hb{height:48.410156px;}
.hc{height:48.752930px;}
.h11{height:51.099609px;}
.ha{height:51.461426px;}
.h16{height:51.561064px;}
.h7{height:52.417969px;}
.h8{height:64.546875px;}
.h4{height:64.680000px;}
.h6{height:65.003906px;}
.h14{height:71.831250px;}
.h3{height:212.520000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x19{left:85.039350px;}
.x40{left:92.997900px;}
.x34{left:97.793100px;}
.x5{left:106.299150px;}
.x1b{left:110.833800px;}
.x2c{left:113.407500px;}
.x37{left:115.296600px;}
.x15{left:117.225000px;}
.x35{left:119.052900px;}
.x38{left:120.679950px;}
.x45{left:125.675250px;}
.x44{left:127.561650px;}
.x16{left:134.611650px;}
.x36{left:136.551900px;}
.x46{left:146.935050px;}
.x47{left:148.818900px;}
.x3c{left:154.324500px;}
.x1c{left:165.407550px;}
.xc{left:167.177100px;}
.x9{left:169.424850px;}
.x6{left:173.601150px;}
.x17{left:182.558550px;}
.x8{left:188.132850px;}
.x21{left:192.711300px;}
.xa{left:208.573500px;}
.x18{left:209.823150px;}
.x7{left:219.331350px;}
.x3{left:222.760950px;}
.xb{left:252.649350px;}
.x4{left:267.745650px;}
.x33{left:277.411500px;}
.x2{left:281.347800px;}
.x2e{left:283.303500px;}
.x30{left:290.299500px;}
.x3b{left:298.675950px;}
.x2d{left:311.983500px;}
.x2f{left:323.203500px;}
.x1a{left:329.781600px;}
.x42{left:330.895350px;}
.x25{left:343.263300px;}
.x22{left:349.599300px;}
.x1{left:351.041400px;}
.x43{left:352.782750px;}
.x3f{left:366.081900px;}
.x3d{left:373.155900px;}
.x14{left:381.047250px;}
.xd{left:407.653650px;}
.x11{left:430.698600px;}
.x10{left:441.320100px;}
.x13{left:442.668450px;}
.x1d{left:451.815300px;}
.x31{left:455.551500px;}
.x29{left:457.903500px;}
.xf{left:461.757450px;}
.x23{left:476.823300px;}
.x1e{left:479.163300px;}
.x26{left:480.171300px;}
.xe{left:491.457450px;}
.x2a{left:525.103500px;}
.x32{left:538.759500px;}
.x12{left:542.041950px;}
.x1f{left:546.363300px;}
.x2b{left:550.447500px;}
.x24{left:560.031300px;}
.x27{left:563.379300px;}
.x28{left:565.047300px;}
.x20{left:571.707300px;}
.x41{left:574.437900px;}
.x3e{left:588.279900px;}
.x39{left:590.311950px;}
.x3a{left:592.651950px;}
@media print{
.v3{vertical-align:-45.781333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:25.600000pt;}
.ls6{letter-spacing:-1.024000pt;}
.ls2{letter-spacing:-0.960000pt;}
.ls5{letter-spacing:-0.864000pt;}
.ls4{letter-spacing:-0.853333pt;}
.lsa{letter-spacing:-0.506667pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.240000pt;}
.ls1{letter-spacing:2.133333pt;}
.ls7{letter-spacing:6.336000pt;}
.ls9{letter-spacing:6.698133pt;}
.ws11e{word-spacing:-14.085333pt;}
.ws0{word-spacing:-13.344000pt;}
.ws84{word-spacing:-11.861333pt;}
.wsae{word-spacing:-10.837333pt;}
.ws1{word-spacing:-10.656000pt;}
.ws117{word-spacing:-6.480000pt;}
.ws116{word-spacing:-6.096000pt;}
.wsfd{word-spacing:-5.712000pt;}
.ws102{word-spacing:-5.040000pt;}
.ws118{word-spacing:-4.656000pt;}
.wse2{word-spacing:-3.888000pt;}
.wsd4{word-spacing:-3.792000pt;}
.ws10d{word-spacing:-3.696000pt;}
.ws10e{word-spacing:-3.456000pt;}
.ws6d{word-spacing:-3.445333pt;}
.ws10c{word-spacing:-3.408000pt;}
.wsad{word-spacing:-2.989333pt;}
.wsd3{word-spacing:-2.880000pt;}
.wsca{word-spacing:-2.786667pt;}
.wsc1{word-spacing:-2.736000pt;}
.wsb7{word-spacing:-2.685333pt;}
.ws9e{word-spacing:-2.634667pt;}
.wsda{word-spacing:-2.592000pt;}
.ws9d{word-spacing:-2.584000pt;}
.ws36{word-spacing:-2.533333pt;}
.ws123{word-spacing:-2.482667pt;}
.ws40{word-spacing:-2.381333pt;}
.ws69{word-spacing:-2.330667pt;}
.ws1d{word-spacing:-2.304000pt;}
.ws126{word-spacing:-2.280000pt;}
.ws6c{word-spacing:-2.229333pt;}
.ws71{word-spacing:-2.178667pt;}
.wsa6{word-spacing:-2.128000pt;}
.ws103{word-spacing:-2.112000pt;}
.wsc0{word-spacing:-2.077333pt;}
.wsed{word-spacing:-2.064000pt;}
.ws76{word-spacing:-2.026667pt;}
.wsdc{word-spacing:-2.016000pt;}
.ws99{word-spacing:-1.976000pt;}
.ws43{word-spacing:-1.925333pt;}
.ws77{word-spacing:-1.874667pt;}
.wsa{word-spacing:-1.824000pt;}
.ws52{word-spacing:-1.773333pt;}
.ws2d{word-spacing:-1.728000pt;}
.wsbc{word-spacing:-1.722667pt;}
.ws75{word-spacing:-1.672000pt;}
.ws8a{word-spacing:-1.621333pt;}
.ws1c{word-spacing:-1.584000pt;}
.wsdd{word-spacing:-1.536000pt;}
.ws96{word-spacing:-1.520000pt;}
.ws54{word-spacing:-1.418667pt;}
.wsac{word-spacing:-1.368000pt;}
.ws4a{word-spacing:-1.317333pt;}
.ws7f{word-spacing:-1.216000pt;}
.wsec{word-spacing:-1.200000pt;}
.ws60{word-spacing:-1.165333pt;}
.wsf{word-spacing:-1.152000pt;}
.wsa5{word-spacing:-1.114667pt;}
.ws64{word-spacing:-1.064000pt;}
.ws8c{word-spacing:-0.962667pt;}
.ws10a{word-spacing:-0.960000pt;}
.wsb5{word-spacing:-0.861333pt;}
.ws92{word-spacing:-0.810667pt;}
.ws51{word-spacing:-0.760000pt;}
.ws5d{word-spacing:-0.709333pt;}
.ws80{word-spacing:-0.658667pt;}
.wse6{word-spacing:-0.624000pt;}
.wsb8{word-spacing:-0.608000pt;}
.ws91{word-spacing:-0.557333pt;}
.ws39{word-spacing:-0.506667pt;}
.ws27{word-spacing:-0.480000pt;}
.wsc2{word-spacing:-0.456000pt;}
.ws48{word-spacing:-0.405333pt;}
.ws4f{word-spacing:-0.354667pt;}
.wsc7{word-spacing:-0.304000pt;}
.wsf5{word-spacing:-0.288000pt;}
.ws8f{word-spacing:-0.253333pt;}
.ws49{word-spacing:-0.202667pt;}
.wsd2{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.ws120{word-spacing:0.050667pt;}
.wse5{word-spacing:0.096000pt;}
.ws124{word-spacing:0.101333pt;}
.ws42{word-spacing:0.202667pt;}
.wsfc{word-spacing:0.240000pt;}
.ws70{word-spacing:0.253333pt;}
.ws112{word-spacing:0.288000pt;}
.ws3d{word-spacing:0.304000pt;}
.wsea{word-spacing:0.336000pt;}
.ws9b{word-spacing:0.405333pt;}
.wsab{word-spacing:0.456000pt;}
.ws12{word-spacing:0.480000pt;}
.ws89{word-spacing:0.506667pt;}
.ws11a{word-spacing:0.528000pt;}
.ws37{word-spacing:0.557333pt;}
.ws10{word-spacing:0.624000pt;}
.ws3c{word-spacing:0.658667pt;}
.ws68{word-spacing:0.709333pt;}
.ws47{word-spacing:0.760000pt;}
.ws78{word-spacing:0.810667pt;}
.ws72{word-spacing:0.861333pt;}
.ws85{word-spacing:0.864000pt;}
.ws41{word-spacing:0.912000pt;}
.ws9{word-spacing:0.960000pt;}
.ws6a{word-spacing:0.962667pt;}
.ws81{word-spacing:1.013333pt;}
.ws35{word-spacing:1.064000pt;}
.ws106{word-spacing:1.104000pt;}
.ws6b{word-spacing:1.114667pt;}
.ws57{word-spacing:1.165333pt;}
.wsc8{word-spacing:1.216000pt;}
.wsbf{word-spacing:1.266667pt;}
.ws104{word-spacing:1.296000pt;}
.wsa0{word-spacing:1.317333pt;}
.ws55{word-spacing:1.418667pt;}
.wsc4{word-spacing:1.469333pt;}
.ws58{word-spacing:1.520000pt;}
.wsd6{word-spacing:1.536000pt;}
.ws9a{word-spacing:1.621333pt;}
.wsd7{word-spacing:1.632000pt;}
.wsbb{word-spacing:1.672000pt;}
.wsf6{word-spacing:1.680000pt;}
.wsa7{word-spacing:1.722667pt;}
.ws6e{word-spacing:1.773333pt;}
.wsc3{word-spacing:1.824000pt;}
.ws59{word-spacing:1.874667pt;}
.ws79{word-spacing:1.976000pt;}
.wsd{word-spacing:2.016000pt;}
.ws4c{word-spacing:2.026667pt;}
.wsff{word-spacing:2.064000pt;}
.ws46{word-spacing:2.077333pt;}
.ws95{word-spacing:2.128000pt;}
.ws53{word-spacing:2.178667pt;}
.wsf7{word-spacing:2.208000pt;}
.ws82{word-spacing:2.229333pt;}
.ws5b{word-spacing:2.280000pt;}
.ws11{word-spacing:2.304000pt;}
.wsa3{word-spacing:2.381333pt;}
.wsee{word-spacing:2.448000pt;}
.ws93{word-spacing:2.533333pt;}
.ws5f{word-spacing:2.584000pt;}
.ws121{word-spacing:2.634667pt;}
.ws110{word-spacing:2.640000pt;}
.ws17{word-spacing:2.736000pt;}
.ws119{word-spacing:2.784000pt;}
.ws98{word-spacing:2.786667pt;}
.ws74{word-spacing:2.837333pt;}
.ws113{word-spacing:2.928000pt;}
.wsdb{word-spacing:2.976000pt;}
.wsa9{word-spacing:2.989333pt;}
.ws38{word-spacing:3.040000pt;}
.ws73{word-spacing:3.090667pt;}
.wsde{word-spacing:3.120000pt;}
.wsb6{word-spacing:3.192000pt;}
.ws107{word-spacing:3.216000pt;}
.ws2e{word-spacing:3.264000pt;}
.wsce{word-spacing:3.293333pt;}
.ws108{word-spacing:3.312000pt;}
.ws94{word-spacing:3.344000pt;}
.wsd8{word-spacing:3.360000pt;}
.wsb3{word-spacing:3.394667pt;}
.wscd{word-spacing:3.445333pt;}
.ws67{word-spacing:3.496000pt;}
.ws15{word-spacing:3.504000pt;}
.ws44{word-spacing:3.546667pt;}
.wsd5{word-spacing:3.552000pt;}
.wsaa{word-spacing:3.597333pt;}
.ws4e{word-spacing:3.648000pt;}
.ws5e{word-spacing:3.749333pt;}
.ws7d{word-spacing:3.850667pt;}
.wsdf{word-spacing:3.888000pt;}
.wsb1{word-spacing:3.901333pt;}
.ws4b{word-spacing:3.952000pt;}
.wsbd{word-spacing:4.002667pt;}
.wsbe{word-spacing:4.053333pt;}
.wsd1{word-spacing:4.080000pt;}
.ws3a{word-spacing:4.104000pt;}
.ws3b{word-spacing:4.205333pt;}
.wsf0{word-spacing:4.224000pt;}
.ws50{word-spacing:4.306667pt;}
.ws8b{word-spacing:4.357333pt;}
.wsf4{word-spacing:4.416000pt;}
.ws9c{word-spacing:4.458667pt;}
.wsb2{word-spacing:4.509333pt;}
.ws100{word-spacing:4.512000pt;}
.ws8e{word-spacing:4.610667pt;}
.wsa1{word-spacing:4.712000pt;}
.ws115{word-spacing:4.752000pt;}
.ws3e{word-spacing:4.762667pt;}
.wscf{word-spacing:4.813333pt;}
.ws8d{word-spacing:4.864000pt;}
.ws1a{word-spacing:4.896000pt;}
.ws88{word-spacing:4.914667pt;}
.ws11b{word-spacing:4.965333pt;}
.wsd0{word-spacing:5.016000pt;}
.ws66{word-spacing:5.066667pt;}
.ws62{word-spacing:5.117333pt;}
.ws19{word-spacing:5.136000pt;}
.ws90{word-spacing:5.168000pt;}
.ws14{word-spacing:5.280000pt;}
.wsfe{word-spacing:5.328000pt;}
.ws61{word-spacing:5.370667pt;}
.ws32{word-spacing:5.568000pt;}
.ws45{word-spacing:5.624000pt;}
.ws9f{word-spacing:5.776000pt;}
.ws6f{word-spacing:5.826667pt;}
.wsc{word-spacing:5.856000pt;}
.ws7b{word-spacing:5.877333pt;}
.ws7c{word-spacing:5.928000pt;}
.ws30{word-spacing:5.952000pt;}
.wsb9{word-spacing:5.978667pt;}
.wse4{word-spacing:6.048000pt;}
.ws7e{word-spacing:6.080000pt;}
.ws29{word-spacing:6.144000pt;}
.ws5c{word-spacing:6.232000pt;}
.wse{word-spacing:6.288000pt;}
.ws34{word-spacing:6.333333pt;}
.ws6{word-spacing:6.384000pt;}
.wsc5{word-spacing:6.434667pt;}
.ws3f{word-spacing:6.485333pt;}
.ws125{word-spacing:6.586667pt;}
.ws16{word-spacing:6.816000pt;}
.ws1b{word-spacing:6.864000pt;}
.ws87{word-spacing:6.890667pt;}
.wse1{word-spacing:6.960000pt;}
.ws28{word-spacing:7.008000pt;}
.ws65{word-spacing:7.042667pt;}
.ws4d{word-spacing:7.194667pt;}
.wsb4{word-spacing:7.245333pt;}
.ws18{word-spacing:7.248000pt;}
.wsba{word-spacing:7.296000pt;}
.wscc{word-spacing:7.346667pt;}
.ws5a{word-spacing:7.397333pt;}
.ws63{word-spacing:7.498667pt;}
.wsf8{word-spacing:7.536000pt;}
.wsf9{word-spacing:7.584000pt;}
.ws86{word-spacing:7.701333pt;}
.wsa2{word-spacing:7.752000pt;}
.ws8{word-spacing:7.776000pt;}
.ws56{word-spacing:7.802667pt;}
.ws11c{word-spacing:7.853333pt;}
.ws83{word-spacing:7.904000pt;}
.wsa4{word-spacing:7.954667pt;}
.wsc6{word-spacing:8.056000pt;}
.ws101{word-spacing:8.112000pt;}
.wscb{word-spacing:8.410667pt;}
.ws3{word-spacing:9.120000pt;}
.ws1e{word-spacing:9.216000pt;}
.ws105{word-spacing:9.312000pt;}
.ws2c{word-spacing:9.456000pt;}
.ws2a{word-spacing:9.552000pt;}
.wsc9{word-spacing:10.133333pt;}
.ws10f{word-spacing:10.752000pt;}
.ws11f{word-spacing:11.349333pt;}
.wsd9{word-spacing:11.616000pt;}
.ws97{word-spacing:11.805333pt;}
.ws24{word-spacing:12.096000pt;}
.ws10b{word-spacing:12.192000pt;}
.wsf2{word-spacing:12.432000pt;}
.ws122{word-spacing:12.514667pt;}
.wse3{word-spacing:12.624000pt;}
.ws4{word-spacing:12.768000pt;}
.wsfb{word-spacing:13.200000pt;}
.ws13{word-spacing:13.488000pt;}
.wsef{word-spacing:13.680000pt;}
.wse7{word-spacing:13.824000pt;}
.wsf1{word-spacing:14.112000pt;}
.ws5{word-spacing:15.024000pt;}
.ws1f{word-spacing:15.216000pt;}
.wse0{word-spacing:15.312000pt;}
.ws26{word-spacing:15.408000pt;}
.wsfa{word-spacing:15.744000pt;}
.wsb{word-spacing:16.032000pt;}
.ws2f{word-spacing:16.080000pt;}
.ws7{word-spacing:16.464000pt;}
.ws127{word-spacing:17.632000pt;}
.ws114{word-spacing:17.952000pt;}
.ws33{word-spacing:18.096000pt;}
.wse9{word-spacing:18.816000pt;}
.ws109{word-spacing:19.440000pt;}
.ws31{word-spacing:24.528000pt;}
.wseb{word-spacing:25.584000pt;}
.ws21{word-spacing:29.424000pt;}
.ws20{word-spacing:30.384000pt;}
.ws11d{word-spacing:31.261333pt;}
.ws111{word-spacing:31.344000pt;}
.ws25{word-spacing:32.784000pt;}
.ws23{word-spacing:38.784000pt;}
.ws2b{word-spacing:41.472000pt;}
.wsf3{word-spacing:47.328000pt;}
.ws22{word-spacing:52.608000pt;}
.wse8{word-spacing:74.640000pt;}
.ws7a{word-spacing:426.197333pt;}
.wsaf{word-spacing:887.936000pt;}
.wsb0{word-spacing:899.797333pt;}
.wsa8{word-spacing:905.813333pt;}
._3e{margin-left:-56.448000pt;}
._11{margin-left:-30.957333pt;}
._45{margin-left:-26.600000pt;}
._40{margin-left:-25.434667pt;}
._46{margin-left:-20.672000pt;}
._44{margin-left:-16.720000pt;}
._43{margin-left:-14.085333pt;}
._42{margin-left:-12.362667pt;}
._47{margin-left:-11.190400pt;}
._4{margin-left:-8.832000pt;}
._39{margin-left:-7.654400pt;}
._b{margin-left:-5.624000pt;}
._1{margin-left:-4.729600pt;}
._3{margin-left:-3.456000pt;}
._2{margin-left:-2.361600pt;}
._0{margin-left:-1.344000pt;}
._5{width:0.955200pt;}
._6{width:2.352000pt;}
._8{width:3.715200pt;}
._a{width:4.689067pt;}
._d{width:6.062400pt;}
._10{width:7.069867pt;}
._c{width:8.152267pt;}
._3a{width:9.551733pt;}
._e{width:10.539200pt;}
._f{width:11.601067pt;}
._3c{width:14.966400pt;}
._3b{width:16.651200pt;}
._3f{width:21.330667pt;}
._7{width:22.742400pt;}
._41{width:24.786667pt;}
._12{width:28.474667pt;}
._21{width:40.021333pt;}
._3d{width:46.665600pt;}
._2e{width:59.989333pt;}
._2d{width:64.042667pt;}
._14{width:66.517333pt;}
._13{width:72.917333pt;}
._23{width:75.434667pt;}
._22{width:86.144000pt;}
._31{width:115.157333pt;}
._17{width:116.266667pt;}
._30{width:156.202667pt;}
._34{width:157.781333pt;}
._24{width:167.082667pt;}
._35{width:168.064000pt;}
._33{width:169.642667pt;}
._16{width:171.264000pt;}
._1c{width:177.194667pt;}
._29{width:178.517333pt;}
._1e{width:184.704000pt;}
._38{width:185.856000pt;}
._1b{width:190.634667pt;}
._20{width:194.986667pt;}
._37{width:197.717333pt;}
._19{width:200.917333pt;}
._2c{width:202.240000pt;}
._25{width:203.818667pt;}
._27{width:214.101333pt;}
._18{width:273.450667pt;}
._15{width:314.965333pt;}
._28{width:365.141333pt;}
._26{width:388.864000pt;}
._32{width:401.706667pt;}
._2f{width:449.152000pt;}
._1f{width:668.373333pt;}
._2b{width:671.018667pt;}
._2a{width:692.352000pt;}
._36{width:697.002667pt;}
._1a{width:721.706667pt;}
._1d{width:756.096000pt;}
._9{width:892.558933pt;}
.fs6{font-size:31.093333pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:245.333333pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:18.895600pt;}
.y1{bottom:39.894000pt;}
.y51{bottom:65.695600pt;}
.y17f{bottom:75.590800pt;}
.y322{bottom:77.770533pt;}
.y50{bottom:78.491600pt;}
.y2b8{bottom:79.123200pt;}
.y1f0{bottom:80.400400pt;}
.y135{bottom:82.946400pt;}
.y2e0{bottom:84.878133pt;}
.y303{bottom:85.329467pt;}
.y204{bottom:87.506400pt;}
.yb4{bottom:87.962400pt;}
.y15f{bottom:88.828267pt;}
.y83{bottom:88.866400pt;}
.y4f{bottom:91.295600pt;}
.y321{bottom:92.437200pt;}
.y2b7{bottom:93.789867pt;}
.y26a{bottom:93.927733pt;}
.y1ef{bottom:95.068400pt;}
.yc4{bottom:97.334000pt;}
.y2df{bottom:99.544800pt;}
.y302{bottom:99.996133pt;}
.y203{bottom:102.174400pt;}
.yb3{bottom:102.630400pt;}
.y15e{bottom:103.496267pt;}
.y82{bottom:103.534400pt;}
.y21e{bottom:104.871733pt;}
.y134{bottom:105.176400pt;}
.y17e{bottom:107.301733pt;}
.y2b6{bottom:108.456533pt;}
.y269{bottom:108.591733pt;}
.y287{bottom:109.047733pt;}
.y11d{bottom:109.479867pt;}
.y1ee{bottom:109.736400pt;}
.yc3{bottom:112.002000pt;}
.y2f{bottom:112.704933pt;}
.y4e{bottom:113.232133pt;}
.y1dd{bottom:113.703867pt;}
.y320{bottom:114.657200pt;}
.y202{bottom:116.842400pt;}
.yb2{bottom:117.298400pt;}
.yf1{bottom:118.076400pt;}
.y81{bottom:118.202400pt;}
.y21d{bottom:119.539733pt;}
.y2de{bottom:121.764933pt;}
.y17d{bottom:121.969733pt;}
.y301{bottom:122.217733pt;}
.y2b5{bottom:123.123200pt;}
.y268{bottom:123.255733pt;}
.y286{bottom:123.711733pt;}
.y11c{bottom:124.147867pt;}
.y1ed{bottom:124.404400pt;}
.y23e{bottom:125.334933pt;}
.y15d{bottom:125.726267pt;}
.y4d{bottom:126.564133pt;}
.yc2{bottom:126.670000pt;}
.y2e{bottom:127.104933pt;}
.y133{bottom:127.406400pt;}
.y1dc{bottom:128.371867pt;}
.y31f{bottom:129.325200pt;}
.yf0{bottom:130.876400pt;}
.y201{bottom:131.510400pt;}
.yb1{bottom:131.966400pt;}
.y80{bottom:132.870400pt;}
.y21c{bottom:134.207733pt;}
.y1bc{bottom:134.628533pt;}
.y2dd{bottom:136.432933pt;}
.y17c{bottom:136.637733pt;}
.y2b4{bottom:137.789867pt;}
.y285{bottom:138.375733pt;}
.y11b{bottom:138.815867pt;}
.y1ec{bottom:139.072400pt;}
.y4c{bottom:139.896133pt;}
.y23d{bottom:139.998933pt;}
.y15c{bottom:140.394267pt;}
.y2d{bottom:141.504933pt;}
.y1db{bottom:143.039867pt;}
.yef{bottom:143.676400pt;}
.y300{bottom:144.447733pt;}
.y267{bottom:145.479733pt;}
.yb0{bottom:146.634400pt;}
.y21b{bottom:148.875733pt;}
.yc1{bottom:148.900000pt;}
.y1bb{bottom:149.296533pt;}
.y132{bottom:149.636400pt;}
.y17b{bottom:151.305733pt;}
.y31e{bottom:151.555200pt;}
.y2b3{bottom:152.456533pt;}
.y4b{bottom:153.228133pt;}
.y11a{bottom:153.483867pt;}
.y1eb{bottom:153.740400pt;}
.y23c{bottom:154.662933pt;}
.y15b{bottom:155.062267pt;}
.y7f{bottom:155.100400pt;}
.yee{bottom:156.476400pt;}
.y1da{bottom:157.707867pt;}
.y2dc{bottom:158.662933pt;}
.y2ff{bottom:159.114267pt;}
.y266{bottom:160.143733pt;}
.y284{bottom:160.599733pt;}
.yaf{bottom:161.302400pt;}
.ye9{bottom:162.876400pt;}
.y2c{bottom:163.464933pt;}
.y21a{bottom:163.543733pt;}
.y1ba{bottom:163.964533pt;}
.y17a{bottom:165.973733pt;}
.y31d{bottom:166.221867pt;}
.y2b2{bottom:167.123200pt;}
.y119{bottom:168.151867pt;}
.y200{bottom:168.408400pt;}
.yed{bottom:169.276400pt;}
.y15a{bottom:169.730267pt;}
.y7e{bottom:169.768400pt;}
.yc0{bottom:171.130000pt;}
.y131{bottom:171.866400pt;}
.y1d9{bottom:172.375867pt;}
.y2db{bottom:173.329600pt;}
.y4a{bottom:174.120133pt;}
.y265{bottom:174.807733pt;}
.y283{bottom:175.263733pt;}
.yae{bottom:175.970400pt;}
.y2b{bottom:177.864933pt;}
.y219{bottom:178.211733pt;}
.y1b9{bottom:178.632533pt;}
.y179{bottom:180.641733pt;}
.y23b{bottom:180.668133pt;}
.y2fe{bottom:181.335733pt;}
.y2b1{bottom:181.789867pt;}
.yec{bottom:182.076400pt;}
.y118{bottom:182.819867pt;}
.y1ff{bottom:183.076400pt;}
.y159{bottom:184.398267pt;}
.y7d{bottom:184.436400pt;}
.ybf{bottom:185.798000pt;}
.y1d8{bottom:187.043867pt;}
.y49{bottom:187.452133pt;}
.y31c{bottom:188.442000pt;}
.y282{bottom:189.927733pt;}
.yad{bottom:190.638400pt;}
.y2a{bottom:192.264933pt;}
.y218{bottom:192.879733pt;}
.y1b8{bottom:193.300533pt;}
.y130{bottom:194.096400pt;}
.yeb{bottom:194.876400pt;}
.y2da{bottom:195.549600pt;}
.y264{bottom:197.031733pt;}
.y191{bottom:197.288400pt;}
.y117{bottom:197.487867pt;}
.y1fe{bottom:197.744400pt;}
.y158{bottom:199.066267pt;}
.y7c{bottom:199.104400pt;}
.ybe{bottom:200.466000pt;}
.y48{bottom:200.784133pt;}
.y1d7{bottom:201.711867pt;}
.y178{bottom:202.871733pt;}
.y31b{bottom:203.110000pt;}
.y2fd{bottom:203.565733pt;}
.y2b0{bottom:204.011333pt;}
.y281{bottom:204.591733pt;}
.yac{bottom:205.306400pt;}
.y29{bottom:206.664933pt;}
.y217{bottom:207.547733pt;}
.yea{bottom:207.676400pt;}
.y1b7{bottom:207.968533pt;}
.y2d9{bottom:210.217600pt;}
.y263{bottom:211.695733pt;}
.y190{bottom:211.956400pt;}
.y116{bottom:212.155867pt;}
.y1fd{bottom:212.412400pt;}
.y157{bottom:213.734267pt;}
.y7b{bottom:213.772400pt;}
.y47{bottom:214.116133pt;}
.ybd{bottom:215.134000pt;}
.y12f{bottom:216.326400pt;}
.y1d6{bottom:216.379867pt;}
.y177{bottom:217.539733pt;}
.y2fc{bottom:218.232400pt;}
.y280{bottom:219.255733pt;}
.yab{bottom:219.974400pt;}
.y28{bottom:221.064933pt;}
.y216{bottom:222.215733pt;}
.y1b6{bottom:222.636533pt;}
.y31a{bottom:225.340000pt;}
.y23a{bottom:225.712400pt;}
.y2af{bottom:226.241333pt;}
.y18f{bottom:226.624400pt;}
.y28f{bottom:226.722933pt;}
.y1fc{bottom:227.080400pt;}
.y46{bottom:227.448133pt;}
.y7a{bottom:228.440400pt;}
.ybc{bottom:229.802000pt;}
.ye7{bottom:230.556400pt;}
.y176{bottom:232.207733pt;}
.y2d8{bottom:232.447600pt;}
.y2fb{bottom:232.899067pt;}
.y262{bottom:233.919733pt;}
.y115{bottom:234.385867pt;}
.yaa{bottom:234.642400pt;}
.y27{bottom:235.464933pt;}
.y156{bottom:235.964267pt;}
.y215{bottom:236.883733pt;}
.ye6{bottom:236.956400pt;}
.y1b5{bottom:237.304533pt;}
.y12e{bottom:238.556400pt;}
.y319{bottom:240.006667pt;}
.y239{bottom:240.380400pt;}
.y45{bottom:240.780133pt;}
.y2ae{bottom:240.908000pt;}
.y28e{bottom:241.390933pt;}
.y1e6{bottom:242.204400pt;}
.y1d5{bottom:242.385067pt;}
.y79{bottom:243.108400pt;}
.ye8{bottom:243.356400pt;}
.y175{bottom:246.875733pt;}
.y2d7{bottom:247.114267pt;}
.y2fa{bottom:247.565733pt;}
.y261{bottom:248.583733pt;}
.y18e{bottom:248.854400pt;}
.y114{bottom:249.053867pt;}
.y1ea{bottom:249.310400pt;}
.y26{bottom:249.864933pt;}
.y155{bottom:250.632267pt;}
.y44{bottom:254.112133pt;}
.y318{bottom:254.673333pt;}
.y238{bottom:255.048400pt;}
.ybb{bottom:255.807200pt;}
.y28d{bottom:256.058933pt;}
.y27f{bottom:256.143733pt;}
.ya9{bottom:256.872400pt;}
.y78{bottom:257.776400pt;}
.y214{bottom:259.113733pt;}
.y1b4{bottom:259.534533pt;}
.y12d{bottom:260.786400pt;}
.y174{bottom:261.543733pt;}
.y2ad{bottom:263.125200pt;}
.y27a{bottom:263.247733pt;}
.y18d{bottom:263.522400pt;}
.y113{bottom:263.721867pt;}
.y1e9{bottom:263.978400pt;}
.y25{bottom:264.264933pt;}
.y154{bottom:265.300267pt;}
.ye5{bottom:266.236400pt;}
.y43{bottom:267.444133pt;}
.y2d6{bottom:269.334400pt;}
.y317{bottom:269.340000pt;}
.y2f9{bottom:269.785867pt;}
.y28c{bottom:270.726933pt;}
.y260{bottom:270.807733pt;}
.ya8{bottom:271.540400pt;}
.y77{bottom:272.444400pt;}
.y213{bottom:273.781733pt;}
.y1b3{bottom:274.202533pt;}
.y173{bottom:276.211733pt;}
.y237{bottom:277.278400pt;}
.y18c{bottom:278.190400pt;}
.y112{bottom:278.389867pt;}
.y1e8{bottom:278.646400pt;}
.y24{bottom:278.664933pt;}
.ye4{bottom:279.036400pt;}
.y153{bottom:279.968267pt;}
.y42{bottom:280.776133pt;}
.y12c{bottom:283.016400pt;}
.y2d5{bottom:284.002400pt;}
.y2f8{bottom:284.453867pt;}
.y2ac{bottom:285.355200pt;}
.y28b{bottom:285.394933pt;}
.y25f{bottom:285.471733pt;}
.ya7{bottom:286.208400pt;}
.y76{bottom:287.112400pt;}
.y1d4{bottom:287.505733pt;}
.y212{bottom:288.449733pt;}
.y1b2{bottom:288.870533pt;}
.y316{bottom:291.560133pt;}
.y18b{bottom:292.858400pt;}
.y111{bottom:293.057867pt;}
.y23{bottom:293.064933pt;}
.y1e7{bottom:293.314400pt;}
.y41{bottom:294.108133pt;}
.y172{bottom:298.441733pt;}
.y236{bottom:299.508400pt;}
.y25e{bottom:300.135733pt;}
.ya6{bottom:300.876400pt;}
.y75{bottom:301.780400pt;}
.y1d3{bottom:302.173733pt;}
.y152{bottom:302.198267pt;}
.y211{bottom:303.117733pt;}
.y1b1{bottom:303.538533pt;}
.y12b{bottom:305.246400pt;}
.y315{bottom:306.228133pt;}
.y2d4{bottom:306.232400pt;}
.y2f7{bottom:306.683867pt;}
.y40{bottom:307.440133pt;}
.y22{bottom:307.464933pt;}
.y18a{bottom:307.526400pt;}
.y2ab{bottom:307.585200pt;}
.ye3{bottom:307.586800pt;}
.y28a{bottom:307.695733pt;}
.y110{bottom:307.725867pt;}
.y1fb{bottom:307.982400pt;}
.y235{bottom:314.176400pt;}
.y279{bottom:314.799733pt;}
.ya5{bottom:315.544400pt;}
.y74{bottom:316.448400pt;}
.y1d2{bottom:316.841733pt;}
.y151{bottom:316.866267pt;}
.y210{bottom:317.785733pt;}
.y1b0{bottom:318.206533pt;}
.y171{bottom:320.664533pt;}
.y3f{bottom:320.772133pt;}
.y2d3{bottom:320.899067pt;}
.y2f6{bottom:321.350533pt;}
.y21{bottom:321.864933pt;}
.y189{bottom:322.194400pt;}
.y2aa{bottom:322.251867pt;}
.y25d{bottom:322.359733pt;}
.y1fa{bottom:322.650400pt;}
.y12a{bottom:327.476400pt;}
.y314{bottom:328.458133pt;}
.y234{bottom:328.844400pt;}
.y278{bottom:329.463733pt;}
.ye2{bottom:329.756400pt;}
.y10f{bottom:329.955867pt;}
.ya4{bottom:330.212400pt;}
.y73{bottom:331.116400pt;}
.y150{bottom:331.534267pt;}
.y20f{bottom:332.453733pt;}
.y1af{bottom:332.874533pt;}
.y3e{bottom:334.104133pt;}
.y2f5{bottom:336.017200pt;}
.y20{bottom:336.264933pt;}
.y188{bottom:336.862400pt;}
.y2a9{bottom:336.918533pt;}
.y25c{bottom:337.023733pt;}
.y1f9{bottom:337.318400pt;}
.y1d1{bottom:339.064533pt;}
.y2d2{bottom:343.120533pt;}
.y313{bottom:343.124800pt;}
.y233{bottom:343.512400pt;}
.ye1{bottom:344.424400pt;}
.y10e{bottom:344.623867pt;}
.ya3{bottom:344.880400pt;}
.y170{bottom:345.453867pt;}
.y14f{bottom:346.202267pt;}
.y20e{bottom:347.121733pt;}
.y3d{bottom:347.436133pt;}
.y129{bottom:349.706400pt;}
.y1f{bottom:350.664933pt;}
.y2f4{bottom:350.683867pt;}
.y187{bottom:351.530400pt;}
.y2a8{bottom:351.585200pt;}
.y277{bottom:351.687733pt;}
.y1f8{bottom:351.986400pt;}
.y72{bottom:353.346400pt;}
.y1ae{bottom:355.104533pt;}
.y16f{bottom:358.253867pt;}
.ye0{bottom:359.092400pt;}
.y25b{bottom:359.247733pt;}
.y10d{bottom:359.291867pt;}
.ya2{bottom:359.548400pt;}
.y3c{bottom:360.768133pt;}
.y14e{bottom:360.870267pt;}
.y20d{bottom:361.789733pt;}
.y1d0{bottom:363.853867pt;}
.y1e{bottom:365.064933pt;}
.y312{bottom:365.340667pt;}
.y2d1{bottom:365.350533pt;}
.y232{bottom:365.742400pt;}
.y186{bottom:366.198400pt;}
.y2a7{bottom:366.251867pt;}
.y276{bottom:366.351733pt;}
.y1f7{bottom:366.654400pt;}
.y71{bottom:368.014400pt;}
.y16e{bottom:369.699200pt;}
.y1ad{bottom:369.772533pt;}
.y128{bottom:371.936400pt;}
.ydf{bottom:373.760400pt;}
.y25a{bottom:373.911733pt;}
.y10c{bottom:373.959867pt;}
.y3b{bottom:374.100133pt;}
.y1e5{bottom:374.216400pt;}
.y14d{bottom:375.538267pt;}
.y20c{bottom:376.457733pt;}
.y1cf{bottom:376.653867pt;}
.y1d{bottom:379.464933pt;}
.y311{bottom:380.008667pt;}
.y2d0{bottom:380.017200pt;}
.y2a6{bottom:380.918533pt;}
.y275{bottom:381.015733pt;}
.y16d{bottom:381.144533pt;}
.y1f6{bottom:381.322400pt;}
.ya1{bottom:381.778400pt;}
.y70{bottom:382.682400pt;}
.y1ac{bottom:384.440533pt;}
.y3a{bottom:387.432133pt;}
.y231{bottom:387.972400pt;}
.y1ce{bottom:388.099200pt;}
.yde{bottom:388.428400pt;}
.y259{bottom:388.575733pt;}
.y10b{bottom:388.627867pt;}
.y1e4{bottom:388.884400pt;}
.y14c{bottom:390.206267pt;}
.y1c{bottom:393.864933pt;}
.y16c{bottom:393.944533pt;}
.y127{bottom:394.166400pt;}
.y2f3{bottom:394.683867pt;}
.ya0{bottom:396.446400pt;}
.y6f{bottom:397.350400pt;}
.y20b{bottom:398.687733pt;}
.y1ab{bottom:399.108533pt;}
.y1cd{bottom:399.544533pt;}
.y39{bottom:400.764133pt;}
.y2cf{bottom:402.237333pt;}
.y310{bottom:402.238667pt;}
.y230{bottom:402.640400pt;}
.ydd{bottom:403.096400pt;}
.y2a5{bottom:403.140000pt;}
.y274{bottom:403.239733pt;}
.y1e3{bottom:403.552400pt;}
.y14b{bottom:404.874267pt;}
.y1b{bottom:408.264933pt;}
.y2f2{bottom:409.350533pt;}
.y258{bottom:410.799733pt;}
.y10a{bottom:410.857867pt;}
.y9f{bottom:411.114400pt;}
.y6e{bottom:412.018400pt;}
.y1cc{bottom:412.344533pt;}
.y20a{bottom:413.355733pt;}
.y1aa{bottom:413.776533pt;}
.y38{bottom:414.096133pt;}
.y126{bottom:416.396400pt;}
.y16b{bottom:416.824533pt;}
.y2ce{bottom:416.905333pt;}
.y22f{bottom:417.308400pt;}
.ydc{bottom:417.764400pt;}
.y273{bottom:417.903733pt;}
.y1e2{bottom:418.220400pt;}
.y14a{bottom:419.542267pt;}
.y1a{bottom:422.664933pt;}
.y2f1{bottom:424.017200pt;}
.y30f{bottom:424.468667pt;}
.y2a4{bottom:425.370000pt;}
.y257{bottom:425.463733pt;}
.y9e{bottom:425.782400pt;}
.y6d{bottom:426.686400pt;}
.y37{bottom:427.428133pt;}
.y209{bottom:428.023733pt;}
.y1a9{bottom:428.444533pt;}
.y22e{bottom:431.976400pt;}
.ydb{bottom:432.432400pt;}
.y272{bottom:432.567733pt;}
.y1f5{bottom:432.888400pt;}
.y109{bottom:433.087867pt;}
.y1cb{bottom:435.224533pt;}
.y19{bottom:437.064933pt;}
.y125{bottom:438.626400pt;}
.y2f0{bottom:438.683867pt;}
.y2cd{bottom:439.135333pt;}
.y16a{bottom:439.704533pt;}
.y2a3{bottom:440.036667pt;}
.y256{bottom:440.127733pt;}
.y9d{bottom:440.450400pt;}
.y36{bottom:440.760133pt;}
.y6c{bottom:441.354400pt;}
.y149{bottom:441.772267pt;}
.y208{bottom:442.691733pt;}
.y22d{bottom:446.644400pt;}
.yda{bottom:447.100400pt;}
.y1f4{bottom:447.556400pt;}
.y1ca{bottom:448.024533pt;}
.y1a8{bottom:450.674533pt;}
.y18{bottom:451.464933pt;}
.y169{bottom:452.504533pt;}
.y2cc{bottom:453.802000pt;}
.y35{bottom:454.092133pt;}
.y2a2{bottom:454.703333pt;}
.y255{bottom:454.791733pt;}
.y9c{bottom:455.118400pt;}
.y108{bottom:455.317867pt;}
.y6b{bottom:456.022400pt;}
.y148{bottom:456.440267pt;}
.y207{bottom:457.359733pt;}
.y124{bottom:460.856400pt;}
.y2ef{bottom:460.905333pt;}
.y22c{bottom:461.312400pt;}
.y30e{bottom:461.354133pt;}
.y185{bottom:461.768400pt;}
.y1f3{bottom:462.224400pt;}
.y289{bottom:462.351733pt;}
.y168{bottom:463.949867pt;}
.y17{bottom:465.864933pt;}
.y34{bottom:467.424133pt;}
.y32e{bottom:468.457467pt;}
.y2cb{bottom:468.468667pt;}
.yd9{bottom:469.330400pt;}
.y2a1{bottom:469.370000pt;}
.y254{bottom:469.455733pt;}
.yba{bottom:469.786400pt;}
.y6a{bottom:470.690400pt;}
.y1c9{bottom:470.904533pt;}
.y147{bottom:471.108267pt;}
.y206{bottom:472.027733pt;}
.y1a7{bottom:472.897333pt;}
.y167{bottom:475.395200pt;}
.y30d{bottom:476.022133pt;}
.y184{bottom:476.436400pt;}
.y1f2{bottom:476.892400pt;}
.y288{bottom:477.015733pt;}
.y9b{bottom:477.348400pt;}
.y107{bottom:477.547867pt;}
.y16{bottom:480.264933pt;}
.y33{bottom:480.756133pt;}
.y123{bottom:483.086400pt;}
.y32d{bottom:483.125467pt;}
.y2ca{bottom:483.135333pt;}
.y22b{bottom:483.542400pt;}
.y1c8{bottom:483.704533pt;}
.yd8{bottom:483.998400pt;}
.y2a0{bottom:484.036667pt;}
.y271{bottom:484.119733pt;}
.yb9{bottom:484.454400pt;}
.y69{bottom:485.358400pt;}
.y146{bottom:485.776267pt;}
.y166{bottom:488.195200pt;}
.y30c{bottom:490.690133pt;}
.y1f1{bottom:491.560400pt;}
.y253{bottom:491.679733pt;}
.y9a{bottom:492.016400pt;}
.y32{bottom:494.088133pt;}
.y15{bottom:494.664933pt;}
.y1c7{bottom:495.149867pt;}
.y1a6{bottom:497.686667pt;}
.y2c9{bottom:497.802000pt;}
.y205{bottom:498.032933pt;}
.yd7{bottom:498.666400pt;}
.y29f{bottom:498.703333pt;}
.y270{bottom:498.783733pt;}
.yb8{bottom:499.122400pt;}
.y106{bottom:499.777867pt;}
.y68{bottom:500.026400pt;}
.y122{bottom:505.316400pt;}
.y32c{bottom:505.355467pt;}
.y22a{bottom:505.772400pt;}
.y252{bottom:506.343733pt;}
.y1c6{bottom:506.595200pt;}
.y99{bottom:506.684400pt;}
.y31{bottom:507.420133pt;}
.y145{bottom:508.006267pt;}
.y14{bottom:509.064933pt;}
.y1a5{bottom:510.486667pt;}
.y165{bottom:511.075200pt;}
.y30b{bottom:512.920133pt;}
.yd6{bottom:513.334400pt;}
.y29e{bottom:513.370000pt;}
.yb7{bottom:513.790400pt;}
.y1c5{bottom:519.395200pt;}
.y2ee{bottom:520.022133pt;}
.y2c8{bottom:520.023467pt;}
.y229{bottom:520.440400pt;}
.y30{bottom:520.752133pt;}
.y251{bottom:521.007733pt;}
.y98{bottom:521.352400pt;}
.y1a4{bottom:521.932000pt;}
.y105{bottom:522.007867pt;}
.y67{bottom:522.256400pt;}
.y13{bottom:523.464933pt;}
.y121{bottom:527.546400pt;}
.y30a{bottom:527.586800pt;}
.yd5{bottom:528.002400pt;}
.y29d{bottom:528.036667pt;}
.yb6{bottom:528.458400pt;}
.y27e{bottom:528.567733pt;}
.y144{bottom:530.236267pt;}
.y1a3{bottom:533.377333pt;}
.y164{bottom:533.955200pt;}
.y2ed{bottom:534.690133pt;}
.y228{bottom:535.108400pt;}
.y26f{bottom:535.671733pt;}
.y97{bottom:536.020400pt;}
.y104{bottom:536.675867pt;}
.y66{bottom:536.924400pt;}
.y12{bottom:541.644400pt;}
.y2c7{bottom:542.253467pt;}
.y1c4{bottom:542.275200pt;}
.yd4{bottom:542.670400pt;}
.y29c{bottom:542.703333pt;}
.yb5{bottom:543.126400pt;}
.y250{bottom:543.231733pt;}
.y143{bottom:544.904267pt;}
.y1a2{bottom:546.177333pt;}
.y120{bottom:549.776400pt;}
.y309{bottom:549.806800pt;}
.y183{bottom:550.232400pt;}
.y96{bottom:550.688400pt;}
.y65{bottom:551.592400pt;}
.y1c3{bottom:555.075200pt;}
.y163{bottom:556.845867pt;}
.y2c6{bottom:556.920133pt;}
.yd3{bottom:557.338400pt;}
.y29b{bottom:557.370000pt;}
.y1e1{bottom:557.794400pt;}
.y24f{bottom:557.895733pt;}
.y103{bottom:558.905867pt;}
.y142{bottom:559.572267pt;}
.y10{bottom:562.432267pt;}
.y227{bottom:564.444400pt;}
.y308{bottom:564.474800pt;}
.y182{bottom:564.900400pt;}
.y95{bottom:565.356400pt;}
.y64{bottom:566.260400pt;}
.y1a1{bottom:569.057333pt;}
.y2ec{bottom:571.586800pt;}
.yd2{bottom:572.006400pt;}
.y29a{bottom:572.036667pt;}
.y1e0{bottom:572.462400pt;}
.y24e{bottom:572.559733pt;}
.y102{bottom:573.573867pt;}
.y141{bottom:574.240267pt;}
.y1c2{bottom:577.955200pt;}
.yf{bottom:579.015867pt;}
.y32b{bottom:579.140133pt;}
.y2c5{bottom:579.141467pt;}
.y181{bottom:579.568400pt;}
.y162{bottom:579.725867pt;}
.y94{bottom:580.024400pt;}
.y63{bottom:580.928400pt;}
.y1a0{bottom:581.857333pt;}
.y226{bottom:586.674400pt;}
.y299{bottom:586.703333pt;}
.y307{bottom:586.704800pt;}
.y1df{bottom:587.130400pt;}
.y26e{bottom:587.223733pt;}
.y101{bottom:588.241867pt;}
.y140{bottom:588.908267pt;}
.y2eb{bottom:593.803867pt;}
.y32a{bottom:593.808133pt;}
.yd1{bottom:594.236400pt;}
.y93{bottom:594.692400pt;}
.y24d{bottom:594.783733pt;}
.ye{bottom:595.011867pt;}
.y62{bottom:595.596400pt;}
.y1c1{bottom:600.845867pt;}
.y2c4{bottom:601.371467pt;}
.y1de{bottom:601.798400pt;}
.y26d{bottom:601.887733pt;}
.y161{bottom:602.605867pt;}
.y100{bottom:602.909867pt;}
.y13f{bottom:603.576267pt;}
.y19f{bottom:604.737333pt;}
.y180{bottom:608.904400pt;}
.y298{bottom:608.924800pt;}
.y92{bottom:609.360400pt;}
.y24c{bottom:609.447733pt;}
.y61{bottom:610.264400pt;}
.yd{bottom:611.011867pt;}
.y2ea{bottom:616.033867pt;}
.y2c3{bottom:616.038133pt;}
.yd0{bottom:616.466400pt;}
.y19e{bottom:617.537333pt;}
.yff{bottom:617.577867pt;}
.y225{bottom:623.572400pt;}
.y306{bottom:623.590267pt;}
.y1c0{bottom:623.725867pt;}
.y91{bottom:624.028400pt;}
.y24b{bottom:624.111733pt;}
.y60{bottom:624.932400pt;}
.y19d{bottom:628.982667pt;}
.y13e{bottom:629.581467pt;}
.y2c2{bottom:630.704800pt;}
.yc{bottom:630.791333pt;}
.ycf{bottom:631.134400pt;}
.y297{bottom:631.154800pt;}
.y160{bottom:631.156267pt;}
.yfe{bottom:632.245867pt;}
.y224{bottom:638.240400pt;}
.y305{bottom:638.258267pt;}
.y2e9{bottom:638.263867pt;}
.y90{bottom:638.696400pt;}
.y24a{bottom:638.775733pt;}
.y5f{bottom:639.600400pt;}
.y19c{bottom:640.428000pt;}
.y2c1{bottom:645.371467pt;}
.yce{bottom:645.802400pt;}
.y296{bottom:645.821467pt;}
.y1bf{bottom:646.605867pt;}
.yfd{bottom:646.913867pt;}
.yb{bottom:647.374933pt;}
.y223{bottom:652.908400pt;}
.y329{bottom:652.923600pt;}
.y304{bottom:652.926267pt;}
.y2e8{bottom:652.930533pt;}
.y19b{bottom:653.228000pt;}
.y8f{bottom:653.364400pt;}
.y249{bottom:653.439733pt;}
.y5e{bottom:654.268400pt;}
.ycd{bottom:660.470400pt;}
.y295{bottom:660.488133pt;}
.y27d{bottom:660.999733pt;}
.ya{bottom:663.370933pt;}
.y222{bottom:667.576400pt;}
.y328{bottom:667.591600pt;}
.y2c0{bottom:667.592933pt;}
.y2e7{bottom:667.597200pt;}
.y11f{bottom:668.032400pt;}
.yfc{bottom:669.143867pt;}
.y13d{bottom:674.682400pt;}
.ycc{bottom:675.138400pt;}
.y1be{bottom:675.156267pt;}
.y8e{bottom:675.594400pt;}
.y248{bottom:675.663733pt;}
.y19a{bottom:676.108000pt;}
.y5d{bottom:676.498400pt;}
.y11{bottom:679.370933pt;}
.y9{bottom:679.385067pt;}
.y221{bottom:682.244400pt;}
.y327{bottom:682.259600pt;}
.y2e6{bottom:682.263867pt;}
.y294{bottom:682.692400pt;}
.y11e{bottom:682.700400pt;}
.y199{bottom:688.908000pt;}
.y13c{bottom:689.350400pt;}
.y1bd{bottom:689.822933pt;}
.y8d{bottom:690.262400pt;}
.y247{bottom:690.327733pt;}
.y5c{bottom:691.166400pt;}
.yfb{bottom:691.368667pt;}
.y220{bottom:696.912400pt;}
.y2e5{bottom:696.930533pt;}
.ycb{bottom:697.368400pt;}
.y8{bottom:702.937067pt;}
.y13b{bottom:704.018400pt;}
.y2bf{bottom:704.489600pt;}
.y293{bottom:704.922400pt;}
.y8c{bottom:704.930400pt;}
.y246{bottom:704.991733pt;}
.y5b{bottom:705.834400pt;}
.y198{bottom:711.788000pt;}
.yca{bottom:712.036400pt;}
.y27c{bottom:712.551733pt;}
.yfa{bottom:716.158000pt;}
.y13a{bottom:718.686400pt;}
.y21f{bottom:719.142400pt;}
.y2e4{bottom:719.150667pt;}
.y2be{bottom:719.156267pt;}
.y8b{bottom:719.598400pt;}
.y245{bottom:719.655733pt;}
.y5a{bottom:720.502400pt;}
.y7{bottom:722.137067pt;}
.y197{bottom:724.588000pt;}
.yc9{bottom:726.704400pt;}
.y292{bottom:727.152400pt;}
.y26c{bottom:727.215733pt;}
.yf9{bottom:728.958000pt;}
.y196{bottom:729.633333pt;}
.y139{bottom:733.354400pt;}
.y2e3{bottom:733.818667pt;}
.y2bd{bottom:733.822933pt;}
.y8a{bottom:734.266400pt;}
.y59{bottom:735.170400pt;}
.yc8{bottom:741.372400pt;}
.y326{bottom:741.376400pt;}
.yf8{bottom:741.758000pt;}
.y244{bottom:741.879733pt;}
.y195{bottom:747.478667pt;}
.yf4{bottom:748.158000pt;}
.y2bc{bottom:748.489600pt;}
.y6{bottom:748.889067pt;}
.y89{bottom:748.934400pt;}
.y291{bottom:749.382400pt;}
.y58{bottom:749.838400pt;}
.yf7{bottom:754.558000pt;}
.y138{bottom:755.584400pt;}
.yc7{bottom:756.040400pt;}
.y325{bottom:756.044400pt;}
.y2e2{bottom:756.048667pt;}
.y243{bottom:756.543733pt;}
.y88{bottom:763.602400pt;}
.y27b{bottom:764.103733pt;}
.y57{bottom:764.506400pt;}
.yf6{bottom:767.358000pt;}
.y5{bottom:768.089067pt;}
.y194{bottom:770.358667pt;}
.yc6{bottom:770.708400pt;}
.y2bb{bottom:770.709733pt;}
.y2e1{bottom:770.715333pt;}
.y242{bottom:771.207733pt;}
.y290{bottom:771.612400pt;}
.y137{bottom:777.814400pt;}
.y87{bottom:778.270400pt;}
.y324{bottom:778.274400pt;}
.y26b{bottom:778.767733pt;}
.y56{bottom:779.174400pt;}
.yf5{bottom:780.158000pt;}
.yc5{bottom:785.376400pt;}
.y2ba{bottom:785.377733pt;}
.y86{bottom:792.938400pt;}
.y323{bottom:792.941067pt;}
.y193{bottom:793.238667pt;}
.y241{bottom:793.431733pt;}
.y55{bottom:793.842400pt;}
.y4{bottom:800.020933pt;}
.y136{bottom:800.044400pt;}
.yf3{bottom:803.038000pt;}
.y85{bottom:807.606400pt;}
.y2b9{bottom:807.607733pt;}
.y240{bottom:808.095733pt;}
.yf2{bottom:815.838000pt;}
.y3{bottom:817.122933pt;}
.y54{bottom:819.847600pt;}
.y192{bottom:821.789067pt;}
.y84{bottom:822.274400pt;}
.y23f{bottom:822.759733pt;}
.y2{bottom:840.207067pt;}
.y53{bottom:861.078133pt;}
.h5{height:29.312500pt;}
.h12{height:31.062500pt;}
.h10{height:32.853333pt;}
.he{height:34.945312pt;}
.h9{height:34.992188pt;}
.hd{height:36.886719pt;}
.h2{height:36.960000pt;}
.hf{height:36.976000pt;}
.h15{height:38.250000pt;}
.h13{height:38.520833pt;}
.hb{height:43.031250pt;}
.hc{height:43.335938pt;}
.h11{height:45.421875pt;}
.ha{height:45.743490pt;}
.h16{height:45.832057pt;}
.h7{height:46.593750pt;}
.h8{height:57.375000pt;}
.h4{height:57.493333pt;}
.h6{height:57.781250pt;}
.h14{height:63.850000pt;}
.h3{height:188.906667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x19{left:75.590533pt;}
.x40{left:82.664800pt;}
.x34{left:86.927200pt;}
.x5{left:94.488133pt;}
.x1b{left:98.518933pt;}
.x2c{left:100.806667pt;}
.x37{left:102.485867pt;}
.x15{left:104.200000pt;}
.x35{left:105.824800pt;}
.x38{left:107.271067pt;}
.x45{left:111.711333pt;}
.x44{left:113.388133pt;}
.x16{left:119.654800pt;}
.x36{left:121.379467pt;}
.x46{left:130.608933pt;}
.x47{left:132.283467pt;}
.x3c{left:137.177333pt;}
.x1c{left:147.028933pt;}
.xc{left:148.601867pt;}
.x9{left:150.599867pt;}
.x6{left:154.312133pt;}
.x17{left:162.274267pt;}
.x8{left:167.229200pt;}
.x21{left:171.298933pt;}
.xa{left:185.398667pt;}
.x18{left:186.509467pt;}
.x7{left:194.961200pt;}
.x3{left:198.009733pt;}
.xb{left:224.577200pt;}
.x4{left:237.996133pt;}
.x33{left:246.588000pt;}
.x2{left:250.086933pt;}
.x2e{left:251.825333pt;}
.x30{left:258.044000pt;}
.x3b{left:265.489733pt;}
.x2d{left:277.318667pt;}
.x2f{left:287.292000pt;}
.x1a{left:293.139200pt;}
.x42{left:294.129200pt;}
.x25{left:305.122933pt;}
.x22{left:310.754933pt;}
.x1{left:312.036800pt;}
.x43{left:313.584667pt;}
.x3f{left:325.406133pt;}
.x3d{left:331.694133pt;}
.x14{left:338.708667pt;}
.xd{left:362.358800pt;}
.x11{left:382.843200pt;}
.x10{left:392.284533pt;}
.x13{left:393.483067pt;}
.x1d{left:401.613600pt;}
.x31{left:404.934667pt;}
.x29{left:407.025333pt;}
.xf{left:410.451067pt;}
.x23{left:423.842933pt;}
.x1e{left:425.922933pt;}
.x26{left:426.818933pt;}
.xe{left:436.851067pt;}
.x2a{left:466.758667pt;}
.x32{left:478.897333pt;}
.x12{left:481.815067pt;}
.x1f{left:485.656267pt;}
.x2b{left:489.286667pt;}
.x24{left:497.805600pt;}
.x27{left:500.781600pt;}
.x28{left:502.264267pt;}
.x20{left:508.184267pt;}
.x41{left:510.611467pt;}
.x3e{left:522.915467pt;}
.x39{left:524.721733pt;}
.x3a{left:526.801733pt;}
}




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